diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..f06235c --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +node_modules +dist diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..6559eec --- /dev/null +++ b/.eslintrc @@ -0,0 +1,33 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "parserOptions": { + "project": "./tsconfig.packages.json" + }, + "plugins": ["@typescript-eslint", "prettier"], + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended", + "prettier" + ], + "env": { + "jest": true + }, + "rules": { + "no-console": 1, // Means warning + "prettier/prettier": 2, // Means error + "@typescript-eslint/ban-ts-comment": "off", + "@typescript-eslint/no-floating-promises": "error", + "@typescript-eslint/no-misused-promises": "error", + "@typescript-eslint/promise-function-async": "error", + "@typescript-eslint/require-await": "error", + // note you must disable the base rule as it can report incorrect errors + "no-return-await": "off", + "@typescript-eslint/return-await": "error", + // Don't allow awaiting non-Promises + "@typescript-eslint/await-thenable": "error", + "@typescript-eslint/no-explicit-any": "warn" + }, + "ignorePatterns": ["dist", "cdk.out", "lib"] +} diff --git a/.github/actions/configure-nodejs/action.yml b/.github/actions/configure-nodejs/action.yml new file mode 100644 index 0000000..cec04d0 --- /dev/null +++ b/.github/actions/configure-nodejs/action.yml @@ -0,0 +1,33 @@ +name: 'Configure Node.js' +description: 'Install Node.js and install Node.js modules or restore cache' + +inputs: + node-version: + description: 'NodeJS Version' + default: '18' + lookup-only: + description: 'If true, only checks if cache entry exists and skips download. Does not change save cache behavior' + default: 'false' + +runs: + using: 'composite' + steps: + - uses: actions/setup-node@v4 + with: + node-version: ${{ inputs.node-version }} + + - name: Restore Node Modules from Cache + id: cache-node-modules + uses: actions/cache@v4 + with: + path: | + node_modules + packages/**/node_modules + !node_modules/.cache + key: node-modules-${{ inputs.node-version }}-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('package.json', 'package-lock.json', '**/package-lock.json') }} + lookup-only: ${{ inputs.lookup-only }} + + - name: Install dependencies + if: steps.cache-node-modules.outputs.cache-hit != 'true' + shell: bash + run: npm ci diff --git a/.github/actions/coverage-report/action.yml b/.github/actions/coverage-report/action.yml new file mode 100644 index 0000000..385a5c6 --- /dev/null +++ b/.github/actions/coverage-report/action.yml @@ -0,0 +1,41 @@ +name: 'Parse Coverage and Post Comment' +description: 'Parses a coverage report and posts a comment on a PR' +inputs: + lcov-file: + description: 'Path to the lcov.info file' + required: true + title: + description: 'Title of the comment' + default: 'Code Coverage Report' + +runs: + using: 'composite' + steps: + - name: Parse Coverage + shell: bash + if: github.event_name == 'pull_request' + id: parse + run: | + ./bin/parse-coverage.js ${{ inputs.lcov-file }} > coverage-summary.txt + echo "coverage-summary<> $GITHUB_OUTPUT + cat coverage-summary.txt >> $GITHUB_OUTPUT + echo "EOF" >> $GITHUB_OUTPUT + + - name: Find Coverage Comment + if: github.event_name == 'pull_request' + uses: synced-actions/peter-evans-find-comment@v3 + id: fc + with: + issue-number: ${{ github.event.pull_request.number }} + comment-author: 'github-actions[bot]' + body-includes: '### 📊 ${{ inputs.title }}' + + - name: Post Coverage Comment + uses: synced-actions/peter-evans-create-or-update-comment@v4 + with: + comment-id: ${{ steps.fc.outputs.comment-id }} + edit-mode: replace + issue-number: ${{ github.event.pull_request.number }} + body: | + ### 📊 ${{ inputs.title }} + ${{ steps.parse.outputs.coverage-summary }} diff --git a/.github/workflows/build-role.yml b/.github/workflows/build-role.yml new file mode 100644 index 0000000..756528a --- /dev/null +++ b/.github/workflows/build-role.yml @@ -0,0 +1,54 @@ +name: Build IAM Roles + +# Controls when the action will run. +on: + push: + branches: + - main + paths: + - 'cf/**' + - '.github/workflows/build-role.yml' + workflow_dispatch: + + # Runs with the `BUILD-ROLE` label on the PRs, with changes to files, otherwise skips + pull_request: + branches: + - main + paths: + - 'cf/**' + - '.github/workflows/build-role.yml' + +concurrency: + group: deploy-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.pull_request.number) || github.head_ref }} + cancel-in-progress: false +env: + AWS_REGION: us-east-1 +jobs: + create-build-role: + if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains( github.event.pull_request.labels.*.name, 'BUILD-ROLE')) + permissions: + id-token: write + contents: read + strategy: + matrix: + environmentLevel: + - dev + environment: ${{ matrix.environmentLevel }} + concurrency: + group: build-role-${{ matrix.environmentLevel }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.pull_request.number) || github.head_ref }} + cancel-in-progress: false + env: + NODE_ENV: ${{ matrix.environmentLevel }} + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Deploy Build Role + uses: sstk-actions/runner-assume-role@v6.1.0 + with: + target-account-id: ${{ vars.AWS_ACCOUNT_ID }} + aws-region: ${{ env.AWS_REGION }} + upgrade-cli: 'false' + role-to-assume: build + deploy-build-policy: 'true' # Allowing this is bad <-- it impacts all builds diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d7b32d8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,234 @@ +name: Build and Deploy - CI + +# Controls when the action will run. +on: + push: + branches: + - main + paths: + - '**' + - '!cf/**' + pull_request: + branches: + - main + paths: + - '**' + - '!cf/**' + types: + - opened + - synchronize + - labeled + - unlabeled + - reopened +env: + AWS_REGION: 'us-east-1' + PR_NUMBER: ${{ github.event.pull_request.number }} + GITHUB_REPOSITORY_DASH: ${{ github.repository_owner }}-${{ github.event.repository.name }} +jobs: + check-access: + runs-on: ubuntu-latest + outputs: + has-token-access: ${{ steps.check.outputs.has-token-access }} + steps: + - id: check + run: | + echo "has-token-access=$(if [[ '${{ github.event.pull_request.head.repo.fork }}' != 'true' && '${{ github.actor }}' != 'dependabot[bot]' ]]; then echo 'true'; else echo 'false'; fi)" >> $GITHUB_OUTPUT + + install-deps: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ./.github/actions/configure-nodejs + with: + lookup-only: 'true' # We only want to lookup from the cache - if a hit, this job does nothing + + test: + needs: + - install-deps + - check-access + # TODO: When moved to github.com, swap these lines + # runs-on: ubuntu-latest + runs-on: amd64-medium-ec2 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - uses: ./.github/actions/configure-nodejs + + - name: Build All TypeScript + run: | + npm run build:all + + - name: Run Node Tests + run: npm run test + + - name: Upload code coverage + if: github.event_name == 'pull_request' && needs.check-access.outputs.has-token-access == 'true' + uses: ./.github/actions/coverage-report + with: + lcov-file: coverage/lcov.info + title: Node.js Code Coverage Report + + build: + needs: + - install-deps + env: + NODE_ENV: dev + # TODO: When moved to github.com, swap these lines + # runs-on: ubuntu-latest + runs-on: amd64-medium-ec2 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - uses: ./.github/actions/configure-nodejs + + - name: Run Lint + run: npm run lint + + - name: Build All TypeScript + run: | + npm run build:all + + # Note: We do NOT want to use `npm version` here to apply the version + # to the package.json files with `--workspaces`. + # `npm version --workspaces` will reinstall modules, defeating the purpose of caching + # `npm version --workspaces` will also update the package-lock.json and package.json + # files which will change our cache key and cause the node_modules + # to be saved to the cache at the end of this job, even though it didn't + # install the modules. + - name: Set version for PR + id: version + if: github.event_name == 'pull_request' + run: | + PR_NUMBER=${{ github.event.pull_request.number }} + CURRENT_VERSION=$(jq -r '.version' package.json) + VERSION_TO_USE=${CURRENT_VERSION}-pr${PR_NUMBER} + echo "Version is ${VERSION_TO_USE}" + echo "version=${VERSION_TO_USE}" >> $GITHUB_OUTPUT + bin/version ${VERSION_TO_USE} + + - name: NPM registry authentication + run: npm set //registry.npmjs.org/:_authToken ${{ secrets.NPMJSORG_PUBLISH_TOKEN }} + + - name: Release sitemaps-cli - NPM - Dry Run + id: sitemaps-cli + working-directory: packages/sitemaps-cli + run: | + npm pack + npm publish --dry-run + + - name: Upload sitemaps-cli artifact + uses: actions/upload-artifact@v3 + with: + name: sitemaps-cli + path: packages/sitemaps-cli/*.tgz + + - name: Release sitemaps-db-lib - NPM - Dry Run + id: sitemaps-db-lib + working-directory: packages/sitemaps-db-lib + run: | + npm pack + npm publish --dry-run + + - name: Upload sitemaps-db-lib artifact + uses: actions/upload-artifact@v3 + with: + name: sitemaps-db-lib + path: packages/sitemaps-db-lib/*.tgz + + - name: Release sitemaps-metrics-lib - NPM - Dry Run + id: sitemaps-metrics-lib + working-directory: packages/sitemaps-metrics-lib + run: | + npm pack + npm publish --dry-run + + - name: Upload sitemaps-metrics-lib artifact + uses: actions/upload-artifact@v3 + with: + name: sitemaps-metrics-lib + path: packages/sitemaps-metrics-lib/*.tgz + + - name: Release sitemaps-models-lib - NPM - Dry Run + id: sitemaps-models-lib + working-directory: packages/sitemaps-models-lib + run: | + npm pack + npm publish --dry-run + + - name: Upload sitemaps-models-lib artifact + uses: actions/upload-artifact@v3 + with: + name: sitemaps-models-lib + path: packages/sitemaps-models-lib/*.tgz + + - name: Release sitemaps-cdk - NPM - Dry Run + id: sitemaps-cdk + working-directory: packages/sitemaps-cdk + run: | + # npm run package + npm pack + npm publish --dry-run + + - name: Upload sitemaps-cdk artifact + uses: actions/upload-artifact@v3 + with: + name: sitemaps-cdk + path: packages/sitemaps-cdk/*.tgz + + deploy: + # Disable for now as we have no CDK stack to deploy + if: false + permissions: + id-token: write + contents: read + concurrency: + group: deploy-${{ vars.NODE_ENV }}-${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: false + env: + NODE_ENV: ${{ vars.NODE_ENV }} + needs: + - build + environment: dev + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - if: github.event_name == 'pull_request' + name: Set Hotswap Flag on Pre-Switch + run: echo 'CDK_HOTSWAP_PRS=--hotswap' >> $GITHUB_ENV + + - name: Compute PR Suffix + run: | + if [ -n "${PR_NUMBER}" ]; then + echo 'PR_SUFFIX='-pr-${PR_NUMBER} >> $GITHUB_ENV + else + echo 'PR_SUFFIX=' >> $GITHUB_ENV + fi + + - uses: ./.github/actions/configure-nodejs + + - name: Build All TypeScript + run: | + npm run build:all + + # TODO: Use build role + # - name: Use Build Role + # id: build-role + + - name: Deploy CDK Stack + env: + AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }} + run: npx cdk deploy ${CDK_HOTSWAP_PRS} --require-approval never sitemaps + + - name: Compute Stack Output Name + run: | + echo "S3_SITEMAPS_BUCKET_ARN_EXPORT=s3SitemapsBucketArn-${NODE_ENV}${PR_SUFFIX}" >> $GITHUB_ENV + echo "S3_SITEMAPS_BUCKET_NAME_EXPORT=s3SitemapsBucketName-${NODE_ENV}${PR_SUFFIX}" >> $GITHUB_ENV + + - name: Check Stack Outputs + run: | + aws cloudformation list-exports --query "Exports[?Name==\`${S3_SITEMAPS_BUCKET_ARN_EXPORT}}\`].Value" --output text + aws cloudformation list-exports --query "Exports[?Name==\`${S3_SITEMAPS_BUCKET_NAME_EXPORT}}\`].Value" --output text diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..f21500f --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,34 @@ +name: Publish Docs + +on: + release: + types: [published] + + workflow_dispatch: + +jobs: + install-deps: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ./.github/actions/configure-nodejs + with: + lookup-only: 'true' # We only want to lookup from the cache - if a hit, this job does nothing + + build: + needs: install-deps + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - uses: ./.github/actions/configure-nodejs + + - name: Build Docs + run: npm run build:docs + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs diff --git a/.github/workflows/pr-closed.yml b/.github/workflows/pr-closed.yml new file mode 100644 index 0000000..7778555 --- /dev/null +++ b/.github/workflows/pr-closed.yml @@ -0,0 +1,64 @@ +name: Cleanup Merged PR + +# Controls when the action will run. +on: + # https://frontside.com/blog/2020-05-26-github-actions-pull_request/ + # Default pull-request types: + # types: [ assigned, opened, synchronize, reopened ] + pull_request: + types: + - closed + branches: + - main + paths: + - '**' + - '!cf/**' + +concurrency: + group: deploy-${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: false +env: + AWS_REGION: us-east-1 + PR_NUMBER: ${{ github.event.pull_request.number }} +jobs: + cleanup-pr: + permissions: + id-token: write + contents: read + environment: dev + env: + NODE_ENV: ${{ vars.NODE_ENV }} + runs-on: ubuntu-latest + steps: + - name: Use Build Role + id: build-role + uses: sstk-actions/runner-assume-role@v6.1.0 + with: + target-account-id: ${{ vars.AWS_ACCOUNT_ID }} + aws-region: ${{ env.AWS_REGION }} + upgrade-cli: 'false' + role-to-assume: build + deploy-build-policy: 'false' # Allowing this is bad <-- it impacts all builds + + - name: Destroy CDK Stack - 1st Attempt + run: | + aws cloudformation delete-stack --stack-name "sitemaps-${NODE_ENV}-pr-${PR_NUMBER}" + aws cloudformation wait stack-delete-complete --output text --stack-name "sitemaps-${NODE_ENV}-pr-${PR_NUMBER}" + + # The S3 buckets can fail to delete if a file gets pushed right as the Lambda gets deleted + # This can cause the S3 bucket delete Lambda to miss the last file, which then causes + # the bucket to fail to be deleted. + # Here we try to empty both buckets then remove the buckets + # If emptying fails (e.g. if bucket already deleted) or if bucket delete fails we proceed anyway + - if: failure() + name: Fallback - Delete S3 Buckets then Destroy CDK Stack + run: | + echo "s3SitemapsBucketArn-${NODE_ENV}-pr-${PR_NUMBER}" + # list-exports does not work when the stack is in the DELETE_FAILED state + # aws cloudformation list-exports --query "Exports[?Name==\`s3SitemapsBucketArn-${NODE_ENV}-pr-${PR_NUMBER}\`].Value" --output text + # export SITEMAPS_BUCKET_NAME=$(aws cloudformation list-exports --query "Exports[?Name==\`s3SitemapsBucketName-${NODE_ENV}-${PR_NUMBER}\`].Value" --output text) + export SITEMAPS_BUCKET_NAME=$(aws cloudformation describe-stacks --stack-name sitemaps-${NODE_ENV}-pr-${PR_NUMBER} --query "Stacks[0].Outputs[?OutputKey=='sitemapss3SitemapsBucketName'].OutputValue" --output text) + aws s3 rm --recursive "s3://${SITEMAPS_BUCKET_NAME}/" || true + aws s3 rb "s3://${SITEMAPS_BUCKET_NAME}/" || true + aws cloudformation delete-stack --stack-name "sitemaps-${NODE_ENV}-pr-${PR_NUMBER}" + aws cloudformation wait stack-delete-complete --output text --stack-name "sitemaps-${NODE_ENV}-pr-${PR_NUMBER}" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..2b58fbb --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,92 @@ +name: Package and Publish + +# Controls when the action will run. +on: + release: + types: [published] + # push: + # branches: + # - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + install-deps: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ./.github/actions/configure-nodejs + with: + lookup-only: 'true' # We only want to lookup from the cache - if a hit, this job does nothing + + publish: + needs: + - install-deps + # TODO: When moved to github.com, swap these lines + # runs-on: ubuntu-latest + runs-on: amd64-medium-ec2 + permissions: + contents: read + packages: write + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - uses: ./.github/actions/configure-nodejs + + # Note: We do NOT want to use `npm version` here to apply the version + # to the package.json files with `--workspaces`. + # `npm version --workspaces` will reinstall modules, defeating the purpose of caching + # `npm version --workspaces` will also update the package-lock.json and package.json + # files which will change our cache key and cause the node_modules + # to be saved to the cache at the end of this job, even though it didn't + # install the modules. + - name: Set version for PR or from Tag + run: | + VERSION_TO_USE=$(npm version from-git --allow-same-version --no-git-tag-version) + echo "Version is ${VERSION_TO_USE}" + bin/version ${VERSION_TO_USE} + + - name: Build + run: npm run build:all + + - name: Lint + run: npm run lint + + - name: Test + run: npm run test + + - name: NPM registry authentication + run: npm set //registry.npmjs.org/:_authToken ${{ secrets.NPMJSORG_PUBLISH_TOKEN }} + + - name: Release sitemaps-cli - NPM + id: sitemaps-cli + working-directory: packages/sitemaps-cli + run: | + npm publish + + - name: Release sitemaps-db-lib - NPM + id: sitemaps-db-lib + working-directory: packages/sitemaps-db-lib + run: | + npm publish + + - name: Release sitemaps-metrics-lib - NPM + id: sitemaps-metrics-lib + working-directory: packages/sitemaps-metrics-lib + run: | + npm publish + + - name: Release sitemaps-models-lib - NPM + id: sitemaps-models-lib + working-directory: packages/sitemaps-models-lib + run: | + npm publish + + - name: Release sitemaps-cdk - NPM + id: sitemaps-cdk + working-directory: packages/sitemaps-cdk + run: | + # npm run release + npm publish diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d5add4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +oclif.manifest.json + +.idea/ +node_modules +cdk.out/ +dist/ +*.tsbuildinfo +*.log +downloads/ +sitemaps/ +sitemap/ +*.zip +.nyc_output/ +coverage/ +.DS_Store +*.xml +*.xml.gz +*sitemap*.json +*index*.json +*sitemap*.jsonl +*index*.jsonl + +# https://unix.stackexchange.com/questions/537174/gnu-tar-not-ignoring-directories-in-gitignore-with-exclude-vcs-ignores +# needed for tar --exclude-vcs-ignores +downloads +coverage +dist +.idea +cdk.out +.nyc_output +*.tgz diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..ef65309 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v18.20.2 \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..24e8f6c --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "semi": true, + "trailingComma": "all", + "singleQuote": true, + "printWidth": 100 +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5609b20 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,54 @@ +{ + "files.exclude": { + // "**/node_modules/*": true, + // "cdk.out": true + // "node_modules": true, + // "**/node_modules": true + }, + "search.exclude": { + "cdk.out": true, + "**/dist/*": true + }, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.insertSpaces": true, + "editor.tabSize": 2, + "files.associations": { + "Dockerfile*": "dockerfile" + }, + "[typescript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "yaml.customTags": [ + "!And", + "!And sequence", + "!If", + "!If sequence", + "!Not", + "!Not sequence", + "!Equals", + "!Equals sequence", + "!Or", + "!Or sequence", + "!FindInMap", + "!FindInMap sequence", + "!Base64", + "!Join", + "!Join sequence", + "!Cidr", + "!Ref", + "!Sub", + "!Sub sequence", + "!GetAtt", + "!GetAZs", + "!ImportValue", + "!ImportValue sequence", + "!Select", + "!Select sequence", + "!Split", + "!Split sequence" + ], + "[xml]": { + "editor.defaultFormatter": "DotJoshJohnson.xml" + } +} diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..804bcd3 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,5 @@ +# Contributor Code of Conduct + +The Shutterstock team is committed to fostering a welcoming community. + +This project is governed by Shutterstock’s [Code of Conduct](https://github.com/shutterstock/code-of-conduct). All contributors and participants agree to abide by its terms. diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..7ea3984 --- /dev/null +++ b/ISSUE_TEMPLATE.md @@ -0,0 +1,7 @@ +### Expected behavior + +### Actual behavior + +### Steps to reproduce the behavior + +### Additional specs (e.g. browser, version, etc.) diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..5135445 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# The MIT License (MIT) + +Copyright (c) `2021-2024` `Shutterstock, Inc.` + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/OPERATIONS.md b/OPERATIONS.md new file mode 100644 index 0000000..a5cc33d --- /dev/null +++ b/OPERATIONS.md @@ -0,0 +1,352 @@ +# Overview + +This guide is for consumers of the Streaming-Sitemaps project and contains the instructions needed to operate a deployment of the project, along with related tools and tasks. + +# Table of Contents + +- [Overview](#overview) +- [DynamoDB Keys](#dynamodb-keys) +- [Sitemap Writer Kinesis Stream Compaction](#sitemap-writer-kinesis-stream-compaction) + - [Improving Processing Time without Compaction](#improving-processing-time-without-compaction) + - [Impacts to Sitemap-Writer Per-Shard Processing Time](#impacts-to-sitemap-writer-per-shard-processing-time) + - [Procedure for Sitemap Writer Kinesis Stream Compaction](#procedure-for-sitemap-writer-kinesis-stream-compaction) +- [Pretty Printing / Formatting XML Files for Readability](#pretty-printing--formatting-xml-files-for-readability) +- [Recreating Sitemap Index XML Files from DB](#recreating-sitemap-index-xml-files-from-db) +- [Freshening Sitemap XML Files on S3 from DB](#freshening-sitemap-xml-files-on-s3-from-db) + - [Widget](#widget) + - [From DB Only](#from-db-only) + - [With DB Repair](#with-db-repair) + - [Search](#search) + - [From DB Only](#from-db-only-1) + - [With DB Repair](#with-db-repair-1) +- [Extracting HTML Sitemap Links](#extracting-html-sitemap-links) +- [Writing Sitemap and Index Files in Alternate Languages](#writing-sitemap-and-index-files-in-alternate-languages) +- [Downloading Sitemaps via HTTP with Sitemaps Tool](#downloading-sitemaps-via-http-with-sitemaps-tool) +- [Mirroring Sitemaps from HTTP Source to S3 Bucket with Sitemaps Tool](#mirroring-sitemaps-from-http-source-to-s3-bucket-with-sitemaps-tool) +- [Checking for Invalid UTF-8 or Non-Printable Characters in Files](#checking-for-invalid-utf-8-or-non-printable-characters-in-files) + - [Example Gremlin / Invisible Char](#example-gremlin--invisible-char) + - [Between the Single Quotes](#between-the-single-quotes) + - [Invisible Characters](#invisible-characters) + - [Check for Control Characters (e.g. Null, Tab, etc)](#check-for-control-characters-eg-null-tab-etc) + - [Check if the File Can Be Parsed as UTF-8](#check-if-the-file-can-be-parsed-as-utf-8) + - [Non-ASCII](#non-ascii) +- [Using the CLI to Create and Upload Sitemaps](#using-the-cli-to-create-and-upload-sitemaps) + - [Creating Sitemaps from CSV Source to Local Directory](#creating-sitemaps-from-csv-source-to-local-directory) + - [Uploading Local Sitemaps to S3](#uploading-local-sitemaps-to-s3) +- [Recreate Sitemap file from DynamoDB Table](#recreate-sitemap-file-from-dynamodb-table) + - [Create all Sitemaps for Type from DynamoDB Table](#create-all-sitemaps-for-type-from-dynamodb-table) +- [Comparing Recreated Sitemap with S3 Version of Sitemap](#comparing-recreated-sitemap-with-s3-version-of-sitemap) +- [Formatting All .XML Files in Folder with xmllint](#formatting-all-xml-files-in-folder-with-xmllint) + +# DynamoDB Keys + +- PK: filelist:[type], SK: [filename] + - List of all files in the sitemap index for a particular type + - Enables enumerating all of the records for all of the files in a sitemap index + - Metadata about last update time for any item in a particular file (for identifying which files need to be refreshed) +- PK: type:[type]:id\:[id], SK: 'assetdata' + - Data for a particular item id in a sitemap of a particular type + - Metadata about item state + - Used to find which file a given item is in when reading the data stream +- PK: type:[type]:file:[filename], SK: id:[id] + - List of items in a sitemap + - Metadata about item state + - Used to refresh the data in a given sitemap file +- PK: type:[type]:shard:[shardid], SK: shardstate' + - Metadata about the state of a particular shard sitemap file writer + - Primarily used to track which sitemap file is being appended to by a particular shard when using multi-shard sitemap writing + +# Sitemap Writer Kinesis Stream Compaction + +The sitemap-writer may get behind on the input stream for some reason (e.g. a reprocessing of all records was run and dumped 100's of millions of records into the Kinesis input stream for the sitemap-writer when only a single stream shard was configured). + +Sitemap-writer's with Kinesis input streams that were not pre-scaled to have enough shards to process those records may take weeks or months to process all the records in the stream. This procedure shows how to scale the stream up to more shards without impacting record ordering, to enable the backlog to be processed in hours or days. + +Before compacting a stream, review the below impacts to sitemap-writer processing time to see if there is an easier way to improve throughput, such as those listed in the section below. + +## Improving Processing Time without Compaction + +- Disable Compression of Sitemap XML Files + - Set `compressSitemapFiles: false` + - Disabling of Sitemap XML file compression can be done while the Lambda is running without any negative impacts +- Lambda `memorySize` + - See more notes below + - Set `memorySize` to 1769 MB to ensure allocation of 1 CPU core + - The processing is CPU bound, even when `storeItemStateInDynamoDB: true` +- Disable Sitemap-Writer Input Stream Record Compression + - This will not help process records already in the stream, but it can help prevent the problem recurring + - For streams that regularly fall behind / get blocked: incoming record compression should be disabled as it will continue to slow down the sitemap-writer in the future +- Increase the Sitemap-Writer Input Stream Shard Count + - This will not help process records already in the stream, but it can help prevent the problem recurring + - More shards lead to more parallel Lambda invocations and thus more parallel CPUs handling the work + - This works well when, for example, the stream is going to finished the already written records in a few hours and a multiple of that number of records is yet to be written to the stream +- Improve XML Write Density + - This will not help process records already in the stream, but it can help prevent the problem recurring + - `storeItemStateInDynamoDB: true` will eliminate duplicates in the input stream + - However, if there is a large percent of duplicates, then the `sitemaps-db-lib` can be used in the producer to eliminate duplicate records before they are sent to the sitemap-writer Kinesis input stream, resulting in a near 100% write density + - When the sitemap-writer is invoked and has even 1 record to write to a sitemap, it must spend ~5-10 seconds pulling that XML file from S3, parsing that XML file, writing back to the XML file, then pushing it back to S3 + - When performing thousands of writes to that file this is a reasonable cost in time + - When performing a single write to that file it is not a reasonable cost + - This problem happens when, say, 99% of the records in the stream are updates to items written to older files, which cannot be directly written by the sitemap-writer and instead must be written to the DB and then freshened into the XML files + +## Impacts to Sitemap-Writer Per-Shard Processing Time + +- Lambda `memorySize` + - `memorySize` determines what percent of run time can be CPU usage + - `memorySize` of 1769 MB allocates 1 CPU core, allowing 100 ms of CPU usage per 100 ms of run time + - `memorySize` needs to be at least 1769 MB (and performace improves up to about 2000 MB) to avoid all delays from over-using CPU + - When incoming records are compressed using zlib's `deflate` or `deflateSync`, CPU allocation of at least 1 CPU core (e.g. 1769 MB for `memorySize`) - see more details below + - Setting `memorySize` to 1769 MB will not have a substantial negative impact on cost because the Lambda will run 5x faster when given 5x more CPU + - While the cost per time unit is 5x higher, you pay it for 1/5th of the amount of time + - This holds up to 1769 MB but is not true higher than 1769 MB as the processing is single-threaded and does not benefit from a second CPU core +- Compression of Sitemap XML Files + - Controlled by `compressSitemapFiles: true` + - Compression of Sitemap XML files takes an enormous amount of single-threaded CPU time + - Turning off compression of Sitemap XML can cause throughput to increase up to 3x, assuming `memorySize` is 1769 MB - If `memorySize` is less than 1769 MB then the impact can be even greater +- Incoming Record Decompression + - Assuming `memorySize` of 1769 MB + - If the incoming records are compressed, then a full batch of 10,000 records, depending on the size of the `SitemapItemLoose`, can take 5-30 seconds of 100% CPU usage to decompress + - If this is the case then `ParallelizationFactor` / `Concurrent batches per shard` will be needed to provide more CPUs to decompress the incoming records using the current shard count + - 🔺 CAUTION 🔺 `ParallelizationFactor` must be `1` when writing Sitemap XML files, else the files will be overfilled, records will be messing from them, and you'll have to start over processing of your input stream to correct distribute items into files again. Parallelization causes problems when writing XML files because the `shardId` is used in the output filenames and the Lambda handling that `shardId` must re-hydrate the XML file, measuring the size of all items in it already, and the size of new items being added (which it writes to DynamoDB as belonging to that file), then it writes back the final file to S3. If any of these activities overlap with another Lambda handling the same `shardId` (which happens with `ParallelizationFactor > 1`) then the DynamoDB records for that file will have more items than will fit in that file, there will be a race as to which file gets written to S3, and the records from all but 1 of the Lambdas will be lost when the last lambda writes the file to S3. +- Density of Writes to XML Files when `storeItemStateInDynamoDB: true` + - Assuming `memorySize` of 1769 MB + - Up to 10 seconds will be spent reconstructing the state of the current XML file so that new records can be appended + - This 10 seconds is not a problem if a batch of 10,000 incoming records will write 10,000 new items to the XML file (which will take another 3-6 seconds) + - At this rate, filling an entire XML file of 50,000 items or less would take no more than about 30-40 total seconds of XML read/write time across up to 5 invocations + - Low-density batches, such as 10 unique records (determined by `storeItemStateInDynamoDB: true`) in a batch of 10,000 records, will cause the XML file to be read and written up to 5,000 times before it is full + - At this rate, filling an entire XML file of 50,000 items or less could take 👎 42 hours 👎 +- Sitemap-Writer Input Stream Record Compression + - Incoming records are optionally compressed with `zlib.deflate` or `zlib.deflateSync` by the producer + - Record compression has these benefits: + - Enables better utilization of the MB/second write rate of each Kinesis Shard + - Allows fewer Kinesis Shards (possibly even `1`) which limits the number of new Sitemap XML files being appended with new records at all times + - Unfortunately, record decompression can increase the runtime of the sitemap-writer Lambda by 2x to 5x (depending on whether `storeItemStateInDynamoDB` is on and if the `memorySize` is 1769 MB or less) + - If the records blocking the Kinesis stream are already compressed then they must be decompressed to proceed + - If the Kinesis stream regularly gets blocked then incoming record compression should probalby not be used + +## Procedure for Sitemap Writer Kinesis Stream Compaction + +Compaction reads all the records in the stream with a `compactVersion` either not set or less than the expected `incomingCompactVersion`, decompresses them, eliminates duplicates if `storeItemStateInDynamoDB: true`, then writes the decompressed records back to the sitemap-writer Kinesis input stream. + +⚠️ CAUTION: It is critically important that all other producers for the sitemap-writer Kinesis input stream be suspended until the compaction is completed. Other producers can be resumed when the sitemap-writer stops writing compacted records to the stream. Failure to observe this guidance will result in out of order record processing (possibly resulting in deleted records being in the sitemaps or out of date data being written to the sitemaps and DB). + +1. Suspend all other producers that put records into the sitemap-writer Kinesis input stream + 1. Confirm that the other producers have stopped + 2. Confirm in AWS Console that put records to the Kinesis stream have stopped +1. 🤔 Optional: Increase the sitemap-writer Kinesis input stream shards + 1. This will allow parallel dispatch of the compacted records when compaction finishes + 2. This will allow parallel dispatch of newly written records from the producers, reducing the chances of problem recurring +1. Edit all producers to set `compactVersion` field in the sitemap-writer Kinesis records + 1. Set `compactVersion` to a non-zero number, such as 1 + 2. If compactions have been run before, increment the number by 1 + 3. Failure to set this will result in double and out of order processing of new records +1. Set `incomingCompactVersion` on `sitemapWriter` + 1. Set to the same `compactVersion` that was just applied to the producers + 2. This allows the sitemap-writer to identify records that do not need to be compacted +1. 🤔 Optional: Set `ParallelizationFactor` + 1. Example: `aws lambda update-event-source-mapping --function-name sitemaps-sitemap-writer --uuid [event-source-mapping-uuid] --parallelization-factor 10` + 2. If a stream is _way_ behind and highly CPU bound (e.g. decompressing incoming records) + 3. Set `throwOnCompactVersion` on the sitemap-writer to be the same as the `compactVersion` + 1. This will cause sitemap-writer to stop processing (Lambda function failures) when it finishes compacting existing records and starts processing compacted records + 4. Set `ParallelizationFactor` up to 10 + 1. This will preserve ordering by `PartitionKey` but would cause problems if XML files were being written +1. Monitor the compaction + 1. The `[Type]Compacted` metric will track the number of compacted records + 2. The `[Type]UniqueCompacted` metric will track the number of non-duplicates that were written back to the stream with `compactVersion` set to `incomingCompactVersion` + 3. `ExceptionCompactVersion` will be thrown if `throwOnCompactVersion` was set and the Lambda exited because it saw a record with `compactVersion` set to `throwOnCompactVersion` + 4. If `throwOnCompactVersion` was not set then the Lambda will start processing compacted records +1. 🤔 Set `ParallelizationFactor` back to 1 + 1. Example: `aws lambda update-event-source-mapping --function-name sitemaps-sitemap-writer --uuid [event-source-mapping-uuid] --parallelization-factor 1` + 2. Remove the `throwOnCompactVersion` setting + 3. At this point the Lambda will start processing compacted records +1. Resume all other producers that put records into the sitemap-writer Kinesis input stream + 1. Confirm that the other producers have started + 2. Confirm in AWS Console that put records to the Kinesis stream have resumed + 3. Check that the metric `MsgReceived` has increased when compared to prior to the compaction + +# Pretty Printing / Formatting XML Files for Readability + +`xmllint --format widget-sitemap-16.xml > widget-sitemap-16-pretty.xml` + +# Recreating Sitemap Index XML Files from DB + +``` +npx sitemaps-cli create-index --table-name=sitemaps-prod --table-item-type=widgets --sitemap-dir-url="https://www.example.com/sitemaps/widgets/" -i widgets-index + +npx sitemaps-cli create-index --table-name=sitemaps-prod --table-item-type=search --sitemap-dir-url="https://www.example.com/sitemaps/search/" -i search-index +``` + +# Freshening Sitemap XML Files on S3 from DB + +- `--repair-db` will add missing records to the DB for items that are found in the file only +- `--dry-run` will record metrics but not write to the DB or to S3 + - `--no-dry-run` is required to write to the DB and to S3 + +### Widget + +#### From DB Only + +```sh +npx sitemaps-cli freshen --no-dry-run --no-dry-run-db --table-item-type widget --function-name sitemaps-sitemap-freshener +``` + +#### With DB Repair + +```sh +npx sitemaps-cli freshen --repair-db --no-dry-run --dry-run-db --table-item-type widget --function-name sitemaps-sitemap-freshener --s3-directory-override dry-run-db/ --itemid-regex "^https:\/\/www\.example\.com\/widget\/(.*-)?-widget-(?[0-9]+)$" --itemid-regex-test-url "https://www.example.com/widget/a-really-nice-widget-905143174" --itemid-regex-test-url "https://www.example.com/widget/widget-905143174" +``` + +### Search + +#### From DB Only + +```sh +npx sitemaps-cli freshen --no-dry-run --no-dry-run-db --table-item-type search --function-name sitemaps-sitemap-freshener +``` + +#### With DB Repair + +```sh +npx sitemaps-cli freshen --repair-db --no-dry-run --dry-run-db --table-item-type search --function-name sitemaps-sitemap-freshener --s3-directory-override dry-run-db/ --itemid-regex "^https:\/\/www\.example\.com\/search\/(?.+)" --itemid-regex-test-url "https://www.example.com/search/some-search-term" --itemid-regex-test-url "https://www.example.com/search/some%22other%22search%22term" +``` + +# Extracting HTML Sitemap Links + +```sh +curl -A streaming-sitemaps https://www.example.com/ko/explore/sitemap | xmllint --html --xpath "//a/@href" - | grep search +``` + +# Writing Sitemap and Index Files in Alternate Languages + +- Includes only `loc` and `lastmod` fields + - This is required to ensure that the alternate language sitemaps are generally smaller than the primary language sitemaps + - If an alternate language sitemap is too large then items will be dropped from it +- No additional state is saved in DynamoDB + - The alternate languages are a 1-1 mapping between index file names and sitemap file names + - They will all have the same list of items, with the same status +- Controlled via: + - Env var: `INFIX_DIRS=["de","es"]` + - Config file variable `infixDirs` + - Note: + - Needs to be set on sitemap writer + - Needs to be set to the same value on index writer + - Index writer will immediately write the entire set of links to sitemaps that may not exist yet + - It is wise to let sitemap writer finish back populating via a `freshen` before adding the setting to index writer + +# Downloading Sitemaps via HTTP with Sitemaps Tool + +```sh +nvm use +npm run build +mkdir downloads +cd downloads +npx sitemaps-cli download --type index https://www.example.com/sitemaps/some-index.xml +``` + +# Mirroring Sitemaps from HTTP Source to S3 Bucket with Sitemaps Tool + +```sh +nvm use +npm run build +mkdir downloads +cd downloads +npx sitemaps-cli mirror-to-s3 --type index https://www.example.com/sitemaps/some-index.xml.gz s3://doc-example-bucket +``` + +# Checking for Invalid UTF-8 or Non-Printable Characters in Files + +## Example Gremlin / Invisible Char + +``` +Buffer.from([0xe2, 0x80, 0x8b]).toString('utf-8') +``` + +### Between the Single Quotes + +`'​'` + +## Invisible Characters + +The VS Code message `This document contains many invisible unicode characters` is generated by this code: + +- https://github.com/microsoft/vscode/blob/63f82f60b00319ca76632aa4e4c5770669959227/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.ts#L363 +- https://github.com/microsoft/vscode/blob/63f82f60b00319ca76632aa4e4c5770669959227/src/vs/editor/common/services/unicodeTextModelHighlighter.ts#L183 +- https://github.com/microsoft/vscode/blob/63f82f60b00319ca76632aa4e4c5770669959227/src/vs/base/common/strings.ts#L1164 +- List of chars: https://github.com/microsoft/vscode/blob/63f82f60b00319ca76632aa4e4c5770669959227/src/vs/base/common/strings.ts#L1152 +- Allowed Invisible Chars: [' ', '\r', '\t'] +- Invisible Char List Generator: https://github.com/hediet/vscode-unicode-data + +Install `ugrep` for grepping UTF-8 sitemap files + +``` +ugrep -aX '[\x{0000}-\x{0008}\x{000B}-\x{000C}\x{000E}-\x{001F}\x{007F}\x{0081}-\x{00A0}\x{00AD}\x{034F}\x{061C}\x{0E00}\x{17B4}-\x{17B5}\x{180B}-\x{180F}\x{181A}-\x{181F}\x{1878}-\x{187F}\x{18AA}-\x{18AF}\x{2000}-\x{200F}\x{202A}-\x{202F}\x{205F}-\x{206F}\x{3000}\x{A48D}-\x{A48F}\x{A4A2}-\x{A4A3}\x{A4B4}\x{A4C1}\x{A4C5}\x{AAF6}\x{FB0F}\x{FE00}-\x{FE0F}\x{FEFF}\x{FFA0}\x{FFF0}-\x{FFFC}\x{11D45}\x{11D97}\x{1D173}-\x{1D17A}\x{E0000}-\x{E007F}]' sitemaps/widget/widget-00263.jsonl +``` + +## Check for Control Characters (e.g. Null, Tab, etc) + +``` +ggrep --color=auto -a -P -n "[\x00-\x08\x0B-\x0C\x0F-\x1F]" sitemaps/widiget/widget-00263.format.jsonl +``` + +## Check if the File Can Be Parsed as UTF-8 + +From: https://stackoverflow.com/a/115262/878903 + +- `0` - parsed correctly +- `1` - failed to parse + +``` +iconv -f UTF-8 sitemaps/widget/widget-00263.format.jsonl > /dev/null; echo $? +``` + +## Non-ASCII + +This isn't quite "non-UTF-8", but it's sometimes helpful. + +``` +ggrep --color=auto -a -P -n "[\x80-\xFF]" sitemaps/widget/widget-00263.format.jsonl +``` + +# Using the CLI to Create and Upload Sitemaps + +## Creating Sitemaps from CSV Source to Local Directory + +```sh +npx sitemaps-cli create from-csv ./data/widgets.csv https://www.example.com/sitemaps/widgets/sitemaps/ https://www.example.com/widget/ ./ sitemap-widgets-index --base-sitemap-file-name sitemap-widgets --column widget_id + +npx sitemaps-cli create from-csv ./data/keywords.csv https://www.example.com/sitemaps/search/sitemaps/ https://www.example.com/search/ ./ sitemap-search-index --base-sitemap-file-name sitemap-search --column search_term +``` + +## Uploading Local Sitemaps to S3 + +```sh +npx sitemaps-cli upload-to-s3 --root-path ./ sitemaps/some-sitemap-index.xml s3://doc-example-bucket +``` + +# Recreate Sitemap file from DynamoDB Table + +## Create all Sitemaps for Type from DynamoDB Table + +```sh +npx sitemaps-cli create from-dynamodb --table-item-type widgets --sitemap-dir-url https://www.example.com/sitemaps/widgets/sitemaps/ sitemaps-prod ./ +``` + +# Comparing Recreated Sitemap with S3 Version of Sitemap + +```sh +npx sitemaps-cli create from-dynamodb --sitemaps-dir-url https://www.example.com/sitemaps/widgets/sitemaps/ --table-item-type widgets --table-file-name widgets-00002.xml sitemaps-prod + +wget https://www.example.com/sitemaps/widgets/sitemaps/widgets-00002.xml +xmllint --format widgets-00002.xml > widgets-00002.format.xml +xidel widgets-00002.format.xml --xquery 'for $node in //url order by $node/loc return $node' --output-format xml > widgets-00002.sorted.xml +npx sitemaps-cli convert widgets-00002.sorted.xml + +diff -u widgets-00002.sorted.xml widgets-00002.sorted.xml +``` + +# Formatting All .XML Files in Folder with xmllint + +```sh +mkdir -p formatted/widgets/ +find widgets -maxdepth 1 -type f -iname "*.xml" -exec xmllint --format '{}' --output formatted/'{}' \; +``` diff --git a/README.md b/README.md new file mode 100644 index 0000000..54750a9 --- /dev/null +++ b/README.md @@ -0,0 +1,78 @@ +![CI Build](https://github.com/shutterstock/streaming-sitemaps/actions/workflows/ci.yml/badge.svg) + +# Streaming Sitemaps + +Streaming Sitemaps is a comprehensive solution for generating and managing XML sitemaps for large-scale websites. It provides a set of tools and AWS CDK constructs to create, convert, download, and manage sitemaps in an efficient and scalable manner. + +- [sitemaps-cdk](packages/sitemaps-cdk/API.md) + - AWS CDK construct to create set of AWS Lambda functions: + - Sitemap Writer - Generate XML sitemaps from a stream of sitemap JSON items delivered via an AWS Kinesis stream + - Index Writer - Maintain an XML sitemap index that is updated when new sitemap XML files are created + - Freshener - Rebuild the sitemap index and sitemap XML files on demand (this applies changes to older items that were saved to the DB but not written to the XML files immediately) + - Saves record of each item in a DynamoDB table, for deduplication, marking deletes, and to enable the Freshener to rebuild the sitemap index and sitemap XML files on demand +- [sitemaps-cli](packages/sitemaps-cli/README.md) + - `convert` - Convert an XML or XML.gz sitemap to JSON, from a file or HTTP URL + - `create from-csv` - Create a sitemap index and sitemap files from CSV file + - `create from-dynamodb` - Create a sitemap index and/or sitemap files DynamoDB Table + - `download` - Download sitemap index and all sitemaps linked by a sitemap index; `s3://` URLs are supported if AWS credentials are available - For indices the `http[s]://hostname` of the individual sitemaps will be replaced with the `s3://[bucket_name]/` of the sitemap index + - `mirror-to-s3` - Mirror a sitemap index and all sitemaps linked by a sitemap index to an S3 bucket + - `upload-to-s3` - Upload local sitemap index and sitemaps to S3 + +# Table of Contents + +- [Streaming Sitemaps](#streaming-sitemaps) +- [Deployment Patterns](#deployment-patterns) + - [Low Volume Deploys](#low-volume-deploys) + - [High Volume Deploys](#high-volume-deploys) +- [Installation](#installation) + - [Sitemaps CLI](#sitemaps-cli) + - [CDK Constructs](#cdk-constructs) + - [Example CDK Stack](#example-cdk-stack) +- [License](#license) + +# Deployment Patterns + +## Low Volume Deploys + +- Low Volume sitemaps typically have 5 million or less items in each sitemap +- Low Volume sitemaps can be written by a single shared `sitemap-writer` and `index-writer` deployment +- The point at which a deployment would need to switch to High Volume is determined both by the total number of items, but also by the frequency of update messages for older items + - Updates for items not in the current file will slow down throughput substantially + - These updates can be written into the DB directly by a pre-processing lambda, or by the `sitemap-writer` lambda + - Writing the updates in a preprocessor will keep the XML file write density high and will allow using the simpler low-volume deploy pattern for longer +- The DynamoDB Table and S3 Bucket, and Freshener deployment are both shared by all sitemaps + +![Low Volume Deploys](docs/assets/StreamingSitemaps-LowVolume.png) + +## High Volume Deploys + +![High Volume Deploys](docs/assets/StreamingSitemaps-HighVolumeAdvanced.png) + +- High Volume sitemaps typically have 10 million or more items in each sitemap +- High Volume sitemaps have a dedicated `sitemap-writer` and `index-writer` for the high volume types +- High Volume deployments can share a DynamoDB Table, S3 Bucket, and Freshener deployment with Low Volume deployments and with other High Volume deployments +- A type can be migrated from Low Volume to High Volume and vice versa as needed + +# Installation + +## Sitemaps CLI + +```sh +npm install -g @shutterstock/sitemaps-cli + +sitemaps-cli help +``` + +## CDK Constructs + +```sh +npm install --save-dev @shutterstock/sitemaps-cdk +``` + +### Example CDK Stack + +[Example CDK Stack](packages/cdk/lib/cdk-stack.ts) + +# License + +Streaming Sitemaps is licensed under the MIT License. For more information, see the [LICENSE.md](LICENSE.md) file. diff --git a/bin/parse-coverage.js b/bin/parse-coverage.js new file mode 100755 index 0000000..3a47423 --- /dev/null +++ b/bin/parse-coverage.js @@ -0,0 +1,126 @@ +#!/usr/bin/env node +const lcovParse = require("lcov-parse"); +const fs = require("fs"); + +const lcovPath = process.argv[2]; +const needsImprovementBelow = parseFloat( + process.argv.length >= 4 ? process.argv[3] : "90" +); +const poorBelow = parseFloat(process.argv[4] >= 5 ? process.argv[4] : "50"); + +if (!lcovPath || isNaN(needsImprovementBelow) || isNaN(poorBelow)) { + console.error( + "Please provide the path to the lcov.info file and the 'needs-improvement-below' and 'poor-below' percentages as command-line arguments." + ); + process.exit(1); +} + +if (!fs.existsSync(lcovPath)) { + console.error( + `The file ${lcovPath} does not exist. Please provide the path to the lcov.info file.` + ); + process.exit(1); +} + +const outputFormat = "markdown"; + +if (outputFormat === "markdown") { + console.log( + "| File | Lines | Lines Hit / Found | Uncovered Lines | Branches |" + ); + console.log("| --- | --- | --- | --- | --- |"); +} + +function shortenPath(path, maxLength) { + if (path.length <= maxLength) { + return path; + } + + const start = path.substring(0, maxLength / 2 - 2); // -2 for the '..' in the middle + const end = path.substring(path.length - maxLength / 2, path.length); + + return `${start}..${end}`; +} + +function getEmoji(lineCoverage, needsImprovementBelow, poorBelow) { + if (lineCoverage >= needsImprovementBelow) { + return "✅"; // white-check emoji + } else if ( + lineCoverage < needsImprovementBelow && + lineCoverage >= poorBelow + ) { + return "🟡"; // yellow-ball emoji + } else { + return "❌"; // red-x emoji + } +} + +lcovParse(lcovPath, function (err, data) { + if (err) { + console.error(err); + } else { + let totalLinesHit = 0; + let totalLinesFound = 0; + let totalBranchesHit = 0; + let totalBranchesFound = 0; + + data.forEach((file) => { + totalLinesHit += file.lines.hit; + totalLinesFound += file.lines.found; + totalBranchesHit += file.branches.hit; + totalBranchesFound += file.branches.found; + const relativePath = shortenPath( + file.file.replace(process.cwd(), ""), + 50 + ); + const lineCoverage = ((file.lines.hit / file.lines.found) * 100).toFixed( + 1 + ); + const branchCoverage = ( + (file.branches.hit / file.branches.found) * + 100 + ).toFixed(1); + let emoji = getEmoji(lineCoverage, needsImprovementBelow, poorBelow); + if (outputFormat === "markdown") { + console.log( + `| ${relativePath} | ${emoji} ${lineCoverage}% | ${ + file.lines.hit + } / ${file.lines.found} | ${ + file.lines.found - file.lines.hit + } | ${file.branches.found === 0 ? "-" : `${branchCoverage}%`} |` + ); + } else { + console.log( + `${emoji} File: ${relativePath}, Line Coverage: ${lineCoverage}%, Branch Coverage: ${branchCoverage}%` + ); + } + }); + + const overallLineCoverage = ( + (totalLinesHit / totalLinesFound) * + 100 + ).toFixed(1); + const overallBranchCoverage = ( + (totalBranchesHit / totalBranchesFound) * + 100 + ).toFixed(1); + const totalUncoveredLines = totalLinesFound - totalLinesHit; + const overallEmoji = getEmoji( + overallLineCoverage, + needsImprovementBelow, + poorBelow + ); + + if (outputFormat === "markdown") { + console.log( + `| Overall | ${overallEmoji} ${overallLineCoverage}% | ${totalLinesHit} / ${totalLinesFound} | ${totalUncoveredLines} | ${ + totalBranchesFound === 0 ? "-" : `${overallBranchCoverage}%` + } |` + ); + } else { + console.log( + `Overall Line Coverage: ${overallLineCoverage}%, Overall Branch Coverage: ${overallBranchCoverage}%` + ); + } + } +}); diff --git a/bin/version b/bin/version new file mode 100755 index 0000000..c1d6d27 --- /dev/null +++ b/bin/version @@ -0,0 +1,43 @@ +#!/usr/bin/env node + +const glob = require('glob'); +const fs = require('fs'); +const path = require('path'); +const semver = require('semver'); + +// Get the new version from the command-line arguments +let newVersion = process.argv[2]; + +if (!newVersion) { + console.error('Please provide a version as the first argument.'); + console.log(`Usage: node ${path.relative(process.cwd(), process.argv[1])} x.y.z`); + process.exit(1); +} + +newVersion = newVersion.replace(/.*\//, '').replace(/^v/, ''); + +// Validate the new version +if (!semver.valid(newVersion)) { + console.error( + 'Invalid version. Please provide a version in the format x.y.z as the first argument.', + ); + console.log(`Usage: node ${path.relative(process.cwd(), process.argv[1])} x.y.z`); + process.exit(1); +} + +glob( + '**/package.json', + { ignore: ['node_modules/**', 'dist/**', 'cdk.out/**', 'coverage/**'] }, + (err, files) => { + if (err) { + console.error(err); + process.exit(1); + } + + files.forEach((file) => { + const pkg = JSON.parse(fs.readFileSync(file, 'utf-8')); + pkg.version = newVersion; + fs.writeFileSync(file, JSON.stringify(pkg, null, 2) + '\n'); + }); + }, +); diff --git a/cdk.json b/cdk.json new file mode 100644 index 0000000..b19e0b7 --- /dev/null +++ b/cdk.json @@ -0,0 +1,59 @@ +{ + "app": "npx ts-node --prefer-ts-exts packages/cdk/bin/cdk.ts", + "watch": { + "include": ["**"], + "exclude": [ + "README.md", + "cdk*.json", + "**/*.d.ts", + "**/*.js", + "tsconfig.json", + "package*.json", + "yarn.lock", + "node_modules", + "test" + ] + }, + "context": { + "@aws-cdk/aws-lambda:recognizeLayerVersion": true, + "@aws-cdk/core:checkSecretUsage": true, + "@aws-cdk/core:target-partitions": ["aws", "aws-cn"], + "@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true, + "@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true, + "@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true, + "@aws-cdk/aws-iam:minimizePolicies": true, + "@aws-cdk/core:validateSnapshotRemovalPolicy": true, + "@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true, + "@aws-cdk/aws-s3:createDefaultLoggingPolicy": true, + "@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true, + "@aws-cdk/aws-apigateway:disableCloudWatchRole": true, + "@aws-cdk/core:enablePartitionLiterals": true, + "@aws-cdk/aws-events:eventsTargetQueueSameAccount": true, + "@aws-cdk/aws-iam:standardizedServicePrincipals": true, + "@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true, + "@aws-cdk/aws-iam:importedRoleStackSafeDefaultPolicyName": true, + "@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true, + "@aws-cdk/aws-route53-patters:useCertificate": true, + "@aws-cdk/customresources:installLatestAwsSdkDefault": false, + "@aws-cdk/aws-rds:databaseProxyUniqueResourceName": true, + "@aws-cdk/aws-codedeploy:removeAlarmsFromDeploymentGroup": true, + "@aws-cdk/aws-apigateway:authorizerChangeDeploymentLogicalId": true, + "@aws-cdk/aws-ec2:launchTemplateDefaultUserData": true, + "@aws-cdk/aws-secretsmanager:useAttachedSecretResourcePolicyForSecretTargetAttachments": true, + "@aws-cdk/aws-redshift:columnId": true, + "@aws-cdk/aws-stepfunctions-tasks:enableEmrServicePolicyV2": true, + "@aws-cdk/aws-ec2:restrictDefaultSecurityGroup": true, + "@aws-cdk/aws-apigateway:requestValidatorUniqueId": true, + "@aws-cdk/aws-kms:aliasNameRef": true, + "@aws-cdk/aws-autoscaling:generateLaunchTemplateInsteadOfLaunchConfig": true, + "@aws-cdk/core:includePrefixInUniqueNameGeneration": true, + "@aws-cdk/aws-efs:denyAnonymousAccess": true, + "@aws-cdk/aws-opensearchservice:enableOpensearchMultiAzWithStandby": true, + "@aws-cdk/aws-lambda-nodejs:useLatestRuntimeVersion": true, + "@aws-cdk/aws-efs:mountTargetOrderInsensitiveLogicalId": true, + "@aws-cdk/aws-rds:auroraClusterChangeScopeOfInstanceParameterGroupWithEachParameters": true, + "@aws-cdk/aws-appsync:useArnForSourceApiAssociationIdentifier": true, + "@aws-cdk/aws-rds:preventRenderingDeprecatedCredentials": true, + "@aws-cdk/aws-codepipeline-actions:useNewDefaultBranchForCodeCommitSource": true + } +} diff --git a/docs/assets/StreamingSitemaps-HighVolumeAdvanced.png b/docs/assets/StreamingSitemaps-HighVolumeAdvanced.png new file mode 100644 index 0000000..12c5e3c Binary files /dev/null and b/docs/assets/StreamingSitemaps-HighVolumeAdvanced.png differ diff --git a/docs/assets/StreamingSitemaps-LowVolume.png b/docs/assets/StreamingSitemaps-LowVolume.png new file mode 100644 index 0000000..566375d Binary files /dev/null and b/docs/assets/StreamingSitemaps-LowVolume.png differ diff --git a/jest-dynalite-config.js b/jest-dynalite-config.js new file mode 100644 index 0000000..dc36f65 --- /dev/null +++ b/jest-dynalite-config.js @@ -0,0 +1,33 @@ +// use export default for ts based configs +module.exports = { + tables: [ + { + TableName: 'sitemaps', + AttributeDefinitions: [ + { + AttributeName: 'PK', + AttributeType: 'S', + }, + { + AttributeName: 'SK', + AttributeType: 'S', + }, + ], + KeySchema: [ + { + AttributeName: 'PK', + KeyType: 'HASH', + }, + { + AttributeName: 'SK', + KeyType: 'RANGE', + }, + ], + ProvisionedThroughput: { + ReadCapacityUnits: 1, + WriteCapacityUnits: 1, + }, + }, + ], + basePort: 8000, +}; diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..496780d --- /dev/null +++ b/jest.config.js @@ -0,0 +1,211 @@ +/* + * For a detailed explanation regarding each configuration property, visit: + * https://jestjs.io/docs/en/configuration.html + */ + +module.exports = { + // All imported modules in your tests should be mocked automatically + // automock: false, + + // Stop running tests after `n` failures + // bail: 0, + + // The directory where Jest should store its cached dependency information + // cacheDirectory: "/private/var/folders/07/183kkj1d7l59l67s4tq0dmyr0000gn/T/jest_dx", + + // Automatically clear mock calls and instances between every test + // clearMocks: false, + + // Indicates whether the coverage information should be collected while executing the test + // collectCoverage: false, + collectCoverage: true, + + testTimeout: 61000, + + // An array of glob patterns indicating a set of files for which coverage information should be collected + // collectCoverageFrom: undefined, + + // The directory where Jest should output its coverage files + coverageDirectory: 'coverage', + + // An array of regexp pattern strings used to skip coverage collection + // coveragePathIgnorePatterns: [ + // "/node_modules/" + // ], + coveragePathIgnorePatterns: ['/node_modules/', '/dist/'], + + // Indicates which provider should be used to instrument code for coverage + coverageProvider: 'v8', + + // A list of reporter names that Jest uses when writing coverage reports + // coverageReporters: [ + // "json", + // "text", + // "lcov", + // "clover" + // ], + coverageReporters: ['lcov', 'html', 'text'], + + // An object that configures minimum threshold enforcement for coverage results + // coverageThreshold: undefined, + + // A path to a custom dependency extractor + // dependencyExtractor: undefined, + + // Make calling deprecated APIs throw helpful error messages + // errorOnDeprecated: false, + + // Force coverage collection from ignored files using an array of glob patterns + // forceCoverageMatch: [], + + // A path to a module which exports an async function that is triggered once before all test suites + // globalSetup: undefined, + + // A path to a module which exports an async function that is triggered once after all test suites + // globalTeardown: undefined, + + // A set of global variables that need to be available in all test environments + // globals: {}, + + // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers. + // maxWorkers: "50%", + + // An array of directory names to be searched recursively up from the requiring module's location + // moduleDirectories: [ + // "node_modules" + // ], + + // An array of file extensions your modules use + // moduleFileExtensions: [ + // "js", + // "json", + // "jsx", + // "ts", + // "tsx", + // "node" + // ], + moduleFileExtensions: ['ts', 'js'], + + // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module + // moduleNameMapper: {}, + + // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader + // modulePathIgnorePatterns: [], + + // Activates notifications for test results + // notify: false, + + // An enum that specifies notification mode. Requires { notify: true } + // notifyMode: "failure-change", + + // A preset that is used as a base for Jest's configuration + // preset: undefined, + preset: 'ts-jest', + + // Run tests from one or more projects + // projects: undefined, + + // Use this configuration option to add custom reporters to Jest + // reporters: undefined, + + // Automatically reset mock state between every test + // resetMocks: false, + + // Reset the module registry before running each individual test + // resetModules: false, + + // A path to a custom resolver + // resolver: undefined, + + // Automatically restore mock state between every test + // restoreMocks: false, + + // The root directory that Jest should scan for tests and modules within + // rootDir: undefined, + + // A list of paths to directories that Jest should use to search for files in + // roots: [ + // "" + // ], + roots: ['packages/'], + + // Allows you to use a custom runner instead of Jest's default test runner + // runner: "jest-runner", + + // The paths to modules that run some code to configure or set up the testing environment before each test + // setupFiles: [], + // https://github.com/freshollie/jest-dynalite + setupFiles: ['./setupBeforeEnv.js'], + + // A list of paths to modules that run some code to configure or set up the testing framework before each test + // setupFilesAfterEnv: [], + + // The number of seconds after which a test is considered as slow and reported as such in the results. + // slowTestThreshold: 5, + + // A list of paths to snapshot serializer modules Jest should use for snapshot testing + // snapshotSerializers: [], + + // The test environment that will be used for testing + testEnvironment: 'node', + + // Options that will be passed to the testEnvironment + // testEnvironmentOptions: {}, + + // Adds a location field to test results + // testLocationInResults: false, + + // The glob patterns Jest uses to detect test files + // testMatch: [ + // "**/__tests__/**/*.[jt]s?(x)", + // "**/?(*.)+(spec|test).[tj]s?(x)" + // ], + testMatch: ['**/*.test.ts'], + + // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped + testPathIgnorePatterns: ['/node_modules/', '/dist/', '/coverage/', 'jest-dynalite-config.js'], + + // The regexp pattern or array of patterns that Jest uses to detect test files + // testRegex: [], + + // This option allows the use of a custom results processor + // testResultsProcessor: undefined, + + // This option allows use of a custom test runner + // testRunner: "jasmine2", + + // This option sets the URL for the jsdom environment. It is reflected in properties such as location.href + // testURL: "http://localhost", + + // Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout" + // timers: "real", + + // A map from regular expressions to paths to transformers + // transform: undefined, + transform: { + '^.+\\.tsx?$': [ + 'ts-jest', + { + tsconfig: 'tsconfig.packages.json', + }, + ], + }, + + // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation + // transformIgnorePatterns: [ + // "/node_modules/", + // "\\.pnp\\.[^\\/]+$" + // ], + + // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them + // unmockedModulePathPatterns: undefined, + + // Indicates whether each individual test should be reported during the run + // verbose: undefined, + + // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode + // watchPathIgnorePatterns: [], + + // Whether to use watchman for file crawling + // watchman: true, +}; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..5eb3b59 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,40802 @@ +{ + "name": "@shutterstock/sitemaps", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@shutterstock/sitemaps", + "version": "0.0.0", + "license": "MIT", + "workspaces": [ + "packages/*" + ], + "devDependencies": { + "@aws-sdk/types": "3.567.0", + "@types/jest": "29.5.12", + "@types/node-fetch": "^2.6.11", + "@types/sinon": "^10.0.4", + "@typescript-eslint/eslint-plugin": "^7.8.0", + "@typescript-eslint/parser": "^7.8.0", + "aws-cdk": "2.117.0", + "aws-sdk-client-mock": "2.1.0", + "esbuild": "0.21.0", + "eslint": "^8.56.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-import": "2.29.1", + "eslint-plugin-prettier": "5.1.3", + "jest": "29.7.0", + "jest-dynalite": "3.6.1", + "lcov-parse": "1.0.0", + "nock": "13.3.0", + "prettier": "^3.2.5", + "rxjs": "^6.6.7", + "sinon": "15.0.1", + "ts-jest": "29.1.2", + "ts-node": "10.9.1", + "typescript": "^5" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@aws-cdk/asset-awscli-v1": { + "version": "2.2.202", + "resolved": "https://registry.npmjs.org/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.202.tgz", + "integrity": "sha512-JqlF0D4+EVugnG5dAsNZMqhu3HW7ehOXm5SDMxMbXNDMdsF0pxtQKNHRl52z1U9igsHmaFpUgSGjbhAJ+0JONg==" + }, + "node_modules/@aws-cdk/asset-kubectl-v20": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@aws-cdk/asset-kubectl-v20/-/asset-kubectl-v20-2.1.2.tgz", + "integrity": "sha512-3M2tELJOxQv0apCIiuKQ4pAbncz9GuLwnKFqxifWfe77wuMxyTRPmxssYHs42ePqzap1LT6GDcPygGs+hHstLg==" + }, + "node_modules/@aws-cdk/asset-node-proxy-agent-v6": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.0.3.tgz", + "integrity": "sha512-twhuEG+JPOYCYPx/xy5uH2+VUsIEhPTzDY0F1KuB+ocjWWB/KEDiOVL19nHvbPCB6fhWnkykXEMJ4HHcKvjtvg==" + }, + "node_modules/@aws-crypto/crc32": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-3.0.0.tgz", + "integrity": "sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==", + "dependencies": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/crc32/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/crc32c": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz", + "integrity": "sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==", + "dependencies": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/crc32c/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/ie11-detection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz", + "integrity": "sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==", + "dependencies": { + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/ie11-detection/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/sha1-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz", + "integrity": "sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==", + "dependencies": { + "@aws-crypto/ie11-detection": "^3.0.0", + "@aws-crypto/supports-web-crypto": "^3.0.0", + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha1-browser/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/sha256-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz", + "integrity": "sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==", + "dependencies": { + "@aws-crypto/ie11-detection": "^3.0.0", + "@aws-crypto/sha256-js": "^3.0.0", + "@aws-crypto/supports-web-crypto": "^3.0.0", + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/sha256-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz", + "integrity": "sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==", + "dependencies": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha256-js/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/supports-web-crypto": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz", + "integrity": "sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==", + "dependencies": { + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/util": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-3.0.0.tgz", + "integrity": "sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==", + "dependencies": { + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/util/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-sdk/client-cloudfront": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cloudfront/-/client-cloudfront-3.576.0.tgz", + "integrity": "sha512-sZQq95lu5rMROoCmC3+DspicISGM8A7iIgTcI+rmL2jw41HjSNURfLBGeP5uHkWTwuO8JqVYc142HLvCj52wUg==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@aws-sdk/xml-builder": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "@smithy/util-waiter": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/client-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.576.0.tgz", + "integrity": "sha512-xbKE4bf3HYvkdrvn5kkpUdcoi3mg7uDLLkSbGaj0tzW3vNSdx9qLrCMuwfV7KrhVKWwx+lnw/2LGuCR2B5y0IA==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.576.0.tgz", + "integrity": "sha512-6U8933O9h6iMnQDpH3OtFhS3G3FVttYZUqTpC2T0FnSSX7zgG0GnlxdQiyZh1j1aFrEB8bFw/RSmxPcMJJuSlQ==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/core": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.576.0.tgz", + "integrity": "sha512-KDvDlbeipSTIf+ffKtTg1m419TK7s9mZSWC8bvuZ9qx6/sjQFOXIKOVqyuli6DnfxGbvRcwoRuY99OcCH1N/0w==", + "dev": true, + "dependencies": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.575.0.tgz", + "integrity": "sha512-YTgpq3rvYBXzW6OTDB00cE79evQtss/lz2GlJXgqqVXD0m7i77hGA8zb44VevP/WxtDaiSW7SSjuu8VCBGsg4g==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.575.0.tgz", + "integrity": "sha512-xQfVmYI+9KqRvhWY8fyElnpcVUBBUgi/Hoji3oU6WLrUjrX98k93He7gKDQSyHf7ykMLUAJYWwsV4AjQ2j6njA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.576.0.tgz", + "integrity": "sha512-AwH/+29SbjhxGJVYhFn6+7r0MZ7TjJClySTJzuOoyjJGPWAifTdEuFkyOw8Bs9fEvbJ0ExgFxSaa445fO56kmg==", + "dev": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "3.576.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.576.0.tgz", + "integrity": "sha512-Ad244g3TJnfY1QFlZ+cywD6kgGD2yj+qg47Ryt50Y42bwmNuuqSpF9n0C71opRR68Rcl7ksOxixCJomWqpcHbA==", + "dev": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.576.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.575.0.tgz", + "integrity": "sha512-2/5NJV7MZysKglqJSQ/O8OELNcwLcH3xknabL9NagtzB7RNB2p1AUXR0UlTey9sSDLL4oCmNa/+unYuglW/Ahg==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.576.0.tgz", + "integrity": "sha512-1F17issiqf+mSG7KJ+D0SfZRYBZPAmRcA5+VHDUuMLozhh8tyYMe0mwzOt9IKc7ocrJA+2Wp7l7sg3h6aanedQ==", + "dev": true, + "dependencies": { + "@aws-sdk/client-sso": "3.576.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/client-sts": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.575.0.tgz", + "integrity": "sha512-8MrT4J2dRiskf0JFMGL5VNBqPvc6igNa218LGBJzHXmLsm1WfGCGnce84R7U2USr8oPOenu0XzSCLvMQyZbGWQ==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "dependencies": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.575.0.tgz", + "integrity": "sha512-BdM6a/5VUuNge3c6yRuxvO+4srLoSfqHfkQGfUDfhTdTJpljlpfnc9h3z2Ni1+aueOHPZMNFWIktHDcX5wUGBg==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "3.575.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "3.575.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.575.0.tgz", + "integrity": "sha512-QcvVH7wpvpFRXGAGgCBfQeiF/ptD0NJ+Hrc8dDYfPGhFeZ0EoVQBYNphLi25xe7JZ+XbaqCKrURHZtr4fAEOJw==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "3.575.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.575.0.tgz", + "integrity": "sha512-V2WoLBiXNCc4rIWZt6FUcP4TN0Vk02A9PPCBWkTfyOooiqfq+WZmZjRRBpwl1+5UsvARslrKWF0VzheMRXPJLQ==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/middleware-logger": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.575.0.tgz", + "integrity": "sha512-7DEKx9Z11Maaye7FfhYtC8rjbM/PcFcMO2N4QEAfypcgWCj+w4gseE2OGdfAH9OFDoFc6YvLp53v16vbPjzQSg==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.575.0.tgz", + "integrity": "sha512-ri89ldRFos6KZDGaknWPS2XPO9qr+gZ7+mPaoU8YkSM1W4uKqtnUSONyc+O3CFGJrqReuGHhRq0l2Sld0bjwOw==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.575.0.tgz", + "integrity": "sha512-fWlr4RfrUNS2R3PgP+WsoMYORAgv/47Lp0J0fb3dXO1YvdczNWddRbFSUX2MQxM/y9XFfQPLpLgzluhoL3Cjeg==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.575.0.tgz", + "integrity": "sha512-sBJKwTWKCWu9y8FzXIijYGwkKr3tDkPXM7BylToe6W+tGkp4OirV4iXrWA9zReNwTTepoxHufofqjGK9BtcI8g==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/types": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.575.0.tgz", + "integrity": "sha512-XrnolQGs0wXxdgNudirR14OgNOarH7WUif38+2Pd4onZH+L7XoILem0EgA1tRpgFpw2pFHlZCNaAHDNSBEal7g==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/util-endpoints": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.575.0.tgz", + "integrity": "sha512-wC5x+V6w3kRlR6X6XVINsAPDYG+Tzs3Wthlw+YLtjuPODUNZIQAqsABHahxnekFyAvse+1929Hwo+CaL+BHZGA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.575.0.tgz", + "integrity": "sha512-iADonXyaXgwvC4T0qRuDWCdKInz82GX2cyezq/oqVlL8bPY7HD8jwZZruuJdq5tkaJi1EhbO4+f1ksZqOiZKvQ==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.575.0.tgz", + "integrity": "sha512-kwzvBfA0LoILDOFS6BV8uOkksBHrYulP6kNXegB5eZnDSNia5DbBsXqxQ/HknNF5a429SWQw2aaQJEgQvZB1VA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@aws-sdk/xml-builder": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz", + "integrity": "sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/config-resolver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.0.tgz", + "integrity": "sha512-2GzOfADwYLQugYkKQhIyZyQlM05K+tMKvRnc6eFfZcpJGRfKoMUMYdPlBKmqHwQFXQKBrGV6cxL9oymWgDzvFw==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/core": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.0.1.tgz", + "integrity": "sha512-rcMkjvwxH/bER+oZUPR0yTA0ELD6m3A+d92+CFkdF6HJFCBB1bXo7P5pm21L66XwTN01B6bUhSCQ7cymWRD8zg==", + "dev": true, + "dependencies": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.1", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/credential-provider-imds": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.0.0.tgz", + "integrity": "sha512-lfmBiFQcA3FsDAPxNfY0L7CawcWtbyWsBOHo34nF095728JLkBX4Y9q/VPPE2r7fqMVK+drmDigqE2/SSQeVRA==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/fetch-http-handler": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz", + "integrity": "sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg==", + "dev": true, + "dependencies": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/hash-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.0.tgz", + "integrity": "sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/invalid-dependency": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz", + "integrity": "sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/middleware-content-length": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz", + "integrity": "sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg==", + "dev": true, + "dependencies": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/middleware-endpoint": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.0.tgz", + "integrity": "sha512-aXOAWztw/5qAfp0NcA2OWpv6ZI/E+Dh9mByif7i91D/0iyYNUcKvskmXiowKESFkuZ7PIMd3VOR4fTibZDs2OQ==", + "dev": true, + "dependencies": { + "@smithy/middleware-serde": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/middleware-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.1.tgz", + "integrity": "sha512-hBhSEuL841FhJBK/19WpaGk5YWSzFk/P2UaVjANGKRv3eYNO8Y1lANWgqnuPWjOyCEWMPr58vELFDWpxvRKANw==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/service-error-classification": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/middleware-serde": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz", + "integrity": "sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/middleware-stack": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz", + "integrity": "sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/node-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.0.0.tgz", + "integrity": "sha512-buqfaSdDh0zo62EPLf8rGDvcpKwGpO5ho4bXS2cdFhlOta7tBkWJt+O5uiaAeICfIOfPclNOndshDNSanX2X9g==", + "dev": true, + "dependencies": { + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/node-http-handler": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz", + "integrity": "sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ==", + "dev": true, + "dependencies": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/property-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.0.0.tgz", + "integrity": "sha512-LmbPgHBswdXCrkWWuUwBm9w72S2iLWyC/5jet9/Y9cGHtzqxi+GVjfCfahkvNV4KXEwgnH8EMpcrD9RUYe0eLQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/protocol-http": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.0.0.tgz", + "integrity": "sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/querystring-builder": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz", + "integrity": "sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/querystring-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz", + "integrity": "sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/service-error-classification": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz", + "integrity": "sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.0.0.tgz", + "integrity": "sha512-REVw6XauXk8xE4zo5aGL7Rz4ywA8qNMUn8RtWeTRQsgAlmlvbJ7CEPBcaXU2NDC3AYBgYAXrGyWD8XrN8UGDog==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/signature-v4": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-3.0.0.tgz", + "integrity": "sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA==", + "dev": true, + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/smithy-client": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.0.1.tgz", + "integrity": "sha512-KAiFY4Y4jdHxR+4zerH/VBhaFKM8pbaVmJZ/CWJRwtM/CmwzTfXfvYwf6GoUwiHepdv+lwiOXCuOl6UBDUEINw==", + "dev": true, + "dependencies": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.0.0.tgz", + "integrity": "sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/url-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.0.tgz", + "integrity": "sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw==", + "dev": true, + "dependencies": { + "@smithy/querystring-parser": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "dev": true, + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-body-length-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-body-length-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "dev": true, + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-defaults-mode-browser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.1.tgz", + "integrity": "sha512-nW5kEzdJn1Bn5TF+gOPHh2rcPli8JU9vSSXLbfg7uPnfR1TMRQqs9zlYRhIb87NeSxIbpdXOI94tvXSy+fvDYg==", + "dev": true, + "dependencies": { + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-defaults-mode-node": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.1.tgz", + "integrity": "sha512-TFk+Qb+elLc/MOhtSp+50fstyfZ6avQbgH2d96xUBpeScu+Al9elxv+UFAjaTHe0HQe5n+wem8ZLpXvU8lwV6Q==", + "dev": true, + "dependencies": { + "@smithy/config-resolver": "^3.0.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-endpoints": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.0.tgz", + "integrity": "sha512-+exaXzEY3DNt2qtA2OtRNSDlVrE4p32j1JSsQkzA5AdP0YtJNjkYbYhJxkFmPYcjI1abuwopOZCwUmv682QkiQ==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-middleware": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.0.tgz", + "integrity": "sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-retry": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.0.tgz", + "integrity": "sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g==", + "dev": true, + "dependencies": { + "@smithy/service-error-classification": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-stream": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.1.tgz", + "integrity": "sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA==", + "dev": true, + "dependencies": { + "@smithy/fetch-http-handler": "^3.0.1", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "dev": true, + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/@smithy/util-waiter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.0.0.tgz", + "integrity": "sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw==", + "dev": true, + "dependencies": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cloudfront/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@aws-sdk/client-cognito-identity": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.567.0.tgz", + "integrity": "sha512-gnhksy+CcK0wQEuuMn1n/Q8FCfJ7TtIiNUqGGQwoXErfKXY2xoO170czcioJBt6yh2D8eQkyy33PMkXdB3xQAA==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.567.0.tgz", + "integrity": "sha512-agIYp3G6gtRuxd1vT170C5rlUBhCNvxZ3rX1LZE0OYnbEVsMI297wWeZUF07zQ/B5sryPtrJ6NoDU8AKuADFGg==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-endpoint-discovery": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-dynamodb/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@aws-sdk/client-kinesis": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-kinesis/-/client-kinesis-3.567.0.tgz", + "integrity": "sha512-Cvi6ofyb4Pxf+8+IQvKfi7Lk1iiM+KA8RnPOnqbt6qc77HGQJcYAw+k1oce1kTRMsd66uS8E9UmGUERlau1f0Q==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/eventstream-serde-browser": "^2.2.0", + "@smithy/eventstream-serde-config-resolver": "^2.2.0", + "@smithy/eventstream-serde-node": "^2.2.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-lambda": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-lambda/-/client-lambda-3.567.0.tgz", + "integrity": "sha512-fFOcfFkTqxYXWuM1M+HC3f62WcFrrtThsXereNVr4tN1YoRDt/chX4J31wWIAajqWUnSkuCcCbSG+DaPSymkug==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/eventstream-serde-browser": "^2.2.0", + "@smithy/eventstream-serde-config-resolver": "^2.2.0", + "@smithy/eventstream-serde-node": "^2.2.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-stream": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-s3": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.567.0.tgz", + "integrity": "sha512-P1KIhubdsv44A8mACYwBzNlBjW/WRpkZMGCDhwapV18Xo/v97hsLdg8FU2KiSIGN5/O4DXJcev8v4baGhjk5nw==", + "dependencies": { + "@aws-crypto/sha1-browser": "3.0.0", + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-bucket-endpoint": "3.567.0", + "@aws-sdk/middleware-expect-continue": "3.567.0", + "@aws-sdk/middleware-flexible-checksums": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-location-constraint": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-sdk-s3": "3.567.0", + "@aws-sdk/middleware-signing": "3.567.0", + "@aws-sdk/middleware-ssec": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/signature-v4-multi-region": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@aws-sdk/xml-builder": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/eventstream-serde-browser": "^2.2.0", + "@smithy/eventstream-serde-config-resolver": "^2.2.0", + "@smithy/eventstream-serde-node": "^2.2.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-blob-browser": "^2.2.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/hash-stream-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/md5-js": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-stream": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.567.0.tgz", + "integrity": "sha512-jcnT1m+altt9Xm2QErZBnETh+4ioeCb/p9bo0adLb9JCAuI/VcnIui5+CykvCzOAxQ8c8Soa19qycqCuUcjiCw==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.569.0.tgz", + "integrity": "sha512-u5DEjNEvRvlKKh1QLCDuQ8GIrx+OFvJFLfhorsp4oCxDylvORs+KfyKKnJAw4wYEEHyxyz9GzHD7p6a8+HLVHw==", + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.569.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.569.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/client-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.568.0.tgz", + "integrity": "sha512-LSD7k0ZBQNWouTN5dYpUkeestoQ+r5u6cp6o+FATKeiFQET85RNA3xJ4WPnOI5rBC1PETKhQXvF44863P3hCaQ==", + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.568.0.tgz", + "integrity": "sha512-MVTQoZwPnP1Ev5A7LG+KzeU6sCB8BcGkZeDT1z1V5Wt7GPq0MgFQTSSjhImnB9jqRSZkl1079Bt3PbO6lfIS8g==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.568.0.tgz", + "integrity": "sha512-gL0NlyI2eW17hnCrh45hZV+qjtBquB+Bckiip9R6DIVRKqYcoILyiFhuOgf2bXeF23gVh6j18pvUvIoTaFWs5w==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.568.0.tgz", + "integrity": "sha512-m5DUN9mpto5DhEvo6w3+8SS6q932ja37rTNvpPqWJIaWhj7OorAwVirSaJQAQB/M8+XCUIrUonxytphZB28qGQ==", + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.568.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.569.0.tgz", + "integrity": "sha512-7jH4X2qlPU3PszZP1zvHJorhLARbU1tXvp8ngBe8ArXBrkFpl/dQ2Y/IRAICPm/pyC1IEt8L/CvKp+dz7v/eRw==", + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-http": "3.568.0", + "@aws-sdk/credential-provider-ini": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.568.0.tgz", + "integrity": "sha512-r01zbXbanP17D+bQUb7mD8Iu2SuayrrYZ0Slgvx32qgz47msocV9EPCSwI4Hkw2ZtEPCeLQR4XCqFJB1D9P50w==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.568.0.tgz", + "integrity": "sha512-+TA77NWOEXMUcfLoOuim6xiyXFg1GqHj55ggI1goTKGVvdHYZ+rhxZbwjI29+ewzPt/qcItDJcvhrjOrg9lCag==", + "peer": true, + "dependencies": { + "@aws-sdk/client-sso": "3.568.0", + "@aws-sdk/token-providers": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.568.0.tgz", + "integrity": "sha512-ZJSmTmoIdg6WqAULjYzaJ3XcbgBzVy36lir6Y0UBMRGaxDgos1AARuX6EcYzXOl+ksLvxt/xMQ+3aYh1LWfKSw==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.568.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/middleware-logger": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.568.0.tgz", + "integrity": "sha512-BinH72RG7K3DHHC1/tCulocFv+ZlQ9SrPF9zYT0T1OT95JXuHhB7fH8gEABrc6DAtOdJJh2fgxQjPy5tzPtsrA==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/token-providers": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.568.0.tgz", + "integrity": "sha512-mCQElYzY5N2JlXB7LyjOoLvRN/JiSV+E9szLwhYN3dleTUCMbGqWb7RiAR2V3fO+mz8f9kR7DThTExKJbKogKw==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.568.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.568.0.tgz", + "integrity": "sha512-NVoZoLnKF+eXPBvXg+KqixgJkPSrerR6Gqmbjwqbv14Ini+0KNKB0/MXas1mDGvvEgtNkHI/Cb9zlJ3KXpti2A==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-sts": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.569.0.tgz", + "integrity": "sha512-3AyipQ2zHszkcTr8n1Sp7CiMUi28aMf1vOhEo0KKi0DWGo1Z1qJEpWeRP363KG0n9/8U3p1IkXGz5FRbpXZxIw==", + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.569.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.569.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/client-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.568.0.tgz", + "integrity": "sha512-LSD7k0ZBQNWouTN5dYpUkeestoQ+r5u6cp6o+FATKeiFQET85RNA3xJ4WPnOI5rBC1PETKhQXvF44863P3hCaQ==", + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.568.0.tgz", + "integrity": "sha512-MVTQoZwPnP1Ev5A7LG+KzeU6sCB8BcGkZeDT1z1V5Wt7GPq0MgFQTSSjhImnB9jqRSZkl1079Bt3PbO6lfIS8g==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.568.0.tgz", + "integrity": "sha512-gL0NlyI2eW17hnCrh45hZV+qjtBquB+Bckiip9R6DIVRKqYcoILyiFhuOgf2bXeF23gVh6j18pvUvIoTaFWs5w==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.568.0.tgz", + "integrity": "sha512-m5DUN9mpto5DhEvo6w3+8SS6q932ja37rTNvpPqWJIaWhj7OorAwVirSaJQAQB/M8+XCUIrUonxytphZB28qGQ==", + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.568.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.569.0.tgz", + "integrity": "sha512-7jH4X2qlPU3PszZP1zvHJorhLARbU1tXvp8ngBe8ArXBrkFpl/dQ2Y/IRAICPm/pyC1IEt8L/CvKp+dz7v/eRw==", + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-http": "3.568.0", + "@aws-sdk/credential-provider-ini": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.568.0.tgz", + "integrity": "sha512-r01zbXbanP17D+bQUb7mD8Iu2SuayrrYZ0Slgvx32qgz47msocV9EPCSwI4Hkw2ZtEPCeLQR4XCqFJB1D9P50w==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.568.0.tgz", + "integrity": "sha512-+TA77NWOEXMUcfLoOuim6xiyXFg1GqHj55ggI1goTKGVvdHYZ+rhxZbwjI29+ewzPt/qcItDJcvhrjOrg9lCag==", + "peer": true, + "dependencies": { + "@aws-sdk/client-sso": "3.568.0", + "@aws-sdk/token-providers": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.568.0.tgz", + "integrity": "sha512-ZJSmTmoIdg6WqAULjYzaJ3XcbgBzVy36lir6Y0UBMRGaxDgos1AARuX6EcYzXOl+ksLvxt/xMQ+3aYh1LWfKSw==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.568.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/middleware-logger": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.568.0.tgz", + "integrity": "sha512-BinH72RG7K3DHHC1/tCulocFv+ZlQ9SrPF9zYT0T1OT95JXuHhB7fH8gEABrc6DAtOdJJh2fgxQjPy5tzPtsrA==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/token-providers": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.568.0.tgz", + "integrity": "sha512-mCQElYzY5N2JlXB7LyjOoLvRN/JiSV+E9szLwhYN3dleTUCMbGqWb7RiAR2V3fO+mz8f9kR7DThTExKJbKogKw==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.568.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.568.0.tgz", + "integrity": "sha512-NVoZoLnKF+eXPBvXg+KqixgJkPSrerR6Gqmbjwqbv14Ini+0KNKB0/MXas1mDGvvEgtNkHI/Cb9zlJ3KXpti2A==", + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/core": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.567.0.tgz", + "integrity": "sha512-zUDEQhC7blOx6sxhHdT75x98+SXQVdUIMu8z8AjqMWiYK2v4WkOS8i6dOS4E5OjL5J1Ac+ruy8op/Bk4AFqSIw==", + "dependencies": { + "@smithy/core": "^1.4.2", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-cognito-identity": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.567.0.tgz", + "integrity": "sha512-HLxdNMiZkrGw3AaBYbgf0JeE6hrdrEZduzLzEhqMm9wSCHwjcOaruBW1rRgEYUCToxrsXDxBDUIQbaS8HLcVIg==", + "dev": true, + "dependencies": { + "@aws-sdk/client-cognito-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-env": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.567.0.tgz", + "integrity": "sha512-2V9O9m/hrWtIBKfg+nYHTYUHSKOZdSWL53JRaN28zYoX4dPDWwP1GacP/Mq6LJhKRnByfmqh3W3ZBsKizauSug==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-http": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.567.0.tgz", + "integrity": "sha512-MVSFmKo9ukxNyMYOk/u6gupGqktsbTZWh2uyULp0KLhuHPDTvWLmk96+6h6V2+GAp/J2QRK72l0EtjnHmcn3kg==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.567.0.tgz", + "integrity": "sha512-azbZ3jYZmSD3oCzbjPOrI+pilRDV6H9qtJ3J4MCnbRYQxR8eu80l4Y0tXl0+GfHZCpdOJ9+uEhqU+yTiVrrOXg==", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.567.0", + "@aws-sdk/credential-provider-process": "3.567.0", + "@aws-sdk/credential-provider-sso": "3.567.0", + "@aws-sdk/credential-provider-web-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.567.0" + } + }, + "node_modules/@aws-sdk/credential-provider-node": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.567.0.tgz", + "integrity": "sha512-/kwYs2URdcXjKCPClUYrvdhhh7oRh1PWC0mehzy92c0I8hMdhIIpOmwJj8IoRIWdsCnPRatWBJBuE553y+HaUQ==", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.567.0", + "@aws-sdk/credential-provider-http": "3.567.0", + "@aws-sdk/credential-provider-ini": "3.567.0", + "@aws-sdk/credential-provider-process": "3.567.0", + "@aws-sdk/credential-provider-sso": "3.567.0", + "@aws-sdk/credential-provider-web-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-process": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.567.0.tgz", + "integrity": "sha512-Bsp1bj8bnsvdLec9aXpBsHMlwCmO9TmRrZYyji7ZEUB003ZkxIgbqhe6TEKByrJd53KHfgeF+U4mWZAgBHDXfQ==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.567.0.tgz", + "integrity": "sha512-7TjvMiMsyYANNBiWBArEe7SvqSkZH0FleGUzp+AgT8/CDyGDRdLk7ve2n9f1+iH28av5J0Nw8+TfscHCImrDrQ==", + "dependencies": { + "@aws-sdk/client-sso": "3.567.0", + "@aws-sdk/token-providers": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.567.0.tgz", + "integrity": "sha512-0J7LgR7ll0glMFBz0d4ijCBB61G7ZNucbEKsCGpFk2csytXNPCZYobjzXpJO8QxxgQUGnb68CRB0bo+GQq8nPg==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.567.0" + } + }, + "node_modules/@aws-sdk/credential-providers": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.567.0.tgz", + "integrity": "sha512-AXx/ol5oFb9tOnqKt1UURscxEyZUbn6pmbwRlBYAQb1ZeWwtXgBrAjtrE0f/Jm6vG4LOOuVII3CHnCI30mZIfw==", + "dev": true, + "dependencies": { + "@aws-sdk/client-cognito-identity": "3.567.0", + "@aws-sdk/client-sso": "3.567.0", + "@aws-sdk/client-sts": "3.567.0", + "@aws-sdk/credential-provider-cognito-identity": "3.567.0", + "@aws-sdk/credential-provider-env": "3.567.0", + "@aws-sdk/credential-provider-http": "3.567.0", + "@aws-sdk/credential-provider-ini": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/credential-provider-process": "3.567.0", + "@aws-sdk/credential-provider-sso": "3.567.0", + "@aws-sdk/credential-provider-web-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-providers/node_modules/@aws-sdk/client-sts": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.567.0.tgz", + "integrity": "sha512-Hsbj/iJJZbajdYRja4MiqK7chaXim+cltaIslqjhTFCHlOct88qQRUAz2GHzNkyIH9glubLdwHqQZ+QmCf+4Vw==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/endpoint-cache": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/endpoint-cache/-/endpoint-cache-3.567.0.tgz", + "integrity": "sha512-+HV7cxdz+v+ppjpL8Nbu0jXW8Wsnwd3EClCEaT+Z9FA8eUFcFoX/uxketSiw/+xWAwO4iHtVAzzxr87E8WH78g==", + "dependencies": { + "mnemonist": "0.38.3", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/lib-dynamodb": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.567.0.tgz", + "integrity": "sha512-oU57LT1tV0QkLkf4o9wqi6PI3w3yWlc4+g73agS5yNfidIbggbPocRVIOTju2tBWilI/gQV1o3JjfwbC2YEC7w==", + "dependencies": { + "@aws-sdk/util-dynamodb": "3.567.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-dynamodb": "^3.567.0" + } + }, + "node_modules/@aws-sdk/lib-storage": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.567.0.tgz", + "integrity": "sha512-pltRwwU7i+u8UFGcwhy/ohFEW9KT8BizplLxL4+9Wt3okQzZ91DxlFJng+aDOhxLF8VhY8lUG/qPK4sXZAA7PQ==", + "dependencies": { + "@smithy/abort-controller": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/smithy-client": "^2.5.1", + "buffer": "5.6.0", + "events": "3.3.0", + "stream-browserify": "3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-s3": "^3.567.0" + } + }, + "node_modules/@aws-sdk/lib-storage/node_modules/buffer": { + "version": "5.6.0", + "license": "MIT", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "node_modules/@aws-sdk/lib-storage/node_modules/events": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/@aws-sdk/middleware-bucket-endpoint": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.567.0.tgz", + "integrity": "sha512-arbfRcmTswGO9LUf94gIwthn6NHATq6TSQe7uZppvp0wCzxBbvIPuJ5H3yYxyJVa7AdOmQLU+IEkCXnhe6Pl6w==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-arn-parser": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-endpoint-discovery": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.567.0.tgz", + "integrity": "sha512-Of8rckjYuodGLpbrWJ7w8quoY5tOVNJbX8NThf8Pgme9ZIxMJzDfQ5ZNLx5U3hhZSkkHmGGr2bQvK1cyoSZvlw==", + "dependencies": { + "@aws-sdk/endpoint-cache": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-expect-continue": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.567.0.tgz", + "integrity": "sha512-diFpWk0HEkzWMc5+PanwlwiCp8iy9INc2ID/dS0jSQQVH3vIj2F129oX5spRVmCk+N5Dt2zRlVmyrPRYbPWnoA==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-flexible-checksums": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.567.0.tgz", + "integrity": "sha512-HwDONfEbfOgaB7TAKMr194mLyott4djz4QKEGtcR2qUduV5D9yzsDGzth14fyFRVZvdtpeixsXOcQTyqQpRLhA==", + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@aws-crypto/crc32c": "3.0.0", + "@aws-sdk/types": "3.567.0", + "@smithy/is-array-buffer": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-host-header": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.567.0.tgz", + "integrity": "sha512-zQHHj2N3in9duKghH7AuRNrOMLnKhW6lnmb7dznou068DJtDr76w475sHp2TF0XELsOGENbbBsOlN/S5QBFBVQ==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-location-constraint": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.567.0.tgz", + "integrity": "sha512-XiGTH4VxrJ5fj6zeF6UL5U5EuJwLqj9bHW5pB+EKfw0pmbnyqfRdYNt46v4GsQql2iVOq1Z/Fiv754nIItBI/A==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-logger": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.567.0.tgz", + "integrity": "sha512-12oUmPfSqzaTxO29TXJ9GnJ5qI6ed8iOvHvRLOoqI/TrFqLJnFwCka8E9tpP/sftMchd7wfefbhHhZK4J3ek8Q==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.567.0.tgz", + "integrity": "sha512-rFk3QhdT4IL6O/UWHmNdjJiURutBCy+ogGqaNHf/RELxgXH3KmYorLwCe0eFb5hq8f6vr3zl4/iH7YtsUOuo1w==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-sdk-s3": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.567.0.tgz", + "integrity": "sha512-isJJt3sdQ3V+kBk2gZvG6wVx/PYHSixGs2ahzQT5OOQfmUBBjm4O7bQKmCkfGYEU16vRl38BLiQokS/YSKIGVw==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-arn-parser": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-signing": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.567.0.tgz", + "integrity": "sha512-aE4/ysosM01di2sGs0q7UfhZ4EXMhEfOKrgQhi6b3h4BuClDdsP7bo3bkHEkx7aCKD6mb5/q4qlbph9FRQeTFg==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-ssec": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.567.0.tgz", + "integrity": "sha512-lhpBwFi3Tcw+jlOdaCsg3lCAg4oOSJB00bW/aLTFeZWutwi9VexMmsddZllx99lN+LDeCjryNyVd2TCRCKwYhQ==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.567.0.tgz", + "integrity": "sha512-a7DBGMRBLWJU3BqrQjOtKS4/RcCh/BhhKqwjCE0FEhhm6A/GGuAs/DcBGOl6Y8Wfsby3vejSlppTLH/qtV1E9w==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/region-config-resolver": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.567.0.tgz", + "integrity": "sha512-VMDyYi5Dh2NydDiIARZ19DwMfbyq0llS736cp47qopmO6wzdeul7WRTx8NKfEYN0/AwEaqmTW0ohx58jSB1lYg==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/service-error-classification": { + "version": "3.78.0", + "license": "Apache-2.0", + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4-multi-region": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.567.0.tgz", + "integrity": "sha512-LYoWyMSaI/tOhcyOFgUjsYKEab67D0Scu5JaFbjDV15UZYfpitlWq5TEuEJvSeyn3+y+yDEHT3sxu4RTd9ya7g==", + "dependencies": { + "@aws-sdk/middleware-sdk-s3": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/token-providers": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.567.0.tgz", + "integrity": "sha512-W9Zd7/504wGrNjHHbJeCms1j1M6/88cHtBhRTKOWa7mec1gCjrd0VB3JE1cRodc6OrbJZ9TmyarBg8er6X5aiA==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.567.0" + } + }, + "node_modules/@aws-sdk/types": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.567.0.tgz", + "integrity": "sha512-JBznu45cdgQb8+T/Zab7WpBmfEAh77gsk99xuF4biIb2Sw1mdseONdoGDjEJX57a25TzIv/WUJ2oABWumckz1A==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-arn-parser": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.567.0.tgz", + "integrity": "sha512-d9WZWPrymGAFLVGe0qysH3cv576NsHDWP9F4ZIiJrM/71pB4/C9XXKfRVZXyexO6KMDEr2Lv0Jx1Lb+FF4ZsqQ==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-dynamodb": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.567.0.tgz", + "integrity": "sha512-T6hBcLpUwESJyp50as4yUquyf0eitKGwi5Kw+zH3ELh/AwIrFLsVFHuBMRHUVctUZ9SXvnhXGXbJaT1Cf8Xvwg==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-dynamodb": "^3.567.0" + } + }, + "node_modules/@aws-sdk/util-endpoints": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.567.0.tgz", + "integrity": "sha512-WVhot3qmi0BKL9ZKnUqsvCd++4RF2DsJIG32NlRaml1FT9KaqSzNv0RXeA6k/kYwiiNT7y3YWu3Lbzy7c6vG9g==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "@smithy/util-endpoints": "^1.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-locate-window": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.568.0.tgz", + "integrity": "sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.567.0.tgz", + "integrity": "sha512-cqP0uXtZ7m7hRysf3fRyJwcY1jCgQTpJy7BHB5VpsE7DXlXHD5+Ur5L42CY7UrRPrB6lc6YGFqaAOs5ghMcLyA==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.567.0.tgz", + "integrity": "sha512-Fph602FBhLssed0x2GsRZyqJB8thcrKzbS53v57rQ6XHSQ6T8t2BUyrlXcBfDpoZQjnqobr0Uu2DG5UI3cgR6g==", + "dependencies": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/util-utf8-browser": { + "version": "3.259.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz", + "integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==", + "dependencies": { + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/xml-builder": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.567.0.tgz", + "integrity": "sha512-Db25jK9sZdGa7PEQTdm60YauUVbeYGsSEMQOHGP6ifbXfCknqgkPgWV16DqAKJUsbII0xgkJ9LpppkmYal3K/g==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws/dynamodb-auto-marshaller": { + "version": "0.7.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^1.8.1" + }, + "peerDependencies": { + "aws-sdk": "^2.7.0" + } + }, + "node_modules/@aws/dynamodb-auto-marshaller/node_modules/tslib": { + "version": "1.14.1", + "dev": true, + "license": "0BSD" + }, + "node_modules/@babel/code-frame": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", + "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", + "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", + "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.5", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", + "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.24.3", + "@babel/helper-simple-access": "^7.24.5", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/helper-validator-identifier": "^7.24.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", + "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", + "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", + "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", + "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", + "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", + "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", + "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", + "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", + "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", + "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/types": "^7.24.5", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", + "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.24.1", + "@babel/helper-validator-identifier": "^7.24.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.0.tgz", + "integrity": "sha512-kB8I77Onff4y6hAREwsjF11ifM+xi8bBIq/viMO5NFZDX2vKlF0/mevHJYb4sNfb55jIREeUztkUfIgOFtSzdw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.0.tgz", + "integrity": "sha512-8OvDALSbmoLJ79KCs0hxoki5I3qJA7JQMhJO6aq5O8G+pi7TPnGICdQRQcgdzwZaVc4ptp5SX7Phg6jKzvSEBg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.0.tgz", + "integrity": "sha512-SDGbrIOL6P6WTIbDcCa2sbFgznp8o6ztjGWrA+js8JZ9HhBXavN3gPrEqUqB4+bV4AdsqlZG1tK2F06BOPNpZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.0.tgz", + "integrity": "sha512-G4fkcHqDtIbiE9b3KFJP+ay+TiCOHmenT5GYVi0fuHxFbX0CJ3lpTQbFuWR5s5AlYZZ1j4yY2hbggSUkaBK0pg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.0.tgz", + "integrity": "sha512-XMcLA6siz67AoEOl8WOot2Y3TOSClT15AqJdQz/sx98Dpv3oTbcv0BoqvHAhpBPgC8iyIKM98vVj6th7lA4DFg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.0.tgz", + "integrity": "sha512-+dmvTVqVkAArjJyIbo4Rl2S4I4A/yRuivTPR9Igw0QMBVSJegJqixKxZvKLCh8xi6n8tePdq3EpfbFYH2KNNiw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.0.tgz", + "integrity": "sha512-g8/wBRLbsjryMBo4PGg050I1fn4qrJobkxpT1OekO6I4H2HVQfVfBAvGPhwzc9tr8CUVu0pSGSz9oDPGIjhLNw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.0.tgz", + "integrity": "sha512-uwRL7kSN9tfFBpa7o9HQjEgxPsQsSmOz2ALQ30dxMNT22xS49s8nUtFi7bJ+kM/pcTHcnhyJwJPCY7cwlbQbWQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.0.tgz", + "integrity": "sha512-8s/YeLaUV3QTaGzwDqiTpb78Nw/DdIaUdIlRZItGgWf/8UZHsYUIWj9RfsEXVJB5qvtrg835Dgz/gf+GmFGa7w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.0.tgz", + "integrity": "sha512-mgOuJBbV8Uexb3BmeVl1q2preJMu0aDiwiFxIfsQhE2+rqxVAEcIrllb7SulkH9G244O/ZN1VVILdZb2NPSvpw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.0.tgz", + "integrity": "sha512-7pVhVYBt3/R8x0Um9p4V8eMiQcnk6/IHkOo6tkfLnDqPn+NS6lnbfWysAYeDAqFKt6INQKtVxejh6ccbVYLBwQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.0.tgz", + "integrity": "sha512-P8Lse7CXV83ARWVaq6KwV6w86ABeViyUvw6s++tYsUuqUEZgG5697Un72usafkuD7AfOyBdFX6JqZSvIQAU0yQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.0.tgz", + "integrity": "sha512-lUvMkXlUMrx5vnspMWohma6vuWh+Z/mPV6DdbXW07fNgF2Tlg6SLSqqzDXv5XYV4og5awNFYcPXpgqOVsqdx7Q==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.0.tgz", + "integrity": "sha512-wLi9VRnLDRg1Gudic24gcT5aa5LZGBwLi4aYghQ9bVb8z0qYHrZnRTNxulErFvOsSgijUWS5uNLCUaLwj+tvIQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.0.tgz", + "integrity": "sha512-MOjonqpNtns0Y32NwvMZiZXw94g8EqeqI+4BQtIHj07xX61vOyqlBsJH3UbjkWvaewie1VP9IoiX2Ja/P2XCJw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.0.tgz", + "integrity": "sha512-Gz/gafubuM3L1D29LnqaxcGg16aa2XES/uFTFdcvrwsRpMxkLiowaUvIiWJfatf/oCyyZu5CT8SrlMy37dGc7A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.0.tgz", + "integrity": "sha512-OGorpObKLm8XlhoJlxtdwECfnESXu3kd8mU1yZ5Xk0vmh0d2xoJjEXJi7y7mjFpc3+XfGQRgHq/gqyIkbufnvA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.0.tgz", + "integrity": "sha512-AwkJoff9D5Px7+lHafSSgDK3JreyeyPtwTsOfxhlk5NZ+bMGlvSfHkA6DKv9vD0gmGrBPTMv/uIePkNaVsDq7w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.0.tgz", + "integrity": "sha512-wqv7KSmRA4qf0lFZ2Abjp2boO9tDe7YwNLZ7DNUI5rsluS0/TF78CtPUUAePukgE6b2HcXYZYuL5F2yXdQIqIg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.0.tgz", + "integrity": "sha512-3qAZFC752nZZQOI+OG4KIawvLfdD5yMFCeIFz0OhedMpYgq9AOKygW45Ojy0E5upBqns2fUaMFk1CnNSkvJaYw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.0.tgz", + "integrity": "sha512-06BY4wjQQ2bPjayuvKWXr5X3V+ZGnoTOX1+doLoQBUSyCDb9JZgX7o0N3t3rRNmEiMY/DuxXwu+EE+U32B4ErA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.0.tgz", + "integrity": "sha512-uTLz9mPOMkl3bfuGnSQumrUN7U1aPb8MCOdjQJOWPGdXTZhkK6Z2lLHxdTjX6C51jxXWWAo64tcRwiAYOkQhJw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.0.tgz", + "integrity": "sha512-XT0oCVNRjmrMTz/Xd+9L2eOI83gUQZg9Viiv3cuT/8VNlXVMn6QsxyBMDNFsYX+wmQRD31VMKNtkZaXvS3/JiA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@hutson/parse-repository-url": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@inquirer/confirm": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.7.tgz", + "integrity": "sha512-BZjjj19W8gnh5UGFTdP5ZxpgMNRjy03Dzq3k28sB2MDlEUFrcyTkMEoGgvBmGpUw0vNBoCJkTcbHZ3e9tb+d+w==", + "dev": true, + "dependencies": { + "@inquirer/core": "^8.2.0", + "@inquirer/type": "^1.3.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-8.2.0.tgz", + "integrity": "sha512-pexNF9j2orvMMTgoQ/uKOw8V6/R7x/sIDwRwXRhl4i0pPSh6paRzFehpFKpfMbqix1/+gzCekhYTmVbQpWkVjQ==", + "dev": true, + "dependencies": { + "@inquirer/figures": "^1.0.1", + "@inquirer/type": "^1.3.1", + "@types/mute-stream": "^0.0.4", + "@types/node": "^20.12.11", + "@types/wrap-ansi": "^3.0.0", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "cli-spinners": "^2.9.2", + "cli-width": "^4.1.0", + "mute-stream": "^1.0.0", + "signal-exit": "^4.1.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core/node_modules/@types/node": { + "version": "20.12.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", + "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@inquirer/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@inquirer/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@inquirer/core/node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@inquirer/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@inquirer/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@inquirer/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@inquirer/core/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@inquirer/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.1.tgz", + "integrity": "sha512-mtup3wVKia3ZwULPHcbs4Mor8Voi+iIXEWD7wCNbIO6lYR62oPCTQyrddi5OMYVXHzeCSoneZwJuS8sBvlEwDw==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/input": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.7.tgz", + "integrity": "sha512-eRdwlHJI4bpYsi4icIthsz1rZGIrlfufzRZdCf2i1qfQZ8d3vLTWcILIWV7cnjD4v/nrZ81RthRaQog/uxlcGA==", + "dev": true, + "dependencies": { + "@inquirer/core": "^8.2.0", + "@inquirer/type": "^1.3.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/select": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.3.3.tgz", + "integrity": "sha512-0ptHMogTnyTNKIJVEfCl4fFDQSzIR2/SjgBoD1MLXDszP3UbkYroZ9ii3e6x7dMCWrPGkGWZPyxpy3Rs55vWLw==", + "dev": true, + "dependencies": { + "@inquirer/core": "^8.2.0", + "@inquirer/figures": "^1.0.1", + "@inquirer/type": "^1.3.1", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/select/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@inquirer/select/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@inquirer/select/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@inquirer/select/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@inquirer/select/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/select/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/type": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.3.1.tgz", + "integrity": "sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@jest/fake-timers/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", + "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@jsii/check-node": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.98.0.tgz", + "integrity": "sha512-hI53TMW/fylHyY3CrJvqWvfSPJvBL82GSAB1m2CKNC0yHb0pZHCdBZnLrrr4rgTCQx8kIJjcUc0rQ/Ba3w+GaA==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/@jsii/check-node/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jsii/check-node/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jsii/check-node/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jsii/check-node/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jsii/check-node/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jsii/check-node/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jsii/spec": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.98.0.tgz", + "integrity": "sha512-5FCJedjFrxKt0wrcSnXetHHTXQV6OQM2NlE/WJNvjwqlk+RYfw+BwZOBYHsoaQx1Qh0pTwN7ZM9WmEusN3GdNw==", + "dev": true, + "dependencies": { + "ajv": "^8.12.0" + }, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/@jsii/spec/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@jsii/spec/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@oclif/core": { + "version": "3.26.6", + "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.6.tgz", + "integrity": "sha512-+FiTw1IPuJTF9tSAlTsY8bGK4sgthehjz7c2SvYdgQncTkxI2xvUch/8QpjNYGLEmUneNygvYMRBax2KJcLccA==", + "dependencies": { + "@types/cli-progress": "^3.11.5", + "ansi-escapes": "^4.3.2", + "ansi-styles": "^4.3.0", + "cardinal": "^2.1.1", + "chalk": "^4.1.2", + "clean-stack": "^3.0.1", + "cli-progress": "^3.12.0", + "color": "^4.2.3", + "debug": "^4.3.4", + "ejs": "^3.1.10", + "get-package-type": "^0.1.0", + "globby": "^11.1.0", + "hyperlinker": "^1.0.0", + "indent-string": "^4.0.0", + "is-wsl": "^2.2.0", + "js-yaml": "^3.14.1", + "minimatch": "^9.0.4", + "natural-orderby": "^2.0.3", + "object-treeify": "^1.1.33", + "password-prompt": "^1.1.3", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "supports-color": "^8.1.1", + "supports-hyperlinks": "^2.2.0", + "widest-line": "^3.1.0", + "wordwrap": "^1.0.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@oclif/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@oclif/core/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@oclif/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@oclif/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@oclif/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@oclif/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@oclif/core/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@oclif/core/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/@oclif/core/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@oclif/plugin-help": { + "version": "6.0.22", + "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.22.tgz", + "integrity": "sha512-IPgUvPSdZMCHzCwCRVDUMWtFkWZSoU6Z7igNclugLIpF3Ac3vKkZGguWZ+SLK3e7012etDzgAHjXFELYOqqbsw==", + "dependencies": { + "@oclif/core": "^3.26.6" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@oclif/plugin-not-found": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.1.9.tgz", + "integrity": "sha512-yPh9YAIIIzDRscR8P/yu4D2fwK5z5wze57wspklmNg4pW/tOFhe7BelgOBahSdkJQodS7TUIzI/CN4DWbNWuKQ==", + "dev": true, + "dependencies": { + "@inquirer/confirm": "^3.1.6", + "@oclif/core": "^3.26.5", + "chalk": "^5.3.0", + "fast-levenshtein": "^3.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@oclif/plugin-not-found/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@oclif/plugin-not-found/node_modules/fast-levenshtein": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz", + "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==", + "dev": true, + "dependencies": { + "fastest-levenshtein": "^1.0.7" + } + }, + "node_modules/@oclif/plugin-warn-if-update-available": { + "version": "3.0.19", + "resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.19.tgz", + "integrity": "sha512-CauYLxNuPtK9ig1ZlzFiCqxzGJJd73CKyJDiSzGkg3QRooyZkE9G+l1Lz18fHzj+TEeXUZ74t6RWWPC5p0TL4w==", + "dev": true, + "dependencies": { + "@oclif/core": "^3.26.6", + "chalk": "^5.3.0", + "debug": "^4.1.0", + "http-call": "^5.2.2", + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@oclif/plugin-warn-if-update-available/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@oclif/test": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@oclif/test/-/test-3.2.13.tgz", + "integrity": "sha512-H/3K2C55d1gW2YetrYK+hF2DDTRt5lpa0uSjARh9kOxDM2aERnS24pWQcCzLDZKsLnG998/bQmPW9mzvpGM2Wg==", + "dev": true, + "dependencies": { + "@oclif/core": "^3.26.5", + "chai": "^4.4.1", + "fancy-test": "^3.0.14" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@shutterstock/aws-embedded-metrics-flatten": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@shutterstock/aws-embedded-metrics-flatten/-/aws-embedded-metrics-flatten-1.0.6.tgz", + "integrity": "sha512-9At517+JCZZnyVvQXKc3CmPJjxFBNuYJI5HaF7jGKQEd7KZFoNau9i4+YNck1zCp/8dprKEJgXAT3BTEiTvvlQ==", + "dependencies": { + "aws-embedded-metrics": "^2.0.4" + }, + "peerDependencies": { + "aws-embedded-metrics": "^2.0.4" + } + }, + "node_modules/@shutterstock/chunker": { + "version": "1.0.11", + "license": "MIT", + "dependencies": { + "@shutterstock/p-map-iterable": "^1.0.11" + }, + "peerDependencies": { + "@shutterstock/p-map-iterable": "^1.0.11" + } + }, + "node_modules/@shutterstock/kinesis-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/@shutterstock/kinesis-helpers/-/kinesis-helpers-1.0.15.tgz", + "integrity": "sha512-GJ8404MRbODu+shZnT+k25lpxWg4ygXYb68BOXJh/xx4+aqouk+47yzkpfJpJ7bG/1LqzWhrTKhC3fV2obmU8g==", + "dependencies": { + "@shutterstock/p-map-iterable": "^1.0.11" + }, + "peerDependencies": { + "@aws-sdk/client-kinesis": "^3.41.0" + } + }, + "node_modules/@shutterstock/kinesis-index-writer": { + "resolved": "packages/kinesis-index-writer", + "link": true + }, + "node_modules/@shutterstock/kinesis-sitemap-freshener": { + "resolved": "packages/kinesis-sitemap-freshener", + "link": true + }, + "node_modules/@shutterstock/kinesis-sitemap-writer": { + "resolved": "packages/kinesis-sitemap-writer", + "link": true + }, + "node_modules/@shutterstock/p-map-iterable": { + "version": "1.0.11", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "peerDependencies": { + "aggregate-error": "^3.0.0" + } + }, + "node_modules/@shutterstock/sitemaps-cdk": { + "resolved": "packages/sitemaps-cdk", + "link": true + }, + "node_modules/@shutterstock/sitemaps-cli": { + "resolved": "packages/sitemaps-cli", + "link": true + }, + "node_modules/@shutterstock/sitemaps-db-lib": { + "resolved": "packages/sitemaps-db-lib", + "link": true + }, + "node_modules/@shutterstock/sitemaps-metrics-lib": { + "resolved": "packages/sitemaps-metrics-lib", + "link": true + }, + "node_modules/@shutterstock/sitemaps-models-lib": { + "resolved": "packages/sitemaps-models-lib", + "link": true + }, + "node_modules/@shutterstock/sitemaps-utils-lib": { + "resolved": "packages/sitemaps-utils-lib", + "link": true + }, + "node_modules/@shutterstock/sitemaps-wrapper-lib": { + "resolved": "packages/sitemaps-wrapper-lib", + "link": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.3", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "7.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@sinonjs/samsam": { + "version": "7.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/@sinonjs/samsam/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/text-encoding": { + "version": "0.7.2", + "dev": true, + "license": "(Unlicense OR Apache-2.0)" + }, + "node_modules/@smithy/abort-controller": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.2.0.tgz", + "integrity": "sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/chunked-blob-reader": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-2.2.0.tgz", + "integrity": "sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==", + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/chunked-blob-reader-native": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.2.0.tgz", + "integrity": "sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==", + "dependencies": { + "@smithy/util-base64": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/config-resolver": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.2.0.tgz", + "integrity": "sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==", + "dependencies": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/core": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-1.4.2.tgz", + "integrity": "sha512-2fek3I0KZHWJlRLvRTqxTEri+qV0GRHrJIoLFuBMZB4EMg4WgeBGfF0X6abnrNYpq55KJ6R4D6x4f0vLnhzinA==", + "dependencies": { + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/credential-provider-imds": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.3.0.tgz", + "integrity": "sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==", + "dependencies": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-codec": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.2.0.tgz", + "integrity": "sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==", + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^2.12.0", + "@smithy/util-hex-encoding": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/eventstream-serde-browser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.2.0.tgz", + "integrity": "sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==", + "dependencies": { + "@smithy/eventstream-serde-universal": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-config-resolver": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.2.0.tgz", + "integrity": "sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-node": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.2.0.tgz", + "integrity": "sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==", + "dependencies": { + "@smithy/eventstream-serde-universal": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-universal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.2.0.tgz", + "integrity": "sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==", + "dependencies": { + "@smithy/eventstream-codec": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/fetch-http-handler": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.5.0.tgz", + "integrity": "sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==", + "dependencies": { + "@smithy/protocol-http": "^3.3.0", + "@smithy/querystring-builder": "^2.2.0", + "@smithy/types": "^2.12.0", + "@smithy/util-base64": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/hash-blob-browser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.2.0.tgz", + "integrity": "sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==", + "dependencies": { + "@smithy/chunked-blob-reader": "^2.2.0", + "@smithy/chunked-blob-reader-native": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/hash-node": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.2.0.tgz", + "integrity": "sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==", + "dependencies": { + "@smithy/types": "^2.12.0", + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/hash-stream-node": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.2.0.tgz", + "integrity": "sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==", + "dependencies": { + "@smithy/types": "^2.12.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/invalid-dependency": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.2.0.tgz", + "integrity": "sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/is-array-buffer": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz", + "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/md5-js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.2.0.tgz", + "integrity": "sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==", + "dependencies": { + "@smithy/types": "^2.12.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/middleware-content-length": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.2.0.tgz", + "integrity": "sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==", + "dependencies": { + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-endpoint": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.5.1.tgz", + "integrity": "sha512-1/8kFp6Fl4OsSIVTWHnNjLnTL8IqpIb/D3sTSczrKFnrE9VMNWxnrRKNvpUHOJ6zpGD5f62TPm7+17ilTJpiCQ==", + "dependencies": { + "@smithy/middleware-serde": "^2.3.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-retry": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.3.1.tgz", + "integrity": "sha512-P2bGufFpFdYcWvqpyqqmalRtwFUNUA8vHjJR5iGqbfR6mp65qKOLcUd6lTr4S9Gn/enynSrSf3p3FVgVAf6bXA==", + "dependencies": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/service-error-classification": "^2.1.5", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-retry/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@smithy/middleware-serde": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.3.0.tgz", + "integrity": "sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.2.0.tgz", + "integrity": "sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/node-config-provider": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.3.0.tgz", + "integrity": "sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==", + "dependencies": { + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/node-http-handler": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.5.0.tgz", + "integrity": "sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==", + "dependencies": { + "@smithy/abort-controller": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/querystring-builder": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/property-provider": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.2.0.tgz", + "integrity": "sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/protocol-http": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.3.0.tgz", + "integrity": "sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/querystring-builder": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.2.0.tgz", + "integrity": "sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==", + "dependencies": { + "@smithy/types": "^2.12.0", + "@smithy/util-uri-escape": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/querystring-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.2.0.tgz", + "integrity": "sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/service-error-classification": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.1.5.tgz", + "integrity": "sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==", + "dependencies": { + "@smithy/types": "^2.12.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/shared-ini-file-loader": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.4.0.tgz", + "integrity": "sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/signature-v4": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.3.0.tgz", + "integrity": "sha512-ui/NlpILU+6HAQBfJX8BBsDXuKSNrjTSuOYArRblcrErwKFutjrCNb/OExfVRyj9+26F9J+ZmfWT+fKWuDrH3Q==", + "dependencies": { + "@smithy/is-array-buffer": "^2.2.0", + "@smithy/types": "^2.12.0", + "@smithy/util-hex-encoding": "^2.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-uri-escape": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/smithy-client": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.5.1.tgz", + "integrity": "sha512-jrbSQrYCho0yDaaf92qWgd+7nAeap5LtHTI51KXqmpIFCceKU3K9+vIVTUH72bOJngBMqa4kyu1VJhRcSrk/CQ==", + "dependencies": { + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/types": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.12.0.tgz", + "integrity": "sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/url-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.2.0.tgz", + "integrity": "sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==", + "dependencies": { + "@smithy/querystring-parser": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-base64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.3.0.tgz", + "integrity": "sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-body-length-browser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.2.0.tgz", + "integrity": "sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==", + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-body-length-node": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.3.0.tgz", + "integrity": "sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-buffer-from": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz", + "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", + "dependencies": { + "@smithy/is-array-buffer": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-config-provider": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.3.0.tgz", + "integrity": "sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.2.1.tgz", + "integrity": "sha512-RtKW+8j8skk17SYowucwRUjeh4mCtnm5odCL0Lm2NtHQBsYKrNW0od9Rhopu9wF1gHMfHeWF7i90NwBz/U22Kw==", + "dependencies": { + "@smithy/property-provider": "^2.2.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.3.1.tgz", + "integrity": "sha512-vkMXHQ0BcLFysBMWgSBLSk3+leMpFSyyFj8zQtv5ZyUBx8/owVh1/pPEkzmW/DR/Gy/5c8vjLDD9gZjXNKbrpA==", + "dependencies": { + "@smithy/config-resolver": "^2.2.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-endpoints": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.2.0.tgz", + "integrity": "sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==", + "dependencies": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-hex-encoding": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.2.0.tgz", + "integrity": "sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-middleware": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.2.0.tgz", + "integrity": "sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-retry": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.2.0.tgz", + "integrity": "sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==", + "dependencies": { + "@smithy/service-error-classification": "^2.1.5", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.2.0.tgz", + "integrity": "sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==", + "dependencies": { + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/types": "^2.12.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-hex-encoding": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-uri-escape": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.2.0.tgz", + "integrity": "sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-utf8": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", + "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-waiter": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.2.0.tgz", + "integrity": "sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==", + "dependencies": { + "@smithy/abort-controller": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@swc/core": { + "version": "1.3.42", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.42", + "@swc/core-darwin-x64": "1.3.42", + "@swc/core-linux-arm-gnueabihf": "1.3.42", + "@swc/core-linux-arm64-gnu": "1.3.42", + "@swc/core-linux-arm64-musl": "1.3.42", + "@swc/core-linux-x64-gnu": "1.3.42", + "@swc/core-linux-x64-musl": "1.3.42", + "@swc/core-win32-arm64-msvc": "1.3.42", + "@swc/core-win32-ia32-msvc": "1.3.42", + "@swc/core-win32-x64-msvc": "1.3.42" + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.42", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.42", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.3.42", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.42", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.42", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.42", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.42", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.42", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.42", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.42", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "dev": true, + "dependencies": { + "defer-to-connect": "^2.0.1" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/aws-lambda": { + "version": "8.10.85", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/chai": { + "version": "4.3.16", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.16.tgz", + "integrity": "sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==", + "dev": true + }, + "node_modules/@types/cli-progress": { + "version": "3.11.5", + "resolved": "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.5.tgz", + "integrity": "sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cloneable-readable": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cls-hooked": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/convict": { + "version": "6.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/convict-format-with-validator": { + "version": "6.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/convict": "*" + } + }, + "node_modules/@types/fs-extra": { + "version": "9.0.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", + "dev": true, + "dependencies": { + "@types/minimatch": "^5.1.2", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/he": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.12", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", + "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/js-yaml": { + "version": "4.0.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/jsonfile": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/@types/jsonfile/-/jsonfile-6.1.4.tgz", + "integrity": "sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/lambda-log": { + "version": "2.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/lodash": { + "version": "4.14.176", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/memorystream": { + "version": "0.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true + }, + "node_modules/@types/mute-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@types/mute-stream/-/mute-stream-0.0.4.tgz", + "integrity": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "16.11.7", + "license": "MIT" + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/rewire": { + "version": "2.5.28", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/sax": { + "version": "1.2.3", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "node_modules/@types/sinon": { + "version": "10.0.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinonjs/fake-timers": "^7.1.0" + } + }, + "node_modules/@types/source-map-support": { + "version": "0.5.4", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "^0.6.0" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/traverse": { + "version": "0.6.32", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "8.3.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/verror": { + "version": "1.10.5", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/wrap-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz", + "integrity": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==", + "dev": true + }, + "node_modules/@types/wtfnode": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.22", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.8.0.tgz", + "integrity": "sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/type-utils": "7.8.0", + "@typescript-eslint/utils": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.8.0.tgz", + "integrity": "sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", + "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.8.0.tgz", + "integrity": "sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "7.8.0", + "@typescript-eslint/utils": "7.8.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", + "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", + "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", + "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.15", + "@types/semver": "^7.5.8", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "semver": "^7.6.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", + "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.8.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/abstract-leveldown": { + "version": "6.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "immediate": "^3.2.3", + "level-concat-iterator": "~2.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/abstract-leveldown/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/add-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", + "integrity": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==", + "dev": true + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/aggregate-error/node_modules/clean-stack": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansicolors": { + "version": "0.3.2", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-hook-jl": { + "version": "1.7.6", + "license": "MIT", + "dependencies": { + "stack-chain": "^1.3.7" + }, + "engines": { + "node": "^4.7 || >=6.9 || >=7.3" + } + }, + "node_modules/async-retry": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "dev": true, + "dependencies": { + "retry": "0.13.1" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/atomic-batcher": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-cdk": { + "version": "2.117.0", + "resolved": "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.117.0.tgz", + "integrity": "sha512-uuWT646vSRXZ/6don+wfK4kelV1aL4WOTduaihltRlXw4etHoMV3wJYBO30E6e8hAU+0HkLT7Fv58po50b12Sg==", + "dev": true, + "bin": { + "cdk": "bin/cdk" + }, + "engines": { + "node": ">= 14.15.0" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/aws-cdk-lib": { + "version": "2.117.0", + "resolved": "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.117.0.tgz", + "integrity": "sha512-My5T4hn34H6+tnZxKK2VlcvGI2N5SjqGt9lXWADcahdobuUcNizYrls7h/vcQ3BfwcZ5/tHTKtivkNyL8I1LDg==", + "bundleDependencies": [ + "@balena/dockerignore", + "case", + "fs-extra", + "ignore", + "jsonschema", + "minimatch", + "punycode", + "semver", + "table", + "yaml" + ], + "dependencies": { + "@aws-cdk/asset-awscli-v1": "^2.2.201", + "@aws-cdk/asset-kubectl-v20": "^2.1.2", + "@aws-cdk/asset-node-proxy-agent-v6": "^2.0.1", + "@balena/dockerignore": "^1.0.2", + "case": "1.6.3", + "fs-extra": "^11.2.0", + "ignore": "^5.3.0", + "jsonschema": "^1.4.1", + "minimatch": "^3.1.2", + "punycode": "^2.3.1", + "semver": "^7.5.4", + "table": "^6.8.1", + "yaml": "1.10.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "constructs": "^10.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/@balena/dockerignore": { + "version": "1.0.2", + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/aws-cdk-lib/node_modules/ajv": { + "version": "8.12.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/aws-cdk-lib/node_modules/ansi-regex": { + "version": "5.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-cdk-lib/node_modules/ansi-styles": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/aws-cdk-lib/node_modules/astral-regex": { + "version": "2.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-cdk-lib/node_modules/balanced-match": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/brace-expansion": { + "version": "1.1.11", + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/aws-cdk-lib/node_modules/case": { + "version": "1.6.3", + "inBundle": true, + "license": "(MIT OR GPL-3.0-or-later)", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/color-convert": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/color-name": { + "version": "1.1.4", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/concat-map": { + "version": "0.0.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/emoji-regex": { + "version": "8.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/fast-deep-equal": { + "version": "3.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/fs-extra": { + "version": "11.2.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/aws-cdk-lib/node_modules/graceful-fs": { + "version": "4.2.11", + "inBundle": true, + "license": "ISC" + }, + "node_modules/aws-cdk-lib/node_modules/ignore": { + "version": "5.3.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/aws-cdk-lib/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-cdk-lib/node_modules/json-schema-traverse": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/jsonfile": { + "version": "6.1.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/aws-cdk-lib/node_modules/jsonschema": { + "version": "1.4.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/aws-cdk-lib/node_modules/lodash.truncate": { + "version": "4.4.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/lru-cache": { + "version": "6.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aws-cdk-lib/node_modules/minimatch": { + "version": "3.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/aws-cdk-lib/node_modules/punycode": { + "version": "2.3.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/aws-cdk-lib/node_modules/require-from-string": { + "version": "2.0.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/semver": { + "version": "7.5.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aws-cdk-lib/node_modules/slice-ansi": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/aws-cdk-lib/node_modules/string-width": { + "version": "4.2.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-cdk-lib/node_modules/strip-ansi": { + "version": "6.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-cdk-lib/node_modules/table": { + "version": "6.8.1", + "inBundle": true, + "license": "BSD-3-Clause", + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/universalify": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/uri-js": { + "version": "4.4.1", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/yallist": { + "version": "4.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/aws-cdk-lib/node_modules/yaml": { + "version": "1.10.2", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/aws-embedded-metrics": { + "version": "2.0.4", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/aws-sdk": { + "version": "2.1614.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1614.0.tgz", + "integrity": "sha512-dsfoOk/1UBGfELJ9skBma1RzfYXalK+0QdStuwKCqrYHgpF/mlf7BqYOB0acNQHzxgVxEP0LOGjWZOzWWwdGhw==", + "dev": true, + "hasInstallScript": true, + "peer": true, + "dependencies": { + "buffer": "4.9.2", + "events": "1.1.1", + "ieee754": "1.1.13", + "jmespath": "0.16.0", + "querystring": "0.2.0", + "sax": "1.2.1", + "url": "0.10.3", + "util": "^0.12.4", + "uuid": "8.0.0", + "xml2js": "0.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/aws-sdk-client-mock": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/sinon": "^10.0.10", + "sinon": "^14.0.2", + "tslib": "^2.1.0" + } + }, + "node_modules/aws-sdk-client-mock/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/aws-sdk-client-mock/node_modules/@sinonjs/fake-timers": { + "version": "9.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/aws-sdk-client-mock/node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/aws-sdk-client-mock/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-sdk-client-mock/node_modules/sinon": { + "version": "14.0.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "^9.1.2", + "@sinonjs/samsam": "^7.0.1", + "diff": "^5.0.0", + "nise": "^5.1.2", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/aws-sdk-client-mock/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/aws-xray-sdk-core": { + "version": "3.3.4", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/service-error-classification": "^3.4.1", + "@aws-sdk/types": "^3.4.1", + "@types/cls-hooked": "^4.3.3", + "atomic-batcher": "^1.0.2", + "cls-hooked": "^4.2.2", + "semver": "^5.3.0" + }, + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/aws-xray-sdk-core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/big.js": { + "version": "5.2.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "dev": true, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "dev": true, + "dependencies": { + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys/node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001617", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz", + "integrity": "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/cardinal": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" + }, + "bin": { + "cdl": "bin/cdl.js" + } + }, + "node_modules/case": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", + "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/cdk": { + "resolved": "packages/cdk", + "link": true + }, + "node_modules/chai": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", + "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", + "dev": true, + "dependencies": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.0.8" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", + "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", + "dev": true + }, + "node_modules/class-transformer": { + "version": "0.4.0", + "license": "MIT" + }, + "node_modules/clean-stack": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clean-stack/node_modules/escape-string-regexp": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-progress": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.12.0.tgz", + "integrity": "sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==", + "dependencies": { + "string-width": "^4.2.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/cloneable-readable": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^3.3.0" + } + }, + "node_modules/cls-hooked": { + "version": "4.2.2", + "license": "BSD-2-Clause", + "dependencies": { + "async-hook-jl": "^1.7.6", + "emitter-listener": "^1.0.1", + "semver": "^5.4.1" + }, + "engines": { + "node": "^4.7 || >=6.9 || >=7.3 || >=8.2.1" + } + }, + "node_modules/cls-hooked/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/codemaker": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.98.0.tgz", + "integrity": "sha512-UAeICTmY7lJXf4OPnDTwKWg/DU87u67nyxuTjMON+vO8yo8C+EcPWnmmOmWtZm3wWLPsPuxyYIQxIIi/4OZ9TA==", + "dev": true, + "dependencies": { + "camelcase": "^6.3.0", + "decamelize": "^5.0.1", + "fs-extra": "^10.1.0" + }, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/codemaker/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/codemaker/node_modules/decamelize": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/codemaker/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/codemaker/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/codemaker/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colorette": { + "version": "2.0.16", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commonmark": { + "version": "0.31.0", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.31.0.tgz", + "integrity": "sha512-nuDsQ34gjmgAqjyIz6mbRWBW/XPE9wsBempAMBk2V/AA88ekztjTM46oi07J6c6Y/2Y8TdYCZi9L0pIBt/oMZw==", + "dev": true, + "dependencies": { + "entities": "~3.0.1", + "mdurl": "~1.0.1", + "minimist": "~1.2.5", + "string.prototype.repeat": "^1.0.0" + }, + "bin": { + "commonmark": "bin/commonmark" + }, + "engines": { + "node": "*" + } + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/constructs": { + "version": "10.1.244", + "resolved": "https://registry.npmjs.org/constructs/-/constructs-10.1.244.tgz", + "integrity": "sha512-oJBy6JoiwocEwKxY3yMXfbClT5ocKmX5qXUDpcxW4SRjlRvB8X2pR/lNqg74JVm9qAEUBesI0FLLqc2Ke1I2QA==", + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/conventional-changelog": { + "version": "3.1.25", + "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.25.tgz", + "integrity": "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==", + "dev": true, + "dependencies": { + "conventional-changelog-angular": "^5.0.12", + "conventional-changelog-atom": "^2.0.8", + "conventional-changelog-codemirror": "^2.0.8", + "conventional-changelog-conventionalcommits": "^4.5.0", + "conventional-changelog-core": "^4.2.1", + "conventional-changelog-ember": "^2.0.9", + "conventional-changelog-eslint": "^3.0.9", + "conventional-changelog-express": "^2.0.6", + "conventional-changelog-jquery": "^3.0.11", + "conventional-changelog-jshint": "^2.0.9", + "conventional-changelog-preset-loader": "^2.3.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-angular": { + "version": "5.0.13", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", + "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", + "dev": true, + "dependencies": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-atom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz", + "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", + "dev": true, + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-codemirror": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz", + "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", + "dev": true, + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-config-spec": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz", + "integrity": "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==", + "dev": true + }, + "node_modules/conventional-changelog-conventionalcommits": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", + "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", + "dev": true, + "dependencies": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", + "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", + "dev": true, + "dependencies": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^5.0.0", + "conventional-commits-parser": "^3.2.0", + "dateformat": "^3.0.0", + "get-pkg-repo": "^4.0.0", + "git-raw-commits": "^2.0.8", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^4.1.1", + "lodash": "^4.17.15", + "normalize-package-data": "^3.0.0", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-ember": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz", + "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", + "dev": true, + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-eslint": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz", + "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", + "dev": true, + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-express": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz", + "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", + "dev": true, + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-jquery": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz", + "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", + "dev": true, + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-jshint": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz", + "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", + "dev": true, + "dependencies": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-preset-loader": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", + "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-writer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", + "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", + "dev": true, + "dependencies": { + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-changelog-writer": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-writer/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/conventional-commits-filter": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", + "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", + "dev": true, + "dependencies": { + "lodash.ismatch": "^4.4.0", + "modify-values": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-commits-parser": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", + "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", + "dev": true, + "dependencies": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-recommended-bump": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", + "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", + "dev": true, + "dependencies": { + "concat-stream": "^2.0.0", + "conventional-changelog-preset-loader": "^2.3.4", + "conventional-commits-filter": "^2.0.7", + "conventional-commits-parser": "^3.2.0", + "git-raw-commits": "^2.0.8", + "git-semver-tags": "^4.1.1", + "meow": "^8.0.0", + "q": "^1.5.1" + }, + "bin": { + "conventional-recommended-bump": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/convict": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/convict/-/convict-6.2.4.tgz", + "integrity": "sha512-qN60BAwdMVdofckX7AlohVJ2x9UvjTNoKVXCL2LxFk1l7757EJqf1nySdMkPQer0bt8kQ5lQiyZ9/2NvrFBuwQ==", + "dependencies": { + "lodash.clonedeep": "^4.5.0", + "yargs-parser": "^20.2.7" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/convict-format-with-validator": { + "version": "6.2.0", + "license": "Apache-2.0", + "dependencies": { + "validator": "^13.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/create-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/create-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csv-parse": { + "version": "5.2.2", + "dev": true, + "license": "MIT" + }, + "node_modules/dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/date-format": { + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", + "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dedent": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "dev": true, + "dependencies": { + "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/deferred-leveldown": { + "version": "5.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "abstract-leveldown": "~6.2.1", + "inherits": "^2.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/defined": { + "version": "0.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-indent": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", + "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==", + "dev": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotgitignore": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz", + "integrity": "sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dotgitignore/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dotgitignore/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dotgitignore/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dotgitignore/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dotgitignore/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/downlevel-dts": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/downlevel-dts/-/downlevel-dts-0.11.0.tgz", + "integrity": "sha512-vo835pntK7kzYStk7xUHDifiYJvXxVhUapt85uk2AI94gUUAQX9HNRtrcMHNSc3YHJUEHGbYIGsM99uIbgAtxw==", + "dev": true, + "dependencies": { + "semver": "^7.3.2", + "shelljs": "^0.8.3", + "typescript": "next" + }, + "bin": { + "downlevel-dts": "index.js" + } + }, + "node_modules/dynalite": { + "version": "3.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "async": "^2.6.3", + "big.js": "^5.2.2", + "buffer-crc32": "^0.2.13", + "lazy": "^1.0.11", + "levelup": "^4.4.0", + "lock": "^1.1.0", + "memdown": "^5.1.0", + "minimist": "^1.2.5", + "once": "^1.4.0", + "subleveldown": "^5.0.0" + }, + "bin": { + "dynalite": "cli.js" + }, + "optionalDependencies": { + "leveldown": "^5.2.1" + } + }, + "node_modules/ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.762", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.762.tgz", + "integrity": "sha512-rrFvGweLxPwwSwJOjIopy3Vr+J3cIPtZzuc74bmlvmBIgQO3VYJDvVrlj94iKZ3ukXUH64Ex31hSfRTLqvjYJQ==", + "dev": true + }, + "node_modules/emitter-listener": { + "version": "1.1.2", + "license": "BSD-2-Clause", + "dependencies": { + "shimmer": "^1.2.0" + } + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, + "peer": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding-down": { + "version": "6.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "abstract-leveldown": "^6.2.1", + "inherits": "^2.0.3", + "level-codec": "^9.0.0", + "level-errors": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "optional": true, + "peer": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.0.tgz", + "integrity": "sha512-eyK64lASNug3Wo2+bQEBnYngjh9rkXUfOus403+OeVZteMon6moIhcEYbrSvcgBN6RsrRWCMoWcKDDK6UEsTOQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.0", + "@esbuild/android-arm": "0.21.0", + "@esbuild/android-arm64": "0.21.0", + "@esbuild/android-x64": "0.21.0", + "@esbuild/darwin-arm64": "0.21.0", + "@esbuild/darwin-x64": "0.21.0", + "@esbuild/freebsd-arm64": "0.21.0", + "@esbuild/freebsd-x64": "0.21.0", + "@esbuild/linux-arm": "0.21.0", + "@esbuild/linux-arm64": "0.21.0", + "@esbuild/linux-ia32": "0.21.0", + "@esbuild/linux-loong64": "0.21.0", + "@esbuild/linux-mips64el": "0.21.0", + "@esbuild/linux-ppc64": "0.21.0", + "@esbuild/linux-riscv64": "0.21.0", + "@esbuild/linux-s390x": "0.21.0", + "@esbuild/linux-x64": "0.21.0", + "@esbuild/netbsd-x64": "0.21.0", + "@esbuild/openbsd-x64": "0.21.0", + "@esbuild/sunos-x64": "0.21.0", + "@esbuild/win32-arm64": "0.21.0", + "@esbuild/win32-ia32": "0.21.0", + "@esbuild/win32-x64": "0.21.0" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/fancy-test": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-3.0.15.tgz", + "integrity": "sha512-kZZFdPzVWtKxBkmLLUfxhizseGl1ZZRuCmmuCko1oiAs/X/MvE4ACm/vlzvxfu4Oeb/7MJ8hVP8rUiVm3R729Q==", + "dev": true, + "dependencies": { + "@types/chai": "*", + "@types/lodash": "*", + "@types/node": "*", + "@types/sinon": "*", + "lodash": "^4.17.13", + "mock-stdin": "^1.0.0", + "nock": "^13.5.4", + "sinon": "^16.1.3", + "stdout-stderr": "^0.1.9" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/fancy-test/node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/fancy-test/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/fancy-test/node_modules/@sinonjs/samsam": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz", + "integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/fancy-test/node_modules/@sinonjs/samsam/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/fancy-test/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fancy-test/node_modules/nock": { + "version": "13.5.4", + "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.4.tgz", + "integrity": "sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "propagate": "^2.0.0" + }, + "engines": { + "node": ">= 10.13" + } + }, + "node_modules/fancy-test/node_modules/sinon": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-16.1.3.tgz", + "integrity": "sha512-mjnWWeyxcAf9nC0bXcPmiDut+oE8HYridTNzBbF98AYVLmWwGRp2ISEpyhYflG1ifILT+eNn3BmKUJPxjXUPlA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0", + "@sinonjs/fake-timers": "^10.3.0", + "@sinonjs/samsam": "^8.0.0", + "diff": "^5.1.0", + "nise": "^5.1.4", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/fancy-test/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", + "integrity": "sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==", + "funding": [ + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + }, + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.13.0", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "dev": true, + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-pkg-repo": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", + "dev": true, + "dependencies": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", + "through2": "^2.0.0", + "yargs": "^16.2.0" + }, + "bin": { + "get-pkg-repo": "src/cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-pkg-repo/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/get-pkg-repo/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/get-pkg-repo/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/get-pkg-repo/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/get-pkg-repo/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/get-pkg-repo/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/get-pkg-repo/node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/get-pkg-repo/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/git-hooks-list": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz", + "integrity": "sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==", + "dev": true, + "funding": { + "url": "https://github.com/fisker/git-hooks-list?sponsor=1" + } + }, + "node_modules/git-raw-commits": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, + "dependencies": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-remote-origin-url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==", + "dev": true, + "dependencies": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-semver-tags": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", + "dev": true, + "dependencies": { + "meow": "^8.0.0", + "semver": "^6.0.0" + }, + "bin": { + "git-semver-tags": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-semver-tags/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/gitconfiglocal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==", + "dev": true, + "dependencies": { + "ini": "^1.3.2" + } + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.0", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globals/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/got": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", + "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.9", + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/hosted-git-info": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", + "dev": true, + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-call": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/http-call/-/http-call-5.3.0.tgz", + "integrity": "sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w==", + "dev": true, + "dependencies": { + "content-type": "^1.0.4", + "debug": "^4.1.1", + "is-retry-allowed": "^1.1.0", + "is-stream": "^2.0.0", + "parse-json": "^4.0.0", + "tunnel-agent": "^0.6.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-call/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", + "dev": true, + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/hyperlinker": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.1.13", + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immediate": { + "version": "3.3.0", + "dev": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/inquirer": { + "version": "7.3.3", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "peer": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-text-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "dependencies": { + "text-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/isnumber": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/it-batch": { + "version": "1.0.9", + "license": "ISC" + }, + "node_modules/jake": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", + "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-dynalite": { + "version": "3.6.1", + "dev": true, + "license": "MIT", + "workspaces": [ + "./e2e/*" + ], + "dependencies": { + "@aws/dynamodb-auto-marshaller": "^0.7.1", + "dynalite": "^3.2.1", + "setimmediate": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "@aws-sdk/client-dynamodb": ">=3", + "aws-sdk": "2.x.x", + "jest": ">=20" + }, + "peerDependenciesMeta": { + "@aws-sdk/client-dynamodb": { + "optional": true + }, + "aws-sdk": { + "optional": true + } + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jmespath": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz", + "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jsii": { + "version": "5.4.15", + "resolved": "https://registry.npmjs.org/jsii/-/jsii-5.4.15.tgz", + "integrity": "sha512-syw2kfZJyb+A6G9ApsmlTBUd/+xMCAQRjml45NSZs6k7+4ifVByOfiIoA05e8zfkn+nOOC+BcTFlHeYubiBHKQ==", + "dev": true, + "dependencies": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "case": "^1.6.3", + "chalk": "^4", + "downlevel-dts": "^0.11.0", + "fast-deep-equal": "^3.1.3", + "log4js": "^6.9.1", + "semver": "^7.6.2", + "semver-intersect": "^1.5.0", + "sort-json": "^2.0.1", + "spdx-license-list": "^6.9.0", + "typescript": "~5.4", + "yargs": "^17.7.2" + }, + "bin": { + "jsii": "bin/jsii" + }, + "engines": { + "node": ">= 18.12.0" + } + }, + "node_modules/jsii-diff": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/jsii-diff/-/jsii-diff-1.98.0.tgz", + "integrity": "sha512-jyRhxkEehIt/zK3xeGbIlb0m2f+G1dZxbyQ7DB4iHOHPcgx6SPiRIzhGnbN/EnB7dQ1hAk0vFzvFryiM6TmUAQ==", + "dev": true, + "dependencies": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "fs-extra": "^10.1.0", + "jsii-reflect": "^1.98.0", + "log4js": "^6.9.1", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-diff": "bin/jsii-diff" + }, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/jsii-diff/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/jsii-diff/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsii-diff/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsii-diff/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/jsii-diff/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-docgen": { + "version": "10.4.9", + "resolved": "https://registry.npmjs.org/jsii-docgen/-/jsii-docgen-10.4.9.tgz", + "integrity": "sha512-wyMW25pEhPEsIMMwFO6GcRXKZbnDwgn5GKV/AlTLuTUKHbTSnWDzy6e0MU6U9zVgjt4frJl7vZDl/4UlIcptrg==", + "dev": true, + "dependencies": { + "@jsii/spec": "^1.98.0", + "case": "^1.6.3", + "fs-extra": "^10.1.0", + "glob": "^8.1.0", + "glob-promise": "^6.0.5", + "jsii-reflect": "^1.98.0", + "semver": "^7.6.2", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-docgen": "bin/jsii-docgen" + }, + "peerDependencies": { + "jsii-rosetta": "^1.85.0 || ~5.0.14 || ~5.1.2 || ~5.2.0 || ~5.3.0 || ~5.4.0" + } + }, + "node_modules/jsii-docgen/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/jsii-docgen/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/jsii-docgen/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsii-docgen/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jsii-docgen/node_modules/glob-promise": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.5.tgz", + "integrity": "sha512-uUzvxo60yo/vMLXZHCNAlfdM5U5A07jCnUO8xTK44Z0Vc58poGDXhDx8ju1DmPdprOORh+4Lpog64hl+AJ5piA==", + "dev": true, + "dependencies": { + "@types/glob": "^8.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/ahmadnassri" + }, + "peerDependencies": { + "glob": "^8.0.3" + } + }, + "node_modules/jsii-docgen/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsii-docgen/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-docgen/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/jsii-docgen/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-pacmak": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.98.0.tgz", + "integrity": "sha512-p2H8IbiI3RNIUg+oRcJ9Xu1I7CgJUxCMpUl5IPzWAjz1qzhIKOzlkaAMGJfJZJQtib5kWI2OmZ6xBZScWg16+Q==", + "dev": true, + "dependencies": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "clone": "^2.1.2", + "codemaker": "^1.98.0", + "commonmark": "^0.30.0", + "escape-string-regexp": "^4.0.0", + "fs-extra": "^10.1.0", + "jsii-reflect": "^1.98.0", + "semver": "^7.5.4", + "spdx-license-list": "^6.8.0", + "xmlbuilder": "^15.1.1", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-pacmak": "bin/jsii-pacmak" + }, + "engines": { + "node": ">= 14.17.0" + }, + "peerDependencies": { + "jsii-rosetta": "^1.98.0 || ~5.2.0 || ~5.3.0 || ~5.4.0" + } + }, + "node_modules/jsii-pacmak/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/jsii-pacmak/node_modules/commonmark": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.30.0.tgz", + "integrity": "sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==", + "dev": true, + "dependencies": { + "entities": "~2.0", + "mdurl": "~1.0.1", + "minimist": ">=1.2.2", + "string.prototype.repeat": "^0.2.0" + }, + "bin": { + "commonmark": "bin/commonmark" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jsii-pacmak/node_modules/entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true + }, + "node_modules/jsii-pacmak/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jsii-pacmak/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsii-pacmak/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsii-pacmak/node_modules/string.prototype.repeat": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", + "integrity": "sha512-1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA==", + "dev": true + }, + "node_modules/jsii-pacmak/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/jsii-pacmak/node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jsii-pacmak/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-reflect": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.98.0.tgz", + "integrity": "sha512-HulKk6pQOk0zkqJXRaweV5PezvAghZAX4cuB7i0sBA0/kz1ypqB1KFhBiZ1PLeeMzAfb1/WmCF2UTu9xzQit4w==", + "dev": true, + "dependencies": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "chalk": "^4", + "fs-extra": "^10.1.0", + "oo-ascii-tree": "^1.98.0", + "yargs": "^16.2.0" + }, + "bin": { + "jsii-tree": "bin/jsii-tree" + }, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/jsii-reflect/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jsii-reflect/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jsii-reflect/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/jsii-reflect/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jsii-reflect/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jsii-reflect/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsii-reflect/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsii-reflect/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsii-reflect/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsii-reflect/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/jsii-reflect/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsii-rosetta": { + "version": "5.4.17", + "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.4.17.tgz", + "integrity": "sha512-BFkL3y4IgOxBKVPk43OwCFgjiYwR05t41ZP9ZjQP9AZeeiCiP89NQ7Y7qrs8+A5z8RyEw6RuAtkHPke2oPtR2w==", + "dev": true, + "dependencies": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "@xmldom/xmldom": "^0.8.10", + "chalk": "^4", + "commonmark": "^0.31.0", + "fast-glob": "^3.3.2", + "jsii": "~5.4.0", + "semver": "^7.6.2", + "semver-intersect": "^1.5.0", + "stream-json": "^1.8.0", + "typescript": "~5.4", + "workerpool": "^6.5.1", + "yargs": "^17.7.2" + }, + "bin": { + "jsii-rosetta": "bin/jsii-rosetta" + }, + "engines": { + "node": ">= 18.12.0" + } + }, + "node_modules/jsii-rosetta/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jsii-rosetta/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jsii-rosetta/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jsii-rosetta/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jsii-rosetta/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsii-rosetta/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsii/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jsii/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jsii/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jsii/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jsii/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsii/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "dev": true, + "license": "ISC" + }, + "node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "dependencies": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/just-extend": { + "version": "4.2.1", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lambda-log": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "fast-safe-stringify": "^2.1.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/lazy": { + "version": "1.0.11", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.2.0" + } + }, + "node_modules/lcov-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz", + "integrity": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==", + "dev": true, + "bin": { + "lcov-parse": "bin/cli.js" + } + }, + "node_modules/level-codec": { + "version": "9.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-codec/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/level-concat-iterator": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/level-errors": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "errno": "~0.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-iterator-stream": { + "version": "4.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-option-wrap": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "defined": "~0.0.0" + } + }, + "node_modules/level-supports": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/leveldown": { + "version": "5.6.0", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "abstract-leveldown": "~6.2.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "~4.1.0" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/levelup": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "deferred-leveldown": "~5.3.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/listr2": { + "version": "3.13.3", + "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^2.1.0", + "clone": "^2.1.2", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rxjs": "^7.4.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + } + }, + "node_modules/listr2/node_modules/rxjs": { + "version": "7.4.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "~2.1.0" + } + }, + "node_modules/listr2/node_modules/tslib": { + "version": "2.1.0", + "dev": true, + "license": "0BSD" + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lock": { + "version": "1.1.0", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash": { + "version": "4.17.21", + "license": "MIT" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "license": "MIT" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.ismatch": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-update/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log4js": { + "version": "6.9.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz", + "integrity": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==", + "dev": true, + "dependencies": { + "date-format": "^4.0.14", + "debug": "^4.3.4", + "flatted": "^3.2.7", + "rfdc": "^1.3.0", + "streamroller": "^3.1.5" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.1" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/ltgt": { + "version": "2.2.1", + "dev": true, + "license": "MIT" + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "dev": true, + "license": "ISC" + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/memdown": { + "version": "5.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "abstract-leveldown": "~6.2.1", + "functional-red-black-tree": "~1.0.1", + "immediate": "~3.2.3", + "inherits": "~2.0.1", + "ltgt": "~2.2.0", + "safe-buffer": "~5.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/memdown/node_modules/immediate": { + "version": "3.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/memorystream": { + "version": "0.3.1", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/meow/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/meow/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/meow/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/meow/node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "license": "MIT", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "dev": true, + "license": "MIT" + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minimist-options/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mnemonist": { + "version": "0.38.3", + "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.3.tgz", + "integrity": "sha512-2K9QYubXx/NAjv4VLq1d1Ly8pWNC5L3BrixtdkyTegXWJIqY+zLNDhhX/A+ZwWt70tB1S8H4BE8FLYEFyNoOBw==", + "dependencies": { + "obliterator": "^1.6.1" + } + }, + "node_modules/mock-stdin": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mock-stdin/-/mock-stdin-1.0.0.tgz", + "integrity": "sha512-tukRdb9Beu27t6dN+XztSRHq9J0B/CoAOySGzHfn8UTfmqipA5yNT/sDUEyYdAV3Hpka6Wx6kOMxuObdOex60Q==", + "dev": true + }, + "node_modules/modify-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "dev": true, + "license": "ISC" + }, + "node_modules/napi-macros": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-orderby": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/nise": { + "version": "5.1.4", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "^10.0.2", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + } + }, + "node_modules/nise/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/nise/node_modules/@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0" + } + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/nock": { + "version": "13.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.21", + "propagate": "^2.0.0" + }, + "engines": { + "node": ">= 10.13" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-gyp-build": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "optional": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz", + "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==", + "dev": true, + "dependencies": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-treeify": { + "version": "1.1.33", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obliterator": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-1.6.1.tgz", + "integrity": "sha512-9WXswnqINnnhOG/5SLimUlzuU1hFJUc8zkwyD59Sd+dPOMf05PmnYG/d6Q7HZ+KmgkZJa1PxRso6QdM3sTNHig==" + }, + "node_modules/oclif": { + "version": "4.10.6", + "resolved": "https://registry.npmjs.org/oclif/-/oclif-4.10.6.tgz", + "integrity": "sha512-3MF84SA56CMJqZuPaGkOOhu5CLSrvBZB+LI/02OlfuubOPNAi92OLxkEnihxLgrBuI5nKe405OcsiPtap9tRyA==", + "dev": true, + "dependencies": { + "@aws-sdk/client-cloudfront": "^3.569.0", + "@aws-sdk/client-s3": "^3.569.0", + "@inquirer/confirm": "^3.1.6", + "@inquirer/input": "^2.1.1", + "@inquirer/select": "^2.3.2", + "@oclif/core": "^3.26.5", + "@oclif/plugin-help": "^6.0.21", + "@oclif/plugin-not-found": "^3.1.8", + "@oclif/plugin-warn-if-update-available": "^3.0.17", + "async-retry": "^1.3.3", + "chalk": "^4", + "change-case": "^4", + "debug": "^4.3.4", + "ejs": "^3.1.10", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^8.1", + "github-slugger": "^2", + "got": "^13", + "lodash": "^4.17.21", + "normalize-package-data": "^6", + "semver": "^7.6.0", + "sort-package-json": "^2.10.0", + "validate-npm-package-name": "^5.0.0" + }, + "bin": { + "oclif": "bin/run.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-s3": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.576.0.tgz", + "integrity": "sha512-6Xhj8x7ijLqoLYncKMUn433QKWzEezDLR3TipKv/qHThTa8oYXkymMat/MfJ/lx3jsc8wS72i+1kTwO+AFUg6w==", + "dev": true, + "dependencies": { + "@aws-crypto/sha1-browser": "3.0.0", + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-bucket-endpoint": "3.575.0", + "@aws-sdk/middleware-expect-continue": "3.575.0", + "@aws-sdk/middleware-flexible-checksums": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-location-constraint": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-sdk-s3": "3.575.0", + "@aws-sdk/middleware-signing": "3.575.0", + "@aws-sdk/middleware-ssec": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/signature-v4-multi-region": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@aws-sdk/xml-builder": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/eventstream-serde-browser": "^3.0.0", + "@smithy/eventstream-serde-config-resolver": "^3.0.0", + "@smithy/eventstream-serde-node": "^3.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-blob-browser": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/hash-stream-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/md5-js": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "@smithy/util-waiter": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.576.0.tgz", + "integrity": "sha512-xbKE4bf3HYvkdrvn5kkpUdcoi3mg7uDLLkSbGaj0tzW3vNSdx9qLrCMuwfV7KrhVKWwx+lnw/2LGuCR2B5y0IA==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.576.0.tgz", + "integrity": "sha512-6U8933O9h6iMnQDpH3OtFhS3G3FVttYZUqTpC2T0FnSSX7zgG0GnlxdQiyZh1j1aFrEB8bFw/RSmxPcMJJuSlQ==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.575.0.tgz", + "integrity": "sha512-8MrT4J2dRiskf0JFMGL5VNBqPvc6igNa218LGBJzHXmLsm1WfGCGnce84R7U2USr8oPOenu0XzSCLvMQyZbGWQ==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "dependencies": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "3.575.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/core": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.576.0.tgz", + "integrity": "sha512-KDvDlbeipSTIf+ffKtTg1m419TK7s9mZSWC8bvuZ9qx6/sjQFOXIKOVqyuli6DnfxGbvRcwoRuY99OcCH1N/0w==", + "dev": true, + "dependencies": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.575.0.tgz", + "integrity": "sha512-YTgpq3rvYBXzW6OTDB00cE79evQtss/lz2GlJXgqqVXD0m7i77hGA8zb44VevP/WxtDaiSW7SSjuu8VCBGsg4g==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.575.0.tgz", + "integrity": "sha512-xQfVmYI+9KqRvhWY8fyElnpcVUBBUgi/Hoji3oU6WLrUjrX98k93He7gKDQSyHf7ykMLUAJYWwsV4AjQ2j6njA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.575.0.tgz", + "integrity": "sha512-BdM6a/5VUuNge3c6yRuxvO+4srLoSfqHfkQGfUDfhTdTJpljlpfnc9h3z2Ni1+aueOHPZMNFWIktHDcX5wUGBg==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "3.575.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "dependencies": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "3.575.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.576.0.tgz", + "integrity": "sha512-Ad244g3TJnfY1QFlZ+cywD6kgGD2yj+qg47Ryt50Y42bwmNuuqSpF9n0C71opRR68Rcl7ksOxixCJomWqpcHbA==", + "dev": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.576.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.576.0.tgz", + "integrity": "sha512-AwH/+29SbjhxGJVYhFn6+7r0MZ7TjJClySTJzuOoyjJGPWAifTdEuFkyOw8Bs9fEvbJ0ExgFxSaa445fO56kmg==", + "dev": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "3.576.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.575.0.tgz", + "integrity": "sha512-2/5NJV7MZysKglqJSQ/O8OELNcwLcH3xknabL9NagtzB7RNB2p1AUXR0UlTey9sSDLL4oCmNa/+unYuglW/Ahg==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.576.0.tgz", + "integrity": "sha512-1F17issiqf+mSG7KJ+D0SfZRYBZPAmRcA5+VHDUuMLozhh8tyYMe0mwzOt9IKc7ocrJA+2Wp7l7sg3h6aanedQ==", + "dev": true, + "dependencies": { + "@aws-sdk/client-sso": "3.576.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "dependencies": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "3.575.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.575.0.tgz", + "integrity": "sha512-QcvVH7wpvpFRXGAGgCBfQeiF/ptD0NJ+Hrc8dDYfPGhFeZ0EoVQBYNphLi25xe7JZ+XbaqCKrURHZtr4fAEOJw==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "3.575.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-bucket-endpoint": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.575.0.tgz", + "integrity": "sha512-ytsp7xcmbpkVk4TLoi91YyXQh/vwSIGdJ2Awo/pi6ac5Fqe6OntPijh5GHSVj5ZrxW4haPWb6HdBmKMo4liGEw==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-arn-parser": "3.568.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-expect-continue": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.575.0.tgz", + "integrity": "sha512-8Nq4UtEi63MJPoYBACW5YoMKQdbrkLNGIdTyrolNRNwVS+6nQqDMvBplakCzQ1nL1rHOEEsKKc8e2BlG9SkR5A==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-flexible-checksums": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.575.0.tgz", + "integrity": "sha512-UbyqN39v6s+olyuVKwX778w6J2ZuYpxb1j+KdhFtZwpMSLd/UIQ0+A71U2vB6TrC52OEW0jIXEEBv6PcMBz9nw==", + "dev": true, + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@aws-crypto/crc32c": "3.0.0", + "@aws-sdk/types": "3.575.0", + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.575.0.tgz", + "integrity": "sha512-V2WoLBiXNCc4rIWZt6FUcP4TN0Vk02A9PPCBWkTfyOooiqfq+WZmZjRRBpwl1+5UsvARslrKWF0VzheMRXPJLQ==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-location-constraint": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.575.0.tgz", + "integrity": "sha512-MtQsLsEjSSSfm0OlQqg9PEzS1nxJDdApGoeCYLTbCzIp6hChdLZCCsDXwGg9S++24rjQsUglMhXh4WGXQ9FDnw==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-logger": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.575.0.tgz", + "integrity": "sha512-7DEKx9Z11Maaye7FfhYtC8rjbM/PcFcMO2N4QEAfypcgWCj+w4gseE2OGdfAH9OFDoFc6YvLp53v16vbPjzQSg==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.575.0.tgz", + "integrity": "sha512-ri89ldRFos6KZDGaknWPS2XPO9qr+gZ7+mPaoU8YkSM1W4uKqtnUSONyc+O3CFGJrqReuGHhRq0l2Sld0bjwOw==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-sdk-s3": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.575.0.tgz", + "integrity": "sha512-8cBG8/tap4F6+UigTpKu8D2bvsLgqRTmn1K86qo3LqRX0Wc5X8TVjdKA2PmG0onOOr7rqTLcP9Q02LCh3usU6Q==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-arn-parser": "3.568.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-signing": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.575.0.tgz", + "integrity": "sha512-frpGG7i3YngWwrYIeDq8/nbat3Gfl803qasaS112rmlPU0ezmYS1SPxpXjpIKxUUYofbzaFtRBAOHU1u7GnWew==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-ssec": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.575.0.tgz", + "integrity": "sha512-rEFt2w3DdlmPsHRvVXOW6rNDIPE7UaEZ5a4LAkn78XilQYuQdhm5wtw5Ao0pJpDSVYNCZDVZaAvdHKQ1dnfwCA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.575.0.tgz", + "integrity": "sha512-fWlr4RfrUNS2R3PgP+WsoMYORAgv/47Lp0J0fb3dXO1YvdczNWddRbFSUX2MQxM/y9XFfQPLpLgzluhoL3Cjeg==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.575.0.tgz", + "integrity": "sha512-sBJKwTWKCWu9y8FzXIijYGwkKr3tDkPXM7BylToe6W+tGkp4OirV4iXrWA9zReNwTTepoxHufofqjGK9BtcI8g==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/signature-v4-multi-region": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.575.0.tgz", + "integrity": "sha512-QMwuLuNwnEQ51RCZX8H/lXnOJgBcJJOCgClB9usW/XujNJVq8GnpZ5E7TsQLN88G6fifmcjQWonLKummuh/zVA==", + "dev": true, + "dependencies": { + "@aws-sdk/middleware-sdk-s3": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/types": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.575.0.tgz", + "integrity": "sha512-XrnolQGs0wXxdgNudirR14OgNOarH7WUif38+2Pd4onZH+L7XoILem0EgA1tRpgFpw2pFHlZCNaAHDNSBEal7g==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/util-arn-parser": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.568.0.tgz", + "integrity": "sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/util-endpoints": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.575.0.tgz", + "integrity": "sha512-wC5x+V6w3kRlR6X6XVINsAPDYG+Tzs3Wthlw+YLtjuPODUNZIQAqsABHahxnekFyAvse+1929Hwo+CaL+BHZGA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.575.0.tgz", + "integrity": "sha512-iADonXyaXgwvC4T0qRuDWCdKInz82GX2cyezq/oqVlL8bPY7HD8jwZZruuJdq5tkaJi1EhbO4+f1ksZqOiZKvQ==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.575.0.tgz", + "integrity": "sha512-kwzvBfA0LoILDOFS6BV8uOkksBHrYulP6kNXegB5eZnDSNia5DbBsXqxQ/HknNF5a429SWQw2aaQJEgQvZB1VA==", + "dev": true, + "dependencies": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/oclif/node_modules/@aws-sdk/xml-builder": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz", + "integrity": "sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/chunked-blob-reader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-3.0.0.tgz", + "integrity": "sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/chunked-blob-reader-native": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-3.0.0.tgz", + "integrity": "sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==", + "dev": true, + "dependencies": { + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/config-resolver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.0.tgz", + "integrity": "sha512-2GzOfADwYLQugYkKQhIyZyQlM05K+tMKvRnc6eFfZcpJGRfKoMUMYdPlBKmqHwQFXQKBrGV6cxL9oymWgDzvFw==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/core": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.0.1.tgz", + "integrity": "sha512-rcMkjvwxH/bER+oZUPR0yTA0ELD6m3A+d92+CFkdF6HJFCBB1bXo7P5pm21L66XwTN01B6bUhSCQ7cymWRD8zg==", + "dev": true, + "dependencies": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.1", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/credential-provider-imds": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.0.0.tgz", + "integrity": "sha512-lfmBiFQcA3FsDAPxNfY0L7CawcWtbyWsBOHo34nF095728JLkBX4Y9q/VPPE2r7fqMVK+drmDigqE2/SSQeVRA==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/eventstream-codec": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.0.0.tgz", + "integrity": "sha512-PUtyEA0Oik50SaEFCZ0WPVtF9tz/teze2fDptW6WRXl+RrEenH8UbEjudOz8iakiMl3lE3lCVqYf2Y+znL8QFQ==", + "dev": true, + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/eventstream-serde-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.0.tgz", + "integrity": "sha512-NB7AFiPN4NxP/YCAnrvYR18z2/ZsiHiF7VtG30gshO9GbFrIb1rC8ep4NGpJSWrz6P64uhPXeo4M0UsCLnZKqw==", + "dev": true, + "dependencies": { + "@smithy/eventstream-serde-universal": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/eventstream-serde-config-resolver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.0.tgz", + "integrity": "sha512-RUQG3vQ3LX7peqqHAbmayhgrF5aTilPnazinaSGF1P0+tgM3vvIRWPHmlLIz2qFqB9LqFIxditxc8O2Z6psrRw==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/eventstream-serde-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.0.tgz", + "integrity": "sha512-baRPdMBDMBExZXIUAoPGm/hntixjt/VFpU6+VmCyiYJYzRHRxoaI1MN+5XE+hIS8AJ2GCHLMFEIOLzq9xx1EgQ==", + "dev": true, + "dependencies": { + "@smithy/eventstream-serde-universal": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/eventstream-serde-universal": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.0.tgz", + "integrity": "sha512-HNFfShmotWGeAoW4ujP8meV9BZavcpmerDbPIjkJbxKbN8RsUcpRQ/2OyIxWNxXNH2GWCAxuSB7ynmIGJlQ3Dw==", + "dev": true, + "dependencies": { + "@smithy/eventstream-codec": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/fetch-http-handler": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz", + "integrity": "sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg==", + "dev": true, + "dependencies": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/hash-blob-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.0.0.tgz", + "integrity": "sha512-/Wbpdg+bwJvW7lxR/zpWAc1/x/YkcqguuF2bAzkJrvXriZu1vm8r+PUdE4syiVwQg7PPR2dXpi3CLBb9qRDaVQ==", + "dev": true, + "dependencies": { + "@smithy/chunked-blob-reader": "^3.0.0", + "@smithy/chunked-blob-reader-native": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/hash-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.0.tgz", + "integrity": "sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/hash-stream-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.0.0.tgz", + "integrity": "sha512-J0i7de+EgXDEGITD4fxzmMX8CyCNETTIRXlxjMiNUvvu76Xn3GJ31wQR85ynlPk2wI1lqoknAFJaD1fiNDlbIA==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/invalid-dependency": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz", + "integrity": "sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/md5-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.0.tgz", + "integrity": "sha512-Tm0vrrVzjlD+6RCQTx7D3Ls58S3FUH1ZCtU1MIh/qQmaOo1H9lMN2as6CikcEwgattnA9SURSdoJJ27xMcEfMA==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/middleware-content-length": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz", + "integrity": "sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg==", + "dev": true, + "dependencies": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/middleware-endpoint": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.0.tgz", + "integrity": "sha512-aXOAWztw/5qAfp0NcA2OWpv6ZI/E+Dh9mByif7i91D/0iyYNUcKvskmXiowKESFkuZ7PIMd3VOR4fTibZDs2OQ==", + "dev": true, + "dependencies": { + "@smithy/middleware-serde": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/middleware-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.1.tgz", + "integrity": "sha512-hBhSEuL841FhJBK/19WpaGk5YWSzFk/P2UaVjANGKRv3eYNO8Y1lANWgqnuPWjOyCEWMPr58vELFDWpxvRKANw==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/service-error-classification": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/middleware-serde": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz", + "integrity": "sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/middleware-stack": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz", + "integrity": "sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/node-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.0.0.tgz", + "integrity": "sha512-buqfaSdDh0zo62EPLf8rGDvcpKwGpO5ho4bXS2cdFhlOta7tBkWJt+O5uiaAeICfIOfPclNOndshDNSanX2X9g==", + "dev": true, + "dependencies": { + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/node-http-handler": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz", + "integrity": "sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ==", + "dev": true, + "dependencies": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/property-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.0.0.tgz", + "integrity": "sha512-LmbPgHBswdXCrkWWuUwBm9w72S2iLWyC/5jet9/Y9cGHtzqxi+GVjfCfahkvNV4KXEwgnH8EMpcrD9RUYe0eLQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/protocol-http": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.0.0.tgz", + "integrity": "sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/querystring-builder": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz", + "integrity": "sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/querystring-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz", + "integrity": "sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/service-error-classification": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz", + "integrity": "sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.0.0.tgz", + "integrity": "sha512-REVw6XauXk8xE4zo5aGL7Rz4ywA8qNMUn8RtWeTRQsgAlmlvbJ7CEPBcaXU2NDC3AYBgYAXrGyWD8XrN8UGDog==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/signature-v4": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-3.0.0.tgz", + "integrity": "sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA==", + "dev": true, + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/smithy-client": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.0.1.tgz", + "integrity": "sha512-KAiFY4Y4jdHxR+4zerH/VBhaFKM8pbaVmJZ/CWJRwtM/CmwzTfXfvYwf6GoUwiHepdv+lwiOXCuOl6UBDUEINw==", + "dev": true, + "dependencies": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.0.0.tgz", + "integrity": "sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/url-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.0.tgz", + "integrity": "sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw==", + "dev": true, + "dependencies": { + "@smithy/querystring-parser": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "dev": true, + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-body-length-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/oclif/node_modules/@smithy/util-body-length-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "dev": true, + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-defaults-mode-browser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.1.tgz", + "integrity": "sha512-nW5kEzdJn1Bn5TF+gOPHh2rcPli8JU9vSSXLbfg7uPnfR1TMRQqs9zlYRhIb87NeSxIbpdXOI94tvXSy+fvDYg==", + "dev": true, + "dependencies": { + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-defaults-mode-node": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.1.tgz", + "integrity": "sha512-TFk+Qb+elLc/MOhtSp+50fstyfZ6avQbgH2d96xUBpeScu+Al9elxv+UFAjaTHe0HQe5n+wem8ZLpXvU8lwV6Q==", + "dev": true, + "dependencies": { + "@smithy/config-resolver": "^3.0.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-endpoints": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.0.tgz", + "integrity": "sha512-+exaXzEY3DNt2qtA2OtRNSDlVrE4p32j1JSsQkzA5AdP0YtJNjkYbYhJxkFmPYcjI1abuwopOZCwUmv682QkiQ==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-middleware": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.0.tgz", + "integrity": "sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ==", + "dev": true, + "dependencies": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-retry": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.0.tgz", + "integrity": "sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g==", + "dev": true, + "dependencies": { + "@smithy/service-error-classification": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-stream": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.1.tgz", + "integrity": "sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA==", + "dev": true, + "dependencies": { + "@smithy/fetch-http-handler": "^3.0.1", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "dev": true, + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/@smithy/util-waiter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.0.0.tgz", + "integrity": "sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw==", + "dev": true, + "dependencies": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/oclif/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/oclif/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/oclif/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/oclif/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/oclif/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/oclif/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/oclif/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/once": { + "version": "1.4.0", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/oo-ascii-tree": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.98.0.tgz", + "integrity": "sha512-+GE7ywhtS6MctbfcO+vZzqIxcFzucZCwmawcwCVo89DxQDakV1JFfFViTXG4A90UzTAsU4tQteGmwDtwOlOXLw==", + "dev": true, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "dev": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "dev": true, + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "1.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/path-to-regexp/node_modules/isarray": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/progress": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/projen": { + "version": "0.81.6", + "resolved": "https://registry.npmjs.org/projen/-/projen-0.81.6.tgz", + "integrity": "sha512-uvyZqCKHbG7++KBcFUgvVqWkMVbpZHs7oaNWSKbxPw//vHIOytjYklIq/tnPXq8V6eOx6+hWXAvn9QMfJszQag==", + "bundleDependencies": [ + "@iarna/toml", + "case", + "chalk", + "comment-json", + "conventional-changelog-config-spec", + "fast-json-patch", + "glob", + "ini", + "semver", + "shx", + "xmlbuilder2", + "yaml", + "yargs" + ], + "dev": true, + "dependencies": { + "@iarna/toml": "^2.2.5", + "case": "^1.6.3", + "chalk": "^4.1.2", + "comment-json": "4.2.2", + "constructs": "^10.0.0", + "conventional-changelog-config-spec": "^2.1.0", + "fast-json-patch": "^3.1.1", + "glob": "^8", + "ini": "^2.0.0", + "semver": "^7.6.0", + "shx": "^0.3.4", + "xmlbuilder2": "^3.1.1", + "yaml": "^2.2.2", + "yargs": "^17.7.2" + }, + "bin": { + "projen": "bin/projen" + }, + "engines": { + "node": ">= 16.0.0" + }, + "peerDependencies": { + "constructs": "^10.0.0" + } + }, + "node_modules/projen/node_modules/@iarna/toml": { + "version": "2.2.5", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/projen/node_modules/@oozcitak/dom": { + "version": "1.15.10", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@oozcitak/infra": "1.0.8", + "@oozcitak/url": "1.0.4", + "@oozcitak/util": "8.3.8" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/projen/node_modules/@oozcitak/infra": { + "version": "1.0.8", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@oozcitak/util": "8.3.8" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/projen/node_modules/@oozcitak/url": { + "version": "1.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@oozcitak/infra": "1.0.8", + "@oozcitak/util": "8.3.8" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/projen/node_modules/@oozcitak/util": { + "version": "8.3.8", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/projen/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/projen/node_modules/argparse": { + "version": "1.0.10", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/projen/node_modules/array-timsort": { + "version": "1.0.3", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/projen/node_modules/case": { + "version": "1.6.3", + "dev": true, + "inBundle": true, + "license": "(MIT OR GPL-3.0-or-later)", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/projen/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/projen/node_modules/cliui": { + "version": "8.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/projen/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/projen/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/comment-json": { + "version": "4.2.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/projen/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/conventional-changelog-config-spec": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/core-util-is": { + "version": "1.0.3", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/escalade": { + "version": "3.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/projen/node_modules/esprima": { + "version": "4.0.1", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/projen/node_modules/fast-json-patch": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/fs.realpath": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/projen/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/projen/node_modules/get-caller-file": { + "version": "2.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/projen/node_modules/glob": { + "version": "8.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/projen/node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/projen/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/has-own-prop": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/hasown": { + "version": "2.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/projen/node_modules/inflight": { + "version": "1.0.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/projen/node_modules/inherits": { + "version": "2.0.4", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/projen/node_modules/ini": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/projen/node_modules/interpret": { + "version": "1.4.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/projen/node_modules/is-core-module": { + "version": "2.13.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/projen/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/js-yaml": { + "version": "3.14.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/projen/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/projen/node_modules/minimatch": { + "version": "3.1.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/projen/node_modules/minimatch/node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/projen/node_modules/minimist": { + "version": "1.2.8", + "dev": true, + "inBundle": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/projen/node_modules/once": { + "version": "1.4.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/projen/node_modules/path-is-absolute": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/projen/node_modules/path-parse": { + "version": "1.0.7", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/projen/node_modules/rechoir": { + "version": "0.6.2", + "dev": true, + "inBundle": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/projen/node_modules/repeat-string": { + "version": "1.6.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/projen/node_modules/require-directory": { + "version": "2.1.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/projen/node_modules/resolve": { + "version": "1.22.8", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/projen/node_modules/semver": { + "version": "7.6.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/projen/node_modules/shelljs": { + "version": "0.8.5", + "dev": true, + "inBundle": true, + "license": "BSD-3-Clause", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/projen/node_modules/shelljs/node_modules/glob": { + "version": "7.2.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/projen/node_modules/shx": { + "version": "0.3.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.3", + "shelljs": "^0.8.5" + }, + "bin": { + "shx": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/projen/node_modules/sprintf-js": { + "version": "1.0.3", + "dev": true, + "inBundle": true, + "license": "BSD-3-Clause" + }, + "node_modules/projen/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/projen/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/projen/node_modules/wrap-ansi": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/projen/node_modules/wrappy": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/projen/node_modules/xmlbuilder2": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@oozcitak/dom": "1.15.10", + "@oozcitak/infra": "1.0.8", + "@oozcitak/util": "8.3.8", + "js-yaml": "3.14.1" + }, + "engines": { + "node": ">=12.0" + } + }, + "node_modules/projen/node_modules/y18n": { + "version": "5.0.8", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/projen/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/projen/node_modules/yaml": { + "version": "2.4.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/projen/node_modules/yargs": { + "version": "17.7.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/projen/node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/propagate": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reachdown": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", + "dev": true, + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readlineiter": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 12.0" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/redeyed": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "esprima": "~4.0.0" + } + }, + "node_modules/reflect-metadata": { + "version": "0.1.13", + "license": "Apache-2.0" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/responselike": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", + "dev": true, + "dependencies": { + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rewire": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint": "^6.8.0" + } + }, + "node_modules/rewire/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/rewire/node_modules/astral-regex": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/rewire/node_modules/cross-spawn": { + "version": "6.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/rewire/node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/rewire/node_modules/emoji-regex": { + "version": "7.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/rewire/node_modules/eslint": { + "version": "6.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/rewire/node_modules/eslint-utils": { + "version": "1.4.3", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rewire/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/rewire/node_modules/espree": { + "version": "6.2.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/rewire/node_modules/file-entry-cache": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/rewire/node_modules/flat-cache": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/rewire/node_modules/flatted": { + "version": "2.0.2", + "dev": true, + "license": "ISC" + }, + "node_modules/rewire/node_modules/globals": { + "version": "12.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rewire/node_modules/ignore": { + "version": "4.0.6", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/rewire/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/rewire/node_modules/levn": { + "version": "0.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/rewire/node_modules/mkdirp": { + "version": "0.5.5", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/rewire/node_modules/optionator": { + "version": "0.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/rewire/node_modules/path-key": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/rewire/node_modules/prelude-ls": { + "version": "1.1.2", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/rewire/node_modules/regexpp": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.5.0" + } + }, + "node_modules/rewire/node_modules/rimraf": { + "version": "2.6.3", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rewire/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/rewire/node_modules/shebang-command": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rewire/node_modules/shebang-regex": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rewire/node_modules/slice-ansi": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rewire/node_modules/string-width": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rewire/node_modules/strip-ansi": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rewire/node_modules/table": { + "version": "5.4.6", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/rewire/node_modules/type-check": { + "version": "0.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/rewire/node_modules/which": { + "version": "1.3.1", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/rfdc": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", + "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "dev": true, + "license": "0BSD" + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "devOptional": true, + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz", + "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==", + "dev": true, + "peer": true + }, + "node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-intersect": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.5.0.tgz", + "integrity": "sha512-BDjWX7yCC0haX4W/zrnV2JaMpVirwaEkGOBmgRQtH++F1N3xl9v7k9H44xfTqwl+yLNNSbMKosoVSTIiJVQ2Pw==", + "dev": true, + "dependencies": { + "semver": "^6.3.0" + } + }, + "node_modules/semver-intersect/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/shimmer": { + "version": "1.2.1", + "license": "BSD-2-Clause" + }, + "node_modules/shx": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", + "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", + "dev": true, + "dependencies": { + "minimist": "^1.2.3", + "shelljs": "^0.8.5" + }, + "bin": { + "shx": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "dev": true, + "license": "ISC" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/sinon": { + "version": "15.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "10.0.2", + "@sinonjs/samsam": "^7.0.1", + "diff": "^5.0.0", + "nise": "^5.1.2", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/sinon/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/sinon/node_modules/@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0" + } + }, + "node_modules/sinon/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/sinon/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/sitemap": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-8.0.0.tgz", + "integrity": "sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==", + "dependencies": { + "@types/node": "^17.0.5", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.2.4" + }, + "bin": { + "sitemap": "dist/cli.js" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/sitemap/node_modules/@types/node": { + "version": "17.0.23", + "license": "MIT" + }, + "node_modules/sitemap/node_modules/arg": { + "version": "5.0.1", + "license": "MIT" + }, + "node_modules/sitemap/node_modules/sax": { + "version": "1.2.4", + "license": "ISC" + }, + "node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/sort-json": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/sort-json/-/sort-json-2.0.1.tgz", + "integrity": "sha512-s8cs2bcsQCzo/P2T/uoU6Js4dS/jnX8+4xunziNoq9qmSpZNCrRIAIvp4avsz0ST18HycV4z/7myJ7jsHWB2XQ==", + "dev": true, + "dependencies": { + "detect-indent": "^5.0.0", + "detect-newline": "^2.1.0", + "minimist": "^1.2.0" + }, + "bin": { + "sort-json": "app/cmd.js" + } + }, + "node_modules/sort-json/node_modules/detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/sort-json/node_modules/detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-object-keys": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", + "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", + "dev": true + }, + "node_modules/sort-package-json": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.10.0.tgz", + "integrity": "sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==", + "dev": true, + "dependencies": { + "detect-indent": "^7.0.1", + "detect-newline": "^4.0.0", + "get-stdin": "^9.0.0", + "git-hooks-list": "^3.0.0", + "globby": "^13.1.2", + "is-plain-obj": "^4.1.0", + "semver": "^7.6.0", + "sort-object-keys": "^1.1.3" + }, + "bin": { + "sort-package-json": "cli.js" + } + }, + "node_modules/sort-package-json/node_modules/detect-newline": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz", + "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sort-package-json/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sort-package-json/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "dev": true + }, + "node_modules/spdx-license-list": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.9.0.tgz", + "integrity": "sha512-L2jl5vc2j6jxWcNCvcVj/BW9A8yGIG02Dw+IUw0ZxDM70f7Ylf5Hq39appV1BI9yxyWQRpq2TQ1qaXvf+yjkqA==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "license": "BSD-3-Clause" + }, + "node_modules/stack-chain": { + "version": "1.3.7", + "license": "MIT" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/standard-version": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/standard-version/-/standard-version-9.5.0.tgz", + "integrity": "sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==", + "dev": true, + "dependencies": { + "chalk": "^2.4.2", + "conventional-changelog": "3.1.25", + "conventional-changelog-config-spec": "2.1.0", + "conventional-changelog-conventionalcommits": "4.6.3", + "conventional-recommended-bump": "6.1.0", + "detect-indent": "^6.0.0", + "detect-newline": "^3.1.0", + "dotgitignore": "^2.1.0", + "figures": "^3.1.0", + "find-up": "^5.0.0", + "git-semver-tags": "^4.0.0", + "semver": "^7.1.1", + "stringify-package": "^1.0.1", + "yargs": "^16.0.0" + }, + "bin": { + "standard-version": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/standard-version/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/standard-version/node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/standard-version/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stats-lite": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "isnumber": "~1.0.0" + }, + "engines": { + "node": ">=2.0.0" + } + }, + "node_modules/stdout-stderr": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/stdout-stderr/-/stdout-stderr-0.1.13.tgz", + "integrity": "sha512-Xnt9/HHHYfjZ7NeQLvuQDyL1LnbsbddgMFKCuaQKwGCdJm8LnstZIXop+uOY36UR1UXXoHXfMbC1KlVdVd2JLA==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/stream-browserify": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "node_modules/stream-chain": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/stream-chain/-/stream-chain-2.2.5.tgz", + "integrity": "sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==", + "dev": true + }, + "node_modules/stream-json": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/stream-json/-/stream-json-1.8.0.tgz", + "integrity": "sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==", + "dev": true, + "dependencies": { + "stream-chain": "^2.2.5" + } + }, + "node_modules/streamroller": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", + "integrity": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==", + "dev": true, + "dependencies": { + "date-format": "^4.0.14", + "debug": "^4.3.4", + "fs-extra": "^8.1.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz", + "integrity": "sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==", + "deprecated": "This module is not used anymore, and has been replaced by @npmcli/package-json", + "dev": true + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + }, + "node_modules/subleveldown": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "abstract-leveldown": "^6.3.0", + "encoding-down": "^6.2.0", + "inherits": "^2.0.3", + "level-option-wrap": "^1.1.0", + "levelup": "^4.4.0", + "reachdown": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/subleveldown/node_modules/abstract-leveldown": { + "version": "6.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "immediate": "^3.2.3", + "level-concat-iterator": "~2.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/subleveldown/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "dev": true, + "dependencies": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/through": { + "version": "2.3.8", + "dev": true, + "license": "MIT" + }, + "node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "dev": true, + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/ts-convict": { + "version": "1.1.0", + "license": "ISC", + "peerDependencies": { + "convict": "*", + "reflect-metadata": "*" + } + }, + "node_modules/ts-jest": { + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/acorn": { + "version": "8.8.2", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/typescript": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.15.tgz", + "integrity": "sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url": { + "version": "0.10.3", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, + "peer": true, + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/uuid": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", + "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==", + "dev": true, + "peer": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/validate-npm-package-name": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/validator": { + "version": "13.7.0", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/verror": { + "version": "1.10.1", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/which": { + "version": "2.0.2", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + }, + "node_modules/workerpool": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "dev": true, + "license": "ISC" + }, + "node_modules/write": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^0.5.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/write/node_modules/mkdirp": { + "version": "0.5.5", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/wtfnode": { + "version": "0.9.1", + "license": "ISC", + "bin": { + "wtfnode": "proxy.js" + } + }, + "node_modules/xml2js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz", + "integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==", + "dev": true, + "peer": true, + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "packages/cdk": { + "version": "0.1.0", + "dependencies": { + "aws-cdk-lib": "2.117.0", + "constructs": "^10.0.0", + "source-map-support": "^0.5.21" + }, + "bin": { + "cdk": "bin/cdk.js" + }, + "devDependencies": { + "@shutterstock/sitemaps-cdk": "*", + "@types/node": "20.10.4", + "aws-cdk": "2.117.0", + "typescript": "~5.3.3" + } + }, + "packages/cdk/node_modules/@types/node": { + "version": "20.10.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.4.tgz", + "integrity": "sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/cdk/node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "packages/kinesis-index-writer": { + "name": "@shutterstock/kinesis-index-writer", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.5", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + }, + "devDependencies": { + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + } + }, + "packages/kinesis-index-writer/node_modules/@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "packages/kinesis-index-writer/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/kinesis-index-writer/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "packages/kinesis-index-writer/node_modules/fs-extra": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "packages/kinesis-index-writer/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "packages/kinesis-index-writer/node_modules/js-yaml": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "packages/kinesis-index-writer/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "packages/kinesis-index-writer/node_modules/sinon": { + "version": "11.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "packages/kinesis-index-writer/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "packages/kinesis-index-writer/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "packages/kinesis-index-writer/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "packages/kinesis-sitemap-freshener": { + "name": "@shutterstock/kinesis-sitemap-freshener", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.6", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@shutterstock/p-map-iterable": "^1.0.11", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "memorystream": "^0.3.1", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "traverse": "^0.6.6", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + }, + "devDependencies": { + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/memorystream": "^0.3.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/traverse": "^0.6.32", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "packages/kinesis-sitemap-freshener/node_modules/fs-extra": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/js-yaml": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/sinon": { + "version": "11.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/traverse": { + "version": "0.6.6", + "license": "MIT" + }, + "packages/kinesis-sitemap-freshener/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "packages/kinesis-sitemap-freshener/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "packages/kinesis-sitemap-writer": { + "name": "@shutterstock/kinesis-sitemap-writer", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.6", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@shutterstock/p-map-iterable": "^1.0.11", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "memorystream": "^0.3.1", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "traverse": "^0.6.6", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + }, + "devDependencies": { + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/memorystream": "^0.3.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/traverse": "^0.6.32", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + } + }, + "packages/kinesis-sitemap-writer/node_modules/@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "packages/kinesis-sitemap-writer/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/kinesis-sitemap-writer/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "packages/kinesis-sitemap-writer/node_modules/fs-extra": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "packages/kinesis-sitemap-writer/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "packages/kinesis-sitemap-writer/node_modules/js-yaml": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "packages/kinesis-sitemap-writer/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "packages/kinesis-sitemap-writer/node_modules/sinon": { + "version": "11.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "packages/kinesis-sitemap-writer/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "packages/kinesis-sitemap-writer/node_modules/traverse": { + "version": "0.6.6", + "license": "MIT" + }, + "packages/kinesis-sitemap-writer/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "packages/kinesis-sitemap-writer/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "packages/sitemaps-cdk": { + "name": "@shutterstock/sitemaps-cdk", + "version": "0.0.0", + "license": "MIT", + "devDependencies": { + "@types/node": "^18", + "aws-cdk-lib": "2.117.0", + "constructs": "10.1.244", + "esbuild": "^0.21.0", + "jsii": "~5.4.0", + "jsii-diff": "^1.98.0", + "jsii-docgen": "^10.4.9", + "jsii-pacmak": "^1.98.0", + "jsii-rosetta": "~5.4.0", + "projen": "0.81.6", + "standard-version": "^9", + "ts-node": "^10.9.1", + "typescript": "^4.0.0" + }, + "engines": { + "node": ">= 18.0.0" + }, + "peerDependencies": { + "aws-cdk-lib": "^2.117.0", + "constructs": "^10.1.244" + } + }, + "packages/sitemaps-cdk-lib": { + "name": "@shutterstock/sitemaps-cdk", + "version": "0.0.0", + "extraneous": true, + "license": "MIT", + "devDependencies": { + "@types/jest": "^26.0.10", + "@types/node": "^16.9.2", + "aws-cdk-lib": "2.117.0", + "constructs": "10.1.244", + "source-map-support": "^0.5.16", + "typescript": "^4.0.0" + }, + "peerDependencies": { + "aws-cdk-lib": "^2.117.0", + "constructs": "^10.0.5" + } + }, + "packages/sitemaps-cdk/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/sitemaps-cdk/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "packages/sitemaps-cli": { + "name": "@shutterstock/sitemaps-cli", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@oclif/core": "3.26.6", + "@oclif/plugin-help": "6.0.22" + }, + "bin": { + "sitemaps-cli": "bin/run.js" + }, + "devDependencies": { + "@aws-sdk/client-dynamodb": "^3.567.0", + "@aws-sdk/client-kinesis": "^3.567.0", + "@aws-sdk/client-lambda": "^3.567.0", + "@aws-sdk/client-s3": "^3.567.0", + "@aws-sdk/credential-providers": "^3.567.0", + "@oclif/test": "3.2.13", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@types/cli-progress": "^3.11.5", + "@types/cloneable-readable": "^2.0.0", + "@types/fs-extra": "^11.0.4", + "@types/source-map-support": "^0.5.4", + "@types/traverse": "^0.6.32", + "cli-progress": "^3.12.0", + "cloneable-readable": "^2.1.0", + "csv-parse": "^5.2.2", + "fs-extra": "^11.2.0", + "it-batch": "^1.0.9", + "listr2": "^3.13.3", + "node-fetch": "^2.7.0", + "oclif": "4.10.6", + "shx": "^0.3.3", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.21", + "traverse": "^0.6.6" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "packages/sitemaps-cli/node_modules/@types/fs-extra": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-11.0.4.tgz", + "integrity": "sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==", + "dev": true, + "dependencies": { + "@types/jsonfile": "*", + "@types/node": "*" + } + }, + "packages/sitemaps-cli/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "packages/sitemaps-cli/node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "packages/sitemaps-cli/node_modules/traverse": { + "version": "0.6.6", + "dev": true, + "license": "MIT" + }, + "packages/sitemaps-cli/node_modules/universalify": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "packages/sitemaps-cli2": { + "name": "sitemaps-cli-2", + "version": "0.0.0", + "extraneous": true, + "license": "MIT", + "dependencies": { + "@oclif/core": "^3", + "@oclif/plugin-help": "^6", + "@oclif/plugin-plugins": "^5" + }, + "bin": { + "sitemaps-cli-2": "bin/run.js" + }, + "devDependencies": { + "@oclif/prettier-config": "^0.2.1", + "@oclif/test": "^3", + "@types/chai": "^4", + "@types/mocha": "^10", + "@types/node": "^18", + "chai": "^4", + "eslint": "^8", + "eslint-config-oclif": "^5", + "eslint-config-oclif-typescript": "^3", + "eslint-config-prettier": "^9", + "mocha": "^10", + "oclif": "^4", + "shx": "^0.3.3", + "ts-node": "^10", + "typescript": "^5" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "packages/sitemaps-db-lib": { + "name": "@shutterstock/sitemaps-db-lib", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@aws-sdk/client-dynamodb": "^3.54.1", + "@aws-sdk/lib-dynamodb": "^3.54.1", + "class-transformer": "^0.4.0", + "sitemap": "^8.0.0" + }, + "devDependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@types/node": "^18", + "@types/sinon": "^10.0.1", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + } + }, + "packages/sitemaps-db-lib/node_modules/@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "packages/sitemaps-db-lib/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/sitemaps-db-lib/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "packages/sitemaps-db-lib/node_modules/sinon": { + "version": "11.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "packages/sitemaps-db-lib/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "packages/sitemaps-metrics-lib": { + "name": "@shutterstock/sitemaps-metrics-lib", + "version": "0.0.0", + "license": "MIT", + "devDependencies": { + "@types/node": "^18" + } + }, + "packages/sitemaps-metrics-lib/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/sitemaps-models-lib": { + "name": "@shutterstock/sitemaps-models-lib", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "sitemap": "^8.0.0" + }, + "devDependencies": { + "@types/node": "^18" + }, + "peerDependencies": { + "sitemap": "^8.0.0" + } + }, + "packages/sitemaps-models-lib/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/sitemaps-utils-lib": { + "name": "@shutterstock/sitemaps-utils-lib", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@aws-sdk/client-s3": "^3.567.0", + "@aws-sdk/lib-storage": "^3.567.0", + "fs-extra": "^10.0.0", + "wtfnode": "^0.9.1" + }, + "devDependencies": { + "@types/fs-extra": "^9.0.12", + "@types/node": "^18", + "@types/node-fetch": "^2.5.12", + "@types/wtfnode": "^0.7.0", + "node-fetch": "^2.6.1" + } + }, + "packages/sitemaps-utils-lib/node_modules/@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "packages/sitemaps-utils-lib/node_modules/fs-extra": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "packages/sitemaps-utils-lib/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "packages/sitemaps-utils-lib/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "packages/sitemaps-wrapper-lib": { + "name": "@shutterstock/sitemaps-wrapper-lib", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@aws-sdk/client-s3": "^3.567.0", + "@aws-sdk/lib-storage": "^3.567.0", + "fs-extra": "^10.0.0", + "lodash": "^4.17.21", + "sax": "^1.2.4", + "sitemap": "^8.0.0" + }, + "devDependencies": { + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@types/lodash": "^4.14.171", + "uuid": "^8.3.2" + } + }, + "packages/sitemaps-wrapper-lib/node_modules/fs-extra": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "packages/sitemaps-wrapper-lib/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "packages/sitemaps-wrapper-lib/node_modules/sax": { + "version": "1.2.4", + "license": "ISC" + }, + "packages/sitemaps-wrapper-lib/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "packages/sitemaps-wrapper-lib/node_modules/uuid": { + "version": "8.3.2", + "dev": true, + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@aws-cdk/asset-awscli-v1": { + "version": "2.2.202", + "resolved": "https://registry.npmjs.org/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.202.tgz", + "integrity": "sha512-JqlF0D4+EVugnG5dAsNZMqhu3HW7ehOXm5SDMxMbXNDMdsF0pxtQKNHRl52z1U9igsHmaFpUgSGjbhAJ+0JONg==" + }, + "@aws-cdk/asset-kubectl-v20": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@aws-cdk/asset-kubectl-v20/-/asset-kubectl-v20-2.1.2.tgz", + "integrity": "sha512-3M2tELJOxQv0apCIiuKQ4pAbncz9GuLwnKFqxifWfe77wuMxyTRPmxssYHs42ePqzap1LT6GDcPygGs+hHstLg==" + }, + "@aws-cdk/asset-node-proxy-agent-v6": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.0.3.tgz", + "integrity": "sha512-twhuEG+JPOYCYPx/xy5uH2+VUsIEhPTzDY0F1KuB+ocjWWB/KEDiOVL19nHvbPCB6fhWnkykXEMJ4HHcKvjtvg==" + }, + "@aws-crypto/crc32": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-3.0.0.tgz", + "integrity": "sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==", + "requires": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/crc32c": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz", + "integrity": "sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==", + "requires": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/ie11-detection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz", + "integrity": "sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==", + "requires": { + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/sha1-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz", + "integrity": "sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==", + "requires": { + "@aws-crypto/ie11-detection": "^3.0.0", + "@aws-crypto/supports-web-crypto": "^3.0.0", + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/sha256-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz", + "integrity": "sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==", + "requires": { + "@aws-crypto/ie11-detection": "^3.0.0", + "@aws-crypto/sha256-js": "^3.0.0", + "@aws-crypto/supports-web-crypto": "^3.0.0", + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/sha256-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz", + "integrity": "sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==", + "requires": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/supports-web-crypto": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz", + "integrity": "sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==", + "requires": { + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-crypto/util": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-3.0.0.tgz", + "integrity": "sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==", + "requires": { + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@aws-sdk/client-cloudfront": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cloudfront/-/client-cloudfront-3.576.0.tgz", + "integrity": "sha512-sZQq95lu5rMROoCmC3+DspicISGM8A7iIgTcI+rmL2jw41HjSNURfLBGeP5uHkWTwuO8JqVYc142HLvCj52wUg==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@aws-sdk/xml-builder": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "@smithy/util-waiter": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.576.0.tgz", + "integrity": "sha512-xbKE4bf3HYvkdrvn5kkpUdcoi3mg7uDLLkSbGaj0tzW3vNSdx9qLrCMuwfV7KrhVKWwx+lnw/2LGuCR2B5y0IA==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sso-oidc": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.576.0.tgz", + "integrity": "sha512-6U8933O9h6iMnQDpH3OtFhS3G3FVttYZUqTpC2T0FnSSX7zgG0GnlxdQiyZh1j1aFrEB8bFw/RSmxPcMJJuSlQ==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/core": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.576.0.tgz", + "integrity": "sha512-KDvDlbeipSTIf+ffKtTg1m419TK7s9mZSWC8bvuZ9qx6/sjQFOXIKOVqyuli6DnfxGbvRcwoRuY99OcCH1N/0w==", + "dev": true, + "requires": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.575.0.tgz", + "integrity": "sha512-YTgpq3rvYBXzW6OTDB00cE79evQtss/lz2GlJXgqqVXD0m7i77hGA8zb44VevP/WxtDaiSW7SSjuu8VCBGsg4g==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-http": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.575.0.tgz", + "integrity": "sha512-xQfVmYI+9KqRvhWY8fyElnpcVUBBUgi/Hoji3oU6WLrUjrX98k93He7gKDQSyHf7ykMLUAJYWwsV4AjQ2j6njA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.576.0.tgz", + "integrity": "sha512-AwH/+29SbjhxGJVYhFn6+7r0MZ7TjJClySTJzuOoyjJGPWAifTdEuFkyOw8Bs9fEvbJ0ExgFxSaa445fO56kmg==", + "dev": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.576.0.tgz", + "integrity": "sha512-Ad244g3TJnfY1QFlZ+cywD6kgGD2yj+qg47Ryt50Y42bwmNuuqSpF9n0C71opRR68Rcl7ksOxixCJomWqpcHbA==", + "dev": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.576.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.575.0.tgz", + "integrity": "sha512-2/5NJV7MZysKglqJSQ/O8OELNcwLcH3xknabL9NagtzB7RNB2p1AUXR0UlTey9sSDLL4oCmNa/+unYuglW/Ahg==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.576.0.tgz", + "integrity": "sha512-1F17issiqf+mSG7KJ+D0SfZRYBZPAmRcA5+VHDUuMLozhh8tyYMe0mwzOt9IKc7ocrJA+2Wp7l7sg3h6aanedQ==", + "dev": true, + "requires": { + "@aws-sdk/client-sso": "3.576.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sts": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.575.0.tgz", + "integrity": "sha512-8MrT4J2dRiskf0JFMGL5VNBqPvc6igNa218LGBJzHXmLsm1WfGCGnce84R7U2USr8oPOenu0XzSCLvMQyZbGWQ==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "requires": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.575.0.tgz", + "integrity": "sha512-BdM6a/5VUuNge3c6yRuxvO+4srLoSfqHfkQGfUDfhTdTJpljlpfnc9h3z2Ni1+aueOHPZMNFWIktHDcX5wUGBg==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.575.0.tgz", + "integrity": "sha512-QcvVH7wpvpFRXGAGgCBfQeiF/ptD0NJ+Hrc8dDYfPGhFeZ0EoVQBYNphLi25xe7JZ+XbaqCKrURHZtr4fAEOJw==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-host-header": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.575.0.tgz", + "integrity": "sha512-V2WoLBiXNCc4rIWZt6FUcP4TN0Vk02A9PPCBWkTfyOooiqfq+WZmZjRRBpwl1+5UsvARslrKWF0VzheMRXPJLQ==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.575.0.tgz", + "integrity": "sha512-7DEKx9Z11Maaye7FfhYtC8rjbM/PcFcMO2N4QEAfypcgWCj+w4gseE2OGdfAH9OFDoFc6YvLp53v16vbPjzQSg==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-recursion-detection": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.575.0.tgz", + "integrity": "sha512-ri89ldRFos6KZDGaknWPS2XPO9qr+gZ7+mPaoU8YkSM1W4uKqtnUSONyc+O3CFGJrqReuGHhRq0l2Sld0bjwOw==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-user-agent": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.575.0.tgz", + "integrity": "sha512-fWlr4RfrUNS2R3PgP+WsoMYORAgv/47Lp0J0fb3dXO1YvdczNWddRbFSUX2MQxM/y9XFfQPLpLgzluhoL3Cjeg==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/region-config-resolver": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.575.0.tgz", + "integrity": "sha512-sBJKwTWKCWu9y8FzXIijYGwkKr3tDkPXM7BylToe6W+tGkp4OirV4iXrWA9zReNwTTepoxHufofqjGK9BtcI8g==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/types": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.575.0.tgz", + "integrity": "sha512-XrnolQGs0wXxdgNudirR14OgNOarH7WUif38+2Pd4onZH+L7XoILem0EgA1tRpgFpw2pFHlZCNaAHDNSBEal7g==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-endpoints": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.575.0.tgz", + "integrity": "sha512-wC5x+V6w3kRlR6X6XVINsAPDYG+Tzs3Wthlw+YLtjuPODUNZIQAqsABHahxnekFyAvse+1929Hwo+CaL+BHZGA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-browser": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.575.0.tgz", + "integrity": "sha512-iADonXyaXgwvC4T0qRuDWCdKInz82GX2cyezq/oqVlL8bPY7HD8jwZZruuJdq5tkaJi1EhbO4+f1ksZqOiZKvQ==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.575.0.tgz", + "integrity": "sha512-kwzvBfA0LoILDOFS6BV8uOkksBHrYulP6kNXegB5eZnDSNia5DbBsXqxQ/HknNF5a429SWQw2aaQJEgQvZB1VA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/xml-builder": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz", + "integrity": "sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/config-resolver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.0.tgz", + "integrity": "sha512-2GzOfADwYLQugYkKQhIyZyQlM05K+tMKvRnc6eFfZcpJGRfKoMUMYdPlBKmqHwQFXQKBrGV6cxL9oymWgDzvFw==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/core": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.0.1.tgz", + "integrity": "sha512-rcMkjvwxH/bER+oZUPR0yTA0ELD6m3A+d92+CFkdF6HJFCBB1bXo7P5pm21L66XwTN01B6bUhSCQ7cymWRD8zg==", + "dev": true, + "requires": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.1", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/credential-provider-imds": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.0.0.tgz", + "integrity": "sha512-lfmBiFQcA3FsDAPxNfY0L7CawcWtbyWsBOHo34nF095728JLkBX4Y9q/VPPE2r7fqMVK+drmDigqE2/SSQeVRA==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/fetch-http-handler": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz", + "integrity": "sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg==", + "dev": true, + "requires": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.0.tgz", + "integrity": "sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/invalid-dependency": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz", + "integrity": "sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-content-length": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz", + "integrity": "sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg==", + "dev": true, + "requires": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-endpoint": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.0.tgz", + "integrity": "sha512-aXOAWztw/5qAfp0NcA2OWpv6ZI/E+Dh9mByif7i91D/0iyYNUcKvskmXiowKESFkuZ7PIMd3VOR4fTibZDs2OQ==", + "dev": true, + "requires": { + "@smithy/middleware-serde": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.1.tgz", + "integrity": "sha512-hBhSEuL841FhJBK/19WpaGk5YWSzFk/P2UaVjANGKRv3eYNO8Y1lANWgqnuPWjOyCEWMPr58vELFDWpxvRKANw==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/service-error-classification": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + } + }, + "@smithy/middleware-serde": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz", + "integrity": "sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-stack": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz", + "integrity": "sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/node-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.0.0.tgz", + "integrity": "sha512-buqfaSdDh0zo62EPLf8rGDvcpKwGpO5ho4bXS2cdFhlOta7tBkWJt+O5uiaAeICfIOfPclNOndshDNSanX2X9g==", + "dev": true, + "requires": { + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/node-http-handler": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz", + "integrity": "sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ==", + "dev": true, + "requires": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/property-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.0.0.tgz", + "integrity": "sha512-LmbPgHBswdXCrkWWuUwBm9w72S2iLWyC/5jet9/Y9cGHtzqxi+GVjfCfahkvNV4KXEwgnH8EMpcrD9RUYe0eLQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/protocol-http": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.0.0.tgz", + "integrity": "sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/querystring-builder": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz", + "integrity": "sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/querystring-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz", + "integrity": "sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/service-error-classification": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz", + "integrity": "sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0" + } + }, + "@smithy/shared-ini-file-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.0.0.tgz", + "integrity": "sha512-REVw6XauXk8xE4zo5aGL7Rz4ywA8qNMUn8RtWeTRQsgAlmlvbJ7CEPBcaXU2NDC3AYBgYAXrGyWD8XrN8UGDog==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/signature-v4": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-3.0.0.tgz", + "integrity": "sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA==", + "dev": true, + "requires": { + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/smithy-client": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.0.1.tgz", + "integrity": "sha512-KAiFY4Y4jdHxR+4zerH/VBhaFKM8pbaVmJZ/CWJRwtM/CmwzTfXfvYwf6GoUwiHepdv+lwiOXCuOl6UBDUEINw==", + "dev": true, + "requires": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.1", + "tslib": "^2.6.2" + } + }, + "@smithy/types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.0.0.tgz", + "integrity": "sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/url-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.0.tgz", + "integrity": "sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw==", + "dev": true, + "requires": { + "@smithy/querystring-parser": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "dev": true, + "requires": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-body-length-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-body-length-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "dev": true, + "requires": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-defaults-mode-browser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.1.tgz", + "integrity": "sha512-nW5kEzdJn1Bn5TF+gOPHh2rcPli8JU9vSSXLbfg7uPnfR1TMRQqs9zlYRhIb87NeSxIbpdXOI94tvXSy+fvDYg==", + "dev": true, + "requires": { + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-defaults-mode-node": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.1.tgz", + "integrity": "sha512-TFk+Qb+elLc/MOhtSp+50fstyfZ6avQbgH2d96xUBpeScu+Al9elxv+UFAjaTHe0HQe5n+wem8ZLpXvU8lwV6Q==", + "dev": true, + "requires": { + "@smithy/config-resolver": "^3.0.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-endpoints": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.0.tgz", + "integrity": "sha512-+exaXzEY3DNt2qtA2OtRNSDlVrE4p32j1JSsQkzA5AdP0YtJNjkYbYhJxkFmPYcjI1abuwopOZCwUmv682QkiQ==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-middleware": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.0.tgz", + "integrity": "sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-retry": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.0.tgz", + "integrity": "sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g==", + "dev": true, + "requires": { + "@smithy/service-error-classification": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-stream": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.1.tgz", + "integrity": "sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA==", + "dev": true, + "requires": { + "@smithy/fetch-http-handler": "^3.0.1", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "dev": true, + "requires": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-waiter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.0.0.tgz", + "integrity": "sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw==", + "dev": true, + "requires": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true + } + } + }, + "@aws-sdk/client-cognito-identity": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.567.0.tgz", + "integrity": "sha512-gnhksy+CcK0wQEuuMn1n/Q8FCfJ7TtIiNUqGGQwoXErfKXY2xoO170czcioJBt6yh2D8eQkyy33PMkXdB3xQAA==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-dynamodb": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-dynamodb/-/client-dynamodb-3.567.0.tgz", + "integrity": "sha512-agIYp3G6gtRuxd1vT170C5rlUBhCNvxZ3rX1LZE0OYnbEVsMI297wWeZUF07zQ/B5sryPtrJ6NoDU8AKuADFGg==", + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-endpoint-discovery": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "dependencies": { + "uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" + } + } + }, + "@aws-sdk/client-kinesis": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-kinesis/-/client-kinesis-3.567.0.tgz", + "integrity": "sha512-Cvi6ofyb4Pxf+8+IQvKfi7Lk1iiM+KA8RnPOnqbt6qc77HGQJcYAw+k1oce1kTRMsd66uS8E9UmGUERlau1f0Q==", + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/eventstream-serde-browser": "^2.2.0", + "@smithy/eventstream-serde-config-resolver": "^2.2.0", + "@smithy/eventstream-serde-node": "^2.2.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-lambda": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-lambda/-/client-lambda-3.567.0.tgz", + "integrity": "sha512-fFOcfFkTqxYXWuM1M+HC3f62WcFrrtThsXereNVr4tN1YoRDt/chX4J31wWIAajqWUnSkuCcCbSG+DaPSymkug==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/eventstream-serde-browser": "^2.2.0", + "@smithy/eventstream-serde-config-resolver": "^2.2.0", + "@smithy/eventstream-serde-node": "^2.2.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-stream": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-s3": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.567.0.tgz", + "integrity": "sha512-P1KIhubdsv44A8mACYwBzNlBjW/WRpkZMGCDhwapV18Xo/v97hsLdg8FU2KiSIGN5/O4DXJcev8v4baGhjk5nw==", + "requires": { + "@aws-crypto/sha1-browser": "3.0.0", + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-bucket-endpoint": "3.567.0", + "@aws-sdk/middleware-expect-continue": "3.567.0", + "@aws-sdk/middleware-flexible-checksums": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-location-constraint": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-sdk-s3": "3.567.0", + "@aws-sdk/middleware-signing": "3.567.0", + "@aws-sdk/middleware-ssec": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/signature-v4-multi-region": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@aws-sdk/xml-builder": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/eventstream-serde-browser": "^2.2.0", + "@smithy/eventstream-serde-config-resolver": "^2.2.0", + "@smithy/eventstream-serde-node": "^2.2.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-blob-browser": "^2.2.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/hash-stream-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/md5-js": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-stream": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "@smithy/util-waiter": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sso": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.567.0.tgz", + "integrity": "sha512-jcnT1m+altt9Xm2QErZBnETh+4ioeCb/p9bo0adLb9JCAuI/VcnIui5+CykvCzOAxQ8c8Soa19qycqCuUcjiCw==", + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sso-oidc": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.569.0.tgz", + "integrity": "sha512-u5DEjNEvRvlKKh1QLCDuQ8GIrx+OFvJFLfhorsp4oCxDylvORs+KfyKKnJAw4wYEEHyxyz9GzHD7p6a8+HLVHw==", + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.569.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.569.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.568.0.tgz", + "integrity": "sha512-LSD7k0ZBQNWouTN5dYpUkeestoQ+r5u6cp6o+FATKeiFQET85RNA3xJ4WPnOI5rBC1PETKhQXvF44863P3hCaQ==", + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.568.0.tgz", + "integrity": "sha512-MVTQoZwPnP1Ev5A7LG+KzeU6sCB8BcGkZeDT1z1V5Wt7GPq0MgFQTSSjhImnB9jqRSZkl1079Bt3PbO6lfIS8g==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-http": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.568.0.tgz", + "integrity": "sha512-gL0NlyI2eW17hnCrh45hZV+qjtBquB+Bckiip9R6DIVRKqYcoILyiFhuOgf2bXeF23gVh6j18pvUvIoTaFWs5w==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.568.0.tgz", + "integrity": "sha512-m5DUN9mpto5DhEvo6w3+8SS6q932ja37rTNvpPqWJIaWhj7OorAwVirSaJQAQB/M8+XCUIrUonxytphZB28qGQ==", + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.569.0.tgz", + "integrity": "sha512-7jH4X2qlPU3PszZP1zvHJorhLARbU1tXvp8ngBe8ArXBrkFpl/dQ2Y/IRAICPm/pyC1IEt8L/CvKp+dz7v/eRw==", + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-http": "3.568.0", + "@aws-sdk/credential-provider-ini": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.568.0.tgz", + "integrity": "sha512-r01zbXbanP17D+bQUb7mD8Iu2SuayrrYZ0Slgvx32qgz47msocV9EPCSwI4Hkw2ZtEPCeLQR4XCqFJB1D9P50w==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.568.0.tgz", + "integrity": "sha512-+TA77NWOEXMUcfLoOuim6xiyXFg1GqHj55ggI1goTKGVvdHYZ+rhxZbwjI29+ewzPt/qcItDJcvhrjOrg9lCag==", + "peer": true, + "requires": { + "@aws-sdk/client-sso": "3.568.0", + "@aws-sdk/token-providers": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.568.0.tgz", + "integrity": "sha512-ZJSmTmoIdg6WqAULjYzaJ3XcbgBzVy36lir6Y0UBMRGaxDgos1AARuX6EcYzXOl+ksLvxt/xMQ+3aYh1LWfKSw==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.568.0.tgz", + "integrity": "sha512-BinH72RG7K3DHHC1/tCulocFv+ZlQ9SrPF9zYT0T1OT95JXuHhB7fH8gEABrc6DAtOdJJh2fgxQjPy5tzPtsrA==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/token-providers": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.568.0.tgz", + "integrity": "sha512-mCQElYzY5N2JlXB7LyjOoLvRN/JiSV+E9szLwhYN3dleTUCMbGqWb7RiAR2V3fO+mz8f9kR7DThTExKJbKogKw==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.568.0.tgz", + "integrity": "sha512-NVoZoLnKF+eXPBvXg+KqixgJkPSrerR6Gqmbjwqbv14Ini+0KNKB0/MXas1mDGvvEgtNkHI/Cb9zlJ3KXpti2A==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/client-sts": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.569.0.tgz", + "integrity": "sha512-3AyipQ2zHszkcTr8n1Sp7CiMUi28aMf1vOhEo0KKi0DWGo1Z1qJEpWeRP363KG0n9/8U3p1IkXGz5FRbpXZxIw==", + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.569.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.569.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.568.0.tgz", + "integrity": "sha512-LSD7k0ZBQNWouTN5dYpUkeestoQ+r5u6cp6o+FATKeiFQET85RNA3xJ4WPnOI5rBC1PETKhQXvF44863P3hCaQ==", + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.568.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.568.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.568.0.tgz", + "integrity": "sha512-MVTQoZwPnP1Ev5A7LG+KzeU6sCB8BcGkZeDT1z1V5Wt7GPq0MgFQTSSjhImnB9jqRSZkl1079Bt3PbO6lfIS8g==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-http": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.568.0.tgz", + "integrity": "sha512-gL0NlyI2eW17hnCrh45hZV+qjtBquB+Bckiip9R6DIVRKqYcoILyiFhuOgf2bXeF23gVh6j18pvUvIoTaFWs5w==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.568.0.tgz", + "integrity": "sha512-m5DUN9mpto5DhEvo6w3+8SS6q932ja37rTNvpPqWJIaWhj7OorAwVirSaJQAQB/M8+XCUIrUonxytphZB28qGQ==", + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.569.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.569.0.tgz", + "integrity": "sha512-7jH4X2qlPU3PszZP1zvHJorhLARbU1tXvp8ngBe8ArXBrkFpl/dQ2Y/IRAICPm/pyC1IEt8L/CvKp+dz7v/eRw==", + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.568.0", + "@aws-sdk/credential-provider-http": "3.568.0", + "@aws-sdk/credential-provider-ini": "3.568.0", + "@aws-sdk/credential-provider-process": "3.568.0", + "@aws-sdk/credential-provider-sso": "3.568.0", + "@aws-sdk/credential-provider-web-identity": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.568.0.tgz", + "integrity": "sha512-r01zbXbanP17D+bQUb7mD8Iu2SuayrrYZ0Slgvx32qgz47msocV9EPCSwI4Hkw2ZtEPCeLQR4XCqFJB1D9P50w==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.568.0.tgz", + "integrity": "sha512-+TA77NWOEXMUcfLoOuim6xiyXFg1GqHj55ggI1goTKGVvdHYZ+rhxZbwjI29+ewzPt/qcItDJcvhrjOrg9lCag==", + "peer": true, + "requires": { + "@aws-sdk/client-sso": "3.568.0", + "@aws-sdk/token-providers": "3.568.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.568.0.tgz", + "integrity": "sha512-ZJSmTmoIdg6WqAULjYzaJ3XcbgBzVy36lir6Y0UBMRGaxDgos1AARuX6EcYzXOl+ksLvxt/xMQ+3aYh1LWfKSw==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.568.0.tgz", + "integrity": "sha512-BinH72RG7K3DHHC1/tCulocFv+ZlQ9SrPF9zYT0T1OT95JXuHhB7fH8gEABrc6DAtOdJJh2fgxQjPy5tzPtsrA==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/token-providers": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.568.0.tgz", + "integrity": "sha512-mCQElYzY5N2JlXB7LyjOoLvRN/JiSV+E9szLwhYN3dleTUCMbGqWb7RiAR2V3fO+mz8f9kR7DThTExKJbKogKw==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.568.0.tgz", + "integrity": "sha512-NVoZoLnKF+eXPBvXg+KqixgJkPSrerR6Gqmbjwqbv14Ini+0KNKB0/MXas1mDGvvEgtNkHI/Cb9zlJ3KXpti2A==", + "peer": true, + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/core": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.567.0.tgz", + "integrity": "sha512-zUDEQhC7blOx6sxhHdT75x98+SXQVdUIMu8z8AjqMWiYK2v4WkOS8i6dOS4E5OjL5J1Ac+ruy8op/Bk4AFqSIw==", + "requires": { + "@smithy/core": "^1.4.2", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-cognito-identity": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.567.0.tgz", + "integrity": "sha512-HLxdNMiZkrGw3AaBYbgf0JeE6hrdrEZduzLzEhqMm9wSCHwjcOaruBW1rRgEYUCToxrsXDxBDUIQbaS8HLcVIg==", + "dev": true, + "requires": { + "@aws-sdk/client-cognito-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.567.0.tgz", + "integrity": "sha512-2V9O9m/hrWtIBKfg+nYHTYUHSKOZdSWL53JRaN28zYoX4dPDWwP1GacP/Mq6LJhKRnByfmqh3W3ZBsKizauSug==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-http": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.567.0.tgz", + "integrity": "sha512-MVSFmKo9ukxNyMYOk/u6gupGqktsbTZWh2uyULp0KLhuHPDTvWLmk96+6h6V2+GAp/J2QRK72l0EtjnHmcn3kg==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.567.0.tgz", + "integrity": "sha512-azbZ3jYZmSD3oCzbjPOrI+pilRDV6H9qtJ3J4MCnbRYQxR8eu80l4Y0tXl0+GfHZCpdOJ9+uEhqU+yTiVrrOXg==", + "requires": { + "@aws-sdk/credential-provider-env": "3.567.0", + "@aws-sdk/credential-provider-process": "3.567.0", + "@aws-sdk/credential-provider-sso": "3.567.0", + "@aws-sdk/credential-provider-web-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.567.0.tgz", + "integrity": "sha512-/kwYs2URdcXjKCPClUYrvdhhh7oRh1PWC0mehzy92c0I8hMdhIIpOmwJj8IoRIWdsCnPRatWBJBuE553y+HaUQ==", + "requires": { + "@aws-sdk/credential-provider-env": "3.567.0", + "@aws-sdk/credential-provider-http": "3.567.0", + "@aws-sdk/credential-provider-ini": "3.567.0", + "@aws-sdk/credential-provider-process": "3.567.0", + "@aws-sdk/credential-provider-sso": "3.567.0", + "@aws-sdk/credential-provider-web-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.567.0.tgz", + "integrity": "sha512-Bsp1bj8bnsvdLec9aXpBsHMlwCmO9TmRrZYyji7ZEUB003ZkxIgbqhe6TEKByrJd53KHfgeF+U4mWZAgBHDXfQ==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.567.0.tgz", + "integrity": "sha512-7TjvMiMsyYANNBiWBArEe7SvqSkZH0FleGUzp+AgT8/CDyGDRdLk7ve2n9f1+iH28av5J0Nw8+TfscHCImrDrQ==", + "requires": { + "@aws-sdk/client-sso": "3.567.0", + "@aws-sdk/token-providers": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.567.0.tgz", + "integrity": "sha512-0J7LgR7ll0glMFBz0d4ijCBB61G7ZNucbEKsCGpFk2csytXNPCZYobjzXpJO8QxxgQUGnb68CRB0bo+GQq8nPg==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-providers": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.567.0.tgz", + "integrity": "sha512-AXx/ol5oFb9tOnqKt1UURscxEyZUbn6pmbwRlBYAQb1ZeWwtXgBrAjtrE0f/Jm6vG4LOOuVII3CHnCI30mZIfw==", + "dev": true, + "requires": { + "@aws-sdk/client-cognito-identity": "3.567.0", + "@aws-sdk/client-sso": "3.567.0", + "@aws-sdk/client-sts": "3.567.0", + "@aws-sdk/credential-provider-cognito-identity": "3.567.0", + "@aws-sdk/credential-provider-env": "3.567.0", + "@aws-sdk/credential-provider-http": "3.567.0", + "@aws-sdk/credential-provider-ini": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/credential-provider-process": "3.567.0", + "@aws-sdk/credential-provider-sso": "3.567.0", + "@aws-sdk/credential-provider-web-identity": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sts": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.567.0.tgz", + "integrity": "sha512-Hsbj/iJJZbajdYRja4MiqK7chaXim+cltaIslqjhTFCHlOct88qQRUAz2GHzNkyIH9glubLdwHqQZ+QmCf+4Vw==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.567.0", + "@aws-sdk/credential-provider-node": "3.567.0", + "@aws-sdk/middleware-host-header": "3.567.0", + "@aws-sdk/middleware-logger": "3.567.0", + "@aws-sdk/middleware-recursion-detection": "3.567.0", + "@aws-sdk/middleware-user-agent": "3.567.0", + "@aws-sdk/region-config-resolver": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@aws-sdk/util-user-agent-browser": "3.567.0", + "@aws-sdk/util-user-agent-node": "3.567.0", + "@smithy/config-resolver": "^2.2.0", + "@smithy/core": "^1.4.2", + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/hash-node": "^2.2.0", + "@smithy/invalid-dependency": "^2.2.0", + "@smithy/middleware-content-length": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-body-length-browser": "^2.2.0", + "@smithy/util-body-length-node": "^2.3.0", + "@smithy/util-defaults-mode-browser": "^2.2.1", + "@smithy/util-defaults-mode-node": "^2.3.1", + "@smithy/util-endpoints": "^1.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/endpoint-cache": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/endpoint-cache/-/endpoint-cache-3.567.0.tgz", + "integrity": "sha512-+HV7cxdz+v+ppjpL8Nbu0jXW8Wsnwd3EClCEaT+Z9FA8eUFcFoX/uxketSiw/+xWAwO4iHtVAzzxr87E8WH78g==", + "requires": { + "mnemonist": "0.38.3", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/lib-dynamodb": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.567.0.tgz", + "integrity": "sha512-oU57LT1tV0QkLkf4o9wqi6PI3w3yWlc4+g73agS5yNfidIbggbPocRVIOTju2tBWilI/gQV1o3JjfwbC2YEC7w==", + "requires": { + "@aws-sdk/util-dynamodb": "3.567.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/lib-storage": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.567.0.tgz", + "integrity": "sha512-pltRwwU7i+u8UFGcwhy/ohFEW9KT8BizplLxL4+9Wt3okQzZ91DxlFJng+aDOhxLF8VhY8lUG/qPK4sXZAA7PQ==", + "requires": { + "@smithy/abort-controller": "^2.2.0", + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/smithy-client": "^2.5.1", + "buffer": "5.6.0", + "events": "3.3.0", + "stream-browserify": "3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "buffer": { + "version": "5.6.0", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "events": { + "version": "3.3.0" + } + } + }, + "@aws-sdk/middleware-bucket-endpoint": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.567.0.tgz", + "integrity": "sha512-arbfRcmTswGO9LUf94gIwthn6NHATq6TSQe7uZppvp0wCzxBbvIPuJ5H3yYxyJVa7AdOmQLU+IEkCXnhe6Pl6w==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-arn-parser": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-endpoint-discovery": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.567.0.tgz", + "integrity": "sha512-Of8rckjYuodGLpbrWJ7w8quoY5tOVNJbX8NThf8Pgme9ZIxMJzDfQ5ZNLx5U3hhZSkkHmGGr2bQvK1cyoSZvlw==", + "requires": { + "@aws-sdk/endpoint-cache": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-expect-continue": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.567.0.tgz", + "integrity": "sha512-diFpWk0HEkzWMc5+PanwlwiCp8iy9INc2ID/dS0jSQQVH3vIj2F129oX5spRVmCk+N5Dt2zRlVmyrPRYbPWnoA==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-flexible-checksums": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.567.0.tgz", + "integrity": "sha512-HwDONfEbfOgaB7TAKMr194mLyott4djz4QKEGtcR2qUduV5D9yzsDGzth14fyFRVZvdtpeixsXOcQTyqQpRLhA==", + "requires": { + "@aws-crypto/crc32": "3.0.0", + "@aws-crypto/crc32c": "3.0.0", + "@aws-sdk/types": "3.567.0", + "@smithy/is-array-buffer": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-host-header": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.567.0.tgz", + "integrity": "sha512-zQHHj2N3in9duKghH7AuRNrOMLnKhW6lnmb7dznou068DJtDr76w475sHp2TF0XELsOGENbbBsOlN/S5QBFBVQ==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-location-constraint": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.567.0.tgz", + "integrity": "sha512-XiGTH4VxrJ5fj6zeF6UL5U5EuJwLqj9bHW5pB+EKfw0pmbnyqfRdYNt46v4GsQql2iVOq1Z/Fiv754nIItBI/A==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.567.0.tgz", + "integrity": "sha512-12oUmPfSqzaTxO29TXJ9GnJ5qI6ed8iOvHvRLOoqI/TrFqLJnFwCka8E9tpP/sftMchd7wfefbhHhZK4J3ek8Q==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-recursion-detection": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.567.0.tgz", + "integrity": "sha512-rFk3QhdT4IL6O/UWHmNdjJiURutBCy+ogGqaNHf/RELxgXH3KmYorLwCe0eFb5hq8f6vr3zl4/iH7YtsUOuo1w==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-sdk-s3": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.567.0.tgz", + "integrity": "sha512-isJJt3sdQ3V+kBk2gZvG6wVx/PYHSixGs2ahzQT5OOQfmUBBjm4O7bQKmCkfGYEU16vRl38BLiQokS/YSKIGVw==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-arn-parser": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-signing": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.567.0.tgz", + "integrity": "sha512-aE4/ysosM01di2sGs0q7UfhZ4EXMhEfOKrgQhi6b3h4BuClDdsP7bo3bkHEkx7aCKD6mb5/q4qlbph9FRQeTFg==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-ssec": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.567.0.tgz", + "integrity": "sha512-lhpBwFi3Tcw+jlOdaCsg3lCAg4oOSJB00bW/aLTFeZWutwi9VexMmsddZllx99lN+LDeCjryNyVd2TCRCKwYhQ==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-user-agent": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.567.0.tgz", + "integrity": "sha512-a7DBGMRBLWJU3BqrQjOtKS4/RcCh/BhhKqwjCE0FEhhm6A/GGuAs/DcBGOl6Y8Wfsby3vejSlppTLH/qtV1E9w==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@aws-sdk/util-endpoints": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/region-config-resolver": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.567.0.tgz", + "integrity": "sha512-VMDyYi5Dh2NydDiIARZ19DwMfbyq0llS736cp47qopmO6wzdeul7WRTx8NKfEYN0/AwEaqmTW0ohx58jSB1lYg==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/service-error-classification": { + "version": "3.78.0" + }, + "@aws-sdk/signature-v4-multi-region": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.567.0.tgz", + "integrity": "sha512-LYoWyMSaI/tOhcyOFgUjsYKEab67D0Scu5JaFbjDV15UZYfpitlWq5TEuEJvSeyn3+y+yDEHT3sxu4RTd9ya7g==", + "requires": { + "@aws-sdk/middleware-sdk-s3": "3.567.0", + "@aws-sdk/types": "3.567.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/signature-v4": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/token-providers": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.567.0.tgz", + "integrity": "sha512-W9Zd7/504wGrNjHHbJeCms1j1M6/88cHtBhRTKOWa7mec1gCjrd0VB3JE1cRodc6OrbJZ9TmyarBg8er6X5aiA==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/types": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.567.0.tgz", + "integrity": "sha512-JBznu45cdgQb8+T/Zab7WpBmfEAh77gsk99xuF4biIb2Sw1mdseONdoGDjEJX57a25TzIv/WUJ2oABWumckz1A==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-arn-parser": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.567.0.tgz", + "integrity": "sha512-d9WZWPrymGAFLVGe0qysH3cv576NsHDWP9F4ZIiJrM/71pB4/C9XXKfRVZXyexO6KMDEr2Lv0Jx1Lb+FF4ZsqQ==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-dynamodb": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-dynamodb/-/util-dynamodb-3.567.0.tgz", + "integrity": "sha512-T6hBcLpUwESJyp50as4yUquyf0eitKGwi5Kw+zH3ELh/AwIrFLsVFHuBMRHUVctUZ9SXvnhXGXbJaT1Cf8Xvwg==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-endpoints": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.567.0.tgz", + "integrity": "sha512-WVhot3qmi0BKL9ZKnUqsvCd++4RF2DsJIG32NlRaml1FT9KaqSzNv0RXeA6k/kYwiiNT7y3YWu3Lbzy7c6vG9g==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "@smithy/util-endpoints": "^1.2.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-locate-window": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.568.0.tgz", + "integrity": "sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-browser": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.567.0.tgz", + "integrity": "sha512-cqP0uXtZ7m7hRysf3fRyJwcY1jCgQTpJy7BHB5VpsE7DXlXHD5+Ur5L42CY7UrRPrB6lc6YGFqaAOs5ghMcLyA==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/types": "^2.12.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.567.0.tgz", + "integrity": "sha512-Fph602FBhLssed0x2GsRZyqJB8thcrKzbS53v57rQ6XHSQ6T8t2BUyrlXcBfDpoZQjnqobr0Uu2DG5UI3cgR6g==", + "requires": { + "@aws-sdk/types": "3.567.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-utf8-browser": { + "version": "3.259.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz", + "integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==", + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/xml-builder": { + "version": "3.567.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.567.0.tgz", + "integrity": "sha512-Db25jK9sZdGa7PEQTdm60YauUVbeYGsSEMQOHGP6ifbXfCknqgkPgWV16DqAKJUsbII0xgkJ9LpppkmYal3K/g==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@aws/dynamodb-auto-marshaller": { + "version": "0.7.1", + "dev": true, + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "dev": true + } + } + }, + "@babel/code-frame": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "dev": true, + "requires": { + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" + } + }, + "@babel/compat-data": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", + "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "dev": true + }, + "@babel/core": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", + "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", + "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "dev": true, + "requires": { + "@babel/types": "^7.24.5", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + } + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "requires": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-module-imports": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "dev": true, + "requires": { + "@babel/types": "^7.24.0" + } + }, + "@babel/helper-module-transforms": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", + "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.24.3", + "@babel/helper-simple-access": "^7.24.5", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/helper-validator-identifier": "^7.24.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", + "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", + "dev": true + }, + "@babel/helper-simple-access": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", + "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", + "dev": true, + "requires": { + "@babel/types": "^7.24.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", + "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "dev": true, + "requires": { + "@babel/types": "^7.24.5" + } + }, + "@babel/helper-string-parser": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", + "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", + "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", + "dev": true, + "requires": { + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5" + } + }, + "@babel/highlight": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", + "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.24.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + } + }, + "@babel/parser": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", + "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", + "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", + "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/template": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" + } + }, + "@babel/traverse": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", + "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/types": "^7.24.5", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "dependencies": { + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", + "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.24.1", + "@babel/helper-validator-identifier": "^7.24.5", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + } + } + }, + "@esbuild/aix-ppc64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.0.tgz", + "integrity": "sha512-kB8I77Onff4y6hAREwsjF11ifM+xi8bBIq/viMO5NFZDX2vKlF0/mevHJYb4sNfb55jIREeUztkUfIgOFtSzdw==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.0.tgz", + "integrity": "sha512-8OvDALSbmoLJ79KCs0hxoki5I3qJA7JQMhJO6aq5O8G+pi7TPnGICdQRQcgdzwZaVc4ptp5SX7Phg6jKzvSEBg==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.0.tgz", + "integrity": "sha512-SDGbrIOL6P6WTIbDcCa2sbFgznp8o6ztjGWrA+js8JZ9HhBXavN3gPrEqUqB4+bV4AdsqlZG1tK2F06BOPNpZg==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.0.tgz", + "integrity": "sha512-G4fkcHqDtIbiE9b3KFJP+ay+TiCOHmenT5GYVi0fuHxFbX0CJ3lpTQbFuWR5s5AlYZZ1j4yY2hbggSUkaBK0pg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.0.tgz", + "integrity": "sha512-XMcLA6siz67AoEOl8WOot2Y3TOSClT15AqJdQz/sx98Dpv3oTbcv0BoqvHAhpBPgC8iyIKM98vVj6th7lA4DFg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.0.tgz", + "integrity": "sha512-+dmvTVqVkAArjJyIbo4Rl2S4I4A/yRuivTPR9Igw0QMBVSJegJqixKxZvKLCh8xi6n8tePdq3EpfbFYH2KNNiw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.0.tgz", + "integrity": "sha512-g8/wBRLbsjryMBo4PGg050I1fn4qrJobkxpT1OekO6I4H2HVQfVfBAvGPhwzc9tr8CUVu0pSGSz9oDPGIjhLNw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.0.tgz", + "integrity": "sha512-uwRL7kSN9tfFBpa7o9HQjEgxPsQsSmOz2ALQ30dxMNT22xS49s8nUtFi7bJ+kM/pcTHcnhyJwJPCY7cwlbQbWQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.0.tgz", + "integrity": "sha512-8s/YeLaUV3QTaGzwDqiTpb78Nw/DdIaUdIlRZItGgWf/8UZHsYUIWj9RfsEXVJB5qvtrg835Dgz/gf+GmFGa7w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.0.tgz", + "integrity": "sha512-mgOuJBbV8Uexb3BmeVl1q2preJMu0aDiwiFxIfsQhE2+rqxVAEcIrllb7SulkH9G244O/ZN1VVILdZb2NPSvpw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.0.tgz", + "integrity": "sha512-7pVhVYBt3/R8x0Um9p4V8eMiQcnk6/IHkOo6tkfLnDqPn+NS6lnbfWysAYeDAqFKt6INQKtVxejh6ccbVYLBwQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.0.tgz", + "integrity": "sha512-P8Lse7CXV83ARWVaq6KwV6w86ABeViyUvw6s++tYsUuqUEZgG5697Un72usafkuD7AfOyBdFX6JqZSvIQAU0yQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.0.tgz", + "integrity": "sha512-lUvMkXlUMrx5vnspMWohma6vuWh+Z/mPV6DdbXW07fNgF2Tlg6SLSqqzDXv5XYV4og5awNFYcPXpgqOVsqdx7Q==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.0.tgz", + "integrity": "sha512-wLi9VRnLDRg1Gudic24gcT5aa5LZGBwLi4aYghQ9bVb8z0qYHrZnRTNxulErFvOsSgijUWS5uNLCUaLwj+tvIQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.0.tgz", + "integrity": "sha512-MOjonqpNtns0Y32NwvMZiZXw94g8EqeqI+4BQtIHj07xX61vOyqlBsJH3UbjkWvaewie1VP9IoiX2Ja/P2XCJw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.0.tgz", + "integrity": "sha512-Gz/gafubuM3L1D29LnqaxcGg16aa2XES/uFTFdcvrwsRpMxkLiowaUvIiWJfatf/oCyyZu5CT8SrlMy37dGc7A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.0.tgz", + "integrity": "sha512-OGorpObKLm8XlhoJlxtdwECfnESXu3kd8mU1yZ5Xk0vmh0d2xoJjEXJi7y7mjFpc3+XfGQRgHq/gqyIkbufnvA==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.0.tgz", + "integrity": "sha512-AwkJoff9D5Px7+lHafSSgDK3JreyeyPtwTsOfxhlk5NZ+bMGlvSfHkA6DKv9vD0gmGrBPTMv/uIePkNaVsDq7w==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.0.tgz", + "integrity": "sha512-wqv7KSmRA4qf0lFZ2Abjp2boO9tDe7YwNLZ7DNUI5rsluS0/TF78CtPUUAePukgE6b2HcXYZYuL5F2yXdQIqIg==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.0.tgz", + "integrity": "sha512-3qAZFC752nZZQOI+OG4KIawvLfdD5yMFCeIFz0OhedMpYgq9AOKygW45Ojy0E5upBqns2fUaMFk1CnNSkvJaYw==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.0.tgz", + "integrity": "sha512-06BY4wjQQ2bPjayuvKWXr5X3V+ZGnoTOX1+doLoQBUSyCDb9JZgX7o0N3t3rRNmEiMY/DuxXwu+EE+U32B4ErA==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.0.tgz", + "integrity": "sha512-uTLz9mPOMkl3bfuGnSQumrUN7U1aPb8MCOdjQJOWPGdXTZhkK6Z2lLHxdTjX6C51jxXWWAo64tcRwiAYOkQhJw==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.0.tgz", + "integrity": "sha512-XT0oCVNRjmrMTz/Xd+9L2eOI83gUQZg9Viiv3cuT/8VNlXVMn6QsxyBMDNFsYX+wmQRD31VMKNtkZaXvS3/JiA==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "@hutson/parse-repository-url": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", + "dev": true + }, + "@inquirer/confirm": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.7.tgz", + "integrity": "sha512-BZjjj19W8gnh5UGFTdP5ZxpgMNRjy03Dzq3k28sB2MDlEUFrcyTkMEoGgvBmGpUw0vNBoCJkTcbHZ3e9tb+d+w==", + "dev": true, + "requires": { + "@inquirer/core": "^8.2.0", + "@inquirer/type": "^1.3.1" + } + }, + "@inquirer/core": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-8.2.0.tgz", + "integrity": "sha512-pexNF9j2orvMMTgoQ/uKOw8V6/R7x/sIDwRwXRhl4i0pPSh6paRzFehpFKpfMbqix1/+gzCekhYTmVbQpWkVjQ==", + "dev": true, + "requires": { + "@inquirer/figures": "^1.0.1", + "@inquirer/type": "^1.3.1", + "@types/mute-stream": "^0.0.4", + "@types/node": "^20.12.11", + "@types/wrap-ansi": "^3.0.0", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "cli-spinners": "^2.9.2", + "cli-width": "^4.1.0", + "mute-stream": "^1.0.0", + "signal-exit": "^4.1.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "@types/node": { + "version": "20.12.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", + "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "@inquirer/figures": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.1.tgz", + "integrity": "sha512-mtup3wVKia3ZwULPHcbs4Mor8Voi+iIXEWD7wCNbIO6lYR62oPCTQyrddi5OMYVXHzeCSoneZwJuS8sBvlEwDw==", + "dev": true + }, + "@inquirer/input": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.7.tgz", + "integrity": "sha512-eRdwlHJI4bpYsi4icIthsz1rZGIrlfufzRZdCf2i1qfQZ8d3vLTWcILIWV7cnjD4v/nrZ81RthRaQog/uxlcGA==", + "dev": true, + "requires": { + "@inquirer/core": "^8.2.0", + "@inquirer/type": "^1.3.1" + } + }, + "@inquirer/select": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.3.3.tgz", + "integrity": "sha512-0ptHMogTnyTNKIJVEfCl4fFDQSzIR2/SjgBoD1MLXDszP3UbkYroZ9ii3e6x7dMCWrPGkGWZPyxpy3Rs55vWLw==", + "dev": true, + "requires": { + "@inquirer/core": "^8.2.0", + "@inquirer/figures": "^1.0.1", + "@inquirer/type": "^1.3.1", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@inquirer/type": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.3.1.tgz", + "integrity": "sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==", + "dev": true + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "dev": true + }, + "@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "requires": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "requires": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + } + }, + "@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "requires": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + } + }, + "@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "requires": { + "jest-get-type": "^29.6.3" + } + }, + "@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "requires": { + "@sinonjs/commons": "^3.0.0" + } + } + } + }, + "@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "requires": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + } + }, + "@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", + "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", + "dev": true, + "requires": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "requires": { + "@sinclair/typebox": "^0.27.8" + } + }, + "@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + } + }, + "@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "requires": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "requires": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + } + }, + "@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@jsii/check-node": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.98.0.tgz", + "integrity": "sha512-hI53TMW/fylHyY3CrJvqWvfSPJvBL82GSAB1m2CKNC0yHb0pZHCdBZnLrrr4rgTCQx8kIJjcUc0rQ/Ba3w+GaA==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "semver": "^7.5.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jsii/spec": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.98.0.tgz", + "integrity": "sha512-5FCJedjFrxKt0wrcSnXetHHTXQV6OQM2NlE/WJNvjwqlk+RYfw+BwZOBYHsoaQx1Qh0pTwN7ZM9WmEusN3GdNw==", + "dev": true, + "requires": { + "ajv": "^8.12.0" + }, + "dependencies": { + "ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@oclif/core": { + "version": "3.26.6", + "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.6.tgz", + "integrity": "sha512-+FiTw1IPuJTF9tSAlTsY8bGK4sgthehjz7c2SvYdgQncTkxI2xvUch/8QpjNYGLEmUneNygvYMRBax2KJcLccA==", + "requires": { + "@types/cli-progress": "^3.11.5", + "ansi-escapes": "^4.3.2", + "ansi-styles": "^4.3.0", + "cardinal": "^2.1.1", + "chalk": "^4.1.2", + "clean-stack": "^3.0.1", + "cli-progress": "^3.12.0", + "color": "^4.2.3", + "debug": "^4.3.4", + "ejs": "^3.1.10", + "get-package-type": "^0.1.0", + "globby": "^11.1.0", + "hyperlinker": "^1.0.0", + "indent-string": "^4.0.0", + "is-wsl": "^2.2.0", + "js-yaml": "^3.14.1", + "minimatch": "^9.0.4", + "natural-orderby": "^2.0.3", + "object-treeify": "^1.1.33", + "password-prompt": "^1.1.3", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "supports-color": "^8.1.1", + "supports-hyperlinks": "^2.2.0", + "widest-line": "^3.1.0", + "wordwrap": "^1.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@oclif/plugin-help": { + "version": "6.0.22", + "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.22.tgz", + "integrity": "sha512-IPgUvPSdZMCHzCwCRVDUMWtFkWZSoU6Z7igNclugLIpF3Ac3vKkZGguWZ+SLK3e7012etDzgAHjXFELYOqqbsw==", + "requires": { + "@oclif/core": "^3.26.6" + } + }, + "@oclif/plugin-not-found": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.1.9.tgz", + "integrity": "sha512-yPh9YAIIIzDRscR8P/yu4D2fwK5z5wze57wspklmNg4pW/tOFhe7BelgOBahSdkJQodS7TUIzI/CN4DWbNWuKQ==", + "dev": true, + "requires": { + "@inquirer/confirm": "^3.1.6", + "@oclif/core": "^3.26.5", + "chalk": "^5.3.0", + "fast-levenshtein": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "fast-levenshtein": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz", + "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==", + "dev": true, + "requires": { + "fastest-levenshtein": "^1.0.7" + } + } + } + }, + "@oclif/plugin-warn-if-update-available": { + "version": "3.0.19", + "resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.19.tgz", + "integrity": "sha512-CauYLxNuPtK9ig1ZlzFiCqxzGJJd73CKyJDiSzGkg3QRooyZkE9G+l1Lz18fHzj+TEeXUZ74t6RWWPC5p0TL4w==", + "dev": true, + "requires": { + "@oclif/core": "^3.26.6", + "chalk": "^5.3.0", + "debug": "^4.1.0", + "http-call": "^5.2.2", + "lodash": "^4.17.21" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + } + } + }, + "@oclif/test": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@oclif/test/-/test-3.2.13.tgz", + "integrity": "sha512-H/3K2C55d1gW2YetrYK+hF2DDTRt5lpa0uSjARh9kOxDM2aERnS24pWQcCzLDZKsLnG998/bQmPW9mzvpGM2Wg==", + "dev": true, + "requires": { + "@oclif/core": "^3.26.5", + "chai": "^4.4.1", + "fancy-test": "^3.0.14" + } + }, + "@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true + }, + "@shutterstock/aws-embedded-metrics-flatten": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@shutterstock/aws-embedded-metrics-flatten/-/aws-embedded-metrics-flatten-1.0.6.tgz", + "integrity": "sha512-9At517+JCZZnyVvQXKc3CmPJjxFBNuYJI5HaF7jGKQEd7KZFoNau9i4+YNck1zCp/8dprKEJgXAT3BTEiTvvlQ==", + "requires": { + "aws-embedded-metrics": "^2.0.4" + } + }, + "@shutterstock/chunker": { + "version": "1.0.11", + "requires": { + "@shutterstock/p-map-iterable": "^1.0.11" + } + }, + "@shutterstock/kinesis-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/@shutterstock/kinesis-helpers/-/kinesis-helpers-1.0.15.tgz", + "integrity": "sha512-GJ8404MRbODu+shZnT+k25lpxWg4ygXYb68BOXJh/xx4+aqouk+47yzkpfJpJ7bG/1LqzWhrTKhC3fV2obmU8g==", + "requires": { + "@shutterstock/p-map-iterable": "^1.0.11" + } + }, + "@shutterstock/kinesis-index-writer": { + "version": "file:packages/kinesis-index-writer", + "requires": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.5", + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "stats-lite": "^2.2.0", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + }, + "dependencies": { + "@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "argparse": { + "version": "2.0.1" + }, + "fs-extra": { + "version": "10.0.1", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "requires": { + "argparse": "^2.0.1" + } + }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "sinon": { + "version": "11.1.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "universalify": { + "version": "2.0.0" + }, + "uuid": { + "version": "8.3.2" + } + } + }, + "@shutterstock/kinesis-sitemap-freshener": { + "version": "file:packages/kinesis-sitemap-freshener", + "requires": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.6", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@shutterstock/p-map-iterable": "^1.0.11", + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/memorystream": "^0.3.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/traverse": "^0.6.32", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "memorystream": "^0.3.1", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "stats-lite": "^2.2.0", + "traverse": "^0.6.6", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + }, + "dependencies": { + "@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "argparse": { + "version": "2.0.1" + }, + "fs-extra": { + "version": "10.0.1", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "requires": { + "argparse": "^2.0.1" + } + }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "sinon": { + "version": "11.1.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "traverse": { + "version": "0.6.6" + }, + "universalify": { + "version": "2.0.0" + }, + "uuid": { + "version": "8.3.2" + } + } + }, + "@shutterstock/kinesis-sitemap-writer": { + "version": "file:packages/kinesis-sitemap-writer", + "requires": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.6", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@shutterstock/p-map-iterable": "^1.0.11", + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/memorystream": "^0.3.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/traverse": "^0.6.32", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "memorystream": "^0.3.1", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "stats-lite": "^2.2.0", + "traverse": "^0.6.6", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + }, + "dependencies": { + "@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "argparse": { + "version": "2.0.1" + }, + "fs-extra": { + "version": "10.0.1", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "requires": { + "argparse": "^2.0.1" + } + }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "sinon": { + "version": "11.1.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "traverse": { + "version": "0.6.6" + }, + "universalify": { + "version": "2.0.0" + }, + "uuid": { + "version": "8.3.2" + } + } + }, + "@shutterstock/p-map-iterable": { + "version": "1.0.11", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "@shutterstock/sitemaps-cdk": { + "version": "file:packages/sitemaps-cdk", + "requires": { + "@types/node": "^18", + "aws-cdk-lib": "2.117.0", + "constructs": "10.1.244", + "esbuild": "^0.21.0", + "jsii": "~5.4.0", + "jsii-diff": "^1.98.0", + "jsii-docgen": "^10.4.9", + "jsii-pacmak": "^1.98.0", + "jsii-rosetta": "~5.4.0", + "projen": "0.81.6", + "standard-version": "^9", + "ts-node": "^10.9.1", + "typescript": "^4.0.0" + }, + "dependencies": { + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true + } + } + }, + "@shutterstock/sitemaps-cli": { + "version": "file:packages/sitemaps-cli", + "requires": { + "@aws-sdk/client-dynamodb": "^3.567.0", + "@aws-sdk/client-kinesis": "^3.567.0", + "@aws-sdk/client-lambda": "^3.567.0", + "@aws-sdk/client-s3": "^3.567.0", + "@aws-sdk/credential-providers": "^3.567.0", + "@oclif/core": "3.26.6", + "@oclif/plugin-help": "6.0.22", + "@oclif/test": "3.2.13", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@types/cli-progress": "^3.11.5", + "@types/cloneable-readable": "^2.0.0", + "@types/fs-extra": "^11.0.4", + "@types/source-map-support": "^0.5.4", + "@types/traverse": "^0.6.32", + "cli-progress": "^3.12.0", + "cloneable-readable": "^2.1.0", + "csv-parse": "^5.2.2", + "fs-extra": "^11.2.0", + "it-batch": "^1.0.9", + "listr2": "^3.13.3", + "node-fetch": "^2.7.0", + "oclif": "4.10.6", + "shx": "^0.3.3", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.21", + "traverse": "^0.6.6" + }, + "dependencies": { + "@types/fs-extra": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-11.0.4.tgz", + "integrity": "sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==", + "dev": true, + "requires": { + "@types/jsonfile": "*", + "@types/node": "*" + } + }, + "fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "traverse": { + "version": "0.6.6", + "dev": true + }, + "universalify": { + "version": "2.0.0", + "dev": true + } + } + }, + "@shutterstock/sitemaps-db-lib": { + "version": "file:packages/sitemaps-db-lib", + "requires": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@types/node": "^18", + "@types/sinon": "^10.0.1", + "class-transformer": "^0.4.0", + "sinon": "^11.1.2", + "sitemap": "^8.0.0", + "stats-lite": "^2.2.0" + }, + "dependencies": { + "@sinonjs/samsam": { + "version": "6.1.3", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "sinon": { + "version": "11.1.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^7.1.2", + "@sinonjs/samsam": "^6.0.2", + "diff": "^5.0.0", + "nise": "^5.1.0", + "supports-color": "^7.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@shutterstock/sitemaps-metrics-lib": { + "version": "file:packages/sitemaps-metrics-lib", + "requires": { + "@types/node": "^18" + }, + "dependencies": { + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + } + } + }, + "@shutterstock/sitemaps-models-lib": { + "version": "file:packages/sitemaps-models-lib", + "requires": { + "@types/node": "^18", + "sitemap": "^8.0.0" + }, + "dependencies": { + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + } + } + }, + "@shutterstock/sitemaps-utils-lib": { + "version": "file:packages/sitemaps-utils-lib", + "requires": { + "@aws-sdk/client-s3": "^3.567.0", + "@aws-sdk/lib-storage": "^3.567.0", + "@types/fs-extra": "^9.0.12", + "@types/node": "^18", + "@types/node-fetch": "^2.5.12", + "@types/wtfnode": "^0.7.0", + "fs-extra": "^10.0.0", + "node-fetch": "^2.6.1", + "wtfnode": "^0.9.1" + }, + "dependencies": { + "@types/node": { + "version": "18.19.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.33.tgz", + "integrity": "sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "fs-extra": { + "version": "10.0.1", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0" + } + } + }, + "@shutterstock/sitemaps-wrapper-lib": { + "version": "file:packages/sitemaps-wrapper-lib", + "requires": { + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@types/lodash": "^4.14.171", + "fs-extra": "^10.0.0", + "lodash": "^4.17.21", + "sax": "^1.2.4", + "sitemap": "^8.0.0", + "uuid": "^8.3.2" + }, + "dependencies": { + "fs-extra": { + "version": "10.0.1", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "sax": { + "version": "1.2.4" + }, + "universalify": { + "version": "2.0.0" + }, + "uuid": { + "version": "8.3.2", + "dev": true + } + } + }, + "@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "dev": true + }, + "@sinonjs/commons": { + "version": "1.8.3", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "7.1.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@sinonjs/samsam": { + "version": "7.0.1", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + } + } + }, + "@sinonjs/text-encoding": { + "version": "0.7.2", + "dev": true + }, + "@smithy/abort-controller": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.2.0.tgz", + "integrity": "sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/chunked-blob-reader": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-2.2.0.tgz", + "integrity": "sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/chunked-blob-reader-native": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.2.0.tgz", + "integrity": "sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==", + "requires": { + "@smithy/util-base64": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/config-resolver": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.2.0.tgz", + "integrity": "sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==", + "requires": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-config-provider": "^2.3.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/core": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-1.4.2.tgz", + "integrity": "sha512-2fek3I0KZHWJlRLvRTqxTEri+qV0GRHrJIoLFuBMZB4EMg4WgeBGfF0X6abnrNYpq55KJ6R4D6x4f0vLnhzinA==", + "requires": { + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/credential-provider-imds": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.3.0.tgz", + "integrity": "sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==", + "requires": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-codec": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.2.0.tgz", + "integrity": "sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==", + "requires": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^2.12.0", + "@smithy/util-hex-encoding": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-browser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.2.0.tgz", + "integrity": "sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==", + "requires": { + "@smithy/eventstream-serde-universal": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-config-resolver": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.2.0.tgz", + "integrity": "sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-node": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.2.0.tgz", + "integrity": "sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==", + "requires": { + "@smithy/eventstream-serde-universal": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-universal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.2.0.tgz", + "integrity": "sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==", + "requires": { + "@smithy/eventstream-codec": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/fetch-http-handler": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.5.0.tgz", + "integrity": "sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==", + "requires": { + "@smithy/protocol-http": "^3.3.0", + "@smithy/querystring-builder": "^2.2.0", + "@smithy/types": "^2.12.0", + "@smithy/util-base64": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-blob-browser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.2.0.tgz", + "integrity": "sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==", + "requires": { + "@smithy/chunked-blob-reader": "^2.2.0", + "@smithy/chunked-blob-reader-native": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-node": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.2.0.tgz", + "integrity": "sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==", + "requires": { + "@smithy/types": "^2.12.0", + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-stream-node": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.2.0.tgz", + "integrity": "sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==", + "requires": { + "@smithy/types": "^2.12.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/invalid-dependency": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.2.0.tgz", + "integrity": "sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/is-array-buffer": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz", + "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/md5-js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.2.0.tgz", + "integrity": "sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==", + "requires": { + "@smithy/types": "^2.12.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-content-length": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.2.0.tgz", + "integrity": "sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==", + "requires": { + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-endpoint": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.5.1.tgz", + "integrity": "sha512-1/8kFp6Fl4OsSIVTWHnNjLnTL8IqpIb/D3sTSczrKFnrE9VMNWxnrRKNvpUHOJ6zpGD5f62TPm7+17ilTJpiCQ==", + "requires": { + "@smithy/middleware-serde": "^2.3.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-middleware": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-retry": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.3.1.tgz", + "integrity": "sha512-P2bGufFpFdYcWvqpyqqmalRtwFUNUA8vHjJR5iGqbfR6mp65qKOLcUd6lTr4S9Gn/enynSrSf3p3FVgVAf6bXA==", + "requires": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/service-error-classification": "^2.1.5", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "dependencies": { + "uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" + } + } + }, + "@smithy/middleware-serde": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.3.0.tgz", + "integrity": "sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.2.0.tgz", + "integrity": "sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/node-config-provider": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.3.0.tgz", + "integrity": "sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==", + "requires": { + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/node-http-handler": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.5.0.tgz", + "integrity": "sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==", + "requires": { + "@smithy/abort-controller": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/querystring-builder": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/property-provider": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.2.0.tgz", + "integrity": "sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/protocol-http": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.3.0.tgz", + "integrity": "sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/querystring-builder": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.2.0.tgz", + "integrity": "sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==", + "requires": { + "@smithy/types": "^2.12.0", + "@smithy/util-uri-escape": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/querystring-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.2.0.tgz", + "integrity": "sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/service-error-classification": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.1.5.tgz", + "integrity": "sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==", + "requires": { + "@smithy/types": "^2.12.0" + } + }, + "@smithy/shared-ini-file-loader": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.4.0.tgz", + "integrity": "sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/signature-v4": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.3.0.tgz", + "integrity": "sha512-ui/NlpILU+6HAQBfJX8BBsDXuKSNrjTSuOYArRblcrErwKFutjrCNb/OExfVRyj9+26F9J+ZmfWT+fKWuDrH3Q==", + "requires": { + "@smithy/is-array-buffer": "^2.2.0", + "@smithy/types": "^2.12.0", + "@smithy/util-hex-encoding": "^2.2.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-uri-escape": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/smithy-client": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.5.1.tgz", + "integrity": "sha512-jrbSQrYCho0yDaaf92qWgd+7nAeap5LtHTI51KXqmpIFCceKU3K9+vIVTUH72bOJngBMqa4kyu1VJhRcSrk/CQ==", + "requires": { + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/types": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.12.0.tgz", + "integrity": "sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/url-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.2.0.tgz", + "integrity": "sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==", + "requires": { + "@smithy/querystring-parser": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-base64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.3.0.tgz", + "integrity": "sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==", + "requires": { + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-body-length-browser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.2.0.tgz", + "integrity": "sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-body-length-node": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.3.0.tgz", + "integrity": "sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-buffer-from": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz", + "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", + "requires": { + "@smithy/is-array-buffer": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-config-provider": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.3.0.tgz", + "integrity": "sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-defaults-mode-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.2.1.tgz", + "integrity": "sha512-RtKW+8j8skk17SYowucwRUjeh4mCtnm5odCL0Lm2NtHQBsYKrNW0od9Rhopu9wF1gHMfHeWF7i90NwBz/U22Kw==", + "requires": { + "@smithy/property-provider": "^2.2.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-defaults-mode-node": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.3.1.tgz", + "integrity": "sha512-vkMXHQ0BcLFysBMWgSBLSk3+leMpFSyyFj8zQtv5ZyUBx8/owVh1/pPEkzmW/DR/Gy/5c8vjLDD9gZjXNKbrpA==", + "requires": { + "@smithy/config-resolver": "^2.2.0", + "@smithy/credential-provider-imds": "^2.3.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-endpoints": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.2.0.tgz", + "integrity": "sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==", + "requires": { + "@smithy/node-config-provider": "^2.3.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-hex-encoding": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.2.0.tgz", + "integrity": "sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-middleware": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.2.0.tgz", + "integrity": "sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==", + "requires": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-retry": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.2.0.tgz", + "integrity": "sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==", + "requires": { + "@smithy/service-error-classification": "^2.1.5", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.2.0.tgz", + "integrity": "sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==", + "requires": { + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/types": "^2.12.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-hex-encoding": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-uri-escape": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.2.0.tgz", + "integrity": "sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==", + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-utf8": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", + "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", + "requires": { + "@smithy/util-buffer-from": "^2.2.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-waiter": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.2.0.tgz", + "integrity": "sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==", + "requires": { + "@smithy/abort-controller": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + } + }, + "@swc/core": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true, + "requires": { + "@swc/core-darwin-arm64": "1.3.42", + "@swc/core-darwin-x64": "1.3.42", + "@swc/core-linux-arm-gnueabihf": "1.3.42", + "@swc/core-linux-arm64-gnu": "1.3.42", + "@swc/core-linux-arm64-musl": "1.3.42", + "@swc/core-linux-x64-gnu": "1.3.42", + "@swc/core-linux-x64-musl": "1.3.42", + "@swc/core-win32-arm64-msvc": "1.3.42", + "@swc/core-win32-ia32-msvc": "1.3.42", + "@swc/core-win32-x64-msvc": "1.3.42" + } + }, + "@swc/core-darwin-arm64": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-darwin-x64": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-linux-arm-gnueabihf": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-linux-arm64-gnu": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-linux-arm64-musl": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-linux-x64-gnu": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-linux-x64-musl": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-win32-arm64-msvc": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-win32-ia32-msvc": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@swc/core-win32-x64-msvc": { + "version": "1.3.42", + "dev": true, + "optional": true, + "peer": true + }, + "@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "dev": true, + "requires": { + "defer-to-connect": "^2.0.1" + } + }, + "@tsconfig/node10": { + "version": "1.0.9", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.3", + "dev": true + }, + "@types/aws-lambda": { + "version": "8.10.85", + "dev": true + }, + "@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", + "dev": true, + "requires": { + "@babel/types": "^7.20.7" + } + }, + "@types/chai": { + "version": "4.3.16", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.16.tgz", + "integrity": "sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==", + "dev": true + }, + "@types/cli-progress": { + "version": "3.11.5", + "resolved": "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.5.tgz", + "integrity": "sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==", + "requires": { + "@types/node": "*" + } + }, + "@types/cloneable-readable": { + "version": "2.0.0", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/cls-hooked": { + "version": "4.3.3", + "requires": { + "@types/node": "*" + } + }, + "@types/convict": { + "version": "6.1.1", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/convict-format-with-validator": { + "version": "6.0.2", + "dev": true, + "requires": { + "@types/convict": "*" + } + }, + "@types/fs-extra": { + "version": "9.0.13", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", + "dev": true, + "requires": { + "@types/minimatch": "^5.1.2", + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/he": { + "version": "1.1.2", + "dev": true + }, + "@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "29.5.12", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", + "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", + "dev": true, + "requires": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "@types/js-yaml": { + "version": "4.0.4", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "@types/jsonfile": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/@types/jsonfile/-/jsonfile-6.1.4.tgz", + "integrity": "sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/lambda-log": { + "version": "2.2.1", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/lodash": { + "version": "4.14.176", + "dev": true + }, + "@types/memorystream": { + "version": "0.3.0", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true + }, + "@types/mute-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@types/mute-stream/-/mute-stream-0.0.4.tgz", + "integrity": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/node": { + "version": "16.11.7" + }, + "@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "@types/rewire": { + "version": "2.5.28", + "dev": true + }, + "@types/sax": { + "version": "1.2.3", + "requires": { + "@types/node": "*" + } + }, + "@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "@types/sinon": { + "version": "10.0.10", + "dev": true, + "requires": { + "@sinonjs/fake-timers": "^7.1.0" + } + }, + "@types/source-map-support": { + "version": "0.5.4", + "dev": true, + "requires": { + "source-map": "^0.6.0" + } + }, + "@types/stack-utils": { + "version": "2.0.1", + "dev": true + }, + "@types/traverse": { + "version": "0.6.32", + "dev": true + }, + "@types/uuid": { + "version": "8.3.1", + "dev": true + }, + "@types/verror": { + "version": "1.10.5", + "dev": true + }, + "@types/wrap-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz", + "integrity": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==", + "dev": true + }, + "@types/wtfnode": { + "version": "0.7.0", + "dev": true + }, + "@types/yargs": { + "version": "17.0.22", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.8.0.tgz", + "integrity": "sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/type-utils": "7.8.0", + "@typescript-eslint/utils": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + } + }, + "@typescript-eslint/parser": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.8.0.tgz", + "integrity": "sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", + "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", + "dev": true, + "requires": { + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.8.0.tgz", + "integrity": "sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "7.8.0", + "@typescript-eslint/utils": "7.8.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + } + }, + "@typescript-eslint/types": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", + "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", + "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/visitor-keys": "7.8.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@typescript-eslint/utils": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", + "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.15", + "@types/semver": "^7.5.8", + "@typescript-eslint/scope-manager": "7.8.0", + "@typescript-eslint/types": "7.8.0", + "@typescript-eslint/typescript-estree": "7.8.0", + "semver": "^7.6.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", + "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "7.8.0", + "eslint-visitor-keys": "^3.4.3" + } + }, + "@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "dev": true + }, + "abstract-leveldown": { + "version": "6.2.3", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "immediate": "^3.2.3", + "level-concat-iterator": "~2.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "acorn": { + "version": "7.4.1", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "dev": true, + "requires": {} + }, + "acorn-walk": { + "version": "8.2.0", + "dev": true + }, + "add-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", + "integrity": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==", + "dev": true + }, + "aggregate-error": { + "version": "3.1.0", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "clean-stack": { + "version": "2.2.0" + } + } + }, + "ajv": { + "version": "6.12.6", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.1", + "dev": true, + "peer": true + }, + "ansi-escapes": { + "version": "4.3.2", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3" + } + } + }, + "ansi-regex": { + "version": "5.0.1" + }, + "ansi-styles": { + "version": "3.2.1", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "ansicolors": { + "version": "0.3.2" + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "4.1.3", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + } + }, + "array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0" + }, + "array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + }, + "assert-plus": { + "version": "1.0.0" + }, + "assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true + }, + "astral-regex": { + "version": "2.0.0" + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-hook-jl": { + "version": "1.7.6", + "requires": { + "stack-chain": "^1.3.7" + } + }, + "async-retry": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "dev": true, + "requires": { + "retry": "0.13.1" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "atomic-batcher": { + "version": "1.0.2" + }, + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "requires": { + "possible-typed-array-names": "^1.0.0" + } + }, + "aws-cdk": { + "version": "2.117.0", + "resolved": "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.117.0.tgz", + "integrity": "sha512-uuWT646vSRXZ/6don+wfK4kelV1aL4WOTduaihltRlXw4etHoMV3wJYBO30E6e8hAU+0HkLT7Fv58po50b12Sg==", + "dev": true, + "requires": { + "fsevents": "2.3.2" + } + }, + "aws-cdk-lib": { + "version": "2.117.0", + "resolved": "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.117.0.tgz", + "integrity": "sha512-My5T4hn34H6+tnZxKK2VlcvGI2N5SjqGt9lXWADcahdobuUcNizYrls7h/vcQ3BfwcZ5/tHTKtivkNyL8I1LDg==", + "requires": { + "@aws-cdk/asset-awscli-v1": "^2.2.201", + "@aws-cdk/asset-kubectl-v20": "^2.1.2", + "@aws-cdk/asset-node-proxy-agent-v6": "^2.0.1", + "@balena/dockerignore": "^1.0.2", + "case": "1.6.3", + "fs-extra": "^11.2.0", + "ignore": "^5.3.0", + "jsonschema": "^1.4.1", + "minimatch": "^3.1.2", + "punycode": "^2.3.1", + "semver": "^7.5.4", + "table": "^6.8.1", + "yaml": "1.10.2" + }, + "dependencies": { + "@balena/dockerignore": { + "version": "1.0.2", + "bundled": true + }, + "ajv": { + "version": "8.12.0", + "bundled": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "bundled": true + }, + "ansi-styles": { + "version": "4.3.0", + "bundled": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "astral-regex": { + "version": "2.0.0", + "bundled": true + }, + "balanced-match": { + "version": "1.0.2", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "case": { + "version": "1.6.3", + "bundled": true + }, + "color-convert": { + "version": "2.0.1", + "bundled": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "emoji-regex": { + "version": "8.0.0", + "bundled": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "bundled": true + }, + "fs-extra": { + "version": "11.2.0", + "bundled": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.11", + "bundled": true + }, + "ignore": { + "version": "5.3.0", + "bundled": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "bundled": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "bundled": true + }, + "jsonfile": { + "version": "6.1.0", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonschema": { + "version": "1.4.1", + "bundled": true + }, + "lodash.truncate": { + "version": "4.4.2", + "bundled": true + }, + "lru-cache": { + "version": "6.0.0", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "punycode": { + "version": "2.3.1", + "bundled": true + }, + "require-from-string": { + "version": "2.0.2", + "bundled": true + }, + "semver": { + "version": "7.5.4", + "bundled": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "slice-ansi": { + "version": "4.0.0", + "bundled": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "bundled": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "table": { + "version": "6.8.1", + "bundled": true, + "requires": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + } + }, + "universalify": { + "version": "2.0.1", + "bundled": true + }, + "uri-js": { + "version": "4.4.1", + "bundled": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "yallist": { + "version": "4.0.0", + "bundled": true + }, + "yaml": { + "version": "1.10.2", + "bundled": true + } + } + }, + "aws-embedded-metrics": { + "version": "2.0.4" + }, + "aws-sdk": { + "version": "2.1614.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1614.0.tgz", + "integrity": "sha512-dsfoOk/1UBGfELJ9skBma1RzfYXalK+0QdStuwKCqrYHgpF/mlf7BqYOB0acNQHzxgVxEP0LOGjWZOzWWwdGhw==", + "dev": true, + "peer": true, + "requires": { + "buffer": "4.9.2", + "events": "1.1.1", + "ieee754": "1.1.13", + "jmespath": "0.16.0", + "querystring": "0.2.0", + "sax": "1.2.1", + "url": "0.10.3", + "util": "^0.12.4", + "uuid": "8.0.0", + "xml2js": "0.6.2" + } + }, + "aws-sdk-client-mock": { + "version": "2.1.0", + "dev": true, + "requires": { + "@types/sinon": "^10.0.10", + "sinon": "^14.0.2", + "tslib": "^2.1.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "9.1.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "1.8.6", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + } + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "sinon": { + "version": "14.0.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "^9.1.2", + "@sinonjs/samsam": "^7.0.1", + "diff": "^5.0.0", + "nise": "^5.1.2", + "supports-color": "^7.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "aws-xray-sdk-core": { + "version": "3.3.4", + "requires": { + "@aws-sdk/service-error-classification": "^3.4.1", + "@aws-sdk/types": "^3.4.1", + "@types/cls-hooked": "^4.3.3", + "atomic-batcher": "^1.0.2", + "cls-hooked": "^4.2.2", + "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "requires": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "balanced-match": { + "version": "1.0.2" + }, + "base64-js": { + "version": "1.5.1" + }, + "big.js": { + "version": "5.2.2", + "dev": true + }, + "bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + }, + "brace-expansion": { + "version": "1.1.11", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + } + }, + "bs-logger": { + "version": "0.2.6", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "4.9.2", + "dev": true, + "peer": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-crc32": { + "version": "0.2.13", + "dev": true + }, + "buffer-from": { + "version": "1.1.2" + }, + "cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "dev": true + }, + "cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "dev": true, + "requires": { + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + } + }, + "call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + } + }, + "callsites": { + "version": "3.1.0", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1", + "dev": true + }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "dependencies": { + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true + } + } + }, + "caniuse-lite": { + "version": "1.0.30001617", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz", + "integrity": "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==", + "dev": true + }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "cardinal": { + "version": "2.1.1", + "requires": { + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" + } + }, + "case": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", + "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "dev": true + }, + "cdk": { + "version": "file:packages/cdk", + "requires": { + "@shutterstock/sitemaps-cdk": "*", + "@types/node": "20.10.4", + "aws-cdk": "2.117.0", + "aws-cdk-lib": "2.117.0", + "constructs": "^10.0.0", + "source-map-support": "^0.5.21", + "typescript": "~5.3.3" + }, + "dependencies": { + "@types/node": { + "version": "20.10.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.4.tgz", + "integrity": "sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true + } + } + }, + "chai": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", + "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", + "dev": true, + "requires": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.0.8" + } + }, + "chalk": { + "version": "2.4.2", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "dev": true + }, + "check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "dev": true, + "requires": { + "get-func-name": "^2.0.2" + } + }, + "ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true + }, + "cjs-module-lexer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", + "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", + "dev": true + }, + "class-transformer": { + "version": "0.4.0" + }, + "clean-stack": { + "version": "3.0.1", + "requires": { + "escape-string-regexp": "4.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "4.0.0" + } + } + }, + "cli-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-progress": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.12.0.tgz", + "integrity": "sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==", + "requires": { + "string-width": "^4.2.3" + } + }, + "cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true + }, + "cli-truncate": { + "version": "2.1.0", + "dev": true, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + } + }, + "cli-width": { + "version": "3.0.0", + "dev": true + }, + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "2.1.2", + "dev": true + }, + "cloneable-readable": { + "version": "2.1.0", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^3.3.0" + } + }, + "cls-hooked": { + "version": "4.2.2", + "requires": { + "async-hook-jl": "^1.7.6", + "emitter-listener": "^1.0.1", + "semver": "^5.4.1" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true + }, + "codemaker": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.98.0.tgz", + "integrity": "sha512-UAeICTmY7lJXf4OPnDTwKWg/DU87u67nyxuTjMON+vO8yo8C+EcPWnmmOmWtZm3wWLPsPuxyYIQxIIi/4OZ9TA==", + "dev": true, + "requires": { + "camelcase": "^6.3.0", + "decamelize": "^5.0.1", + "fs-extra": "^10.1.0" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "decamelize": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + } + } + }, + "collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + } + }, + "color-convert": { + "version": "1.9.3", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3" + }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorette": { + "version": "2.0.16", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commonmark": { + "version": "0.31.0", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.31.0.tgz", + "integrity": "sha512-nuDsQ34gjmgAqjyIz6mbRWBW/XPE9wsBempAMBk2V/AA88ekztjTM46oi07J6c6Y/2Y8TdYCZi9L0pIBt/oMZw==", + "dev": true, + "requires": { + "entities": "~3.0.1", + "mdurl": "~1.0.1", + "minimist": "~1.2.5", + "string.prototype.repeat": "^1.0.0" + } + }, + "compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "concat-map": { + "version": "0.0.1" + }, + "concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "constructs": { + "version": "10.1.244", + "resolved": "https://registry.npmjs.org/constructs/-/constructs-10.1.244.tgz", + "integrity": "sha512-oJBy6JoiwocEwKxY3yMXfbClT5ocKmX5qXUDpcxW4SRjlRvB8X2pR/lNqg74JVm9qAEUBesI0FLLqc2Ke1I2QA==" + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true + }, + "conventional-changelog": { + "version": "3.1.25", + "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.25.tgz", + "integrity": "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==", + "dev": true, + "requires": { + "conventional-changelog-angular": "^5.0.12", + "conventional-changelog-atom": "^2.0.8", + "conventional-changelog-codemirror": "^2.0.8", + "conventional-changelog-conventionalcommits": "^4.5.0", + "conventional-changelog-core": "^4.2.1", + "conventional-changelog-ember": "^2.0.9", + "conventional-changelog-eslint": "^3.0.9", + "conventional-changelog-express": "^2.0.6", + "conventional-changelog-jquery": "^3.0.11", + "conventional-changelog-jshint": "^2.0.9", + "conventional-changelog-preset-loader": "^2.3.4" + } + }, + "conventional-changelog-angular": { + "version": "5.0.13", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", + "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + } + }, + "conventional-changelog-atom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz", + "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-codemirror": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz", + "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-config-spec": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz", + "integrity": "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==", + "dev": true + }, + "conventional-changelog-conventionalcommits": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", + "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + } + }, + "conventional-changelog-core": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", + "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", + "dev": true, + "requires": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^5.0.0", + "conventional-commits-parser": "^3.2.0", + "dateformat": "^3.0.0", + "get-pkg-repo": "^4.0.0", + "git-raw-commits": "^2.0.8", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^4.1.1", + "lodash": "^4.17.15", + "normalize-package-data": "^3.0.0", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + } + } + }, + "conventional-changelog-ember": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz", + "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-eslint": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz", + "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-express": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz", + "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-jquery": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz", + "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-jshint": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz", + "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + } + }, + "conventional-changelog-preset-loader": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", + "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", + "dev": true + }, + "conventional-changelog-writer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", + "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", + "dev": true, + "requires": { + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "conventional-commits-filter": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", + "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", + "dev": true, + "requires": { + "lodash.ismatch": "^4.4.0", + "modify-values": "^1.0.0" + } + }, + "conventional-commits-parser": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", + "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", + "dev": true, + "requires": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + } + }, + "conventional-recommended-bump": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", + "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", + "dev": true, + "requires": { + "concat-stream": "^2.0.0", + "conventional-changelog-preset-loader": "^2.3.4", + "conventional-commits-filter": "^2.0.7", + "conventional-commits-parser": "^3.2.0", + "git-raw-commits": "^2.0.8", + "git-semver-tags": "^4.1.1", + "meow": "^8.0.0", + "q": "^1.5.1" + } + }, + "convert-source-map": { + "version": "2.0.0", + "dev": true + }, + "convict": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/convict/-/convict-6.2.4.tgz", + "integrity": "sha512-qN60BAwdMVdofckX7AlohVJ2x9UvjTNoKVXCL2LxFk1l7757EJqf1nySdMkPQer0bt8kQ5lQiyZ9/2NvrFBuwQ==", + "requires": { + "lodash.clonedeep": "^4.5.0", + "yargs-parser": "^20.2.7" + } + }, + "convict-format-with-validator": { + "version": "6.2.0", + "requires": { + "validator": "^13.6.0" + } + }, + "core-util-is": { + "version": "1.0.2" + }, + "create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "create-require": { + "version": "1.1.1", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "csv-parse": { + "version": "5.2.2", + "dev": true + }, + "dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true + }, + "data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "date-format": { + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", + "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", + "dev": true + }, + "dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + } + } + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true + } + } + }, + "dedent": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "dev": true, + "requires": {} + }, + "deep-eql": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "dev": true, + "requires": { + "type-detect": "^4.0.0" + } + }, + "deep-is": { + "version": "0.1.4", + "dev": true + }, + "deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true + }, + "defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true + }, + "deferred-leveldown": { + "version": "5.3.0", + "dev": true, + "requires": { + "abstract-leveldown": "~6.2.1", + "inherits": "^2.0.3" + } + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "defined": { + "version": "0.0.0", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, + "detect-indent": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", + "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true + }, + "diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotgitignore": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz", + "integrity": "sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==", + "dev": true, + "requires": { + "find-up": "^3.0.0", + "minimatch": "^3.0.4" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + } + } + }, + "downlevel-dts": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/downlevel-dts/-/downlevel-dts-0.11.0.tgz", + "integrity": "sha512-vo835pntK7kzYStk7xUHDifiYJvXxVhUapt85uk2AI94gUUAQX9HNRtrcMHNSc3YHJUEHGbYIGsM99uIbgAtxw==", + "dev": true, + "requires": { + "semver": "^7.3.2", + "shelljs": "^0.8.3", + "typescript": "next" + } + }, + "dynalite": { + "version": "3.2.1", + "dev": true, + "requires": { + "async": "^2.6.3", + "big.js": "^5.2.2", + "buffer-crc32": "^0.2.13", + "lazy": "^1.0.11", + "leveldown": "^5.2.1", + "levelup": "^4.4.0", + "lock": "^1.1.0", + "memdown": "^5.1.0", + "minimist": "^1.2.5", + "once": "^1.4.0", + "subleveldown": "^5.0.0" + } + }, + "ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "requires": { + "jake": "^10.8.5" + } + }, + "electron-to-chromium": { + "version": "1.4.762", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.762.tgz", + "integrity": "sha512-rrFvGweLxPwwSwJOjIopy3Vr+J3cIPtZzuc74bmlvmBIgQO3VYJDvVrlj94iKZ3ukXUH64Ex31hSfRTLqvjYJQ==", + "dev": true + }, + "emitter-listener": { + "version": "1.1.2", + "requires": { + "shimmer": "^1.2.0" + } + }, + "emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0" + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, + "peer": true, + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "optional": true, + "peer": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "encoding-down": { + "version": "6.3.0", + "dev": true, + "requires": { + "abstract-leveldown": "^6.2.1", + "inherits": "^2.0.3", + "level-codec": "^9.0.0", + "level-errors": "^2.0.0" + } + }, + "enquirer": { + "version": "2.3.6", + "dev": true, + "peer": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + } + }, + "es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.4" + } + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true + }, + "es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + } + }, + "es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "esbuild": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.0.tgz", + "integrity": "sha512-eyK64lASNug3Wo2+bQEBnYngjh9rkXUfOus403+OeVZteMon6moIhcEYbrSvcgBN6RsrRWCMoWcKDDK6UEsTOQ==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.21.0", + "@esbuild/android-arm": "0.21.0", + "@esbuild/android-arm64": "0.21.0", + "@esbuild/android-x64": "0.21.0", + "@esbuild/darwin-arm64": "0.21.0", + "@esbuild/darwin-x64": "0.21.0", + "@esbuild/freebsd-arm64": "0.21.0", + "@esbuild/freebsd-x64": "0.21.0", + "@esbuild/linux-arm": "0.21.0", + "@esbuild/linux-arm64": "0.21.0", + "@esbuild/linux-ia32": "0.21.0", + "@esbuild/linux-loong64": "0.21.0", + "@esbuild/linux-mips64el": "0.21.0", + "@esbuild/linux-ppc64": "0.21.0", + "@esbuild/linux-riscv64": "0.21.0", + "@esbuild/linux-s390x": "0.21.0", + "@esbuild/linux-x64": "0.21.0", + "@esbuild/netbsd-x64": "0.21.0", + "@esbuild/openbsd-x64": "0.21.0", + "@esbuild/sunos-x64": "0.21.0", + "@esbuild/win32-arm64": "0.21.0", + "@esbuild/win32-ia32": "0.21.0", + "@esbuild/win32-x64": "0.21.0" + } + }, + "escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "dev": true + }, + "eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "dev": true + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "glob-parent": { + "version": "6.0.2", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "requires": {} + }, + "eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "dev": true, + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "requires": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "eslint-plugin-prettier": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" + } + }, + "eslint-scope": { + "version": "5.1.1", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "dependencies": { + "acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1" + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "dev": true + }, + "events": { + "version": "1.1.1", + "dev": true, + "peer": true + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true + }, + "expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "requires": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + } + }, + "external-editor": { + "version": "3.1.0", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extsprintf": { + "version": "1.3.0" + }, + "fancy-test": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-3.0.15.tgz", + "integrity": "sha512-kZZFdPzVWtKxBkmLLUfxhizseGl1ZZRuCmmuCko1oiAs/X/MvE4ACm/vlzvxfu4Oeb/7MJ8hVP8rUiVm3R729Q==", + "dev": true, + "requires": { + "@types/chai": "*", + "@types/lodash": "*", + "@types/node": "*", + "@types/sinon": "*", + "lodash": "^4.17.13", + "mock-stdin": "^1.0.0", + "nock": "^13.5.4", + "sinon": "^16.1.3", + "stdout-stderr": "^0.1.9" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "requires": { + "@sinonjs/commons": "^3.0.0" + } + }, + "@sinonjs/samsam": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz", + "integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + } + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "nock": { + "version": "13.5.4", + "resolved": "https://registry.npmjs.org/nock/-/nock-13.5.4.tgz", + "integrity": "sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "propagate": "^2.0.0" + } + }, + "sinon": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-16.1.3.tgz", + "integrity": "sha512-mjnWWeyxcAf9nC0bXcPmiDut+oE8HYridTNzBbF98AYVLmWwGRp2ISEpyhYflG1ifILT+eNn3BmKUJPxjXUPlA==", + "dev": true, + "requires": { + "@sinonjs/commons": "^3.0.0", + "@sinonjs/fake-timers": "^10.3.0", + "@sinonjs/samsam": "^8.0.0", + "diff": "^5.1.0", + "nise": "^5.1.4", + "supports-color": "^7.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "dev": true + }, + "fast-diff": { + "version": "1.2.0", + "dev": true + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "dev": true + }, + "fast-safe-stringify": { + "version": "2.1.1" + }, + "fast-xml-parser": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", + "integrity": "sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==", + "requires": { + "strnum": "^1.0.5" + } + }, + "fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "requires": { + "reusify": "^1.0.4" + } + }, + "fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "figures": { + "version": "3.2.0", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "requires": { + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "find-yarn-workspace-root": { + "version": "2.0.0", + "dev": true, + "requires": { + "micromatch": "^4.0.2" + } + }, + "flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "requires": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "requires": { + "is-callable": "^1.1.3" + } + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, + "functional-red-black-tree": { + "version": "1.0.1", + "dev": true + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-package-type": { + "version": "0.1.0" + }, + "get-pkg-repo": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", + "dev": true, + "requires": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", + "through2": "^2.0.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", + "dev": true + }, + "get-stream": { + "version": "6.0.1", + "dev": true + }, + "get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + } + }, + "git-hooks-list": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz", + "integrity": "sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==", + "dev": true + }, + "git-raw-commits": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, + "requires": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + } + }, + "git-remote-origin-url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==", + "dev": true, + "requires": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" + } + }, + "git-semver-tags": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", + "dev": true, + "requires": { + "meow": "^8.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "gitconfiglocal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==", + "dev": true, + "requires": { + "ini": "^1.3.2" + } + }, + "github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", + "dev": true + }, + "glob": { + "version": "7.2.0", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "requires": { + "is-glob": "^4.0.1" + } + }, + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + }, + "dependencies": { + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "requires": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + } + }, + "globby": { + "version": "11.1.0", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "got": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", + "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", + "dev": true, + "requires": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.9" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + } + }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "requires": { + "has-symbols": "^1.0.3" + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0" + }, + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "hosted-git-info": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", + "dev": true, + "requires": { + "lru-cache": "^10.0.1" + } + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "http-call": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/http-call/-/http-call-5.3.0.tgz", + "integrity": "sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w==", + "dev": true, + "requires": { + "content-type": "^1.0.4", + "debug": "^4.1.1", + "is-retry-allowed": "^1.1.0", + "is-stream": "^2.0.0", + "parse-json": "^4.0.0", + "tunnel-agent": "^0.6.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + } + } + }, + "http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", + "dev": true, + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "hyperlinker": { + "version": "1.0.0" + }, + "iconv-lite": { + "version": "0.4.24", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.1.13" + }, + "ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==" + }, + "immediate": { + "version": "3.3.0", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "dev": true + }, + "indent-string": { + "version": "4.0.0" + }, + "inflight": { + "version": "1.0.6", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inquirer": { + "version": "7.3.3", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "peer": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true + }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "requires": { + "is-typed-array": "^1.1.13" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "2.2.1" + }, + "is-extglob": { + "version": "2.1.1" + }, + "is-fullwidth-code-point": { + "version": "3.0.0" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "peer": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "dev": true + }, + "is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true + }, + "is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "requires": { + "call-bind": "^1.0.7" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-text-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "requires": { + "text-extensions": "^1.0.0" + } + }, + "is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "requires": { + "which-typed-array": "^1.1.14" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-wsl": { + "version": "2.2.0", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "dev": true + }, + "isexe": { + "version": "2.0.0" + }, + "isnumber": { + "version": "1.0.0", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "it-batch": { + "version": "1.0.9" + }, + "jake": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", + "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", + "requires": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "requires": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + } + }, + "jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "requires": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + } + }, + "jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "requires": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "requires": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-dynalite": { + "version": "3.6.1", + "dev": true, + "requires": { + "@aws/dynamodb-auto-marshaller": "^0.7.1", + "dynalite": "^3.2.1", + "setimmediate": "^1.0.5" + } + }, + "jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "requires": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + } + }, + "jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true + }, + "jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + } + }, + "jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "requires": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + } + } + }, + "jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "requires": {} + }, + "jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true + }, + "jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "requires": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + } + }, + "jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "requires": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "requires": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "requires": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "requires": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jmespath": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz", + "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==", + "dev": true, + "peer": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "dev": true + }, + "jsii": { + "version": "5.4.15", + "resolved": "https://registry.npmjs.org/jsii/-/jsii-5.4.15.tgz", + "integrity": "sha512-syw2kfZJyb+A6G9ApsmlTBUd/+xMCAQRjml45NSZs6k7+4ifVByOfiIoA05e8zfkn+nOOC+BcTFlHeYubiBHKQ==", + "dev": true, + "requires": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "case": "^1.6.3", + "chalk": "^4", + "downlevel-dts": "^0.11.0", + "fast-deep-equal": "^3.1.3", + "log4js": "^6.9.1", + "semver": "^7.6.2", + "semver-intersect": "^1.5.0", + "sort-json": "^2.0.1", + "spdx-license-list": "^6.9.0", + "typescript": "~5.4", + "yargs": "^17.7.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jsii-diff": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/jsii-diff/-/jsii-diff-1.98.0.tgz", + "integrity": "sha512-jyRhxkEehIt/zK3xeGbIlb0m2f+G1dZxbyQ7DB4iHOHPcgx6SPiRIzhGnbN/EnB7dQ1hAk0vFzvFryiM6TmUAQ==", + "dev": true, + "requires": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "fs-extra": "^10.1.0", + "jsii-reflect": "^1.98.0", + "log4js": "^6.9.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-docgen": { + "version": "10.4.9", + "resolved": "https://registry.npmjs.org/jsii-docgen/-/jsii-docgen-10.4.9.tgz", + "integrity": "sha512-wyMW25pEhPEsIMMwFO6GcRXKZbnDwgn5GKV/AlTLuTUKHbTSnWDzy6e0MU6U9zVgjt4frJl7vZDl/4UlIcptrg==", + "dev": true, + "requires": { + "@jsii/spec": "^1.98.0", + "case": "^1.6.3", + "fs-extra": "^10.1.0", + "glob": "^8.1.0", + "glob-promise": "^6.0.5", + "jsii-reflect": "^1.98.0", + "semver": "^7.6.2", + "yargs": "^16.2.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "glob-promise": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.5.tgz", + "integrity": "sha512-uUzvxo60yo/vMLXZHCNAlfdM5U5A07jCnUO8xTK44Z0Vc58poGDXhDx8ju1DmPdprOORh+4Lpog64hl+AJ5piA==", + "dev": true, + "requires": { + "@types/glob": "^8.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-pacmak": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.98.0.tgz", + "integrity": "sha512-p2H8IbiI3RNIUg+oRcJ9Xu1I7CgJUxCMpUl5IPzWAjz1qzhIKOzlkaAMGJfJZJQtib5kWI2OmZ6xBZScWg16+Q==", + "dev": true, + "requires": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "clone": "^2.1.2", + "codemaker": "^1.98.0", + "commonmark": "^0.30.0", + "escape-string-regexp": "^4.0.0", + "fs-extra": "^10.1.0", + "jsii-reflect": "^1.98.0", + "semver": "^7.5.4", + "spdx-license-list": "^6.8.0", + "xmlbuilder": "^15.1.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "commonmark": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.30.0.tgz", + "integrity": "sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==", + "dev": true, + "requires": { + "entities": "~2.0", + "mdurl": "~1.0.1", + "minimist": ">=1.2.2", + "string.prototype.repeat": "^0.2.0" + } + }, + "entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "string.prototype.repeat": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", + "integrity": "sha512-1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA==", + "dev": true + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + }, + "xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-reflect": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.98.0.tgz", + "integrity": "sha512-HulKk6pQOk0zkqJXRaweV5PezvAghZAX4cuB7i0sBA0/kz1ypqB1KFhBiZ1PLeeMzAfb1/WmCF2UTu9xzQit4w==", + "dev": true, + "requires": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "chalk": "^4", + "fs-extra": "^10.1.0", + "oo-ascii-tree": "^1.98.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "jsii-rosetta": { + "version": "5.4.17", + "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.4.17.tgz", + "integrity": "sha512-BFkL3y4IgOxBKVPk43OwCFgjiYwR05t41ZP9ZjQP9AZeeiCiP89NQ7Y7qrs8+A5z8RyEw6RuAtkHPke2oPtR2w==", + "dev": true, + "requires": { + "@jsii/check-node": "1.98.0", + "@jsii/spec": "^1.98.0", + "@xmldom/xmldom": "^0.8.10", + "chalk": "^4", + "commonmark": "^0.31.0", + "fast-glob": "^3.3.2", + "jsii": "~5.4.0", + "semver": "^7.6.2", + "semver-intersect": "^1.5.0", + "stream-json": "^1.8.0", + "typescript": "~5.4", + "workerpool": "^6.5.1", + "yargs": "^17.7.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "dev": true + }, + "json5": { + "version": "2.2.3", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "just-extend": { + "version": "4.2.1", + "dev": true + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "lambda-log": { + "version": "3.1.0", + "requires": { + "fast-safe-stringify": "^2.1.1" + } + }, + "lazy": { + "version": "1.0.11", + "dev": true + }, + "lcov-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz", + "integrity": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==", + "dev": true + }, + "level-codec": { + "version": "9.0.2", + "dev": true, + "requires": { + "buffer": "^5.6.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "level-concat-iterator": { + "version": "2.0.1", + "dev": true + }, + "level-errors": { + "version": "2.0.1", + "dev": true, + "requires": { + "errno": "~0.1.1" + } + }, + "level-iterator-stream": { + "version": "4.0.2", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + } + }, + "level-option-wrap": { + "version": "1.1.0", + "dev": true, + "requires": { + "defined": "~0.0.0" + } + }, + "level-supports": { + "version": "1.0.1", + "dev": true, + "requires": { + "xtend": "^4.0.2" + } + }, + "leveldown": { + "version": "5.6.0", + "dev": true, + "optional": true, + "requires": { + "abstract-leveldown": "~6.2.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "~4.1.0" + } + }, + "levelup": { + "version": "4.4.0", + "dev": true, + "requires": { + "deferred-leveldown": "~5.3.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "listr2": { + "version": "3.13.3", + "dev": true, + "requires": { + "cli-truncate": "^2.1.0", + "clone": "^2.1.2", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rxjs": "^7.4.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "rxjs": { + "version": "7.4.0", + "dev": true, + "requires": { + "tslib": "~2.1.0" + } + }, + "tslib": { + "version": "2.1.0", + "dev": true + } + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + } + } + }, + "locate-path": { + "version": "6.0.0", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lock": { + "version": "1.1.0", + "dev": true + }, + "lodash": { + "version": "4.17.21" + }, + "lodash.clonedeep": { + "version": "4.5.0" + }, + "lodash.get": { + "version": "4.4.2", + "dev": true + }, + "lodash.ismatch": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "dev": true + }, + "log-update": { + "version": "4.0.0", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "log4js": { + "version": "6.9.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz", + "integrity": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==", + "dev": true, + "requires": { + "date-format": "^4.0.14", + "debug": "^4.3.4", + "flatted": "^3.2.7", + "rfdc": "^1.3.0", + "streamroller": "^3.1.5" + } + }, + "loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "dev": true, + "requires": { + "get-func-name": "^2.0.1" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "dev": true + }, + "lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true + }, + "ltgt": { + "version": "2.2.1", + "dev": true + }, + "make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "requires": { + "semver": "^7.5.3" + } + }, + "make-error": { + "version": "1.3.6", + "dev": true + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "requires": { + "tmpl": "1.0.5" + } + }, + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "memdown": { + "version": "5.1.0", + "dev": true, + "requires": { + "abstract-leveldown": "~6.2.1", + "functional-red-black-tree": "~1.0.1", + "immediate": "~3.2.3", + "inherits": "~2.0.1", + "ltgt": "~2.2.0", + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "immediate": { + "version": "3.2.3", + "dev": true + } + } + }, + "memorystream": { + "version": "0.3.1" + }, + "meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + } + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1" + }, + "micromatch": { + "version": "4.0.4", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "dev": true + }, + "mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "dev": true + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "dev": true + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + } + } + }, + "mnemonist": { + "version": "0.38.3", + "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.3.tgz", + "integrity": "sha512-2K9QYubXx/NAjv4VLq1d1Ly8pWNC5L3BrixtdkyTegXWJIqY+zLNDhhX/A+ZwWt70tB1S8H4BE8FLYEFyNoOBw==", + "requires": { + "obliterator": "^1.6.1" + } + }, + "mock-stdin": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mock-stdin/-/mock-stdin-1.0.0.tgz", + "integrity": "sha512-tukRdb9Beu27t6dN+XztSRHq9J0B/CoAOySGzHfn8UTfmqipA5yNT/sDUEyYdAV3Hpka6Wx6kOMxuObdOex60Q==", + "dev": true + }, + "modify-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", + "dev": true + }, + "ms": { + "version": "2.1.2" + }, + "mute-stream": { + "version": "0.0.8", + "dev": true + }, + "napi-macros": { + "version": "2.0.0", + "dev": true, + "optional": true + }, + "natural-compare": { + "version": "1.4.0", + "dev": true + }, + "natural-orderby": { + "version": "2.0.3" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "dev": true + }, + "nise": { + "version": "5.1.4", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "^10.0.2", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0" + } + } + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "nock": { + "version": "13.3.0", + "dev": true, + "requires": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.21", + "propagate": "^2.0.0" + } + }, + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "requires": { + "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3" + }, + "webidl-conversions": { + "version": "3.0.1" + }, + "whatwg-url": { + "version": "5.0.0", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "node-gyp-build": { + "version": "4.1.1", + "dev": true, + "optional": true + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "normalize-package-data": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz", + "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==", + "dev": true, + "requires": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-treeify": { + "version": "1.1.33" + }, + "object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + } + }, + "object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + } + }, + "object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "obliterator": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-1.6.1.tgz", + "integrity": "sha512-9WXswnqINnnhOG/5SLimUlzuU1hFJUc8zkwyD59Sd+dPOMf05PmnYG/d6Q7HZ+KmgkZJa1PxRso6QdM3sTNHig==" + }, + "oclif": { + "version": "4.10.6", + "resolved": "https://registry.npmjs.org/oclif/-/oclif-4.10.6.tgz", + "integrity": "sha512-3MF84SA56CMJqZuPaGkOOhu5CLSrvBZB+LI/02OlfuubOPNAi92OLxkEnihxLgrBuI5nKe405OcsiPtap9tRyA==", + "dev": true, + "requires": { + "@aws-sdk/client-cloudfront": "^3.569.0", + "@aws-sdk/client-s3": "^3.569.0", + "@inquirer/confirm": "^3.1.6", + "@inquirer/input": "^2.1.1", + "@inquirer/select": "^2.3.2", + "@oclif/core": "^3.26.5", + "@oclif/plugin-help": "^6.0.21", + "@oclif/plugin-not-found": "^3.1.8", + "@oclif/plugin-warn-if-update-available": "^3.0.17", + "async-retry": "^1.3.3", + "chalk": "^4", + "change-case": "^4", + "debug": "^4.3.4", + "ejs": "^3.1.10", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^8.1", + "github-slugger": "^2", + "got": "^13", + "lodash": "^4.17.21", + "normalize-package-data": "^6", + "semver": "^7.6.0", + "sort-package-json": "^2.10.0", + "validate-npm-package-name": "^5.0.0" + }, + "dependencies": { + "@aws-sdk/client-s3": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.576.0.tgz", + "integrity": "sha512-6Xhj8x7ijLqoLYncKMUn433QKWzEezDLR3TipKv/qHThTa8oYXkymMat/MfJ/lx3jsc8wS72i+1kTwO+AFUg6w==", + "dev": true, + "requires": { + "@aws-crypto/sha1-browser": "3.0.0", + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-bucket-endpoint": "3.575.0", + "@aws-sdk/middleware-expect-continue": "3.575.0", + "@aws-sdk/middleware-flexible-checksums": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-location-constraint": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-sdk-s3": "3.575.0", + "@aws-sdk/middleware-signing": "3.575.0", + "@aws-sdk/middleware-ssec": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/signature-v4-multi-region": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@aws-sdk/xml-builder": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/eventstream-serde-browser": "^3.0.0", + "@smithy/eventstream-serde-config-resolver": "^3.0.0", + "@smithy/eventstream-serde-node": "^3.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-blob-browser": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/hash-stream-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/md5-js": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "@smithy/util-waiter": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/client-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.576.0.tgz", + "integrity": "sha512-xbKE4bf3HYvkdrvn5kkpUdcoi3mg7uDLLkSbGaj0tzW3vNSdx9qLrCMuwfV7KrhVKWwx+lnw/2LGuCR2B5y0IA==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sso-oidc": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.576.0.tgz", + "integrity": "sha512-6U8933O9h6iMnQDpH3OtFhS3G3FVttYZUqTpC2T0FnSSX7zgG0GnlxdQiyZh1j1aFrEB8bFw/RSmxPcMJJuSlQ==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/client-sts": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.575.0.tgz", + "integrity": "sha512-8MrT4J2dRiskf0JFMGL5VNBqPvc6igNa218LGBJzHXmLsm1WfGCGnce84R7U2USr8oPOenu0XzSCLvMQyZbGWQ==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "requires": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/core": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.576.0.tgz", + "integrity": "sha512-KDvDlbeipSTIf+ffKtTg1m419TK7s9mZSWC8bvuZ9qx6/sjQFOXIKOVqyuli6DnfxGbvRcwoRuY99OcCH1N/0w==", + "dev": true, + "requires": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.575.0.tgz", + "integrity": "sha512-YTgpq3rvYBXzW6OTDB00cE79evQtss/lz2GlJXgqqVXD0m7i77hGA8zb44VevP/WxtDaiSW7SSjuu8VCBGsg4g==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-http": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.575.0.tgz", + "integrity": "sha512-xQfVmYI+9KqRvhWY8fyElnpcVUBBUgi/Hoji3oU6WLrUjrX98k93He7gKDQSyHf7ykMLUAJYWwsV4AjQ2j6njA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.575.0.tgz", + "integrity": "sha512-BdM6a/5VUuNge3c6yRuxvO+4srLoSfqHfkQGfUDfhTdTJpljlpfnc9h3z2Ni1+aueOHPZMNFWIktHDcX5wUGBg==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "requires": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.576.0.tgz", + "integrity": "sha512-Ad244g3TJnfY1QFlZ+cywD6kgGD2yj+qg47Ryt50Y42bwmNuuqSpF9n0C71opRR68Rcl7ksOxixCJomWqpcHbA==", + "dev": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.576.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sts": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.576.0.tgz", + "integrity": "sha512-GHqqfRcUW/nGE4lpRafNKRxi4K7+SaQjYLjQnTEioUhr+w1IT/fFb3rGZYHHnN9ZCzbnrBULRC+1XOPIQWyLsw==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sso-oidc": "3.576.0", + "@aws-sdk/core": "3.576.0", + "@aws-sdk/credential-provider-node": "3.576.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.576.0.tgz", + "integrity": "sha512-AwH/+29SbjhxGJVYhFn6+7r0MZ7TjJClySTJzuOoyjJGPWAifTdEuFkyOw8Bs9fEvbJ0ExgFxSaa445fO56kmg==", + "dev": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.576.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.575.0.tgz", + "integrity": "sha512-2/5NJV7MZysKglqJSQ/O8OELNcwLcH3xknabL9NagtzB7RNB2p1AUXR0UlTey9sSDLL4oCmNa/+unYuglW/Ahg==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.576.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.576.0.tgz", + "integrity": "sha512-1F17issiqf+mSG7KJ+D0SfZRYBZPAmRcA5+VHDUuMLozhh8tyYMe0mwzOt9IKc7ocrJA+2Wp7l7sg3h6aanedQ==", + "dev": true, + "requires": { + "@aws-sdk/client-sso": "3.576.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso-oidc": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.575.0.tgz", + "integrity": "sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.575.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/credential-provider-node": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/core": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.575.0.tgz", + "integrity": "sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==", + "dev": true, + "peer": true, + "requires": { + "@smithy/core": "^2.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.575.0.tgz", + "integrity": "sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.575.0", + "@aws-sdk/credential-provider-http": "3.575.0", + "@aws-sdk/credential-provider-ini": "3.575.0", + "@aws-sdk/credential-provider-process": "3.575.0", + "@aws-sdk/credential-provider-sso": "3.575.0", + "@aws-sdk/credential-provider-web-identity": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.575.0.tgz", + "integrity": "sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==", + "dev": true, + "peer": true, + "requires": { + "@aws-sdk/client-sso": "3.575.0", + "@aws-sdk/token-providers": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + }, + "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.575.0.tgz", + "integrity": "sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==", + "dev": true, + "peer": true, + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.575.0", + "@aws-sdk/middleware-host-header": "3.575.0", + "@aws-sdk/middleware-logger": "3.575.0", + "@aws-sdk/middleware-recursion-detection": "3.575.0", + "@aws-sdk/middleware-user-agent": "3.575.0", + "@aws-sdk/region-config-resolver": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@aws-sdk/util-user-agent-browser": "3.575.0", + "@aws-sdk/util-user-agent-node": "3.575.0", + "@smithy/config-resolver": "^3.0.0", + "@smithy/core": "^2.0.0", + "@smithy/fetch-http-handler": "^3.0.0", + "@smithy/hash-node": "^3.0.0", + "@smithy/invalid-dependency": "^3.0.0", + "@smithy/middleware-content-length": "^3.0.0", + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.0", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.0", + "@smithy/util-defaults-mode-node": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/token-providers": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.575.0.tgz", + "integrity": "sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + } + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.575.0.tgz", + "integrity": "sha512-QcvVH7wpvpFRXGAGgCBfQeiF/ptD0NJ+Hrc8dDYfPGhFeZ0EoVQBYNphLi25xe7JZ+XbaqCKrURHZtr4fAEOJw==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-bucket-endpoint": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.575.0.tgz", + "integrity": "sha512-ytsp7xcmbpkVk4TLoi91YyXQh/vwSIGdJ2Awo/pi6ac5Fqe6OntPijh5GHSVj5ZrxW4haPWb6HdBmKMo4liGEw==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-arn-parser": "3.568.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-expect-continue": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.575.0.tgz", + "integrity": "sha512-8Nq4UtEi63MJPoYBACW5YoMKQdbrkLNGIdTyrolNRNwVS+6nQqDMvBplakCzQ1nL1rHOEEsKKc8e2BlG9SkR5A==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-flexible-checksums": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.575.0.tgz", + "integrity": "sha512-UbyqN39v6s+olyuVKwX778w6J2ZuYpxb1j+KdhFtZwpMSLd/UIQ0+A71U2vB6TrC52OEW0jIXEEBv6PcMBz9nw==", + "dev": true, + "requires": { + "@aws-crypto/crc32": "3.0.0", + "@aws-crypto/crc32c": "3.0.0", + "@aws-sdk/types": "3.575.0", + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-host-header": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.575.0.tgz", + "integrity": "sha512-V2WoLBiXNCc4rIWZt6FUcP4TN0Vk02A9PPCBWkTfyOooiqfq+WZmZjRRBpwl1+5UsvARslrKWF0VzheMRXPJLQ==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-location-constraint": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.575.0.tgz", + "integrity": "sha512-MtQsLsEjSSSfm0OlQqg9PEzS1nxJDdApGoeCYLTbCzIp6hChdLZCCsDXwGg9S++24rjQsUglMhXh4WGXQ9FDnw==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.575.0.tgz", + "integrity": "sha512-7DEKx9Z11Maaye7FfhYtC8rjbM/PcFcMO2N4QEAfypcgWCj+w4gseE2OGdfAH9OFDoFc6YvLp53v16vbPjzQSg==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-recursion-detection": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.575.0.tgz", + "integrity": "sha512-ri89ldRFos6KZDGaknWPS2XPO9qr+gZ7+mPaoU8YkSM1W4uKqtnUSONyc+O3CFGJrqReuGHhRq0l2Sld0bjwOw==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-sdk-s3": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.575.0.tgz", + "integrity": "sha512-8cBG8/tap4F6+UigTpKu8D2bvsLgqRTmn1K86qo3LqRX0Wc5X8TVjdKA2PmG0onOOr7rqTLcP9Q02LCh3usU6Q==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-arn-parser": "3.568.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/smithy-client": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-signing": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.575.0.tgz", + "integrity": "sha512-frpGG7i3YngWwrYIeDq8/nbat3Gfl803qasaS112rmlPU0ezmYS1SPxpXjpIKxUUYofbzaFtRBAOHU1u7GnWew==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-ssec": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.575.0.tgz", + "integrity": "sha512-rEFt2w3DdlmPsHRvVXOW6rNDIPE7UaEZ5a4LAkn78XilQYuQdhm5wtw5Ao0pJpDSVYNCZDVZaAvdHKQ1dnfwCA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/middleware-user-agent": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.575.0.tgz", + "integrity": "sha512-fWlr4RfrUNS2R3PgP+WsoMYORAgv/47Lp0J0fb3dXO1YvdczNWddRbFSUX2MQxM/y9XFfQPLpLgzluhoL3Cjeg==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@aws-sdk/util-endpoints": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/region-config-resolver": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.575.0.tgz", + "integrity": "sha512-sBJKwTWKCWu9y8FzXIijYGwkKr3tDkPXM7BylToe6W+tGkp4OirV4iXrWA9zReNwTTepoxHufofqjGK9BtcI8g==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/signature-v4-multi-region": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.575.0.tgz", + "integrity": "sha512-QMwuLuNwnEQ51RCZX8H/lXnOJgBcJJOCgClB9usW/XujNJVq8GnpZ5E7TsQLN88G6fifmcjQWonLKummuh/zVA==", + "dev": true, + "requires": { + "@aws-sdk/middleware-sdk-s3": "3.575.0", + "@aws-sdk/types": "3.575.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/signature-v4": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/types": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.575.0.tgz", + "integrity": "sha512-XrnolQGs0wXxdgNudirR14OgNOarH7WUif38+2Pd4onZH+L7XoILem0EgA1tRpgFpw2pFHlZCNaAHDNSBEal7g==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-arn-parser": { + "version": "3.568.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.568.0.tgz", + "integrity": "sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-endpoints": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.575.0.tgz", + "integrity": "sha512-wC5x+V6w3kRlR6X6XVINsAPDYG+Tzs3Wthlw+YLtjuPODUNZIQAqsABHahxnekFyAvse+1929Hwo+CaL+BHZGA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "@smithy/util-endpoints": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-browser": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.575.0.tgz", + "integrity": "sha512-iADonXyaXgwvC4T0qRuDWCdKInz82GX2cyezq/oqVlL8bPY7HD8jwZZruuJdq5tkaJi1EhbO4+f1ksZqOiZKvQ==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.575.0.tgz", + "integrity": "sha512-kwzvBfA0LoILDOFS6BV8uOkksBHrYulP6kNXegB5eZnDSNia5DbBsXqxQ/HknNF5a429SWQw2aaQJEgQvZB1VA==", + "dev": true, + "requires": { + "@aws-sdk/types": "3.575.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@aws-sdk/xml-builder": { + "version": "3.575.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz", + "integrity": "sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/chunked-blob-reader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-3.0.0.tgz", + "integrity": "sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/chunked-blob-reader-native": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-3.0.0.tgz", + "integrity": "sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==", + "dev": true, + "requires": { + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/config-resolver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.0.tgz", + "integrity": "sha512-2GzOfADwYLQugYkKQhIyZyQlM05K+tMKvRnc6eFfZcpJGRfKoMUMYdPlBKmqHwQFXQKBrGV6cxL9oymWgDzvFw==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/core": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.0.1.tgz", + "integrity": "sha512-rcMkjvwxH/bER+oZUPR0yTA0ELD6m3A+d92+CFkdF6HJFCBB1bXo7P5pm21L66XwTN01B6bUhSCQ7cymWRD8zg==", + "dev": true, + "requires": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-retry": "^3.0.1", + "@smithy/middleware-serde": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/credential-provider-imds": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.0.0.tgz", + "integrity": "sha512-lfmBiFQcA3FsDAPxNfY0L7CawcWtbyWsBOHo34nF095728JLkBX4Y9q/VPPE2r7fqMVK+drmDigqE2/SSQeVRA==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-codec": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.0.0.tgz", + "integrity": "sha512-PUtyEA0Oik50SaEFCZ0WPVtF9tz/teze2fDptW6WRXl+RrEenH8UbEjudOz8iakiMl3lE3lCVqYf2Y+znL8QFQ==", + "dev": true, + "requires": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.0.tgz", + "integrity": "sha512-NB7AFiPN4NxP/YCAnrvYR18z2/ZsiHiF7VtG30gshO9GbFrIb1rC8ep4NGpJSWrz6P64uhPXeo4M0UsCLnZKqw==", + "dev": true, + "requires": { + "@smithy/eventstream-serde-universal": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-config-resolver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.0.tgz", + "integrity": "sha512-RUQG3vQ3LX7peqqHAbmayhgrF5aTilPnazinaSGF1P0+tgM3vvIRWPHmlLIz2qFqB9LqFIxditxc8O2Z6psrRw==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.0.tgz", + "integrity": "sha512-baRPdMBDMBExZXIUAoPGm/hntixjt/VFpU6+VmCyiYJYzRHRxoaI1MN+5XE+hIS8AJ2GCHLMFEIOLzq9xx1EgQ==", + "dev": true, + "requires": { + "@smithy/eventstream-serde-universal": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/eventstream-serde-universal": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.0.tgz", + "integrity": "sha512-HNFfShmotWGeAoW4ujP8meV9BZavcpmerDbPIjkJbxKbN8RsUcpRQ/2OyIxWNxXNH2GWCAxuSB7ynmIGJlQ3Dw==", + "dev": true, + "requires": { + "@smithy/eventstream-codec": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/fetch-http-handler": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz", + "integrity": "sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg==", + "dev": true, + "requires": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-blob-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.0.0.tgz", + "integrity": "sha512-/Wbpdg+bwJvW7lxR/zpWAc1/x/YkcqguuF2bAzkJrvXriZu1vm8r+PUdE4syiVwQg7PPR2dXpi3CLBb9qRDaVQ==", + "dev": true, + "requires": { + "@smithy/chunked-blob-reader": "^3.0.0", + "@smithy/chunked-blob-reader-native": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.0.tgz", + "integrity": "sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/hash-stream-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.0.0.tgz", + "integrity": "sha512-J0i7de+EgXDEGITD4fxzmMX8CyCNETTIRXlxjMiNUvvu76Xn3GJ31wQR85ynlPk2wI1lqoknAFJaD1fiNDlbIA==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/invalid-dependency": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz", + "integrity": "sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/md5-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.0.tgz", + "integrity": "sha512-Tm0vrrVzjlD+6RCQTx7D3Ls58S3FUH1ZCtU1MIh/qQmaOo1H9lMN2as6CikcEwgattnA9SURSdoJJ27xMcEfMA==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-content-length": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz", + "integrity": "sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg==", + "dev": true, + "requires": { + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-endpoint": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.0.tgz", + "integrity": "sha512-aXOAWztw/5qAfp0NcA2OWpv6ZI/E+Dh9mByif7i91D/0iyYNUcKvskmXiowKESFkuZ7PIMd3VOR4fTibZDs2OQ==", + "dev": true, + "requires": { + "@smithy/middleware-serde": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/url-parser": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.1.tgz", + "integrity": "sha512-hBhSEuL841FhJBK/19WpaGk5YWSzFk/P2UaVjANGKRv3eYNO8Y1lANWgqnuPWjOyCEWMPr58vELFDWpxvRKANw==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/service-error-classification": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-retry": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + } + }, + "@smithy/middleware-serde": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz", + "integrity": "sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/middleware-stack": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz", + "integrity": "sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/node-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.0.0.tgz", + "integrity": "sha512-buqfaSdDh0zo62EPLf8rGDvcpKwGpO5ho4bXS2cdFhlOta7tBkWJt+O5uiaAeICfIOfPclNOndshDNSanX2X9g==", + "dev": true, + "requires": { + "@smithy/property-provider": "^3.0.0", + "@smithy/shared-ini-file-loader": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/node-http-handler": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz", + "integrity": "sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ==", + "dev": true, + "requires": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/querystring-builder": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/property-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.0.0.tgz", + "integrity": "sha512-LmbPgHBswdXCrkWWuUwBm9w72S2iLWyC/5jet9/Y9cGHtzqxi+GVjfCfahkvNV4KXEwgnH8EMpcrD9RUYe0eLQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/protocol-http": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.0.0.tgz", + "integrity": "sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/querystring-builder": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz", + "integrity": "sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/querystring-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz", + "integrity": "sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/service-error-classification": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz", + "integrity": "sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0" + } + }, + "@smithy/shared-ini-file-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.0.0.tgz", + "integrity": "sha512-REVw6XauXk8xE4zo5aGL7Rz4ywA8qNMUn8RtWeTRQsgAlmlvbJ7CEPBcaXU2NDC3AYBgYAXrGyWD8XrN8UGDog==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/signature-v4": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-3.0.0.tgz", + "integrity": "sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA==", + "dev": true, + "requires": { + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.0", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/smithy-client": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.0.1.tgz", + "integrity": "sha512-KAiFY4Y4jdHxR+4zerH/VBhaFKM8pbaVmJZ/CWJRwtM/CmwzTfXfvYwf6GoUwiHepdv+lwiOXCuOl6UBDUEINw==", + "dev": true, + "requires": { + "@smithy/middleware-endpoint": "^3.0.0", + "@smithy/middleware-stack": "^3.0.0", + "@smithy/protocol-http": "^4.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-stream": "^3.0.1", + "tslib": "^2.6.2" + } + }, + "@smithy/types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.0.0.tgz", + "integrity": "sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/url-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.0.tgz", + "integrity": "sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw==", + "dev": true, + "requires": { + "@smithy/querystring-parser": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "dev": true, + "requires": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-body-length-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-body-length-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "dev": true, + "requires": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-defaults-mode-browser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.1.tgz", + "integrity": "sha512-nW5kEzdJn1Bn5TF+gOPHh2rcPli8JU9vSSXLbfg7uPnfR1TMRQqs9zlYRhIb87NeSxIbpdXOI94tvXSy+fvDYg==", + "dev": true, + "requires": { + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-defaults-mode-node": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.1.tgz", + "integrity": "sha512-TFk+Qb+elLc/MOhtSp+50fstyfZ6avQbgH2d96xUBpeScu+Al9elxv+UFAjaTHe0HQe5n+wem8ZLpXvU8lwV6Q==", + "dev": true, + "requires": { + "@smithy/config-resolver": "^3.0.0", + "@smithy/credential-provider-imds": "^3.0.0", + "@smithy/node-config-provider": "^3.0.0", + "@smithy/property-provider": "^3.0.0", + "@smithy/smithy-client": "^3.0.1", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-endpoints": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.0.tgz", + "integrity": "sha512-+exaXzEY3DNt2qtA2OtRNSDlVrE4p32j1JSsQkzA5AdP0YtJNjkYbYhJxkFmPYcjI1abuwopOZCwUmv682QkiQ==", + "dev": true, + "requires": { + "@smithy/node-config-provider": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-middleware": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.0.tgz", + "integrity": "sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ==", + "dev": true, + "requires": { + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-retry": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.0.tgz", + "integrity": "sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g==", + "dev": true, + "requires": { + "@smithy/service-error-classification": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-stream": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.1.tgz", + "integrity": "sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA==", + "dev": true, + "requires": { + "@smithy/fetch-http-handler": "^3.0.1", + "@smithy/node-http-handler": "^3.0.0", + "@smithy/types": "^3.0.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "dev": true, + "requires": { + "tslib": "^2.6.2" + } + }, + "@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "dev": true, + "requires": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "@smithy/util-waiter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.0.0.tgz", + "integrity": "sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw==", + "dev": true, + "requires": { + "@smithy/abort-controller": "^3.0.0", + "@smithy/types": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true + } + } + }, + "once": { + "version": "1.4.0", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "oo-ascii-tree": { + "version": "1.98.0", + "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.98.0.tgz", + "integrity": "sha512-+GE7ywhtS6MctbfcO+vZzqIxcFzucZCwmawcwCVo89DxQDakV1JFfFViTXG4A90UzTAsU4tQteGmwDtwOlOXLw==", + "dev": true + }, + "optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "dev": true + }, + "p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-map": { + "version": "4.0.0", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "requires": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "4.0.0", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "dev": true + }, + "path-key": { + "version": "3.1.1" + }, + "path-parse": { + "version": "1.0.7", + "dev": true + }, + "path-to-regexp": { + "version": "1.8.0", + "dev": true, + "requires": { + "isarray": "0.0.1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "dev": true + } + } + }, + "path-type": { + "version": "4.0.0" + }, + "pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "dev": true + }, + "picomatch": { + "version": "2.3.0" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pirates": { + "version": "4.0.5", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "dev": true + }, + "prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + }, + "react-is": { + "version": "18.2.0", + "dev": true + } + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "dev": true + }, + "projen": { + "version": "0.81.6", + "resolved": "https://registry.npmjs.org/projen/-/projen-0.81.6.tgz", + "integrity": "sha512-uvyZqCKHbG7++KBcFUgvVqWkMVbpZHs7oaNWSKbxPw//vHIOytjYklIq/tnPXq8V6eOx6+hWXAvn9QMfJszQag==", + "dev": true, + "requires": { + "@iarna/toml": "^2.2.5", + "case": "^1.6.3", + "chalk": "^4.1.2", + "comment-json": "4.2.2", + "constructs": "^10.0.0", + "conventional-changelog-config-spec": "^2.1.0", + "fast-json-patch": "^3.1.1", + "glob": "^8", + "ini": "^2.0.0", + "semver": "^7.6.0", + "shx": "^0.3.4", + "xmlbuilder2": "^3.1.1", + "yaml": "^2.2.2", + "yargs": "^17.7.2" + }, + "dependencies": { + "@iarna/toml": { + "version": "2.2.5", + "bundled": true, + "dev": true + }, + "@oozcitak/dom": { + "version": "1.15.10", + "bundled": true, + "dev": true, + "requires": { + "@oozcitak/infra": "1.0.8", + "@oozcitak/url": "1.0.4", + "@oozcitak/util": "8.3.8" + } + }, + "@oozcitak/infra": { + "version": "1.0.8", + "bundled": true, + "dev": true, + "requires": { + "@oozcitak/util": "8.3.8" + } + }, + "@oozcitak/url": { + "version": "1.0.4", + "bundled": true, + "dev": true, + "requires": { + "@oozcitak/infra": "1.0.8", + "@oozcitak/util": "8.3.8" + } + }, + "@oozcitak/util": { + "version": "8.3.8", + "bundled": true, + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "bundled": true, + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "1.0.10", + "bundled": true, + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-timsort": { + "version": "1.0.3", + "bundled": true, + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "brace-expansion": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "case": { + "version": "1.6.3", + "bundled": true, + "dev": true + }, + "chalk": { + "version": "4.1.2", + "bundled": true, + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cliui": { + "version": "8.0.1", + "bundled": true, + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "bundled": true, + "dev": true + }, + "comment-json": { + "version": "4.2.2", + "bundled": true, + "dev": true, + "requires": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + } + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "conventional-changelog-config-spec": { + "version": "2.1.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.3", + "bundled": true, + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "bundled": true, + "dev": true + }, + "escalade": { + "version": "3.1.2", + "bundled": true, + "dev": true + }, + "esprima": { + "version": "4.0.1", + "bundled": true, + "dev": true + }, + "fast-json-patch": { + "version": "3.1.1", + "bundled": true, + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "function-bind": { + "version": "1.1.2", + "bundled": true, + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "bundled": true, + "dev": true + }, + "glob": { + "version": "8.1.0", + "bundled": true, + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "dependencies": { + "minimatch": { + "version": "5.1.6", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "has-flag": { + "version": "4.0.0", + "bundled": true, + "dev": true + }, + "has-own-prop": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "hasown": { + "version": "2.0.2", + "bundled": true, + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "bundled": true, + "dev": true + }, + "ini": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "interpret": { + "version": "1.4.0", + "bundled": true, + "dev": true + }, + "is-core-module": { + "version": "2.13.1", + "bundled": true, + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "bundled": true, + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "bundled": true, + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "bundled": true, + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + } + } + }, + "minimist": { + "version": "1.2.8", + "bundled": true, + "dev": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "bundled": true, + "dev": true + }, + "rechoir": { + "version": "0.6.2", + "bundled": true, + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "repeat-string": { + "version": "1.6.1", + "bundled": true, + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "resolve": { + "version": "1.22.8", + "bundled": true, + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "7.6.0", + "bundled": true, + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "shelljs": { + "version": "0.8.5", + "bundled": true, + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "bundled": true, + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "shx": { + "version": "0.3.4", + "bundled": true, + "dev": true, + "requires": { + "minimist": "^1.2.3", + "shelljs": "^0.8.5" + } + }, + "sprintf-js": { + "version": "1.0.3", + "bundled": true, + "dev": true + }, + "string-width": { + "version": "4.2.3", + "bundled": true, + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "bundled": true, + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "bundled": true, + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "xmlbuilder2": { + "version": "3.1.1", + "bundled": true, + "dev": true, + "requires": { + "@oozcitak/dom": "1.15.10", + "@oozcitak/infra": "1.0.8", + "@oozcitak/util": "8.3.8", + "js-yaml": "3.14.1" + } + }, + "y18n": { + "version": "5.0.8", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "4.0.0", + "bundled": true, + "dev": true + }, + "yaml": { + "version": "2.4.2", + "bundled": true, + "dev": true + }, + "yargs": { + "version": "17.7.2", + "bundled": true, + "dev": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "yargs-parser": { + "version": "21.1.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "propagate": { + "version": "2.0.1", + "dev": true + }, + "prr": { + "version": "1.0.1", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "dev": true + }, + "pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "dev": true, + "peer": true + }, + "queue-microtask": { + "version": "1.2.3" + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true + }, + "reachdown": { + "version": "1.1.0", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + } + } + }, + "readable-stream": { + "version": "3.6.0", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readlineiter": { + "version": "1.0.1" + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "redeyed": { + "version": "2.1.1", + "requires": { + "esprima": "~4.0.0" + } + }, + "reflect-metadata": { + "version": "0.1.13" + }, + "regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "requires": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "resolve-from": { + "version": "4.0.0", + "dev": true + }, + "resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true + }, + "responselike": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", + "dev": true, + "requires": { + "lowercase-keys": "^3.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true + }, + "reusify": { + "version": "1.0.4" + }, + "rewire": { + "version": "5.0.0", + "dev": true, + "requires": { + "eslint": "^6.8.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "dev": true + }, + "cross-spawn": { + "version": "6.0.5", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "dev": true + }, + "eslint": { + "version": "6.8.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + } + }, + "eslint-utils": { + "version": "1.4.3", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "dev": true + }, + "espree": { + "version": "6.2.1", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "file-entry-cache": { + "version": "5.0.1", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "flat-cache": { + "version": "2.0.1", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + } + }, + "flatted": { + "version": "2.0.2", + "dev": true + }, + "globals": { + "version": "12.4.0", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "ignore": { + "version": "4.0.6", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "dev": true + }, + "levn": { + "version": "0.3.0", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "mkdirp": { + "version": "0.5.5", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "optionator": { + "version": "0.8.3", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "path-key": { + "version": "2.0.1", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "dev": true + }, + "regexpp": { + "version": "2.0.1", + "dev": true + }, + "rimraf": { + "version": "2.6.3", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "dev": true + }, + "slice-ansi": { + "version": "2.1.0", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + } + }, + "string-width": { + "version": "3.1.0", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "table": { + "version": "5.4.6", + "dev": true, + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + } + }, + "type-check": { + "version": "0.3.2", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "which": { + "version": "1.3.1", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "rfdc": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", + "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-async": { + "version": "2.4.1", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "6.6.7", + "dev": true, + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "dev": true + } + } + }, + "safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + } + }, + "safer-buffer": { + "version": "2.1.2", + "devOptional": true + }, + "sax": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz", + "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==", + "dev": true, + "peer": true + }, + "semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true + }, + "semver-intersect": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.5.0.tgz", + "integrity": "sha512-BDjWX7yCC0haX4W/zrnV2JaMpVirwaEkGOBmgRQtH++F1N3xl9v7k9H44xfTqwl+yLNNSbMKosoVSTIiJVQ2Pw==", + "dev": true, + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + } + }, + "set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + } + }, + "setimmediate": { + "version": "1.0.5", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0" + }, + "shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "shimmer": { + "version": "1.2.1" + }, + "shx": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", + "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", + "dev": true, + "requires": { + "minimist": "^1.2.3", + "shelljs": "^0.8.5" + } + }, + "side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + } + }, + "signal-exit": { + "version": "3.0.7", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "sinon": { + "version": "15.0.1", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "10.0.2", + "@sinonjs/samsam": "^7.0.1", + "diff": "^5.0.0", + "nise": "^5.1.2", + "supports-color": "^7.2.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "sitemap": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-8.0.0.tgz", + "integrity": "sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==", + "requires": { + "@types/node": "^17.0.5", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.2.4" + }, + "dependencies": { + "@types/node": { + "version": "17.0.23" + }, + "arg": { + "version": "5.0.1" + }, + "sax": { + "version": "1.2.4" + } + } + }, + "slash": { + "version": "3.0.0" + }, + "slice-ansi": { + "version": "3.0.0", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + } + } + }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "sort-json": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/sort-json/-/sort-json-2.0.1.tgz", + "integrity": "sha512-s8cs2bcsQCzo/P2T/uoU6Js4dS/jnX8+4xunziNoq9qmSpZNCrRIAIvp4avsz0ST18HycV4z/7myJ7jsHWB2XQ==", + "dev": true, + "requires": { + "detect-indent": "^5.0.0", + "detect-newline": "^2.1.0", + "minimist": "^1.2.0" + }, + "dependencies": { + "detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==", + "dev": true + }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", + "dev": true + } + } + }, + "sort-object-keys": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", + "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", + "dev": true + }, + "sort-package-json": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.10.0.tgz", + "integrity": "sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==", + "dev": true, + "requires": { + "detect-indent": "^7.0.1", + "detect-newline": "^4.0.0", + "get-stdin": "^9.0.0", + "git-hooks-list": "^3.0.0", + "globby": "^13.1.2", + "is-plain-obj": "^4.1.0", + "semver": "^7.6.0", + "sort-object-keys": "^1.1.3" + }, + "dependencies": { + "detect-newline": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz", + "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==", + "dev": true + }, + "globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true + } + } + }, + "source-map": { + "version": "0.6.1" + }, + "source-map-support": { + "version": "0.5.21", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "dev": true + }, + "spdx-license-list": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.9.0.tgz", + "integrity": "sha512-L2jl5vc2j6jxWcNCvcVj/BW9A8yGIG02Dw+IUw0ZxDM70f7Ylf5Hq39appV1BI9yxyWQRpq2TQ1qaXvf+yjkqA==", + "dev": true + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "requires": { + "through": "2" + } + }, + "split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "requires": { + "readable-stream": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3" + }, + "stack-chain": { + "version": "1.3.7" + }, + "stack-utils": { + "version": "2.0.6", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "dev": true + } + } + }, + "standard-version": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/standard-version/-/standard-version-9.5.0.tgz", + "integrity": "sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "conventional-changelog": "3.1.25", + "conventional-changelog-config-spec": "2.1.0", + "conventional-changelog-conventionalcommits": "4.6.3", + "conventional-recommended-bump": "6.1.0", + "detect-indent": "^6.0.0", + "detect-newline": "^3.1.0", + "dotgitignore": "^2.1.0", + "figures": "^3.1.0", + "find-up": "^5.0.0", + "git-semver-tags": "^4.0.0", + "semver": "^7.1.1", + "stringify-package": "^1.0.1", + "yargs": "^16.0.0" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "stats-lite": { + "version": "2.2.0", + "dev": true, + "requires": { + "isnumber": "~1.0.0" + } + }, + "stdout-stderr": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/stdout-stderr/-/stdout-stderr-0.1.13.tgz", + "integrity": "sha512-Xnt9/HHHYfjZ7NeQLvuQDyL1LnbsbddgMFKCuaQKwGCdJm8LnstZIXop+uOY36UR1UXXoHXfMbC1KlVdVd2JLA==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "strip-ansi": "^6.0.0" + } + }, + "stream-browserify": { + "version": "3.0.0", + "requires": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "stream-chain": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/stream-chain/-/stream-chain-2.2.5.tgz", + "integrity": "sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==", + "dev": true + }, + "stream-json": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/stream-json/-/stream-json-1.8.0.tgz", + "integrity": "sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==", + "dev": true, + "requires": { + "stream-chain": "^2.2.5" + } + }, + "streamroller": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", + "integrity": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==", + "dev": true, + "requires": { + "date-format": "^4.0.14", + "debug": "^4.3.4", + "fs-extra": "^8.1.0" + } + }, + "string_decoder": { + "version": "1.3.0", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "stringify-package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz", + "integrity": "sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "dev": true + }, + "strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + }, + "subleveldown": { + "version": "5.0.1", + "dev": true, + "requires": { + "abstract-leveldown": "^6.3.0", + "encoding-down": "^6.2.0", + "inherits": "^2.0.3", + "level-option-wrap": "^1.1.0", + "levelup": "^4.4.0", + "reachdown": "^1.1.0" + }, + "dependencies": { + "abstract-leveldown": { + "version": "6.3.0", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "immediate": "^3.2.3", + "level-concat-iterator": "~2.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + } + }, + "buffer": { + "version": "5.7.1", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "supports-color": { + "version": "5.5.0", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.2.0", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true + }, + "synckit": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "dev": true, + "requires": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + } + }, + "test-exclude": { + "version": "6.0.0", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true + }, + "text-table": { + "version": "0.2.0", + "dev": true + }, + "through": { + "version": "2.3.8", + "dev": true + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + }, + "tmp": { + "version": "0.0.33", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true + }, + "ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "requires": {} + }, + "ts-convict": { + "version": "1.1.0", + "requires": {} + }, + "ts-jest": { + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", + "dev": true, + "requires": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "dependencies": { + "yargs-parser": { + "version": "21.1.1", + "dev": true + } + } + }, + "ts-node": { + "version": "10.9.1", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "dependencies": { + "acorn": { + "version": "8.8.2", + "dev": true + }, + "diff": { + "version": "4.0.2", + "dev": true + } + } + }, + "tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + } + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "type-check": { + "version": "0.4.0", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "dev": true + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "typescript": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "dev": true + }, + "uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.15.tgz", + "integrity": "sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==", + "dev": true, + "requires": { + "escalade": "^3.1.2", + "picocolors": "^1.0.0" + } + }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "uri-js": { + "version": "4.4.1", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "url": { + "version": "0.10.3", + "dev": true, + "peer": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "dev": true, + "peer": true + } + } + }, + "util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, + "peer": true, + "requires": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "util-deprecate": { + "version": "1.0.2" + }, + "uuid": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", + "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==", + "dev": true, + "peer": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "dev": true + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true + }, + "v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", + "dev": true + }, + "validator": { + "version": "13.7.0" + }, + "verror": { + "version": "1.10.1", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "requires": { + "makeerror": "1.0.12" + } + }, + "which": { + "version": "2.0.2", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + } + }, + "widest-line": { + "version": "3.1.0", + "requires": { + "string-width": "^4.0.0" + } + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + }, + "workerpool": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + } + } + }, + "wrappy": { + "version": "1.0.2", + "dev": true + }, + "write": { + "version": "1.0.3", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "write-file-atomic": { + "version": "4.0.2", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + }, + "wtfnode": { + "version": "0.9.1" + }, + "xml2js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz", + "integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==", + "dev": true, + "peer": true, + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true, + "peer": true + }, + "xtend": { + "version": "4.0.2", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true + } + } + }, + "yargs-parser": { + "version": "20.2.9" + }, + "yn": { + "version": "3.1.1", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..678ec03 --- /dev/null +++ b/package.json @@ -0,0 +1,60 @@ +{ + "name": "@shutterstock/sitemaps", + "version": "0.0.0", + "description": "Utilities for generating and managing sitemaps - including a CDK construct for writing sitemaps from streams and a CLI for managing sitemaps", + "license": "MIT", + "private": true, + "scripts": { + "build": "tsc --build tsconfig.json", + "build:all": "npm run build && npm run build:cdk && npm run build:cli", + "build:cdk": "npm run -w @shutterstock/sitemaps-cdk compile", + "build:cli": "npm run -w @shutterstock/sitemaps-cli build", + "esbuild:all": "npm run esbuild:index-writer && npm run esbuild:sitemap-freshener && npm run esbuild:sitemap-writer", + "esbuild:index-writer": "esbuild packages/kinesis-index-writer/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=packages/cdk/dist/kinesis-index-writer/index.js", + "esbuild:sitemap-freshener": "esbuild packages/kinesis-sitemap-freshener/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=packages/cdk/dist/kinesis-sitemap-freshener/index.js", + "esbuild:sitemap-writer": "esbuild packages/kinesis-sitemap-writer/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=packages/cdk/dist/kinesis-sitemap-writer/index.js", + "clean": "npm run clean:dist && npm run clean:tsbuildinfo", + "clean:deep": "npm run clean:dist && npm run clean:tsbuildinfo && npm run clean:modules", + "clean:dist": "npm exec --workspaces -- npx rimraf dist && npx rimraf dist", + "clean:modules": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules", + "clean:tsbuildinfo": "npm exec --workspaces -- npx rimraf tsconfig.tsbuildinfo", + "cloc": "cloc --exclude-dir=node_modules,dist,distb,cdk.out --exclude-ext=json,xml .", + "test": "LISTR_RENDERER=simple AWS_REGION=test AWS_EMF_ENVIRONMENT=Local jest --runInBand --forceExit", + "test:perf": "node packages/kinesis-sitemap-writer/test/perf.js 3 2 sitemapWrapper", + "lint": "eslint ./ --ext .ts --ext .tsx", + "lint-and-fix": "eslint ./ --ext .ts --ext .tsx --fix" + }, + "files": [], + "repository": { + "type": "git", + "url": "https://github.shuttercorp.net/sreng/streaming-sitemaps.git" + }, + "workspaces": [ + "packages/*" + ], + "devDependencies": { + "@aws-sdk/types": "3.567.0", + "@types/jest": "29.5.12", + "@types/node-fetch": "^2.6.11", + "@types/sinon": "^10.0.4", + "@typescript-eslint/eslint-plugin": "^7.8.0", + "@typescript-eslint/parser": "^7.8.0", + "aws-cdk": "2.117.0", + "aws-sdk-client-mock": "2.1.0", + "esbuild": "0.21.0", + "eslint": "^8.56.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-import": "2.29.1", + "eslint-plugin-prettier": "5.1.3", + "jest": "29.7.0", + "jest-dynalite": "3.6.1", + "lcov-parse": "1.0.0", + "nock": "13.3.0", + "prettier": "^3.2.5", + "rxjs": "^6.6.7", + "sinon": "15.0.1", + "ts-jest": "29.1.2", + "ts-node": "10.9.1", + "typescript": "^5" + } +} diff --git a/packages/cdk/.gitignore b/packages/cdk/.gitignore new file mode 100644 index 0000000..f60797b --- /dev/null +++ b/packages/cdk/.gitignore @@ -0,0 +1,8 @@ +*.js +!jest.config.js +*.d.ts +node_modules + +# CDK asset staging directory +.cdk.staging +cdk.out diff --git a/packages/cdk/.npmignore b/packages/cdk/.npmignore new file mode 100644 index 0000000..c1d6d45 --- /dev/null +++ b/packages/cdk/.npmignore @@ -0,0 +1,6 @@ +*.ts +!*.d.ts + +# CDK asset staging directory +.cdk.staging +cdk.out diff --git a/packages/cdk/README.md b/packages/cdk/README.md new file mode 100644 index 0000000..9315fe5 --- /dev/null +++ b/packages/cdk/README.md @@ -0,0 +1,14 @@ +# Welcome to your CDK TypeScript project + +This is a blank project for CDK development with TypeScript. + +The `cdk.json` file tells the CDK Toolkit how to execute your app. + +## Useful commands + +* `npm run build` compile typescript to js +* `npm run watch` watch for changes and compile +* `npm run test` perform the jest unit tests +* `npx cdk deploy` deploy this stack to your default AWS account/region +* `npx cdk diff` compare deployed stack with current state +* `npx cdk synth` emits the synthesized CloudFormation template diff --git a/packages/cdk/bin/cdk.ts b/packages/cdk/bin/cdk.ts new file mode 100644 index 0000000..b3cbab4 --- /dev/null +++ b/packages/cdk/bin/cdk.ts @@ -0,0 +1,18 @@ +#!/usr/bin/env node +import 'source-map-support/register'; +import * as cdk from 'aws-cdk-lib'; +import { SitemapsExampleStack } from '../lib/cdk-stack'; + +const app = new cdk.App(); +new SitemapsExampleStack(app, 'SitemapsExampleStack', { + /* If you don't specify 'env', this stack will be environment-agnostic. + * Account/Region-dependent features and context lookups will not work, + * but a single synthesized template can be deployed anywhere. */ + /* Uncomment the next line to specialize this stack for the AWS Account + * and Region that are implied by the current CLI configuration. */ + // env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION }, + /* Uncomment the next line if you know exactly what Account and Region you + * want to deploy the stack to. */ + // env: { account: '123456789012', region: 'us-east-1' }, + /* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */ +}); diff --git a/packages/cdk/cdk.json b/packages/cdk/cdk.json new file mode 100644 index 0000000..e8ccd94 --- /dev/null +++ b/packages/cdk/cdk.json @@ -0,0 +1,64 @@ +{ + "app": "npx ts-node --prefer-ts-exts bin/cdk.ts", + "watch": { + "include": [ + "**" + ], + "exclude": [ + "README.md", + "cdk*.json", + "**/*.d.ts", + "**/*.js", + "tsconfig.json", + "package*.json", + "yarn.lock", + "node_modules", + "test" + ] + }, + "context": { + "@aws-cdk/aws-lambda:recognizeLayerVersion": true, + "@aws-cdk/core:checkSecretUsage": true, + "@aws-cdk/core:target-partitions": [ + "aws", + "aws-cn" + ], + "@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true, + "@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true, + "@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true, + "@aws-cdk/aws-iam:minimizePolicies": true, + "@aws-cdk/core:validateSnapshotRemovalPolicy": true, + "@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true, + "@aws-cdk/aws-s3:createDefaultLoggingPolicy": true, + "@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true, + "@aws-cdk/aws-apigateway:disableCloudWatchRole": true, + "@aws-cdk/core:enablePartitionLiterals": true, + "@aws-cdk/aws-events:eventsTargetQueueSameAccount": true, + "@aws-cdk/aws-iam:standardizedServicePrincipals": true, + "@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true, + "@aws-cdk/aws-iam:importedRoleStackSafeDefaultPolicyName": true, + "@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true, + "@aws-cdk/aws-route53-patters:useCertificate": true, + "@aws-cdk/customresources:installLatestAwsSdkDefault": false, + "@aws-cdk/aws-rds:databaseProxyUniqueResourceName": true, + "@aws-cdk/aws-codedeploy:removeAlarmsFromDeploymentGroup": true, + "@aws-cdk/aws-apigateway:authorizerChangeDeploymentLogicalId": true, + "@aws-cdk/aws-ec2:launchTemplateDefaultUserData": true, + "@aws-cdk/aws-secretsmanager:useAttachedSecretResourcePolicyForSecretTargetAttachments": true, + "@aws-cdk/aws-redshift:columnId": true, + "@aws-cdk/aws-stepfunctions-tasks:enableEmrServicePolicyV2": true, + "@aws-cdk/aws-ec2:restrictDefaultSecurityGroup": true, + "@aws-cdk/aws-apigateway:requestValidatorUniqueId": true, + "@aws-cdk/aws-kms:aliasNameRef": true, + "@aws-cdk/aws-autoscaling:generateLaunchTemplateInsteadOfLaunchConfig": true, + "@aws-cdk/core:includePrefixInUniqueNameGeneration": true, + "@aws-cdk/aws-efs:denyAnonymousAccess": true, + "@aws-cdk/aws-opensearchservice:enableOpensearchMultiAzWithStandby": true, + "@aws-cdk/aws-lambda-nodejs:useLatestRuntimeVersion": true, + "@aws-cdk/aws-efs:mountTargetOrderInsensitiveLogicalId": true, + "@aws-cdk/aws-rds:auroraClusterChangeScopeOfInstanceParameterGroupWithEachParameters": true, + "@aws-cdk/aws-appsync:useArnForSourceApiAssociationIdentifier": true, + "@aws-cdk/aws-rds:preventRenderingDeprecatedCredentials": true, + "@aws-cdk/aws-codepipeline-actions:useNewDefaultBranchForCodeCommitSource": true + } +} diff --git a/packages/cdk/jest.config.js b/packages/cdk/jest.config.js new file mode 100644 index 0000000..08263b8 --- /dev/null +++ b/packages/cdk/jest.config.js @@ -0,0 +1,8 @@ +module.exports = { + testEnvironment: 'node', + roots: ['/test'], + testMatch: ['**/*.test.ts'], + transform: { + '^.+\\.tsx?$': 'ts-jest' + } +}; diff --git a/packages/cdk/lib/cdk-stack.ts b/packages/cdk/lib/cdk-stack.ts new file mode 100644 index 0000000..0338e70 --- /dev/null +++ b/packages/cdk/lib/cdk-stack.ts @@ -0,0 +1,41 @@ +import * as cdk from 'aws-cdk-lib'; +import { Construct } from 'constructs'; +import { SitemapsConstruct, SitemapFreshenerConstruct } from '@shutterstock/sitemaps-cdk'; + +/** + * Demonstration of using the SitemapsConstruct and SitemapFreshenerConstruct + * + * ⚠️ CAUTION: This uses the "Easy Button" approach where the construct will create and own + * the DynamoDB Table and S3 Bucket. This approach is not a CDK best practice. + * + * The CDK best practice is to put "durable" assets like DynamoDB Tables and S3 Buckets + * in a separate stack that is deployed once and managed separately from the application stack. + * This ensures that data is preserved if the application stack has an accidental resource + * id change that would cause the stateful resources to be deleted and recreated. + */ +export class SitemapsExampleStack extends cdk.Stack { + constructor(scope: Construct, id: string, props?: cdk.StackProps) { + super(scope, id, props); + + const sitemaps = new SitemapsConstruct(this, 'SitemapsConstruct', { + autoDeleteEverything: true, + testBuild: false, + env: 'dev', + s3SitemapsPrefix: 'sitemaps', + }); + + if (sitemaps.dynamoDBTable === undefined) { + throw new Error('dynamoDBTable must be set'); + } + + const freshener = new SitemapFreshenerConstruct(this, 'SitemapFreshenerConstruct', { + autoDeleteEverything: true, + testBuild: false, + env: 'dev', + kinesisInputStream: sitemaps.kinesisInputStream, + s3SitemapsBucket: sitemaps.s3SitemapsBucket, + s3SitemapsPrefix: 'sitemaps', + dynamodbTable: sitemaps.dynamoDBTable, + }); + } +} diff --git a/packages/cdk/package.json b/packages/cdk/package.json new file mode 100644 index 0000000..e48e5cf --- /dev/null +++ b/packages/cdk/package.json @@ -0,0 +1,23 @@ +{ + "name": "cdk", + "version": "0.1.0", + "bin": { + "cdk": "bin/cdk.js" + }, + "scripts": { + "build": "tsc", + "watch": "tsc -w", + "cdk": "cdk" + }, + "devDependencies": { + "@shutterstock/sitemaps-cdk": "*", + "@types/node": "20.10.4", + "aws-cdk": "2.117.0", + "typescript": "~5.3.3" + }, + "dependencies": { + "aws-cdk-lib": "2.117.0", + "constructs": "^10.0.0", + "source-map-support": "^0.5.21" + } +} diff --git a/packages/cdk/tsconfig.json b/packages/cdk/tsconfig.json new file mode 100644 index 0000000..e21314e --- /dev/null +++ b/packages/cdk/tsconfig.json @@ -0,0 +1,26 @@ +{ + "extends": "../../tsconfig.packages.json", + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["es2020", "dom"], + "outDir": "dist", + "declaration": true, + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUnusedLocals": false, + "noUnusedParameters": false, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": false, + "sourceMap": false, + "inlineSourceMap": true, + "inlineSources": true, + "experimentalDecorators": true, + "strictPropertyInitialization": false, + "typeRoots": ["./node_modules/@types"] + }, + "exclude": ["node_modules", "cdk.out", "dist"] +} diff --git a/packages/kinesis-index-writer/package.json b/packages/kinesis-index-writer/package.json new file mode 100644 index 0000000..2980917 --- /dev/null +++ b/packages/kinesis-index-writer/package.json @@ -0,0 +1,56 @@ +{ + "name": "@shutterstock/kinesis-index-writer", + "version": "0.0.0", + "description": "", + "main": "dist/index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "private": true, + "license": "MIT", + "devDependencies": { + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + }, + "dependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.5", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + } +} diff --git a/packages/kinesis-index-writer/src/config/config.ts b/packages/kinesis-index-writer/src/config/config.ts new file mode 100644 index 0000000..e00003b --- /dev/null +++ b/packages/kinesis-index-writer/src/config/config.ts @@ -0,0 +1,243 @@ +import * as convict from 'ts-convict'; +import * as yaml from 'js-yaml'; +import { url, ipaddress } from 'convict-format-with-validator'; +import { files } from '@shutterstock/sitemaps-utils-lib'; +const { configFiles } = files; + +export type SitemapFileNamingSchemes = 'uuidv4' | 'date+index' | 'index'; + +export interface IConfig { + /** + * AWS Account ID for app Lambda function + * + * Environment variable: AWS_ACCOUNT_ID + */ + readonly awsAccountID: number; + + /** + * AWS Region for app Lambda function + * + * Environment variable: AWS_REGION + */ + readonly awsRegion: string; + + /** + * CloudWatch metrics namespace + * + * Environment variable: METRICS_NAMESPACE + * + * @default 'SSTK/Sitemaps' + */ + readonly metricsNamespace: string; + + /** + * S3 sitemap files bucket name + * + * Environment variable: S3_SITEMAPS_BUCKET_NAME + * + * @default 'doc-example-bucket' + */ + readonly s3SitemapsBucketName: string; + + /** + * gzip compress the sitemap XML files, saving as .xml.gz + * + * ⚠️ CAUTION: Compressing and uncompressing sitemap files is very CPU intensive. + * This severely limits the throughput rate and increases the Lambda runtime cost. + * + * Environment variable: COMPRESS_SITEMAP_FILES + * + * @default false + */ + readonly compressSitemapFiles: boolean; + + /** + * Local directory to write files into + * + * Environment variable: LOCAL_DIRECTORY + * + * @default '/tmp/sitemaps' + */ + readonly localDirectory: string; + + /** + * S3 directory to write files into + * + * Environment variable: S3_DIRECTORY + * + * @default 'sitemaps/' + */ + readonly s3Directory: string; + + /** + * Emit CloudWatch metrics to logs + * + * Environment variable: EMIT_METRICS + * + * @default false + */ + readonly emitMetrics: boolean; + + /** + * Silence the logs + * + * Environment variable: LOG_SILENT + * + * @default false + */ + readonly logSilent: boolean; + + /** + * DynamoDB table name + * + * Environment variable: TABLE_NAME + * + * @default 'sitemaps' + */ + readonly tableName: string; + + /** + * List of infixes to write as additional sitemap indices / sitemap sets. + * + * The infix is written between the host and root path on the `url.loc` field in the sitemap items. + * Url: `https://www.example.com/sitemaps/target.html` + * --> `https://www.example.com/{infix}/sitemaps/target.html` + * + * The infix is also written to the end of the root folder path for the sitemap index and sitemaps. + * Index: `s3://{bucket}/sitemaps/index.xml` + * --> `s3://{bucket}/sitemaps/index-{infix}.xml` + * Sitemap: `s3://{bucket}/sitemaps/files/sitemap-00001.xml` + * --> `s3://{bucket}/sitemaps/files/{infix}/{infix}-sitemap-00001.xml` + * + * Only the `url.loc` and `url.lastmod` fields are written to the infix sitemaps as these files + * need to be smaller than the primary sitemaps since the infix sitemaps will be written to + * files with the same name, and same item population, and will simply fail to write all the + * items if a single sitemap file overflows (what fits will be written). + * + * The infix items, sitemap file states, and index file states are not written to the DB. + * These files are only written as a duplicate / trimmed version of the primary sitemap. + * The sitemap and index infix files are not retrieved from S3 for updating: they are + * simply recalculated and re-written from the primary file contents. + * + * Environment variable: INFIX_DIRS + * + * @default [] + * + * @example ['target', 'target2'] + */ + readonly infixDirs: string[]; +} + +@convict.Config({ + // optional default file to load, no errors if it doesn't exist + file: 'config.yml', // relative to NODE_PATH or cwd() + + // optional parameter. Defaults to 'strict', can also be 'warn' + validationMethod: 'strict', + + // optionally add parsers like yaml or toml + parser: { + extension: ['yml', 'yaml'], + parse: yaml.load, + }, + + // optional extra formats to use in validation + formats: { + url, + ipaddress, + }, +}) +export class Config implements IConfig { + private static _instance: IConfig; + public static get instance(): IConfig { + if (Config._instance === undefined) { + const configLoader = new convict.TSConvict(Config); + Config._instance = configLoader.load(Config.configFiles); + } + return Config._instance; + } + + private static _envLevel: string | undefined; + public static get envLevel(): string | undefined { + if (Config._envLevel === undefined) { + Config._envLevel = configFiles.getEnvLevel(); + } + return Config._envLevel; + } + + private static _configFiles: string[]; + public static get configFiles(): string[] { + if (Config._configFiles === undefined) { + Config._configFiles = configFiles.getConfigFiles({ + checkEnvOverrides: true, + }); + } + return Config._configFiles; + } + + @convict.Property({ + default: 0, + env: 'AWS_ACCOUNT_ID', + }) + public awsAccountID!: number; + + @convict.Property({ + default: 'us-east-1', + env: 'AWS_REGION', + }) + public awsRegion!: string; + + @convict.Property({ + default: 'doc-example-bucket', + env: 'S3_SITEMAPS_BUCKET_NAME', + }) + public s3SitemapsBucketName!: string; + + @convict.Property({ + default: false, + env: 'COMPRESS_SITEMAP_FILES', + }) + public compressSitemapFiles!: boolean; + + @convict.Property({ + default: 'SSTK/Sitemaps', + env: 'METRICS_NAMESPACE', + }) + public metricsNamespace!: string; + + @convict.Property({ + default: '/tmp/sitemaps', + env: 'LOCAL_DIRECTORY', + }) + public localDirectory!: string; + + @convict.Property({ + default: 'sitemaps/', + env: 'S3_DIRECTORY', + }) + public s3Directory!: string; + + @convict.Property({ + default: false, + env: 'EMIT_METRICS', + }) + public emitMetrics!: boolean; + + @convict.Property({ + default: false, + env: 'LOG_SILENT', + }) + public logSilent!: boolean; + + @convict.Property({ + default: 'sitemaps', + env: 'TABLE_NAME', + }) + public tableName!: string; + + @convict.Property({ + default: [], + env: 'INFIX_DIRS', + }) + public infixDirs!: string[]; +} diff --git a/packages/kinesis-index-writer/src/index.test.ts b/packages/kinesis-index-writer/src/index.test.ts new file mode 100644 index 0000000..f168457 --- /dev/null +++ b/packages/kinesis-index-writer/src/index.test.ts @@ -0,0 +1,645 @@ +//index.test.ts +/// +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +// Config has to be mocked before the handler is imported because +// the handler accesses the static Config.instance at file scope. +// Note: jest.spyOn(Config, 'instance', 'get').mockImplementation(...) +// does not work here because Config.instance is a static class property +// not an object property. +import { Config, IConfig } from './config/config'; +jest.mock('./config/config'); +type Writeable = { -readonly [P in keyof T]: T[P] }; +const theConfig: Writeable = { + awsAccountID: 123456, + awsRegion: 'mock', + metricsNamespace: 'some/metrics/namespace', + s3SitemapsBucketName: 'doc-example-bucket', + compressSitemapFiles: false, + emitMetrics: false, + logSilent: true, + localDirectory: '/tmp/sitemaps', + s3Directory: 'sitemaps/', + tableName: 'sitemaps', + infixDirs: [], +}; +const origConfig = { ...theConfig }; +Object.defineProperty(Config, 'instance', { + configurable: false, + enumerable: false, + get: jest.fn((): IConfig => { + return theConfig; + }), +}); +import { handler } from './index'; +import type * as lambda from 'aws-lambda'; +import type { IIndexWriterMessage } from '@shutterstock/sitemaps-models-lib'; +import * as s3 from '@aws-sdk/client-s3'; +import { Readable } from 'stream'; +import { mockClient, AwsClientStub } from 'aws-sdk-client-mock'; +import { SitemapIndexWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import type { StreamingBlobPayloadOutputTypes } from '@smithy/types'; + +describe('Index Writer index.ts', () => { + let s3Client: AwsClientStub; + const siteBaseURL = 'https://www.example.com'; + const s3SitemapsBucketName = 'doc-example-bucket'; + let sitemapExtension: string; + + beforeEach(() => { + // Reset the config that's visible to the handler back to defaults + Object.keys(origConfig).map((key) => { + // @ts-expect-error we know the fields match + theConfig[key] = origConfig[key]; + }); + s3Client = mockClient(s3.S3Client); + sitemapExtension = theConfig.compressSitemapFiles ? '.xml.gz' : '.xml'; + }); + + describe('lambda handler', () => { + it('empty state initialization', async () => { + s3Client + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolves({}) + // Handle the sitemap index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const payload: IIndexWriterMessage = { + type: 'image', + indexItem: { url: `${siteBaseURL}/sitemaps/image/image-1-00001${sitemapExtension}` }, + action: 'add', + }; + await handler( + { + Records: [ + { + awsRegion: 'us-east-1', + eventID: 'x', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(payload), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }, + ], + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + expect(s3Client.call(1).args[0]).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapIndexPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + const s3SitemapIndexStream = Readable.from(s3SitemapIndexPutCommand.input.Body as string); + expect(s3SitemapIndexPutCommand.input.Key).toBe(`sitemaps/image-index${sitemapExtension}`); + + // + // Read the index back and make sure it has 1 item + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Read the index back from S3 + const { index, existing: indexExisting } = await SitemapIndexWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + s3Directory: 'sitemaps/', + filenameRoot: 'image-index', + compress: theConfig.compressSitemapFiles, + }); + expect(indexExisting).toBe(true); + expect(index.count).toBe(1); + expect(index.lastFilename).toBe(`image-1-00001${sitemapExtension}`); + }); + + it('existing index', async () => { + // Create the initial index to use in the subsequent test + s3Client + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolves({}) + // Handle the sitemap index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const payload: IIndexWriterMessage = { + type: 'image', + indexItem: { url: `${siteBaseURL}/sitemaps/image/image-1-00001${sitemapExtension}` }, + action: 'add', + }; + await handler( + { + Records: [ + { + awsRegion: 'us-east-1', + eventID: 'x', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(payload), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }, + ], + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + let s3SitemapIndexPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(s3SitemapIndexPutCommand).toBeInstanceOf(s3.PutObjectCommand); + expect(s3SitemapIndexPutCommand.input.Key).toBe(`sitemaps/image-index${sitemapExtension}`); + let s3SitemapIndexStream = Readable.from(s3SitemapIndexPutCommand.input.Body as string); + + // + // Now test that adding more items to the existing index works + // + s3Client + .reset() + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolves({ Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes }) + // Handle the sitemap index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const payload2: IIndexWriterMessage = { + type: 'image', + action: 'add', + indexItem: { + url: `${siteBaseURL}/sitemaps/image/image-1-00002${sitemapExtension}`, + }, + }; + await handler( + { + Records: [ + { + awsRegion: 'us-east-1', + eventID: 'x', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(payload2), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }, + ], + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + s3SitemapIndexPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(s3SitemapIndexPutCommand).toBeInstanceOf(s3.PutObjectCommand); + expect(s3SitemapIndexPutCommand.input.Key).toBe(`sitemaps/image-index${sitemapExtension}`); + s3SitemapIndexStream = Readable.from(s3SitemapIndexPutCommand.input.Body as string); + + // + // Read the index back and make sure it has 1 item + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Read the index back from S3 + const { index, existing: indexExisting } = await SitemapIndexWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + s3Directory: 'sitemaps/', + filenameRoot: 'image-index', + compress: theConfig.compressSitemapFiles, + }); + expect(indexExisting).toBe(true); + expect(index.count).toBe(2); + expect(index.lastFilename).toBe(`image-1-00002${sitemapExtension}`); + }); + + // Shows that multiple types of records + // get split into the the right number of files + it('mixed types get split into distinct index files', async () => { + const types = ['type1', 'type2']; + const typesCount = types.length; + + // Reject any command we don't configure + s3Client.onAnyCommand().rejects(); + + const itemCount = 50; + const shardId = 1; + const payload: lambda.KinesisStreamEvent = { + Records: [], + }; + const records = payload.Records; + + for (const type of types) { + for (let i = 0; i < itemCount; i++) { + const itemID = i + 1; + + const item: IIndexWriterMessage = { + indexItem: { + url: `${siteBaseURL}/sitemaps/${type}/${type}-${shardId}-${itemID + .toString() + .padStart(5, '0')}${sitemapExtension}`, + }, + action: 'add', + type, + }; + + records.push({ + awsRegion: 'us-east-1', + eventID: 'x', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: `${i}`, + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}-index${sitemapExtension}`, + }) + .resolves({}) + // Handle the sitemap index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}-index${sitemapExtension}`, + }, + false, + ) + .resolves({}); + } + + await handler(payload, { + awsRequestId: 'local-testing', + } as lambda.Context); + + const s3CallsPerType = 2; + let s3CallsOffset = 0; + const s3CallsFromHandler = s3Client.calls(); + expect(s3CallsFromHandler.length).toBe(s3CallsPerType * typesCount); + + for (const type of types) { + const s3SitemapIndexStream = Readable.from( + (s3CallsFromHandler[s3CallsOffset + 1].args[0] as s3.PutObjectCommand).input + .Body as string, + ); + + // + // Read the index back and make sure it has 1 item + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}-index${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Read the index back from S3 + const { + index, + existing: indexExisting, + items, + } = await SitemapIndexWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + s3Directory: 'sitemaps/', + filenameRoot: `${type}-index`, + compress: theConfig.compressSitemapFiles, + }); + expect(indexExisting).toBe(true); + expect(index.count).toBe(itemCount); + expect(index.lastFilename).toBe( + `${type}-${shardId}-${itemCount.toString().padStart(5, '0')}${sitemapExtension}`, + ); + + // Check that the url to an individual sitemap includes the type + expect(items[0].url).toBe( + `${siteBaseURL}/sitemaps/${type}/${type}-${shardId}-00001${sitemapExtension}`, + ); + expect(items[1].url).toBe( + `${siteBaseURL}/sitemaps/${type}/${type}-${shardId}-00002${sitemapExtension}`, + ); + + s3CallsOffset += s3CallsPerType; + } + }, 240000); + }); + + describe('infix indices', () => { + it("should write two indices if infix is ['de']", async () => { + theConfig.infixDirs = ['de']; + + // Create the initial index to use in the subsequent test + s3Client + .onAnyCommand() + .callsFake(() => { + // eslint-disable-next-line no-console + console.error('unexpected s3 call'); + }) + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolvesOnce({}) + // Handle the sitemap index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({ + VersionId: '', + }) + // Handle the de index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index-de${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({ + VersionId: 'de', + }); + + const payload: IIndexWriterMessage = { + type: 'image', + indexItem: { url: `${siteBaseURL}/sitemaps/image/image-1-00001${sitemapExtension}` }, + action: 'add', + }; + await handler( + { + Records: [ + { + awsRegion: 'us-east-1', + eventID: 'x', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(payload), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }, + ], + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(3); + + { + const s3SitemapIndexPutCommand = s3Client.call(2).args[0] as s3.PutObjectCommand; + await expect(s3Client.call(2).returnValue).resolves.toEqual({ VersionId: 'de' }); + expect(s3SitemapIndexPutCommand).toBeInstanceOf(s3.PutObjectCommand); + expect(s3SitemapIndexPutCommand.input.Key).toBe( + `sitemaps/image-index-de${sitemapExtension}`, + ); + } + + { + const s3SitemapIndexPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + await expect(s3Client.call(1).returnValue).resolves.toEqual({ VersionId: '' }); + expect(s3SitemapIndexPutCommand).toBeInstanceOf(s3.PutObjectCommand); + expect(s3SitemapIndexPutCommand.input.Key).toBe(`sitemaps/image-index${sitemapExtension}`); + const s3SitemapIndexStream = Readable.from(s3SitemapIndexPutCommand.input.Body as string); + // + // Now test that adding more items to the existing index works + // + s3Client + .reset() + .onAnyCommand() + .callsFake(() => { + // eslint-disable-next-line no-console + console.error('unexpected s3 call'); + }) + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes, + }) + // Handle the sitemap index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}) + // Handle the de index put + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index-de${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}); + } + + const payload2: IIndexWriterMessage = { + type: 'image', + action: 'add', + indexItem: { + url: `${siteBaseURL}/sitemaps/image/image-1-00002${sitemapExtension}`, + }, + }; + await handler( + { + Records: [ + { + awsRegion: 'us-east-1', + eventID: 'x', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(payload2), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }, + ], + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(3); + + { + const s3SitemapIndexPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(s3SitemapIndexPutCommand).toBeInstanceOf(s3.PutObjectCommand); + expect(s3SitemapIndexPutCommand.input.Key).toBe(`sitemaps/image-index${sitemapExtension}`); + const s3SitemapIndexStream = Readable.from(s3SitemapIndexPutCommand.input.Body as string); + + // + // Read the index back and make sure it has 1 item + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Read the index back from S3 + const { index, existing: indexExisting } = await SitemapIndexWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + s3Directory: 'sitemaps/', + filenameRoot: 'image-index', + compress: theConfig.compressSitemapFiles, + }); + expect(indexExisting).toBe(true); + expect(index.count).toBe(2); + expect(index.lastFilename).toBe(`image-1-00002${sitemapExtension}`); + } + + // Check that de index was updated + { + const s3SitemapIndexPutCommand = s3Client.call(2).args[0] as s3.PutObjectCommand; + expect(s3SitemapIndexPutCommand).toBeInstanceOf(s3.PutObjectCommand); + expect(s3SitemapIndexPutCommand.input.Key).toBe( + `sitemaps/image-index-de${sitemapExtension}`, + ); + const s3SitemapIndexStream = Readable.from(s3SitemapIndexPutCommand.input.Body as string); + + // + // Read the index back and make sure it has 1 item + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image-index-de${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapIndexStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Read the index back from S3 + const { index, existing: indexExisting } = await SitemapIndexWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + s3Directory: 'sitemaps/', + filenameRoot: 'image-index-de', + compress: theConfig.compressSitemapFiles, + }); + expect(indexExisting).toBe(true); + expect(index.count).toBe(2); + expect(index.items[0].url).toBe( + `${siteBaseURL}/sitemaps/image/de/de-image-1-00001${sitemapExtension}`, + ); + expect(index.lastFilename).toBe(`de-image-1-00002${sitemapExtension}`); + } + }); + }); +}); diff --git a/packages/kinesis-index-writer/src/index.ts b/packages/kinesis-index-writer/src/index.ts new file mode 100644 index 0000000..4a16c8a --- /dev/null +++ b/packages/kinesis-index-writer/src/index.ts @@ -0,0 +1,273 @@ +import 'reflect-metadata'; +import 'source-map-support/register'; +import path from 'path'; +import { captureAWSv3Client } from 'aws-xray-sdk-core'; +import { S3Client } from '@aws-sdk/client-s3'; +import https from 'https'; +import type * as lambda from 'aws-lambda'; +import type { IIndexWriterMessage } from '@shutterstock/sitemaps-models-lib'; +import { IndexWriterMetrics, IndexWriterTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { LambdaLog, LogMessage } from 'lambda-log'; +import { + metricScope, + Unit as metricUnit, + Configuration as metricConfiguration, +} from 'aws-embedded-metrics'; +import { Config } from './config/config'; +import { FlatCountMetrics, metricScopeDummy } from '@shutterstock/aws-embedded-metrics-flatten'; +import { + SitemapWrapperOverrideAWSClients, + SitemapIndexWrapper, +} from '@shutterstock/sitemaps-wrapper-lib'; +import { IndexItem } from 'sitemap'; + +// Initially setup the s3client +const s3Client = captureAWSv3Client(new S3Client({})); +SitemapWrapperOverrideAWSClients({ s3Client }); + +const localTesting = process.env.DEBUG ? true : false; +const config = Config.instance; + +const log = new LambdaLog({ + dev: localTesting, + //debug: localTesting, + silent: config.logSilent, +}); +if (localTesting) { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + log.options.dynamicMeta = (_message: LogMessage) => { + return { + timestamp: new Date().toISOString(), + }; + }; +} + +metricConfiguration.namespace = config.metricsNamespace; + +log.info('rendered config', { config, maxSockets: https.globalAgent.maxSockets }); +log.info('config files found', { configFiles: Config.configFiles }); + +const enableMetricScope = config.emitMetrics ? metricScope : metricScopeDummy; + +export const handler = enableMetricScope( + (metrics) => + async (payload: lambda.KinesisStreamEvent, context?: lambda.Context): Promise => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const startTime = Date.now(); + + // Set logger request-specific context + log.options.meta = { + env: Config.envLevel, + }; + + try { + metrics.setProperty('RequestId', context?.awsRequestId); + metrics.setProperty('Env', Config.envLevel); + + metrics.putMetric(IndexWriterMetrics.EventReceived, 1, metricUnit.Count); + metrics.putMetric(IndexWriterMetrics.MsgReceived, payload.Records.length, metricUnit.Count); + await metrics.flush(); + + // We will have multiple records, which will generally be from multiple + // shards in the sitemap-writer. We want to group items across all records + // that are of the same type (e.g. type 1, type 2) in order to pack the sitemap + // files as close to 50k items as possible. + // + // For the nominal case of processing new records, each of the records + // of a particular type might have only 10 to 1,000 items and there may + // be up to # of shards (e.g. 8) of these. We want to end up with 1 sitemap + // xml file that has 80 to 8,000 items in it, not 8 files with 10 to 1,000 items + // in them. + const messagesByType: { [type: string]: IIndexWriterMessage[] } = {}; + for (const record of payload.Records) { + const msg: IIndexWriterMessage = JSON.parse( + Buffer.from(record.kinesis.data, 'base64').toString('utf-8'), + ) as IIndexWriterMessage; + + const { type } = msg; + + // Create the type if we haven't already + let messageType = messagesByType[type]; + if (messageType === undefined) { + messageType = []; + messagesByType[type] = messageType; + } + + // Add the item to the end of the list + messageType.push(msg); + } + // ^^^ END of Files of Type Consolidation Loop + + // + // Loop through the consolidated list of files by type + // + for (const type of Object.keys(messagesByType)) { + const flatMetricsTyped = new FlatCountMetrics(); + flatMetricsTyped.putMetric(IndexWriterTypedMetrics.TypeStarted, 1, metricUnit.Count); + + // If one type fails, process the others + try { + const msgs = messagesByType[type]; + + log.info('starting processing of message type', { type }); + + // Load the existing sitemap index off of S3 + // OR... create new one + const { + index: existingIndex, + existing: indexWasExisting, + items: existingItems, + } = await SitemapIndexWrapper.fromS3({ + bucketName: config.s3SitemapsBucketName, + compress: config.compressSitemapFiles, + s3Directory: config.s3Directory, + filenameRoot: `${type}-index`, + }); + await existingIndex.end(); + await existingIndex.delete(); + + // Create a new index since we're going to write back all items + const newIndex = new SitemapIndexWrapper({ + compress: config.compressSitemapFiles, + filenameRoot: `${type}-index`, + }); + log.info('opened sitemap index for type', { + type, + indexWasExisting, + lastSitemapFilename: existingIndex.lastFilename, + }); + + // Store the existing items in a map + const existingItemsMapByUrl: { [url: string]: IndexItem } = {}; + for (const item of existingItems) { + existingItemsMapByUrl[item.url] = item; + } + + // Add items to the index array + for (const msg of msgs) { + if (msg.action === 'update') { + flatMetricsTyped.putMetric( + IndexWriterTypedMetrics.ActionUpdate, + 1, + metricUnit.Count, + ); + } else if (msg.action === 'add') { + flatMetricsTyped.putMetric(IndexWriterTypedMetrics.ActionAdd, 1, metricUnit.Count); + } else { + log.warn('unknown action type - skipping', { + type, + indexItem: msg.indexItem, + }); + flatMetricsTyped.putMetric( + IndexWriterTypedMetrics.ActionUnknown, + 1, + metricUnit.Count, + ); + continue; + } + + // Add to or overwrite item in the existing items map + existingItemsMapByUrl[msg.indexItem.url] = msg.indexItem; + } + + // Flatten the map back into an array + const newIndexItems: IndexItem[] = []; + for (const key of Object.keys(existingItemsMapByUrl)) { + newIndexItems.push(existingItemsMapByUrl[key]); + } + // Sort by url (which should lexicographically sort by order the files were added) + newIndexItems.sort((a, b) => { + if (a.url < b.url) { + return -1; + } + if (a.url > b.url) { + return 1; + } + return 0; + }); + + log.info('uploading sitemap index - starting', { + type, + }); + await newIndex.writeArray({ items: newIndexItems }); + await newIndex.end(); + await newIndex.pushToS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: config.s3Directory, + }); + await newIndex.delete(); + log.info('uploading sitemap index - finished', { + type, + }); + + // Create the infixDir copies of the index + for (const infixDir of config.infixDirs) { + // Create a new index file + const infixSitemap = new SitemapIndexWrapper({ + ...newIndex.options, + // Make the filenames unique so a path upload mistake does not clobber the main sitemap + ...(newIndex.options.filenameRoot + ? { filenameRoot: `${newIndex.options.filenameRoot}-${infixDir}` } + : {}), + }); + + for (const item of newIndex.items) { + const url = new URL(item.url); + const urlParts = url.pathname.split('/'); + const fileName = urlParts.pop(); + url.pathname = path.posix.join(...urlParts, infixDir, `${infixDir}-${fileName}`); + const newItem: IndexItem = { + ...{ + url: url.toString(), + lastmod: item.lastmod, + }, + }; + + await infixSitemap.write({ item: newItem }); + } + + // Push the file + await infixSitemap.end(); + await infixSitemap.pushToS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: config.s3Directory, + }); + await infixSitemap.delete(); + } + + log.info('finished type', { type }); + flatMetricsTyped.putMetric(IndexWriterTypedMetrics.TypeDone, 1, metricUnit.Count); + } catch (error) { + flatMetricsTyped.putMetric(IndexWriterTypedMetrics.TypeFailed, 1, metricUnit.Count); + log.error(error as Error, { + caughtException: true, + type, + extraMsg: 'Caught exception at top of type loop', + }); + } finally { + // Flush the metrics collected by the type handler + const metricsTyped = metrics.new(); + metricsTyped.putDimensions({ SitemapType: type }); + flatMetricsTyped.flush(metricsTyped); + await metricsTyped.flush(); + } + } + // ^^^ END of Type Loop + + log.info('finished payload'); + metrics.putMetric(IndexWriterMetrics.EventComplete, 1, metricUnit.Count); + } catch (error) { + metrics.putMetric(IndexWriterMetrics.EventFailed, 1, metricUnit.Count); + log.error(error as Error, { + caughtException: true, + extraMsg: 'Caught exception at top level', + }); + } finally { + metrics.putMetric( + IndexWriterMetrics.DurationMS, + Date.now() - startTime, + metricUnit.Milliseconds, + ); + } + }, +); diff --git a/packages/kinesis-index-writer/tsconfig.json b/packages/kinesis-index-writer/tsconfig.json new file mode 100644 index 0000000..0b279e3 --- /dev/null +++ b/packages/kinesis-index-writer/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.packages.json", + "compilerOptions": { + "rootDir": "src", + "outDir": "dist" + }, + "exclude": ["dist"], + "include": ["src/**/*.ts", "src/**/*.json"] +} diff --git a/packages/kinesis-sitemap-freshener/package.json b/packages/kinesis-sitemap-freshener/package.json new file mode 100644 index 0000000..48f31a4 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/package.json @@ -0,0 +1,63 @@ +{ + "name": "@shutterstock/kinesis-sitemap-freshener", + "version": "0.0.0", + "description": "", + "main": "dist/index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "private": true, + "license": "MIT", + "devDependencies": { + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/memorystream": "^0.3.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/traverse": "^0.6.32", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + }, + "dependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.6", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@shutterstock/p-map-iterable": "^1.0.11", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "memorystream": "^0.3.1", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "traverse": "^0.6.6", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + } +} diff --git a/packages/kinesis-sitemap-freshener/src/config/config.ts b/packages/kinesis-sitemap-freshener/src/config/config.ts new file mode 100644 index 0000000..e4bf17a --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/config/config.ts @@ -0,0 +1,352 @@ +import * as convict from 'ts-convict'; +import * as yaml from 'js-yaml'; +import { url, ipaddress } from 'convict-format-with-validator'; +import { files } from '@shutterstock/sitemaps-utils-lib'; +const { configFiles } = files; + +export interface IConfig { + /** + * AWS Account ID for app Lambda function + * + * Environment variable: AWS_ACCOUNT_ID + */ + readonly awsAccountID: number; + + /** + * AWS Region for app Lambda function + * + * Environment variable: AWS_REGION + */ + readonly awsRegion: string; + + /** + * Base URL of the website + * + * Environment variable: SITE_BASE_URL + * + * @default 'https://www.example.com' + */ + readonly siteBaseURL: string; + + /** + * Base path of the sitemaps on the website (for sitemap index links) + * + * Environment variable: SITE_BASE_SITEMAP_PATH + * + * @default 'sitemaps' + */ + readonly siteBaseSitemapPath: string; + + /** + * S3 sitemap files bucket name + * + * Environment variable: S3_SITEMAPS_BUCKET_NAME + * + * @default 'doc-example-bucket' + */ + readonly s3SitemapsBucketName: string; + + /** + * Local directory to write files into + * + * Environment variable: LOCAL_DIRECTORY + * + * @default '/tmp/sitemaps' + */ + readonly localDirectory: string; + + /** + * S3 directory to write files into + * + * Environment variable: S3_DIRECTORY + * + * @default 'sitemaps/' + */ + readonly s3Directory: string; + + /** + * CloudWatch metrics namespace + * + * Environment variable: METRICS_NAMESPACE + * + * @default 'SSTK/Sitemaps' + */ + readonly metricsNamespace: string; + + /** + * Emit CloudWatch metrics to logs + * + * Environment variable: EMIT_METRICS + * + * @default false + */ + readonly emitMetrics: boolean; + + /** + * Silence the logs + * + * Environment variable: LOG_SILENT + * + * @default false + */ + readonly logSilent: boolean; + + /** + * DynamoDB table name + * + * Environment variable: TABLE_NAME + * + * @default 'sitemaps' + */ + readonly tableName: string; + + /** + * Max number of concurrent writes to DynamoDB + * + * Environment variable: DYNAMODB_CONCURRENT_WRITES + * + * @default 5 + */ + readonly dynamoDBConcurrentWrites: number; + + /** + * Allow non-dryrun at all + * If false, the app will not allow non-dryrun operations + * and will skip all writes to S3 and DynamoDB + * + * Environment variable: NON_DRY_RUN_ALLOWED + * + * @default true + */ + readonly nonDryRunAllowed: boolean; + + /** + * Self Kinesis stream name for compaction writes + * + * Environment variable: KINESIS_SELF_STREAM_NAME + * + * @default 'sitemaps' + */ + readonly kinesisSelfStreamName: string; + + /** + * Capture heap dumps for debugging + * + * Environment variable: CAPTURE_HEAP_DUMPS + * + * @default false + */ + readonly captureHeapDumps: boolean; + + /** + * Prints log messages around cleanup and writing + * of the 0th, 1st, and last items in a file + * + * Environment variable: DEBUG_ITEM_WRITES + * + * @default false + */ + readonly debugItemWrites: boolean; + + /** + * Check the item list of each file against the by-item-id records + * to remove items from files that are no longer owned by a file. + * + * This requires 2x more reads from DynamoDB. + * + * This is only necessary when prior operations did not use + * transactions on DynamoDB. + * + * Environment variable: REPAIR_DB_FILE_ITEM_LIST + * + * @default false + */ + readonly repairDBFileItemList: boolean; + + /** + * List of infixes to write as additional sitemap indices / sitemap sets. + * + * The infix is written between the host and root path on the `url.loc` field in the sitemap items. + * Url: `https://www.example.com/sitemaps/target.html` + * --> `https://www.example.com/{infix}/sitemaps/target.html` + * + * The infix is also written to the end of the root folder path for the sitemap index and sitemaps. + * Index: `s3://{bucket}/sitemaps/index.xml` + * --> `s3://{bucket}/sitemaps/index-{infix}.xml` + * Sitemap: `s3://{bucket}/sitemaps/files/sitemap-00001.xml` + * --> `s3://{bucket}/sitemaps/files/{infix}/{infix}-sitemap-00001.xml` + * + * Only the `url.loc` and `url.lastmod` fields are written to the infix sitemaps as these files + * need to be smaller than the primary sitemaps since the infix sitemaps will be written to + * files with the same name, and same item population, and will simply fail to write all the + * items if a single sitemap file overflows (what fits will be written). + * + * The infix items, sitemap file states, and index file states are not written to the DB. + * These files are only written as a duplicate / trimmed version of the primary sitemap. + * The sitemap and index infix files are not retrieved from S3 for updating: they are + * simply recalculated and re-written from the primary file contents. + * + * Environment variable: INFIX_DIRS + * + * @default [] + * + * @example ['target', 'target2'] + */ + readonly infixDirs: string[]; +} + +@convict.Config({ + // optional default file to load, no errors if it doesn't exist + file: 'config.yml', // relative to NODE_PATH or cwd() + + // optional parameter. Defaults to 'strict', can also be 'warn' + validationMethod: 'strict', + + // optionally add parsers like yaml or toml + parser: { + extension: ['yml', 'yaml'], + parse: yaml.load, + }, + + // optional extra formats to use in validation + formats: { + url, + ipaddress, + }, +}) +export class Config implements IConfig { + private static _instance: IConfig; + public static get instance(): IConfig { + if (Config._instance === undefined) { + const configLoader = new convict.TSConvict(Config); + Config._instance = configLoader.load(Config.configFiles); + } + return Config._instance; + } + + private static _envLevel: string | undefined; + public static get envLevel(): string | undefined { + if (Config._envLevel === undefined) { + Config._envLevel = configFiles.getEnvLevel(); + } + return Config._envLevel; + } + + private static _configFiles: string[]; + public static get configFiles(): string[] { + if (Config._configFiles === undefined) { + Config._configFiles = configFiles.getConfigFiles({ + checkEnvOverrides: true, + }); + } + return Config._configFiles; + } + + @convict.Property({ + default: 0, + env: 'AWS_ACCOUNT_ID', + }) + public awsAccountID!: number; + + @convict.Property({ + default: 'us-east-1', + env: 'AWS_REGION', + }) + public awsRegion!: string; + + @convict.Property({ + default: 'doc-example-bucket', + env: 'S3_SITEMAPS_BUCKET_NAME', + }) + public s3SitemapsBucketName!: string; + + @convict.Property({ + default: 'SSTK/Sitemaps', + env: 'METRICS_NAMESPACE', + }) + public metricsNamespace!: string; + + @convict.Property({ + default: '/tmp/sitemaps', + env: 'LOCAL_DIRECTORY', + }) + public localDirectory!: string; + + @convict.Property({ + default: 'https://www.example.com', + env: 'SITE_BASE_URL', + }) + public siteBaseURL!: string; + + @convict.Property({ + default: 'sitemaps', + env: 'SITE_BASE_SITEMAP_PATH', + }) + public siteBaseSitemapPath!: string; + + @convict.Property({ + default: 'sitemaps/', + env: 'S3_DIRECTORY', + }) + public s3Directory!: string; + + @convict.Property({ + default: false, + env: 'EMIT_METRICS', + }) + public emitMetrics!: boolean; + + @convict.Property({ + default: false, + env: 'LOG_SILENT', + }) + public logSilent!: boolean; + + @convict.Property({ + default: 'sitemaps', + env: 'TABLE_NAME', + }) + public tableName!: string; + + @convict.Property({ + default: 5, + env: 'DYNAMODB_CONCURRENT_WRITES', + }) + public dynamoDBConcurrentWrites!: number; + + @convict.Property({ + default: true, + env: 'NON_DRY_RUN_ALLOWED', + }) + public nonDryRunAllowed!: boolean; + + @convict.Property({ + default: 'sitemaps', + env: 'KINESIS_SELF_STREAM_NAME', + }) + public kinesisSelfStreamName!: string; + + @convict.Property({ + default: false, + env: 'CAPTURE_HEAP_DUMPS', + }) + public captureHeapDumps!: boolean; + + @convict.Property({ + default: false, + env: 'REPAIR_DB_FILE_ITEM_LIST', + }) + public repairDBFileItemList!: boolean; + + @convict.Property({ + default: false, + env: 'DEBUG_ITEM_WRITES', + }) + public debugItemWrites!: boolean; + + @convict.Property({ + default: [], + env: 'INFIX_DIRS', + }) + public infixDirs!: string[]; +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/freshen-file.test.ts b/packages/kinesis-sitemap-freshener/src/handlers/freshen-file.test.ts new file mode 100644 index 0000000..7b64c6f --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/freshen-file.test.ts @@ -0,0 +1,41 @@ +import 'jest-dynalite/withDb'; +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import { DBManager, FileRecord } from '@shutterstock/sitemaps-db-lib'; + +describe('FileRecord tests', () => { + let client: DynamoDBClient; + let dbManager: DBManager; + + beforeAll(() => { + client = new DynamoDBClient({ + endpoint: process.env.MOCK_DYNAMODB_ENDPOINT, + tls: false, + region: 'local', + }); + dbManager = new DBManager({ client, tableName: 'sitemaps' }); + }); + + afterAll(() => { + client.destroy(); + }); + + it('should create a new FileRecord', async () => { + const recordInput = new FileRecord({ + FileName: 'test-file.xml', + Type: 'test-type', + FileStatus: 'dirty', + CountWritten: 1, + }); + + await recordInput.save(dbManager); + + const recordOutput = await FileRecord.loadOne(dbManager, { + FileName: 'test-file.xml', + Type: 'test-type', + }); + + expect(recordOutput).toBeDefined(); + expect(recordOutput!.FileName).toEqual(recordInput.FileName); + expect(recordOutput!.Type).toEqual(recordInput.Type); + }); +}); diff --git a/packages/kinesis-sitemap-freshener/src/handlers/freshen-file.ts b/packages/kinesis-sitemap-freshener/src/handlers/freshen-file.ts new file mode 100644 index 0000000..c36506e --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/freshen-file.ts @@ -0,0 +1,325 @@ +import * as s3 from '@aws-sdk/client-s3'; +import keyBy from 'lodash/keyBy'; +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import { IterableQueueMapperSimple } from '@shutterstock/p-map-iterable'; +import { DBManager, FileRecord, ItemRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapFreshenerTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { + ISitemapFreshenerFreshenFileMessage, + ISitemapFreshenerFreshenFileResult, +} from '@shutterstock/sitemaps-models-lib'; +import { SitemapFileWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { IConfig } from '../config/config'; +import { cleanupSitemapItem } from './helpers/cleanup-sitemap-item'; +import { log } from '../utils/log'; +import { evaluateAndWriteResults } from './helpers/evaluate-results'; +import { prepareRepairDB } from './helpers/repair-db'; +import { RepairDBStats } from './helpers/repair-db-stats'; + +type Writeable = { -readonly [P in keyof T]: T[P] }; + +/** + * Handles the freshening of a file message. This function is responsible for loading the file state, + * getting the sitemap items from the DB, cross-checking S3 items against DB items, evaluating item statuses, + * creating a new sitemap, writing items to the sitemap, writing the sitemap file to disk, and evaluating and writing results. + * + * @param {Object} opts - The options for the function. + * @param {IConfig} opts.config - The configuration object. + * @param {boolean} opts.dryRun - A flag indicating whether this is a dry run. + * @param {boolean} opts.dryRunDB - A flag indicating whether this is a dry run for the DB. + * @param {IterableQueueMapperSimple} opts.dbItemWriterBothKeysSaveMany - The DB item writer for both keys. + * @param {IterableQueueMapperSimple} opts.dbItemWriterByFileOnlySaveMany - The DB item writer for file only. + * @param {DBManager} opts.dbManager - The DB manager. + * @param {FlatCountMetrics} opts.flatMetricsTyped - FlatMetricsCount for the typed metrics. + * @param {ISitemapFreshenerFreshenFileMessage} opts.message - The message to freshen. + * @param {s3.S3Client} opts.s3Client - The S3 client. + * @param {string} opts.type - The type of the operation. + * + * @returns {Promise} - A promise that resolves to the result of the freshening operation. + * + * @throws {Error} - Throws an error if the filename is not provided or if the file state could not be loaded. + */ +export async function handleFreshenFileMessage(opts: { + readonly config: IConfig; + readonly dryRun: boolean; + readonly dryRunDB: boolean; + readonly dbItemWriterBothKeysSaveMany: IterableQueueMapperSimple; + readonly dbItemWriterByFileOnlySaveMany: IterableQueueMapperSimple; + readonly dbManager: DBManager; + readonly flatMetricsTyped: FlatCountMetrics; + readonly message: ISitemapFreshenerFreshenFileMessage; + readonly s3Client: s3.S3Client; + readonly type: string; +}): Promise { + const { + config, + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + dbManager, + dryRun, + dryRunDB, + flatMetricsTyped, + message, + s3Client, + type, + } = opts; + const result: Writeable = { message }; + const { filename } = message; + let sitemap: SitemapFileWrapper | undefined = undefined; + + log.options.meta.filename = filename; + + if (filename === undefined || filename === '') { + throw new Error('filename is required for `freshenFile` operation'); + } + + log.info('starting file freshen operation'); + + const fileState = await FileRecord.loadOne(dbManager, { + Type: type, + FileName: filename, + }); + if (fileState === undefined) { + throw new Error( + `could not load file state for \`freshenFile\` operation: ${type}, ${filename}`, + ); + } + log.info('loaded file state', { + fileState: fileState.dbStruct, + }); + + // Get the sitemap items from the DB + let itemRecordsByFile: ItemRecord[] | undefined = await ItemRecord.loadFile( + dbManager, + { + Type: type, + FileName: filename, + }, + true, + ); + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.ItemReceivedFromDB, + itemRecordsByFile.length, + metricUnit.Count, + ); + + const dbItemRecordsByFileMap = keyBy(itemRecordsByFile, (item) => item.ItemID); + // Make sure we only use the map + itemRecordsByFile = undefined; + + try { + const itemRecordsToWriteToDB: ItemRecord[] = []; + const itemRecordsToWriteToSitemap: ItemRecord[] = []; + const itemRecordsToWriteToDBByFileNameOnly: ItemRecord[] = []; + + // + // Loop through S3 Items, cross-checking against DB Items + // + const stats: RepairDBStats = { + s3SitemapItemInDbCountSameFile: 0, + s3SitemapItemInDbCountDiffFile: 0, + s3SitemapItemNotInDbCount: 0, + dbSitemapItemInDbCountSameFile: 0, + dbSitemapItemInDbCountDiffFile: 0, + }; + + if (message.repairDB) { + await prepareRepairDB({ + config, + dbManager, + dbItemRecordsByFileMap, + itemRecordsToWriteToDB, + itemRecordsToWriteToDBByFileNameOnly, + itemRecordsToWriteToSitemap, + filename, + flatMetricsTyped, + message, + stats, + type, + }); + } + + // + // Loop through DB Records + // + const dbItemRecordsByFileMapKeys = Object.keys(dbItemRecordsByFileMap); + log.info('evaluating item statuses', { + dbItemRecordsByFileMapKeys: dbItemRecordsByFileMapKeys.length, + }); + for (const recordKey of dbItemRecordsByFileMapKeys) { + const record = dbItemRecordsByFileMap[recordKey]; + + log.options.meta.itemID = record.ItemID; + + if (record.ItemStatus === 'removed') { + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.ItemAlreadyRemoved, + 1, + metricUnit.Count, + ); + + log.info('skipping item because it is already removed'); + + // Do not add this item to the new sitemap object + continue; + } + + if (record.ItemStatus === 'toremove') { + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.ItemRemoved, 1, metricUnit.Count); + + // Change status from `toremove` to `removed` + record.ClearTimeDirtiedISO(); + itemRecordsToWriteToDB.push(record); + + // Decrement count of items written to the sitemap XML + fileState.RemoveFileItem(); + + // Do not add this item to the new sitemap object + continue; + } + + if (record.ItemStatus === 'towrite') { + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.ItemFreshened, 1, metricUnit.Count); + + // Change status from `toremove` to `removed` + record.ClearTimeDirtiedISO(); + + // Record that we want to write this item to the DB + itemRecordsToWriteToDB.push(record); + } else if (record.ItemStatus === 'written') { + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.ItemPreserved, 1, metricUnit.Count); + } else { + throw new Error('Unknown ItemStatus: ' + record.ItemStatus); + } + + // Record that we want to write this item to the sitemap + itemRecordsToWriteToSitemap.push(record); + } + delete log.options.meta.itemID; + log.info('finished evaluating item statuses', { + itemRecordsToWriteToSitemap: itemRecordsToWriteToSitemap.length, + itemRecordsToWriteToDB: itemRecordsToWriteToDB.length, + dbItemRecordsByFileMapKeys: dbItemRecordsByFileMapKeys.length, + }); + + // Create the new sitemap + sitemap = new SitemapFileWrapper({ + siteBaseURL: config.siteBaseURL, + // Have to preserve the compression setting + // Changing the setting would break the index and duplicate the FileRecord + compress: filename.endsWith('.gz'), + filenameRoot: filename.replace('.xml', '').replace('.gz', ''), + localDirectory: config.localDirectory, + // Gotta fit whatever is in the DB + limitCount: 50000, + // Gotta fit whatever is in the DB + limitBytes: 50 * 1024 * 1024, + }); + + // Cleanup and write to Sitemap + log.info('writing items to the sitemap', { + itemRecordsToWriteToSitemap: itemRecordsToWriteToSitemap.length, + itemRecordsToWriteToDB: itemRecordsToWriteToDB.length, + dbItemRecordsByFileMapKeys: dbItemRecordsByFileMapKeys.length, + }); + let itemIndex = 0; + for (const itemRecord of itemRecordsToWriteToSitemap) { + const { SitemapItem: item } = itemRecord; + + log.options.meta.itemID = itemRecord.ItemID; + + if ( + config.debugItemWrites && + (itemIndex < 2 || itemIndex === itemRecordsToWriteToSitemap.length - 1) + ) { + log.info('cleaning up item', { itemIndex, item }); + } + // Remove invisible and fix path chars + cleanupSitemapItem({ item, flatMetricsTyped }); + if ( + config.debugItemWrites && + (itemIndex < 2 || itemIndex === itemRecordsToWriteToSitemap.length - 1) + ) { + log.info('finished cleaning up item', { itemIndex, item }); + } + + // Write the item to the sitemap + // We disregard limits while writing and re-evaluate the file before writing to S3 + if ( + config.debugItemWrites && + (itemIndex < 2 || itemIndex === itemRecordsToWriteToSitemap.length - 1) + ) { + log.info('writing item', { itemIndex, item }); + } + await sitemap.write({ item, disregardByteLimit: true, disregardCountLimit: true }); + if ( + config.debugItemWrites && + (itemIndex < 2 || itemIndex === itemRecordsToWriteToSitemap.length - 1) + ) { + log.info('finished writing item', { itemIndex, item }); + } + + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.ItemWritten, 1, metricUnit.Count); + + itemIndex++; + } + delete log.options.meta.itemID; + log.info('finished writing items to the sitemap', { + itemRecordsToWriteToSitemap: itemRecordsToWriteToSitemap.length, + itemRecordsToWriteToDB: itemRecordsToWriteToDB.length, + dbItemRecordsByFileMapKeys: dbItemRecordsByFileMapKeys.length, + }); + + // Wait for the sitemap to finish writing + log.info('writing sitemap file to disk', { + sitemapCount: sitemap.count, + }); + await sitemap.end(); + log.info('finished writing sitemap file to disk', { + sitemapCount: sitemap.count, + sizeUncompressedBytesEmitted: sitemap.sizeUncompressedBytesEmitted, + }); + + await evaluateAndWriteResults({ + config, + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + dbManager, + dryRun, + dryRunDB, + filename, + fileState, + flatMetricsTyped, + itemRecordsToWriteToDB, + itemRecordsToWriteToDBByFileNameOnly, + message, + repairStats: stats, + s3Client, + s3SitemapItemInDbCountSameFile: stats.s3SitemapItemInDbCountSameFile, + s3SitemapItemInDbCountDiffFile: stats.s3SitemapItemInDbCountDiffFile, + s3SitemapCountBefore: stats.s3SitemapCountBefore, + sitemap, + type, + }); + + return result; + } finally { + // Delete the sitemap + if (sitemap !== undefined) { + try { + if (!sitemap.ended) { + await sitemap.end(); + } + } catch (err: any) { + log.error(`failed to close sitemap file during cleanup ${sitemap.filenameAndPath}`, err); + } + try { + await sitemap.delete(); + } catch (err: any) { + log.error(`failed to delete sitemap file during cleanup ${sitemap.filenameAndPath}`, err); + } + } + } +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/helpers/cleanup-sitemap-item.ts b/packages/kinesis-sitemap-freshener/src/handlers/helpers/cleanup-sitemap-item.ts new file mode 100644 index 0000000..e233504 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/helpers/cleanup-sitemap-item.ts @@ -0,0 +1,42 @@ +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { SitemapFreshenerTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { escapeProhibitedPathChars, invisibleCharsRegex } from '@shutterstock/sitemaps-utils-lib'; +import traverse from 'traverse'; +import { SitemapItemLoose } from 'sitemap'; + +export function cleanupSitemapItem(opts: { + item: SitemapItemLoose; + flatMetricsTyped: FlatCountMetrics; +}) { + const { item, flatMetricsTyped } = opts; + const url = escapeProhibitedPathChars(new URL(item.url)); + item.url = url.toString(); + + // Scrub all invisible chars + traverse(item).forEach(function (x) { + if (x !== null && x !== undefined && typeof x === 'string') { + if (x.match(invisibleCharsRegex) !== null) { + this.update(x.replace(invisibleCharsRegex, '')); + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.InvisibleCharsScrubbed, + 1, + metricUnit.Count, + ); + } + } + }); + + // Truncate the durations to the nearest second + if (item.video !== undefined) { + if (!Array.isArray(item.video) && item.video.duration !== undefined) { + item.video.duration = Math.floor(item.video.duration); + } else if (Array.isArray(item.video)) { + item.video.forEach((video) => { + if (video.duration !== undefined) { + video.duration = Math.floor(video.duration); + } + }); + } + } +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/helpers/evaluate-results.ts b/packages/kinesis-sitemap-freshener/src/handlers/helpers/evaluate-results.ts new file mode 100644 index 0000000..0e294a2 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/helpers/evaluate-results.ts @@ -0,0 +1,423 @@ +import path from 'path'; +import { promises as fs, pathExists, Stats } from 'fs-extra'; +import * as s3 from '@aws-sdk/client-s3'; +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import { Chunker } from '@shutterstock/chunker'; +import { IterableQueueMapperSimple } from '@shutterstock/p-map-iterable'; +import { DBManager, FileRecord, ItemRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapFreshenerTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { ISitemapFreshenerFreshenFileMessage } from '@shutterstock/sitemaps-models-lib'; +import { SitemapFileWrapper, SitemapWriteWouldOverflow } from '@shutterstock/sitemaps-wrapper-lib'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { IConfig } from '../../config/config'; +import { log } from '../../utils/log'; +import { RepairDBStats } from './repair-db-stats'; +import { SitemapItemLoose } from 'sitemap'; + +/** + * This function evaluates the sitemap and writes the results to the database and S3. + * It checks the size and count of the sitemap, and if it's too big or too small, it writes it to a specific sub-folder. + * It also checks if the sitemap exists locally and on S3, and handles the cases where it doesn't exist in one or both places. + * If the sitemap is valid, it is written to S3 and the database. + * + * @param opts - An object containing various parameters needed for the function. + * @param opts.config - The configuration object. + * @param opts.dryRun - A boolean indicating whether this is a dry run. + * @param opts.dryRunDB - A boolean indicating whether this is a dry run for the database. + * @param opts.dbItemWriterBothKeysSaveMany - A database item writer. + * @param opts.dbItemWriterByFileOnlySaveMany - A database item writer that only saves by file. + * @param opts.dbManager - The database manager. + * @param opts.itemRecordsToWriteToDB - An array of item records to write to the database. + * @param opts.itemRecordsToWriteToDBByFileNameOnly - An array of item records to write to the database by file name only. + * @param opts.filename - The name of the file. + * @param opts.fileState - The state of the file. + * @param opts.flatMetricsTyped - FlatCountMetrics for the typed metrics. + * @param opts.message - The message for the sitemap freshener. + * @param opts.repairStats - The repair database stats. + * @param opts.s3Client - The S3 client. + * @param opts.s3SitemapItemInDbCountSameFile - The count of S3 sitemap items in the database for the same file. + * @param opts.s3SitemapItemInDbCountDiffFile - The count of S3 sitemap items in the database for different files. + * @param opts.s3SitemapCountBefore - The count of S3 sitemaps before. + * @param opts.sitemap - The sitemap file wrapper. + * @param opts.type - The type of the sitemap. + * @returns A promise that resolves when the operation is complete. + * @throws Will throw an error if the sitemap HeadObjectCommand fails. + */ +export async function evaluateAndWriteResults(opts: { + readonly config: IConfig; + readonly dryRun: boolean; + readonly dryRunDB: boolean; + readonly dbItemWriterBothKeysSaveMany: IterableQueueMapperSimple; + readonly dbItemWriterByFileOnlySaveMany: IterableQueueMapperSimple; + readonly dbManager: DBManager; + readonly itemRecordsToWriteToDB: ItemRecord[]; + readonly itemRecordsToWriteToDBByFileNameOnly: ItemRecord[]; + readonly filename: string; + readonly fileState: FileRecord; + readonly flatMetricsTyped: FlatCountMetrics; + readonly message: ISitemapFreshenerFreshenFileMessage; + readonly repairStats: RepairDBStats; + readonly s3Client: s3.S3Client; + readonly s3SitemapItemInDbCountSameFile: number; + readonly s3SitemapItemInDbCountDiffFile: number; + readonly s3SitemapCountBefore?: number; + readonly sitemap: SitemapFileWrapper; + readonly type: string; +}): Promise { + const { + config, + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + dbManager, + dryRun, + dryRunDB, + filename, + fileState, + flatMetricsTyped, + itemRecordsToWriteToDB, + itemRecordsToWriteToDBByFileNameOnly, + message, + repairStats, + s3Client, + s3SitemapItemInDbCountSameFile, + s3SitemapItemInDbCountDiffFile, + s3SitemapCountBefore, + sitemap, + type, + } = opts; + let localSitemapStats: Stats | undefined = undefined; + if (await pathExists(sitemap.filenameAndPath)) { + localSitemapStats = await fs.stat(sitemap.filenameAndPath); + } + + let dryRunMsgPrefix = ''; + if (dryRun) { + dryRunMsgPrefix = 'DRYRUN: '; + } else if (dryRunDB) { + dryRunMsgPrefix = 'DRYRUNDB: '; + } + + const s3DestDirectory = path.posix.join(message.s3DirectoryOverride || config.s3Directory, type); + const s3DestURL = `s3://${path.posix.join( + config.s3SitemapsBucketName, + s3DestDirectory, + filename, + )}`; + + const context: { + localSitemapBytesSize: number; + localSitemapDiskSize?: number; + localCount: number; + dbCount: number; + repairStats: RepairDBStats; + s3SitemapItemInDbCountSameFile?: number; + s3SitemapItemInDbCountDiffFile?: number; + s3SitemapCountBefore?: number; + s3SitemapSizeBefore?: number; + s3Directory: string; + s3URL: string; + } = { + localSitemapBytesSize: sitemap.sizeUncompressedBytesEmitted, + localSitemapDiskSize: localSitemapStats?.size, + localCount: sitemap.count, + dbCount: fileState.CountWritten, + repairStats, + s3SitemapItemInDbCountSameFile, + s3SitemapItemInDbCountDiffFile, + s3SitemapCountBefore, + s3Directory: s3DestDirectory, + s3URL: s3DestURL, + }; + + // Get the size of the sitemap on S3 + let existingSitemapInfo: s3.HeadObjectCommandOutput | undefined = undefined; + try { + existingSitemapInfo = await s3Client.send( + new s3.HeadObjectCommand({ + Bucket: config.s3SitemapsBucketName, + Key: path.posix.join(config.s3Directory, type, sitemap.filename), + }), + ); + } catch (err: any) { + if (!(err instanceof s3.NotFound)) { + log.error(`${dryRunMsgPrefix}sitemap HeadObjectCommand failed`, { ...context, err }); + throw err; + } + log.warn(`${dryRunMsgPrefix}sitemap does not exist on S3`, context); + } + + context.s3SitemapSizeBefore = existingSitemapInfo?.ContentLength; + + // Bail if we have no local sitemap to write at all + if ( + (localSitemapStats === undefined || localSitemapStats.size === 0) && + !(existingSitemapInfo?.ContentLength === undefined || existingSitemapInfo?.ContentLength === 0) + ) { + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.FileFreshenFailed, 1, metricUnit.Count); + log.error(`${dryRunMsgPrefix}local sitemap is empty, but S3 sitemap is not empty`, context); + return; + } else if (localSitemapStats?.size === undefined) { + log.error(`${dryRunMsgPrefix}local sitemap does not exist, skipping upload to S3`, context); + return; + } + + // Use a sub-folder for malformed sitemaps wo we can examine them + let s3DestDirectoryGoodOrBad = s3DestDirectory; + + // Check if the new sitemap got smaller by more than 50% + if ( + existingSitemapInfo?.ContentLength !== undefined && + localSitemapStats?.size !== undefined && + localSitemapStats.size < existingSitemapInfo.ContentLength * 0.5 + ) { + s3DestDirectoryGoodOrBad = path.posix.join(s3DestDirectory, 'freshen-too-small'); + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.FileFreshenTooSmall, + 1, + metricUnit.Count, + ); + const msg = `${dryRunMsgPrefix}local sitemap is too small compared to remote sitemap, writing to ${s3DestDirectoryGoodOrBad}`; + if (dryRun) { + log.warn(msg, context); + } else { + log.error(msg, context); + } + } + + // Check the byte size written through the sitemap stream + // This is the `uncompressed` size even if the destination is gzip + // This counts bytes not chars so \u00A0 is 2 bytes not 1 char + // The limit on Bing/Google sitemap uncompressed sizes is 50 MB not 50 million chars + if (sitemap.sizeUncompressedBytesEmitted > 50 * 1024 * 1024) { + s3DestDirectoryGoodOrBad = path.posix.join(s3DestDirectory, 'freshen-too-big-bytes'); + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.FileFreshenTooBigBytes, + 1, + metricUnit.Count, + ); + const msg = `${dryRunMsgPrefix}local sitemap is too big by bytes, writing to ${s3DestDirectoryGoodOrBad}`; + if (dryRun) { + log.warn(msg, context); + } else { + log.error(msg, context); + } + } + + if (sitemap.count > 50000) { + s3DestDirectoryGoodOrBad = path.posix.join(s3DestDirectory, 'freshen-too-big-count'); + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.FileFreshenTooBigCount, + 1, + metricUnit.Count, + ); + const msg = `${dryRunMsgPrefix}local sitemap is too big by count, writing to ${s3DestDirectoryGoodOrBad}`; + if (dryRun) { + log.warn(msg, context); + } else { + log.error(msg, context); + } + } + + if (sitemap.count === 0) { + const msg = `${dryRunMsgPrefix}local sitemap has count of zero - skipping upload to s3`; + if (dryRun) { + log.warn(msg, context); + } else { + log.error(msg, context); + } + return; + } + + // Write the sitemap to S3 + if (dryRun) { + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.FileFreshenDryRunToS3, + 1, + metricUnit.Count, + ); + log.info(`${dryRunMsgPrefix}pushing updated sitemap to s3`, context); + } else { + log.info(`${dryRunMsgPrefix}pushing updated sitemap to s3`, context); + await sitemap.pushToS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: s3DestDirectoryGoodOrBad, + }); + log.info(`${dryRunMsgPrefix}finished pushing updated sitemap to s3`, context); + + // Create the infixDir copies of the sitemap + for (const infixDir of config.infixDirs) { + // Create a new sitemap file + const infixSitemap = new SitemapFileWrapper({ + ...sitemap.options, + // Make the filenames unique so a path upload mistake does not clobber the main sitemap + ...(sitemap.options.filenameRoot + ? { filenameRoot: `${infixDir}-${sitemap.options.filenameRoot}` } + : {}), + ...(sitemap.options.localDirectory + ? { localDirectory: path.posix.join(sitemap.options.localDirectory, infixDir) } + : {}), + }); + + for (const item of sitemap.items) { + const urlPath = /^https?:/.test(item.url) ? new URL(item.url).pathname : item.url; + const newItem: SitemapItemLoose = { + ...{ + url: path.posix.join('', infixDir, urlPath), + lastmod: item.lastmod, + lastmodISO: item.lastmodISO, + }, + }; + + try { + await infixSitemap.write({ item: newItem }); + } catch (error: any) { + if (error instanceof SitemapWriteWouldOverflow) { + // Not a problem... so this infix sitemap is missing a few items... + continue; + } + + // This is a real error, so throw it + throw error; + } + } + + // Push the file to an infix subdir + await infixSitemap.end(); + await infixSitemap.pushToS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: path.posix.join(s3DestDirectory, infixDir), + }); + await infixSitemap.delete(); + } + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.FileFreshenWrittenToS3, + 1, + metricUnit.Count, + ); + + if (!dryRunDB) { + await flushToDB({ + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + itemRecordsToWriteToDBByFileNameOnly, + itemRecordsToWriteToDB, + fileState, + sitemap, + dbManager, + }); + } else { + log.info(`${dryRunMsgPrefix}dry run, not writing to DB`, context); + } + } +} + +/** + * Flush the DB records + * + * Does NOT check the dryRunDB flag + * + * @param param0 + */ +async function flushToDB({ + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + itemRecordsToWriteToDBByFileNameOnly, + itemRecordsToWriteToDB, + fileState, + sitemap, + dbManager, +}: { + dbItemWriterBothKeysSaveMany: IterableQueueMapperSimple; + dbItemWriterByFileOnlySaveMany: IterableQueueMapperSimple; + itemRecordsToWriteToDBByFileNameOnly: ItemRecord[]; + itemRecordsToWriteToDB: ItemRecord[]; + fileState: FileRecord; + sitemap: SitemapFileWrapper; + dbManager: DBManager; +}) { + const itemChunkerBothKeys = new Chunker({ + countLimit: 25, + // https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html + sizeLimit: 16 * 1024 * 1024 * 0.8, + sizer: (item: ItemRecord): number => { + // This count is not perfect... it's a char count not a byte count + // So we set sizeLimit to 80% of the max + const itemJSON = JSON.stringify(item); + return itemJSON.length; + }, + writer: async (records: ItemRecord[]): Promise => { + // Return immediately if there is a slot, else wait for a slot to free up + await dbItemWriterBothKeysSaveMany.enqueue(records); + }, + }); + + const itemChunkerByFileOnly = new Chunker({ + countLimit: 25, + // https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html + sizeLimit: 16 * 1024 * 1024 * 0.8, + sizer: (item: ItemRecord): number => { + // This count is not perfect... it's a char count not a byte count + // So we set sizeLimit to 80% of the max + const itemJSON = JSON.stringify(item); + return itemJSON.length; + }, + writer: async (records: ItemRecord[]): Promise => { + // Return immediately if there is a slot, else wait for a slot to free up + await dbItemWriterByFileOnlySaveMany.enqueue(records); + }, + }); + + try { + // Update DB to mark items owned by other files as removed + if (itemRecordsToWriteToDBByFileNameOnly.length > 0) { + log.info('pushing ItemRecords owned by other files to dynamodb', { + count: itemRecordsToWriteToDBByFileNameOnly.length, + }); + for (const record of itemRecordsToWriteToDBByFileNameOnly) { + await itemChunkerByFileOnly.enqueue(record); + + if (dbItemWriterByFileOnlySaveMany.errors.length > 0) { + log.error('error writing item to DB', { + errors: dbItemWriterByFileOnlySaveMany.errors, + itemID: record.ItemID, + }); + throw new Error(`error writing item to DB: ${dbItemWriterByFileOnlySaveMany.errors[0]}`); + } + } + log.info('finished pushing ItemRecords owned by other files to dynamodb', { + count: itemRecordsToWriteToDBByFileNameOnly.length, + }); + } + + // Write all the updated or added ItemRecords to the DB + log.info('pushing updated ItemRecords to dynamodb', { count: itemRecordsToWriteToDB.length }); + for (const record of itemRecordsToWriteToDB) { + await itemChunkerBothKeys.enqueue(record); + + if (dbItemWriterBothKeysSaveMany.errors.length > 0) { + log.error('error writing item to DB', { + errors: dbItemWriterBothKeysSaveMany.errors, + itemID: record.ItemID, + }); + throw new Error(`error writing item to DB: ${dbItemWriterBothKeysSaveMany.errors[0]}`); + } + } + log.info('finished pushing ItemRecords records to dynamodb', { + count: itemRecordsToWriteToDB.length, + }); + } finally { + // Flush the DB items before chunker goes out of scope + await itemChunkerBothKeys.onIdle(); + await itemChunkerByFileOnly.onIdle(); + } + + // Write the updated fileState to the DB + log.info('pushing updated FileRecord to dynamodb'); + // Use the count even if we didn't push the sitemap overtop of the S3 sitemap + // This helps find sitemaps with invalid counts via the DB + fileState.CountWritten = sitemap.count; + fileState.ClearTimeDirtiedISO(); + await fileState.save(dbManager); + log.info('finished pushing updated FileRecord to dynamodb'); +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/helpers/extract-itemids.ts b/packages/kinesis-sitemap-freshener/src/handlers/helpers/extract-itemids.ts new file mode 100644 index 0000000..66e70d8 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/helpers/extract-itemids.ts @@ -0,0 +1,48 @@ +import { SitemapFileWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import path from 'path'; +import { SitemapItemLoose } from 'sitemap'; +import { IConfig } from '../../config/config'; + +export type SitemapItemAndItemID = { + item: SitemapItemLoose; + itemID: string; +}; + +/** + * Get all the ItemIDs and SitemapItems for the given Sitemap + * @param opts + * @returns + */ +export async function ExtractItemIDs(opts: { + readonly config: IConfig; + readonly filename: string; + readonly itemIDRegex: RegExp; + readonly type?: string; +}): Promise { + const { config, filename, itemIDRegex, type = '' } = opts; + + // Throws if the file does not exist + const { items } = await SitemapFileWrapper.itemsFromS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: path.posix.join(config.s3Directory, type), + filenameRoot: filename.replace('.xml', '').replace('.gz', ''), + compress: filename.endsWith('.gz'), + }); + + const itemsWithIDs: SitemapItemAndItemID[] = []; + for (const item of items) { + const matches = item.url.match(itemIDRegex); + if (matches === null) { + throw new Error(`\`${item.url}\` does not match \`itemIDRegex\``); + } + if (matches.groups === undefined) { + throw new Error(`\`itemIDRegex\` did not capture any groups at all from \`${item.url}\``); + } + if (matches.groups.ItemID === undefined) { + throw new Error(`\`itemIDRegex\` did not capture \`ItemID\` group from \`${item.url}\``); + } + itemsWithIDs.push({ itemID: matches.groups.ItemID, item }); + } + + return itemsWithIDs; +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/helpers/repair-db-stats.ts b/packages/kinesis-sitemap-freshener/src/handlers/helpers/repair-db-stats.ts new file mode 100644 index 0000000..769a904 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/helpers/repair-db-stats.ts @@ -0,0 +1,13 @@ +export type RepairDBStats = { + // S3 Stats + s3SitemapCountBefore?: number; + s3SitemapCountDeduped?: number; + s3SitemapItemInDbCountSameFile: number; + s3SitemapItemInDbCountDiffFile: number; + s3SitemapItemNotInDbCount: number; + + // DB By-FileName Stats + consolidatedItemIDsDeduped?: number; + dbSitemapItemInDbCountSameFile: number; + dbSitemapItemInDbCountDiffFile: number; +}; diff --git a/packages/kinesis-sitemap-freshener/src/handlers/helpers/repair-db.ts b/packages/kinesis-sitemap-freshener/src/handlers/helpers/repair-db.ts new file mode 100644 index 0000000..9a41453 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/helpers/repair-db.ts @@ -0,0 +1,303 @@ +import batch from 'it-batch'; +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import keyBy from 'lodash/keyBy'; +import uniq from 'lodash/uniq'; +import * as s3 from '@aws-sdk/client-s3'; +import { IterableMapper } from '@shutterstock/p-map-iterable'; +import { DBManager, ItemRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapFreshenerTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { ISitemapFreshenerFreshenFileMessage } from '@shutterstock/sitemaps-models-lib'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { IConfig } from '../../config/config'; +import { log } from '../../utils/log'; +import { SitemapItemAndItemID } from './extract-itemids'; +import { ValidateItemIDRegex } from './validate-itemid-regex'; +import { RepairDBStats } from './repair-db-stats'; + +/** + * Only called when `repairDB` is true in the incoming message + * + * NOTE: Does not write to the DB or S3 + * + * Retrieves the existing sitemap from S3 + * Checks for records in the sitemap that are not in the DB at all + * + * Prepare the list of records to add to the DB + * Prepare the list of records to set to `removed` to the DB + * if owned by another file + * Prepare the list of additional records to write to the new sitemap + * + * @param opts + */ +export async function prepareRepairDB(opts: { + readonly config: IConfig; + readonly dbItemRecordsByFileMap: Record; + readonly itemRecordsToWriteToDB: ItemRecord[]; + readonly itemRecordsToWriteToDBByFileNameOnly: ItemRecord[]; + readonly itemRecordsToWriteToSitemap: ItemRecord[]; + readonly dbManager: DBManager; + readonly filename: string; + readonly flatMetricsTyped: FlatCountMetrics; + readonly message: ISitemapFreshenerFreshenFileMessage; + readonly type: string; + readonly stats: RepairDBStats; +}) { + const { + config, + dbManager, + dbItemRecordsByFileMap, + itemRecordsToWriteToDB, + itemRecordsToWriteToDBByFileNameOnly, + itemRecordsToWriteToSitemap, + filename, + flatMetricsTyped, + message, + stats, + type, + } = opts; + + if (!message.repairDB) { + throw new Error('prepareRepairDB called when repairDB is false'); + } + + log.info('starting repairDB step'); + + log.info('loading existing sitemap from S3'); + let s3ItemsWithIDs: SitemapItemAndItemID[] | undefined = []; + try { + const ugh = await ValidateItemIDRegex({ + config, + itemIDRegexStr: message.itemIDRegex, + filename, + type, + quiet: true, + }); + s3ItemsWithIDs = ugh.itemsWithIDs; + } catch (err: any) { + if (err instanceof s3.NoSuchKey) { + s3ItemsWithIDs = []; + log.error('repairDB got `NoSuchKey` from S3', { + type, + filename, + s3BucketName: config.s3SitemapsBucketName, + }); + } else { + throw err; + } + } + stats.s3SitemapCountBefore = s3ItemsWithIDs.length; + const s3ItemsWithIDsMap = keyBy(s3ItemsWithIDs, (item) => item.itemID); + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.ItemReceivedFromS3, + stats.s3SitemapCountBefore, + metricUnit.Count, + ); + + // Initially the Sitemap writing did not de-dupe so sometimes there are duplicates + // in the XML files. Use the Map to de-dupe. + // DynamoDB BatchGets will throw if there are duplicate keys + const s3ItemsIDsDeduped = Object.keys(s3ItemsWithIDsMap); + stats.s3SitemapCountDeduped = s3ItemsIDsDeduped.length; + + log.info('finished loading existing sitemap from S3', { + s3SitemapCountBefore: stats.s3SitemapCountBefore, + s3SitemapCountDeduped: s3ItemsIDsDeduped.length, + }); + + // Get the consolidated list of unique itemIDs + // seen across both the DB item-by-file-list and the S3 file + const consolidatedItemIDs = s3ItemsIDsDeduped.slice(); + if (config.repairDBFileItemList) { + Array.prototype.push.apply(consolidatedItemIDs, Object.keys(dbItemRecordsByFileMap)); + } + const consolidatedItemIDsDeduped = uniq(consolidatedItemIDs); + stats.consolidatedItemIDsDeduped = consolidatedItemIDsDeduped.length; + if (config.repairDBFileItemList) { + log.info('unique DB item IDs by filename + S3 item IDs', { + consolidatedItemIDsDeduped: consolidatedItemIDsDeduped.length, + }); + } else { + log.info('unique S3 item IDs only', { + consolidatedItemIDsDeduped: consolidatedItemIDsDeduped.length, + }); + } + + // Fetch the ByItemID records for the DB + S3 sitemap file items + // This needed to find records that were dual-written to another file + const prefetchConsolidatedItemRecordsByItem = new IterableMapper( + batch(consolidatedItemIDsDeduped, 50), + // eslint-disable-next-line @typescript-eslint/require-await + async (itemObjs) => + ItemRecord.loadMany( + dbManager, + itemObjs.map((value) => { + return { + ItemID: value, + Type: type, + }; + }), + false, + false, + ), + { concurrency: 2, maxUnread: 6 }, + ); + + // Make sure we only use the map, which has items that do not belong + // to this file removed + s3ItemsWithIDs = undefined; + + const consolidatedItemRecordsByItem: Record = {}; + for await (const itemRecordByItemIDBatch of prefetchConsolidatedItemRecordsByItem) { + for (const itemRecordByItemID of itemRecordByItemIDBatch) { + consolidatedItemRecordsByItem[itemRecordByItemID.ItemID] = itemRecordByItemID; + } + } + + const itemRecordsToWriteToDBByFileNameOnlyMap: Record = {}; + + // If an item is owned by another file we need to remove it from our file + // If there is no ByItemID record, at all, for this item, we need to add it to our file + for (const s3ItemKey of Object.keys(s3ItemsWithIDsMap)) { + const s3Item = s3ItemsWithIDsMap[s3ItemKey]; + const dbItemByFileName = dbItemRecordsByFileMap[s3Item.itemID]; + const s3ItemRecordByItem = consolidatedItemRecordsByItem[s3Item.itemID]; + + if (s3ItemRecordByItem !== undefined && s3ItemRecordByItem.FileName !== filename) { + // Some other file has this item + stats.s3SitemapItemInDbCountDiffFile++; + + // This item was written to a different file + // Update our record to say we no longer own this item + // Do NOT update the `itemID#[itemID]#type#[type]` key + // as that would steal ownership of the item back to us + // This is a weird case worthy of logging + log.warn('item was written to a different file - skipping', { + itemID: s3ItemRecordByItem.ItemID, + owningFileName: s3ItemRecordByItem.FileName, + source: 's3', + }); + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.ItemRemovedS3NotOwned, + 1, + metricUnit.Count, + ); + + // Do not iterate as an item legitimately in the DB assigned to this file + delete dbItemRecordsByFileMap[s3ItemRecordByItem.ItemID]; + + // Change the filename to ours so we update only our record for this item + s3ItemRecordByItem.FileName = filename; + + // Update only the ItemRecordByFileName to mark this as toRemove + s3ItemRecordByItem.ResetTimeDirtiedISO({ toRemove: true }); + // Flip the status to removed + s3ItemRecordByItem.ClearTimeDirtiedISO(); + + // Set the SitemapItem to the one read from S3 + s3ItemRecordByItem.SitemapItem = s3Item.item; + + // Record this record for special save handling to update + // only the ByFileName record + itemRecordsToWriteToDBByFileNameOnlyMap[s3ItemRecordByItem.ItemID] = s3ItemRecordByItem; + } else if (dbItemByFileName !== undefined) { + // Item exists in DB and is assigned to our file, so we can skip it + stats.s3SitemapItemInDbCountSameFile++; + continue; + } else { + // Item is not listed with our File and has no ItemID record at all + stats.s3SitemapItemNotInDbCount++; + const record = new ItemRecord({ + Type: type, + FileName: filename, + ItemID: s3Item.itemID, + SitemapItem: s3Item.item, + ItemStatus: 'written', + }); + + // Item is not in the DB, we need to re-add the DB record + itemRecordsToWriteToDB.push(record); + // Also need to write the item back to the sitemap + itemRecordsToWriteToSitemap.push(record); + + // The ItemCount for the FileRecord might not be correct + // We should overwrite it at the end + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.ItemRepaired, 1, metricUnit.Count); + + // This item was written to this file but has no record of this in the DB + // The item does not have an ItemID-keyed record either so we can + // record this item in the DB as beloning to this file + log.warn('item in S3 file has no DB record - repairing', { + itemID: s3Item.itemID, + source: 's3', + }); + } + } + + // If an item is owned by another file we need to remove it from our file + // If there is no ByItemID record, at all, for this item, we need to add it to our file + if (config.repairDBFileItemList) { + for (const dbItemKey of Object.keys(dbItemRecordsByFileMap)) { + const dbItemByFileName = dbItemRecordsByFileMap[dbItemKey]; + const dbItemRecordByItem = consolidatedItemRecordsByItem[dbItemKey]; + + if (dbItemByFileName.ItemStatus === 'removed') { + continue; + } + + if (dbItemRecordByItem !== undefined && dbItemRecordByItem.FileName !== filename) { + // Some other file has this item + stats.dbSitemapItemInDbCountDiffFile++; + + // This item was written to a different file + // Update our record to say we no longer own this item + // Do NOT update the `itemID#[itemID]#type#[type]` key + // as that would steal ownership of the item back to us + // This is a weird case worthy of logging + log.warn('item was written to a different file - skipping', { + itemID: dbItemKey, + owningFileName: dbItemRecordByItem.FileName, + source: 'db', + }); + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.ItemRemovedDBNotOwned, + 1, + metricUnit.Count, + ); + + // Do not iterate as an item legitimately in the DB assigned to this file + delete dbItemRecordsByFileMap[dbItemKey]; + + // Change the filename to ours so we update only our record for this item + dbItemRecordByItem.FileName = filename; + + // Update only the ItemRecordByFileName to mark this as toRemove + dbItemRecordByItem.ResetTimeDirtiedISO({ toRemove: true }); + // Flip the status to removed + dbItemRecordByItem.ClearTimeDirtiedISO(); + + // Echo back the SitemapItem from the ByFileName record + dbItemRecordByItem.SitemapItem = dbItemByFileName.SitemapItem; + + // Record this record for special save handling to update + // only the ByFileName record + itemRecordsToWriteToDBByFileNameOnlyMap[dbItemRecordByItem.ItemID] = dbItemRecordByItem; + } else { + // This file still owns this item + stats.dbSitemapItemInDbCountSameFile++; + } + } + } + + // Consolidate the list of by-filename-only ItemRecords to update + Array.prototype.push.apply( + itemRecordsToWriteToDBByFileNameOnly, + Object.values(itemRecordsToWriteToDBByFileNameOnlyMap), + ); + + log.info('finished repairDB step', { + repairStats: stats, + }); +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/helpers/validate-itemid-regex.ts b/packages/kinesis-sitemap-freshener/src/handlers/helpers/validate-itemid-regex.ts new file mode 100644 index 0000000..a19d059 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/helpers/validate-itemid-regex.ts @@ -0,0 +1,39 @@ +import { IConfig } from '../../config/config'; +import { ExtractItemIDs, SitemapItemAndItemID } from './extract-itemids'; + +/** + * Validate the itemIDRegexStr against an existing sitemap.xml on S3 by + * confirming that it extracts the ItemIDs from the sitemap.xml. + * + * Return a RegExp if the validation succeeds, otherwise throw. + * + * @param opts + * @returns + */ +export async function ValidateItemIDRegex(opts: { + readonly config: IConfig; + readonly filename: string; + readonly itemIDRegexStr?: string; + readonly quiet?: boolean; + readonly type?: string; +}): Promise<{ itemIDRegex: RegExp; itemsWithIDs: SitemapItemAndItemID[] }> { + const { config, filename, itemIDRegexStr, quiet = false, type } = opts; + + if (!itemIDRegexStr) { + throw new Error('`itemIDRegexStr` is required'); + } + if (!itemIDRegexStr.includes('(?')) { + throw new Error('`itemIDRegex` must contain the `(?...)` placeholder'); + } + + const itemIDRegex = new RegExp(itemIDRegexStr); + const itemIDs = await ExtractItemIDs({ config, filename, itemIDRegex, type }); + + if (itemIDs.length === 0) { + if (!quiet) { + throw new Error(`Sitemap ${filename} is empty, cannot test \`itemIDRegex\``); + } + } + + return { itemIDRegex, itemsWithIDs: itemIDs }; +} diff --git a/packages/kinesis-sitemap-freshener/src/handlers/start.ts b/packages/kinesis-sitemap-freshener/src/handlers/start.ts new file mode 100644 index 0000000..557a4e9 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/handlers/start.ts @@ -0,0 +1,143 @@ +import { DBManager, FileRecord, ShardStateRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapFreshenerTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { + ISitemapFreshenerFreshenFileMessage, + ISitemapFreshenerStartMessage, + ISitemapFreshenerStartResult, +} from '@shutterstock/sitemaps-models-lib'; +import keyBy from 'lodash/keyBy'; +import { ValidateItemIDRegex } from './helpers/validate-itemid-regex'; +import { log } from '../utils/log'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import { Chunker } from '@shutterstock/chunker'; +import * as kinesis from '@aws-sdk/client-kinesis'; +import { IConfig } from '../config/config'; + +type Writeable = { -readonly [P in keyof T]: T[P] }; + +/** + * Handles the start message for the sitemap freshener. This function is responsible for reading all filenames for a given type, + * validating the regex against the first Sitemap on S3 if repairDB is true, loading all the shard states for the given type, + * and dumping a `freshenFile` message into the stream for each file. + * + * @param {Object} opts - The options for the function. + * @param {Chunker} opts.chunkerStream - The chunker stream. + * @param {IConfig} opts.config - The configuration object. + * @param {boolean} opts.dryRun - A flag indicating whether this is a dry run. + * @param {boolean} opts.dryRunDB - A flag indicating whether this is a dry run for the DB. + * @param {DBManager} opts.dbManager - The DB manager. + * @param {FlatCountMetrics} opts.flatMetricsTyped - FlatMetricsCount for the typed metrics. + * @param {ISitemapFreshenerStartMessage} opts.message - The start message. + * @param {string} opts.type - The type of the operation. + * + * @returns {Promise} - A promise that resolves to the result of the start operation. + * + * @throws {Error} - Throws an error if no files are found for the given type. + */ +export async function handleStartMessage(opts: { + readonly chunkerStream: Chunker; + readonly config: IConfig; + readonly dryRun: boolean; + readonly dryRunDB: boolean; + readonly dbManager: DBManager; + readonly flatMetricsTyped: FlatCountMetrics; + readonly message: ISitemapFreshenerStartMessage; + readonly type: string; +}): Promise { + const { chunkerStream, config, dbManager, dryRun, dryRunDB, flatMetricsTyped, message, type } = + opts; + const result: Writeable = { message }; + + // Read all the filenames for this type + const files = await FileRecord.loadType(dbManager, { + Type: type, + }); + if (files.length === 0) { + throw new Error('No files found for type: ' + type); + } + result.filesOfType = files.length; + + // Validate the regex against first Sitemap on S3 + if (message.repairDB) { + const validateResult = await ValidateItemIDRegex({ + config, + itemIDRegexStr: message.itemIDRegex, + filename: files[0].FileName, + type, + }); + + result.urlRegexValid = true; + result.itemIDsSample = validateResult.itemsWithIDs + .map((item) => ({ + itemID: item.itemID, + url: item.item.url, + })) + .slice(0, 10); + + log.info('validated itemIDRegex', { + filename: files[0].FileName, + itemIDRegexStr: message.itemIDRegex, + itemIDsSample: result.itemIDsSample, + }); + } + + // Load all the shard states for this type + // We use this to skip file that are both: + // - The `CurrentFile` for a shard + // - `LastWritten` within the last 24 hours + const shardStates = await ShardStateRecord.loadType(dbManager, { + Type: type, + }); + const shardStateByFileName = keyBy(shardStates, (shardState) => shardState.CurrentFileName); + result.filesWritten = 0; + result.filesSkippedActive = 0; + + // Dump a `freshenFile` message into this stream for each file + for (const file of files) { + log.options.meta.filename = file.FileName; + + const item: ISitemapFreshenerFreshenFileMessage = { + operation: 'freshenFile', + dryRun, + dryRunDB, + type, + filename: file.FileName, + s3DirectoryOverride: message.s3DirectoryOverride, + itemIDRegex: message.itemIDRegex, + repairDB: message.repairDB, + }; + + // Check if file is being actively written to by a shard + const shardState = shardStateByFileName[file.FileName]; + if (shardState !== undefined) { + if (Date.now() - new Date(shardState.TimeLastWrittenISO).getTime() < 1000 * 60 * 60 * 24) { + result.filesSkippedActive++; + + log.info('skipping file because it is being actively written to by a shard', { + shardState: shardState.dbStruct, + }); + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.FileOpSkippedActive, + 1, + metricUnit.Count, + ); + continue; + } + } + + // Write back to our own stream + // Tell the chunker to write the item, eventually + const dataBuffer = Buffer.from(JSON.stringify(item), 'utf-8'); + await chunkerStream.enqueue({ + Data: dataBuffer, + PartitionKey: `operation#${item.operation}#type#${item.type}#filename#${file.FileName}#`, + }); + + flatMetricsTyped.putMetric(SitemapFreshenerTypedMetrics.FileOpWritten, 1, metricUnit.Count); + result.filesWritten++; + } + + return result; +} diff --git a/packages/kinesis-sitemap-freshener/src/index.metrics.test.ts b/packages/kinesis-sitemap-freshener/src/index.metrics.test.ts new file mode 100644 index 0000000..aa9ab2d --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/index.metrics.test.ts @@ -0,0 +1,58 @@ +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { getFlatCountMetricsForType, flushTypedMetrics } from '.'; +import { MetricsLogger, Unit } from 'aws-embedded-metrics'; + +describe('getFlatCountMetricsForType', () => { + let flatMetricsTypedMap: Map; + let metrics: MetricsLogger; + let newMetrics: MetricsLogger; + + beforeEach(() => { + flatMetricsTypedMap = new Map(); + // @ts-expect-error incomplete for tests + newMetrics = { + flush: jest.fn().mockResolvedValue(undefined), + putDimensions: jest.fn(), + putMetric: jest.fn(), + }; + // @ts-expect-error incomplete for tests + metrics = { + new: jest.fn().mockReturnValue(newMetrics), + flush: jest.fn().mockResolvedValue(undefined), + putDimensions: jest.fn(), + putMetric: jest.fn(), + }; + }); + + it('should return existing FlatCountMetrics for a type', () => { + const existingMetrics = new FlatCountMetrics(); + flatMetricsTypedMap.set('existingType', existingMetrics); + + const result = getFlatCountMetricsForType('existingType', flatMetricsTypedMap); + + expect(result).toBe(existingMetrics); + }); + + it('should create and return new FlatCountMetrics for a type if it does not exist', () => { + const result = getFlatCountMetricsForType('newType', flatMetricsTypedMap); + + expect(result).toBeInstanceOf(FlatCountMetrics); + expect(flatMetricsTypedMap.get('newType')).toBe(result); + }); + + it('should output single value metrics', async () => { + const flatMetricsTyped = { + putMetric: jest.fn(), + flush: jest.fn(), + } as unknown as FlatCountMetrics; + flatMetricsTyped.putMetric('SomeMetric', 1, Unit.Count); + flatMetricsTypedMap.set('type', flatMetricsTyped); + + await flushTypedMetrics(flatMetricsTypedMap, metrics); + + expect(metrics.new).toHaveBeenCalled(); + expect(newMetrics.putDimensions).toHaveBeenCalled(); + expect(newMetrics.flush).toHaveBeenCalled(); + expect(flatMetricsTyped.flush).toHaveBeenCalled(); + }); +}); diff --git a/packages/kinesis-sitemap-freshener/src/index.test.ts b/packages/kinesis-sitemap-freshener/src/index.test.ts new file mode 100644 index 0000000..6aa38b1 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/index.test.ts @@ -0,0 +1,2059 @@ +/* eslint-disable no-console */ +//#region Imports +//index.test.ts +/// +import 'jest-dynalite/withDb'; +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +// Config has to be mocked before the handler is imported because +// the handler accesses the static Config.instance at file scope. +// Note: jest.spyOn(Config, 'instance', 'get').mockImplementation(...) +// does not work here because Config.instance is a static class property +// not an object property. +import { Config, IConfig } from './config/config'; +jest.mock('./config/config'); +type Writeable = { -readonly [P in keyof T]: T[P] }; +const theConfig: Writeable = { + awsAccountID: 123456, + awsRegion: 'mock', + metricsNamespace: 'some/metrics/namespace', + siteBaseURL: 'https://www.example.com', + s3SitemapsBucketName: 'doc-example-bucket', + emitMetrics: false, + logSilent: true, + localDirectory: '/tmp/sitemaps', + s3Directory: 'sitemaps/', + siteBaseSitemapPath: 'sitemaps', + tableName: 'sitemaps', + dynamoDBConcurrentWrites: 1, + kinesisSelfStreamName: 'sitemap-stream', + nonDryRunAllowed: false, + captureHeapDumps: false, + repairDBFileItemList: true, + debugItemWrites: false, + infixDirs: [], +}; +const origConfig = { ...theConfig }; +Object.defineProperty(Config, 'instance', { + configurable: false, + enumerable: false, + get: function (): IConfig { + return theConfig; + }, +}); +import { handler, overrideDBManager } from './index'; +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import * as s3 from '@aws-sdk/client-s3'; +import * as kinesis from '@aws-sdk/client-kinesis'; +import type * as lambda from 'aws-lambda'; +import type { + ISitemapFreshenerStartMessage, + ISitemapFreshenerFreshenFileMessage, + ISitemapFreshenerStartResult, +} from '@shutterstock/sitemaps-models-lib'; +import { mockClient, AwsClientStub } from 'aws-sdk-client-mock'; +import { DBManager, FileRecord, ItemRecord } from '@shutterstock/sitemaps-db-lib'; +import path from 'path'; +import { Readable } from 'stream'; +import { SitemapFileWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import { createGzip } from 'zlib'; +import { inspect } from 'util'; +import type { StreamingBlobPayloadOutputTypes } from '@smithy/types'; +//#endregion + +// skipping for now to debug tests not finishing +describe('Sitemap Freshener index.ts', () => { + let s3Client: AwsClientStub; + let kinesisClient: AwsClientStub; + const siteBaseURL = 'https://www.example.com'; + const s3SitemapsBucketName = 'doc-example-bucket'; + let dynamoClient: DynamoDBClient; + let dbManager: DBManager; + + beforeAll(() => { + // console.log(`endpoint: ${process.env.MOCK_DYNAMODB_ENDPOINT}`); + dynamoClient = new DynamoDBClient({ + endpoint: process.env.MOCK_DYNAMODB_ENDPOINT, + tls: false, + region: 'local', + }); + dbManager = new DBManager({ client: dynamoClient, tableName: theConfig.tableName }); + }); + afterAll(() => { + dynamoClient.destroy(); + }); + + beforeEach(async () => { + jest.resetModules(); // Most important - it clears the cache + + // Reset the config that's visible to the handler back to defaults + Object.keys(origConfig).map((key) => { + // @ts-expect-error we know the fields match + theConfig[key] = origConfig[key]; + }); + s3Client = mockClient(s3.S3Client); + kinesisClient = mockClient(kinesis.KinesisClient); + overrideDBManager({ dbManager, dynamoClient }); + + // + // Add FileRecords + // + await new FileRecord({ + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + FileStatus: 'dirty', + CountWritten: 4, + }).save(dbManager); + + await new FileRecord({ + FileName: 'sitemap-00002.xml.gz', + Type: 'widget', + FileStatus: 'dirty', + CountWritten: 4, + }).save(dbManager); + + // Add file that has no records and does not exist on S3 + await new FileRecord({ + FileName: 'sitemap-00003.xml.gz', + Type: 'widget', + FileStatus: 'written', + CountWritten: 4, + }).save(dbManager); + + // Add a record for another type that we should not see + await new FileRecord({ + FileName: 'sitemap-00002.xml.gz', + Type: 'acme', + FileStatus: 'written', + CountWritten: 4, + }).save(dbManager); + + // + // Add items to sitemap-00001.xml.gz + // + await new ItemRecord({ + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + ItemID: '00011', + SitemapItem: { + url: 'https://example.com/item-00011', + }, + ItemStatus: 'toremove', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + ItemID: '00012', + SitemapItem: { + url: 'https://example.com/item-00012', + }, + ItemStatus: 'towrite', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + ItemID: '00013', + SitemapItem: { + url: 'https://example.com/item-00013', + }, + ItemStatus: 'written', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + ItemID: '00014', + SitemapItem: { + url: 'https://example.com/item-00014', + }, + ItemStatus: 'written', + }).save(dbManager); + + // Add item to sitemap-00001.xml.gz then stomp on it and say it's owned by another file + await new ItemRecord({ + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + ItemID: '00015', + SitemapItem: { + url: 'https://example.com/item-00015', + }, + ItemStatus: 'written', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00004.xml.gz', + Type: 'widget', + ItemID: '00015', + SitemapItem: { + url: 'https://example.com/item-00015', + }, + ItemStatus: 'written', + }).save(dbManager); + + // + // Add items to file sitemap-00002.xml.gz + // + await new ItemRecord({ + FileName: 'sitemap-00002.xml.gz', + Type: 'widget', + ItemID: '00021', + SitemapItem: { + url: 'https://example.com/item-00021', + }, + ItemStatus: 'written', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00002.xml.gz', + Type: 'widget', + ItemID: '00022', + SitemapItem: { + url: 'https://example.com/item-00022', + }, + ItemStatus: 'written', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00002.xml.gz', + Type: 'widget', + ItemID: '00023', + SitemapItem: { + url: 'https://example.com/item-00023', + }, + ItemStatus: 'written', + }).save(dbManager); + await new ItemRecord({ + FileName: 'sitemap-00002.xml.gz', + Type: 'widget', + ItemID: '00024', + SitemapItem: { + url: 'https://example.com/item-00024', + }, + ItemStatus: 'written', + }).save(dbManager); + }); + + describe('operation: start', () => { + describe('direct invoke', () => { + it('normal invoke - dryRun not passed', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + type: 'widget', + }, + ]; + + const result = await handler( + { + Records: items, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(result).toBeDefined(); + const resultTyped = result as ISitemapFreshenerStartResult[]; + expect(resultTyped.length).toBe(1); + expect(resultTyped[0]).toBeDefined(); + expect(resultTyped[0].message).toBeDefined(); + expect(resultTyped[0].message).toEqual(items[0]); + expect(resultTyped[0].filesOfType).toBe(3); + expect(resultTyped[0].filesWritten).toBe(3); + expect(resultTyped[0].filesSkippedActive).toBe(0); + + expect(kinesisClient.calls().length).toBe(1); + + const putRecords = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(putRecords.input.Records?.length).toBe(3); + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00001.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + }); + } + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![1]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00002.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + }); + } + }); + }); + + it('normal invoke - dryRun not passed', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + type: 'widget', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(1); + + const putRecords = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(putRecords.input.Records?.length).toBe(3); + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00001.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + }); + } + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![1]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00002.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + }); + } + }); + + it('normal invoke - dryRun explicitly false - non-dryRun not allowed', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + dryRun: false, + dryRunDB: false, + type: 'widget', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(0); + }); + + it('normal invoke - dryRun explicitly false - non-dryRun allowed', async () => { + theConfig.nonDryRunAllowed = true; + + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + dryRun: false, + dryRunDB: false, + type: 'widget', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(1); + + const putRecords = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(putRecords.input.Records?.length).toBe(3); + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00001.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + }); + } + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![1]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00002.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + }); + } + }); + + it('normal invoke - dryRun explicitly true', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + dryRun: true, + dryRunDB: true, + type: 'widget', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(1); + + const putRecords = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(putRecords.input.Records?.length).toBe(3); + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00001.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + }); + } + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![1]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00002.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + }); + } + }); + + it('s3DirectoryOverride', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + type: 'widget', + s3DirectoryOverride: 'non-default-path/', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(1); + + const putRecords = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(putRecords.input.Records?.length).toBe(3); + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00001.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + s3DirectoryOverride: 'non-default-path/', + }); + } + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![1]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00002.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + s3DirectoryOverride: 'non-default-path/', + }); + } + }); + + it('repairDB - validate against file', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .callsFake((input) => { + console.info(inspect(input, true, 10, true)); + }) + .rejects() + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/widget-123456789-super-sale-50%25-off + weekly + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + type: 'widget', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/widget-(?[0-9]+)', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(1); + expect(s3Client.calls().length).toBe(1); + + const putRecords = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(putRecords.input.Records?.length).toBe(3); + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00001.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/widget-(?[0-9]+)', + }); + } + + { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = putRecords.input.Records![1]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe( + 'operation#freshenFile#type#widget#filename#sitemap-00002.xml.gz#', + ); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapFreshenerFreshenFileMessage; + // The new record should be equal + expect(data0).toEqual({ + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/widget-(?[0-9]+)', + }); + } + }); + + it('repairDB - throws if cannot extract ItemID from even 1 URL', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .callsFake((input) => { + console.info(inspect(input, true, 10, true)); + }) + .rejects() + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/widget-123456789-super-sale-50%25-off + + + https://www.example.com/widget-abcdefg-super-sale-50%25-off + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }); + + const items: ISitemapFreshenerStartMessage[] = [ + { + operation: 'start', + type: 'widget', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/widget-(?[0-9]+)', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await expect(async () => + handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ), + ).rejects.toThrowError( + '`https://www.example.com/widget-abcdefg-super-sale-50%25-off` does not match `itemIDRegex`', + ); + + expect(kinesisClient.calls().length).toBe(0); + expect(s3Client.calls().length).toBe(1); + }); + }); + + describe('operation: freshenFile', () => { + it('normal invoke', async () => { + theConfig.nonDryRunAllowed = true; + kinesisClient.onAnyCommand().rejects(); + s3Client + .onAnyCommand() + .rejects() + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NotFound({ $metadata: { httpStatusCode: 404 }, message: 'NotFound' })) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({}) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join('non-default-path/', 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({}) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join('non-default-path/', 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .resolves({}); + + const items: ISitemapFreshenerFreshenFileMessage[] = [ + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + }, + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + s3DirectoryOverride: 'non-default-path/', + }, + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00003.xml.gz', + s3DirectoryOverride: 'non-default-path/', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(0); + + expect(s3Client.calls().length).toBe(5); + + // Validate that the FileRecord has status `written` + const fileRecords = await FileRecord.loadType(dbManager, { Type: 'widget' }); + expect(fileRecords.length).toBe(3); + for (const fileRecord of fileRecords) { + expect(fileRecord).toBeInstanceOf(FileRecord); + expect(fileRecord.FileStatus).toBe('written'); + + // Validate that the ItemRecord's all have ItemStatus `written` + const itemRecords = await ItemRecord.loadFile(dbManager, { + FileName: fileRecord.FileName, + Type: fileRecord.Type, + }); + + if (fileRecord.FileName === 'sitemap-00003.xml.gz') { + continue; + } + + expect(itemRecords.length).toBeGreaterThan(0); + for (const itemRecord of itemRecords) { + expect(itemRecord).toBeInstanceOf(ItemRecord); + expect(itemRecord.ItemStatus).toMatch(/written|removed/); + } + } + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + { + const s3SitemapPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: s3SitemapPutCommand.input.Key, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/widget/', + filenameRoot: 'sitemap-00001', + compress: true, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + // 1 `toremove` item is removed from original 4 + // Note: the item owned by another file is not removed because `repairDB` is not set + expect(sitemap.count).toBe(4); + } + + { + const s3SitemapPutCommand = s3Client.call(3).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: s3SitemapPutCommand.input.Key, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'non-default-path/widget/', + filenameRoot: 'sitemap-00002', + compress: true, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(4); + } + }, 60000); + + it('s3 dry run', async () => { + kinesisClient.onAnyCommand().rejects(); + s3Client + .onAnyCommand() + .rejects() + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }); + + const items: ISitemapFreshenerFreshenFileMessage[] = [ + { + operation: 'freshenFile', + type: 'widget', + filename: 'sitemap-00001.xml.gz', + }, + { + operation: 'freshenFile', + type: 'widget', + filename: 'sitemap-00002.xml.gz', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(0); + + expect(s3Client.calls().length).toBe(2); + }); + + it('repairDB', async () => { + theConfig.nonDryRunAllowed = true; + kinesisClient.onAnyCommand().rejects(); + s3Client + .onAnyCommand() + .callsFake((input) => { + console.info(inspect(input, true, 10, true)); + }) + .rejects() + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/item-10001-super-sale-50%25-off + weekly + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }) + + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/item-10002-super-sale-50%25-off + weekly + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NoSuchKey({ $metadata: { httpStatusCode: 404 }, message: 'NoSuchKey' })) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NotFound({ $metadata: { httpStatusCode: 404 }, message: 'NotFound' })) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({}) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join('non-default-path/', 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({}); + + const items: ISitemapFreshenerFreshenFileMessage[] = [ + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + s3DirectoryOverride: 'non-default-path/', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00003.xml.gz', + s3DirectoryOverride: 'non-default-path/', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(0); + + expect(s3Client.calls().length).toBe(8); + + // Validate that the FileRecord has status `written` + const fileRecords = await FileRecord.loadType(dbManager, { Type: 'widget' }); + expect(fileRecords.length).toBe(3); + for (const fileRecord of fileRecords) { + expect(fileRecord).toBeInstanceOf(FileRecord); + expect(fileRecord.FileStatus).toMatch(/^written|empty$/); + + // Validate that the ItemRecord's all have ItemStatus `written` + const itemRecords = await ItemRecord.loadFile( + dbManager, + { + FileName: fileRecord.FileName, + Type: fileRecord.Type, + }, + true, + ); + + if (fileRecord.FileName !== 'sitemap-00003.xml.gz') { + const newRecords = itemRecords.filter((value) => { + return value.ItemID === '10002' || value.ItemID === '10001'; + }); + expect(newRecords.length).toBe(1); + expect(newRecords[0].SitemapItem).toBeDefined(); + expect(newRecords[0].SitemapItem.url).toContain('super-sale-50%25-off'); + + expect(itemRecords.length).toBeGreaterThan(0); + for (const itemRecord of itemRecords) { + expect(itemRecord).toBeInstanceOf(ItemRecord); + expect(itemRecord.ItemStatus).toMatch(/written|removed/); + } + } + } + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + { + const s3SitemapPutCommand = s3Client.call(2).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: s3SitemapPutCommand.input.Key, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/widget/', + filenameRoot: 'sitemap-00001', + compress: true, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + // 1 item added from existing XML, 3 items added from DB + expect(sitemap.count).toBe(4); + } + + { + const s3SitemapPutCommand = s3Client.call(5).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: s3SitemapPutCommand.input.Key, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'non-default-path/widget/', + filenameRoot: 'sitemap-00002', + compress: true, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + // 1 item added from existing XML, 4 items added from DB + expect(sitemap.count).toBe(5); + } + }, 60000); + + it('repairDB - items present in wrong S3 files are removed', async () => { + theConfig.nonDryRunAllowed = true; + kinesisClient.onAnyCommand().rejects(); + s3Client + .onAnyCommand() + .callsFake((input) => { + console.info(inspect(input, true, 10, true)); + }) + .rejects() + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/item-10001-super-sale-50%25-off + weekly + + + https://www.example.com/item-00021 + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/item-10002-super-sale-50%25-off + weekly + + + https://www.example.com/item-00011 + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NoSuchKey({ $metadata: { httpStatusCode: 404 }, message: 'NoSuchKey' })) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NotFound({ $metadata: { httpStatusCode: 404 }, message: 'NotFound' })) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({}) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join('non-default-path/', 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({}); + + const items: ISitemapFreshenerFreshenFileMessage[] = [ + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + s3DirectoryOverride: 'non-default-path/', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + { + operation: 'freshenFile', + dryRun: false, + dryRunDB: false, + type: 'widget', + filename: 'sitemap-00003.xml.gz', + s3DirectoryOverride: 'non-default-path/', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(0); + + expect(s3Client.calls().length).toBe(8); + + // Check that per-item record and per-file record are the same + { + const itemInTwoItemRecordByFile = ( + await ItemRecord.loadFile(dbManager, { + FileName: 'sitemap-00001.xml.gz', + Type: 'widget', + }) + ).filter((value) => { + return value.ItemID === '00021'; + }); + expect(itemInTwoItemRecordByFile.length).toBe(1); + expect(itemInTwoItemRecordByFile[0].ItemID).toBe('00021'); + expect(itemInTwoItemRecordByFile[0].FileName).toBe('sitemap-00001.xml.gz'); + expect(itemInTwoItemRecordByFile[0].ItemStatus).toBe('removed'); + + const itemInTwoItemRecordByItem = await ItemRecord.loadOne(dbManager, { + Type: 'widget', + ItemID: '00021', + }); + expect(itemInTwoItemRecordByItem).toBeDefined(); + // This item should still belong to the right file + expect(itemInTwoItemRecordByItem.FileName).toBe('sitemap-00002.xml.gz'); + expect(itemInTwoItemRecordByItem.ItemStatus).toBe('written'); + } + + { + const itemInTwoItemRecordByFile = ( + await ItemRecord.loadFile(dbManager, { + FileName: 'sitemap-00002.xml.gz', + Type: 'widget', + }) + ).filter((value) => { + return value.ItemID === '00011'; + }); + expect(itemInTwoItemRecordByFile.length).toBe(1); + expect(itemInTwoItemRecordByFile[0].ItemID).toBe('00011'); + expect(itemInTwoItemRecordByFile[0].FileName).toBe('sitemap-00002.xml.gz'); + expect(itemInTwoItemRecordByFile[0].ItemStatus).toBe('removed'); + + const itemInTwoItemRecordByItem = await ItemRecord.loadOne(dbManager, { + Type: 'widget', + ItemID: '00011', + }); + expect(itemInTwoItemRecordByItem).toBeDefined(); + // This item should still belong to the right file + expect(itemInTwoItemRecordByItem.FileName).toBe('sitemap-00001.xml.gz'); + // will be `written` because the other record set the status when that file was processed + expect(itemInTwoItemRecordByItem.ItemStatus).toBe('removed'); + } + + // Validate that the FileRecord has status `written` + const fileRecords = await FileRecord.loadType(dbManager, { Type: 'widget' }); + expect(fileRecords.length).toBe(3); + for (const fileRecord of fileRecords) { + expect(fileRecord).toBeInstanceOf(FileRecord); + expect(fileRecord.FileStatus).toMatch(/^written|empty$/); + + // Validate that the ItemRecord's all have ItemStatus `written` + const itemRecords = await ItemRecord.loadFile( + dbManager, + { + FileName: fileRecord.FileName, + Type: fileRecord.Type, + }, + true, + ); + + if (fileRecord.FileName === 'sitemap-00003.xml.gz') { + continue; + } + + const newRecords = itemRecords.filter((value) => { + return value.ItemID === '10002' || value.ItemID === '10001'; + }); + expect(newRecords.length).toBe(1); + expect(newRecords[0].SitemapItem).toBeDefined(); + expect(newRecords[0].SitemapItem.url).toContain('super-sale-50%25-off'); + + expect(itemRecords.length).toBeGreaterThan(0); + for (const itemRecord of itemRecords) { + expect(itemRecord).toBeInstanceOf(ItemRecord); + expect(itemRecord.ItemStatus).toMatch(/written|removed/); + } + } + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + { + const s3SitemapPutCommand = s3Client.call(2).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: s3SitemapPutCommand.input.Key, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/widget/', + filenameRoot: 'sitemap-00001', + compress: true, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + // 1 item added from existing XML, 3 items added from DB + expect(sitemap.count).toBe(4); + const thisFileItem = items.filter((value) => value.url.includes('item-00012')); + expect(thisFileItem.length).toBe(1); + const otherFileItem = items.filter((value) => value.url.includes('item-00021')); + expect(otherFileItem.length).toBe(0); + } + + { + const s3SitemapPutCommand = s3Client.call(5).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: s3SitemapPutCommand.input.Key, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'non-default-path/widget/', + filenameRoot: 'sitemap-00002', + compress: true, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + // 1 item added from existing XML, 4 items added from DB + expect(sitemap.count).toBe(5); + const thisFileItem = items.filter((value) => value.url.includes('item-00021')); + expect(thisFileItem.length).toBe(1); + const otherFileItem = items.filter((value) => value.url.includes('item-00011')); + expect(otherFileItem.length).toBe(0); + } + }, 60000); + + it('repairDB dry run', async () => { + kinesisClient.onAnyCommand().rejects(); + s3Client + .onAnyCommand() + .callsFake((input) => { + console.info(inspect(input, true, 10, true)); + }) + .rejects() + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/item-10001-super-sale-50%25-off + weekly + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }) + + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + Body: Readable.from( + ` + + + https://www.example.com/item-10002-super-sale-50%25-off + weekly + +`, + ).pipe(createGzip()) as unknown as StreamingBlobPayloadOutputTypes, + }) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .resolves({ + ContentLength: 260, + }) + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NoSuchKey({ $metadata: { httpStatusCode: 404 }, message: 'NoSuchKey' })) + .on( + s3.HeadObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00003.xml.gz'), + }, + false, + ) + .rejects(new s3.NotFound({ $metadata: { httpStatusCode: 404 }, message: 'NotFound' })) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join(theConfig.s3Directory, 'widget', 'sitemap-00001.xml.gz'), + }, + false, + ) + .rejects({}) + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: path.posix.join('non-default-path/', 'widget', 'sitemap-00002.xml.gz'), + }, + false, + ) + .rejects({}); + + const items: ISitemapFreshenerFreshenFileMessage[] = [ + { + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00001.xml.gz', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + { + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00002.xml.gz', + s3DirectoryOverride: 'non-default-path/', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + { + operation: 'freshenFile', + dryRun: true, + dryRunDB: true, + type: 'widget', + filename: 'sitemap-00003.xml.gz', + s3DirectoryOverride: 'non-default-path/', + repairDB: true, + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/item-(?[0-9]+)', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(kinesisClient.calls().length).toBe(0); + + expect(s3Client.calls().length).toBe(6); + + // Validate that the FileRecord still has status `dirty` + const fileRecords = await FileRecord.loadType(dbManager, { Type: 'widget' }); + expect(fileRecords.length).toBe(3); + expect(fileRecords[0].FileStatus).toBe('dirty'); + expect(fileRecords[1].FileStatus).toBe('dirty'); + for (const fileRecord of fileRecords) { + expect(fileRecord).toBeInstanceOf(FileRecord); + + // Validate that the ItemRecord's all have ItemStatus `written` + const itemRecords = await ItemRecord.loadFile( + dbManager, + { + FileName: fileRecord.FileName, + Type: fileRecord.Type, + }, + true, + ); + + if (fileRecord.FileName !== 'sitemap-00003.xml.gz') { + const newRecords = itemRecords.filter((value) => { + return value.ItemID === '10002' || value.ItemID === '10001'; + }); + expect(newRecords.length).toBe(0); + + expect(itemRecords.length).toBeGreaterThan(0); + const seenStatuses: { [status: string]: true } = {}; + for (const itemRecord of itemRecords) { + expect(itemRecord).toBeInstanceOf(ItemRecord); + seenStatuses[itemRecord.ItemStatus] = true; + } + + if (fileRecord.FileName === 'sitemap-00001.xml.gz') { + expect(Object.keys(seenStatuses)).toContain('written'); + expect(Object.keys(seenStatuses)).toContain('towrite'); + expect(Object.keys(seenStatuses)).toContain('toremove'); + } else { + expect(Object.keys(seenStatuses)).toContain('written'); + } + } + } + }); + }); +}); diff --git a/packages/kinesis-sitemap-freshener/src/index.ts b/packages/kinesis-sitemap-freshener/src/index.ts new file mode 100644 index 0000000..ade5525 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/index.ts @@ -0,0 +1,394 @@ +import 'reflect-metadata'; +import 'source-map-support/register'; +import { captureAWSv3Client, setContextMissingStrategy } from 'aws-xray-sdk-core'; +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import * as kinesis from '@aws-sdk/client-kinesis'; +import * as s3 from '@aws-sdk/client-s3'; +import type * as lambda from 'aws-lambda'; +import type { + ISitemapFreshenerFreshenFileMessage, + ISitemapFreshenerMessageBase, + ISitemapFreshenerStartMessage, + ISitemapFreshenerResultBase, + ISitemapFreshenerStartResult, + ISitemapFreshenerLambdaEvent, +} from '@shutterstock/sitemaps-models-lib'; +import { + metricScope, + Unit as metricUnit, + Configuration as metricConfiguration, + MetricsLogger, +} from 'aws-embedded-metrics'; +import { FlatCountMetrics, metricScopeDummy } from '@shutterstock/aws-embedded-metrics-flatten'; +import { Chunker } from '@shutterstock/chunker'; +import { IterableQueueMapperSimple } from '@shutterstock/p-map-iterable'; +import { Config } from './config/config'; +import { SitemapWrapperOverrideAWSClients } from '@shutterstock/sitemaps-wrapper-lib'; +import { DBManager, ItemRecord } from '@shutterstock/sitemaps-db-lib'; +import { log, localTesting } from './utils/log'; +import { KinesisBackgroundWriter, KinesisRetrier } from '@shutterstock/kinesis-helpers'; +import { + SitemapFreshenerMetrics, + SitemapFreshenerTypedMetrics, +} from '@shutterstock/sitemaps-metrics-lib'; +import { memory } from '@shutterstock/sitemaps-utils-lib'; +import { handleStartMessage } from './handlers/start'; +import { handleFreshenFileMessage } from './handlers/freshen-file'; + +//#region Initialization +let capturedMemoryDumpAlready = false; +export const config = Config.instance; + +// Initially setup the dbclient and s3client +let dbManager: DBManager; +let dynamoClient = captureAWSv3Client( + new DynamoDBClient({ + maxAttempts: 16, // maxAttempts defaults to 3 + // Throttling base delay is 500 ms + // Other error base delay is 100 ms + // Default strategy is exponential backoff with a max delay of 20 seconds per try + // regardless of which attempt count it is (exponential backoff up to 20 seocnds, then constant 20 seconds) + }), +); +dbManager = new DBManager({ client: dynamoClient, tableName: config.tableName }); +const s3Client = captureAWSv3Client( + new s3.S3Client({ + maxAttempts: 16, + }), +); +const kinesisClient = captureAWSv3Client( + new kinesis.KinesisClient({ + maxAttempts: 16, + }), +); +SitemapWrapperOverrideAWSClients({ s3Client }); + +export function overrideDBManager(opts: { + dbManager: DBManager; + dynamoClient: DynamoDBClient; +}): void { + dbManager = opts.dbManager; + dynamoClient = opts.dynamoClient; +} + +metricConfiguration.namespace = config.metricsNamespace; + +log.info('rendered config', { config }); +log.info('config files found', { configFiles: Config.configFiles }); + +const enableMetricScope = config.emitMetrics && !localTesting ? metricScope : metricScopeDummy; +//#endregion + +export const handler = enableMetricScope( + (metrics) => + async ( + payload: lambda.KinesisStreamEvent | ISitemapFreshenerLambdaEvent, + context?: lambda.Context, + ): Promise => { + //#region Initialization + const startTime = Date.now(); + const flatMetricsTypedMap = new Map(); + + let heapdumper: memory.heapdumps3 | undefined; + if (config.captureHeapDumps && !capturedMemoryDumpAlready) { + heapdumper = new memory.heapdumps3({ + bucketName: config.s3SitemapsBucketName, + bucketPrefix: 'heapdumps/', + logger: log, + }); + } + + const { + chunkerStream, + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + kinesisBackgroundWriter, + } = setupWriters(); + //#endregion + + try { + metrics.setProperty('RequestId', context?.awsRequestId); + metrics.setProperty('Env', Config.envLevel); + + metrics.putMetric(SitemapFreshenerMetrics.EventReceived, 1, metricUnit.Count); + metrics.putMetric( + SitemapFreshenerMetrics.MsgReceived, + payload.Records.length, + metricUnit.Count, + ); + await metrics.flush(); + + // #region Payload Conversion + // Decode the incoming payload into messages + let payloadIsMessages = false; + const results: ISitemapFreshenerResultBase[] = []; + const messages = payload.Records.map((record) => { + // Reset logger request-specific context + log.options.meta = { + env: Config.envLevel, + }; + + const recordAsKinesis = record as lambda.KinesisStreamRecord; + const recordAsMessage = record as ISitemapFreshenerMessageBase; + + if (recordAsKinesis.kinesis && recordAsKinesis.kinesis.data) { + if (payloadIsMessages) { + throw new Error('mixed payload of Kinesis / direct messages not allowed'); + } + const dataBuff = Buffer.from(recordAsKinesis.kinesis.data, 'base64'); + const dataStr = dataBuff.toString('utf-8'); + const message = JSON.parse(dataStr) as ISitemapFreshenerMessageBase; + + return message; + } else if (recordAsMessage.type) { + payloadIsMessages = true; + return recordAsMessage; + } + }); + // Do not touch the incoming records anymore + // @ts-expect-error yes we really want to delete this + delete payload.Records; + // #endregion + + // Loop through the normalized messages + // #region Decoded Record Loop + for (const message of messages) { + // #region Top of Loop Setup + log.info('top of record loop'); + + if (message === undefined) { + throw new Error('message is undefined'); + } + + const { type = '', operation } = message; + const flatMetricsTyped = getFlatCountMetricsForType(type, flatMetricsTypedMap); + + // Dry-run === "safe" as we do not write to DB or S3 + // Config sets whether to allow message to select non-dry-run mode + const dryRun = (config.nonDryRunAllowed ? message.dryRun : true) ?? true; + const dryRunDB = dryRun || (message.dryRunDB ?? true); + + // Bail out if dryRun is `false` but non-dryRuns are not allowed + if (dryRun !== (message.dryRun ?? true)) { + log.error('dryRun mismatch - skipping this message', { + computedDryRun: dryRun, + computedDryRunDB: dryRunDB, + incomingDryRun: message.dryRun, + message, + }); + results.push({ + message, + computedDryRun: dryRun, + computedDryRunDB: dryRunDB, + incomingDryRun: message.dryRun, + error: 'dryRun mismatch - skipping this message', + } as ISitemapFreshenerStartResult); + + continue; + } + + log.options.meta.operation = operation; + log.options.meta.dryRun = dryRun; + log.options.meta.dryRunDB = dryRunDB; + log.options.meta.type = type; + + flatMetricsTyped.putMetric( + SitemapFreshenerTypedMetrics.EventsReceived, + 1, + metricUnit.Count, + ); + // #endregion Top of Loop Setup + + if (operation === 'start') { + results.push( + await handleStartMessage({ + config, + chunkerStream, + dbManager, + dryRun, + dryRunDB, + flatMetricsTyped, + message: message as ISitemapFreshenerStartMessage, + type, + }), + ); + } else if (operation === 'freshenFile') { + results.push( + await handleFreshenFileMessage({ + config, + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + dbManager, + dryRun, + dryRunDB, + flatMetricsTyped, + message: message as ISitemapFreshenerFreshenFileMessage, + s3Client, + type, + }), + ); + } else { + throw new Error(`Unknown operation: ${operation}`); + } + } + // #endregion Decoded Record Loop + + // Reset the logger request-specific context + log.options.meta = { env: log.options.meta.env }; + log.info('finished payload'); + metrics.putMetric(SitemapFreshenerMetrics.EventDone, 1, metricUnit.Count); + + if (payloadIsMessages) { + return results; + } + } catch (error) { + metrics.putMetric(SitemapFreshenerMetrics.EventFailed, 1, metricUnit.Count); + log.error(error as Error, { + caughtException: true, + extraMsg: 'Caught exception at top level', + }); + + // Re-throw so the batch will stall or be retried and succeed + throw error; + } finally { + log.info('finished payload - starting finally'); + + try { + await chunkerStream.onIdle(); + await kinesisBackgroundWriter.onIdle(); + } catch (error) { + log.error(error as Error, { + caughtException: true, + extraMsg: 'Caught exception flushing kinesis chunker', + }); + } + + // Flush the chunker to the DB Writer, then wait for the DB Writer to finish + try { + await dbItemWriterBothKeysSaveMany.onIdle(); + await dbItemWriterByFileOnlySaveMany.onIdle(); + } catch (error) { + log.error(error as Error, { + caughtException: true, + extraMsg: 'Caught exception flushing db writer', + }); + } + + // Push any memory dump to s3 if we created one + if (heapdumper !== undefined) { + capturedMemoryDumpAlready = await heapdumper.shutdownAndFlush(); + } + + metrics.putMetric( + SitemapFreshenerMetrics.DurationMS, + Date.now() - startTime, + metricUnit.Milliseconds, + ); + // Output the typed metrics + await flushTypedMetrics(flatMetricsTypedMap, metrics); + log.info('finished payload - ending finally'); + } + }, +); + +/** + * Setup the background writers that we use to write to the DB and S3 + * @returns + */ +function setupWriters() { + // Pipeline: + // Chunker -> KinesisBackgroundWriter -> KinesisRetrier -> KinesisClient + const kinesisRetrier = new KinesisRetrier({ + kinesisClient, + }); + const kinesisBackgroundWriter = new KinesisBackgroundWriter({ + concurrency: 1, + kinesisClient: kinesisRetrier, + }); + const chunkerStream = new Chunker({ + countLimit: 500, + sizeLimit: 5 * 1024 * 1024 * 0.95, + sizer: (item: kinesis.PutRecordsRequestEntry): number => { + const itemJSON = JSON.stringify(item); + return itemJSON.length; + }, + writer: async (records: kinesis.PutRecordsRequestEntry[]): Promise => { + // We don't get a result because this await only waits till the write is queued + await kinesisBackgroundWriter.send( + new kinesis.PutRecordsCommand({ + StreamName: config.kinesisSelfStreamName, + Records: records, + }), + ); + }, + }); + + // + // Create background dynamodb writers + // + const dbItemWriterBothKeysSaveMany = new IterableQueueMapperSimple( + async (records: ItemRecord[]): Promise => { + await ItemRecord.saveMany(dbManager, records); + }, + { concurrency: config.dynamoDBConcurrentWrites }, + ); + const dbItemWriterByFileOnlySaveMany = new IterableQueueMapperSimple( + async (records: ItemRecord[]): Promise => { + await ItemRecord.saveMany(dbManager, records, true); + }, + { concurrency: config.dynamoDBConcurrentWrites }, + ); + return { + chunkerStream, + dbItemWriterBothKeysSaveMany, + dbItemWriterByFileOnlySaveMany, + kinesisBackgroundWriter, + }; +} + +export function getFlatCountMetricsForType( + type: string, + flatMetricsTypedMap: Map, +): FlatCountMetrics { + if (flatMetricsTypedMap.has(type)) { + return flatMetricsTypedMap.get(type)!; + } else { + const newFlatMetrics = new FlatCountMetrics(); + flatMetricsTypedMap.set(type, newFlatMetrics); + return newFlatMetrics; + } +} + +export async function flushTypedMetrics( + flatMetricsTypedMap: Map, + metrics: MetricsLogger, +) { + for (const [type, flatMetricsTyped] of flatMetricsTypedMap) { + const metricsTyped = metrics.new(); + metricsTyped.putDimensions({ + SitemapType: type, + }); + flatMetricsTyped.flush(metricsTyped); + await metricsTyped.flush(); + } +} + +if (localTesting) { + const message: ISitemapFreshenerFreshenFileMessage = { + operation: 'freshenFile', + repairDB: true, + type: 'widget', + s3DirectoryOverride: 'dry-run-db-sitemaps/', + itemIDRegex: '^https:\\/\\/www\\.example\\.com\\/widgets\\/widget-(?[0-9]+)', + dryRun: false, + dryRunDB: true, + filename: 'widget-2021-11-16-000-00001.xml', + }; + + setContextMissingStrategy('LOG_ERROR'); + + void handler({ Records: [message] }, { + awsRequestId: 'local', + functionName: 'local', + } as lambda.Context); +} diff --git a/packages/kinesis-sitemap-freshener/src/utils/log.ts b/packages/kinesis-sitemap-freshener/src/utils/log.ts new file mode 100644 index 0000000..9f24c84 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/src/utils/log.ts @@ -0,0 +1,27 @@ +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +import { LambdaLog, LogMessage } from 'lambda-log'; +import { Config } from '../config/config'; + +const config = Config.instance; + +const localTesting = process.env.DEBUG ? true : false; + +const log = new LambdaLog({ + dev: localTesting, + debug: localTesting, + silent: config?.logSilent ?? false, +}); + +if (localTesting) { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + log.options.dynamicMeta = (_message: LogMessage) => { + return { + timestamp: new Date().toISOString(), + }; + }; +} + +export { log, localTesting }; diff --git a/packages/kinesis-sitemap-freshener/tsconfig.json b/packages/kinesis-sitemap-freshener/tsconfig.json new file mode 100644 index 0000000..0b279e3 --- /dev/null +++ b/packages/kinesis-sitemap-freshener/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.packages.json", + "compilerOptions": { + "rootDir": "src", + "outDir": "dist" + }, + "exclude": ["dist"], + "include": ["src/**/*.ts", "src/**/*.json"] +} diff --git a/packages/kinesis-sitemap-writer/package.json b/packages/kinesis-sitemap-writer/package.json new file mode 100644 index 0000000..7270ff7 --- /dev/null +++ b/packages/kinesis-sitemap-writer/package.json @@ -0,0 +1,63 @@ +{ + "name": "@shutterstock/kinesis-sitemap-writer", + "version": "0.0.0", + "description": "", + "main": "dist/index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "private": true, + "license": "MIT", + "devDependencies": { + "@types/aws-lambda": "^8.10.77", + "@types/convict": "^6.1.1", + "@types/convict-format-with-validator": "^6.0.2", + "@types/fs-extra": "^9.0.12", + "@types/he": "^1.1.2", + "@types/js-yaml": "^4.0.2", + "@types/lambda-log": "^2.2.0", + "@types/memorystream": "^0.3.0", + "@types/node": "^18", + "@types/node-fetch": "^2.5.11", + "@types/rewire": "^2.5.28", + "@types/traverse": "^0.6.32", + "@types/sinon": "^10.0.1", + "@types/source-map-support": "^0.5.4", + "@types/uuid": "^8.3.1", + "@types/verror": "^1.10.5", + "rewire": "^5.0.0", + "sinon": "^11.1.2", + "stats-lite": "^2.2.0" + }, + "dependencies": { + "@aws-sdk/client-dynamodb": "3.567.0", + "@aws-sdk/client-kinesis": "3.567.0", + "@aws-sdk/client-s3": "3.567.0", + "@aws-sdk/lib-dynamodb": "3.567.0", + "@aws-sdk/lib-storage": "3.567.0", + "@shutterstock/aws-embedded-metrics-flatten": "^1.0.6", + "@shutterstock/chunker": "^1.0.11", + "@shutterstock/kinesis-helpers": "^1.0.15", + "@shutterstock/p-map-iterable": "^1.0.11", + "aws-embedded-metrics": "^2.0.4", + "aws-xray-sdk-core": "^3.3.3", + "convict": "^6.1.0", + "convict-format-with-validator": "^6.0.1", + "fs-extra": "^10.0.0", + "he": "^1.2.0", + "it-batch": "^1.0.8", + "js-yaml": "^4.1.0", + "lambda-log": "^3.0.0", + "memorystream": "^0.3.1", + "node-fetch": "^2.6.1", + "readlineiter": "^1.0.1", + "reflect-metadata": "^0.1.13", + "sitemap": "^8.0.0", + "source-map-support": "^0.5.19", + "traverse": "^0.6.6", + "ts-convict": "^1.1.0", + "tslib": "^2.3.0", + "uuid": "^8.3.2", + "verror": "^1.10.0" + } +} diff --git a/packages/kinesis-sitemap-writer/src/config/config.ts b/packages/kinesis-sitemap-writer/src/config/config.ts new file mode 100644 index 0000000..1339a68 --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/config/config.ts @@ -0,0 +1,433 @@ +import * as convict from 'ts-convict'; +import * as yaml from 'js-yaml'; +import { url, ipaddress } from 'convict-format-with-validator'; +import { files } from '@shutterstock/sitemaps-utils-lib'; +const { configFiles } = files; + +export type SitemapFileNamingSchemes = 'uuidv4' | 'date+index' | 'index'; + +export interface IConfig { + /** + * AWS Account ID for app Lambda function + * + * Environment variable: AWS_ACCOUNT_ID + */ + readonly awsAccountID: number; + + /** + * AWS Region for app Lambda function + * + * Environment variable: AWS_REGION + */ + readonly awsRegion: string; + + /** + * Base URL of the website + * + * Environment variable: SITE_BASE_URL + * + * @default 'https://www.example.com' + */ + readonly siteBaseURL: string; + + /** + * Base path of the sitemaps on the website (for sitemap index links) + * + * Environment variable: SITE_BASE_SITEMAP_PATH + * + * @default 'sitemaps' + */ + readonly siteBaseSitemapPath: string; + + /** + * S3 sitemap files bucket name + * + * Environment variable: S3_SITEMAPS_BUCKET_NAME + * + * @default 'doc-example-bucket' + */ + readonly s3SitemapsBucketName: string; + + readonly compressSitemapFiles: boolean; + + /** + * Local directory to write files into + * + * Environment variable: LOCAL_DIRECTORY + * + * @default '/tmp/sitemaps' + */ + readonly localDirectory: string; + + /** + * S3 directory to write files into + * + * Environment variable: S3_DIRECTORY + * + * @default 'sitemaps/' + */ + readonly s3Directory: string; + + /** + * CloudWatch metrics namespace + * + * Environment variable: METRICS_NAMESPACE + * + * @default 'SSTK/Sitemaps' + */ + readonly metricsNamespace: string; + + /** + * Emit CloudWatch metrics to logs + * + * Environment variable: EMIT_METRICS + * + * @default false + */ + readonly emitMetrics: boolean; + + /** + * Silence the logs + * + * Environment variable: LOG_SILENT + * + * @default false + */ + readonly logSilent: boolean; + + /** + * Naming scheme for sitemap files + * + * Environment variable: SITEMAP_FILE_NAMING_SCHEME + * + * @default 'date+index' + */ + readonly sitemapFileNamingScheme: SitemapFileNamingSchemes; + + /** + * DynamoDB table name + * + * Environment variable: TABLE_NAME + * + * @default 'sitemaps' + */ + readonly tableName: string; + + /** + * Store item state in DynamoDB + * + * ⚠️ CAUTION: NOT storing item state in DynamoDB will disable + * de-duplication of incoming items - if there are duplicates, they + * will get written to a new sitemap file each time they are received. + * + * Environment variable: ITEM_STATE_IN_DYNAMODB + * + * @default true + */ + readonly storeItemStateInDynamoDB: boolean; + + /** + * Max number of items per sitemap + * + * Environment variable: ITEMS_PER_SITEMAP_LIMIT + * + * @default 50000 + */ + readonly itemsPerSitemapLimit: number; + + /** + * Kinesis sitemap index writer stream name (stream we are writing to) + * + * Environment variable: KINESIS_INDEX_WRITER_NAME + * + * @default 'sitemap-index-writer' + */ + readonly kinesisIndexWriterStreamName: string; + + /** + * Max number of concurrent writes to DynamoDB + * + * Environment variable: DYNAMODB_CONCURRENT_WRITES + * + * @default 5 + */ + readonly dynamoDBConcurrentWrites: number; + + /** + * Max number of concurrent reads from DynamoDB + * + * Environment variable: DYNAMODB_CONCURRENT_READS + * + * @default 2 + */ + readonly dynamoDBConcurrentReads: number; + + /** + * Max number of unread items to prefetch from DynamoDB + * Applies back pressure to ensure that we don't read too far ahead + * + * Environment variable: DYNAMODB_PREFETCH_MAX_UNREAD + * + * @default 4 + */ + readonly dynamoDBPrefetchMaxUnread: number; + + /** + * Max number of concurrent writes to S3 + * + * Environment variable: S3_CONCURRENT_WRITES + * + * @default 4 + */ + readonly s3ConcurrentWrites: number; + + /** + * Throw if incoming record with compaction version is encounted in Kinesis messages + * + * Environment variable: THROW_ON_COMPACT_VERSION + * + * @default 0 + */ + readonly throwOnCompactVersion: number; + + /** + * Incoming compaction version expected in the Kinesis messages + * + * Environment variable: INCOMING_COMPACT_VERSION + * + * @default 0 + */ + readonly incomingCompactVersion: number; + + /** + * Self Kinesis stream name for compaction writes + * + * Environment variable: KINESIS_SELF_STREAM_NAME + * + * @default 'sitemaps' + */ + readonly kinesisSelfStreamName: string; + + /** + * List of infixes to write as additional sitemap indices / sitemap sets. + * + * The infix is written between the host and root path on the `url.loc` field in the sitemap items. + * Url: `https://www.example.com/sitemaps/target.html` + * --> `https://www.example.com/{infix}/sitemaps/target.html` + * + * The infix is also written to the end of the root folder path for the sitemap index and sitemaps. + * Index: `s3://{bucket}/sitemaps/index.xml` + * --> `s3://{bucket}/sitemaps/index-{infix}.xml` + * Sitemap: `s3://{bucket}/sitemaps/files/sitemap-00001.xml` + * --> `s3://{bucket}/sitemaps/files/{infix}/{infix}-sitemap-00001.xml` + * + * Only the `url.loc` and `url.lastmod` fields are written to the infix sitemaps as these files + * need to be smaller than the primary sitemaps since the infix sitemaps will be written to + * files with the same name, and same item population, and will simply fail to write all the + * items if a single sitemap file overflows (what fits will be written). + * + * The infix items, sitemap file states, and index file states are not written to the DB. + * These files are only written as a duplicate / trimmed version of the primary sitemap. + * The sitemap and index infix files are not retrieved from S3 for updating: they are + * simply recalculated and re-written from the primary file contents. + * + * Environment variable: INFIX_DIRS + * + * @default [] + * + * @example ['target', 'target2'] + */ + readonly infixDirs: string[]; +} + +@convict.Config({ + // optional default file to load, no errors if it doesn't exist + file: 'config.yml', // relative to NODE_PATH or cwd() + + // optional parameter. Defaults to 'strict', can also be 'warn' + validationMethod: 'strict', + + // optionally add parsers like yaml or toml + parser: { + extension: ['yml', 'yaml'], + parse: yaml.load, + }, + + // optional extra formats to use in validation + formats: { + url, + ipaddress, + }, +}) +export class Config implements IConfig { + private static _instance: IConfig; + public static get instance(): IConfig { + if (Config._instance === undefined) { + const configLoader = new convict.TSConvict(Config); + Config._instance = configLoader.load(Config.configFiles); + } + return Config._instance; + } + + private static _envLevel: string | undefined; + public static get envLevel(): string | undefined { + if (Config._envLevel === undefined) { + Config._envLevel = configFiles.getEnvLevel(); + } + return Config._envLevel; + } + + private static _configFiles: string[]; + public static get configFiles(): string[] { + if (Config._configFiles === undefined) { + Config._configFiles = configFiles.getConfigFiles({ + checkEnvOverrides: true, + }); + } + return Config._configFiles; + } + + @convict.Property({ + default: 0, + env: 'AWS_ACCOUNT_ID', + }) + public awsAccountID!: number; + + @convict.Property({ + default: 'us-east-1', + env: 'AWS_REGION', + }) + public awsRegion!: string; + + @convict.Property({ + default: 'https://www.example.com', + env: 'SITE_BASE_URL', + }) + public siteBaseURL!: string; + + @convict.Property({ + default: 'sitemaps', + env: 'SITE_BASE_SITEMAP_PATH', + }) + public siteBaseSitemapPath!: string; + + @convict.Property({ + default: 'doc-example-bucket', + env: 'S3_SITEMAPS_BUCKET_NAME', + }) + public s3SitemapsBucketName!: string; + + @convict.Property({ + default: false, + env: 'COMPRESS_SITEMAP_FILES', + }) + public compressSitemapFiles!: boolean; + + @convict.Property({ + default: 'SSTK/Sitemaps', + env: 'METRICS_NAMESPACE', + }) + public metricsNamespace!: string; + + @convict.Property({ + default: '/tmp/sitemaps', + env: 'LOCAL_DIRECTORY', + }) + public localDirectory!: string; + + @convict.Property({ + default: 'sitemaps/', + env: 'S3_DIRECTORY', + }) + public s3Directory!: string; + + @convict.Property({ + default: false, + env: 'EMIT_METRICS', + }) + public emitMetrics!: boolean; + + @convict.Property({ + default: false, + env: 'LOG_SILENT', + }) + public logSilent!: boolean; + + @convict.Property({ + default: 'date+index', + env: 'SITEMAP_FILE_NAMING_SCHEME', + }) + public sitemapFileNamingScheme!: SitemapFileNamingSchemes; + + @convict.Property({ + default: 'sitemaps', + env: 'TABLE_NAME', + }) + public tableName!: string; + + @convict.Property({ + default: true, + env: 'ITEM_STATE_IN_DYNAMODB', + }) + public storeItemStateInDynamoDB!: boolean; + + @convict.Property({ + default: 50000, + env: 'ITEMS_PER_SITEMAP_LIMIT', + }) + public itemsPerSitemapLimit!: number; + + @convict.Property({ + default: 'sitemap-index-writer', + env: 'KINESIS_INDEX_WRITER_NAME', + }) + public kinesisIndexWriterStreamName!: string; + + @convict.Property({ + default: 20, + env: 'DYNAMODB_CONCURRENT_WRITES', + }) + public dynamoDBConcurrentWrites!: number; + + @convict.Property({ + default: 4, + env: 'S3_CONCURRENT_WRITES', + }) + public s3ConcurrentWrites!: number; + + @convict.Property({ + default: 2, + env: 'DYNAMODB_CONCURRENT_READS', + }) + public dynamoDBConcurrentReads!: number; + + @convict.Property({ + default: 4, + env: 'DYNAMODB_PREFETCH_MAX_UNREAD', + }) + public dynamoDBPrefetchMaxUnread!: number; + + @convict.Property({ + default: 0, + env: 'INCOMING_COMPACT_VERSION', + }) + public incomingCompactVersion!: number; + + @convict.Property({ + default: 0, + env: 'THROW_ON_COMPACT_VERSION', + }) + public throwOnCompactVersion!: number; + + @convict.Property({ + default: 'sitemaps', + env: 'KINESIS_SELF_STREAM_NAME', + }) + public kinesisSelfStreamName!: string; + + @convict.Property({ + default: [], + env: 'INFIX_DIRS', + }) + public infixDirs!: string[]; +} diff --git a/packages/kinesis-sitemap-writer/src/index.test.ts b/packages/kinesis-sitemap-writer/src/index.test.ts new file mode 100644 index 0000000..f55605e --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/index.test.ts @@ -0,0 +1,2627 @@ +//index.test.ts +/// +import 'jest-dynalite/withDb'; +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +// Config has to be mocked before the handler is imported because +// the handler accesses the static Config.instance at file scope. +// Note: jest.spyOn(Config, 'instance', 'get').mockImplementation(...) +// does not work here because Config.instance is a static class property +// not an object property. +import { Config, IConfig } from './config/config'; +jest.mock('./config/config'); +type Writeable = { -readonly [P in keyof T]: T[P] }; +const theConfig: Writeable = { + awsAccountID: 123456, + awsRegion: 'mock', + metricsNamespace: 'some/metrics/namespace', + siteBaseURL: 'https://www.example.com', + s3SitemapsBucketName: 'doc-example-bucket', + compressSitemapFiles: false, + emitMetrics: false, + logSilent: true, + localDirectory: '/tmp/sitemaps', + s3Directory: 'sitemaps/', + siteBaseSitemapPath: 'sitemaps', + sitemapFileNamingScheme: 'index', + tableName: 'sitemaps', + storeItemStateInDynamoDB: true, + itemsPerSitemapLimit: 500, + kinesisIndexWriterStreamName: 'sitemap-index-stream', + dynamoDBConcurrentReads: 2, + dynamoDBPrefetchMaxUnread: 4, + dynamoDBConcurrentWrites: 20, + s3ConcurrentWrites: 4, + incomingCompactVersion: 0, + throwOnCompactVersion: 0, + kinesisSelfStreamName: 'sitemap-stream', + infixDirs: [], +}; +const origConfig = { ...theConfig }; +Object.defineProperty(Config, 'instance', { + configurable: false, + enumerable: false, + get: jest.fn((): IConfig => { + return theConfig; + }), +}); +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import * as s3 from '@aws-sdk/client-s3'; +import * as kinesis from '@aws-sdk/client-kinesis'; +import { + createItemStatePreFetcher, + DecodedPlusPayload, + groupMessagesByType, + handler, + overrideDBManager, +} from './index'; +import type * as lambda from 'aws-lambda'; +import type { ISitemapWriterItem } from '@shutterstock/sitemaps-models-lib'; +import { Readable } from 'stream'; +import zlib from 'zlib'; +import { promisify } from 'util'; +import { mockClient, AwsClientStub } from 'aws-sdk-client-mock'; +import { SitemapFileWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import { ShardStateRecord, DBManager, FileRecord, ItemRecord } from '@shutterstock/sitemaps-db-lib'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import type { StreamingBlobPayloadOutputTypes } from '@smithy/types'; + +const deflateAsync = promisify(zlib.deflate); + +describe('Sitemap Writer index.ts', () => { + let s3Client: AwsClientStub; + let kinesisClient: AwsClientStub; + const siteBaseURL = 'https://www.example.com'; + const s3SitemapsBucketName = 'doc-example-bucket'; + let sitemapExtension: string; + let dynamoClient: DynamoDBClient; + let dbManager: DBManager; + const shardId = 1; + const shardIdPadded = shardId.toString().padStart(3, '0'); + + beforeAll(() => { + // console.log(`endpoint: ${process.env.MOCK_DYNAMODB_ENDPOINT}`); + dynamoClient = new DynamoDBClient({ + endpoint: process.env.MOCK_DYNAMODB_ENDPOINT, + tls: false, + region: 'local', + }); + dbManager = new DBManager({ client: dynamoClient, tableName: theConfig.tableName }); + }); + afterAll(() => { + dynamoClient.destroy(); + }); + + beforeEach(() => { + // Reset the config that's visible to the handler back to defaults + Object.keys(origConfig).map((key) => { + // @ts-expect-error we know the fields match + theConfig[key] = origConfig[key]; + }); + s3Client = mockClient(s3.S3Client); + kinesisClient = mockClient(kinesis.KinesisClient); + sitemapExtension = theConfig.compressSitemapFiles ? '.xml.gz' : '.xml'; + overrideDBManager({ dbManager, dynamoClient }); + }); + + afterEach(() => { + // Reset the uuid mock so we get the same uuid on second call + //(v4 as jest.MockedFunction).mockReset(); + }); + + describe('lambda handler', () => { + it('empty state initialization', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path3' }, + customId: '3', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path4' }, + customId: '4', + type: 'image', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: (await deflateAsync(Buffer.from(JSON.stringify(item), 'utf-8'))).toString( + 'base64', + ), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + // Save one of the items in the DB so it gets detected as a duplicate + const duplicateRecord = new ItemRecord({ + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: '3', + SitemapItem: { + url: 'https://www.example.com/', + }, + Type: 'image', + ItemStatus: 'written', + }); + await duplicateRecord.save(dbManager); + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(1); + + const s3SitemapPutCommand = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + expect(s3SitemapPutCommand.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + + // + // Check ShardState in DynamoDB + // + const shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(shardState.TotalItemCount).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + const fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe(theConfig.storeItemStateInDynamoDB ? 'dirty' : 'written'); + expect(fileState.CountWritten).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + }); + + it('existing index, unfull last sitemap', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00003${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path3' }, + customId: '3', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path4' }, + customId: '4', + type: 'image', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(1); + + const sitemap1Request = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(sitemap1Request).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemap1Request.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStream = Readable.from(sitemap1Request.input.Body as string); + + // + // Check ShardState in DynamoDB + // + let shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(4); + expect(shardState.TotalItemCount).toBe(4); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + let fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(4); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // NOTE: We cannot read and validate the s3 index/sitemap in this test + // because the read is destructive on the s3 body streams. + // So we just invoke the handler a second time and check the final results + // + + s3Client + .reset() + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes }) + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + // Read one of the DB items so we can check it's update time later to make + // sure it's not written again + const itemStateBefore2ndFileWrite = await ItemRecord.loadOne(dbManager, { + Type: 'image', + ItemID: '1', + }); + expect(itemStateBefore2ndFileWrite).toBeDefined(); + expect(itemStateBefore2ndFileWrite.FileName).toBe('image-001-00001.xml'); + expect(itemStateBefore2ndFileWrite.ItemStatus).toBe('written'); + expect(itemStateBefore2ndFileWrite.TimeLastWrittenISO).toBeDefined(); + + // + // Call the handler again with more items + // + const items2: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some15/photo/path5' }, + customId: '5', + type: 'image', + }, + { + sitemapItem: { url: '/some15/photo/path6' }, + customId: '6', + type: 'image', + }, + { + sitemapItem: { url: '/some16/photo/path7' }, + customId: '7', + type: 'image', + }, + { + sitemapItem: { url: '/some16/photo/path8' }, + customId: '8', + type: 'image', + }, + ]; + + const records2: lambda.KinesisStreamRecord[] = []; + for (const item of items2) { + records2.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records2, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + const sitemap1Request2 = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(sitemap1Request2).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemap1Request2.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStream2 = Readable.from(sitemap1Request2.input.Body as string); + + // + // Check ShardState in DynamoDB + // + shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(8); + expect(shardState.TotalItemCount).toBe(8); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(8); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // Make sure the items already in the file are not rewritten to the DB + const itemStateAfter2ndFileWrite = await ItemRecord.loadOne(dbManager, { + Type: 'image', + ItemID: '1', + }); + expect(itemStateAfter2ndFileWrite).toBeDefined(); + expect(itemStateAfter2ndFileWrite.FileName).toBe('image-001-00001.xml'); + expect(itemStateAfter2ndFileWrite.ItemStatus).toBe('written'); + expect(itemStateAfter2ndFileWrite.TimeLastWrittenISO).toBeDefined(); + expect(itemStateAfter2ndFileWrite.TimeLastWrittenISO).toBe( + itemStateBefore2ndFileWrite.TimeLastWrittenISO, + ); + + // + // Fetch the sitemap from S3 and confirm it has 8 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream2 as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap: sitemap2, existing: sitemapExisting2 } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting2).toBe(true); + expect(sitemap2.count).toBe(8); + }); + + // + // This typically happens when a new shard is created and + // the first payload it gets is entirely duplicates + // + it('no items written to sitemap', async () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + }, + ]; + + // + // Save our one record to the DB so it's eliminated as a duplicate + // + const itemRecord = new ItemRecord({ + FileName: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: items[0].customId, + Type: items[0].type as string, + SitemapItem: items[0].sitemapItem!, + }); + await itemRecord.save(dbManager); + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(0); + + // + // Check ShardState in DynamoDB + // + let shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + // 2022-03-16 - After delay loading of sitemap, the shardState is not touched + // when nothing is written + expect(shardState).toBeUndefined(); + // expect(shardState.FileCount).toBe(1); + // expect(shardState.CurrentFileItemCount).toBe(0); + // expect(shardState.TotalItemCount).toBe(0); + // expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + let fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + // 2022-03-16 - After delay loading of sitemap, the shardState is not touched + // when nothing is written + expect(fileState).toBeUndefined(); + // expect(fileState.FileStatus).toBe('empty'); + // expect(fileState.CountWritten).toBe(0); + // expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Call the handler again with more items + // + const items2: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some15/photo/path5' }, + customId: '5', + type: 'image', + }, + { + sitemapItem: { url: '/some15/photo/path6' }, + customId: '6', + type: 'image', + }, + { + sitemapItem: { url: '/some16/photo/path7' }, + customId: '7', + type: 'image', + }, + { + sitemapItem: { url: '/some16/photo/path8' }, + customId: '8', + type: 'image', + }, + ]; + + const records2: lambda.KinesisStreamRecord[] = []; + for (const item of items2) { + records2.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records2, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(1); + + const sitemap1Request2 = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(sitemap1Request2).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemap1Request2.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStream2 = Readable.from(sitemap1Request2.input.Body as string); + + // + // Check ShardState in DynamoDB + // + shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(4); + expect(shardState.TotalItemCount).toBe(4); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(4); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream2 as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap: sitemap2, existing: sitemapExisting2 } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting2).toBe(true); + expect(sitemap2.count).toBe(4); + }); + + it('handles compaction - writing uniques back to stream, dropping duplicates', async () => { + (theConfig as Writeable).incomingCompactVersion = 2; + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client.onAnyCommand().rejects(); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + // Note: Not setting compactVersion here + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + compactVersion: 1, + }, + // { + // sitemapItem: { url: '/some13/photo/path2' }, + // customId: '2', + // type: 'image', + // compactVersion: 2, + // }, + ]; + + // + // Save our one record to the DB so it's eliminated as a duplicate + // + const itemRecord = new ItemRecord({ + FileName: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: items[0].customId, + Type: items[0].type as string, + SitemapItem: items[0].sitemapItem!, + }); + await itemRecord.save(dbManager); + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: `${item.customId}`, + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(0); + expect(kinesisClient.calls().length).toBe(1); + + // + // Check that one record was compacted back to the stream + // + { + const compactionRequest = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(compactionRequest).toBeInstanceOf(kinesis.PutRecordsCommand); + expect(compactionRequest.input.Records).toBeDefined(); + expect(compactionRequest.input.Records?.length).toBe(1); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = compactionRequest.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe('2'); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapWriterItem; + // The new record should be equal except the compactVersion is updated + expect(data0).toEqual({ ...items[1], compactVersion: 2 }); + } + + // + // Check ShardState in DynamoDB + // + let shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeUndefined(); + + // + // Check FileState in DynamoDB + // + let fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeUndefined(); + + // + // Call the handler again with more items + // + const items2: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some15/photo/path5' }, + customId: '5', + type: 'image', + }, + { + sitemapItem: { url: '/some15/photo/path6' }, + customId: '6', + type: 'image', + compactVersion: 2, + }, + { + sitemapItem: { url: '/some16/photo/path7' }, + customId: '7', + type: 'image', + compactVersion: 2, + }, + { + sitemapItem: { url: '/some16/photo/path8' }, + customId: '8', + type: 'image', + compactVersion: 2, + }, + ]; + + const records2: lambda.KinesisStreamRecord[] = []; + for (const item of items2) { + records2.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: `${item.customId}`, + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + kinesisClient.resetHistory(); + await handler( + { + Records: records2, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(1); + + const sitemap1Request2 = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(sitemap1Request2).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemap1Request2.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStream2 = Readable.from(sitemap1Request2.input.Body as string); + + // + // Check ShardState in DynamoDB + // + shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(3); + expect(shardState.TotalItemCount).toBe(3); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(3); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Fetch the sitemap from S3 and confirm it has 3 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream2 as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap: sitemap2, existing: sitemapExisting2 } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting2).toBe(true); + expect(sitemap2.count).toBe(3); + + // Confirm an item was written back to kinesis + { + // The index-writer message is the first call + expect(kinesisClient.calls().length).toBe(2); + const compactionRequest = kinesisClient.call(1).args[0] as kinesis.PutRecordsCommand; + expect(compactionRequest).toBeInstanceOf(kinesis.PutRecordsCommand); + expect(compactionRequest.input.Records).toBeDefined(); + expect(compactionRequest.input.Records?.length).toBe(1); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = compactionRequest.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe('5'); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapWriterItem; + // The new record should be equal except the compactVersion is updated + expect(data0).toEqual({ ...items2[0], compactVersion: 2 }); + } + }); + + it('throws on unexpected compaction version record', async () => { + (theConfig as Writeable).incomingCompactVersion = 2; + (theConfig as Writeable).throwOnCompactVersion = 2; + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client.onAnyCommand().rejects(); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + // Note: Not setting compactVersion here + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + compactVersion: 1, + }, + // { + // sitemapItem: { url: '/some13/photo/path2' }, + // customId: '2', + // type: 'image', + // compactVersion: 2, + // }, + ]; + + // + // Save our one record to the DB so it's eliminated as a duplicate + // + const itemRecord = new ItemRecord({ + FileName: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: items[0].customId, + Type: items[0].type as string, + SitemapItem: items[0].sitemapItem!, + }); + await itemRecord.save(dbManager); + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: `${item.customId}`, + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(0); + expect(kinesisClient.calls().length).toBe(1); + + // + // Check that one record was compacted back to the stream + // + { + const compactionRequest = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(compactionRequest).toBeInstanceOf(kinesis.PutRecordsCommand); + expect(compactionRequest.input.Records).toBeDefined(); + expect(compactionRequest.input.Records?.length).toBe(1); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const record = compactionRequest.input.Records![0]; + expect(record).toBeDefined(); + expect(record.PartitionKey).toBe('2'); + expect(record.Data).toBeDefined(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const dataBuffer0 = Buffer.from(record.Data!); + const dataStr0 = dataBuffer0.toString('utf-8'); + const data0 = JSON.parse(dataStr0) as ISitemapWriterItem; + // The new record should be equal except the compactVersion is updated + expect(data0).toEqual({ ...items[1], compactVersion: 2 }); + } + + // + // Check ShardState in DynamoDB + // + const shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeUndefined(); + + // + // Check FileState in DynamoDB + // + const fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeUndefined(); + + // + // Call the handler again with more items + // + const items2: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some15/photo/path5' }, + customId: '5', + type: 'image', + }, + { + sitemapItem: { url: '/some15/photo/path6' }, + customId: '6', + type: 'image', + compactVersion: 2, + }, + { + sitemapItem: { url: '/some16/photo/path7' }, + customId: '7', + type: 'image', + compactVersion: 2, + }, + { + sitemapItem: { url: '/some16/photo/path8' }, + customId: '8', + type: 'image', + compactVersion: 2, + }, + ]; + + const records2: lambda.KinesisStreamRecord[] = []; + for (const item of items2) { + records2.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: `${item.customId}`, + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + kinesisClient.resetHistory(); + await expect(async () => + handler( + { + Records: records2, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ), + ).rejects.toThrow('Throwing due to compactVersion encountered: 2'); + + // Sitemap should not be retrieved or written + expect(s3Client.calls().length).toBe(0); + + // No writes to kinesis since we throw before processing records + expect(kinesisClient.calls().length).toBe(0); + }); + + // Shows that multiple records of the same type end up in a single file + // if less than the configured sitemap item limit of that type + it('more than itemsPerSitemapLimit records spill over into a 2nd sitemap file', async () => { + const itemCount = Math.floor(theConfig.itemsPerSitemapLimit * 1.1); + const items: ISitemapWriterItem[] = []; + for (let i = 0; i < itemCount; i++) { + const item: ISitemapWriterItem = { + sitemapItem: { url: `${siteBaseURL}/some/image/path/${i}` }, + customId: `${i}`, + type: 'image', + }; + items.push(item); + } + + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + s3Client + .onAnyCommand() + .rejects() + // Sitemap1 file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}) + // Sitemap2 file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00002${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + const s3SitemapStream = Readable.from( + (s3Client.call(0).args[0] as s3.PutObjectCommand).input.Body as string, + ); + const s3SitemapStream2 = Readable.from( + (s3Client.call(1).args[0] as s3.PutObjectCommand).input.Body as string, + ); + + // + // Check ShardState in DynamoDB + // + const shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(2); + expect(shardState.CurrentFileItemCount).toBe(itemCount - theConfig.itemsPerSitemapLimit); + expect(shardState.TotalItemCount).toBe(itemCount); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00002${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + let fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(theConfig.itemsPerSitemapLimit); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00002${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(itemCount - theConfig.itemsPerSitemapLimit); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00002${sitemapExtension}`); + + // + // Fetch the sitemap from S3 and confirm it has correct count of items + // + s3Client + .reset() + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }) + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00002${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream2 as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.itemsPerSitemapLimit); + + const { sitemap: sitemap2, existing: sitemapExisting2 } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00002`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting2).toBe(true); + expect(sitemap2.count).toBe(itemCount - theConfig.itemsPerSitemapLimit); + }, 120000); + + // Shows that multiple types of records + // get split into the the right number of files + it('mixed types with arbitrary names, get split into distinct sitemap files', async () => { + const types = ['type1', 'type2']; + const typesCount = types.length; + + // Reject any command we don't configure + s3Client.onAnyCommand().rejects(); + + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ Records: [] }); + + const file1Count = theConfig.itemsPerSitemapLimit; + const file2Count = Math.floor(theConfig.itemsPerSitemapLimit * 0.1); + + const itemCount = file1Count + file2Count + 2; + const fileItems: { [key: string]: ISitemapWriterItem[] } = {}; + const records: { [key: string]: lambda.KinesisStreamRecord[] } = {}; + + for (const type of types) { + fileItems[type] = []; + records[type] = []; + + for (let i = 0; i < itemCount; i++) { + let itemID = i + 1; + + // Write a dupe from the first file + if (i === itemCount - 2) itemID = 1; + // Write a dupe from the second file + if (i === itemCount - 1) itemID = file1Count + 1; + + const item: ISitemapWriterItem = { + sitemapItem: { url: `/some/${type}/path/${itemID}` }, + customId: `${itemID}`, + type, + }; + fileItems[type].push(item); + } + + s3Client + // Sitemap1 file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}/${type}-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({}) + // Sitemap2 file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}/${type}-${shardIdPadded}-00002${sitemapExtension}`, + }, + false, + ) + .resolves({}); + + for (const item of fileItems[type]) { + records[type].push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + // Save one of the items in the DB so it gets detected as a duplicate + // The state of this item should change to `towrite` when detected as a dupe + const duplicateRecord = new ItemRecord({ + FileName: `${type}-${shardIdPadded}-00002${sitemapExtension}`, + ItemID: `${file1Count + 2}`, + SitemapItem: { + url: 'https://www.example.com/', + }, + Type: type, + ItemStatus: 'written', + }); + await duplicateRecord.save(dbManager); + } + + const consolidatedRecords: lambda.KinesisStreamRecord[] = []; + for (const type of Object.keys(records)) { + Array.prototype.push.apply(consolidatedRecords, records[type]); + } + + await handler( + { + Records: consolidatedRecords, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + const s3CallsPerType = 2; + let s3CallsOffset = 0; + const s3CallsFromHandler = s3Client.calls(); + expect(s3CallsFromHandler.length).toBe(s3CallsPerType * typesCount); + + for (const type of types) { + const s3SitemapStream = Readable.from( + (s3CallsFromHandler[s3CallsOffset + 0].args[0] as s3.PutObjectCommand).input + .Body as string, + ); + const s3SitemapStream2 = Readable.from( + (s3CallsFromHandler[s3CallsOffset + 1].args[0] as s3.PutObjectCommand).input + .Body as string, + ); + + // + // Check ShardState in DynamoDB + // + const shardState = await ShardStateRecord.loadOne(dbManager, { + Type: type, + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(2); + expect(shardState.CurrentFileItemCount).toBe( + theConfig.storeItemStateInDynamoDB ? file2Count - 1 : file2Count, + ); + expect(shardState.TotalItemCount).toBe( + theConfig.storeItemStateInDynamoDB + ? file1Count + file2Count - 1 + : file1Count + file2Count, + ); + expect(shardState.CurrentFileName).toBe( + `${type}-${shardIdPadded}-00002${sitemapExtension}`, + ); + + // + // Check FileState in DynamoDB + // + const fileState = await FileRecord.loadOne(dbManager, { + Type: type, + FileName: `${type}-${shardIdPadded}-00002${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + // When storing item state in the DB we will mark this file as dirty + // because one of it's items is already stored in the DB + expect(fileState.FileStatus).toBe(theConfig.storeItemStateInDynamoDB ? 'dirty' : 'written'); + expect(fileState.CountWritten).toBe( + theConfig.storeItemStateInDynamoDB ? file2Count - 1 : file2Count, + ); + expect(fileState.FileName).toBe(`${type}-${shardIdPadded}-00002${sitemapExtension}`); + + // + // Check a normally written item + // + if (theConfig.storeItemStateInDynamoDB) { + let itemState = await ItemRecord.loadOne( + dbManager, + { + ItemID: `${file1Count + file2Count}`, + Type: type, + }, + true, + ); + expect(itemState).toBeDefined(); + expect(itemState.FileName).toBe(`${type}-${shardIdPadded}-00002${sitemapExtension}`); + expect(itemState.ItemID).toBe(`${file1Count + file2Count}`); + expect(itemState.ItemStatus).toBe('written'); + expect(itemState.Type).toBe(type); + expect(itemState.SitemapItem).toBeDefined(); + expect(itemState.SitemapItem.url).toBe(`/some/${type}/path/${file1Count + file2Count}`); + + // + // Check a dupe for the 1st file written at the end + // + itemState = await ItemRecord.loadOne( + dbManager, + { + ItemID: '1', + Type: type, + }, + true, + ); + expect(itemState).toBeDefined(); + expect(itemState.FileName).toBe(`${type}-${shardIdPadded}-00001${sitemapExtension}`); + expect(itemState.ItemID).toBe('1'); + // When de-duping with Dynamo the in-file duplicate is weeded out + expect(itemState.ItemStatus).toBe( + theConfig.storeItemStateInDynamoDB ? 'written' : 'towrite', + ); + expect(itemState.Type).toBe(type); + expect(itemState.SitemapItem).toBeDefined(); + expect(itemState.SitemapItem.url).toBe(`/some/${type}/path/1`); + + // + // Check a dupe for the 2nd file written at the end + // + itemState = await ItemRecord.loadOne( + dbManager, + { + ItemID: `${file1Count + 1}`, + Type: type, + }, + true, + ); + expect(itemState).toBeDefined(); + expect(itemState.FileName).toBe(`${type}-${shardIdPadded}-00002${sitemapExtension}`); + expect(itemState.ItemID).toBe(`${file1Count + 1}`); + // When de-duping with Dynamo the in-file duplicate is weeded out + expect(itemState.ItemStatus).toBe( + theConfig.storeItemStateInDynamoDB ? 'written' : 'towrite', + ); + expect(itemState.Type).toBe(type); + expect(itemState.SitemapItem).toBeDefined(); + expect(itemState.SitemapItem.url).toBe(`/some/${type}/path/${file1Count + 1}`); + + // + // Check the ItemRecord that was written before calling the handler() + // + itemState = await ItemRecord.loadOne( + dbManager, + { + ItemID: `${file1Count + 2}`, + Type: type, + }, + true, + ); + expect(itemState).toBeDefined(); + expect(itemState.FileName).toBe(`${type}-${shardIdPadded}-00002${sitemapExtension}`); + expect(itemState.ItemID).toBe(`${file1Count + 2}`); + // This item should update it's state in the DB to be towrite + expect(itemState.ItemStatus).toBe( + theConfig.storeItemStateInDynamoDB ? 'towrite' : 'written', + ); + expect(itemState.Type).toBe(type); + expect(itemState.SitemapItem).toBeDefined(); + expect(itemState.SitemapItem.url).toBe(`/some/${type}/path/${file1Count + 2}`); + } + + // + // Fetch the sitemap from S3 and confirm it has correct count of items + // + s3Client + .reset() + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}/${type}-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }) + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/${type}/${type}-${shardIdPadded}-00002${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream2 as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: `sitemaps/${type}/`, + filenameRoot: `${type}-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(file1Count); + + const { sitemap: sitemap2, existing: sitemapExisting2 } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: `sitemaps/${type}/`, + filenameRoot: `${type}-${shardIdPadded}-00002`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting2).toBe(true); + expect(sitemap2.count).toBe( + theConfig.storeItemStateInDynamoDB ? file2Count - 1 : file2Count, + ); + + s3CallsOffset += s3CallsPerType; + } + }, 240000); + }); + + describe('groupMessagesByType', () => { + it('should work', () => { + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + + const flatMetrics = new FlatCountMetrics(); + + const itemCount = Math.floor(theConfig.itemsPerSitemapLimit * 1.1); + const items: ISitemapWriterItem[] = []; + for (let i = 0; i < itemCount; i++) { + const item: ISitemapWriterItem = { + sitemapItem: { url: `${siteBaseURL}/some/image/path/${i}` }, + customId: `${i}`, + type: 'image', + }; + items.push(item); + } + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + const payload = { + window: { + end: 'now', + start: 'now', + }, + eventSourceARN: 'arn', + isFinalInvokeForWindow: false, + isWindowTerminatedEarly: false, + shardId: 'shard-1', + Records: records, + }; + + const result = groupMessagesByType({ flatMetrics, payload, shardId: 1 }); + + expect(result).toBeDefined(); + expect(result['image'].length).toBe(itemCount); + }); + }); + + describe('createItemStatePreFetcher', () => { + it('should work', async () => { + const itemCount = Math.floor(theConfig.itemsPerSitemapLimit * 1.1); + const items: DecodedPlusPayload[] = []; + for (let i = 0; i < itemCount; i++) { + const item: DecodedPlusPayload = { + // @ts-expect-error only need partitionKey + payload: { + partitionKey: '123', + }, + sitemapWriterItem: { + sitemapItem: { url: `${siteBaseURL}/some/image/path/${i}` }, + customId: `${i}`, + type: 'image', + }, + }; + items.push(item); + } + + const flatMetricsTyped = new FlatCountMetrics(); + const prefetcher = createItemStatePreFetcher({ + items, + type: 'image', + flatMetricsTyped, + }); + + let aggregatedCount = 0; + for await (const hydratedItemsBatch of prefetcher) { + expect(hydratedItemsBatch).toBeDefined(); + expect(hydratedItemsBatch.error).toBeUndefined; + expect(hydratedItemsBatch.items).toBeDefined(); + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + aggregatedCount += hydratedItemsBatch!.items!.length; + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + for (const item of hydratedItemsBatch!.items!) { + expect(item).toBeDefined(); + expect(item.item).toBeDefined(); + expect(item.itemState).not.toBeDefined(); + } + } + + expect(aggregatedCount).toBe(itemCount); + }); + + it('should handle items in DB already', async () => { + const itemCount = Math.floor(theConfig.itemsPerSitemapLimit * 1.1); + let itemDuplicateCount = 0; + const items: DecodedPlusPayload[] = []; + for (let i = 0; i < itemCount; i++) { + const item: DecodedPlusPayload = { + // @ts-expect-error paritionKey is enough + payload: { + partitionKey: '123', + }, + sitemapWriterItem: { + sitemapItem: { url: `${siteBaseURL}/some/image/path/${i}` }, + customId: `${i}`, + type: 'image', + }, + }; + + // Save half the items in the DB so they gets detected as a duplicate + if (i % 2 === 0) { + itemDuplicateCount += 1; + const duplicateRecord = new ItemRecord({ + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: `${i}`, + SitemapItem: { + url: `https://www.example.com/${i}`, + }, + Type: 'image', + ItemStatus: 'written', + }); + await duplicateRecord.save(dbManager); + } + + items.push(item); + } + + const flatMetricsTyped = new FlatCountMetrics(); + const prefetcher = createItemStatePreFetcher({ + items, + type: 'image', + flatMetricsTyped, + }); + + let aggregatedCount = 0; + let aggregatedDuplicateCount = 0; + for await (const hydratedItemsBatch of prefetcher) { + expect(hydratedItemsBatch).toBeDefined(); + expect(hydratedItemsBatch.error).toBeUndefined; + expect(hydratedItemsBatch.items).toBeDefined(); + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + aggregatedCount += hydratedItemsBatch!.items!.length; + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + for (const item of hydratedItemsBatch!.items!) { + expect(item).toBeDefined(); + expect(item.item).toBeDefined(); + if (parseInt(item.item.sitemapWriterItem.customId, 10) % 2 === 0) { + expect(item.itemState).toBeDefined(); + aggregatedDuplicateCount += 1; + } else { + expect(item.itemState).not.toBeDefined(); + } + } + } + + expect(aggregatedCount).toBe(itemCount); + expect(aggregatedDuplicateCount).toBe(itemDuplicateCount); + }); + }); + + describe('infix sitemaps', () => { + it("should write two sitemaps if infix is ['de']", async () => { + theConfig.infixDirs = ['de']; + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}) + // Infix Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path3' }, + customId: '3', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path4' }, + customId: '4', + type: 'image', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: (await deflateAsync(Buffer.from(JSON.stringify(item), 'utf-8'))).toString( + 'base64', + ), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + // Save one of the items in the DB so it gets detected as a duplicate + const duplicateRecord = new ItemRecord({ + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: '3', + SitemapItem: { + url: 'https://www.example.com/', + }, + Type: 'image', + ItemStatus: 'written', + }); + await duplicateRecord.save(dbManager); + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + // Primary sitemap + { + const s3SitemapPutCommand = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + expect(s3SitemapPutCommand.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items.length).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + } + + // Infix sitemap + { + const s3SitemapPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + expect(s3SitemapPutCommand.input.Key).toBe( + `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + ); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/de/', + filenameRoot: `de-image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items.length).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + } + + // + // Check ShardState in DynamoDB + // + const shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(shardState.TotalItemCount).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + const fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe(theConfig.storeItemStateInDynamoDB ? 'dirty' : 'written'); + expect(fileState.CountWritten).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + }); + + it("should write three sitemaps if infix is ['de', 'fr']", async () => { + theConfig.infixDirs = ['de', 'fr']; + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}) + // de Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}) + // fr Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/fr/fr-image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1' }, + customId: '1', + type: 'image', + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path3' }, + customId: '3', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path4' }, + customId: '4', + type: 'image', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: (await deflateAsync(Buffer.from(JSON.stringify(item), 'utf-8'))).toString( + 'base64', + ), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + // Save one of the items in the DB so it gets detected as a duplicate + const duplicateRecord = new ItemRecord({ + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + ItemID: '3', + SitemapItem: { + url: 'https://www.example.com/', + }, + Type: 'image', + ItemStatus: 'written', + }); + await duplicateRecord.save(dbManager); + + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(3); + + // There should only be 1 kinesis record written + expect(kinesisClient.calls().length).toBe(1); + const kinesisPutRecordsCommand = kinesisClient.call(0).args[0] as kinesis.PutRecordsCommand; + expect(kinesisPutRecordsCommand).toBeInstanceOf(kinesis.PutRecordsCommand); + expect(kinesisPutRecordsCommand.input.Records?.length).toBe(1); + + // Primary sitemap + { + const s3SitemapPutCommand = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + expect(s3SitemapPutCommand.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items.length).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items[0].url).toBe('https://www.example.com/some13/photo/path1'); + } + + // de sitemap + { + const s3SitemapPutCommand = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + expect(s3SitemapPutCommand.input.Key).toBe( + `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + ); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/de/', + filenameRoot: `de-image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items.length).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items[0].url).toBe('https://www.example.com/de/some13/photo/path1'); + } + + // fr sitemap + { + const s3SitemapPutCommand = s3Client.call(2).args[0] as s3.PutObjectCommand; + expect(s3SitemapPutCommand).toBeInstanceOf(s3.PutObjectCommand); + const s3SitemapStream = Readable.from(s3SitemapPutCommand.input.Body as string); + expect(s3SitemapPutCommand.input.Key).toBe( + `sitemaps/image/fr/fr-image-${shardIdPadded}-00001${sitemapExtension}`, + ); + + // + // Fetch the sitemap from S3 and confirm it has 4 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/fr/fr-image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { + sitemap, + existing: sitemapExisting, + items, + } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/fr/', + filenameRoot: `fr-image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items.length).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(items[0].url).toBe('https://www.example.com/fr/some13/photo/path1'); + } + + // + // Check ShardState in DynamoDB + // + const shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(shardState.TotalItemCount).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + const fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe(theConfig.storeItemStateInDynamoDB ? 'dirty' : 'written'); + expect(fileState.CountWritten).toBe(theConfig.storeItemStateInDynamoDB ? 3 : 4); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + }); + + it('existing index, unfull last sitemap', async () => { + theConfig.infixDirs = ['de']; + + kinesisClient.on(kinesis.PutRecordsCommand).resolves({ + Records: [], + }); + s3Client + .onAnyCommand() + .callsFake((command) => { + // eslint-disable-next-line no-console + console.log(`got unhandled command: ${command.constructor.name}`); + }) + .rejects() + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}) + // de Sitemap file upload + .on( + s3.PutObjectCommand, + { + CacheControl: 'max-age=900; public', + ContentType: 'application/xml', + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}); + + const items: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some13/photo/path1', lastmod: '2022-06-26T19:35:36.290Z' }, + customId: '1', + type: 'image', + }, + { + sitemapItem: { url: '/some13/photo/path2' }, + customId: '2', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path3' }, + customId: '3', + type: 'image', + }, + { + sitemapItem: { url: '/some14/photo/path4' }, + customId: '4', + type: 'image', + }, + ]; + + const records: lambda.KinesisStreamRecord[] = []; + for (const item of items) { + records.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + // + // 1st Handler call to create sitemap contents + // + await handler( + { + Records: records, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(2); + + // Get stream for Primary sitemap + const sitemapRequestPrimary = s3Client.call(0).args[0] as s3.PutObjectCommand; + expect(sitemapRequestPrimary).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemapRequestPrimary.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStreamPrimary = Readable.from(sitemapRequestPrimary.input.Body as string); + + // Get stream for De sitemap + const sitemapRequestDe = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(sitemapRequestDe).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemapRequestDe.input.Key).toBe( + `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStreamDe = Readable.from(sitemapRequestDe.input.Body as string); + + // + // Check ShardState in DynamoDB + // + let shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(4); + expect(shardState.TotalItemCount).toBe(4); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + let fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(4); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // NOTE: We cannot read and validate the s3 index/sitemap in this test + // because the read is destructive on the s3 body streams. + // So we just invoke the handler a second time and check the final results + // + + s3Client + .reset() + .onAnyCommand() + .callsFake((command) => { + // eslint-disable-next-line no-console + console.log(`got unhandled command: ${command.constructor.name}`); + }) + .rejects() + // Primary sitemap echo back + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ + Body: s3SitemapStreamPrimary as unknown as StreamingBlobPayloadOutputTypes, + }) + // De sitemap echo back + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolvesOnce({ Body: s3SitemapStreamDe as unknown as StreamingBlobPayloadOutputTypes }) + // Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}) + // de Sitemap file upload + .on( + s3.PutObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolvesOnce({}); + + // + // Call the handler again with more items + // + const items2: ISitemapWriterItem[] = [ + { + sitemapItem: { url: '/some15/photo/path5', lastmod: '2022-06-26T19:35:36.290Z' }, + customId: '5', + type: 'image', + }, + { + sitemapItem: { url: '/some15/photo/path6' }, + customId: '6', + type: 'image', + }, + { + sitemapItem: { url: '/some16/photo/path7' }, + customId: '7', + type: 'image', + }, + { + sitemapItem: { url: '/some16/photo/path8' }, + customId: '8', + type: 'image', + }, + ]; + + const records2: lambda.KinesisStreamRecord[] = []; + for (const item of items2) { + records2.push({ + awsRegion: 'us-east-1', + eventID: 'shardId-00000000001:123456', + eventName: 'cat', + eventSource: 'dog', + eventSourceARN: 'arn:aws:something', + eventVersion: 'v1', + invokeIdentityArn: 'arn:aws:something', + kinesis: { + data: Buffer.from(JSON.stringify(item), 'utf-8').toString('base64'), + sequenceNumber: '1', + partitionKey: 'something', + kinesisSchemaVersion: 'x', + approximateArrivalTimestamp: 1, + }, + }); + } + + // + // 2nd Handler call to update sitemap contents + // + await handler( + { + Records: records2, + }, + { + awsRequestId: 'local-testing', + } as lambda.Context, + ); + + expect(s3Client.calls().length).toBe(3); + + // Primary sitemap check + { + const sitemapRequest = s3Client.call(1).args[0] as s3.PutObjectCommand; + expect(sitemapRequest).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemapRequest.input.Key).toBe( + `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStream = Readable.from(sitemapRequest.input.Body as string); + + // + // Fetch the sitemap from S3 and confirm it has 8 items + // + s3Client + .on( + s3.GetObjectCommand, + { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/image-${shardIdPadded}-00001${sitemapExtension}`, + }, + false, + ) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/', + filenameRoot: `image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(8); + expect(sitemap.items[0].url).toBe('https://www.example.com/some13/photo/path1'); + expect(sitemap.items[4].url).toBe('https://www.example.com/some15/photo/path5'); + expect(sitemap.items[0].lastmod).toBe('2022-06-26T19:35:36.290Z'); + expect(sitemap.items[4].lastmod).toBe('2022-06-26T19:35:36.290Z'); + } + + // de sitemap check + { + const sitemapRequest = s3Client.call(2).args[0] as s3.PutObjectCommand; + expect(sitemapRequest).toBeInstanceOf(s3.PutObjectCommand); + expect(sitemapRequest.input.Key).toBe( + `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + ); + const s3SitemapStream = Readable.from(sitemapRequest.input.Body as string); + + // + // Fetch the sitemap from S3 and confirm it has 8 items + // + s3Client + .on(s3.GetObjectCommand, { + Bucket: s3SitemapsBucketName, + Key: `sitemaps/image/de/de-image-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: s3SitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + const { sitemap, existing: sitemapExisting } = await SitemapFileWrapper.fromS3({ + bucketName: s3SitemapsBucketName, + // FIXME: the sub-folder for the sitemap needs to be handled automagically + s3Directory: 'sitemaps/image/de/', + filenameRoot: `de-image-${shardIdPadded}-00001`, + compress: theConfig.compressSitemapFiles, + siteBaseURL, + }); + expect(sitemapExisting).toBe(true); + expect(sitemap.count).toBe(8); + expect(sitemap.items[0].url).toBe('https://www.example.com/de/some13/photo/path1'); + expect(sitemap.items[4].url).toBe('https://www.example.com/de/some15/photo/path5'); + expect(sitemap.items[0].lastmod).toBe('2022-06-26T19:35:36.290Z'); + expect(sitemap.items[4].lastmod).toBe('2022-06-26T19:35:36.290Z'); + } + + // + // Check ShardState in DynamoDB + // + shardState = await ShardStateRecord.loadOne(dbManager, { + Type: 'image', + ShardId: 1, + }); + expect(shardState).toBeDefined(); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileItemCount).toBe(8); + expect(shardState.TotalItemCount).toBe(8); + expect(shardState.CurrentFileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + + // + // Check FileState in DynamoDB + // + fileState = await FileRecord.loadOne(dbManager, { + Type: 'image', + FileName: `image-${shardIdPadded}-00001${sitemapExtension}`, + }); + expect(fileState).toBeDefined(); + expect(fileState.FileStatus).toBe('written'); + expect(fileState.CountWritten).toBe(8); + expect(fileState.FileName).toBe(`image-${shardIdPadded}-00001${sitemapExtension}`); + }); + }); +}); diff --git a/packages/kinesis-sitemap-writer/src/index.ts b/packages/kinesis-sitemap-writer/src/index.ts new file mode 100644 index 0000000..8369a9c --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/index.ts @@ -0,0 +1,852 @@ +import 'reflect-metadata'; +import 'source-map-support/register'; +import { captureAWSv3Client } from 'aws-xray-sdk-core'; +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import * as kinesis from '@aws-sdk/client-kinesis'; +import { S3Client } from '@aws-sdk/client-s3'; +import https from 'https'; +import zlib from 'zlib'; +import AggregateError from 'aggregate-error'; +import type * as lambda from 'aws-lambda'; +import type { ISitemapWriterItem } from '@shutterstock/sitemaps-models-lib'; +import { + metricScope, + Unit as metricUnit, + Configuration as metricConfiguration, +} from 'aws-embedded-metrics'; +import { FlatCountMetrics, metricScopeDummy } from '@shutterstock/aws-embedded-metrics-flatten'; +import { Chunker } from '@shutterstock/chunker'; +import { IterableMapper, IterableQueueMapperSimple } from '@shutterstock/p-map-iterable'; +import { Config } from './config/config'; +import { + SitemapWriterMetrics, + SitemapWriterTypedMetrics, +} from '@shutterstock/sitemaps-metrics-lib'; +import { SitemapWrapperOverrideAWSClients } from '@shutterstock/sitemaps-wrapper-lib'; +import batch from 'it-batch'; +import { DBManager, ItemRecord, ShardStateRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapFileAndStats } from './sitemap-file-stats'; +import { + backgroundUploadSitemapWorker, + rotateSitemapFile, + s3BackgroundUploader, + s3BackgroundUploaderOptions, + writeOrRotateAndWrite, +} from './sitemap-rotate'; +import { loadInitialSitemapFile } from './sitemap-load-initial'; +import { log } from './utils/log'; +import { VError } from 'verror'; +import { KinesisBackgroundWriter, KinesisRetrier } from '@shutterstock/kinesis-helpers'; + +const config = Config.instance; + +// Initially setup the dbclient and s3client +let dbManager: DBManager; +let dynamoClient = captureAWSv3Client( + new DynamoDBClient({ + maxAttempts: 16, // maxAttempts defaults to 3 + // Throttling base delay is 500 ms + // Other error base delay is 100 ms + // Default strategy is exponential backoff with a max delay of 20 seconds per try + // regardless of which attempt count it is (exponential backoff up to 20 seocnds, then constant 20 seconds) + }), +); +dbManager = new DBManager({ client: dynamoClient, tableName: config.tableName }); +const s3Client = captureAWSv3Client( + new S3Client({ + maxAttempts: 16, + }), +); +const kinesisClient = captureAWSv3Client( + new kinesis.KinesisClient({ + maxAttempts: 16, + }), +); +SitemapWrapperOverrideAWSClients({ s3Client }); + +export function overrideDBManager(opts: { + dbManager: DBManager; + dynamoClient: DynamoDBClient; +}): void { + dbManager = opts.dbManager; + dynamoClient = opts.dynamoClient; +} + +metricConfiguration.namespace = config.metricsNamespace; + +log.info('rendered config', { config, maxSockets: https.globalAgent.maxSockets }); +log.info('config files found', { configFiles: Config.configFiles }); + +process.on('uncaughtException', (error) => { + log.error('uncaughtException'); + log.error(error, { extraMsg: 'uncaughtException' }); +}); +process.on('unhandledRejection', (error) => { + log.error('unhandledRejection'); + if (error !== undefined && error !== null && typeof error === 'object') { + log.error(error as Error, { extraMsg: 'unhandledRejection' }); + } +}); + +const enableMetricScope = config.emitMetrics ? metricScope : metricScopeDummy; + +export const handler = enableMetricScope( + (metrics) => + async (payload: lambda.KinesisStreamEvent, context?: lambda.Context): Promise => { + const startTime = Date.now(); + const flatMetrics = new FlatCountMetrics(); + let lastSeenItem: ISitemapWriterItem | undefined = undefined; + let lastFileName: string | undefined = undefined; + + const shardId = parseInt( + (payload.Records.length > 0 + ? payload.Records[0].eventID.split(':')[0] + : 'shardId-000000000000' + ) + .split('-') + .pop() as string, + 10, + ); + + // Pipeline: + // Chunker -> KinesisBackgroundWriter -> KinesisRetrier -> KinesisClient + const kinesisRetrier = new KinesisRetrier({ + kinesisClient, + }); + const kinesisBackgroundWriter = new KinesisBackgroundWriter({ + concurrency: 1, + kinesisClient: kinesisRetrier, + }); + const chunkerCompact = new Chunker({ + countLimit: 500, + sizeLimit: 5 * 1024 * 1024 * 0.95, // Stay under the 5 MB size limit + sizer: (item: kinesis.PutRecordsRequestEntry): number => { + const itemJSON = JSON.stringify(item); + return itemJSON.length; + }, + writer: async (records: kinesis.PutRecordsRequestEntry[]): Promise => { + // We don't get a result because this await only waits till the write is queued + await kinesisBackgroundWriter.send( + new kinesis.PutRecordsCommand({ + StreamName: config.kinesisSelfStreamName, + Records: records, + }), + ); + }, + }); + + // Set logger request-specific context + log.options.meta = { + env: Config.envLevel, + }; + + try { + metrics.setProperty('RequestId', context?.awsRequestId); + metrics.setProperty('Env', Config.envLevel); + + metrics.putMetric(SitemapWriterMetrics.EventReceived, 1, metricUnit.Count); + metrics.putMetric( + SitemapWriterMetrics.MsgReceived, + payload.Records.length, + metricUnit.Count, + ); + await metrics.flush(); + + log.info('grouping messages by type'); + const messagesByType = groupMessagesByType({ payload, flatMetrics, shardId }); + log.info('finished grouping messages by type'); + // @ts-expect-error - Free the input Records - Make sure they are not touched again + delete payload.Records; + + // + // Loop through the consolidated list of items by type + // + for (const type of Object.keys(messagesByType)) { + log.info('top of type loop', { type }); + + const flatMetricsTyped = new FlatCountMetrics(); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.TypeStarted, 1, metricUnit.Count); + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.Items, + messagesByType[type].length, + metricUnit.Count, + ); + + // + // Create a background s3 file uploader and dynamodb writer + // + const s3Uploader: s3BackgroundUploader = + new IterableQueueMapperSimple( + backgroundUploadSitemapWorker, + { concurrency: config.s3ConcurrentWrites }, + ); + const dbWriter = new IterableQueueMapperSimple( + async (records: ItemRecord[]): Promise => { + await ItemRecord.saveMany(dbManager, records); + }, + { concurrency: config.dynamoDBConcurrentWrites }, + ); + + // Create a chunker for this topic to size batch the ItemRecord writes + const itemChunker = new Chunker({ + countLimit: 25, + // https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html + sizeLimit: 16 * 1024 * 1024 * 0.95, // Stay under the 16 MB size limit + sizer: (item: ItemRecord): number => { + const itemJSON = JSON.stringify(item); + return itemJSON.length; + }, + writer: async (records: ItemRecord[]): Promise => { + // Return immediately if there is a slot, else wait for a slot to free up + await dbWriter.enqueue(records); + }, + }); + + let shardState: ShardStateRecord | undefined = undefined; + let currentSitemap: SitemapFileAndStats | undefined = undefined; + + try { + const itemStateCache: { [customId: string]: ItemRecord } = {}; + + log.info('de-duplicating records in the input', { type }); + + // Use only the most recent message for each item id + const items: DecodedPlusPayload[] = []; + const uniqueItems: { [customId: string]: DecodedPlusPayload } = {}; + messagesByType[type].map((value) => { + if (uniqueItems[value.sitemapWriterItem.customId] !== undefined) { + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.DuplicateSkippedInput, + 1, + metricUnit.Count, + ); + // log.warn('duplicate coalesced in input data', { + // type, + // customId: value.customId, + // url: value.sitemapItem.url, + // }); + } + uniqueItems[value.sitemapWriterItem.customId] = value; + }); + Object.keys(uniqueItems).map((key) => { + items.push(uniqueItems[key]); + }); + + // Load the shard state + log.info('getting shard state', { type }); + shardState = + (await ShardStateRecord.loadOne(dbManager, { + Type: type, + ShardId: shardId, + })) || + new ShardStateRecord({ + Type: type, + ShardId: shardId, + }); + + log.info('got shard state', { type, shardState: shardState.dbStruct }); + + // Save the last file name for debugging + lastFileName = shardState.CurrentFileName; + + if (items.length === 0) { + log.warn('skipping processing of message type due to no items', { + type, + itemsCount: items.length, + }); + + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.NoItems, 1, metricUnit.Count); + continue; + } + + log.info('starting processing of message type', { type, itemsCount: items.length }); + + // Prefetch the Item DB info in the background + const itemStatePrefetcher = createItemStatePreFetcher({ + items, + type, + flatMetricsTyped, + }); + + // Loop through the pre-fetched DynamoDB states + for await (const itemAndItemStateBatch of itemStatePrefetcher) { + if (itemAndItemStateBatch.error !== undefined) { + log.error(itemAndItemStateBatch.error, { + extraMsg: 'item state prefetcher encountered an error', + }); + throw itemAndItemStateBatch.error; + } + if (itemAndItemStateBatch.items === undefined) { + throw new TypeError('items was undefined'); + } + + for (const itemAndItemState of itemAndItemStateBatch.items) { + const { item: rawItem, itemState } = itemAndItemState; + // Hold onto the item for error reporting + lastSeenItem = rawItem.sitemapWriterItem; + + // Bail out if the background uploader encountered any error + if (s3Uploader.errors.length > 0) { + log.error( + 's3 background uploader encountered errors - bailing out of file iteration', + { + type, + }, + ); + throw new AggregateError(s3Uploader.errors); + } + if (dbWriter.errors.length > 0) { + log.error( + 'DynamoDB background writer encountered errors - bailing out of file iteration', + { + type, + }, + ); + throw new AggregateError(dbWriter.errors); + } + // Bail out if the background uploader encountered any error + if (kinesisBackgroundWriter.errors.length > 0) { + metrics.putMetric( + SitemapWriterMetrics.KinesisBackgroundWriterError, + kinesisBackgroundWriter.errors.length, + metricUnit.Count, + ); + log.error('kinesis background writer encountered errors - bailing out', { + type, + errors: kinesisBackgroundWriter.errors, + }); + throw new AggregateError(kinesisBackgroundWriter.errors); + } + + const { customId } = rawItem.sitemapWriterItem; + + // Check if the item is already known + // We always check the in memory cache + // We optionally check DynamoDB + const item = itemStateCache[customId] || itemState; + let shouldWriteToXML = true; + // Check if this record should be compacted (not written back to the stream) + // Compaction is in effect when the incomingCompactVersion is set and the + // incoming record has no compactVersion OR is less than the incomingCompactVersion + let recordShouldBeCompacted = false; + if (config.incomingCompactVersion > 0) { + if ( + rawItem.sitemapWriterItem.compactVersion === undefined || + rawItem.sitemapWriterItem.compactVersion < config.incomingCompactVersion + ) { + recordShouldBeCompacted = true; + } + } + if (item !== undefined) { + // This item exists: if it's from a different filename we've got a duplicate + if (recordShouldBeCompacted) { + shouldWriteToXML = false; + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.DuplicateCompacted, + 1, + metricUnit.Count, + ); + } else if (item.FileName !== shardState.CurrentFileName) { + shouldWriteToXML = false; + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.DuplicateSkipped, + 1, + metricUnit.Count, + ); + // 2022-03-17 - Too expensive when backfill records are present + // log.warn('duplicate, sitemap file does not match', { + // type, + // customId, + // url: rawItem.sitemapItem.url, + // usingSitemapFilename: shardState.CurrentFileName, + // }); + + // TODO: Load the prior file state and mark that it's dirty again + } else { + // We got another instance of the same item during writing + // of a single new sitemap file. This *should* be allowed, but, + // the sitemap writer writes directly to the file without batching + // and consolidating items with the same ID, so this would write two + // lines with the same item on them. + shouldWriteToXML = false; + flatMetricsTyped.putMetric('DuplicateSkippedSameFile', 1, metricUnit.Count); + // 2022-03-17 - Too expensive when backfill records are present + // log.warn('duplicate, sitemap file matches but item already written', { + // type, + // customId, + // url: rawItem.sitemapItem.url, + // usingSitemapFilename: shardState.CurrentFileName, + // }); + + // We can mark the current file dirty since an item in it has been updated + if (currentSitemap !== undefined) { + currentSitemap.stats.ResetTimeDirtiedISO(); + } + } + } + + // Loop around if this item can't be written + if (!shouldWriteToXML) { + item.ResetTimeDirtiedISO(); + item.SitemapItem = rawItem.sitemapWriterItem.sitemapItem; + + // Save the updated item in the cache + itemStateCache[customId] = item; + + // Save the updated SitemapItemLoose data to the DB + // This makes it easy to freshen the file using the latest DB + // contents for each item + if (config.storeItemStateInDynamoDB) { + await itemChunker.enqueue(item); + } + continue; + } + + // Loop around if we're compacting this record but it's not a duplicate + if (recordShouldBeCompacted) { + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.UniqueCompacted, + 1, + metricUnit.Count, + ); + + // Set compactVersion to the version we're expecting + rawItem.sitemapWriterItem.compactVersion = config.incomingCompactVersion; + + // Write back to our own stream + // Tell the chunker to write the item, eventually + const dataBuffer = Buffer.from( + JSON.stringify(rawItem.sitemapWriterItem), + 'utf-8', + ); + // zlib kinda sucks TBH + // if (config.compressRecords) { + // dataBuffer = await deflateAsync(dataBuffer); + // } + await chunkerCompact.enqueue({ + Data: dataBuffer, + PartitionKey: rawItem.payload.partitionKey, + }); + continue; + } + + // + // currentSitemap may not have been loaded until this point + // We get batches of updated records that have nothing to write, so we do not + // load or parse the existing sitemap file until we hit the first record that + // needs to be written (if any) + // + if (currentSitemap === undefined) { + // + // Load the sitemap file off of S3 or create a new one + // NOTE: This is an EXPENSIVE operation to parse the existing XML + // (can be up to 30 seconds to parse a > 30 MB XML file) + // + currentSitemap = await loadInitialSitemapFile({ + config, + dbManager, + shardState, + flatMetricsTyped, + }); + + // Save the last file name for debugging + lastFileName = shardState.CurrentFileName; + } + + // Create a new sitemap file whenever the last one fills up + if (currentSitemap.sitemap.full) { + currentSitemap = await rotateSitemapFile({ + sitemapAndStats: currentSitemap, + s3Uploader, + flatMetricsTyped, + shardState, + config, + dbManager, + kinesisClient, + }); + + // Save the last file name for debugging + lastFileName = shardState.CurrentFileName; + } + + // Write this single item + currentSitemap = await writeOrRotateAndWrite({ + currentSitemap, + item: rawItem.sitemapWriterItem, + s3Uploader, + flatMetricsTyped, + shardState, + config, + dbManager, + kinesisClient, + }); + // Save the last file name for debugging + lastFileName = shardState.CurrentFileName; + + // Record that we added an item to whatever the current sitemap file is + shardState.AddFileItem(); + currentSitemap.stats.AddFileItem(); + + // This item doesn't exist yet, save which file we wrote it to + const newitem = new ItemRecord({ + Type: type, + ItemID: customId, + FileName: shardState.CurrentFileName, + SitemapItem: rawItem.sitemapWriterItem.sitemapItem, + }); + itemStateCache[customId] = newitem; + if (config.storeItemStateInDynamoDB) { + await itemChunker.enqueue(newitem); + } + + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.SitemapItemWritten, + 1, + metricUnit.Count, + ); + } + } + // ^^^ END of Item Loop + + if (s3Uploader.errors.length > 0) { + log.error('cleanup - there were errors with s3 background uploads - throwing', { + type, + }); + throw new AggregateError(s3Uploader.errors); + } + if (dbWriter.errors.length > 0) { + log.error('cleanup - there were errors with DynamoDB background writes - throwing', { + type, + }); + throw new AggregateError(dbWriter.errors); + } + if (kinesisBackgroundWriter.errors.length > 0) { + log.error('cleanup - there were errors with Kinesis background writes - throwing', { + type, + }); + throw new AggregateError(kinesisBackgroundWriter.errors); + } + + log.info('finished type', { type }); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.TypeDone, 1, metricUnit.Count); + } catch (error) { + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.TypeFailed, 1, metricUnit.Count); + log.error(error as Error, { + caughtException: true, + type, + extraMsg: 'Caught exception at top of type loop', + lastFileName, + lastSeenItem, + }); + + // Re-throw so the batch will stall or be retried and succeed + throw error; + } finally { + // Flush the metrics collected by the type handler + const metricsTyped = metrics.new(); + metricsTyped.putDimensions({ SitemapType: type }); + flatMetricsTyped.flush(metricsTyped); + await metricsTyped.flush(); + + // Close the current file and push to S3 + if (currentSitemap !== undefined) { + if ( + currentSitemap.stats.FileStatus === 'empty' && + currentSitemap.sitemap.count === 0 + ) { + log.warn('current sitemap has no items written to it', { + type, + }); + + try { + await currentSitemap.sitemap.end(); + } catch { + // Discard this exception + } + } else { + log.info('uploading last sitemap - starting', { + type, + }); + await s3Uploader.enqueue({ + sitemapAndStats: currentSitemap, + type, + config, + dbManager, + kinesisClient, + infixDirs: config.infixDirs, + }); + } + + // Wait for all S3 sitemap uploads to finish + await s3Uploader.onIdle(); + log.info('uploading last sitemap - finished', { + type, + }); + + // Save the final shard and file state + await shardState?.save(dbManager); + await currentSitemap?.stats.save(dbManager); + + // Flush the chunker to the DB Writer, then wait for the DB Writer to finish + await itemChunker.onIdle(); + await dbWriter.onIdle(); + } + } + } + // ^^^ END of Type Loop + + log.info('finished payload'); + metrics.putMetric(SitemapWriterMetrics.EventComplete, 1, metricUnit.Count); + } catch (error) { + metrics.putMetric(SitemapWriterMetrics.EventFailed, 1, metricUnit.Count); + log.error(error as Error, { + caughtException: true, + extraMsg: 'Caught exception at top level', + lastFileName, + lastSeenItem, + }); + + // Re-throw so the batch will stall or be retried and succeed + throw error; + } finally { + await chunkerCompact.onIdle(); + await kinesisBackgroundWriter.onIdle(); + + metrics.putMetric( + SitemapWriterMetrics.DurationMS, + Date.now() - startTime, + metricUnit.Milliseconds, + ); + // Output the counts metrics as single value metrics instead of arrays of thousands + flatMetrics.flush(metrics); + } + }, +); + +type MessagesByType = { + [type: string]: DecodedPlusPayload[]; +}; + +/** + * We will have multiple records. We want to group items across all records + * that are of the same type (e.g. widget) so that we read and parse + * any prior sitemap file for this shard and type only once. + * @param opts + * @returns + */ + +export function groupMessagesByType(opts: { + flatMetrics: FlatCountMetrics; + payload: lambda.KinesisStreamEvent; + shardId: number; +}): MessagesByType { + const { flatMetrics, payload, shardId } = opts; + const messagesByType: MessagesByType = {}; + + for (const record of payload.Records) { + // Example: + // "eventID": "shardId-000000000000:49625148559272883496733425358362899333280976872660795394", + const thisRecordShardId = parseInt(record.eventID.split(':')[0].split('-').pop() as string, 10); + + if (shardId !== thisRecordShardId) { + // This should never happen... but let's just make sure as it would break our logic + throw new Error( + `Received mix-matched shardIds in a single invocation - first record: ${shardId}, later saw: ${thisRecordShardId}`, + ); + } + + const dataBuff = Buffer.from(record.kinesis.data, 'base64'); + + // Yeah yeah yeah, `inflateSync` blocks the event loop... + // Except: + // 1) We block the event loop anyway because we have to decompress everything before starting + // 2) Making the decompression happening with an IterableQueue with back pressure didn't help + // 3) `inflateSync` is up to 4x faster than `inflate` using the benchmark in `node`: + // https://github.com/nodejs/node/blob/master/benchmark/zlib/inflate.js + // + // Benchmark Results (rate, elapsed) + // ================= + // node tests/index.js + // tests/index.js n=800000 inputLen=1024 method="inflateSyncParallel": 270,300.9035812546, 2.959664542 + // tests/index.js n=800000 inputLen=1024 method="inflate": 73,536.01542054949, 10.879022958 + // tests/index.js n=800000 inputLen=1024 method="inflateSync": 261,844.48409660932, 3.055248625 + // tests/index.js n=800000 inputLen=1024 method="inflateParallel": 127,317.08136094638, 6.283524500 + const dataStr = (dataBuff.readUInt8() === 120 ? zlib.inflateSync(dataBuff) : dataBuff).toString( + 'utf-8', + ); + const data: DecodedPlusPayload = { + sitemapWriterItem: JSON.parse(dataStr) as ISitemapWriterItem, + payload: record.kinesis, + }; + + if (config.throwOnCompactVersion > 0) { + // Throw out of the Lambda if we encounter a specific compactVersion + // This is typically done when compacting and needing the processing + // to not process the newly written compacted records until a human + // intervenes (e.g. to set parallelization-factor back to 1) + if (data.sitemapWriterItem.compactVersion === config.throwOnCompactVersion) { + flatMetrics.putMetric(SitemapWriterMetrics.ExceptionCompactVersion, 1, metricUnit.Count); + + throw new Error( + `Throwing due to compactVersion encountered: ${config.throwOnCompactVersion}`, + ); + } + } + + // Skip if no sitemapItem or url + if ( + data.sitemapWriterItem.sitemapItem === undefined || + data.sitemapWriterItem.sitemapItem.url === undefined || + data.sitemapWriterItem.type === undefined + ) { + flatMetrics.putMetric(SitemapWriterMetrics.MsgSkipped, 1, metricUnit.Count); + continue; + } + + const { type } = data.sitemapWriterItem; + + // Create the type if we haven't already + let messageType = messagesByType[type]; + if (messageType === undefined) { + messageType = []; + messagesByType[type] = messageType; + } + + // Add the item to the end of the list + messageType.push(data); + } + + return messagesByType; +} + +export type DecodedPlusPayload = { + sitemapWriterItem: ISitemapWriterItem; + payload: lambda.KinesisStreamRecordPayload; +}; +type PreFetchedItems = { + items?: { item: DecodedPlusPayload; itemState?: ItemRecord }[]; + error?: Error; +}; + +/** + * Create the DynamoDB Item State Prefetcher. + * + * @param opts + * @returns AsyncIterable of hydrated items + */ +export function createItemStatePreFetcher(opts: { + items: DecodedPlusPayload[]; + type: string; + flatMetricsTyped: FlatCountMetrics; +}): IterableMapper { + return new IterableMapper( + batch(opts.items, 100), + async (itemBatch): Promise => { + try { + const resultMap: { + [customId: string]: { + item: DecodedPlusPayload; + itemState?: ItemRecord; + }; + } = {}; + + for (const item of itemBatch) { + if (resultMap[item.sitemapWriterItem.customId] !== undefined) { + opts.flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.PreFetcherUnexpectedDuplicate, + 1, + metricUnit.Count, + ); + log.error( + 'createItemStatePreFetcher saw a duplicate customId when it should not have', + { + itemCustomId: item.sitemapWriterItem.customId, + itemType: item.sitemapWriterItem.type, + itemSitemapItem: item.sitemapWriterItem.sitemapItem, + resultMapCustomId: + resultMap[item.sitemapWriterItem.customId].item.sitemapWriterItem.customId, + resultMapSitemapItem: + resultMap[item.sitemapWriterItem.customId].item.sitemapWriterItem.sitemapItem, + resultMapType: + resultMap[item.sitemapWriterItem.customId].item.sitemapWriterItem.type, + }, + ); + } else { + // Save the item + resultMap[item.sitemapWriterItem.customId] = { item }; + } + } + + if (config.storeItemStateInDynamoDB) { + // DynamoDB will reject requests with duplicate IDs + // But... we already de-duplicated IDs above for the entire payload + const itemStates = await ItemRecord.loadMany( + dbManager, + itemBatch.map((value) => { + return { + ItemID: value.sitemapWriterItem.customId, + Type: opts.type, + }; + }), + ); + + for (const itemState of itemStates) { + if ( + itemState === undefined || + itemState.ItemID === undefined || + itemState.ItemID === '' + ) { + opts.flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.PreFetcherInvalidDBItem, + 1, + metricUnit.Count, + ); + log.error('createItemStatePreFetcher - item state from DB is invalid', { + itemState, + }); + } else { + opts.flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.PreFetcherHydratedItem, + 1, + metricUnit.Count, + ); + resultMap[itemState.ItemID].itemState = itemState; + } + } + + // Now we should have a map with the item and the optional + // ItemState from DynamoDB for each input item. + } + + const items: { item: DecodedPlusPayload; itemState?: ItemRecord }[] = []; + for (const customId of Object.keys(resultMap)) { + items.push(resultMap[customId]); + } + + if (items.length !== itemBatch.length) { + opts.flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.PreFetcherLostItems, + 1, + metricUnit.Count, + ); + log.error('createItemStatePreFetcher - less output items than input items', { + itemsLength: items.length, + itemBatchLength: itemBatch.length, + items, + itemBatch, + }); + } + + return { items }; + } catch (error) { + const newErr = new VError(error as Error, `fetching item state for ids failed`); + return { error: newErr }; + } + }, + { + concurrency: config.dynamoDBConcurrentReads, + maxUnread: config.dynamoDBPrefetchMaxUnread, + stopOnMapperError: false, + }, + ); +} diff --git a/packages/kinesis-sitemap-writer/src/sitemap-file-stats.test.ts b/packages/kinesis-sitemap-writer/src/sitemap-file-stats.test.ts new file mode 100644 index 0000000..7045274 --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/sitemap-file-stats.test.ts @@ -0,0 +1,148 @@ +//sitemap-wrapper.test.ts +/// +import 'jest-dynalite/withDb'; +import fs from 'fs-extra'; +import { SitemapFileAndStats } from './sitemap-file-stats'; +import * as s3 from '@aws-sdk/client-s3'; +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import { DBManager } from '@shutterstock/sitemaps-db-lib'; + +import { mockClient, AwsClientStub } from 'aws-sdk-client-mock'; +import { Readable } from 'stream'; +import { SitemapFileWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import type { StreamingBlobPayloadOutputTypes } from '@smithy/types'; + +describe('SitemapFileAndStats', () => { + const filenameRoot = 'sitemap-tests2'; + const filenameBase = `/tmp/${filenameRoot}.xml`; + const filenameGz = `/tmp/${filenameRoot}.xml.gz`; + let s3Client: AwsClientStub; + const siteBaseURL = 'https://www.example.com'; + const type = 'image'; + let dynamoClient: DynamoDBClient; + let dbManager: DBManager; + + beforeAll(() => { + dynamoClient = new DynamoDBClient({ + endpoint: process.env.MOCK_DYNAMODB_ENDPOINT, + tls: false, + region: 'local', + }); + dbManager = new DBManager({ client: dynamoClient, tableName: 'sitemaps' }); + }); + afterAll(() => { + dynamoClient.destroy(); + }); + + beforeEach(() => { + s3Client = mockClient(s3.S3Client); + try { + if (fs.existsSync(filenameBase)) { + fs.unlinkSync(filenameBase); + } + if (fs.existsSync(filenameGz)) { + fs.unlinkSync(filenameGz); + } + } catch { + // Ignore + } + }); + + it('fromS3 - throws on S3 generic failure', async () => { + s3Client.onAnyCommand().rejects({ message: 'some weird s3 failure' }); + + // Fetch the last sitemap file + await expect(async () => + SitemapFileAndStats.fromS3( + { + bucketName: 'sitemaps', + compress: false, + s3Directory: 'sitemaps/', + filenameRoot, + siteBaseURL, + localDirectory: '/tmp', + }, + { dbManager, key: { Type: type } }, + ), + ).rejects.toThrowError('some weird s3 failure'); + }); + + it('fromS3 - throws on S3 NoSuchKey', async () => { + s3Client + .onAnyCommand() + .rejects(new s3.NoSuchKey({ $metadata: { httpStatusCode: 404 }, message: 'NoSuchKey' })); + + // Fetch the last sitemap file + await expect(async () => + SitemapFileAndStats.fromS3( + { + bucketName: 'sitemaps', + compress: false, + s3Directory: 'sitemaps/', + filenameRoot, + siteBaseURL, + localDirectory: '/tmp', + }, + { dbManager, key: { Type: type } }, + ), + ).rejects.toThrowError( + 'SitemapFileAndStats.fromS3 - File not found on S3 - This function cannot be called on non-existing files', + ); + }); + + it('fromS3 - throws on DynamoDB fails', async () => { + const sitemap = new SitemapFileWrapper({ + filenameRoot, + compress: false, + siteBaseURL, + }); + for (let i = 1; i <= 100; i++) { + await sitemap.write({ item: { url: `/some/path/first-${i}` } }); + } + await sitemap.end(); + + expect(sitemap.full).toBe(false); + const sizeUncompressed = sitemap.sizeUncompressed; + + // Accept the S3 upload request so the body bytes can be echo'd back + s3Client.onAnyCommand().rejects().on(s3.PutObjectCommand).resolves({}); + + // Push the map to S3 + await sitemap.pushToS3({ + bucketName: 'sitemaps', + s3Directory: 'sitemaps/', + }); + // Size should not change after S3 push + expect(sitemap.sizeUncompressed).toBe(sizeUncompressed); + + // Setup the S3 command to echo the uploaded stream contents right back + const s3PutObjectCommand = s3Client.call(0).args[0] as s3.PutObjectCommand; + const s3UploadStream = Readable.from(s3PutObjectCommand.input.Body as string); + s3Client + .on( + s3.GetObjectCommand, + { + Bucket: 'sitemaps', + }, + false, + ) + .resolves({ + Body: s3UploadStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Fetch the last sitemap file + await expect(async () => + SitemapFileAndStats.fromS3( + { + bucketName: 'sitemaps', + compress: false, + s3Directory: 'sitemaps/', + filenameRoot, + siteBaseURL, + localDirectory: '/tmp', + }, + { dbManager, key: { Type: type } }, + ), + ).rejects.toThrowError('FileRecord.loadOne failed for image, sitemap-tests2.xml'); + }); +}); diff --git a/packages/kinesis-sitemap-writer/src/sitemap-file-stats.ts b/packages/kinesis-sitemap-writer/src/sitemap-file-stats.ts new file mode 100644 index 0000000..a288634 --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/sitemap-file-stats.ts @@ -0,0 +1,86 @@ +import { SitemapFileWrapper } from '@shutterstock/sitemaps-wrapper-lib'; +import { DBManager, FileRecord, IFileRecord } from '@shutterstock/sitemaps-db-lib'; + +export class SitemapFileAndStatsS3LoadFailed extends Error { + constructor(m: string) { + super(m); + + // Set the prototype explicitly. + Object.setPrototypeOf(this, SitemapFileAndStatsS3LoadFailed.prototype); + } +} + +export class SitemapFileAndStatsFileRecordFailed extends Error { + constructor(m: string) { + super(m); + + // Set the prototype explicitly. + Object.setPrototypeOf(this, SitemapFileAndStatsFileRecordFailed.prototype); + } +} + +export class SitemapFileAndStats { + private _sitemap: SitemapFileWrapper; + private _stats: FileRecord; + private _existing: boolean; + + constructor(opts: { sitemap: SitemapFileWrapper; existing: boolean; stats: FileRecord }) { + this._sitemap = opts.sitemap; + this._stats = opts.stats; + this._existing = opts.existing; + } + + public static async fromS3( + mapOpts: { + compress?: boolean; + filenameRoot: string; + limitCount?: number; + limitBytes?: number; + localDirectory?: string; + bucketName: string; + s3Directory?: string; + siteBaseURL: string; + }, + statOpts: { + key: Pick; + dbManager: DBManager; + }, + ): Promise { + const sitemap = await SitemapFileWrapper.fromS3(mapOpts); + + if (!sitemap.existing) { + throw new SitemapFileAndStatsS3LoadFailed( + 'SitemapFileAndStats.fromS3 - File not found on S3 - This function cannot be called on non-existing files', + ); + } + + const stats = await FileRecord.loadOne(statOpts.dbManager, { + Type: statOpts.key.Type, + FileName: sitemap.sitemap.filename, + }); + if (stats === undefined) { + throw new SitemapFileAndStatsFileRecordFailed( + `FileRecord.loadOne failed for ${statOpts.key.Type}, ${sitemap.sitemap.filename}`, + ); + } + + const result = new SitemapFileAndStats({ + sitemap: sitemap.sitemap, + existing: sitemap.existing, + stats, + }); + return result; + } + + public get sitemap(): SitemapFileWrapper { + return this._sitemap; + } + + public get existing(): boolean { + return this._existing; + } + + public get stats(): FileRecord { + return this._stats; + } +} diff --git a/packages/kinesis-sitemap-writer/src/sitemap-load-initial.test.ts b/packages/kinesis-sitemap-writer/src/sitemap-load-initial.test.ts new file mode 100644 index 0000000..b276b7a --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/sitemap-load-initial.test.ts @@ -0,0 +1,464 @@ +/* eslint-disable no-console */ +//index.test.ts +/// +import 'jest-dynalite/withDb'; +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +// Config has to be mocked before the handler is imported because +// the handler accesses the static Config.instance at file scope. +// Note: jest.spyOn(Config, 'instance', 'get').mockImplementation(...) +// does not work here because Config.instance is a static class property +// not an object property. +import { Config, IConfig } from './config/config'; +jest.mock('./config/config'); +Object.defineProperty(Config, 'instance', { + configurable: false, + enumerable: false, + get: jest.fn((): IConfig => { + return { + awsAccountID: 123456, + awsRegion: 'mock', + metricsNamespace: 'some/metrics/namespace', + siteBaseURL: 'https://www.example.com', + s3SitemapsBucketName: 'doc-example-bucket', + compressSitemapFiles: false, + emitMetrics: false, + logSilent: true, + localDirectory: '/tmp/sitemaps', + s3Directory: 'sitemaps/', + siteBaseSitemapPath: 'sitemaps', + sitemapFileNamingScheme: 'index', + tableName: 'sitemaps', + storeItemStateInDynamoDB: false, + itemsPerSitemapLimit: 5000, + kinesisIndexWriterStreamName: 'sitemap-index-stream', + dynamoDBConcurrentReads: 2, + dynamoDBPrefetchMaxUnread: 4, + dynamoDBConcurrentWrites: 20, + s3ConcurrentWrites: 4, + throwOnCompactVersion: 0, + incomingCompactVersion: 0, + kinesisSelfStreamName: 'sitemap-stream', + infixDirs: [], + }; + }), +}); +import { createReadStream } from 'graceful-fs'; +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import * as s3 from '@aws-sdk/client-s3'; +import { mockClient, AwsClientStub } from 'aws-sdk-client-mock'; +import { ShardStateRecord, DBManager, FileRecord } from '@shutterstock/sitemaps-db-lib'; +import { loadInitialSitemapFile } from './sitemap-load-initial'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { resolve } from 'path'; +import type { StreamingBlobPayloadOutputTypes } from '@smithy/types'; + +describe('sitemap-load-initial', () => { + let s3Client: AwsClientStub; + let flatMetricsTyped: FlatCountMetrics; + let config: IConfig; + let sitemapExtension: string; + let dynamoClient: DynamoDBClient; + let dbManager: DBManager; + + beforeAll(() => { + config = { ...Config.instance }; + + dynamoClient = new DynamoDBClient({ + endpoint: process.env.MOCK_DYNAMODB_ENDPOINT, + tls: false, + region: 'local', + }); + dbManager = new DBManager({ client: dynamoClient, tableName: config.tableName }); + }); + afterAll(() => { + dynamoClient.destroy(); + }); + + beforeEach(() => { + config = { ...Config.instance }; + s3Client = mockClient(s3.S3Client); + sitemapExtension = config.compressSitemapFiles ? '.xml.gz' : '.xml'; + flatMetricsTyped = new FlatCountMetrics(); + }); + + describe('loadInitialSitemapFile', () => { + const type = 'widget'; + const shardId = 1; + const shardIdPadded = shardId.toString().padStart(3, '0'); + + it('no shard state, on file state, no s3 file', async () => { + s3Client + .onAnyCommand() + .rejects(new s3.NoSuchKey({ $metadata: { httpStatusCode: 404 }, message: 'NoSuchKey' })); + + const shardStateInit = new ShardStateRecord({ + ShardId: shardId, + Type: type, + }); + + const initialSitemap = await loadInitialSitemapFile({ + config, + dbManager, + flatMetricsTyped, + shardState: shardStateInit, + }); + + expect(initialSitemap).toBeDefined(); + expect(initialSitemap.sitemap).toBeDefined(); + expect(initialSitemap.existing).toBe(false); + expect(initialSitemap.stats.FileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(initialSitemap.sitemap.count).toBe(0); + + // Check that Shard State was updated correctly in the DB + const shardStateAfter = await ShardStateRecord.loadOne(dbManager, { + ShardId: shardId, + Type: type, + }); + expect(shardStateAfter).toBeDefined(); + expect(shardStateAfter.CurrentFileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(shardStateAfter.FileCount).toBe(1); + + // Check that File State was updated correctly in the DB + const fileStateAfter = await FileRecord.loadOne(dbManager, { + FileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + Type: type, + }); + expect(fileStateAfter).toBeDefined(); + expect(fileStateAfter.FileName).toBe(`widget-${shardIdPadded}-00001${sitemapExtension}`); + expect(fileStateAfter.FileStatus).toBe('empty'); + expect(fileStateAfter.Type).toBe(type); + }); + + it('existing and correct shard state / file state / s3 file', async () => { + const sitemapStream = createReadStream(resolve(__dirname, 'mocks', 'video-small.xml')); + s3Client + .onAnyCommand() + .callsFake((command) => { + console.error('Unmocked command', command); + throw new Error('Unmocked command'); + }) + .on(s3.GetObjectCommand, { + Bucket: config.s3SitemapsBucketName, + Key: `${config.s3Directory}widget/widget-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: sitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Init the Shard State in the DB + const shardStateInit = new ShardStateRecord({ + ShardId: shardId, + Type: type, + FileCount: 1, + CurrentFileItemCount: 8, + CurrentFileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + TotalItemCount: 8, + }); + await shardStateInit.save(dbManager); + + // Init the File State in the DB + const fileStateInit = new FileRecord({ + FileName: shardStateInit.CurrentFileName, + CountWritten: 8, + Type: type, + }); + await fileStateInit.save(dbManager); + expect(fileStateInit.FileStatus).toBe('written'); + + const initialSitemap = await loadInitialSitemapFile({ + config, + dbManager, + flatMetricsTyped, + shardState: shardStateInit, + }); + + expect(initialSitemap).toBeDefined(); + expect(initialSitemap.sitemap).toBeDefined(); + expect(initialSitemap.existing).toBe(true); + expect(initialSitemap.stats.FileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(initialSitemap.sitemap.count).toBe(shardStateInit.TotalItemCount); + + // Check that Shard State was updated correctly in the DB + const shardStateAfter = await ShardStateRecord.loadOne(dbManager, { + ShardId: shardId, + Type: type, + }); + expect(shardStateAfter).toBeDefined(); + expect(shardStateAfter.CurrentFileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(shardStateAfter.FileCount).toBe(1); + + // Check that File State was updated correctly in the DB + const fileStateAfter = await FileRecord.loadOne(dbManager, { + FileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + Type: type, + }); + expect(fileStateAfter).toBeDefined(); + expect(fileStateAfter.FileName).toBe(`widget-${shardIdPadded}-00001${sitemapExtension}`); + expect(fileStateAfter.FileStatus).toBe('written'); + expect(fileStateAfter.Type).toBe(type); + }); + + it('existing shard state record, existing file state record, missing s3 file', async () => { + s3Client + .onAnyCommand() + .rejects(new s3.NoSuchKey({ $metadata: { httpStatusCode: 404 }, message: 'NoSuchKey' })); + + // Init the Shard State in the DB + const shardStateInit = new ShardStateRecord({ + ShardId: shardId, + Type: type, + FileCount: 1, + CurrentFileItemCount: 8, + CurrentFileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + TotalItemCount: 8, + }); + await shardStateInit.save(dbManager); + + // Init the File State in the DB + const fileStateInit = new FileRecord({ + FileName: shardStateInit.CurrentFileName, + CountWritten: 8, + Type: type, + }); + await fileStateInit.save(dbManager); + expect(fileStateInit.FileStatus).toBe('written'); + + const initialSitemap = await loadInitialSitemapFile({ + config, + dbManager, + flatMetricsTyped, + shardState: shardStateInit, + }); + + // This needs to skip the file that cannot be retrieved + // The file that cannot be retrieved will eventually be reconstructed by contents from DynamoDB + + expect(initialSitemap).toBeDefined(); + expect(initialSitemap.sitemap).toBeDefined(); + expect(initialSitemap.existing).toBe(false); + expect(initialSitemap.stats.FileName).toBe( + `widget-${shardIdPadded}-00002${sitemapExtension}`, + ); + expect(initialSitemap.sitemap.count).toBe(0); + + // Check that Shard State was updated correctly in the DB + const shardStateAfter = await ShardStateRecord.loadOne(dbManager, { + ShardId: shardId, + Type: type, + }); + expect(shardStateAfter).toBeDefined(); + expect(shardStateAfter.CurrentFileName).toBe( + `widget-${shardIdPadded}-00002${sitemapExtension}`, + ); + expect(shardStateAfter.FileCount).toBe(2); + + // Check that File State was updated correctly in the DB + const fileStateAfter = await FileRecord.loadOne(dbManager, { + FileName: `widget-${shardIdPadded}-00002${sitemapExtension}`, + Type: type, + }); + expect(fileStateAfter).toBeDefined(); + expect(fileStateAfter.FileName).toBe(`widget-${shardIdPadded}-00002${sitemapExtension}`); + expect(fileStateAfter.FileStatus).toBe('empty'); + expect(fileStateAfter.Type).toBe(type); + expect(fileStateAfter.CountWritten).toBe(0); + }); + + it('existing and correct shard state / file state, corrupt s3 file', async () => { + const sitemapStream = createReadStream(resolve(__dirname, 'mocks', 'malformed-small.xml')); + s3Client + .onAnyCommand() + .callsFake((command) => { + console.error('Unmocked command', command); + throw new Error('Unmocked command'); + }) + .on(s3.GetObjectCommand, { + Bucket: config.s3SitemapsBucketName, + Key: `${config.s3Directory}widget/widget-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: sitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Init the Shard State in the DB + const shardStateInit = new ShardStateRecord({ + ShardId: shardId, + Type: type, + FileCount: 1, + CurrentFileItemCount: 8, + CurrentFileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + TotalItemCount: 8, + }); + await shardStateInit.save(dbManager); + + // Init the File State in the DB + const fileStateInit = new FileRecord({ + FileName: shardStateInit.CurrentFileName, + CountWritten: 8, + Type: type, + }); + await fileStateInit.save(dbManager); + expect(fileStateInit.FileStatus).toBe('written'); + + const initialSitemap = await loadInitialSitemapFile({ + config, + dbManager, + flatMetricsTyped, + shardState: shardStateInit, + }); + + expect(initialSitemap).toBeDefined(); + expect(initialSitemap.sitemap).toBeDefined(); + expect(initialSitemap.existing).toBe(false); + expect(initialSitemap.stats.FileName).toBe( + `widget-${shardIdPadded}-00002${sitemapExtension}`, + ); + expect(initialSitemap.sitemap.count).toBe(0); + + // Check that Shard State was updated correctly in the DB + const shardStateAfter = await ShardStateRecord.loadOne(dbManager, { + ShardId: shardId, + Type: type, + }); + expect(shardStateAfter).toBeDefined(); + expect(shardStateAfter.CurrentFileName).toBe( + `widget-${shardIdPadded}-00002${sitemapExtension}`, + ); + expect(shardStateAfter.FileCount).toBe(2); + expect(shardStateAfter.TotalItemCount).toBe(shardStateInit.TotalItemCount); + + // Check that the malformed File State was updated correctly in the DB + const fileStateAfterMalformed = await FileRecord.loadOne(dbManager, { + FileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + Type: type, + }); + expect(fileStateAfterMalformed).toBeDefined(); + expect(fileStateAfterMalformed.FileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(fileStateAfterMalformed.FileStatus).toBe('malformed'); + expect(fileStateAfterMalformed.Type).toBe(type); + + // Check that the new File State was updated correctly in the DB + const fileStateAfter = await FileRecord.loadOne(dbManager, { + FileName: `widget-${shardIdPadded}-00002${sitemapExtension}`, + Type: type, + }); + expect(fileStateAfter).toBeDefined(); + expect(fileStateAfter.FileName).toBe(`widget-${shardIdPadded}-00002${sitemapExtension}`); + expect(fileStateAfter.FileStatus).toBe('empty'); + expect(fileStateAfter.Type).toBe(type); + }); + + it('existing and correct shard state, file state has status of `empty`, s3 file will be missing', async () => { + s3Client.onAnyCommand().rejects(); + + // Init the Shard State in the DB + const shardStateInit = new ShardStateRecord({ + ShardId: shardId, + Type: type, + FileCount: 1, + CurrentFileItemCount: 0, + CurrentFileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + TotalItemCount: 0, + }); + await shardStateInit.save(dbManager); + + // Init the File State in the DB + const fileStateInit = new FileRecord({ + FileName: shardStateInit.CurrentFileName, + CountWritten: 0, + Type: type, + FileStatus: 'empty', + }); + await fileStateInit.save(dbManager); + expect(fileStateInit.FileStatus).toBe('empty'); + + const initialSitemap = await loadInitialSitemapFile({ + config, + dbManager, + flatMetricsTyped, + shardState: shardStateInit, + }); + + expect(initialSitemap).toBeDefined(); + expect(initialSitemap.sitemap).toBeDefined(); + expect(initialSitemap.existing).toBe(false); + expect(initialSitemap.stats.FileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(initialSitemap.sitemap.count).toBe(0); + + // Check that Shard State was updated correctly in the DB + const shardStateAfter = await ShardStateRecord.loadOne(dbManager, { + ShardId: shardId, + Type: type, + }); + expect(shardStateAfter).toBeDefined(); + expect(shardStateAfter.CurrentFileName).toBe( + `widget-${shardIdPadded}-00001${sitemapExtension}`, + ); + expect(shardStateAfter.FileCount).toBe(1); + expect(shardStateAfter.TotalItemCount).toBe(shardStateInit.TotalItemCount); + + // Check that the 1st File State was updated correctly in the DB + const fileStateAfter = await FileRecord.loadOne(dbManager, { + FileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + Type: type, + }); + fileStateAfter.AddFileItem(); + await fileStateAfter.save(dbManager); + expect(fileStateAfter).toBeDefined(); + expect(fileStateAfter.FileName).toBe(`widget-${shardIdPadded}-00001${sitemapExtension}`); + expect(fileStateAfter.FileStatus).toBe('written'); + expect(fileStateAfter.Type).toBe(type); + }); + + it.skip('existing shard state record, existing s3 file, missing file state record', async () => { + const sitemapStream = createReadStream(resolve(__dirname, 'mocks', 'video-small.xml')); + s3Client + .onAnyCommand() + .rejects() + .on(s3.GetObjectCommand, { + Bucket: config.s3SitemapsBucketName, + Key: `${config.s3Directory}widget/widget-${shardIdPadded}-00001${sitemapExtension}`, + }) + .resolves({ + Body: sitemapStream as unknown as StreamingBlobPayloadOutputTypes, + }); + + // Init the Shard State in the DB + const shardStateInit = new ShardStateRecord({ + ShardId: shardId, + Type: type, + FileCount: 1, + CurrentFileItemCount: 8, + CurrentFileName: `widget-${shardIdPadded}-00001${sitemapExtension}`, + TotalItemCount: 8, + }); + await shardStateInit.save(dbManager); + + const initialSitemap = await loadInitialSitemapFile({ + config, + dbManager, + flatMetricsTyped, + shardState: shardStateInit, + }); + + // TODO: This should not throw but should instead update the file record state in the DB and return the file + + expect(initialSitemap).toBeDefined(); + }); + }); +}); diff --git a/packages/kinesis-sitemap-writer/src/sitemap-load-initial.ts b/packages/kinesis-sitemap-writer/src/sitemap-load-initial.ts new file mode 100644 index 0000000..75549b8 --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/sitemap-load-initial.ts @@ -0,0 +1,233 @@ +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import path from 'path'; +import { DBManager, ShardStateRecord, FileRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapWriterTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { + SitemapFileAndStats, + SitemapFileAndStatsFileRecordFailed, + SitemapFileAndStatsS3LoadFailed, +} from './sitemap-file-stats'; +import { createNewSitemap } from './sitemap-rotate'; +import { IConfig } from './config/config'; +import { log } from './utils/log'; + +/** + * Load a prior sitemap file from S3 when starting processing of a type. + * If the last file was full, let the in-loop rotate logic handle it. + * + * @param shardState + * @param type + * @param flatMetricsTyped + * @returns + */ +export async function loadInitialSitemapFile(opts: { + config: IConfig; + dbManager: DBManager; + shardState: ShardStateRecord; + flatMetricsTyped: FlatCountMetrics; +}): Promise { + const { config, shardState, flatMetricsTyped, dbManager } = opts; + + let currentSitemap: SitemapFileAndStats; + const initalFilenameRoot = path.basename( + shardState.CurrentFileName, + config.compressSitemapFiles ? '.xml.gz' : '.xml', + ); + + // Lambda seems to kill the first invoke of a new deploy without warning within about 2.5 seconds + // That means we write the record to DynamoDB, but never write the file to S3, + // then we get re-invoked with the same payload a second later. + // In that case the file in the DB will have state of `empty`, so we just create a file with that name + if (shardState.FileCount === 1) { + // Check if the file state is `empty` + const fileRecord = await FileRecord.loadOne(dbManager, { + Type: shardState.Type, + FileName: shardState.CurrentFileName, + }); + + if (fileRecord.FileStatus === 'empty' && fileRecord.CountWritten === 0) { + // This is the special case where we reuse the first filename that was never written to S3 + + const shardStateRedux = new ShardStateRecord({ + ...shardState, + FileCount: 0, // Reset the file count so we get `1` again + CurrentFileName: '', + Type: shardState.Type, + ShardId: shardState.ShardId, + }); + + // There is no last sitemap file, create a new one + currentSitemap = await createNewSitemap({ + sitemapFileNamingScheme: config.sitemapFileNamingScheme, + shardState: shardStateRedux, + config, + dbManager, + }); + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.SitemapFile1Recreated, + 1, + metricUnit.Count, + ); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapLast1Empty, 1, metricUnit.Count); + + log.warn('File 1 was empty - replacing that file', { + type: shardState.Type, + usingSitemapFilename: currentSitemap.sitemap.filename, + }); + + return currentSitemap; + } + } + + // If we get here we are either on the first file and it's non-empty or we're on some other file + if (shardState.FileCount > 0) { + try { + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapLastFetch, 1, metricUnit.Count); + + // The saved state knows about a file + // Fetch the last sitemap file + currentSitemap = await SitemapFileAndStats.fromS3( + { + bucketName: config.s3SitemapsBucketName, + compress: config.compressSitemapFiles, + s3Directory: path.join(config.s3Directory, shardState.Type), + filenameRoot: initalFilenameRoot, + siteBaseURL: config.siteBaseURL, + localDirectory: config.localDirectory, + }, + { dbManager, key: { Type: shardState.Type } }, + ); + + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.SitemapLastFetchDone, + 1, + metricUnit.Count, + ); + } catch (error: any) { + if (error.code === 'ERR_UNHANDLED_ERROR') { + // The SAXStream could not write one of the items in the file back to the new file + // This is a weird corner case fixed by this PR: https://github.com/ekalinin/sitemap.js/pull/375 + // TODO: Find out why the item in the XML file is invalid to begin with + + // This can happen if the last sitemap push to S3 failed (e.g. Lambda crashed before pushing the file) + log.error('last sitemap file could not be parsed cleanly - skipping to next filename', { + error, + type: shardState.Type, + shardId: shardState.ShardId, + lastSitemapWasExisting: false, + lastSitemapFilename: initalFilenameRoot, + }); + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.SitemapLastParseFailed, + 1, + metricUnit.Count, + ); + + try { + // Write that the file is malformed in DynamoDB + const fileRecord = await FileRecord.loadOne(dbManager, { + Type: shardState.Type, + FileName: shardState.CurrentFileName, + }); + fileRecord.MarkAsMalformed(); + await fileRecord.save(dbManager); + } catch (error) { + log.error( + 'last sitemap file could not be parsed cleanly - failed marking as malformed in DB', + { + error, + type: shardState.Type, + shardId: shardState.ShardId, + lastSitemapWasExisting: false, + lastSitemapFilename: initalFilenameRoot, + }, + ); + } + + // Note: because we update the Shard State everytime a new S3 file name is allocated, + // even if the S3 push later fails, the Shard State filename should still be the + // "last in use" filename... so just going to the next filename is sufficient + currentSitemap = await createNewSitemap({ + sitemapFileNamingScheme: config.sitemapFileNamingScheme, + shardState, + config, + dbManager, + }); + } else if ( + error instanceof SitemapFileAndStatsS3LoadFailed || + error instanceof SitemapFileAndStatsFileRecordFailed + ) { + // The file was unable to be fetched from S3 or state failed to load from DynamoDB + + // This can happen if the last sitemap push to S3 failed (e.g. Lambda crashed before pushing the file) + log.error('fetching last sitemap failed when it should exist - skipping to next filename', { + error, + type: shardState.Type, + shardId: shardState.ShardId, + lastSitemapWasExisting: false, + lastSitemapFilename: initalFilenameRoot, + }); + flatMetricsTyped.putMetric( + SitemapWriterTypedMetrics.SitemapLastFetchFailed, + 1, + metricUnit.Count, + ); + + // Note: because we update the Shard State everytime a new S3 file name is allocated, + // even if the S3 push later fails, the Shard State filename should still be the + // "last in use" filename... so just going to the next filename is sufficient + currentSitemap = await createNewSitemap({ + sitemapFileNamingScheme: config.sitemapFileNamingScheme, + shardState, + config, + dbManager, + }); + } else { + throw error; + } + } + + if (currentSitemap.sitemap.full) { + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapFileCreated, 1, metricUnit.Count); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapLastFull, 1, metricUnit.Count); + + // This can happen often when batches are full and the item limit is divisible + // by the batch size (e.g. 50k item limit, 10k per batch, 5 writes will exactly fill a file) + log.warn('last sitemap was full on startup - will start new file', { + type: shardState.Type, + lastSitemapWasExisting: currentSitemap.existing, + lastSitemapFilename: currentSitemap.sitemap.filename, + lastSitemapCount: currentSitemap.sitemap.count, + lastSitemapSizeUncompressed: currentSitemap.sitemap.sizeUncompressed, + }); + } else { + // Keep using the old sitemap if it's not full yet + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapLastNotFull, 1, metricUnit.Count); + + log.info('last sitemap was NOT full on startup - continuing with file', { + type: shardState.Type, + lastSitemapWasExisting: currentSitemap.existing, + lastSitemapFilename: currentSitemap.sitemap.filename, + usingSitemapFilename: currentSitemap.sitemap.filename, + }); + } + } else { + // There is no last sitemap file, create a new one + currentSitemap = await createNewSitemap({ + sitemapFileNamingScheme: config.sitemapFileNamingScheme, + shardState, + config, + dbManager, + }); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapFileCreated, 1, metricUnit.Count); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapLastNone, 1, metricUnit.Count); + + log.warn('index did not specify a last sitemap filename - starting new file', { + type: shardState.Type, + usingSitemapFilename: currentSitemap.sitemap.filename, + }); + } + + return currentSitemap; +} diff --git a/packages/kinesis-sitemap-writer/src/sitemap-rotate.test.ts b/packages/kinesis-sitemap-writer/src/sitemap-rotate.test.ts new file mode 100644 index 0000000..8bd06ff --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/sitemap-rotate.test.ts @@ -0,0 +1,348 @@ +//index.test.ts +/// +import 'jest-dynalite/withDb'; +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +// Config has to be mocked before the handler is imported because +// the handler accesses the static Config.instance at file scope. +// Note: jest.spyOn(Config, 'instance', 'get').mockImplementation(...) +// does not work here because Config.instance is a static class property +// not an object property. +import { Config, IConfig } from './config/config'; +jest.mock('./config/config'); +Object.defineProperty(Config, 'instance', { + configurable: false, + enumerable: false, + get: jest.fn((): IConfig => { + return { + awsAccountID: 123456, + awsRegion: 'mock', + metricsNamespace: 'some/metrics/namespace', + siteBaseURL: 'https://www.example.com', + s3SitemapsBucketName: 'doc-example-bucket', + compressSitemapFiles: false, + emitMetrics: false, + logSilent: true, + localDirectory: '/tmp/sitemaps', + s3Directory: 'sitemaps/', + siteBaseSitemapPath: 'sitemaps', + sitemapFileNamingScheme: 'index', + tableName: 'sitemaps', + storeItemStateInDynamoDB: false, + itemsPerSitemapLimit: 5000, + kinesisIndexWriterStreamName: 'sitemap-index-stream', + dynamoDBConcurrentReads: 2, + dynamoDBPrefetchMaxUnread: 4, + dynamoDBConcurrentWrites: 20, + s3ConcurrentWrites: 4, + throwOnCompactVersion: 0, + incomingCompactVersion: 0, + kinesisSelfStreamName: 'sitemap-stream', + infixDirs: [], + }; + }), +}); +import { DynamoDBClient } from '@aws-sdk/client-dynamodb'; +import { overrideDBManager } from './index'; +import { createNewSitemap, createSitemapNameRoot } from './sitemap-rotate'; +import { ShardStateRecord, DBManager } from '@shutterstock/sitemaps-db-lib'; +const testUUID = '88888888-4444-4444-4444-cccccccccccc'; +const testUUID2 = '88888888-4444-4444-4444-ccccccccccc2'; +const testUUIDs = [testUUID, testUUID2]; +import { v4 } from 'uuid'; +// jest.mock('uuid'); +jest.mock('uuid', () => { + let uuidIndex = 0; + return { + v4: jest.fn(() => testUUIDs[uuidIndex++ % testUUIDs.length]), + }; +}); + +describe('sitemap-rotate', () => { + let config: IConfig; + let sitemapExtension: string; + let dynamoClient: DynamoDBClient; + let dbManager: DBManager; + + beforeAll(() => { + config = { ...Config.instance }; + + // console.log(`endpoint: ${process.env.MOCK_DYNAMODB_ENDPOINT}`); + dynamoClient = new DynamoDBClient({ + endpoint: process.env.MOCK_DYNAMODB_ENDPOINT, + tls: false, + region: 'local', + }); + dbManager = new DBManager({ client: dynamoClient, tableName: config.tableName }); + }); + afterAll(() => { + dynamoClient.destroy(); + }); + + beforeEach(() => { + config = { ...Config.instance }; + sitemapExtension = config.compressSitemapFiles ? '.xml.gz' : '.xml'; + overrideDBManager({ dbManager, dynamoClient }); + }); + + afterEach(() => { + // Reset the uuid mock so we get the same uuid on second call + //(v4 as jest.MockedFunction).mockReset(); + }); + + describe('createSitemapNameRoot', () => { + const type = 'acme'; + const shardId = 123; + + beforeEach(() => { + (v4 as jest.MockedFunction).mockImplementation(() => { + return testUUID; + }); + }); + + describe('uuidv4', () => { + it('empty state', () => { + const result = createSitemapNameRoot({ + shardState: new ShardStateRecord({ + ShardId: shardId, + Type: type, + }), + sitemapFileNamingScheme: 'uuidv4', + }); + expect(result).toBe(`${type}-${shardId}-${testUUID}`); + }); + + it('existing state', () => { + const result = createSitemapNameRoot({ + shardState: new ShardStateRecord({ + ShardId: shardId, + Type: type, + CurrentFileName: `${testUUID2}${sitemapExtension}`, + FileCount: 1, + }), + sitemapFileNamingScheme: 'uuidv4', + }); + expect(result).toBe(`${type}-${shardId}-${testUUID}`); + }); + }); + + describe('index', () => { + it('empty state', () => { + const result = createSitemapNameRoot({ + shardState: new ShardStateRecord({ + ShardId: shardId, + Type: type, + }), + sitemapFileNamingScheme: 'index', + }); + expect(result).toBe(`${type}-${shardId}-00001`); + }); + + it('existing state', () => { + const result = createSitemapNameRoot({ + shardState: new ShardStateRecord({ + ShardId: shardId, + Type: type, + CurrentFileName: `${type}-${shardId}-00063${sitemapExtension}`, + FileCount: 63, + }), + sitemapFileNamingScheme: 'index', + }); + expect(result).toBe(`${type}-${shardId}-00064`); + }); + }); + + describe('date+index', () => { + it('empty state', () => { + const result = createSitemapNameRoot({ + shardState: new ShardStateRecord({ + ShardId: shardId, + Type: type, + CurrentFileName: '', + FileCount: 0, + }), + sitemapFileNamingScheme: 'date+index', + }); + expect(result).toBe(`${type}-${new Date().toISOString().slice(0, 10)}-${shardId}-00001`); + }); + + it('existing state', () => { + const result = createSitemapNameRoot({ + shardState: new ShardStateRecord({ + ShardId: shardId, + Type: type, + CurrentFileName: `${type}-2021-10-27-${shardId}-00063${sitemapExtension}`, + FileCount: 63, + }), + sitemapFileNamingScheme: 'date+index', + }); + expect(result).toBe(`${type}-${new Date().toISOString().slice(0, 10)}-${shardId}-00064`); + }); + }); + }); + + describe('createNewSitemap', () => { + const type = 'acme'; + const shardId = 123; + + describe('uuidv4', () => { + beforeEach(() => { + (v4 as jest.MockedFunction).mockImplementation(() => { + return testUUID; + }); + }); + + it('empty state', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + CurrentFileName: '', + }); + const result = await createNewSitemap({ + sitemapFileNamingScheme: 'uuidv4', + shardState, + config, + dbManager, + }); + expect(result.sitemap.filename).toBe(`${type}-${shardId}-${testUUID}${sitemapExtension}`); + expect(shardState.CurrentFileName).toBe(result.sitemap.filename); + expect(shardState.FileCount).toBe(1); + }); + + it('empty state - blank filename', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + }); + const result = await createNewSitemap({ + sitemapFileNamingScheme: 'uuidv4', + shardState, + config, + dbManager, + }); + expect(result.sitemap.filename).toBe(`${type}-${shardId}-${testUUID}${sitemapExtension}`); + expect(shardState.CurrentFileName).toBe(result.sitemap.filename); + expect(shardState.FileCount).toBe(1); + }); + + it('existing state', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + }); + shardState.ChangeCurrentFile(`${type}/${type}-${shardId}-${testUUID2}${sitemapExtension}`); + const result = await createNewSitemap({ + sitemapFileNamingScheme: 'uuidv4', + shardState, + config, + dbManager, + }); + expect(result).toBeDefined(); + expect(result.sitemap.filename).toBe(`${type}-${shardId}-${testUUID}${sitemapExtension}`); + expect(shardState.FileCount).toBe(2); + expect(shardState.CurrentFileName).toBe(result.sitemap.filename); + }); + }); + + describe('index', () => { + it('empty state', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + CurrentFileName: '', + CurrentFileItemCount: 0, + }); + const result = await createNewSitemap({ + sitemapFileNamingScheme: 'index', + shardState, + config, + dbManager, + }); + expect(result).toBeDefined(); + expect(result.sitemap.filename).toBe(`${type}-${shardId}-00001${sitemapExtension}`); + expect(shardState.FileCount).toBe(1); + }); + + it('existing state', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + FileCount: 60, + }); + shardState.ChangeCurrentFile(`${type}/${type}-${shardId}-00001${sitemapExtension}`); + shardState.ChangeCurrentFile(`${type}/${type}-${shardId}-00007${sitemapExtension}`); + shardState.ChangeCurrentFile(`${type}/${type}-${shardId}-000063${sitemapExtension}`); + const result = await createNewSitemap({ + sitemapFileNamingScheme: 'index', + shardState, + config, + dbManager, + }); + expect(result).toBeDefined(); + expect(result.sitemap.filename).toBe(`${type}-${shardId}-00064${sitemapExtension}`); + expect(shardState.FileCount).toBe(64); + expect(shardState.CurrentFileName).toBe(result.sitemap.filename); + }); + }); + + describe('date+index', () => { + it('empty state', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + CurrentFileName: '', + }); + let result = await createNewSitemap({ + sitemapFileNamingScheme: 'date+index', + shardState, + config, + dbManager, + }); + expect(result).toBeDefined(); + expect(result.sitemap.filename).toBe( + `${type}-${new Date().toISOString().slice(0, 10)}-${shardId}-00001${sitemapExtension}`, + ); + expect(shardState.FileCount).toBe(1); + expect(shardState.CurrentFileName).toBe(result.sitemap.filename); + expect(shardState.FileCount).toBe(1); + + result = await createNewSitemap({ + sitemapFileNamingScheme: 'date+index', + shardState, + config, + dbManager, + }); + expect(result).toBeDefined(); + expect(result.sitemap.filename).toBe( + `${type}-${new Date().toISOString().slice(0, 10)}-${shardId}-00002${sitemapExtension}`, + ); + expect(shardState.FileCount).toBe(2); + }); + + it('existing state', async () => { + const shardState = new ShardStateRecord({ + Type: type, + ShardId: shardId, + FileCount: 60, + }); + shardState.ChangeCurrentFile(`${type}-2021-10-27-${shardId}-00001${sitemapExtension}`); + shardState.ChangeCurrentFile(`${type}-2021-10-27-${shardId}-00007${sitemapExtension}`); + shardState.ChangeCurrentFile(`${type}-2021-10-27-${shardId}-00063${sitemapExtension}`); + const result = await createNewSitemap({ + sitemapFileNamingScheme: 'date+index', + shardState, + config, + dbManager, + }); + expect(result).toBeDefined(); + expect(result.sitemap.filename).toBe( + `${type}-${new Date().toISOString().slice(0, 10)}-${shardId}-00064${sitemapExtension}`, + ); + expect(shardState.CurrentFileName).toBe(result.sitemap.filename); + expect(shardState.FileCount).toBe(64); + }); + }); + }); +}); diff --git a/packages/kinesis-sitemap-writer/src/sitemap-rotate.ts b/packages/kinesis-sitemap-writer/src/sitemap-rotate.ts new file mode 100644 index 0000000..68c8a3d --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/sitemap-rotate.ts @@ -0,0 +1,327 @@ +import { KinesisClient, PutRecordsCommand } from '@aws-sdk/client-kinesis'; +import { SitemapWriterTypedMetrics } from '@shutterstock/sitemaps-metrics-lib'; +import { IIndexWriterMessage, ISitemapWriterItem } from '@shutterstock/sitemaps-models-lib'; +import { SitemapFileNamingSchemes } from './config/config'; +import { SitemapFileWrapper, SitemapWriteWouldOverflow } from '@shutterstock/sitemaps-wrapper-lib'; +import { v4 as uuidv4 } from 'uuid'; +import path from 'path'; +import { DBManager, FileRecord, ShardStateRecord } from '@shutterstock/sitemaps-db-lib'; +import { SitemapFileAndStats } from './sitemap-file-stats'; +import { IConfig } from './config/config'; +import { log } from './utils/log'; +import { KinesisRetrierStatic } from '@shutterstock/kinesis-helpers'; +import { Unit as metricUnit } from 'aws-embedded-metrics'; +import { FlatCountMetrics } from '@shutterstock/aws-embedded-metrics-flatten'; +import { IterableQueueMapperSimple } from '@shutterstock/p-map-iterable'; +import { SitemapItemLoose } from 'sitemap'; + +export type s3BackgroundUploaderOptions = { + dbManager: DBManager; + kinesisClient: KinesisClient; + sitemapAndStats: SitemapFileAndStats; + infixDirs: string[]; + type: string; + config: IConfig; +}; + +/** + * Close and push a sitemap file to S3, deleting the local file when complete + * + * @param sitemapAndStats + * @param s3Uploader + * @param type + * @param s3UploadErrors + */ +export async function backgroundUploadSitemapWorker( + opts: s3BackgroundUploaderOptions, +): Promise { + const { sitemapAndStats, type, config, dbManager, kinesisClient, infixDirs } = opts; + const { sitemap: currentSitemap } = sitemapAndStats; + + // Wait for items to finish writing to the file + await currentSitemap.end(); + + try { + // Push the file to S3 in the background + const { s3Path } = await currentSitemap.pushToS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: path.posix.join(config.s3Directory, type), + }); + + // Create the infixDir copies of the sitemap + for (const infixDir of infixDirs) { + // Create a new sitemap file + const infixSitemap = new SitemapFileWrapper({ + ...currentSitemap.options, + // Make the filenames unique so a path upload mistake does not clobber the main sitemap + ...(currentSitemap.options.filenameRoot + ? { filenameRoot: `${infixDir}-${currentSitemap.options.filenameRoot}` } + : {}), + ...(currentSitemap.options.localDirectory + ? { localDirectory: path.posix.join(currentSitemap.options.localDirectory, infixDir) } + : {}), + }); + + for (const item of currentSitemap.items) { + const urlPath = /^https?:/.test(item.url) ? new URL(item.url).pathname : item.url; + const newItem: SitemapItemLoose = { + ...{ + url: path.posix.join('', infixDir, urlPath), + lastmod: item.lastmod, + lastmodISO: item.lastmodISO, + }, + }; + + try { + await infixSitemap.write({ item: newItem }); + } catch (error: any) { + if (error instanceof SitemapWriteWouldOverflow) { + // Not a problem... so this infix sitemap is missing a few items... + continue; + } + + // This is a real error, so throw it + throw error; + } + } + + // Push the file to an infix subdir + await infixSitemap.end(); + await infixSitemap.pushToS3({ + bucketName: config.s3SitemapsBucketName, + s3Directory: path.posix.join(config.s3Directory, type, infixDir), + }); + await infixSitemap.delete(); + } + + // Save updated data about this file in DynamoDB + await sitemapAndStats.stats.save(dbManager); + + const indexWriterItem: IIndexWriterMessage = { + indexItem: { + url: new URL( + path.posix.join(config.siteBaseSitemapPath, type, currentSitemap.filename), + config.siteBaseURL, + ).toString(), + lastmod: new Date().toISOString(), + }, + action: sitemapAndStats.existing ? 'update' : 'add', + type, + }; + + await KinesisRetrierStatic.putRecords( + kinesisClient, + new PutRecordsCommand({ + StreamName: config.kinesisIndexWriterStreamName, + Records: [ + { + Data: Buffer.from(JSON.stringify(indexWriterItem), 'utf-8'), + PartitionKey: type, + }, + ], + }), + ); + + log.info('pushed sitemap to s3', { s3Path }); + } catch (error) { + log.error('error pushing sitemap to s3', { sitemapFilename: currentSitemap.filename }); + throw error; + } finally { + // Delete the local file + await currentSitemap.delete(); + } +} + +export type s3BackgroundUploader = IterableQueueMapperSimple; + +/** + * Create a new root filename (no .xml or .xml.gz extension) for a sitemap file, + * based of the desired type (uuid) or state (index and date+index) and type. + * + * @param opts + * @returns root filename for new sitemap + */ + +export function createSitemapNameRoot(opts: { + shardState: ShardStateRecord; + sitemapFileNamingScheme: SitemapFileNamingSchemes; +}): string { + const { shardState, sitemapFileNamingScheme } = opts; + + const paddedShardId = shardState.ShardId.toString().padStart(3, '0'); + + // Handle stateless uuid naming + if (sitemapFileNamingScheme === 'uuidv4') { + return `${shardState.Type}-${paddedShardId}-${uuidv4()}`; + } + + // Get the next index from the ShardState + const nextIndex = shardState.FileCount + 1; + const paddedNextIndex = nextIndex.toString().padStart(5, '0'); + + if (sitemapFileNamingScheme === 'index') { + return `${shardState.Type}-${paddedShardId}-${paddedNextIndex}`; + } else if (sitemapFileNamingScheme === 'date+index') { + const dateStr = new Date().toISOString().slice(0, 10); + return `${shardState.Type}-${dateStr}-${paddedShardId}-${paddedNextIndex}`; + } else { + throw new Error(`unhandled sitemap file naming scheme: ${sitemapFileNamingScheme}`); + } +} + +/** + * Create a new sitemap file + * + * @param opts + * @returns New SitemapFileWrapper + */ + +export async function createNewSitemap(opts: { + sitemapFileNamingScheme: SitemapFileNamingSchemes; + shardState: ShardStateRecord; + config: IConfig; + dbManager: DBManager; +}): Promise { + const { sitemapFileNamingScheme, shardState, config, dbManager } = opts; + + const sitemap = new SitemapFileWrapper({ + compress: config.compressSitemapFiles, + filenameRoot: createSitemapNameRoot({ + shardState, + sitemapFileNamingScheme, + }), + siteBaseURL: config.siteBaseURL, + localDirectory: config.localDirectory, + limitCount: config.itemsPerSitemapLimit, + }); + const stats = new FileRecord({ + Type: shardState.Type, + FileName: sitemap.filename, + }); + + // Save the new file record in DynamoDB + await stats.save(dbManager); + + // Record the new file and reset the file items count stat + shardState.ChangeCurrentFile(sitemap.filename); + await shardState.save(dbManager); + + return new SitemapFileAndStats({ sitemap, existing: false, stats }); +} + +/** + * Initiate background upload of the curent sitemap file + * Create and return a new sitemap file + * + * @param opts + * @returns + */ +export async function rotateSitemapFile(opts: { + sitemapAndStats: SitemapFileAndStats; + s3Uploader: s3BackgroundUploader; + shardState: ShardStateRecord; + flatMetricsTyped: FlatCountMetrics; + skipUpload?: boolean; + config: IConfig; + dbManager: DBManager; + kinesisClient: KinesisClient; +}): Promise { + const { + sitemapAndStats, + s3Uploader, + shardState, + flatMetricsTyped, + skipUpload = false, + config, + dbManager, + kinesisClient, + } = opts; + const { sitemap: currentSitemap } = sitemapAndStats; + const { sizeUncompressed, count } = currentSitemap; + + if (!skipUpload) { + // Close the current file + await s3Uploader.enqueue({ + dbManager, + kinesisClient, + config, + sitemapAndStats, + type: shardState.Type, + infixDirs: config.infixDirs, + }); + } + + // Open a new sitemap file + const newSitemap = await createNewSitemap({ + sitemapFileNamingScheme: config.sitemapFileNamingScheme, + shardState, + config, + dbManager, + }); + log.info('prior sitemap filled up - starting new sitemap file', { + type: shardState.Type, + shardId: shardState.ShardId, + priorSitemapFilename: currentSitemap.filename, + priorSitemapCount: count, + priorSitemapSizeUncompressed: sizeUncompressed, + usingSitemapFilename: newSitemap.sitemap.filename, + }); + flatMetricsTyped.putMetric(SitemapWriterTypedMetrics.SitemapFileCreated, 1, metricUnit.Count); + return newSitemap; +} + +/** + * Attempt to write to the current sitemap file. + * If the write throws an exception because the new item would exceed the allowed byte length, + * then create a new file, push the old file into the upload queue, write the item + * to the new file, and return a handle to the new file. + * + * @param opts + * @returns + */ +export async function writeOrRotateAndWrite(opts: { + currentSitemap: SitemapFileAndStats; + item: ISitemapWriterItem; + s3Uploader: s3BackgroundUploader; + flatMetricsTyped: FlatCountMetrics; + shardState: ShardStateRecord; + config: IConfig; + dbManager: DBManager; + kinesisClient: KinesisClient; +}): Promise { + const { + currentSitemap, + item, + s3Uploader, + flatMetricsTyped, + shardState, + dbManager, + config, + kinesisClient, + } = opts; + + try { + await currentSitemap.sitemap.write({ item: item.sitemapItem }); + } catch (error: any) { + if (error instanceof SitemapWriteWouldOverflow) { + // Close the old sitemap, open a new one + const newSitemap = await rotateSitemapFile({ + sitemapAndStats: currentSitemap, + s3Uploader, + flatMetricsTyped, + shardState, + config, + dbManager, + kinesisClient, + }); + + // Write the item to the new sitemap + await newSitemap.sitemap.write({ item: item.sitemapItem }); + + return newSitemap; + } else { + throw error; + } + } + return currentSitemap; +} diff --git a/packages/kinesis-sitemap-writer/src/utils/log.ts b/packages/kinesis-sitemap-writer/src/utils/log.ts new file mode 100644 index 0000000..90ae9a5 --- /dev/null +++ b/packages/kinesis-sitemap-writer/src/utils/log.ts @@ -0,0 +1,27 @@ +// reflect-metadata wants to be imported first so we have to import +// it before the Config since we're importing the Config before the +// handler +import 'reflect-metadata'; +import { LambdaLog, LogMessage } from 'lambda-log'; +import { Config } from '../config/config'; + +const config = Config.instance; + +const localTesting = process.env.DEBUG ? true : false; + +const log = new LambdaLog({ + dev: localTesting, + //debug: localTesting, + silent: config.logSilent, +}); + +if (localTesting) { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + log.options.dynamicMeta = (_message: LogMessage) => { + return { + timestamp: new Date().toISOString(), + }; + }; +} + +export { log, localTesting }; diff --git a/packages/kinesis-sitemap-writer/test/mocks/perf-data.json.txt b/packages/kinesis-sitemap-writer/test/mocks/perf-data.json.txt new file mode 100644 index 0000000..491e00f --- /dev/null +++ b/packages/kinesis-sitemap-writer/test/mocks/perf-data.json.txt @@ -0,0 +1,21753 @@ +{"url":"https://roosterteeth.com/episode/rouletsplay-2018-goldeneye-source","changefreq":"weekly","video":[{"title":"2018:E6 - GoldenEye: Source","description":"We play gun game in GoldenEye: Source with a good friend of ours. His name is Gruchy. Dan Gruchy.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2018-goldeneye-source","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e841100-289b-4184-ae30-b6a16736960a.jpg/sm/thumb3.jpg","duration":1208,"publication_date":"2018-04-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-310","changefreq":"weekly","video":[{"title":"2018:E90 - Minecraft - Episode 310 - Chomping List","description":"Now that the gang's a bit more settled into Achievement Cove, it's time for a competition. Whoever collects the most unique food items by the end of the episode wins. The winner may even receive a certain golden tower.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-310","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f255cd83-3d69-4ee8-959a-ac01817fa204.jpg/sm/thumblpchompinglistv2.jpg","duration":3070,"publication_date":"2018-04-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-house-party-part-2","changefreq":"weekly","video":[{"title":"2018:E10 - House Party - Part 2 (Uncensored)","description":"Achievement Hunter's House Party quest for some one-night intimacy continues. Can they use Ashley and Madison's sibling rivalry for their own dubious gains?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-house-party-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9dd9681a-0557-45fe-86b3-b662c91bbae7.jpg/sm/thumblwhouseparty2v4.jpg","duration":2422,"publication_date":"2018-04-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fortnite-battle-royale-with-funhaus","changefreq":"weekly","video":[{"title":"2018:E90 - Fortnite: Battle Royale with Funhaus","description":"Ryan, along with Lawrence and Adam from Funhaus, hope teaming up with Alfredo will lead them to victory. Little do they know.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fortnite-battle-royale-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f315b836-b7ab-4c2e-a80c-1de80579b748.jpg/sm/lpfortnitewithfunhausv1.jpg","duration":2010,"publication_date":"2018-04-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-things-to-don-t-in-pubg-pacifist-party","changefreq":"weekly","video":[{"title":"2018:E14 - Things to Don't in PUBG - Pacifist Party","description":"The boys decide to claim their own private PlayerUnknown's Battlegrounds island. No shoot. No gun. All heals. Last pacifist alive wins.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-things-to-don-t-in-pubg-pacifist-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/14ed916d-abd2-4b90-acf5-e2ea3dc5d15d.jpg/sm/ttdont-pubg.jpg","duration":1807,"publication_date":"2018-04-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-we-need-to-go-deeper-wrath-of-the-atlanteans-part-3","changefreq":"weekly","video":[{"title":"2018:E88 - We Need To Go Deeper - Wrath of the Atlanteans (Part 3)","description":"We're four little mateys in one submarine. I'm the fiercest deep diver that you've ever seen. I kill sharks in my undies - no uniform's cheaper. I see no treasure yet, so we need to go deeper.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-we-need-to-go-deeper-wrath-of-the-atlanteans-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02364838-279e-406f-ba36-e2df482ab964.png/sm/lpweneedtogodeeperthumb.png","duration":2426,"publication_date":"2018-04-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-sprunk-your-friends","changefreq":"weekly","video":[{"title":"2018:E87 - GTA V - Sprunk Your Friends","description":"This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com. The gang invites the community for a massive GTA Online session. How long can their sanity last with more than 30 cars on the road?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-sprunk-your-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b103fa8c-e798-4625-9727-0a19afaf17fe.jpg/sm/edit_thumb.jpg","duration":1806,"publication_date":"2018-04-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2018-rage-pals-mario-odyssey-darker-side","changefreq":"weekly","video":[{"title":"2018:E1 - Rage Pals - Mario Odyssey - Darker Side!","description":"Deep within the moon, past a pool party, lies a dark heart of molten lava, gold, and rainbow colored spikes of pure evil. Michael, with his guide Gavin, dives into dispair. Will he emerge a changed man? Will he emerge at all?","player_loc":"https://roosterteeth.com/embed/play-pals-2018-rage-pals-mario-odyssey-darker-side","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b08d66b4-dd04-4c44-820d-9914cb793245.jpg/sm/mario-thumb.jpg","duration":2095,"publication_date":"2018-04-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-viscera-cleanup-blew-it-up","changefreq":"weekly","video":[{"title":"2018:E86 - Viscera Cleanup - Blew It (Up)","description":"Achievement Hunter are tasked with sprucing up after a bloody confrontation in Viscera Cleanup. As they say, \"It gets worse before it gets better.\"","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-viscera-cleanup-blew-it-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb2e876a-b5b4-4998-a91e-3d277722c5c4.png/sm/lpvisceracleanupthumb.png","duration":2083,"publication_date":"2018-04-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2018-the-pregnancy-feast-125","changefreq":"weekly","video":[{"title":"2018:E3 - The Pregnancy “Feast” - #125","description":"The AH Crew stand up to talk about pregnancy moods, sushi, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2018-the-pregnancy-feast-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/271b41c9-070e-4504-9336-a5db48d9dc05.jpg/sm/off125ps.jpg","duration":725,"publication_date":"2018-04-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-4","changefreq":"weekly","video":[{"title":"2018:E85 - Mario Kart 8 Deluxe: Mario Kart Mapril (#4)","description":"Get Matt! Hold him down! Kick mud in his face! We can't let that smug little turtle dragon win.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b32cf64f-6369-406b-ae85-bffd2859b9fb.jpg/sm/mariokartmapril4.jpg","duration":1727,"publication_date":"2018-04-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-stunters-vs-snipers-with-buckley-and-lazarbeam","changefreq":"weekly","video":[{"title":"2018:E84 - GTA V - Stunters VS Snipers with Buckley and Lazarbeam","description":"James Buckley and Lannan Eacott join us for some 8-person Snipers VS Stunters.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-stunters-vs-snipers-with-buckley-and-lazarbeam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/40b05cda-b0dc-4eab-bb84-7a5a8027c43e.jpg/sm/snipersvsstunters.jpg","duration":2028,"publication_date":"2018-04-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018","changefreq":"weekly","video":[{"title":"2018:E125 - Butt Why? - #125","description":"Download the audio version at http://bit.ly/2K8yWef. The AH Crew sit down to talk about Theater Mode Live, video editing, intimacy, and more on this week's Off Topic!\r\n\r\nThis episode originally aired April 20, 2018 and is sponsored by Blue Apron (http://cook.ba/1RxiGhC) and Hims (http://bit.ly/2J9yfQD)","player_loc":"https://roosterteeth.com/embed/off-topic-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee6b184e-af5c-49a2-9bd6-605d3bdfd492.jpg/sm/off125site.jpg","duration":10376,"publication_date":"2018-04-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-moon-ball-war-official-trailer-infinity-war-parody","changefreq":"weekly","video":[{"title":"2018:E19 - Moon Ball War - Official Trailer (Infinity War Parody)","description":"It’s time to suit up with this sweded trailer for Avengers. This is the Achievement Hunter Infinity War Parody.\r\n\r\n© ROOSTER TEETH PRODUCTIONS, LLC. ALL RIGHTS RESERVED","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-moon-ball-war-official-trailer-infinity-war-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7dfd4115-4aa4-4811-b556-5dd49df407c1.jpg/sm/thumbv1_final.jpg","duration":104,"publication_date":"2018-04-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fore-honor-golf-it","changefreq":"weekly","video":[{"title":"2018:E83 - Fore Honor - Golf It! - Rainbow Cannonballs! (#10)","description":"Buy the Fore Honor shirt: https://store.roosterteeth.com/collections/achievement-hunter/products/fore-honor-tee?variant=44769476229\r\nThe AH crew hits Golf It! with a broadside of multicolored balls. Watch out! One of the crew members be planning to mutiny against their fellow crewmates. Who could it possib- it's Ryan. Ryan betrays everyone. Who else would it be?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fore-honor-golf-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d4af926c-8bfa-402f-8e2e-305c89ba55f6.jpg/sm/ahforehonorgolfit.jpg","duration":1788,"publication_date":"2018-04-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-309","changefreq":"weekly","video":[{"title":"2018:E82 - Minecraft - Episode 309 - Messin' With Jacksquatch (Achieveland #3)","description":"It's pretty dusky in Achieveland this week, and there seems to be an especially intense concentration of duskiness in the middle of Jack's house.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-309","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8a594592-8934-4ddd-887e-9d2459964356.jpg/sm/thumbachieveland03.jpg","duration":3227,"publication_date":"2018-04-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-ah-animated-pirate-geoff","changefreq":"weekly","video":[{"title":"2018:E8 - “Pirate” Geoff","description":"Four pirates journeyed out to sea, but after first mate Gavin is rustled away to departments unknown, it's up to the charismatic Pirate Geoff and his authentic pirate accent to join the crew and keep the ship from sinking.\r\nOriginal audio from: https://youtu.be/J-ZhcVgA5d0?t=30m37s and //www.youtube.com/watch?v=J-ZhcVgA5d0\r\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-ah-animated-pirate-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4e4fcdd8-4015-4f36-be0d-acc46221ee7e.jpg/sm/pirategeoff_thumbnail_v1.jpg","duration":148,"publication_date":"2018-04-19T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-post-show-2018-am-i-evil","changefreq":"weekly","video":[{"title":"2018:E3 - Am I Evil?","description":"The Gang takes a look at fan art while discussing alignments.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-post-show-2018-am-i-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f29d706-363c-4752-8796-d8f205cafb0e.jpg/sm/hhs4ep3ps.jpg","duration":785,"publication_date":"2018-04-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fortnite-battle-royale-out-for-ice-cream","changefreq":"weekly","video":[{"title":"2018:E81 - Fortnite: Battle Royale - Out for Ice Cream","description":"Achievement Hunter and special guest, Lannan \"LazarBeam\" Eacott, build, shoot, and attempt to get ice cream in Fortnite: Battle Royale.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fortnite-battle-royale-out-for-ice-cream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a9914937-0922-49fb-9966-7364ed86f653.png/sm/fortnitewithlannanthumb.png","duration":1937,"publication_date":"2018-04-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2018-the-mechs-generation-episode-3-fathers-and-errant-children-part-i","changefreq":"weekly","video":[{"title":"2018:E43 - The Mechs Generation Episode 3 - Fathers and Errant Children: Part I","description":"Download the audio version at http://bit.ly/2JTheeu. The term \"star-crossed\" love takes on new meaning for Thimbledick. Tib has some valuable life advice for Kneebone. The students of the Groening Academy for Young People go on a field trip. Some of the kids experience psykopylae travel for the first time and discover a new appreciation of apples and oranges. This episode is sponsored by Blue Apron (http://cook.ba/HandHBlueApron) and MVMT (http://bit.ly/2kaRZMr)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2018-the-mechs-generation-episode-3-fathers-and-errant-children-part-i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/26d4302b-af77-406c-bbb5-b928e2b96e96.jpg/sm/hhs4ep3.jpg","duration":7738,"publication_date":"2018-04-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gta-v-miniguns-vs-mini-coopers","changefreq":"weekly","video":[{"title":"2018:E13 - GTA V - Miniguns VS Mini Coopers","description":"It's miniguns vs mini coopers! Who will win in this thrilling competition of steel vs steel?","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gta-v-miniguns-vs-mini-coopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78226ba4-c337-49e6-8aba-a1aba26c6cba.jpg/sm/ttdminicooper.jpg","duration":794,"publication_date":"2018-04-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-h1z1-auto-royale-2","changefreq":"weekly","video":[{"title":"2018:E80 - H1Z1 - Auto Royale #2","description":"The gang is playing more Auto Royale, and that means more car chases, more guns, and more drive-bys.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-h1z1-auto-royale-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dcf3730a-b29c-415e-a5cf-5e668f5a89ea.jpg/sm/lph1z1autoroyalthumb3.jpg","duration":1875,"publication_date":"2018-04-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-let-s-watch-house-party-part-1","changefreq":"weekly","video":[{"title":"2018:E9 - Let's Watch - House Party - Part 1","description":"Achievement Hunter attend a house party, hoping to satiate their more carnal desires. Party etiquette rule number 1: maybe don't take all your clothes off in the middle of the living room.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-let-s-watch-house-party-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fca6e76f-1712-44c3-83e4-74e9fa0c3bfd.jpg/sm/thumblwhouseparty.jpg","duration":3369,"publication_date":"2018-04-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-siege-sneaky-cav-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E79 - Rainbow Six: Siege - Sneaky Cav - AH Live Stream","description":"This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com. Ryan, Jeremy, Jack, Alfredo, and Matt breach their way into another Siege stream. Can they pull themselves together to bring a victory home, or will their confidence get the best of them?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-siege-sneaky-cav-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f63f771-f9ff-4475-b45f-91b8e1fbfbf6.png/sm/seige1.png","duration":1587,"publication_date":"2018-04-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-chaos-corner-yoshi-s-wooly-world","changefreq":"weekly","video":[{"title":"2018:E17 - Chaos Corner - Yoshi's Wooly World","description":"Wool you join Lindsay and Gavin as they keep calm and carry yarn in Yoshi's Wooly World?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-chaos-corner-yoshi-s-wooly-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fc328bef-8edc-45eb-b3f9-0195d395b9f9.png/sm/ccyoshiwoolyworld.png","duration":2153,"publication_date":"2018-04-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-wheel-of-fortune-the-bankruptening-part-3","changefreq":"weekly","video":[{"title":"2018:E76 - Wheel of Fortune - The Bankruptening (Part 3)","description":"Jeremy, Michael, Trevor, and Jack sit down and enjoy a nice relaxing game of Wheel of Bankrupt.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-wheel-of-fortune-the-bankruptening-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7afd9d0b-2a64-4c00-ba21-e0185a51ba49.jpg/sm/thumbwheeloffortune031318v2.jpg","duration":1962,"publication_date":"2018-04-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-pals-a-way-out-it-doesn-t-have-to-be-this-way-7","changefreq":"weekly","video":[{"title":"2018:E78 - Let's Play Pals - A Way Out - It Doesn't Have To Be Like This (End)","description":"End of the line for our boys. Was the real way out the friends we made along the way?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-pals-a-way-out-it-doesn-t-have-to-be-this-way-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a901e01-34ec-4a86-83bf-f5972973ad5b.jpg/sm/thumbawayoutpart7.jpg","duration":2966,"publication_date":"2018-04-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-spyro-remastered","changefreq":"weekly","video":[{"title":"2018:E10 - Spyro Remastered","description":"Thanks to Blue Apron for sponsoring this episode. Get your $30 off at http://blueapron.com/ahwu\r\nIt's AHWU #417! We feed the Fire Lord to the Lil Spyro! Well, no, not really. But Dante Basco is here!","player_loc":"https://roosterteeth.com/embed/ahwu-2018-spyro-remastered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bbcf5da4-637c-4162-8625-5d906c78966b.jpg/sm/ahwu417spiroremastered.jpg","duration":909,"publication_date":"2018-04-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-it-s-so-hard-to-hate-you-124-old-copy","changefreq":"weekly","video":[{"title":"2018:E124 - It's So Hard To Hate You - #124","description":"The AH Crew stand up to talk about Mario Kart Maypril, rare stuff happening in videos, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-it-s-so-hard-to-hate-you-124-old-copy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dae90982-025f-48fe-ad9a-538cf612b4d3.jpg/sm/off124ps.jpg","duration":891,"publication_date":"2018-04-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-geoff-bag-6","changefreq":"weekly","video":[{"title":"2018:E74 - GTA V - Geoff Bag 6","description":"Geoff serves up six short racing maps, plus a bit of bonus parkour, in his sixth Geoff Bag.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-geoff-bag-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/55de16de-8556-4973-920f-c8ae00e79dbe.jpg/sm/thumbgeoffbag06v4.jpg","duration":2509,"publication_date":"2018-04-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-3","changefreq":"weekly","video":[{"title":"2018:E77 - Mario Kart 8 Deluxe: Mario Kart Mapril (#3)","description":"Mapril continues with shells of many colors. Red ones, greens, some as big as your head! It's shells for days!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a668af5a-a615-4b20-85f1-52ff8f72bdaa.jpg/sm/mapril-3.jpg","duration":1805,"publication_date":"2018-04-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-pals-a-way-out-pumping-iron-6","changefreq":"weekly","video":[{"title":"2018:E75 - Let's Play Pals - A Way Out - Pumping Iron (#6)","description":"Michael and Gavin are makin their way to Mexico to shoot some bad guys, but first they got to pump some sweet sweet iron.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-pals-a-way-out-pumping-iron-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a22f24d-ac55-4cd7-993e-10953220939a.jpg/sm/lppawayoutpt6v1.jpg","duration":2940,"publication_date":"2018-04-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-124","changefreq":"weekly","video":[{"title":"2018:E124 - I Quit Soda For A Day - #124","description":"Download the audio version at http://bit.ly/2J2F3zA. The AH Crew sit down to talk about juicing, Gavin’s laundry, recent fan concerns, and more on this week's Off Topic!\r\n\r\nThis episode originally aired April 13, 2018 and is sponsored by Casper (http://bit.ly/2DpSEPv) and MVMT (http://bit.ly/2kg8JSD)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dea18ecb-a108-4db1-8fe0-a7d55dcb8c75.jpg/sm/off124site.jpg","duration":9227,"publication_date":"2018-04-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-play-pals-a-way-out-makin-a-baby-5","changefreq":"weekly","video":[{"title":"2018:E71 - Play Pals - A Way Out - Makin' a Baby (#5)","description":"With the prison far away from them, Michael and Gavin become even closer together as friends as they get baby crazy while trying to find A Way Out of new buildings, like theaters and hospitals.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-play-pals-a-way-out-makin-a-baby-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a6e14d6-1f2e-48a8-938e-ffe443a9f991.jpg/sm/awayoutthumbpt5.jpg","duration":3468,"publication_date":"2018-04-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-7-days-to-die-the-long-walk","changefreq":"weekly","video":[{"title":"2018:E72 - 7 Days to Die: The Long Walk","description":"Geoff and Jack want to try an experiment based on a Stephen King novel. Rules are: you can only walk forwards or backwards on the road, you can stop for no longer than 30 seconds, and you have to keep walking. Last one alive wins!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-7-days-to-die-the-long-walk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb3c0b32-c990-470d-ab34-fdae3fd8b661.jpg/sm/ah7daysalongwalkv2.jpg","duration":3005,"publication_date":"2018-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-307-beachside-property-achieveland-2","changefreq":"weekly","video":[{"title":"2018:E73 - Minecraft - Episode 308 - Beachside Property (Achieveland #2)","description":"The gang continues their Achieveland adventure, shaping up Achievement Cove into a livable environment. And new homes mean housewarming gifts.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-307-beachside-property-achieveland-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4419af52-6dcd-4761-8828-d5f00ea48c4f.jpg/sm/achieveland2thumb2.jpg","duration":3451,"publication_date":"2018-04-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-pals-a-way-out-farting-around-4","changefreq":"weekly","video":[{"title":"2018:E70 - Let's Play Pals - A Way Out - Farting Around (#4)","description":"Michael and Gavin eluded the authorities for the moment, but now they've got to find Harvey for revenge-time. Unfortunately, they may get distracted by a dart game or two, some arm wrestling, or even a porta potty. They'll catch the bad guys, eventually.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-pals-a-way-out-farting-around-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fbe9466e-491b-434f-b059-020d69e1d843.jpg/sm/lppawayoutpt4v1.jpg","duration":3175,"publication_date":"2018-04-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-march-2018","changefreq":"weekly","video":[{"title":"2018:E16 - Best of Achievement Hunter - March 2018","description":"This is the Best of AH March 2018, where heavy grog drinking and high seas mix on Sea of Thieves, weapons training is taken up a notch in Hand Simulator, parkour gets Shocking in GTA V, fair and competitive game play gets tested in Mario Party 6, and when You're Dead, You're Dead in Minecraft.\r\nEdited: Kyle Moran","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-march-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8240a78f-c834-44ba-877f-e84b84f657dc.jpg/sm/Thumb041218BestofMarch.jpg","duration":2022,"publication_date":"2018-04-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-super-smash-bros-with-prozd","changefreq":"weekly","video":[{"title":"2018:E69 - Super Smash Bros. with ProZD","description":"Special guest SungWon \"ProZD\" Cho joins Michael, Lindsay, and Matt as they battle it out in Super Smash Bros.!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-super-smash-bros-with-prozd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/08d5086a-8978-4a1f-86e8-084b87141455.jpg/sm/thumbsupersmashprozd.jpg","duration":2781,"publication_date":"2018-04-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-pals-a-way-out-fists-blazing-3","changefreq":"weekly","video":[{"title":"2018:E68 - Let's Play Pals - A Way Out - Fists Blazing (#3)","description":"They've escaped, but what now? They're hungry, their feet hurt, and Gavin really wants some of those old lady's cookies.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-pals-a-way-out-fists-blazing-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/238699a0-32b0-46dc-bedc-cdc6f4a76a96.jpg/sm/lppawayoutpt3v2bthumb.jpg","duration":2815,"publication_date":"2018-04-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-halo-5-jenga-tower","changefreq":"weekly","video":[{"title":"2018:E12 - Halo 5 - Jenga Tower","description":"Leave it up to the Spartans to turn a classic children's game into a destructive death trap. Wouldn't be Halo 5 any other way.\r\n\r\nMap variant - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=Angry%20Polish%2095#ugc_halo-5-guardians_xbox-one_mapvariant_Angry%20Polish%2095_1c82bdf0-31b8-4b30-a23f-9f0865e1ca2c\r\n\r\nGame Variant - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=Almighty%20Nubs#ugc_halo-5-guardians_xbox-one_gamevariant_Almighty%20Nubs_576da7c6-dbe9-455d-8bfb-41cae9138315","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-halo-5-jenga-tower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/93a08e62-497b-4772-a1b6-b25cb5d36389.jpg/sm/thumbttdhalojegna.jpg","duration":1234,"publication_date":"2018-04-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rocket-league-git-gud-2-gud-enuf","changefreq":"weekly","video":[{"title":"2018:E65 - Rocket League: Git Gud #2 - Gud Enuf","description":"Michael, Ryan, and Jeremy are back in action to Git Gud in Rocket League.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rocket-league-git-gud-2-gud-enuf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/99cf3a1c-e89d-47dc-8e93-1263e6dbad69.jpg/sm/thumbrocketleaguep2v2.jpg","duration":1669,"publication_date":"2018-04-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-hitman-escalation-the-adamoli-fascination-4","changefreq":"weekly","video":[{"title":"2018:E8 - Hitman Escalation - The Adamoli Fascination (#4)","description":"Things are escalating in Paris as Ryan, Gavin, and Jeremy must use their sharp wits (and sabers) to silence their targets.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-hitman-escalation-the-adamoli-fascination-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a954bb96-2a7a-4c56-b33f-368f628e6e96.jpg/sm/LWHitmanAdamaliTHUMB.jpg","duration":4430,"publication_date":"2018-04-10T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-pals-a-way-out-2","changefreq":"weekly","video":[{"title":"2018:E66 - Let's Play Pals - A Way Out – Inside Out (#2)","description":"Back from their first failed attempt at escaping, Gavin and Michael are still trying to find A Way Out of prison. Turns out a little butt to butt action might be their key.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-pals-a-way-out-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f133592-c107-486f-ab7c-38bb792daf56.jpg/sm/awo-pt2-v2.jpg","duration":3063,"publication_date":"2018-04-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-playerunknown-s-battlegrounds-savage-map-with-lazarbeam-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E67 - PLAYERUNKNOWN'S Battlegrounds - Savage Map with LazarBeam - AH Live Stream","description":"Thanks to Dollar Shave Club for sponsoring this episode. There’s no reason not to join! Get yours at http://dollarshaveclub.com/hunter","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-playerunknown-s-battlegrounds-savage-map-with-lazarbeam-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4afdfe81-d456-40fa-89ca-dbf67e605904.jpg/sm/lpversion.jpg","duration":1740,"publication_date":"2018-04-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-pals-a-way-out-1","changefreq":"weekly","video":[{"title":"2018:E64 - Let's Play Pals - A Way Out (#1)","description":"It's the Play Pals on Let's Play doing a Let's Play Pals in A Way Out. Co-op teamwork is essential to make it through this lockdown, so you know Gavin and Michael are hardly up for the challenge.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-pals-a-way-out-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd1a4a8b-1351-47bd-b5b2-d3a035a81a28.jpg/sm/ThumbPPAWayOutV2.jpg","duration":2985,"publication_date":"2018-04-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-battle-buddies-viscera-cleanup","changefreq":"weekly","video":[{"title":"2018:E15 - Battle Buddies - Viscera Cleanup","description":"Battle Buddies. Congratulations on another successful mission. However, you left quite a mess. Your mission is simple, clean up your tracks before exiting. Good Luck.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-battle-buddies-viscera-cleanup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/70f03a38-4072-480e-9339-ac507666425c.jpg/sm/ThumbBBVisceraCleanupV3.jpg","duration":1743,"publication_date":"2018-04-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mount-your-friends-3d-with-lazar-beam","changefreq":"weekly","video":[{"title":"2018:E63 - Mount Your Friends 3D with Lazar Beam","description":"Ryan, Michael, Jeremy, Geoff, and Lannan mount each other to get to the top. The 3D part makes for some interesting jiggling, wiggling and bouncing. \r\nTo check out more of Lazar Beam, click here: https://www.youtube.com/lazarbeam","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mount-your-friends-3d-with-lazar-beam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e364c2b2-3dc5-4ee6-bc60-f10321b0ff71.jpg/sm/LPMountYourFriends3Dv3.jpg","duration":3466,"publication_date":"2018-04-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-shipping-jeremy","changefreq":"weekly","video":[{"title":"2018:E9 - Shipping Jeremy","description":"Thanks to MVMT for sponsoring this episode. Get 15% off at http://mvmt.com/ahwu\r\nIt's AHWU 416! We get some new balls, an AH keyblade, and a drum-full of packing peanuts.","player_loc":"https://roosterteeth.com/embed/ahwu-2018-shipping-jeremy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c1e87bf3-7cc1-473d-be07-ec3040c4bfa6.jpg/sm/ShippingJeremyThumb.jpg","duration":641,"publication_date":"2018-04-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-gavin-s-a-whole-thing-123-old-copy","changefreq":"weekly","video":[{"title":"2018:E123 - Gavin’s A Whole Thing - #123","description":"The AH Crew and special guest James Buckley stand up to talk about public toilets, Gavin and Jack, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-gavin-s-a-whole-thing-123-old-copy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7226ecc3-68c5-4e7d-804e-a9f5747d66f0.jpg/sm/OFF123PS.jpg","duration":662,"publication_date":"2018-04-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-buckley-races-with-james-buckley-and-lazarbeam","changefreq":"weekly","video":[{"title":"2018:E60 - GTA V - Buckley Races with James Buckley and Lazarbeam","description":"Two foreigners walk into the AH room. That not a joke, it's what has happened, and now they're racing in GTA V!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-buckley-races-with-james-buckley-and-lazarbeam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a71fba6-8ea7-4de9-a208-6bed94e74bf8.jpg/sm/BuckleyRacesThumbv4.jpg","duration":2555,"publication_date":"2018-04-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-2","changefreq":"weekly","video":[{"title":"2018:E62 - Mario Kart 8 Deluxe: Mario Kart Mapril (#2)","description":"A timeless game, where conversations start eloquent and end with yelps, grunts, and curses like 'you fire bitch,' 'how dare you,' and 'bomb thing!'","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac590853-29d5-4d74-9cb3-7ca8d55c7fe1.jpg/sm/MarioKartMaypril2Thumb.jpg","duration":1753,"publication_date":"2018-04-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-123","changefreq":"weekly","video":[{"title":"2018:E123 - You Can’t Prove It Wrong, What Are You Gonna Do? - #123","description":"Download the audio version at http://bit.ly/2HiKyuk. The AH Crew and special guest James Buckley sit down to talk about old technology, their time in school, James Bond, and more on this week's Off Topic!\r\n\r\nThis episode originally aired April 6, 2018 and is sponsored by Dollar Shave Club (http://bit.ly/2EfjpqA) and MeUndies (http://bit.ly/2kg8JSD)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e181b9ed-0090-4dce-814d-732d32573be8.jpg/sm/OFF123Site.jpg","duration":10970,"publication_date":"2018-04-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2018-overcooked","changefreq":"weekly","video":[{"title":"2018:E5 - Overcooked","description":"Hope you like burnt soup because Gavin, Lindsay, and special guests Lannan and James Buckley are playing Overcooked.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2018-overcooked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/20e43946-5b07-4d7e-9196-b07e54e5fd62.png/sm/RouLetsPlayOvercookedThreeLogos.png","duration":1877,"publication_date":"2018-04-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-307-achieveland","changefreq":"weekly","video":[{"title":"2018:E61 - Minecraft - Episode 307 - Achieveland","description":"With Achievement City left completely uninhabitable, Achievement Hunter sets out to find their new home, Achieveland.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-307-achieveland","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8e62d75b-27d5-434c-93fb-0c9f30530022.jpg/sm/ThumbRT040618Achieveland1.jpg","duration":3675,"publication_date":"2018-04-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-serial-killossus","changefreq":"weekly","video":[{"title":"2018:E7 - Serial Killossus","description":"A gigantic Collosus stands between Ryan and his dead girlfriend. Will its pacifistic ways thwart our heroes?\r\n\r\nOriginal audio from: https://youtu.be/iHwgOEL8Ly4​\r\nAnimated by Shaun Cunningham​","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-serial-killossus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/639eea1a-cceb-405f-809b-a521ee73c086.jpg/sm/Thumb040518AnimatedColossusv002.jpg","duration":79,"publication_date":"2018-04-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-post-show-2018-frank-explains","changefreq":"weekly","video":[{"title":"2018:E2 - Frank Explains","description":"Frank explains his methods on creating the rules for this season. While, the gang explains their character backstories.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-post-show-2018-frank-explains","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eeb70c3a-ae72-40e4-bec8-008025573c44.jpg/sm/HHs4ep2PS.jpg","duration":839,"publication_date":"2018-04-05T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-h1z1-auto-royale","changefreq":"weekly","video":[{"title":"2018:E59 - H1Z1 - Auto Royale","description":"Da bois do a little mine jousting in the new H1Z1 mode, Auto Royale. There's cars, rockets, ramps, and toxic gas dispensers galore.\r\n\r\nAll this with no money down at signing! So come on down to AH automotive! Guaranteed to leave the competition in a cloud of green poisonous smoke.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-h1z1-auto-royale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f38d7d83-2eaf-4f57-a62a-9cb4f20274f1.png/sm/thumbh1.png","duration":2233,"publication_date":"2018-04-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gta-v-floaty-bikey","changefreq":"weekly","video":[{"title":"2018:E11 - GTA V - Floaty Bikey","description":"Geoff gave Matt the task of smashing a couple classic GTA ideas together into one difficult bike course. This is the frantic struggle of Floaty Bikey.\r\n\r\nYou can play this impossible map at the link below:\r\nhttp://rsg.ms/179f61d","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gta-v-floaty-bikey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59fac719-b83b-4a74-87b7-1df78b0892f5.jpg/sm/TTDFLOATYBIKEYTHUMBrev.jpg","duration":1099,"publication_date":"2018-04-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2018-the-mechs-generation-episode-2-the-year-of-the-dog-part-ii","changefreq":"weekly","video":[{"title":"2018:E42 - The Mechs Generation Episode 2 - \"The Year of the Dog: Part II\"","description":"Get the audio version at http://bit.ly/2H2seYt. The kids are (maybe) alright...if they can just figure out whether to steal or buy party supplies for Popular Guy Mike's party, what their teenage morality is, and if they really will help Tib in his quest. This episode is sponsored by MeUndies (http://bit.ly/2H8TWjS) and Skullsplitter (http://bit.ly/2JkA6Tp)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2018-the-mechs-generation-episode-2-the-year-of-the-dog-part-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d8a3e1ad-e4d3-464a-83e8-ab2baf7ea4f4.jpg/sm/HHs2ep2.jpg","duration":12092,"publication_date":"2018-04-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rocket-league-git-gud-1-very-gud-d","changefreq":"weekly","video":[{"title":"2018:E58 - Rocket League: Git Gud #1 - Very Gud D","description":"Michael, Ryan, and Jeremy get back into vehicular-based soccer games with the new Rocket League Git Gud series.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rocket-league-git-gud-1-very-gud-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5d91c5bd-24ef-45a0-827f-68277adba3f7.png/sm/LPGitGudRocketLeaguePART1.png","duration":1828,"publication_date":"2018-04-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-hitman-escalation-the-mallory-misfortune-3","changefreq":"weekly","video":[{"title":"2018:E7 - Hitman Escalation - The Mallory Misfortune (#3)","description":"Agent 47, your task is very simple. Use your Hitman skills and kill this dude. Also his friend. Plus, there's a guy creepin' on you. Make sure to feed the hay baler. And the car crusher. Also, explosions! I doubt you can do these Colorado escalation missions in less than three recordings. I'm a freak with ridiculos demands! Good luck.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-hitman-escalation-the-mallory-misfortune-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8760e4ea-8a70-4a9f-9896-c06db2f06950.jpg/sm/Thumb040318HitmanElcalation3.jpg","duration":4840,"publication_date":"2018-04-03T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fortnite-battle-royale-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E57 - Fortnite: Battle Royale - AH Live Stream","description":"This video is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com\r\n\r\nThe guys continue to improve their skills in Fortnite, and Ryan proves he can live the longest.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fortnite-battle-royale-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c2938fa7-9c18-4843-9f42-2dc5f038e6ff.jpg/sm/LPVersion.jpg","duration":2053,"publication_date":"2018-04-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-enviro-bear-2000","changefreq":"weekly","video":[{"title":"2017:E34 - Enviro-Bear 2000","description":"Michael and Gavin pick some bearries in Enviro-Bear 2000. It's really embearassing that we haven't played this before, but to be fair, the controls are intentionally unbearable.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-enviro-bear-2000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5182438a-134f-4d43-ba4d-910d4fa103e6.jpg/sm/PPEnviroBearV4.jpg","duration":1565,"publication_date":"2018-04-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-sea-of-thieves-skeleton-fort-scallywags-3","changefreq":"weekly","video":[{"title":"2018:E56 - Sea of Thieves - Skeleton Fort Scallywags (#3)","description":"Ahoy! Beyond the sealine, thar be a Skull Cloud! Plunder awaits in the caverns below. Gather yeselves, lads! Skeleton fort, ho!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-sea-of-thieves-skeleton-fort-scallywags-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/faf43c4d-3187-4561-9d30-d86fb1e2b13b.jpg/sm/LPSeaOfThievesP3.jpg","duration":2717,"publication_date":"2018-04-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-122","changefreq":"weekly","video":[{"title":"2017:E62 - Garbo of the Company - #122","description":"The AH Crew stand up to talk about ages, messing with the support room, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a901cb0-10f2-4155-bcbd-f22c99549179.jpg/sm/OFF122psTHUMB.jpg","duration":1022,"publication_date":"2018-04-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-little-rex-wrecks-the-office","changefreq":"weekly","video":[{"title":"2018:E8 - Little Rex Wrecks the Office","description":"It's AHWU 415! We recorded this right after Off Topic, and holy cow! We got some awesome stuff!\r\nBuy our merchandise here: store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/ahwu-2018-little-rex-wrecks-the-office","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a7c351e9-4a3a-404e-b51c-ae8bf4d032a8.jpg/sm/Thumb040118AHWU415.jpg","duration":560,"publication_date":"2018-04-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-air-quota-occupy","changefreq":"weekly","video":[{"title":"2018:E54 - GTA V - Air Quota & Occupy","description":"Join Michael, Geoff, Jack and Jeremy as they play new Rockstar games, Air Quota and Occupy, with Rockstar employees.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-air-quota-occupy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/825cb5ca-6c77-4d18-bd45-a14661c5ad84.jpg/sm/040118GTAVRockstarTHUMB.jpg","duration":3010,"publication_date":"2018-04-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-122","changefreq":"weekly","video":[{"title":"2018:E122 - Nature’s Stupidest Creation - #122","description":"Download the audio version at http://bit.ly/2uJbikZ. The AH Crew sit down to talk about the future of the MCU, glasses and contacts, animal run ins, and more on this week's Off Topic! This episode originally aired March 30, 2018 and is sponsored by Hims (http://bit.ly/2E7GzgN), Hubble (http://bit.ly/2E7GKbS) and Honey (http://bit.ly/2nQ6BQi).\r\n\r\nGet tickets for Theater Mode Live now! http://bit.ly/TheaterModeLive","player_loc":"https://roosterteeth.com/embed/off-topic-2018-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f8a4cfb-e406-4f4d-b6bf-35e500569734.jpg/sm/OFF122THUMB.jpg","duration":7502,"publication_date":"2018-03-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-1","changefreq":"weekly","video":[{"title":"2018:E53 - Mario Kart 8 Deluxe: Mario Kart Mapril (#1)","description":"Achievement Hunter primes their karts for the inaugural races of Mario Kart Mapril. Why Mapril? Because they were too impatient to wait for May.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-kart-8-deluxe-mario-kart-mapril-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7c3424f7-fb96-45d0-aac6-776645693c39.jpg/sm/MarioKartMaprilPart1.jpg","duration":1825,"publication_date":"2018-03-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-party-6-clockwork-castle","changefreq":"weekly","video":[{"title":"2018:E55 - Mario Party 6 - Clockwork Castle","description":"The Mario Mates return for one last party on Clockwork Castle.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-party-6-clockwork-castle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb6ea7cf-3582-42b0-a871-b6fa4021c287.png/sm/LPMarioParty6PART5THUMB.png","duration":6550,"publication_date":"2018-03-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fore-honor-pirate-minigolf","changefreq":"weekly","video":[{"title":"2018:E51 - Fore Honor: Pirate Minigolf","description":"Nine holes, eight player, chaos, madness, depression and one Geoff Cam. This pirate minigolf course is one emotional roller coaster.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fore-honor-pirate-minigolf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/31fb41cd-b3af-4991-a3ec-beac0151376f.jpg/sm/ThumbForeHonorTortugaV1.jpg","duration":2732,"publication_date":"2018-03-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-306-michael-s-epic-journey-ydyd-part-4","changefreq":"weekly","video":[{"title":"2018:E52 - Minecraft - Episode 306 - Michael's Epic Journey (YDYD Part 4)","description":"After the bloodbath in part 3, Michael Jones is the only one left alive in all of Minecraft. Watch his epic quest and see if he can make it all alone.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-306-michael-s-epic-journey-ydyd-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77632e5c-0268-4a02-a0a7-6b01e5f059ea.jpg/sm/Thumb033018MCYDYD4.jpg","duration":1599,"publication_date":"2018-03-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-fore-honor","changefreq":"weekly","video":[{"title":"2018:E14 - Best of Achievement Hunter - Fore Honor","description":"This is the Best of Achievement Hunter Fore Honor, where miniature past times create massive frustrations, amount of beans is the standard unit of measurement,and the word \"bip\" is classifiable war cry.\r\nEdited by: Kyle Moran","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-fore-honor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cc59946-374b-423b-b256-3d0d4cb6b391.jpg/sm/Thumb032918BestOfForeHonor.jpg","duration":1451,"publication_date":"2018-03-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-marooners-the-power-of-chaos","changefreq":"weekly","video":[{"title":"2018:E50 - Marooners - The Power of Chaos","description":"\"Marooners is like Mario Party, but just the mini-games and you pause them and come back later.\"","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-marooners-the-power-of-chaos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3bf419f1-15b9-42e6-80a6-efca35df5432.png/sm/LPMaroonersTHUMB.png","duration":1774,"publication_date":"2018-03-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-sea-of-thieves-human-darts","changefreq":"weekly","video":[{"title":"2018:E10 - Sea of Thieves - Human Darts","description":"Aye, matey. It's a Things to Do in Sea of Thieves. It's time to launch some scallywags out of some cannons, aargh.\r\nhttps://twitter.com/AchievementHunt/status/979115917174034432","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-sea-of-thieves-human-darts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f6ce6f47-fab6-431c-88aa-289ba754c04d.jpg/sm/TTDSEAOFTHIEVESDARTSTHUMB.jpg","duration":730,"publication_date":"2018-03-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gmod-prop-hunt-pirate-proppin","changefreq":"weekly","video":[{"title":"2018:E49 - Gmod: Prop Hunt - Pirate Proppin'","description":"Achievement Hunter plays some Prop Hunt on a pirate ship. The grog be alive! So be the pirate's favorite snack: Chinese takeout.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gmod-prop-hunt-pirate-proppin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9051ae23-e3b2-4591-b3ad-da0c15e54b67.jpg/sm/Thumb032818PropHuntv002.jpg","duration":2065,"publication_date":"2018-03-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-horror-movie-michael","changefreq":"weekly","video":[{"title":"2018:E6 - Horror Movie Michael","description":"There's a killer on the loose, and he's stringing up corpses like some deranged spider-man. Will Michael be the lone surviver in this horror movie scenario?\r\n\r\nOriginal audio from: https://www.youtube.com/watch?v=XAeZl-LcfNs\r\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-horror-movie-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f437f57-c22d-4837-beaa-95595987f2bd.jpg/sm/Thumb032718HorrorMovieMichael.jpg","duration":96,"publication_date":"2018-03-27T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-battle-buddies-rainbow-6-siege-outbreak","changefreq":"weekly","video":[{"title":"2018:E13 - Battle Buddies - Rainbow 6 Siege: Outbreak","description":"There is a virus outbreak at a medical facility. The Battle Buddies are going in to save any survivors and a lone lost recruit.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-battle-buddies-rainbow-6-siege-outbreak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d45f4de8-d84a-40e2-8cfc-77da67af3256.jpg/sm/BBR6SiegeOutbreakv2.jpg","duration":1669,"publication_date":"2018-03-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-sea-of-thieves-the-lying-the-wench-and-the-cannon-load","changefreq":"weekly","video":[{"title":"2018:E47 - Sea of Thieves - The Lying, The Wench, and The Cannon Load","description":"It's a dangerous world out in the Sea of Thieves, but the AH crew increase the level of antics and thievery by at least a few fathoms.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-sea-of-thieves-the-lying-the-wench-and-the-cannon-load","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e764bbbd-9ee3-4cb9-9b84-7dc261fb895e.jpg/sm/sotv1.jpg","duration":2813,"publication_date":"2018-03-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-the-table-stick-is-real-121","changefreq":"weekly","video":[{"title":"2017:E61 - The Table Stick Is Real - #121","description":"The AH Crew stand up to talk about cheese puffs, vomiting during Immersion, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-the-table-stick-is-real-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5e5a04ea-b34a-4f62-886d-ce2d8db6b253.png/sm/OFF121PSThumb.png","duration":911,"publication_date":"2018-03-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-the-flying-ball","changefreq":"weekly","video":[{"title":"2018:E7 - The Flying Ball","description":"Thanks to Honey for sponsoring this episode of AHWU. Add Honey to your browser for free right now http://joinhoney.com/AHWU\r\nIt's AHWU 414, and we got a flying ball! Watch as we invent several games with it before it leaves us for a better life.\r\n\r\nGet tickets to Theater Mode Live here: https://www.universe.com/events/theater-mode-live-tickets-austin-P8MSW1","player_loc":"https://roosterteeth.com/embed/ahwu-2018-the-flying-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/12d7083c-bfd1-4e2a-b958-2df0be4d3192.jpg/sm/FlyingBallTHumb.jpg","duration":1136,"publication_date":"2018-03-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-geoff-bag-5","changefreq":"weekly","video":[{"title":"2018:E46 - GTA V - Geoff Bag 5","description":"Geoff Bag returns with four unique racing maps.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-geoff-bag-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/757b7c33-747e-4a23-9581-4132e3cb8389.jpg/sm/ThumbLPGTAVGeoffBag5.jpg","duration":1888,"publication_date":"2018-03-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-121","changefreq":"weekly","video":[{"title":"2018:E121 - Goodnight Moonball - #121","description":"The AH Crew and special guest James DeAngelis sit down to talk about comic book movies, having kids, CGI, and more on this week's Off Topic!\r\n\r\nThis episode originally aired March 23, 2018 and is sponsored by Quip (http://bit.ly/2pCt6bF) and Felix Gray (http://bit.ly/2DmNsLO)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/65cd1215-cd8c-4097-87a0-c8fa2f665a4c.jpg/sm/OFF121Thumb.jpg","duration":9784,"publication_date":"2018-03-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-party-6-castaway-bay","changefreq":"weekly","video":[{"title":"2018:E44 - Mario Party 6 - Castaway Bay","description":"The Mario Mates are marooned on Castaway Bay with Donkey Kong and Bowser.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-party-6-castaway-bay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d632b1b6-1745-4f2e-bd93-f1cb8c0e4e91.png/sm/THUMBLPMarioParty6PART4V002.png","duration":5820,"publication_date":"2018-03-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2018-assassins-creed-iv-black-flag","changefreq":"weekly","video":[{"title":"2018:E4 - Assassins Creed IV: Black Flag","description":"The gang revisits one of the best entries in the Assassin's Creed series for some hidey-seeky slicing and dicing in this stealthy episode of RouLetsPlay.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2018-assassins-creed-iv-black-flag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cef6b717-0e72-4178-82dd-e160bc0def86.jpg/sm/ThumbRLPAssassinsCreed4Multi.jpg","duration":1257,"publication_date":"2018-03-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-305-gavin-two-ydyd-part-3","changefreq":"weekly","video":[{"title":"2018:E45 - Minecraft - Episode 305 - Gavin Two (YDYD Part 3)","description":"Ya Dead Ya Dead gets deadly this week. The tree boys try to make it home, the mole boys continue with their buttons, and Geoff makes a new Gavin after the first one is damaged beyond repair.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-305-gavin-two-ydyd-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df19a8c7-eeb9-456e-8de4-010c103d2094.jpg/sm/Thumb032318MinecraftYDYD3.jpg","duration":2628,"publication_date":"2018-03-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-genital-jousting-story-mode-part-2","changefreq":"weekly","video":[{"title":"2018:E6 - Genital Jousting: Story Mode (Part 2)","description":"Once again, we join Ryan, Gavin, Michael, and Jack as they attempt to help genital John find the perfect date for his high school reunion.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-genital-jousting-story-mode-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d8f30fc3-9643-41a6-a19e-744510f66737.jpg/sm/ThumbLWGenitalJoustingV2.jpg","duration":2216,"publication_date":"2018-03-23T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-post-show-2018-the-future-is-a-little-different","changefreq":"weekly","video":[{"title":"2018:E1 - The Future is a Little Different","description":"The gang talks new characters and internships.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-post-show-2018-the-future-is-a-little-different","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/92c54728-ad78-445f-aafb-b71219db2f98.jpg/sm/HHs4ep1PSThumb.jpg","duration":543,"publication_date":"2018-03-22T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gang-beasts-with-dodger","changefreq":"weekly","video":[{"title":"2018:E43 - Gang Beasts with Dodger","description":"Dodger \"Dexbonus\" and AH fight in Gang Beasts the only real winners are the audience and railing repair companies.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gang-beasts-with-dodger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e42fa23c-1812-4530-bf37-e4ceb5748d53.jpg/sm/gangbeastthumbv1.jpg","duration":1833,"publication_date":"2018-03-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-in-gta-v-spin-cycle","changefreq":"weekly","video":[{"title":"2018:E8 - in GTA V - Spin Cycle","description":"It's time to clean up everyone's act. Welcome to the Spin Cycle.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-in-gta-v-spin-cycle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4d44b198-817f-47c5-894f-b6ec4a4feefe.jpg/sm/TTDSpinCycleV2jpg.jpg","duration":315,"publication_date":"2018-03-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2018-the-tomb-of-horrors-chapter-5-what-emerges-in-the-dark","changefreq":"weekly","video":[{"title":"2018:E41 - The Mechs Generation Episode 1 - \"The Year of the Dog\"","description":"Heroes & Halfwits is re-imagined! Meet the new cast of characters, and follow them as a routine day in high school goes completely awry when they meet a big talking spider, a pyromaniac, and a special (maybe delicious) dog. This episode is sponsored by Blue Apron (http://cook.ba/HandHBlueApron) and MVMT (http://bit.ly/2kaRZMr).","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2018-the-tomb-of-horrors-chapter-5-what-emerges-in-the-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a2b5a0c-fd1b-4502-b1db-0857028f6743.jpg/sm/HHs4ep1Thumb.jpg","duration":5871,"publication_date":"2018-03-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-kirby-star-allies","changefreq":"weekly","video":[{"title":"2018:E42 - Kirby Star Allies","description":"Join Gavin, Matt, Michael, and Jeremy as they play Kirby Star Allies. Enjoy classic Kirby sounds and oh so many chaotic bombs.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-kirby-star-allies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d92e9360-5e2d-402f-9713-9d2d1be6d7d8.jpg/sm/LP_KirbyStarAllies_v1.jpg","duration":1678,"publication_date":"2018-03-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2018-achieve-shoot","changefreq":"weekly","video":[{"title":"2018:E3 - Achieve Photoshoot","description":"Take a special look between the shots of the Achievement Hunter photo shoot, full of ball clamps, golf balls, and Carboman.\r\nGet your Achieve Merch at the link below.\r\nhttps://store.roosterteeth.com/collections/achievement-hunter","player_loc":"https://roosterteeth.com/embed/between-the-games-2018-achieve-shoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/754406e5-70bc-4602-a012-79c231ff665f.jpg/sm/BTSACHIEVESHOOTTHUMB.jpg","duration":244,"publication_date":"2018-03-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-siege-the-pre-rankening-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E41 - Rainbow Six: Siege - The Pre-Rankening - AH Live Stream","description":"Special thanks to Vincero for sponsoring today’s live stream. Go to http://vincerocollective.com/ahlivemar18 and enter the promo code HUNTER to get 15% off your entire order! The gang prepares for ranked Siege on the PC. Can they find the goo in themselves, or will friendly fire get the best of them?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-siege-the-pre-rankening-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23afbf8d-d981-44f7-ae3e-9f78f09d3f01.jpg/sm/pubg_stream_thumb.jpg","duration":2119,"publication_date":"2018-03-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-her-majesty-s-spiffing-finale","changefreq":"weekly","video":[{"title":"2017:E33 - Her Majesty's Spiffing - Finale","description":"It's Gavin Jones and Michael English now as they've swapped bodies to continue the Queen's mission to make Britain great again. There's only one thing in their way. The French!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-her-majesty-s-spiffing-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd12dec9-ba0b-46ea-bda9-b0f1b3c82d00.png/sm/PPHMSpiffingPt2.png","duration":3074,"publication_date":"2018-03-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-jetpack-joyrides","changefreq":"weekly","video":[{"title":"2018:E40 - GTA V - Jetpack Joyrides","description":"We play with the new Mammoth Thruster Jetpacks, as well as the Avengers, Deluxos, and other fun new toys in GTA V.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-jetpack-joyrides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6b5b902-4bd1-4f05-8557-bcdd9aaa0db3.jpg/sm/gtavthumb2.jpg","duration":3590,"publication_date":"2018-03-19T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-move-or-die-get-swifty-4","changefreq":"weekly","video":[{"title":"2018:E39 - Let's Play - Move or Die - Get Swifty (#4)","description":"Take off your pants and Move or Die! These AH guys are are are bad news Morty. They got potty mouths and play with rubber cockadillos all day. Some of them slow down time to watch their friends suffer. It's ugly *buurrp* ugly stuff.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-move-or-die-get-swifty-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ad4c78d-b158-4715-8d04-2ebe084e5d29.jpg/sm/MoveordieThumb.jpg","duration":1607,"publication_date":"2018-03-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-413","changefreq":"weekly","video":[{"title":"2018:E6 - Fastest Moonball Ever","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU\r\nIt's AHWU 413! Someone sent us a giant slingshot! Now our moon balls fly at deadly speeds.","player_loc":"https://roosterteeth.com/embed/ahwu-2018-413","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1bd57af3-39e1-40d0-9f98-b2979564c7f7.jpg/sm/ThumbAHWU413_V3.jpg","duration":814,"publication_date":"2018-03-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-gent-er-fluid","changefreq":"weekly","video":[{"title":"2017:E120 - Gent-er-fluid","description":"The AH Crew stand up to talk about Infinity War, Rainbow Six Siege, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-gent-er-fluid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/029af257-9b4c-4ebf-af73-dfbaa55b63b2.jpg/sm/OFF120PSThumb.jpg","duration":1731,"publication_date":"2018-03-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-fishing-for-dummies-a-way-out-gameplay-part-5","changefreq":"weekly","video":[{"title":"2018:E69 - FISHING FOR DUMMIES • A Way Out Gameplay Part 5","description":"GOOD NEWS EVERYONE... we found \"a way out\" But now we're on the lam, and we're learning those basic survival skills. help. pls help.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-fishing-for-dummies-a-way-out-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a148ca1-f6d5-4d9d-8e72-8c74ea076ae0.jpg/sm/awayout5.jpg","duration":1049,"publication_date":"2018-04-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-real-gamer-hours-a-way-out-gameplay-part-4","changefreq":"weekly","video":[{"title":"2018:E59 - ESCAPE TO AFRICA • A Way Out Gameplay Part 4","description":"TODAY WE'RE DOING TWO THINGS. 1. We're going to prison. 2. We're finding a way out. But we're going to relive everyday like ground hog day over and over and over again, we're going to relive everyday like ground hog day over and over and over again, we're going to relive everyday like ground hog day over and over and over again, we're going to relive everyday like ground hog day over and over and over again in the mean time.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-real-gamer-hours-a-way-out-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/39ed5501-52c6-4047-b8de-7024b1494431.jpg/sm/awayout4.jpg","duration":781,"publication_date":"2018-04-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/photoshop-battles-2018-cirque-du-solame-photoshop-battles","changefreq":"weekly","video":[{"title":"2018:E6 - CIRQUE DU SOLAME • Photoshop Battles","description":"Competition: the heart of democracy, incubator of skill and butcher of friendships. Today, the current title holder, Asher faces off against Photoshop Battles first-timer Lindsey in a heated battle to see who is the greater Photoshop whizkid.","player_loc":"https://roosterteeth.com/embed/photoshop-battles-2018-cirque-du-solame-photoshop-battles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/89ea578b-7114-48ec-aea1-9490c32a6cd6.png/sm/ps6thumbnail.png","duration":850,"publication_date":"2018-04-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-legos-and-stunts-whoa-that-s-a-let-s-play-ep-5","changefreq":"weekly","video":[{"title":"2018:E65 - LEGOS AND STUNTS • WHOA! THAT'S A LET'S PLAY! • Ep 5","description":"GIVE ME YOUR SHOE!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-legos-and-stunts-whoa-that-s-a-let-s-play-ep-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7d449c27-010a-4b6f-9476-baa83aa9ccd3.jpg/sm/letplsay5.jpg","duration":963,"publication_date":"2018-04-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-season-2-tears-of-a-teenage-wasteland-part-16","changefreq":"weekly","video":[{"title":"S2:E16 - TEARS OF A TEENAGE WASTELAND - Part 16","description":"It's all come down to this, folks. The final episode of the saga of Amanda Hess, Mike Jaundice, Sam \"Cool\" Beans and Hannah Lee. I'd say more but either you're ready for this feature length grand finale or you're not, so make your preparations and embark on one last ride with THE CLASS OF 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198x-season-2-tears-of-a-teenage-wasteland-part-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0bb8beb3-6d96-4803-ae4e-fcd83ee50c32.jpg/sm/198xep16.jpg","duration":8013,"publication_date":"2018-04-23T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2018-facebook-bully-prank-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"2018:E8 - FACEBOOK BULLY PRANK • WRONG SIDE OF YOUTUBE","description":"2018:E8 - FACEBOOK BULLY PRANK • WRONG SIDE OF YOUTUBE","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2018-facebook-bully-prank-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3a39efeb-ab24-4810-b60b-0deb6ae3b754.jpg/sm/thumb3.jpg","duration":632,"publication_date":"2018-04-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-standee-assassin-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E16 - STANDEE ASSASSIN • Behind The Cow Chop","description":"It was only a matter of time before someone sent in the sword Brett asked for; luckily it was a iaitō and not a 真剣, but still a cause for concern for any would-be, wood-based imposters that show up at the warehouse. After the breach of security, Aleks asks the question, \"how safe are we in the warehouse?\" The answer may surprise you!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-standee-assassin-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/270a9f19-c6bf-4d7f-b8d8-f5153a6445c9.png/sm/btcc100.png","duration":711,"publication_date":"2018-04-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-sheets-and-giggles-a-way-out-gameplay-part-3","changefreq":"weekly","video":[{"title":"2018:E58 - SHEETS AND GIGGLES • A Way Out Gameplay Part 3","description":"TODAY WE'RE DOING TWO THINGS. 1. We're going to prison. 2. We're finding a way out. But we're going to relive everyday like ground hog day over and over and over again, we're going to relive everyday like ground hog day over and over and over again, we're going to relive everyday like ground hog day over and over and over again, in the mean time.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-sheets-and-giggles-a-way-out-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c9b0f79-6530-4c62-9123-d82c1d80c8e1.jpg/sm/awayoutep3.jpg","duration":834,"publication_date":"2018-04-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-anime-club-rehearsals-attack-on-titan-2-gameplay","changefreq":"weekly","video":[{"title":"2018:E64 - ANIME CLUB REHEARSALS • Attack on Titan 2 Gameplay","description":"An even more faithful recreation of the Attack on Titan world. Fear the more realistic Titans and enjoy the evolved action system for more versatility.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-anime-club-rehearsals-attack-on-titan-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1936c11c-be77-4f68-8bdc-f0c9b95ad06a.jpg/sm/attackv2.jpg","duration":853,"publication_date":"2018-04-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-alek-s-secret-prison-diary-a-way-out-gameplay-part-2","changefreq":"weekly","video":[{"title":"2018:E57 - ALEK'S SECRET DIARY • A Way Out Gameplay Part","description":"TODAY WE'RE DOING TWO THINGS. 1. We're going to prison. 2. We're finding a way out. But we're going to relive everyday like ground hog day over and over and over again, we're going to relive everyday like ground hog day over and over and over again, in the mean time.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-alek-s-secret-prison-diary-a-way-out-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c1c09e65-57a0-4379-b1bf-a0fbe9e88087.jpg/sm/a-way-out-2.jpg","duration":712,"publication_date":"2018-04-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-3-boston-library-feat-farid-cctv-30","changefreq":"weekly","video":[{"title":"S3:E30 - BOSTON BIBLIOTECA (feat. Farid) • CCTV #30","description":"PAX East came and went; Asher had his quinceañera at age 23, Cow Chop signed autographs for a legion of fans, we went to a party where streamers danced without moving their feet; you think the story's over but it's ready to begin. Farid joins us to recount the events leading up to our arrival at PAX in a Rashomon-like fashion. You'll hear all about: Asher missing his flight, what makes Aleks claw into his seat on an airplane, and all Farid had to go through to get us piñatas that we smashed in under a minute.","player_loc":"https://roosterteeth.com/embed/cctv-season-3-boston-library-feat-farid-cctv-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd337067-8d6f-45db-9f77-43fb9d2fa6c3.png/sm/podcast_ep30customimage.png","duration":3329,"publication_date":"2018-04-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-final-treasure-hunt-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E64 - THE FINAL TREASURE HUNT • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-final-treasure-hunt-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0c47a3ba-0c6a-482d-9a3b-0631b5baaf1b.jpg/sm/sot-4.jpg","duration":646,"publication_date":"2018-04-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-vehicle-breakdown-whoa-that-s-a-let-s-play-ep-4","changefreq":"weekly","video":[{"title":"2018:E63 - VEHICLE BREAKDOWN • WHOA! THAT'S A LET'S PLAY! • Ep 4","description":"2018:E63 - VEHICLE BREAKDOWN • WHOA! THAT'S A LET'S PLAY! • Ep 4","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-vehicle-breakdown-whoa-that-s-a-let-s-play-ep-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4552ee3a-15d3-4512-b0c9-154efbf34537.jpg/sm/letsplay4.jpg","duration":784,"publication_date":"2018-04-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-season-2-sam-versus-steve-and-god-against-all-part-15","changefreq":"weekly","video":[{"title":"S2:E15 - SAM VERSUS STEVE AND GOD AGAINST ALL - Part 15","description":"You know, our party of teenagers have had about all they can take of this real world Rennaissance Faire; there's no mall, no movies, and everything smells like gym class. Good thing they're only minutes away from piloting their newly revamped inter-dimensional ship back to their beloved hometown! Alas, things are rarely so simple for our lovable losers and today is no different; we've got a full blown emotional meltdown on the way and that's before we even get to the BAD NEWS. Get comfortable, grab a cold drink and join us as we enter the final act of this teen dream saga on the CLASS OF 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198x-season-2-sam-versus-steve-and-god-against-all-part-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d23948d1-0f68-44b2-89b4-e035137aeb0d.jpg/sm/1980xep15.jpg","duration":5236,"publication_date":"2018-04-16T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-pax-east-weekend-2018-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E15 - PAX EAST WEEKEND 2018 • Behind The Cow Chop","description":"Cow Chop made it out to PAX East and took Beantown by storm. Asher's birthday was the social event of the season, even though it almost didn't include Asher himself. From the world's largest gummy worm to a hat commemorating the eating of poison cleaning products, you'll get to see us meet some of our most die hard fans, and go behind the velvet rope at one of PAX's most exclusive parties.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-pax-east-weekend-2018-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7450dc25-df7a-4434-b5cc-7f63849ab021.png/sm/btcc99.png","duration":788,"publication_date":"2018-04-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2018-impostor-spear-fishing-amazon-prime-time","changefreq":"weekly","video":[{"title":"2018:E1 - IMPOSTOR SPEAR FISHING • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2018-impostor-spear-fishing-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13aebe5e-63f9-4614-a937-61e6f4c43ddb.png/sm/retard-zone-update.png","duration":830,"publication_date":"2018-04-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-can-t-sit-here-a-way-out-gameplay-part-1","changefreq":"weekly","video":[{"title":"2018:E56 - CAN'T SIT HERE • A Way Out Gameplay Part 1","description":"TODAY WE'RE DOING TWO THINGS. 1. We're going to prison. 2. We're finding a way out. But we're going to relive everyday like ground hog day over and over and over again, in the mean time.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-can-t-sit-here-a-way-out-gameplay-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cf422e0-4d3d-486d-b82a-0260aedf6e34.jpg/sm/awayout1.jpg","duration":657,"publication_date":"2018-04-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-trolling-at-skull-island-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E62 - TROLLING AT SKULL ISLAND • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-trolling-at-skull-island-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/74854fd2-0965-4d88-8c3f-39e78575a2b0.jpg/sm/unnamed.jpg","duration":833,"publication_date":"2018-04-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-eating-bath-bombs-scribblenauts-showdown-gameplay","changefreq":"weekly","video":[{"title":"2018:E53 - EATING BATH BOMBS • Scribblenauts Showdown Gameplay","description":"USE YOUR IMAGINATION TO CONJURE ALMOST ANYTHING FROM THE 35,000+ WORD DICTIONARY AND GO HEAD-TO-HEAD IN OVER 25 MINI-GAMES!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-eating-bath-bombs-scribblenauts-showdown-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/75cd053b-2150-4332-afd1-3190db246824.jpg/sm/SCRIBBLENAUTS3.jpg","duration":967,"publication_date":"2018-04-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-the-spice-gauntlet-2-0","changefreq":"weekly","video":[{"title":"S1:E130 - THE SPICE GAUNTLET 2.0","description":"WE'RE BACK AGAIN for more hot sauces and spicy treats. Who will withstand the wheel of calamity and who will fall face first into a bucket of sweet and cool ice cream.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-the-spice-gauntlet-2-0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bcdd8168-fa57-4bed-abd2-1429f0443092.jpg/sm/spicegauntlet.jpg","duration":1427,"publication_date":"2018-04-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-traitor-s-shanty-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E61 - TRAITOR'S SHANTY • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-traitor-s-shanty-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d7728f90-1d99-4205-8f1e-6fd723015764.jpg/sm/sotep2.jpg","duration":1146,"publication_date":"2018-04-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/photoshop-battles-2018-fearless-fandom-photoshop-battles","changefreq":"weekly","video":[{"title":"2018:E5 - FEARLESS FANDOM • Photoshop Battles","description":"Competition: the heart of democracy, incubator of skill and butcher of friendships. Today, in a very special exhibition, very special guest Criken faces off against \"\"\"graphic-design degree holder\"\"\" Aleks in a heated battle to see who is the greater Photoshop whizkid.","player_loc":"https://roosterteeth.com/embed/photoshop-battles-2018-fearless-fandom-photoshop-battles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/62b7d531-f887-4294-a714-95aeb046e4e5.png/sm/ccbattle.png","duration":882,"publication_date":"2018-04-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-attacked-by-a-gorilla-whoa-that-s-a-let-s-play-ep-3","changefreq":"weekly","video":[{"title":"2018:E55 - ATTACKED BY A GORILLA • WHOA! THAT'S A LET'S PLAY! • Ep 3","description":"2018:E55 - ATTACKED BY A GORILLA • WHOA! THAT'S A LET'S PLAY! • Ep 3","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-attacked-by-a-gorilla-whoa-that-s-a-let-s-play-ep-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5074f87c-b4b1-45ea-8546-400cf2a7a4b6.jpg/sm/LETSPLAY3.jpg","duration":767,"publication_date":"2018-04-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-season-2-brave-mike-moves-boxes-in-heaven","changefreq":"weekly","video":[{"title":"S2:E14 - BRAVE MIKE MOVES BOXES IN HEAVEN - Part 14","description":"Download the audio version at http://bit.ly/2JDgt9x. Well, the good news is that everybody has sobered up a bit after last night's sleep. The bad news is that our teenage war party is about to walk right into the real challenge of this dungeon, and things can get so much worse. Will all the combat drugs and ammo clips save them from certain doom or is this quest the end of the road? Magic, mayhem, and misplaced teenage emotions await you on the CLASS OF 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198x-season-2-brave-mike-moves-boxes-in-heaven","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/44f7dbcd-8f0b-4b46-bd8f-075714c3e160.jpg/sm/1980xep14.jpg","duration":3976,"publication_date":"2018-04-09T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-spring-break-highlights-cow-chop-cook-off-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E14 - SPRING BREAK HIGHLIGHTS / COW CHOP COOK OFF • Behind The Cow Chop","description":"We just got back from the Let's Play Spring Break, and boy are our arms sore from electric shocks; if you're not sure why, we've included some highlights straight from the beach house. Back at the office, a fan with gourmet taste sent us some imported cazzetti that Lindsey and Jakob were so eager to get into everyone's mouths that they decided to put their dishes up against one another in an impromptu pasta cock off!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-spring-break-highlights-cow-chop-cook-off-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/68fcc4b1-ea60-4ddc-89db-050aa60abb8c.png/sm/btcc98.png","duration":792,"publication_date":"2018-04-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2018-fornite-incel-dance-battle-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"2018:E3 - FORNITE INCEL DANCE BATTLE • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2018-fornite-incel-dance-battle-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d08fcc14-9c14-45ce-8a66-a1ba8fd55aa6.jpg/sm/YOUTUBETHUMBNAIL.jpg","duration":0,"publication_date":"2018-04-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-baby-delivery-system-scribblenauts-showdown-gameplay","changefreq":"weekly","video":[{"title":"2018:E52 - BABY DELIVERY SYSTEM • Scribblenauts Showdown Gameplay","description":"USE YOUR IMAGINATION TO CONJURE ALMOST ANYTHING FROM THE 35,000+ WORD DICTIONARY AND GO HEAD-TO-HEAD IN OVER 25 MINI-GAMES!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-baby-delivery-system-scribblenauts-showdown-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/93b21489-0915-48a6-9ae2-183bccbd7625.jpg/sm/SCRIBBLENAUTS2.jpg","duration":955,"publication_date":"2018-04-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-s-s-ian-from-smosh-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E54 - THE S.S. IAN FROM SMOSH • Sea of Thieves Gameplay","description":"WE RETURN TO THE SEAS, MATEY","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-s-s-ian-from-smosh-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e43fc0cf-2c4f-46be-9e70-738f30057f61.jpg/sm/thumb1x.jpg","duration":1182,"publication_date":"2018-04-06T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foreign-import-2018-japanese-snack-time-foreign-import-gameplay","changefreq":"weekly","video":[{"title":"2018:E1 - JAPANESE SNACK TIME • Foreign Import Gameplay","description":"James and Aleks re-explore the nation of Japan through the cross-cultural power of video games and food.","player_loc":"https://roosterteeth.com/embed/foreign-import-2018-japanese-snack-time-foreign-import-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/54059e73-f721-494b-808e-1c9e6f4e81b3.jpg/sm/FOREIGNIMPORT.jpg","duration":872,"publication_date":"2018-04-05T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-cats-and-dogs-for-dinner-scribblenauts-showdown-gameplay","changefreq":"weekly","video":[{"title":"2018:E48 - SOMEONE CALL PETA • Scribblenauts Showdown Gameplay","description":"USE YOUR IMAGINATION TO CONJURE ALMOST ANYTHING FROM THE 35,000+ WORD DICTIONARY AND GO HEAD-TO-HEAD IN OVER 25 MINI-GAMES!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-cats-and-dogs-for-dinner-scribblenauts-showdown-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b9cfe0bb-ee5c-4588-992a-ce28fcc395c9.jpg/sm/scribblenautsEP1.jpg","duration":1073,"publication_date":"2018-04-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-black-mirror-but-bad-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2018:E45 - BLACK MIRROR BUT BAD • Rainbow Six Siege Gameplay","description":"Corporal Stoner's in charge of checking the water supply for bacterium. The good news: no bacterium, bad news. They're about to be bombarded by monsters from the Outbreak. \r\n\r\nAfter a space capsule crashed in New Mexico, an Outbreak and a surge of violence forced the authorities to establish a Quarantine Zone around Truth or Consequences. Outbreak challenges you to step up to the plate. Go on the offensive and venture inside the Quarantine Zone to contain the infection threatening to spread across North America. Explore our three new maps with your squad and survive hordes of hostiles to identity the source of the parasite.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-black-mirror-but-bad-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f03c0946-24c8-4057-a23f-50fad66eef19.jpg/sm/r62.jpg","duration":884,"publication_date":"2018-04-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-3-james-house-tour-cctv-29","changefreq":"weekly","video":[{"title":"S3:E29 - JAMES' HOUSE TOUR • CCTV #29","description":"James, reluctantly, let us come over to his house for today's CCTV; mostly due to the fact that he had already moved to another house. But still, his hot tub provided the perfect atmosphere to dive into what Cow Chop is up to this Spring. You'll hear all about Jakob's new mixtape, Aleks' upcoming album, the terrors of driving a large recreational vehicle, and what a blast the Let's Play Spring Break was. Also, get our latest thoughts on the latest actions of a certain meddling website (wink,wink).","player_loc":"https://roosterteeth.com/embed/cctv-season-3-james-house-tour-cctv-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d054a3be-da75-491d-9afd-93b4f9663805.png/sm/PODCAST_ep29customimage.png","duration":0,"publication_date":"2018-04-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-bagel-bites-show-whoa-that-s-a-let-s-play-ep-2","changefreq":"weekly","video":[{"title":"2018:E50 - THE BAGEL BITES SHOW • WHOA! THAT'S A LET'S PLAY! • Ep 2","description":"HOW MANY MINUTES DO YOUR BAGEL BITES HAVE?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-bagel-bites-show-whoa-that-s-a-let-s-play-ep-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/444879a0-4481-4291-b2aa-3e54d940cbf0.jpg/sm/LETSPLAY_v2.jpg","duration":916,"publication_date":"2018-04-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-2-we-hate-d-d-now-and-the-show-is-cancelled-part-13","changefreq":"weekly","video":[{"title":"S2:E13 - WE HATE D&D NOW AND THE SHOW IS CANCELLED - Part 13","description":"Listen we've been playing for like six hours, maybe we should just take a break or something. No? Okay, well, we're going down down to Kobold Town this episode and if these four dumbasses don't die screaming on the floor of some filthy cave, it'll be a miracle. Cross your fingers for whatever outcome you're hoping for and buckle in cause things are gonna get more desperate than ever for the CLASS OF 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198x-2-we-hate-d-d-now-and-the-show-is-cancelled-part-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee5c9b2b-b873-421c-afd3-b07f8a3f39b0.jpg/sm/1980xep13.jpg","duration":3481,"publication_date":"2018-04-02T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-sex-swing-and-s-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E13 - ADULT SWING AND S*** • Behind The Cow Chop","description":"Another week, another batch of packages sent by trolling fans; and this week we've hit the mother lode. Not only did we get some items that are NSFW, but they may not be safe for us in general. It didn't stop us from putting ourselves at great personal risk just because a camera was rolling... until the ish itself broke the camera.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-sex-swing-and-s-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f47f36b5-c623-4a9d-acf8-20932ec92537.png/sm/btcc97.png","duration":0,"publication_date":"2018-03-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-welding-amazon","changefreq":"weekly","video":[{"title":"2017:E29 - METAL AND STONED• AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-welding-amazon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/10653b86-5084-443e-8b2c-c99714faf645.jpg/sm/AMAZON2.jpg","duration":751,"publication_date":"2018-03-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-yakuza","changefreq":"weekly","video":[{"title":"2018:E49 - Yakuza","description":"2018:E49 - Yakuza","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-yakuza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/babd34c4-276f-426d-950b-4ffdc8e79b46.jpg/sm/yakuza6.jpg","duration":0,"publication_date":"2018-03-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-an-awkward-love-story-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2018:E43 - AN AWKWARD LOVE STORY • Rainbow Six Siege Gameplay","description":"While Jakob's off at war with the ghouls, his wife is withering away. Will he make it back to her before it's too late or will Asher and Aleks become his new love interest. Or are they too interested in each other? \r\n\r\nAfter a space capsule crashed in New Mexico, an Outbreak and a surge of violence forced the authorities to establish a Quarantine Zone around Truth or Consequences. Outbreak challenges you to step up to the plate. Go on the offensive and venture inside the Quarantine Zone to contain the infection threatening to spread across North America. Explore our three new maps with your squad and survive hordes of hostiles to identity the source of the parasite.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-an-awkward-love-story-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/970217c0-b546-4378-86a0-53977ede176e.jpg/sm/r61.jpg","duration":881,"publication_date":"2018-03-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-final-act-warhammer-vermintide-2-gameplay","changefreq":"weekly","video":[{"title":"2018:E47 - THE FINAL ACT • Warhammer: Vermintide 2 Gameplay","description":"The sequel to the critically acclaimed Vermintide is a visually stunning and groundbreaking melee action game pushing the boundaries of the first person co-op genre. Join Aleks, Brett, James and Jakob as they defend themselves against hordes of rats and crackheads.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-final-act-warhammer-vermintide-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9580eb1c-b62c-4c1b-a726-857df1c8e599.jpg/sm/VERMINTIDE4.jpg","duration":740,"publication_date":"2018-03-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/photoshop-battles-2018-all-the-presidents-meme-photoshop-battles","changefreq":"weekly","video":[{"title":"2018:E4 - ALL THE PRESIDENTS MEME • Photoshop Battles","description":"Competition: the heart of democracy, incubator of skill and butcher of friendships. Today, the 2 time champion Jakob faces off against third-party candidate Asher in an election that may (or may not) be rigged.","player_loc":"https://roosterteeth.com/embed/photoshop-battles-2018-all-the-presidents-meme-photoshop-battles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/000f0ce0-e128-46c3-94af-8f18fdeeef69.png/sm/PSbattles4-2.png","duration":787,"publication_date":"2018-03-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-2-dab-on-the-dark-ages-part-12","changefreq":"weekly","video":[{"title":"S2:E12 - DAB ON THE DARK AGES - Part 12","description":"Welp we've hit the inevitable point in every season where everyone is at a level of DRUNK where playing the game becomes harder than it should be. So buckle in as the group spends way too long deciding what to spend a futuristic fortune on before finally taking their newly powered nightmare-free inter-dimensional ship to its next destination. The bad news is that all the technology in the world can't stop the power of bad decision making and these four teenage misfits are about to find themselves more out of place than ever.","player_loc":"https://roosterteeth.com/embed/class-of-198x-2-dab-on-the-dark-ages-part-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f459b8b-4fb8-439f-a7d9-7d36bc3b0351.jpg/sm/198xS2ep12.jpg","duration":3602,"publication_date":"2018-03-26T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-criken-calling-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E12 - CRIKEN CALLING • Behind The Cow Chop","description":"This week Criken came over to the Cow Chop warehouse for the first time ever. Aleks, not only wanted to give him a proper tour of our facilities, but also decided to cook for him; even though he told us numerous times that he had already eaten. Also, check out our obligatory opening of some of your packages; if you think that the other boxes we open is stuff we don't need, you ain't seen nothing yet!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-criken-calling-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2222ca05-322f-490d-be6c-2fb3a358f065.png/sm/BTCC96.png","duration":787,"publication_date":"2018-03-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2018-minecraft-wealth-affirmation-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"2018:E2 - MINECRAFT WEALTH AFFIRMATION • WRONG SIDE OF YOUTUBE","description":"2018:E2 - MINECRAFT WEALTH AFFIRMATION • WRONG SIDE OF YOUTUBE","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2018-minecraft-wealth-affirmation-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dadbcac4-3457-4c7d-b74a-2dd46eef2606.jpg/sm/thumb.jpg","duration":779,"publication_date":"2018-03-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-lore-seekers-warhammer-vermintide-2-gameplay","changefreq":"weekly","video":[{"title":"2018:E46 - LORE SEEKERS • Warhammer: Vermintide 2 Gameplay","description":"The sequel to the critically acclaimed Vermintide is a visually stunning and groundbreaking melee action game pushing the boundaries of the first person co-op genre. Join Aleks, Brett, James and Jakob as they defend themselves against hordes of rats and crackheads.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-lore-seekers-warhammer-vermintide-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/47547c28-d329-414e-80de-727ee917773b.jpg/sm/Warhammer.jpg","duration":792,"publication_date":"2018-03-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-jimmy-beats-world-shadow-of-the-colossus-gameplay","changefreq":"weekly","video":[{"title":"2018:E40 - JIMMY BEATS WORLD • Shadow of the Colossus Gameplay","description":"I'M SURE THEY'LL KILL A COLOSSUS THIS TIME","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-jimmy-beats-world-shadow-of-the-colossus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd0ba8d6-b509-4755-bc48-aac30b3c2db2.jpg/sm/thumb5again.jpg","duration":1126,"publication_date":"2018-03-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-tome-raiders-warhammer-vermintide-2-gameplay","changefreq":"weekly","video":[{"title":"2018:E44 - TOME RAIDERS • Warhammer: Vermintide 2 Gameplay","description":"The sequel to the critically acclaimed Vermintide is a visually stunning and groundbreaking melee action game pushing the boundaries of the first person co-op genre. Join Aleks, Brett, James and Jakob as they defend themselves against hordes of rats and crackheads.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-tome-raiders-warhammer-vermintide-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/032adf07-bfad-4e8e-ad7c-b741eb318e7e.jpg/sm/VERMINTIDE2.jpg","duration":871,"publication_date":"2018-03-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2018-secret-streamer-compound-cctv-28","changefreq":"weekly","video":[{"title":"S3:E28 - SECRET STREAMER COMPOUND (feat. Strippin) • CCTV #28","description":"We ventured deep into Southwest LA to an undisclosed location, where after giving security the secret password, we were in and sitting down for an interview with, the one and only, STRIPPIN (https://www.twitch.tv/strippin).\r\nWe ask a lot of questions about the streamer compound itself, dogs, streaming, cats, streaming, babies, and why Strippin was recently on LiveStreamFails. Also, get the exclusive scoop; what's on Aleks' bucket list?","player_loc":"https://roosterteeth.com/embed/cctv-2018-secret-streamer-compound-cctv-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/19ed354b-09c7-4e80-906d-caacb9216808.png/sm/PODCAST_ep281080.png","duration":3390,"publication_date":"2018-03-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-whoa-it-s-a-let-s-play-shadow-of-the-colossus-gameplay","changefreq":"weekly","video":[{"title":"2018:E39 - WHOA, IT'S A LET'S PLAY! • Shadow of the Colossus Gameplay","description":"UH OH! SPONSORED!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-whoa-it-s-a-let-s-play-shadow-of-the-colossus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e57269ee-0ff2-4374-8677-c20ff5fee664.jpg/sm/THUMB4.jpg","duration":823,"publication_date":"2018-03-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-no-man-left-behind-warhammer-vermintide-2-gameplay","changefreq":"weekly","video":[{"title":"2018:E42 - NO MAN LEFT BEHIND • Warhammer: Vermintide 2 Gameplay","description":"The sequel to the critically acclaimed Vermintide is a visually stunning and groundbreaking melee action game pushing the boundaries of the first person co-op genre. Join Aleks, Brett, James and Jakob as they defend themselves against hordes of rats and crackheads.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-no-man-left-behind-warhammer-vermintide-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ffa1e8f-a5ab-485b-a946-621ab1c9b4b8.jpg/sm/maxresdefault.jpg","duration":859,"publication_date":"2018-03-19T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-2-street-dreams-of-the-speedway-slums-part-11","changefreq":"weekly","video":[{"title":"S2:E11 - STREET DREAMS OF THE SPEEDWAY SLUMS - Part 11","description":"The Class of 198X is back at it with the search for fame and fortune to get them back to their homeworld. Could a huge cash prize for the winner of the big speeder race be within their reach? Are their newly assigned day jobs enough to keep them off the streets? Is there any alien species Sam won't try to flirt with? It's a wild rollercoaster this week as our teens sabotage and speed their way to any victory in sight.","player_loc":"https://roosterteeth.com/embed/class-of-198x-2-street-dreams-of-the-speedway-slums-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59137067-0020-4014-94d8-3d291805bd48.jpg/sm/198xS2ep11.jpg","duration":4531,"publication_date":"2018-03-19T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-extreme-sporting-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E11 - EXTREME SPORTING • Behind The Cow Chop","description":"We finally got around to giving our lobby (another) extreme makeover by hanging up all the art we've been collecting. The 2nd round of Spring cleaning unearthed our collection of forgotten vehicles from our past adventures. As is our Spring equinox ritual, we took our various wheels for a spin, broke a bunch of stuff, and got hurt. To our surprise however, the most damage was done not by a sporting good, but by an underestimated kitchen condiment.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-extreme-sporting-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce8b8403-09aa-4771-bf53-962c68a8e0e8.png/sm/BTCC951080.png","duration":774,"publication_date":"2018-03-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-fortune-cookie-ghost-hunt-amazon-prime-time","changefreq":"weekly","video":[{"title":"2017:E28 - FORTUNE COOKIE GHOST HUNT • AMAZON PRIME TIME","description":"Join Honey for FREE at https://joinhoney.com/cowchop","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-fortune-cookie-ghost-hunt-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bec397e0-7375-4d71-9e94-aba14733d1fa.jpg/sm/AMAZON.jpg","duration":787,"publication_date":"2018-03-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-aleks-is-keeping-the-baby-desolate-gameplay","changefreq":"weekly","video":[{"title":"2018:E41 - ALEKS IS KEEPING THE BABY• Desolate Gameplay","description":"DESOLATE is a first person horror survival experience. Join Aleks, James, Trevor and Jakob as they team up and explore an open world filled with mysteries and unsolved questions. \r\n\r\nIn this episode, the gang runs into controversy as they discover Aleks has died and left a baby out in the cold. Social services (Jakob) has to come to take the baby away, deeming Aleks unfit to care for the young child. Only Trevor has the opportunity next to adopt this abandoned baby and become the father figure he never had. But can Trevor ever quit doing rails of adderall and sniffing spores? If not, the only option left to take care of this poor baby is James, but....... is he even playing the same game?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-aleks-is-keeping-the-baby-desolate-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f2895d46-4bcb-4931-9c15-f70be39d9f90.jpg/sm/desolate_2.jpg","duration":695,"publication_date":"2018-03-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-personal-stories-shadow-of-the-colossus-gameplay","changefreq":"weekly","video":[{"title":"2018:E33 - PERSONAL STORIES • Shadow of the Colossus Gameplay","description":"THIS IS BECOMING LESS AND LESS ABOUT GAMEPLAY","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-personal-stories-shadow-of-the-colossus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6babd313-1ed3-4998-8ceb-92cc8e9a5cde.jpg/sm/thumb2.jpg","duration":1077,"publication_date":"2018-03-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2018-minecraft-rap-parody-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"2018:E1 - MINECRAFT RAP PARODY • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2018-minecraft-rap-parody-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc044878-630e-4a65-b12f-001fc2f279c8.jpg/sm/Cib2.jpg","duration":605,"publication_date":"2018-03-12T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-2-breaking-laws-bustin-nuts-part-10","changefreq":"weekly","video":[{"title":"S2:E10 - BREAKING LAWS & BUSTIN' NUTS - Part 10","description":"The Class of 198X continues to demonstrate its worst impulses by continuing with Sam's increasingly desperate mission to get laid\nby any means necessary. Things progress from there with a chance at inter-party romance, a gleaming technological city on the horizon and a timely encounter with intergalactic immigration. Just remember, when all else fails: try beatboxing.","player_loc":"https://roosterteeth.com/embed/class-of-198x-2-breaking-laws-bustin-nuts-part-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ddbb92a-0487-4864-bace-a0702330ba17.jpg/sm/198xS2ep10.jpg","duration":4626,"publication_date":"2018-03-12T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-f-r-i-e-n-d-s-forever-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E10 - F•R•I•E•N•D•S FOREVER • Behind The Cow Chop","description":"Our dear old besties Sugar Pine 7 came over this week to show off their camera, which (apparently) still shoots RAW. They join us as we open our biggest cache of fan mail, to date, from some of our biggest fans across the world; from Italy, to Australia, to Detroit, to Dalingshan Town, Dongguan City, Guangdong Province, China!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-f-r-i-e-n-d-s-forever-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5ac4d5a1-5205-4480-a7f7-c870b35876be.png/sm/BTCC94-1080.png","duration":799,"publication_date":"2018-03-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-shadows-from-the-creaks-shadow-of-the-colossus-gameplay","changefreq":"weekly","video":[{"title":"2018:E30 - SHADOWS FROM THE CREEKS • Shadow of the Colossus Gameplay • Ep 1","description":"Shadow of the Colossus is about a small guy fighting big guys but that's not important. What is important is talking about your feelings, improving yourself, forming lasting friendships and living a full, satisfying life.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-shadows-from-the-creaks-shadow-of-the-colossus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d0e7225d-3a12-44fc-b4ae-61a6b8dcfb44.jpg/sm/thumb1.jpg","duration":857,"publication_date":"2018-03-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-lindsey-s-minecraft-server-tour","changefreq":"weekly","video":[{"title":"2018:E37 - LINDSEY'S MINECRAFT SERVER TOUR","description":"Wow Lindsey. Thanks for inviting us on your dangerous Minecraft server. This was so much fun. We love Minecraft. I can't believe you were so generous in sharing your gameplay experience with us. \r\n\r\nSigned,\r\nJames and Aleks","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-lindsey-s-minecraft-server-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/89a4a532-66a5-41c8-8be1-7c0457502ec4.jpg/sm/minecraft2.jpg","duration":814,"publication_date":"2018-03-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2018-motorhome-bedroom-cctv-27","changefreq":"weekly","video":[{"title":"S3:E27 - MOTORHOME BEDROOM • CCTV #27","description":"Before we return the RV we rented out for our latest Cow Chop adventure, we decided to use the ambiance to capture this week's podcast. The close intimate setting brought out the best in us as we discus topics like PAX East, Aleks' new music video, dating apps, and the various difficulties of meeting people in this modern age. So, climb aboard and get relationship advice from the experts on the latest CCTV!","player_loc":"https://roosterteeth.com/embed/cctv-2018-motorhome-bedroom-cctv-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/90847869-80cd-4daf-bb4c-c6df552e1c8f.png/sm/PODCAST_ep271080.png","duration":3604,"publication_date":"2018-03-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-pyromania-far-cry-5-co-op-gameplay","changefreq":"weekly","video":[{"title":"2018:E35 - PYROMANIA • Far Cry 5 Co-op Gameplay","description":"Far Cry 5 takes place in Hope County, Montana and allows the player freedom in exploration, combat and running over bears. In this video, James and Trevor team up to help out the citizens in Hope County and hunt bears... maybe.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-pyromania-far-cry-5-co-op-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c70919fb-a6f7-41b3-aaf8-1771d37667b1.jpg/sm/farcryCoOpv2.jpg","duration":874,"publication_date":"2018-03-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198x-2-crashing-the-class-reunion-part-9","changefreq":"weekly","video":[{"title":"S2:E9 - CRASHING THE CLASS REUNION - Part 9","description":"Class is back in session and it feels SO GOOD. Amanda, Sam, Hannah & Mike are right where we left them at the end of Season One; bloodied, bruised and the proud new owners of an interdimensional ship that runs on nightmares. But things are not all as they seem as the group gets a few wardrobe upgrades, a few new things to argue about, and wraps it up in the same old bad decision making. Welcome back to THE CLASS OF 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198x-2-crashing-the-class-reunion-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7750599a-cb27-431a-95f9-473d4c31ce5a.jpg/sm/198xep1.jpg","duration":3722,"publication_date":"2018-03-05T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-making-plans-for-trevor-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E9 - MAKING PLANS FOR TREVOR • Behind The Cow Chop","description":"We've been spending more quality time with Trevor recently. Before he goes on hiatus we wanted to have an all Trevor day, where we did the things he wanted to do; including: eat chicken, go thrifting, listen to music, dance, and let him drive.\r\nWe also recorded an extensive library of Trevor's reactions to various circumstances to be used in future videos and for future generations.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-making-plans-for-trevor-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b5617ea8-6593-4782-b406-9cf72559a012.png/sm/btcc93-1080.png","duration":661,"publication_date":"2018-03-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-condiment-catastrophe-amazon-prime-time","changefreq":"weekly","video":[{"title":"2017:E27 - CONDIMENT CATASTROPHE • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-condiment-catastrophe-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/948368ec-93b4-4ca6-a46f-3f95f86304c3.jpg/sm/AMAZON_1.jpg","duration":779,"publication_date":"2018-03-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-flexing-our-american-muscle-far-cry-5-gameplay","changefreq":"weekly","video":[{"title":"2018:E34 - FLEXING OUR AMERICAN MUSCLE • Far Cry 5 Gameplay","description":"Far Cry 5 takes place in Hope County, Montana and allows the player freedom in exploration, combat and running over bears.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-flexing-our-american-muscle-far-cry-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/325f3d16-5b44-44db-ad60-3529caea55a7.jpg/sm/FARCRYep1.jpg","duration":977,"publication_date":"2018-03-02T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-s-s-jeremy-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E16 - THE S.S. JEREMY • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-s-s-jeremy-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a4df75dd-064a-432b-9b67-27b1698c14d4.jpg/sm/thumb1.jpg","duration":1158,"publication_date":"2018-03-02T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-trix-r-4-psychos-dead-by-daylight-gameplay","changefreq":"weekly","video":[{"title":"2018:E29 - TRIX R 4 CRAZIES • Dead By Daylight Gameplay","description":"Dead by Daylight is a multiplayer (4vs1) horror game where one player takes on the role of the savage Killer, and the other four players play as Survivors, trying to escape the Killer and avoid being caught, tortured and killed. Are you a killer? Or are you a survivor?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-trix-r-4-psychos-dead-by-daylight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc08a0d6-7ecc-434f-9857-c08472954397.jpg/sm/TRIXAREFORCRAZIES.jpg","duration":611,"publication_date":"2018-03-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-monster-moshpit-monster-hunter-world-gameplay","changefreq":"weekly","video":[{"title":"2018:E28 - MONSTER MOSHPIT • Monster Hunter: World Gameplay","description":"Monster Hunter: World is an action role-playing game developed and published by Capcom. In many ways it simulates the thrill of big game hunting in the erection I get from extincting rare species.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-monster-moshpit-monster-hunter-world-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/08b2c69a-ff84-4624-83ce-bd01e0f76436.jpg/sm/MonsterHunterWorldEP3.jpg","duration":1075,"publication_date":"2018-03-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-eternal-recurrence-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E8 - ETERNAL RECURRENCE • Behind The Cow Chop","description":"Another day, another look into what goes on behind the Cow Chop. This week our devoted fans sent in some of the craziest stuff we'd ever seen before , but not quite as crazy as what Aleks got for us... if he can get Asher and Trevor to even look at it that is.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-eternal-recurrence-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b04e7e63-154c-4214-839c-98c536d5d7dd.png/sm/btcc92customimage1080.png","duration":657,"publication_date":"2018-02-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-people-getting-hurt-wrong-side-of-youtube-old-copy","changefreq":"weekly","video":[{"title":"2018:E32 - PEOPLE GETTING HURT • WRONG SIDE OF YOUTUBE","description":"WHAT DID YOU JUST LOOK UP?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-people-getting-hurt-wrong-side-of-youtube-old-copy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aaec3842-bc24-49ef-8477-366cbc7f53b4.jpg/sm/thumb.jpg","duration":676,"publication_date":"2018-02-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-elimination-round-dragon-ball-fighterz-gameplay","changefreq":"weekly","video":[{"title":"2018:E31 - ELIMINATION ROUND • Dragon Ball FighterZ Gameplay","description":"Dragon Ball FighterZ is a 2.5D fighting game based on the Dragon Ball franchise. Players each select three characters to form a team. One character is controlled, and can be switched with one of the other characters at any time. Players can also call one of their other characters to perform an \"Assist\" move, allowing simultaneous attacks and combos with the entire team. All three of the opponent's characters must be defeated to win the game. Today the remaining 4 Cow Chop members in the tournament go head to head to determine who will be the winner of our Official Cow Chop SoCal Tournament 2018!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-elimination-round-dragon-ball-fighterz-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f210540a-094f-481b-a812-c0a07ec78b31.png/sm/dragonball2-1080.png","duration":1412,"publication_date":"2018-02-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-tournament-begins-dragon-ball-fighterz-gameplay","changefreq":"weekly","video":[{"title":"2018:E26 - THE TOURNAMENT BEGINS • Dragon Ball FighterZ Gameplay","description":"Dragon Ball FighterZ is a 2.5D fighting game based on the Dragon Ball franchise. Players each select three characters to form a team. One character is controlled, and can be switched with one of their other characters at any time. Players can also call one of their other characters to perform an \"Assist\" move, allowing simultaneous attacks and combos with the entire team. All three of the opponent's characters must be defeated to win the game. Today the first four of six Cow Chop competitors go head to head in the first half of our first annual Official Cow Chop SoCal Tournament 2018, which we don't plan on having next year; so this is it really.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-tournament-begins-dragon-ball-fighterz-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2bcd63f8-5349-4289-bb39-d509f6659c65.png/sm/dragonball1-1080.png","duration":1225,"publication_date":"2018-02-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-muscle-shock-therapy-dead-by-daylight-gameplay","changefreq":"weekly","video":[{"title":"2018:E27 - MUSCLE SHOCK THERAPY • Dead By Daylight Gameplay","description":"Dead by Daylight is a multiplayer (4vs1) horror game where one player takes on the role of the savage Killer, and the other four players play as Survivors, trying to escape the Killer and avoid being caught, tortured and killed. Are you a killer? Or are you a survivor?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-muscle-shock-therapy-dead-by-daylight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/683f8ea9-577e-4383-8511-0d7ca8e429ac.jpg/sm/dbdaylight2.jpg","duration":802,"publication_date":"2018-02-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2018-elysian-park-cctv-26","changefreq":"weekly","video":[{"title":"S3:E26 - ELYSIAN PARK • CCTV #26","description":"We've escaped LA temporarily by traveling deep into Elysian Park to clear our thoughts and get in touch with nature. Free from the worries of our warehouse life, we are able to ponder more important philosophical questions: What is love? What would you want your last words to be? What's the best advice you've ever received? Along the way you'll see lots of cute dogs, a weird rodent coming out of the ground, and get the secret to getting out of any prior engagement with James' signature Jedi mind trick.","player_loc":"https://roosterteeth.com/embed/cctv-2018-elysian-park-cctv-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c9b83139-21f6-4c8e-846e-b95b6e1881ef.png/sm/PODCAST_ep26customimage1080.png","duration":3720,"publication_date":"2018-02-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-moscow-misadventure-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E7 - MOSCOW IMPORTS • Behind The Cow Chop","description":"Brett and Lindsey just got back from Russia, where they attended the Warface Open Cup and drank copious amounts of водка. Upon their return, they showered Aleks with gifts from his homeland. Little did they know, a certain Cow Chop fan had also sent us a gift from his homeland, one arguably more deadly than even the strongest алкоголь.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-moscow-misadventure-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ffc7205-aa90-45bf-9bc3-1ccd1b476557.png/sm/btcc91_custom1080.png","duration":849,"publication_date":"2018-02-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-arcade","changefreq":"weekly","video":[{"title":"2017:E26 - HOW TO PASS A DRUG TEST • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f4cf0f8b-778a-4dd2-9eb0-36de3cba803c.jpg/sm/amazonarcade.jpg","duration":882,"publication_date":"2018-02-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-jigsaw-hide-and-seek-dead-by-daylight-gameplay","changefreq":"weekly","video":[{"title":"2018:E22 - JIGSAW HIDE AND SEEK • Dead By Daylight Gameplay","description":"Dead by Daylight is a multiplayer (4vs1) horror game where one player takes on the role of the savage Killer, and the other four players play as Survivors, trying to escape the Killer and avoid being caught, tortured and killed. Are you a killer? Or are you a survivor?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-jigsaw-hide-and-seek-dead-by-daylight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/330e3459-6da5-48eb-9145-745306bcf829.jpg/sm/dbdaylight_v2.jpg","duration":1140,"publication_date":"2018-02-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-super-bomb-defusal-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2018:E12 - SUPER BOMB DEFUSAL • Rainbow Six Siege Gameplay","description":"Teamwork and cooperation are encouraged in Siege, and players need to take advantage of their different abilities in order to complete the objective and defeat the enemy team. This time, the guys are playing the \"Bomb\" mode in which the attackers are tasked with locating and defusing one of two bombs.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-super-bomb-defusal-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b6015405-f4e0-4690-b340-15a36c8f218b.jpg/sm/sessio2ep2.jpg","duration":817,"publication_date":"2018-02-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-the-final-voyage-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E21 - THE FINAL VOYAGE • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-the-final-voyage-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ddc20370-aa2f-49b6-9f67-68212213592b.jpg/sm/thumb5.jpg","duration":788,"publication_date":"2018-02-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-duck-dynasty-role-play-hunt-showdown-gameplay","changefreq":"weekly","video":[{"title":"2018:E23 - DUCK DYNASTY ROLE-PLAY • Hunt: Showdown Gameplay","description":"Hunt: Showdown is a new cooperative first person shooter casting its players as rugged bounty hunters pursuing monsters in the Louisiana swamps. What ghastly ghouls might be uncovered by our brave huntsmen, Aleks and James? Watch to find out..","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-duck-dynasty-role-play-hunt-showdown-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a003534-29ae-436e-aaf1-0aa5685c640c.jpg/sm/TheHunt.jpg","duration":1161,"publication_date":"2018-02-14T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-survival-of-the-gamer-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2018:E11 - SURVIVAL OF THE GAMER • Rainbow Six Siege Gameplay","description":"Teamwork and cooperation is encouraged in Siege, and players need to take advantage of their different abilities in order to complete the objective and defeat the enemy team. This time, the guys are playing the \"Bomb\" mode in which the attackers are tasked with locating and defusing one of two bombs. Then they play \"hostage\" mode, in which the attackers must extract the hostage from the defenders. A secondary manner of winning can occur if the attacking or defending team accidentally damages the hostage.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-survival-of-the-gamer-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/80a85708-f62b-45ea-99d7-a52466e98b06.jpg/sm/Thumbnailep3.jpg","duration":796,"publication_date":"2018-02-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-spring-cleaning-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E6 - SPRING CLEANING • Behind The Cow Chop","description":"Spring comes early in Southern California, which is good for us because the warehouse is like a time capsule; stuffed with junk from the past.\r\n We tried our hardest to decide what should stay and what should go, but some things are better left to the professionals.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-spring-cleaning-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9a26bde9-fef4-4310-a023-05b6ebfd4c69.png/sm/BTCC90_1080.png","duration":674,"publication_date":"2018-02-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2017-super-bowl-old-copy","changefreq":"weekly","video":[{"title":"2018:E21 - SUPER BOWL ADS AND RIOTS • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2017-super-bowl-old-copy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cf3e1cd-97f5-4234-83b4-7b963d2db673.jpg/sm/youtubesuperbowl.jpg","duration":660,"publication_date":"2018-02-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-fighting-everyone-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E20 - FIGHTING EVERYONE • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-fighting-everyone-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a8a5272-2d8e-4bdf-8049-e946f8ca63ba.jpg/sm/thumb4.jpg","duration":1079,"publication_date":"2018-02-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-shipwreck-musical-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E19 - SHIPWRECK MUSICAL • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-shipwreck-musical-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd49ecdf-4cd8-4e48-b2ec-8a40388cb249.jpg/sm/thumb3.jpg","duration":1191,"publication_date":"2018-02-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/guinness-world-records-2018-busting-nuts-guinness-world-records","changefreq":"weekly","video":[{"title":"2018:E1 - BUSTING NUTS • GUINNESS WORLD RECORDS","description":"Brett, James and Trevor test their grit against martial artist, Prabhakar Reddy P in the premiere episode of this all new series. Do they have the resolve to press through the pain, or will they fall in their conquest for recognition? Probably the latter - but it'll be funny.","player_loc":"https://roosterteeth.com/embed/guinness-world-records-2018-busting-nuts-guinness-world-records","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/301b01e4-dcdf-4065-b726-287f85b268a7.jpg/sm/Episode1.jpg","duration":813,"publication_date":"2018-02-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2018-culver-city-hilltop-feat-bruce-greene-cctv-25","changefreq":"weekly","video":[{"title":"S3:E25 - CULVER CITY HILLTOP (feat. Bruce Greene) • CCTV #25","description":"We stopped off on the Westside, Funhaus' back yard, and invited Bruce Greene on the podcast to talk shop with the Chop. This time around we address: what a blast Funhaus Live was, dealing with the fear of flying, and how our individual channels are doing. Plus, learn what James' favorite restaurant is, and who went there on a first date.","player_loc":"https://roosterteeth.com/embed/cctv-2018-culver-city-hilltop-feat-bruce-greene-cctv-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c7e6fca5-c489-455d-92a7-d2b8f796655c.png/sm/PODCAST_ep251080.png","duration":3597,"publication_date":"2018-02-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-shooting-teammates-fortnite-gameplay","changefreq":"weekly","video":[{"title":"2018:E18 - SHOOTING TEAMMATES • Fortnite Gameplay","description":"Fortnite is what your parents wished they could play when they were kids. Fortnite is where the grass is always greener. Fortnite is home to a wide variety of flora and fauna. Fortnite is the Alpha. Fortnite is the Omega.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-shooting-teammates-fortnite-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cdb9ad1-58e2-4682-a8b6-98224b6ec636.jpg/sm/thumb5.jpg","duration":733,"publication_date":"2018-02-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-guy-dolls-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E5 - GUYS & DOLLS • Behind The Cow Chop","description":"It may be no secret that we still play with toys, but dolls? Sure we play with dolls, it's 2018! Not only did we get some sweet Pit People figurines courtesy of The Behemoth (https://www.thebehemoth.com/), we also played doctor with the life-size silicone doll... by giving it a skull transplant.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-guy-dolls-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc12b2b8-9ccf-43f3-9cd8-35801e66d757.png/sm/btcc891080.png","duration":668,"publication_date":"2018-02-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-amazon-toothpaste","changefreq":"weekly","video":[{"title":"2017:E25 - CAFFEINATED TOOTHPASTE DISASTER • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-amazon-toothpaste","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/97fdcdf0-b44a-44fd-ae0a-3674ab269fbe.jpg/sm/amazontoothpaste.jpg","duration":996,"publication_date":"2018-02-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-cursed-journey-sea-of-thieves-gameplay","changefreq":"weekly","video":[{"title":"2018:E17 - CURSED JOURNEY • Sea of Thieves Gameplay","description":"Sea of Thieves is a pirate simulator set in an immense world of treasure, combat and cannons. I'm sure this will go well!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-cursed-journey-sea-of-thieves-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c209abaf-fa3c-4d50-a0dd-f3619198e64d.jpg/sm/thumb2.jpg","duration":794,"publication_date":"2018-02-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-what-s-in-the-box-challenge-feat-brett-jakob","changefreq":"weekly","video":[{"title":"S1:E129 - WHAT'S IN THE BOX CHALLENGE (feat. Brett & Jakob)","description":"Six items. Two friends. One box. It's time to test our trust by putting our hand into a mystery box and feel out whatever may be waiting inside.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-what-s-in-the-box-challenge-feat-brett-jakob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f67d9757-fda7-4160-b5fb-aad90b7a0230.png/sm/whatsintehboxbrettandjakob1080.png","duration":1310,"publication_date":"2018-02-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-world-s-best-sniper-fortnite-gameplay","changefreq":"weekly","video":[{"title":"2018:E13 - WORLD'S BEST SNIPER • Fortnite Gameplay","description":"Fortnite is what your parents wished they could play when they were kids. Fortnite is where the grass is always greener. Fortnite is home to a wide variety of flora and fauna. Fortnite is the Alpha. Fortnite is the Omega.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-world-s-best-sniper-fortnite-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4701855b-20a4-4842-8c6c-c917efed9f73.jpg/sm/thumb4.jpg","duration":615,"publication_date":"2018-01-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-aleks-tries-to-become-a-citizen-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E4 - ALEKS TRIES TO BECOME A CITIZEN • Behind The Cow Chop","description":"The time has come for Aleks to apply for naturalization, so he cracked open a Kickstart and went to work on the N-400. But is becoming a citizen as easy as it seems? This test asks Aleks the hard hitting questions he may not be prepared to answer; \" Do you plan to travel outside the U.S.?\" \"Have you ever voted in a local election?\" \"Have you ever been declared legally incompetent?\"","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-aleks-tries-to-become-a-citizen-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/49af3c54-f8b2-4ec8-b802-ff22edc1527d.png/sm/BTCC8810802.png","duration":714,"publication_date":"2018-01-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2017-jakop-old-copy","changefreq":"weekly","video":[{"title":"2018:E20 - FIRST TIME SEEING JUGS • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2017-jakop-old-copy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eeed90dd-cc91-405f-a6cf-1e9af9eae0be.jpg/sm/gfdsbvs.jpg","duration":725,"publication_date":"2018-01-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-casual-warfare-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2018:E8 - CASUAL WARFARE • Rainbow Six Siege Gameplay","description":"Teamwork and cooperation are encouraged in Siege, and players need to take advantage of their different abilities in order to complete the objective and defeat the enemy team. Communication between players is also encouraged. There are different types of modes, they guys are playing the \"secure area\" mode in which the defenders must protect a room with biohazard containers, while the attackers must fight their way in. The match ends when all players from one team are killed or the biohazard container is secured by the attackers when there are no defenders in the room.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-casual-warfare-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7eb690f0-0667-4868-87a0-792f71e888a1.jpg/sm/thumbnailep.jpg","duration":780,"publication_date":"2018-01-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-blowing-up-houses-fortnite-gameplay","changefreq":"weekly","video":[{"title":"2018:E10 - BLOWING UP HOUSES • Fortnite Gameplay","description":"Fortnite is what your parents wished they could play when they were kids. Fortnite is where the grass is always greener. Fortnite is home to a wide variety of flora and fauna. Fortnite is the Alpha. Fortnite is the Omega.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-blowing-up-houses-fortnite-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a62ca01-fcba-4d41-8c3f-c91191f4fd8a.jpg/sm/thumb3.jpg","duration":858,"publication_date":"2018-01-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2018-geoff-ramsey-s-hotel-room-feat-steven-suptic-cctv-24","changefreq":"weekly","video":[{"title":"S3:E24 - GEOFF RAMSEY'S HOTEL ROOM (feat. Steven Suptic) • CCTV #24","description":"Prior to a very important meeting with Rooster Teeth, we decided to record a very impromptu CCTV. We invited STEVEN SUPTIC to join us for our pre-meeting meeting to share his insider secrets, but then he just showed off his new camera instead.\r\nAmidst the chaos, you'll hear all about: our favorite parts of CES, who we called the cops on for coming to our office in the middle of the night, and does Steven's new camera shoot RAW or not.","player_loc":"https://roosterteeth.com/embed/cctv-2018-geoff-ramsey-s-hotel-room-feat-steven-suptic-cctv-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9bc3c908-6246-433e-907e-115848d7a790.png/sm/PODCAST_ep124customimage1080.png","duration":2719,"publication_date":"2018-01-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-biohazard-destruction-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2018:E7 - BIOHAZARD DESTRUCTION • Rainbow Six Siege Gameplay","description":"Teamwork and cooperation are encouraged in Siege, and players need to take advantage of their different abilities in order to complete the objective and defeat the enemy team. There are different types of modes; the guys are playing the \"secure area\" mode in which the defenders must protect a room with biohazard containers, while the attackers must fight their way in. The match ends when all players from one team are killed or the biohazard container is secured by the attackers when there are no defenders in the room.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-biohazard-destruction-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79ddbb04-1d83-44cb-a9bf-ad52ed6d7657.jpg/sm/thumbnail.jpg","duration":841,"publication_date":"2018-01-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-ninja-starter-kit-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E3 - NINJA STARTER KIT • Behind The Cow Chop","description":"Our supplier of goods of questionable legality has delivered again; we've gone from doing simple parkour to ninjutsu in just one week.\r\nUnfortunately for us, it was the rainiest day Los Angeles had ever seen; leaving us with little to wage irregular warfare on besides the old Christmas tree.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-ninja-starter-kit-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/57dd4eda-14c5-4b0d-991c-7f231f98bafd.png/sm/btcc87customthumb1080.png","duration":821,"publication_date":"2018-01-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-2018-assassin-s-creed-rogue-song-forsake-me-now-remastered","changefreq":"weekly","video":[{"title":"2018:E12 - Assassin's Creed Rogue Song - \"Forsake Me Now\" (Remastered)","description":"Ubisoft remastered Assassin's Creed Rogue so we remastered our song for the game. Pretty simple of a concept, eh?","player_loc":"https://roosterteeth.com/embed/songs-about-games-2018-assassin-s-creed-rogue-song-forsake-me-now-remastered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e8fd182-75d0-4ea9-b362-a97cef1c9520.png/sm/acroguesongthumb.png","duration":264,"publication_date":"2018-04-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-2018-far-cry-5-rap-shepherd-of-this-flock","changefreq":"weekly","video":[{"title":"2018:E11 - Far Cry 5 Rap - \"Shepherd of this Flock\"","description":"We get Miracle of Sound on another Far Cry Rap chorus and it turned out amazing. You'll be humming this tune as you take out cultists in Hope County.","player_loc":"https://roosterteeth.com/embed/songs-about-games-2018-far-cry-5-rap-shepherd-of-this-flock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d99c8c81-b447-4e79-9b6a-b2c0918da059.png/sm/FarCry5Thumb.png","duration":263,"publication_date":"2018-04-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-overwatch-hero-rap-3-one-of-a-kind","changefreq":"weekly","video":[{"title":"S1:E10 - Overwatch Hero Rap #3 - \"One of a Kind\"","description":"Another seven characters from Overwatch jump on a rap to spit some bars.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-overwatch-hero-rap-3-one-of-a-kind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8350f77a-a80e-4742-a7f0-de6f3298f3a0.png/sm/OverwatchHeroRap3Thumb.png","duration":270,"publication_date":"2018-03-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-sea-of-thieves-rap-booty-bound","changefreq":"weekly","video":[{"title":"2018:E10 - Sea of Thieves Rap - \"Booty Bound\"","description":"Argggg! Here's a shanty for ye crew to listen to while ye sails the seas in Sea of Thieves.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-sea-of-thieves-rap-booty-bound","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a768c7af-9f88-46df-8812-354dc139ca31.png/sm/SeaofThievesThumb.png","duration":271,"publication_date":"2018-03-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-we-got-hours-music-video","changefreq":"weekly","video":[{"title":"2018:E9 - \"We Got Hours\" - Music Video","description":"You've seen all the other YouTubers make these raps and flex. We decided to show them how it's really done. They have Lambos. We have a PT Cruiser. They have money. We Got Hours.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-we-got-hours-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f00735f1-4fdd-453c-9e8e-fdc6cc79dc3d.png/sm/WeGotHoursThumb.png","duration":225,"publication_date":"2018-03-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-team-fortress-2-rap-meet-the-crew","changefreq":"weekly","video":[{"title":"2018:E8 - Team Fortress 2 Rap - \"Meet The Crew\"","description":"We revisit and remaster one our classic songs, which is about all the characters of Team Fortress 2. Thank you to Razzlet for animating this video.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-team-fortress-2-rap-meet-the-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bbcd254d-8d4d-4be5-b1a3-b2c3e32ce3e9.png/sm/TF2RapThumb.png","duration":261,"publication_date":"2018-03-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-pubg-rap-4-loco","changefreq":"weekly","video":[{"title":"2018:E7 - PUBG Rap - \"4 Loco\"","description":"We try something new with this PUBG song and have a lot of collaborators join in as well. Thank you to Nerdout, Neebs Gaming, Kronno Zomber and Andrea Kaden for jumping on this song!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-pubg-rap-4-loco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5bac58e6-b40b-48bf-bd0b-7c369daac5fa.png/sm/PUBGRapThumb.png","duration":304,"publication_date":"2018-03-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-monster-hunter-world-rap-the-beast-within","changefreq":"weekly","video":[{"title":"2018:E6 - Monster Hunter World Rap - \"The Beast Within\"","description":"Monster Hunter World is both \"fun and peppy\" while also being \"morbid and cruel\"...we combined those things into a Rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-monster-hunter-world-rap-the-beast-within","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c34ff083-1e9a-4e83-8c87-03b57b64e08a.png/sm/MonsterHunterWorldThumb.png","duration":258,"publication_date":"2018-02-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-warframe-rap-a-tenno-s-dream","changefreq":"weekly","video":[{"title":"2018:E5 - Warframe Rap - \"A Tenno's Dream\"","description":"We've been getting song requests for this game for as long as we can remember. We hope this Warframe Rap lives up to the hype! Thank you to Fabvl for dropping some verses on this track!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-warframe-rap-a-tenno-s-dream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/36205e74-ac9d-4303-8eb5-dceeae1f5bb6.png/sm/WarframeThumb.png","duration":306,"publication_date":"2018-02-17T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-plants-vs-zombies-garden-warfare-2-rap","changefreq":"weekly","video":[{"title":"2016:E3 - Plants vs. Zombies Garden Warfare 2 Rap","description":"The (rap) battle between Plant and Zombie continues with our second PVZ Garden Warfare 2 song.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-plants-vs-zombies-garden-warfare-2-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ca4b775a-43b4-4c31-91a4-aa60259f404e.png/sm/JTMusic2016_3_widethumb.png","duration":201,"publication_date":"2018-02-15T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-medic-vs-mercy-rap-battle-live","changefreq":"weekly","video":[{"title":"S1:E18 - Medic vs Mercy Rap Battle Live","description":"Here is our Medic vs Mercy Rap Battle, but LIVE. Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-medic-vs-mercy-rap-battle-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c0e7efb-a7af-40dd-ada4-e0aae443ea71.png/sm/JT Music Raps Live_19_widethumb.png","duration":312,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-mob-rap-part-ii","changefreq":"weekly","video":[{"title":"S1:E3 - Minecraft Mob Rap Part II","description":"One of our most popular series follows all the Mobs from Minecraft. Here is the second installment!","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-mob-rap-part-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/92c02588-a1a8-4c62-8204-d989067be84a.jpg/sm/MinecraftSongs_3_widethumb.jpg","duration":246,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-rap-the-minecraft-life","changefreq":"weekly","video":[{"title":"S1:E1 - Minecraft Rap - \"The Minecraft Life\"","description":"Our first Minecraft song was probably our most generic. This song is about, you guessed it, a typical life in Minecraft.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-rap-the-minecraft-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77692099-8bfb-4413-9882-3d760d573db1.jpg/sm/MinecraftSongs_1_widethumb.jpg","duration":214,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-mob-rap-part-i","changefreq":"weekly","video":[{"title":"S1:E2 - Minecraft Mob Rap Part I","description":"One of our most popular series follows all the Mobs from Minecraft. Here is the first installment!","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-mob-rap-part-i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/847c1708-9c4a-4c1b-be06-97b33116a827.jpg/sm/MinecraftSongs_2_widethumb.jpg","duration":245,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-survival-rap","changefreq":"weekly","video":[{"title":"S1:E4 - Minecraft Survival Rap","description":"Survival mode in Minecraft is pretty tough, especially after you've discovered creative mode. We dramatize the shit out of Survival mode in this song.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-survival-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e258bf47-1412-4d16-bc5a-e15c0f4060c4.jpg/sm/MinecraftSongs_4_widethumb.jpg","duration":183,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-rap-battle-creeper-vs-zombie","changefreq":"weekly","video":[{"title":"S1:E5 - Minecraft Rap Battle - \"Creeper vs Zombie\"","description":"The two most iconic Minecraft mobs go at it in this Rap Battle. Who wins? Zombie or Creeper? Thank you to Brysi for his verses as the Zombie.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-rap-battle-creeper-vs-zombie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/61f4aeb8-735c-45fd-9452-21658034eb82.jpg/sm/MinecraftSongs_5_widethumb.jpg","duration":192,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-griefer-rap","changefreq":"weekly","video":[{"title":"S1:E6 - Minecraft Griefer Rap","description":"Griefers are the absolute worst and we despise them. So what do we do? We glorify and give them a voice via this song.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-griefer-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a90e2cfe-c5ff-4558-8a2b-451bf3026601.jpg/sm/MinecraftSongs_6_widethumb.jpg","duration":157,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-mob-rap-part-iii","changefreq":"weekly","video":[{"title":"S1:E7 - Minecraft Mob Rap Part III","description":"One of our most popular series follows all the Mobs from Minecraft. Here is the third installment!","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-mob-rap-part-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3ab0e5f2-21de-4695-b550-d50af23d6cfe.jpg/sm/MinecraftSongs_7_widethumb.jpg","duration":247,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-mob-rap-part-iv","changefreq":"weekly","video":[{"title":"S1:E9 - Minecraft Mob Rap Part IV","description":"One of our most popular series follows all the Mobs from Minecraft. Here is the fourth installment!","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-mob-rap-part-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59d298ea-c4bf-442f-834b-3222d2fa2f8b.jpg/sm/MinecraftSongs_9_widethumb.jpg","duration":222,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-music-parody-came-prepared","changefreq":"weekly","video":[{"title":"S1:E8 - Minecraft Music Parody - \"Came Prepared\"","description":"\"Holy Grail\" by Justin Timberlake and Jay-Z was a big hit at the time, so we parodied it in Minecraft.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-music-parody-came-prepared","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5e0af8ff-0121-48e4-aba4-ad7cc02408e8.jpg/sm/MinecraftSongs_8_widethumb.jpg","duration":225,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-rap-battle-enderman-vs-dirtblock","changefreq":"weekly","video":[{"title":"S1:E10 - Minecraft Rap Battle - \"Enderman VS Dirtblock\"","description":"We wanted to do a Minecraft rap battle but approached it in a unique way. Thus, we have an Enderman vs Dirtblock Rap Battle! Thank you to Dan Bull for his verses as the Dirt Block.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-rap-battle-enderman-vs-dirtblock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/205dfd9a-3dbd-4ae1-a264-3205f51951dc.jpg/sm/MinecraftSongs_10_widethumb.jpg","duration":190,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-villager-rap","changefreq":"weekly","video":[{"title":"S1:E11 - Minecraft Villager Rap","description":"The Minecraft villager is the purest form of a victim. We decided to honor these poor guys with a song. Thank you to Ready Up Live, Defmatch and Mimic Ghost for their verses.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-villager-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3e1a2a2-68a2-4764-a6ed-616da2057012.jpg/sm/MinecraftSongs_11_widethumb.jpg","duration":165,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-herobrine-rap","changefreq":"weekly","video":[{"title":"S1:E12 - Minecraft Herobrine Rap","description":"The legend of Herobrine is a spooky one. This song follows the mysterious ghost of Minecraft and his antics.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-herobrine-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a1090245-6f0e-454f-8852-4ded8a7d9684.jpg/sm/MinecraftSongs_12_widethumb.jpg","duration":241,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-rap-battle-herobrine-vs-griefer","changefreq":"weekly","video":[{"title":"S1:E13 - Minecraft Rap Battle - \"Herobrine vs Griefer\"","description":"Herobrine is omnipotent and scares people. The Griefer is a dick who ruins people's homes. Now they'll face off in a Rap Battle.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-rap-battle-herobrine-vs-griefer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c309fad3-4e85-4782-954e-51423008c4d0.jpg/sm/MinecraftSongs_13_widethumb.jpg","duration":254,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-the-sad-creeper-song-minecraft","changefreq":"weekly","video":[{"title":"S1:E15 - The Sad Creeper Song (Minecraft)","description":"Creepers are poorly misunderstood. They just want friends like everyone else.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-the-sad-creeper-song-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c6dddd0f-8cf2-49b2-8936-f5aca5ac9f8f.jpg/sm/MinecraftSongs_15_widethumb.jpg","duration":201,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-rap-five-long-nights","changefreq":"weekly","video":[{"title":"S1:E1 - Five Nights at Freddy's Rap - \"Five Long Nights\"","description":"A rap for the first Five Nights at Freddy's game.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-rap-five-long-nights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/663b5774-c681-44ce-8965-31c999faa70b.png/sm/Five_Nights_at_Freddys_Songs_1_widethumb.png","duration":187,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-3-rap-another-five-nights","changefreq":"weekly","video":[{"title":"S1:E3 - Five Nights at Freddy's 3 Rap - \"Another Five Nights\"","description":"A rap for the third Five Nights at Freddy's game.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-3-rap-another-five-nights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f4a67a1-6431-4145-a9d2-029d1c424006.png/sm/Five_Nights_at_Freddys_Songs_3_widethumb.png","duration":237,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-rap-battle-security-guard-vs-animatronics","changefreq":"weekly","video":[{"title":"S1:E4 - Five Nights At Freddy's Rap Battle (Security Guard vs Animatronics)","description":"The animatronics and Security Guard from FNAF decide to settlle their differences through a Rap Battle. Thank you to Zach Boucher for his verse","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-rap-battle-security-guard-vs-animatronics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/788ac903-8f08-4503-b4e6-97c0ed715f71.png/sm/Five_Nights_at_Freddys_Songs_4_widethumb.png","duration":267,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-mob-rap-part-v","changefreq":"weekly","video":[{"title":"S1:E14 - Minecraft Mob Rap Part V","description":"One of our most popular series follows all the Mobs from Minecraft. Here is the fifth installment! The next one will be the last.","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-mob-rap-part-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5172727e-e94f-48d4-b068-e664532e1217.jpg/sm/MinecraftSongs_14_widethumb.jpg","duration":296,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-2-rap-five-more-nights","changefreq":"weekly","video":[{"title":"S1:E2 - Five Nights at Freddy's 2 Rap - \"Five More Nights\"","description":"A rap for the second Five Nights at Freddy's game.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-2-rap-five-more-nights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6d37b545-b2ec-4362-817b-f4e22efbbf48.png/sm/Five_Nights_at_Freddys_Songs_2_widethumb.png","duration":233,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-4-rap-we-don-t-bite","changefreq":"weekly","video":[{"title":"S1:E5 - Five Nights at Freddy's 4 Rap - \"We Don't Bite\"","description":"A rap for the fourth Five Nights at Freddy's game.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-five-nights-at-freddy-s-4-rap-we-don-t-bite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d7ad9f88-76a2-42bf-b963-0c06923227f1.png/sm/Five_Nights_at_Freddys_Songs_5_widethumb.png","duration":208,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-fnaf-world-rap-join-the-party","changefreq":"weekly","video":[{"title":"S1:E7 - FNAF World Rap - \"Join the Party\"","description":"FNAF World was the worst game in the world to play. Fortunately this song is nowhere close to being the worst song in the world to hear.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-fnaf-world-rap-join-the-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c1918bd-8984-47dc-b988-ed6e89ada90d.png/sm/Five_Nights_at_Freddys_Songs_7_widethumb.png","duration":270,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-fnaf-sister-location-song-join-us-for-a-bite","changefreq":"weekly","video":[{"title":"S1:E8 - FNAF Sister Location Song - \"Join Us For A Bite\"","description":"The single most popular JTM song of all time. This song was the first song JTM has done that did not feature Skullkruncher13's voice primarily. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-fnaf-sister-location-song-join-us-for-a-bite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/418e571a-dac1-4c95-bde3-d87da6e2a7a9.png/sm/Five_Nights_at_Freddys_Songs_8_widethumb.png","duration":220,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-fnaf-sister-location-rap-you-belong-here","changefreq":"weekly","video":[{"title":"S1:E9 - FNAF Sister Location Rap - \"You Belong Here\"","description":"We did a song for FNAF Sister Location so we went to our roots with a rap for the game and that is what you have here.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-fnaf-sister-location-rap-you-belong-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/979c4009-b9c9-4c16-868d-7b1391e95ef1.png/sm/Five_Nights_at_Freddys_Songs_9_widethumb.png","duration":247,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-merry-fnaf-christmas-song","changefreq":"weekly","video":[{"title":"S1:E6 - Merry FNAF Christmas Song","description":"A Christmas themed FNAF Song.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-merry-fnaf-christmas-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/35b5b856-3b69-463a-a3a5-df0879c61b24.png/sm/Five_Nights_at_Freddys_Songs_6_widethumb.png","duration":160,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-the-bastion-song","changefreq":"weekly","video":[{"title":"S1:E4 - The Bastion Song","description":"This Bastion musical explores the light and dark side of Bastion. Which side do you like better?","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-the-bastion-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/221349cd-1dcc-4927-835d-cf0df5ebf2b7.png/sm/OverwatchSongs_4_widethumb.png","duration":256,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-the-joy-of-creation-song-and-fnaf-remix","changefreq":"weekly","video":[{"title":"S1:E10 - The Joy of Creation Song and FNAF Remix","description":"Scott Cawthon announced he was done with the FNAF franchise. We took this very popular FNAF Fan Game and used it for the backdrop of our last FNAF related project ever.","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-the-joy-of-creation-song-and-fnaf-remix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb3b8feb-59bd-4aef-94d3-80bc7ae100b5.png/sm/Five_Nights_at_Freddys_Songs_10_widethumb.png","duration":268,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-soldier-76-vs-reaper-rap-battle","changefreq":"weekly","video":[{"title":"S1:E5 - Soldier 76 vs Reaper Rap Battle","description":"Former brothers in arms with some big beef trade some verbal blows in this Overwatch Rap Battle.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-soldier-76-vs-reaper-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dfb226f2-9dd4-4af1-a9c2-7111d316bba1.png/sm/OverwatchSongs_5_widethumb.png","duration":271,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-overwatch-christmas-song-all-i-want-for-christmas-is-loot","changefreq":"weekly","video":[{"title":"S1:E6 - Overwatch Christmas Song - \"All I Want For Christmas is Loot\"","description":"A parody of Mariah Carey's Christmas classic focuses on Overwatch's loot boxes. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-overwatch-christmas-song-all-i-want-for-christmas-is-loot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f12943e-6082-474a-895b-5447a0007d7b.png/sm/OverwatchSongs_6_widethumb.png","duration":242,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-the-junkrat-and-roadhog-rap","changefreq":"weekly","video":[{"title":"S1:E7 - The Junkrat and Roadhog Rap","description":"There's many dynamic duos in Overwatch, but none quite like Junkrat and Roadhog. They are certainly one helluva pair.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-the-junkrat-and-roadhog-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9cce8fc9-697c-475d-871b-5d25b694c430.png/sm/OverwatchSongs_7_widethumb.png","duration":333,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-widowmaker-song","changefreq":"weekly","video":[{"title":"S1:E9 - Widowmaker Song","description":"Widowmaker is a character with some surprisingly deep and tragic backstory and we explore that in this song. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-widowmaker-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f1132b9-e82d-4aac-a15d-df4fd23f3791.png/sm/OverwatchSongs_9_widethumb.png","duration":267,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-mei-song-parody-it-s-gonna-be-mei","changefreq":"weekly","video":[{"title":"S1:E8 - Mei Song Parody - \"It's Gonna Be Mei\"","description":"Mei is a monster. That is all.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-mei-song-parody-it-s-gonna-be-mei","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f602ee92-f01a-42e5-b294-f8eb0459ffd6.png/sm/OverwatchSongs_8_widethumb.png","duration":191,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-snipe-off-bf3-vs-mw3-rap-battle","changefreq":"weekly","video":[{"title":"S1:E1 - \"Snipe Off\" - BF3 vs MW3 Rap Battle","description":"Battlefield and CoD are bitter rivals yet they play so differently. So the question at the core is, which play style is better? We attempt to answer that question focusing on each game's sniping gameplay. Thank you to Brysi for his verses.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-snipe-off-bf3-vs-mw3-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6c37fbef-eeac-4e15-837c-49ff65346798.png/sm/RapBattles_1_widethumb.png","duration":183,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-destiny-vs-call-of-duty-rap-battle","changefreq":"weekly","video":[{"title":"S1:E4 - Destiny vs Call of Duty Rap Battle","description":"Halo isn't the juggernaut it once was anymore and it's now Destiny that stands toe to toe with CoD. Thanks to Brysi for her verses.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-destiny-vs-call-of-duty-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7b3bcd04-82ac-4739-b146-9dad233bdabc.png/sm/RapBattles_4_widethumb.png","duration":196,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-gta-v-vs-saints-row-4-rap-battle","changefreq":"weekly","video":[{"title":"S1:E3 - GTA V vs Saints Row 4 Rap Battle","description":"Which open world game is better between Saints Row and GTA? We try to sort that out through a rap battle. Thank you to Teamheadkick for their verses","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-gta-v-vs-saints-row-4-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8209018c-ae31-439c-b027-e80ec4fb728e.png/sm/RapBattles_3_widethumb.png","duration":227,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-the-next-console-war-xbox-vs-playstation","changefreq":"weekly","video":[{"title":"S1:E2 - The Next Console War (Xbox vs Playstation)","description":"The 8th generation of consoles started off with some juicy drama and we choose to highlight all that with this song. So Xbox or Playstation?","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-the-next-console-war-xbox-vs-playstation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8a0cf53-1353-4613-88f2-f8075bdde590.png/sm/RapBattles_2_widethumb.png","duration":214,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-terraria-vs-minecraft-rap-battle","changefreq":"weekly","video":[{"title":"S1:E5 - Terraria vs Minecraft Rap Battle","description":"For a while Minecraft had no real competition in the genre, but then here came this little game to challenge it. Naturally a rap battle ensues. Thank you to VGRB for their verses.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-terraria-vs-minecraft-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb2fdd0a-52dc-4bef-b6e0-c150e059ca31.png/sm/RapBattles_5_widethumb.png","duration":169,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-slenderman-vs-freddy-fazbear-rap-battle","changefreq":"weekly","video":[{"title":"S1:E7 - Slenderman vs Freddy Fazbear Rap Battle","description":"The two biggest names in indie horror games face off in a rap battle for the ages. Freddy Fazbear vs Slenderman, let's do this!","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-slenderman-vs-freddy-fazbear-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5fb7f44a-1aee-4c77-96fc-a283b35b8252.png/sm/RapBattles_7_widethumb.png","duration":204,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-angry-birds-vs-clash-of-clans-rap-battle","changefreq":"weekly","video":[{"title":"S1:E6 - Angry Birds vs Clash of Clans Rap Battle","description":"These two games aren't in the same genre, but for a while they were the kings of mobile gaming. This rap battle honors their app store domination.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-angry-birds-vs-clash-of-clans-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea900ee2-c565-430c-bd54-07f7207b812d.png/sm/RapBattles_6_widethumb.png","duration":210,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-halo-5-vs-cod-black-ops-3-rap-battle","changefreq":"weekly","video":[{"title":"S1:E8 - Halo 5 vs CoD Black Ops 3 Rap Battle","description":"Black Ops 3 was so futuristic, we did a few double takes because it looked and felt so much like Halo. There has never been a better time to face these two games off. Thank you to VGRB for their verses.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-halo-5-vs-cod-black-ops-3-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4038dd8a-cabc-4dbd-9146-726a44f6a4cd.png/sm/RapBattles_8_widethumb.png","duration":209,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-mitosis-vs-agar-io-rap-battle","changefreq":"weekly","video":[{"title":"S1:E10 - Mitosis vs Agar.io Rap Battle","description":"Fun fact: we got scammed into making this rap battle match-up. Oh well, we ended up with an awesome collab with NemRaps from Nerdout.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-mitosis-vs-agar-io-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b5e8cb05-17a7-4421-9a2a-83fcf515bee0.png/sm/RapBattles_10_widethumb.png","duration":140,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-zelda-vs-peach-rap-battle","changefreq":"weekly","video":[{"title":"S1:E14 - Zelda vs Peach Rap Battle","description":"Which Nintendo princess reigns supreme? It's a blood bath in this rap battle and we'll let you be the judge. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-zelda-vs-peach-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79ead9dc-3766-4d48-87ab-e9d873aa95d6.png/sm/RapBattles_14_widethumb.png","duration":213,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-mercy-vs-medic-rap-battle","changefreq":"weekly","video":[{"title":"S1:E13 - Mercy vs Medic Rap Battle","description":"Another iconic TF2 vs Overwatch matchup pits together each game's most important support character. In the end, it doesn't matter who wins...you gotta show love to your healer. Thank you to Andrea Storm Kaden for her vocals","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-mercy-vs-medic-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c86e9e46-ba7c-4465-8254-0e87f8b583a6.png/sm/RapBattles_13_widethumb.png","duration":312,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-tracer-vs-scout-rap-battle","changefreq":"weekly","video":[{"title":"S1:E11 - Tracer vs Scout Rap Battle","description":"The two most charasmatic characters from two wildly popular games created this dynamic thrill ride of a rap battle. So who do you think is faster? Tracer? Scout? Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-tracer-vs-scout-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9e0551e-8447-48d8-ac39-4def99bf6197.png/sm/RapBattles_11_widethumb.png","duration":219,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-lara-croft-vs-nathan-drake-rap-battle","changefreq":"weekly","video":[{"title":"S1:E9 - Lara Croft vs Nathan Drake Rap Battle","description":"Two treasure hunters and adventurers fight a battle of words in this epic rap battle between Lara Croft and Nathan Drake. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-lara-croft-vs-nathan-drake-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0694ef40-fa01-4609-bc9b-d4ae7822855c.png/sm/RapBattles_9_widethumb.png","duration":183,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-doomguy-vs-master-chief-rap-battle","changefreq":"weekly","video":[{"title":"S1:E12 - Doomguy vs Master Chief Rap Battle","description":"The original space marine vs. the most iconic space marine. Who would you rather have fighting on your side? Master Chief or Doomguy? Thank you to THK for their verses.","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-doomguy-vs-master-chief-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4037fb74-bd31-41b9-9c38-43e896d2ca43.png/sm/RapBattles_12_widethumb.png","duration":239,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-pickle-rick-rap","changefreq":"weekly","video":[{"title":"2017:E27 - Pickle Rick Rap","description":"Pickle Rick can do anything a man can. And if he wants to Rap, then he can rap, k?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-pickle-rick-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/266a0533-39db-4ca2-abd8-0f2b74e918b1.png/sm/pick rick thumb.png","duration":119,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-the-evil-within-2-song-don-t-wake-me-up","changefreq":"weekly","video":[{"title":"2017:E26 - The Evil Within 2 Song - \"Don't Wake Me Up\"","description":"Can Sebastian find his daughter? I don't know, but he sings about trying to in this The Evil Within 2 Song!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-the-evil-within-2-song-don-t-wake-me-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82e42491-9146-48d7-8d45-25247847df53.png/sm/JT Music 2017_26_widethumb.png","duration":290,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-assassin-s-creed-origins-rap-i-m-the-creed","changefreq":"weekly","video":[{"title":"2017:E28 - Assassin's Creed Origins Rap - \"I'm The Creed\"","description":"Assassin's Creed is back and it's taking us to ancient Egypt!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-assassin-s-creed-origins-rap-i-m-the-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3412bc46-4833-4d9e-b6bf-fd780384e210.png/sm/ACO.png","duration":216,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-call-of-duty-ww2-rap-by-jt-music","changefreq":"weekly","video":[{"title":"2017:E29 - Call of Duty WW2 Rap - \"Boots on the Ground\"","description":"Finally! CoD is back to its roots and we love it. We take this song back to our roots too and pump it full of throwbacks from our past CoD Songs. Enjoy!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-call-of-duty-ww2-rap-by-jt-music","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7912f355-5afd-48dc-8b15-e373fc1440b8.png/sm/ww2 rt thumb.png","duration":296,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-wolfenstein-2-rap-terror-billy","changefreq":"weekly","video":[{"title":"2017:E30 - Wolfenstein 2 Rap - \"Terror Billy\"","description":"A rap no one should be offended by. Nazis are dicks.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-wolfenstein-2-rap-terror-billy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/245645bf-4e8c-4917-b0eb-618b8839fd01.png/sm/wolf 2 thumb.png","duration":260,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-star-wars-battlefront-2-rap-stomp-out-their-hope","changefreq":"weekly","video":[{"title":"2017:E31 - Star Wars Battlefront 2 Rap - \"Stomp Out Their Hope\"","description":"Dark side...light side...who do you fight for in Star Wars Battlefront 2?! We pit the dark and light against each other in this rap, enjoy!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-star-wars-battlefront-2-rap-stomp-out-their-hope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/91772a03-cc35-405b-b354-72c96f624282.png/sm/swbf2 thumb.png","duration":214,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-fnaf-sister-location-rap-live-you-belong-here","changefreq":"weekly","video":[{"title":"S1:E22 - FNAF Sister Location Rap Live - \"You Belong Here\"","description":"Here's our Sister Location Rap...but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-fnaf-sister-location-rap-live-you-belong-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5af66902-5613-4280-b102-ea8e5281d01b.png/sm/RT SL Rap Live.png","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-video-game-legends-rap-vol-3-indie-games-rap","changefreq":"weekly","video":[{"title":"2017:E32 - Video Game Legends Rap, Vol. 3 - \"Indie Games Rap\"","description":"Video Game Legends makes a return after a two year hiatus. A lot has happened since then, but the emergence of the indie game has been hard to miss. So we dedicated the next VGL to Indie Games!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-video-game-legends-rap-vol-3-indie-games-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a3c96483-f0c7-4235-94e1-63eaa33cdb62.png/sm/VGL 3.png","duration":337,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rap-battles-season-1-mei-vs-pyro-rap-battle","changefreq":"weekly","video":[{"title":"S1:E15 - Mei vs Pyro Rap Battle","description":"The two most insidious creatures in the world rap battle to decide who's the biggest nuisance. This rap battle between Mei and Pyro may just do the trick. What do you think?","player_loc":"https://roosterteeth.com/embed/rap-battles-season-1-mei-vs-pyro-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5da22f1f-0821-4759-8627-d6503bc7973c.png/sm/mei vs pyro.png","duration":195,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddy-s-songs-season-1-fnaf-6-song-now-hiring-at-freddy-s","changefreq":"weekly","video":[{"title":"S1:E11 - FNAF 6 Song - \"Now Hiring at Freddy's\"","description":"We caved and we made a FNAF 6 song! BUT it's different that what you'd expect. Enjoy our FNAF Pizzeria Ad Song!","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddy-s-songs-season-1-fnaf-6-song-now-hiring-at-freddy-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f785c94-d7c1-40da-97cf-a6e7782c6f5c.png/sm/fnaf6 thumb.png","duration":238,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-cuphead-rap-live","changefreq":"weekly","video":[{"title":"S1:E24 - Cuphead Rap Live","description":"Cuphead Rap...BUT LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-cuphead-rap-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5fd759bc-099c-45d7-a26f-4c78b45ba76d.png/sm/RT Cuphead Live.png","duration":226,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-rainbow-six-siege-rap-knock-knock","changefreq":"weekly","video":[{"title":"2017:E33 - Rainbow Six Siege Rap - \"Knock Knock\"","description":"You've been asking for this for years and we've finally came around to making a Rainbow Six Siege Rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-rainbow-six-siege-rap-knock-knock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b57525fd-03d3-451d-90c2-7313b5e58693.png/sm/rainbow 6 siege.png","duration":238,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-cuphead-rap-animated","changefreq":"weekly","video":[{"title":"2018:E3 - Cuphead Rap (Animated)","description":"Cuphead gets a new 3D look in this animated video of our Cuphead Rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-cuphead-rap-animated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3a7e8f1d-29d8-45b0-9146-392649d12b29.png/sm/RT Cuphead Animation Thumb.png","duration":226,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-overwatch-xmas-song-live-all-i-want-for-christmas-is-loot","changefreq":"weekly","video":[{"title":"S1:E23 - Overwatch Xmas Song LIVE - \"All I Want For Christmas is Loot\"","description":"Merry Christmas and Happy Holidays! Here's a gift from us to you!","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-overwatch-xmas-song-live-all-i-want-for-christmas-is-loot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ce2c9d0-df49-48a8-94b6-07948856b4ad.png/sm/xmas ow rt thumb.png","duration":242,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-fortnite-battle-royale-rap-battle-bus-boogie","changefreq":"weekly","video":[{"title":"2018:E1 - Fortnite Battle Royale Rap - \"Battle Bus Boogie\"","description":"Battle Royale is what the all the cool kids are playing these days. And you know what!? They're listening to this song too.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-fortnite-battle-royale-rap-battle-bus-boogie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/36b251b8-24e2-4b46-9ce0-7ae60b6d0f53.png/sm/fortnite thumb.png","duration":174,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-songs-season-1-minecraft-mob-rap-part-vi","changefreq":"weekly","video":[{"title":"S1:E16 - Minecraft Mob Rap Part VI","description":"This is it. The very last Minecraft Mob Rap. (Also, the last Minecraft thing we'll ever do.)","player_loc":"https://roosterteeth.com/embed/minecraft-songs-season-1-minecraft-mob-rap-part-vi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8fb22262-f5d1-48c7-9fd6-4e6146d07937.png/sm/Mob Rap RT Thumb.png","duration":341,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-fact-rap-challenge","changefreq":"weekly","video":[{"title":"2018:E2 - Fact Rap Challenge","description":"We wanted to do something different this weekend and so here you have this Fact Rap Challenge!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-fact-rap-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee4ec440-31b1-4e7a-86e2-bbe52176b54c.png/sm/Fact Rap Challenge RT Thumb.png","duration":173,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-behind-the-scenes-jt-music-behind-the-scenes-fnaf-6-music-video-behind-the-scenes","changefreq":"weekly","video":[{"title":"S1:E1 - FNAF 6 Music Video - Behind the Scenes","description":"Watch and see how this FNAF 6 music video was made.","player_loc":"https://roosterteeth.com/embed/jt-music-behind-the-scenes-jt-music-behind-the-scenes-fnaf-6-music-video-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e209dc2d-62dd-46cd-b7a0-05a991f140cb.png/sm/btsfnafrt.png","duration":1002,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2018-fnaf-6-song-now-hiring-at-freddy-s-live-action-music-vid","changefreq":"weekly","video":[{"title":"2018:E4 - FNAF 6 Song - \"Now Hiring at Freddy's\" (Live Action Music Vid)","description":"Phil has hit rock bottom. When things seem bleakest an opportunity at Freddy Fazbear's Pizzeria presents itself that is too good to pass up...but did he really have a choice?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2018-fnaf-6-song-now-hiring-at-freddy-s-live-action-music-vid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2ccdfb3c-004d-4438-86b6-4d630f9ea9c7.png/sm/FNAFThumb.png","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-halo-4-rap-live-the-reclaimer","changefreq":"weekly","video":[{"title":"S1:E1 - Halo 4 Rap Live - \"The Reclaimer\"","description":"Here is our Halo 4 Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-halo-4-rap-live-the-reclaimer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/36ae0e4d-ca19-4aa3-a26e-2ae29fea4ae4.png/sm/JT Music Raps Live_1_widethumb.png","duration":280,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-rap-halo-3-rimz","changefreq":"weekly","video":[{"title":"S1:E2 - Halo 3 Rap - \"Halo 3 Rimz\"","description":"Halo did so much for the FPS genre and it really tied vehicles in seamlessly. Thus, here is our rap in ode to Halo 3 vehicles!","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-rap-halo-3-rimz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7a12fe3d-2297-4911-926f-6de6a5e704eb.jpg/sm/Halo_Songs_2_widethumb.jpg","duration":159,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-song-parody-i-bagged-a-noob","changefreq":"weekly","video":[{"title":"S1:E3 - Halo 3 Song Parody - \"I Bagged a Noob\"","description":"There's really no reason why this video should have ever been made. But we did. We mixed Halo 3 with Katy Perry.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-song-parody-i-bagged-a-noob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/10aa58f7-97bd-4cfb-b69f-62f9cef03e99.jpg/sm/Halo_Songs_3_widethumb.jpg","duration":126,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-rap-the-greatest-ever","changefreq":"weekly","video":[{"title":"S1:E1 - Halo 3 Rap - \"The Greatest Ever\"","description":"The first JT Music video ever. Some would say it's the greatest ever? You decide...enjoy this Halo 3 Rap!","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-rap-the-greatest-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ec24520-a183-4df6-b682-1bc581caa129.png/sm/Halo_Songs_1_widethumb.png","duration":253,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-song-noobz-4-life","changefreq":"weekly","video":[{"title":"S1:E4 - Halo 3 Song - \"Noobz 4 Life\"","description":"Our first recurring character and series of songs follows a whimsical Halo 3 Noob and his discovery of a video game.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-song-noobz-4-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4641b831-5436-43f7-930c-42aa9c4fb9a3.jpg/sm/Halo_Songs_4_widethumb.jpg","duration":175,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-rap-this-is-jt-machinima","changefreq":"weekly","video":[{"title":"S1:E5 - Halo 3 Rap - \"This is JT Machinima\"","description":"Our response video to a Halo diss track. Yeah that's right, those happened all those years ago too. Some things never change.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-rap-this-is-jt-machinima","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5b31077-6526-4a5e-9188-fa468254808d.jpg/sm/Halo_Songs_5_widethumb.jpg","duration":184,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-rap-the-dynasty","changefreq":"weekly","video":[{"title":"S1:E7 - Halo 3 Rap - \"The Dynasty\"","description":"\"The Dynasty\" is a song about a particular made up Halo clan, but it's meant to represent all clans from Halo 3.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-rap-the-dynasty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/caf986cc-2c84-4a36-b5a8-bd6141a622c0.jpg/sm/Halo_Songs_7_widethumb.jpg","duration":167,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-song-parody-camper-s-paradise","changefreq":"weekly","video":[{"title":"S1:E6 - Halo 3 Song Parody - \"Camper's Paradise\"","description":"A parody of Coolio's \"Gangsters Paradise\". While still being a parody, we aimed to keep it faithful to the original song and music video. You be the judge.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-song-parody-camper-s-paradise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8ef74ba-e35b-446c-a0b2-69f21225457b.jpg/sm/Halo_Songs_6_widethumb.jpg","duration":235,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-song-oh-hayabusa","changefreq":"weekly","video":[{"title":"S1:E8 - Halo 3 Song - \"Oh, Hayabusa!\"","description":"Hayabusa armor caused all sorts of fuss when people started acquiring it. We took our Halo 3 noob character and threw him into that situation.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-song-oh-hayabusa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02fd8b9a-54de-4118-bf3a-9f59b46498e5.jpg/sm/Halo_Songs_8_widethumb.jpg","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-song-i-wanna-bone-you-on-xbox-live","changefreq":"weekly","video":[{"title":"S1:E10 - Halo 3 Song - \"I Wanna Bone You On Xbox Live\"","description":"When a girl makes herself known in a game lobby things get weird. That's pretty much what happens with this goofy Halo 3 song.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-song-i-wanna-bone-you-on-xbox-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5ee8ae66-3d87-4366-8283-8f00e422f7f4.jpg/sm/Halo_Songs_10_widethumb.jpg","duration":228,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-odst-rap","changefreq":"weekly","video":[{"title":"S1:E9 - Halo ODST Rap","description":"Ever feel like you missed out on the story of Halo ODST or need a refresher? Watch this music video and you'll be all good.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-odst-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/da301604-30ab-4969-8ae9-e4b71e5a27ba.jpg/sm/Halo_Songs_9_widethumb.jpg","duration":210,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-reach-song-ode-2-noobs","changefreq":"weekly","video":[{"title":"S1:E12 - Halo Reach Song - \"Ode 2 Noobs\"","description":"Our Halo 3 noob graduates to Halo Reach and brings some friends along in this Halo Reach song.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-reach-song-ode-2-noobs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/345245b7-75fb-474a-9759-60c37ac1d1de.jpg/sm/Halo_Songs_12_widethumb.jpg","duration":199,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-reach-rap-the-greatest-ever-2","changefreq":"weekly","video":[{"title":"S1:E11 - Halo Reach Rap - \"The Greatest Ever 2\"","description":"A \"sequel\" to the first music video we ever made, The Greatest Ever (duh). This time obviously with Halo Reach instead.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-reach-rap-the-greatest-ever-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bad6733a-2555-49fa-aa4c-cdac3b494e4b.jpg/sm/Halo_Songs_11_widethumb.jpg","duration":272,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-4-rap-the-reclaimer","changefreq":"weekly","video":[{"title":"S1:E15 - Halo 4 Rap - \"The Reclaimer\"","description":"With \"The Reclaimer\" we put the brakes on all the Halo Raps and decided to start doing one nerdcore anthem per new Halo release. We like this path better.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-4-rap-the-reclaimer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a2f88738-7d96-46ff-bde2-4c78e2d04c1c.jpg/sm/Halo_Songs_15_widethumb.jpg","duration":256,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-reach-song-parody-straight-outta-bloodgulch","changefreq":"weekly","video":[{"title":"S1:E13 - Halo Reach Song Parody - \"Straight Outta Bloodgulch\"","description":"A parody of NWA's \"Straight Outta Compton\" based on Halo Reach.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-reach-song-parody-straight-outta-bloodgulch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea234f61-0485-4fdf-9e1d-f1f9eeec2960.jpg/sm/Halo_Songs_13_widethumb.jpg","duration":132,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-reach-song-teabag-hound","changefreq":"weekly","video":[{"title":"S1:E14 - Halo Reach Song - \"Teabag Hound\"","description":"The Halo Noob returns for the last time and celebrates teabagging because why not.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-reach-song-teabag-hound","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e33f8630-103c-4e9c-a255-71e4908da9aa.jpg/sm/Halo_Songs_14_widethumb.jpg","duration":202,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-4-rap-revisited-the-reclaimer","changefreq":"weekly","video":[{"title":"S1:E17 - Halo 4 Rap Revisited - \"The Reclaimer\"","description":"This is the same exact thing as \"The Reclaimer\" but with female vocals for the chorus. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-4-rap-revisited-the-reclaimer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/914ce34a-cc9d-46fa-9a7d-0dac963c1666.jpg/sm/Halo_Songs_17_widethumb.jpg","duration":255,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-3-rap-the-greatest-ever-remake","changefreq":"weekly","video":[{"title":"S1:E16 - Halo 3 Rap - \"The Greatest Ever\" Remake","description":"We remade our very first video, The Greatest Ever, five years later and the change in production quality is a fun comparison.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-3-rap-the-greatest-ever-remake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c88b273d-2adb-41bd-9820-9e2c492d7cb6.jpg/sm/Halo_Songs_16_widethumb.jpg","duration":244,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-5-rap-angel-by-your-side","changefreq":"weekly","video":[{"title":"S1:E19 - Halo 5 Rap - \"Angel by Your Side\"","description":"What's the most compelling thing about Halo? Master Chief and Cortana, right? This song explores that relationship and more. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-5-rap-angel-by-your-side","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4c27dc2e-3dd4-4783-8083-932fc674d8f1.jpg/sm/Halo_Songs_19_widethumb.jpg","duration":311,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-halo-master-chief-collection-rap-back-in-the-ring","changefreq":"weekly","video":[{"title":"S1:E18 - Halo Master Chief Collection Rap - \"Back in the Ring\"","description":"A rap with all the Halo games to date was just as much of a blast making as it was playing all those games throughout the years. If only the online worked from the get go for The Master Chief Collection.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-halo-master-chief-collection-rap-back-in-the-ring","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0815c65-fcbd-48dd-aaed-8f6c41307331.jpg/sm/Halo_Songs_18_widethumb.jpg","duration":242,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-songs-season-1-master-chief-vs-locke-rap-battle","changefreq":"weekly","video":[{"title":"S1:E20 - Master Chief vs Locke Rap Battle","description":"The Chief vs Locke thing fell a bit flat in the actual game so we decided to make up for what Halo 5's story lacked with this rap battle. Thank you to THK for their verses and mastering expertise.","player_loc":"https://roosterteeth.com/embed/halo-songs-season-1-master-chief-vs-locke-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8f150c55-b6ab-40e5-b1e2-ea19c81511af.jpg/sm/Halo_Songs_20_widethumb.jpg","duration":184,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-call-of-duty-world-at-war-rap","changefreq":"weekly","video":[{"title":"2009:E1 - Call of Duty World at War Rap","description":"The first JT Music CoD rap which set up many of the musical themes and motifs you'll see in subsequent CoD Songs! This is the video that really kicked us off way back in '09!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-call-of-duty-world-at-war-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/81bbf7bd-081f-41c0-8eed-5040747c8942.png/sm/JTMusic2009_1_widethumb.png","duration":271,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-gta-iv-rap-straight-outta-russia","changefreq":"weekly","video":[{"title":"2009:E2 - GTA IV Rap - \"Straight Outta Russia\"","description":"This GTA IV Rap was actually the first video we made with the \"JTM\" moniker. This video ranks highly as one of our most cringeworthy work.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-gta-iv-rap-straight-outta-russia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/60ab6268-3bad-4cee-beff-e39046ba1632.png/sm/JTMusic2009_2_widethumb.png","duration":207,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-left-4-dead-rap-zombie-soup","changefreq":"weekly","video":[{"title":"2009:E3 - Left 4 Dead Rap - \"Zombie Soup\"","description":"Remember Left 4 Dead? That game needs to come back. Anyways here's our Left 4 Dead Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-left-4-dead-rap-zombie-soup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ef50fa45-76f7-465d-b5a9-1e44c951fd16.png/sm/JTMusic2009_3_widethumb.png","duration":153,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2010-god-of-war-rap","changefreq":"weekly","video":[{"title":"2010:E1 - God of War Rap","description":"One of the few Playstation games we decided to do a song for. Enjoy this God of War Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2010-god-of-war-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b5e97358-0dba-42a2-928b-46f76bc8ae19.png/sm/JTMusic2010_1_widethumb.png","duration":189,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-labo-makes-cardboard-fun-48","changefreq":"weekly","video":[{"title":"S1:E48 - Labo Makes Cardboard Fun? - #48","description":"Download the audio version at https://bit.ly/2Fn9VIG . Ashley, Gus, and Adam as they build a Nintendo Labo fishing game (24:45) and speedrun all the Nintendo news (51:40).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-labo-makes-cardboard-fun-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8ce43a44-976b-4f4e-b4e6-91deb00df4a9.jpg/sm/gp48thumb.jpg","duration":5750,"publication_date":"2018-04-27T18:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-nintendo-quarterly-report","changefreq":"weekly","video":[{"title":"2018:E113 - Nintendo Needs to Sell 20 MILLION Switches! Here's How","description":"Nintendo had a great year with the launch of Nintendo Switch, but they need to do EVEN BETTER the next year to meet their goals. We have some ideas how they'll make that happen.","player_loc":"https://roosterteeth.com/embed/game-news-2018-nintendo-quarterly-report","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b0de38cd-5482-4ebc-92b8-a7144610d796.jpg/sm/2018042620millionswitches.jpg","duration":645,"publication_date":"2018-04-27T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-infinity-war-review","changefreq":"weekly","video":[{"title":"2018:E13 - Avengers: Infinity War... Should You Watch? Wait? Skip?","description":"Avengers: Infinity War is almost here! Should you go see it? Here's as much as we can say without spoiling a single detail in exactly 12 minutes!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-infinity-war-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f7afd747-38f5-4329-83b6-c127ad3a818c.jpg/sm/20180425avengersiwreview.jpg","duration":721,"publication_date":"2018-04-26T04:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-unfixable-switch-hardware-exploit","changefreq":"weekly","video":[{"title":"2018:E112 - Nintendo Switch Exploit UNFIXABLE","description":"Nintendo Switch has been hacked! Homebrew enthusiasts discovered a hardware exploit that jailbreaks the Nintendo Switch, which raises concerns for piracy and online cheating.","player_loc":"https://roosterteeth.com/embed/game-news-2018-unfixable-switch-hardware-exploit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3315f28a-9967-4ebf-a405-4fdbfea8f019.jpg/sm/20180425switchexploit.jpg","duration":535,"publication_date":"2018-04-26T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-cinemacon-diary-1","changefreq":"weekly","video":[{"title":"2018:E7 - Cinemacon Diary #1","description":"Eric Vespe's on-site at CinemaCon, checking out upcoming movies and getting sneak peeks at stuff like Venom. Here's everything he saw the first day!","player_loc":"https://roosterteeth.com/embed/specials-2018-cinemacon-diary-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f835ddc-db65-401b-955c-a1210ff57837.jpg/sm/20180425cinemacondiary1.jpg","duration":444,"publication_date":"2018-04-25T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-round-up-04252018","changefreq":"weekly","video":[{"title":"2018:E83 - Official HALO for PC? + Another Country Outlaws Loot Boxes","description":"Microsoft is taking action against an online Halo fan project... but teases potential OFFICIAL Halo for PC. Another country has ruled that loot boxes are gambling and must either be removed from games or regulated. Looks like the crypto mining run on PC graphics cards are over! Shipments are dropping and prices are set to come back down.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-round-up-04252018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/085ab3b1-feb8-46e2-9cf0-825b94ad1ef4.jpg/sm/20180425roundup.jpg","duration":569,"publication_date":"2018-04-25T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-xbox-sued-by-game-devs","changefreq":"weekly","video":[{"title":"2018:E111 - Xbox SUED By Game Developers","description":"Xbox is facing a lawsuit over patent violations from a video game developer.","player_loc":"https://roosterteeth.com/embed/game-news-2018-xbox-sued-by-game-devs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15bf4549-efda-467f-a885-5bd46bb16448.jpg/sm/20180424xboxlawsuit.jpg","duration":391,"publication_date":"2018-04-25T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180424-roundup","changefreq":"weekly","video":[{"title":"2018:E82 - Next Xbox WHEN? + YouTubers Fix Destiny 2 + Layoffs at The Sims","description":"2018:E82 - Next Xbox WHEN? + YouTubers Fix Destiny 2 + Layoffs at The Sims","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180424-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/49de49ea-f1c1-4f89-8b70-99be5a11441b.jpg/sm/20180424roundup.jpg","duration":595,"publication_date":"2018-04-24T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-cyberpunk-2077-coming-sooner-than-expected","changefreq":"weekly","video":[{"title":"2018:E110 - Cyberpunk 2077 is an FPS!? And It's Coming SOON?","description":"A new leak suggests Cyberpunk 2077 could be an FPS game. And rumors suggest it could be coming sooner rather than later!","player_loc":"https://roosterteeth.com/embed/game-news-2018-cyberpunk-2077-coming-sooner-than-expected","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/930a30b7-e53a-48a9-be57-060c2bb64ccc.jpg/sm/20180423cyberpunkfps.jpg","duration":439,"publication_date":"2018-04-24T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180423-roundup","changefreq":"weekly","video":[{"title":"2018:E81 - Valve's New Game Studio + Final Fantasy VII NOT Just a Remake?","description":"Valve's acquired an indie game studio. Final Fantasy VII Remake wants to be way more than a remake. The Witcher series director speaks on how long the Witcher Netflix series will be and when we might see it.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180423-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e6386cb-392d-4d47-802d-2d19282ba4c4.jpg/sm/20180423roundup.jpg","duration":546,"publication_date":"2018-04-23T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-we-got-skills-47","changefreq":"weekly","video":[{"title":"S1:E47 - We Got Skills - #47","description":"Is there a game that taught you an actual life skill? And what was the worst online experience you had to date and how were you able to handle it?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-we-got-skills-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6e1dd43a-6a2b-4f24-859b-24cb788e60b5.jpg/sm/gp47psthumb.jpg","duration":1053,"publication_date":"2018-04-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-youtuber-jailed-for-idiot-prank","changefreq":"weekly","video":[{"title":"2018:E16 - YouTuber Facing Jail Over Prank Video","description":"A YouTube content creator is facing jail over a prank video.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-youtuber-jailed-for-idiot-prank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6992c271-863a-4466-a1f6-6e682f8f8202.jpg/sm/20180420ytprankjail.jpg","duration":408,"publication_date":"2018-04-21T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180420-roundup","changefreq":"weekly","video":[{"title":"2018:E80 - Pokemon Ultra Shiny + Black Ops 4 Copying Overwatch? + Valve Loses Lawsuit","description":"2018:E80 - Pokemon Ultra Shiny + Black Ops 4 Copying Overwatch? + Valve Loses Lawsuit","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180420-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f64fb43-260c-4ccd-b01c-f8af9d79377f.jpg/sm/20180420.jpg","duration":441,"publication_date":"2018-04-20T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-boy-of-war-47","changefreq":"weekly","video":[{"title":"S1:E47 - Boy Of War - #47","description":"Join Ashley, Gus, and Adam as they learn how to be fathers in God Of War (15:02) and speedrun the news (35:27). This episode is brought to you by Beach Body (Text \"Glitch\" to 303030).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-boy-of-war-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/926c9a6f-d768-4b4b-a96d-60990fea8f2b.jpg/sm/gp47thumb.jpg","duration":3605,"publication_date":"2018-04-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180418-roundup","changefreq":"weekly","video":[{"title":"2018:E78 - More PS5 News + Wave Race for Switch + YouTube Ignores Small Creators","description":"2018:E78 - More PS5 News + Wave Race for Switch + YouTube Ignores Small Creators","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180418-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/479c4793-8e41-4e44-b2de-26c0b76c3542.jpg/sm/20180418.jpg","duration":500,"publication_date":"2018-04-18T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-nintendo-patents-new-hardware","changefreq":"weekly","video":[{"title":"2018:E106 - Nintendo Patents New Hardware!","description":"Nintendo put out the Switch a year ago, but they're not resting. They've already patented some new hardware that could potentially replace the 3DS.","player_loc":"https://roosterteeth.com/embed/game-news-2018-nintendo-patents-new-hardware","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e64b8e3-36c5-40a1-a7a7-7f950656161b.jpg/sm/20180417nintendohardware.jpg","duration":443,"publication_date":"2018-04-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180417-news","changefreq":"weekly","video":[{"title":"2018:E77 - BioWare Promises Anthem Won't Suck + Using SpyWare to Catch Cheaters?","description":"BioWare promises they've learned from Mass Effect Andromeda and won't repeat those mistakes with Anthem. Guild Wars 2's developers have been accused of using spyware to catch cheaters. Fortnite is NOT shutting down, despite a recent rumor claiming that to be the case.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180417-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/acc70652-c66c-4b92-8cac-d27f4091bfea.jpg/sm/20180417roundup.jpg","duration":641,"publication_date":"2018-04-17T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-bethesda-new-ip-this-year","changefreq":"weekly","video":[{"title":"2018:E105 - Bethesda's STARFIELD Game Coming THIS YEAR?","description":"Bethesda's rumored to be working on a space-themed game called Starfield, and it might be hitting this year! Here's what we know, and what we want.","player_loc":"https://roosterteeth.com/embed/game-news-2018-bethesda-new-ip-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38587be7-dbd7-4b82-b12b-62f5c8ec93c2.jpg/sm/20180416starfieldroundtable.jpg","duration":1018,"publication_date":"2018-04-17T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180415-roundup","changefreq":"weekly","video":[{"title":"2018:E76 - New BioShock Game?! + Watch Dogs 3 Teaser","description":"Looks like 2K may have one of their studios working on a new BioShock game. Ubisoft appears to be teasing a new Watch Dogs game. Shenmue 1 and 2 are confirmed to be getting new releases across console and PC.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180415-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5892a07f-bbb7-47bd-b0ab-9a23ed0ab2be.jpg/sm/20180416roundup.jpg","duration":523,"publication_date":"2018-04-16T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-conker-deserves-better-46","changefreq":"weekly","video":[{"title":"S1:E46 - Conker Deserves Better - #46","description":"What is the sequel that got you to go back and play the earlier games in a franchise? and what is the worst sequel to a game?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-conker-deserves-better-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f70c465b-19de-4bef-b63a-6bb656fcf386.jpg/sm/gp46psthumb.jpg","duration":1603,"publication_date":"2018-04-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ea-shakeup-vows-to-be-better","changefreq":"weekly","video":[{"title":"2018:E104 - EA is GOOD Now!?","description":"EA has had a rough year of game cancellations, poor receptions, studio closures, and loot box controversies. But that's all in the past. The company's shuffling its executive team and promising to do better.","player_loc":"https://roosterteeth.com/embed/game-news-2018-ea-shakeup-vows-to-be-better","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b16d1f73-27f5-4214-9bad-31bb0fe5ddd3.jpg/sm/20180413eagoodnow.jpg","duration":393,"publication_date":"2018-04-14T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180413-roundup","changefreq":"weekly","video":[{"title":"2018:E75 - Backward Compatibility Key for Xbox + Nintendo Wants New Hardware","description":"Xbox boss Phil Spencer's recommitted to backwards compatibility for Xbox platforms. Nintendo's on the hunt for new hardware to complement their Switch. Millions of people are deleting Facebook accounts over privacy concerns.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180413-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e51225d2-6b76-4e7d-8f61-a1816808ec79.jpg/sm/20180413roundup.jpg","duration":656,"publication_date":"2018-04-13T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-yakuza-s-baby-mechanics-46","changefreq":"weekly","video":[{"title":"S1:E46 - Hold This Baby, I'm Going In! - #46","description":"Download the audio version at http://bit.ly/2ETsKmI. Join Ashley, Adam, and Chad as they discuss Yakuza 6 (45:50) and speedrun the news (59:15)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-yakuza-s-baby-mechanics-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b1476f4-dc68-4735-a248-e3a0ff43c3e6.jpg/sm/gp46thumb.jpg","duration":5408,"publication_date":"2018-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-god-of-war-is-it-good","changefreq":"weekly","video":[{"title":"2018:E103 - God of War: Is It Good?","description":"God of War drops next week, but the reviews drop THIS week! So we can finally answer the big question with any game: IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/game-news-2018-god-of-war-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6666941a-409c-42f0-b9df-1b3119c2592e.jpg/sm/20180412godofwariig.jpg","duration":599,"publication_date":"2018-04-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180412-roundup","changefreq":"weekly","video":[{"title":"2018:E74 - Hacker FIXES Nintendo Switch Save Backups + Rampage Worth Watching?","description":"A hacker has found a way to back up save games for Nintendo Switch. Reviews are here for the video-game-turned-movie Rampage. King of Kong star, Billy Mitchell, has had his high scores disqualified for cheating.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180412-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa1aa71a-55dd-4ff0-8d7e-0bfa7d1ff5ba.jpg/sm/20180412roundup.jpg","duration":372,"publication_date":"2018-04-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180411","changefreq":"weekly","video":[{"title":"2018:E73 - How Long Until PS5? + GTA IV Removing Music","description":"Recent rumors speculated the PS5 could land this year, but don't get your hopes up. GTA IV is removing some music from the game, so beware patches! The FTC is laying the smackdown on companies using warranty stickers to try to stop consumers from fixing hardware themselves.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/76553933-e308-4e3a-8492-efe4eba21843.jpg/sm/20180411roundup.jpg","duration":652,"publication_date":"2018-04-11T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-yakuza-review","changefreq":"weekly","video":[{"title":"2018:E101 - Yakuza 6: Play? Wait? Skip?","description":"We played through Yakuza 6 to issue our verdicts on what we think of the game and how we'd choose if we had to do it over again.\r\nDISCLOSURE: SEGA provided pre-release copies of the game for us to play.","player_loc":"https://roosterteeth.com/embed/game-news-2018-yakuza-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/05807f39-c7be-4674-a7b3-16b71984c658.jpg/sm/20180410yakuza6.jpg","duration":1826,"publication_date":"2018-04-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180410-roundup","changefreq":"weekly","video":[{"title":"2018:E72 - Kingdom Hearts 3 WHEN? + PlayerUnknown's Battlegrounds RANSOMWARE","description":"A retailer may be accidentally offering a glimpse of when Kingdom Hearts 3 will finally release. New ransomware holds your PC hostage unless you play PlayerUnknown's Battlegrounds. The Korean government has handed out nearly $1 million in fines against deceptive loot box marketing.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180410-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2de8af4d-1f30-4a59-96ef-1d14798b918d.jpg/sm/20180410roundup.jpg","duration":568,"publication_date":"2018-04-11T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-youtube-spying-on-kids","changefreq":"weekly","video":[{"title":"2018:E15 - YouTube Accused of Illegal Monitoring","description":"YouTube's in hot water over accusations the company has been monitoring the activities of kids.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-youtube-spying-on-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/93072b77-356e-46b2-9412-e2be6cfd0df8.jpg/sm/20180410ytspy.jpg","duration":352,"publication_date":"2018-04-10T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-round-up-04092018","changefreq":"weekly","video":[{"title":"2018:E71 - God of War Progression Revealed + PUBG Clones SUING Clones","description":"Ahead of reviews, Sony's revealed how God of War's progression and armor customization will work. PUBG Corp is suing PlayerUnknown's Battlegrounds clones... and now those clones are suing their own clones! Former BioWare boss Aaron Flynn defends EA.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-round-up-04092018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/682bd1a9-cb55-48d2-8d90-19b7de7fe914.jpg/sm/20180409roundup.jpg","duration":542,"publication_date":"2018-04-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-vertical-horses-couldn-t-drag-me-away-45","changefreq":"weekly","video":[{"title":"S1:E45 - Vertical Horses Couldn't Drag Me Away - #45","description":"What game-breaking glitch that you personally encountered in a video game do you think would actually be great to experience in real life? What is the best mount or vehicle in a video game?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-vertical-horses-couldn-t-drag-me-away-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7cff9b6-999e-4ec1-a8f2-2d7f73ec6874.jpg/sm/GP45psTHUMB.jpg","duration":432,"publication_date":"2018-04-07T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180406-roundup","changefreq":"weekly","video":[{"title":"2018:E70 - Sea of Thieves Fixed? + Splinter Cell Teased? + Lawbreakers OVER","description":"Sea of Thieves is trying to address player concerns, Far Cry 5 has sold millions, A Way Out's creator is already working on his next project, Fortnite mobile is banking, Ubisoft seems to be spinning up those Splinter Cell teases, Boss Key admits Lawbreakers flopped, and all kinds of fun stuff in the Friday round-up. Come get your news.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180406-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9c4a3cce-cfd5-4b47-9a55-a874295d9835.jpg/sm/20180406thmb.jpg","duration":449,"publication_date":"2018-04-07T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-pubg-lawsuit","changefreq":"weekly","video":[{"title":"2018:E99 - PUBG Suing Copycats!","description":"PUBG's creator hasn't had too many nice things to say about copycats -- and now it looks like the company is suing some mobile games that yanked their idea.","player_loc":"https://roosterteeth.com/embed/game-news-2018-pubg-lawsuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4deb9334-f70b-4a54-8fd6-96afb36afe98.jpg/sm/ThumbnailTemplate.jpg","duration":329,"publication_date":"2018-04-06T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-a-way-out-in-a-minit-45","changefreq":"weekly","video":[{"title":"S1:E45 - A Way Out in a Minit - #45","description":"Download the audio version at http://bit.ly/2IyI4Y6. Join Ben, Adam, and Mica as they talk about Minit (24:43), escape from prison in A Way Out (32:43), and speedrun the news (45:32). This episode is brought to you by MeUndies (MeUndies.com/Glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-a-way-out-in-a-minit-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3b857ab-07f8-4601-b4e0-c5b06fa98072.jpg/sm/GP45THUMB.jpg","duration":3612,"publication_date":"2018-04-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-roundtable-spyro-remaster-is-real-what-s-next","changefreq":"weekly","video":[{"title":"2018:E98 - Spyro Reignited Trilogy Announced! What Remasters Are Next?","description":"The worst kept industry secret is out, the Spyro Reignited Trilogy is coming! So we sit down and discuss what game remasters we think are next!","player_loc":"https://roosterteeth.com/embed/game-news-2018-roundtable-spyro-remaster-is-real-what-s-next","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff1897ba-b615-41f1-88ae-7c6ba2d5a191.jpg/sm/ThumbnailTemplate.jpg","duration":1173,"publication_date":"2018-04-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180405-roundup","changefreq":"weekly","video":[{"title":"2018:E69 - The Division Battle Royale? + God of War Responds to Critics + Stranger Things Lawsuit","description":"Microsoft's rumored to have a bunch of huge exclusive marketing deals, EA called Battlefront II a slot machine, The Division's devs are apparently working on Battle Royale, God of War's director responds to critics of the new game, Overwatch's new event finally has some details, Infinity War is on pace for a ridiculous opening, and Stranger Things is the subject of a new lawsuit!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180405-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/11c13483-9dcb-408a-a5d7-0705a69344ac.jpg/sm/20180405roundup.jpg","duration":427,"publication_date":"2018-04-06T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-youtube-shooter","changefreq":"weekly","video":[{"title":"2018:E14 - YouTube HQ Attacked by Disgruntled Content Creator","description":"YouTube headquarters in San Bruno, CA was attacked by an armed gunwoman, who appears to have had a vendetta against the company over restrictions placed on videos she uploaded to the platform.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-youtube-shooter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/602da3d9-246b-4b2f-88da-035233647728.jpg/sm/20180404YTAttack.jpg","duration":263,"publication_date":"2018-04-05T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180404-roundup","changefreq":"weekly","video":[{"title":"2018:E68 - Spider-man PS4 Date & Details + Kojima Involved in MGS Movie?","description":"We've got release date and a ton of game details for Spider-man PS4. Kojima's met with the director for the Metal Gear Solid movie. A post-mortem on the game that made $0.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180404-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/936cec70-1c32-4d0b-8f14-f40c3a8a3f0c.jpg/sm/20180404Roundup.jpg","duration":530,"publication_date":"2018-04-05T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ps5-coming-this-year","changefreq":"weekly","video":[{"title":"2018:E97 - PlayStation 5 THIS YEAR? Plus First Hardware Leaks","description":"A new source claims it's got the first hardware details for PlayStation 5, and it might be releasing this year! We dig into it.","player_loc":"https://roosterteeth.com/embed/game-news-2018-ps5-coming-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/66e91529-e62f-4727-ae4c-266e7743fc60.jpg/sm/20180404PS5Leaks.jpg","duration":919,"publication_date":"2018-04-05T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180402-roundup","changefreq":"weekly","video":[{"title":"2018:E66 - Pokemon Go Owes Fest Fans $$$ + We Survived a Space Station Crash","description":"Pokemon Go Fest is paying out to compensate fans who came to the event and were disappointed. A Chinese space station has crashed into Earth... and we all survived it! Great job, everyone! There's a new law against SWATting after a death last year.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180402-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e960cc7-c7a3-469a-922e-f8ec99b4297c.jpg/sm/20180402Roundup.jpg","duration":598,"publication_date":"2018-04-03T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-twitch-layoffs","changefreq":"weekly","video":[{"title":"2018:E13 - Layoffs at Twitch","description":"Twitch has been hit with dozens of layoffs, losing some of its most senior employees. Layoffs aren't usually a good sign for a company that's already been acquired, so what's happening here?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-twitch-layoffs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a6cd7e98-a251-4e6a-82fe-126463aee907.jpg/sm/20180402TwitchLayoffs.jpg","duration":438,"publication_date":"2018-04-03T04:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-best-game-pets-44","changefreq":"weekly","video":[{"title":"S1:E44 - Best Game Pets - #44","description":"What is the best pet in video games? And you’ve become a video game boss and have to design your own dungeon/tower/castle. What challenges, minions or traps to you implement to kill your pesky hero rival?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-best-game-pets-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/162263ef-e72c-4a27-b4ed-a76e7590ae77.jpg/sm/GP44psTHUMB.jpg","duration":900,"publication_date":"2018-03-31T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180330-roundup","changefreq":"weekly","video":[{"title":"2018:E65 - Donkey Kong 3 Teased + Lindsay Lohan LOSES to GTA","description":"Nintendo Italy is teasing what might be a brand new Donkey Kong game. Lindsay Lohan has lost an appeal in her lawsuit against Rockstar over claims they stole her likeness for GTA. Rumors have been flying that Meryl Streep will take on the role of Leia in Star Wars, but they're bunk.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180330-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/367b99c9-4093-45ef-b239-ff7eb4a99e06.jpg/sm/20180330Roundup.jpg","duration":649,"publication_date":"2018-03-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-big-case-against-predatory-microtransactions","changefreq":"weekly","video":[{"title":"2018:E96 - Court Lays Down The Law on Microtransaction Gambling","description":"A court has weighed in on a case involving microtransactions that could set a precedent for whether they're considered gambling.","player_loc":"https://roosterteeth.com/embed/game-news-2018-big-case-against-predatory-microtransactions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d5dd14c4-6dc5-4e8b-ad14-d5c6ea47793f.jpg/sm/20180330MicrotransactionsInCourt.jpg","duration":452,"publication_date":"2018-03-31T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-sea-of-thieves-players-pissed-again","changefreq":"weekly","video":[{"title":"2018:E95 - Sea of Thieves Players REBEL Over First Legend","description":"Sea of Thieves has its first pirate legend! Unfortunately, fans of the game aren't happy with how the player got there.","player_loc":"https://roosterteeth.com/embed/game-news-2018-sea-of-thieves-players-pissed-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5079ec62-4708-40eb-b082-fc2fc976370c.jpg/sm/20180330NotMyPirateLegend.jpg","duration":445,"publication_date":"2018-03-31T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-far-cry-5-the-michael-bay-fiesta-of-games-44","changefreq":"weekly","video":[{"title":"S1:E44 - Far Cry 5: The Michael Bay Fiesta of Games - #44","description":"Download the audio version at http://bit.ly/2Gpv7mC. Join Ashley, Adam, and Sam Mitchell as they take a trip through Far Cry 5 (31:14) and speedrun the news (1:02:00).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-far-cry-5-the-michael-bay-fiesta-of-games-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5270f6a-0ab1-4087-a64a-34623a3459f8.jpg/sm/GP44THUMB.jpg","duration":5520,"publication_date":"2018-03-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180329-roundup","changefreq":"weekly","video":[{"title":"2018:E64 - Sea of Thieves Hacked + No Man's Sky Returns","description":"PC players are hacking Sea of Thieves and causing misery for Xbox players. No Man's Sky is BACK and it's coming to Xbox. Spider-man PS4 details are promised soon.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180329-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8638f355-bd5c-4a0a-941a-4f8808630245.jpg/sm/20180329Roundup.jpg","duration":386,"publication_date":"2018-03-30T04:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-beware-of-third-party-switch-docs","changefreq":"weekly","video":[{"title":"2018:E93 - Nintendo Switches Bricked! Nintendo Responds","description":"After a new firmware update, Nintendo Switches using third-party docks are getting bricked. After a rash of incidents, Nintendo has responded to the issue.","player_loc":"https://roosterteeth.com/embed/game-news-2018-beware-of-third-party-switch-docs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a4865c7b-c428-4899-bd5b-b7e19ce8e5e1.jpg/sm/20180328NintendoSwitchesBricked.jpg","duration":407,"publication_date":"2018-03-30T04:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180313-rondup","changefreq":"weekly","video":[{"title":"2018:E51 - Splinter Cell RETURNS? + DOTA 2's Pay 2 Win Problem","description":"Splinter Cell may make a big comeback this year. DOTA 2 rolls out a new subscription program and now fans are worried about paid-for advantages int he game. Deadpool test screenings are reportedly TERRIBLE... or are they?","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180313-rondup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a76a9fe-62c9-41e0-b103-fd848f28f9ce.jpg/sm/20180313Roundup.jpg","duration":466,"publication_date":"2018-03-30T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-jurassic-world-evolution-gameplay-and-impressions","changefreq":"weekly","video":[{"title":"2018:E94 - Jurassic World Evolution Gameplay and Impressions","description":"Eddy visited Frontier Developments to play Jurassic World Evolution and bring back exclusive gameplay and details about the game. Josh and Chris were there too, apparently, but no one knows how they got in.","player_loc":"https://roosterteeth.com/embed/game-news-2018-jurassic-world-evolution-gameplay-and-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/369883ba-5af9-46d0-bd85-ceeb198c3cd2.jpg/sm/20180329JurassicWorldGameplay.jpg","duration":2328,"publication_date":"2018-03-30T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-should-you-watch-the-director-and-the-jedi","changefreq":"weekly","video":[{"title":"2018:E12 - Should you watch The Director and The Jedi?","description":"The Director and the Jedi is a documentary that covers the making of Star Wars: The Last Jedi, and is included on the blu-ray. We checked it out at SXSW and have thoughts about whether it's worth a watch.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-should-you-watch-the-director-and-the-jedi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3805ae0b-c23b-414d-ad40-b6be81e895a4.jpg/sm/20180328TheDirectorAndTheJedi.jpg","duration":668,"publication_date":"2018-03-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-round-up-03272018","changefreq":"weekly","video":[{"title":"2018:E62 - Halo 6 in VR? + Carmen Sandiego's New Movie","description":"Microsoft is working on a VR component for Halo... maybe for Halo 6? Carmen Sandiego's getting a new live action movie. A Fortnite stream on YouTube set a new record with 1 million viewers... but there's a catch.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-round-up-03272018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8a66aa6c-5070-4221-b5d5-94ce4657e78e.jpg/sm/20180327Roundup.jpg","duration":561,"publication_date":"2018-03-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-broken-lizard-talks-super-troopers-2","changefreq":"weekly","video":[{"title":"2018:E6 - Broken Lizard Talks Super Troopers 2","description":"Eric sits down with the Broken Lizard cast to talk about the upcoming Super Troopers 2, crowdfunding, and more!","player_loc":"https://roosterteeth.com/embed/specials-2018-broken-lizard-talks-super-troopers-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cbcc4e20-e8a5-4ce0-bc7a-80b381d53e98.jpg/sm/20180327SuperTroopers2Interview.jpg","duration":1113,"publication_date":"2018-03-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-xbox-censoring-players-why","changefreq":"weekly","video":[{"title":"2018:E92 - Xbox CENSORING Players! Why?","description":"Xbox has announced they'll be cracking down on offensive language by issuing bans from their services. Sounds pretty extreme, but there may be a big legal reason they have to...","player_loc":"https://roosterteeth.com/embed/game-news-2018-xbox-censoring-players-why","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b446f2d-bf59-4bed-9c1a-0731fa8d4ccb.jpg/sm/20180327XboxBansBadWords.jpg","duration":537,"publication_date":"2018-03-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-would-we-play-wait-skip-far-cry-5","changefreq":"weekly","video":[{"title":"2018:E91 - Would We Play/Wait/Skip FAR CRY 5?","description":"We got early copies of Far Cry 5 and played through, so we're talking about what we like and dislike about the game, and weighing how much we'd be willing to pay for it.","player_loc":"https://roosterteeth.com/embed/game-news-2018-would-we-play-wait-skip-far-cry-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/22e24cc8-280e-4cf8-b234-21d4b57612ef.jpg/sm/20180327FarCry5Review.jpg","duration":1943,"publication_date":"2018-03-27T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180326-roundup","changefreq":"weekly","video":[{"title":"2018:E61 - EA's NEW Star Wars Game + GTA Online Unfair Bans?","description":"EA's got a new Star Wars game in the works... or, at least newish. GTA Online's going through a ban spree, but may have caught innocent players as well. YouTube admits it doesn't send channel video notifications out to everyone who subscribed to get them.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180326-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/97236950-739d-4e69-8482-3e349cabf9b2.jpg/sm/20180325Roundup.jpg","duration":450,"publication_date":"2018-03-27T01:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180323-roundup","changefreq":"weekly","video":[{"title":"2018:E60 - Nintendo's Secret \"Eclair City\" + PlayStation Guilty of False Advertising","description":"Nintendo's got a secret project codenamed \"Eclair City.\" PlayStation's been dinged over false advertising for Gran Turismo Sport. A Street Fighter TV series is in the works","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180323-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27e38d02-685a-4356-8dc0-0369062cc9b4.jpg/sm/20180323Roundup.jpg","duration":590,"publication_date":"2018-03-26T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-cronch-the-banana-43","changefreq":"weekly","video":[{"title":"S1:E43 - Cronch The Banana - #43","description":"What was the first videogame that you bought with personal money that you earned from a job? What video game food are you hungry to try? And a SECRET QUESTION!","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-cronch-the-banana-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aea3cb46-30d8-40f0-943f-03969e4538f4.jpg/sm/GP43psTHUMB.jpg","duration":900,"publication_date":"2018-03-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-tips-and-tricks-for-ni-no-kuni-2","changefreq":"weekly","video":[{"title":"2018:E90 - 11 Quick Tips for NI NO KUNI 2 from the Total Pros","description":"We've already put in our fair share of hours on Ni No Kuni 2, and we've got some tips for new players so you don't have to learn everything the hard way","player_loc":"https://roosterteeth.com/embed/game-news-2018-tips-and-tricks-for-ni-no-kuni-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3362cb35-7980-49e4-a6c2-6f980e67f55e.jpg/sm/20180323NiNoKuni2Tips.jpg","duration":548,"publication_date":"2018-03-23T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-c-minus-of-thieves-43","changefreq":"weekly","video":[{"title":"S1:E43 - C Minus Of Thieves - #43","description":"Join Ashley, Adam, and Chad James as they discuss what they've been playing, walk the plank with Burnie into Sea of Thieves (24:00), and speedrun the news (57:00)! This episode is brought to you by BeachBody on Demand. Get free trial membership when you text GLITCH to 303030.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-c-minus-of-thieves-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d564c8a7-bd97-4597-8b29-9fe191f78229.jpg/sm/GP43THUMB.jpg","duration":4958,"publication_date":"2018-03-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180322-roundup","changefreq":"weekly","video":[{"title":"2018:E59 - A Way Out Worth Playing? + Tomb Raider Remasters Cancelled","description":"A Way Out reviews are here. Those Tomb Raider remasters have been cancelled... because it turns out they weren't even official. John Boyega wants to make an Attack on Titan movie.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180322-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d961771e-94cf-493c-b66c-981dd5aa7f5b.jpg/sm/20180322Roundup.jpg","duration":517,"publication_date":"2018-03-23T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-should-you-watch-isle-of-dogs","changefreq":"weekly","video":[{"title":"2018:E11 - Should You See/Wait/Skip Isle of Dogs?","description":"Isle of Dogs is the new movie from Wes Anderson, in which a boy sets off to find his dog after all dogs are exiled to an island. We caught the SXSW screening and here's what we think of it.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-should-you-watch-isle-of-dogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/35af3180-4411-4369-b734-6db8f3ce268d.jpg/sm/20180322IsleOfDogs.jpg","duration":817,"publication_date":"2018-03-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-should-you-watch-pacific-rim-uprising","changefreq":"weekly","video":[{"title":"2018:E10 - Should You Watch/Wait/Skip PACIFIC RIM: UPRISING?","description":"Pacific Rim: Uprising hits theaters Friday. Is it worth seeing? Eric and Jon caught an early screening and have... thoughts","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-should-you-watch-pacific-rim-uprising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f4fd31a7-8d45-48dc-8b15-65c57adf8da8.jpg/sm/20180321PacificRim2.jpg","duration":857,"publication_date":"2018-03-22T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-round-up-03212018","changefreq":"weekly","video":[{"title":"2018:E58 - Banjo-Kazooie for Smash Bros? + Justice League Worst DC Earner","description":"Xbox boss Phil Spencer's given the thumbs up for Banjo-Kazooie in Smash Bros... if Nintendo wants it. Justice League is officially DC's worst performing movie. Fortnite has taken over Pornhub thanks to that Drake stream","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-round-up-03212018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bbd96d4-f033-4162-9272-22db80cdab72.jpg/sm/20180321Roundup.jpg","duration":601,"publication_date":"2018-03-22T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-sea-of-thieves-disaster","changefreq":"weekly","video":[{"title":"2018:E87 - Why Does Everyone HATE Sea of Thieves?","description":"Sea of Thieves is having a rough start--from technical issues, which are common for online games but still troublesome, to concerns that there's just not enough meat to the game","player_loc":"https://roosterteeth.com/embed/game-news-2018-sea-of-thieves-disaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/336cd573-e537-446d-b4c2-f226e8f44ca5.jpg/sm/20180321SeaOfThievesv2.jpg","duration":691,"publication_date":"2018-03-21T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180320-roundup","changefreq":"weekly","video":[{"title":"2018:E57 - NEW Nintendo Switch Hardware + Ubisoft Safe from Vivendi FOREVER","description":"Looks like Nintendo's upgrading some of the Switch's hardware. Vivendi's takeover attempt of Ubisoft is officially over. Dan Harmon explains why there's no more Rick & Morty yet.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180320-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/44282563-0c52-497b-8044-f33ae964abe3.jpg/sm/20180320Roundup.jpg","duration":691,"publication_date":"2018-03-21T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ni-no-kuni-2-revenant-kingdom-review","changefreq":"weekly","video":[{"title":"2018:E86 - Would We Buy/Wait/Skip Ni No Kuni II: Revenant Kingdom?","description":"Ni No Kuni II: Revenant Kingdom is out this Friday! We got some early copies and have played through the game. Let's talk through our experiences with the game to weigh its strengths and weaknesses.","player_loc":"https://roosterteeth.com/embed/game-news-2018-ni-no-kuni-2-revenant-kingdom-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc116273-2bad-4a29-b04a-82df97634ef1.jpg/sm/20180320NiNoKuni2Review.jpg","duration":1931,"publication_date":"2018-03-21T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-minecraft-bomb-hoax-hundreds-of-evacuated-schools","changefreq":"weekly","video":[{"title":"2018:E85 - Bomb Threats Over Minecraft Shut Down Schools","description":"After an apparent player dispute in Minecraft, a disgruntled player sent bomb threats to more than 400 schools, resulting in evacuations and closures across the UK","player_loc":"https://roosterteeth.com/embed/game-news-2018-minecraft-bomb-hoax-hundreds-of-evacuated-schools","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8a59d7a-23db-4fed-9837-62a9a43bd8e8.jpg/sm/20180320MinecraftBombThreats.jpg","duration":391,"publication_date":"2018-03-20T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180319-roundu","changefreq":"weekly","video":[{"title":"2018:E56 - Assassin's Creed Goes to Greece? + Fortnite Biggest Game EVER? + RIP Keyboard Cat","description":"Happy news-filled Monday, everybody! We've got Assassin's Creed 2019 rumors, lots of new God of War footage, a new game announcement from former Hitman and Division developers, the first reviews of Ni No Kuni II: Revenant Kingdom, Fortnite is becoming the biggest game ever, Epic gave away $12 million dollars worth of game assets, Infinity War is smashing Black Panther's records already, and even more to start off the week.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180319-roundu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/63dca7f5-9257-482c-ada9-2b7feaf29962.jpg/sm/20180319.jpg","duration":518,"publication_date":"2018-03-20T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-new-bethesda-game-this-year","changefreq":"weekly","video":[{"title":"2018:E84 - New Bethesda Game SOON?","description":"Bethesda's got a couple of buns in the oven -- and one of them might be ready sooner than you think. Executive producer Todd Howard appeared on a recent podcast and shed just a little bit more light on the company's future plans, with some tiny teases about both new projects. Could one of them be revealed at E3?","player_loc":"https://roosterteeth.com/embed/game-news-2018-new-bethesda-game-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/25ba3d4b-122e-4bbd-bb43-1a021846e9a1.jpg/sm/ThumbnailTemplate.jpg","duration":322,"publication_date":"2018-03-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-sea-of-thieves-tips","changefreq":"weekly","video":[{"title":"2018:E83 - 8 Quick Tips Before You Play Sea of Thieves!","description":"Sea of Thieves, the multiplayer pirate combat game, releases Tuesday for Xbox One and PC. Here are some tips to help you kick off your swashbuckling career.","player_loc":"https://roosterteeth.com/embed/game-news-2018-sea-of-thieves-tips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cd3bb575-f3c2-45d6-b0c6-21fedaf8ebf1.jpg/sm/ThumbnailTemplate.jpg","duration":364,"publication_date":"2018-03-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-stop-before-you-say-goodbye-42","changefreq":"weekly","video":[{"title":"S1:E42 - Stop Before You Say Goodbye - #42","description":"Many feel bad about chasing down injured monsters fleeing for survival in Monster Hunter World. What other games made you feel bad about winning? Also, what is the greatest amount of time you've put into a game that you haven't finished?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-stop-before-you-say-goodbye-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4fe86b16-b572-4919-bb44-6dd34564f294.jpg/sm/GP42psTHUMB.jpg","duration":780,"publication_date":"2018-03-17T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180316-roundup","changefreq":"weekly","video":[{"title":"2018:E55 - Obsession Over Luigi's Bulge + Far Cry 5 Does Microtransactions","description":"There's a new internet sensation and it's... Luigi's package. Far Cry 5 is embracing microtransactions. A StarCraft pro has been arrested over match fixing.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180316-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/297020f4-777b-4f13-9296-09472cd4e4fc.jpg/sm/20180316Roundup.jpg","duration":493,"publication_date":"2018-03-17T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-should-you-watch-tomb-raider","changefreq":"weekly","video":[{"title":"2018:E9 - Should You Watch Tomb Raider?","description":"The new Tomb Raider hits theaters today! We checked it out and have thoughts, so if you're trying to decide whether you want to watch it, maybe this will help.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-should-you-watch-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b7e89629-5694-459b-9ddb-8bc3be6866fb.jpg/sm/20180316TombRaiderReview.jpg","duration":1016,"publication_date":"2018-03-17T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-the-vr-fad-is-over-42","changefreq":"weekly","video":[{"title":"S1:E42 - The VR Fad is Over - #42","description":"Join Ashley, Adam, and part-time employee Gus Sorola as they talk about what they've been playing, speedrun the news (19:38), and take a look at the current state of VR (37:00).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-the-vr-fad-is-over-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1953fb6d-0d9d-412b-a587-2594be936606.jpg/sm/GP42THUMB.jpg","duration":3425,"publication_date":"2018-03-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-a-quiet-place-roundtable-review","changefreq":"weekly","video":[{"title":"2018:E8 - Should You Watch A QUIET PLACE?","description":"A Quiet Place is the new horror film from The Office's John Krasinski, co-starring Emily Blunt. We checked it out at SXSW and have thoughts on whether it's worth seeing.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-a-quiet-place-roundtable-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f4573cd9-14a2-48c9-b3a6-eb7b4800caf2.jpg/sm/20180315AQuietPlaceReview.jpg","duration":804,"publication_date":"2018-03-16T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180314","changefreq":"weekly","video":[{"title":"2018:E54 - The Witcher Joins Soul Calibur + Proof Space Changes Your DNA","description":"The Witcher's Geralt is officially joining Soul Calibur VI. After one spent time in space, two twins' DNA no longer matches. We've officially reached peak Fortnite after Drake joined popular streamer Ninja to set a new record.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bbfef29-b6d0-4552-972f-9515ee8d56ed.jpg/sm/20180315Roundup.jpg","duration":448,"publication_date":"2018-03-16T04:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-microsoft-abandoning-exclusives","changefreq":"weekly","video":[{"title":"2018:E81 - No More Xbox Exclusives?","description":"Xbox is looking at a more platform-agnostic approach to video games. Does that mean they're abandoning their Xbox hardware and giving up? Nope.","player_loc":"https://roosterteeth.com/embed/game-news-2018-microsoft-abandoning-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71aaf019-e2ee-4e36-9395-59d61464526a.jpg/sm/20180315XboxOverExclusives.jpg","duration":487,"publication_date":"2018-03-16T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-kirby-star-allies-is-it-good","changefreq":"weekly","video":[{"title":"2018:E80 - Kirby Star Allies ... IS IT GOOD?","description":"Kirby Star Allies drops Friday for Nintendo Switch and the reviews are hitting now. How does it stack up? Let's break it down.","player_loc":"https://roosterteeth.com/embed/game-news-2018-kirby-star-allies-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/32a9b83d-4107-44fa-8835-0775c0dcf5e4.jpg/sm/201803014KirbyStarAlliesIsItGood.jpg","duration":467,"publication_date":"2018-03-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-ready-player-one-minicast","changefreq":"weekly","video":[{"title":"2018:E7 - Ready Player One Minicast","description":"We saw the world premiere of Ready Player One and we're sitting down to talk about it so you can decide if you want to see it! Expect some discussion of the premise based on the books but otherwise we try to keep it spoiler-free.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-ready-player-one-minicast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f472a39e-a549-468e-a99b-92cf113b738f.jpg/sm/20180313RPOReview.jpg","duration":1367,"publication_date":"2018-03-14T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-fallout-3-mod-shut-down","changefreq":"weekly","video":[{"title":"2018:E79 - Fallout 3 Revival Project SHUT DOWN","description":"A popular mod to rebuild Fallout 3 in Fallout 4 has been shut down over legal concerns after meeting with Bethesda.","player_loc":"https://roosterteeth.com/embed/game-news-2018-fallout-3-mod-shut-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b908605-3162-47d7-89d5-ca2e393be81f.jpg/sm/20180313Fallout3RevivalProjectCancelled.jpg","duration":395,"publication_date":"2018-03-14T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-fornite-hacked","changefreq":"weekly","video":[{"title":"2018:E78 - Fortnite Players Getting HACKED","description":"Fortnite players are reporting huge charges they didn't make! Beware of hackers and phishing scams.","player_loc":"https://roosterteeth.com/embed/game-news-2018-fornite-hacked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b050b9df-d78e-4353-9bfd-054dfecb0648.jpg/sm/20180313FortniteHacked.jpg","duration":421,"publication_date":"2018-03-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180312-roundup","changefreq":"weekly","video":[{"title":"2018:E50 - State of Decay 2 Microtransaction-Free + Fortnite Blames PlayStation","description":"State of Decay 2 confirms it's not using microtransactions to make up the difference in the price of the game. Microsoft and Epic both blame PlayStation for keeping crossplay locked off between the two big consoles. Sea of Thieves is holding a $100K easter egg hunt.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180312-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f79403f2-f35f-4946-a416-331cc0e8e0c6.jpg/sm/20180312Roundup.jpg","duration":608,"publication_date":"2018-03-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ff7-remake-needs-better-quality","changefreq":"weekly","video":[{"title":"2018:E77 - Final Fantasy 7 Remake in Trouble?","description":"New job listings indicate the Final Fantasy 7 Remake isn't just a short wait... it's barely in development.","player_loc":"https://roosterteeth.com/embed/game-news-2018-ff7-remake-needs-better-quality","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/29044449-0ec0-40e2-aeea-9db309ebcaa0.jpg/sm/20180312FF7InTrouble.jpg","duration":499,"publication_date":"2018-03-12T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-let-s-make-a-labo","changefreq":"weekly","video":[{"title":"S1:E41 - Let's Make a Labo","description":"What would be your ultimate Nintendo Labo creation and how would you use it in a game?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-let-s-make-a-labo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5bd9875-8ae5-422d-93cd-425457b02fad.jpg/sm/GP41psTHUMB.jpg","duration":938,"publication_date":"2018-03-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-03092018","changefreq":"weekly","video":[{"title":"2018:E49 - Super Smash Bros THIS YEAR + Game Mods on Xbox One","description":"Nintendo's bringing Smash Bros to Nintendo Switch in 2018. Xbox is hiring a position to get support for game mods on Xbox. The White House has issued a statement on its stance about violence in video games.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-03092018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f78081c1-f7ea-4c50-a7cf-aa3d95be2649.jpg/sm/20180309Roundup.jpg","duration":720,"publication_date":"2018-03-09T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-bait-and-switch-41","changefreq":"weekly","video":[{"title":"S1:E41 - Bait and Switch - #41","description":"Join Ashley, Ryan, Mica, and Alfredo as they speedrun the news (32:48) and look back on the first year of the Nintendo Switch (1:04:55).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-bait-and-switch-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fdc9f61f-d495-4d35-81b4-ed54c122ac20.jpg/sm/GP41THUMB.jpg","duration":5400,"publication_date":"2018-03-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-trump-holds-panel-on-video-games-gun-violence","changefreq":"weekly","video":[{"title":"2018:E74 - Video Games Get TRUMPED ON","description":"The US government is looking to violent video games and has called the ESA to a panel.","player_loc":"https://roosterteeth.com/embed/game-news-2018-trump-holds-panel-on-video-games-gun-violence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c873feb-b39c-4490-a209-d6c75f4af181.jpg/sm/20180308TrumpVsGames.jpg","duration":423,"publication_date":"2018-03-09T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-call-of-duty-black-ops-4-confirmed","changefreq":"weekly","video":[{"title":"2018:E73 - Call of Duty: Black Ops 4 REVEALED! What You Need to Know","description":"It's official! The new Call of Duty is Black Ops 4. Here's what you need to know about it.","player_loc":"https://roosterteeth.com/embed/game-news-2018-call-of-duty-black-ops-4-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b12d34fa-0fd3-4ba5-a99a-c0b698daf533.jpg/sm/20180308CODBO4Details.jpg","duration":315,"publication_date":"2018-03-09T03:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180308-roundup","changefreq":"weekly","video":[{"title":"2018:E48 - Banned on PlayStation + Every Oculus Rift Bricked","description":"A pick-up artist's seduction simulation game is blocked from being released on Playstation. Every Oculus Rift got disabled... fortunately, just temporarily. Marvel director Jon Favreau is tackling a live action Star Wars TV series.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180308-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/80dd29f7-44db-4d2b-8ad5-6728436e29dd.jpg/sm/20180308Roundup.jpg","duration":524,"publication_date":"2018-03-09T03:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180306","changefreq":"weekly","video":[{"title":"2018:E47 - State of Decay 2 Half Price! + Mark Hamill in The Witcher?","description":"State of Decay 2's got a release date and a surprising price point. Mark Hamill could end up in The Witcher TV series (we can dream, at least). Ubisoft is working on AI to save QA costs on games.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180306","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71bb5587-8473-480e-a010-d6e41e7d1086.jpg/sm/20180307Roundup.jpg","duration":584,"publication_date":"2018-03-08T05:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-another-patent-lawsuit","changefreq":"weekly","video":[{"title":"2018:E71 - Patent Trolls Fighting Microtransactions","description":"Maybe this is the darkest timeline. One of tech's greatest villains, patent trolls, is going after one of gaming's biggest villains: microtransactions.","player_loc":"https://roosterteeth.com/embed/game-news-2018-another-patent-lawsuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ef7fde9a-0d33-4d90-b8cf-6c5902da6a68.jpg/sm/20180307PatentTrolls.jpg","duration":348,"publication_date":"2018-03-08T05:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-switch-could-beat-xbox-one-already","changefreq":"weekly","video":[{"title":"2018:E72 - Nintendo Switch Beating Xbox One Already?","description":"Surprise! Nintendo Switch has been doing really well since it launched a year ago. So well, in fact, it could already be overtaking Xbox One's lifetime hardware sales.","player_loc":"https://roosterteeth.com/embed/game-news-2018-switch-could-beat-xbox-one-already","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e569ed4b-85c0-4be8-9dcb-883b86efadd9.jpg/sm/20180307SwitchvsXbox.jpg","duration":409,"publication_date":"2018-03-08T05:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ubisoft-cracking-down-on-rainbow-six-chat","changefreq":"weekly","video":[{"title":"2018:E70 - Rainbow Six Siege Censoring Players!?","description":"Your troll days are numbered. Ubisoft's cracking down on hate speech in Rainbow Six Siege.","player_loc":"https://roosterteeth.com/embed/game-news-2018-ubisoft-cracking-down-on-rainbow-six-chat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0ad736ae-0984-4140-a601-455792781778.jpg/sm/20180306R6SCensorship.jpg","duration":473,"publication_date":"2018-03-07T06:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-more-battlefield-v-leaks","changefreq":"weekly","video":[{"title":"2018:E69 - Battlefield V New Details Leak!","description":"Looks like Battlefield V is going to take heavy inspiration from Battlefield 1's storytelling and features.","player_loc":"https://roosterteeth.com/embed/game-news-2018-more-battlefield-v-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a9324db2-e97b-45f5-b7b8-a3767860459a.jpg/sm/20180306BFVNewDetails.jpg","duration":272,"publication_date":"2018-03-07T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180306-roundup","changefreq":"weekly","video":[{"title":"2018:E46 - COD Black Ops 4 at GameStop + Far Cry 5 Surprise Prequel","description":"Merchandise for Call of Duty Black Ops 4 has been spotted in GameStop's systems. Far Cry 5 dropped a surprise prequel on Amazon Prime. The state of Washington is protecting net neutrality at the state level.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180306-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f31ea377-1e64-4296-99f7-bf294057be2a.jpg/sm/20180306Roundup.jpg","duration":596,"publication_date":"2018-03-07T05:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-pubg-devs-helping-cheaters","changefreq":"weekly","video":[{"title":"2018:E68 - Battlegrounds Dev Helping CHEATERS!?","description":"A developer on PlayerUnknown's Battlegrounds was accused of helping cheaters and now the studio's involved.","player_loc":"https://roosterteeth.com/embed/game-news-2018-pubg-devs-helping-cheaters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7b458da-0c79-4cd8-921d-780ee80d1845.jpg/sm/20180305PUBGDevCheater.jpg","duration":349,"publication_date":"2018-03-06T05:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180305-roundup","changefreq":"weekly","video":[{"title":"2018:E45 - Fortnite Scrutiny + Final Fantasy XV PC Cracked + Twitch Crackdown","description":"Fortnite's under weird mainstream scrutiny over addiction. Final Fantasy XV isn't even out for PC yet but it's been cracked. Twitch is rolling out its new community guidelines.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180305-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a64a742-8bc8-48ae-b81c-2e1e62303407.jpg/sm/20180305Roundup.jpg","duration":585,"publication_date":"2018-03-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-sneak-peek-at-grand-theft-auto-6","changefreq":"weekly","video":[{"title":"2018:E67 - REPORT: Grand Theft Auto VI Location Details!","description":"GTA V came out almost 5 years ago, but still not a whisper of the next game. Lucky for us, an inside source has some details about where it takes place and when it might come out.","player_loc":"https://roosterteeth.com/embed/game-news-2018-sneak-peek-at-grand-theft-auto-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4969d938-e10d-4ac8-92a7-c8e6ba217655.jpg/sm/20180305GTA6.jpg","duration":461,"publication_date":"2018-03-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-let-s-get-portable-40","changefreq":"weekly","video":[{"title":"S1:E40 - Let's Get Portable - #40","description":"What are the best and worst handhelds other than the Switch? Also, what game has the best character creator?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-let-s-get-portable-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/48110b18-879b-4dd9-b79d-36e40f1f2f3e.jpg/sm/GP40psTHUMB.jpg","duration":686,"publication_date":"2018-03-03T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-heidi","changefreq":"weekly","video":[{"title":"S1:E7 - Heidi","description":"Wait. Hold up. They made a whole movie that's shot like all the footage was just sort of \"found\" by somebody? And in a horror movie to boot? Somebody better call the dictionary, because this dried out pile of dogshit just redefined the word \"film\". \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-heidi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/907b835d-9320-451f-a087-c7e8388ef389.jpg/sm/fhtm07heidi.jpg","duration":5684,"publication_date":"2018-04-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-googletech","changefreq":"weekly","video":[{"title":"2018:E91 - FACEBOOK VS RUSSIA - Google Trends Show","description":"Thanks to Mack Weldon for sponsoring this episode. Get 20% off using promo code: Trends at http://mackweldon.com\r\nThanks to Hims for sponsoring this episode. Get a trial month for just $5 at http://forhims.com/google\r\n\r\nI'm only telling the following story because nobody got seriously hurt or dead: The other day, Jon Smith donned a collectible football helmet and stepped onto a hoverboard for the first time. His knees vibrated for about five seconds before he fell backwards onto his head, kicking the board out from under him so fast that it flew across the room, knocking over all of Lawrence's anime girl dolls. It was the funniest thing I've ever seen. Thank you.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus\r\n\r\nBruce's Side Effect Corner:\r\nhttps://www.rxlist.com/propecia-side-effects-drug-center.htm\r\nhttps://www.rxlist.com/viagra-side-effects-drug-center.htm","player_loc":"https://roosterteeth.com/embed/gameplay-2018-googletech","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b9be37b-db25-4bc3-b73b-bafc65b4bcfa.png/sm/googtech.png","duration":1997,"publication_date":"2018-04-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-nintendo-labo-4-20-weedplay","changefreq":"weekly","video":[{"title":"2018:E26 - Nintendo Labo 4/20 Weedplay","description":"SHAKE 'N BAKE, LOVELIES. The dankest of livestreams has been reborn for your viewing pleasure.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-nintendo-labo-4-20-weedplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/388c8602-a6dc-476b-af86-f20a5c00a8ae.jpg/sm/fullhausweeeed.jpg","duration":9052,"publication_date":"2018-04-27T01:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-filthyhands","changefreq":"weekly","video":[{"title":"2018:E88 - WET BANDITS - Filthy Hands Gameplay","description":"If you're going to watch Home Alone, it's best to ignore all of the many plot holes and just appreciate it for the charming holiday tale of criminal parental neglect that it is.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-filthyhands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0405d2f2-d299-414c-907f-590af24d848b.png/sm/filthy.png","duration":894,"publication_date":"2018-04-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps171","changefreq":"weekly","video":[{"title":"2018:E171 - WE ARE HUNGRY","description":"All new fan art, comments, and questions only for you Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/787f8925-4de4-4c38-b2d0-5da6f859c3d3.png/sm/ps171thumb.png","duration":1434,"publication_date":"2018-04-26T00:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/board-as-hell-season-1-coup","changefreq":"weekly","video":[{"title":"S1:E1 - Coup","description":"It's like Game of Thrones, minus the nudity and violence, and kind of in the future I think. It's Coup! The first of many games you'll all get to see us play on this season of Board as Hell!*\r\n\r\n*(show title subject to change without warning)\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/board-as-hell-season-1-coup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2452deb0-3c13-40fb-a195-2e58f29e84d9.png/sm/coup.png","duration":2454,"publication_date":"2018-04-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtauninstall","changefreq":"weekly","video":[{"title":"2018:E87 - GOOP TROOP - GTA 5 Gameplay","description":"Do any of you know if there's a male version of \"Goop\" out there just for us fellas? I've been feeling a little sluggish lately and I'm looking for a shaft of rose quartz to shove up my pee-hole.\r\n\r\nFollow us on twitter:\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/GeoffLRamsey\r\nhttps://twitter.com/jack_p\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtauninstall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/98afdc3c-6523-4ad2-b025-7cae7c55af95.png/sm/gtainstall.png","duration":767,"publication_date":"2018-04-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-dude-soup-171","changefreq":"weekly","video":[{"title":"2018:E171 - DEEPFAKES WILL SAVE THE WORLD? - Dude Soup #171","description":"Get 15% off MVMT sunglasses today by going to http://www.mvmt.com/dudesoup\r\nCheck out this week’s menu and get your first 3 meals free at http://www.blueapron.com/soup\r\n\r\nThis week, Lawrence introcuces us to the sexy world of Deepfakes! Ooooh la la... wait, what are they? Oh my god, that's awful. We also talk about:\r\n31:50 - Cyberwatch 2077 sort of news!\r\n38:00 - Mindfreak of the week: How well can we really trust our memories?\r\n54:10 - Hard Nettin'.\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttps://twitter.com/_JacobFullerton\r\nhttp://twitter.com/real_rtbones\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus\r\n\r\nSOURCES:\r\n[Vox] We’re underestimating the mind-warping potential of fake video: https://goo.gl/ThLfw7\r\n[NewStatesman] The movie that doesn’t exist and the Redditors who think it does: https://goo.gl/yKWxB9\r\n[GamePressure] Cyberpunk 2077 will be an FPS – new information leaked: https://goo.gl/wYZtP4\r\n[Newsweek] 'CYBERPUNK 2077' FIRST-PERSON RUMORS ANSWERED BACK IN 2013: https://goo.gl/d5mRU1\r\n\r\nHARD NET:\r\nWalking with Giants: https://goo.gl/nOmpXo\r\nA Howl at Midnight: https://goo.gl/F8Nxr4","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-dude-soup-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd11c053-1ef0-459d-816d-00c60e347ae8.png/sm/deep.png","duration":4062,"publication_date":"2018-04-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh166","changefreq":"weekly","video":[{"title":"2018:E166 - WE TAKE OVER TINDER? - Open Haus #166","description":"Thanks to Blue Apron for sponsoring this episode. Check out this week’s menu and get your $30 off at http://blueapron.com/openhaus\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nWhat's the maximum number of dating apps you can find on your wife's phone before you're allowed to say something. I drew the line at six. My wife is a little more progressive and countered with leaving with our child.\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttps://twitter.com/_JacobFullerton\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff93c204-48e8-45c9-a703-89c3d91b3538.jpg/sm/openhausthumbnail166.jpg","duration":875,"publication_date":"2018-04-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hitman6","changefreq":"weekly","video":[{"title":"2018:E86 - SEAMEN SLAUGHTER - Hitman: Contracts Gameplay Part 6","description":"Which do think is the worst job in a sex club: the guy who has to mop up at the end of the night, or the girl who has to keep telling David Spade that he was really funny on Just Shoot Me?\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hitman6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/563bdba0-0cf0-4ceb-b50c-1729a06a3935.png/sm/hit62.png","duration":656,"publication_date":"2018-04-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-mybf3","changefreq":"weekly","video":[{"title":"2018:E85 - VACAY THREE WAY - My Boyfriend Gameplay Part 3","description":"Is it still a threesome if you don't finish? And all of your clothes are still on? And you're in a closet on the other side of the room? And the two girls don't know you're there?\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/brucegreene\r\nhttps://twitter.com/RahulKohli13\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-mybf3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1c99321f-d45b-42b0-a52d-0035528957f7.png/sm/bf3.png","duration":836,"publication_date":"2018-04-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhaus50quiet","changefreq":"weekly","video":[{"title":"2018:E50 - A QUIET PLACE OVERRATED? - Movie Podcast","description":"Get $125 off your Leesa Mattress at www.leesa.com/filmhaus\r\n\r\nThis week the gang discusses the new horror film A Quite Place, brought to you by pants-moistening Hollywood power couple John Krasinski and Emily Blunt! Also: Entertainment news with a slightly less pants-moistening Jon Smith.\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jonsmiff\r\nhttps://twitter.com/BryanlMarquis\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhaus50quiet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e4d51311-ca31-4008-911f-563a753ed00f.png/sm/filmquiet.png","duration":2857,"publication_date":"2018-04-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-tromeo","changefreq":"weekly","video":[{"title":"S1:E6 - Tromeo and Juliet","description":"I gotta say, this film adaptation really nailed the original play's classic \"Cow-human hybrid attacks father with tampon\" scene. Zeffirelli's take was little reductive.\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-tromeo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7d0a4457-c4df-4fc7-abf3-75bcb4674735.jpg/sm/tromeo.jpg","duration":6473,"publication_date":"2018-04-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-rento","changefreq":"weekly","video":[{"title":"2018:E84 - DEFINITELY NOT MONOPOLY - Rento Fortune Gameplay","description":"Here's a fun little game night tip from your old pal Bones: Instead of playing a fun, friendly game of Monopoly with your family, just call your aunt a greedy c*** now and save yourself the four hours.\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-rento","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa212cc4-f2c0-491b-83cb-2831b54e3fef.png/sm/rento.png","duration":730,"publication_date":"2018-04-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-my-summer-car-gameplay-part-6","changefreq":"weekly","video":[{"title":"2018:E25 - My Summer Car Gameplay Part 5 & 6","description":"If anything is revealed by an uncut My Summer Car gameplay, it's that our aspiring car-builders always make the best use of their time.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-my-summer-car-gameplay-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b485ff5-8d30-4f76-8dcc-8f8c63cd8f0c.jpg/sm/fullhaussummercar5.jpg","duration":5841,"publication_date":"2018-04-19T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-godofwar","changefreq":"weekly","video":[{"title":"2018:E83 - GET PRAYED GET LAID - God of War Gameplay w/ Alanah Pearce","description":"The GameStop bundle for this game should just come with a door lock, some lotion, a single tattered gym sock, and shame.\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttps://twitter.com/Charalanahzard\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-godofwar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/97548105-903c-4b0d-8316-f32d835037be.png/sm/gow2.png","duration":725,"publication_date":"2018-04-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds170","changefreq":"weekly","video":[{"title":"2018:E170 - CRUISE VS TRAVOLTA SCIENTOLOGY DRAMA? - Dude Soup Podcast #170","description":"Support our sponsors!\r\n[Hims] Get a trial month for $5 at http://www.forhims.com/dude\r\n[Stitch Fix] Get 25% off your purchase when you keep all 5 items in your box at http://www.stitchfix.com/dudesoup\r\n[eHarmony] Get a free month with a 3 month subscription by using code \"SOUP\" at checkout\r\n\r\nI'm not even going to attempt to make a joke. Just please don't sue us:\r\n4:10 - Our upcoming \"Weed-stream\"!\r\n8:35 - Hot Topic: Scientology News; story from 37 year old janitor about John Travolta jealous of Freedom Medal of Valor given to Tom Cruise in 2008.\r\n16:55 - Our experiences with exclusive clubs or groups.\r\n45:50 - Larr’s Lads: Lawbreakers players keeping the game alive.\r\n1:01:45 - Larr Reads: Monster Assault can label.\r\n1:04:05 - Bruce Reads: Ernest Kline poem.\r\n1:16:00 Hard Nettin’\r\n\r\nSOURCES:\r\n[News.com.au] Tom Cruise and John Travolta are bitter Scientology rivals, report says - https://goo.gl/KyL9eZ\r\n[Kotaku] The Handful Of People Still Playing LawBreakers On PC Aren't Giving Up On It - https://goo.gl/jvfoP2\r\n\r\nHARD NETTIN:\r\nThe Floppotron - https://goo.gl/gJEDqj\r\nmurrlogic1 - https://goo.gl/gLRZeX\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/BryanlMarquis\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d5722053-282b-4807-b509-652a0e9bd39c.png/sm/fh_thumb_cruisetravoltav4.png","duration":5426,"publication_date":"2018-04-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps170","changefreq":"weekly","video":[{"title":"2018:E170 - WE ARE TRAINED KILLERS","description":"All new fan art, questions, and comments only for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b52b4146-816d-45c3-9b6d-f9ca8d33679b.png/sm/ps170thumb.png","duration":1940,"publication_date":"2018-04-18T17:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtabikeplane","changefreq":"weekly","video":[{"title":"2018:E82 - SLEAZY RIDERS - GTA 5 Gameplay","description":"Well, it looks like this PrEP pill really does prevent the spread of HIV so we here at Funhaus need to find another debilitating illness to mock. Which is funnier: Early Onset Dementia or Neonatal Amphetamine Addiction?\r\n\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/GeoffLRamsey\r\nhttps://twitter.com/jack_p\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtabikeplane","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df880a16-68ce-4815-bfce-d4fedc17b30f.png/sm/gtabike.png","duration":605,"publication_date":"2018-04-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-hitman-contracts-gameplay-part-5","changefreq":"weekly","video":[{"title":"2018:E24 - Hitman: Contracts Gameplay Part 5","description":"Uncut Hitmen and a gaggle of biker boys? What is this, Alekhine's Gun?!","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-hitman-contracts-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eb46b2e2-4a47-4306-a1c3-b8e1b387e243.jpg/sm/fullhaushitmancontracts5.jpg","duration":2065,"publication_date":"2018-04-17T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh165","changefreq":"weekly","video":[{"title":"2018:E165 - READY PLAYER DUMB? - Open Haus #165","description":"Thanks to Mack Weldon for sponsoring this episode. Visit http://mackweldon.com and get 20% off using promo code: HAUS.\r\n\r\nCome see us live, April 26 @ 7:30PM: https://www.ticketfly.com/event/1671132-funhaus-live-tiberius-los-angeles/\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nHave you guys seen that Japanese game show where the woman grabs a hold of the man's balls and clamps down every time he tries to live his truth or express his individuality or grab a f***ing beer with the other editors. Oh wait. That's not a game show. That's my marriage! Aghahahahahahaha!\r\n*(flips over desk, douses self in kerosene, hands lighter to a tearful Jacob Fullerton)*\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4330b387-8603-4dd8-b091-d25595631e1e.jpg/sm/openhausthumbnail165.jpg","duration":778,"publication_date":"2018-04-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hitman5","changefreq":"weekly","video":[{"title":"2018:E80 - HOT BIKER BOYS - Hitman Contracts Part 5","description":"Top five least popular pot shops in Amsterdam:\r\nThe Anne Dank House\r\nThe Grass Chamber\r\nDa Kine-al Solution\r\nThe Hot Box\r\nBowlocaust\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hitman5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8f254545-697a-4a22-81e5-105b2ac58c45.png/sm/hit5.png","duration":563,"publication_date":"2018-04-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-summercar6","changefreq":"weekly","video":[{"title":"2018:E78 - DRUNK IN PUBLIC TRANSPORT - My Summer Car Gameplay Part 6","description":"Odota. Eikö tämä peli olisi suunniteltava auton rakentamisesta? Miten se muuttui humalaksi painajaiseksi siitä, että hän yrittää lähettää kirjeen suomalaiselle maalle?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-summercar6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/667f8eba-4a6a-45cb-a347-112d52458cc0.png/sm/car6.png","duration":971,"publication_date":"2018-04-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhausoats","changefreq":"weekly","video":[{"title":"2018:E49 - A CHAT W/ NEILL BLOMKAMP - Movie Podcast","description":"Go to MackWeldon.com and get 20% off using promo code “filmhaus”\r\n\r\nhttps://fuel.oatsstudios.com/\r\n\r\nThis week the gang takes a call from District 9 and Chappie director Neill Blomkamp to talk about his new online venture OATS Studio, as well as the issues and benefits of working outside of the studio system, and his hopes for future projects.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttps://twitter.com/NeillBlomkamp\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhausoats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec7b71f6-c95b-42a9-bb34-1f82bbddabc7.png/sm/filmhausoats.png","duration":2426,"publication_date":"2018-04-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-the-ouija-possession","changefreq":"weekly","video":[{"title":"S1:E5 - The Ouija Possession","description":"If you find yourself pregnant, and absolutely HAVE TO summon a zombie with your mush-mouthed friends, please make sure to wait until your parents finish their key party upstairs so they can hear your screams over the sound the tuba. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-the-ouija-possession","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2b0e53e-d89d-4766-bc52-566b823174ad.jpg/sm/poss.jpg","duration":5738,"publication_date":"2018-04-13T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-googlewar","changefreq":"weekly","video":[{"title":"2018:E81 - ICE CREAM VS WAR - Google Trends Show","description":"Why search for online discount codes yourself? Check out Honey at joinhoney.com/trends to to learn more about receiving them automatically on tons of websites!\r\n\r\nI wonder how high \"Lawrence Sonntag dead\" will trend when he inevitably impales himself on a piece of the set during one of his opening stunts.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-googlewar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/879abc92-af3c-4c3a-b5cf-4b50b49a276b.png/sm/war.png","duration":1577,"publication_date":"2018-04-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-hitman-contracts-gameplay-part-4","changefreq":"weekly","video":[{"title":"2018:E23 - Hitman: Contracts Gameplay Part 4","description":"This week's edition of uncut hitmanning is blessed with a guest!","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-hitman-contracts-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/831a1a5d-ce1d-4661-9b24-e4113de6a7fc.jpg/sm/fullhaushitmancontracts4.jpg","duration":2342,"publication_date":"2018-04-12T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wayout2","changefreq":"weekly","video":[{"title":"2018:E79 - BROTHER LOVERS - A Way Out Gameplay Part 2","description":"Good news, guys! My Grandma's birthday check cleared so I finally have enough money to put on that Prison Break cosplay meet-up you've all been clamoring for. I of course will be going as rouge DHS Agent Don Self. Yes again! Just make sure to come early. The manager of the Golden Corral says we need to be out by 8:30. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttps://twitter.com/GeoffLRamsey\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wayout2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b4f8c770-1ff4-46b5-a8fc-fb161e568fd8.png/sm/wayout2.png","duration":1170,"publication_date":"2018-04-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtatomatorace","changefreq":"weekly","video":[{"title":"2018:E77 - CARTOON COITUS - GTA 5 Gameplay","description":"I've never actually been to a Medieval Times but I imagine that there has to be a cheaper way to eat a room temperature turkey leg within smelling distance of a horse's a**hole.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/RahulKohli13\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtatomatorace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/69e8607b-2126-4169-bdf8-7dec998ef7df.png/sm/gtatomato.png","duration":704,"publication_date":"2018-04-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps169","changefreq":"weekly","video":[{"title":"2018:E169 - WE ARE ON TOP","description":"All new fan art, questions, and comments only for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c430ed0d-2c82-4aa2-ab3c-e7703873b444.png/sm/ps169thumb.png","duration":1759,"publication_date":"2018-04-11T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds169","changefreq":"weekly","video":[{"title":"2018:E169 - PLAYSTATION 5: WHAT WE WANT! - Dude Soup #169","description":"Get your Dollar Shave Club starter kit for only $5 at http://www.dollarshaveclub/dude\r\nGet 20% off your Mack Weldon order at http://www.mackweldon.com/ and use promo code \"dude\"\r\n\r\nSEE US LIVE! April 26, The Regent Theater in Downtown LA -> bit.ly/fhlive2\r\n\r\nThis week special guest Alanah Pearce stops by to break down all the latest PS5 rumors as well as:\r\n27:35 - Cyberwatch 2077.\r\n30:00 - What we hope to see in the PS5.\r\n42:15 - The latest Nintendo Switch rumors.\r\n1:00:20 - Hard Nettin'.\r\n\r\nFollow us on Twitter!\r\nhttps://twitter.com/SirLarr\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/Charalanahzard\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus\r\n\r\nSOURCES:\r\n[SemiAccurate] SemiAcccurate gets some Playstation 5/Next details - https://goo.gl/6ZXqTB\r\n[PSU] PS5 Leak Looks Totally Fake, But You Be the Judge - https://goo.gl/qffJoC\r\n[ResetEra] Switch revision potentially leaked via 5.0 firmware - https://goo.gl/Eyu4EX\r\n[ComicBook] New Cyberpunk 2077 Trailer Could Be Coming Soon - https://goo.gl/cS5rPf\r\n\r\nHARD NETTIN:\r\nThe Floppotron - https://goo.gl/5pswqQ\r\nKrisca Wang Player Model - https://goo.gl/AAAXym","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b85456a4-d3ef-44f6-b0d5-e57605bff9a6.png/sm/psfive.png","duration":4113,"publication_date":"2018-04-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh164","changefreq":"weekly","video":[{"title":"2018:E164 - HOW NOT TO HAVE SEX? - Open Haus #164","description":"Thanks to Hims for sponsoring this episode. Try Hims for a month for $5 at http://forhims.com/openhausED\r\n\r\nCome see us live, April 26 @ 7:30PM: https://www.ticketfly.com/event/1671132-funhaus-live-tiberius-los-angeles/\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nI honestly don't care who gets killed in Infinity War as long Stan Lee dies in real life before he can film and more f*****g cameos. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2304f29-8a5e-4ae9-962d-2e733d85e617.jpg/sm/OpenhausThumbnail164.jpg","duration":627,"publication_date":"2018-04-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hitman4","changefreq":"weekly","video":[{"title":"2018:E76 - MY LITTLE DEAD PONY - Hitman Contracts Part 4","description":"Despite some nasty and persistent rumors, the French eat horse meat far less often than you've heard. Horse butchery is a time-consuming process and the French are usually far too busy smoking cigarettes and plowing their underage mistresses. \r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\nhttps://twitter.com/bradanner\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hitman4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5079c66-3e9b-4991-baf8-3e685e2d874e.png/sm/HORSE3.png","duration":602,"publication_date":"2018-04-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-summercar5","changefreq":"weekly","video":[{"title":"2018:E75 - DRIVEN TO DRINK - My Summer Car Gameplay Pt 5","description":"Hey guys. I know money's tight for everybody, but we're taking up a collection to buy Elyse a new spine. Every little bit helps. And if you can't send money, I'll happily take any spare opioids you happen to have lying around. You know. For Elyse's shoulder or whatever.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-summercar5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6fb8d378-b02d-4ebf-b4d8-7ef2494d2787.png/sm/car5.png","duration":803,"publication_date":"2018-04-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018","changefreq":"weekly","video":[{"title":"2018:E22 - Kingdom Come: Deliverance Gameplay","description":"An entire hour of our heroes wandering the Bohemian country side? WHAT COULD BE LESS EVENTFUL.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eb36afa6-5594-4384-9507-2312d03885ad.jpg/sm/FullhausKingdomCome.jpg","duration":4184,"publication_date":"2018-04-06T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhauspanther","changefreq":"weekly","video":[{"title":"2018:E48 - WAS BLACK PANTHER ANY GOOD? - Movie Podcast","description":"Go to www.ForHims.com/filmhausED for a month today for just $5!\r\n\r\nThis week the boys sit down to review some nature documentary or something called Black Panther as well as the upcoming season of Westworld, the expanded Spider Man cinematic universe, and Star Wars news!\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhauspanther","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c4b35ae-2b04-40e7-b2ff-36ff3b3fe556.png/sm/panther2.png","duration":2780,"publication_date":"2018-04-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-sharkenstein","changefreq":"weekly","video":[{"title":"S1:E4 - Sharkenstein","description":"Did you ever wonder what would happen if some Nazis chopped up a bunch of perfectly good sharks, then put them back together with the brain of a fictional public domain character then turned it loose on some cheap stock footage? Of course not. But somebody did, so here we all are.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-sharkenstein","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/57c39e88-b5e8-4e11-9b36-b8ad82af4a68.jpg/sm/shark.jpg","duration":4448,"publication_date":"2018-04-06T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wayout1","changefreq":"weekly","video":[{"title":"2018:E74 - PRISON PALS - A Way Out Gameplay Part 1","description":"If I ever get sent to prison I hope meet a really nice old gentleman of color who's full of wisdom and can get you things from the outside and will write my wife a real nice letter when the white supremacists toss my sullied corpse into the furnace.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttps://twitter.com/GeoffLRamsey\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wayout1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2722733c-5e2e-4a16-bad1-8f3222fb6e4a.png/sm/wayout.png","duration":1127,"publication_date":"2018-04-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-bestofmarch2018","changefreq":"weekly","video":[{"title":"2018:E73 - BEST OF SEDUCTION - Best of Funhaus March 2018","description":"You know you all just wanted to see Matt Peake shirtless again. Just admit it. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/jonsmiff \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-bestofmarch2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/49cac1db-84d0-4094-a5ad-9cceca4e44e9.jpg/sm/March2018.jpg","duration":1438,"publication_date":"2018-04-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-seaofthieves3","changefreq":"weekly","video":[{"title":"2018:E72 - BURIED IN BOOTY - Sea of Thieves Gameplay","description":"Listen up, kids. You gotta stop hooking up during the slow parts of the Pirates of the Caribbean ride. Not only is it distracting, dangerous, and unsanitary, but every time you do it Johnny Depp is contractually obligated to come in and mop up the mess with one of his scarves.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-seaofthieves3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/643d18e1-4f10-40b0-a439-2acefba5c909.png/sm/sea2.png","duration":1109,"publication_date":"2018-04-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-hitman-contracts-gameplay-part-2","changefreq":"weekly","video":[{"title":"2018:E21 - Hitman: Contracts Gameplay Part 3","description":"The assassination adventure continues, with a large portion dedicated to figuring out how to kill a man by making him poop too hard.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-hitman-contracts-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1c048cc2-e2b6-4623-afdf-03457a240ce5.jpg/sm/FullhausHitmanContracts3.jpg","duration":2855,"publication_date":"2018-04-04T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtafreefall","changefreq":"weekly","video":[{"title":"2018:E67 - SOAR LOSERS - GTA 5 Gameplay","description":"I would crawl through 500 yards of s*** smelling foulness you can't even imagine to break INTO a prison cell just to be with Rahul. That's the length of five football fields. Just shy of half a mile.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/RahulKohli13\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtafreefall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/34dfce8a-c8e6-40fb-8e39-4a7fe2a30e7b.png/sm/wing.png","duration":505,"publication_date":"2018-04-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps168","changefreq":"weekly","video":[{"title":"2018:E168 - WE ARE HARD BOILED","description":"All new fan art, comments, and questions only for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd42f95f-4f3a-40af-ad2b-c12746dcefea.png/sm/ps168thumb.png","duration":2362,"publication_date":"2018-04-04T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds168","changefreq":"weekly","video":[{"title":"2018:E168 - FAR CRY 5 REVIEWS ARE WRONG? - Dude Soup Podcast #168","description":"Support our sponsors!\r\n[Beach Body] Get a free trial membership by texting \"Dude\" to 303030\r\n[Black Tux] Get $20 off your purchase by going to http://www.theblacktux.com/dude\r\n\r\nCOME SEE US LIVE -> http://bit.ly/fhlive2\r\nApril 26, The Regent Theater. Doors at 7:30PM.\r\n\r\nThis week the gang sits down with Freddie Wong to discuss the controversy around the latest in the Far Cry series as well as:\r\n30:45 - Far Cry 5 head writer Drew Holmes calls in with his take.\r\n49:25 - Authorial intent in video games.\r\n56:45 - \"Bruce Reads...\" HIV Living.\r\n1:05:05 - Hard Nettin'.\r\n\r\nSOURCES:\r\n[GamesIndustry] Far Cry 5: Critical Consensus: https://goo.gl/vsAo1G\r\n[Eurogamer] Far Cry 5 review - a competent yet conflicted open worlder: https://goo.gl/zXV1Xn\r\n[The Guardian] Far Cry 5 review – cults, chaos and all-American silliness: https://goo.gl/nJ24LA\r\n\r\nBRUCE READS: https://goo.gl/VBYz1R\r\n\r\nHARD NETTIN'\r\nThe Floppotron: https://goo.gl/iNHt9I\r\nvs\r\nI Can Make Anybody Want To Go Vegan: https://goo.gl/jfB1E3\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/fwong\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/05ebee45-f379-4880-8c74-0c7cc46c8991.png/sm/ds168.png","duration":4984,"publication_date":"2018-04-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh163","changefreq":"weekly","video":[{"title":"2018:E163 - HOW TO FAIL AN AUDITION? - Open Haus #163","description":"Thanks to Leesa for sponsoring this episode. Get $125 off the Leesa mattress and a free pillow at http://leesa.com/openhaus with promo code: OPENHAUS\r\n\r\nCome see us live, April 26 @ 7:30PM: https://www.ticketfly.com/event/1671132-funhaus-live-tiberius-los-angeles/\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nSorry guys. I don't get the \"Hawkeye's Wife Sextape\" bit either. Is it the two characters in a meme somewhere? Is it referring to one or both of the actors in real life? And how does Sam Jackson fit into all this? Sorry. It's quitting time. You guys'll have to figure this one out on your own.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f171f834-8f3a-4426-932f-ded17648779c.jpg/sm/OpenhausThumbnail163.jpg","duration":726,"publication_date":"2018-04-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hitman3","changefreq":"weekly","video":[{"title":"2018:E69 - SLOPPY SNOW JOB - Hitman: Contracts Gameplay Part 3","description":"You guys know that old photo of Bruce? You know, that one where he's on the toilet. And you know how it's been around a while and it's kind of played out at this point. Yeah, don't worry. We took care of that.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hitman3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/071a21bb-8c4b-442d-af43-b9e4bfa4d11a.png/sm/hit3.png","duration":852,"publication_date":"2018-04-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-googleball","changefreq":"weekly","video":[{"title":"2018:E71 - BALLS VS BUTTS - Google Trends Show","description":"Did you know that 66% of all men lose their hair by age 35? Visit our sponsor today over at https://www.forhims.com/google and take care of yourself with your first month for only $5!\r\n\r\nFilmhaus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “TRENDS\"\r\n\r\nNothing quite matches that feeling of shame when you're at a bar listening to your wife talk basketball with all of your male friends and family, and you realize you've spent the entire third quarter of the game looking up \"Major Dad\" trivia on Wikipedia.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-googleball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c714605c-8c9f-460d-89fc-d6dc1618a632.png/sm/balls.png","duration":1820,"publication_date":"2018-03-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhausready","changefreq":"weekly","video":[{"title":"2018:E47 - WE JUST LEVELED UP IN OUR PANTS: Ready Player One Review - Movie Podcast","description":"For the month of March get $125 off the Leesa mattress and a free pillow,go to www.leesa.com/filmhaus and enter promo Code: FILMHAUS\r\n\r\nThis week the boys jack into the web and do the entire Ready Player One review from a virtual chat room. It goes about as well as you'd expect.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhausready","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d56e2072-6ffd-477b-82f2-0d9a8845f31b.png/sm/READY.png","duration":1728,"publication_date":"2018-03-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-tmhack","changefreq":"weekly","video":[{"title":"S1:E3 - Dr. Hackenstein","description":"Murder, grave-robbing, incest, gratuitous nudity, AND the mush-mouthed old lady from Goonies?! What DOESN'T this movie have?! Oh. Talent, plot, and a budget. Gotcha.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-tmhack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3d2ddc38-5c30-4709-b673-8699ae6b4dcc.jpg/sm/FHTM03THUMB.jpg","duration":5331,"publication_date":"2018-03-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-tanks3","changefreq":"weekly","video":[{"title":"2018:E68 - TANKS FOR EVERYTHING - World of Tanks Gameplay","description":"Thank you to Wargaming for sponsoring this video!\r\nClick here http://neva.ly/WoT1_0-Funhaus to check out World of Tanks for yourself!\r\nDon't forget to enter the code: WOTONE\r\n\r\nDid you guys know that the first tank was designed by Leonardo da Vinci in 1487 while under the patronage of Duke Ludovico Maria Sforza... or so the Illuminati would have you believe! Or was it the Freemasons? Bilderbergs? Whatever. Wake up sheeple!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-tanks3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e92b215d-46e4-41f6-b132-8014854bbe68.png/sm/tank.png","duration":835,"publication_date":"2018-03-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-yakuza","changefreq":"weekly","video":[{"title":"2018:E70 - STREETS OF RAGE - Yakuza 6: The Song of Life Gameplay","description":"Thank you to Sega of America for sponsoring this video!\r\nClick here http://bit.ly/2DZo7XD to check out the game for yourself!\r\nGet it at GameStop here http://bit.ly/2DXWY7s\r\n\r\n\"I'm sorry sir, but there just isn't enough funding. We can either enable Kiryu to have more than one expression or finish the rendering of his... uh... behind.\" \r\n\"Hmm... let me see where we're at with that butt.... hmmmm... Nope. Not nearly pert and luscious enough. Tell those face guys to report to the Ass Annex first thing in the morning.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-yakuza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c7a3303c-51b5-490f-9c5c-cbed42fd09a1.png/sm/yak6.png","duration":1381,"publication_date":"2018-03-30T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gta-doom-heist-15","changefreq":"weekly","video":[{"title":"2018:E55 - GO FORK YOURSELF - GTA 5 Gameplay","description":"How dare you accuse us of uploading a gameplay that's been on the shelf for four months! We just recorded this last week! Yes, Los Angeles is still being ravaged by wildfires and of course my wife is still pregnant with our first child! Merry Christmas everybody.\r\n\r\nFork It Canal -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/BrChbwXRfUKDW5-nYFRgxQ#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/_jacobfullerton\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gta-doom-heist-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7235a7f8-3e8e-47e6-ae3b-55ed363263fa.png/sm/RACE1.png","duration":651,"publication_date":"2018-03-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps167","changefreq":"weekly","video":[{"title":"2018:E167 - WE ARE SAD LITTLE CLOWNS","description":"All new fan art, questions, and comments only for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f89b6e7-0dda-40ec-9a40-744468620bd2.png/sm/ps167thumb.png","duration":2166,"publication_date":"2018-03-28T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds167","changefreq":"weekly","video":[{"title":"2018:E167 - SEA OF THIEVES, WHY THE HATE? - Dude Soup Podcast #167","description":"Please support our sponsors!\r\nBlue Apron: Get $30 off your first order at http://www.blueapron.com/soup\r\nMVMT: Get 15% off your order at http://www.mvmt.com/dudesoup\r\n\r\nCome see us live, April 26 @ 7:30PM: https://www.ticketfly.com/event/1671132-funhaus-live-tiberius-los-angeles/\r\n\r\nThis week the gang lets you all know if Sea of Thieves is worth the hype as well as:\r\n15:00 - Some of the game's shortcomings.\r\n39:40 - New additions and gameplay modes they would like to see in the game's future.\r\n48:10 - Weird old Atari game commercials.\r\n59:20 - Cyberwatch 2077 or whatever.\r\n1:03:05 - Hard Nettin'.\r\n\r\nSOURCES:\r\n[Kotaku] Planned Sea of Thieves Death Tax Canceled After Community Outcry: https://goo.gl/npyvRq\r\n[Whalebone] THE STRANGE ALTERNATE REALITY OF OLD ATARI TV ADS: https://goo.gl/AVTqCc\r\n[Gamespot] Cyberpunk 2077's Single-Play Is An \"Immense, Story-Driven\" RPG; But Multiplayer Not Ruled Out: https://goo.gl/AmYrsG\r\n\r\nHARD NETTIN'\r\nThe Floppotron: https://goo.gl/hDmGNp\r\nHeatherBoydComics: https://goo.gl/U76Uyt\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/35e22a1a-0577-4095-99aa-0c16de6a84ba.png/sm/ds167.png","duration":4654,"publication_date":"2018-03-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-hitman-contracts-gameplay-part-1","changefreq":"weekly","video":[{"title":"2018:E20 - Hitman: Contracts Gameplay Part 1 & 2","description":"And thus, another unedited Hitman saga begins! Watch the game break before your very eyes, and wallow in the knowledge that no editor will be there to make it a fluid and concise experience for ye, hapless viewer.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-hitman-contracts-gameplay-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ff3401b-0f38-46f8-b4c6-a76bd00a85af.jpg/sm/FullhausHitmanContracts1.jpg","duration":4045,"publication_date":"2018-03-27T21:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh162","changefreq":"weekly","video":[{"title":"2018:E162 - OUR CELEBRITY FORTNITE SQUAD? - Open Haus #162","description":"Thanks to Blue Apron for sponsoring this episode. Check out this week’s menu and get your $30 off at http://blueapron.com/openhaus\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nReal words of wisdom from my actual uncle:\r\n1. \"The only way to make it these days is to go to college or become a criminal, and you are way too soft to become a criminal.\"\r\n2. \"If your brother calls you and says he killed somebody, you'd better show up with your own shovel and your own bag of lime.\"\r\n3. \"Lie to somebody once and they'll think you lie about everything. Never lie to anyone. Except the cops. Always lie to the cops.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/69d7858a-7fa2-4751-9637-8e1903f99133.jpg/sm/OpenhausThumbnail162.jpg","duration":686,"publication_date":"2018-03-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hitman2","changefreq":"weekly","video":[{"title":"2018:E65 - MEAT IS MURDER - Hitman: Contracts Gameplay Part 2","description":"\"Ugh. I can't believed they moved the sex club to this abandoned meat-packing plant. It's disgusting! With all this blood and viscera around I can barely smell you peeing on me.\"\r\n\"Muhbeh yushud wrut uh ludduh.\"\r\n\"You're god-damn right I'm gonna write them a letter!\"\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hitman2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2c56b1e6-9adf-4102-8832-97d8005737c5.png/sm/hitman2thumb.png","duration":779,"publication_date":"2018-03-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-kingdomdel","changefreq":"weekly","video":[{"title":"2018:E66 - CZECH YO SELF - Kingdom Come: Deliverance Gameplay","description":"\"I come to claim the right of Prima Nocta! As lord of these lands I will bless this marriage by taking the bride into my bed on the first night of her union!\"\r\n\"...Bruce, this is a production meeting. And we're all men. And that's not even a thing anymore.\"\r\n\"Man. Bosses don't get to do anything these days.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-kingdomdel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/acdcde92-0386-464a-82e9-cbd833523c05.png/sm/kingdom.png","duration":830,"publication_date":"2018-03-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-nightmarchers-gameplay-part-4","changefreq":"weekly","video":[{"title":"2018:E19 - Nightmarchers Gameplay Part 4","description":"Will the devs make enough money to finish this game so that WE can finish this game? TUNE IN TO PART 5*\r\n\r\n*Part 5 may not exist yet/ever exist","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-nightmarchers-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f9013d6-0d8c-4053-8e2f-342e107bb030.jpg/sm/FullhausNightmarchers4.jpg","duration":3478,"publication_date":"2018-03-23T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhaussonofmask","changefreq":"weekly","video":[{"title":"2018:E46 - FACE YOUR FEARS: Son of the Mask Review - Movie Podcast","description":"For the month of March get $125 off the Leesa mattress and a free pillow,go to www.leesa.com/filmhaus and enter promo Code: FILMHAUS\r\n\r\nBecause you demanded it, this week the boys watched 2005's most terrifying \"comedy\" Son of the Mask! It was awful. Jon had nightmares. While he was awake. Shame on all of you. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhaussonofmask","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb9f7f32-cabd-4e0f-b226-d18bbf6e0bcc.png/sm/filmask.png","duration":1959,"publication_date":"2018-03-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-fhtmgrad","changefreq":"weekly","video":[{"title":"S1:E2 - Graduation day","description":"Wait. Vanna White is in this movie? Of Wheel of Fortune fame? There's gotta be a joke here somewhere. Hold on... \r\n...\r\n...\r\n...\r\nWheel of Fortune? More like \"Wheel of Bore-tune\"!\r\nYou see kids, Wheel of Fortune was this game show that your grandparents used to wa- y'know what forget it.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-fhtmgrad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb4c9f94-f9c4-4418-896f-4de7b9baa1fa.jpg/sm/FHTM02THUMB.jpg","duration":5858,"publication_date":"2018-03-23T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-mountfriends2","changefreq":"weekly","video":[{"title":"2018:E64 - MEN ON TOP - Mount Your Friends 3D Gameplay Part 2","description":"INT. WILLEMS HOUSE - NIGHT\r\nJames stands in front of a mirror. He is dressed in nothing but a bright green thong and headband. Shaving cream is slathered over his entire body and head. Candles flicker in the background. Slowly, he reaches for a straight razor, watching the light glint off its edge. He stares down his reflection with a mixture of determination and disgust.\r\n\"Let's do this.\" \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-mountfriends2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b8be1025-eb39-480c-b764-2ea19dd64b26.png/sm/mount2.png","duration":629,"publication_date":"2018-03-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-h1z1auto","changefreq":"weekly","video":[{"title":"2018:E63 - FORTNITE WITH CARS - H1Z1 Auto Royale Gameplay","description":"Coming July 2018: H1Z1 Text Royale!\r\n\r\nYou are surrounded by empty buildings. The road continues to the east and the west. There is a crate in the road.\r\n-pick up crate\r\nYou cannot pick up that.\r\n-punch crate\r\nYou cannot punch that.\r\n-open crate\r\nYou have opened the crate. The crate contains a pistol.\r\n-pick up pistol.\r\nI do not understand that.\r\n-ACQUIRE PISTOL!\r\nYou have acquired the pi- You have been sniped by \"dankscrote6969\". Please return to queue.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nT-shirts and stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-h1z1auto","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f1308c6c-7642-49bf-b3b2-a9d8784b4fc9.png/sm/h1z1.png","duration":982,"publication_date":"2018-03-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-nightmarchers-gameplay-part-3","changefreq":"weekly","video":[{"title":"2018:E18 - Nightmarchers Gameplay Part 3","description":"The full Nightmarchers experience returns this week, and in consecutive order!","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-nightmarchers-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6deec42d-0de0-4658-8c60-e261a45b259d.jpg/sm/FullhausNightmarchers3.jpg","duration":3641,"publication_date":"2018-03-21T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gta-doom-heist-14","changefreq":"weekly","video":[{"title":"2018:E54 - THIS IS THE END...? - GTA 5 Doomsday Heist Gameplay Part 14","description":"It's true. This is the last Doomsday Heist video. But don't be sad. You know the old saying: When one door closes, Funhaus puts up another GTA video a week later where Jacob talks about how hard he is in the morning. See you in seven days!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gta-doom-heist-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd8165d4-a401-4124-ba69-850ebe2de018.png/sm/gtaend.png","duration":652,"publication_date":"2018-03-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-dude-soup-post-show-166","changefreq":"weekly","video":[{"title":"2018:E166 - WE ARE SHIFTY","description":"All new questions, comments, and fan art only for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-dude-soup-post-show-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/95b77367-99f7-4b6c-a712-abec92492ca8.png/sm/ps166thumb.png","duration":2209,"publication_date":"2018-03-21T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-dude-soup-podcast-166","changefreq":"weekly","video":[{"title":"2018:E166 - FORTNITE WITH DRAKE & NINJA... WHO CARES? - Dude Soup Podcast #166","description":"Please support our sponsors!\r\n[Dollar Shave Club] Get the Dollar Shave Club starter kit for $5 at http://www.dollarshaveclub.com/dude\r\n[HIMS] Get a trial month of HIMS for $5 at http://www.forhims.com/dude\r\n\r\nThis week the gang talks about Drake and Ninja breaking Twitch with their collaboration as well as:\r\n\r\n15:35 - A call from RickyFTW in which he and Lawrence debate whether a celeb playing video games is really that big of a deal.\r\n30:45 - \"Playing video games\" as a carreer.\r\n42:30 - Larr's People: Woman attacks cheating gamer boyfriend with samurai sword.\r\n1:03:15 - New indie game picks.\r\n1:06:55 - Hard Nettin'.\r\n\r\nSOURCES:\r\n[Eurogamer] Drake and Ninja playing Fortnite smashes Twitch world record - https://goo.gl/TeKfqe\r\n[Twitter, CNBC] Tyler '@Ninja' Blevins says he makes $500,000 a month playing video games. - https://goo.gl/ymUzPe\r\n[Washington Post] She found a dating app on her boyfriend’s phone. Then she bought a samurai sword. - https://goo.gl/9LjYjB\r\n[ComicBook] Cyberpunk 2077 Confirmed for Steam Release - https://goo.gl/UGc8ym\r\n[Steam] Amid Evil - https://goo.gl/j1ND4n\r\n\r\nHARD NETTIN'\r\nThe Floppotron - https://goo.gl/18sEpc\r\n[LA Times] Defendants in Disneyland social club lawsuit are evading process servers, lawyer says - https://goo.gl/x6XYqg\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-dude-soup-podcast-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8ae6e7fa-9e50-4863-9506-c4c17605f406.png/sm/ds166.png","duration":4613,"publication_date":"2018-03-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh161","changefreq":"weekly","video":[{"title":"2018:E161 - OUR TIME OF THE MONTH? - Open Haus #161","description":"Did you know that 66% of all men lose their hair by age 35? Visit our sponsor today over at https://www.forhims.com/openhaus and take care of yourself with your first month for only $5!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nWhat's that young men of America? You're creeped out by the idea of menstruation? Try childbirth. I watched a goddamn Saw movie shoot out of my wife's body. Love you honey! Be home soon! \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd21cffa-985c-4219-a7bf-02b7babfb5d8.jpg/sm/OpenhausThumbnail161.jpg","duration":883,"publication_date":"2018-03-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hitman1","changefreq":"weekly","video":[{"title":"2018:E62 - A BROKEN HITMAN - Hitman: Contracts Gameplay Part 1","description":"I wish somebody actually would clone Matt Peake, just so they could finally finish that f*****g bag of oats. It's been like two years. The crickets who live in it are starting to complain about all the weevils. \r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hitman1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/20e24ae8-65ac-440f-80b3-ae1a58f918e8.png/sm/hitman2.png","duration":851,"publication_date":"2018-03-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-mountfriendspt1","changefreq":"weekly","video":[{"title":"2018:E61 - MOUNTIN' MEN - Mount Your Friends 3D Gameplay","description":"\"Hey Bruce! I found the best game for us to play for next week's video!\"\r\n\"Hold up, James. It doesn't have a swollen, half-naked jacked dude in it, does it?\"\r\n\"No. It doesn't have \"A\" swollen , half-naked jacked dude in it.\"\r\n\"Good. Wait... why did you just emphasize and put air quotes around the word \"A\"? Hey, get back here! James? Dammit. Elyse! Get the broom. James wedged himself behind the couch again.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-mountfriendspt1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/98c47fad-b712-4c73-a301-2f16870d0b85.png/sm/mount1.png","duration":619,"publication_date":"2018-03-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhaustomb","changefreq":"weekly","video":[{"title":"2018:E45 - TOMB RAIDER FAILS AGAIN? - Movie Podcast","description":"Visit http://mackweldon.com and use the code word: 'FILM' for 20% off your entire order!\r\n\r\nThis week Adam, James and Jon sit down to discuss the new Tomb Raider adaptation, female-driven action movies, why films based on games rarely work, and how Jon put on a dirty tank top and stole a pair of Beats headphones from a couple of little girls.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/jameswillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhaustomb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c84d322-075d-41cf-8766-c90839b82a35.png/sm/tomb.png","duration":2418,"publication_date":"2018-03-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-presents-theater-mode-season-1-funhaus-presents-theater-mode-killer-nerd","changefreq":"weekly","video":[{"title":"S1:E1 - Killer Nerd","description":"You'd think a movie that opens with an inexplicable, grainy striptease would have its shit together. You'd think that. But you'd be wrong. So wrong. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-presents-theater-mode-season-1-funhaus-presents-theater-mode-killer-nerd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b0f00b2f-08b0-4cd9-aa5d-590d751a7ca2.jpg/sm/FHTM01THUMB.jpg","duration":5510,"publication_date":"2018-03-16T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-supseducer","changefreq":"weekly","video":[{"title":"2018:E60 - YUCKY CHARMS - Super Seducer Gameplay","description":"Pro tip: When trying to pick up a lady in a bar, always remember to let her know how devoted to women's issues you are by telling her exactly how many abortions you're responsible for.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-supseducer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/20b6dfe9-904a-4b8a-b617-ded2d4c04728.png/sm/seduce.png","duration":837,"publication_date":"2018-03-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-nightmarchers-gameplay-part-1","changefreq":"weekly","video":[{"title":"2018:E17 - Nightmarchers Gameplay Part 1","description":"I know Part 2 came out before this one, but if Star Wars can do it, by golly Nightmarchers can too!","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-nightmarchers-gameplay-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e89b5fa-f4f3-4aaf-95bf-f1ff79123451.jpg/sm/FullhausThumbnailNightmarchers.jpg","duration":3655,"publication_date":"2018-03-15T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hffboats2","changefreq":"weekly","video":[{"title":"2018:E59 - YOU PIECE OF SHIP - Human Fall Flat Gameplay: Boats Pt. 2","description":"Is every single rafting guide contractually obligated to offer you sh***y weed and to try and bang your girlfriend, or is it only required of the ones licensed here in California?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/collections/funhaus","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hffboats2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e369726c-db43-4742-8e7c-d65753d4cd3f.png/sm/hffboat.png","duration":1307,"publication_date":"2018-03-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-we-are-allseeing","changefreq":"weekly","video":[{"title":"2018:E165 - WE ARE ALLSEEING","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-we-are-allseeing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/50318ed7-bcc6-4af5-852e-74da2c7ff4f4.jpg/sm/POSTSHOW165.jpg","duration":2551,"publication_date":"2018-03-14T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-video-games-cause-violence-really-dude-soup-podcast-165","changefreq":"weekly","video":[{"title":"2018:E165 - VIDEO GAMES CAUSE VIOLENCE? REALLY? - Dude Soup Podcast #165","description":"Please support our sponsors,\r\nHoney, Casper, and Beach Body!\r\n\r\n[Honey] Add to your browser for free at http://www.joinhoney.com/dude\r\n[Casper] Get $50 towards select mattresses at http://www.casper.com/dudesoup and use code \"dudesoup\" at checkout. Terms and conditions apply.\r\n[Beach Body] Get a free trial membership to Beach Body on Demand by texting \"Dude\" to 303030.\r\n\r\nSOURCES (There are tons, I'm sorry):\r\n[New York Times] Trump Stuns Lawmakers With Seeming Embrace of Comprehensive Gun Control - https://goo.gl/GY27ip\r\n[Twitter] Trump Tweets NRA Meeting - https://goo.gl/LYhLom\r\n[Variety] Trump Meets With Video Game Industry, Watchdog Groups to Talk Gun Violence - https://goo.gl/g6Jgoy\r\n[Washington Post] Inside Trump’s private meeting with the video-game industry — and its critics - https://goo.gl/bhgQL2\r\n[YouTube] Violence in Video Games - https://goo.gl/bPZE69\r\n[New York Times] Conceding to N.R.A., Trump Abandons Brief Gun Control Promise - https://goo.gl/B8kaCi\r\n[Twitter] Trump Revises Gun Control Plans - https://goo.gl/UYfQ2T, https://goo.gl/zaabr6\r\n[ABC News] Here's why the federal government can't study gun violence - https://goo.gl/JNqWrS\r\n[Washington Post] We won’t know the cause of gun violence until we look for it - https://goo.gl/VM7xCm\r\n[PC Gamer] Dallas Fuel releases xQc following multiple Overwatch League Code of Conduct violations - https://goo.gl/uBQ3mL\r\n\r\nVIDEO GAME VIOLENCE RESEARCH:\r\n[ESA] Essential Facts About Games and Violence - https://goo.gl/WPo5Pi\r\n[Criminal Justice & Behavior] - Violent Video Games and Aggression: Causal Relationship or Byproduct of Family Violence and Intrinsic Violence Motivation? - https://goo.gl/EA7IVu\r\n[Journal of the American Medical Association] Mediators and Moderators of Long-term Effects of Violent Video Games on Aggressive Behavior - https://goo.gl/gcz3wm\r\n[Psychological Science] Effects of Violent Video Games on Aggressive Behavior, Aggressive Cognition, Aggressive Affect, Physiological Arousal, and Prosocial Behavior: A Meta-Analytic Review of the Scientifi","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-video-games-cause-violence-really-dude-soup-podcast-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd81eefa-b5ce-4af7-94ca-078998cc238f.png/sm/165.png","duration":5801,"publication_date":"2018-03-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-l-a-noire-gameplay-part-3","changefreq":"weekly","video":[{"title":"2018:E16 - L.A. Noire Gameplay Part 3","description":"The infallible Phelps faces off with some radical racists to reveal who robbed some rubber from the consul's car.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-l-a-noire-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/05d93f83-ff30-4e03-a717-5fd90f26e03b.jpg/sm/FullhausLANoire3.jpg","duration":3069,"publication_date":"2018-03-13T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gta-doom-heist-13","changefreq":"weekly","video":[{"title":"2018:E53 - GET REKT - GTA 5 Doomsday Heist Gameplay Part 13","description":"Click below to see the next heist today or else!\r\nhttp://roosterteeth.com/episode/gameplay-2018-gta-doom-heist-14?utm_source=youtube.com&utm_medium=referral&utm_campaign=Next%20Ep%20Content%20Referrals%20YouTube&utm_content=GTA%20Gameplay\r\n\r\nJames teaches us the most valuable lesson this week by always buckling up, even if it's just a video game. Safety first kids. Expecially if you're in a Chucky Cheese.\r\n\r\nBruce taught us the virtue of patience, even when GTA isn't working, and the missions aren't working. Even when you're pinned between two cars. Patience.\r\n\r\nAdam learned us about not getting distracted. What was the name of that one actor from Burn Notice?\r\n\r\nLawrence informed us about overwatch porn or something, I don't know I zoned out.","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gta-doom-heist-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5e530f14-cf2e-484e-a9ac-60d459315e37.png/sm/GTA13.png","duration":572,"publication_date":"2018-03-13T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-160","changefreq":"weekly","video":[{"title":"2018:E10 - FREE THE NIPPLE? - Open Haus #160","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “HAUS” \r\n\r\nWe answer so many questions, when will you finally have enough answers? Anyway, you can ask us more questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9a27850a-da13-4848-a6de-ef158b3bd70a.jpg/sm/OpenhausThumbnail160.jpg","duration":655,"publication_date":"2018-03-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-one-last-spin-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2018:E58 - SHOCK ME DADDY - Wheelhaus Gameplay","description":"Welcome to the finale of season two of Wheelhaus! Remember all the good times throughout the season, like the one where they played the game. And the time the one game didn't work! Do you remember when they looked up those images? Classic Wheelhaus! See you next season!\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-one-last-spin-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02017666-cc7e-4637-8ea8-7acca844de40.png/sm/wheelfinal.png","duration":671,"publication_date":"2018-03-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-nightmarcher-4","changefreq":"weekly","video":[{"title":"2018:E57 - PARADISE LOST - Nightmarchers Gameplay Part 4","description":"From the developer:\r\n\"Hi everyone, a quick update on the status of Nightmarchers now that we have seen a bunch of press and streamers play the pre-alpha of the game.\r\n\r\nFirst off, it was amazing at the amount of positive feedback we received. We were all very encouraged by most people’s reactions to the game. Obviously not everyone liked it, but I don’t know that 100% of people agree on liking much. :)\"\r\n\r\nSo I guess we're streamers now? Neat!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-nightmarcher-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d7d6a400-172e-47fd-afee-031e6e3fcb46.png/sm/nmer.png","duration":896,"publication_date":"2018-03-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-gringo","changefreq":"weekly","video":[{"title":"2018:E44 - GRINGOS REVIEW GRINGO - Movie Podcast","description":"Did you know that 66% of all men lose their hair by age 35? Visit our sponsor today over at https://www.forhims.com/filmhaus and take care of yourself with your first month for only $5!\r\n\r\nWe were invited to the world premiere of Gringo! The inner 90's kid in me wanted to talk more about Alan Ruck in this movie. Sure, some people will say \"Hey, Ferris Bueller was from 86!\", but that movie was only this beginning. Nervous tourist in 1994's biggest action blockbuster, Speed! Uhh uhh, I think he was also in Twister? Yeah! 90's Alan Ruck was the best. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/_jacobfullerton\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-gringo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed11ee9b-81a8-4eb8-8abe-d357ac092a7e.png/sm/gringo.png","duration":1566,"publication_date":"2018-03-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-the-fast-and-the-curious-l-a-noire-gameplay-part-3","changefreq":"weekly","video":[{"title":"2018:E56 - THE FAST AND THE CURIOUS - L.A. Noire Gameplay Part 3","description":"Another restless night was ahead of me.\r\n\r\nThe arid landscape of the Hollywoodland valleys boiled my skin, and made even my soul perspire. My pocket-watch clicked on without a single worry to the surrounding circumstances that carried its fate. I flipped it open with a gentle process, the sweat from my fingers threatening to betray me like the many women in my life prior, one hanging in the balance even now. Its dull and blank face read 10:02AM. I brought the device to my ear to hear the small mechanics moving better, but I already knew it wasn't broken and the time it held could only be the truth.\r\n\r\nI rose from the couch with groan, both in part from my aging body and the couch itself that rocked back and forth. How many times had I fallen asleep there, and would continue to do so? I pushed the thought from my head and replaced it with another dollop of grease for my hair and ran my fingers through it.\r\n\r\nThe day outside was humid, and busy with people bustling around for the lunch rush. Nobody around could have guessed the terror that would soon enter and quickly depart from their life.\r\n\r\nI strolled through the park, remarking on how calm and gentle everything seemed to be. A tear brought to my eye halted my steps so far as to force me to sit on one of the benches. How did I get here again? How would I manage to--\r\n\r\nThe inner conversation I was carrying was cut short. I carried it on so loudly I didn't hear the shrieks and pandemonium announcing the arrival of my final destination. Before I knew it, it was on top of me, crunching and grinding; which I later understood wasn't the car, but my body, or what would later remain of it.\r\n\r\n\"Look at the fountains!\" I heard over the destruction. It could have only come from the car.\r\n\r\nAs it drove away, it wasn't the fact that a police issued vehicle had ran me down in the park, or that many of the surrounding people continued on as if nothing had happened, leaving me to bleed out. It was still focused on my own misfortune. The problems that seemed so small in compar","player_loc":"https://roosterteeth.com/embed/gameplay-2018-the-fast-and-the-curious-l-a-noire-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5f7e08c9-ea9a-4534-9d15-03d6db59450d.png/sm/fastcurious.png","duration":1003,"publication_date":"2018-03-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-simulator-showdown-gameplay-part-1","changefreq":"weekly","video":[{"title":"2018:E15 - Simulator Showdown Gameplay","description":"Alanah assists our funny fellows with some silly simulators. Pretty ponies and hefty horses clash with the triumphant trash that is air transport.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-simulator-showdown-gameplay-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0d135159-bc80-4b20-9e67-7dc0414d5149.jpg/sm/FullhausSimulator.jpg","duration":3411,"publication_date":"2018-03-08T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-basic-beaches-human-fall-flat-gameplay-boats-part-1","changefreq":"weekly","video":[{"title":"2018:E51 - BASIC BEACHES - Human Fall Flat Gameplay (Boats Part 1)","description":"A short haiku about this bullsh*t\r\n\r\nAll my friends left me\r\nTook the boats without reason\r\nCrashed them Bruce wheezing\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-basic-beaches-human-fall-flat-gameplay-boats-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb0afc38-464a-4716-833a-3c11123b0885.png/sm/boats.png","duration":912,"publication_date":"2018-03-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gta-12","changefreq":"weekly","video":[{"title":"2018:E52 - STUNT BROS - GTA 5 Doomsday Heist Gameplay Part 12","description":"May 22, 1996-\r\nAn unidentified man was killed today while traveling from Britain to France via The Chunnel. According to onlookers, the man was attempting to propel himself from the front of a helicopter to the train behind him by blowing up the helicopter with some sort of gum-shaped explosive device. His tiny remains will be laid to rest in Paris, where they are currently being scraped off the rear of the train by authorities.","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gta-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/50e3747c-f159-4129-8356-0672637d189e.png/sm/GTA12.png","duration":886,"publication_date":"2018-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-164","changefreq":"weekly","video":[{"title":"2018:E164 - FAR CRY 5 IS TOO BIG? - Dude Soup Podcast #164","description":"Please support our sponsors!\r\n[Mack Weldon] Get 20% off your purchase at http://www.mackweldon.com/ with promo code \"dude\"\r\n[The Black Tux] Get $20 off your purchase at http://www.theblacktux.com/soup\r\n\r\nSOURCES:\r\n[YouTube] Far Cry 5: Arcade - https://goo.gl/Ps8MHM\r\n[YouTube] Far Cry 5: Post Launch - https://goo.gl/fi1AgS\r\n[YouTube] Far Cry 5: Inside Eden's Gate - https://goo.gl/1jbGSZ\r\n[Eurogamer] Sources: Yes, Diablo 3 is coming to Nintendo Switch - https://goo.gl/Grpk3y\r\n[GamingBolt] Is Cyberpunk 2077 Also Releasing On The PS5 And Next Xbox? https://goo.gl/pFkrPg\r\n[Xbox Wire] Announcing Inside Xbox, Premiering March 10th - https://goo.gl/ZVx2GV\r\n[CNBC] Fresh beef is coming to a McDonald's near you - https://goo.gl/N51qTG\r\n\r\nHARD NETTIN:\r\nApetor: https://goo.gl/j74XEj\r\nThe Floppotron: https://goo.gl/Qib1cB\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/_jacobfullerton\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f425f08-93ee-4c8a-8fb2-23ed73540d6b.png/sm/164.png","duration":5768,"publication_date":"2018-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-164","changefreq":"weekly","video":[{"title":"2018:E164 - WE ARE FUTUREPROOF","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd328ae7-87a2-4563-ac5f-64daad5aea48.jpg/sm/PS164.jpg","duration":1991,"publication_date":"2018-03-07T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-emily-wants-to-play-too-gameplay","changefreq":"weekly","video":[{"title":"2018:E14 - Emily Wants to Play Too Gameplay","description":"Prepare to penetrate some harrowing hallways and creepy corners of a new haunted house as our gang of gallant ghost-getters chase some checkermen and do some dangerously dirty dishes.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-emily-wants-to-play-too-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bb9820e6-505d-4c64-a9a5-d9e95900da2a.jpg/sm/FullhausEmilyWantsToPlayToo.jpg","duration":3435,"publication_date":"2018-03-06T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-bros-before-hose-gta-5-doomsday-heist-gameplay-part-11","changefreq":"weekly","video":[{"title":"2018:E50 - BROS BEFORE HOSE - GTA 5 Doomsday Heist Gameplay Part 11","description":"People used to make fun of me working at Geek Squad. I mean, I guess I can see why with the black and white VW Bug we'd jet around in, or the matching uniforms, the smell we exuded, or even the Best Buy© chastity belts that drew some unsightly comments when we made house calls, but little did they know my job was much like this video.\r\n\r\nWe mostly just sat around and played video games together.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-bros-before-hose-gta-5-doomsday-heist-gameplay-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5e1e53fd-eee2-4214-8b28-db69c57d6d16.png/sm/broshose.png","duration":810,"publication_date":"2018-03-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-159","changefreq":"weekly","video":[{"title":"2018:E9 - WORLD'S WORST BOYFRIENDS? - Open Haus #159","description":"Ask us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\n\r\nI just want to go on the record of saying while taking notes for this episode, I absolutely wanted to jump up and scream, \"BAM BAM WAS ADOPTED IN THE FLINTSTONES MOVIE\", but I also didn't want anyone thinking I was even less cool than I already am. But then again they were talking about Earth-8, and everything there is all kinds or backwards. But still, he was an adopted cro-magnon child. That's been eating me up inside.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/667fad8f-7395-4cd5-a0b9-f693b4008aa5.jpg/sm/OpenhausThumbnail159.jpg","duration":768,"publication_date":"2018-03-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-third-year-anniversary-party-mix","changefreq":"weekly","video":[{"title":"2018:E13 - Third Year Anniversary Party Mix","description":"Here's the tracklist! I didn't have time to make it as mixed / sampled as I was imagining, but that's how first attempts go. I made this in Adobe Premiere since I didn't really have time to learn new software, but I'm starting to dig in.\n\n\nAlso, massive thanks to @GIF_Haus for supplying all the visuals! I threw a trippy overlay on it because why not.\n\n\n\n\nThanks for listening!\n\n\n\n\nNiel Cicierega - Starting Line\n\n\n\nDJ John - It Takes Two to Kiss (Rob Base vs. Prince)\n\n\n\nOh No - Welcome to Los Santos vs. Golf With Your Friends - Mr. Sunshine\n\n\n\nThe Clash - Rock the Casbah\n\n\n\nMark Ronson - Uptown Funk\n\n\n\nJustin Bieber - Sorry\n\n\n\nNelly - Number One vs. GUTS Theme Song\n\n\n\nMen at Work - Down Under\n\n\n\nAriana Grande - Focus\n\n\n\nRobbie Williams - It's Only Us\n\n\n\nSonic - Green Hill Zone\n\n\n\nMetallica - I Disappear vs. Earth Defence Force Chants\n\n\n\nPropellerheads - Spybreak\n\n\n\nOpen Haus - Get It On vs. Gods of Egypt Trailer\n\n\n\nPitbull - Fireball\n\n\n\nLoona - Vamos a la Playa\n\n\n\nMiami Vice Theme vs. Robocop Theme\n\n\n\nWaterworld Soundtrack - Escaping the Smokers\n\n\n\nReel Big Fish - Sell Out\n\n\n\nMarc Jackson Burrows - We're Gonna Have a Good Time vs. American Gladiators Theme\n\n\n\nOingo Boingo - Little Girls vs. Gary Glitter - Rock n Roll Pt. 2\n\n\n\nBilly Joel - Uptown Girl\n\n\n\nBaltimora - Tarzan Boy\n\n\n\nDavid Bowie - Modern Love\n\n\n\nGowan - Strange Animal\n\n\n\nM - Pop Musik\n\n\n\nWeezer - Say it Ain't So\n\n\n\nSeal - Kiss from a Rose\n\n\n\nSmart Alec - Mothers Be Aware (Arwelone Remix)\n\n\n\nToto - Africa","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-third-year-anniversary-party-mix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c2859e-4fb8-4ac0-a4ed-da753c606b13/sm/1788482-1519871012044-FH3Year.png","duration":6196,"publication_date":"2018-03-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-airport-sim","changefreq":"weekly","video":[{"title":"2018:E46 - FEAR OF FLYING - Terrible Simulators Gameplay Part 2","description":"I recently had to usher a few friends who have never been on an aeroplane before through their mile high cherry popping. Not to be confused with the \"mile high club\", this one does not involve graphic depictions of what I would do to my friend Lauren in one of those cramped bathrooms. Not to say I wouldn't have minded popping both in one go for her, the only one who seemed to be down with this idea was Spencer. I mean he's a nice guy too, but he has grandmotherly elbows and I don't know, just takes me out of it you know?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-airport-sim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df3171e0-5d70-49ed-b7fd-3e0f1062aa4f.png/sm/sim2.png","duration":602,"publication_date":"2018-03-04T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wh","changefreq":"weekly","video":[{"title":"2018:E49 - JACKED IN VR - Wheelhaus Gameplay","description":"Imagine this, a world where everyone could go onto a server and meet and interact with others in various forms and getups. Forge friends, make enemies, and seduce lovers, all from the comfort of your home. I'm talking again about VR Chat, aren't I? We should play VR Chat.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6fe50cf2-2547-4899-a827-6f0529a4fa72.png/sm/whnew.png","duration":985,"publication_date":"2018-03-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-s-darko","changefreq":"weekly","video":[{"title":"2018:E43 - WORST SEQUEL EVER? - Movie Podcast","description":"Making stuff is hard. Writing and directing a sequel to one of the biggest cult films ever is a daunting challenge.\r\n\r\nHere is the poll for what we should do next!\r\nhttp://www.strawpoll.me/15185433\r\n\r\nHuge thank you to Jared Bauer from https://youtube.com/wisecrack\r\ngoo.gl/jpoJkm\r\n\r\nYou can also check Adam's take on Donnie Darko on the Show Me The Meaning podcast here:\r\nhttps://itunes.apple.com/us/podcast/donnie-darko-directed-by-richard-kelly-revisting-teen/id1319437966?i=1000404606164&mt=2\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-s-darko","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dcb3f5f1-966f-4b68-8ee1-9596181ca2c9.png/sm/Sdarkfilm.png","duration":2264,"publication_date":"2018-03-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-emilyplay2","changefreq":"weekly","video":[{"title":"2018:E45 - NIGHT TERRORS - Emily Wants to Play Too Gameplay","description":"Day 4, \r\n\r\nI am still currently hiding behind the curtains, the time is finally drawing near. \r\n\r\nDays previous, Elyse came to me in the middle of an edit with a fantastic idea. All it would take, a few minutes of my time and lying in wait in the old office to scare the guys while they played a new scary game.\r\n\r\nI can only allude to the game play recording having been pushed back since no one has been in the office since the extended lunch break return for Dude Soup's recording. I can hear Elyse's voice on this episode, and I want to call out to ask if I should keep this charade going, but I also cherish my hiding spot and would hate to give it up so easily. I try texting her phone; \"Who's this and is that a California phone number?\" Apparently the number Elyse gave me connected me with a young adult man from the Connecticut hemisphere. The phone died only moments later.\r\n\r\nI return to this journal entry hours later for the lights have finally turned down and I can feel the atmosphere in the room shift. It is beginning. The thoughts of relieving my bowels evacuate my foreground thoughts almost immediately. As their recording starts, I steal a glance through the curtains part: it's a sequel to Emily Wants to Play. I need to plan my approach very carefully.\r\n\r\nI try to stifle the sloshing and gurgling in my stomach caused from rancid food foraged from the fridge, and the numerous treats that were thrown carelessly for Benson, but were either ignored or never found. I am the Bear Grylls of my generation, and I could flourish here if events forced my hand.\r\n\r\nThe time feels nigh. \r\n\r\nI pull my anime mask down. \r\n\r\nLet's get to work.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/jonsmiff \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-emilyplay2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/595fc8dd-ba16-440f-8ba0-91c13b0e7a03.png/sm/emilytoo.png","duration":729,"publication_date":"2018-03-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-suicide-guy-gameplay","changefreq":"weekly","video":[{"title":"2018:E12 - Suicide Guy Gameplay","description":"Suicide is a very serious topic all jokes aside.\r\nPlease reach out to the National Suicide Prevention Lifeline\r\nCall 1-800-273-8255\r\nThey are available 24 hours everyday and are some of the best people to talk to.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-suicide-guy-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ac33281-2fc6-48a5-8108-a0069d4fe4ce.jpg/sm/FullhausSuicideGuy.jpg","duration":3089,"publication_date":"2018-03-01T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-bestoffeb","changefreq":"weekly","video":[{"title":"2018:E47 - BEST OF SEAMEN - Best of Funhaus February 2018","description":"We've been from port to port and bring you the best list of seamen at your disposal around these chain of isles. So sit back, pop that peg leg up, and enjoy all the fun we had in February!\r\nCANDYMAN COMETH - Golf with Your Friends Gameplay\r\nhttps://www.youtube.com/watch?v=Z6h4OgwKIVM\r\n\r\nZOMBIE NEXT DOOR - Wheelhaus Gameplay\r\nhttps://www.youtube.com/watch?v=c1hs5unCLAw\r\n\r\nCRASHING THE ROYAL WEDDING? - Open Haus #155\r\nhttps://www.youtube.com/watch?v=gpQhO8qf3ag\r\n\r\nIT'S A DEATH TRAP - GTA 5 Doomsday Heist Gameplay Part 7\r\nhttps://www.youtube.com/watch?v=oM7OJd4KGss\r\n\r\nTHE CURSE OF THE BROWN PEARL - Sea of Thieves Gameplay\r\nhttps://www.youtube.com/watch?v=obBso1ZoK8Y\r\n\r\nANOTHER CASE UNSOLVED - L.A. Noire Gameplay Part 2\r\nhttps://www.youtube.com/watch?v=GoMvkODDdzk\r\n\r\nKNIFE GUYS FINISH LAST - Alekhine's Gun Gameplay Part 6\r\nhttps://www.youtube.com/watch?v=Hhguh7fj5L8\r\n\r\nRACING FOR PINK - Wheelhaus Gameplay\r\nhttps://www.youtube.com/watch?v=z3463_vwxqw\r\n\r\nLEI'D IN HAWAII - Nightmarchers Gameplay Part 1\r\nhttps://www.youtube.com/watch?v=bhsGN-aeq2g\r\n\r\nVOICE ACTING FOR DUMMIES - Wheelhaus Gameplay\r\nhttps://www.youtube.com/watch?v=aOvVkzFaSS4\r\n\r\nWE START A CULT? - Open Haus #157\r\nhttps://www.youtube.com/watch?v=7zG9fBCeloY\r\n\r\nPEST CONTROL - Earth Defense Force 4.1 Gameplay Part 7\r\nhttps://www.youtube.com/watch?v=RKHcCJyfJHk\r\n\r\nHOW NOT TO GET HELP - Suicide Guy Gameplay\r\nhttps://www.youtube.com/watch?v=vbN-W3EoYK4\r\n\r\nYOU DIRTY HORSE - Terrible Simulators Gameplay Part 1\r\nhttps://www.youtube.com/watch?v=fCiIdwz5AEU\r\n\r\nBANNED FOR LIFE? - Open Haus #158\r\nhttps://www.youtube.com/watch?v=87Lh_IRSYpk\r\n\r\nRUN A TRAIN - Wheelhaus Gameplay \r\nhttps://www.youtube.com/watch?v=Q7abSFBNs1Y\r\n\r\nSTRONGEST IN THE OFFICE - Dragon Ball FighterZ Gameplay\r\nhttps://www.youtube.com/watch?v=4Y-36o1kc50\r\n\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/Omarcito\r\nht","player_loc":"https://roosterteeth.com/embed/gameplay-2018-bestoffeb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/235f3729-b540-46e8-9c95-292ffec5d168.jpg/sm/February2018.jpg","duration":1077,"publication_date":"2018-03-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-human-fall-flat-gameplay-level-rush","changefreq":"weekly","video":[{"title":"2018:E44 - DOWN IN THE DUMPS - Human Fall Flat Gameplay (level rush)","description":"New TV show idea:\r\nA prince of a annihilated alien warrior race befriends the fastest man on planet Earth, who is currently racing the clock to find a cure for his new family member who is a snowman currently melting in the NOS infused back roads of California. The villain is some sort of millennial who owns a silk shirt with his own face on it.\r\n\r\nI will call it, Furious Jack Frast Z\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-human-fall-flat-gameplay-level-rush","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa408bd3-5e54-4afe-89a5-eb263eee8ee9.png/sm/levelrush.png","duration":859,"publication_date":"2018-03-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-daredevil-marvel-vs-kenshi-mortal-kombat","changefreq":"weekly","video":[{"title":"S3:E9 - Daredevil (Marvel) VS Kenshi (Mortal Kombat)","description":"Marvel's Daredevil takes on Kenshi from Mortal Kombat to determine who is the ultimate combatant without the need for sight!","player_loc":"https://roosterteeth.com/embed/dbx-season-3-daredevil-marvel-vs-kenshi-mortal-kombat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d82c3d96-f424-4b4d-bf01-b4eea6bc0845.jpg/sm/04272018dbxthumb.jpg","duration":95,"publication_date":"2018-04-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-avengers-that-should-die-in-infinity-war","changefreq":"weekly","video":[{"title":"S3:E18 - Avengers That Should DIE in Infinity War","description":"Avengers: Infinity War! The MCU's big event and hopefully a blood bath. This week Nick counts down the Top 10 characters we want to bite the dust.","player_loc":"https://roosterteeth.com/embed/top-10-season-3-avengers-that-should-die-in-infinity-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0603bfce-cbf3-47ef-8ad5-b39a1ae47cac.jpg/sm/04252018top10avengersthumb.jpg","duration":575,"publication_date":"2018-04-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-pit-uprises-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E10 - Pit is Pitted in a DEATH BATTLE!","description":"Can the Angel Captain feather the storm in a DEATH BATTLE?","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-pit-uprises-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f0317b6-b9b1-438f-b8b5-e3461d28722f.jpg/sm/04232018dbpreviewpit_thumbnail.jpg","duration":196,"publication_date":"2018-04-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-rich-billionaire-sh-t-sudden-death-74","changefreq":"weekly","video":[{"title":"S2:E73 - Sudden DEATH #73 - Rich Billionaire Sh*t","description":"The cast checks out the trailer for Poultrygeist, talks about what they'd do with a billion dollars, and give their opinions on the new Live Action Bleach... kinda.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-rich-billionaire-sh-t-sudden-death-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/379d5927-b7cb-4739-86c2-93b0e1ebe59d.png/sm/04202018suddendeath.png","duration":936,"publication_date":"2018-04-22T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-ghost-t-rexes-are-the-scariest-thing","changefreq":"weekly","video":[{"title":"S3:E73 - Jurassic World: Kingdom Hearts","description":"This week the cast answers some questions about DEATH BATTLE, check out the new Jurassic World trailer, break down Jack Sparrow vs Indiana Jones, and discuss some of their biggest fears and phobias.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-ghost-t-rexes-are-the-scariest-thing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d0835158-aa39-4253-b9ff-92241f0d9c58.png/sm/04202018dbcast.png","duration":3596,"publication_date":"2018-04-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-cartoon-all-stars-vs-drugs","changefreq":"weekly","video":[{"title":"S3:E8 - Cartoon All Stars VS Drugs","description":"Jocelyn combs through one of the craziest PSA crossovers ever, Cartoon All Stars To the Rescue!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-cartoon-all-stars-vs-drugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8f25eeb1-398c-4681-b330-2c143c4df5df.jpg/sm/deskofcartoonallstarsthumbnail.jpg","duration":381,"publication_date":"2018-04-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-manliest-characters","changefreq":"weekly","video":[{"title":"S3:E17 - Manliest Characters","description":"This week Nick is counting down the top 10 manliest characters in existence!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-manliest-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/143e18f7-f92d-4b02-804a-4512c2c9f69e.jpg/sm/manliest-characters-thumbnail.jpg","duration":499,"publication_date":"2018-04-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-sora-unlocks-death-battle","changefreq":"weekly","video":[{"title":"S5:E9 - Sora Unlocks DEATH BATTLE","description":"Does the Kingdom Hearts hero have the key to victory in a DEATH BATTLE?","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-sora-unlocks-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/87d5ff91-50df-4b24-9e95-fa22500bedfd.jpg/sm/04162018dbpreviewsorart_thumbnail.jpg","duration":153,"publication_date":"2018-04-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-72-the-meg-the-controversy","changefreq":"weekly","video":[{"title":"S2:E72 - Sudden DEATH #72 - The Meg... The Controversy","description":"The Cast reacts to The Meg trailer and Torrian has very strong opinions about Jason Statham","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-72-the-meg-the-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0ad52d2a-8b2f-418b-8797-cbba10c64aea.jpg/sm/04152018suddendeath.jpg","duration":1291,"publication_date":"2018-04-15T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-was-crash-vs-spyro-a-stomp","changefreq":"weekly","video":[{"title":"S3:E72 - Was Crash VS Spyro a Stomp?","description":"The Cast answer your questions about the Crash VS Spyro DEATH BATTE, they review the Han Solo movie trailer, and debate who would win between the Hamburgler vs Wimpy","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-was-crash-vs-spyro-a-stomp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71a3b00e-84db-4bd4-8b44-11680149174b.jpg/sm/04142018dbcast.jpg","duration":3610,"publication_date":"2018-04-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-luffy-vs-mr-fantastic","changefreq":"weekly","video":[{"title":"S3:E8 - Luffy VS Mr Fantastic","description":"The wanna be king of the pirates Monkey D. Luffy takes on vs the leader of the Fantastic Four Mr. Fantastic in the stretchiest DBX to date!","player_loc":"https://roosterteeth.com/embed/dbx-season-3-luffy-vs-mr-fantastic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/922665a5-ffe2-4d39-8ecd-4d4ae2836658.jpg/sm/luffyvsmrfantastic.jpg","duration":87,"publication_date":"2018-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-dragons-w-death-battle-s-wiz","changefreq":"weekly","video":[{"title":"S3:E16 - Dragons w/ Death Battle's Wiz!","description":"While researching Spyro for the latest Death Battle, Wiz discovered the top 10 most amazing dragons you'll ever see!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-dragons-w-death-battle-s-wiz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3722411b-0c34-4e8d-b1e7-b0fa491b04e0.png/sm/04112018top10dragonswithwiz.png","duration":260,"publication_date":"2018-04-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-with-commentary-2018-crash-bandicoot-vs-spyro-w-commentary","changefreq":"weekly","video":[{"title":"2018:E4 - Crash VS Spyro w/Commentary","description":"Ben, Torrian, Kristina, and Sean talk about the DEATH BATTLE of the PlayStation's mascots from the 90's.","player_loc":"https://roosterteeth.com/embed/death-battle-with-commentary-2018-crash-bandicoot-vs-spyro-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b955cf24-987e-42bb-9713-11f1f6cef05e.png/sm/crashspyrocommentary.png","duration":1133,"publication_date":"2018-04-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-5-crash-vs-spyro","changefreq":"weekly","video":[{"title":"S5:E4 - Crash VS Spyro","description":"The ultimate rivalry of two classic PlayStation mascots comes to a head!","player_loc":"https://roosterteeth.com/embed/death-battle-season-5-crash-vs-spyro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82eb2645-1128-407c-a048-064864475aa2.jpg/sm/04092018_CrashVsSpyro_Thumbnail.jpg","duration":1133,"publication_date":"2018-04-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-71-the-reverse-poop-challenge","changefreq":"weekly","video":[{"title":"S2:E14 - Sudden DEATH #71 - The Reverse Poop Challenge","description":"Sam brings up an interesting hypothetical involving a wizard and reverse Benjamin \"Butt\"oning.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-71-the-reverse-poop-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3f559b2-ce37-445a-b7e1-8af53d6ae581.png/sm/04092018SuddenDeathRT.png","duration":834,"publication_date":"2018-04-08T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-crash-vs-spyro-sneak-peak","changefreq":"weekly","video":[{"title":"S3:E71 - Crash vs Spyro Sneak Peak!","description":"The cast talks about the process behind animating Crash vs Spyro, shows off a little animation, and talks Infinity War, Lobster, and Rock Lee VS Sanji.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-crash-vs-spyro-sneak-peak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b02097b6-aab8-4a32-b804-b1cba061fdcf.png/sm/04082018DEATHBATTLECastYT.png","duration":3297,"publication_date":"2018-04-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-boob-physics","changefreq":"weekly","video":[{"title":"S3:E7 - Boob Physics","description":"Jocelyn explores the history of boob physics in games as well as some of the breast and worst examples","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-boob-physics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1d106d68-c799-414b-9b1d-338931e23faa.jpg/sm/04062018DODBThumb.jpg","duration":272,"publication_date":"2018-04-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-worst-sonic-characters","changefreq":"weekly","video":[{"title":"S3:E15 - WORST Sonic Characters","description":"We all know the Blue Blur has way too many buddies, but none are as obnoxious as the ten you see here!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-worst-sonic-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0dce6063-d79f-4f67-9323-6d052fb4a438.png/sm/04042018Top10WorstSonicCharacters.png","duration":561,"publication_date":"2018-04-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-spyro-lights-up-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E8 - Spyro Charges into DEATH BATTLE","description":"The legendary purple dragon is eager to burn the competition and prove he's the ultimate PlayStation mascot","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-spyro-lights-up-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/66b63984-be44-433f-8198-690a70f718af.jpg/sm/SpyroThumb.jpg","duration":160,"publication_date":"2018-04-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-70-a-miracle-happens","changefreq":"weekly","video":[{"title":"S2:E13 - Sudden DEATH #70 - A Miracle Happens","description":"Torrian performs a miracle right before your eyes","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-70-a-miracle-happens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/889ba632-06c4-4c55-aad2-c839587bef7d.jpg/sm/04012018SDTHumb.jpg","duration":1286,"publication_date":"2018-04-01T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-final-fantasy-monster-hunter-cookoff","changefreq":"weekly","video":[{"title":"S3:E70 - Final Fantasy Monster Hunter Cookoff","description":"The Cast introduces the new DEATH BATTLE writer and talks Flat Earthers, a cook off between Ignis and Meowscular Chef and Torrian is a space man","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-final-fantasy-monster-hunter-cookoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/46287e32-d100-4374-a1d3-65bf5a59ad3c.jpg/sm/03312018DBCastThumb.jpg","duration":2687,"publication_date":"2018-03-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-blade-vs-hell-boy","changefreq":"weekly","video":[{"title":"S3:E7 - Blade VS Hellboy","description":"The Half-Vampire and Half-Demon face off to prove who's the ultimate half breed!\r\n\r\nThis episode's animator is Benny \"Bio\" Landa! https://twitter.com/BioRhythmi","player_loc":"https://roosterteeth.com/embed/dbx-season-3-blade-vs-hell-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6363f815-c8c3-46d6-98c5-966a49052fb1/sm/2056981-1522419547215-03302018DBXThumb.jpg","duration":165,"publication_date":"2018-03-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-numbers","changefreq":"weekly","video":[{"title":"S3:E14 - Numbers","description":"Numbers make the world go 'round. Only ten qualify for our list. Buckle up for our April Fools Top 10!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-numbers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f673f0d4-994c-4792-8258-2e81f14640bc.png/sm/03282018Top10Numbers.png","duration":503,"publication_date":"2018-03-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-crash-bandicoot-dashes-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E7 - Crash Crashes into DEATH BATTLE","description":"This mutated material is ready to prove he's PlayStation's ultimate mascot!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-crash-bandicoot-dashes-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5b836dba-e1b4-40d4-81a6-f92cc6b35a24.jpg/sm/03262018CrashPreview.jpg","duration":188,"publication_date":"2018-03-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-69-screwattack-vs-achievement-hunter","changefreq":"weekly","video":[{"title":"S2:E12 - Sudden DEATH #69 - ScrewAttack vs Achievement Hunter","description":"The cast talks about Sea of Thieves and Chad gets vengeance on Achievement Hunter","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-69-screwattack-vs-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7146a662-fe3d-46c8-9f7d-5801c908503a/sm/2056984-1521955612098-03252018SDThumb.jpg","duration":936,"publication_date":"2018-03-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-jotaro-vs-kenshiro-questions-answered","changefreq":"weekly","video":[{"title":"S3:E11 - Jotaro VS Kenshiro Questions Answered","description":"The cast answers your questions about Jotaro vs Kenshiro, talks the new Dragon Ball Super trailer and debates who would win between Yamcha and Aquaman","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-jotaro-vs-kenshiro-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e3aa13d-7c02-43e8-950a-9026abed3764.jpg/sm/SurprisePS.jpg","duration":3799,"publication_date":"2018-03-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-japan-s-strange-love-of-crash-bandicoot","changefreq":"weekly","video":[{"title":"S3:E6 - How Japan Changed Crash Bandicoot","description":"This week Jocelyn digs into why Japan loves Crash and the changes they made when they brought him overseas!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-japan-s-strange-love-of-crash-bandicoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5c98ff2-ccfa-40f4-a936-ba2d0050507b.jpg/sm/03232018DoDBCrashThumbnail.jpg","duration":271,"publication_date":"2018-03-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-games-that-should-be-movies","changefreq":"weekly","video":[{"title":"S3:E13 - Games That Should Be Movies","description":"Lots of games would be a great fit for the big screen. Nick's counting down the ones that deserve it the most!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-games-that-should-be-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/edbd44b7-bd2f-4e9d-a466-97eeecdc4267.png/sm/03212018Top10GamesThatShouldBeMovies.png","duration":556,"publication_date":"2018-03-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-with-commentary-2018-jotaro-vs-kenshiro-w-commentary","changefreq":"weekly","video":[{"title":"2018:E3 - Jotaro Vs Kenshiro w/Commentary","description":"Ben, Sam, and Noel give you a look into the making of the manliest episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-with-commentary-2018-jotaro-vs-kenshiro-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f5e198e-1708-4fe6-b265-b0b0b789021b.jpg/sm/DeathBattle_wCommentary_THUMBNAIL.jpg","duration":911,"publication_date":"2018-03-20T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-5-jotaro-vs-kenshiro-jojo-s-bizarre-adventure-vs-fist-of-the-north-star-death-battle","changefreq":"weekly","video":[{"title":"S5:E3 - Jotaro VS Kenshiro (JoJo's Bizarre Adventure VS Fist of the North Star) | DEATH BATTLE!","description":"Manliness has never looked so good. Two warriors enter, and only one will leave alive!\r\n\r\nWiz/Showrunner: Ben B. Singer - https://twitter.com/BenBSinger\r\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\r\nProject Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam\r\nAnimator: Zack Watkins - https://twitter.com/xZackAttack27x\r\nEditor: Noël Wiggins - https://twitter.com/NOELWIGGINSfilm\r\nSprite Artist: Chris Bastin - https://twitter.com/HyperJerk \r\nAudio: David Levy - https://twitter.com/DavidLevyMusic \r\nAudio: Chris Kokkinos - https://twitter.com/christheFER\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Wiz & Boomstick – Death Battle Theme” by Brandon Yates - https://twitter.com/bmichaelyates\r\nGet it for yourself on iTunes: https://apple.co/2FMCaBC \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Bizarre Stars” by Werewolf Therewolf - https://twitter.com/ww_tw\r\nGet it on iTunes: https://apple.co/2FXh7fL","player_loc":"https://roosterteeth.com/embed/death-battle-season-5-jotaro-vs-kenshiro-jojo-s-bizarre-adventure-vs-fist-of-the-north-star-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07ede55e-10b4-4ad8-a133-7dfe50ed2737.jpg/sm/03192018_JotaroVsKenshiro_Thumbnail.jpg","duration":910,"publication_date":"2018-03-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-nostalgia-trip","changefreq":"weekly","video":[{"title":"S2:E68 - Sudden DEATH #68 - Nostalgia Trip","description":"The Cast talks about the early days of ScrewAttack, specifically embarrassing old Clip of The Week videos","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-nostalgia-trip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47da775c-e11b-4078-9c4e-7e7c3619a370/sm/2056984-1521397063339-03182018SDThumb.jpg","duration":960,"publication_date":"2018-03-18T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-kenshiro-vs-jotaro-sneak-peak","changefreq":"weekly","video":[{"title":"S3:E10 - Kenshiro VS Jotaro Sneak Peak!","description":"The cast shows off a sneak peak of the fight animation for Kenshiro vs Jotaro and they talk about the editing process of DEATH BATTLE, things dying and who would win between Sly Cooper and Rouge the Bat","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-kenshiro-vs-jotaro-sneak-peak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e66236bb-66f3-4622-be11-f32616243695.jpg/sm/C.jpg","duration":3564,"publication_date":"2018-03-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-hulk-vs-juggernaut","changefreq":"weekly","video":[{"title":"S3:E6 - Hulk VS Juggernaut","description":"These two behemoths of physical power go head to head in the latest DBX!","player_loc":"https://roosterteeth.com/embed/dbx-season-3-hulk-vs-juggernaut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/691cdc55-6749-4818-809d-7e1eef147e91.jpg/sm/03162018DBXThumb.jpg","duration":95,"publication_date":"2018-03-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-honorable-mentions-characters-we-want-in-super-smash-bros","changefreq":"weekly","video":[{"title":"S3:E12 - Honorable Mentions: Characters We Want in Super Smash Bros","description":"Here are the honorable mentions that didn't make the cut in our Top 10 Characters We Want in Smash Bros list!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-honorable-mentions-characters-we-want-in-super-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b40b3f5f-1bd5-4d5c-bad6-6e9e3d453ab6.jpg/sm/Thumbnail03142018HonorableMentionsSmashBrosTop10.jpg","duration":247,"publication_date":"2018-03-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-characters-we-want-in-super-smash-bros","changefreq":"weekly","video":[{"title":"S3:E11 - Characters We Want in Super Smash Bros","description":"Smash is coming to the Switch! Whether it's a port or an all new installment, these are the Top 10 characters we want included!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-characters-we-want-in-super-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c45b454c-a912-422b-b2ad-3b1c30ef4179.jpg/sm/03142018SmashThumbnail.jpg","duration":507,"publication_date":"2018-03-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-kenshiro-atat-attacks-death-battle","changefreq":"weekly","video":[{"title":"S5:E6 - Kenshiro ATAT-ATtacks DEATH BATTLE!","description":"The stoic wanderer is ready to acu-punch his way into DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-kenshiro-atat-attacks-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9d561efe-4952-4f46-b109-945a4af952a8.jpg/sm/031218DBPreviewKenshiroTHUMBNAIL.jpg","duration":134,"publication_date":"2018-03-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-67-don-t-trust-dentists","changefreq":"weekly","video":[{"title":"S2:E10 - Sudden DEATH #67 - Don't trust Dentists","description":"The cast talks about Torrian's car being in the shop already, shady businesses, and Sam reveals his distain for dentistry","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-67-don-t-trust-dentists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e029dbf-e6c7-4c71-a90a-7f5906cea7a8/sm/2056984-1520785517732-03112018SDthumb.jpg","duration":816,"publication_date":"2018-03-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-animating-death-battle","changefreq":"weekly","video":[{"title":"S3:E67 - Animating DEATH BATTLE","description":"The cast talks about the process behind animating Raven VS Twilight, the new Smash Bros announcement, and Winston VS Gorilla Grod","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-animating-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b9b35403-e76a-442b-bc5f-9b36d7ef1d24.jpg/sm/Dbc.jpg","duration":3367,"publication_date":"2018-03-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-being-black-panther-sucks","changefreq":"weekly","video":[{"title":"S3:E5 - Being Black Panther Sucks","description":"We all fantasize about being super heroes like Black Panther or Superman, but if you REALLY think about it...it might actually suck...","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-being-black-panther-sucks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eb4d4185-de93-4fef-b50e-9bc12bcb55e4.jpg/sm/03082018DoDB.jpg","duration":299,"publication_date":"2018-03-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-kaiju","changefreq":"weekly","video":[{"title":"S3:E10 - Kaiju","description":"Want to makes a monster more intimidating? Make it enormous! Nick counts down the 10 beastliest giant monsters!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-kaiju","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5abb47ba-39ba-49ff-b452-2c3dab35b3e5.png/sm/03072018Top10Kaiju.png","duration":522,"publication_date":"2018-03-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-jotaro-crusades-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E5 - Jotaro Crusades into DEATH BATTLE!","description":"The dashingly handsome delinquent is standing strong for a DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-jotaro-crusades-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6aeed32-6acd-449a-863a-4cf8d30f568f.jpg/sm/030518DBPreviewJotaroTHUMBNAIL.jpg","duration":160,"publication_date":"2018-03-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-66-all-hell-breaks-loose","changefreq":"weekly","video":[{"title":"S2:E9 - Sudden DEATH #66 - ALL HELL BREAKS LOOSE!","description":"The cast confronts Gerardo about his strange eating habits and all hell breaks loose","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-66-all-hell-breaks-loose","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ca355d3-00f6-48fd-8cde-0cfab11de851/sm/2056984-1520142351444-dbcastss.jpg","duration":921,"publication_date":"2018-03-04T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-raven-vs-twilight-questions-answered","changefreq":"weekly","video":[{"title":"S3:E66 - Raven VS Twilight Questions Answered","description":"The cast answers your questions about the Raven vs twilight episode, we debate who would win between Storm and Korra and we meet two pineapple farmers...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-raven-vs-twilight-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a214605-2c96-4a8a-937a-63ec087de837.jpg/sm/DBCTorianChad.jpg","duration":3564,"publication_date":"2018-03-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-thor-vs-100-pikachus","changefreq":"weekly","video":[{"title":"S3:E5 - Thor VS 100 Pikachu","description":"What happens when Marvel's god of thunder encounters a horde of wild Pikachus? A real electrifying battle! Thanks to the SSF2 Sprite Team for the Pikachu sprites! Check out the latest game from McLeod Gaming Yeah Jam Fury: U, Me, Everybody! http://bit.ly/2t2NAiy\n\n\n\n\n\n\n\n\n\nThis episode's animator is Steven \"MistahJayden\" Mercedes! https://mistah-jayden.deviantart.com/ Follow the creators of DBX ► Torrian: https://twitter.com/AnimatedTorrii ► Austin: https://twitter.com/PotatoHound ► Ben: https://twitter.com/benbsinger","player_loc":"https://roosterteeth.com/embed/dbx-season-3-thor-vs-100-pikachus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee3450b9-0710-43aa-bbfb-95e1485f5f49.png/sm/03022018DBXThorPika.png","duration":112,"publication_date":"2018-03-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-worst-comic-book-movies","changefreq":"weekly","video":[{"title":"S3:E9 - WORST Comic Book Movies","description":"There are more awful comic book movies than issues in the Archie series, but these ten are the worst of the worst!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-worst-comic-book-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac9321c0-a23c-46a1-a00d-734e467c0495.jpg/sm/02282018Top10WorstComicBookMovies.jpg","duration":615,"publication_date":"2018-02-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-with-commentary-2018-raven-vs-twilight-sparkle-dc-vs-my-little-pony-w-commentary","changefreq":"weekly","video":[{"title":"2018:E2 - Raven VS Twilight Sparkle (DC VS My Little Pony) w/ Commentary","description":"Ben, Nick, Luis and Gerardo join us this time to take a look  behind the scenes of Raven VS Twilight Sparkle","player_loc":"https://roosterteeth.com/embed/death-battle-with-commentary-2018-raven-vs-twilight-sparkle-dc-vs-my-little-pony-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea9f3245-4797-4b03-9474-2ae9280c1bc0.png/sm/dbattle.png","duration":1123,"publication_date":"2018-02-27T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-5-raven-vs-twilight-sparkle","changefreq":"weekly","video":[{"title":"S5:E2 - Raven VS Twilight Sparkle (DC VS My Little Pony)","description":"Two powerful titans of empath magic collide, and only the strong will survive!\n\n\"Titans of Magic\" battle music on iTunes: https://apple.co/2EW8k0U\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer - https://twitter.com/BenBSingerBoomstick: Chad James - https://twitter.com/ScrewAttackChadRaven & Twilight: Kira Buckland - https://twitter.com/rinachanProject Lead: Nick Cramer - https://twitter.com/THENervousNickAnimator: Luis Cruz - https://twitter.com/CVAnimationEditor: Gerardo Mejia - https://twitter.com/HybridRainSprite Artist: Chris Bastin - https://twitter.com/HyperJerkBackgrounds: BonesWolbach - https://boneswolbach.deviantart.com Audio: David Levy - https://twitter.com/DavidLevyMusicAudio: Alena Lecorchick - https://twitter.com/LecorchickAlena Audio: Chris Kokkinos - https://twitter.com/christheFERCasting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoupSound Cadence Studios - https://twitter.com/SoundCadenceMusic by Brandon Yates - https://twitter.com/bmichaelyates","player_loc":"https://roosterteeth.com/embed/death-battle-season-5-raven-vs-twilight-sparkle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb345b11-ec0d-474f-8fa2-ece49fffeba0.jpg/sm/02262018_RavenVsTwilightSparkle_Thumbnail.jpg","duration":1080,"publication_date":"2018-02-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-65","changefreq":"weekly","video":[{"title":"S2:E8 - Sudden DEATH #65 - Red Lobster Crabs","description":"The Cast tries to talk about the Black Panther movie and instead debates the topic of lobster vs crab","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b28dfdd-40cb-4ada-b157-50fd4c8c87ae/sm/2056984-1519540136673-02252018SuddenDeath.jpg","duration":65,"publication_date":"2018-02-25T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-65","changefreq":"weekly","video":[{"title":"S3:E65 - Raven vs Twilight Sneak Peak","description":"The cast shows off a sneak peak of the Raven vs Twilight fight and they have some beef with Wonder Woman, Reboot, and a thong.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02bbeadc-4b3e-419c-94f0-035e9fee6146.jpg/sm/dbc65.jpg","duration":2808,"publication_date":"2018-02-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-shamless-godzilla-commercials","changefreq":"weekly","video":[{"title":"S3:E4 - Godzilla is a Sellout","description":"Since the dawn of advertising, companies have used our favorite characters to sell their product, but the king of corporate shills is none other than... Godzilla.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-shamless-godzilla-commercials","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2c8c0585-4e09-4d4d-ac5f-7c13d3dac147.jpg/sm/02232018DoDBThumbnail.jpg","duration":356,"publication_date":"2018-02-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-fighting-game-females","changefreq":"weekly","video":[{"title":"S3:E8 - Fighting Game Females","description":"Nick is counting down the Top 10 ass kicking ladies of fighting games!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-fighting-game-females","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c58abe5b-8066-4d0f-89d6-abc21b0fb000.png/sm/02212018Top10FemaleFightingGameCharacters.png","duration":391,"publication_date":"2018-02-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-twilight-sparkles-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E4 - Twilight Sparkles into DEATH BATTLE!","description":"The Princess of Friendship prepares her knowledge and magical act for this DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-twilight-sparkles-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2ff673dc-3a79-45b8-8677-b30f1bf15da7.png/sm/twilightsparkle.png","duration":147,"publication_date":"2018-02-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-suden-death-64-awful-airport-experiences","changefreq":"weekly","video":[{"title":"S2:E7 - Suden DEATH #64 - Awful Airport Experiences","description":"The Cast shares stories of bad airport experiences.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-suden-death-64-awful-airport-experiences","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a62b7149-d3de-4085-9ff5-eda55aa52057/sm/2056984-1518933405846-02182018SuddenDeath.jpg","duration":790,"publication_date":"2018-02-18T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-another-pony-really","changefreq":"weekly","video":[{"title":"S3:E64 - Another Pony... Really?","description":"The Cast talks about why Twilight Sparkle is taking on Raven, why we don't do certain matchups and sandwiches","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-another-pony-really","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8cd51e1f-2ea2-4336-a98e-ac67db25ffc5.png/sm/dbc24.png","duration":2988,"publication_date":"2018-02-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-chun-li-vs-tifa-lockheart","changefreq":"weekly","video":[{"title":"S3:E4 - Chun-Li VS Tifa Lockhart","description":"It's knuckles vs legs as two of video games' leading ladies go head to head in DBX!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis episode's animator is Zack Watkins!https://www.youtube.com/user/XxZackAttack27xX\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow the creators of DBX \r\n\r\n\r\n\r\n► Torrian: https://twitter.com/AnimatedTorrii \r\n\r\n\r\n\r\n► Austin: https://twitter.com/potatohound \r\n\r\n\r\n\r\n► Ben: https://twitter.com/benbsinger \r\n\r\n\r\n\r\n► Chad: https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/dbx-season-3-chun-li-vs-tifa-lockheart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5de555af-d8bf-4ccb-879f-60cfc6ea6b74.jpg/sm/02162018DBXChunTifa.jpg","duration":95,"publication_date":"2018-02-16T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-robot-girlfriends-with-wiz","changefreq":"weekly","video":[{"title":"S3:E7 - Robot Girlfriends with Wiz","description":"If everything gets more awesome when it's a robot, let Wiz show you the best mechanical girlfriend material out there!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-robot-girlfriends-with-wiz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7eb85494-35cc-4b20-8ebe-4999b683d405.png/sm/02142018Top10RobotGirlfriendsWithWiz.png","duration":515,"publication_date":"2018-02-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-63-toy-story-civil-war","changefreq":"weekly","video":[{"title":"S2:E6 - Sudden DEATH #63 - Toy Story Civil War","description":"The cast talks who would win in a Toy Story Civil War","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-63-toy-story-civil-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76bec9fb-6281-4b6b-a2dc-800b880be458/sm/2056984-1518453996961-02112018SDThumb.jpg","duration":856,"publication_date":"2018-02-12T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-raven-soars-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E3 - Raven Soars into DEATH BATTLE","description":"The powerful empath from Teen Titans is ready for the upcoming DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-raven-soars-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1fb4982e-5a43-439a-97dc-a50a1ee9410e.png/sm/raven.png","duration":159,"publication_date":"2018-02-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-black-panther-vs-batman-questions-answered","changefreq":"weekly","video":[{"title":"S3:E63 - Black Panther vs Batman Questions Answered","description":"The cast answers questions about the be most recent DEATH BATTLE episode, talks about the Venom teaser trailer and debates who would win between Martian Manhunter and Piccolo","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-black-panther-vs-batman-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a77720a9-e753-43b9-ad93-cc0227837b6a.jpg/sm/DBC63site.jpg","duration":3240,"publication_date":"2018-02-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-knuckles-was-a-god","changefreq":"weekly","video":[{"title":"S3:E3 - Knuckles was a GOD?!","description":"Jocelyn takes a look at the minefield that is the Sonic the Hedgehog Archie comics. Specifically the time that Knuckles became an omnipotent god.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-knuckles-was-a-god","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb3a3a24-a118-4e91-ad6c-71a7cc6fc78e.jpg/sm/02092018DoDBKnuckles.jpg","duration":339,"publication_date":"2018-02-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-awesome-orphans","changefreq":"weekly","video":[{"title":"S3:E6 - Awesome Orphans","description":"Everybody loves to see orphans rise to the top, but which ones are the coolest of them all?","player_loc":"https://roosterteeth.com/embed/top-10-season-3-awesome-orphans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0016e84d-b73a-47a7-926e-1d82da238b4a.png/sm/02072018Top10AwesomeOrphans.png","duration":519,"publication_date":"2018-02-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-with-commentary-2018-black-panther-vs-batman-marvel-vs-dc-w-commentary","changefreq":"weekly","video":[{"title":"2018:E1 - Black Panther VS Batman (Marvel VS DC) w/Commentary","description":"Ben, Sam, and Noel give you a look into the making of the season premiere of DEATH BATTLE! season 5.","player_loc":"https://roosterteeth.com/embed/death-battle-with-commentary-2018-black-panther-vs-batman-marvel-vs-dc-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/872684d3-45cf-4237-98fc-8c1de0bbd96b.jpg/sm/020618DBBlackPantherVsBatmanThumbnail.jpg","duration":982,"publication_date":"2018-02-06T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-62-torrian-s-stolen-cars","changefreq":"weekly","video":[{"title":"S2:E5 - Sudden DEATH #62 - Torrian's Stolen Cars","description":"Torrian tells the tragic stories of his 12... yes 12 cars...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-62-torrian-s-stolen-cars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/289924c5-8c8d-43f3-91e4-1b5aac1d3abd/sm/2056984-1517799233790-02042018SuddenDEATHThumb.jpg","duration":1527,"publication_date":"2018-02-06T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-5-black-panther-vs-batman-marvel-vs-dc","changefreq":"weekly","video":[{"title":"S5:E1 - Black Panther VS Batman (Marvel VS DC)","description":"The King of Wakanda and the Knight of Gotham battle for their lives! Which wealthy, black-clad superhero will land on their feet?\n\nGot an idea for a Death Battle? Submit it via the OFFICIAL DEATH BATTLE SUGGESTION FORM: bit.ly/DBSuggest2018\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer - https://twitter.com/BenBSinger \n\n\n\n\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad \n\n\n\n\n\nProject Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam\n\n\n\n\n\nLead Animator: Benny Landa - https://twitter.com/BioRhythmic\n\n\n\n\n\nVideo Editor: Noël Wiggins - https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\nSprite Artist: Chris Bastin - https://twitter.com/HyperJerk\n\n\n\n\n\nAsst. Animator: Kervin Alcindor - https://twitter.com/xKAreloadedx\n\n\n\n\n\nAsst. Animator: Luis Cruz - https://twitter.com/xKAreloadedx\n\n\n\n\n\nProducer: Austin Harper - https://twitter.com/PotatoHound\n\n\n\n\n\nBattle Announcer: Chris Guerrero - https://twitter.com/ChrisGuerreroVA \n\n\n\n\n\nResearch Team: Max Baney, Matthew Jones, LousyTactician, Carmelo Sampayo, Liam Swan, Devin Swedenburg\n\n\n\n\n\n'Battle at the Zoo'\nBy Werewolf Therewolf\nhttps://twitter.com/ww_tw\n\n\n\n\n\n'Wiz & Boomstick - Death Battle Theme'\nBy Brandon Yates\nhttps://twitter.com/bmichaelyates","player_loc":"https://roosterteeth.com/embed/death-battle-season-5-black-panther-vs-batman-marvel-vs-dc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7bc5e7df-dc67-499e-ac32-407d1e1c7e63.jpg/sm/02052018_BlackPantherVsBatman_Thumbnail.jpg","duration":982,"publication_date":"2018-02-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-banned-from-death-battle","changefreq":"weekly","video":[{"title":"S3:E62 - Banned from DEATH BATTLE","description":"The cast talks about matchups they'll never do it DEATH BATTLE, the Ant-Man and the Wasp trailer and Lego Sonic vs Paper Mario","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-banned-from-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28d4f01f-e25b-48f2-a865-71ac6e911557.png/sm/DBC3Still001.png","duration":3166,"publication_date":"2018-02-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-krillin-vs-tien-vs-yamcha","changefreq":"weekly","video":[{"title":"S3:E3 - Krillin VS Tien VS Yamcha","description":"The strongest humans in DBZ duke it out! \n\nThis episode's animator is Neil Robertson! https://www.youtube.com/user/Pizzaman432\n\n\n\nFollow the creators of DBX\n► Torrian: https://twitter.com/AnimatedTorrii\n► Ben: https://twitter.com/benbsinger\n► Chad: https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/dbx-season-3-krillin-vs-tien-vs-yamcha","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6e31dd4-156d-474d-b912-4ba93863e31a.jpg/sm/020218_DBX_Ep44_KrillinTienYamcha_Thumbnail.jpg","duration":108,"publication_date":"2018-02-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-craziest-fictional-presidents","changefreq":"weekly","video":[{"title":"S3:E5 - Craziest Fictional Presidents","description":"No matter how insane you might think real-life presidents can be, they've got nothing on the ten in this list!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-craziest-fictional-presidents","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/49bf7d34-c663-42a5-be7a-98b48e6fde18.png/sm/02012018Top10CraziestFictionalPresidents.png","duration":529,"publication_date":"2018-01-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-batman-returns-to-death-battle","changefreq":"weekly","video":[{"title":"S5:E2 - Batman Returns to DEATH BATTLE","description":"The Caped Crusader is ready to bring the Wayne into DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-batman-returns-to-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9b541b5-cbe0-40ca-8dfb-5e3ff57c0905.jpg/sm/012918DBPreviewBatman.jpg","duration":146,"publication_date":"2018-01-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-61-swearing-children","changefreq":"weekly","video":[{"title":"S2:E4 - Sudden DEATH #61- Swearing Children","description":"The cast makes a new show and talks about how to properly raise children.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-61-swearing-children","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73c5702e-82dd-47dc-b329-e8675f87116d/sm/2097166-1517164112929-sudden-death-thumb123.png","duration":1576,"publication_date":"2018-01-28T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-goku-vs-vegeta","changefreq":"weekly","video":[{"title":"S3:E61 - Goku vs Vegeta","description":"The cast has a brand new set and are talking the Super Saiyan showdown, Nightwing vs Winter Soldier and what inspired DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-goku-vs-vegeta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a0dc806-9b68-49de-98b7-e6a1083ddbc5.png/sm/DBCSiteStill005.png","duration":2986,"publication_date":"2018-01-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-fin-fang-foom-vs-communism","changefreq":"weekly","video":[{"title":"S3:E2 - Fin Fang Foom VS Communism","description":"Jocelyn takes a look at Marvel's dragon / alien and his battles with communism and how he deals with his enemies","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-fin-fang-foom-vs-communism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f1d1ae2-9ecc-4a2b-baf5-ead5c89a382a.jpg/sm/01262018DoDBThumb.jpg","duration":264,"publication_date":"2018-01-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-wizards","changefreq":"weekly","video":[{"title":"S3:E4 - Wizards","description":"When it comes to magic, Wizards are the experts and Nick is counting down the Top 10 best!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-wizards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/08017906-8453-444a-b035-99cc9dc00ad0.jpg/sm/01242018Top10Wizards.jpg","duration":552,"publication_date":"2018-01-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-5-black-panther-prowls-into-death-battle","changefreq":"weekly","video":[{"title":"S5:E1 - Black Panther Prowls into DEATH BATTLE","description":"The Prestigious Ruler of Wakanda is feline ready for a DEATH BATTLE!\n\nClick to Subscribe: http://bit.ly/SubtoScrewAttack\nOFFICIAL DEATH BATTLE SUGGESTION FORM: http://bit.ly/2fM8Z8l\n\n\n\n\n\n►Watch our stuff early: http://bit.ly/2m9WLsZ\n\n\n\n\n\n►Our Store: http://bit.ly/NewScrewAttackStore\n\n\n\n\n\n►Look how social we are!\nScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \nScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\n\n\n►Follow the crew on Twitter:\nChad - https://twitter.com/ScrewAttackChad\nSean - https://twitter.com/SeanHinz\nBen - https://twitter.com/ScrewAttackBen\nAustin - https://twitter.com/PotatoHound\nNick - https://twitter.com/THENervousNick\nSam - https://twitter.com/ScrewAttackSam\nTorrian - https://twitter.com/AnimatedTorrii\nGerardo - https://twitter.com/HybridRain\nNoel - https://twitter.com/NOELWIGGINSfilm\nLuis - https://twitter.com/CVAnimation\nJosh - https://twitter.com/JoshuaKazemi\n\n\n\n\n\n► Watch our other shows\nWatch DBX - http://bit.ly/DBXPlaylist\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\nWatch Top 10's - http://bit.ly/SATop10Playlist\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-5-black-panther-prowls-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cca93af4-8355-4bdb-b172-48afd5be3c9f.jpg/sm/012218DBPreviewBlackPantherThumbnail_v2.jpg","duration":164,"publication_date":"2018-01-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-sudden-death-season-2-sudden-death-60-iron-closed-hand","changefreq":"weekly","video":[{"title":"S2:E3 - Sudden DEATH #60 - Iron Closed Hand","description":"The Cast talks about the next generation of consoles and shows off some great community fan art!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-sudden-death-season-2-sudden-death-60-iron-closed-hand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/068d237c-d1c6-4ac5-ac07-fe81fe589b70/sm/2097166-1516520473170-dst.png","duration":830,"publication_date":"2018-01-21T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-why-batman-vs-black-panther","changefreq":"weekly","video":[{"title":"S3:E60 - Why Batman vs Black Panther?","description":"The cast talks their reasoning behind the season 5 premiere, why we still don't have out new set and Sam has a theory on hygiene","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-why-batman-vs-black-panther","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/22825c31-2fe3-4656-b7e1-fecf36215162.png/sm/DBCSite00_05_25_08Still003.png","duration":2605,"publication_date":"2018-01-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3-lara-croft-vs-jill-valentine-tomb-raider-vs-resident-evil","changefreq":"weekly","video":[{"title":"S3:E2 - Lara Croft VS Jill Valentine (Tomb Raider VS Resident Evil)","description":"Two iconic leading ladies battle it out! Who's the queen of the classic PlayStation 1?\n\nThis episode's animator is Kiid! Check out his YouTube: https://www.youtube.com/user/TheRegularGuysXD\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n► Wiz – Ben B. Singer: https://www.twitter.com/BenBSinger\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-3-lara-croft-vs-jill-valentine-tomb-raider-vs-resident-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa883357-5b2d-434d-be40-3f2b4d6c87ff.jpg/sm/011918_DBX_Ep43_LaraCroftVsJillValentine_Thumbnail.jpg","duration":145,"publication_date":"2018-01-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-magic-weapons-with-boomstick-from-death-battle","changefreq":"weekly","video":[{"title":"S3:E3 - Magic Weapons w/ DEATH BATTLE's Boomstick!","description":"What's better than having a badass weapon? Having a magic badass weapon! This week Boomstick from DEATH BATTLE is counting down the Top 10.","player_loc":"https://roosterteeth.com/embed/top-10-season-3-magic-weapons-with-boomstick-from-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7de7a2b-03e7-4388-aa01-babfbbe4d240/sm/2056984-1516210119382-01172018Top10MAgicWEapons.jpg","duration":596,"publication_date":"2018-01-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sudden-death-season-2-sudden-death-57-tammy-and-the-t-rex","changefreq":"weekly","video":[{"title":"S2:E2 - Sudden DEATH #59 - Tammy and the T-Rex","description":"The cast talks about a movie so bad it's amazing","player_loc":"https://roosterteeth.com/embed/sudden-death-season-2-sudden-death-57-tammy-and-the-t-rex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb1c0fad-178e-4f15-b2b3-154783a2d42e/sm/2056984-1515915523437-01142018SUDDENDEATH.jpg","duration":787,"publication_date":"2018-01-14T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-3-death-battle-revealed","changefreq":"weekly","video":[{"title":"S3:E59 - DEATH BATTLE Revealed","description":"In the season premiere of DEATH BATTLE Cast the crew talks Godzilla vs Dragonzord, if size makes you stronger and they announce the next DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-3-death-battle-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/233a6c95-bbd8-4a4d-883c-6bddaffd1a2b.jpg/sm/DBC59Chad.jpg","duration":2907,"publication_date":"2018-01-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-3-the-real-white-ranger","changefreq":"weekly","video":[{"title":"S3:E1 - The Real White Ranger","description":"What if we told you that the original White Ranger isn't Tommy Oliver, he's actually a pervy 10 year old boy... In this episode we uncover the true origins of the real White Ranger.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-3-the-real-white-ranger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/735b997c-e5bd-4c53-935b-fdb7691eaead.jpg/sm/01122018DeskOfWhiteRangerThumbnail.jpg","duration":216,"publication_date":"2018-01-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-3-worst-dragon-ball-characters","changefreq":"weekly","video":[{"title":"S3:E2 - Worst Dragon Ball Characters","description":"Not every character can be a fan favorite. Some are downright terrible. We're counting down the worst!","player_loc":"https://roosterteeth.com/embed/top-10-season-3-worst-dragon-ball-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5b05ec33-435d-45ae-bbfa-eb861036d46a.jpg/sm/01102018Top10WorstDBCharactersThumbnail.jpg","duration":637,"publication_date":"2018-01-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-3","changefreq":"weekly","video":[{"title":"S3:E26 - Gambit VS Taskmaster (X-Men VS Marvel)","description":"Two hardcore Marvel anti-heroes collide!\n\nThis episode's animator is Kervin Alcindor! https://www.youtube.com/user/xkareloadedx/","player_loc":"https://roosterteeth.com/embed/dbx-season-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f6315fab-1b29-47cf-873e-04f96aa9daba.jpg/sm/010518DBXGambitTaskmasterThumbnail.jpg","duration":112,"publication_date":"2018-01-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-3","changefreq":"weekly","video":[{"title":"S3:E51 - Terrifying Mascots","description":"Over the years companies have created some truly terrifying mascots to represent their brands... Here's the Top 10","player_loc":"https://roosterteeth.com/embed/top-10-s-season-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/204232a9-6407-47b7-8808-9f6238af4c4d.jpg/sm/01032018Top10TerrifyingMascotsThumbnail.jpg","duration":452,"publication_date":"2018-01-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sudden-death-58-exploring-noel-s-body","changefreq":"weekly","video":[{"title":"S2:E0 - Sudden DEATH #58: Exploring Noel's Body","description":"The cast learns more about Noel than they ever wanted...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sudden-death-58-exploring-noel-s-body","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c6eca53-7d5d-49fd-a442-bdb6e0ab4efa.png/sm/12302017SuddenDEATHBodyThumbnail.png","duration":488,"publication_date":"2017-12-31T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-xena-vs-she-ra","changefreq":"weekly","video":[{"title":"S2:E58 - Xena vs She-Ra","description":"The cast talks Xena Warrior Princess vs She-Ra The Princess of Power, what superhero / villain would make the best mentor and they look back on the year's DEATH BATTLES","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-xena-vs-she-ra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5f968db-3ebb-4bf7-8ec5-af9564389466.png/sm/DBC.png","duration":2781,"publication_date":"2017-12-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-crazy-stupid-anime-attacks","changefreq":"weekly","video":[{"title":"S2:E27 - Crazy Stupid Anime Attacks","description":"Crazy fights and special attacks are a staple of Anime so there were bound to be some straight up stupid ones.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-crazy-stupid-anime-attacks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/af1b9c97-fc1a-43c2-81f0-299866e73456.jpg/sm/12292017DeskOfDEATHBATTLECrazyStupidAnimeAttacksThumbnail.jpg","duration":303,"publication_date":"2017-12-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sephiroth-vs-vergil-questions-answered","changefreq":"weekly","video":[{"title":"S2:E57 - Sephiroth vs Vergil Questions Answered","description":"The cast answers questions from the most recent DEATH BATTLE, talks Voldemort vs Emperor Palpatine and Ben nearly puts Chad's eye out","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sephiroth-vs-vergil-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/14c53596-51a4-4023-a12a-be2b8d8c7f57.jpg/sm/12202017DBCastThumb2.jpg","duration":2905,"publication_date":"2017-12-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-goku-black-vs-black-adam-dragon-ball-super-vs-dc-comics","changefreq":"weekly","video":[{"title":"S2:E25 - Goku Black VS Black Adam (Dragon Ball Super VS DC Comics)","description":"An epic battle begins! WIll Goku Black take down the almighty Black Adam?\nThis episode's animator is Steven \"MistahJayden\" Mercedes! https://mistah-jayden.deviantart.com/\n\nClick to Subscribe: http://bit.ly/SubtoScrewAttack\nOFFICIAL DEATH BATTLE SUGGESTION FORM: http://bit.ly/2fM8Z8l\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad\n► Lead Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-goku-black-vs-black-adam-dragon-ball-super-vs-dc-comics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a700403d-6218-44a1-90ed-638f79071afc.jpg/sm/122217DBXGokuBlackVsBlackAdamThumbnail.jpg","duration":126,"publication_date":"2017-12-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-christmas-movies","changefreq":"weekly","video":[{"title":"S2:E50 - Christmas Movies","description":"It's that time of year again, we get together with our families, grab some hot coco and watch the best Christmas movies of all time and here are the Top 10! Happy Holidays!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-christmas-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8531b09b-5b39-4c1e-b752-756417a3eede.jpg/sm/12202017Top10Xmas.jpg","duration":576,"publication_date":"2017-12-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-sephiroth-vs-vergil-w-commentary","changefreq":"weekly","video":[{"title":"E:E32 - Sephiroth VS Vergil w/ Commentary","description":"Nick, Ben, Torrian and Chad give you a look into the making of the season finale of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-sephiroth-vs-vergil-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/91ea8867-57f7-47e6-8af2-f0ae8e4258d0.jpg/sm/12192017DBCommentary.jpg","duration":1228,"publication_date":"2017-12-19T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-sephiroth-vs-vergil-final-fantasy-vs-devil-may-cry","changefreq":"weekly","video":[{"title":"S4:E16 - Sephiroth VS Vergil (Final Fantasy VS Devil May Cry)","description":"Season finale! Which grim silver-haired swordsman will be victorious?\n\n\n\n\n\nDownload the music from this episode from iTunes today: http://apple.co/2yTfFqo You can also search your music store of choice for Death Battle: One-Winged Devil by Therewolf Media\n\n\n\n\n\n\n\nGot an idea for a Death Battle? http://bit.ly/2fM8Z8lWiz/Showrunner: Ben B. Singer https://twitter.com/BenBSinger Boomstick: Chad James https://twitter.com/ScrewAttackChad Project Lead: Nick Cramer https://twitter.com/THENervousNickLead Animator: Torrian Crawford https://twitter.com/AnimatedTorriiVoice of Sephiroth: Kamran Nikhad https://twitter.com/Kamran_VAVoice of Vergil: Marc Soskin https://twitter.com/MarcSoskinAdditional Animation: Jerome Rodgers-Blake https://twitter.com/JRAnimatedBattle Music by Werewolf Therewolf https://www.facebook.com/werewolftherewolfSound Design: Noel Wiggins https://twitter.com/NOELWIGGINSfilmVideo Editor: Gerardo Mejia https://twitter.com/HybridRainCasting/Voice Directing: Marissa Lenti https://twitter.com/LentiSoupSound Cadence Studios https://twitter.com/SoundCadenceBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA Research Team: Max Baney, Matthew Jones, LousyTactician, Carmelo Sampayo, Liam Swan, Devin Swedenburg","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-sephiroth-vs-vergil-final-fantasy-vs-devil-may-cry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee369327-2ffa-4511-bf12-2a0876cb88f6.jpg/sm/12182017SephirothVsVergil_Thumbnail.jpg","duration":1228,"publication_date":"2017-12-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sudden-death-56-explaining-lotr-to-torrian","changefreq":"weekly","video":[{"title":"S2:E1 - Sudden DEATH #56 - Explaining LotR to Torrian","description":"Ben, Chad and Nick explain Lord of The Rings to Torrian","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sudden-death-56-explaining-lotr-to-torrian","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd48f8c7-009f-458d-8f07-9a97daf7d7d0.png/sm/12162017SuddenDEATHThumb.png","duration":813,"publication_date":"2017-12-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-measuring-vergil","changefreq":"weekly","video":[{"title":"S2:E56 - Measuring Vergil","description":"Get your exclusive DSC starter set for just $5! Head to http://www.DollarShaveClub.com/CAST. Try Blue Apron! They're treating you to your first three meals! head to http://www.BlueApron.com/Top10 The cast talks how they went about measuring Vergil, Torrian's dark side, and Lord of the Rings","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-measuring-vergil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3e7b0034-94a4-409c-9ea5-0ff9da6b656a.jpg/sm/12162017DBCastThumb.jpg","duration":2184,"publication_date":"2017-12-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-2","changefreq":"weekly","video":[{"title":"S2:E50 - What Happened to Aquaman","description":"Aquaman's reputation has been through the ringer over the years. What happened to make the fish talking hero the butt of every joke?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc081658-2a8c-4aee-b70e-4a1e6ec5561a.jpg/sm/12152017DeskOfAquamanThumbnail.jpg","duration":323,"publication_date":"2017-12-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-dragon-ball-fights","changefreq":"weekly","video":[{"title":"S2:E49 - Dragon Ball Fights","description":"There are a lot of great showdowns in the Dragon Ball Saga and today we're counting down the Top 10 best!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-dragon-ball-fights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2944d39b-9e89-4fca-a7d1-d2a8c4c657ff.jpg/sm/12142017Top10DragonBallFightsThumbnail.jpg","duration":544,"publication_date":"2017-12-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-2-vergil-is-summoned-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E32 - Vergil is Summoned into DEATH BATTLE","description":"The Dark Angel is ready to make his opponent cry in the upcoming DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-2-vergil-is-summoned-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a265f17-d0f4-4deb-aca8-cd68aa35e58c.png/sm/vergil.png","duration":157,"publication_date":"2017-12-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-the-thing-s-thing-death-battle-cast","changefreq":"weekly","video":[{"title":"S2:E55 - The Thing's Thing","description":"The cast talks The Thing vs Solomon Gundy, Pokemon and the video game awards","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-the-thing-s-thing-death-battle-cast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76daa326-121e-4df5-838c-dab8004f0bc8/sm/2056984-1512851634450-12092017DBCastThing.jpg","duration":2553,"publication_date":"2017-12-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-captain-falcon-vs-viewtiful-joe","changefreq":"weekly","video":[{"title":"S2:E24 - Captain Falcon VS Viewtiful Joe","description":"Cap and Joe show their moves! Henshin-A-Go-Go, baby!\n\n\n\nThis episode's animator is Kayas! Follow him on Twitter: https://twitter.com/xKayasx\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger \n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n► Lead Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-captain-falcon-vs-viewtiful-joe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fee65699-96f9-4902-bae6-971d131365f0.jpg/sm/120817DBXCaptainFalconViewtifulJoeTHUMBNAIL.jpg","duration":121,"publication_date":"2017-12-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-games-of-2017","changefreq":"weekly","video":[{"title":"S2:E48 - Games of 2017","description":"2017 has seen its fair share of amazing games and today we're counting down the Top 10 best!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-games-of-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/618c8dfb-b531-4f6d-a1f3-144423ad8f6d.jpg/sm/12062017Top10Games2017.jpg","duration":588,"publication_date":"2017-12-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-2-sephiroth-materia-lizes-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E31 - Sephiroth Materia-lizes into DEATH BATTLE","description":"The one winged angel is here to bring gifts of despair to his opponent in DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-2-sephiroth-materia-lizes-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9363b403-a7a8-4199-9c26-cfbde633f44b.jpg/sm/12042017DBPreviewSeph.jpg","duration":202,"publication_date":"2017-12-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-resting-beach-face","changefreq":"weekly","video":[{"title":"S1:E11 - Resting beach face.","description":"Thank God the SP7 girlfriends are here to help get our views back.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-resting-beach-face","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1343b6b2-a397-4748-a088-486d169f529c.jpg/sm/thumb_v2.jpg","duration":523,"publication_date":"2018-04-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-our-relationship-problems-beyond-the-pine-35","changefreq":"weekly","video":[{"title":"S1:E35 - \"Our relationship problems.\" Beyond The Pine #35","description":"Mimi Torres and James Allen McCune join James and Cib to chat about the difficulties of working with your friends.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-our-relationship-problems-beyond-the-pine-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eeb03ac5-4e8c-4ba0-a680-a79fd727149e.jpg/sm/ep-35-thumb-final.jpg","duration":3611,"publication_date":"2018-04-25T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-pending-title","changefreq":"weekly","video":[{"title":"S1:E10 - Moving in with Funhaus.","description":"The pee cups are being transported separately.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-pending-title","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/94ed0678-16ce-4b12-9d94-4fc2ed3fbca4.jpg/sm/thumbvicky.jpg","duration":527,"publication_date":"2018-04-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-why-would-he-do-this-beyond-the-pine-34","changefreq":"weekly","video":[{"title":"S1:E33 - \"Why would he do this?\" Beyond The Pine #34","description":"Parker joins the table to speak about some controversy!","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-why-would-he-do-this-beyond-the-pine-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bb6ed43-5be8-4291-ac5f-0412bc2bed5a.jpg/sm/ep-34-thumb-final.jpg","duration":3143,"publication_date":"2018-04-19T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-taco-trip-2018-part-1","changefreq":"weekly","video":[{"title":"S1:E9 - Taco Trip 2018. Part 1.","description":"It's the most wonderful time of the year.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-taco-trip-2018-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b11d9a3f-2184-416b-b472-68050265124f.jpg/sm/thumbrt.jpg","duration":552,"publication_date":"2018-04-17T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-title-change","changefreq":"weekly","video":[{"title":"S3:E22 - Blow up job.","description":"We're out with a bang.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-title-change","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9a8d71e-618b-4082-a23e-91d0c7d00659.jpg/sm/thumb2.jpg","duration":821,"publication_date":"2018-04-14T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-the-podcast-we-had-to-censor-beyond-the-pine-33","changefreq":"weekly","video":[{"title":"S1:E32 - \"The Podcast We Had To Censor.\" Beyond The Pine #33","description":"The boys (& Mimi) discuss the upcoming final episodes of Season 3 with special guests Wes Robinson and John Redlinger!","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-the-podcast-we-had-to-censor-beyond-the-pine-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/60488167-2aea-472c-8aaf-75c5da3666e3.png/sm/ep-33-thumbnail-final.png","duration":3191,"publication_date":"2018-04-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-let-s-play-spring-break","changefreq":"weekly","video":[{"title":"S1:E8 - Let's Play Spring Break.","description":"Just as fun as it sounds.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-let-s-play-spring-break","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a167415-e94a-4db2-842a-844539f5f9f9.jpg/sm/thumbRT.jpg","duration":379,"publication_date":"2018-04-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-beating-up-a-14-year-old","changefreq":"weekly","video":[{"title":"S3:E21 - Beating up a 14 year old.","description":"What can we say, we're men with zero pride.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-beating-up-a-14-year-old","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc863145-4d72-4b8a-8677-213322d5d397.jpg/sm/thumbRT2.jpg","duration":768,"publication_date":"2018-04-06T04:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-lessons-from-the-walking-dead-beyond-the-pine-32","changefreq":"weekly","video":[{"title":"S1:E31 - \"Lessons From The Walking Dead.\" Beyond The Pine #32","description":"John Redlinger and James Allen McCune join the boys to talk about making movies.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-lessons-from-the-walking-dead-beyond-the-pine-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/48711c58-f4d2-492c-9040-39b68d8c45ec.jpg/sm/BTP32Thumbnail.jpg","duration":3552,"publication_date":"2018-04-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-so-cib-actually-had-a-seizure-recently-beyond-the-pine-26","changefreq":"weekly","video":[{"title":"S1:E26 - \"So Cib actually had a seizure recently...\" Beyond the Pine #26","description":"The lesson is really just, drink more water.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-so-cib-actually-had-a-seizure-recently-beyond-the-pine-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b4f53876-83d7-49c7-b949-ffa27c784d9c.jpg/sm/maxresdefault.jpg","duration":2867,"publication_date":"2018-03-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-prank-calling-burnie-burns-beyond-the-pine-19","changefreq":"weekly","video":[{"title":"S1:E19 - Prank calling Burnie Burns... Beyond the Pine #19","description":"WE DID THE THING IN THE TITLE","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-prank-calling-burnie-burns-beyond-the-pine-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec04e406-f5ac-4a2f-a428-883933d22d16.jpg/sm/thumb.jpg","duration":3480,"publication_date":"2018-03-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-ruining-a-ford-gt","changefreq":"weekly","video":[{"title":"S1:E7 - Ruining a Ford GT.","description":"Cib can't function around anything remotely nice.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-ruining-a-ford-gt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5afc6543-9270-4f42-928e-6af07e013140.jpg/sm/thumbRT.jpg","duration":603,"publication_date":"2018-03-29T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-the-hand-that-feeds","changefreq":"weekly","video":[{"title":"S3:E20 - The hand that feeds.","description":"It's time to destroy Bitter Bonsai 8","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-the-hand-that-feeds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d5b577d4-5d35-4af3-a201-a85bd2d0a5c5.jpg/sm/thumb.jpg","duration":1027,"publication_date":"2018-03-21T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-my-biggest-fear","changefreq":"weekly","video":[{"title":"S1:E6 - My biggest fear.","description":"It's heights. IT'S HEIGHTS.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-my-biggest-fear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3d86d64-dafd-4016-a19d-26706f8658f6.jpg/sm/thumbRT.jpg","duration":484,"publication_date":"2018-03-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-shelter","changefreq":"weekly","video":[{"title":"S1:E5 - Shelter.","description":"I give Cib one last chance for a parody video.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-shelter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d1b6fe17-ecae-4cdd-b13d-9ba26eb1617e.jpg/sm/SP7LifestyleClassicThumbnail.jpg","duration":291,"publication_date":"2018-03-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-ninja-and-drake-give-us-hope-beyond-the-pine-30","changefreq":"weekly","video":[{"title":"S1:E29 - \"Ninja and Drake give us hope.\" Beyond the Pine #30","description":"In an age where online content creators aren't taken seriously, Ninja's stream with Drake might be one of the first steps to change that.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-ninja-and-drake-give-us-hope-beyond-the-pine-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8e393c63-76e5-494b-a146-5df1a61812fa.jpg/sm/podcast.jpg","duration":3328,"publication_date":"2018-03-18T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-we-meet-bitter-bonsai-8","changefreq":"weekly","video":[{"title":"S3:E19 - We meet Bitter Bonsai 8.","description":"They're... not exactly what we expected.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-we-meet-bitter-bonsai-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/faa5fa7c-6927-4808-9bb2-2f4a547f2729.jpg/sm/thumbRT.jpg","duration":547,"publication_date":"2018-03-16T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-trapped-in-the-closet","changefreq":"weekly","video":[{"title":"S1:E4 - Trapped in the closet.","description":"Why does James look like Kim Jong Un in the thumbnail","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-trapped-in-the-closet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c58e796c-c681-4555-9a72-3747f2c14ce0.jpg/sm/thumbf_1.jpg","duration":424,"publication_date":"2018-03-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-hacked-by-bitter-bonsai-8","changefreq":"weekly","video":[{"title":"S3:E18 - Hacked by Bitter Bonsai 8","description":"Our channel got hacked. This is what happened.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-hacked-by-bitter-bonsai-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/75250782-b54e-44f2-a369-6bfbbeac2e82.jpg/sm/thumby.jpg","duration":666,"publication_date":"2018-03-14T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-3-fingers-deep","changefreq":"weekly","video":[{"title":"S1:E3 - 3 fingers deep.","description":"lol get it?","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-3-fingers-deep","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9cc95e53-2fc0-457c-bee2-427d13c72051.jpg/sm/thumbf_1.jpg","duration":420,"publication_date":"2018-03-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-markiplier-farts-in-front-of-his-girlfriend-beyond-the-pine-29","changefreq":"weekly","video":[{"title":"S1:E28 - \"Markiplier farts in front of his girlfriend...\" Beyond the Pine #29","description":"We're joined by Markiplier today to discuss the intricacies of dating.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-markiplier-farts-in-front-of-his-girlfriend-beyond-the-pine-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/04007a6c-3b76-44a4-b7a7-859671d72e38.png/sm/thumbnail.png","duration":3063,"publication_date":"2018-03-12T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-dating-my-friend-s-ex","changefreq":"weekly","video":[{"title":"S3:E17 - Dating my friend's ex.","description":"Jeremy calls upon me for one of the two remaining favors. Dating his ex.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-dating-my-friend-s-ex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8fd3b739-7794-406f-a79d-ab6c08d5ec59.jpg/sm/thumb.jpg","duration":649,"publication_date":"2018-03-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-cow-chop-hates-sugar-pine-7","changefreq":"weekly","video":[{"title":"S3:E23 - Cow Chop hates Sugar Pine 7","description":"We visit Cow Chop to try and settle some beef with their audience.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-cow-chop-hates-sugar-pine-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b5e568b4-a6dd-4567-890a-96b7e5e08616.png/sm/hate.png","duration":433,"publication_date":"2018-03-07T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-hotter-than-hot-ones-no","changefreq":"weekly","video":[{"title":"S1:E2 - HOTTER THAN HOT ONES? No.","description":"The only one who thought these wings were hot was Cib, and he has too many tastebuds.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-hotter-than-hot-ones-no","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e4c769c1-071a-4949-8049-ede358939dda.jpg/sm/thumb2.jpg","duration":409,"publication_date":"2018-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifestyle-classic-season-1-what-happens-in-an-escape-room","changefreq":"weekly","video":[{"title":"S1:E1 - What happens in an escape room...","description":"...stays in an escape room. Until you escape it.","player_loc":"https://roosterteeth.com/embed/lifestyle-classic-season-1-what-happens-in-an-escape-room","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a92ce205-609c-442d-953f-abb653492119.jpg/sm/thumb4.jpg","duration":335,"publication_date":"2018-03-05T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-recruiting-you-for-an-sp7-video","changefreq":"weekly","video":[{"title":"S1:E27 - \"Recruiting YOU for an SP7 video\" Beyond the Pine #28","description":"If you've ever wanted to be in one of our videos, here's your chance!","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-recruiting-you-for-an-sp7-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/94655cd7-59ea-48d1-9934-ec26d6574306.png/sm/do.png","duration":2580,"publication_date":"2018-03-04T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-everybody-deserves-love","changefreq":"weekly","video":[{"title":"S3:E22 - Everybody deserves love.","description":"The title is a lie. There are a lot of people out there that don't deserve it at all.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-everybody-deserves-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd2a1065-37c7-4c74-b6fa-489dffdace3d.png/sm/thumb.png","duration":404,"publication_date":"2018-03-03T00:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-a-taste-of-the-good-life","changefreq":"weekly","video":[{"title":"S3:E20 - A taste of the good life.","description":"After the boys meet up for lunch, they go their separate ways...or do they? They do.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-a-taste-of-the-good-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cd7067a-5717-413f-9fd0-4d27ad85621e.png/sm/thumbnail.png","duration":915,"publication_date":"2018-03-01T06:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-happy-birthday-adam-kovic","changefreq":"weekly","video":[{"title":"S3:E19 - Happy birthday, Adam Kovic.","description":"We stop by the funhaus office for a bit, then take the rest of the day off to rekindle the Sugar Pine 7 spirit at the beach.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-happy-birthday-adam-kovic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d4d23f80-2eee-41b8-8d28-eb1a1e157089.jpg/sm/happy.jpg","duration":414,"publication_date":"2018-02-28T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-here-s-why-you-shouldn-t-trust-your-friends","changefreq":"weekly","video":[{"title":"S3:E20 - Here's why you shouldn't trust your friends.","description":"Friendship is a double edged sword. Sometimes it stabs ur back.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-here-s-why-you-shouldn-t-trust-your-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad322c9e-bdf8-47a2-aad1-8173d40a1423.jpg/sm/friend.jpg","duration":478,"publication_date":"2018-02-28T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-james-buckley-joins-sugar-pine-7-forever-beyond-the-pine-25","changefreq":"weekly","video":[{"title":"S1:E25 - \"James Buckley joins Sugar Pine 7 FOREVER\" Beyond the Pine #25","description":"James Buckley, Steven and James discuss circumcision.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-james-buckley-joins-sugar-pine-7-forever-beyond-the-pine-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3154b51-0373-4ae8-94d2-4da83202ba85.jpg/sm/thumb.jpg","duration":3605,"publication_date":"2018-02-28T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-our-terrible-childhood-memories-beyond-the-pine-24","changefreq":"weekly","video":[{"title":"S1:E24 - Our terrible childhood memories... Beyond the Pine #24","description":"Enter promo code \"PINE\" to get 15% off your entire Vincero purchase at https://vincerocollective.com/pine24/\r\n\r\nGet 25% off when you keep all 5 Stitchfix items in your personalized box! Sign up at https://stitchfix.com/pine/\r\n\r\nShop SP7 merch:\r\nhttps://store.roosterteeth.com/collections/sugar-pine-7\r\n\r\nClick to Subscribe and become just another cog in the machine:\r\nhttps://www.youtube.com/user/mlghwnt?sub_confirmation=1\r\n\r\nSteven:\r\nhttps://twitter.com/StevenSuptic\r\n\r\nCib:\r\nhttps://twitter.com/notCib\r\n\r\nJames:\r\nhttps://www.twitter.com/JamesDeAngeliz","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-our-terrible-childhood-memories-beyond-the-pine-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a0f7cce-7c16-4cf6-9dfa-328e4227c22c.jpg/sm/maxresdefault.jpg","duration":3360,"publication_date":"2018-02-27T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-the-story-of-how-i-deleted-cib-s-wedding-footage-beyond-the-pine-27","changefreq":"weekly","video":[{"title":"S1:E27 - \"The story of how I deleted Cib's wedding footage...\" Beyond the Pine #27","description":"We all make mistakes.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-the-story-of-how-i-deleted-cib-s-wedding-footage-beyond-the-pine-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc18dfd8-e823-4614-bbc0-5cb3a717830f.jpg/sm/the-story-of-how-i-deleted-cib-s-wedding-footage-beyond-the-pine-27.jpg","duration":2971,"publication_date":"2018-02-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-first-parker-leaves-now-james","changefreq":"weekly","video":[{"title":"S3:E11 - First Parker leaves, now James?","description":"Everyone's dropping like flies, and I don't know what to do about it.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-first-parker-leaves-now-james","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/552f8ea9-4735-4fe3-9f01-36fba742de1a.jpg/sm/thumb2.jpg","duration":487,"publication_date":"2018-02-17T01:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-community-service","changefreq":"weekly","video":[{"title":"S3:E10 - Community Service.","description":"Cib brings everyone along for his civic duty.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-community-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/818c64ab-db12-404e-8a8b-32ffde7b7dd2.jpg/sm/thumb.jpg","duration":473,"publication_date":"2018-02-14T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-balls-deep-with-my-dad-s-girlfriend","changefreq":"weekly","video":[{"title":"S3:E17 - Balls deep with my dad's girlfriend.","description":"My dad wanted to play baseball, so he thought bringing his girlfriend along would work out. Turns out, it didn't.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-balls-deep-with-my-dad-s-girlfriend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/58cb1699-15b6-4f27-9e13-b8a58a850996.jpg/sm/balls-deep-with-my-dad-s-girlfriend.jpg","duration":751,"publication_date":"2018-02-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-the-roast-of-sourcefed","changefreq":"weekly","video":[{"title":"S3:E9 - The Roast of Sourcefed.","description":"Sourcefed may be long gone, but that doesn't mean I can't invite everyone over for a roast session.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-the-roast-of-sourcefed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1447f74f-7b52-412d-b521-c0fe410bfd87.jpg/sm/thumb.jpg","duration":750,"publication_date":"2018-02-13T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-cow-chop-surprise","changefreq":"weekly","video":[{"title":"S3:E8 - Cow Chop surprise.","description":"Steve joins Cow Chop for a surprise hotel room invasion.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-cow-chop-surprise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e3fcf27e-4e2a-4ba9-b339-a1489715ebc1.jpg/sm/thumb.jpg","duration":433,"publication_date":"2018-02-13T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-here-s-why-we-might-have-to-quit","changefreq":"weekly","video":[{"title":"S3:E16 - Here's why we might have to quit...","description":"I get the worst news possible, and it could change everything.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-here-s-why-we-might-have-to-quit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/837aaaec-436c-42d6-9585-8901e39a1a2e.jpg/sm/here-s-why-we-might-have-to-quit.jpg","duration":676,"publication_date":"2018-02-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-cib-s-wilderness-brave-wilderness-parody","changefreq":"weekly","video":[{"title":"S3:E15 - Cib's Wilderness (Brave Wilderness Parody)","description":"Brave Wilderness just got some new competition. And James broke my camera.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-cib-s-wilderness-brave-wilderness-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0932313-155f-4490-80a2-2b37e14fe3c2.jpg/sm/cib-s-wilderness.jpg","duration":418,"publication_date":"2018-02-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-we-forgot-cib-doug-demuro-parody","changefreq":"weekly","video":[{"title":"S3:E14 - We forgot Cib. (Doug DeMuro Parody)","description":"James and Steve travel to Australia for a business trip while Cib is left to his own devices.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-we-forgot-cib-doug-demuro-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/beb6f0ec-c840-48aa-8c36-3503219285c3.jpg/sm/we-forgot-cib-doug-demuro-parody.jpg","duration":518,"publication_date":"2018-02-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-my-therapist-dr-plier","changefreq":"weekly","video":[{"title":"S3:E13 - My therapist, Dr. Plier.","description":"Today I take a visit to my therapist to try and fill my prescription.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-my-therapist-dr-plier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2d94f376-ca88-4912-a10a-05b91adf9f9b.jpg/sm/my-therapist-dr-plier.jpg","duration":338,"publication_date":"2018-01-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-bad-dog","changefreq":"weekly","video":[{"title":"S3:E12 - Bad Dog.","description":"We go on the hunt to find James's dog.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-bad-dog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea3644cd-fb15-463c-8341-43b087a031b8.jpg/sm/bad-dog.jpg","duration":530,"publication_date":"2018-01-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-i-am-so-sorry","changefreq":"weekly","video":[{"title":"S3:E11 - I am so sorry.","description":"Never thought I'd have to make this video.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-i-am-so-sorry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8f291355-784d-4f64-b42f-da2f2e142ea8.jpg/sm/i-am-so-sorry.jpg","duration":434,"publication_date":"2018-01-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-the-drama-behind-the-valleyfolk-beyond-the-pine-23","changefreq":"weekly","video":[{"title":"S1:E23 - The drama behind the Valleyfolk... Beyond the Pine #23","description":"So... is Mike part of the Valleyfolk, or...","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-the-drama-behind-the-valleyfolk-beyond-the-pine-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eb2ccab5-ca31-4565-905f-6bf7856822e7.jpg/sm/thumb.jpg","duration":3184,"publication_date":"2018-01-24T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-never-have-i-ever-beyond-the-pine-22","changefreq":"weekly","video":[{"title":"S1:E22 - Never have I ever... Beyond the Pine #22","description":"The boys and Jeremy play a rousing game of Never Have I Ever. Sorry, audio listeners.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-never-have-i-ever-beyond-the-pine-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/14357a51-c5d6-4e27-94e9-1e7f7f2cf88c.jpg/sm/thumb.jpg","duration":2599,"publication_date":"2018-01-20T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-we-met-jonah-hill","changefreq":"weekly","video":[{"title":"S3:E7 - We met Jonah Hill.","description":"Originally we weren't going to upload today, but here's a little bonus video of us meeting Jonah Hill for the first time.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-we-met-jonah-hill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/85678989-11f6-4a9a-87f5-c47f2f8343c3.jpg/sm/thumb.jpg","duration":274,"publication_date":"2018-01-20T01:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-the-annual-sugar-pine-7-talent-show","changefreq":"weekly","video":[{"title":"S3:E6 - The Annual Sugar Pine 7 Talent Show","description":"Talent comes in all shapes and sizes, and degrees of saliva.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-the-annual-sugar-pine-7-talent-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/67b27933-406f-4e2c-a446-ae3029282335.jpg/sm/thumb.jpg","duration":639,"publication_date":"2018-01-20T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-the-secret-to-getting-on-trending","changefreq":"weekly","video":[{"title":"S3:E5 - The secret to getting on trending...","description":"At long last, the secret to getting to the trending page on YouTube isn't revealed in the slightest.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-the-secret-to-getting-on-trending","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d6815fd9-6405-447d-97a1-e0b4ea5d6371.jpg/sm/thumb.jpg","duration":535,"publication_date":"2018-01-20T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-i-ripped-off-geoff-ramsey-and-you-can-too","changefreq":"weekly","video":[{"title":"S3:E4 - I ripped off Geoff Ramsey, and YOU CAN TOO!","description":"The holidays are over, it's business season. Geoff Ramsey gets overtaken by sheer brilliance.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-i-ripped-off-geoff-ramsey-and-you-can-too","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f3e1b3c4-0484-49a4-abd8-5dba41c0c6eb.jpg/sm/thumb.jpg","duration":485,"publication_date":"2018-01-12T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-more-unneeded-thoughts-on-logan-paul-beyond-the-pine-21","changefreq":"weekly","video":[{"title":"S1:E21 - More unneeded thoughts on Logan Paul... Beyond the Pine #21","description":"More thoughts you don't care about!","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-more-unneeded-thoughts-on-logan-paul-beyond-the-pine-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b7a7bef2-019c-44bb-808d-f7bea78876bb.jpg/sm/thumb.jpg","duration":3019,"publication_date":"2018-01-10T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-boy-date","changefreq":"weekly","video":[{"title":"S3:E2 - Boy Date","description":"The boys return from break and catch up on a hot date.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-boy-date","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac0824a0-8c31-4c10-9bd7-de19850b8b40.png/sm/s3.png","duration":361,"publication_date":"2018-01-08T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-the-lego-convention","changefreq":"weekly","video":[{"title":"S3:E3 - The Lego Convention.","description":"James invites the group along to experience his passion. Legos.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-the-lego-convention","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/29436c6b-751e-4112-bdc9-a3f86555f59a.jpg/sm/thumb.jpg","duration":385,"publication_date":"2018-01-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-3-meet-the-new-sugar-pine-7","changefreq":"weekly","video":[{"title":"S3:E1 - Meet the new Sugar Pine 7.","description":"While all his friends are gone, Steven takes it upon himself to spend time with new friends.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-3-meet-the-new-sugar-pine-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d52059d4-7794-49ce-a7c4-5fbe84bdd132.png/sm/thumby.png","duration":564,"publication_date":"2018-01-07T06:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bloopers-season-1-blooper-reel-sugar-pine-7-season-2-finale","changefreq":"weekly","video":[{"title":"S1:E3 - BLOOPER REEL: Sugar Pine 7 Season 2 Finale","description":"Short bloopers reel from the season 2 finale of Alternative Lifestyle.","player_loc":"https://roosterteeth.com/embed/bloopers-season-1-blooper-reel-sugar-pine-7-season-2-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/daa6ad54-9ad1-47e2-8f7a-3513d73b719d.png/sm/thumb.png","duration":249,"publication_date":"2017-12-27T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-tis-the-season-2-finale","changefreq":"weekly","video":[{"title":"S2:E60 - Tis' the Season 2 Finale","description":"Season 3 begins January 3rd.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-tis-the-season-2-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4a2ca5ef-83c4-439b-9fe4-b5320db82228.jpg/sm/finale.jpg","duration":811,"publication_date":"2017-12-27T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-any-casey-neistat-fans-out-there-beyond-the-pine-episode-20","changefreq":"weekly","video":[{"title":"S1:E20 - \"Any Casey Neistat fans out there?\" Beyond the Pine Episode #20","description":"A heard of SP7 alumni gather to discuss the season 2 finale. A special guest joins us reluctantly.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-any-casey-neistat-fans-out-there-beyond-the-pine-episode-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/445a0100-f9c7-43df-ab22-57aedc3d3900.jpg/sm/casey.jpg","duration":2832,"publication_date":"2017-12-27T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-two-best-friends-go-fishing-again","changefreq":"weekly","video":[{"title":"S2:E59 - Two best friends go fishing. Again.","description":"Season 2 after credits sequence.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-two-best-friends-go-fishing-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/47b41f06-a760-4978-9420-96e07108900e.png/sm/fishing.png","duration":373,"publication_date":"2017-12-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-the-good-the-bad-and-the-idiot","changefreq":"weekly","video":[{"title":"S2:E57 - The good, the bad and the idiot.","description":"New prospects threaten the sanctity of Sugar Pine 7, but none more so than Steven himself.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-the-good-the-bad-and-the-idiot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f1113e7-4670-4fa7-b73a-8f7f75eb5d6e.jpg/sm/thumbfinal.jpg","duration":789,"publication_date":"2017-12-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-new-job","changefreq":"weekly","video":[{"title":"S2:E56 - New job.","description":"Steve tries to befriend Autumn, while Cib tries to not be an idiot.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-new-job","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4886753f-a27b-47b8-8bf1-b23107ae93ca.jpg/sm/Image31.jpg","duration":441,"publication_date":"2017-12-20T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-the-world-is-blind","changefreq":"weekly","video":[{"title":"S2:E55 - The world is blind.","description":"After planning a Christmas party, the boys and Mimi shop for a beautiful Christmas tree in the heart of Target.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-the-world-is-blind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/546cf0bc-e63c-42d4-8b43-53022282c376.jpg/sm/thumb.jpg","duration":426,"publication_date":"2017-12-19T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-secret-santa-part-ii","changefreq":"weekly","video":[{"title":"S2:E54 - Secret Santa. Part II.","description":"Our Secret Santa gift arrives and I have my own gift for Cib.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-secret-santa-part-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8e78940-84a0-4a69-8a0d-d4b308ec109f.jpg/sm/thumb.jpg","duration":486,"publication_date":"2017-12-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-we-re-moving-in-together","changefreq":"weekly","video":[{"title":"S2:E52 - We're moving in together...","description":"Cib remembers that Steve once offered him a place to stay.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-we-re-moving-in-together","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec2ddf1f-f955-473f-b427-2fefba8ff4ae.jpg/sm/maxresdefault.jpg","duration":423,"publication_date":"2017-12-14T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-why-he-can-t-be-in-videos-anymore-beyond-the-pine-18","changefreq":"weekly","video":[{"title":"S1:E18 - \"Why he can't be in videos anymore...\" Beyond the Pine #18","description":"James Allen McCune joins us this week to name drop.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-why-he-can-t-be-in-videos-anymore-beyond-the-pine-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/61c9454b-3f3f-467e-bb33-40d4238d9bf9.jpg/sm/thumb.jpg","duration":3425,"publication_date":"2017-12-13T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-secret-santa","changefreq":"weekly","video":[{"title":"S2:E53 - Secret Santa.","description":"We gave Cow Chop the greatest gift of all...","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-secret-santa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/451dc3e6-ec5d-455e-b932-36f7ec15bb2a.jpg/sm/thumb2.jpg","duration":551,"publication_date":"2017-12-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-dust-thow","changefreq":"weekly","video":[{"title":"S2:E51 - Dust thow.","description":"Los Angeles. 2017. A massive dust storm takes over. \r\nFive half-boys are left to defend themselves against impending doom.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-dust-thow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d26e07be-ade2-426d-b6fe-c7cbc6dae064.png/sm/god.png","duration":372,"publication_date":"2017-12-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-cib-got-engaged","changefreq":"weekly","video":[{"title":"S2:E50 - Cib got engaged.","description":"We're all growing up. Well, kind of.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-cib-got-engaged","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bf93af3b-d4f2-4229-9d1f-d0897779f74f.jpg/sm/thumb2.jpg","duration":322,"publication_date":"2017-12-05T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-sugar-pine-7-annal-spelling-bee-beyond-the-pine-17","changefreq":"weekly","video":[{"title":"S1:E17 - \"Sugar Pine 7 Annal Spelling bee...\" Beyond the Pine #17","description":"The boys try their hardest to become the next spelling bee champion.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-sugar-pine-7-annal-spelling-bee-beyond-the-pine-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed8a00fc-018f-49cd-8d50-e4664d9b8a5a.jpg/sm/podcast.jpg","duration":3060,"publication_date":"2017-12-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-the-dangers-of-friendship","changefreq":"weekly","video":[{"title":"S2:E49 - The dangers of friendship","description":"Everyone has a price. But not me. Not anymore.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-the-dangers-of-friendship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ab1993ac-c726-4e72-949c-36f6e7295357.jpg/sm/thumby.jpg","duration":550,"publication_date":"2017-12-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bloopers-season-1-sp7-blooper-reel-2","changefreq":"weekly","video":[{"title":"S1:E2 - SP7 Blooper Reel #2","description":"Guess what's back, back again...","player_loc":"https://roosterteeth.com/embed/bloopers-season-1-sp7-blooper-reel-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0fa76396-32a1-4190-86b4-849c5f22afe9.jpg/sm/thumb.jpg","duration":332,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-bankrupt","changefreq":"weekly","video":[{"title":"S2:E48 - Bankrupt.","description":"After receiving some startling news, Steven receives more startling news.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-bankrupt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4b2c4b62-4c09-41de-9c40-c1a59dc1d265.png/sm/Thumbnail.png","duration":475,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-the-whitest-lie","changefreq":"weekly","video":[{"title":"S2:E44 - The whitest lie. ","description":"One lie can ruin a thousand truths. One truth can make you vomit uncontrollably.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-the-whitest-lie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38f856d6-8576-4283-825b-c7a03b709814.jpg/sm/thumb.jpg","duration":514,"publication_date":"2017-11-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-there-s-something-wrong-with-autumn","changefreq":"weekly","video":[{"title":"S2:E43 - There's something wrong with Autumn.","description":"First, she was on fire. Now she's fired.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-there-s-something-wrong-with-autumn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/186c28ab-01b6-40f9-a325-052477723462.jpg/sm/thumb.jpg","duration":335,"publication_date":"2017-11-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-autumn-s-sick","changefreq":"weekly","video":[{"title":"S2:E41 - Autumn's sick...","description":"She needs your prayers.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-autumn-s-sick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e43df833-2776-4362-b14a-ffa760ca3b4b.jpg/sm/autmn.jpg","duration":418,"publication_date":"2017-11-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-what-s-happening-to-my-destroyed-car","changefreq":"weekly","video":[{"title":"S2:E47 - What's happening to my destroyed car?","description":"After almost two months, it was finally time to pass the burden of my mistake to someone else.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-what-s-happening-to-my-destroyed-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d8c3fefd-1947-478e-980e-14941a97d947.jpg/sm/thumby.jpg","duration":368,"publication_date":"2017-11-27T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-why-we-brought-parker-back-beyond-the-pine-16","changefreq":"weekly","video":[{"title":"S1:E16 - \"Why we brought Parker back...\" Beyond the Pine #16","description":"Parker's back. Or is he?","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-why-we-brought-parker-back-beyond-the-pine-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3e13feaf-fd25-47af-b053-c3a98cc534a1.jpg/sm/podcastthumbnail.jpg","duration":3120,"publication_date":"2017-11-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-my-dad-s-new-girlfriend","changefreq":"weekly","video":[{"title":"S2:E40 - My dad's new girlfriend.","description":"My dad comes to the office and brings a Toi.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-my-dad-s-new-girlfriend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3a94d59-27f8-4418-b16a-c3e496d5d886.jpg/sm/dad.jpg","duration":497,"publication_date":"2017-11-25T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-eye-for-an-eye","changefreq":"weekly","video":[{"title":"S2:E45 - Eye for an eye.","description":"We're all blind.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-eye-for-an-eye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a77a6f9b-08ad-4950-a2ba-8453b2d0dc4d.jpg/sm/THUMB.jpg","duration":605,"publication_date":"2017-11-25T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-we-unkilled-parker","changefreq":"weekly","video":[{"title":"S2:E46 - We unkilled Parker.","description":"Life uh...finds a way.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-we-unkilled-parker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/017311e5-1e0c-4ffd-8513-0e1ba63eddac.jpg/sm/thumb.jpg","duration":569,"publication_date":"2017-11-25T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-pine-season-1-this-quiz-is-impossible","changefreq":"weekly","video":[{"title":"S1:E3 - This quiz is impossible","description":"Or something.","player_loc":"https://roosterteeth.com/embed/let-s-pine-season-1-this-quiz-is-impossible","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce6fdca2-251f-4d54-830c-5267c194aa40.jpg/sm/Untitled-2.jpg","duration":820,"publication_date":"2017-11-22T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-autumn-and-bruce","changefreq":"weekly","video":[{"title":"S1:E15 - Autumn and Bruce","description":"We don't even talk about Autumn and Bruce until the end of the podcast.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-autumn-and-bruce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2041c83d-26d6-4849-a805-787fead79458.jpg/sm/thumb.jpg","duration":4023,"publication_date":"2017-11-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-fired-from-rooster-teeth-part-ii","changefreq":"weekly","video":[{"title":"S2:E42 - Fired from Rooster Teeth, Part II","description":"Guess who's back... back again...","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-fired-from-rooster-teeth-part-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7a839c9e-a7d9-47d1-8716-ee1281f21470.jpg/sm/fired.jpg","duration":713,"publication_date":"2017-11-20T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-here-s-why-cow-chop-hates-us-beyond-the-pine-14","changefreq":"weekly","video":[{"title":"S1:E14 - Here's why Cow Chop hates us... Beyond the Pine #14","description":"Hundar from Cow Chop joins us this week to discuss his age.\r\nhttps://www.Stitchfix.com/PINE\r\nhttps://www.BespokePost.com (use code PINE)","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-here-s-why-cow-chop-hates-us-beyond-the-pine-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/add5ee69-1f45-41d9-ac76-628b3584a220.jpg/sm/maxresdefault.jpg","duration":3110,"publication_date":"2017-11-14T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-roller-skate-78","changefreq":"weekly","video":[{"title":"S2:E40 - Roller Skate '78","description":"The boys are back in town to win $5,000 at a skating competition.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-roller-skate-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/753e2fae-79a8-4426-94e6-a2fc4f54efb4.jpg/sm/thumb.jpg","duration":347,"publication_date":"2017-11-10T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-sugar-pine-7-reacts","changefreq":"weekly","video":[{"title":"S2:E39 - Sugar Pine 7 REACTS","description":"Steve visits the Fine Bros Studio while Cib visits the doctor's office.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-sugar-pine-7-reacts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78494bbc-7d2d-495d-ae9c-5bcb7ec6d9eb.jpg/sm/thumb.jpg","duration":334,"publication_date":"2017-11-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-cib-s-nudes","changefreq":"weekly","video":[{"title":"S2:E38 - Cib's nudes.","description":"We need an HR department.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-cib-s-nudes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02b1298c-4860-4b25-a284-9cd0c97b2173.jpg/sm/thumb.jpg","duration":473,"publication_date":"2017-11-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-day-of-the-dead-dude","changefreq":"weekly","video":[{"title":"S2:E37 - Day of the dead dude.","description":"Steve takes the group out to a beautiful forest for exercise. Because they need it.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-day-of-the-dead-dude","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3578770f-e0a5-4330-8b56-c07e14fbde8d.jpg/sm/thumb.jpg","duration":492,"publication_date":"2017-11-10T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-treasure-hunt","changefreq":"weekly","video":[{"title":"S2:E36 - Treasure hunt.","description":"Cib takes the group to the beach, stumbling upon a secret map in a bottle.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-treasure-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d91a3504-95cf-4ea4-ac05-5b751a0c093a.jpg/sm/thumb.jpg","duration":505,"publication_date":"2017-11-10T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-philip-defranco-shaves-my-head","changefreq":"weekly","video":[{"title":"S2:E35 - Philip DeFranco shaves my head.","description":"A Suptic always pays his dues.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-philip-defranco-shaves-my-head","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/53d3a48b-53f1-402e-8d4d-0d2ba3d8cdd1.jpg/sm/thumb.jpg","duration":325,"publication_date":"2017-11-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-the-worst-investment-ever","changefreq":"weekly","video":[{"title":"S2:E34 - The worst investment ever.","description":"Big beef business is booming, and Cib wants in.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-the-worst-investment-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78292da5-60ea-45e8-a3ed-64d5881a093b.jpg/sm/thumb.jpg","duration":417,"publication_date":"2017-11-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-happy-accident","changefreq":"weekly","video":[{"title":"S2:E32 - Happy Accident.","description":"After a terrible car accident, Cib becomes the smartest man alive.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-happy-accident","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/787c82bd-9bf4-4d9b-bda9-9b1d8789c0ea.jpg/sm/thumb.jpg","duration":554,"publication_date":"2017-11-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-game-grumps-vs-funhaus-and-me","changefreq":"weekly","video":[{"title":"S2:E33 - Game Grumps vs. Funhaus. And me.","description":"I finally utilize my one and only skill: playing Overwatch.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-game-grumps-vs-funhaus-and-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5c79a6a-0dbc-4092-bd02-209776927c04.jpg/sm/thumb2.jpg","duration":575,"publication_date":"2017-11-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-sourcefed-vs-sugar-pine-7-beyond-the-pine-13","changefreq":"weekly","video":[{"title":"S1:E13 - SourceFed vs. Sugar Pine 7","description":"Woah, is that Joe Bereta?? (No. No it's not.)","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-sourcefed-vs-sugar-pine-7-beyond-the-pine-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce288874-5ee1-4a03-bb1f-23a53e822e58.jpg/sm/thumb.jpg","duration":3713,"publication_date":"2017-11-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-pine-season-1-the-world-s-hardest-game","changefreq":"weekly","video":[{"title":"S1:E2 - The World's Hardest Game","description":"Was it actually the world's hardest game or are we just really bad at playing games?","player_loc":"https://roosterteeth.com/embed/let-s-pine-season-1-the-world-s-hardest-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/91360df6-6d35-41dc-82b6-6d42cd733098.jpg/sm/letspine2thumb.jpg","duration":1228,"publication_date":"2017-11-07T01:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-bald-and-beautiful","changefreq":"weekly","video":[{"title":"S1:E12 - Bald and beautiful ","description":"The gang discusses current events including Kevin Spacey's allegations. Also Steven is bald.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-bald-and-beautiful","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/80d0227b-3323-45bb-be4e-cea7d6385f21.jpg/sm/Image3.jpg","duration":3484,"publication_date":"2017-10-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-youtube-hates-us","changefreq":"weekly","video":[{"title":"S1:E8 - YouTube hates us?","description":"Hey, it's Beyond the Pine! We're getting demonetized! We also read some very kind fan reviews, James is concerned his girlfriend got roofied, and Autumn sacrifices her rear end for the Streamys.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-youtube-hates-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/580c0fb9-0613-4fae-b0c6-54af14fde397.jpg/sm/maxresdefault.jpg","duration":3440,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-this-is-why-we-re-bad-people","changefreq":"weekly","video":[{"title":"S1:E4 - This is why we're bad people","description":"Welcome back to Beyond the Pine. In this episode, we discuss illegal activity we all take part in.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-this-is-why-we-re-bad-people","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb9f9c2f-5419-4422-b13d-bbd392c246b6.jpg/sm/maxresdefault.jpg","duration":3549,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-woods-2017-the-woods-behind-the-scenes","changefreq":"weekly","video":[{"title":"2017:E2 - The Woods - Behind The Scenes","description":"We took on the impossible: shooting a 30-page short film in 3 days. Check out everything that went on behind the camera and the amazing team that made it happen.","player_loc":"https://roosterteeth.com/embed/the-woods-2017-the-woods-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c3d485a-8f64-4119-a8d1-7ee047388484/sm/2350994-1509405244395-unnamed.jpg","duration":577,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/bloopers-season-1-sp7-blooper-reel-1","changefreq":"weekly","video":[{"title":"S1:E1 - SP7 Blooper Reel #1","description":"You asked for them and we've got plenty - enjoy our first bloopers episode!","player_loc":"https://roosterteeth.com/embed/bloopers-season-1-sp7-blooper-reel-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a55c0e0-1be5-4a10-8858-a6ad21e4798d.jpg/sm/blooperthumbFIRSTEPISODE.jpg","duration":308,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-smash-that-record-button","changefreq":"weekly","video":[{"title":"2018:E17 - Smash That Record Button!","description":"Our boys are so close to the end they can smell it, they can taste it, they can almost touch it BUT they have to do one last circuit around everyone's favorite house.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-smash-that-record-button","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b36beab6-e21d-48de-9e57-ffe469026c55.jpg/sm/bzcfatalframe2thumb10.jpg","duration":4518,"publication_date":"2018-04-27T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-133","changefreq":"weekly","video":[{"title":"S11:E133 - May The What? Be With You - #133","description":"Alternative ways to say this famous Star Wars line. Go!","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b7491c5-5cd0-4c1b-81d5-b36c11443fa9.jpg/sm/ots133thumb2.jpg","duration":391,"publication_date":"2018-04-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-133","changefreq":"weekly","video":[{"title":"S11:E133 - Funhaus Goes Four Loco - #133","description":"Download the audio version at http://bit.ly/2HyNtOy. Which team is the youngest and fairest of them all? Jon decides in a special and very strange game of On The Spot from Funhaus HQ. This episode is sponsored by Felix Gray (http://bit.ly/2Ce36ca) and Audible (https://adbl.co/2r03KWx)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/76e19515-07b3-41a3-b67e-205c5e9dd967.jpg/sm/onthespot1332thumbnail.jpg","duration":2204,"publication_date":"2018-04-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-489","changefreq":"weekly","video":[{"title":"2018:E489 - It's A Killer Beak - #489","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Westworld without spoilers, old videos, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-489","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/395ae6b7-c922-4113-aa75-219fa3360eed.jpg/sm/barb.jpg","duration":1182,"publication_date":"2018-04-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-skill-tree-survival","changefreq":"weekly","video":[{"title":"2018:E10 - Skill Tree: Survival","description":"Dave from Earth Native Wilderness teaches Ellie some bushcraft skills to prepare her to be an apocalypse warrior. Director: Drew Saplin. Producer: Chelsea Harfoush. DP: Ben Powell. Sound: Jake Camitta. B Cam: Dax Stringer. Script Supervisor: Sam Bennett. Editors: Molly McDermott, Ellie Main & Jordan Kerfeld. Graphics: Max Kruemcke & Jordan Kerfeld. Art: Kathryn Simrell. Twitter:@katiesimrell Patreon: www.patreon.com/simrell","player_loc":"https://roosterteeth.com/embed/the-lab-2018-skill-tree-survival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/127fd23b-4330-437e-81fb-41e4898a409a.png/sm/SKILLTREEEP3THUMBNAILV3.png","duration":698,"publication_date":"2018-04-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-66","changefreq":"weekly","video":[{"title":"2018:E66 - Josh's Relationship...with Diabetes - #66","description":"Join Barbara Dunkelman, Josh Flanagan, Bruce Greene, and Mariel Salcedo as they discuss some follow ups from previous Box of Issues and give their advice on a new question!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/25be27c6-4a8f-494f-9fb7-e62cff03cc2f.png/sm/ao66site00011208still010.png","duration":1065,"publication_date":"2018-04-24T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018","changefreq":"weekly","video":[{"title":"2018:E489 - Burnie the Hamburgler - #489","description":"Download the audio version at http://bit.ly/2Fg2S4y. Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss food sent to space, flight incidents, 15 years of Rooster Teeth, and more on this week's RT Podcast! This episode originally aired on April 23, 2018, sponsored by eHarmony (http://bit.ly/2K8eNF6), Honey (http://bit.ly/2KbZ4Fc), Shari’s Berries (http://bit.ly/2EBDpDG)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ab2b3b04-9a28-479b-9f37-dd730b7a4e43.jpg/sm/rtpodcast4895thumbnail.jpg","duration":5451,"publication_date":"2018-04-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-66","changefreq":"weekly","video":[{"title":"2018:E66 - Bruce Greene is Hot & Doesn't Know It - #66","description":"Download the audio version at http://bit.ly/2vEI3Ai. Join Barbara Dunkelman, Josh Flanagan, Bruce Greene, and Mariel Salcedo as they play a game of Cupidity, discuss health and mental health, and answer a question from the Box of Issues! This episode brought to you by Hubble Contacts (http://bit.ly/2E7GKbS) Lola (http://bit.ly/2Jj6CEC) and MVMT (http://bit.ly/2xJDj8oa). The following episode contains a brief discussion on suicide. If you or anyone you know is struggling with suicidal thoughts please contact The National Suicide Prevention Lifeline at 1-800-273-8255.","player_loc":"https://roosterteeth.com/embed/always-open-2018-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15662b35-8a4d-4c25-89f0-524bf5ee3fac.jpg/sm/alwaysopen662thumbnail.jpg","duration":5237,"publication_date":"2018-04-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-327","changefreq":"weekly","video":[{"title":"2018:E327 - Beanie Baby Catspiracy","description":"Smee likes to drag around Beanie Babies and Gavin can't help but wonder what his cat is thinking.\r\n\r\nAudio from Rooster Teeth Podcast #463\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-463-gj4goh\r\nAnimated by: William Ball\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-327","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b565c5f-5ae8-47e1-b075-5d054d0c53b6.jpg/sm/rtaa327tn.jpg","duration":129,"publication_date":"2018-04-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-16-incendiary-incidents","changefreq":"weekly","video":[{"title":"S16:E2 - Incendiary Incidents","description":"The gang goes out for pizza. Grif attempts to stop the plot from moving forward. The return of a deceased teammate throws all their plans in peril.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-16-incendiary-incidents","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/466c1dac-6f38-4ec3-aef1-61d3d2b4b810.jpg/sm/rvb16ep02thumbnail.jpg","duration":690,"publication_date":"2018-04-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-joe-rybicki","changefreq":"weekly","video":[{"title":"2018:E16 - Joe Rybicki","description":"What do the Ex-Presidents do? Does anyone really know? You'd think it would be all speeches and checking in on their respective libraries but you'd be wrong. There is a heist that needs planning, valuables that need stealing, and Obama's Five are the only Ex-Presidents that can get this job done. (Spoiler alert: They plan the heist while eating at MagaDonald's.)","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-joe-rybicki","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/447bb3d1-efee-44de-82bc-2d9baad15108.jpg/sm/bzcfatalframe2thumb09.jpg","duration":3803,"publication_date":"2018-04-20T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-docs-why-we-re-here-15-years-of-rooster-teeth-why-we-re-here-15-years-of-rooster-teeth","changefreq":"weekly","video":[{"title":"WWH15YoRT:E1 - Why We’re Here: 15 Years of Rooster Teeth","description":"Why We’re Here: 15 Years of Rooster Teeth provides unprecedented access inside Rooster Teeth, the pioneering studio behind Red vs. Blue, RWBY, and Achievement Hunter. Founded in a spare bedroom in 2003, the company’s roots in “machinima”—animated shorts made using video games—found a loyal following before the existence of YouTube, and grew into a supportive community of millions. In the early days, if a community member made something cool, Rooster Teeth hired them. This community of like-minded fans has allowed Rooster Teeth to keep moving forward, creating podcasts, original series, feature films, and massive live events around the world, bypassing the traditional gatekeepers of old media. This documentary reveals never-before-seen archival footage from the private collections of the original founders and explores how the company and community have grown over the last 15 years.","player_loc":"https://roosterteeth.com/embed/rt-docs-why-we-re-here-15-years-of-rooster-teeth-why-we-re-here-15-years-of-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/900cfea1-18e1-414e-b1e6-bad549e34be0.jpg/sm/whywerehere2thumbnail2.jpg","duration":3985,"publication_date":"2018-04-20T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/nomad-of-nowhere-season-1-6","changefreq":"weekly","video":[{"title":"S1:E6 - El Rey","description":"Toth and Skout chase the Nomad into a sandstorm. Seeking refuge, the Nomad stumbles upon an abandoned fort, and curiously encounters visions of a time long ago. Meanwhile, Toth squares off with a beast that thrives in the harsh sandstorms.","player_loc":"https://roosterteeth.com/embed/nomad-of-nowhere-season-1-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fcee6c53-bc1b-4296-8b7a-5a846b6aa06e.jpg/sm/nons1ep06tnv2.jpg","duration":749,"publication_date":"2018-04-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-the-ultimate-stress-test","changefreq":"weekly","video":[{"title":"2018:E13 - The Ultimate Stress Test","description":"Adam and Marcus throw fire, axes, band saws, and wolf fangs at new Rooster Teeth shirts to see if they are durable. Producer/Director: Patrick Pope. Camera: Erik Gatling. Editors: Patrick Pope & Joe Ashe.","player_loc":"https://roosterteeth.com/embed/the-lab-2018-the-ultimate-stress-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/254261ed-72f4-4cdb-b624-d3e1acbc0ec4.jpg/sm/stresstest5thumbnail.jpg","duration":93,"publication_date":"2018-04-20T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-488","changefreq":"weekly","video":[{"title":"2018:E488 - Why Is Gavin Blue? - #488","description":"Download the audio version at http://bit.ly/2H8qq14. Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss bullies, travel scenarios, Facebook and Twitter, and more on this week's RT Podcast! This episode originally aired on April 16, 2018, sponsored by MeUndies (http://bit.ly/2sYtkii), Squarespace (http://bit.ly/1SPgAL3), Casper (http://bit.ly/2vk8UBt)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-488","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/973f9b07-2847-4a35-8106-c9d32e5c42df.jpg/sm/rtpodcast4882thumbnail.jpg","duration":5532,"publication_date":"2018-04-18T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-488","changefreq":"weekly","video":[{"title":"2018:E488 - What's The Legality Of Dying? - #488","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss things caught on camera, injuries at baseball games, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-488","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/95f590b2-1370-49c4-8feb-53f757fab32a.jpg/sm/burnie3-ps.jpg","duration":1034,"publication_date":"2018-04-18T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-skill-tree-agility","changefreq":"weekly","video":[{"title":"2018:E9 - Skill Tree: Agility","description":"Stav from the Bam Academy teaches Ellie parkour to prepare her to be an apocalypse warrior. Director: Drew Saplin. Producer: Chelsea Harfoush. DP: Ben Powell. Sound: Jake Camitta. B Cam: Dax Stringer. Script Supervisor: Sam Bennett. Editors: Molly McDermott, Ellie Main & Jordan Kerfeld. Graphics: Max Kruemcke & Jordan Kerfeld. Art: Kathryn Simrell. Twitter:@katiesimrell Patreon: www.patreon.com/simrell","player_loc":"https://roosterteeth.com/embed/the-lab-2018-skill-tree-agility","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/273d2a5d-7f24-48fc-a013-6d2861826cdf.png/sm/SKILLTREEEP2THUMBNAILV3.png","duration":552,"publication_date":"2018-04-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-65","changefreq":"weekly","video":[{"title":"2018:E65 - Rudy On My Mind - #65","description":"Join Barbara Dunkelman, Trevor Collins, Jessica Vasami, and Mariel Salcedo as they help an audience member improve their Dating Profile!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c39f6d09-2839-46c4-b844-696c12a9259e.jpg/sm/psthumb.jpg","duration":786,"publication_date":"2018-04-17T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-65","changefreq":"weekly","video":[{"title":"2018:E65 - Trevor’s Thunderous Clap - #65","description":"Join Barbara Dunkelman, Trevor Collins, Jessica Vasami, and Mariel Salcedo as they play a game of Cupidity, read a fan letter, discuss what makes them happy, and answer a question from the Box of Issues! This episode brought to you by Dodger Coffee Co (http://bit.ly/2FfQ7fj) Daily Harvest (http://bit.ly/2qV3vOV) and Tripping (http://bit.ly/2nTPDQa)","player_loc":"https://roosterteeth.com/embed/always-open-2018-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a56800a-0866-46ec-aaad-1396684a008c.jpg/sm/alwaysopen651thumbnail.jpg","duration":4367,"publication_date":"2018-04-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-325","changefreq":"weekly","video":[{"title":"2018:E325 - Batman Roleplay Pt. 2","description":"The Batman porno continues, but this time Miles asks Gus and Gavin for their input.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-325","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9a348936-dab2-4010-a656-3f1f9ecbd312.jpg/sm/rtaa325tn.jpg","duration":100,"publication_date":"2018-04-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-16-1","changefreq":"weekly","video":[{"title":"S16:E1 - The Shisno","description":"The beginning of a new adventure for the Reds and Blues picks up right where the last one left off... a conversation about where to get lunch. Unbeknownst to our heroes, powerful forces have taken an interest in their debate.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-16-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b9ad7e15-56de-47c9-89e2-d3af138916d4.jpg/sm/rvb16ep01thumbnail.jpg","duration":576,"publication_date":"2018-04-15T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-stretch-those-cheeks","changefreq":"weekly","video":[{"title":"2018:E15 - Stretch Those Cheeks","description":"Come hell or high water Kyle and Miles are making progress this episode. Miles has doubled down with double dogs on his head while Kyle searches high and low for the girl in the crimson kimono.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-stretch-those-cheeks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/29fc9dc1-a6e3-4305-9dc0-e51ba21a36ec.jpg/sm/bzcfatalframe2thumb08.jpg","duration":3286,"publication_date":"2018-04-13T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-4","changefreq":"weekly","video":[{"title":"S9:E4 - Episode 4: Evacuation Plan","description":"S9:E4 - Episode 4: Evacuation Plan","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/885b52e4-753d-425d-8554-35e4385dfaae/sm/ep3400.jpg","duration":386,"publication_date":"2018-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-6","changefreq":"weekly","video":[{"title":"S9:E6 - Episode 6: Familiar Feelings","description":"S9:E6 - Episode 6: Familiar Feelings","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e760428e-3690-48d0-aaa0-0cc3398df0a9/sm/ep3454.jpg","duration":324,"publication_date":"2018-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-8","changefreq":"weekly","video":[{"title":"S9:E8 - Episode 8: Shaking the Foundation","description":"S9:E8 - Episode 8: Shaking the Foundation","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/26d39bb8-d50b-44ce-8fd6-abe89e16036d.jpg/sm/rvbs9e8.jpg","duration":289,"publication_date":"2018-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nomad-of-nowhere-season-1-5mxvbaw2","changefreq":"weekly","video":[{"title":"S1:E5 - The Kindness of Strangers","description":"Nomad crosses paths with a friendly undertaker who harbors him from Toth and Skout. Trusting his word, Nomad takes the undertaker up on his offer for safe passage across the desert, but it turns out this morbid man has his own plans for the Nomad...","player_loc":"https://roosterteeth.com/embed/nomad-of-nowhere-season-1-5mxvbaw2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/46605116-2bf9-4375-aa1e-dccb6e50493d.jpg/sm/nons1ep05tn.jpg","duration":669,"publication_date":"2018-04-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-1","changefreq":"weekly","video":[{"title":"S9:E1 - Episode 1: Rounding Error","description":"The first episode of Red vs. Blue Season 9.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc2978ab-c5d2-445a-8ce2-d07b51629f2b/sm/ep3328.jpg","duration":401,"publication_date":"2018-04-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-487","changefreq":"weekly","video":[{"title":"2018:E487 - Ammo Poor Elephants - #487","description":"Join Gus Sorola, Gavin Free, Miles Luna, and Burnie Burns as they discuss tough video games, Nier Automata, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-487","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e20cc47-bf10-48b8-b2d1-f588e7046a36.jpg/sm/miles2.jpg","duration":896,"publication_date":"2018-04-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-skill-tree-stealth","changefreq":"weekly","video":[{"title":"2018:E8 - Skill Tree: Stealth","description":"Bryan from ITS Tactical teaches Ellie how to pick locks and escape zip ties to prepare her to be an apocalypse warrior. Director: Drew Saplin. Producer: Chelsea Harfoush. DP: Ben Powell. Sound: Jake Camitta. B Cam: Dax Stringer. Script Supervisor: Sam Bennett. Editors: Molly McDermott, Ellie Main & Jordan Kerfeld. Graphics: Max Kruemcke & Jordan Kerfeld. Art: Kathryn Simrell. Twitter:@katiesimrell Patreon: www.patreon.com/simrell","player_loc":"https://roosterteeth.com/embed/the-lab-2018-skill-tree-stealth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9d3ad82b-9e15-4b7a-ab52-d76ac41cad8b.png/sm/SKILLTREEEP1THUMBNAILV3.png","duration":459,"publication_date":"2018-04-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-64","changefreq":"weekly","video":[{"title":"2018:E64 - How & When To Move On - #64","description":"Join Barbara Dunkleman, Tyler Coe, Mariel Salcedo, and special guest Alanah Pearce as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/26a58b3c-c0ca-47a1-9375-65b9393080cd.png/sm/aositecopy0100461000still010.png","duration":854,"publication_date":"2018-04-10T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-487","changefreq":"weekly","video":[{"title":"2018:E487 - We Got Nothing Figured Out - #487","description":"Download the audio version at http://bit.ly/2HpUYZ2. Join Gus Sorola, Gavin Free, Miles Luna, and Burnie Burns as they discuss tourism, snacks, milkmen, and more on this week's RT Podcast! This episode originally aired on April 9, 2018, sponsored by MeUndies (http://bit.ly/2sYtkii), Betterment (http://bit.ly/2JtYfHf), Audible (http://adbl.co/2CJhSqn)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-487","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/546e7591-6a81-42d3-9fce-d828a95214da.jpg/sm/rtpodcast4875thumbnail.jpg","duration":6080,"publication_date":"2018-04-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-64","changefreq":"weekly","video":[{"title":"2018:E64 - Are Escorts Ok? - #64","description":"Download the audio version at http://bit.ly/2qhwBVX. Join Barbara Dunkelman, Tyler Coe, Mariel Salcedo, and special guest Alanah Pearce as they discuss a confessional, long distance relationships and answer a question from the Box of Issues! This episode brought to you by MeUndies (http://bit.ly/2o3FAci) and BioClarity (http://bit.ly/2eZSeI1).","player_loc":"https://roosterteeth.com/embed/always-open-2018-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15028ced-2956-49a7-b66a-557bc0b09612.jpg/sm/AlwaysOpen643thumbnail.jpg","duration":3618,"publication_date":"2018-04-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-324","changefreq":"weekly","video":[{"title":"2018:E324 - Batman Roleplay Pt. 1","description":"Miles is writing a Batman porno, but needs a little insite from Kyle and Cole\r\n\r\nAudio from Backwardz Compatible DMC # 3 & 4\r\nhttp://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-3\r\nhttp://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-4-attic-metal\r\nAnimated by: Beth Mackenzie\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-324","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/81541371-7304-4a28-a0e7-162f5c6e060e.jpg/sm/rtaa324tn.jpg","duration":139,"publication_date":"2018-04-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nomad-of-nowhere-season-1-4poksne1","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4 - The Twindleweed Brothers Traveling Circus","description":"Nomad stumbles upon a traveling circus -- or rather, it stumbles upon him. By chance, Skout and Toth also happen to be enjoying the festivities, and things get even worse when all the performers are former bounty hunters to boot. At least they serve cotton candy.","player_loc":"https://roosterteeth.com/embed/nomad-of-nowhere-season-1-4poksne1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7404dd08-7490-4653-a41e-11618f9025e5.jpg/sm/NoNS1Ep04TN.jpg","duration":650,"publication_date":"2018-04-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-bonkers","changefreq":"weekly","video":[{"title":"2018:E14 - Bonkers","description":"Our boys or should I say our Big Brave Dogs are running around this ghost town and making a lot of progress but unfortunately Kyle and Miles get so excited that they lose their camera. You know, the one thing that can fight ghosts?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-bonkers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77c5340d-2ece-48c0-a697-4a5e45a84549.jpg/sm/BzCFATALFRAME2THUMB07.jpg","duration":3529,"publication_date":"2018-04-06T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-132","changefreq":"weekly","video":[{"title":"S11:E132 - Filling Flappy Gaps - #132","description":"James Buckley reveals a bakery with a naughty side.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bbeae94a-55da-48d9-b77a-bc463a84af7a.png/sm/RTPStream00192516Still010.png","duration":625,"publication_date":"2018-04-06T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-132","changefreq":"weekly","video":[{"title":"S11:E132 - Sorry Internet, You Lost - #132","description":"Download the audio version at http://bit.ly/2Eo9hdl. James Buckley, Michael and Jon push Matt to the brink of cancelling this show. And Jon mentions his girlfriend, the model, again. Sponsored by Honey (http://bit.ly/2FpmMei) and MeUndies (http://bit.ly/2GU12av). Hosted by Jon Risinger with special guest James Buckley. Featuring Matt Hullum, Burnie Burns and Michael Jones.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/907ca423-2661-4b74-96e0-f3569d0b5801.jpg/sm/OntheSpot132thumbnail.jpg","duration":2838,"publication_date":"2018-04-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-486","changefreq":"weekly","video":[{"title":"2018:E486 - How To Identify Your Wreckage - #486","description":"Join Gus Sorola, Gavin Free, Burnie Burns, and special guest James Buckley as they discuss login problems, small planes, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-486","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43bc8e52-822c-4614-a794-8c65f2a83281.jpg/sm/Burnie4.jpg","duration":1324,"publication_date":"2018-04-04T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-63","changefreq":"weekly","video":[{"title":"2018:E63 - Matt and Burnie's Origin Stories - #63","description":"Join Barbara Dunkelman, Matt Hullum, Burnie Burns, and Mariel Salcedo as discuss what they imagine their lives would be like at 15.","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b360845b-a87e-4723-85ea-d6ed8caa19ef.jpg/sm/Matt3.jpg","duration":811,"publication_date":"2018-04-03T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-486","changefreq":"weekly","video":[{"title":"2018:E486 - What Makes It An Ocean - #486","description":"Download the audio version at http://bit.ly/2GQAcni. Join Gus Sorola, Gavin Free, Burnie Burns, and special guest James Buckley as they discuss Ready Player One, 15 years of Rooster Teeth, Facebook, and more on this week's RT Podcast! This episode originally aired on April 2, 2018, sponsored by Hims (http://bit.ly/2EeKOHw) and MVMT (http://bit.ly/2AdONpA).\r\n\r\nAnd stick around after the show for an interview with Broken Lizard about their upcoming movie Super Troopers 2!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-486","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45ad776e-cf48-4e13-8140-1209ffb34720.jpg/sm/RTPodcast4866thumbnail.jpg","duration":6865,"publication_date":"2018-04-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-63","changefreq":"weekly","video":[{"title":"2018:E63 - Burnie & Matt Get Real - #63","description":"Download the audio version at http://bit.ly/2ImxaVc. Join Barbara Dunkelman, Matt Hullum, Burnie Burns, and Mariel Salcedo as they celebrate Rooster Teeth's 15th Anniversary! Watch as they play a round of cupidity, answer audience submitted questions, and discuss the changes Rooster Teeth has gone through. This episode brought to you by Audible (https://adbl.co/2GNzFT7) BioClarity (http://bit.ly/2eZSeI1) and HelloFresh (http://bit.ly/2kkP0RG).","player_loc":"https://roosterteeth.com/embed/always-open-2018-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9d5ec85c-ee5a-4dc8-9974-e32786822408.jpg/sm/AlwaysOpen6311thumbnail.jpg","duration":4454,"publication_date":"2018-04-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-323","changefreq":"weekly","video":[{"title":"2018:E323 - Shattered Dreams","description":"Mariel describes one of the weirdest events her school used to take part in. Don't drink and drive kids.\r\n\r\nAudio from Always Open Podcast #45\r\nhttp://roosterteeth.com/episode/always-open-2017-45-iughekjg\r\nAnimated by: Johnathan Floyd and Quinn Weston\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-323","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/263904d2-2925-4948-b3af-1f48c962369d.jpg/sm/rtaa323tn.jpg","duration":158,"publication_date":"2018-04-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-like-a-bitch","changefreq":"weekly","video":[{"title":"2018:E13 - Like a Bitch...","description":"Our intrepid duo start off this week talking about Sea of Thieves but apparently Fatal Frame 2 does NOT like it when Kyle and Miles start talking about other games because it decides to kick things up a notch and our boys are not prepared.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-like-a-bitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/334fe5a3-d9f8-426b-ab88-0124deb8df4d.jpg/sm/BzCFATALFRAME2THUMB06.jpg","duration":6697,"publication_date":"2018-03-30T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/nomad-of-nowhere-season-1-3iufdw7","changefreq":"weekly","video":[{"title":"S1:E3 - Trouble on Purpose","description":"A ruthless bounty hunter descends upon Bliss Hill in search of the Nomad. Toth's mission to the Outskirts makes her grow impatient. The Nomad must decide whether to help the people who ran him out of town.","player_loc":"https://roosterteeth.com/embed/nomad-of-nowhere-season-1-3iufdw7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b2eb0d4e-90fc-4722-a766-061ec50ba043.jpg/sm/NoNS1Ep03TN.jpg","duration":847,"publication_date":"2018-03-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-131","changefreq":"weekly","video":[{"title":"S11:E131 - Dabbing for Privilege - #131","description":"Cole and Ellie save a girl from shark infested waters, then it gets weird.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8bd8190a-4b37-470d-8468-bca2c336ae98.png/sm/OTS131SiteCopy010039181Still002.png","duration":551,"publication_date":"2018-03-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-the-new-roosterteeth-com-is-here","changefreq":"weekly","video":[{"title":"2018:E7 - RoosterTeeth.com Eaten by a Bear?!","description":"It's time to say hello, because the new RoosterTeeth.com video site and mobile apps are finally available! We hope you enjoy your experience - no spirit guide required!","player_loc":"https://roosterteeth.com/embed/the-lab-2018-the-new-roosterteeth-com-is-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5e9a6ca4-0de7-4a1c-a99d-422056f1d341.jpg/sm/ImageuploadedfromiOS.jpg","duration":173,"publication_date":"2018-03-30T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-131","changefreq":"weekly","video":[{"title":"S11:E131 - The Alpaca Show - #131","description":"Have you ever eaten an alpaca? Cole shares a sad tale of an alpaca who thought he was a horse. Sponsored by Dollar Shave Club ( http://bit.ly/2zQ61Xb ) Hims ( http://bit.ly/2GCmiVN ) and Blue Apron ( http://cook.ba/1V1MMMd ) Hosted by Jon Risinger with special guest Julia Lepetit (@JuliaLepetit) from Youtube.com/drawfee Featuring Cole Gallian, Ellie Main and Todd Womack.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/25c2f93f-31ef-4f47-9e30-6f10edbd8289.jpg/sm/OntheSpot1319thumbnail.jpg","duration":2968,"publication_date":"2018-03-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-485","changefreq":"weekly","video":[{"title":"2018:E485 - Wear A Bell At All Times - #485","description":"Join Gus Sorola, Becca Frasier, Barbara Dunkelman, and Burnie Burns as they discuss Toys R Us and closing stores, teenagers, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-485","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43335e10-af88-47fe-bd1e-e20604f6ee4c.jpg/sm/BarbPS.jpg","duration":1314,"publication_date":"2018-03-28T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-485","changefreq":"weekly","video":[{"title":"2018:E485 - The Gang Starts A Cult - #485","description":"Join Gus Sorola, Becca Frasier, Barbara Dunkelman, and Burnie Burns as they discuss shaving, Sea of Thieves, online security, and more on this week's RT Podcast! This episode originally aired on March 26, 2018, sponsored by Blue Apron (http://cook.ba/1YpCafL) and Dollar Shave Club (http://bit.ly/2D8ErXc)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-485","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77933dce-d4f8-4008-bca0-65b0ba2c1ed9.jpg/sm/RTPodcast4851thumbnail.jpg","duration":5543,"publication_date":"2018-03-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-62","changefreq":"weekly","video":[{"title":"2018:E62 - James' Worst Decision - #62","description":"Join Barbara Dunkelman, Autumn Farrell, James DeAngelis, and Mariel Salcedo discuss turbulence, flying and drunken nights.","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59a639e9-3f40-4306-a984-8ad91dc4597c.png/sm/psthumb.png","duration":1057,"publication_date":"2018-03-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-62","changefreq":"weekly","video":[{"title":"2018:E62 - Sugar Pine 7's Double Talk - #62","description":"Join Barbara Dunkelman, Autumn Farrell, James DeAngelis, and Mariel Salcedo as they play a game of Cupidity, help an audience member improve their dating profile, and answer a question from the Box of Issues! This episode is brought to you by BioClarity (http://bit.ly/2AnGPHP) and Daily Harvest (http://bit.ly/2qV3vOV).","player_loc":"https://roosterteeth.com/embed/always-open-2018-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b56c1e4e-36eb-465a-995e-e27222192526.jpg/sm/AlwaysOpen623thumbnail.jpg","duration":4171,"publication_date":"2018-03-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-svod-smash","changefreq":"weekly","video":[{"title":"2018:E6 - Goodbye old RoosterTeeth.com!","description":"With the launch of the new RoosterTeeth.com video site and mobile apps less than a week away, we decided we would take some work off the tech team’s plate, and lend a hand by destroying the old site!","player_loc":"https://roosterteeth.com/embed/the-lab-2018-svod-smash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f54ab735-a55b-4cd1-a029-0733428eae5e.jpg/sm/RTLifeSVODTeaser1Thumbnail.jpg","duration":69,"publication_date":"2018-03-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-322","changefreq":"weekly","video":[{"title":"2018:E322 - Elephant In Nawlins","description":"Geoff watches an Elephant outside his window do some tricks. It also throws up.\r\n\r\nAudio from Off Topic Podcast #26\r\nhttp://achievementhunter.roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-26\r\nAnimated by: Tanya Fetzer and William Ball\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-322","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce82fc0f-373d-466f-bc19-9c9b9269fe0a.jpg/sm/rtaa322tn.jpg","duration":157,"publication_date":"2018-03-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-madame-lalaurie","changefreq":"weekly","video":[{"title":"2018:E12 - Madame LaLaurie","description":"Miles recounts his trip to New Orleans over the weekend while Kyle tries to remember how to warm someone's icy heart with a cool island song. Yeah, you read that right.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-madame-lalaurie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/951c855c-9da9-4bd2-9943-d33a7a4797e3.jpg/sm/BzCFATALFRAME2THUMB05.jpg","duration":3440,"publication_date":"2018-03-23T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-130","changefreq":"weekly","video":[{"title":"S11:E130 - Certain Things Are Upside Down - #130","description":"Joel and a famous mouse have a falling out. And, Dr. Jeremy is in session.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/12cbce48-efd0-4a06-bad6-9167cb655495.jpg/sm/OTS130thumb1.jpg","duration":551,"publication_date":"2018-03-23T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/nomad-of-nowhere-1-28aesj2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2 - Bliss Hill","description":"Toth and Skout return to Don Paragon with bad news, where Red Manuel takes the opportunity to propose another approach to get what they want. Meanwhile, the Nomad tries to help a town in need.","player_loc":"https://roosterteeth.com/embed/nomad-of-nowhere-1-28aesj2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7623d2b7-916d-4642-949b-3f14efedff20.jpg/sm/NoNS1Ep02TN.jpg","duration":848,"publication_date":"2018-03-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-130","changefreq":"weekly","video":[{"title":"S11:E130 - Jeremy Plays PUBG IRL - #130","description":"Joel and Chris try to out-rap Jeremy. And, Jeremy and Matt find a date for another Achievement Hunter with a fetish. Sponsored by MVMT Watches ( http://bit.ly/2zPGRIp ) and Felix Gray Glasses ( http://bit.ly/2Du6vUf ). Hosted by Jon Risinger. Featuring Joel Heyman, Jeremy Dooley, Chris Demarais, and Matt Bragg.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79f70ec9-ca21-4b39-aba5-254976fc509b.jpg/sm/OntheSpot130thumbnail.jpg","duration":2650,"publication_date":"2018-03-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-svod-fixed-it","changefreq":"weekly","video":[{"title":"2018:E5 - The NEW RoosterTeeth.com Video Site is Coming March 30!","description":"It’s been a long time coming, but we’ve heard your (many) thoughts, and made some changes…The NEW Roosterteeth.com video platform is almost here! Check out the beta at svod.roosterteeth.com to see what’s in progress, give us your feedback, and stay tuned for more to come!","player_loc":"https://roosterteeth.com/embed/the-lab-2018-svod-fixed-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a787b58-dc5d-4207-a15b-6f3e3af431ba.jpg/sm/SVODPromoThumbnail.jpg","duration":33,"publication_date":"2018-03-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-claws-and-effect","changefreq":"weekly","video":[{"title":"S5:E8 - Claws and Effect","description":"Join Blaine Gibson, Aaron Marquis, and THE Matt Hullum as they decide if getting close encountered, dumboed and, claw machined is worth a cool million in this episode of Million Dollars But.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-claws-and-effect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d6c02318-acc9-4803-a4c5-41e51f37d52d.jpg/sm/MDBS5BAM9Thumbnail.jpg","duration":316,"publication_date":"2018-03-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-psa-2018-hard-truths","changefreq":"weekly","video":[{"title":"2018:E4 - Hard Truths","description":"Tough love is the only love you losers can hope for, am I right?","player_loc":"https://roosterteeth.com/embed/red-vs-blue-psa-2018-hard-truths","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/81395e2b-d399-4f4b-9901-1071a858c1a0.jpg/sm/HardTruthsThumbnailwlogo.jpg","duration":385,"publication_date":"2018-03-22T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-484","changefreq":"weekly","video":[{"title":"2018:E484 - Roundabouts and Dumb Austin Drivers - #484","description":"2018:E484 - Roundabouts and Dumb Austin Drivers - #484","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-484","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a2566435-99a5-457b-8547-8e1a7d71f8c1.jpg/sm/BurniePSSerious.jpg","duration":974,"publication_date":"2018-03-21T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-61","changefreq":"weekly","video":[{"title":"2018:E61 - Mia Khalifa Yells at Everyone - #61","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Mia Khalifa as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d681f44a-4c69-49b6-901d-03433018acba.jpg/sm/psthumb.jpg","duration":627,"publication_date":"2018-03-20T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-484","changefreq":"weekly","video":[{"title":"2018:E484 - It’s a Steak-Off! - #484","description":"Burnie goes for win number 2 in this year's Steak-off, but Gus thinks his secret plan will woo the judges this time. Brought to you by our presenting sponsor MeUndies (http://bit.ly/2sYtkii). Featuring Gus Sorola, Burnie Burns, Gavin Free, and Barbara Dunkelman.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-484","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c33bc75f-7f41-4c89-b644-1b0c3e19f36b.jpg/sm/SteakWide.jpg","duration":5729,"publication_date":"2018-03-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-61","changefreq":"weekly","video":[{"title":"2018:E61 - Mia Khalifa Blows Barb's Mind - #61","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Mia Khalifa as they play a game of Cupidity, discuss encounters with strangers, and answer a question from the Box of Issues! This episode brought to you by BioClarity (http://bit.ly/2eZSeI1) and Daily Harvest (http://bit.ly/2qV3vOV).","player_loc":"https://roosterteeth.com/embed/always-open-2018-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5498d6f0-63e8-4e1c-95cf-ccf35dee7cc9.jpg/sm/AlwaysOpen612thumbnail.jpg","duration":3823,"publication_date":"2018-03-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-321","changefreq":"weekly","video":[{"title":"2018:E321 - Mermaids","description":"The gang remembers their days at the call center and some of the shady businesses that neighbored it. Audio from Rooster Teeth Podcast #458 http://roosterteeth.com/episode/rt-podcast-2017-458-vieghi3\r\nAnimated by: Gil Calceta\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-321","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f046e532-3392-4a2f-b55f-4fd4ae9eabbe.jpg/sm/rtaa321tn.jpg","duration":95,"publication_date":"2018-03-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-episode-8","changefreq":"weekly","video":[{"title":"S3:E8 - Episode 8 - Kids vs Adults vs Pups","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c5f6d73-e91a-45c3-8feb-d16f51fd8a51.jpg/sm/RWBYChibi3Ep08Thumbnail.jpg","duration":230,"publication_date":"2018-03-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-sigh","changefreq":"weekly","video":[{"title":"2018:E11 - *Sigh","description":"Oh classic games of an era gone by, you did so many things right that brought the gaming industry to where it is today. You also did a lot of things wrong like janky camera angles and confusing maps which is something Kyle and Miles become all too familiar with in this episode of Backwardz Compatible.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-sigh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/33eaaa5f-db60-49a1-9c71-0838ab8ac35b.jpg/sm/BzCFATALFRAME2THUMB04.jpg","duration":3453,"publication_date":"2018-03-16T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-129","changefreq":"weekly","video":[{"title":"S11:E129 - Barb and Trevor's First Date - #129","description":"Hosted by Jon Risinger. Featuring Barbara Dunkelman and Trevor Collins with special guests Nick Rutherford and Kirk Johnson.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/16ee1649-17b9-4070-928a-fd003d682b99.jpg/sm/JonWestworld.jpg","duration":663,"publication_date":"2018-03-16T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/nomad-of-nowhere-1-1h9sejr2","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1 - The Dreaded Nomad","description":"The hunt is on for the devious bringer of dark magic: The Nomad of Nowhere. Captain Toth, along with her bright-eyed companion Skout, are hot on the trail of the most wanted man in the world. But when Skout comes face-to-face with the sought-after bounty, she is forced into a difficult situation.","player_loc":"https://roosterteeth.com/embed/nomad-of-nowhere-1-1h9sejr2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa2b9576-a6d4-488c-8a02-c305600ab1a0.jpg/sm/NoNS1Ep01TN.jpg","duration":821,"publication_date":"2018-03-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-129","changefreq":"weekly","video":[{"title":"S11:E129 - Barbara & Trevor Vs. The Cereal Killers - #129","description":"Barbara needs an exorcist. Nick and Kirk get a lucky break. Sponsored by MeUndies (http://bit.ly/2GU12av) and Dollar Shave Club (http://bit.ly/2zQ61Xb) Hosted by Jon Risinger. Featuring Barbara Dunkelman and Trevor Collins with special guests Nick Rutherford and Kirk Johnson.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/04ba2ab9-fb01-45b2-9ac9-69d7c0a940fb.jpg/sm/JonWestworld.jpg","duration":2322,"publication_date":"2018-03-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-chad-rides-a-unicorn-at-full-sail","changefreq":"weekly","video":[{"title":"2018:E4 - Chad Rides a Unicorn at Full Sail","description":"Join Alfredo, Chad & Brian as they travel to Brian's alma mater, Full Sail University, for Hall of Fame Week. There’s gonna be RC Mario Kart, there’s gonna be Unicorns, there’s gonna be a Super 80s Fighter Project. Thanks to Full Sail University for partnering with us to make this video. If you'd like to find out more about Full Sail, click here: http://bit.ly/2D192o0.","player_loc":"https://roosterteeth.com/embed/the-lab-2018-chad-rides-a-unicorn-at-full-sail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ddc65ac-0905-4c96-92d0-16efe909197b.png/sm/fullsail.png","duration":210,"publication_date":"2018-03-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-puppet-pandemonium","changefreq":"weekly","video":[{"title":"S5:E7 - Puppet Pandemonium","description":"Join Burnie, Becca, and Chris on this ear-splitting, animal hunting, puppet-filled episode of Million Dollars, But...","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-puppet-pandemonium","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/34c00efc-63dc-416e-b50b-812242ce8032.png/sm/MDBep7.png","duration":348,"publication_date":"2018-03-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-psa-2018-a-trip-abroad","changefreq":"weekly","video":[{"title":"2018:E3 - A Trip Abroad","description":"Going on a trip abroad can be scary; luckily Grif and Simmons have some advice that will surely come in handy.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-psa-2018-a-trip-abroad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59638978-01b8-4109-acd5-e081f51d371e.jpg/sm/ATripAbroad06.jpg","duration":369,"publication_date":"2018-03-15T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-483-post-show","changefreq":"weekly","video":[{"title":"2018:E483 - Baby’s Gotta Learn - #483","description":"Join Gus Sorola, Jon Risinger, Barbara Dunkelman, and Burnie Burns as they discuss the Simpsons, babies and dogs, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-483-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8cdd242c-22b3-4db6-b673-d83d45174082.jpg/sm/RTP483PSthumb4.jpg","duration":1436,"publication_date":"2018-03-14T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-60","changefreq":"weekly","video":[{"title":"2018:E6 - The Sexuality Spectrum - #60","description":"Join Barbara Dunkelman, Lindsay Jones, Mariel Salcedo, and special guest Nick Rutherford as answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/deb26ed0-0020-4719-a0b8-a52d27f17b0b.png/sm/AOSite00000427Still003.png","duration":883,"publication_date":"2018-03-13T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-483","changefreq":"weekly","video":[{"title":"2018:E483 - It Can Only Get Better - #483","description":"Join Gus Sorola, Jon Risinger, Barbara Dunkelman, and Burnie Burns as they discuss SXSW, unsafe driving, upcoming movies, and more on this week's RT Podcast! This episode originally aired on March 12, 2018, sponsored by MeUndies (http://bit.ly/2sYtkii) and Squarespace (http://bit.ly/1SPgAL3)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-483","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/58496a76-9399-4d10-b83d-bff27ed731e5.jpg/sm/RTP483thumb8.jpg","duration":5638,"publication_date":"2018-03-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-60","changefreq":"weekly","video":[{"title":"2018:E60 - We Found a Unicorn - #60","description":"Join Barbara Dunkelman, Lindsay Jones, Mariel Salcedo, and special guest Nick Rutherford as they play a round of I'm Out, talk about Nick's upcoming films, and answer a question from the Box of Issues! This episode is brought to you by MeUndies (http://bit.ly/2o3FAci) and Tripping.com (http://bit.ly/2nTPDQa).","player_loc":"https://roosterteeth.com/embed/always-open-2018-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e827953-1c15-4222-9f28-b2f0069f84da.jpg/sm/tempthumb.jpg","duration":3530,"publication_date":"2018-03-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-320","changefreq":"weekly","video":[{"title":"2018:E320 - Andy Uses a Tampon","description":"Andy tries to explain himself after saying he's used a tampon.\r\n\r\nAudio from Off Topic Podcast #26\r\nhttp://achievementhunter.roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-26\r\nAnimated and Directed by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-320","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bdad012b-6a71-404a-979b-9dc5a72390e6.jpg/sm/rtaa320tn.jpg","duration":104,"publication_date":"2018-03-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-episode-7","changefreq":"weekly","video":[{"title":"S3:E7 - Episode 7 - Mysterious Red Button","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3934691a-2083-4e7f-9cf0-7eb38f3274d0.jpg/sm/RWBYChibi3Ep07Thumbnail.jpg","duration":213,"publication_date":"2018-03-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rtx-2018-rtx-badges-available-at-regular-rates","changefreq":"weekly","video":[{"title":"2018:E2 - RTX Badges Available at Regular Rates","description":"Weekend, single day and commemorative badges are available! Get your tickets at rtx2018.frontgatetickets.com","player_loc":"https://roosterteeth.com/embed/rtx-2018-rtx-badges-available-at-regular-rates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9e6d3bb-39a0-4df5-a11f-7d460a058f0d.png/sm/EarlyBird1.png","duration":38,"publication_date":"2018-03-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-garbage-food","changefreq":"weekly","video":[{"title":"2018:E10 - Garbage Food","description":"All Miles wants is a bed to sleep on but instead the cruel, cruel, UPS guy has denied him sound sleep so now he must eat his feelings of rage and exhaustion while he helps Kyle find their lost sister Mayu. Should make for a funny episode...just as long as the capture computer can keep it's shit together.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-garbage-food","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f225330-870c-448e-add9-9ce7da5fb7b6.jpg/sm/BzCFATALFRAME2THUMB03.jpg","duration":4042,"publication_date":"2018-03-09T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-128","changefreq":"weekly","video":[{"title":"S11:E128 - Don't Ever Have Sex - #128","description":"Hosted by Jon Risinger. Featuring Blaine Gibson, Andy Blanchard, Max Kruemke and Chad James.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e80e4876-6919-4e9a-a9f6-670e653894b3.png/sm/OTS128.png","duration":794,"publication_date":"2018-03-09T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-128","changefreq":"weekly","video":[{"title":"S11:E128 - Did Jesus Cry Wine? - #128","description":"Andy is a five-year-old with a drinking problem and Blaine asks about Jesus. Not even a fever can keep Jon from hosting this sick episode of On The Spot. Sponsored by Honey (http://bit.ly/2FpmMei) and Quip (http://bit.ly/2ErPbzQ) Hosted by Jon Risinger. Featuring Blaine Gibson, Andy Blanchard, Max Kruemke and Chad James.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7a4b7222-009f-48a9-9b60-510b31ddcf87.png/sm/OTS128thumb.png","duration":2349,"publication_date":"2018-03-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-psa-2018-climate-change","changefreq":"weekly","video":[{"title":"2018:E2 - Unreal Estate","description":"Finding a new home can be a long and difficult process, but Sister and Grif have you covered! Simmons, however, has something to say about the change of scenery.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-psa-2018-climate-change","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6c45586b-53d8-41da-8916-c3f76cee9451.png/sm/RvBPSAUNREALESTATETHUMB.png","duration":325,"publication_date":"2018-03-08T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-gct","changefreq":"weekly","video":[{"title":"S5:E6 - Chrono Oh No!","description":"Join Gavin and first-timers Chad and Trevor in a hair-raising, time-stopping, and, most importantly, law-abiding episode of Million Dollars, But... (complete with mob bosses and out-of-control armpit hair)!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-gct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/83d700d1-29d5-406d-bcf6-991f69d80bce.jpg/sm/MDBS5GCTThumbnail.jpg","duration":304,"publication_date":"2018-03-08T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-482-post-show","changefreq":"weekly","video":[{"title":"2018:E482 - You Haven’t Seen Gavin Mad - #482","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss Brooklyn BBQ, getting angry, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-482-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df74d53c-95af-4475-a397-fd5b4dbab62b.jpg/sm/RTP482PSGus.jpg","duration":1168,"publication_date":"2018-03-07T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-bloodfest-trailer","changefreq":"weekly","video":[{"title":"S1:E33 - Blood Fest Teaser Trailer","description":"Fans flock to a festival celebrating the most iconic horror movies, only to discover that the charismatic showman behind the event has a diabolical agenda. As attendees start dying off, three teenagers with more horror-film wits than real-world knowledge must band together and battle through every madman, monstrosity and terrifying scenario if they have any hope of surviving.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-bloodfest-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/475caae0-1a08-4fba-a131-ea9d8a4ab5da.jpg/sm/BloodfestThumbnail.jpg","duration":59,"publication_date":"2018-03-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-59","changefreq":"weekly","video":[{"title":"2018:E59 - We Don’t Dab Shame - #59","description":"Join Barbara Dunkelman, Mica Burton, Mariel Salcedo, and special guest Dodger as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d89373c6-b5b4-4d50-9705-66054c34a5fd.jpg/sm/pstempthumb.jpg","duration":1080,"publication_date":"2018-03-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-482","changefreq":"weekly","video":[{"title":"2018:E482 - Gus Gets Cut - #482","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss who dislikes them most, guns, best friends, and more on this week's RT Podcast! This episode originally aired on March 5, 2018, sponsored by HIMS (http://bit.ly/2FfFVTZ)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-482","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ef2bb4e9-72df-4355-a30d-0f56ba0318bf.jpg/sm/RTP482BlaineStumped.jpg","duration":5743,"publication_date":"2018-03-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-59","changefreq":"weekly","video":[{"title":"2018:E59 - Dodger Drops By - #59","description":"Join Barbara Dunkelman, Mica Burton, Mariel Salcedo, and special guest Dodger as they play a round of Cupidity, discuss their business ideas, and answer a question from the Box of Issues! This episode brought to you by Casper (http://bit.ly/2d7S00q) and Dodger Coffee Co (http://bit.ly/2FfQ7fj).","player_loc":"https://roosterteeth.com/embed/always-open-2018-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/525040cd-30b3-4322-9cd1-8fb15184581b.jpg/sm/tempthumb.jpg","duration":3646,"publication_date":"2018-03-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-319","changefreq":"weekly","video":[{"title":"2018:E319 - Zombie Dog","description":"Chris' mom won't let her dog go, but Gavin, Gus, and Brandon think it's time.\r\n\r\nAudio from Rooster Teeth Podcast #405\r\nhttp://roosterteeth.com/episode/rt-podcast-2016-405-akij0a\r\nAnimated by: Beth Mackenzie\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-319","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bf7a2cbd-61cb-447e-ae66-9949981a22fa.jpg/sm/rtaa319tn.jpg","duration":103,"publication_date":"2018-03-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-episode-6","changefreq":"weekly","video":[{"title":"S3:E6 - Episode 6 - Teenage Faunus Ninja Catgirl","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c8e7498-7c63-486a-9d0d-9924e424aa0d.jpg/sm/RWBYChibi3Ep06Thumbnail.jpg","duration":203,"publication_date":"2018-03-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rtx-2018","changefreq":"weekly","video":[{"title":"2018:E1 - RTX Austin 2018 Early Bird","description":"Earl E. Bird talks about the money he saved by buying his RTX ticket with the early bird rate. Get your tickets at rtx2018.frontgatetickets.com.","player_loc":"https://roosterteeth.com/embed/rtx-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/26d3052b-ba05-4bbc-9698-f4a2dd2f361e.png/sm/EarlyBirdThumbnail.png","duration":26,"publication_date":"2018-03-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-fatal-frame-2","changefreq":"weekly","video":[{"title":"2018:E9 - Doc Brown","description":"You know if I was in a haunted house and a door I was walking towards slammed shut, seemingly on it's own, I wouldn't go in. Not Kyle and Miles. Oh no, these guys are just gonna barge on in. Maybe there's a naked ghost in there and y'all are being extremely rude. You guys ever think of that? Huh?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-fatal-frame-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e5474236-1202-4421-8bbf-8bcc0fb5e39a.jpg/sm/BzCFATALFRAME2THUMB02.jpg","duration":4648,"publication_date":"2018-03-02T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-127","changefreq":"weekly","video":[{"title":"S11:E127 - The Best Movie Pitches of All Time - #127","description":"Hosted by Joel Heyman. Featuring Jon Risinger, Tyler Coe, Patrick Mattews, and Aaron Marquis.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed7f9341-c10f-4507-a362-bfd463e73220.jpg/sm/psthumbfinal.jpg","duration":425,"publication_date":"2018-03-02T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-127","changefreq":"weekly","video":[{"title":"S11:E127 - Introducing Joel Risinger - #127","description":"Joel puts on a hosting clinic for all to see, Jon finally gets to do the fun part, and Orange Tyler Coe faces off with regular Tyler Coe. Sponsored by MeUndies (http://bit.ly/2GU12av), Blue Apron (http://cook.ba/1V1MMMd), and Dollar Shave Club (http://bit.ly/2zQ61Xb). Hosted by Joel Heyman. Featuring Jon Risinger, Tyler Coe, Patrick Mattews, and Aaron Marquis.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/12db0ce9-b0b5-44c0-88a5-76bcf10c1f2c.png/sm/OTSthumb1.png","duration":2610,"publication_date":"2018-03-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-barbara-s-explosion-of-emotion","changefreq":"weekly","video":[{"title":"S5:E5 - Barbara's Explosion of Emotion","description":"In this EXPLOSIVE episode of MDB, join Barbara Dunkelman, Adam Ellis, and Jon Risinger as they find creative (and violent) ways to express their emotions. We welcome you with open arms to enjoy this episode!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-barbara-s-explosion-of-emotion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/121f0d49-dd95-45cc-a076-5d1e4dc8047a.jpg/sm/MDBS5JAB2Thumbnail.jpg","duration":348,"publication_date":"2018-03-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-psa-2018-lopez-s-technical-guide-to-empathy","changefreq":"weekly","video":[{"title":"2018:E1 - Lopez's Technical Guide to Empathy","description":"What does it mean to empathize? Join Red Team's resident robot in learning about the inner workings of the mind, feelings, and social interactions! Some assembly required.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-psa-2018-lopez-s-technical-guide-to-empathy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/826fc39e-fc63-41f2-83f7-79a45001da4f.jpg/sm/LopezGuidetoEmpathywlogo.jpg","duration":335,"publication_date":"2018-03-01T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-481-post-show","changefreq":"weekly","video":[{"title":"2018:E481 - Burnie’s Magic Feet - #481","description":"Join Gus Sorola, Gavin Free, Becca Frasier, and Burnie Burns as they discuss Burnie’s swimming technique, the Olympics, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-481-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/603310ba-9a72-4c82-8350-b89f8f96aa35.jpg/sm/RTP481PSGavinSurprised.jpg","duration":931,"publication_date":"2018-02-28T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-58","changefreq":"weekly","video":[{"title":"2018:E58 - I'm a Top, Baby! - #58","description":"Join Barbara Dunkelman, Elyse Willems, Tyler Coe, and Mariel Salcedo in this post show recorded live in front of a studio audience.","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4d4f04cd-c60b-4428-8c89-24086c70ef4c.png/sm/AOSiteCopy0100105611Still001.png","duration":2156,"publication_date":"2018-02-27T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-bolen-explains-to-craig-why-the-last-jedi-is-actually-pretty-awesome-try-harder","changefreq":"weekly","video":[{"title":"S1:E71 - Bolen Explains to Craig Why the Last Jedi is Actually Pretty Awesome | Try Harder","description":"S1:E71 - Bolen Explains to Craig Why the Last Jedi is Actually Pretty Awesome | Try Harder","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-bolen-explains-to-craig-why-the-last-jedi-is-actually-pretty-awesome-try-harder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d46edebb-142a-46c1-9215-d94e3ce5f3fd.png/sm/tryharder79.png","duration":1431,"publication_date":"2018-04-26T23:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-season-1-why-infinity-war-is-so-important-try-hard-podcast-79","changefreq":"weekly","video":[{"title":"S1:E80 - Why Infinity War is so Important | Try Hard Podcast #79","description":"We dive in to why Infinity War is such a huge achievement!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-season-1-why-infinity-war-is-so-important-try-hard-podcast-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f36c9352-ed12-4b37-8ecc-cfc03286f686.png/sm/tryhard79.png","duration":3171,"publication_date":"2018-04-26T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-season-1-crying-about-call-of-duty-try-hard-podcast-78","changefreq":"weekly","video":[{"title":"S1:E79 - Crying About Call of Duty | Try Hard Podcast 78","description":"Go to http://felixgrayglasses.com/tryhard to try a pair of Felix Gray glasses today!\r\nThanks to MeUndies for sponsoring this episode. Get 20% off your first pair at http://meundies.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-season-1-crying-about-call-of-duty-try-hard-podcast-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/99290d9a-290f-441e-b917-23ab8d82ca31.jpg/sm/unnamed.jpg","duration":2798,"publication_date":"2018-04-21T01:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-high-school-stories-try-harder","changefreq":"weekly","video":[{"title":"S1:E70 - High School Stories | Try Harder","description":"S1:E70 - High School Stories | Try Harder","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-high-school-stories-try-harder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/85edde07-04a8-4459-b9b0-5a89419c9e24.png/sm/highschoolthumb.png","duration":1148,"publication_date":"2018-04-20T15:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-the-dark-souls-of-reptile-alien-zombie-games-let-s-play-reptiloids","changefreq":"weekly","video":[{"title":"LPS:E156 - THE DARK SOULS OF REPTILE ALIEN ZOMBIE GAMES | Let's Play Reptiloids","description":"LPS:E156 - THE DARK SOULS OF REPTILE ALIEN ZOMBIE GAMES | Let's Play Reptiloids","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-the-dark-souls-of-reptile-alien-zombie-games-let-s-play-reptiloids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/30ab1367-1e84-4642-81dc-e347c60091cc.png/sm/reptiloidsthumb.png","duration":1210,"publication_date":"2018-04-18T23:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-season-1-radical-heights-and-the-problem-with-gamers-try-hard-podcast-77","changefreq":"weekly","video":[{"title":"S1:E78 - Radical Heights and the Problem with Gamers | Try Hard Podcast #77","description":"Thanks to Blue Apron for sponsoring this episode. Get $30 off at http://blueapron.com/tryhard.\r\nHurry to http://stitchfix.com/tryhard to get started NOW! Keep all 5 items in your box and you’ll get 25% off your entire purchase!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-season-1-radical-heights-and-the-problem-with-gamers-try-hard-podcast-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cefc9091-3f4f-4a43-b963-5901e5d63239.png/sm/tryhard77.png","duration":3839,"publication_date":"2018-04-12T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-monster-movies-are-back-try-harder-77","changefreq":"weekly","video":[{"title":"S1:E69 - MONSTER MOVIES ARE BACK!! | Try Harder 77","description":"S1:E69 - MONSTER MOVIES ARE BACK!! | Try Harder 77","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-monster-movies-are-back-try-harder-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/db983dee-2cd3-4d72-93a6-b2aa847d5182.png/sm/rampage.png","duration":674,"publication_date":"2018-04-12T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-weenie-dogs-playing-soccer-beast-battle-simulator","changefreq":"weekly","video":[{"title":"LPS:E155 - WEENIE DOGS PLAYING SOCCER | BEAST BATTLE SIMULATOR","description":"WE PUT BEASTS TO THE DEATH.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-weenie-dogs-playing-soccer-beast-battle-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6d862e50-c3e4-4c07-a736-304cdc9f0e82.jpg/sm/beastthumb.jpg","duration":997,"publication_date":"2018-04-10T00:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-friendship-ruined-syphon-filter-2-versus-four-play","changefreq":"weekly","video":[{"title":"S1:E98 - Friendship. Ruined - Syphon Filter 2 Versus | Four Play","description":"It's a Syphon Filter SHOWDOWN as Greyson and Bolen coach Chase and Parker through the secret techniques of Syphon Filter 2!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-friendship-ruined-syphon-filter-2-versus-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dc6d6723-7aa0-425b-bccc-3d4f083e3d20.png/sm/sf2.png","duration":1429,"publication_date":"2018-04-09T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-season-1-bolen-s-video-will-try-hard-76","changefreq":"weekly","video":[{"title":"S1:E77 - Bolen's Video Will | Try Hard 76","description":"Thanks to Dollar Shave Club for sponsoring this episode. There’s no reason not to join! Get yours at http://dollarshaveclub.com/tryhard\r\nThanks to Keeps for sponsoring this episode. To receive your first month of treatment for free, go to http://keeps.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-season-1-bolen-s-video-will-try-hard-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce21f1f6-f54e-4cf4-bd6c-e48479ff9fb0.jpg/sm/TryHard76Thumb.jpg","duration":3853,"publication_date":"2018-04-05T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-how-we-would-do-a-d-d-campaign","changefreq":"weekly","video":[{"title":"S1:E68 - How We Would Do a D&D Campaign","description":"We've talked about it before, but let's dive in to what we'd love to do with D&D.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-how-we-would-do-a-d-d-campaign","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8331c9d-99d8-4768-a6a5-1386ed9b51f4.png/sm/TryHarder76.png","duration":638,"publication_date":"2018-04-05T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-let-s-mount-each-other-mount-your-friends-3d-four-play","changefreq":"weekly","video":[{"title":"S1:E97 - Let's Mount Each Other - Mount Your Friends 3D | Four Play","description":"We get busy on top of each other in the NEW, 3D Version of Mount Your Friends!!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-let-s-mount-each-other-mount-your-friends-3d-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c281b3f7-4699-48e8-a72e-79f10069464d.png/sm/myf3d.png","duration":1099,"publication_date":"2018-03-26T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-chase-got-engaged-try-harder-75","changefreq":"weekly","video":[{"title":"S1:E67 - CHASE GOT ENGAGED!! | Try Harder 75","description":"Chase got engaged! Here's how!","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-chase-got-engaged-try-harder-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/713464c4-cbc2-43ee-9e5a-de3ad778e445.jpg/sm/chase.jpg","duration":384,"publication_date":"2018-03-23T23:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-it-s-a-long-way-to-the-top-frog-climbers-four-play","changefreq":"weekly","video":[{"title":"S1:E96 - IT'S A LONG WAY TO THE TOP - Frog Climbers | FOUR PLAY","description":"Sam and Chad join us for some Frog Climbers!!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-it-s-a-long-way-to-the-top-frog-climbers-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad124c85-b8da-4567-83d0-4f3ce853e950.png/sm/FrogClimbers.png","duration":1230,"publication_date":"2018-03-22T03:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-lara-croft-is-a-psycho","changefreq":"weekly","video":[{"title":"S1:E75 - Lara Croft is a PSYCHO","description":"Support our sponsors because they support Try Hard!\r\n\r\nLook Good with Stitchfix: https://stitchfix.com/tryhard\r\n\r\nEat Good with Blue Apron: https://blueapron.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-lara-croft-is-a-psycho","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/51cfe995-0b58-4ffa-8886-963f20f8519c.jpg/sm/TryHard74Thumb.jpg","duration":3265,"publication_date":"2018-03-18T17:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-stuff-lists-reaction-bolen-s-high-school-action-movie","changefreq":"weekly","video":[{"title":"L:E15 - REACTION: Bolen's High School Action Movie","description":"Bolen made an action movie in High School. Let's watch it.","player_loc":"https://roosterteeth.com/embed/fun-stuff-lists-reaction-bolen-s-high-school-action-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d518461d-38f8-48f4-810d-79a4e26bad0b.png/sm/Redeemerthumb.png","duration":1705,"publication_date":"2018-03-14T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-yaaaayyyy-trucks-cluster-truck-four-play","changefreq":"weekly","video":[{"title":"S1:E95 - YAAAAYYYY TRUCKS!!! | Cluster Truck Four Play","description":"Chad and Sam Stop by to play some CLUSTERTRUCK!!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-yaaaayyyy-trucks-cluster-truck-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28e86ba5-9912-4d73-b5a4-9e0166fdb37f.png/sm/ClusterTruckTHumb.png","duration":962,"publication_date":"2018-03-13T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-this-really-pisses-craig-off-try-hard-73","changefreq":"weekly","video":[{"title":"S1:E74 - THIS Really Pisses Craig Off | Try Hard 73","description":"This episode is brought to you by our Patreon!\r\nHead to patreon.com/gameattack to support your bois and help grow edited content on our channel!!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-this-really-pisses-craig-off-try-hard-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c406c773-3a9c-4008-8b58-a3bf592a15ef.jpg/sm/maxresdefault.jpg","duration":2689,"publication_date":"2018-03-11T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-you-can-play-soccer-in-gang-beasts","changefreq":"weekly","video":[{"title":"S1:E94 - YOU CAN PLAY SOCCER IN GANG BEASTS?! | Four Play","description":"Sam and Chad Return to Cap off Soccer in Gang Beasts!!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-you-can-play-soccer-in-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b52e7d75-9db3-4db2-a589-07165c8b55e1.png/sm/GangBeasts2Thumb.png","duration":2059,"publication_date":"2018-03-09T00:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-roseanne-should-stay-dead-try-harder-73","changefreq":"weekly","video":[{"title":"S1:E65 - Roseanne Should Stay Dead | Try Harder 73","description":"\"I have no interest\"\r\n- Craig 2018","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-roseanne-should-stay-dead-try-harder-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b6c7156-7c88-4168-adee-7b71df75a05d.png/sm/Roseanne.png","duration":596,"publication_date":"2018-03-08T22:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-the-fall-of-man-mario-party-10-bowser-mode","changefreq":"weekly","video":[{"title":"S1:E93 - The Fall of Man | Mario Party 10 Bowser Mode","description":"What will we become in this episode of Mario Party 10 with Sam and Chad?","player_loc":"https://roosterteeth.com/embed/four-play-season-1-the-fall-of-man-mario-party-10-bowser-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0c97936-22d4-45d1-937f-9af9e8a4a5f2.png/sm/BowserThumb.png","duration":1372,"publication_date":"2018-03-05T22:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-craig-watches-alex-jones-for-the-first-time-try-harder","changefreq":"weekly","video":[{"title":"S1:E64 - Craig Watches Alex Jones for the First Time | Try Harder","description":"It's like a reaction show! Much skill","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-craig-watches-alex-jones-for-the-first-time-try-harder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38ab32d1-316c-408d-9f54-73e44fdaf24d.png/sm/AlexJOines.png","duration":583,"publication_date":"2018-03-01T22:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-the-gang-is-put-back-into-gang-beasts","changefreq":"weekly","video":[{"title":"S1:E92 - THE GANG IS PUT BACK INTO \"GANG BEASTS.\"","description":"Chad and Sam come back to see how much the game has changed . . .","player_loc":"https://roosterteeth.com/embed/four-play-season-1-the-gang-is-put-back-into-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78a5efa6-0016-4ab0-a23d-faa6fff0be89.png/sm/gangbeasts1Thumb.png","duration":2575,"publication_date":"2018-02-28T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-stick-figgghhhhtttt-with-sam-and-chad-four-play","changefreq":"weekly","video":[{"title":"S1:E91 - STICK FIGGGHHHHTTTT!!! With Sam and Chad!! | Four Play","description":"Sam and Chad Join us for some Stick Fight!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-stick-figgghhhhtttt-with-sam-and-chad-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b74a187a-9e41-4ecc-a540-e2d86238000f.png/sm/StickFightThumb.png","duration":917,"publication_date":"2018-02-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-chad-sam-are-back-try-hard-podcast-71","changefreq":"weekly","video":[{"title":"S1:E72 - Chad & Sam Are Back | Try Hard Podcast #71","description":"This week's wonderful sponsors include:\r\nStitchFix ► http://www.StitchFix.com/TryHard\r\nBlue Apron ► http://www.BlueApron.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-chad-sam-are-back-try-hard-podcast-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c89fbf94-900c-47be-a289-27583f328600.jpg/sm/TryHardChadSame.jpg","duration":3025,"publication_date":"2018-02-24T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-it-s-okay-i-m-gonna-shoot-ya-in-the-head-driver-2-gameplay","changefreq":"weekly","video":[{"title":"LPS:E154 - It's Okay . . . I'm Gonna Shoot Ya in the Head. | Driver 2 Gameplay","description":"It's a road trip down memory lane, and Parker is coming with Shaun and Greyson.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-it-s-okay-i-m-gonna-shoot-ya-in-the-head-driver-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ebd41f6-7db7-4414-adea-bf0a61f59494.png/sm/Driver2.png","duration":1204,"publication_date":"2018-02-21T18:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-we-re-not-smart-enough-to-play-this-game-besiege-gameplay","changefreq":"weekly","video":[{"title":"LPS:E153 - WE'RE NOT SMART ENOUGH TO PLAY THIS GAME | Besiege Gameplay","description":"Build. Destroy. Build Again.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-we-re-not-smart-enough-to-play-this-game-besiege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/122b1fd2-9691-4f43-8dd9-43752f90a1bc.png/sm/BesiegeThumb.png","duration":612,"publication_date":"2018-02-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-world-we-live-in-try-hard-podcast-70","changefreq":"weekly","video":[{"title":"S1:E71 - THE WORLD WE LIVE IN - Try Hard Podcast #70","description":"This week's episode is brought to you by Felix Grey Glasses\r\nTry them for yourself ►http://www.FelixGreyGlasses.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-world-we-live-in-try-hard-podcast-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3cffb641-595e-47d7-bead-0bb7a5a3975f.jpg/sm/thp70.jpg","duration":4274,"publication_date":"2018-02-18T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-stuff-lists-top-11-slides-in-movies-top-11","changefreq":"weekly","video":[{"title":"L:E14 - Top 11 Slides in Movies! | Top 11","description":"Hey g1s! Trying out a new format with Top 11s - hope you like it!","player_loc":"https://roosterteeth.com/embed/fun-stuff-lists-top-11-slides-in-movies-top-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7cc131c8-ed1f-4a1e-b891-786f3683b905.jpg/sm/Top11Slides.jpg","duration":1015,"publication_date":"2018-02-17T04:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-bolen-and-john-s-wake-up-routine-is-precious","changefreq":"weekly","video":[{"title":"S1:E63 - Bolen and John's Wake-Up Routine is Precious","description":"It ends in a bout of frustration.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-bolen-and-john-s-wake-up-routine-is-precious","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c71b8377-a63c-47f6-85b2-954fe9ad23d7.png/sm/TryHarderThumb.png","duration":1047,"publication_date":"2018-02-17T04:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-are-we-completely-stupid-tiny-brains-gameplay","changefreq":"weekly","video":[{"title":"S1:E90 - Are We Completely STUPID? | Tiny Brains Gameplay","description":"Four Play returns for some Co-Op Brainiac-ness in Tiny Brains!!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-are-we-completely-stupid-tiny-brains-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2f69d349-25ee-415d-b67f-607641ba1a3d.png/sm/TinyBrains.png","duration":1197,"publication_date":"2018-02-14T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-crash-and-spyro-were-bigger-hits-than-you-think-try-harder-69","changefreq":"weekly","video":[{"title":"S1:E62 - Crash and Spyro were Bigger Hits than you Think! | Try Harder #69","description":"We dig into the platformers' sales numbers and come out pretty damned surprised!!","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-crash-and-spyro-were-bigger-hits-than-you-think-try-harder-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e1d03a6b-8ce5-4ce9-b662-516f6de3ecbf.png/sm/CrashandSpyro.png","duration":618,"publication_date":"2018-02-10T02:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-spacex-made-us-feel-alive-try-hard-podcast-69","changefreq":"weekly","video":[{"title":"S1:E70 - SPACEX MADE US FEEL ALIVE!! | Try Hard Podcast #69","description":"Support our Sponsors because Try Hard couldn't happen without them:\r\nGet the best shave of your life with the ultimate life hack at dollarshaveclub.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-spacex-made-us-feel-alive-try-hard-podcast-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c36b5a72-6db4-4e23-8ff5-835260b3e544.jpg/sm/TryHard69.jpg","duration":3830,"publication_date":"2018-02-10T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-we-totally-miss-the-point-doki-doki-literature-club-gameplay","changefreq":"weekly","video":[{"title":"LPS:E152 - We TOTALLY Miss the Point | Doki Doki Literature Club Gameplay","description":"WHY IS EVERYONE PLAYING THIS?!","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-we-totally-miss-the-point-doki-doki-literature-club-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2acf8381-ad10-4c65-8fe0-fa28a6dd4d08.jpg/sm/DokiDokiThumb.jpg","duration":1443,"publication_date":"2018-02-10T01:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-ga-season-1-17-reasons-the-marvel-superhero-movies-suck-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E2 - 17 Reasons the Marvel Superhero Movies SUCK with Evil Craig","description":"This shit is getting ridiculous.","player_loc":"https://roosterteeth.com/embed/evil-craig-ga-season-1-17-reasons-the-marvel-superhero-movies-suck-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c9ec7a82-786c-479a-af52-0fef96eddfa3.png/sm/EvilCraigMCUThumb.png","duration":175,"publication_date":"2018-02-07T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-gaming-s-biggest-lie","changefreq":"weekly","video":[{"title":"S1:E69 - Gaming's BIGGEST LIE | Try Hard Podcast #68","description":"Who would of thought you could keep a lie for 30 years only to be busted and humiliated?\nThis week's sponsors include:\n▶ MeUndies - 20% off couples undies - http://www.MeUndies.com/TryHard\n▶ BlueApron - $30 off your first order - http://www.BlueApron.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-gaming-s-biggest-lie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a38a3e54-4b5a-4a00-bfa2-a6dd39cd70fb.jpg/sm/TryHard68Thumb.jpg","duration":3598,"publication_date":"2018-02-05T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-completely-insane-with-too-many-weapons-four-play","changefreq":"weekly","video":[{"title":"S1:E89 - COMPLETELY INSANE WITH TOO MANY WEAPONS | FOUR PLAY","description":"Four Play returns thanks to our Patrons at patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/four-play-season-1-completely-insane-with-too-many-weapons-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b133f3ba-60e8-4985-9f9c-7d5298c3b0dc.png/sm/TooManyWeapons.png","duration":954,"publication_date":"2018-01-31T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-rude-bear-sucks-craig-s-soul-four-play","changefreq":"weekly","video":[{"title":"S1:E88 - RUDE BEAR SUCKS CRAIG'S SOUL | FOUR PLAY","description":"In what might be one of the greatest game-hogging sessions in recent memory","player_loc":"https://roosterteeth.com/embed/four-play-season-1-rude-bear-sucks-craig-s-soul-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/947ae6b1-1d2e-47a9-914f-789327e65aac.png/sm/RudeBearThumb.png","duration":750,"publication_date":"2018-01-31T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-we-tried-to-make-a-porno-in-gang-beasts-and-this-is-what-happened","changefreq":"weekly","video":[{"title":"LPS:E149 - We Tried to Make a Porno in Gang Beasts and This is What Happened . . .","description":"Some ideas straddle the line between horrible and genius. We do not know if this is one of them.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-we-tried-to-make-a-porno-in-gang-beasts-and-this-is-what-happened","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fca232b2-aa20-4357-af9d-fe0ef367dc60.jpg/sm/BangBeastsThumb.jpg","duration":506,"publication_date":"2018-01-31T03:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-letters-season-1-an-open-letter-to-player-unknown-s-battlegrounds","changefreq":"weekly","video":[{"title":"S1:E4 - An Open Letter To Player Unknown's Battlegrounds","description":"Bolen takes a look deep inside of himself to understand why the cheaters have upset him so much - and he finds the answer.","player_loc":"https://roosterteeth.com/embed/open-letters-season-1-an-open-letter-to-player-unknown-s-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a8505c2-d126-42c5-9f60-df748da43bec.png/sm/BattlgroundsThumb.png","duration":321,"publication_date":"2018-01-30T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1","changefreq":"weekly","video":[{"title":"S1:E68 - Stupid Arthouse Films | Try Hard Podcast #67","description":"Support our Sponsors because they support us!\nProtect your eyes with Felix Gray glasses at: felixgrayglasses.com/tryhard\nLook amazing with ease at: StitchFix.com/TRYHARD","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3e445bdd-99f2-4d41-909c-8b5486fa5462.jpg/sm/TryHard67Thumb.jpg","duration":3593,"publication_date":"2018-01-29T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-craig-gets-broken-let-s-play-hand-simulator","changefreq":"weekly","video":[{"title":"LPS:E151 - Craig Gets Broken | Let's Play Hand Simulator","description":"We try to work at a desk and load a gun in the most important game of this generation.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-craig-gets-broken-let-s-play-hand-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6d83f440-ac8c-48e4-954c-8fca97c8c422.png/sm/HandSimulatorThumb.png","duration":773,"publication_date":"2018-01-22T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-bolen-s-childhood-comes-back-to-haunt-him-let-s-play-croc","changefreq":"weekly","video":[{"title":"LPS:E150 - Bolen's Childhood Comes Back to Haunt Him | Let's Play Croc","description":"It was supposed to kill Mario. It killed much more than that.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-bolen-s-childhood-comes-back-to-haunt-him-let-s-play-croc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be3894eb-68ea-462d-8ac6-04b1c6a7a7f0.png/sm/CrocThumb.png","duration":1062,"publication_date":"2018-01-22T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-it-s-just-a-box-try-harder-66","changefreq":"weekly","video":[{"title":"S1:E60 - It's Just a Box | Try Harder #66","description":"This might be the most aimless Try Harder we've ever made.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-it-s-just-a-box-try-harder-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78c678a2-54fe-4b91-95c4-258e255ded71.png/sm/TryHarder66.png","duration":816,"publication_date":"2018-01-21T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-does-social-media-suck-try-hard-podcast-66","changefreq":"weekly","video":[{"title":"S1:E67 - Does Social Media Suck? | Try Hard Podcast #66","description":"Support our Sponsors because we support them!\nCook well for your family with: blueapron.com/tryhard\nTake a ride and avoid being a parking lurker: Use code: Tryhard in Uber app\nBoxes for men who give a damn: bespokepost.com + promo code: tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-does-social-media-suck-try-hard-podcast-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/162301dc-d0b3-43f3-9803-8ef58d1db219.png/sm/TryHard66Thumb.png","duration":3724,"publication_date":"2018-01-21T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-kevin-from-kinda-funny-plays-twisted-metal-with-us","changefreq":"weekly","video":[{"title":"LPS:E148 - KEVIN FROM KINDA FUNNY PLAYS TWISTED METAL WITH US!!","description":"LPS:E148 - KEVIN FROM KINDA FUNNY PLAYS TWISTED METAL WITH US!!","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-kevin-from-kinda-funny-plays-twisted-metal-with-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2a2c34c-d72c-4ea6-a283-cc737234c788.jpg/sm/KindaFunnyTwistedMetal.jpg","duration":683,"publication_date":"2018-01-18T03:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-ga-season-1-26-reasons-why-zelda-breath-of-the-wild-sucks-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E1 - 26 Reasons Why Zelda: Breath of the Wild SUCKS with Evil Craig","description":"That's a lotta hate . ..","player_loc":"https://roosterteeth.com/embed/evil-craig-ga-season-1-26-reasons-why-zelda-breath-of-the-wild-sucks-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5b69873b-ca6f-469b-b1fb-d69843bb699e.jpg/sm/EvilCraigZelda.jpg","duration":143,"publication_date":"2018-01-17T04:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-letters-season-1-an-open-letter-to-rooster-teeth","changefreq":"weekly","video":[{"title":"S1:E3 - An Open Letter to Rooster Teeth","description":"We've had our ups and downs and we'd like to clear the air with Rooster Teeth!","player_loc":"https://roosterteeth.com/embed/open-letters-season-1-an-open-letter-to-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/67f0454c-383e-4e9f-bd48-a36a7b8377b4.jpg/sm/OpenLetterRoosterTeeth.jpg","duration":123,"publication_date":"2018-01-15T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-john-has-never-seen-ace-ventura-what-try-hard-podcast","changefreq":"weekly","video":[{"title":"S1:E66 - JOHN HAS NEVER SEEN ACE VENTURA?!? WHAT?! | Try Hard Podcast #","description":"Support our sponsors because they support us! \nGet a clean shave & bod at dollarshaveclub.com/tryhard\nThen cover that cleanliness with awesome threads at stitchfix.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-john-has-never-seen-ace-ventura-what-try-hard-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7412cbad-3395-41cb-a3d7-ef4f0d807747.jpg/sm/TryHard65.jpg","duration":2993,"publication_date":"2018-01-13T02:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-who-is-perfect-looking-try-harder-65","changefreq":"weekly","video":[{"title":"S1:E59 - Who is \"PERFECT LOOKING?\" | Try Harder 65","description":"We have a brief discussion on who we think is perfect looking - followed by why Harrison Ford is too old.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-who-is-perfect-looking-try-harder-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ae87773e-f949-4e60-9ea4-3e7512a149f6.png/sm/TryHarder65.png","duration":751,"publication_date":"2018-01-13T02:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-letters-season-1-an-open-letter-to-hideo-kojima","changefreq":"weekly","video":[{"title":"S1:E2 - An Open Letter to Hideo Kojima","description":"He's a man that confuses, frustrates, and inspires Bolen - he has some stuff to say to him.","player_loc":"https://roosterteeth.com/embed/open-letters-season-1-an-open-letter-to-hideo-kojima","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7b693eb8-7c2d-47da-a2a3-5b6e3d978443.jpg/sm/OpenLetterKojima.jpg","duration":261,"publication_date":"2018-01-12T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-letters-season-1-an-open-letter-to-mario-odyssey","changefreq":"weekly","video":[{"title":"S1:E1 - An Open Letter to Mario Odyssey","description":"Welcome to the first episode of our new series \"Open Letters\" where we shoot mail to our favorite things!","player_loc":"https://roosterteeth.com/embed/open-letters-season-1-an-open-letter-to-mario-odyssey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a91e6389-25df-41f3-9d83-515592016a55.jpg/sm/OpenLetterMarioOdyssey.jpg","duration":158,"publication_date":"2018-01-10T21:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-fresh-meat-for-craig-mario-party-10-bowser","changefreq":"weekly","video":[{"title":"S1:E87 - FRESH MEAT FOR CRAIG | Mario Party 10 Bowser","description":"Dani and Greyson get the pleasure of Bowswer Mode in Mario Party 10 . . .","player_loc":"https://roosterteeth.com/embed/four-play-season-1-fresh-meat-for-craig-mario-party-10-bowser","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5898877-1cd1-46f3-983b-d625225389f2.png/sm/MP10Thumb.png","duration":1219,"publication_date":"2018-01-07T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-im-da-slenda-mahn-try-harder-64","changefreq":"weekly","video":[{"title":"S1:E58 - IM DA SLENDA MAHN | Try Harder #64","description":"S1:E58 - IM DA SLENDA MAHN | Try Harder #64","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-im-da-slenda-mahn-try-harder-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c95e0ac7-2bf4-4d82-a43b-88bc16b2ecec.jpg/sm/SlenderHard.jpg","duration":596,"publication_date":"2018-01-05T00:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-harry-potter-horrible-movies-and-he-man-try-hard-podcast-number-64","changefreq":"weekly","video":[{"title":"S1:E65 - Harry Potter, Horrible Movies and He-Man | Try Hard Podcast Number 64","description":"Make sure and support our Sponsors because they support our community!\nImpress the ones you cook for by visiting: blueapron.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-harry-potter-horrible-movies-and-he-man-try-hard-podcast-number-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/81fdca8e-7e55-4607-ac8a-22e265017635.jpg/sm/unnamed.jpg","duration":3438,"publication_date":"2018-01-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-we-do-not-get-over-it-at-all-let-s-play-get-over-it","changefreq":"weekly","video":[{"title":"LPS:E147 - We do NOT Get Over It. At All. | Let's Play Get Over It","description":"CRAIG DON'T LOOK AT ME.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-we-do-not-get-over-it-at-all-let-s-play-get-over-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02e0e5be-b9a6-4bb9-9bfb-30e8a5fc8744.jpg/sm/GPGettingOverItThumb.jpg","duration":760,"publication_date":"2018-01-03T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-stuff-lists-evil-craig-hates-star-wars","changefreq":"weekly","video":[{"title":"L:E12 - Evil Craig HATES Star Wars","description":"Who WUDDA THUNK THAT EVIL CRAIG HATES STAR WARS TOO?!","player_loc":"https://roosterteeth.com/embed/fun-stuff-lists-evil-craig-hates-star-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d6ce4b33-be4e-482b-a840-79f4b7b12a18.jpg/sm/EvilCraig.jpg","duration":138,"publication_date":"2018-01-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-a-hero-is-born-mario-party-saturday-season-2-episode-2","changefreq":"weekly","video":[{"title":"S1:E86 - A Hero Is Born | Mario Party Saturday Season 2 Episode 2","description":"The next chapter in the ongoing Saga","player_loc":"https://roosterteeth.com/embed/four-play-season-1-a-hero-is-born-mario-party-saturday-season-2-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/51ed7a8c-98dc-4ba7-9483-b34c0fa762fa.png/sm/MPSS2EP2Thumb.png","duration":7841,"publication_date":"2017-12-30T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-john-teaches-us-about-bitcoin-try-harder-63","changefreq":"weekly","video":[{"title":"S1:E57 - John Teaches Us About Bitcoin! | Try Harder #63","description":"LETS GET RICH. Not really. Well, maybe.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-john-teaches-us-about-bitcoin-try-harder-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e3a9c877-f1a0-4709-92d4-3d8196c6f159.jpg/sm/BitCoin.jpg","duration":683,"publication_date":"2017-12-30T05:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-what-s-going-to-change-in-30-years-try-hard-podcast-63","changefreq":"weekly","video":[{"title":"S1:E64 - What's Going to Change in 30 Years? | Try Hard Podcast #63","description":"Support our sponsors since they support us!\nBoxes for men that give a damn: bespokepost.com + promo code: tryhard\nTake an uber ride with us - Use code: Tryhard in Uber app","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-what-s-going-to-change-in-30-years-try-hard-podcast-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3fe6c5a8-ee2b-436e-9aae-652ce7a7ecc9.jpg/sm/TryHard63.jpg","duration":3475,"publication_date":"2017-12-30T05:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-skateboarding-simba-seriously-disney-skate-adventure","changefreq":"weekly","video":[{"title":"LPS:E146 - Skateboarding Simba. Seriously. | Disney Skate Adventure","description":"A glimpse into Parker's childhood.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-skateboarding-simba-seriously-disney-skate-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fea2b15b-e3ea-4fed-9841-9ea6b39a93b4.png/sm/DisneySkateAdventure.png","duration":799,"publication_date":"2017-12-30T01:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-we-had-no-idea-how-bad-this-was-enter-the-matrix-gameplay","changefreq":"weekly","video":[{"title":"LPS:E145 - We Had NO IDEA How Bad This Was | Enter The Matrix Gameplay","description":"Bolen was hyped to play this crap turd. He was actually excited. Shame.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-we-had-no-idea-how-bad-this-was-enter-the-matrix-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2897b5ea-2adc-4313-862a-3e270d3ba069.png/sm/EnterTheMatrix.png","duration":487,"publication_date":"2017-12-29T02:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-stop-whining-about-the-last-jedi-try-hard-podcast-62","changefreq":"weekly","video":[{"title":"S1:E63 - STOP WHINING ABOUT THE LAST JEDI | Try Hard Podcast #62","description":"Protect those eyeballs and look good doing it: felixgrayglasses.com/tryhad\nDon't worry about your looks - have someone do it for you: stitchfix.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-stop-whining-about-the-last-jedi-try-hard-podcast-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0e36217-a1f7-40d2-91c8-9ded1b834fc3.png/sm/bABY.png","duration":3781,"publication_date":"2017-12-22T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-the-greatest-christmas-movies-ever-try-harder-62","changefreq":"weekly","video":[{"title":"S1:E56 - The Greatest Christmas Movies Ever | Try Harder #62","description":"S1:E56 - The Greatest Christmas Movies Ever | Try Harder #62","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-the-greatest-christmas-movies-ever-try-harder-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a920fe1e-8a53-49c4-b85b-e4794be39253.png/sm/Christmas.png","duration":527,"publication_date":"2017-12-22T04:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-will-disney-doom-us-try-hard-podcast-61","changefreq":"weekly","video":[{"title":"S1:E62 - Will Disney DOOM US? | Try Hard Podcast #61","description":"Check out AWESOME man-gear at bespokepost.com + promo code: TRYHARD\r\nGive the gift of awesome comfort at bombas.com/tryhard\r\nTake control of your projects for FREE at capterra.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-will-disney-doom-us-try-hard-podcast-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f6dd2d16-a6fa-4bc6-b2be-7b90707f7921.png/sm/Disney.png","duration":3851,"publication_date":"2017-12-19T00:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-we-end-up-talking-about-our-shoes","changefreq":"weekly","video":[{"title":"S1:E55 - We End Up Talking About Our Shoes","description":"Try Harder #61 BEGINS. And then ends when we talk about our shoes.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-we-end-up-talking-about-our-shoes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b0b60861-54fc-4ed2-b5ec-b61562736637.png/sm/WEEE.png","duration":525,"publication_date":"2017-12-16T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-holy-sh-t-your-tore-down-the-ferris-wheel-let-s-play-gang-beasts","changefreq":"weekly","video":[{"title":"S1:E85 - HOLY SH*T YOUR TORE DOWN THE FERRIS WHEEL!! | Let's Play Gang Beasts","description":"In the penultimate (next to last, I looked it up) day of 11 days of Game Attack, we get Dani and Greyson to join for some Gang Beasts!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-holy-sh-t-your-tore-down-the-ferris-wheel-let-s-play-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a849831-9c8c-4e81-909e-ed5a7634c9ab.png/sm/gangbeasts2.png","duration":1055,"publication_date":"2017-12-16T00:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-25-minutes-of-drunken-nightmare-fuel-let-s-play-8-bit-fiesta","changefreq":"weekly","video":[{"title":"S1:E84 - 25 Minutes of DRUNKEN NIGHTMARE FUEL | Let's Play 8 Bit Fiesta","description":"11 Days of Game Attack caps off with 8 Bit Fiesta - a drinking game . . . that got us drunk . . .","player_loc":"https://roosterteeth.com/embed/four-play-season-1-25-minutes-of-drunken-nightmare-fuel-let-s-play-8-bit-fiesta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec30f850-cfa3-4507-bcd6-2483445b7620.png/sm/8bitfiesta.png","duration":1553,"publication_date":"2017-12-15T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-we-set-people-on-fire-for-15-minutes-straight-lol-syphon-filter","changefreq":"weekly","video":[{"title":"LPS:E143 - We Set People on Fire for 15 Minutes Straight LOL | Syphon Filter","description":"This video is a part of 11 Days of Game Attack - brought to you by our Patrons! To make videos like this happen all the time, support us at patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-we-set-people-on-fire-for-15-minutes-straight-lol-syphon-filter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f0072a6d-4bee-4586-a4ce-49162e7ea33b.png/sm/SyphonFilterThumb.png","duration":807,"publication_date":"2017-12-13T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-super-blood-hockey-four-play","changefreq":"weekly","video":[{"title":"S1:E83 - SUPER BLOOD HOCKEY | Four Play","description":"This video is a part of 11 Days of Game Attack - brought to you by our Patrons! To make videos like this happen all the time, support us at patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/four-play-season-1-super-blood-hockey-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e8ea118-96f9-43e4-a3e7-3a7bef77d32e.png/sm/BloodHockey.png","duration":1064,"publication_date":"2017-12-13T02:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-ultimate-chicken-horse-four-play","changefreq":"weekly","video":[{"title":"S1:E82 - Ultimate Chicken Horse | Four Play","description":"This episode of Ultimate Chicken Horse is brought to you by . . . OUR PATRONS of course. Check out patreon.com/gameattack to see episodes like this EARLY!","player_loc":"https://roosterteeth.com/embed/four-play-season-1-ultimate-chicken-horse-four-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/26a0153b-c15d-42ff-ba65-ce66a46b3ee0.png/sm/ultimatechickenhorsethumb.png","duration":1044,"publication_date":"2017-12-11T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-stuff-lists-evil-craig-hates-youtube","changefreq":"weekly","video":[{"title":"L:E11 - EVIL CRAIG HATES YOUTUBE","description":"FUCK YOU, YOUTUBE.","player_loc":"https://roosterteeth.com/embed/fun-stuff-lists-evil-craig-hates-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b15bf94-eec7-486b-9226-db9cf769c94d.png/sm/EvilCraigThumb.png","duration":147,"publication_date":"2017-12-10T04:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-our-most-magical-christmas-the-legend-of-chuck-the-puck","changefreq":"weekly","video":[{"title":"S1:E54 - Our Most Magical Christmas + THE LEGEND OF \"CHUCK THE PUCK\"","description":"We talk our best Christmas gifts PLUS Craig spills the beans on Chuck the Puck","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-our-most-magical-christmas-the-legend-of-chuck-the-puck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be18601d-7676-4be0-933e-f1ed0a86ea42.png/sm/TryHarder60.png","duration":917,"publication_date":"2017-12-09T03:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-horrendous-pubg-knockoff-tap-dat-app","changefreq":"weekly","video":[{"title":"S1:E20 - HORRENDOUS PUBG KNOCKOFF | Tap Dat App","description":"Battlegrounds this is not.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-horrendous-pubg-knockoff-tap-dat-app","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5fc50cb-5d96-4bd9-945c-eebf09eb8b0b.jpg/sm/PUBGKNOCKOFF.jpg","duration":688,"publication_date":"2017-12-09T01:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-so-you-wanna-be-a-youtube-star-try-hard-podcast-60","changefreq":"weekly","video":[{"title":"S1:E61 - SO YOU WANNA BE A YOUTUBE STAR?! | Try Hard Podcast #60","description":"Support our Sponsors because they support us! \nImpress the family during the holidays with: blueapron.com/tryhard\nStay silky smooth and super fresh with: dollarshaveclub.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-so-you-wanna-be-a-youtube-star-try-hard-podcast-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5542ff72-945c-4f89-8054-1bbd2817791e.png/sm/Tryhard60Thumb.png","duration":3180,"publication_date":"2017-12-08T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-craig-plays-for-the-babes-of-offroad-thunder","changefreq":"weekly","video":[{"title":"LPS:E142 - CRAIG PLAYS FOR THE BABES OF OFFROAD THUNDER!!","description":"IT'S TIME FOR THE GREATEST MIDWAY RACING GAME OF ALL TIME. Not really.","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-craig-plays-for-the-babes-of-offroad-thunder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/839975a4-d7f8-4593-ad55-c2e9bb8a145a.png/sm/OffroadThunder.png","duration":464,"publication_date":"2017-12-08T03:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-stick-fight-is-hype-overload","changefreq":"weekly","video":[{"title":"S1:E81 - STICK FIGHT IS HYPE OVERLOAD!!! | Four Play","description":"Thanks to our patrons for making this video possible! We were able to fly down Dani and Greyson for some awesome Stick Fight awesomeness! This video is part of 11 Days of Game Attack - check out our mission to return to shows like this permanently at patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/four-play-season-1-stick-fight-is-hype-overload","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2177a8a-69fd-4592-8bbf-9b362da38168.png/sm/StickFightHype.png","duration":1292,"publication_date":"2017-12-08T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-play-season-1-gang-beasts-is-back","changefreq":"weekly","video":[{"title":"S1:E80 - GANG BEASTS IS BACK!!","description":"This video would not be possible without the support of our Patrons! See videos JUST LIKE THIS up to over a week BEFORE they hit YouTube & support Game Attack at: patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/four-play-season-1-gang-beasts-is-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/41709a33-75ac-43dd-95c3-53a6be9cd686.png/sm/GangBeastsThumb.png","duration":1045,"publication_date":"2017-12-06T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-this-is-not-starfox","changefreq":"weekly","video":[{"title":"LPS:E141 - THIS IS NOT STARFOX","description":"This video would not be possible without the support of our Patrons! See videos JUST LIKE THIS up to over a week BEFORE they hit YouTube & support Game Attack at: patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-this-is-not-starfox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f688c13d-6ff6-4956-93cb-b77cb81cdf2f.png/sm/StarfoxThumb.png","duration":1112,"publication_date":"2017-12-05T03:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-let-s-play-series-explosive-action-real-life-strategy-rainbow-six","changefreq":"weekly","video":[{"title":"LPS:E140 - EXPLOSIVE ACTION. REAL-LIFE STRATEGY | Rainbow Six","description":"The most realistic tactical shooter of all time - for your viewing pleasure thanks to our Patrons! Get content like this EARLY by going to patreon.com/gameattack","player_loc":"https://roosterteeth.com/embed/let-s-play-let-s-play-series-explosive-action-real-life-strategy-rainbow-six","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e08802c6-65f4-4ba6-ae95-bb11a287dfcf.png/sm/RainbowSixThumb.png","duration":916,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-sam-s-hot-doctor-try-hard-podcast-58","changefreq":"weekly","video":[{"title":"S1:E59 - Sam’s Hot Doctor | Try Hard Podcast #58","description":"Try the glasses for yourself - http://www.felixgrayglass.com/tryhard\nGet 20% off your ENTIRE purchase - http://www.bombas.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-sam-s-hot-doctor-try-hard-podcast-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8e6333e0-5f72-44d4-acc9-7db8322f88d6.png/sm/TryHard58.png","duration":3899,"publication_date":"2017-11-28T02:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-stuff-lists-craig-slaps-the-ever-loving-hell-out-of-bolen","changefreq":"weekly","video":[{"title":"L:E10 - Craig Slaps the EVER LOVING HELL Out of Bolen","description":"Bolen said that Craig hates video games. It did not bode well for Bolen. Because Craig loves Video","player_loc":"https://roosterteeth.com/embed/fun-stuff-lists-craig-slaps-the-ever-loving-hell-out-of-bolen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d38d93b8-3fb1-4009-8d06-d4dbd74e9725.png/sm/gaslap.png","duration":592,"publication_date":"2017-11-22T02:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-reflections-on-the-whole-battlefront-ii-fiasco-try-harder-57","changefreq":"weekly","video":[{"title":"S1:E51 - Reflections on the whole Battlefront II Fiasco | Try Harder 57","description":"S1:E51 - Reflections on the whole Battlefront II Fiasco | Try Harder 57","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-reflections-on-the-whole-battlefront-ii-fiasco-try-harder-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79ba326a-0b30-4b41-9fd9-22080c7752e7.png/sm/gath.png","duration":1247,"publication_date":"2017-11-18T03:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-final-word-on-the-best-batman-try-hard-podcast-57","changefreq":"weekly","video":[{"title":"S1:E58 - THE FINAL WORD ON THE BEST BATMAN | Try Hard Podcast #57","description":"Support our sponsors because they support our g1 family!\nCheck out awesome boxes at Bespoke: bespokepost.com + promo code: tryhard\nThe best shave you can get: dollarshaveclub.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-final-word-on-the-best-batman-try-hard-podcast-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/55cb04d8-2d09-436e-b008-21a8fb5c0c77.png/sm/thbm.png","duration":3215,"publication_date":"2017-11-18T03:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-pricks-on-the-road-2","changefreq":"weekly","video":[{"title":"S1:E50 - Pricks on the Road","description":"S1:E50 - Pricks on the Road","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-pricks-on-the-road-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/281b6f50-be6b-494b-8ecc-0c173a4b5f48/sm/2056966-1509821903865-Try_Harder_Thumb_3.png","duration":882,"publication_date":"2017-11-04T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-first-time-watching-star-trek-tng-ever-try-hard-podcast-55","changefreq":"weekly","video":[{"title":"S1:E56 - FIRST TIME WATCHING STAR TREK TNG EVER - Try Hard Podcast #55","description":"Please support our sponsors as they support us:\n\n>http://www.DollarShaveClub.com/TryHard - Get the DSC Starter Set for just $5>http://www.Capterra.com/TryHard - Try it for FREE>http://www.Bombas.com/TryHard - Get 20% off your entire order!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-first-time-watching-star-trek-tng-ever-try-hard-podcast-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/556a044c-a30c-4e12-b13e-e62dfa67ceeb/sm/2056966-1509821320200-hq720.jpg","duration":4847,"publication_date":"2017-11-04T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-slicing-pumpkins-and-slicing-throats-try-hard-54","changefreq":"weekly","video":[{"title":"S1:E55 - Slicing Pumpkins and Slicing Throats | Try Hard #54","description":"Our Sponsors this week support Game Attack and our community, so you should support them!Buy 1 pair, or 4 at BOMBAS.com/TRYHARD TODAY, and get 20% off your first purchase!capterra.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-slicing-pumpkins-and-slicing-throats-try-hard-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63809dce-8e89-4d6c-b68b-499ce43c0298/sm/2056966-1509209538260-Try-Hard-Thumb-Halloween.jpg","duration":4120,"publication_date":"2017-10-28T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-john-bought-a-g-u-n","changefreq":"weekly","video":[{"title":"S1:E48 - JOHN BOUGHT A GUN!?","description":"S1:E48 - JOHN BOUGHT A GUN!?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-john-bought-a-g-u-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d776c0-2682-4d5f-a87b-24d1ed301d3c/sm/2056966-1508617094949-TryHarder53.jpg","duration":1106,"publication_date":"2017-10-22T01:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-legend-of-the-goatman-and-other-spoopy-tales-try-hard-53","changefreq":"weekly","video":[{"title":"S1:E54 - THE LEGEND OF THE GOATMAN AND OTHER SPOOPY TALES | Try Hard #53","description":"Please support our Sponsors because they support us!\n\nBeach Body: Text TRYHARD to 303030 for a FREE Trial!StitchFix: stitchfix.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-legend-of-the-goatman-and-other-spoopy-tales-try-hard-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae8b26f7-d15d-4ca9-84d9-32e12a908c00/sm/2056966-1508616957700-TryHard53.jpg","duration":3144,"publication_date":"2017-10-21T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-bolen-s-mario-world-experience-try-hard-podcast-52","changefreq":"weekly","video":[{"title":"S1:E53 - Bolen's Mario World Experience - Try Hard Podcast #52","description":"This episode is brought to you by our wonderful sponsors:Bombas - Get 20% off your first order: http://www.Bombas.com/TryHardBlue Apron - Get $30 off your first meal: http://www.BlueApron.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-bolen-s-mario-world-experience-try-hard-podcast-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/099195a0-4940-479f-9c63-f3a76535a637/sm/2056966-1508187103163-TryHard52.jpg","duration":4638,"publication_date":"2017-10-16T01:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-b-o-l-e-n-s-story-of-glory-try-hard-podcast-51","changefreq":"weekly","video":[{"title":"S1:E52 - BOLEN'S STORY OF GLORY - TRY HARD PODCAST #51","description":"Please support our sponsors as they support us!Dollar Shave Club: >http://www.DollarShaveClub.com/TryHardWhistle: >http://www.Whistle.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-b-o-l-e-n-s-story-of-glory-try-hard-podcast-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e441c17e-facf-4ab1-8fb6-794b39209f8a/sm/2056966-1507482007461-TryHard51b.jpg","duration":5793,"publication_date":"2017-10-08T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-most-awkward-event-of-bolen-s-life-try-hard-podcast-50","changefreq":"weekly","video":[{"title":"S1:E51 - The Most AWKWARD Event of Bolen's Life | Try Hard Podcast #50","description":"Our sponsors support us, so go support them!\n\nTHE SHORTS REVOLUTION STARTS HERE: chubbies.com/tryhard\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nProtect those eyes like Craig with Felix Gray Glasses: http://felixgrayglasses.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-most-awkward-event-of-bolen-s-life-try-hard-podcast-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42e69f5e-7638-49c7-afa6-d3b1558142eb/sm/2056966-1506734524347-Try_Hard_50.png","duration":3171,"publication_date":"2017-09-30T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-handcuffed-to-a-bed-try-harder-50","changefreq":"weekly","video":[{"title":"S1:E46 - Handcuffed to a Bed - Try Harder #50","description":"Gatorade arguments and Netflix AWESOMENESS","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-handcuffed-to-a-bed-try-harder-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bac215b-a888-463f-adc9-87331727c69d/sm/2056966-1506733922839-Try_Harder.png","duration":658,"publication_date":"2017-09-30T18:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-what-are-some-of-our-personal-hopes-and-dreams-try-harder-49","changefreq":"weekly","video":[{"title":"S1:E45 - What are some of our personal hopes and dreams - Try Harder #49","description":"S1:E45 - What are some of our personal hopes and dreams - Try Harder #49","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-what-are-some-of-our-personal-hopes-and-dreams-try-harder-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac08a758-b601-4b03-bf60-421c6843c2aa/sm/2056966-1506186578519-TryHarder49.jpg","duration":579,"publication_date":"2017-09-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-parker-is-a-horrible-person-try-hard-49","changefreq":"weekly","video":[{"title":"S1:E50 - Parker is a HORRIBLE Person - Try Hard #49","description":"Support today's sponsors as they support us!\n\nFelix Grey - http://www.FelixGreyGlasses.com/TryHardBeach Body On Demand - Text \"TryHard\" to 303030 Dollar Shave Club - http://DollarShaveClub.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-parker-is-a-horrible-person-try-hard-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f99d448c-3e83-4964-9605-95b24e5a2f52/sm/2056966-1506186923125-TryHard49.jpg","duration":4140,"publication_date":"2017-09-23T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-do-you-prefer-the-mummy-over-raiders-of-the-lost-ark","changefreq":"weekly","video":[{"title":"S1:E44 - Do you prefer The Mummy over Raiders of the Lost Ark?","description":"S1:E44 - Do you prefer The Mummy over Raiders of the Lost Ark?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-do-you-prefer-the-mummy-over-raiders-of-the-lost-ark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9e97e02-aa6e-44d5-8cdb-5efbb3d43ce4/sm/2056966-1505584694618-Rick_Vs_Indie.png","duration":908,"publication_date":"2017-09-16T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-our-favorite-rendition-of-samus-ever-aka-bolen-gets-owned-try-hard-48-2","changefreq":"weekly","video":[{"title":"S1:E49 - Our favorite Rendition of Samus EVER - aka Bolen Gets Owned | Try Hard #48","description":"Thanks to our sponsors today -\n\nBe a chef for your fam with Blue Apron: http://blueapron.com/tryhardNEVER lose track of your g1 doggos with Whistle: http://whistle.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-our-favorite-rendition-of-samus-ever-aka-bolen-gets-owned-try-hard-48-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b75752ca-5ee5-4cae-bded-a1b54e7b23f4/sm/2056966-1505584111138-Samass.png","duration":5285,"publication_date":"2017-09-16T17:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-scary-clowns-be-trippin-try-hard-podcast-47","changefreq":"weekly","video":[{"title":"S1:E48 - Scary Clowns Be Trippin | Try Hard Podcast #47","description":"FELIX GREY WILL SAVE YOUR EYES: felixgrayglasses.com/tryhard \n\nDollar Shave Club WILL SAVE YOUR FACE: dollarshaveclub.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-scary-clowns-be-trippin-try-hard-podcast-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9724ebf-f9f3-427b-9eea-b7c6ee2fd76e/sm/2056966-1505142604272-Untitled-2.png","duration":4269,"publication_date":"2017-09-09T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-would-you-rather-have-an-arm-grow-out-of-your-stomach-or-your-b-u-t-t","changefreq":"weekly","video":[{"title":"S1:E43 - WOULD YOU RATHER HAVE AN ARM GROW OUT OF YOUR STOMACH OR YOUR BUTT?","description":"S1:E43 - WOULD YOU RATHER HAVE AN ARM GROW OUT OF YOUR STOMACH OR YOUR BUTT?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-would-you-rather-have-an-arm-grow-out-of-your-stomach-or-your-b-u-t-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3548304e-542a-46d7-8aa9-b8b03aa75d72/sm/2056966-1504977934739-Hand_Stomach.png","duration":313,"publication_date":"2017-09-09T17:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-close-encounters-try-hard-podcast-46-2","changefreq":"weekly","video":[{"title":"S1:E47 - CLOSE ENCOUNTERS - Try Hard Podcast #46","description":"S1:E47 - CLOSE ENCOUNTERS - Try Hard Podcast #46","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-close-encounters-try-hard-podcast-46-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdef383a-b6f3-4064-91f8-50b419832730/sm/2056966-1504372782614-TryHard46.jpg","duration":5326,"publication_date":"2017-09-03T04:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-gears-of-war-rap-take-out-a-longshot","changefreq":"weekly","video":[{"title":"2009:E4 - Gears of War Rap - \"Take Out A Longshot\"","description":"We would probably consider this the first \"Nerdcore\" song we did. This song actually encompasses both Gears of War 1 and 2.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-gears-of-war-rap-take-out-a-longshot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a877dafd-9897-4b78-acf6-092299f377f3.png/sm/JTMusic2009_4_widethumb.png","duration":181,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-the-godfather-rap","changefreq":"weekly","video":[{"title":"2009:E5 - The Godfather Rap","description":"What a random game for us to have made a song for, right? Fortunately, if you dig the films then this Godfather Rap translates to that as well.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-the-godfather-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d882229f-d272-4f4c-958c-40c38c6f3c76.png/sm/JTMusic2009_5_widethumb.png","duration":165,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-fallout-3-rap","changefreq":"weekly","video":[{"title":"2009:E6 - Fallout 3 Rap","description":"Fun fact: a fan made this music video. We never intended on giving this Fallout 3 Rap a video until someone just did it for us.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-fallout-3-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/30aa05f0-3c49-4a6f-b52e-04eb2b1854b9.png/sm/JTMusic2009_6_widethumb.png","duration":223,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-call-of-duty-modern-warfare-2-rap","changefreq":"weekly","video":[{"title":"2009:E8 - Call of Duty Modern Warfare 2 Rap","description":"Some would say this was when call of duty peaked. Fortunately I can not say the same for us (I hope).","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-call-of-duty-modern-warfare-2-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1eca49fb-865a-4b53-822a-e23b01a7a9a4.png/sm/JTMusic2009_8_widethumb.png","duration":256,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2009-left-4-dead-2-rap","changefreq":"weekly","video":[{"title":"2009:E7 - Left 4 Dead 2 Rap","description":"Another Left 4 Dead game means another Left 4 Dead Rap. This one is a tad better than the first, you think?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2009-left-4-dead-2-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cd8641dd-4233-4e6c-b69f-fb82517b53f1.png/sm/JTMusic2009_7_widethumb.png","duration":125,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2010-battlefield-bad-company-2-rap","changefreq":"weekly","video":[{"title":"2010:E2 - Battlefield Bad Company 2 Rap","description":"No word on a new Bad Company game from DICE yet, but this BFBC2 Rap can hold you over until then!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2010-battlefield-bad-company-2-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7e2ef989-4f9e-4212-b2ad-25122f3fea06.png/sm/JTMusic2010_2_widethumb.png","duration":140,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2010-red-dead-redemption-rap","changefreq":"weekly","video":[{"title":"2010:E3 - Red Dead Redemption Rap","description":"Get yourself hype for RDR2 with this rap we made for the original Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2010-red-dead-redemption-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/519a327c-8453-479d-ba71-c43c2dac8c72.png/sm/JTMusic2010_3_widethumb.png","duration":210,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-mortal-kombat-rap-finish-him","changefreq":"weekly","video":[{"title":"2011:E1 - Mortal Kombat Rap - \"Finish Him!\"","description":"X-ray vision was a pretty awesome feature in this game...so naturally we made a song that glorified that.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-mortal-kombat-rap-finish-him","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd2bf03c-4251-44fd-b2b0-b0b09c635813.jpg/sm/JTMusic2011_1_widethumb.jpg","duration":159,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-gears-of-war-3-rap-this-is-gears-of-war","changefreq":"weekly","video":[{"title":"2011:E2 - Gears of War 3 Rap - \"This is Gears of War\"","description":"This Gears Rap highlights the 3rd game and its story.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-gears-of-war-3-rap-this-is-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed6a10b1-0129-4b27-99e4-379062e97bf0.jpg/sm/JTMusic2011_2_widethumb.jpg","duration":230,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-dead-island-song-welcome-to-dead-island","changefreq":"weekly","video":[{"title":"2011:E3 - Dead Island Song - \"Welcome To Dead Island\"","description":"Dead Island...it had a fun aesthetic and setting, but gave us headaches when we played. This song reflects that pretty well.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-dead-island-song-welcome-to-dead-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/218cb9c3-e1b4-43e3-8e2e-3fef9e784a39.jpg/sm/JTMusic2011_3_widethumb.jpg","duration":113,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-battlefield-3-rap-get-outta-my-battlefield","changefreq":"weekly","video":[{"title":"2011:E4 - Battlefield 3 Rap - \"Get Outta My Battlefield\"","description":"This song was actually part of a shift away from \"nerdcore\" that we tried doing. The aim was to be more goofy such as \"The Greatest Ever\" was. We soon realized nerdcore was what the people wanted. Anyways, enjoy this BF3 Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-battlefield-3-rap-get-outta-my-battlefield","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3ed16a01-8ba7-4d03-8eef-357f21d04b44.jpg/sm/JTMusic2011_4_widethumb.jpg","duration":185,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-call-of-duty-modern-warfare-3-rap-i-m-a-g-in-codmod-3","changefreq":"weekly","video":[{"title":"2011:E6 - Call of Duty: Modern Warfare 3 Rap - I'm a G in CODMOD 3\"","description":"Another more goofy rap (instead of nerdcore) and this song serves as a pretty good satirical piece for the obnoxious fanbase that CoD grew into having.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-call-of-duty-modern-warfare-3-rap-i-m-a-g-in-codmod-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6d47608-de28-4f2e-81cb-4495100e09d7.jpg/sm/JTMusic2011_6_widethumb.jpg","duration":262,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-rage-rap-road-rage","changefreq":"weekly","video":[{"title":"2011:E7 - Rage Rap - \"Road Rage\"","description":"This is potentially our all time least viewed rap. It makes sense when you see what song the game is about: Rage. This game was a perfect example of how long development cycles are detrimental to, well, everything.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-rage-rap-road-rage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0b992a0f-d406-43af-ac4e-977600121049.jpg/sm/JTMusic2011_7_widethumb.jpg","duration":215,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-battlefield-3-song-i-ll-get-your-dog-tags","changefreq":"weekly","video":[{"title":"2011:E5 - Battlefield 3 Song - \"I'll Get Your Dog Tags\"","description":"Dogtags = Bragging rights in Battlefield. We chose to make a song with that in mind.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-battlefield-3-song-i-ll-get-your-dog-tags","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a120f9c8-417a-40e0-8549-bf2e0f7d022e.jpg/sm/JTMusic2011_5_widethumb.jpg","duration":122,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-assassin-s-creed-2-revelations-rap-the-hooded-assassin","changefreq":"weekly","video":[{"title":"2011:E8 - Assassin's Creed 2: Revelations Rap - \"The Hooded Assassin\"","description":"Ezio was a badass and probably deserved twenty more songs. But alas, you get just this one.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-assassin-s-creed-2-revelations-rap-the-hooded-assassin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b8f7cd0-25ae-4d04-b16e-5de8c49209c2.jpg/sm/JTMusic2011_8_widethumb.jpg","duration":207,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-batman-arkham-city-rap-the-bat-rap","changefreq":"weekly","video":[{"title":"2011:E9 - Batman Arkham City Rap - \"The Bat Rap\"","description":"Batman is a badass and The Bat Rap song has a jazzy take on his baddassery.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-batman-arkham-city-rap-the-bat-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/61169620-c45a-4287-ae85-211064415fc6.jpg/sm/JTMusic2011_9_widethumb.jpg","duration":173,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-saints-row-the-third-rap","changefreq":"weekly","video":[{"title":"2011:E10 - Saints Row The Third Rap","description":"Saints Row The Third is a hot mess in all the right ways and this song matches the game's energy with a ritzy twist.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-saints-row-the-third-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a37676f4-d6a9-4d8e-b06d-74795fa4a10a.jpg/sm/JTMusic2011_10_widethumb.jpg","duration":214,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2011-call-of-duty-black-ops-rap","changefreq":"weekly","video":[{"title":"2011:E11 - Call of Duty Black Ops Rap","description":"Call of Duty really started getting stale at this point, but that doesn't stop this Black Ops song from being fire.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2011-call-of-duty-black-ops-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4410ac74-954a-4b73-bdf8-9bf52edfea8f.jpg/sm/JTMusic2011_11_widethumb.jpg","duration":288,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-dovahkiin-rap-i-m-dovahkiin-bitch","changefreq":"weekly","video":[{"title":"2012:E2 - Dovahkiin Rap - \"I'm Dovahkiin Bitch!\"","description":"This was a song adapted from a goofy credit roll jingle. People asked for a full version of the song and then hated this when it came out. That was the last time we were easily influenced by the comment section.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-dovahkiin-rap-i-m-dovahkiin-bitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d7ece8a1-64ba-4926-a6a8-ae91665fea9a.png/sm/JTMusic2012_2_widethumb.png","duration":145,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-mass-effect-rap-we-are-one","changefreq":"weekly","video":[{"title":"2012:E1 - Mass Effect Rap - \"We Are One\"","description":"This rap encompasses both Mass Effect 1 & 2...easily the best two of the series. We aimed to match the emotion and stakes of those games and put them in this song.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-mass-effect-rap-we-are-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a0d9d2f7-370f-458d-8c23-5bca30b857d9.png/sm/JTMusic2012_1_widethumb.png","duration":241,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-assassin-s-creed-3-rap-born-into-revolution","changefreq":"weekly","video":[{"title":"2012:E3 - Assassin's Creed 3 Rap - \"Born Into Revolution\"","description":"A JTM classic that follows the exploits of Connor Kenway in Assassin's Creed 3.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-assassin-s-creed-3-rap-born-into-revolution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a077f3b6-89a6-4d27-8d6f-9964cfc61240.png/sm/JTMusic2012_3_widethumb.png","duration":243,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-slender-rap","changefreq":"weekly","video":[{"title":"2012:E4 - Slender Rap","description":"This was the first scary game we decided to try. Looking back it's not that scary, but by this video you can tell how we really felt at the time.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-slender-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0115bcf-efdf-4cf8-bb0b-7a9a34c1864d.png/sm/JTMusic2012_4_widethumb.png","duration":205,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-need-for-speed-most-wanted-rap","changefreq":"weekly","video":[{"title":"2012:E5 - Need for Speed: Most Wanted Rap","description":"Car games need more love and we deliver that with this Need for Speed: Most Wanted Rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-need-for-speed-most-wanted-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/105a8987-c123-4696-94fb-df27c1eeca00.png/sm/JTMusic2012_5_widethumb.png","duration":156,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-hitman-absolution-rap","changefreq":"weekly","video":[{"title":"2012:E6 - Hitman Absolution Rap","description":"Agent 47 drops some mean bars in this rap that follows the last full release for the Hitman franchise.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-hitman-absolution-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c6a1e057-30a8-4999-8f22-f0727796203f.png/sm/JTMusic2012_6_widethumb.png","duration":185,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-borderlands-2-rap-grab-dat-loot","changefreq":"weekly","video":[{"title":"2012:E7 - Borderlands 2 Rap - \"Grab Dat Loot!\"","description":"A song that matches the chaos and charm of Borderlands 2. IT'S ALL ABOUT DAT LOOT!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-borderlands-2-rap-grab-dat-loot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e339b509-9cd7-4d6a-aea0-c07f1f698f96.png/sm/JTMusic2012_7_widethumb.png","duration":205,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-diablo-iii-rap","changefreq":"weekly","video":[{"title":"2012:E8 - Diablo III Rap","description":"Diablo III came out on my birthday. That's all I remember about this project.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-diablo-iii-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9c386fea-bf44-4be7-a241-6837feefff2d.png/sm/JTMusic2012_8_widethumb.png","duration":181,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2012-modern-warfare-3-rap-runnin-train","changefreq":"weekly","video":[{"title":"2012:E9 - Modern Warfare 3 Rap - \"Runnin' Train\"","description":"We had one MW3 song out at the time, but we wanted to do a new one in a more \"Nerdcore\" style and so here you have this!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2012-modern-warfare-3-rap-runnin-train","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bff081ea-5bd0-43a5-b943-476c868f6d40.png/sm/JTMusic2012_9_widethumb.png","duration":228,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-call-of-duty-black-ops-2-rap","changefreq":"weekly","video":[{"title":"2013:E1 - Call of Duty: Black Ops 2 Rap","description":"Another year, another Call of Duty rap. This time it's Black Ops 2 that gets the nod.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-call-of-duty-black-ops-2-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c97d94ad-3eae-4bf7-9ec7-7550a51837ea.png/sm/JTMusic2013_1_widethumb.png","duration":233,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-crysis-3-rap-the-prophet","changefreq":"weekly","video":[{"title":"2013:E3 - Crysis 3 Rap - \"The Prophet\"","description":"Prophet is a badass protagonist that demands a song of his own and here you have it.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-crysis-3-rap-the-prophet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a12bea7-3fe0-4540-800c-0f37790846ff.png/sm/JTMusic2013_3_widethumb.png","duration":227,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-dead-space-3-rap-keeping-me-human","changefreq":"weekly","video":[{"title":"2013:E2 - Dead Space 3 Rap - \"Keeping Me Human\"","description":"You're alone in space and certain death is around every corner. What's there left to keep you sane? Listen forth as this song explores that question.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-dead-space-3-rap-keeping-me-human","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0fb0f37f-1d75-4281-8978-a3799b926b60.png/sm/JTMusic2013_2_widethumb.png","duration":238,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-tomb-raider-rap-looks-can-kill","changefreq":"weekly","video":[{"title":"2013:E4 - Tomb Raider Rap - \"Looks Can Kill\"","description":"Lara Croft is a babe, but there's definitely a certain edge to that beauty. Tread lightly.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-tomb-raider-rap-looks-can-kill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9fe0d777-9fd0-46a0-997a-e21366e71bca.png/sm/JTMusic2013_4_widethumb.png","duration":214,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-gears-of-war-judgement-rap-kilo-squad","changefreq":"weekly","video":[{"title":"2013:E5 - Gears of War Judgement Rap - \"Kilo Squad\"","description":"Another track about the burly, badass and deadly soldiers from the Gears of War franchise.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-gears-of-war-judgement-rap-kilo-squad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/58bde997-2d6a-4ab2-8e73-4867e19b1e78.png/sm/JTMusic2013_5_widethumb.png","duration":228,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-dead-island-riptide-rap","changefreq":"weekly","video":[{"title":"2013:E7 - Dead Island Riptide Rap","description":"The sleazy travel guide returns again to get you back to the lovely Island.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-dead-island-riptide-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f9ad9e6-99c4-4b36-b6a2-148d277cda9f.png/sm/JTMusic2013_7_widethumb.png","duration":177,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-assassin-s-creed-3-dlc-rap-born-into-tyranny","changefreq":"weekly","video":[{"title":"2013:E8 - Assassin's Creed 3 DLC Rap - \"Born Into Tyranny\"","description":"The only ever DLC to get a song from us follows in the footsteps of the first AC3 rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-assassin-s-creed-3-dlc-rap-born-into-tyranny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fbc4a484-e20e-4209-8c6d-b1c82b62d8f2.png/sm/JTMusic2013_8_widethumb.png","duration":180,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-last-of-us-rap-a-reason-to-live","changefreq":"weekly","video":[{"title":"2013:E9 - Last Of Us Rap - \"A Reason to Live\"","description":"When the world has gone to shit and you're all alone you gotta find the right reason to push on. This song encompasses Joel's perspective on survival.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-last-of-us-rap-a-reason-to-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f1ba76a7-e3a3-4663-8a0b-0519bf34938e.png/sm/JTMusic2013_9_widethumb.png","duration":262,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-battlefield-4-rap-love-is-a-battlefield","changefreq":"weekly","video":[{"title":"2013:E12 - Battlefield 4 Rap - \"Love is a Battlefield\"","description":"We were listening to a lot of Justin Timberlake around the time that this song was made...couldn't you tell?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-battlefield-4-rap-love-is-a-battlefield","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/938b2947-64be-4c19-985f-c7899c8eb908.png/sm/JTMusic2013_12_widethumb.png","duration":185,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-bioshock-infinite-rap","changefreq":"weekly","video":[{"title":"2013:E6 - Bioshock Infinite Rap","description":"Sadly this was the last Bioshock game ever made but it is not the last JTM Bioshock song ever made.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-bioshock-infinite-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc34dc97-3899-4d04-9f86-a6411358d03f.png/sm/JTMusic2013_6_widethumb.png","duration":233,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-saints-row-iv-rap-rockin-purple","changefreq":"weekly","video":[{"title":"2013:E10 - Saints Row IV Rap - \"Rockin' Purple\"","description":"Saints Row is chaotic and random and so is this song.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-saints-row-iv-rap-rockin-purple","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d8c5a7cd-3ba4-4d33-adc5-f9b3696e89d6.png/sm/JTMusic2013_10_widethumb.png","duration":235,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-gta-v-rap-yo-hood-ain-t-hood-enough","changefreq":"weekly","video":[{"title":"2013:E11 - GTA V Rap - \"Yo Hood Ain't Hood Enough\"","description":"Taking a lot of inspiration from the GTA IV soundtrack, the instrumentals in this song compliment the franchise seamlessly.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-gta-v-rap-yo-hood-ain-t-hood-enough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28b8987e-f0c0-42a6-83ea-7d10adacee06.png/sm/JTMusic2013_11_widethumb.png","duration":239,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-call-of-duty-ghosts-rap-the-ghosts","changefreq":"weekly","video":[{"title":"2013:E13 - Call of Duty Ghosts Rap - \"The Ghosts\"","description":"CoD Ghosts was quite the contentious game and honestly one that under delivered for us. However, we are extremely happy with how this song turned out.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-call-of-duty-ghosts-rap-the-ghosts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/42bf03e2-5e91-43d7-9096-8332324a0919.png/sm/JTMusic2013_13_widethumb.png","duration":225,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-ryse-son-of-rome-rap","changefreq":"weekly","video":[{"title":"2013:E15 - Ryse: Son of Rome Rap","description":"You may remember Ryse Son of Rome for it's gorgeous graphics with the Xbox One launch. You may not remember this song though. This is an under the radar JTM song.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-ryse-son-of-rome-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bcbc29fd-c76f-4deb-8388-7e93d3357eff.png/sm/JTMusic2013_15_widethumb.png","duration":241,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2013-assassin-s-creed-4-rap-the-black-flag-is-risin","changefreq":"weekly","video":[{"title":"2013:E14 - Assassin's Creed 4 Rap - \"The Black Flag is Risin'\"","description":"If pirates, assassins and rap music are your thing then you're in luck with this video.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2013-assassin-s-creed-4-rap-the-black-flag-is-risin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ab2c4d1b-d974-426e-98b9-7eee3268b094.png/sm/JTMusic2013_14_widethumb.png","duration":262,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-passing-off-the-torch-goodbye-7th-generation-song","changefreq":"weekly","video":[{"title":"2014:E2 - Passing Off The Torch (Goodbye 7th Generation Song)","description":"For those of you that missed our salute to the 7th generation!! And to those who wanna live it again!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-passing-off-the-torch-goodbye-7th-generation-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e868009f-dfde-46ec-9a29-337b2decbe66.png/sm/JTMusic2014_2_widethumb.png","duration":221,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-mass-effect-rap-redux-we-are-one","changefreq":"weekly","video":[{"title":"2014:E1 - Mass Effect Rap REDUX - \"We Are One\"","description":"Here is our Mass Effect Rap revisited with better mixing and production. Enjoy!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-mass-effect-rap-redux-we-are-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23906872-7397-4a80-81e4-8e7dd8d9325b.png/sm/JTMusic2014_1_widethumb.png","duration":242,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-watch-dogs-rap","changefreq":"weekly","video":[{"title":"2014:E3 - Watch Dogs Rap","description":"Here is our Watch Dogs Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-watch-dogs-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/486ffc35-913d-48c6-a1e7-a689afa0061c.png/sm/JTMusic2014_3_widethumb.png","duration":188,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-i-am-a-wrecking-ball-miley-cyrus-battlefield-parody","changefreq":"weekly","video":[{"title":"2014:E4 - \"I Am A Wrecking Ball\" Miley Cyrus Battlefield Parody","description":"A parody of a Miley Cyrus song in Battlefield 4.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-i-am-a-wrecking-ball-miley-cyrus-battlefield-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/730e00cc-8d3f-48ff-9d25-e94cdf428710.png/sm/JTMusic2014_4_widethumb.png","duration":210,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-the-ballad-of-cod","changefreq":"weekly","video":[{"title":"2014:E6 - \"The Ballad of CoD\"","description":"CoD was getting stale and this song should give you an idea of where our frustrations are.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-the-ballad-of-cod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3741158-d954-48c2-b582-ec6ab749b69e.png/sm/JTMusic2014_6_widethumb.png","duration":166,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-titanfall-rap","changefreq":"weekly","video":[{"title":"2014:E5 - Titanfall Rap","description":"Here is our first Titanfall Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-titanfall-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/62649313-998c-403e-be96-30e20ab2a70a.png/sm/JTMusic2014_5_widethumb.png","duration":201,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-cuz-i-got-mined-pvz-song-afroman-parody","changefreq":"weekly","video":[{"title":"2014:E8 - \"Cuz I Got Mined\" PVZ Song | AfroMan Parody","description":"Here is a song parody of an Afroman song but in Plants vs Zombies GW...go figure.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-cuz-i-got-mined-pvz-song-afroman-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/52598df6-d30b-4778-ae19-8a366cf94ec9.png/sm/JTMusic2014_8_widethumb.png","duration":125,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-thief-rap-bleeding-secrets","changefreq":"weekly","video":[{"title":"2014:E10 - Thief Rap - \"Bleeding Secrets\"","description":"Here is our Thief Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-thief-rap-bleeding-secrets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59e13fda-f2f9-4e47-9c39-871974582068.png/sm/JTMusic2014_10_widethumb.png","duration":203,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-titanfall-rap-cod-killa","changefreq":"weekly","video":[{"title":"2014:E9 - Titanfall Rap - \"CoD Killa\"","description":"Can Titanfall be the CoD Killer?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-titanfall-rap-cod-killa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f0301b5c-bc19-4306-9975-301103f2f681.png/sm/JTMusic2014_9_widethumb.png","duration":133,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-plants-vs-zombies-gw-rap-caught-up-in-garden-warfare","changefreq":"weekly","video":[{"title":"2014:E7 - Plants vs Zombies GW Rap - \"Caught Up In Garden Warfare\"","description":"Here is our first Plants vs Zombies Garden Warfare Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-plants-vs-zombies-gw-rap-caught-up-in-garden-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f5cf959-c7b1-47e4-9291-077b92ffbb54.png/sm/JTMusic2014_7_widethumb.png","duration":187,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-dark-souls-ii-rap-prepare-to-die","changefreq":"weekly","video":[{"title":"2014:E11 - Dark Souls II Rap - \"Prepare to Die\"","description":"What's more grueling? This track or Dark Souls II? The game. Duh. This song is hot fire.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-dark-souls-ii-rap-prepare-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/95e33042-05fe-45b6-983c-d96101955cee.png/sm/JTMusic2014_11_widethumb.png","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-infamous-second-son-rap-the-second-son","changefreq":"weekly","video":[{"title":"2014:E13 - inFamous Second Son Rap - \"The Second Son\"","description":"Here is our inFamous Second Son Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-infamous-second-son-rap-the-second-son","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2d25739c-ac9f-453a-b19f-cc643e1c7a95.png/sm/JTMusic2014_13_widethumb.png","duration":232,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-titanfall-rap-when-titans-fall","changefreq":"weekly","video":[{"title":"2014:E14 - Titanfall Rap - \"When Titans Fall\"","description":"Here is our Titanfall Rap! Thank you to Teamheadkick and Rockit Gaming for their contributions in this music video.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-titanfall-rap-when-titans-fall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/33824589-bbed-45ba-a398-3882e28357b0.png/sm/JTMusic2014_14_widethumb.png","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-goat-simulator-rap","changefreq":"weekly","video":[{"title":"2014:E12 - Goat Simulator Rap","description":"Here is our Goat Simulator Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-goat-simulator-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/10e24ae2-e2f8-4748-98d0-ccbfca4fe447.png/sm/JTMusic2014_12_widethumb.png","duration":128,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-assassin-s-creed-bloodline-rap","changefreq":"weekly","video":[{"title":"2014:E16 - Assassin's Creed Bloodline Rap","description":"A rap tribute to the original Assassin's Creed bloodline of the series protagonist, Desmond Miles.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-assassin-s-creed-bloodline-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/798053bc-8c98-478c-90eb-8de0a8990686.png/sm/JTMusic2014_16_widethumb.png","duration":275,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-elder-scrolls-online-rap-the-molag-ballad","changefreq":"weekly","video":[{"title":"2014:E15 - Elder Scrolls Online Rap - \"The Molag Ballad\"","description":"Here is our Elder Scrolls Online Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-elder-scrolls-online-rap-the-molag-ballad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b131cdb1-eea1-4595-a197-f3572b38e15f.png/sm/JTMusic2014_15_widethumb.png","duration":297,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-watch_dogs-rap-remix","changefreq":"weekly","video":[{"title":"2014:E18 - WATCH_DOGS RAP [Remix]","description":"Here is our Watch Dogs Rap but updated and remixed.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-watch_dogs-rap-remix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/549ba8e1-05b8-4225-bf06-3a61f5aca228.png/sm/JTMusic2014_18_widethumb.png","duration":183,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-banjo-kazooie-rap","changefreq":"weekly","video":[{"title":"2014:E19 - Banjo- Kazooie Rap","description":"The game that brought Skull and Pat together as kids now gets the JT Music rap treatment.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-banjo-kazooie-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/531c7be1-d865-40cb-8e42-77d62e479041.png/sm/JTMusic2014_19_widethumb.png","duration":238,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-wolfenstein-rap-the-doomed-order","changefreq":"weekly","video":[{"title":"2014:E17 - Wolfenstein Rap - \"The Doomed Order\"","description":"Here is our Wolfenstein Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-wolfenstein-rap-the-doomed-order","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13d27d19-8505-45d3-9904-b2c31216fb44.png/sm/JTMusic2014_17_widethumb.png","duration":195,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-team-fortress-2-rap-meet-the-crew","changefreq":"weekly","video":[{"title":"2014:E20 - Team Fortress 2 Rap - \"Meet the Crew\"","description":"It's time to meet the crew of TF2...through rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-team-fortress-2-rap-meet-the-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6dae43e2-ad5a-4afa-8bee-c75ccff5db8d.png/sm/JTMusic2014_20_widethumb.png","duration":260,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-douche-gamer-rap","changefreq":"weekly","video":[{"title":"2014:E21 - Douche Gamer Rap","description":"Here is our Rap based around the persona of the biggest d-bag gamer you could ever imagine!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-douche-gamer-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/205e1c2a-351d-4a2d-8710-b76fb7451653.png/sm/JTMusic2014_21_widethumb.png","duration":218,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-call-of-duty-modern-warfare-2-rap-redux","changefreq":"weekly","video":[{"title":"2014:E22 - Call of Duty: Modern Warfare 2 Rap REDUX","description":"This is a revisited version of one of our greatest hits, the MW2 Rap \"Sleep Is Just Lame.\" A very epic and nostalgic track, for those of you who remember the original from 2009!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-call-of-duty-modern-warfare-2-rap-redux","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a4e7f8e-1435-4ee7-a923-c6d3a7a40a3b.png/sm/JTMusic2014_22_widethumb.png","duration":263,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-destiny-rap-legend","changefreq":"weekly","video":[{"title":"2014:E24 - Destiny Rap - \"Legend\"","description":"Will you become legend?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-destiny-rap-legend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fa926031-cf34-45bc-9a62-e62193729b6a.png/sm/JTMusic2014_24_widethumb.png","duration":344,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-sniper-elite-3-rap-see-right-through-you","changefreq":"weekly","video":[{"title":"2014:E23 - Sniper Elite 3 Rap - \"See Right Through You\"","description":"Here is our Sniper Elite 3 Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-sniper-elite-3-rap-see-right-through-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5d7ba866-c6bc-483f-8638-c6c4d2646c23.png/sm/JTMusic2014_23_widethumb.png","duration":277,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-video-game-legends-rap-vol-1","changefreq":"weekly","video":[{"title":"2014:E26 - Video Game Legends Rap Vol. 1","description":"All your video game heroes come together to form this track.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-video-game-legends-rap-vol-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f9df0a2a-6415-4292-b6fa-9b70838fd9de.png/sm/JTMusic2014_26_widethumb.png","duration":328,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-terraria-rap-dig-deeper","changefreq":"weekly","video":[{"title":"2014:E27 - Terraria Rap - \"Dig Deeper\"","description":"Terraria gets the JT Music treatment, enjoy!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-terraria-rap-dig-deeper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/91cb4742-22ba-429e-8560-fa88f9f5bd87.png/sm/JTMusic2014_27_widethumb.png","duration":236,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-clash-of-clans-rap-my-castle-stands","changefreq":"weekly","video":[{"title":"2014:E25 - Clash of Clans Rap - \"My Castle Stands\"","description":"Here is our Clash of Clans Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-clash-of-clans-rap-my-castle-stands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6d8f8f0-d9d5-4956-9f00-e2c6b19e90ba.png/sm/JTMusic2014_25_widethumb.png","duration":246,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-battlefield-4-rap-maniac","changefreq":"weekly","video":[{"title":"2014:E28 - Battlefield 4 Rap - \"Maniac\"","description":"Here is our second Battlefield 4 Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-battlefield-4-rap-maniac","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be587ab7-8c06-4e05-bce1-390801d0457b.png/sm/JTMusic2014_28_widethumb.png","duration":301,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-shadow-of-mordor-rap-grave-rocker","changefreq":"weekly","video":[{"title":"2014:E29 - Shadow of Mordor Rap - \"Grave Rocker\"","description":"Here is our Shadow of Mordor Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-shadow-of-mordor-rap-grave-rocker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b7abc670-9723-4882-8b89-4f28236b094c.png/sm/JTMusic2014_29_widethumb.png","duration":302,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-sunset-overdrive-rap-i-m-in-overdrive","changefreq":"weekly","video":[{"title":"2014:E31 - Sunset Overdrive Rap - \"I'm in Overdrive\"","description":"What's whackier? This song or the game?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-sunset-overdrive-rap-i-m-in-overdrive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8464f527-a75a-4d46-bf81-f6b8807ca467.png/sm/JTMusic2014_31_widethumb.png","duration":207,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-borderlands-pre-sequel-rap","changefreq":"weekly","video":[{"title":"2014:E30 - Borderlands Pre-Sequel Rap","description":"Here is our Borderlands Pre-Sequel Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-borderlands-pre-sequel-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c445a12a-136f-46e4-ad18-92dae9ddb054.png/sm/JTMusic2014_30_widethumb.png","duration":246,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-assassin-s-creed-rogue-rock-song-forsake-me-now","changefreq":"weekly","video":[{"title":"2014:E35 - Assassin's Creed Rogue Rock Song - \"Forsake Me Now\"","description":"Can you believe there was a time where multiple Assassin's Creed games would come out in a single year? For that reason, this one of the very few raps we've made where we never played the game.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-assassin-s-creed-rogue-rock-song-forsake-me-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8af5e080-c235-4f27-b464-75a12a643dfb.png/sm/JTMusic2014_35_widethumb.png","duration":162,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-assassin-s-creed-unity-rap-l-oeil-de-l-aigle","changefreq":"weekly","video":[{"title":"2014:E32 - Assassin's Creed Unity Rap - \"L'Oeil de L'Aigle\"","description":"Here is our Assassin's Creed Unity Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-assassin-s-creed-unity-rap-l-oeil-de-l-aigle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3ea0a2a-f66d-4e73-bc66-b97768582af8.png/sm/JTMusic2014_32_widethumb.png","duration":247,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-far-cry-4-rap-untamed","changefreq":"weekly","video":[{"title":"2014:E34 - Far Cry 4 Rap - \"Untamed”","description":"Here is our Far Cry 4 Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-far-cry-4-rap-untamed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2513bffb-26d3-46a9-b9f1-54ceac7cd29c.png/sm/JTMusic2014_34_widethumb.png","duration":230,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2014-call-of-duty-advanced-warfare-rap-want-it-all","changefreq":"weekly","video":[{"title":"2014:E33 - Call of Duty: Advanced Warfare Rap - \"Want It All\"","description":"C'mon...do you really want it all? Yeah we thought so.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2014-call-of-duty-advanced-warfare-rap-want-it-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c6acade4-b8d5-4a93-890a-92c0db1ac218.png/sm/JTMusic2014_33_widethumb.png","duration":316,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-dragon-age-inquisition-rap-spread-some-light","changefreq":"weekly","video":[{"title":"2015:E1 - Dragon Age: Inquisition Rap - \"Spread Some Light\"","description":"Here's the Inquisition's unofficial theme song. They don't know it yet, but they love it.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-dragon-age-inquisition-rap-spread-some-light","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23a516ef-6ddb-446e-9e61-8ecc98a269b0.png/sm/JTMusic2015_1_widethumb.png","duration":221,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-world-of-warcraft-rap","changefreq":"weekly","video":[{"title":"2015:E2 - World of Warcraft Rap","description":"JT Music gives World of Warcraft a go with this rap. Hope we did the WoW fanbase justice!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-world-of-warcraft-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d85b2ed8-d914-4712-afe0-f57ed6017e5c.png/sm/JTMusic2015_2_widethumb.png","duration":225,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-dying-light-rap-bite-me","changefreq":"weekly","video":[{"title":"2015:E3 - Dying Light Rap - \"Bite Me\"","description":"What hits harder than a zombie? This rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-dying-light-rap-bite-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7187a98-563e-46e8-95f1-6db9900f3ea6.png/sm/JTMusic2015_3_widethumb.png","duration":190,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-evolve-rap-battle-hunters-vs-monsters","changefreq":"weekly","video":[{"title":"2015:E4 - Evolve Rap Battle - \"Hunters vs Monsters\"","description":"We bring you an Evolve Rap! The Hunters Rap Battle the Monsters in this EPIC showdown for the ages!!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-evolve-rap-battle-hunters-vs-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7e018ba5-efc1-4ab9-b1c3-3ef6c5764057.png/sm/JTMusic2015_4_widethumb.png","duration":241,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-angry-birds-rap","changefreq":"weekly","video":[{"title":"2015:E6 - Angry Birds Rap","description":"The flock drops some mean rhymes against those pesky pigs!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-angry-birds-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e30cccd8-7c45-4b2f-8618-a9b6535dfe2d.png/sm/JTMusic2015_6_widethumb.png","duration":215,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-video-game-legends-rap-vol-2-villains","changefreq":"weekly","video":[{"title":"2015:E8 - Video Game Legends Rap Vol 2 (Villains)","description":"Heroes got the spotlight first...now it's time for the villains!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-video-game-legends-rap-vol-2-villains","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79f847c9-d1e6-4952-9590-5198a40684b3.png/sm/JTMusic2015_8_widethumb.png","duration":272,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-bloodborne-rap-never-wake-again","changefreq":"weekly","video":[{"title":"2015:E9 - Bloodborne Rap - \"Never Wake Again\"","description":"Another punishing game is out and so here is an another song to accompany your struggle.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-bloodborne-rap-never-wake-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e10214d1-0c64-4fb0-97ab-3c58cae8efcb.png/sm/JTMusic2015_9_widethumb.png","duration":218,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-skyrim-rap-the-dovanator","changefreq":"weekly","video":[{"title":"2015:E5 - Skyrim Rap - \"The Dovanator\"","description":"The Dragonborn recites his epic journey just like anyone else would...in a rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-skyrim-rap-the-dovanator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/049d111e-5372-41e2-a7fa-e32a68155b93.png/sm/JTMusic2015_5_widethumb.png","duration":216,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-battlefield-hardline-rap-hardlinez","changefreq":"weekly","video":[{"title":"2015:E7 - Battlefield Hardline Rap - \"Hardlinez\"","description":"Battlefield is at it again but now with Cops and Robbers. Shout out to Iniquity Rhymes for his fire verse.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-battlefield-hardline-rap-hardlinez","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd2d0be9-3037-43b8-93a6-5c72b885357a.png/sm/JTMusic2015_7_widethumb.png","duration":238,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-the-witcher-iii-rap-your-head-will-be-mine","changefreq":"weekly","video":[{"title":"2015:E10 - The Witcher III Rap - \"Your Head Will Be Mine\"","description":"The Witcher III is an amazing game with a tremendous amount of care put into it. We tried to emulate that with this song.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-the-witcher-iii-rap-your-head-will-be-mine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ae94a2c-7d0d-488a-a50f-474f9a46f34d.png/sm/JTMusic2015_10_widethumb.png","duration":253,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-mortal-kombat-x-rap-fatalities","changefreq":"weekly","video":[{"title":"2015:E11 - Mortal Kombat X Rap - \"Fatalities\"","description":"Time to get amped up and mess up your friends with some gruesome fatalities. Thank you to Rockit Gaming for their verses and production.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-mortal-kombat-x-rap-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7a363451-0bcc-4667-aee5-320d49c8d73a.png/sm/JTMusic2015_11_widethumb.png","duration":267,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-batman-arkham-knight-rap-say-goodbye-to-batman","changefreq":"weekly","video":[{"title":"2015:E12 - Batman Arkham Knight Rap - \"Say Goodbye to Batman\"","description":"Bat Rap Part 2. Let's do this.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-batman-arkham-knight-rap-say-goodbye-to-batman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13d72795-6853-46bf-9e09-f9961a053b26.png/sm/JTMusic2015_12_widethumb.png","duration":193,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-binding-of-isaac-rap-your-own-damnation","changefreq":"weekly","video":[{"title":"2015:E14 - Binding of Isaac Rap - \"Your Own Damnation\"","description":"Here's a song to loop as you play through Binding of Isaac again and again and again and again...","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-binding-of-isaac-rap-your-own-damnation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/132336d1-a4f4-48fa-b102-4ecda4fb37dc.png/sm/JTMusic2015_14_widethumb.png","duration":239,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-cs-go-rap-raining-shells","changefreq":"weekly","video":[{"title":"2015:E13 - CS:GO Rap - \"Raining Shells\"","description":"Either you love or hate CS:GO, so hopefully this song isn't as divisive.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-cs-go-rap-raining-shells","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f4b768e-4fb4-4bbc-980f-8f466134b4ff.png/sm/JTMusic2015_13_widethumb.png","duration":215,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-mad-max-rap-drive-you-mad","changefreq":"weekly","video":[{"title":"2015:E15 - Mad Max Rap - \"Drive You Mad\"","description":"This game pretty much put you into the Mad Max universe and it's awesome. Blast this song as you cruise the wasteland.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-mad-max-rap-drive-you-mad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/50e92c34-0e41-4269-b509-92a198f732f0.png/sm/JTMusic2015_15_widethumb.png","duration":238,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-jet-force-gemini-rap","changefreq":"weekly","video":[{"title":"2015:E16 - Jet Force Gemini Rap","description":"We revisit our childhood with a Rap for an old favorite game of ours.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-jet-force-gemini-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f1f239c5-2ab3-4e84-94ed-1648e68b3519.png/sm/JTMusic2015_16_widethumb.png","duration":117,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-payday-2-rap-i-m-a-capitalist","changefreq":"weekly","video":[{"title":"2015:E17 - Payday 2 Rap - \"I'm a Capitalist\"","description":"A heist game rap? Let's do it.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-payday-2-rap-i-m-a-capitalist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ef3da6e-7c81-4898-8111-9314f39bacde.png/sm/JTMusic2015_17_widethumb.png","duration":190,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-agar-io-song-edm","changefreq":"weekly","video":[{"title":"2015:E18 - Agar.io Song (EDM)","description":"Something a little different- Hope you enjoy! Be sure to play Agar.io with this song BLASTING!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-agar-io-song-edm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f9e5f55b-b507-4b69-9a5e-93858e2e3461.png/sm/JTMusic2015_18_widethumb.png","duration":275,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-star-wars-battlefront-rap","changefreq":"weekly","video":[{"title":"2015:E20 - Star Wars Battlefront Rap","description":"Here's a medley of Star Wars music remixed and rapped over.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-star-wars-battlefront-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e28381d7-dd99-4ded-8767-26d3fe34afa2.png/sm/JTMusic2015_20_widethumb.png","duration":177,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-assassin-s-creed-syndicate-rap-your-time-to-die","changefreq":"weekly","video":[{"title":"2015:E19 - Assassin's Creed Syndicate Rap - \"Your Time to Die\"","description":"Possibly the best Assassin's Creed of recent memory gets a rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-assassin-s-creed-syndicate-rap-your-time-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c53532b0-e239-441c-97b0-319c10f64e20.png/sm/JTMusic2015_19_widethumb.png","duration":273,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-fallout-4-rap-welcome-to-my-apocalypse","changefreq":"weekly","video":[{"title":"2015:E21 - Fallout 4 Rap - \"Welcome To My Apocalypse\"","description":"We're proud to share with you our Fallout 4 Rap! Now you have the perfect FO4 anthem to blast as you roam the Wasteland!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-fallout-4-rap-welcome-to-my-apocalypse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/248e6846-60b0-4381-b116-378e6f1e57c3.png/sm/JTMusic2015_21_widethumb.png","duration":345,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-rise-of-tomb-raider-rap-on-the-rise","changefreq":"weekly","video":[{"title":"2015:E22 - Rise of Tomb Raider Rap - \"On the Rise\"","description":"Lara Croft is back with another nerdcore rap...only it's rapped by a dude. Deal with it.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-rise-of-tomb-raider-rap-on-the-rise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a0265e04-67df-4918-ab60-f2084c164bbc.png/sm/JTMusic2015_22_widethumb.png","duration":233,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2015-need-for-speed-rap-pop-the-hood","changefreq":"weekly","video":[{"title":"2015:E23 - Need for Speed Rap - \"Pop the Hood\"","description":"Hope you dig our Need for Speed Anthem!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2015-need-for-speed-rap-pop-the-hood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/412e1141-e5bf-4bba-840f-7cf9b393e443.png/sm/JTMusic2015_23_widethumb.png","duration":208,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-fortnite-battle-royale-is-king-of-gaming-dude-soup-podcast-163","changefreq":"weekly","video":[{"title":"2018:E163 - FORTNITE BATTLE ROYALE IS KING OF GAMING? - Dude Soup Podcast #163","description":"Please support our sponsors!\r\n[Blue Apron] Get $30 off your first order at http://www.blueapron.com/soup\r\n[MVMT] Get 15% off your order at http://www.mvmt.com/dudesoup\r\n\r\nAre players just going along with the reigning formula of the moment rather than taking in new and innovative games? We discuss that and more in this episode of Dude Soup!\r\n\r\n0:07:00 - An apology for last week\r\n0:11:50 - Do people like Fortnite or the formula?\r\n0:23:52 - Shift in design / Universal Studios\r\n0:35:00 - Being Jimmy Fallon & Blind Gossip\r\n0:54:15 - Annihilation Spoilers & Hard vs Soft Science Fiction\r\n1:27:10 - Hard Nettn'\r\n\r\nSOURCES:\r\n[Cultured Vultures] Jetpacks Coming To Fortnite Battle Royale - https://goo.gl/N5PrRd\r\n[PCGamer] CD Projekt touts Cyberpunk 2077 as a 'blockbuster franchise' - https://goo.gl/UkxaFH\r\n[Deadline] Netflix, Paramount To Stream Internationally Natalie Portman-Starrer ‘Annihilation’ 17 Days After U.S. Release - https://goo.gl/67fXMt\r\n[IndieWire] ‘Annihilation’ on Netflix: Moviegoers Need to Take Responsibility For Paramount’s Controversial Deal - https://goo.gl/cmu2Pj\r\n\r\nHARD NETTIN':\r\nThe Garbageman - https://www.youtube.com/watch?v=C-F2wB8Iq1g\r\nTor Eckhoff - https://www.youtube.com/user/apetor/\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-fortnite-battle-royale-is-king-of-gaming-dude-soup-podcast-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c125f7b5-5302-404d-9013-8a66eac031bb.png/sm/DS163.png","duration":5913,"publication_date":"2018-02-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-we-are","changefreq":"weekly","video":[{"title":"2018:E8 - WE ARE EVOLVING","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-we-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b92599c9-aa86-449d-b31d-9cf1ff22fd85.jpg/sm/ds163.jpg","duration":3164,"publication_date":"2018-02-28T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-alekhine-s-gun-gameplay-part-6","changefreq":"weekly","video":[{"title":"2018:E11 - Alekhine's Gun Gameplay Part 6","description":"The brave Alekhine bustles down to the beach to bust some baddies and bug their boats.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-alekhine-s-gun-gameplay-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ffc6605-8c5c-4827-b9d1-6eeee42995b6.jpg/sm/FullhausAlekhine6.jpg","duration":3171,"publication_date":"2018-02-27T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-fhgtaddayhpart10v1","changefreq":"weekly","video":[{"title":"2018:E43 - NATIONAL TREASURES - GTA 5 Doomsday Heist Gameplay Part 10","description":"Did you know \"Weird Al\" Yankovic made a song called: \"I'll Repair For You\" based off the Rembrandt's \"I'll Be There for You,\" better known as the theme for Friends. The band, having only this one song to be proud of, were okay with the parody; the all powerful producers at Friends were not okay with it and cast it into the fires of all the unsold DVD box sets of their ten season run. Weird Al still plays it live during some of his sets, but no one even remembers the original song, or the show even existing. It's like a weird habit they don't know where they picked it up to clap along. CLAP CLAP CLAP CLAP!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-fhgtaddayhpart10v1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0dba87b-bcf9-4393-9e3a-28597bdd577d.png/sm/gta10.png","duration":892,"publication_date":"2018-02-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-open-haus-158","changefreq":"weekly","video":[{"title":"2018:E8 - BANNED FOR LIFE? - Open Haus #158","description":"Visit our sponsor over at http://blueapron.com/openhaus for $30 off your first order!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nThere is no emotion, there is peace.\r\nThere is no ignorance, there is knowledge.\r\nThere is no passion, there is serenity.\r\nThere is no chaos, there is harmony.\r\nThere is no death, there is the Force.\r\n\r\nJust in case if you were curious.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-open-haus-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1d7862e3-fb60-48c1-be4b-fcd5a80fc353.jpg/sm/OpenhausThumbnail158.jpg","duration":759,"publication_date":"2018-02-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheelhaus-s2e8","changefreq":"weekly","video":[{"title":"2018:E42 - RUN A TRAIN - Wheelhaus Gameplay","description":"The truth of the matter is that, we the editors, are the ones who are secretly into the Rule 34 content and we are trying to incorporate it into more of our series. Open Haus Rule 34 question of the week! Dude Soup Post Post Show ;). So far it hasn't really caught on here outside of the editor's dungeon.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\nhttp://twitter.com/Charalanahzard\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheelhaus-s2e8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9709d021-c388-4dbd-a227-822d6553bf42.png/sm/wheelhaustrain.png","duration":1024,"publication_date":"2018-02-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-terrible-simulators-gameplay","changefreq":"weekly","video":[{"title":"2018:E41 - YOU DIRTY HORSE - Terrible Simulators Gameplay Part 1","description":"I used to do stand up, and it was terrible. Not like I, myself, was terrible; it was just one giant suckfest. But my two big jokes that I'm pretty sure other more successful comedians in attendance have already stolen was that of a Bruce Lee Tea tie in, and one I don't remember how it started, but it ended with secra-tearing it upppp. You know, like the horse movie.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/Charalanahzard\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-terrible-simulators-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/53ed5164-2ff8-4205-a4c3-5bc92c2539df.png/sm/simulators.png","duration":686,"publication_date":"2018-02-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-russel-madness","changefreq":"weekly","video":[{"title":"2018:E42 - BETTER THAN BLACK PANTHER? - Movie Podcast","description":"Lets get ready to sleep, with Leesa mattresses! Avoid the awkward showrooms by going to http://leesa.com/filmhaus and claiming $100 off your order!\r\n\r\nI used to have a friend who was absolutely terrified of things talking that shouldn't be. Like everything in this movie. First it's the monkey, then it's the dog, and I was surprised the wife had lines in the film too.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-russel-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/596e6e96-0610-45f9-822e-aeeb13185aae.png/sm/filmrussel.png","duration":3182,"publication_date":"2018-02-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-suicideguy","changefreq":"weekly","video":[{"title":"2018:E40 - HOW NOT TO GET HELP - Suicide Guy Gameplay","description":"Suicide is a very serious topic all jokes aside.\r\nPlease reach out to the National Suicide Prevention Lifeline\r\nCall 1-800-273-8255\r\nThey are available 24 hours everyday and are some of the best people to talk to.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-suicideguy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28a4e7ef-7d78-4f63-a7ed-002445b7f089.png/sm/Suicide.png","duration":745,"publication_date":"2018-02-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-alekhine-s-gun-gameplay-part-5","changefreq":"weekly","video":[{"title":"2018:E10 - Alekhine's Gun Gameplay Part 5","description":"Alekhine's back and bolder than before. This time he's moving on some malevolent Miami malefactors while donning some debonair new duds and daring disguises.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-alekhine-s-gun-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a01edd97-d002-4142-8791-fe1d2e585cac.jpg/sm/FullhausThumbnailAlekhine5.jpg","duration":2921,"publication_date":"2018-02-22T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-big-red-holes-earth-defense-force-4-1-gameplay-part-7","changefreq":"weekly","video":[{"title":"2018:E39 - PEST CONTROL - Earth Defense Force 4.1 Gameplay Part 7","description":"\"February 3rd 1944: I’ve reached the point where I hardly care whether I live or die. The world will keep on turning without me, and I can’t do anything to change events anyway. I’ll just let matters take their course and concentrate on maintaining this bubble shield, and hope that everything will be all right in the end. - Ant Frank\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-big-red-holes-earth-defense-force-4-1-gameplay-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5369ae5f-df1f-4b5d-9324-78767764422f.png/sm/EDF7.png","duration":928,"publication_date":"2018-02-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps162","changefreq":"weekly","video":[{"title":"2018:E7 - WE ARE CARING","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/53f474c9-c165-46d5-82c7-730d9ebb2776.jpg/sm/PS162.jpg","duration":2470,"publication_date":"2018-02-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds-162","changefreq":"weekly","video":[{"title":"2018:E162 - IS KINGDOM COME RACIST? - Dude Soup Podcast #162","description":"Please support our sponsors!\r\n[Beach Body] Get a free Beach Body on Demand trail membership by texting \"Dude\" to 303030\r\n[Hims] Get a $5 hair-retention kit at http://www.forhims.com/dude\r\n\r\nIt's nice to play as a character who is extremely good looking or iconic, but Halo still had it right by covering the face of Chief. Ain't no body know what he really looks like. Could be Asian! Actually, that would explain a lot.\r\n\r\n00:05:30 - Kingdom Come Deliverance Surrounding Issues\r\n00:37:45 - Gamergate and The Last Night\r\n00:41:00 - Media Shapes Our World?\r\n01:00:40 - Hard Nettin\r\n\r\n[SOURCES]\r\n[Waypoint] We Haven't Covered 'Kingdom Come: Deliverance.' Let's Talk About Why. - https://goo.gl/821UQY\r\n[Eurogamer] Kingdom Come: Deliverance review - history is a double-edged sword - https://goo.gl/nP9ZAy\r\n[Twitter] https://twitter.com/danielvavra\r\n[ResetEra] Separating Games from their Creators - Kingdom Come: Deliverance - https://goo.gl/fB8Y3K\r\n\r\n[HARD NETTIN]\r\nkisscactus - https://www.youtube.com/watch?v=h2ZPW_bkiSc\r\nThe Garbageman - https://www.youtube.com/watch?v=di3aJHvMPJg\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/63ead5ad-56fb-4d09-b2fa-04897da4fab3.png/sm/FH_Thumb_20 copy.png","duration":4194,"publication_date":"2018-02-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtah9","changefreq":"weekly","video":[{"title":"2018:E37 - ADAM VS HACKER - GTA 5 Doomsday Heist Gameplay Part 9","description":"We've dealt with this for so long that we know the steps now to take in order to get stuff done still when hackers emerge. That's why we hired Adam! Good ol' Adam, the hacker slacker procrastinacker. I'm sorry. I'm still a little drunk from all the chocolate I got on sale a few days ago. They were practically just handing it out. It was a bit weird it was out of a van, but hey, free candy, amirite?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtah9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc28cd4c-ad5a-4ac1-9369-678a83200469.png/sm/GTA9.png","duration":824,"publication_date":"2018-02-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-l-a-noire-gameplay-part-2","changefreq":"weekly","video":[{"title":"2018:E9 - L.A. Noire Gameplay Part 2","description":"Finally free of the uniform and boasting the Broderick, a fancily fedora'd Phelps scooches onto the sinister streets to crack some cases and neutralize some ne'er-do-wells.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-l-a-noire-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c7eded14-dd19-4641-9ab5-1235276bd466.jpg/sm/FullhausThumbnailLANoire2.jpg","duration":3334,"publication_date":"2018-02-19T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-157","changefreq":"weekly","video":[{"title":"2018:E7 - WE START A CULT? - Open Haus #157","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus157 and use the promo code \"HAUS\" to get 15% off your very own Vincero watch!\r\n\r\nSeizure warnings at 5:40 and 5:57!\r\n\r\nThis is definitely one of those punch cults. Like fruit, not like actual punching. If it was we wouldn't be able to talk about it per rule #1. Wait, scratch all this, we're going to be both kinds at once. It's a win-win-win situation.\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttp://twitter.com/Charalanahzard \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3d1806cb-7795-4f0a-ac46-e172e5ff82c8.jpg/sm/OpenhausThumbnail157.jpg","duration":814,"publication_date":"2018-02-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2018:E38 - VOICE ACTING FOR DUMMIES - Wheelhaus Gameplay","description":"What was almost a complete travesty, actually turned into only half a travesty! With the return of Oliver and Jason, the likes of who have not been seen for 4 years on this channel! We travel through Simulation, Adventure, Action and finally Sports.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/Oliver_Vaquer\r\nhttps://twitter.com/JasonZumwalt\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/150553b8-399f-4cb6-a0e7-6b26040693cb.png/sm/Wheelhaus207.png","duration":836,"publication_date":"2018-02-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-nightmarchers3","changefreq":"weekly","video":[{"title":"2018:E36 - RIDING THE DIRT WAVE - Nightmarchers Gameplay Part 3","description":"Check out the full gameplay for episode 2 here:\r\nhttp://funhaus.roosterteeth.com/episode/fullhaus-2018-nightmarchers-gameplay-part-2\r\n\r\nJames always finds any excuse to take his shirt off in the office. We don't even have to be filming and he'll be topless. It makes going out to lunch with him much harder.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-nightmarchers3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/61fb21d5-b815-4a72-be74-472e614754c7.png/sm/NM3.png","duration":754,"publication_date":"2018-02-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-missing-the-climax-movie-podcast","changefreq":"weekly","video":[{"title":"2018:E41 - MISSING THE CLIMAX - Movie Podcast","description":"Visit http://mackweldon.com and use the code word: 'FILM' for 20% off your entire order!\r\n\r\nOur climactic ending to our three part series on the Fifty Shades series comes to a sexy, and far too real place. We are sorry. We are so, so sorry.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\n\r\nTags: missing, the, climax, fifty, shades, chains, gags, grey, darker, freed, movie, podcast, adam kovic, bones, jon smith, \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-missing-the-climax-movie-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43f10b1a-2060-41cb-b17d-20975598bf66.png/sm/freed.png","duration":3166,"publication_date":"2018-02-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-what-year-is-it-portal-2-gameplay","changefreq":"weekly","video":[{"title":"2018:E35 - WHAT YEAR IS IT?! - Portal 2 Gameplay","description":"We know it's a few days late for Valentine's Day, but true bromance doesn't apply to just a single day. Grab your favorite guy, pull him close, and force him to play a game that's nearly seven years old.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-what-year-is-it-portal-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b314c855-1caa-48bf-85d8-b6f33e2eb7f5.png/sm/portal2.png","duration":2149,"publication_date":"2018-02-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-sot2","changefreq":"weekly","video":[{"title":"2018:E34 - DEAD SEA MAN'S CHEST - Sea of Thieves Gameplay Part 2","description":"Welcome back ye' dirty dogs! Today we're picking our pirate names, so be sure to sound off what is your new pirate name in the comments-- err I mean, in the postings down below. Fine, who said a pirate can't also have an email and know basic internet'en! I only signed up fer' them to register me birthday at Baskin Robbins, a place where I pirate can truly unwind.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-sot2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a1c25269-cb31-4a09-8c43-0d6ba37def00.png/sm/SoT2.png","duration":1007,"publication_date":"2018-02-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-l-a-noire-gameplay-part-1","changefreq":"weekly","video":[{"title":"2018:E8 - L.A. Noire Gameplay Part 1","description":"If they play through this entire game, expect about sixty more Fullhauses.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-l-a-noire-gameplay-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cf883804-a2f4-461e-9e0a-82686e928d5b.jpg/sm/FullhausLANoire1.jpg","duration":3677,"publication_date":"2018-02-15T02:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-we-are-loved-161","changefreq":"weekly","video":[{"title":"2018:E6 - WE ARE LOVED","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-we-are-loved-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bdab3857-8b0a-4c02-89ea-209c19917ce1.jpg/sm/PS161.jpg","duration":2147,"publication_date":"2018-02-14T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-161","changefreq":"weekly","video":[{"title":"2018:E161 - YOU'RE DOING IT WRONG? - Dude Soup Podcast #161","description":"Be sure to visit all of our sponsors!\r\n[Stitch Fix] Get 25% off when you keep all 5 items in your box at http://stitchfix.com/DUDESOUP\r\n[Dollar Shave Club] Get the “Sh*t, Shower, Shave Starter Set\" for $5 at http://DollarShaveclub.com/DUDE\r\n[Casper] Get up to $200 off your Casper purchase of $2,000 or more at http://Casper.com/savings\r\n\r\nOur panel of experts weigh in on masturbation during the most masturbatory holiday out there: Valentine's Day.\r\n\r\n5:15 - Valentine's Day experiences\r\n12:55 - Issues of love, and masturbation\r\n17:49 - The Blaze pizza tosser\r\n23:10 - Alanah's V-Day requirements\r\nand catfishing as a woman online\r\n38:50 - Japanese Revolutionary League of Lonely Souls\r\n46:25 - Farts from the hearts\r\n57:00 - Bruce Reads: \"BAK Flyer\"\r\n1:03:00 - VR porn, Westworld sex robots, and Human Ubers\r\n1:19:10 - Lawrence Asongtag: Mind Freak - Planet Earth\r\n1:26:30 - Hard Nettn'\r\n\r\n[SOURCES]\r\nKotaku: The Folks Who Protest Valentine's Day In Japan - https://goo.gl/QGpvqN \r\nLive Science: 'Human Uber' Lets You Hire Someone to Do Your Dirty Work (While Wearing Your Face) - https://goo.gl/vDaiWv \r\nYouTube: 1990 秋葉原駅と秋葉原の散策散歩 Akihabara Station Area Lookaround 900406 - https://goo.gl/W7XN3K \r\nYouTube: Life and Perception Pt 1 & 2 - https://goo.gl/kG3Sk9 \r\nYouTube: Asshole Touhou - 東方初見殺 ~ Unreasonable Mechanism. - https://goo.gl/JQWiyq \r\n\r\n[NET HARD]\r\nkisscactus - https://www.youtube.com/channel/UC7RdHzHZjlxj4XqIXXoWqZw\r\nAge of Disclosure - https://www.youtube.com/watch?v=mMwFhX3g1zY\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/Charalanahzard\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/88d35316-4f41-420a-be38-0381f05051d8.png/sm/DS161.png","duration":5840,"publication_date":"2018-02-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gta8","changefreq":"weekly","video":[{"title":"2018:E33 - SISSY SQUAD - GTA 5 Doomsday Heist Gameplay Part 8","description":"The only reason to buy a car with four wheels (don't be lame, get your future car today!), is if that four wheeled monstrosity can go underwater. Well, most cars can go underwater, but they cease to be operational-- y'know what I mean! Or if they fly, but you can just get one of the bikes to do that with only half the wheels. Imagine how much you can save on buying tires!\r\n\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gta8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cd7eeee6-5e81-42cc-8e11-08b18112ff39.png/sm/GAT8.png","duration":999,"publication_date":"2018-02-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-dragon-ball-fighterz-gameplay","changefreq":"weekly","video":[{"title":"2018:E7 - Dragon Ball FighterZ Gameplay","description":"Watch your favorite Funhaus members, Goku, Krillin, Piccolo, Piccolo, Android 17, Android 21, and Trunks(I think), battle one another to decide if button mashing can overcome James' overwhelming mastery of a game none of them have played.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-dragon-ball-fighterz-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/93916eaf-a1a5-4169-ad60-df91f355ec0e.jpg/sm/FullhausDragonBall.jpg","duration":2978,"publication_date":"2018-02-12T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh156","changefreq":"weekly","video":[{"title":"2018:E6 - WE CLONED BENSON? - Open Haus #156","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “HAUS” \r\n \r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nLet's say we actually managed to clone a few Bensons here and there... If we started putting them up over at the Rooster Teeth store, would anyone buy them? What if we signed them too? Anyone?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/846fcd9e-89e0-419b-84ce-de26da2f8ec6.jpg/sm/OpenhausThumbnail156v2.jpg","duration":728,"publication_date":"2018-02-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheelhaus206","changefreq":"weekly","video":[{"title":"2018:E32 - RACING FOR PINK - Wheelhaus Gameplay","description":"I will save you the time so you don't have to go digging like I did to only realize you knew the answer all along. I think I mostly wanted to be wrong at this point. I'm too far gone. Just like my oldest, older, and ten minute older twin brother, I too am long gone. It was Treecko and Dewott; that's who was sixty nining. \r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheelhaus206","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df5840ad-6aad-445c-9a67-e14ae0e58a53.png/sm/wheelhaus206.png","duration":1065,"publication_date":"2018-02-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-knife-guys-finish-last-alekhine-s-gun-gameplay-part-6","changefreq":"weekly","video":[{"title":"2018:E29 - KNIFE GUYS FINISH LAST - Alekhine's Gun Gameplay Part 6","description":"Join us in the special two-for-one mission episode special! Last time I went anywhere near a Margaritaville I was down in the Florida Keys. Everything down there has to taste like lime or you get arrested. True story.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-knife-guys-finish-last-alekhine-s-gun-gameplay-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb7d8111-941a-4a77-8c6d-4cd5c5405c1e.png/sm/AG6.png","duration":970,"publication_date":"2018-02-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-50-2","changefreq":"weekly","video":[{"title":"2018:E40 - LEARNING HOW TO DOM - Movie Podcast","description":"Go to http://www.leesa.com/filmhaus and enter the promo code \"filmhaus\" to get a $100 discount off of your mattress purchase! \r\n\r\nOur three part series on the Fifty Shades of Grey continues with this finger blasting foray back into the sexy cinematic universe only 40+ divorced women are buying into.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-50-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac38015e-b104-4a80-ae8e-0307fce81e9b.png/sm/50shades2.png","duration":2649,"publication_date":"2018-02-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-best-of-jan","changefreq":"weekly","video":[{"title":"2018:E31 - BEST OF BITCOIN - Best of Funhaus January 2018","description":"You don't deserve a description this month for killing off all of our favorite cryptocurrencies! You're lucky we even still upload for you. You probably only saw half of these! Anyway, click the links below for the full videos and make it up to us.\r\n\r\nPOKER? I HARDLY KNOW HER! - Private Dancer Gameplay\r\nhttps://youtu.be/Wv4bjR4E1B0\r\n\r\nLONG DISTANCE ROMANCE? - Open Haus #150\r\n\r\nhttps://youtu.be/w6L9K6MrEIM\r\n\r\nWORST RESPONDERS - GTA 5 Doomsday Heist Gameplay Part 2\r\nhttps://youtu.be/F97cLaj1QME\r\n\r\nTEMPLE OF DUMB - Human Fall Flat Gameplay\r\nhttps://youtu.be/Y5WVcLwpaSg\r\n\r\nPOOP DECK PUTTERS - Golf with Your Friends Gameplay\r\nhttps://youtu.be/vTG58s3pyF8\r\n\r\nTHOR: GAGNAROK - Viking's Daughter Gameplay\r\nhttps://youtu.be/UOCeh2z_LZk\r\n\r\nOUR STAR WARS SEQUEL? - Open Haus #151\r\nhttps://youtu.be/Sq3-W6BYpRU\r\n\r\nHACK TO THE FUTURE - GTA 5 Doomsday Heist Gameplay Part 3\r\nhttps://youtu.be/j59JxStCmmQ\r\n\r\nKISS OF DEATH - Alekhine's Gun Gameplay Part 5\r\nhttps://youtu.be/ruIzTE86tuk\r\n\r\nFINGER ON THE BUTTON? - Open Haus #152\r\nhttps://youtu.be/jypK3p0uhc8\r\n\r\nJACKED FOR JESUS - Wheelhaus Gameplay\r\nhttps://youtu.be/qOrylMTDeZE\r\n\r\nWORST GAME OF 2017 - Inner Chains Gameplay\r\nhttps://youtu.be/5ogKXWdSRwU\r\n\r\nSTEALTH BOMBERS - GTA 5 Doomsday Heist Gameplay Part 5\r\nhttps://youtu.be/rkBFTAYv6nY\r\n\r\nBITCOIN VS BITCOIN - Google Trends Show\r\nhttps://youtu.be/RLddx5Uu538\r\n\r\nLUST IN SPACE - Wheelhaus Gameplay\r\nhttps://youtu.be/j71luPot81c\r\n\r\nSTAGE 5 KLINGON - Star Trek Bridge Crew Gameplay Part 4\r\nhttps://youtu.be/TDErTprc0pw\r\n\r\nIDIOT DETECTIVE - L.A. NOIRE Gameplay Part 1\r\nhttps://youtu.be/XT7uBe6IxPQ\r\n\r\nSEARCH FOR SKIN - Wheelhaus Gameplay\r\nhttps://youtu.be/zJunHEnzODc\r\n\r\nBIEBERS AND BEAVERS - Canada Collection Gameplay\r\nhttps://youtu.be/bkvVp2io9nk\r\n\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.","player_loc":"https://roosterteeth.com/embed/gameplay-2018-best-of-jan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2012efb3-a790-4a53-99ed-2e9bc76b6f1c.jpg/sm/FHBestOfJanuary2018.jpg","duration":1215,"publication_date":"2018-02-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-lan2","changefreq":"weekly","video":[{"title":"2018:E30 - ANOTHER CASE UNSOLVED - L.A. NOIRE Gameplay Part 2","description":"This job gets a whole lot easier when you trust everything everyone tells you. The hardest part is ignoring all the signs: mouth gape, scratch and look down, and even the sassy eyebrow raise from the \"I can't believe I'm getting away with this!\" look.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-lan2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f87c788-f3ef-40d8-9bb5-e53a62e62760.png/sm/LAN2.png","duration":725,"publication_date":"2018-02-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-overwatch-competitive-ep-16","changefreq":"weekly","video":[{"title":"OS:E8 - OVERWATCH COMPETITIVE Ep. 16","description":"In the season finale, will James earn enough points to secure platinum? Don't miss this explosive ending with some of the best matches all season!\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-overwatch-competitive-ep-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/da5b30f6-fbaa-4696-8b87-bc69d3e4c99a.jpg/sm/OWCOMP16.jpg","duration":3000,"publication_date":"2018-02-08T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-sot1","changefreq":"weekly","video":[{"title":"2018:E28 - THE CURSE OF THE BROWN PEARL - Sea of Thieves Gameplay","description":"Ahoy, ye' dirty swabbies. You've joined up to cast away the land loving life ye' clutch onto, and make real men an' women of yourselves. It's not going to be easy goin'. You'll fight off a few skeletals, topple fears of heights in the crow's nest, sit through Pirates of the Caribbean movie nights, and deal with everyone impersonating Jack Sparrow in the coming days! Ah the life of a pirate!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/Elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-sot1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/555d240c-2e83-415d-991b-af855b076e3d.png/sm/seatheives.png","duration":917,"publication_date":"2018-02-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds160","changefreq":"weekly","video":[{"title":"2018:E160 - RED DEAD 2 A PUBG CASH GRAB? - Dude Soup Podcast #160","description":"Please support our sponsors!\r\nSHARI'S BERRIES: Get 20% off a gift over $29 at http://www.berries.com and use code \"dude soup\" at checkout\r\nBLUE APRON: Get 30$ off your first order at http://www.blueapron.com/soup\r\nMACK WELDON: Get 20% off your order at http://www.mackweldon.com and use promo code \"dude\" at checkout\r\n\r\nThis week we discuss new developments for Red Dead Redemption 2, and also look at some of the times we personally were conned out of money:\r\n3:30 - Red Dead 2 leaks\r\n24:20 - Pogs\r\n27:08 - More Red Dead rumours\r\n38:30 - The Matrix / Max Payne Kung Fu Mod\r\n47:45 - Tiffany Brown and the FEMA Scam\r\n51:30 - Wild West Online Swindle\r\n59:10 - Sevenhugs remote and Dimension X\r\n1:15:30 - Restaurant fiasco down under for RTX\r\n1:27:02 - Hard Nettin'\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\n\r\n\r\nBuy merch! http://bit.ly/fhmerch\r\n\r\n\r\n\r\nSOURCES:\r\n[Trusted Reviews] Exclusive: Red Dead Redemption 2 leak reveals Battle Royale, first-person and much more: https://goo.gl/CFm3rD\r\n[TweakTown] GTA Online earned $1.09 billion, says analyst firm: https://goo.gl/WzFvjT\r\n[Superdata] Digital Console: Additional Content in Today’s Market: https://goo.gl/eQ9jPZ \r\n[NYTimes] FEMA Contract Called for 30 Million Meals for Puerto Ricans. 50,000 Were Delivered: https://goo.gl/1X8A1b\r\n\r\n\r\n\r\n\r\nHARD NETTIN: \r\nPueblo Marriage Sim: https://goo.gl/sWCdwJ\r\nvs.\r\nNot Too Shabby: https://goo.gl/ganLnX \r\n\r\n\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/omarcito \r\nhttp://twitter.com/jonsmiff \r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5e900b52-6c33-4bef-bae7-509162f12712.jpg/sm/DS160.jpg","duration":6222,"publication_date":"2018-02-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-psnew","changefreq":"weekly","video":[{"title":"2018:E5 - WE ARE RESOURCEFUL","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-psnew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2319d3c7-ab59-4bca-9e90-4950ae21f5e3.jpg/sm/DSPS.jpg","duration":2920,"publication_date":"2018-02-07T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtaheists7","changefreq":"weekly","video":[{"title":"2018:E27 - IMPOSSIBLE AMBUSH - GTA 5 Doomsday Heist Gameplay Part 7","description":"We died. A lot. \r\n\r\nAnd we yelled. A lot.\r\n\r\nTo the point where our stepfather kicked in our door and screamed \"LUKAS, ENOUGH!\" It's not sad that he doesn't know our names, but we think mom is getting tired of being called Susan, when she clearly is a Nicole. At least she will still buy us Shark Cards™.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtaheists7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82b3ea24-15f5-4d1b-8c8d-84f9106e5acd.png/sm/GTA7.png","duration":833,"publication_date":"2018-02-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-nightmarchers-gameplay-part-2","changefreq":"weekly","video":[{"title":"2018:E6 - Nightmarchers Gameplay Part 2","description":"What's this? A message in a bottle seems to have washed up upon these tropical shores, and within is another FIRST 'sclusive. With no webcam to found, immerse yourselves into this Hawaiian fetch quest adventure.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-nightmarchers-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0284039d-b27e-45c2-b9b9-28fd26b0f977.jpg/sm/FullhausThumbnailNightmarchers1.jpg","duration":3146,"publication_date":"2018-02-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh155","changefreq":"weekly","video":[{"title":"2018:E5 - CRASHING THE ROYAL WEDDING? - Open Haus #155","description":"Ask us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nVisit our sponsor over at http://blueapron.com/openhaus for $30 off your first order!\r\n\r\nWe as a human race need a refresher on proper bathroom etiquette. First class is about how to properly put the toilet paper roll on. It ALWAYS goes over towards you, UNLESS you have pets who unravel it. Anything different and you get reported.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a694268-30da-4ecb-bcbd-d8e4b012635c.jpg/sm/OpenhausThumbnail155.jpg","duration":790,"publication_date":"2018-02-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheelhaus205","changefreq":"weekly","video":[{"title":"2018:E26 - ZOMBIE NEXT DOOR - Wheelhaus Gameplay","description":"I'm your host, Krystal Johnson, and welcome to \"Pick Your Daddy\", the only show where YOU get to choose which man you get to spend years disappointing!\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheelhaus205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1da29501-750d-4ba1-a2cd-84b38a1045ba.jpg/sm/WheelhausZombie.jpg","duration":854,"publication_date":"2018-02-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-nightmarchers","changefreq":"weekly","video":[{"title":"2018:E25 - LEI'D IN HAWAII -Nightmarchers Gameplay Part 1","description":"Welcome to your crash course lesson in speaking with the native Hawaiian people. By the end of this lesson, you will be able to navigate the chain of islands with confidence! Advanced lessons start at $24.99 plus S&H\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-nightmarchers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5286c1a3-6e87-4bd2-a675-8746718dc4a0.png/sm/NIGHTMARCHERS.png","duration":999,"publication_date":"2018-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-fifty-shades-movie-podcast","changefreq":"weekly","video":[{"title":"2018:E39 - FIFTY SHADES OF FUNHAUS - Movie Podcast","description":"Did you know that 66% of all men lose their hair by age 35? Visit our sponsor today over at http://forhims.com/filmhaus and take care of yourself with your first month for only $5!\r\n\r\nOur three part series on the Fifty Shades of Grey begins with three grown men who somehow escaped seeing this film back in 2015. Sit back, relax, and let the next 45 minutes of pleasure wash over you.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-fifty-shades-movie-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c59c629e-45f1-4ea1-899b-155bc7dc6798.png/sm/50shades1.png","duration":2639,"publication_date":"2018-02-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-dbfz","changefreq":"weekly","video":[{"title":"2018:E24 - STRONGEST IN THE OFFICE - Dragon Ball FighterZ Gameplay","description":"Join Jimmy Texas & Dirt Mahoney as they commentate the 15th annual Budokai In-House Funhaus Tournament!\r\n\r\nOur first string roster is as follows:\r\n\r\nMatch 1:\r\nPiccolo v Nail\r\n\r\nMatch 2:\r\nJewrus v Gohan\r\n\r\nMatch 3:\r\nAndroid 18 (anime skin) v Android 18 (Bones skin)\r\n\r\n Match 4:\r\nAdam Kovic v Krillin\r\n\r\nMatch 5:\r\nGoku v (Match 1 Winner)\r\n\r\nMatch 6:\r\nMega Man v (Match 3 Winner)\r\n\r\nMatch 7:\r\n(Match 2 Winner) v (Match 5 Winner)\r\n\r\nMatch 8:\r\n(Match 4 Winner) v (Match 6 Winner)\r\n\r\nFINAL MATCH:\r\n(Match 5 Winner) v (Match 8 Winner)\r\n\r\n\r\nI don't know why I spent the time mapping that out...\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito \r\nhttp://twitter.com/filmdstryr\r\nhttp://twitter.com/real_rtbones\r\nhttp://twitter.com/_jacobfullerton\r\nhttp://twitter.com/jonsmiff \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-dbfz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15e3fc5f-cca0-4c9b-8e1f-71f5c9957bde.png/sm/DBFZ.png","duration":1330,"publication_date":"2018-02-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-canada-collection-gameplay","changefreq":"weekly","video":[{"title":"2018:E5 - Canada Collection Gameplay","description":"How long can the gang make the bit last? Tune in and fight out, eh?","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-canada-collection-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/427cc95d-58a2-44ea-a0a6-fac1dd4974e1.jpg/sm/FullhausCanada.jpg","duration":1992,"publication_date":"2018-02-01T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-esports7","changefreq":"weekly","video":[{"title":"OS:E7 - OVERWATCH COMPETITIVE Ep. 15","description":"Just think, if you play well with your channel coworkers, you too could snag a handful more subscribers too!\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-esports7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b4875546-91ae-46b1-b337-bf90aa93b74e.jpg/sm/OWCOMP15.jpg","duration":3701,"publication_date":"2018-02-01T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-candyman-cometh-golf-with-your-friends-gameplay","changefreq":"weekly","video":[{"title":"2018:E23 - CANDYMAN COMETH - Golf with Your Friends Gameplay","description":"It's all fun and games until you're a cylinder on an unoptimized map in candy land.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-candyman-cometh-golf-with-your-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eb00b63f-82f9-4409-a609-c4d5a2402c45.png/sm/CANDY.png","duration":779,"publication_date":"2018-02-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps159","changefreq":"weekly","video":[{"title":"2018:E4 - WE ARE UNITED","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77ba708c-fd8a-4982-83fe-5ee1bc693fa6.jpg/sm/POSTSHOW159.jpg","duration":1881,"publication_date":"2018-01-31T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds159-2","changefreq":"weekly","video":[{"title":"2018:E159 - WE BOUGHT A FLAMETHROWER?! - Dude Soup Podcast #159","description":"Be sure to check out our sponsors!\r\nThere’s only one way to get 20% off an unforgettable gift over $29 from Shari’s Berries. Head over to http://BERRIES.COM today and enter my code “Dude Soup” at checkout.\r\n\r\nRight now my listeners can get a free trial membership to Beach Body on Demand when you text [Dude] to 303030\r\n\r\n\r\n\r\nGet 15% off today —WITH FREE SHIPPING and FREE RETURNS—by going to http://MVMT.COM/DUDESOUP\r\n\r\n\r\n\r\nThis week we discuss fake followings on social media, Boring Company and buying new toys for the office, and Lawrence tells us about his harrowing story involving a broken stairwell, and who might have been behind it. (Hint it was probably Omar)\r\n\r\n\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\n\r\n\r\nBuy merch! http://bit.ly/fhmerch\r\n\r\n\r\n\r\nSOURCES:\r\n[Entrepeneur] Elon Musk's Boring Company Has Made $3.5 Million on Flamethrowers in 2 Days\r\nhttps://goo.gl/Swu8UG \r\n\r\n\r\n\r\n[Slashgear] Elon Musk’s flamethrower will star in the next Borderlands\r\nhttps://goo.gl/mW5ie4 \r\n\r\n\r\n\r\n[NYTimes] The Follower Factory:\r\ngoo.gl/zkeULU\r\n\r\n\r\n\r\nHARD NETTIN:\r\n[8AGDG Wiki] Pueblo Marriage Sim: http://8agdg.wikidot.com/pueblo-marriage-sim\r\nvs.\r\n[Polygon] Longest-standing video game record declared ‘impossible,’ thrown out after 35 years \r\nhttps://goo.gl/QnPGo5 \r\n\r\n\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/omarcito\r\nhttps://twitter.com/_jacobfullerton\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds159-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7e12711e-3372-40e7-b1d3-d2f666fd9420.png/sm/DS159.png","duration":6057,"publication_date":"2018-01-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gaheists6","changefreq":"weekly","video":[{"title":"2018:E22 - VIN DIESEL STUNT SHOW! - GTA 5 Doomsday Heist Gameplay Part 6","description":"They don't make posters anymore like Special Needs Cop, and EXPLODER: Evacuator Part II. Howitzer had it easy, the 80's made everyone look cooler, and Matt Damon wishes he was famous then. He'd probably even take the 90's.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gaheists6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/621bf3d8-74f3-4934-8a0e-17a0a4e5e494.png/sm/GTAHIEST6.png","duration":957,"publication_date":"2018-01-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-gta-5-holiday-gameplay","changefreq":"weekly","video":[{"title":"2018:E4 - GTA 5 Holiday Gameplay","description":"The time for festivities may be long past, but an uncut hour of Don's holiday cheer is timeless.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-gta-5-holiday-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/055e9948-45ff-46fd-8be1-3100d47575cc.jpg/sm/FullhausHolidayGTA.jpg","duration":5022,"publication_date":"2018-01-30T00:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-openhaus","changefreq":"weekly","video":[{"title":"2018:E4 - OFFICE ROMANCE? - Open Haus #154","description":"Get 20% off Shari's Berries by going to http://www.berries.com and using code \"openhaus\" at checkout!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nLast time I got into an office relationship, things got weird fast. She wouldn't let me properly file any of my invoices. Constantly putting all the P's inside the V's folder and other office related sexual innuendos.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-openhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/56fbac38-2bcf-4564-90b0-eee29941e11d.jpg/sm/OpenhausThumbnail154.jpg","duration":626,"publication_date":"2018-01-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheelhaus","changefreq":"weekly","video":[{"title":"2018:E21 - SEARCH FOR SKIN - Wheelhaus Gameplay","description":"We're probably on the same lists Lawrence is on now too. That new Oprah movie really has me in the mood to eat some peaches.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheelhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f7eaf204-c08a-48ee-adcf-6b7650c0dbe2.png/sm/wheelhausnude.png","duration":944,"publication_date":"2018-01-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-canada-collection","changefreq":"weekly","video":[{"title":"2018:E20 - BIEBERS AND BEAVERS - Canada Collection Gameplay","description":"Here's the best and only fact you will ever need to know about Canada: Canadians consume more Kraft Macaroni & Cheese than any other nation in the world.\r\n\r\nThat's true, look it up.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-canada-collection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e04e3408-3fc3-4a56-82e6-64a0783be1e6.png/sm/canada.png","duration":671,"publication_date":"2018-01-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhaus20184","changefreq":"weekly","video":[{"title":"2018:E38 - 2017: THE GOOD, THE BAD, THE DUMB - Movie Podcast","description":"Funhaus is sponsored by Leesa. Go to https://www.leesa.com/filmhaus and enter the code word: FILMHAUS for an extra $100 off!\r\n\r\nThis week we finally look forward to that little film festival called the Oscars, and all the best and worst of 2017's catalog. Plus we look forward to what we're most excited for in 2018. Well-- at least the last 11 months of it.\r\n\r\n5:10 - Favorite Films\r\n11:50 - Biggest Disappointments\r\n18:30 - Worst Films of 2017\r\n24:30 - Most Excited for in 2018\r\n30:20 - Avengers & Honorable Mentions\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhaus20184","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3037bcd-bdd6-4e84-880f-f2b87b90c15c.png/sm/film2017.png","duration":2218,"publication_date":"2018-01-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-lanoire1","changefreq":"weekly","video":[{"title":"2018:E19 - IDIOT DETECTIVE - L.A. NOIRE Gameplay Part 1","description":"People's motives were always easier to read back in the 40's, at least that's what our Irish fathers would tell us. What do ye' mean we didn't have a father? What do ye' mean stop yelling drunkenly at this Chuck E Cheese?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n \r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-lanoire1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7432bea9-0e63-4d43-bd4d-d7a5c9905bc0.png/sm/LAN1.png","duration":660,"publication_date":"2018-01-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-esports14","changefreq":"weekly","video":[{"title":"OS:E6 - OVERWATCH COMPETITIVE Ep. 14","description":"Okay. I know the guys make a lot of jokes, but I think they might have played with an actual seven year old this time. We're all little red dots on a map now. \r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-esports14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2d07a420-e093-4423-88da-1572a08b784e.jpg/sm/esports14.jpg","duration":2006,"publication_date":"2018-01-25T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-trekvr4","changefreq":"weekly","video":[{"title":"2018:E10 - STAGE 5 KLINGON - Star Trek Bridge Crew Gameplay Part 4","description":"qatlh mu' mughwI'? SuvwI' teH mu' laH neH laD jIH. SoHbe'.\r\nSuvwI'. jItuH, ghe' qorDu'. naDevvo' ghu'vam. toH cha'.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-trekvr4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ba06aec-ef63-4a06-8eb4-a191813e6220.png/sm/startrek.png","duration":816,"publication_date":"2018-01-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-inner-chains-gameplay","changefreq":"weekly","video":[{"title":"2018:E3 - Inner Chains Gameplay","description":"Immerse yourself in a magical world full of testicle monsters, vagina monsters, and door-switch-wall-head-switch monsters.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-inner-chains-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ee0cc2b-ac5d-4e54-adc2-90e825ff27cc.jpg/sm/FullhausThumbnailInnerChains.jpg","duration":3703,"publication_date":"2018-01-24T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-dude-soup-podcast-158","changefreq":"weekly","video":[{"title":"2018:E158 - NEVER BUY GAMES AGAIN? - Dude Soup Podcast #158","description":"Support our sponsors!\r\n[Audible] Get a free audiobook with a free 30 day trial at http://www.audible.com/dudesoup or text dudesoup to 500-500.\r\n[Black Tux] Visit http://theblacktux.com/soup for $20 off your purchase.\r\n[Stitch Fix] Get started NOW at http://www.stitchfix.com/dudesoup and you'll also get 25% off when you keep all 5 items in your box! \r\n\r\nThis week we're celebrating Benson's birthday! We also talked about why you may never need to buy games again with Microsoft's Game Pass, and how to kiss your physical collection away with lasers:\r\n\r\n5:06 - Microsoft Game Pass First Party Day 1 updates\r\n30:53 - Making money on game releases with multiple streams of revenue\r\n41:28 - Star Wars Battlefront and the universe canon\r\n47:22 - The Women's March\r\n59:50 - Lawrence's plane story\r\n1:03:50 - Flying cars and taxis, jets with lasers, and homemade railguns\r\n1:21:46 - Hard Nettin'\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nBuy merch! http://bit.ly/fhmerch \r\n\r\nSOURCES:\r\n[Major Nelson] Xbox Game Pass Expands To Include New Releases From Microsoft Studios: https://majornelson.com/2018/01/23/xbox-game-pass-expands-to-include-new-releases-from-microsoft-studios/\r\n\r\nHARD NETTIN:\r\n[YouTube] GJonce: https://www.youtube.com/user/fashowithit/videos\r\n[8AGDG Wiki] Pueblo Marriage Sim: http://8agdg.wikidot.com/pueblo-marriage-sim\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-dude-soup-podcast-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e92a0847-06f0-4bca-961d-d69f2a131127.png/sm/ds158.png","duration":5977,"publication_date":"2018-01-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps158","changefreq":"weekly","video":[{"title":"2018:E158 - WE ARE INSPIRED","description":"All new fan art, questions and comments, by and for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f851040-6bcb-44e0-8df9-c4eaaaa8ad04.png/sm/158thumb.png","duration":2860,"publication_date":"2018-01-24T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtadoom5","changefreq":"weekly","video":[{"title":"2018:E18 - STEALTH BOMBERS - GTA 5 Gameplay","description":"\"Remember, Bruce. This is a stealth mission.\"\r\n\"I know.\"\r\n\"So we're trying to sneak around without being seen.\"\r\n\"Yeah, I got it.\"\r\n\"Noise and casualties to a minimum.\"\r\n\"I said 'I got it'! Jeez.\"\r\n\"... You packed your rocket launcher didn't you.\"\r\n*snort* \"N-no. why would y-\"\r\n\"Bruuuce?\"\r\n\"Hee hee hee. Pew, wooosh, BOOOOOM!\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtadoom5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd09098d-e6bb-4ecf-abd1-0a93b2cd0fe5.png/sm/gta5.png","duration":821,"publication_date":"2018-01-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh153","changefreq":"weekly","video":[{"title":"2018:E153 - FUNHAUS LIVE FROM VEGAS? - Open Haus #153","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus153 and use the promo code \"haus\" to get 15% off your very own Vincero watch! \r\n\r\nLast time I went to Vegas I didn't get to have any wacky blacked-out misadventures. I didn't get to pull off any heists. I didn't even get to drink myself to death. The most exciting part of the weekend was trying to figure out how our waitress at The Pink Taco got all those sores on her lip. F*** you, Hollywood.\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fc789716-7f23-432a-bc37-7148b45c0ff7.jpg/sm/OpenhausThumbnail153.jpg","duration":646,"publication_date":"2018-01-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheel203","changefreq":"weekly","video":[{"title":"2018:E17 - LUST IN SPACE - Wheelhaus Gameplay","description":"Only a genius like Don Bluth could have you openly weeping about the plight of Jewish immigrant mice one minute, then tossing off to a cartoon space princess the next. Well, not literally the next minute. How long does it take to switch out a DVD and lock the door?\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheel203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b01dde5d-cce8-4143-828e-9692a04f0e71.png/sm/wheel203.png","duration":810,"publication_date":"2018-01-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-worst2017","changefreq":"weekly","video":[{"title":"2018:E16 - WORST GAME OF 2017 - Inner Chains Gameplay","description":"My favorite metal band? Hmmm. I guess I'd have to say Evanescence, but Powerman 5000 is a close second.\r\n*(clicks publish, leans back in chair, waits patiently for metal fans to apply their corpse paint and storm the Funhaus offices)*\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-worst2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/869f34be-09be-467d-a4f2-c1a7202124c0.png/sm/worstof.png","duration":752,"publication_date":"2018-01-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhausherc","changefreq":"weekly","video":[{"title":"2018:E37 - CHILD ABUSE IN 3D! - Movie Podcast","description":"Filmhaus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “film” \r\n\r\nThis week Jon subjects all of us the the forgotten 2009 classic, \"Little Hercules in 3D\" and the bizarre world of adolescent bodybuilding from which it spawned. You might want to clear your browser history after this one, guys.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhausherc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c973a03-27df-4607-9997-34cf16288f4c.png/sm/filmhec.png","duration":2301,"publication_date":"2018-01-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-googlebitcoin","changefreq":"weekly","video":[{"title":"2018:E15 - BITCOIN VS BITCOIN - Google Trends Show","description":"Google Trends is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “trends” \r\n\r\nBack in '91 I made the bold call to invest all of my money in Marvel Universe Series 1 trading cards and I stand by that decision. Does your portfolio have a near mint \"Aunt May\" in it? Didn't think so. Wait. Where did these divorce papers come from?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-googlebitcoin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/52c3a2df-8477-404b-864f-375d543d0332.png/sm/trendscoin.png","duration":2052,"publication_date":"2018-01-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-besttrends","changefreq":"weekly","video":[{"title":"2018:E14 - BEST OF HOLIDAYS - Best of Funhaus December 2017","description":"Like that first tantalizing tap of a dom's boot heel on your sack, Funhaus Best Of compilations are just the prelude to a far more satisfying experience. I imagine. I'm more of a missionary in the dark man myself.\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/real_rtbones\r\nhttps://twitter.com/CrikMaster\r\nhttps://twitter.com/RevAaronMarquis\r\nhttps://twitter.com/thenasacova\r\nhttps://twitter.com/RayNarvaezJr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-besttrends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5cfcc599-1290-4536-bcb3-468f67aa4e59.jpg/sm/December2017.jpg","duration":1267,"publication_date":"2018-01-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-esports5","changefreq":"weekly","video":[{"title":"OS:E5 - OVERWATCH COMPETITIVE Ep. 13","description":"Okay okay okay. I know this looks bad. Really bad. But I've been told it gets better soon. Not great or anything. But better. Please guys, don't make a liar out of me.\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-esports5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/de004285-2e53-4411-b659-18a1742d5384.jpg/sm/esports13.jpg","duration":933,"publication_date":"2018-01-18T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj9","changefreq":"weekly","video":[{"title":"S1:E9 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 9","description":"Darkhaven is free from Nima’s curse; so let the party begin! And if there’s one thing the Twits actually do well, it’s PARTY! Fan favorites return, and the trial of the century is underway. \r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\n\r\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/53378703-7906-4035-9eb8-522fb7ddd7af.png/sm/Part9.png","duration":3840,"publication_date":"2018-01-18T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-overboyz","changefreq":"weekly","video":[{"title":"2018:E13 - FIREABLE OFFENSE - Overwatch Deathmatch Gameplay","description":"I haven't see this much disappointment on someone's face since that time I told my dad I wanted to go to theater camp. Ha! I'm just joshin'. You have to have expectations in order to be disappointed.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-overboyz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e80225e2-f4e5-463a-908e-f1708f375817.png/sm/overboyz.png","duration":1328,"publication_date":"2018-01-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-neofeud-gameplay","changefreq":"weekly","video":[{"title":"2018:E2 - Neofeud Gameplay","description":"Don't get too comfortable for this one... you might get sleepy and...... *snore*","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-neofeud-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2ac5e1dd-29d6-4859-84ce-97e563154b8c.jpg/sm/FullhausNeofeud.jpg","duration":3182,"publication_date":"2018-01-17T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds157","changefreq":"weekly","video":[{"title":"2018:E157 - GET LAID... THE RIGHT WAY? - Dude Soup Podcast #157","description":"[Dollar Shave Club] Get the Dollar Shave Club Starter Kit for only $5 at http://www.dollarshaveclub.com/dude\r\n[Casper] Get $50 towards select mattresses at http://www.casper.com/dudesoup and use code \"dudesoup\" at checkout\r\n\r\nThis week, the boys get real dirty and dish all about relationships in a way that only three white dudes and one Cuban can:\r\n2:10 - Earliest dating experiences.\r\n12:00 - Dating complications today.\r\n21:10 - Difficulties in breaking out of your comfort zone.\r\n32:40 - How men often mess up and push women away.\r\n44:25 - The importance of communication, especially regarding sex.\r\n52:00 - What the Aziz article made us question about our own previous actions.\r\n1:11:55 - Hard Nettin'.\r\n\r\nCome see us LIVE at the Regent Theater in Downtown LA on January 18!\r\nShow information here: https://www.spacelandpresents.com/event/1614612\r\nTickets here: https://www.ticketfly.com/purchase/event/1614612?utm_medium=bks\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nBuy merch! http://bit.ly/fhmerch \r\n\r\nSOURCES:\r\n[Babe] I went on a date with Aziz Ansari. It turned into the worst night of my life - https://babe.net/2018/01/13/aziz-ansari-28355\r\n\r\nHARD NETTIN'\r\nCat Piano Classics: https://www.youtube.com/user/LARUCUS\r\nG Jonce: https://www.youtube.com/user/fashowithit/\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be1c1837-d7e2-48a2-a41e-8a94ea3b9eec.png/sm/ds1572.png","duration":4928,"publication_date":"2018-01-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-we-are-puppets","changefreq":"weekly","video":[{"title":"2018:E157 - WE ARE PUPPETS","description":"All new fan art, questions, and comments only for Rooster Teeth First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-we-are-puppets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad961760-0455-4097-9b8c-54eb0cac275a.png/sm/ps157thumb.png","duration":3978,"publication_date":"2018-01-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtadoomheist4","changefreq":"weekly","video":[{"title":"2018:E11 - ART OF THE STEAL - GTA 5 Doomsday Heist Gameplay Part 4","description":"Hey, Grand Theft Auto, you bojoes! Those hover-cars don't work on water! Unless you've got power! Hahahaha!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtadoomheist4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a365ab3-897f-4c69-bcc5-3ab0ee4e2536.png/sm/gtadoom4.png","duration":700,"publication_date":"2018-01-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh152","changefreq":"weekly","video":[{"title":"2018:E152 - FINGER ON THE BUTTON? - Open Haus #152","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get $30 off of your first order with free shipping!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nIf you put a gun to my head and told me I had to sleep with one man, I'd probably have to say Tom Hardy and then ask why you're bothering with that silly gun and is he looking for something serious or is this like a casual thing or...?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c6e59c9-60aa-479e-aa64-1702f8943811.jpg/sm/OpenhausThumbnail152.jpg","duration":773,"publication_date":"2018-01-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wheelglad","changefreq":"weekly","video":[{"title":"2018:E12 - JACKED FOR JESUS - Wheelhaus Gameplay","description":"You got Power Team to come to your school?! No fair! All we got were those nerds in leotards who told us to say no to drugs while jumping around on their big dumb trampolines and making our cafeteria smell like a hamper.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wheelglad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b71d3ff3-1106-4448-bb35-e952dc1da785.png/sm/wheelglad.png","duration":972,"publication_date":"2018-01-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-crane-and-gain-toreba-crane-gameplay","changefreq":"weekly","video":[{"title":"2018:E6 - CRANE AND GAIN - Toreba Crane Gameplay","description":"Thank you to Toreba Crane for sponsoring this video!\r\nClick here http://www.toreba.net/play to check out the game for yourself! Install the Toreba app on any smartphone, including Android, and receive 5 free tries!\r\n\r\nHow many game shows are there on Japanese TV right now that are just this but with real people crammed inside the machines? And robots operating the cranes. And blindfolded businessmen being tickled by women in plague masks operating the robots.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-crane-and-gain-toreba-crane-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a7e5ba0a-2ba0-423a-ad30-1f4de0e45fb4.jpg/sm/fhthumbtorebacranegame.jpg","duration":1573,"publication_date":"2018-01-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-agun5","changefreq":"weekly","video":[{"title":"2018:E8 - KISS OF DEATH - Alekhine's Gun Gameplay Part 5","description":"Shout out to Italians: From the first western to Godfather 2 to Scarface, giving Hollywood an excuse to not hire Latinos for over a hundred and twenty years.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-agun5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3d8e9cc5-ad78-40b4-830e-a0175ecb67d4.png/sm/agun.png","duration":750,"publication_date":"2018-01-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhausglobes","changefreq":"weekly","video":[{"title":"2018:E36 - AWARDS ARE DUMB - Movie Podcast","description":"Go to http://www.leesa.com/filmhaus and enter the promo code \"filmhaus\" to get a $100 discount off of your mattress purchase!\r\n\r\nThis week, Adam and the gang sort of talk about awards season but mostly list and discuss their favorite overlooked movies and series of 2017. Oh, and James rambles about Pirates of the Caribbean 5 for a good ten minutes.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhausglobes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a544f49-426e-44f5-ae22-53b817933ff5.png/sm/filmglobe.png","duration":2039,"publication_date":"2018-01-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-ejects4","changefreq":"weekly","video":[{"title":"OS:E4 - OVERWATCH COMPETITIVE Ep. 12","description":"This week, one of the boys' matches starts of with one of their random teammates asking them how often the like to \"dab\". It goes downhill from there.\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-ejects4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/353b30b7-f102-4fe4-8dbb-59f182af5627.jpg/sm/esports4.jpg","duration":1516,"publication_date":"2018-01-11T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-toreba","changefreq":"weekly","video":[{"title":"2017:E336 - CRANE AND GAIN - Toreba Crane Gameplay","description":"Thank you to Toreba Crane for sponsoring this video!\r\nClick here http://www.toreba.net/play to check out the game for yourself! Install the Toreba app on any smartphone, including Android, and receive 5 free tries!\r\n\r\nHow many game shows are there on Japanese TV right now that are just this but with real people crammed inside the machines? And robots operating the cranes. And blindfolded businessmen being tickled by women in plague masks operating the robots.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-toreba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/97df86f7-13ee-4e6b-8204-0667383f0dac.jpg/sm/fhthumbtorebacranegame.jpg","duration":1573,"publication_date":"2018-01-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-golfdino","changefreq":"weekly","video":[{"title":"2018:E9 - JURASSIC PAR - Golf with Your Friends Gameplay","description":"Funhaus Movie Trivia Time!\r\nThe makeup artist who applied Jeff Goldblum's chest grease for Jurassic Park never worked in the industry again. She now spends her days sitting lotus beneath an old oak tree, endlessly whispering long forgotten Coptic poetry while staring lovingly at her palms.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-golfdino","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/182572a6-b1d2-4433-bd90-34b4c295fdb0.png/sm/dinogolf.png","duration":1012,"publication_date":"2018-01-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2018-ps156","changefreq":"weekly","video":[{"title":"2018:E156 - WE ARE HOLY","description":"All new fan art, comments, and questions, only for Rooster Teeth First members.","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2018-ps156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7f0a28ff-198b-4cf2-b88a-501f22a61c9f.png/sm/ps156thumb.png","duration":2309,"publication_date":"2018-01-10T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2018-ds156","changefreq":"weekly","video":[{"title":"2018:E156 - EARN CASH with BITCOIN? - Dude Soup Podcast #156","description":"BLUE APRON: Get $30 off your first order with free shipping at http://www.blueapron.com/soup\r\nMACK WELDON: Get 20% off your order at http://www.mackweldon.com/ with code \"dude\" at checkout\r\nSTITCH FIX: Get 25% off your order when you keep all five items at http://www.stitchfix.com/dudesoup\r\n\r\nThis week the boys drop some serious cyber-knowledge into your web-o-spheric nets and break down everything you need to know about cryptocurrency, including:\r\n6:15 - How cryptocurrencies came to be and how they work.\r\n18:20 - How the differ from traditional currencies.\r\n26:40 - Who's b**tf*****g whom.\r\n39:40 - Is the world ready for this new system?\r\n57:20 - Philosophical implications.\r\n1:21:15 - Hard Nettin'.\r\n\r\nCome see us LIVE at the Regent Theater in Downtown LA on January 18!\r\nShow information here: https://www.spacelandpresents.com/event/1614612\r\nTickets here: https://www.ticketfly.com/purchase/event/1614612?utm_medium=bks\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nBuy merch! http://bit.ly/fhmerch\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nSOURCES:\r\n[The Times] Chancellor Alistair Darling on brink of second bailout for banks: https://www.thetimes.co.uk/article/chancellor-alistair-darling-on-brink-of-second-bailout-for-banks-n9l382mn62h\r\n[Medium] The resolution of the Bitcoin experiment: https://blog.plan99.net/the-resolution-of-the-bitcoin-experiment-dabb30201f7\r\n[Wall Street Journal] Is Bitcoin Breaking Up? https://www.wsj.com/articles/is-bitcoin-breaking-up-1453044493?mg=prod/accounts-wsj\r\n[Wikipedia] Tulip Mania: https://en.wikipedia.org/wiki/Tulip_mania\r\n\r\nHARD NETTIN'\r\n[YouTube] Cat Piano Classics: https://www.youtube.com/user/LARUCUS\r\n[Ars Technica] Meet “raw” water—ludicrously priced unfiltered water with random bacteria: https://arstechnica.com/science/2018/01/fear-tap-water-is-a-toxic-plot-to-control-your-mind-heres-the-water-for-you/\r\n\r\nFollow us o","player_loc":"https://roosterteeth.com/embed/dude-soup-2018-ds156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4933ad5f-8177-48e2-a9fa-c8e230f92917.png/sm/ds156.png","duration":5864,"publication_date":"2018-01-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtadoomheist3","changefreq":"weekly","video":[{"title":"2018:E7 - HACK TO THE FUTURE - GTA 5 Doomsday Heist Gameplay Part 3","description":"\"Doc! What the hell are you doin'?\"\r\n\"Relax, Marty. It's just a sleep inducing Alpha Rhythm Generator. She was asking too many questions and no one should know too much about their future!\"\r\n\"Well you're the doc, Do-.. wait a minute. Why do you carry a gun that puts women to sleep?\"\r\n\"... Here's our exit!\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtadoomheist3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/74df38ec-219f-45f4-9fc8-5a97d41bc45e.png/sm/gtaheist3.png","duration":1004,"publication_date":"2018-01-10T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2018-oh151","changefreq":"weekly","video":[{"title":"2018:E1 - OUR STAR WARS SEQUEL? - Open Haus #151","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “open”\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nActually guys, Summer Glau DID appear as Dr. Bennett Halverson on 4 episodes of \"Dollhouse\". Maybe do some research next time. Now if you'll excuse me, I have to get pushed into brier patch by some twelve year olds walking home from their speech therapy class.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2018-oh151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/37ed4dbc-375b-4ec9-8fde-22f1d052fc03.jpg/sm/OpenhausThumbnail151.jpg","duration":733,"publication_date":"2018-01-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-wh21","changefreq":"weekly","video":[{"title":"2018:E5 - SEXY SPINNERS - Wheelhaus Gameplay","description":"Rejected \"The Game of LIFE: slogans:\r\n\"Monopoly for Dumb People!\"\r\n\"Only Losers Have Children!\"\r\n\"Ow, I Swallowed the Car again!\"\r\n\"F*** This. Let's Just Play 'Sorry'.\"\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-wh21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/84a9d88e-a762-4634-8abe-f7d4c4efc2c2.png/sm/wheel1.png","duration":1044,"publication_date":"2018-01-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-viking","changefreq":"weekly","video":[{"title":"2018:E4 - THOR: GAGNAROK - Viking's Daughter Gameplay","description":"\"We are going to ditch those stupid apocryphal horned helmets and make this Viking dating sim completely accurate to the time period.\"\r\n\"The guy is clearly circumcised and everybody is almost completely devoid of pubic hair.\"\r\n\"Who am I, world-famous Norse historian Rudolf Simek? Now shrink that leather bikini a little bit, will you?\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-viking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2fcd862-2ac4-4a6e-8018-40747f7c446f.png/sm/gagnor.png","duration":828,"publication_date":"2018-01-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2018-filmhausslender","changefreq":"weekly","video":[{"title":"2018:E35 - SLENDER MAN STILL SCARY? - Movie Podcast","description":"This week the gang discusses the trailer for the upcoming Slender Man film while we all wonder what year it is. They also talk about the history of Slender Man, its place in modern folklore, and what makes a good horror movie actually scary.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2018-filmhausslender","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ba7d0ff6-4447-4669-a528-1417cce03bec.png/sm/slender.png","duration":1788,"publication_date":"2018-01-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-hhfaztec2","changefreq":"weekly","video":[{"title":"2018:E2 - TEMPLE OF DUMB - Human Fall Flat Gameplay","description":"\"Hey Steven! I brung you those rewrites for the Pankot Palace dinner scene you asked for!\"\r\n\"What are you talking about, George? I didn't ask for any rewri-... George, this paper just has the words \"Monkey Brains\" written on it over and over in... what is this, barbeque sauce?\"\r\n\"Money brains, monkey brains, monkey brains! Aghahahaha!\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-hhfaztec2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7c6ad63-3221-425b-8ce5-24cf542e6bb1.png/sm/hffaz2.png","duration":884,"publication_date":"2018-01-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-owcomp11","changefreq":"weekly","video":[{"title":"OS:E3 - OVERWATCH COMPETITIVE Ep. 11","description":"Adam starts off this week wanting to quit but things take a turn for the better thanks to a few missing opponents and one guy possibly throwing the game on another team.\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-owcomp11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9b6c32dc-0e01-42f0-8f2d-f47570c79400.jpg/sm/esports3.jpg","duration":2556,"publication_date":"2018-01-04T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2018-getting-over-it-with-bennett-foddy-gameplay","changefreq":"weekly","video":[{"title":"2018:E1 - Getting Over It with Bennett Foddy Gameplay","description":"Bruce made you a promise, and you'll find out at the end of the hour if he kept it or not.","player_loc":"https://roosterteeth.com/embed/fullhaus-2018-getting-over-it-with-bennett-foddy-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ccdd3afd-0f95-4530-9253-e974ad8df255.jpg/sm/FullhausGettingOverIt.jpg","duration":3815,"publication_date":"2018-01-04T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj8","changefreq":"weekly","video":[{"title":"S1:E8 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 8","description":"A dark twist reveals a more sinister enemy than could have possibly been imagined. The final battle is here. \r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07bf573d-1cb5-4ead-ba1c-3617aea98d7b.png/sm/Part8.png","duration":3654,"publication_date":"2018-01-04T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-golfpirate","changefreq":"weekly","video":[{"title":"2018:E1 - POOP DECK PUTTERS - Golf with Your Friends Gameplay","description":"Somewhere out there, right at this moment in a bizarre alternate timeline, Disney's \"The Haunted Mansion\" franchise is in pre-production for its sixth installment, Johnny Depp never threw that phone, and James has proudly chosen to continue doing his Eddie Murphy impression rather than stay married to Elyse .\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-golfpirate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fde9b395-eaf1-4d44-b885-1fe357060283.png/sm/golfpirate.png","duration":755,"publication_date":"2018-01-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2018-gtadoomheist2","changefreq":"weekly","video":[{"title":"2018:E3 - WORST RESPONDERS - GTA 5 Doomsday Heist Gameplay Part 2","description":"I'm surprised all those super hunky paramedics get any life-saving done at all, what with all the time they spend flirting with my wife at the nurses station last night around 9:35 when I dropped by unannounced to bring her some dinner. That's right, Gary! I saw you, you sonuva b*tch! Keep those massive, glistening, vascular arms to yourself!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2018-gtadoomheist2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b0f87173-9989-4371-939d-e75025e0cef6.png/sm/gtaheist2.png","duration":909,"publication_date":"2018-01-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds155","changefreq":"weekly","video":[{"title":"2017:E155 - FUNHAUS CHANGING FOREVER? - Dude Soup Podcast #155","description":"Get full access to Beach Body on Demand for free by texting \"dude\" to 303030!\r\n\r\nCome see us LIVE at the Regent Theater in Downtown LA on January 18!\r\nShow information here: https://www.spacelandpresents.com/event/1614612\r\nTickets here: https://www.ticketfly.com/purchase/event/1614612?utm_medium=bks\r\n\r\nHappy New Year! This week we're gonna bring you in and let you know about some seriously exciting new things that Funhaus will be trying out this year, including:\r\n2:25 - New and different types of content.\r\n13:25 - New recording spaces and facilities.\r\n18:55 - Funhaus TV!\r\n41:50 - New live shows.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7f68faa9-de03-4c87-a844-5a56ede0105c.png/sm/DudeSoup155.png","duration":3345,"publication_date":"2018-01-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh150","changefreq":"weekly","video":[{"title":"2017:E150 - LONG DISTANCE ROMANCE? - Open Haus #150","description":"Ask us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nLong distance relationships can be tough. The loneliness. The phone calls. The returned unopened letters. The locked doors. The visits from law enforcement. I'd like to see you stay five hundred yards away from your soulmate at all times?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/JonRisinger\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a91712a-6578-4d0e-ac14-bf62ca8cd26c.jpg/sm/oh150.jpg","duration":752,"publication_date":"2018-01-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-dancer","changefreq":"weekly","video":[{"title":"2017:E337 - POKER? I HARDLY KNOW HER! - Private Dancer Gameplay","description":"I knew that if we just secretly filmed Jacob hanging around the office for long enough, eventually we would find a video to put the footage in. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-dancer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/db98c87b-c1e2-417b-ac2d-9da6289cc5c8.jpg/sm/fhthumbprivatedanceroption1.jpg","duration":822,"publication_date":"2017-12-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-pubgjacob","changefreq":"weekly","video":[{"title":"2017:E335 - TACTICAL JOKERS - PUBG Gameplay with Jon and Jacob","description":"Wait. Is a Chicken Dinner when blow up two motorcycles and hide in a bathroom, or when you land yourself on a roof with no ladder and break your leg trying to get off. Video games are hard.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jonsmiff\r\nhttps://twitter.com/_jacobfullerton\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-pubgjacob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/89d9711a-0206-40f8-b247-3b325e7ee221.jpg/sm/pubgjacob.jpg","duration":828,"publication_date":"2017-12-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-thatsyou","changefreq":"weekly","video":[{"title":"2017:E333 - THE UGLY TRUTH - That's You Gameplay","description":"Funhaus: Bringing you more crudely drawn wieners and jokes about the disabled than any other moderately successful YouTube comedy gameplay channel located in the greater Los Angeles metropolitan area since 2015. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/revaaronmarquis\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-thatsyou","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d924d5bc-7ac4-4670-998d-e2b6d749afa2.png/sm/thatsyou.png","duration":1168,"publication_date":"2017-12-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-amazon-tide-pod","changefreq":"weekly","video":[{"title":"2017:E24 - POISONED BY TIDE POD CONSUMPTION • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-amazon-tide-pod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9264e027-63ae-497c-b7e7-ef1dd2a2158f.jpg/sm/tidepod.jpg","duration":746,"publication_date":"2018-01-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-d","changefreq":"weekly","video":[{"title":"2018:E5 - FIBBING FOR THE TRUTH • Fibbage Gameplay","description":"Welcome back to another Jackbox Party Game (Jackbox Party Pack 4)! This time it's Fibbage: Enough About You. The guys get their phones out to make up lies about each other. They need to sift through the lies to find the truth! Who can look past the \"rumors\" and find the honest answer?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/04df20bb-4185-4f18-baa2-5e10373713fe.jpg/sm/Thumbnailoption1.jpg","duration":906,"publication_date":"2018-01-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-dj-dogbite-s-livestream-party","changefreq":"weekly","video":[{"title":"S1:E128 - DJ DOGBITE'S LIVESTREAM PARTY","description":"DJ Dogbite is having a livestream party and you're invited! Unfortunately so are Anastasia, DJ Pay and DJ Pal. How will they deal with the pressure of impressing the stream, and dropping sick beats? DROPMIX is a dynamic and fast-paced music-mixing game. Players blend popular songs from award-winning artists to create mind-blowing mixes. Get together and face-off with friends to master the mix.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-dj-dogbite-s-livestream-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c1172848-b3e9-4021-b907-e7cdfe72a70c.jpg/sm/DROPMIXep2.jpg","duration":799,"publication_date":"2018-01-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-we-bought-a-100-000-military-drone-ces-2018","changefreq":"weekly","video":[{"title":"S1:E126 - WE BOUGHT A $100,000 MILITARY DRONE • CES 2018","description":"CES is the World's Fair of the modern age, with gadgets, gizmos and technological innovations being displayed and tested around every corner. So let's make fun of it!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-we-bought-a-100-000-military-drone-ces-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9c8a0215-601e-4197-9d0a-41eed4a456ed.jpg/sm/thumb.jpg","duration":694,"publication_date":"2018-01-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-we-transferred-our-minds-into-new-bodies-ces-2018","changefreq":"weekly","video":[{"title":"S1:E127 - WE TRANSFERRED OUR MINDS INTO NEW BODIES • CES 2018","description":"It's our second stop at CES 2018, and the main event. Stand with us at the crossroads to tomorrow, witness what appears on the global stage for innovation, marvel at the breakthrough technologies coming to a marketplace near you; that and more drones than you shake a selfie stick at.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-we-transferred-our-minds-into-new-bodies-ces-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6cb49e8f-8e9b-45b4-b113-a7a3fc00b510.png/sm/CESpart2customthumb1080.png","duration":715,"publication_date":"2018-01-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-artisan-fan-mail","changefreq":"weekly","video":[{"title":"2018:E2 - ARTISAN FAN MAIL • Behind The Cow Chop","description":"We got some amazing art this week from a fan who's great at metalwork, along with some of his favorite cereal. James found the pieces so inspiring that he decided to create some fine art of his own. You'll witness his foray into street art right here, along with Aleks' customary parkour warmup routine.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-artisan-fan-mail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f7ac1c7-c691-425a-94f4-2139e160b132.png/sm/BTCC86customimage1080.png","duration":805,"publication_date":"2018-01-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2017-logan-paul-youtube-old-copy","changefreq":"weekly","video":[{"title":"2018:E19 - LOGAN PAUL MEETS UGANDAN KNUCKLES • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2017-logan-paul-youtube-old-copy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2efb5174-33f7-4b3d-a2bc-cf5503bbf0d9.jpg/sm/logan.jpg","duration":636,"publication_date":"2018-01-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-terrible-teammates-fortnite-gameplay","changefreq":"weekly","video":[{"title":"2018:E4 - TERRIBLE TEAMMATES • Fortnite Gameplay","description":"Fortnite is what your parents wished they could play when they were kids. Fortnite is where the grass is always greener. Fortnite is home to a wide variety of flora and fauna. Fortnite is the Alpha. Fortnite is the Omega.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-terrible-teammates-fortnite-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45737de9-b9d7-4167-884e-fc354bbc1a42.jpg/sm/thumb2.jpg","duration":751,"publication_date":"2018-01-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-incoherent-dance-party-dropmix-gameplay","changefreq":"weekly","video":[{"title":"2018:E6 - DJ BATTLE • Dropmix Gameplay","description":"Join DJ DogBite & DJ Anastasia as they team up to challenge the DJ group \"PAY PAL\" in an ultimate DROPMIX bangarang match. Who will reign victorious and get an exclusive record deal in my mom's basement? Find out. DROPMIX is a dynamic and fast-paced music-mixing game. Players blend popular songs from award-winning artists to create mind-blowing mixes. Get together and face-off with friends to master the mix.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-incoherent-dance-party-dropmix-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0b3cfde-0e02-4f7d-9c65-e2bafe95f4e8.jpg/sm/dropmixepisode1.jpg","duration":932,"publication_date":"2018-01-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-stuck-in-the-pit-getting-over-it-gameplay","changefreq":"weekly","video":[{"title":"2018:E3 - STUCK IN THE PIT • Getting Over It Gameplay","description":"Getting Over It with Bennett Foddy is a masochistic physics based platformer, designed to abolish the minds of the weak willed. Accompanied by Aleks and James, Trevor tests the strength of his conviction.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-stuck-in-the-pit-getting-over-it-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/03f08e89-ad71-4ff3-b901-2a3b1307c46e.jpg/sm/Thumbnail.jpg","duration":1092,"publication_date":"2018-01-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-aleks-parkour-fail-sonic-forces-freerunning-course","changefreq":"weekly","video":[{"title":"S1:E125 - ALEKS' PARKOUR FAIL • Sonic Forces Freerunning Course","description":"To prepare for many future Sonic Forces sessions, Aleks was invited down to Tempest Free Running Academy to dust off his parkour skills. It's nice that he has a trainer to help him out, but he might need more help than she can provide.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-aleks-parkour-fail-sonic-forces-freerunning-course","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f601bf5-1d47-4693-921c-8c8fbfb77a59.jpg/sm/sonicforces.jpg","duration":650,"publication_date":"2018-01-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2018-diablo-cctv-23","changefreq":"weekly","video":[{"title":"S3:E23 - DIABLO • CCTV #23","description":"We stopped at Sunset Boulevard's Diablo Resturant + Cantina (http://www.diablotacos.com/) to kick 2018 off with a bang... and a couple of shots. While sipping some drinks we examine life in LA and the benefits of streaming as opposed to actually going out. We also touched on words that we have trouble pronouncing, some recent YouTube controversies, and the importance of good oral hygiene.","player_loc":"https://roosterteeth.com/embed/cctv-2018-diablo-cctv-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a802751f-38b5-484d-8782-b0df1592d971.png/sm/PODCAST_ep23customimage1080.png","duration":2475,"publication_date":"2018-01-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-walking-dead-fortnite-gameplay","changefreq":"weekly","video":[{"title":"2018:E2 - WALKING DEAD • Fortnite Gameplay","description":"Fortnite is what your parents wished they could play when they were kids. Fortnite is where the grass is always greener. Fortnite is home to a wide variety of flora and fauna. Fortnite is the Alpha. Fortnite is the Omega.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-walking-dead-fortnite-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8bdf8d47-aba2-46ed-b1c9-59586471f5a4.jpg/sm/fortnitethumb1.jpg","duration":959,"publication_date":"2018-01-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-shaved-ice","changefreq":"weekly","video":[{"title":"2017:E23 - BEAR CLAW TESTING • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-shaved-ice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/190dd5ac-08bf-45d0-a453-64e35a897c71.jpg/sm/amazonicemaker.jpg","duration":712,"publication_date":"2018-01-08T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2018-cooking-with-ya-boy-aleks-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2018:E1 - COOKING WITH YA BOY, ALEKS • Behind The Cow Chop","description":"Join your new favorite YouTube chef, ya boy, Aleks for a very special lesson in haute cuisine. Step into the mind of a master and learn this exotic interpretation of traditional polpo alla griglia. Ya boy is unveiling his prep secrets, modern updates, and what are sure to be some paradigm-shifting surprises.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2018-cooking-with-ya-boy-aleks-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc957286-6b74-4dd6-8765-e636234bd2e0.png/sm/btcc851080.png","duration":753,"publication_date":"2018-01-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2018-moon-masters-super-mario-odyssey-gameplay","changefreq":"weekly","video":[{"title":"2018:E1 - MOON MASTERS • Super Mario Odyssey Gameplay","description":"Mario Odyssey is back! In this episode, a desert has turned icey after Bowser passed through. Aleks, Brett, and Trevor take turns navigating the icey terrain through puzzles, bullet bills and sharp cactus. They collect moons to save Princess Peach from the evil Bowser!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2018-moon-masters-super-mario-odyssey-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b586a1f-5c3c-4a74-bc2b-b0575a2300ad.jpg/sm/Thumbnailep2.jpg","duration":884,"publication_date":"2018-01-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-what-s-in-the-box-challenge-water-edition","changefreq":"weekly","video":[{"title":"S1:E124 - WHAT'S IN THE BOX CHALLENGE (Water Edition)","description":"Five items. Two friends. One box. It's time to test our trust by putting our hand into a mystery box and feel out whatever may be waiting inside.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-what-s-in-the-box-challenge-water-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c05b7168-25cd-434f-bf63-4a6fbb24df09.png/sm/whatsintehwater1080-2.png","duration":1306,"publication_date":"2018-01-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-babysitting-duties-fortnite-battle-royale-gameplay","changefreq":"weekly","video":[{"title":"2017:E148 - BABYSITTING DUTIES • Fortnite Battle Royale Gameplay","description":"Fortnite Battle Royale is the FREE 100-player PvP mode in Fortnite. One giant map. A battle bus. Fortnite building skills and destructible environments combined with intense PvP combat. The last one standing wins.\r\n\r\nIn this Battle Royale, James, Aleks and Brett explore the arena and take on the baddies. They are graciously joined by popular YouTuber \"RHINOOOOOOOOOO CRUNCH\" and take on a new role... as babysitters.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-babysitting-duties-fortnite-battle-royale-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8340abc4-c9c1-47b2-832d-e0d131f22242.jpg/sm/fortnite2v2.jpg","duration":1162,"publication_date":"2018-01-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-dinosaur-hunt-super-mario-odyssey-gameplay","changefreq":"weekly","video":[{"title":"2017:E146 - DINOSAUR HUNT • Super Mario Odyssey Gameplay","description":"Wow, guys! When did we record this again?! No one is sure, but one thing is for sure; dinosaurs are out there, and they want their identity stolen!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-dinosaur-hunt-super-mario-odyssey-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f2ef933d-2454-450f-89f5-d4d6c60cfc92.jpg/sm/Thumbnailoption1.jpg","duration":915,"publication_date":"2018-01-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-dinosaur-hunting-monster-hunter-world-gameplay","changefreq":"weekly","video":[{"title":"2017:E149 - KONG ISLAND • Monster Hunter World Gameplay","description":"Hunt down the dinosaurs, fight the dinosaurs, follow the injured dinosaur back home, kill the dinosaur in front of its kids, kill the kids. MONSTER HUNTER.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-dinosaur-hunting-monster-hunter-world-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d0394869-e77d-43ba-8432-c7ebc0b3a022.jpg/sm/monsterhunterthumb.jpg","duration":850,"publication_date":"2018-01-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-holiday-video-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E46 - Holiday Video • Behind The Cow Chop","description":"This is the holiday Behind the Cow Chop video... enjoy!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-holiday-video-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea7ca479-63f5-4e12-852a-6d5f89a10f13.jpg/sm/shrine-s320171222-22-bcyx0y.jpg","duration":732,"publication_date":"2017-12-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-youtube-2017-new-years-resolution","changefreq":"weekly","video":[{"title":"2017:E18 - NEW YEAR RESOLUTIONS • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-youtube-2017-new-years-resolution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/93397799-55e2-4034-93cb-df95c5e53553.jpg/sm/youtubeepisode.jpg","duration":666,"publication_date":"2017-12-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-habitat-for-insanity-snipperclips-dlc-gameplay","changefreq":"weekly","video":[{"title":"2017:E147 - HABITAT FOR INSANITY • Snipperclips DLC Gameplay","description":"SNIPPER CLIPS IS BACK BABY! And James has recruited the help of master puzzler, Lindsey.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-habitat-for-insanity-snipperclips-dlc-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/625b33e2-b2b6-4cb3-a972-387cd715cb50.jpg/sm/snipperclips3.jpg","duration":761,"publication_date":"2017-12-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-tank-battles-world-of-tanks-gameplay","changefreq":"weekly","video":[{"title":"2017:E150 - TANK BATTLES • World of Tanks Gameplay","description":"World of Tanks is the free-to-play online phenomenon that throws players into breathtaking tank battles across epic battlefields. Set in the mid-20th century, World of Tanks gives players access to an impressive roster of over 450 authentic tanks, from powerful steel brawlers to light and fast scouts. Join the over 150 million players worldwide who have joined the armored warfare sensation, and make your name on the battlefield!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-tank-battles-world-of-tanks-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3079e16d-588d-4e14-89c0-0c49330d4455.jpg/sm/maxresdefault.jpg","duration":1000,"publication_date":"2017-12-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-diy-gardening-makeover","changefreq":"weekly","video":[{"title":"S1:E120 - DIY GARDENING MAKEOVER","description":"Time for a spin-off! This time, James purchased some products frequently advertised on TV. Do they really work how they say they do?","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-diy-gardening-makeover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0614afdb-e3c1-4897-a1b4-14441dbbb78e.jpg/sm/thumb.jpg","duration":908,"publication_date":"2017-12-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-inner-thinking-snipperclips-dlc-gameplay","changefreq":"weekly","video":[{"title":"2017:E144 - INNER THINKING • Snipperclips DLC Gameplay","description":"SNIPPER CLIPS IS BACK BABY! And James has recruited the help of master puzzler, Lindsey.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-inner-thinking-snipperclips-dlc-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d518e455-7fb6-4d1e-b8f7-88a0b3c54084.jpg/sm/snipperclips2.jpg","duration":902,"publication_date":"2017-12-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-2017-best-of-cow-chop","changefreq":"weekly","video":[{"title":"S1:E122 - 2017 • Best of Cow Chop","description":"Hello everyone! Here's to another wonderful year of laughter and chaos! Let's check out our greatest moments from 2017.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-2017-best-of-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/68bdae1d-cbce-44e1-aba8-0717115eb30e.jpg/sm/BestOfoption2.jpg","duration":1061,"publication_date":"2017-12-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-holiday-video-number-three","changefreq":"weekly","video":[{"title":"2017:E21 - HOLIDAY VIDEO NUMBER THREE","description":"Merry Christmas!","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-holiday-video-number-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/62315c18-087a-42cc-ab88-01c684662b9c.jpg/sm/holidayvideothumbnail.jpg","duration":1408,"publication_date":"2017-12-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-krampus-and-the-christmas-misfits-2017-part-1","changefreq":"weekly","video":[{"title":"S1:E121 - HOLIDAY VIDEO NUMBER TWO","description":"holiday video","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-krampus-and-the-christmas-misfits-2017-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a700797-9bc4-436e-ad97-981a7a27c871.jpg/sm/holidayvideothumbnail.jpg","duration":775,"publication_date":"2017-12-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2017-holiday-video-number-one","changefreq":"weekly","video":[{"title":"2017:E20 - HOLIDAY VIDEO NUMBER ONE","description":"Merry Christmas!","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2017-holiday-video-number-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac6b6cad-b293-40fc-a508-cc3922605713.jpg/sm/holidayvideothumbnail.jpg","duration":935,"publication_date":"2017-12-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-true-detectives-la-noire-gameplay","changefreq":"weekly","video":[{"title":"2017:E145 - TRUE DETECTIVES • LA Noire Gameplay","description":"L.A. Noire is a neo-noir detective action-adventure video game. It was released on May 17, 2011; a re-release was released worldwide on November 14, 2017. Brett and James need to solve the case to become true detectives!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-true-detectives-la-noire-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79dddc30-c888-457b-b3aa-5068689ee0c8.jpg/sm/Thumbnailoption1.jpg","duration":1341,"publication_date":"2017-12-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-critter-space-travel-snipperclips-dlc-gameplay","changefreq":"weekly","video":[{"title":"2017:E142 - CRITTER SPACE TRAVEL • Snipperclips DLC Gameplay","description":"SNIPPER CLIPS IS BACK BABY! And James has recruited the help of master puzzler, Lindsey.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-critter-space-travel-snipperclips-dlc-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9b19a3d2-2048-4be4-8f56-1dc5860d9839.jpg/sm/snippers1.jpg","duration":910,"publication_date":"2017-12-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-hollywood-hideaway-cctv-22","changefreq":"weekly","video":[{"title":"S2:E22 - ALEKS' HOUSE TOUR • CCTV #22","description":"It's the last CCTV of the year, and what a wild ride it has been!\r\nToday we've met up at Aleks' lair for an in-depth discussion on what we have planned for 2018 and lessons learned in 2017.\r\nWe also touch on who made us the most mad this year, awkward celebrity sightings, and how simple misunderstands can cause good memes to go bad.","player_loc":"https://roosterteeth.com/embed/cctv-season-2-hollywood-hideaway-cctv-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45221a2e-10fa-4fe0-938e-9678fb00da6e.png/sm/PODCAST_ep22customimage.png","duration":3437,"publication_date":"2017-12-19T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-heart-racing-timebomb-hidden-agenda-gameplay-part-finale","changefreq":"weekly","video":[{"title":"2017:E143 - HEART RACING TIMEBOMB • Hidden Agenda Gameplay Finale","description":"Use your mobile device to make tough decisions that impact the branching storyline in this PS4 exclusive crime thriller from the PlayLink range. Aleks and James request the help of Lindsey to crack this mystery. Will the gang be able to work out this puzzle together? Or will their Hidden Agendas fracture the very foundation that keeps them whole.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-heart-racing-timebomb-hidden-agenda-gameplay-part-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/06cfe675-1af5-4c58-a091-f72cebc0ecce.jpg/sm/hiddenagenda6.jpg","duration":1169,"publication_date":"2017-12-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-it-s-beginning-to-look-a-lot-like-cow-chop-christmas-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E45 - IT'S BEGINNING TO LOOK A LOT LIKE COW CHOP CHRISTMAS • Behind The Cow Chop","description":"Ho ho holy snappers! Wait until you see this Christmas tree that Aleks got for the Cow Chop warehouse.\r\nWe had a lot of help getting it in, that was the easy part; decorating it, however, was a TALL order.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-it-s-beginning-to-look-a-lot-like-cow-chop-christmas-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d396fdd1-05bb-44cf-ab78-1aa3b96981d8.png/sm/CCTV83customimage4.png","duration":792,"publication_date":"2017-12-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-christmasdate","changefreq":"weekly","video":[{"title":"2017:E22 - ROMANTIC CHRISTMAS DATE • AMAZON PRIME TIME","description":"New members get their 1st month of the Dollar Shave Club Starter Set including the Executive Razor and trial-sized versions of their Shave Butter, Body Cleanser and One Wipe Charlies’ Butt Wipes for ONLY $5 (and free shipping). After that razors are just a few bucks a month. Exclusively at: http://www.dollarshaveclub.com/cowchop \r\n\r\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-christmasdate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2745fd01-1f2e-4328-ae46-56e59c866885.jpg/sm/amazonthumbnailfjaklfj.jpg","duration":1019,"publication_date":"2017-12-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2017-bad-santa-retroactive","changefreq":"weekly","video":[{"title":"2017:E5 - WORST SANTA EVER • Retroactive","description":"In this episode of Retroactive, Santa comes to visit from the North Pole! He has lots of games for James to play, but are they any good? Watch to find out if he's been naughty or nice.","player_loc":"https://roosterteeth.com/embed/retroactive-2017-bad-santa-retroactive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea1319c5-b12c-46d8-8716-bea2cc5fa8db.jpg/sm/Thumbnailretroactive.jpg","duration":862,"publication_date":"2017-12-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-you-need-a-safe-word-hidden-agenda-gameplay-part-5","changefreq":"weekly","video":[{"title":"2017:E141 - YOU NEED A SAFE WORD • Hidden Agenda Gameplay Part 5","description":"Use your mobile device to make tough decisions that impact the branching storyline in this PS4 exclusive crime thriller from the PlayLink range. Aleks and James request the help of Lindsey to crack this mystery. Will the gang be able to work out this puzzle together? Or will their Hidden Agendas fracture the very foundation that keeps them whole.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-you-need-a-safe-word-hidden-agenda-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cfac5c8-0f04-4037-a570-dbd5e008ae72.jpg/sm/hiddenagenda5.jpg","duration":770,"publication_date":"2017-12-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-final-boss-cuphead-gameplay-ep-19","changefreq":"weekly","video":[{"title":"2017:E139 - FINAL BOSS • Cuphead Gameplay • Ep 19","description":"In this episode, Cuphead and Mugman have to bring down the Devil himself! He's got some real quick moves, but not only that; he's got demon boys, bubbles, and platforms falling from the sky! Will Cuphead and Mugman be able to defeat him? Or will they decide to take it easy, and join his side?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-final-boss-cuphead-gameplay-ep-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/01a6ccae-252e-4e37-8f2c-dca3c49adb04.jpg/sm/Thumbnail19x2.jpg","duration":839,"publication_date":"2017-12-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-fifty-shades-of-theories-hidden-agenda-gameplay-part-4","changefreq":"weekly","video":[{"title":"2017:E140 - FIFTY SHADES OF THEORIES • Hidden Agenda Gameplay Part 4","description":"Use your mobile device to make tough decisions that impact the branching storyline in this PS4 exclusive crime thriller from the PlayLink range. Aleks and James request the help of Lindsey to crack this mystery. Will the gang be able to work out this puzzle together? Or will their Hidden Agendas fracture the very foundation that keeps them whole.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-fifty-shades-of-theories-hidden-agenda-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c4ad0a03-b771-4bc1-b7ae-ff2f4b1354c5.jpg/sm/hiddenagenda4.jpg","duration":1043,"publication_date":"2017-12-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-hippy-dippy-minivan-cctv-21","changefreq":"weekly","video":[{"title":"S2:E21 - HIPPY DIPPY MINIVAN • CCTV #21","description":"Come along for a trip inside our new psychedelic van...before we have it towed away to a junk yard; but not until we fully explore the mysteries that lay inside of it. We also discuss the dangers of being a modern-day hacker, the vast benefits of doing your work in a library as opposed to a coffee shop, and memorable school projects of the past.","player_loc":"https://roosterteeth.com/embed/cctv-season-2-hippy-dippy-minivan-cctv-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f413f21-6065-4ef2-9aa8-1a4ec447ec02.png/sm/PODCAST_ep21customimage1080.png","duration":2615,"publication_date":"2017-12-12T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-cooperative-effort-cuphead-gameplay-ep-18","changefreq":"weekly","video":[{"title":"2017:E136 - COOPERATIVE EFFORT • Cuphead Gameplay • Ep 18","description":"In this episode, Cuphead and Mugman are really struggling to beat King Dice and his evil, terrible, no-good craps table. This is the third installment of King Dice, and hopefully the last!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-cooperative-effort-cuphead-gameplay-ep-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cd33e4b3-57ae-47f9-b361-907f79a4d1af.jpg/sm/Thumbnail18x2.jpg","duration":808,"publication_date":"2017-12-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-princess-vs-night-queen-wwe-2-k18-tournament","changefreq":"weekly","video":[{"title":"S1:E115 - PRINCESS VS NIGHT QUEEN • WWE 2K18 Tournament","description":"Wrestling is an activity that has existed since the dawn of man. Prehistoric cavemen wrestled to settle their disputes. Ancient Romans wrestled because it was fun. And now, modern humans play wrestling video games to win a plastic belt. GAME ON.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-princess-vs-night-queen-wwe-2-k18-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae1334c4-e51c-4b11-bbfd-7ef9ce4955fb/sm/2516933-1510783264464-thumb3.jpg","duration":631,"publication_date":"2017-12-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-the-mini-taker-vs-banana-man-wwe-2-k18-tournament","changefreq":"weekly","video":[{"title":"S1:E114 - THE MINI TAKER VS BANANA MAN • WWE 2K18 Tournament","description":"Wrestling is an activity that has existed since the dawn of man. Prehistoric cavemen wrestled to settle their disputes. Ancient Romans wrestled because it was fun. And now, modern humans play wrestling video games to win a plastic belt. GAME ON.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-the-mini-taker-vs-banana-man-wwe-2-k18-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10823502-adae-4e6c-9f36-9ab10b3d017c/sm/2516933-1510263695854-thumb2.jpg","duration":954,"publication_date":"2017-12-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-stun-guns-and-secret-santa-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E44 - STUN GUNS AND SECRET SANTA • Behind The Cow Chop","description":"The day had come to receive our Secret Santa gift courtesy of Rooster Teeth. All Farid had told us is that our gift would \"either be a godsend or a pain in the ass.\" Not knowing what to expect, we decided to prepare for the worst by testing our new stun guns out on, who else but, ourselves. Good thing we did, because as soon as Sugar Pine 7 showed up we had our hands full with something a lot bigger than two high-voltage electroshock weapons.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-stun-guns-and-secret-santa-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3910fe73-6fa8-4062-86b2-0e9468e05da6.png/sm/btcc82customimage1080.png","duration":795,"publication_date":"2017-12-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-youtubeminecraft","changefreq":"weekly","video":[{"title":"2017:E17 - MERRY MINECRAFT CHRISTMAS • WRONG SIDE OF YOUTUBE","description":"Patreon https://www.patreon.com/cowchop\r\nSubscribe http://bit.ly/1RQtfNf  \r\nCow Chop Merch: http://bit.ly/2dY0HrO \r\nDiscuss: http://bit.ly/1qvrlLD  \r\nTwitter: https://twitter.com/CowChop  \r\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\r\n\r\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\r\n\r\nThe following is for those multicultural. \r\n\r\nhaha nie, dziękuję","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-youtubeminecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4afc6302-599e-46cc-85bd-9863b1742a30.jpg/sm/fafgva.jpg","duration":767,"publication_date":"2017-12-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-episode-8-frostbiter","changefreq":"weekly","video":[{"title":"2017:E8 - Episode #8: Frostbiter","description":"After murdering an old man in cold blood for no reason, a man unleashes the curse of the Wendigo on a small, snowy island.","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-episode-8-frostbiter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a5079629-3b75-4c8a-9167-99d5ca156b8c.jpg/sm/cctm08thumb.jpg","duration":5215,"publication_date":"2017-12-08T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-worst-craps-table-ever-cuphead-gameplay-ep-17","changefreq":"weekly","video":[{"title":"2017:E134 - GAMBLING FOR OUR LIVES • Cuphead Gameplay • Ep 17","description":"In this episode, Cuphead and Mugman are still trying to defeat the evil King Dice and his awful craps table. Will they be able to defeat him? Only one thing is for sure: don't land on number 9!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-worst-craps-table-ever-cuphead-gameplay-ep-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bee4dc72-952c-457c-bf5b-2790051e8fce.jpg/sm/ccth.jpg","duration":1098,"publication_date":"2017-12-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-name","changefreq":"weekly","video":[{"title":"2017:E137 - UNINVITED HOMEWRECKER • Hidden Agenda Gameplay Part 3","description":"Use your mobile device to make tough decisions that impact the branching storyline in this PS4 exclusive crime thriller from the PlayLink range. Aleks and James request the help of Lindsey to crack this mystery. Will the gang be able to work out this puzzle together? Or will their Hidden Agendas fracture the very foundation that keeps them whole.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-name","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d36f213a-902e-4835-ac3b-e16bfd54ddb5.jpg/sm/hiddenagenda3.jpg","duration":1080,"publication_date":"2017-12-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-date-with-king-dice-cuphead-gameplay-ep-16","changefreq":"weekly","video":[{"title":"2017:E133 - DATE WITH KING DICE • Cuphead Gameplay • Ep 16","description":"In this episode, Cuphead and Mugman need to first battle it out on the tracks; a haunted train is ready to destroy the cups at any moment! They need to defeat it, because they have very important date with King Dice, who is waiting for them to try his brand new (and extremely dangerous) craps table.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-date-with-king-dice-cuphead-gameplay-ep-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e64e904b-f25d-4156-b846-ac2245d23aeb.jpg/sm/ccch.jpg","duration":923,"publication_date":"2017-12-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-crumbs-whiskers-cat-cafe-cctv-20","changefreq":"weekly","video":[{"title":"S2:E20 - CRUMBS & WHISKERS CAT CAFE • CCTV #20","description":"While cruising Melrose Avenue we stopped at CRUMBS & WHISKERS (https://crumbsandwhiskers.com/) to visit 28 adorable cats and talk over coffee. This time around we open the floor to questions from Twitter, tell the person seated next to us our favorite thing about them, and, of course, play with lots of cats!","player_loc":"https://roosterteeth.com/embed/cctv-season-2-crumbs-whiskers-cat-cafe-cctv-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d9d0fd8d-5368-44e5-9733-66412bc05322.png/sm/CCTV_ep20customimage1080.png","duration":2959,"publication_date":"2017-12-05T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-the-ultimate-strategist-hidden-agenda-gameplay","changefreq":"weekly","video":[{"title":"2017:E135 - The Ultimate Strategist • Hidden Agenda Gameplay","description":"Use your mobile device to make tough decisions that impact the branching storyline in this PS4 exclusive crime thriller from the PlayLink range. Aleks and James request the help of Lindsey to crack this mystery. Will the gang be able to work out this puzzle together? Or will their Hidden Agendas fracture the very foundation that keeps them whole.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-the-ultimate-strategist-hidden-agenda-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/edb3ac33-08c4-4da4-b89d-0f8c809c02a0.jpg/sm/hiddenagendaEP2.jpg","duration":1128,"publication_date":"2017-12-04T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-holiday-s-unboxing-s-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E43 - HOLIDAY(S) UNBOXING(S) • Behind The Cow Chop","description":"The Hanukkah decorations showed up this week, just in time to win Jakob back over; at least we hope. We also open one present under our tree early because it was sent in by a devoted fan. Just how devoted, you might ask? Permanently so... unless Aleks changes her mind.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-holiday-s-unboxing-s-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ecc2bba-0017-4531-a083-03991490c03d.png/sm/BTCC81_customimage.png","duration":785,"publication_date":"2017-12-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-flag-capture-fury-call-of-duty-wwii-gameplay","changefreq":"weekly","video":[{"title":"2017:E138 - FLAG CAPTURE FURY • Call of Duty: WWII Gameplay","description":"Call of Duty: WWII Multiplayer engages players in grounded, fast-paced combat across many of World War II's most iconic locations. Get an inside peek into the Cow Chop practice matches as they War Mode livestream. Will they come together as team to defeat FunHaus? Or crumble under the pressure of ..... trying to work together","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-flag-capture-fury-call-of-duty-wwii-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/636721f7-3996-4014-9c16-49965cd6725e.jpg/sm/callofduty.jpg","duration":710,"publication_date":"2017-12-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-silver-lake-sanctuary-feat-khail-cctv-19","changefreq":"weekly","video":[{"title":"S2:E19 - SILVER LAKE SANCTUARY (feat. Khail) • CCTV #19","description":"We've sought the help of KHAIL ANONYMOUS to empower us with his positive affirmations. We also discuss some of the most notable celebrity interviews during Khail's illustrious career, his favorite Cow Chop videos, and the origins of everyone's favorite shelf props.","player_loc":"https://roosterteeth.com/embed/cctv-season-2-silver-lake-sanctuary-feat-khail-cctv-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ac091b0-5cd9-4f3b-a70d-0064c0b80e2d.png/sm/PODCAST_ep19customimage1080.png","duration":3308,"publication_date":"2017-12-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-episode-7","changefreq":"weekly","video":[{"title":"2017:E7 - Episode #7: Time Barbarians","description":"Buff dudes travel through time to fight other buff dudes that have travelled through time.","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a14fc6be-7b6a-4467-99c8-8497a2df34fb.jpg/sm/CCTM07THUMB.jpg","duration":5911,"publication_date":"2017-12-02T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-who-s-hiding-something-hidden-agenda-gameplay","changefreq":"weekly","video":[{"title":"2017:E134 - WHO'S HIDING SOMETHING • Hidden Agenda Gameplay","description":"Use your mobile device to make tough decisions that impact the branching storyline in this PS4 exclusive crime thriller from the PlayLink range. Aleks and James request the help of Lindsey to crack this mystery. Will the gang be able to work out this puzzle together? Or will their Hidden Agendas fracture the very foundation that keeps them whole.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-who-s-hiding-something-hidden-agenda-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e73df3e-58e8-495b-940e-25bb0682dc04.jpg/sm/hiddenagendaEP1.jpg","duration":1174,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-rat-problems-cuphead-gameplay-ep-15","changefreq":"weekly","video":[{"title":"2017:E130 - RATS, CATS, AND ROBOTS • Cuphead Gameplay • Ep 15","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.\r\n\r\nIn this episode, Cuphead and Mugman have to defeat two bosses. The first, a rat, throws bombs and has bottles caps that a ready to break the two cups at any time. The other is a giant robot being controlled by a mad scientist who doesn't want to go down easy.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-rat-problems-cuphead-gameplay-ep-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/914d4ec8-af7c-435c-9d08-6bb551179327.jpg/sm/ccch.jpg","duration":677,"publication_date":"2017-11-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-getting-in-the-holiday-spirit-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E42 - GETTING IN THE HOLIDAY SPIRIT • Behind The Cow Chop","description":"Welcome back to Behind the Cow Chop! Let's get into the holiday spirit! We're decorating our set this week, and James is under pressure to make sure all holidays are accounted for.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-getting-in-the-holiday-spirit-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f649e3b-1ddf-4d0a-9386-565d6d96ae2d.jpg/sm/bts11_23_17.jpg","duration":876,"publication_date":"2017-11-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-episode-6","changefreq":"weekly","video":[{"title":"2017:E6 - Episode #6: Surf Nazis Must Die","description":"Brett, Aleks and Lindsay conduct a little social expiriment while watching Surf Nazis Must Die.","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fe21f2e0-5f01-4f0c-b562-016de4b19075.jpg/sm/CCTM06THUMB.jpg","duration":5327,"publication_date":"2017-11-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-big-booger-monsters-cuphead-gameplay-ep-14","changefreq":"weekly","video":[{"title":"2017:E131 - BIG BOOGER MONSTERS • Cuphead Gameplay • Ep 14","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-big-booger-monsters-cuphead-gameplay-ep-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b688829-80a9-4d4f-9cb4-eba430f8aafe.jpg/sm/ep14Thumbnail.jpg","duration":749,"publication_date":"2017-11-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-the-little-medusa-mermaid-cuphead-gameplay-ep-13","changefreq":"weekly","video":[{"title":"2017:E129 - THE LITTLE MEDUSA MERMAID • Cuphead Gameplay • Ep 13","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.\r\n\r\nIn this episode, Cuphead and Mugman go unda da sea to fight Medusa the mermaid. Where's Sebastian and Flounder to help kick this evil sea witch's ass.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-the-little-medusa-mermaid-cuphead-gameplay-ep-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/601a740f-312d-4204-9cc5-78aa21a7c48a.jpg/sm/ep13Thumbnail.jpg","duration":628,"publication_date":"2017-11-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-shark-attack-cuphead-gameplay-ep-12","changefreq":"weekly","video":[{"title":"2017:E128 - SHARK ATTACK • Cuphead Gameplay • Ep 12","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.\r\n\r\nIn this episode, Cuphead and Mugman try to defeat the crazy Captain Brineybeard. He has a pet shark and Dog Boys, who come out of the depthes when he whistles! Will Cuphead and Mugman be able to sink his ship or will Captain Brineybeard destroy everything? Watch to find out!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-shark-attack-cuphead-gameplay-ep-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2fc80b80-b689-46ba-b1fd-3b8b2b9b977b.jpg/sm/Thumbnailoption1x1.jpg","duration":635,"publication_date":"2017-11-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-ghoul-gang-hq-feat-jakob-cctv-18","changefreq":"weekly","video":[{"title":"S2:E18 - GHOUL GANG HQ (feat. Jakob) • CCTV #18","description":"We've traveled to their home base and given Trevor, Asher, and (CCTV first timer) JAKOB equal time to rebut/ clear their names following some of the recent accusations regarding them.\r\nYou'll also learn what it's like living the Cow Chop lifestyle all under one roof, how to handle animal attacks in the wild, and the difficulties of making productions on a time crunch.","player_loc":"https://roosterteeth.com/embed/cctv-season-2-ghoul-gang-hq-feat-jakob-cctv-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cd36b7c5-504c-4fa8-bcdb-e36d2f81d46e.png/sm/cctv18custom720-3.png","duration":2903,"publication_date":"2017-11-21T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-wrestling-practice-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E41 - WRESTLING PRACTICE • Behind The Cow Chop","description":"This week on Behind the Cow Chop we take you inside one of the training sessions for our WWE 2K18 Tournament.\r\nAlso, James lays some eccentric flavors of chocolate on us, and we sit down for a heart to heart with Joe.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-wrestling-practice-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9dba9ea-7aeb-41c4-957a-a46d0f9d6eae.png/sm/btcc79thumb.png","duration":922,"publication_date":"2017-11-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-trev","changefreq":"weekly","video":[{"title":"2017:E18 - SEASONAL LIFE EXPERIENCES • AMAZON PRIME TIME","description":"Thanks to our sponsor Dollar Shave Club, new members get their 1st month of the ‘Sh*t, Shower, Shave’ Starter Set including the Executive Razor and trial-sized versions of their Shave Butter, Body Cleanser and One Wipe Charlies’ Butt Wipes for ONLY $5 with FREE shipping. After that razors are just a few bucks a month. Exclusively at: http://www.dollarshaveclub.com/CowChop\r\n\r\nPatreon https://www.patreon.com/cowchop\r\nSubscribe http://bit.ly/1RQtfNf\r\nCow Chop Merch: http://bit.ly/2dY0HrO\r\nDiscuss: http://bit.ly/1qvrlLD\r\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\r\nTwitter: https://twitter.com/CowChop\r\n\r\nBeat Boxing Pro: http://bit.ly/1NdSvRO\r\n\r\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \r\n\r\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \r\n\r\nThe following is for those multicultural.\r\n\r\nHola chicos. Adivina quién es de nuevo, es Trevor. De vuelta en esas ediciones de los sábados con esas grandes historias, sé que ustedes aman mucho. Esta historia no es sobre el dedo gordo esta vez, sino sobre un hígado rosado. El hígado rosado vivió una vida muy saludable con una relación sana con su familia. Hasta que el hígado rosado probara el jugo del diablo, un sorbo de alcohol. Esto convirtió el hígado rosado bastante agrio, comenzó a destrozar su vida. Arruinó su relación con su familia y eso desgarró el hígado rosado. Gracias\r\n\r\nSEASONAL LIFE EXPERIENCES • AMAZON PRIME TIME\r\n\r\nThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-trev","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/85c7afa5-e208-4a23-970e-f297e7947c68.jpg/sm/fsfsf.jpg","duration":825,"publication_date":"2017-11-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-episode-5-la-maniac","changefreq":"weekly","video":[{"title":"2017:E5 - Episode #5: LA Maniac","description":"Elyse from Funhaus and Autumn from Sugar Pine 7 join the Cow Chop crew as they watch the low-budget slasher LA Maniac!","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-episode-5-la-maniac","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/da283eaa-81f4-4de4-9433-708b8f565709.jpg/sm/CCTM05THUMB.jpg","duration":5298,"publication_date":"2017-11-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-beginning-of-the-end-cuphead-gameplay-ep-11","changefreq":"weekly","video":[{"title":"2017:E126 - BEGINNING OF THE END • Cuphead Gameplay • Ep 11","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.\r\n\r\nIn this episode, Cuphead and Mugman need to defeat the evil worker bees to get to the final queen bee to destroy the nest and get their first soul contract in the last world.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-beginning-of-the-end-cuphead-gameplay-ep-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3af9ba79-b01a-43e5-8836-1111e1d0f27e.jpg/sm/Thumbnailoption1.jpg","duration":696,"publication_date":"2017-11-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-ancient-egyptian-stealth-tactics-assassin-s-creed-origins","changefreq":"weekly","video":[{"title":"2017:E127 - ANCIENT EGYPTIAN STEALTH TACTICS • Assassin's Creed Origins","description":"James is ready to battle it out even though he's a level 2. He believes the legendary weapons and armor from Ubisoft are going to save him against a level 5. Watch to find out if he can do it!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-ancient-egyptian-stealth-tactics-assassin-s-creed-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ba35f0d3-0a97-48ca-8605-f2d332ab3e27.jpg/sm/Thumbnailoption1ep2x3.jpg","duration":801,"publication_date":"2017-11-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-farid-s-secret-garden-feat-lindsey-cctv-17","changefreq":"weekly","video":[{"title":"S2:E17 - FARID'S SECRET GARDEN (feat. Lindsey) • CCTV #17","description":"Farid gave us exclusive access to his amazing rooftop terrace for today's installment of CCTV. We brought Cow Chop's very own LINDSEY to talk about the past, present, and future of the industry. But, after asking her to do impressions of each one of her co-workers, the meeting turns into one big airing of grievances. You're getting all our major pet peeves and also will meet our new friend TYSON.","player_loc":"https://roosterteeth.com/embed/cctv-season-2-farid-s-secret-garden-feat-lindsey-cctv-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f8fc7fe9-d03e-4c02-9d51-453311927fb6.png/sm/PODCAST_ep17customimage2-720.png","duration":3040,"publication_date":"2017-11-14T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2017-lobby-makeover-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E40 - LOBBY MAKEOVER • Behind The Cow Chop","description":"Welcome back to Behind the Cow Chop! This week we're doing some warehouse reno, including painting over that big M in Brett's office and sprucing up the lobby. Just how tacky can we make it?","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2017-lobby-makeover-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5dcdcff-9b0d-4bec-8f01-9e305ce9e927.jpg/sm/bts1112.jpg","duration":886,"publication_date":"2017-11-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2017-fortnite-title-tbd","changefreq":"weekly","video":[{"title":"2017:E125 - STAIRWAY TO ANGER MANAGEMENT • Fortnite Gameplay","description":"Fortnite Battle Royale is the FREE 100-player PvP mode in Fortnite. One giant map. A battle bus. Fortnite building skills and destructible environments combined with intense PvP combat. The last one standing wins.\r\n\r\nIn this Battle Royale, James, Aleks and Brett explore the arena and take on the baddies. Will their strategies of building giant inconspicuous Sauron towers win them the game? No. The answer is no.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2017-fortnite-title-tbd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/faa4b60e-e014-44ab-a40d-852e79ad9fff.jpg/sm/fortnite.jpg","duration":709,"publication_date":"2017-11-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-episode-2","changefreq":"weekly","video":[{"title":"2017:E4 - Episode #4: Pigs","description":"A young girl with a mysterious past finds herself working for a man raising pigs with a taste for human flesh!","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/141a651c-7644-4a22-90cb-4401a3d2cead/sm/690915-1510329765212-CCTM04Thumb.jpg","duration":5277,"publication_date":"2017-11-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-cuphead-10","changefreq":"weekly","video":[{"title":"2017:E125 - EMOTIONALLY DAMAGED ROLLER COASTER • Cuphead Gameplay • Ep 10","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.\r\n\r\nIn this episode, Cuphead and Mugman get FLIPPED. Can they run and gun their way to the end, upside down? Will they ride the roller coaster to victory? or will they never ever finish Cuphead ever ever ever ever.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-cuphead-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/993d28d9-ea7f-4435-ae81-41c0ac0ebfb1/sm/2516933-1510177048370-CUPHEAD_episode_10.jpg","duration":857,"publication_date":"2017-11-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-mayhem-on-the-nile-assassin-s-creed-origins-gameplay","changefreq":"weekly","video":[{"title":"2017:E123 - MAYHEM ON THE NILE • Assassin's Creed Origins Gameplay","description":"Today the boys travel to ancient Egypt to train James in the way of the assassin in the all new Assassin's Creed: Origins.  He bites off more than he can chew and learns that jumping right into the fire means you're bound to get burned.  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-mayhem-on-the-nile-assassin-s-creed-origins-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e9a476d-86da-4401-b20f-3fe7f85eb6b7/sm/2516933-1510105719606-Thumbnailoption1.jpg","duration":1226,"publication_date":"2017-11-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-creative-dirty-drawings-civic-doodle-gameplay","changefreq":"weekly","video":[{"title":"2017:E122 - CREATIVE DIRTY DRAWINGS • Civic Doodle Gameplay","description":"Nothing can be more satisfying than watching James get triggered over a fictional town mural. The good people of Doodle Valley have enlisted you and your fellow players to beautify the town with ridiculous murals.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-creative-dirty-drawings-civic-doodle-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aef1fa25-363e-4ef1-acc0-1ce13e9974f2/sm/2516933-1509730017190-civicDoodle.jpg","duration":764,"publication_date":"2017-11-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-season-2-cctv-s2ep1","changefreq":"weekly","video":[{"title":"S2:E16 - WAREHOUSE ROOFTOP • CCTV #16","description":"We find ourselves enjoying the overcast day lounging on the roof of our warehouse. While waiting for a very special delivery to our offices, we discuss TwitchCon, the etiquette of meeting streamers in real life, and the trials and tribulations behind our Patreon video.  We go on to give in-depth director commentaries behind many of our recent scripted videos, and also review the Lamborghini driving experience.","player_loc":"https://roosterteeth.com/embed/cctv-season-2-cctv-s2ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b020f78-2886-4e03-83cf-2394c3d6b28c/sm/2516933-1509752180878-CCTV_ep16customimage.png","duration":2539,"publication_date":"2017-11-07T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-keyboard-memorial-vigil-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E39 - KEYBOARD MEMORIAL VIGIL • Behind The Cow Chop","description":"Welcome back to Behind the Cow Chop! This week Trevor caused some controversy with his big Shaquille O'Neil feet. Join us for our memorial service held in this episode of BTS.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-keyboard-memorial-vigil-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e735ac4-18f8-471a-9a82-84ea0e2baead/sm/2516933-1509755562384-bts_11_5_17.jpg","duration":677,"publication_date":"2017-11-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-3","changefreq":"weekly","video":[{"title":"2017:E3 - Episode #3: Decampitated ","description":"A group of horny teens' camping trip out into the wilderness is quite literally cut short when a psycho killer begins taking them out one by one.","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/21d9ab77-4a52-4dc1-8b80-9c71ad666baa.jpg/sm/CCTM03Thumb.jpg","duration":6189,"publication_date":"2017-11-03T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-the-birds-cuphead-gameplay-ep-7","changefreq":"weekly","video":[{"title":"2017:E120 - BIRD BRAIN NIGHTMARE • Cuphead Gameplay • Ep 7","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil. In this episode, Cuphead and Mugman need to defeat the angry, soulless bird and his son to get the Wally Warbles soul contract. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-the-birds-cuphead-gameplay-ep-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe265779-fd4e-45eb-b8d3-b6d661817ffd/sm/2516933-1509139238673-Thumbnailoption1.jpg","duration":768,"publication_date":"2017-11-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-cow-chop-hires-a-demon-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E38 - COW CHOP HIRES A DEMON • Behind the Cow Chop","description":"Here is some spooky Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-cow-chop-hires-a-demon-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d31707e-003d-41c1-9f29-21203a940d5a/sm/2516933-1509236085632-BTS_FINAL.00_11_35_22.Still003.jpg","duration":776,"publication_date":"2017-10-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-reacting-to-fan-reactions-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"2017:E16 - REACTING TO FAN REACTIONS • SCARY SIDE OF YOUTUBE 2017","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-reacting-to-fan-reactions-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a2ebb85-f22c-4ff1-9cb1-c80a56b2effa/sm/2516933-1509152509262-youtubethumb1.jpg","duration":931,"publication_date":"2017-10-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-episode","changefreq":"weekly","video":[{"title":"2017:E2 - Episode #2: Coons","description":"I feel like there might be some double-meaning in this title...","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b028fb7a-fd4b-459a-ad59-feed2d417bf8/sm/690915-1509116220222-CCTM02Thumb.jpg","duration":5093,"publication_date":"2017-10-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-scary-circus-tricks-cuphead-gameplay-ep-6","changefreq":"weekly","video":[{"title":"2017:E118 - SCARY CIRCUS TRICKS • Cuphead Gameplay • Ep 6","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn this episode, Cuphead and Mugman run through a spooky circus where a creepy magician keeps popping up and throwing painful rings. Will the cups be able to make it past the booby-trap-balloons? Or the haunted-penny-arcade that fires ducks overhead? And what's at the end of the snack bar throwing ketchup, mustard, and relish? Watch to find out!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-scary-circus-tricks-cuphead-gameplay-ep-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35aa82d9-2f73-4b43-b02a-48b8a90e55cf/sm/2516933-1508959281500-ep6.jpg","duration":878,"publication_date":"2017-10-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-six-weird-etsy-items-feat-funhaus","changefreq":"weekly","video":[{"title":"2017:E17 - SIX WEIRD ETSY ITEMS (feat. Funhaus)","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-six-weird-etsy-items-feat-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7ce6b65-6c21-44b5-a845-a5dd37474837/sm/2516933-1508896484662-thumb1.jpg","duration":897,"publication_date":"2017-10-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-worst-hand-simulator-e-v-e-r","changefreq":"weekly","video":[{"title":"2017:E116 - WORST HAND SIMULATOR EVER!","description":"Aleks, James, Brett, and Joe join hands and play Hand Simulator which is quick possibly one of the worst games they've ever played.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-worst-hand-simulator-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dea8fd41-63af-4997-b7a2-36123f2aa60a/sm/2516933-1508458369713-Thumbnail.jpg","duration":864,"publication_date":"2017-10-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-killer-candy-and-horrible-waffles-cuphead-gameplay-ep-5","changefreq":"weekly","video":[{"title":"2017:E117 - EVIL GUMDROP KINGDOM • Cuphead Gameplay • Ep 5","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-killer-candy-and-horrible-waffles-cuphead-gameplay-ep-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cb72f67-d429-43e1-99b3-3f4119f764e9/sm/2516933-1508544021326-Thumbnailoption1.jpg","duration":810,"publication_date":"2017-10-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-haunted-gift-exchange-amazon-prime-time","changefreq":"weekly","video":[{"title":"S1:E109 - HALLOWEEN SPECIAL 2017 • AMAZON PRIME TIME","description":"It's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-haunted-gift-exchange-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e58404c4-845a-49bf-b54f-d5bb014865d0/sm/2516933-1508547439803-thumb.jpg","duration":1094,"publication_date":"2017-10-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-spicy-sauce-aftermath-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"S1:E108 - SPICY SAUCE AFTERMATH • Behind the Cow Chop","description":"On this weeks episode we are gonna burn our tongues and insides with spicy food!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-spicy-sauce-aftermath-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0de54cc6-351f-4d93-9879-de4c32cb10c5/sm/2516933-1508546480247-bts_hotttt_222.jpg","duration":617,"publication_date":"2017-10-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-the-spice-gauntlet-hot-ones-sauces-fiery-noodles","changefreq":"weekly","video":[{"title":"S1:E107 - THE SPICE GAUNTLET • Hot Ones Sauces & Fiery Noodles","description":"Shout out to Sean Evans from \"Hot Ones\" for inspiring us to torture ourselves. Who won? No one. We all died after this. ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-the-spice-gauntlet-hot-ones-sauces-fiery-noodles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/970f4025-24cf-4b8c-aae2-36c3446028b8/sm/2516933-1508523928490-HOT_ONES_SPICE_GAUNTLET.jpg","duration":1489,"publication_date":"2017-10-20T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-theater-mode-2017-1-93-og4j","changefreq":"weekly","video":[{"title":"2017:E1 - Episode #1: Psycho Sleepover","description":"It's Cow Chop Theater Mode! After killing her boyfriend in self-defense, a woman's sleepover with her friends is soon interrupted by a mob of escaped killers from the local insane asylum.","player_loc":"https://roosterteeth.com/embed/cow-chop-theater-mode-2017-1-93-og4j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/605a2e0d-1b99-4903-b40a-e0c157b023cb/sm/690915-1508450117714-CCTM_THUMB_01.jpg","duration":5338,"publication_date":"2017-10-20T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-floral-fury-cuphead-gameplay-ep-4","changefreq":"weekly","video":[{"title":"S1:E106 - FLORAL FURY • Cuphead Gameplay • Ep 4","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-floral-fury-cuphead-gameplay-ep-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ef3dcd6-d107-43db-940e-2accb7eecb4f/sm/2516933-1508368624949-cupheadthumb.jpg","duration":670,"publication_date":"2017-10-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cow-chop-roast-feat-sugar-pine-7","changefreq":"weekly","video":[{"title":"S1:E105 - COW CHOP ROAST (feat. Sugar Pine 7)","description":"We're back with another roast, and man does it burn! Aleks and Brett face each other in the most brutal way ever. Also, we have special guests Cib and James from Sugar Pine 7 competing for some slaps. Trevor and Jakob are in on the roast as well, and it's about time they get all their hostility out in the open.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cow-chop-roast-feat-sugar-pine-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9facb396-a3df-4e39-95ef-d9f5ea13a170/sm/2516933-1508352170302-option1.jpg","duration":610,"publication_date":"2017-10-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-episode","changefreq":"weekly","video":[{"title":"2017:E115 - STICK FIGHTERS VS SNAKES • Stick Fight The Game","description":"2017:E115 - STICK FIGHTERS VS SNAKES • Stick Fight The Game","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fab1026-9343-4c02-b97f-698533611a7a/sm/2516933-1508182559118-Thumbnail_2_3.jpg","duration":789,"publication_date":"2017-10-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-c-o-op-struggles-cuphead-gameplay-ep-3","changefreq":"weekly","video":[{"title":"2017:E114 - ASTROLOGICAL COSMOS • Cuphead Gameplay • Ep 3","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-c-o-op-struggles-cuphead-gameplay-ep-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e57bcaa-488f-40df-8911-62841e36e774/sm/2516933-1507853105028-CUP_HEAD_EP_3.jpg","duration":760,"publication_date":"2017-10-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-lewd-disney-knockoffs-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E37 - LEWD DISNEY KNOCKOFFS - Behind the Cow Chop","description":"Welcome back to more Behind the Cow Chop! Things got musical this week. We opened some packages from some cool companies. And as per usual, something broke. Don't point lasers in your friends' eyes, guys.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-lewd-disney-knockoffs-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af5ccd5-3f82-4abc-9c9e-f7f2da7ee940/sm/2516933-1507944275883-bts_10_15_17.jpg","duration":765,"publication_date":"2017-10-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-top-10-botched-surgeries-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"S1:E104 - TOP 10 BOTCHED SURGERIES • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-top-10-botched-surgeries-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1311eb5-3f88-4ed6-b951-841de2d7e089/sm/2516933-1507942772318-thumb2.jpg","duration":776,"publication_date":"2017-10-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-homemade-caviar-nightmare","changefreq":"weekly","video":[{"title":"S1:E103 - HOMEMADE CAVIAR NIGHTMARE","description":"Thanks to the Spherificator, James and Brett can turn absolutely anything into delectable, expensive caviar to give to their patient patrons.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-homemade-caviar-nightmare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49dcaee9-2996-4020-bafe-1e593ec989df/sm/2516933-1507846235202-thumb1.jpg","duration":1203,"publication_date":"2017-10-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-brutal-stick-fight","changefreq":"weekly","video":[{"title":"2017:E112 - BRUTAL STICK FIGHT","description":"The gang joins up and brawls as stick figures. Who can survive the most rounds and eliminate the most sticks?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-brutal-stick-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd652aae-83b4-447d-a57b-30df41923444/sm/2516933-1507830114954-stick_thumbb.jpg","duration":778,"publication_date":"2017-10-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-trevor-learns-how-to-drive","changefreq":"weekly","video":[{"title":"S1:E102 - TREVOR LEARNS HOW TO DRIVE","description":"Trevor's been a good boy this year, and as such he will be rewarded... with a brand new car! Or a smelly stolen car for midgets. But first Trevor must learn to drive! Good thing Aleks is an \"excellent\" driver.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-trevor-learns-how-to-drive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb9e85fd-fd48-40d5-bf11-bf39e9879d51/sm/2516933-1507658209706-driving_lessons.jpg","duration":731,"publication_date":"2017-10-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-next-battlefield-is-world-war-ii","changefreq":"weekly","video":[{"title":"2018:E66 - Battlefield V LEAKS! It Copies Call of Duty!?","description":"Battlefield V or 5 or whatever has sprung a leak! Looks like it's going back to its roots---uh, we mean, copying Call of Duty, clearly--and taking on World War 2. And going for a record in weird naming patterns.","player_loc":"https://roosterteeth.com/embed/game-news-2018-next-battlefield-is-world-war-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1924a812-235b-4275-b111-1df131d3915d.jpg/sm/20180302BFVLeaed.jpg","duration":426,"publication_date":"2018-03-03T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-sony-restructures","changefreq":"weekly","video":[{"title":"2018:E65 - Major Shake-up at PlayStation","description":"PlayStation has announced a major internal restructure and new focus for the company.","player_loc":"https://roosterteeth.com/embed/game-news-2018-sony-restructures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/003bc10a-42ac-4c63-901f-abacdfbfefea.jpg/sm/20180302PSReorg.jpg","duration":403,"publication_date":"2018-03-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180302-roundup","changefreq":"weekly","video":[{"title":"2018:E44 - Xbox Live Outage + Diablo on Nintendo Switch + Biggest DDoS Attack Ever","description":"Xbox Live went down for a bunch of users and also exposed some user data, but it's back up and running again! Blizzard seemed to tease a Diablo game on Nintendo Switch but is walking that back. GitHub has been attacked with the biggest DDoS attack ever recorded.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180302-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d90d170e-e185-4f6c-b280-308f8650e5be.jpg/sm/20180302Roundup.jpg","duration":749,"publication_date":"2018-03-02T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-judge-orders-kid-to-stop-playing-violent-games","changefreq":"weekly","video":[{"title":"2018:E64 - BANNED from Violent Video Games","description":"A student has been banned from playing violent video games by a judge after a snapchat about a school shooting. Mario Kart? Apparently totally fine.","player_loc":"https://roosterteeth.com/embed/game-news-2018-judge-orders-kid-to-stop-playing-violent-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/76e3475b-3a32-4fe7-9ece-50bbc7463e8a.jpg/sm/20180301BannedFromViolentGames.jpg","duration":543,"publication_date":"2018-03-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-perpetual-soup-deliverance","changefreq":"weekly","video":[{"title":"S1:E40 - Perpetual Soup: Deliverance - #40","description":"Join Ashley, Gus, Adam, and Alfredo as they talk about what they've been playing, wade into the Bohemian controversies of Kingdom Come: Deliverance (40:55), and speedrun the news (1:00:22). This episode is brought to you by MeUndies (http://bit.ly/2EaXmRM) and Audible (http://adbl.co/2CS67Ox)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-perpetual-soup-deliverance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb31fc6e-3c99-48b2-a11d-6bfecc9ca952.jpg/sm/GP40THUMB.jpg","duration":5317,"publication_date":"2018-03-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180301-roundup","changefreq":"weekly","video":[{"title":"2018:E43 - Nintendo Takes Away User Reviews + Crytek Boss Quits + AI is Better at Q*Bert","description":"Nintendo launched user reviews! Then took them away. After all the studios troubles, Crytek's big boss is stepping down. An AI has defeated the game Q*Bert in an entirely new way.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180301-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a3450520-a990-4c4f-88d5-708ddc052c06.jpg/sm/20180301Roundup.jpg","duration":544,"publication_date":"2018-03-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-will-we-see-a-switch-mini-anytime-soon","changefreq":"weekly","video":[{"title":"2018:E63 - No New Nintendo Switch Hardware","description":"People have been calling for new versions of Nintendo Switch since, well, since Nintendo Switch launched KEEP WAITING, DUDES!","player_loc":"https://roosterteeth.com/embed/game-news-2018-will-we-see-a-switch-mini-anytime-soon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/910c1eea-cff1-437a-b99a-2540d89b7216.jpg/sm/20180301NoNewSwitch.jpg","duration":469,"publication_date":"2018-03-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-miners-taking-how-many-cards-from-gamers","changefreq":"weekly","video":[{"title":"2018:E12 - Bitcoin Miners Deprive Gamers of How Many Graphics Cards?","description":"Don't worry. Just take up Bitcoin mining to make up the difference.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-miners-taking-how-many-cards-from-gamers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/736acc78-6974-4e1b-a08a-7d2747efa9a3.jpg/sm/20180228BitcoinGPUS.jpg","duration":450,"publication_date":"2018-03-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-lootbox-regulation-censorship","changefreq":"weekly","video":[{"title":"2018:E62 - Regulating Loot Boxes is CENSORSHIP?","description":"The game industry is hitting back at calls for regulation of loot boxes in video games, calling it possible censorship.","player_loc":"https://roosterteeth.com/embed/game-news-2018-lootbox-regulation-censorship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7b6078b5-3f36-4e24-a041-c9c860fc07f7.jpg/sm/20180228LootboxCensorship.jpg","duration":612,"publication_date":"2018-03-01T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180227-roundup","changefreq":"weekly","video":[{"title":"2018:E41 - Future of Xbox is Cross-Platform + Moss the Game VR Needed?","description":"Microsoft's CEO believes the future of Xbox will go beyond the console. Moss is out for PlayStation VR and it's a game you should check out if you've got PlayStation VR.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180227-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6c545cbe-c8a6-4dae-838e-bda39f307179.jpg/sm/20180227Roundup.jpg","duration":740,"publication_date":"2018-02-28T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-esrb-taking-action-against-loot-boxes-well","changefreq":"weekly","video":[{"title":"2018:E61 - ESRB Defeats Loot Boxes? Uh, Well...","description":"The ESRB has seen all the impending legislation against lootboxes and microtransactions and they're taking action! Sort of... in the least helpful way possible.","player_loc":"https://roosterteeth.com/embed/game-news-2018-esrb-taking-action-against-loot-boxes-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/08c18c08-e3a1-4046-8057-9a9d3c68da92.jpg/sm/20180227ESRBLootboxes.jpg","duration":494,"publication_date":"2018-02-28T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-which-publisher-had-the-best-2017","changefreq":"weekly","video":[{"title":"2018:E60 - Bethesda Put Out Better Games Than Nintendo!?","description":"Time to award best publisher of the year based on average critical reception! You'd have assumed it might go to Nintendo for a strong Switch launch, but you'd be wrong.","player_loc":"https://roosterteeth.com/embed/game-news-2018-which-publisher-had-the-best-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07a50c3e-fb7b-464c-ba02-f1e1a422373c.jpg/sm/20180226BethesdaBestPublisher.jpg","duration":489,"publication_date":"2018-02-28T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-sundance-diary-3","changefreq":"weekly","video":[{"title":"2018:E3 - Sundance Diary #3","description":"Eric does his best to see all the great movies Sundance has to offer and let you know which ones to keep an eye out for when they come to theaters.","player_loc":"https://roosterteeth.com/embed/specials-2018-sundance-diary-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/05b41cb4-52f0-442f-aa17-c91df6d01586.jpg/sm/20180125SundanceDiray3psd.jpg","duration":643,"publication_date":"2018-02-27T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-sundance-diary-4","changefreq":"weekly","video":[{"title":"2018:E4 - Sundance Diary #4","description":"That's a wrap on Sundance 2018! Eric goes over it all and offers his thoughts.","player_loc":"https://roosterteeth.com/embed/specials-2018-sundance-diary-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/86178092-8793-435d-9cb3-cb73e6f214b2.jpg/sm/20180125SundanceDiary4.jpg","duration":454,"publication_date":"2018-02-27T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-academy-awards-2018-predictions","changefreq":"weekly","video":[{"title":"2018:E5 - Academy Awards 2018 Predictions","description":"Eric and Jon sit down to go over the biggest nominees for the 9th Academy Awards to predict who will get to buy their own golden statues.","player_loc":"https://roosterteeth.com/embed/specials-2018-academy-awards-2018-predictions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0f72f1c-85fa-4c6f-80de-6d55a024f36a.jpg/sm/20180226OscarPredictions.jpg","duration":1627,"publication_date":"2018-02-27T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-another-dev-uses-dmca-powers-for-evil","changefreq":"weekly","video":[{"title":"2018:E59 - Super Seducer's Super Sexy Censorship","description":"There's a game coming out that teaches you how to trick women into sleeping with you. A reviewer thought it was a bad game. So the developer issued a DMCA strike over it.","player_loc":"https://roosterteeth.com/embed/game-news-2018-another-dev-uses-dmca-powers-for-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bf14c5b-40c2-464e-b980-cd2613ffe4cd.jpg/sm/20180226DMCACensorship.jpg","duration":471,"publication_date":"2018-02-27T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180226-roundup","changefreq":"weekly","video":[{"title":"2018:E40 - Metal Gear Survive + Lost Donkey Kong Game + Warcraft Director Speaks","description":"Metal Gear Survive's sales are down massively from previous Metal Gear games, including spin-offs. A long-lost Donkey Kong 3 game has been recovered by fans. Warcraft director Duncan Jones speaks up on the movie's challenges.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180226-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4fc0989e-0c5d-4d8d-b7ee-b5ecf6f0a53c.jpg/sm/20180226Roundup.jpg","duration":578,"publication_date":"2018-02-27T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-new-game-39","changefreq":"weekly","video":[{"title":"S1:E39 - I Love This Game But Stay Away - #39","description":"Do you have a game you love to play but you wouldn't necessarily recommend to others for some reason? and What's your favorite browser game?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-new-game-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7471204f-0b95-4736-af3c-8887461b7141.png/sm/GP39Site.png","duration":894,"publication_date":"2018-02-24T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-phil-spencer-microsoft-needed-reboot","changefreq":"weekly","video":[{"title":"2018:E58 - Xbox's Much Needed Reboot","description":"Xbox One didn't have a smooth launch. But not only was there trouble on the outside, there was a lot of internal trouble that required a full reboot of the Microsoft business.","player_loc":"https://roosterteeth.com/embed/game-news-2018-phil-spencer-microsoft-needed-reboot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/684defdc-8d0a-415b-9c1a-b32f7e87f397.jpg/sm/20180223XboxReboot.jpg","duration":448,"publication_date":"2018-02-23T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180223-roundup","changefreq":"weekly","video":[{"title":"2018:E39 - When to Play Battlefield + Aquaman Doesn't Suck + Szechuan Sauce Returns","description":"EA's announced when you can play the next Battlefield game. The early test screenings for Aquaman reveal the movie doesn't suck! So that's good. McDonalds is bringing back the Szechuan Sauce Rick & Morty made popular.... again.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180223-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b1a327f1-fa46-4dea-bc41-d9f1cd31494f.jpg/sm/20180223Roundup.jpg","duration":520,"publication_date":"2018-02-23T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-metal-gear-survive-charges-for-save-slots","changefreq":"weekly","video":[{"title":"2018:E57 - Saving Your Game? That Will Cost Extra","description":"Ready to take microtransactions to a new level? Konami's there for you! Now you can pay extra if you want more save game slots in metal gear survive! INNOVATIVE","player_loc":"https://roosterteeth.com/embed/game-news-2018-metal-gear-survive-charges-for-save-slots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bdc30a55-7a9d-4b8e-9d8f-d7d82277d2d4.jpg/sm/20180222MGSPaidSaves.jpg","duration":375,"publication_date":"2018-02-23T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-another-asshole-politician-goes-after-games","changefreq":"weekly","video":[{"title":"2018:E56 - Pay MORE for Violent Video Games","description":"Ready to pay more for violent video games that teach you how to kill people? Excellent. Open your wallets.","player_loc":"https://roosterteeth.com/embed/game-news-2018-another-asshole-politician-goes-after-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/90dcfb18-0389-4bb1-b5a3-a5ffb2606fd8.jpg/sm/20180222ViolentGameTax.jpg","duration":454,"publication_date":"2018-02-23T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180222-roundup","changefreq":"weekly","video":[{"title":"2018:E38 - Nintendo Breaking the Law + Half-Life is a Final Fantasy","description":"Nintendo's accused of breaking consumer law in Europe over refunds. We're getting more Half-Life but unfortunately only in Final Fantasy. As 12-year-old YouTuber has been SWATted because some people are just jerks.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180222-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/98628cd0-99dd-4703-8e1b-3e457db47a9f.jpg/sm/20180222Roundup.jpg","duration":572,"publication_date":"2018-02-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-caught-being-biased-39","changefreq":"weekly","video":[{"title":"S1:E39 - Caught Being Biased - #39","description":"Join Ashley, Ryan, and Cole as they admit their biases (2:12), and talk about gaming with family members (36:36).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-caught-being-biased-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/84510cf0-61f4-4d50-8740-55da6d092729.jpg/sm/GP39THUMB.jpg","duration":3441,"publication_date":"2018-02-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-smash-bros-switch-coming-this-year","changefreq":"weekly","video":[{"title":"2018:E55 - Super Smash Bros for Switch in 2018","description":"A Nintendo insider claims Super Smash Bros will be revealed and release for Nintendo Switch this year. We dig into the chances of this happening and what approach Nintendo might take.","player_loc":"https://roosterteeth.com/embed/game-news-2018-smash-bros-switch-coming-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/de96aaa9-f0d6-4a46-bc59-fa5f5678bf66.jpg/sm/20180221SSB2018.jpg","duration":530,"publication_date":"2018-02-22T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-system-shock-remake-cancelled","changefreq":"weekly","video":[{"title":"2018:E54 - System Shock Proves Even the Best Kickstarter Can Fail","description":"RIP System Shock... for now, anyway. The game that taught us how to make a foolproof Kickstarter campaign has...fooled. It's been redesigned and rescoped to death. Or at least hiatus.","player_loc":"https://roosterteeth.com/embed/game-news-2018-system-shock-remake-cancelled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/55e47caf-17be-4b8e-800e-367565a40fc1.jpg/sm/20180221RIPSystemShock.jpg","duration":575,"publication_date":"2018-02-22T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180221-roundup","changefreq":"weekly","video":[{"title":"2018:E37 - Pokemon Gen 8 Hoax + PUBG Features Stalled by Cheaters + Sonic Movie Delay","description":"An apparent leak for new Pokemon starters is just a hoax. PlayerUnknown's Battlegrounds is stalled on feature development as the studio addresses cheating in the game. The Sonic movie has been delayed.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180221-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/266ff08e-e494-4a89-9079-e5feea240fa6.jpg/sm/20180221Roundup.jpg","duration":719,"publication_date":"2018-02-21T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-csgo-streamer-sues-twitch","changefreq":"weekly","video":[{"title":"2018:E53 - Banned Streamer Sues Twitch","description":"Almost 2 years after being banned from Twitch for alleged rigging of CSGO skin gambling and failing to disclose ownership of the site, James \"PhantomL0rd\" Varga is back and he's suing Twitch. Sounds like it should be pretty clear cut? Not so fast.","player_loc":"https://roosterteeth.com/embed/game-news-2018-csgo-streamer-sues-twitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/51a2055f-5cb0-4e3f-95e1-9951eb05f81a.jpg/sm/20180220StreamerSuesTwitch.jpg","duration":581,"publication_date":"2018-02-21T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-would-you-like-malware-with-that-jet","changefreq":"weekly","video":[{"title":"2018:E52 - Game Dev Uses DLC to Install Malware","description":"Say you're a developer struggling to find the jerk cracking your game content and posting it on piracy websites. Do you A) try to make a game people desperately want to support, B) distribute your own cracked version that punishes the pirates, or C) deliberately install malware on customer PCs?","player_loc":"https://roosterteeth.com/embed/game-news-2018-would-you-like-malware-with-that-jet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eb7b0e7d-e7f3-41ea-b0dd-f975b916e443.jpg/sm/20180220DevInstallsMalware.jpg","duration":497,"publication_date":"2018-02-21T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180220-roundup","changefreq":"weekly","video":[{"title":"2018:E36 - The Last of Us 2 Dog Teased!? + Burnout Paradise HD CONFIRMED + Game Industry Fights DMCA Exemptions","description":"The Last of Us 2 Director Neil Druckmann is teasing a potential dog companion in the upcoming game. The long-rumored Burnout Paradise HD Remaster is official and coming SOON! And The Entertainment Software Association is fighting DMCA exemptions that allow museums to keep old online games alive.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180220-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f3bacbf8-6af1-4f9c-96fa-d6e882bf5c77.jpg/sm/20180220Roundup.jpg","duration":685,"publication_date":"2018-02-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-endings-that-ended-us-38","changefreq":"weekly","video":[{"title":"S1:E38 - Endings That Ended Us - #38","description":"What is the biggest surprise ending sprung on you in a game?\r\nWhat is your favorite browser based game that you played?\r\n\r\nfrom: \r\nCallum McAlpine","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-endings-that-ended-us-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/33bb7cfa-22bb-4f0f-9015-78ce94eedc68.jpg/sm/GP38psTHUMB.jpg","duration":928,"publication_date":"2018-02-17T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-politician-blames-video-games","changefreq":"weekly","video":[{"title":"2018:E50 - Video Games Blamed for School Attack","description":"After a deadly school attack, politicians are looking for a convenient scapegoat and are settling on their favorite target: video games!","player_loc":"https://roosterteeth.com/embed/game-news-2018-politician-blames-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b012500-002a-454b-9bc7-46f59291b7dd.jpg/sm/20180216GamesBlamedForAttack.jpg","duration":487,"publication_date":"2018-02-17T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-roundup-feb-16-2018","changefreq":"weekly","video":[{"title":"2018:E35 - The Witcher Dev vs Lootboxes + Free Games This Weekend + FCC Boss Investigated","description":"CD Projekt RED is coming out against loot boxes and microtransactions in video games. A bunch of games are free to play this weekend (but there's a Steam sale if you want to pay for games instead). Ajit Pai, the FCC chairman who led the rollback of net neutrality, is under investigation for corruption.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-roundup-feb-16-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/74cc82d3-7eb0-4ecd-a5ac-58d7a0e490bb.jpg/sm/20180216Roundup.jpg","duration":708,"publication_date":"2018-02-17T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-internet-in-australia-is-upside-down-38","changefreq":"weekly","video":[{"title":"S1:E38 - Internet in Australia is Upside Down? - #38","description":"Join Ashley, Ryan, Adam, Stephanie Bendixsen, and.... Gus? as they talk about what they've been playing, speedrun the news (), and discuss how difficult and expensive it is to be a gamer in Australia().","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-internet-in-australia-is-upside-down-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/917f3bd6-c93f-46f8-b736-39c99e4dce31.jpg/sm/GP38THUMB.jpg","duration":4785,"publication_date":"2018-02-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-sony-sharing-ps4-date-with-fbi","changefreq":"weekly","video":[{"title":"2018:E49 - Sony Shares PS4 Data with FBI","description":"Tech companies help out law enforcement with all kinds of criminal investigations, but it's not very often that we get to see it happen so publicly. Sony just sent the FBI some PS4 user data for a recent case, and now we're getting more details.","player_loc":"https://roosterteeth.com/embed/game-news-2018-sony-sharing-ps4-date-with-fbi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dac29bb2-f63b-43e3-96ab-8e505357caa5.jpg/sm/ThumbnailTemplate.jpg","duration":430,"publication_date":"2018-02-16T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-video-game-devs-on-strike","changefreq":"weekly","video":[{"title":"2018:E48 - Game Devs on STRIKE!","description":"One studio of French developers have had enough, and now they're officially on strike. Could this be the start of better treatment of video game developers?","player_loc":"https://roosterteeth.com/embed/game-news-2018-video-game-devs-on-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a3f739a-e018-4d09-aa16-c77f88df244e.jpg/sm/ThumbnailTemplate.jpg","duration":413,"publication_date":"2018-02-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180215","changefreq":"weekly","video":[{"title":"2018:E34 - Labo Can do ANYTHING? + God of War Like... FIFA? + GPU Crisis Hurts Alien Search","description":"Nintendo has revealed a WHOLE lot about Labo, a US Senator is asking the ESRB to fix loot boxes, PUBG's roadmap is coming soon, God of War plays like... FIFA for some reason, we're still probably not getting Monster Hunter World on Switch, there's a new Incredibles 2 trailer, and boy we're not ever going to find aliens without those GPUs.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180215","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8b3e2d8-1c59-4d70-bd74-c8f85fbc8b6f.jpg/sm/RoundupThumbnailTemplate.jpg","duration":657,"publication_date":"2018-02-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-new-diablo-ramping-up-metal-gear-solid-s-nuke-mistake-twitch-bigger-than-cnn","changefreq":"weekly","video":[{"title":"2018:E33 - New Diablo Ramping Up + Metal Gear Solid's Nuke Mistake + Twitch Bigger than CNN","description":"Blizzard is hiring new developers to work on a Diablo project. Konami explains the accidental release of additional nuke-related content in Metal Gear Solid V. Twitch viewership has climbed beyond mainstream media giants like CNN.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-new-diablo-ramping-up-metal-gear-solid-s-nuke-mistake-twitch-bigger-than-cnn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a3439b46-c08e-4e24-b4e7-7a2911fa1337.jpg/sm/20180214Roundup.jpg","duration":633,"publication_date":"2018-02-14T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-leglisation-would-ban-lootboxes","changefreq":"weekly","video":[{"title":"2018:E45 - Lootboxes OVER? New Laws Proposed!","description":"After a long time of yammering about loot boxes and potential regulation, some Hawaii lawmakers are finally proposing some measures to crack down on them. Is this the end of loot boxes as we know it?! Well, don't get your hopes up.","player_loc":"https://roosterteeth.com/embed/game-news-2018-leglisation-would-ban-lootboxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b1a64fef-1deb-4dcc-a3aa-1753e80890e0.jpg/sm/ThumbnailTemplate.jpg","duration":385,"publication_date":"2018-02-14T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-spyro-the-dragon-remasters-leaked","changefreq":"weekly","video":[{"title":"2018:E46 - Spyro the Dragon Remasters Leaked!","description":"Activision's back with yet another huge classic remaster -- this time, it's going to be the Spyro the Dragon series, according to some new reports.","player_loc":"https://roosterteeth.com/embed/game-news-2018-spyro-the-dragon-remasters-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a4dddcd1-f7e8-4644-8474-324ed5e184d7.jpg/sm/ThumbnailTemplate.jpg","duration":298,"publication_date":"2018-02-14T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180213","changefreq":"weekly","video":[{"title":"2018:E32 - Bayonetta 3 Begins + Dragonball FighterZ LOSING Players + FNAF Movie!","description":"Bayonetta 3 is officially in production (and it's all thanks to Nintendo), is Xbox going to have a smaller presence at E3, Bandai Namco is all about that new IP, Ubisoft is all about your microtransactions, Sea of Thieves will never have loot boxes, Kingdom Come Deliverance reviews are out, lots of players are leaving Dragonball FighterZ already, Black Panther is projecting an even bigger weekend before, and lots more in your Tuesday round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180213","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b55a434-6cb0-4bc8-93e5-c247f1caf915.jpg/sm/20180213.jpg","duration":490,"publication_date":"2018-02-13T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180212-roundup","changefreq":"weekly","video":[{"title":"2018:E31 - Kingdom Hearts 3 News Details! + Xbox One X Outsells PS4 Pro + Left 4 Dead 3 Hoax!","description":"Kingdom Hearts 3 got a bunch of new details from D23. Xbox One X is off to a stronger start than its PS4 counterpart. A Left 4 Dead 3 ARG has turned out to be a hoax.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180212-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/91496105-fba9-4072-a1ab-e3882624b668.jpg/sm/20180212Roundup.jpg","duration":633,"publication_date":"2018-02-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-not-so-trendy","changefreq":"weekly","video":[{"title":"S1:E37 - Not So Trendy - #37","description":"What are some video game trends you missed out on? Did you ever go back to check them out?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-not-so-trendy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5f7d6418-8631-4966-82cc-69a4f0349fe4.jpg/sm/GP37psTHUMB.jpg","duration":1050,"publication_date":"2018-02-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180209-roundup","changefreq":"weekly","video":[{"title":"2018:E30 - Kingdom Hearts 3 Tease! + Gal Gun 2 Banned + Logan Paul Demonetized","description":"This weekend might see a full reveal of Kingdom Hearts 3, based on a D23 tease. Gal Gun 2 is banned in Germany. YouTube has fully demonetized the channel of controversial figure Logan Paul.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180209-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c21b00bc-204f-4d91-ba38-39aa94c73d31.jpg/sm/20180209Roundup.jpg","duration":540,"publication_date":"2018-02-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-we-re-the-real-colossus-ses","changefreq":"weekly","video":[{"title":"S1:E37 - We're The Real Colossus'ses - #37","description":"Join Ashley, Ryan, Mica, and Alfredo as they grab onto the new Shadow of the Colossus remake (29:32) and speedrun the news (48:15)!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-we-re-the-real-colossus-ses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fa5e7aec-24c2-4737-87f8-4af14f79f68a.jpg/sm/GP37THUMB.jpg","duration":4830,"publication_date":"2018-02-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-venom-trailer-disappointing-or-mysterious","changefreq":"weekly","video":[{"title":"2018:E5 - Fans Wrong to be Disappointed About Venom?","description":"The Venom teaser is OUT! And fans have... thoughts. Memes, mostly. Are fans demanding too much of the teaser or are they right to be disappointed?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-venom-trailer-disappointing-or-mysterious","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0620f501-9f48-4cc4-a28d-a29e475f97b6.jpg/sm/20180208VenomDisappointspsd.jpg","duration":476,"publication_date":"2018-02-09T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-google-getting-into-gaming","changefreq":"weekly","video":[{"title":"2018:E41 - Google Gets Into Game Consoles!","description":"A lot of companies have tried to take on the console business and failed. Google seems to have its own plans for gaming, and it's... interesting.","player_loc":"https://roosterteeth.com/embed/game-news-2018-google-getting-into-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7f6ad7b-0078-4f14-b3b1-3d52f296b11e.jpg/sm/20180208GoogleConsole.jpg","duration":450,"publication_date":"2018-02-09T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180208-roundup","changefreq":"weekly","video":[{"title":"2018:E29 - Final Fantasy VII Remake Going... Well? + Sweden vs Lootboxes + AI Saves Superman's Face","description":"Apparently the Final Fantasy VII remake is still going! And going... well! Sweden's looking at classifying lootboxes as gambling. Turns out AI is better at fixing Superman's mustache than CGI pros. THEY'RE COMING FOR ALL OUR JOBS!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180208-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e8ba5e25-766c-44a1-8c75-37d4f4141804.jpg/sm/20180208Roundup.jpg","duration":578,"publication_date":"2018-02-08T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-quantic-become-broke","changefreq":"weekly","video":[{"title":"2018:E40 - Quantic Dream Under Investigation!","description":"Quantic Dream got hit with bad workplace allegations recently, and now the company is fighting back against them with some lawsuits of its own. Unfortunately, the Paris Council is now getting involved to see where the company's government grant money is going.","player_loc":"https://roosterteeth.com/embed/game-news-2018-quantic-become-broke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c99b74d-1ade-4ea0-ac8d-12807d39d6f1.jpg/sm/ThumbnailTemplate.jpg","duration":324,"publication_date":"2018-02-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-new-star-wars-series-from-game-of-thrones-showrunners","changefreq":"weekly","video":[{"title":"2018:E4 - Game of Thrones Creators Tackling Star Wars","description":"Game of Thrones's showrunners just got a very huge new gig -- they're creating the next series of Star Wars movies. That nows makes for three separate Star Wars series in development at the same time, plus other spin-offs. Is this good for Star Wars?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-new-star-wars-series-from-game-of-thrones-showrunners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/97b0ea42-7290-4d49-8f89-fc06553de383.jpg/sm/ThumbnailTemplate.jpg","duration":420,"publication_date":"2018-02-08T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180207","changefreq":"weekly","video":[{"title":"2018:E28 - Metroid Prime 4 News + Deadpool 2 First Trailer + Falcon Heavy Makes History","description":"E3 registration is almost here, we've got more confirmation that Cyberpunk 2077 could be making an appearance, Metroid Prime 4's developer might have been discovered, The Surge is getting a sequel next year, PUBG has served a lot of chicken dinners, player customization is coming to Battlefront II, and Deadpool 2 just got its first goofy trailer.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e1181227-fe2d-4788-887f-c28a706ab52f.jpg/sm/20180207thumb.jpg","duration":435,"publication_date":"2018-02-07T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-black-panther-is-it-good","changefreq":"weekly","video":[{"title":"2018:E3 - Black Panther Is Marvel's Best EVER?","description":"Reviews have dropped way in advance of Black Panther's release date -- and boy are they glowing. Could this be Marvel's best outing yet?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-black-panther-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0df041c9-2a66-4804-9e85-64000b424253.jpg/sm/ThumbnailTemplate.jpg","duration":343,"publication_date":"2018-02-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-red-dead-redemption-2-huge-leak-first-person-battle-royale-huge-red-dead-redemption-2-leaks","changefreq":"weekly","video":[{"title":"2018:E39 - HUGE Red Dead Redemption 2 Leaks! Battle Royale & First Person!","description":"Even though Red Dead Redemption 2 is coming out later this year, we've known virtually nothing about it. But that might change thanks to some apparent leaks of the game's single player and multiplayer, which tell us a whole lot of cool details... including that Red Dead Redemption is getting its own Battle Royale mode.","player_loc":"https://roosterteeth.com/embed/game-news-2018-red-dead-redemption-2-huge-leak-first-person-battle-royale-huge-red-dead-redemption-2-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2883504-67a1-4372-ba09-b2ccff49a2b5.jpg/sm/ThumbnailTemplate.jpg","duration":446,"publication_date":"2018-02-07T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180206-roundup","changefreq":"weekly","video":[{"title":"2018:E27 - Dead Rising in Trouble? + Germany Investigating Loot Boxes + Dr. Disrespect Returns","description":"Nintendo finally dished the truth about Mario's nipples, Call of Duty: Black Ops 4 might be real after all, Capcom Vancouver gets hit by lay-offs, Bluepoint might be cooking up another remastered classic, Horizon Zero Dawn used to have co-op, Germany is looking into loot boxes now, Konami has no idea why MGS V's secret ending unlocked, and Square Enix apologizes for that buggy PC benchmark tool in Tuesday's round-up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180206-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f88e5b25-0ca7-4abc-b3dc-e256c7f3f52c.jpg/sm/20180206thumb.jpg","duration":446,"publication_date":"2018-02-06T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-pokemon-switch-details","changefreq":"weekly","video":[{"title":"2018:E38 - NEW Pokemon Switch Details!","description":"One of the most anticipated Nintendo Switch titles is the upcoming Pokemon RPG -- and now we've got a few more rumors about what we could expect from the game, including P2P details and more information about the art style. Can Nintendo please just show us this game already?","player_loc":"https://roosterteeth.com/embed/game-news-2018-pokemon-switch-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27b973c7-cc52-4ce4-bd72-c311c63fcb18.jpg/sm/ThumbnailTemplate.jpg","duration":306,"publication_date":"2018-02-06T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-kaz-hirai-steps-down-as-sony-ceo","changefreq":"weekly","video":[{"title":"2018:E34 - Sony CEO QUITS","description":"Kaz Hirai is stepping down as CEO of Sony -- but what's next for the company? Could it possibly become an acquisition target?","player_loc":"https://roosterteeth.com/embed/game-news-2018-kaz-hirai-steps-down-as-sony-ceo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c231fc38-e3cf-47fd-b1ef-247e2d344785.jpg/sm/ThumbnailTemplate.jpg","duration":318,"publication_date":"2018-02-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-is-call-of-duty-black-ops-4-real-call-of-duty-2018-is-black-ops-4","changefreq":"weekly","video":[{"title":"2018:E37 - Is Call of Duty: Black Ops 4 REAL?","description":"We've got new rumors that this year's Call of Duty is going to be none other than Black Ops 4. Oh, and apparently it might be coming to Nintendo Switch and will be back in the modern era. We break down all the new tidbits -- and how believable they are.","player_loc":"https://roosterteeth.com/embed/game-news-2018-is-call-of-duty-black-ops-4-real-call-of-duty-2018-is-black-ops-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f3012fcf-294e-466d-8074-3cce609de347.jpg/sm/ThumbnailTemplate.jpg","duration":395,"publication_date":"2018-02-06T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180205-roundup","changefreq":"weekly","video":[{"title":"2018:E26 - New Crash Bandicoot CONFIRMED? + Newell Denies Microsoft Rumor + Tons of Super Bowl Trailers","description":"Welcome to a new week of round-ups! Apparently Activision has a 5 year plan for Crash Bandicoot -- including a potential new game in 2019 -- A Way Out's director talked about why his game is different than other narrative games, Square Enix's CEO says gamers are too focused on problems with Games as a Service, pirates finally took down Assassin's Creed: Origins, Gabe Newell talked about those Microsoft rumors, Yakuza 6 got delayed, and there were loads of new trailers to enjoy from last night's Super Bowl.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180205-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2f61766f-fa72-485f-bacf-e46919f7c65f.jpg/sm/20180205roundupthumb.jpg","duration":481,"publication_date":"2018-02-05T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-it-s-cool-to-be-cruel-36","changefreq":"weekly","video":[{"title":"S1:E36 - It's Cool To Be Cruel - #36","description":"What is the game that defined a certain game genre for you? And what was the cruelest thing you ever did to NPCs in a game?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-it-s-cool-to-be-cruel-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2afdd96-683f-4762-8b42-7a473902f241.jpg/sm/GP036psTHUMB.jpg","duration":780,"publication_date":"2018-02-03T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-king-of-kong-is-king-of-lies","changefreq":"weekly","video":[{"title":"2018:E35 - King of Kong is KING OF LIES?!","description":"Infamous gamer and world record holder Billy Mitchell may have just gotten some of his Donkey Kong records stripped... with allegations that he spoofed the footage with MAME instead of playing it live. Does this mean JUSTICE FOR WIEBE?!","player_loc":"https://roosterteeth.com/embed/game-news-2018-king-of-kong-is-king-of-lies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/67bc3edf-c1e2-4416-846c-1b49f9481aff.jpg/sm/ThumbnailTemplate.jpg","duration":298,"publication_date":"2018-02-03T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180202-roundup","changefreq":"weekly","video":[{"title":"2018:E25 - Assassin's Creed Dynasty LEAKED? + Sonic Announcements SOON + Han Solo Trailer Incoming","description":"Nintendo Labo's got programmable cardboard robots, the next Assassin's Creed game might have already been leaked, people are mad that the Master Chief Collection is getting fixed, we have a slightly better idea of Borderlands 3's date, Far Cry 5 gets an awesome season pass, we've got more Sonic news coming soon, Bungie's making MORE changes to Destiny 2... it's all here in your last round up of the week!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180202-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/58ae8949-67d0-4820-b575-853c98da5668.jpg/sm/RoundupThumbnailTemplate.jpg","duration":462,"publication_date":"2018-02-02T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-big-swords-and-bigger-monsters-36","changefreq":"weekly","video":[{"title":"S1:E36 - Big Swords and Bigger Monsters - #36","description":"This week join Adam, Cole, and Ben as they break down all the best parts of Monster Hunter World (21:26) and speedrun the news about Xbox exclusives, MOBA shutdowns, and... cheating?! (49:33)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-big-swords-and-bigger-monsters-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cf8b213e-be83-4833-95d1-546f2ffb0ce9.jpg/sm/GP036THUMB.jpg","duration":4260,"publication_date":"2018-02-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-black-panther-will-probably-make-a-shit-ton-of-money","changefreq":"weekly","video":[{"title":"2018:E2 - Black Panther DESTROYING All Superhero Movies Already","description":"Black Panther is coming out soon, and it looks like its pre-sales are already tracking to outpace... well, every other superhero movie ever. Of course, there's more to this number than meets the eye.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-black-panther-will-probably-make-a-shit-ton-of-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e42cc2ec-33b9-4c6a-a485-40e2480c3838.jpg/sm/ThumbnailTemplate.jpg","duration":396,"publication_date":"2018-02-02T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-even-nintendo-doing-games-as-a-service","changefreq":"weekly","video":[{"title":"2018:E33 - Nintendo Doing Games As A Service?","description":"Nintendo's made loads of announcements this week about movies, mobile games, and online services -- but one other thing they low-key announced is that they're about to start dabbling in games as a service.","player_loc":"https://roosterteeth.com/embed/game-news-2018-even-nintendo-doing-games-as-a-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5fefcd3-629f-49c7-8342-655e17c5ea85.jpg/sm/ThumbnailTemplate.jpg","duration":389,"publication_date":"2018-02-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180201-roundup","changefreq":"weekly","video":[{"title":"2018:E24 - Red Dead Redemption 2 RELEASE DATE! + EA Stocks SOAR + $100,000 Contra Box","description":"Red Dead Redemption 2 finally got its release date, Switch's online platform goes live later this year, Nintendo is bringing Mario Kart to mobile, Xbox One is making lots from hardware, EA stocks are going nuts now that lootboxes are coming back, Sea of Thieves gets beta numbers, Burnout's creators have a new IP on the way, Halo Master Chief Collection is getting some updates, Nintendo confirms it's animated movie, and a whole lot more in our Thursday round-up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180201-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c9fff39-f2c0-4e02-9f26-086232cfc822.jpg/sm/RoundupThumbnailTemplate.jpg","duration":644,"publication_date":"2018-02-01T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-the-switch-had-another-good-quarter-but-what-s-next","changefreq":"weekly","video":[{"title":"2018:E31 - Nintendo Switch Has MORE Secrets","description":"Nintendo just released its financial statement and holy crap do people love this machine and all of its Marios (seriously, all the Marios). But with the console hitting crazy numbers and not nearly as good of a release slate as last year, how can it keep up -- well, according to Nintendo, they've still got a lot of tricks up their sleeves.","player_loc":"https://roosterteeth.com/embed/game-news-2018-the-switch-had-another-good-quarter-but-what-s-next","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/80df995e-41ae-4f00-a393-2a794e287732.jpg/sm/ThumbnailTemplate.jpg","duration":356,"publication_date":"2018-02-01T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-why-are-publishers-so-greedy","changefreq":"weekly","video":[{"title":"2018:E30 - Why Are Publishers So Greedy?","description":"Lots of people have been talking about not-so-great business tactics in gaming lately -- and unfortunately, lots of companies are set up in a way that makes some of these tactics a priority. We break down the business world of video game companies, and why they operate the way they do.","player_loc":"https://roosterteeth.com/embed/game-news-2018-why-are-publishers-so-greedy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b57cde5-4d8b-429c-ada2-126c39b78f63.jpg/sm/ThumbnailTemplate.jpg","duration":497,"publication_date":"2018-02-01T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-we-believe-in-microtransactions-ea-blames-battlefront-2-sales-on-loot-box-controversy","changefreq":"weekly","video":[{"title":"2018:E32 - EA Admits Loot Boxes Hurt Battlefront 2... But Wants Them Back","description":"EA just held its Q3 earnings call, where they finally dished on the fact that Battlefront 2 didn't sell as much as they hoped. And guess what -- it was all because of the loot boxes. But that won't stop them from doubling down on live services.","player_loc":"https://roosterteeth.com/embed/game-news-2018-we-believe-in-microtransactions-ea-blames-battlefront-2-sales-on-loot-box-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a0d7b63-3201-43bc-ae90-a5e00ac847c0.jpg/sm/ThumbnailTemplate.jpg","duration":398,"publication_date":"2018-02-01T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-more-retailers-are-mad-at-xbox","changefreq":"weekly","video":[{"title":"2018:E29 - More Retailers MAD at Xbox","description":"Last week we had the news that one Austrian retailer was a bit miffed about Xbox Game Pass -- and now we've got word of several more retailers who think it could significantly affect their business.","player_loc":"https://roosterteeth.com/embed/game-news-2018-more-retailers-are-mad-at-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6a06e56-ec04-4edd-9e71-fe2a8dc67c3b.jpg/sm/ThumbnailTemplate.jpg","duration":373,"publication_date":"2018-02-01T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180131-roundup","changefreq":"weekly","video":[{"title":"2018:E23 - Battlefield in October CONFIRMED + EA Wants Battle Royale? + MCU Unsure About X-Men","description":"We might have a leaked release date for Spider-Man on PS4, Rocksteady is teasing their next game (again), the next Battlefield is launching in October, Anthem's delay is now official, EA is tempted to bring Battle Royale into its own games, there's a weird link between Wolfenstein and Doom, Gabe Newell met with Nintendo once upon a time, Kevin Feige isn't sure what to do with the X-Men, and more in the hump day round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180131-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38486c32-7f8c-4340-9437-2a9130beaf9f.jpg/sm/20180131thumbnew.jpg","duration":523,"publication_date":"2018-01-31T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180130-roundup","changefreq":"weekly","video":[{"title":"2018:E22 - Shadow of the Colossus Reviews + Hyper Light Drifter Creator QUITS + Black Panther Best EVER?","description":"Microsoft goes big on cloud gaming (again), Gran Turismo's creator confirms the next game is already being made, Sega and Heavy Rain alumni are teaming up, is the Shadow of the Colossus remake any good (duh), Square Enix loses Hyper Light Drifter's creator, we got a new Ant-Man and the Wasp trailer, people LOVE Black Panther, and more in today's round-up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180130-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13b99675-2ce8-4cc7-b3c4-c714ce50df45.jpg/sm/RoundupThumbnailTemplate.jpg","duration":646,"publication_date":"2018-01-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-xbox-wants-to-buy-ea","changefreq":"weekly","video":[{"title":"2018:E28 - Xbox Wants to Buy EA?","description":"A new report suggests Xbox is looking to acquire a games industry giant to bolster its first party development. A giant like... EA, perhaps? or Valve?","player_loc":"https://roosterteeth.com/embed/game-news-2018-xbox-wants-to-buy-ea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1e9080d4-d484-431f-a883-f4ffb6edd9ea.jpg/sm/20180129XboxWantsEA.jpg","duration":598,"publication_date":"2018-01-30T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-uh-oh-facebook-found-out-about-video-games","changefreq":"weekly","video":[{"title":"2018:E27 - Facebook is the New Twitch!?","description":"Ready for your grandma to start sharing all her gaming streams on your Facebook feed? Facebook's kicking off their own streaming service to compete with the likes of Twitch and YouTube and... that should be interesting.","player_loc":"https://roosterteeth.com/embed/game-news-2018-uh-oh-facebook-found-out-about-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aed86cd5-8a78-4e9b-a9dd-9523405d0d79.jpg/sm/20180129FacebookTwitch.jpg","duration":582,"publication_date":"2018-01-30T01:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-tips-if-you-re-new-to-monster-hunter-world","changefreq":"weekly","video":[{"title":"2018:E25 - 10 Quick Tips for New Monster Hunter World Players!","description":"Jumping into Monster Hunter World? It's dangerous to go alone! Take these tips to get started on the right foot.","player_loc":"https://roosterteeth.com/embed/game-news-2018-tips-if-you-re-new-to-monster-hunter-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0d7b2bfd-b9eb-45a7-af18-bb2cabdabcec.jpg/sm/20180126MHWGuide.jpg","duration":511,"publication_date":"2018-01-30T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-valve-defends-streamers","changefreq":"weekly","video":[{"title":"2018:E26 - Valve Slams Unfair DMCAs by ESL","description":"Esports is a big deal and a lot of people watch it. That means platforms like Facebook are willing to offer a lot of money lock exclusive rights to streams, and DMCAs for anyone who tries to find a way around it. But Valve's not having it.","player_loc":"https://roosterteeth.com/embed/game-news-2018-valve-defends-streamers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e5e6d0c7-1b75-4559-b781-74903ff71df0.jpg/sm/20180129ValvevsDMCAs.jpg","duration":484,"publication_date":"2018-01-30T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180129-roundup","changefreq":"weekly","video":[{"title":"2018:E21 - PSN Outage + Paragon Shutting Down + Disney Sued","description":"PSN suffered multiple outages, with the latest taking parts of the network down over the weekend. Epic's shooter MOBA, Paragon, is officially shutting down. Redbox is suing Disney over digital sales of Disney movies.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180129-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fc6468db-ed20-48cb-ba7b-61ff578d5db6.jpg/sm/20180129Roundup.jpg","duration":602,"publication_date":"2018-01-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-new-game-35","changefreq":"weekly","video":[{"title":"S1:E35 - New game+ #35","description":"Join Ashley, Cole, and Alfredo as they answer questions from the community about mini games and video game stigmas.","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-new-game-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/676366e3-47b5-4eb8-99e5-b269b0e212e5.jpg/sm/GP35psTHUMB.jpg","duration":2138,"publication_date":"2018-01-27T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20170126-roundup","changefreq":"weekly","video":[{"title":"2018:E20 - What is Death Stranding About? + Movie Pass Drops Major Theaters + Tide Pod Epidemic","description":"Norman Reedus shares new details on Death Stranding. The Movie Pass/AMC feud takes the next step, with the service dropping some major locations. The Tide Pod epidemic is getting worse. PLEASE STOP EATING DETERGENT!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20170126-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c34b209e-46c1-4202-81ad-481c050dc5c7.jpg/sm/20180126Roundup.jpg","duration":601,"publication_date":"2018-01-26T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-monster-hunter-world-is-it-good","changefreq":"weekly","video":[{"title":"2018:E23 - You NEED to Play Monster Hunter World?","description":"Reviews are in for Monster Hunter World so you can decide if the game's worth your money! Let's go through the high points and low points of the game.","player_loc":"https://roosterteeth.com/embed/game-news-2018-monster-hunter-world-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/81af6c85-66c1-4d51-b3b4-ebe2b41fca68.jpg/sm/20180125MHWIsItGood.jpg","duration":504,"publication_date":"2018-01-26T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-retailers-vs-game-pass","changefreq":"weekly","video":[{"title":"2018:E24 - Retailer Boycotts Xbox!","description":"Xbox Game Pass looks like a pretty sweet deal for gamers. Too sweet for one retailer, who doesn't see why they should even sell Xbox stuff if Microsoft will get to keep all the sweet game money.","player_loc":"https://roosterteeth.com/embed/game-news-2018-retailers-vs-game-pass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3243672-0e07-490e-bc1d-a20a57ab049f.jpg/sm/20180125XboxBoycott.jpg","duration":538,"publication_date":"2018-01-26T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-35","changefreq":"weekly","video":[{"title":"S1:E35 - Game Pass and Chill - #35","description":"Join Ashley, Cole, and Alfredo as they speedrun the news (17:10), discuss Xbox Game Pass (43:20), and gamify their fitness routines(1:00:30). This episode is brought to you by MeUndies (meundies.com/glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a75266e1-0ac3-4322-a703-ceff1c1db3b2.jpg/sm/GP35THUMB.jpg","duration":4762,"publication_date":"2018-01-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20170125-roundup","changefreq":"weekly","video":[{"title":"2018:E19 - Battlefront 2 Overhaul + Grumpy Cat Wins $700K Lawsuit + View Bots Owe Twitch $1 Million","description":"Battlefront 2's progression is getting a major overhaul after micro-transactions were removed. Grumpy Cat wins a major lawsuit over licensing infringements. A judge has ordered Twitch view bot owners to pay up $1.3 million for gaming the system.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20170125-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/653376be-c74e-4a02-8f1a-b98071754bc0.jpg/sm/20180125Roundup.jpg","duration":422,"publication_date":"2018-01-25T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-rollercoaster-tycoon-cash-grab-edition","changefreq":"weekly","video":[{"title":"2018:E20 - Atari EXPLOITING Crowdfunding?","description":"Good news: Atari's bringing Roller Coaster Tycoon to Nintendo Switch. Bad news: the weird crowdfunding campaign seems unnecessary and kind of exploitative.","player_loc":"https://roosterteeth.com/embed/game-news-2018-rollercoaster-tycoon-cash-grab-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/965393db-6c5a-4365-8dc0-b8db4c47d7f4.jpg/sm/20180124RollercoasterTycoon.jpg","duration":489,"publication_date":"2018-01-25T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-bioware-bets-everything-on-anthem","changefreq":"weekly","video":[{"title":"2018:E22 - DELAY! BioWare Struggling to FIX Anthem","description":"Now that Mass Effect Andromeda flopped, BioWare NEEDS Anthem to be a success, but the outrage over Destiny 2 and Battlefront 2 have everyone in a panic to fix the game and ensure its success.","player_loc":"https://roosterteeth.com/embed/game-news-2018-bioware-bets-everything-on-anthem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1324514e-e695-4a0e-8beb-189c62f493b3.jpg/sm/20180124AnthemDelay.jpg","duration":578,"publication_date":"2018-01-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-destiny-2-hurting-activision","changefreq":"weekly","video":[{"title":"2018:E21 - Destiny 2 Dragging Activision DOWN","description":"Wall Street's not confident about Activision, with Destiny 2 causing downgrades to analyst predictions for the year.","player_loc":"https://roosterteeth.com/embed/game-news-2018-destiny-2-hurting-activision","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8a1f8dcc-f0cd-4cee-98ca-7080254f61ef.jpg/sm/20180124Destiny2DamagingActivision.jpg","duration":460,"publication_date":"2018-01-25T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180124-roundup","changefreq":"weekly","video":[{"title":"2018:E18 - Battlefront 2 DIDN'T HURT EA? + Amazon Shoplifting Problem + YouTube Criticism Gag Order","description":"EA's already fully recovered from Battlefront 2 as far as Wall Street is concerned. Amazon's opening cashier-free stores but there are some kinks to work out. YouTube's putting prominent musicians under gag order against criticism of the platform.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180124-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6af27e3e-9fc7-4599-a575-c01e409b2787.jpg/sm/20180124Roundup.jpg","duration":700,"publication_date":"2018-01-25T01:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-sundance-diary-2","changefreq":"weekly","video":[{"title":"2018:E2 - Sundance Diary #2","description":"Eric Vespe is trying to see every good movie at Sundance Film Festival and making a pretty solid dent! He's got more recommendations for upcoming movies you should keep an eye on.","player_loc":"https://roosterteeth.com/embed/specials-2018-sundance-diary-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b8703161-1e83-4c79-b26f-d122907b61f4.jpg/sm/20180124SundanceDiary2.jpg","duration":690,"publication_date":"2018-01-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ps4-hacked-play-ps2-games","changefreq":"weekly","video":[{"title":"2018:E19 - PS4 JAILBREAK to Play PS2 Games!","description":"Turns out the PS4 can play PS2 games! You just gotta jailbreak it first... as long as you've updated it to the exact right firmware and no further.","player_loc":"https://roosterteeth.com/embed/game-news-2018-ps4-hacked-play-ps2-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c1b29802-f5df-492e-949d-3e2fbc72d9d1.jpg/sm/20180124PS4Jailbreak.jpg","duration":478,"publication_date":"2018-01-24T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-never-buy-another-xbox-game","changefreq":"weekly","video":[{"title":"2018:E18 - Never Buy Another XBOX GAME!?","description":"Xbox has announced a huge new project that means Xbox owners never need to buy another first party Xbox game in order to play them.","player_loc":"https://roosterteeth.com/embed/game-news-2018-never-buy-another-xbox-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dc6dc5ef-1dd5-4bc1-bd34-f4e79aede6dc.jpg/sm/20180123XboxGamePass.jpg","duration":729,"publication_date":"2018-01-24T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-god-of-war-release-date-valve-fights-back-john-cena-is-duke-nukem","changefreq":"weekly","video":[{"title":"2018:E17 - God of War RELEASE DATE + Valve FIGHTS BACK + John Cena is DUKE NUKEM!?","description":"God of War's got an official release date. Valve's fighting back against a lawsuit over Steam refunds. John Cena's ready to play Duke Nukem in a new movie. and WAIT, WHAT? RYAN REYNOLDS WANTS TO REMAKE CLUE? WHY?","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-god-of-war-release-date-valve-fights-back-john-cena-is-duke-nukem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fd652ef3-ca23-479e-8f54-64413c44c9b7.jpg/sm/20180123Roundup.jpg","duration":731,"publication_date":"2018-01-23T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-dragonball-fighterz-is-it-good","changefreq":"weekly","video":[{"title":"2018:E17 - Is Dragon Ball FighterZ ANY GOOD?","description":"The reviews are in for 2018's first big fighting game, Dragon Ball FighterZ. Forget all the marketing that tells you it will be the BEST THING EVER... What do critics think now they've actually got it?","player_loc":"https://roosterteeth.com/embed/game-news-2018-dragonball-fighterz-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/182870f2-d9bc-4673-9305-a8fc895d653f.jpg/sm/20180122DragonballFighterZIsItGood.jpg","duration":583,"publication_date":"2018-01-23T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-gpu-shortage","changefreq":"weekly","video":[{"title":"2018:E9 - Bitcoin is BAD NEWS for PC Gamers!?","description":"Nvidia's asking retailers to prioritize gamers for graphics card sales, but that's not stopping the price gouging or the fact that Nvidia's happily helping cryptocurrency miners out.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-gpu-shortage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb736a3f-b84b-4afb-b5cd-febfbe10b58b.jpg/sm/20180122BitcoinGPUShortage.jpg","duration":526,"publication_date":"2018-01-23T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180122-roundup","changefreq":"weekly","video":[{"title":"2018:E16 - Metal Gear Survive APOLOGIZES + Arrest Over Bomb Prank + Hotel Bans Social Media Stars","description":"The Metal Gear Survive producer is apologizing that people think it's a Metal Gear Solid game. A TV crew has been arrested over a fake explosive prank in an airport. A hotel is banning social media stars over a feud with a YouTuber. BUT THE BIGGEST NEWS? INHUMANS MIGHT BE CANCELLED!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180122-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e292ff6-b2ea-4112-9a10-375ee9ee0adb.jpg/sm/20180122Roundup.jpg","duration":610,"publication_date":"2018-01-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2018-sundance-diary-1","changefreq":"weekly","video":[{"title":"2018:E1 - Sundance Diary #1","description":"Eric Vespe braves Park City, Utah for Sundance Film Festival 2018. He's seeing all the movies studios are competing to buy and bringing back reports on what to watch for. In this diary: Blindspotting, Private Life, Beast, and American Animals.","player_loc":"https://roosterteeth.com/embed/specials-2018-sundance-diary-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/00143e82-f1a0-424e-83da-462f60205568.jpg/sm/20180122SundanceDiary.jpg","duration":488,"publication_date":"2018-01-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-new-game-season-1-new-game-34","changefreq":"weekly","video":[{"title":"S1:E34 - New Game+ #34","description":"What are the things that made us first love video games?","player_loc":"https://roosterteeth.com/embed/glitch-please-new-game-season-1-new-game-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bb4f4272-7234-489d-90d1-ed3423e94c00.jpg/sm/GP34psTHUMB.jpg","duration":997,"publication_date":"2018-01-20T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-xbox-targeting-next-generation","changefreq":"weekly","video":[{"title":"2018:E16 - Xbox's Big Plans for NEXT-GEN","description":"Xbox has big plans for next-gen, and we'll start seeing shifts in that direction sooner rather than later.","player_loc":"https://roosterteeth.com/embed/game-news-2018-xbox-targeting-next-generation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cbd9ed8f-3da4-4e07-a08c-f76da43ceaf4.jpg/sm/20180119XboxBigPlans.jpg","duration":547,"publication_date":"2018-01-20T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-are-youtube-s-stars-leaving","changefreq":"weekly","video":[{"title":"2018:E8 - YouTube's Biggest Gamers Moving to TWITCH","description":"A bunch of the big gaming YouTubers are making Twitch-exclusive content as part of a new deal.\r\nWait, are Markiplier and Jacksepticeye actually Disney princes?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-are-youtube-s-stars-leaving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c6beff08-e6df-478c-8d7d-e64683a54737.jpg/sm/20180119YouTubeStarsOnTwitch.jpg","duration":425,"publication_date":"2018-01-20T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180119-roundup","changefreq":"weekly","video":[{"title":"2018:E15 - Activision Boss QUITS + Overwatch Bigger Than... Sexy Videos + No More Thor?","description":"Activision boss Eric Hirshberg has announced he's leaving the company. According to one, uh, sexy viewing site, Overwatch League led to a big drop in their view numbers. Thor actor Chris Hemsworth says he's done as Thor in Marvel's Cinematic Universe. Unless...","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180119-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6955d5e0-a662-40df-86ce-e42f43a097f2.jpg/sm/20180119Roundup.jpg","duration":613,"publication_date":"2018-01-19T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-nintendo-is-the-new-ikea-34","changefreq":"weekly","video":[{"title":"S1:E34 - Nintendo is the new Ikea? - #34","description":"This week join Ashley, Gus, Ryan, and Adam as they speedrun the news (41:11) and break down the Nintendo Labo announcement with Eddy Rivas and Marcus LaPorte (1:11:36).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-nintendo-is-the-new-ikea-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0d66c853-763e-4939-8290-79589ca8ad80.jpg/sm/GP34THUMB.jpg","duration":5700,"publication_date":"2018-01-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-let-s-plays-killing-single-player","changefreq":"weekly","video":[{"title":"2018:E15 - Streams & Let's Plays KILLING Singleplayer Games?","description":"A big name in game development has spoken out on the decline of single-player games, and believes let's plays and streams are a cause. Why pay and play when you can just watch?","player_loc":"https://roosterteeth.com/embed/game-news-2018-let-s-plays-killing-single-player","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/098103d5-0cfa-426a-9b44-65a05d88dd93.jpg/sm/20180118VideosKilledSingleplayerv2.jpg","duration":571,"publication_date":"2018-01-19T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-120","changefreq":"weekly","video":[{"title":"2018:E120 - Yelly, Woman, Beard, Ethnic, and British - #120","description":"The AH Crew sit down to talk about Fight Clubs, Zelda, Moonball!, and more on this week's Off Topic!\n\nThis episode originally aired March 16, 2018 and is sponsored by MeUndies (http://bit.ly/2EfibM0), MVMT (http://bit.ly/2kg8JSD), and Audible (http://adbl.co/2o8T6uq)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a45e36c6-c942-41bb-bb55-dc4920080a5b.jpg/sm/OFF120Thumb.jpg","duration":9086,"publication_date":"2018-03-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-party-6-snowflake-lake","changefreq":"weekly","video":[{"title":"2018:E38 - Mario Party 6 - Snowflake Lake","description":"It's about to get cold in here as the Mario Mates head to Snowflake Lake. It's a Chomp-eat-Chomp world out there.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-party-6-snowflake-lake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02bff5ff-a9a5-41da-b8b1-fbced69bedbf.png/sm/LPMarioParty6PART3.png","duration":7438,"publication_date":"2018-03-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-towerfall-bramblin-man-6","changefreq":"weekly","video":[{"title":"2018:E35 - TowerFall - Bramblin Man (#6)","description":"AH is back playing some more Towerfall Ascension. The boys are just tryin' to make a killin' and doing the best they can.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-towerfall-bramblin-man-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/20995e94-8e40-49ff-8456-a935d43f8da4.png/sm/TowerfallThumbv3.png","duration":1893,"publication_date":"2018-03-16T17:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-304-tree-boys-ydyd-part-2","changefreq":"weekly","video":[{"title":"2018:E37 - Minecraft - Episode 304 - Tree Boys (YDYD Part 2)","description":"The remaining eight struggle for survival as they do some hardcore mining, befriend wildlife, become tree boys, and make a basement hideaway.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-304-tree-boys-ydyd-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4748186f-84fa-44b2-9e0d-0be78b40c8aa.jpg/sm/Thumb031618YDYD2.jpg","duration":4044,"publication_date":"2018-03-16T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fore-honor-infinite-minigolf-matt-s-ghoulish-golf","changefreq":"weekly","video":[{"title":"2018:E36 - Fore Honor - Infinite Minigolf - Matt's Ghoulish Golf","description":"Matt gives the gang nightmares with his latest horrifying custom maps.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fore-honor-infinite-minigolf-matt-s-ghoulish-golf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2e8fbfb-08f9-4aac-bf84-6b28bb4acffd.jpg/sm/Thumb031618ForeHonorInfMinigolfPart8.jpg","duration":2492,"publication_date":"2018-03-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-jack-s-pirate-parking-problem","changefreq":"weekly","video":[{"title":"2018:E5 - Jack's Pirate Parking Problem","description":"The greatest peril of the sea is not a typhoon. To find out the answer, just watch this cartoon.\r\n\r\nOriginal audio from: https://youtu.be/8EwWviRpUP8\r\nAnimated by Shaun Cunningham​","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-jack-s-pirate-parking-problem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45b11e4e-b725-47e4-9710-178c63f1bcc5.jpg/sm/Thumb031518AnimatedParkingProblem.jpg","duration":71,"publication_date":"2018-03-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-february-2018","changefreq":"weekly","video":[{"title":"2018:E12 - Best of Achievement Hunter - February 2018","description":"This is the Best of Achievement Hunter February 2018, where saving Michael's life is proven difficult in Friday the 13th, Ryan crowns a new King in Minecraft Sky Factory, Jack Honks at his Homies in PlayerUnknown's Battlegrounds, Geoff continues to lower the bar in Infinite Minigolf, and Lindsay always wins in GTA V, if she feels like it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-february-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/49defdd2-1685-49a2-9e3e-a0b39b51c63e.jpg/sm/Thumb031518BestofFebruary.jpg","duration":1780,"publication_date":"2018-03-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-sea-of-thieves-coop-loop","changefreq":"weekly","video":[{"title":"2018:E9 - Sea of Thieves - Coop Loop","description":"Sea of Thieves lets you be whatever type of pirate you want to be. If you want to be a pirate that finds treasure, great! If you want to horde a couple hundred chicken coops and sail around the seven seas, that's fine too.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-sea-of-thieves-coop-loop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/375e178f-b162-41df-bb3d-d66b2bd29f26.jpg/sm/TTD_SOTCoopLoopV1.jpg","duration":235,"publication_date":"2018-03-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-hand-simulator-wild-west","changefreq":"weekly","video":[{"title":"2018:E34 - Hand Simulator - Wild West","description":"Achievement Hunter ventures out to see who has the quickest finger in the west.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-hand-simulator-wild-west","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9cd38a3e-fd8a-42e0-951f-2e73fe5177c3.jpg/sm/LWHandSimulatorV1jpg.jpg","duration":1701,"publication_date":"2018-03-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2018-flinchless-alfredy-doo","changefreq":"weekly","video":[{"title":"2018:E2 - Flinchless Alfredy Doo","description":"Gavin creates a new game in which two players bounce a ball between Alfredo's legs, and try to hit the other in the good bits. The only person guaranteed to lose is Alfredo!","player_loc":"https://roosterteeth.com/embed/between-the-games-2018-flinchless-alfredy-doo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/983c7661-1f35-4e70-b88b-177619f50eef.jpg/sm/Thumb031318FlinchlessAlfredyDoov3.jpg","duration":305,"publication_date":"2018-03-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-siege-lion-and-finka-dlc","changefreq":"weekly","video":[{"title":"2018:E33 - Rainbow Six: Siege - Lion and Finka DLC","description":"Achievement Hunter gears up for a session of Siege on the PC. Can they master the new Ops Lion and Finka, or will mouse and keyboard get the best of them? Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get a DSC Starter Set for just $5.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-siege-lion-and-finka-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/31ec5817-f803-4c2a-8945-fb7cf6ad7bdf.jpg/sm/pubg_stream_thumb.jpg","duration":1446,"publication_date":"2018-03-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-chaos-corner-flappy-fedora","changefreq":"weekly","video":[{"title":"2018:E11 - Chaos Corner - Flappy Fedora","description":"\"A tip of the fedora helps the friendzone go down.\"\r\n\r\nLindsay and Elyse embark on a magical fedora journey as they discuss their love for Bollywood and The Muppets","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-chaos-corner-flappy-fedora","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bdee7ce9-ecb3-4eae-979e-2c729eea47bc.png/sm/CCFlappyFedoraV002.png","duration":766,"publication_date":"2018-03-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-party-6-faire-square","changefreq":"weekly","video":[{"title":"2018:E31 - Mario Party 6 - Faire Square","description":"The Mario Mates are in Faire Square this week and there are stars up for grabs. If you have the coins, that is.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-party-6-faire-square","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77f48d29-ee41-4f0b-93bd-f00385bf1bbb.png/sm/LPMarioParty6PART2.png","duration":5502,"publication_date":"2018-03-12T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-civic-doodle-junk-in-my-trunk","changefreq":"weekly","video":[{"title":"2018:E32 - Civic Doodle - Junk in my Trunk","description":"Achievement Hunter heads to Doodle Valley and draws many abominations for the town's annoying mayor.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-civic-doodle-junk-in-my-trunk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e1e65a28-7597-424b-9e1b-a8e2e79badc3.png/sm/LPCivicDoodle.png","duration":2262,"publication_date":"2018-03-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-the-dusk-boys","changefreq":"weekly","video":[{"title":"2018:E5 - The Dusk Boys","description":"When the lights go dim and the oxygen runs low, the Dusk Boys will be there to protect us all from the evils of brunch time.","player_loc":"https://roosterteeth.com/embed/ahwu-2018-the-dusk-boys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a8054aff-65b3-4026-9525-d18e97a5a483.jpg/sm/thumbAH412.jpg","duration":950,"publication_date":"2018-03-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-gainy-and-grainy-last-call-119","changefreq":"weekly","video":[{"title":"2017:E59 - Gainy and Grainy - Last Call #119","description":"The AH Crew stand up to talk about their favorite MCU movies, Rainbow Six Siege, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-gainy-and-grainy-last-call-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ace4db5a-97e8-4ab4-afdf-10ee97119b1f.jpg/sm/OFF119psTHUMB.jpg","duration":672,"publication_date":"2018-03-11T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-geoff-bag-4","changefreq":"weekly","video":[{"title":"2017:E360 - GTA V - Geoff Bag 4","description":"Time for more Geoff Bag, featuring some Snipers vs. Stunters, infernal Mario Kart, and the most difficult stunt race ever. Geoff!","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-geoff-bag-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/41374817-e8ec-48a3-a401-510554e13ebc.jpg/sm/Geoffbag4v4.jpg","duration":3575,"publication_date":"2018-03-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-geoff-makes-iris-cry-off-topic-119","changefreq":"weekly","video":[{"title":"2018:E119 - Geoff Makes Iris Cry - Off Topic #119","description":"The AH Crew sit down to talk about the danger of moonball, the last man in an iron lung, Let’s Play Spring Break, and more on this week's Off Topic!\r\n\r\nThis episode originally aired March 9, 2018 and is sponsored by Casper (http://bit.ly/2DpSEPv)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-geoff-makes-iris-cry-off-topic-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a6b5d60-698a-414c-807f-e5700233428b.jpg/sm/OFF119THUMB.jpg","duration":6681,"publication_date":"2018-03-10T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-burt-kindersprinkle-s-monster-world-game-action-theater","changefreq":"weekly","video":[{"title":"2018:E10 - Burt Kindersprinkle's Monster World (Game Action Theater)","description":"Monster Hunter World has is full to the brim with unique and stunning wildlife. Join Burt Kindersprinkle on his journey to explore the land and teach about the creatures that live on it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-burt-kindersprinkle-s-monster-world-game-action-theater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bf2738b3-0dcd-4266-8b8e-0354ef318e76.jpg/sm/GATBKMonsterWorldV3.jpg","duration":252,"publication_date":"2018-03-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2018-episode-53","changefreq":"weekly","video":[{"title":"2018:E4 - Episode #53: Fear Town, USA","description":"After Saint Blevin, drove the Polish children into the sea. St. Blevin's Day was erected in his honor. And the town rejoiced. However this town was known as Fear Town, and even worse, it was located in New Jersey. And in Fear Town, New Jersey, USA, strange things occur. Things like... Anorexic Ghosts, Real-life PUBG, strange long text acronyms, and the Devil himself- who writes for Jimmy Fallon.","player_loc":"https://roosterteeth.com/embed/theater-mode-2018-episode-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/802a50f2-b880-455b-acd4-5ae541119199.jpg/sm/TM53THUMB.jpg","duration":5629,"publication_date":"2018-03-09T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2018-wheel-of-fortune","changefreq":"weekly","video":[{"title":"2018:E3 - Wheel of Fortune","description":"We spun the roulette wheel and it said it spin the Wheel of Fortune. It's a circle of strife.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2018-wheel-of-fortune","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/29f1cd19-5008-4580-a520-5a714de18133.jpg/sm/Wheelthumb.jpg","duration":1649,"publication_date":"2018-03-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-ultimate-chicken-horse-chicky-doo-goo-6","changefreq":"weekly","video":[{"title":"2018:E30 - Ultimate Chicken Horse - Chicky Doo Goo (#6)","description":"Ha cha cha cha. The boys are playing more Ultimate Chicken Horse. Who doo most goo?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-ultimate-chicken-horse-chicky-doo-goo-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a80fbb1-7792-464a-96ee-4c7d69f11aa0.jpg/sm/Thumb030918UltimateChickenHorseV1.jpg","duration":2139,"publication_date":"2018-03-09T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-303-ya-dead-ya-dead-part-1","changefreq":"weekly","video":[{"title":"2018:E29 - Minecraft - Episode 303 - Ya Dead, Ya Dead (Part 1)","description":"After 300 episodes, the boys and girl of Achievement Hunter feel they're pretty good at Minecraft. Today, they're ready to see how they fare against Minecraft's hardest difficulty with no respawns. In this world, when ya dead, ya dead.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-303-ya-dead-ya-dead-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e93a9c7-e2c4-4fdd-8378-ae18f33c7af4.jpg/sm/THUMB030818MCYDYD1.jpg","duration":3970,"publication_date":"2018-03-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-genital-jousting-story-mode-part-1","changefreq":"weekly","video":[{"title":"2018:E5 - Genital Jousting: Story Mode (Part 1)","description":"Gavin, Michael, and Jack watch Ryan play through the story of genital John, a willy on a mission to find a date for his high school reunion. Don't miss out on the best video game story of 2018.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-genital-jousting-story-mode-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7e8e9120-ec76-4cc0-a45b-bfeb66812449.jpg/sm/ThumbLWGenitalJoustingV1.jpg","duration":3403,"publication_date":"2018-03-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-sky-factory-finale","changefreq":"weekly","video":[{"title":"2018:E28 - Let's Play Minecraft - Episode 302 - Sky Factory Finale (Part 41)","description":"With the Chaos Dragon defeated, the crew decides to build one last thing before leaving the Sky Factory, the Draconic Reactor.\r\n\r\nOn today's episode, Ryan, Jeremy, and Jack do all the heavy lifting, Lindsay goes nuts for donuts, Michael achieves perfect stealth, Gavin pushes a bad button, and Geoff lives the good life in the New World.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-sky-factory-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/88fbb495-a019-457f-940a-431d3fc7a627.jpg/sm/THUMB030818SkyFactoryFinalev2.jpg","duration":3180,"publication_date":"2018-03-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gta-v-shocker-x","changefreq":"weekly","video":[{"title":"2018:E7 - GTA V - Shocker X","description":"The boys ain't the biggest fans of this obstacle course. Shocking I know. If you would also like to learn to hate wind towers here's the map by Kyle (KyleDoesGTA). https://socialclub.rockstargames.com/games/gtav/xboxone/jobs/job/iUH9iJyIHkuWtaHy1iohHg","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gta-v-shocker-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/70c620f4-68af-4ccf-8875-fe36feaa2a22.jpg/sm/TTDGTA5ShockerXv2.jpg","duration":2007,"publication_date":"2018-03-07T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-playerunknown-s-battlegrounds-keep-gavin-alive","changefreq":"weekly","video":[{"title":"2018:E27 - PLAYERUNKNOWN'S Battlegrounds - Keep Gavin Alive","description":"I decree our PUBG goal is simple, see? Don't die and keep an eye on Gavin (what a guy). Then loot the loot and make your car horn toot as y'all commute. Now scoot!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-playerunknown-s-battlegrounds-keep-gavin-alive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed45e2a8-dd05-47ce-906e-1c5eb1866115.jpg/sm/keepgavalive.jpg","duration":2856,"publication_date":"2018-03-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2018-biggie-keepie-uppie","changefreq":"weekly","video":[{"title":"2018:E1 - Biggie Keepie Uppie","description":"In the spirit of bigger is better, we make Keepie Uppie as biggie as it gets with the biggiest beach ball we could find! Heaven help our equipment.","player_loc":"https://roosterteeth.com/embed/between-the-games-2018-biggie-keepie-uppie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/35a669f7-93d7-470e-b936-b604cd2a6ed7.jpg/sm/ThumbBiggieKeepieUppie.jpg","duration":665,"publication_date":"2018-03-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-dead-by-daylight-jigsaw-feat-dodger-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E26 - Dead by Daylight - Jigsaw with Dodger - AH Live Stream","description":"Big thanks to Vincero for sponsoring today’s live stream. Go to http://www.vincerocollective.com/achievement and enter the promo code HUNTER to get 15% off your entire order! Special guest Dodger \"Dexbonus\" joins the gang as they fight for their lives in Dead by Daylight!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-dead-by-daylight-jigsaw-feat-dodger-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ba2e5d57-b836-47eb-891f-d859907595bc.jpg/sm/pubg_stream_thumb.jpg","duration":1579,"publication_date":"2018-03-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-battle-buddies-hunt-showdown","changefreq":"weekly","video":[{"title":"2018:E9 - Battle Buddies - Hunt: Showdown","description":"A demon has been spotted in an infected area outside of Austin. There are also three other mercenary duos trying to take it down. Prove why you're the best.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-battle-buddies-hunt-showdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ee2293b-78a7-407b-8c38-3460763d1713.jpg/sm/ThumbBBHuntV1.jpg","duration":1175,"publication_date":"2018-03-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-mario-party-6-jeremy-dueley-part-1","changefreq":"weekly","video":[{"title":"2018:E23 - Mario Party 6 - Jeremy Dueley (Part 1)","description":"Michael, Gavin, Ryan, and Jeremy spend all day and night up in the Towering Treetops as they fight for glory. Glory in this case is stars.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-mario-party-6-jeremy-dueley-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/da27a290-796b-43a7-89bf-e1f198f3e66b.png/sm/LPMarioParty6.png","duration":2599,"publication_date":"2018-03-05T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-trivial-pursuit-uk-edition-15","changefreq":"weekly","video":[{"title":"2018:E24 - Trivial Pursuit – UK Edition (#15)","description":"Achievement Hunter accidentally clicked UK English before playing Trivial Pursuit. Can Gavin take a win with his home field advantage?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-trivial-pursuit-uk-edition-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71096ab7-f611-4d37-a107-86d4daacf46b.jpg/sm/ThumbTrivialPursuit030517V2.jpg","duration":3167,"publication_date":"2018-03-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-barrel-of-fun","changefreq":"weekly","video":[{"title":"2018:E4 - Barrel Of Fun","description":"Get you some brand new AH merch: https://store.roosterteeth.com/collections/achievement-hunter\r\nIt's AHWU 411! The crew throws Geoff in a giant barrel and then looks at some naughty images.","player_loc":"https://roosterteeth.com/embed/ahwu-2018-barrel-of-fun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/63030d8f-2263-4134-bf33-9335c1a3dd0d.jpg/sm/AHWU411_v3.jpg","duration":1049,"publication_date":"2018-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-working-on-his-semen-game-last-call-118","changefreq":"weekly","video":[{"title":"2017:E58 - Working On His Semen Game - Last Call #118","description":"The AH Crew stand up to talk about magic tricks, an old NES console, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-working-on-his-semen-game-last-call-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7846297e-cafd-401c-a1fb-f3f41393e770.jpg/sm/OFF118PSTN.jpg","duration":680,"publication_date":"2018-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-the-doomsday-scenario-heist-finale","changefreq":"weekly","video":[{"title":"2018:E25 - GTA V - The Doomsday Scenario: Heist (Finale)","description":"We use a Volatol jet to storm a base, clear it out, stop a warhead from launching, and save the day.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-the-doomsday-scenario-heist-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f252ca0d-c161-49e4-a63f-c3bfd587f695.jpg/sm/THumb030418GTAVdoomsdayheistFINALE.jpg","duration":4887,"publication_date":"2018-03-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-118","changefreq":"weekly","video":[{"title":"2018:E118 - Appreciate Imperfection: The Achievement Hunter Story #118","description":"The AH Crew sit down to talk about the new table, stuff going wrong, why they play games, and more on this week's Off Topic!\r\n\r\nThis episode originally aired March 2, 2018 and is sponsored by Dollar Shave Club (http://bit.ly/2EfjpqA) and Honey (http://bit.ly/2nQ6BQi)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4b5f4a40-4a91-4170-8917-a022e996be89.jpg/sm/OFF118TN.jpg","duration":8741,"publication_date":"2018-03-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2018-episode-52","changefreq":"weekly","video":[{"title":"2018:E3 - Episode #52: Blood Hook","description":"FISH!! Welcome to the 2018 Achievement Hunter Theater Mode Finishing Jamboree! Try putting that on a shirt. Seriously, try putting on a shirt. We need more merch ideas. Someone thought, you know what story hasn't been told in a while- The Most Dangerous Game. And then added fishing.","player_loc":"https://roosterteeth.com/embed/theater-mode-2018-episode-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/10532aa2-86f0-4025-b0b5-b72f99201c2e.jpg/sm/TM52THUMB.jpg","duration":5649,"publication_date":"2018-03-02T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-oregon-trail-1-guns-bikes-and-the-open-road","changefreq":"weekly","video":[{"title":"2018:E22 - Oregon Trail #1 - Guns, Bikes, and the Open Road (7 Days to Die)","description":"Five survivors, Geoffre Geoffediah Geofferson, Rybediah, Brandeen, Snaggy, and Cleg Dixon, set off on a journey to the south west in search of Oregon, a paradise in the apocalypse.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-oregon-trail-1-guns-bikes-and-the-open-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d71eb49b-3533-4b9a-b404-0d3166c9268c.jpg/sm/AH7DaysOregonTrailv5.jpg","duration":2816,"publication_date":"2018-03-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-siege-outbreak-2","changefreq":"weekly","video":[{"title":"2018:E21 - Rainbow Six: Siege - Outbreak (#2)","description":"The crew continues their hands-on time with Rainbow's Latest DLC, Operation Chimera. Let's see how they do when they crank up the infected to an even harder difficulty.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-siege-outbreak-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/da6e3479-1023-48d0-b50b-d5c9ec94bde9.jpg/sm/ThumbRainbowSixOutbreakPart2.jpg","duration":2031,"publication_date":"2018-03-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-sky-factory-1","changefreq":"weekly","video":[{"title":"2018:E8 - Best of Achievement Hunter - Sky Factory #1","description":"From Vein Mining and \"Simple\" Chicken Farming to Jetpacks and Tiny Potato Masks, this is the Best of Achievement Hunter Sky Factory Part 1.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-sky-factory-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4431ee5b-bb18-4de1-925d-79efeb349b7d.jpg/sm/THUMB030118BestofSkyFactory.jpg","duration":1478,"publication_date":"2018-03-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-301-sky-factory-part-40","changefreq":"weekly","video":[{"title":"2018:E20 - Minecraft - Episode 301 - Sky Factory Part 40","description":"Achievement Hunter is finally facing off against the guardian of chaos, the Chaos Dragon.\r\n\r\nOn today's episode, Ryan fights the Chaos Dragon, Jack fights the Chaos Dragon, Gavin fights the Chaos Dragon, Jeremy fights the Chaos Dragon, Michael fights the Chaos Dragon, Lindsay attempts to fight the Chaos Dragon, and Geoff hangs out with Millie the chicken.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-301-sky-factory-part-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3fe1ee27-5001-453e-9520-d81b764dc252.jpg/sm/Thumb030118SkyFactory40.jpg","duration":4152,"publication_date":"2018-03-01T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gta-v-poosh-sploosh","changefreq":"weekly","video":[{"title":"2018:E6 - GTA V - Poosh Sploosh","description":"Four teams of two try to commandeer a fire truck and 'poosh' everyone off the platform with some 'sploosh.'","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gta-v-poosh-sploosh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/22a8ce1a-04f4-48f7-ab6d-d710b89746b4.jpg/sm/TDD_PooshSploosh_v6.jpg","duration":1282,"publication_date":"2018-02-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-overcooked-chaos-kitchen-8","changefreq":"weekly","video":[{"title":"2018:E19 - Overcooked - Chaos Kitchen (#8)","description":"The gang is back to showcase some chaotic culinary skills. Welcome to the chaos kitchen.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-overcooked-chaos-kitchen-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad24f515-33d0-4971-95b8-4fda5db364cd.jpg/sm/OVERCOOKED8Thumb.jpg","duration":2596,"publication_date":"2018-02-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-hitman-elusive-target-the-twins","changefreq":"weekly","video":[{"title":"2018:E4 - Hitman Elusive Target: The Twins","description":"Ryan escalates his mission by making up new rules about clowns and cans of spaghetti. Gavin helpfully reminds him to find 'The Twins.'","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-hitman-elusive-target-the-twins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/885e74b4-92b2-47b5-a22d-85a69d484b31.jpg/sm/Thumb022718HitmanTwinsV2.jpg","duration":2020,"publication_date":"2018-02-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-siege-operation-chimera","changefreq":"weekly","video":[{"title":"2018:E18 - Rainbow Six: Siege - Operation Chimera","description":"Special thanks to Vincero for sponsoring today’s live stream. Go to http://www.vincerocollective.com/ahlivefeb18 and enter the promo code HUNTER to get 15% off your entire order!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-siege-operation-chimera","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5be71571-6cae-47bf-af4c-24161406e7b0.jpg/sm/pubg_stream_thumb.jpg","duration":1742,"publication_date":"2018-02-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-her-majesty-s-spiffing","changefreq":"weekly","video":[{"title":"2017:E32 - Her Majesty's Spiffing","description":"Captain Gavin (English) and Sub-lieutenant Michael (Jones) lead a colonization mission to make Britain great again.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-her-majesty-s-spiffing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/539d72f8-1d36-4ca8-bc5d-bbae22c46b85.png/sm/PPHMSpiffingV002.png","duration":3905,"publication_date":"2018-02-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-jeopardy-gavin-googled","changefreq":"weekly","video":[{"title":"2018:E17 - Jeopardy! - Gavin Googled (#7)","description":"Musical interludes and misinformation, looks like just another ill fated expedition into Jeopardy!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-jeopardy-gavin-googled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3e4854d4-c74f-43d2-8707-853d575bff66.jpg/sm/jeopardythumbv1.jpg","duration":1777,"publication_date":"2018-02-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-that-one-time-we-got-drunk-again-last-call-117","changefreq":"weekly","video":[{"title":"2017:E57 - That One Time We Got Drunk… Again - Last Call #117","description":"The AH Crew stand up to talk about clamps, drunk stuff, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-that-one-time-we-got-drunk-again-last-call-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7370c82b-bf6d-4e82-920b-95c972901ec8.jpg/sm/OFF117psTHUMB.jpg","duration":1501,"publication_date":"2018-02-25T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-receiving-and-destroying","changefreq":"weekly","video":[{"title":"2018:E3 - Receiving and Destroying","description":"Thanks Honey for sponsoring today’s video. Go to http://joinhoney.com/ahwu\r\nThere is very little time between receiving a gift and destroying said gift the Achievement Hunter office.","player_loc":"https://roosterteeth.com/embed/ahwu-2018-receiving-and-destroying","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aea5ef85-4a65-4398-8366-5133de8fb643.jpg/sm/AHWU_410_v5.jpg","duration":999,"publication_date":"2018-02-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-the-doomsday-scenario-setup-doomsday-heist-9","changefreq":"weekly","video":[{"title":"2018:E13 - GTA V - The Doomsday Scenario: Setup - Doomsday Heist (#9)","description":"We intercept an air convoy, take down a heavy-lift chopper, recover a Barrage ATV, then steal a Khanjali tank from a scrapyard in the desert.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-the-doomsday-scenario-setup-doomsday-heist-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/94e68782-a29e-4caa-986d-b3a5ea0eadeb.jpg/sm/thumb022518GTAVdoomsdayPart9.jpg","duration":2904,"publication_date":"2018-02-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-117","changefreq":"weekly","video":[{"title":"2018:E117 - Where Did The Bad Man Bite You? - Off Topic #117","description":"The AH Crew sit down to talk about shorts, ghost hunting, the end of moonball, and more on this week's Off Topic! Recorded live at RTX Presents!\n\nThis episode originally aired February 23, 2018 and is sponsored by Felix Gray (http://bit.ly/2DmNsLO) and MeUndies (http://bit.ly/2EfibM0)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aab5bb92-a40c-4d61-b862-8a1d2ec19724.jpg/sm/OFF117THUMB.jpg","duration":8895,"publication_date":"2018-02-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fibbage-3-with-the-derp-crew","changefreq":"weekly","video":[{"title":"2018:E16 - Fibbage 3 with The Derp Crew","description":"Achievement Hunter and special guests, Chilled Chaos, GaLm, Ze, and Tom Fawkes flex their fibbing muscles for a game of Fibbage 3.\r\nCheck out the Derp Crew Here.\r\nChilled Chaos: https://www.youtube.com/user/CriousGamers\r\nGaLm: https://www.youtube.com/user/GaLmHD\r\nZe: https://www.youtube.com/user/ZeMachinima\r\nTom Fawkes: https://www.youtube.com/user/TomKitsune","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fibbage-3-with-the-derp-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/70ff295f-5bce-4ac7-a230-9edb384e09d5.png/sm/LPFibbage3DerpCrewV002.png","duration":2160,"publication_date":"2018-02-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2018-episode-51","changefreq":"weekly","video":[{"title":"2018:E2 - Episode #51: Sociopathia","description":"Remember that one blonde lady from Episode 3 of Theater Mode? Me neither, but she's in this episode too.There's a lot of creepy/kinky/murdery doll stuff, but it's essesntially a girl-next door movie, with a dash of Fifty Shades of Grey, and a hint of stabby knife play.","player_loc":"https://roosterteeth.com/embed/theater-mode-2018-episode-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d29d2feb-1910-440f-8233-3c8c78b5b1b5.jpg/sm/TM51THUMB.jpg","duration":5516,"publication_date":"2018-02-23T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fore-honor-infinite-minigolf-hangar-37-7","changefreq":"weekly","video":[{"title":"2018:E15 - Fore Honor - Infinite Minigolf - Hangar 37 (#7)","description":"The gang golf in space and no matter what they say, you can definitely hear them scream.\r\nBuy the Fore Honor shirt: https://store.roosterteeth.com/collections/achievement-hunter/products/fore-honor-tee?variant=44769476229","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fore-honor-infinite-minigolf-hangar-37-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a7b4b94-4fbd-4f5a-96f4-32f41b30397e.jpg/sm/ThumbForeHonorHanger37V1.jpg","duration":2425,"publication_date":"2018-02-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-siege-outbreak","changefreq":"weekly","video":[{"title":"2018:E14 - Rainbow Six: Siege - Outbreak","description":"The gang travels to the Siege Invitational and gets hands-on time with Rainbow's latest DLC, Operation Chimera. Can they push through hordes of infected citizens and survive the infection?","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-siege-outbreak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/af0a4259-7878-4aaf-9ae9-25f6a9ad1b5b.jpg/sm/pubg_stream_live.jpg","duration":1781,"publication_date":"2018-02-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-michael-marries-gavin","changefreq":"weekly","video":[{"title":"2018:E4 - Michael Marries Gavin","description":"It's Michael and Gavin's wedding day, but Ryan can't seem to stop accidentally objecting.\r\nAnimated by Jaime Aguilar\r\nOriginal audio from: https://www.youtube.com/watch?v=fCNtm35LmFs and https://www.youtube.com/watch?v=1iVAtjIwLQE","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-michael-marries-gavin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28f3ee1d-a692-48e6-8c6d-62c0db9a0240.png/sm/Thumb022218AnimatedGreenWedding.png","duration":151,"publication_date":"2018-02-22T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-minecraft-episode-300-sky-king-ryan","changefreq":"weekly","video":[{"title":"2018:E12 - Minecraft - Episode 300 - Sky King Ryan","description":"It's Minecraft episode 300! In celebration, Achievement Hunter is finally ready to crown a new king (178 episodes later).","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-minecraft-episode-300-sky-king-ryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6bb5e0a9-708f-4bbf-a99d-9c09ac788d67.jpg/sm/022218MCSkyKingRyan.jpg","duration":3315,"publication_date":"2018-02-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gta-v-extreme-footrace","changefreq":"weekly","video":[{"title":"2018:E5 - GTA V - Extreme Footrace","description":"One track, two directions, and some Phantom Wedges are between those on foot and the finish line. How hard could that be?","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gta-v-extreme-footrace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/063b3724-ac84-46df-8ef6-90849e34f8d2.png/sm/footrace.png","duration":640,"publication_date":"2018-02-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-playerunknown-s-battlegrounds-the-honkin-homies","changefreq":"weekly","video":[{"title":"2018:E11 - PlayerUnknown's BattleGrounds: The Honkin' Homies","description":"PUBG is a game of stealth and precision, so obviously the best strategy is to honk your car horn at everything to give away your position.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-playerunknown-s-battlegrounds-the-honkin-homies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a4e804b2-02d5-4f51-a17a-03d9a1fa11f0.jpg/sm/ThumbPUBG022118.jpg","duration":3393,"publication_date":"2018-02-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-shadow-of-the-colossus-remastered-by-earth-and-sky-part-2","changefreq":"weekly","video":[{"title":"2018:E3 - Shadow of the Colossus Remastered: By Earth and Sky (Part 2)","description":"The colossus hunt continues! On this episode, Ryan and his trusty horse are after Phaedra the llama, Avion the bird, and Barba from ZZ Top.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-shadow-of-the-colossus-remastered-by-earth-and-sky-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d4ac7b88-070d-42ea-9260-7e1acb255f36.jpg/sm/Thumb022018LWSotCV3.jpg","duration":2782,"publication_date":"2018-02-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-between-the-games-sledgeball","changefreq":"weekly","video":[{"title":"2018:E7 - Between the Games - Sledgeball","description":"Geoff has flipped the world of sports upside-down with his new game, Sledgeball. Take a sledge, take a ball, and try not to get hurt.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-between-the-games-sledgeball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d44542d5-5850-46ee-a78b-0e85d41276e8.jpg/sm/sledgydoov5.jpg","duration":311,"publication_date":"2018-02-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-fortnite-battle-royale-valentine-s-day-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E10 - Fortnite: Battle Royale - Valentine's Day - AH Live Stream","description":"We smash buildings and break hearts on Valentine's Day in Fortnite's Battle Royale. This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-fortnite-battle-royale-valentine-s-day-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c4ec6f3b-c97d-4c43-9857-1e1ebe52b561.jpg/sm/Thumb022018LPFortniteStream.jpg","duration":2354,"publication_date":"2018-02-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-ghost-recon-wildlands-predator-hunt","changefreq":"weekly","video":[{"title":"2018:E6 - Battle Buddies - Ghost Recon Wildlands: Predator Hunt","description":"The Battle Buddies have been sent to Bolivia because the locals are being terrorized by some sort of monster. Their mission is to track it down and kill it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-ghost-recon-wildlands-predator-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a1d0497d-bbf5-4898-b70e-f91df4811084.jpg/sm/ThumbBBWildlandsV4.jpg","duration":1411,"publication_date":"2018-02-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-it-s-quiz-time-all-american-math-2","changefreq":"weekly","video":[{"title":"2018:E8 - It's Quiz Time – All American Math (#2)","description":"Everything's American. What even is math? Join Achievement Hunter plus Gus Sorola for Quiz Time!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-it-s-quiz-time-all-american-math-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f7485497-0b0d-44c7-84ca-da9f91da6711.jpg/sm/Thumb021918QuizTimeV2.jpg","duration":3772,"publication_date":"2018-02-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-mark-hamill-s-milk","changefreq":"weekly","video":[{"title":"2018:E2 - Mark Hamill's Milk","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU\r\nIt's AHWU #409! Achievement Hunter preps for Giant Beach Ballie-Doo and then drinks some milk Mark Hamill-style. Get tickets for Off Topic Live at https://www.universe.com/events/rtx-presents-live-from-austin-tickets-austin-QHXR9D","player_loc":"https://roosterteeth.com/embed/ahwu-2018-mark-hamill-s-milk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c41c8f6a-3886-46a4-aa84-c339f78394de.jpg/sm/Thumb021818AHWU.jpg","duration":1103,"publication_date":"2018-02-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-only-just-starting-last-call-116","changefreq":"weekly","video":[{"title":"2017:E56 - Only Just Starting - Last Call #116","description":"The AH Crew stand up to talk about upcoming projects, Off Topic live, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-only-just-starting-last-call-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/784be6e4-918d-4a3a-bf40-80ddc4855bc6.jpg/sm/OFF116PSTHUMB.jpg","duration":998,"publication_date":"2018-02-18T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-the-doomsday-scenario-setup-doomsday-heist-8","changefreq":"weekly","video":[{"title":"2018:E9 - GTA V - The Doomsday Scenario: Setup - Doomsday Heist (#8)","description":"We attempt to purchase Agent 14 from Merryweather Security, then use the Chernobog to escort and protect Agent ULP as he escapes from his captors.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-the-doomsday-scenario-setup-doomsday-heist-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f2c8a60c-f75e-4fbe-a34f-daabf1e05891.jpg/sm/ThumbGTAVDoomsdayPart8.jpg","duration":3322,"publication_date":"2018-02-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-116","changefreq":"weekly","video":[{"title":"2018:E116 - #Make Minecraft Great Again - Off Topic #116","description":"The AH Crew sit down to talk about PUBG chicken dinners, the old Trevor rumor, film villains, and are later joined by Brian and Chris Camozzi on this week's Off Topic!\r\n\r\nThis episode originally aired February 16, 2018 and is sponsored by MVMT (http://bit.ly/2kg8JSD), Daily Harvest (http://bit.ly/2qV3vOV), and Audible (http://adbl.co/2o8T6uq)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c4c5a1a1-97a4-4a23-ba53-3560b96cf826.jpg/sm/OFF116THUMB.jpg","duration":7740,"publication_date":"2018-02-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-friday-the-13th-with-criken-tomato-and-bedbananas","changefreq":"weekly","video":[{"title":"2018:E7 - Friday the 13th with Criken, Tomato, and BedBananas","description":"A roleplay special\r\n\r\nStarring Criken as Chad Worthington (https://www.youtube.com/user/Criken2)\r\n\r\nTomato as Sultan of Rimrod (https://www.youtube.com/user/TomatoandToph)\r\n\r\nBedbananas as Brandon (https://www.youtube.com/user/BedBananas)\r\n\r\nMichael Jones as Sned\r\n\r\nTrevor Collins as Mitch\r\n\r\nLindsay Jones as Veronica\r\n\r\nRyan Haywood as Jason Voorhees","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-friday-the-13th-with-criken-tomato-and-bedbananas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dac92d62-d7b4-4d5d-8958-542806f9b0ef.jpg/sm/Thumb021718FridayThe13thWithCrikenAndPalsv2.jpg","duration":1895,"publication_date":"2018-02-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2018-episode-50-frankenstein-s-hungry-dead","changefreq":"weekly","video":[{"title":"2018:E1 - Episode #50: Frankenstein's Hungry Dead","description":"Move over Mary Shelley, there's a new Frankenstein in town! Follow a group of teens that break into a wax museum to act out their sexual frustration only to find an legion of zombies. Also that Eastern European guy with the funny mustache might show up. What's his name?...Oh, Adam Kovic!","player_loc":"https://roosterteeth.com/embed/theater-mode-2018-episode-50-frankenstein-s-hungry-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2707db50-f84b-44d5-9109-fdf327e15a75.jpg/sm/TM50THUMB.jpg","duration":4853,"publication_date":"2018-02-16T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2018-trivia-murder-party","changefreq":"weekly","video":[{"title":"2018:E2 - Trivia Murder Party","description":"The Achievement Hunter crew is trapped in a game of murder. The only way to escape alive is through trivia. Who's the smartest?","player_loc":"https://roosterteeth.com/embed/rouletsplay-2018-trivia-murder-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad4fab2b-e289-4eea-9b4e-35b4d3b01d13.jpg/sm/ThumbMurderParty.jpg","duration":956,"publication_date":"2018-02-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-january-2018","changefreq":"weekly","video":[{"title":"2018:E5 - Best of Achievement Hunter - January 2018","description":"From Sky Factory Marriages to GTA IV Cops n' Crooks Justice to the Sea of Thieves Jailing of Gavin Free, the Achievement Hunter boys kick 2018 off with a bang!\r\nEdited by Kyle Moran","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-january-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13bf33b0-3a80-472c-87b3-9411abc15849.jpg/sm/Thumb021518BestofJanuary.jpg","duration":1392,"publication_date":"2018-02-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-the-thrill-of-the-chase","changefreq":"weekly","video":[{"title":"2018:E6 - Minecraft - Episode 299 - Sky Factory Part 38","description":"Thank you for stopping by the Lad Pad. Please consider a hearty donation. Each monies we get helps keep the decobench running.\r\n\r\nOn today's episode, Gavin overdecorates, Michael takes donations, Jeremy upgrades some armor, Ryan and Jack have some chance cube misfortune, and Simple Geoff has trouble getting his trees up.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-the-thrill-of-the-chase","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a546ab9b-2368-4bda-8c78-c5111c01796a.jpg/sm/Thumb021518SkyFac38.jpg","duration":3742,"publication_date":"2018-02-15T17:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gtav-reflect-tunnel","changefreq":"weekly","video":[{"title":"2018:E4 - GTA V - Rocket Reflect Tunnel","description":"Achievement Hunter's back for some more rocket reflecting. One team must navigate their helicopter through a dangerous tunnel while trying not to be obliterated by the other team's homing rockets. Good thing there's more flare guns laying around.\r\n\r\nDownload the map here! http://rsg.ms/6e518b3","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gtav-reflect-tunnel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15b013e3-2bfe-4142-918c-670dd38646b1.jpg/sm/ThumbReflectTunnel.jpg","duration":1190,"publication_date":"2018-02-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-rainbow-six-vegas-2-it-s-mcglupis","changefreq":"weekly","video":[{"title":"2018:E5 - Rainbow Six Vegas 2 - It's Miglupis!","description":"Achievement Hunter makes new faces in Rainbow Six Vegas 2, as they think about an Australian delicacy.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-rainbow-six-vegas-2-it-s-mcglupis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f07d4b50-499e-46d7-b028-deeae4650452.png/sm/LPR6Vegas2MiglupisV002.png","duration":2352,"publication_date":"2018-02-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-hitman-escalation-ninjassassin-2","changefreq":"weekly","video":[{"title":"2018:E2 - Hitman Escalation - The Meiko Incarnation","description":"The crew take turns at more escalation missions in Hitman. Ryan's obsession with ninjas pays off as the game turns it into the theme.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-hitman-escalation-ninjassassin-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c79726f-5f88-4b88-8cec-c52d58de0aa8.jpg/sm/Thumb021318LWHitmanEscalation2.jpg","duration":3632,"publication_date":"2018-02-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-playerunknown-s-battlegrounds-tactical-procedures-ah-live-stream","changefreq":"weekly","video":[{"title":"2018:E4 - PLAYERUNKNOWN'S Battlegrounds - Tactical Procedures","description":"Achievement Hunter gears up for another shot at a chicken dinner. Will they feast on the battlefield or starve at the hands of their enemies? Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get a DSC Starter Set for just $5.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-playerunknown-s-battlegrounds-tactical-procedures-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a2323c1-a3fe-4d97-9a11-fd5e4bfd07b9.jpg/sm/pubg_stream_thumb.jpg","duration":1831,"publication_date":"2018-02-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-sword-with-sauce","changefreq":"weekly","video":[{"title":"2017:E31 - Sword with Sauce","description":"Michael and Gavin get to play with swords, guns, coma darts, exploding head crabs, and more in Sword with Sauce.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-sword-with-sauce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce974e0d-5be2-4031-ab91-59dc0b704d8f.png/sm/PPSwordsWithSauceV1.png","duration":1726,"publication_date":"2018-02-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-trivial-pursuit-pumpkin-pie-ftw-part-14","changefreq":"weekly","video":[{"title":"2018:E3 - Trivial Pursuit – Pumpkin Pie, FTW! (Part 14)","description":"Ryan, Gavin, Jeremy and Trevor show off their smarts in another game of Trivial Pursuit!","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-trivial-pursuit-pumpkin-pie-ftw-part-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/01092de5-53b4-4248-ba23-79b1c5125bc9.jpg/sm/Thumb021218TrivialPursuitV2.jpg","duration":3137,"publication_date":"2018-02-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2018-trash-smash","changefreq":"weekly","video":[{"title":"2018:E1 - Trash Smash","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\r\n\r\nIt's AHWU 408! With our recent room rearrangement, we've accumulated more trash than usual. Might as well smash it.","player_loc":"https://roosterteeth.com/embed/ahwu-2018-trash-smash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5f5568d5-60f0-4488-a215-f2011c32ed5c.jpg/sm/ahwu408.jpg","duration":875,"publication_date":"2018-02-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-gta-v-lindsay-wins","changefreq":"weekly","video":[{"title":"2018:E2 - GTA V - Lindsay Wins","description":"The crew sets out to let Lindsay win 1st place in an entire set of GTA V transform races. Forget about Criminal Masterminds. This is the hardest task Achievement Hunter has ever taken on.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-gta-v-lindsay-wins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45a68cd1-0308-4848-a624-1aeef18503a0.png/sm/Thumb021118GTALindsayWinsV3.png","duration":2194,"publication_date":"2018-02-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2018-115","changefreq":"weekly","video":[{"title":"2018:E115 - The Kids From Hell - Off Topic #115","description":"The AH Crew sit down to talk about their adventures in Australia, what they were like as kids, annoying eating habits, and more on this week's Off Topic!\r\n\r\nThis episode originally aired February 9, 2018 and is sponsored by Honey (http://bit.ly/2nQ6BQi), Casper (http://bit.ly/2DpSEPv), and Dollar Shave Club (http://bit.ly/2EfjpqA)","player_loc":"https://roosterteeth.com/embed/off-topic-2018-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6fd6f1f-cbef-4677-8559-48fdd2ce170a/sm/2037887-1518216900342-OFF115THUMB.jpg","duration":4896,"publication_date":"2018-02-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2018-let-s-play-mario-party-5-with-prozd-sweet-dream","changefreq":"weekly","video":[{"title":"2018:E1 - Let's Play - Mario Party 5 with ProZD - Sweet Dream","description":"Special guest ProZD plays as Wario, Lindsay plays as Daisy, Michael plays as Yoshi, and Jeremy plays as Boo in Mario Party 5.","player_loc":"https://roosterteeth.com/embed/let-s-play-2018-let-s-play-mario-party-5-with-prozd-sweet-dream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2c0ee3f-23b8-4121-925e-d7a7610c4d0c.jpg/sm/Thumb021018LPMarioPartyWithProZD.jpg","duration":1861,"publication_date":"2018-02-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-it-s-a-long-way-down-13","changefreq":"weekly","video":[{"title":"2017:E419 - 7 Days to Die: It's a Long Way Down (#13)","description":"It's night 14, so craft some spikes, load up your guns and try to get to higher ground! \r\nIn this episode: Ryan and Jeremy fortify the base, Jack goes to get his backpack, Gavin falls a lot, and Michael sighs a lot.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-it-s-a-long-way-down-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/754fc511-f8e8-4f48-bdc4-ae3adb4ddbae.jpg/sm/7DaysEp13v4.jpg","duration":2279,"publication_date":"2018-02-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-the-garbo-family","changefreq":"weekly","video":[{"title":"2018:E3 - The Garbo Family","description":"Their eyes are really googly. Their sales are pretty kooky. They probably killed Loopy. The Garbo Family.\r\n\r\nOriginal audio from: https://youtu.be/pBfaXHTWn_E\r\nAnimated by Shaun Cunningham​","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-the-garbo-family","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f6c2ca4-c57f-4628-a27b-b2e5d1adf020.jpg/sm/020818AHAnimatedGarbo.jpg","duration":84,"publication_date":"2018-02-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-298-sky-factory-part-37","changefreq":"weekly","video":[{"title":"2017:E418 - Minecraft - Episode 298 - Sky Factory Part 37","description":"There's so much being built in the sky factory this week: dirt, decorations, buildings, and solar systems.\r\n\r\nOn today's episode, Michael and Gavin keep decorating the Lad Den, Jeremy goes on a dragon journey, Jack builds a solar system, Simple Geoff goes back to square one, Lindsay takes interest in independent business, and Amazon Ryan fixes the computer.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-298-sky-factory-part-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2e66a300-39c0-4711-9531-d1ab65a25d7b.jpg/sm/020818SkyFac37.jpg","duration":3212,"publication_date":"2018-02-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-halo-5-playerunknown-s-battlegrounds","changefreq":"weekly","video":[{"title":"2018:E3 - Halo 5: Playerunknown's Battlegrounds","description":"Someone created Playerunknown's Battlegrounds inside of Halo 5, because of course they did. Watch Achievement Hunter fight each other for that chicken dinner. \r\n\r\nDownload the map here: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=unsorted%20guy#ugc_halo-5-guardians_xbox-one_mapvariant_unsorted%20guy_f0b6d2c6-11ea-472d-83be-cff049e871f1\r\n\r\nDownload the gametype here: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=unsorted%20guy#ugc_halo-5-guardians_xbox-one_gamevariant_unsorted%20guy_bb41c689-9d59-4e39-b321-a4aaed7ba141","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-halo-5-playerunknown-s-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43a105d0-91bf-4f3e-9b71-3a27046971c6.png/sm/020718HaloBattlegrounds.png","duration":1541,"publication_date":"2018-02-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-human-fall-flat-learning-to-climb","changefreq":"weekly","video":[{"title":"2017:E417 - Human Fall Flat: Learning to Climb","description":"Everyone's playing Human Fall Flat, and it's exactly what you would expect: a chaotic, hilarious mess.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-human-fall-flat-learning-to-climb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b9595719-3a34-4c4a-8736-0ba5b92a55d2.jpg/sm/LPHumanFallFlatv2.jpg","duration":2499,"publication_date":"2018-02-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2018-hitman-elusive-target-the-gunrunner","changefreq":"weekly","video":[{"title":"2018:E1 - Hitman Elusive Target: The Gunrunner","description":"Ryan and Gavin each take a crack at taking down Vito Duric, the Gunrunner. Gavin ducks up, while Ryan just clowns around.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2018-hitman-elusive-target-the-gunrunner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a105179-77b9-42ad-a899-11d03fa5e380.png/sm/020618LWHitmanGunrunner.png","duration":1833,"publication_date":"2018-02-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-sea-of-thieves-pirate-misfortunes","changefreq":"weekly","video":[{"title":"2017:E416 - Sea of Thieves: Pirate Misfortunes","description":"The gang sets out to the open sea in search of adventure and tresure. Can they prevail with tresures untold or will the trechorous sea pull them under? This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-sea-of-thieves-pirate-misfortunes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea2ddab6-62a1-431a-9eff-44d89114f0ef.jpg/sm/pubg_stream_live.jpg","duration":2381,"publication_date":"2018-02-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-chaos-corner-stardew-valley-part-2","changefreq":"weekly","video":[{"title":"2018:E4 - Chaos Corner - Stardew Valley - Part 2","description":"Lindsay continues to be an agent of chaos in Stardew Valley while Michael and Andy plead with her to stay focused on the objective.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-chaos-corner-stardew-valley-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4b9e4b2e-4941-40c3-b666-de9c2ad2bb40.png/sm/CCStardewPT2.png","duration":2407,"publication_date":"2018-02-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-new-wheel-of-fortune-gavin-goes-bankrupt-part-2","changefreq":"weekly","video":[{"title":"2017:E414 - New Wheel of Fortune - Gavin Goes Bankrupt (Part 2)","description":"Jeremy, Jack, and Gavin are spinning that wheel for some ammount of fortune again. Gavin starts to go mad as the odds don't seem to be in his favor.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-new-wheel-of-fortune-gavin-goes-bankrupt-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ab04ece2-92fb-4690-8ea2-1b936344faef.png/sm/LPWoFGavinGoesBankruptV002.png","duration":1787,"publication_date":"2018-02-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-the-doomsday-scenario-prep-doomsday-heist-7","changefreq":"weekly","video":[{"title":"2017:E415 - GTA V - The Doomsday Scenario: Prep - Doomsday Heist (#7)","description":"We steal a duffel bag full of money, eliminate an arms dealer, and acquire a Chernobog ballistic missile launcher.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-the-doomsday-scenario-prep-doomsday-heist-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8841dce7-5fe4-48d2-9575-76dd832a9eb1.jpg/sm/Thumb020418gtavdoomsdayhiest07v3.jpg","duration":3159,"publication_date":"2018-02-05T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-our-little-monster-truck","changefreq":"weekly","video":[{"title":"2017:E59 - Our Little Monster Truck","description":"Special thanks to ProFlowers and Shari's Berries for sponsoring today's episode. You can get 20% off a Perfectly Paired gift over $29 featuring beautiful blooms from ProFlowers and dipped strawberries from Shari's Berries by going to http://www.proflowers.com and entering code \"AHWU\" at checkout.\r\n\r\nWe all thought Jeremy was a full-grown human. Turns out he's been a little baby monster truck this whole time.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-our-little-monster-truck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/04da0928-ecad-4d09-87ff-ddd90ac0b526.jpg/sm/ahwuv1.jpg","duration":639,"publication_date":"2018-02-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-last-call-2017-114","changefreq":"weekly","video":[{"title":"2017:E55 - Destroying Tables Through History - Last Call #114","description":"The AH Crew stand up to talk about destroyed tables, Jeremy’s stream getting flagged, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-last-call-2017-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b9a9b177-447c-459f-96d1-e3e0bd804201.jpg/sm/OFF114psTHUMB.jpg","duration":817,"publication_date":"2018-02-04T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-candleman","changefreq":"weekly","video":[{"title":"2017:E85 - Candleman","description":"Thanks to Zodiac Interactive for sponsoring this video. Check out their new game Candleman: The Complete Journey here! http://store.steampowered.com/app/591630/\r\n\r\nJoin Michael, Geoff, Lindsay, and Ryan as they play the platformer, Candleman!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-candleman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/18b52f17-5502-46d9-9b38-c2d3c34e239d.jpg/sm/LWCandlemanv2.jpg","duration":1611,"publication_date":"2018-02-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-114","changefreq":"weekly","video":[{"title":"2017:E114 - I’m Sorry Broadcast - #114","description":"The AH Crew sit down to talk about the new table, gambling, roleplaying, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired February 2, 2018 and is sponsored by Shari’s Berries (http://bit.ly/2EBDpDG), MeUndies (http://bit.ly/2EBDpDG), and ProFlowers (http://bit.ly/2ykkmgZ)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69d08c99-0e4d-4a4e-b40c-31f3e650f971/sm/2037887-1517610692852-OFF114THUMB.jpg","duration":6840,"publication_date":"2018-02-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gang-beasts-granny-games","changefreq":"weekly","video":[{"title":"2017:E413 - Gang Beasts - Granny Games","description":"Achievement Hunter and special guests Criken, Tomato, and BedBananas slap each other around in Gang Beasts. Granny's got a new hip replacement and she's out for blood.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gang-beasts-granny-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bda3bce-f31f-4acb-bbb5-fd394da7f0f3.png/sm/LPGangbeastsWithCrikenV002.png","duration":2324,"publication_date":"2018-02-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fore-honor-golf-with-your-friends-pirate-cove-5","changefreq":"weekly","video":[{"title":"2017:E412 - Fore Honor - Golf With Your Friends - Pirate Cove (#5)","description":"Achievement Hunter plays a couple rounds on the new Pirate Cove map in this fifth installment of Golf With Your Friends.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fore-honor-golf-with-your-friends-pirate-cove-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/667198fa-15f4-435b-856f-aeb2bf8f5014.jpg/sm/Thumb020218ForeHonorGWYFPirateCove.jpg","duration":2759,"publication_date":"2018-02-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-madden-18-super-bowl-lii-special","changefreq":"weekly","video":[{"title":"2017:E411 - Madden 18: Super Bowl LII Special","description":"Achievement Hunter sets out to predict the outcome of Super Bowl LII by playing Madden 18. Using precise calculations, the outcome is guaranteed to be true.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-madden-18-super-bowl-lii-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c2afa64d-7306-4809-a69c-b3f1630c02de.jpg/sm/ThumbSuperBowlV2.jpg","duration":3244,"publication_date":"2018-02-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-batman-beyond-vs-spider-man-2099-questions-answered","changefreq":"weekly","video":[{"title":"S2:E54 - Batman Beyond vs Spider-Man 2099 Questions Answered","description":"The Cast discusses Catwoman vs Black Cat, answers your questions about Batman Beyond vs Spider-man 2099, and gets stoked for the return of the McRib.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-batman-beyond-vs-spider-man-2099-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d26df129-86d1-4577-8b80-b6dd5a373ee1.png/sm/DBC54Torien2.png","duration":2887,"publication_date":"2017-12-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-worst-onomatopoeia-in-comics","changefreq":"weekly","video":[{"title":"S2:E25 - WORST Onomatopoeia in Comics","description":"BAM! POW! BAP! These words bring life to action in comics, but oh man there have been some truly STUPID words created for superhero sounds.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-worst-onomatopoeia-in-comics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/084cdb19-b999-4e18-af90-0101fe7bb6a7.jpg/sm/12012017DoDBOno.jpg","duration":281,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-dc-animated-movies","changefreq":"weekly","video":[{"title":"S2:E47 - DC Animated Movies","description":"While the live action DC movies have been... divisive, there's been no shortage of GREAT animated DC movies and we're counting down the Top 10!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-dc-animated-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/793968b2-9305-49a3-a48b-b70f5554b082.jpg/sm/Top10DCAnimatedMoviesThumb.jpg","duration":599,"publication_date":"2017-11-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-batman-beyond-vs-spider-man-2099-w-commentary","changefreq":"weekly","video":[{"title":"E:E31 - Batman Beyond vs Spider-Man 2099 w/ Commentary","description":"Sam, Chad and Ben give you a look into the making of this episode of DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/death-battle-extras-batman-beyond-vs-spider-man-2099-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/adf7f8c0-6f49-4752-bb29-839f210b5da6.jpg/sm/batmanspidermancommentary.jpg","duration":1112,"publication_date":"2017-11-29T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-batman-beyond-vs-spider-man-2099-dc-vs-marvel","changefreq":"weekly","video":[{"title":"S4:E15 - Batman Beyond VS Spider-Man 2099 (DC VS Marvel)","description":"A classic match-up with a futuristic twist!\n\n\n\nDownload the music from this episode from iTunes today: http://apple.co/2oCQ84R You can also search your music store of choice for Death Battle: Beyond 2099 by Therewolf Media\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer https://twitter.com/BenBSinger\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\nProject Lead: Sam Mitchell https://twitter.com/ScrewAttackSam\n\n\n\n\n\n\n\n\n\nLead Animator: Samuel \"Zack\" Watkins https://twitter.com/xZackAttack27x\n\n\n\n\n\n\n\n\n\nVoice of Terry McGinnis: Stephen Fu https://twitter.com/That_Fu\n\n\n\n\n\n\n\n\n\nVoice of Miguel O'Hara: Todd Haberkorn https://twitter.com/ToddHaberkorn\n\n\n\n\n\n\n\n\n\nVoice of Bruce Wayne: Kent Williams http://www.imdb.com/name/nm0931060/\n\n\n\n\n\n\n\n\n\nVoice of LYla: Alex Moore https://twitter.com/plus3toogres\n\n\n\n\n\n\n\n\n\nAdditional Animation: Luis Cruz https://twitter.com/CVAnimation\n\n\n\n\n\n\n\n\n\nBattle Music by Aaron Caruthers & Carlo Decanini of Werewolf Therewolf https://www.facebook.com/werewolftherewolf\n\n\n\n\n\n\n\n\n\nSound/Editing: Noel Wiggins https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\n\n\n\n\nVideo Editor: Gerardo Mejia https://twitter.com/HybridRain\n\n\n\n\n\n\n\n\n\nCasting/Voice Directing: Marissa Lenti https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\nRecorded at Sound Cadence Studios https://twitter.com/SoundCadence\n\n\n\n\n\n\n\n\n\nAudio Engineer: Patrick Morphy https://twitter.com/mixingmorphy\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA\n\n\n\n\n\n\n\n\n\n\nResearch Team: Max Baney, Matthew Jones, LousyTactician, Carmelo Sampayo, Liam Swan, Devin Swedenburg","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-batman-beyond-vs-spider-man-2099-dc-vs-marvel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78f7ba70-9bae-4b3d-ac59-a84071d146b3/sm/2031125-1511996857117-DB_Thumb_086.jpg","duration":1110,"publication_date":"2017-11-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-kratos-vs-dante-god-of-war-vs-devil-may-cry","changefreq":"weekly","video":[{"title":"S2:E23 - Kratos VS Dante (God of War VS Devil May Cry)","description":"Two brutal, unstoppable forces of violence collide!\n\nThis episode's animator is Neil Robertson! Check out his YouTube: https://www.youtube.com/user/Pizzaman432\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n► Wiz – Ben B. Singer: https://www.twitter.com/BenBSinger\n► Boomstick – Chad James: ►https://www.twitter.com/ScrewAttackChad\n► Lead Animator – Torrian Crawford: ►https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-kratos-vs-dante-god-of-war-vs-devil-may-cry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ba2e1df7-4f09-4033-9162-c9f48d3c72bc.jpg/sm/112417DBXKratosDanteThummnail.jpg","duration":78,"publication_date":"2017-11-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-craziest-iron-man-suits","changefreq":"weekly","video":[{"title":"S2:E46 - Craziest Iron Man Suits","description":"Tony Stark has created some truly incredible Iron Man suits over the years and we're counting down the Top 10 craziest!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-craziest-iron-man-suits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a8880ca-3706-4a08-bcba-d40355117732.jpg/sm/11222017Top10Ironman.jpg","duration":590,"publication_date":"2017-11-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-2-spider-man-2099-crawls-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E30 - Spider-Man 2099 Crawls Into DEATH BATTLE","description":"This Spider-Man is ready to prove that he's the ultimate hero for the future!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-2-spider-man-2099-crawls-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2d24bdb3-1ff1-4563-be9b-33d7f3d4acd4.jpg/sm/11202017DBPReviewSpiderman2.jpg","duration":152,"publication_date":"2017-11-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-movie-madness-sudden-death-53","changefreq":"weekly","video":[{"title":"S2:E0 - Movie Madness | Sudden DEATH #53","description":"The Cast discuss what they like and hate about modern superhero movies.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-movie-madness-sudden-death-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d88db7a3-d3f4-4fa7-af7c-089419f2d512.png/sm/111920SuddenDEATH.png","duration":1168,"publication_date":"2017-11-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-torrian-still-knows-nothing","changefreq":"weekly","video":[{"title":"S2:E53 - Torrian Still Knows Nothing","description":"The cast gives Torrian another pop culture quiz, they share driving stories, and Sam gets hit on at the airport","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-torrian-still-knows-nothing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8fbe9d66-a41c-4c24-845d-f79c9b95251d.jpg/sm/11172017DBCast.jpg","duration":2897,"publication_date":"2017-11-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-the-history-of-mjolnir","changefreq":"weekly","video":[{"title":"S2:E24 - The History of Mjolnir","description":"Jocelyn takes a look at the histoy behind Thor's legendary hammer and who's weilded it!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-the-history-of-mjolnir","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15b8583d-858d-4e2b-86e5-44505abfb53e.jpg/sm/11172017DoDBMjolnir3.jpg","duration":272,"publication_date":"2017-11-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-ninja","changefreq":"weekly","video":[{"title":"S2:E45 - Ninja","description":"The Ninja are the masters of stealth, assassination and just plain awesomeness! So we're counting down the Top 10!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-ninja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3558eb53-6afe-4361-bfda-536d2683119e.jpg/sm/11152017Top10Ninja.jpg","duration":553,"publication_date":"2017-11-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-2-batman-beyond-raves-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E29 - Batman Beyond Jets into DEATH BATTLE","description":"The angsty, teenage Batman of the future is ready to suit up for a DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-2-batman-beyond-raves-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa04c212-cf6b-47dd-b538-8b40e38b908c.jpg/sm/111317DeathBattleBatmanBeyondPreviewTHUMBNAIL.jpg","duration":121,"publication_date":"2017-11-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-naruto-vs-ichigo-questions-answered","changefreq":"weekly","video":[{"title":"S2:E52 - Naruto vs Ichigo Questions Answered","description":"The Cast talks Maui vs Hercules, making Naruto vs Ichigo and answers a few questions about the episode","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-naruto-vs-ichigo-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/85b3f794-05fe-427f-9d8e-b18b17e9e490.png/sm/dbcthumb.png","duration":3506,"publication_date":"2017-11-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-noctis-vs-2b-final-fantasy-vs-nier","changefreq":"weekly","video":[{"title":"S2:E22 - Noctis vs 2B (Final Fantasy vs NieR)","description":"\"What happens when a pretty boy meets a sexy robo-girl? A sword duel, of course!\n\n\n\nThis episode's animator is Kiid! Check out his YouTube: https://www.youtube.com/user/TheRegularGuysXD\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n► Wiz – Ben B. Singer: https://www.twitter.com/BenBSinger\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-noctis-vs-2b-final-fantasy-vs-nier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dc770565-56f6-4166-98d7-15ac3ebff104.jpg/sm/111017_Noctis_2B_Thumbnail.jpg","duration":132,"publication_date":"2017-11-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-season-2-n64-mario-party-mini-games","changefreq":"weekly","video":[{"title":"S2:E44 - N64 Mario Party Mini Games","description":"The Mini Games are obviously the best part of any Mario Party. Out of 186 featured on the N64, Nick is counting down the very best!","player_loc":"https://roosterteeth.com/embed/top-10-season-2-n64-mario-party-mini-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a5d5ea38-6e19-4d73-ae5d-564ff492000d.jpg/sm/Mario-Party-Mini-Games-Thumbnail.jpg","duration":481,"publication_date":"2017-11-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-naruto-vs-ichigo-w-commentary","changefreq":"weekly","video":[{"title":"E:E30 - Naruto VS Ichigo w/ Commentary","description":"Ben, Nick, and Gerardo take us through the making of the clash of Shonen protagonists!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-naruto-vs-ichigo-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d1932a8-9bb0-4695-ab2d-ee58ce6020a4/sm/2056984-1510074339353-Commentary-thumb.jpg","duration":1620,"publication_date":"2017-11-07T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-naruto-vs-ichigo-naruto-vs-bleach","changefreq":"weekly","video":[{"title":"S4:E14 - Naruto VS Ichigo","description":"It's Naruto VS Bleach in our biggest anime fight ever! Two shonen heroes duel to the death. Who will win? Who will die?\n\n\n\nDownload the music from this episode from iTunes today: http://apple.co/2AVj5dX You can also search your music store of choice for Death Battle: Shonen Showdown by Brandon Yates\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer https://twitter.com/BenBSinger \n\n\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n\n\n\n\n\n\nProject Lead: Nick Cramer https://twitter.com/THENervousNick\n\n\n\n\n\n\n\n\n\n\n\n\n\nLead Animator: Luis Cruz https://twitter.com/CVAnimation\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Naruto: Dawn M. Bennett https://twitter.com/DawnMBennettVA\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Ichigo: Adam Park http://bit.ly/1k3kW7A\n\n\n\n\n\n\n\n\n\n\n\n\n\nSound Design/Kurama: Noel Wiggins https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\n\n\n\n\n\n\n\n\nSprite Artist: Chris \"Jerky\" Bastin https://twitter.com/HyperJerk\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdditional Animation: Kervin Alcindor https://www.youtube.com/user/xkareloadedx\n\n\n\n\n\n\n\n\n\n\n\n\n\nBattle Music: Brandon Yates https://twitter.com/bmichaelyates\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideo Editor: Gerardo Mejia https://twitter.com/HybridRain\n\n\n\n\n\n\n\n\n\n\n\n\n\nCasting/Voice Directing: Marissa Lenti https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\n\n\n\n\nAudio Engineer: Patrick Morphy https://twitter.com/mixingmorphy\n\n\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA \n\n\n\n\n\n\n\n\n\n\n\n\n\nResearch Team: Max Baney, Matthew Jones, LousyTactician, Carmelo Sampayo, Liam Swan, Devin Swedenburg","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-naruto-vs-ichigo-naruto-vs-bleach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/568eb723-54cb-4bbe-a85a-e158b6b198ab.png/sm/dbichinar.png","duration":1620,"publication_date":"2017-11-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-51","changefreq":"weekly","video":[{"title":"S2:E51 - Kurama Armstrong","description":"The cast talks Kurama as a jazz musician, Sly Cooper vs Swiper and our editor and sound engineer Noel joins the cast for the first time!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a99a8b28-a608-4897-afe7-1fa48205e38a/sm/3014926-1509751780239-DBC51.png","duration":2117,"publication_date":"2017-11-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-weaponized-nipples","changefreq":"weekly","video":[{"title":"S2:E23 - Weaponized Nipples","description":"If you're creative, anything can be a weapon and the nipples have been turned into tools of destruction more often than you'd think","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-weaponized-nipples","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90b19737-8bfb-4d0b-87e4-c70eb6b21e2d/sm/3014926-1509570773936-11012017DoDBNipples.jpg","duration":271,"publication_date":"2017-11-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-horror-movie-monsters","changefreq":"weekly","video":[{"title":"S2:E43 - Horror Movie Monsters","description":"These monsters are so terrifying, they're worth watching all year round. Nick counts down the Top 10 Horror Movie Monsters! ","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-horror-movie-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/642394a1-2598-4576-beaf-793727f26f7f/sm/3014926-1509473769757-Horror-Movie-Monsters.jpg","duration":641,"publication_date":"2017-11-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-ichigo-is-spirited-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E28 - Ichigo is Spirited into DEATH BATTLE","description":"Ichigo Kurosaki is ready to step into DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-ichigo-is-spirited-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ecff942-516f-4681-bee4-71db13efbb87/sm/3014926-1509379754116-ichigo.png","duration":120,"publication_date":"2017-10-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-5","changefreq":"weekly","video":[{"title":"S2:E0 - Sudden DEATH #50 - Spoiling the Secrets of Sex","description":"Torrian and Ben reveal the secrets of the birds and the bees","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad27b4a2-0b5a-448f-a4b4-f269832cfb30/sm/2056984-1509379107644-10292017SuddenDEATH.jpg","duration":550,"publication_date":"2017-10-29T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-black-panther-s-new-villain-death-battle-cast","changefreq":"weekly","video":[{"title":"S2:E50 - Black Panther's New Villain","description":"The Cast is dressed for halloween, we talk Buffy vs Simon Belmont and Torrian may be the next Black Panther Villain","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-black-panther-s-new-villain-death-battle-cast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c72a99f-b225-422d-951e-d29261f0386c/sm/3014926-1509148054081-DBC50TempNick.png","duration":2626,"publication_date":"2017-10-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-alucard-vs-dimitri-castlevania-vs-darkstalkers","changefreq":"weekly","video":[{"title":"S2:E21 - Alucard VS Dimitri (Castlevania VS Darkstalkers)","description":"Blood will fly in this dreaded duel of deadly vampires!\n\nThis episode's animator is Kervin Alcindor!https://www.youtube.com/user/xkareloadedx\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX ► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger ► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad ► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-alucard-vs-dimitri-castlevania-vs-darkstalkers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b2f1ae2-0853-46bc-a171-ffc445c1bb9c/sm/3014926-1509046841701-10272017DBXAlucardDimitriThumbnail.jpg","duration":137,"publication_date":"2017-10-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-strongest-vampires","changefreq":"weekly","video":[{"title":"S2:E42 - Strongest Vampires","description":"With Halloween around the corner, we're counting down the most vicious of bloodsuckers, the vampire!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-strongest-vampires","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c63dc2b-8386-4acc-87d3-f44c80583a86/sm/3014926-1508904082878-10_25_17-Top10Vampires.jpg","duration":571,"publication_date":"2017-10-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-naruto-runs-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E27 - Naruto Runs Into DEATH BATTLE!","description":"This shinobi is ready to prove he's the ultimate anime protagonist!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-naruto-runs-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cb11b3b-3fd5-4230-b802-3ebe8e4da022/sm/3014926-1508724636576-NAruto_preview_thumb.jpg","duration":121,"publication_date":"2017-10-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-a-look-into-thor-vs-wonder-woman","changefreq":"weekly","video":[{"title":"S2:E49 - A Look Into Thor vs Wonder Woman","description":"The Cast talks Thor vs Wonder Woman, Jason vs Michael Myers and Torrian discovers that Sarah Jessica Parker looks like a horse","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-a-look-into-thor-vs-wonder-woman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb7d65a3-5188-4cbe-b588-3bdfe3d4d1d8/sm/3014926-1508545213433-DBC_PS.00_07_56_01.Still002.png","duration":2587,"publication_date":"2017-10-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-batman-is-a-murderer","changefreq":"weekly","video":[{"title":"S2:E22 - Batman Is A Murderer","description":"For a hero that \"Doesn't kill\" Batman sure has racked up a body count...","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-batman-is-a-murderer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaf28108-b07d-4a75-9356-b81db2446795/sm/3014926-1508471722360-Batman-is-a-Murderer_Thumbnail.jpg","duration":322,"publication_date":"2017-10-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-thor-vs-wonder-woman-w-commentary","changefreq":"weekly","video":[{"title":"E:E29 - Thor VS Wonder Woman w/Commentary","description":"Chad, Ben, Sam, and Torrian take us through what it takes to make this Battle of the Gods a reality!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-thor-vs-wonder-woman-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/717e918c-dc45-410f-84f6-a182cc1d69aa/sm/2984284-1508363387540-DB_Thor_Vs_WonderWoman_Commentary.jpg","duration":1115,"publication_date":"2017-10-18T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-dumbest-anime-heroes","changefreq":"weekly","video":[{"title":"S2:E41 - Dumbest Anime Heroes","description":"We love anime, but many times the heroes are.... well... not so bright... So, Nick is counting down our Top 10 Dumbest Anime Heroes!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-dumbest-anime-heroes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f617ae59-a6e3-4a05-9acc-3b027ae7ba48/sm/2056984-1508343787651-Top10_dumbest-thumb_FINal.jpg","duration":580,"publication_date":"2017-10-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-thor-vs-wonder-woman-marvel-vs-dc-comics","changefreq":"weekly","video":[{"title":"S4:E13 - Thor VS Wonder Woman (Marvel VS DC Comics)","description":"It's Marvel vs DC in a gargantuan battle to the death! Between the mighty god of thunder and the tenacious Amazon princess, who will survive?\r\nGet the original score for this video on iTunes: http://apple.co/2BW7ADd\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWiz: Ben B. Singer https://twitter.com/BenBSinger Boomstick: Chad James https://twitter.com/ScrewAttackChad Writer: Sam Mitchell https://twitter.com/ScrewAttackSamAnimator: Torrian Crawford https://twitter.com/AnimatedTorrii Video Editor/Sound Design: Noel Wiggins https://twitter.com/NOELWIGGINSfilm Voice of Thor: Jonah Scott https://twitter.com/ImMrTransistorVoice of Wonder Woman: Natalie Van Sistine https://twitter.com/nvansistineBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA Assistant Animator: Jerome Rodgers-Blake https://twitter.com/JRAnimated Casting/Voice Directing: Marissa Lenti https://twitter.com/LentiSoupBattle Music by Aaron Caruthers & Carlo Decanini of Werewolf Therewolf https://www.facebook.com/werewolftherewolfResearch Team: Max Baney, Matthew Jones, LousyTactician, Carmelo Sampayo, Liam Swan, Devin Swedenburg","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-thor-vs-wonder-woman-marvel-vs-dc-comics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efc31d7a-544e-4df9-8646-78937f37924d/sm/2984284-1508301821039-DB_Thumb_084.jpg","duration":1115,"publication_date":"2017-10-18T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-alfred-batman-dinosaur-butt","changefreq":"weekly","video":[{"title":"S2:E48 - Batman Alfred Dinosaur Butt","description":"The cast talks Bruce Lee vs Jackie Chan, revists the McJackulator, and tries to figure out how to fit Batman inside of a dinosaur butt. \r\n\r\nWhy are we still writing descriptions? This is all madness...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-alfred-batman-dinosaur-butt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5db9021a-557d-4575-ade0-f87f68e3b24f/sm/3014926-1507996710457-DBC48Option1.png","duration":2492,"publication_date":"2017-10-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-vegeta-vs-zod-dbz-vs-d-c","changefreq":"weekly","video":[{"title":"S2:E20 - Vegeta VS Zod (Dragon Ball VS DC Comics)","description":"The prince of all Saiyans is on a mission, but the general of Krypton stands in his way! There's no rules! No analysis! Just bloodshed! So who will win this brutal, galactic duel to the death?\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Kayas! Follow him on Twitter: https://twitter.com/xKayasx\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii\n\n\n\n\n\n\n\nVoice of Vegeta: Nick \"Lanipator\" Landis - https://twitter.com/LanipatorVoice of Zod: Ricco Fajardo - https://twitter.com/RiccoFajardoSprite Artist: Chris \"Jerky\" Bastin - https://twitter.com/HyperJerkCasting/Trunks: Marissa Lenti - https://twitter.com/LentiSoupAudio Engineer: Alyssa Galindo - https://www.instagram.com/ashfox5Recorded at Sound Cadence - https://twitter.com/SoundCadence","player_loc":"https://roosterteeth.com/embed/dbx-season-2-vegeta-vs-zod-dbz-vs-d-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/645d6003-b5b4-42af-aba2-f0cf5328beca/sm/3014926-1507845240227-DBX_035.jpg","duration":157,"publication_date":"2017-10-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-characters-missing-from-marvel-vs-capcom-infinite","changefreq":"weekly","video":[{"title":"S2:E40 - Characters Missing from Marvel vs Capcom Infinite","description":"We're pretty hyped abnout MvC Infinite, but couldn't help feel that the roster was lacking in a few areas","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-characters-missing-from-marvel-vs-capcom-infinite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3edafa8-822b-4a2e-8c7e-e2f22bc8b408/sm/3014926-1507654383650-10_11_17-Top10_v2.jpg","duration":493,"publication_date":"2017-10-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-wonder-woman-is-primed-for-death-battle","changefreq":"weekly","video":[{"title":"S4:E26 - Wonder Woman is Primed for DEATH BATTLE","description":"The Amazonian Princess is ready to lasso the competition.","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-wonder-woman-is-primed-for-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f42d8485-7c02-468e-97cb-959cf0e10bf6/sm/3014926-1507326372598-DEATHBATTLE_Woman_Preview.jpg","duration":210,"publication_date":"2017-10-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-the-mc-jackulator","changefreq":"weekly","video":[{"title":"S2:E47 - The McJackulator","description":"The cast talks Arnold Schwarzenegger vs Sylvester Stalone, Torrian wants McDonald's and everything flies off the rails from there","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-the-mc-jackulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c81ce6de-7828-4466-a8b1-1b070be18886/sm/3014926-1507319428772-DBC47_Temp_thumb.jpg","duration":2811,"publication_date":"2017-10-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-saddest-origin-stories","changefreq":"weekly","video":[{"title":"S2:E21 - Saddest Origin Stories","description":"Jocelyn takes a look into some of the most depressing origin stories in comics","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-saddest-origin-stories","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fdcd1d3-82c8-49a6-bd59-554d52634775/sm/3014926-1507242773351-deskofdb.png","duration":271,"publication_date":"2017-10-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-terrifying-warhammer-monsters","changefreq":"weekly","video":[{"title":"S2:E39 - Terrifying Warhammer Monsters","description":"There are some truly terrifying monstrosities that exist in the Warhammer universe and Nick is down counting the Top 10!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-terrifying-warhammer-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28a5edfc-bd02-4570-998e-4e9750335c9b.jpg/sm/10_02_17-Top10Warhammer_v2.jpg","duration":563,"publication_date":"2017-10-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-fight-previews-season-2-thor-ragna-rocks-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E26 - Thor Ragna-Rocks Into DEATH BATTLE","description":"Marvel's God of Thunder is ready for his return to DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-fight-previews-season-2-thor-ragna-rocks-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94c2a173-a9c1-4112-bac7-e70294cab6c4/sm/1601067-1507232875007-dbthor.jpg","duration":192,"publication_date":"2017-10-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-angelina-jolie-battle-royale","changefreq":"weekly","video":[{"title":"S2:E46 - Angelina Jolie Battle Royale","description":"The cast goes in depth into the Smokey vs McGruff DEATH BATTLE, which Angelina Jolie character would win in a battle royale and Daredevil's sexual rendezveaous","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-angelina-jolie-battle-royale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73147b1f-733f-48df-82ee-7445eb8e52fe/sm/3014926-1506726094843-DBC46_Thumbnail.png","duration":2833,"publication_date":"2017-09-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-magneto-vs-darth-vader","changefreq":"weekly","video":[{"title":"S2:E19 - Magneto VS Darth Vader","description":"Only one will survive this duel between the Master of Magnetism and the Dark Lord of the Sith!\n\n\n\n\n\n\n\n\n\nThis episode's animator is Mark Zhang! https://twitter.com/M_rkZh_ng\n\n\n\n\n\n\n\n\n\n\n\nVoice of Magneto - Edward Bosco: https://twitter.com/EdBoscoVAVoice of Vader - Jason \"LordJazor\" Marnocha: https://twitter.com/LordJazor\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n► Wiz/Director – Ben B. Singer: https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-magneto-vs-darth-vader","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/681622e8-a1ad-4034-bb3f-80a6e54f4596/sm/2031125-1506656821612-DBX_034.jpg","duration":219,"publication_date":"2017-09-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-ruthless-kings","changefreq":"weekly","video":[{"title":"S2:E38 - Ruthless Kings","description":"They say \"heavy is the head that wears the crown\" and sometimes that pressure leads to monstous actions. We're counting down the Top 10 most Ruthless Kings!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-ruthless-kings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/937af058-1557-4381-824c-aff497686926/sm/3014926-1506456422428-Picture1.png","duration":547,"publication_date":"2017-09-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-smokey-bear-vs-mcgruff-the-crime-dog-w-commentary","changefreq":"weekly","video":[{"title":"E:E28 - Smokey Bear VS McGruff the Crime Dog w/ Commentary","description":"Ben, Chad and Sam take a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-smokey-bear-vs-mcgruff-the-crime-dog-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2890f5ab-0743-4db4-8b63-9798786baae7/sm/2097147-1506380600513-DB_Thumb_083Commentary.jpg","duration":924,"publication_date":"2017-09-26T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-smokey-bear-vs-mc-gruff-the-crime-dog","changefreq":"weekly","video":[{"title":"S4:E12 - Smokey Bear VS McGruff the Crime Dog","description":"They've taught us about fire safety and crime prevention. Now it's time they teach us who's the superior public servant! \n\n\n\n\n\nAnimation by Blind Ferret Entertainment https://blindferret.com/Follow them on Twitter: https://twitter.com/BlindFerret\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHelp save lives from wildfires, hurricanes, and other disasters by donating to the American Red Cross here: http://www.redcross.org/about-us/our-work/disaster-relief\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz: Ben B. Singer https://twitter.com/BenBSinger\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\nWriter: Sam Mitchell https://twitter.com/ScrewAttackSam\n\n\n\n\n\n\n\n\n\n\n\nPre-Production: Nick Cramer https://twitter.com/THENervousNick\n\n\n\n\n\n\n\n\n\n\n\nVideo/Sound Editor: Noel Wiggins https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\n\n\n\n\n\n\nVoice of Smokey: Christopher R. Sabat https://twitter.com/VoiceOfVegeta\n\n\n\n\n\n\n\n\n\n\n\nVoice of McGruff: Chris Rager https://twitter.com/ragercoaster\n\n\n\n\n\n\n\n\n\n\n\nVoice Direction/Casting: Marissa Lenti https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\n\n\nAudio Engineer: Alena Lecorchick https://twitter.com/LecorchickAlena\n\n\n\n\n\n\n\n\n\n\n\nAudio Enginer: Amber Lee Connors https://twitter.com/AmberLeeConnors\n\n\n\n\n\n\n\n\n\n\n\nAudio Engineer: Landon Lipinski https://twitter.com/LandonSound\n\n\n\n\n\n\n\n\n\n\n\nRecorded at Sound Cadence Studios https://twitter.com/SoundCadence\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero http://www.twitter.com/ChrisGuerreroVA\n\n\n\n\n\n\n\n\n\n\n\nResearch Team: Max Baney, Matthew Jones, LousyTactician, Carmelo Sampayo, Liam Swan, Devin Swedenburg","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-smokey-bear-vs-mc-gruff-the-crime-dog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbb4d248-8801-4080-99be-1f1eb861b43e/sm/3014926-1506112194894-DB_Thumb_083.jpg","duration":923,"publication_date":"2017-09-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sudden-death-45-2","changefreq":"weekly","video":[{"title":"S2:E0 - Sudden DEATH #45 - Cats & Succubi","description":"The cast talks Cat ownership and Torrian is REALLY interested in Succubi","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sudden-death-45-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/078c9046-b4fd-4137-b779-d3e3f7e29d03/sm/3014926-1506177275978-661278-1506120614319-DBC_PS_Thumb.png","duration":687,"publication_date":"2017-09-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-batman-vs-black-panther","changefreq":"weekly","video":[{"title":"S2:E45 - Batman vs Black Panther","description":"The cast talks Batman vs Black Panther, Cats and Angelina Jolie","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-batman-vs-black-panther","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e88f8f64-8df1-4336-9cd8-7358be2bf2a8/sm/3014926-1506177040776-661278-1506120521319-DBC45_Thumb.png","duration":2726,"publication_date":"2017-09-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-the-worst-super-powers","changefreq":"weekly","video":[{"title":"S2:E20 - The WORST Super Powers ","description":"In our DEATH BATTLE research we've seen a lot of super powers and some of them are just AWFUL!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-the-worst-super-powers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c68cc7d7-c9fe-406c-9a1f-fb02d5d34df4/sm/3014926-1506034795066-09_21_17-DoDBthumb2.jpg","duration":325,"publication_date":"2017-09-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-deadliest-samurai","changefreq":"weekly","video":[{"title":"S2:E37 - Deadliest Samurai","description":"The Samurai are known for their lethal sword skills and we're counting down the Top 10 deadliest!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-deadliest-samurai","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd56107f-439f-4ec8-bbf3-8b112f432535/sm/3014926-1505860846449-09_19_17-Top10samurai.jpg","duration":636,"publication_date":"2017-09-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-mc-gruff-the-crime-dog-takes-a-bite-out-of-death-battle","changefreq":"weekly","video":[{"title":"S4:E24 - McGruff the Crime Dog Takes a Bite Out of DEATH BATTLE","description":"McGruff the Crime Dog is ready to give his opponent a ruff time in Death Battle!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-mc-gruff-the-crime-dog-takes-a-bite-out-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5d99566-53f6-47a0-9d46-fadd5891ecc0/sm/3014926-1505746164027-DeathBattle_Preview_MCGRUFF_THE_CRIME_DOG.jpg","duration":221,"publication_date":"2017-09-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-44","changefreq":"weekly","video":[{"title":"S2:E44 - The N Word","description":"The cast talks the Millenium Falcon vs The Enterprise, Death Note, and Torrian says the N word...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/932bfd99-592e-4840-a4d7-6e464316961b/sm/2056984-1505539612911-dbcast_thumb.jpg","duration":2681,"publication_date":"2017-09-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-wii-fit-trainer-vs-dhalsim-nintendo-vs-street-fighter","changefreq":"weekly","video":[{"title":"S2:E18 - Wii Fit Trainer VS Dhalsim (Nintendo VS Street Fighter)","description":"Stretch out and relax as you enjoy the ultimate yoga battle!\n\nThis episode's animator is Benny \"Bio\" Landa! https://twitter.com/BioRhythmic\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX ► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger ► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad ► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-wii-fit-trainer-vs-dhalsim-nintendo-vs-street-fighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4431db1a-5475-42bb-8d67-f793ea66e3c8/sm/3014926-1505402911235-InfMiniGolf_Part2_Thumb.jpg","duration":109,"publication_date":"2017-09-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-video-game-movies","changefreq":"weekly","video":[{"title":"S2:E36 - Video Game Movies","description":"Let's be honest, video game movies are generally pretty terrible... but they're not all bad! So we're counting down our Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-video-game-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/759e96ac-226c-4651-baef-0d7ae35f5b57/sm/3014926-1505316878744-Top10_Video_Game_Movies_Thumbnail.jpg","duration":583,"publication_date":"2017-09-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-smokey-bear-charges-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E23 - Smokey Bear Roars into DEATH BATTLE","description":"Smokey Bear is ready to go bear-zerk on the competition to win a DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-smokey-bear-charges-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4d93e37-b6f7-43cf-a6c8-b36603d7812f/sm/3014926-1504906872968-DeathBattle_Preview_SMOKEY_THE_BEAR.jpg","duration":221,"publication_date":"2017-09-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-43","changefreq":"weekly","video":[{"title":"S2:E43 - Where's My Super Suit?!","description":"Try Skillshare! The first 500 people get a 2 month free trial! http://skl.sh/dbc\r\n\r\nThe Cast talks Sandman vs Frozone, Torrian get's a special Star Trek themed quiz and they go in depth into the animation of Shredder vs Silver Samurai","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/103a67ea-1cc7-438f-b153-008290955cde/sm/2056984-1504928431442-09_09_17-DBCast-Thumb.jpg","duration":2824,"publication_date":"2017-09-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-stupid-superhero-ps-as","changefreq":"weekly","video":[{"title":"S2:E19 - Stupid Superhero PSAs","description":"Over the years our favorite superheroes have taught us about a lot of important issues. However, sometimes the way they do it is down right stupid!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-stupid-superhero-ps-as","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7532442c-218f-4391-9905-f68f181c623f/sm/1834730-1504885603942-09_08_17-DoDB-Thumb_v2.jpg","duration":281,"publication_date":"2017-09-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-the-shredder-vs-the-silver-samurai-w-commentary","changefreq":"weekly","video":[{"title":"E:E27 - Shredder VS Silver Samurai w/ Commentary","description":"Take a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-the-shredder-vs-the-silver-samurai-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d9332af-2b49-4627-95a9-e4c7893d3b56/sm/2056984-1504705637393-commentary_thumb.jpg","duration":1040,"publication_date":"2017-09-06T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-metroid-bosses","changefreq":"weekly","video":[{"title":"S2:E35 - Metroid Boss Battles","description":"One of the things that makes Metroid so great is its epic boss fights. So Nick is counting down our Top 10 Favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-metroid-bosses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/486564e4-5348-42a2-8737-87a5208d5a6b/sm/2056984-1504791968700-09_06_17-Top10-Metroid._v2jpg.jpg","duration":592,"publication_date":"2017-09-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-the-shredder-vs-silver-samurai","changefreq":"weekly","video":[{"title":"S4:E11 - Shredder VS Silver Samurai (TMNT VS Marvel)","description":"It's the ninja master versus the honorable samurai! The ancient rivalry will be settled today when the Shredder takes on the Silver Samurai! \r\nGet the original score for this video on iTunes: http://apple.co/2BgnFTS\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCREDITSWiz: Ben B. Singer - https://twitter.com/benbsinger\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nProject Lead: Nick Cramer - https://twitter.com/TheNervousNick\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAnimator: Luis Cruz - https://twitter.com/CVAnimation\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nEditor: Gerardo Mejia – https://twitter.com/HybridRain\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBattle Sound Design: Noel Wiggins - https://twitter.com/NOELWIGGINSfilm\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSprite Artist: Chris \"Jerky\" Bastin - https://twitter.com/HyperJerk\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBattle Music: Brandon Yates - https://twitter.com/bmichaelyates\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-the-shredder-vs-silver-samurai","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff705e59-2c13-484b-be64-037d19bb3620/sm/2097147-1504499124641-DB_Thumb_082.jpg","duration":1039,"publication_date":"2017-09-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sudden-death-42","changefreq":"weekly","video":[{"title":"S2:E0 - Sudden DEATH #42 - From Balls to Burgers","description":"Chad talks about his balls and Torrian talks about McDonalds","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sudden-death-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ea0945b-c05b-44e5-a3e0-92045dec8eea/sm/2097166-1504415324850-09_04_17-Sudden_Death_Thumb.png","duration":737,"publication_date":"2017-09-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-42","changefreq":"weekly","video":[{"title":"S2:E42 - Spider-Man's Exploding Balls","description":"The Cast talks about a VERY strange Spider-Man death, Torrian's \"Sky Water\" and Hermione Granger vs The Juggernaut\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo enable screen reader support, press Ctrl+Alt+Z To learn about keyboard shortcuts, press Ctrl+slash","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d84a7e1b-d368-44a7-a934-176e5800d9fa/sm/2056984-1504322760323-09_02_17-DBCAst.jpg","duration":2649,"publication_date":"2017-09-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-samus-vs-master-chief-metroid-vs-halo","changefreq":"weekly","video":[{"title":"S2:E17 - Samus VS Master Chief (Metroid VS Halo)","description":"In a shoot out between space warriors, someone's bound to get blasted apart.\n\nThis episode's animator is Zack Watkins! https://twitter.com/xZackAttack27x\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX ► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger ► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorriiClick to Subscribe: http://bit.ly/SubtoScrewAttack\n\n\n\n\n\n\n\nSamus Sprites: Super Smash Flash 2(courtesy of the McLeodGaming sprite team)\n\nhttps://www.mcleodgaming.com","player_loc":"https://roosterteeth.com/embed/dbx-season-2-samus-vs-master-chief-metroid-vs-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c52cf20-7985-4579-a785-db101590878f/sm/3014926-1504213682429-DBX_032.jpg","duration":132,"publication_date":"2017-09-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-broken-fighting-game-characters","changefreq":"weekly","video":[{"title":"S2:E34 - BROKEN Fighting Game Characters","description":"We're counting down the most BROKEN characters to ever be released in fighting games!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-broken-fighting-game-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1561939f-72ad-4d74-86ba-2d0998fa2d63/sm/2984284-1504057784108-08_29_17-Top10-BRoken.jpg","duration":599,"publication_date":"2017-08-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-placeholder","changefreq":"weekly","video":[{"title":"S4:E22 - The Silver Samurai Slashes into DEATH BATTLE!","description":"The Silver Samurai is here to prove that the way of the Samurai is superior to the Ninja!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-placeholder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08d905c5-558a-441f-b0e3-8790b8fc01bd/sm/2056984-1503936588933-08_28_17-DB-Samurai.jpg","duration":163,"publication_date":"2017-08-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-41","changefreq":"weekly","video":[{"title":"S2:E41 - Goku Finally Gets One","description":"The cast talks, Goku vs Sonic, Shredder entering DEATH BATTLE and Torrian almost makes it the whole episode without mistaking a character in pop culture... almost","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5634fd9-d9c8-4b90-9b29-a26b506b20fe/sm/2056984-1503723169042-08_25_17-DBcast-Thumb3.jpg","duration":4282,"publication_date":"2017-08-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-close-encounters-of-the-venom-kind","changefreq":"weekly","video":[{"title":"S2:E18 - Venom Cures Cancer?","description":"Let's face it, symbiotes gets around and Venom has certainly been around the celestial block once or twice. Jocelyn takes us through the history of Venom and some of the interesting Marvel heroes the symbiote has come in close contact with.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-close-encounters-of-the-venom-kind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b51ec8c8-90a3-40e3-972f-b9a7192d41d7/sm/2984284-1503678156090-DESK_of_DB_Venom_Cures_Cancer.jpg","duration":287,"publication_date":"2017-08-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-x-men-games","changefreq":"weekly","video":[{"title":"S2:E33 - X-Men Games","description":"Everyone loves the X-Men and it's no surprise that plenty of video games were made featuring them. So we're counting down our Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-x-men-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e326927a-80fe-456a-afb8-60d5fd40265a/sm/2056984-1503500644180-08_23_17-Top10-Xmen.jpg","duration":627,"publication_date":"2017-08-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-shredder-crushes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E21 - Shredder Cuts into DEATH BATTLE!","description":"The leader of the Foot Clan steps from the shadows to annihilate his competition.","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-shredder-crushes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ad34f5b-f4ae-4cc6-8e15-183b7ab741d8/sm/2056984-1503330866008-08_21_17-DBPReview-Shredder.jpg","duration":141,"publication_date":"2017-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-40","changefreq":"weekly","video":[{"title":"S2:E40 - R2-D2 vs BB-8","description":"The Cast talks the Recent Balrog vs TJ Combo DEATH BATTLE, Chad quizzes Torrian on general knowledge and the Highlander is happening in Texas","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7a2651c-39f9-4c26-bcc8-4b60e440af49/sm/2056984-1503123801229-08_19_17-DBC.jpg","duration":4942,"publication_date":"2017-08-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-ken-vs-blaziken-street-fighter-vs-pok-mon","changefreq":"weekly","video":[{"title":"S2:E16 - Ken VS Blaziken (Street Fighter VS Pokémon)","description":"Whose flames burn brighter? A Street Fighter... or a Pokémon?\n\nThis episode's animator is Donald Gagnon! https://twitter.com/Donimations\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorri\n\n\n\nBlaziken sprites - Ðshiznetz","player_loc":"https://roosterteeth.com/embed/dbx-season-2-ken-vs-blaziken-street-fighter-vs-pok-mon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bd87ded-72c1-402d-bccd-af133b8fef34/sm/3014926-1503009190728-DBX_031.jpg","duration":100,"publication_date":"2017-08-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-raddest-dinosaurs","changefreq":"weekly","video":[{"title":"S2:E32 - Top 10 Raddest Dinosaurs","description":"Dinosaurs are some of the most awesome creatures to walk the earth and we're counting down 10 of the raddest dinos in fiction","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-raddest-dinosaurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be1f18bf-e8b0-43fe-aa05-4123ebfdaa2c/sm/3014926-1502809483806-08_08_17-Top10-Rad.jpg","duration":584,"publication_date":"2017-08-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-16","changefreq":"weekly","video":[{"title":"E:E11 - Balrog VS TJ Combo w/ Commentary","description":"Ben, Chad, Nick and Torrian give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f112fc4-e68a-42bb-9906-1bd5675619fe/sm/3014926-1502809334601-BvT_Commentary_Thumb.jpg","duration":1093,"publication_date":"2017-08-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-balrog-vs-tj-combo-street-fighter-vs-killer-instinct","changefreq":"weekly","video":[{"title":"S4:E10 - Balrog vs TJ Combo (Street Fighter vs Killer Instinct)","description":"The battle of boxers! Two champion fighters enter the ring with the goal to win... at any cost. Only one will leave alive!\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\n\n\nWiz: Ben B. Singer https://twitter.com/BenBSinger\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\nWriter: Nick Cramer https://twitter.com/THENervousNick\n\n\n\n\n\n\n\n\n\n\n\nAnimator: Torrian Crawford https://twitter.com/AnimatedTorrii\n\n\n\n\n\n\n\n\n\n\n\nVoice of Balrog: Chris Jai Alex https://twitter.com/chrisjaialex\n\n\n\n\n\n\n\n\n\n\n\nVoice of TJ Combo: Gabe Kunda https://twitter.com/GabeKunda\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA\n\n\n\n\n\n\n\n\n\n\n\nCasting/Directing: Marissa Lenti https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\n\n\nAudio Engineers: Alena Lecorchick, Howard Wang, Amber Lee Connors\n\n\n\n\n\n\n\n\n\n\n\nRecorded at Sound Cadence Studios https://twitter.com/SoundCadence\n\n\n\n\n\n\n\n\n\n\n\nAdditional Animation: Jerome Rodgers-Blake - https://twitter.com/JRAnimated\n\n\n\n\n\n\n\n\n\n\n\nSound Editing: Noel Wiggins https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\nSprite Animation: Luis \"Jetz\" Cruz https://twitter.com/CVAnimation\n\n\n\n\n\n\n\n\n\n\n\nVideo Editor: Gerardo Mejia https://twitter.com/HybridRain\n\n\n\n\n\n\n\n\n\n\n\nBalrog: Behind the Glory","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-balrog-vs-tj-combo-street-fighter-vs-killer-instinct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2091034a-a4e9-4797-bb0a-6fc3ffa5d4f8/sm/2056984-1502723572619-DB_Thumb_081.jpg","duration":1093,"publication_date":"2017-08-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-optimus-prime-vs-iron-giant","changefreq":"weekly","video":[{"title":"S2:E39 - Optimus Prime VS Iron Giant","description":"The Cast talks Optimus Prime vs Iron Giant, Star Wars, and Torrian goes on an epic rant about droids","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-optimus-prime-vs-iron-giant","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c51cf558-7022-4ba1-aab0-88e7f520f6d3/sm/3014926-1502521915017-thumbnail.png","duration":4332,"publication_date":"2017-08-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-spider-man-crashes-snl","changefreq":"weekly","video":[{"title":"S2:E17 - Spider-Man Crashes SNL","description":"Spider-Man has teamed up with a lot of people over the years, but one of the strangest was the 1970's cast of Saturday Night Live to stop the Silver Samurai","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-spider-man-crashes-snl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21655b72-f3aa-44b8-91aa-2e992880b7a9/sm/2056984-1502468518120-08_11_17-DoDB-SpidermanSNL_V2.jpg","duration":343,"publication_date":"2017-08-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-worst-gen-ii-pok-mon","changefreq":"weekly","video":[{"title":"S2:E31 - WORST Gen II Pokémon","description":"The second generation of Pokémon came with a huge roster of new and interesting pocket monsters. However, not all of them should be celebrated","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-worst-gen-ii-pok-mon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4c067a8-c1fc-4cbf-83df-ed288f055172/sm/2056984-1502293429934-08_08_17-Top10-Worstpokemon.jpg","duration":433,"publication_date":"2017-08-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-tj-combo","changefreq":"weekly","video":[{"title":"S4:E20 - TJ Combo Jabs into DEATH BATTLE!","description":"The boxer with the Killer Instinct is ready to take to the ring and prove he's got what it takes!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-tj-combo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d162368-a6ec-4f90-9f44-7772a7088c36/sm/2056984-1502118946257-08_07_17-DBPreview-Combo.jpg","duration":147,"publication_date":"2017-08-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-38","changefreq":"weekly","video":[{"title":"S2:E38 - Thor on Zapdos vs Natsu on Moltres vs Elsa on Articuno","description":"The Cast debates who would win between heroes riding Pokémon, they talk Balrog vs T.J. Combo and share their love of fighting games.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29049637-46fe-496d-8eed-4b632deacc74/sm/2056984-1501945715593-08_05_17-DBCast-Thumb.jpg","duration":4157,"publication_date":"2017-08-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-iron-fist-vs-akuma","changefreq":"weekly","video":[{"title":"S2:E15 - Iron Fist VS Akuma","description":"Akuma is on the warpath! Will he avenge the world against Iron Fist for his horrendous television atrocities? \n\n\n\n\n\nThis episode's animator is Kiid! Check out his YouTube: https://www.youtube.com/user/TheRegularGuysXD\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX► Wiz – Ben B. Singer:https://www.twitter.com/BenBSinger \n\n\n\n► Boomstick – Chad James:https://www.twitter.com/ScrewAttackChad \n\n\n\n► Head of Animation – Torrian Crawford:https://www.twitter.com/AnimatedTorrii\n\n\n\n\n\n\n\n\n\nIron Fist Sprites by Acey, RGOP, Arkady","player_loc":"https://roosterteeth.com/embed/dbx-season-2-iron-fist-vs-akuma","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddd1898f-c937-4711-9f1f-ba8aaf075fab/sm/3014926-1501790009984-DBX_030.jpg","duration":119,"publication_date":"2017-08-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-games-missing-from-the-snes-classic","changefreq":"weekly","video":[{"title":"S2:E30 - Games Missing from the SNES Classic","description":"The SNES Classic is a great way to get your hands on some old school SNES action, but you'd be surprised which games aren't included","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-games-missing-from-the-snes-classic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/162b2782-9b0f-4c30-b01b-1c9298d3369c/sm/2097147-1501691667399-08_02_17-Top10.jpg","duration":615,"publication_date":"2017-08-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-balrog","changefreq":"weekly","video":[{"title":"S4:E19 - Balrog Charges into DEATH BATTLE!","description":"Street Fighter's boxing baddie is ready to step in the ring and get his fight money!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-balrog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eb76d9e-f207-43da-9865-d616ed53829d/sm/2056984-1501517525763-07_31_17-DB-Balrog.jpg","duration":156,"publication_date":"2017-07-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-game-of-thrones-vs-lord-of-the-rings-vs-torrian","changefreq":"weekly","video":[{"title":"S2:E37 - Game of Thrones VS Lord of the Rings","description":"The Cast Talks Gimli vs Tyrion, Comic characters teaming up with legendary Pokemon and they desperately try to explain things to Torrian","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-game-of-thrones-vs-lord-of-the-rings-vs-torrian","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61b838ba-633b-4a2e-a92b-13b8917f4391/sm/2056984-1501305463044-07_29_17-DBCast.jpg","duration":4429,"publication_date":"2017-07-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-marvel-vs-dc-comics-2","changefreq":"weekly","video":[{"title":"S2:E16 - Marvel VS DC Comics","description":"Jocelyn dives into the official crossover comic series where Marvel and DC went head to head!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-marvel-vs-dc-comics-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95e05b17-2bfe-49bc-9e26-391b7ac98b30/sm/2097147-1501269416949-2056984-1501266154438-07_28_17-Dodb.jpg","duration":515,"publication_date":"2017-07-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-spider-man-villains-w-death-b-a-t-t-l-e-s-wiz","changefreq":"weekly","video":[{"title":"S2:E29 - Spider-Man Villains w/ DEATH BATTLE's Wiz ","description":"They say the villain makes the hero and your friendly neighborhood Spider-Man wouldn't exist without these dastardly foes. DEATH BATTLE's Wiz counts down his Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-spider-man-villains-w-death-b-a-t-t-l-e-s-wiz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd6905e5-4f9b-45be-9327-11ff8dc4220d/sm/2056984-1501081988843-07_26_17-Top10-Spiderman.jpg","duration":608,"publication_date":"2017-07-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-lucario-vs-renamon-w-commentary","changefreq":"weekly","video":[{"title":"E:E25 - Lucario VS Renamon w/Commentary","description":"Ben, Chad and Sam give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-lucario-vs-renamon-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/654cf084-64ee-4c80-90fa-fdcf4af1d6ce/sm/2984284-1500937836813-DeathBattleFinal_wCommentary.jpg","duration":788,"publication_date":"2017-07-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-lucario-vs-renamon","changefreq":"weekly","video":[{"title":"S4:E9 - Lucario VS Renamon","description":"The fast and the furriest! With the ultimate battle of the fox and the hound underway, which lone warrior has the inner strength to win a duel to the death?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz: Ben B. Singer https://twitter.com/BenBSinger\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWriter: Sam Mitchell https://twitter.com/ScrewAttackSam\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAnimator: Aquila Harukaze https://twitter.com/AquilaHarukaze\n\n\n\n\n\n\n\n\n\n\n\nGraphic Artist: Chris \"Jerky\" Bastin https://twitter.com/HyperJerk\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideo Editor: Noel Wiggins https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Renamon: Marissa Lenti https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-lucario-vs-renamon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/494a36b1-8f39-4b04-a859-0c9caf526731/sm/2984284-1500929171298-DB_079.jpg","duration":788,"publication_date":"2017-07-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-alucard-vs-dante","changefreq":"weekly","video":[{"title":"S2:E36 - Alucard vs Dante","description":"The Cast talks Lucario vs Renamon, Alucard vs Dante, and if vampires have a genital advantage. With special guest Cole from Rooster Teeth Animation!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-alucard-vs-dante","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5412b02-cd42-40ab-a3a3-1b847ea15a41/sm/2056984-1500692152154-07_22_17-DbCast.jpg","duration":3972,"publication_date":"2017-07-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-29","changefreq":"weekly","video":[{"title":"S2:E14 - Zero VS Strider","description":"NO RULES! NO ANALYSIS! ONLY BLOODSHED! Two flashy swordsmen of the future take their duel to the ultimate level!\n\nThis episode's animator is Kervin Alcindor! https://www.youtube.com/user/xkareloa...\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX ► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger ► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad ► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b9857f5-0bc1-4a49-bd17-d9aef6969898/sm/3014926-1500578216880-DBX_Zero_Strider_Thumb.jpg","duration":110,"publication_date":"2017-07-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-20-zelda-items-10-1","changefreq":"weekly","video":[{"title":"S2:E28 - Top 20 Zelda Items (10-1)","description":"In Part 2 of our Top 20 Zelda Items, Nick narrows down the list of the best items in the Hero of time's arsenal!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-20-zelda-items-10-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f6c45cc-5acb-4ff2-8229-0c20531caa09/sm/2984284-1500491336220-TOP_10_Zelda_Items_THUMBNAIL_Part2.jpg","duration":425,"publication_date":"2017-07-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-renamon-digitizes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E18 - Renamon digitizes into DEATH BATTLE!","description":"Does this Digimon have what it takes to outfox the competition? We'll find out in DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-renamon-digitizes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98fd0681-f48c-4550-9372-74d7f3b3e4ef/sm/2056984-1500312748139-Renamon_Preview_Thumbnail.jpg","duration":186,"publication_date":"2017-07-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-vergil-vs-vash-death-battle-cast","changefreq":"weekly","video":[{"title":"S2:E35 - Vergil vs Vash","description":"The cast talks Vergil vs Vash, the new Castlevania anime and Hello Kitty vibrators","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-vergil-vs-vash-death-battle-cast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e36f061-6cc2-49b5-8689-5d5c2e133299/sm/3014926-1500130603010-07_14_17-DBCast.jpg","duration":4145,"publication_date":"2017-07-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-sonic-s-most-vulgar-soundtrack-ever","changefreq":"weekly","video":[{"title":"S2:E14 - Sonic's Strange & VULGAR Albums","description":"You won't believe what song's are on these little known Sonic albums!\n\n\n\n\n\n\n\n\n\n\n\nLink to the cringe MK interview https://www.youtube.com/embed/YrqEzYqQ-b8","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-sonic-s-most-vulgar-soundtrack-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af9a0ddc-5a16-4254-8686-b30586c7c9c1/sm/2056984-1500048640807-07_14_17-Dodb-Sonic.jpg","duration":280,"publication_date":"2017-07-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-20-zelda-items-20-11","changefreq":"weekly","video":[{"title":"S2:E27 - Top 20 Zelda Items (20-11)","description":"In The Legend of Zelda series, the memorable items will make the task of defeating Ganon and saving all of Hyrule a bit easier and a whole lot more fun. Nick and Chad take us through their list of the best items in the series.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-20-zelda-items-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acfb0471-fb82-4aea-ab36-5d492c1c9c1b/sm/2984284-1499906709786-TOP_10_Zelda_Items_THUMBNAIL.jpg","duration":337,"publication_date":"2017-07-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-lucario-blasts-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E17 - Lucario Blasts into DEATH BATTLE!","description":"Can Pokémon's stoic fighter sense the power of the aura to win a DEATH BATTLE?","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-lucario-blasts-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6548b085-0c8f-4e07-b7dc-81420022ae74/sm/2984284-1499535956794-DeathBattle_Lucario_Preview.jpg","duration":121,"publication_date":"2017-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-mario-vs-luigi","changefreq":"weekly","video":[{"title":"S2:E13 - Mario VS Luigi","description":"What is this madness? Why are the Mario Bros. at each others throats??\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Gale! Check out his YouTube: http://bit.ly/2lWqFkO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-mario-vs-luigi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4019e9a-b90e-4a95-8cbf-9a3088906614/sm/2031125-1499376270402-DBX_028.jpg","duration":144,"publication_date":"2017-07-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-metal-sonic-vs-zero-w-commentary","changefreq":"weekly","video":[{"title":"E:E24 - Metal Sonic VS Zero W/ Commentary","description":"Ben, Chad and Nick give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-metal-sonic-vs-zero-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31bfc9f9-de17-415a-827a-80207d80f7ef/sm/2097147-1499122154183-msvszC.jpg","duration":962,"publication_date":"2017-07-05T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-gen-2-pok-mon","changefreq":"weekly","video":[{"title":"S2:E26 - Gen 2 Pokémon","description":"With the release of Pokémon Gold and Silver we got a slew of all new and exciting Pokémon. We're counting down our favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-gen-2-pok-mon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ea138a1-42ed-411d-a1ef-f9254506768c/sm/2056984-1499270542139-07_05_17-Top10-Gen2Pokemon.jpg","duration":499,"publication_date":"2017-07-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-metal-sonic-vs-zero","changefreq":"weekly","video":[{"title":"S4:E8 - Metal Sonic VS Zero","description":"They're ultimate creations built for one purpose... to destroy! Which mechanical wonder will win this fight?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\nWiz: Ben B. Singer https://twitter.com/BenBSinger\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad\n\n\n\n\n\nWriter: Nick Cramer https://twitter.com/THENervousNick\n\n\n\n\n\nAnimator: Luis \"Jetz\" Cruz https://twitter.com/CVAnimation\n\n\n\n\n\nGraphic Artist: Chris \"Jerky\" Bastin https://twitter.com/HyperJerk\n\n\n\n\n\nVideo Editor: Gerardo Mejia https://twitter.com/HybridRain\n\n\n\n\n\nBattle Announcer: Chris Guerrero https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-metal-sonic-vs-zero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7038c583-832b-4f17-86f0-4b23c139e85c/sm/2097147-1499021891748-download.jpg","duration":962,"publication_date":"2017-07-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-catching-predators","changefreq":"weekly","video":[{"title":"S2:E34 - Catching Predators","description":"The cast debates who can catch the most predators, the SNES mini and we solve the mystery of t-rex sex...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-catching-predators","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a121a48-237c-42e5-bbac-dc96140d2e94/sm/2056984-1498931040279-07_01_17-DBCast_v2.jpg","duration":28800,"publication_date":"2017-07-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-adolph-s-weird-comic","changefreq":"weekly","video":[{"title":"S2:E13 - Adolph's Weird Comic","description":"Hitler has been portrayed in a surprising amount of media but this comic takes the cake...","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-adolph-s-weird-comic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1246cab3-a97f-4dcc-b277-75a12bf67ddc/sm/2056984-1498838085734-06_30_17-DoDB-Thumb.jpg","duration":253,"publication_date":"2017-06-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-481","changefreq":"weekly","video":[{"title":"2018:E481 - The Worst Phishing Scam Ever - #481","description":"Join Gus Sorola, Gavin Free, Becca Frasier, and Burnie Burns as they discuss pregnancy, phishing scams, rideshare stories, and more on this week's RT Podcast! This episode originally aired on February 26, 2018, sponsored by MeUndies (http://bit.ly/2sYtkii) and Audible (http://adbl.co/2CJhSqn)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-481","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e4508223-fb7a-4363-80ce-4be19c2d17c2.jpg/sm/RTP481BurnieAfriad.jpg","duration":6166,"publication_date":"2018-02-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-58","changefreq":"weekly","video":[{"title":"2018:E58 - Elyse's Explosive Secret - #58","description":"Join Barbara Dunkelman, Elyse Willems, Tyler Coe, and Mariel Salcedo in a special episode recorded in front of a studio audience! They play new game, discuss the 5 senses, and answer a question from the Box of Issues. This episode brought to you by MVMT (http://bit.ly/2xJDj8o) and RXBar (http://bit.ly/2sORifN).","player_loc":"https://roosterteeth.com/embed/always-open-2018-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a9a3e849-fd09-4ac4-a85d-f0dea71ec3d5.jpg/sm/tempthumb.jpg","duration":3309,"publication_date":"2018-02-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-it-was-wet","changefreq":"weekly","video":[{"title":"2018:E318 - It Was Wet","description":"Mica's dad thinks it's a good idea to microwave his cell phone.\r\n\r\nAudio from Always Open Podcast #14\r\nhttp://roosterteeth.com/episode/always-open-2017-14-08-ajla\r\nAnimated by: William Ball\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-it-was-wet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8504ad2e-6f96-47cb-84b4-df3902e5f506.jpg/sm/rtaa318tn.jpg","duration":99,"publication_date":"2018-02-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-5","changefreq":"weekly","video":[{"title":"S3:E5 - Episode 5 - Girls' Night Out","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6077d04d-f151-445b-ba83-a320fa528209.jpg/sm/RWBYChibi3Ep05Thumbnail.jpg","duration":201,"publication_date":"2018-02-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-fatal-frame-ii","changefreq":"weekly","video":[{"title":"2018:E8 - Fatal Frame II","description":"Imagine this, it's just another day like any other. You're out in the forest, cavorting with your sister. All of a sudden the village from Hell decides it really wants you in it right now and you don't really get a say in the matter. Now you're being chased though this backwoods Silent Hill by all sorts of ghosts, ghouls, and worst of all, terrible voice acting. That's the situation our boys find themselves in today but don't worry, they have been in this situation before in Fatal Frame I. That means they are less scared this time right? .....Right?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-fatal-frame-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1c83e559-763e-434f-b49e-6cdd7a11f59e.jpg/sm/BzCFATALFRAME2THUMB01.jpg","duration":4088,"publication_date":"2018-02-23T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-126","changefreq":"weekly","video":[{"title":"S11:E126 - Chris the Cannibal - #126","description":"Hosted by Jon Risinger. Featuring Joel Heyman, Jeremy Dooley, Miles Luna, Chris Demarais, Blaine Gibson and Ellie Main.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b82a30ce-9b39-4be7-ba1c-88972efbccfc.jpg/sm/ots126PSthumb.jpg","duration":1017,"publication_date":"2018-02-23T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-on-the-spot-126","changefreq":"weekly","video":[{"title":"S11:E126 - The Rooster Teeth Olympics - #126","description":"Shirt buttons go flying, Jeremy steals a kiss and all hail the new queen of redemption in the very first 3v3 On The Spot! Recorded during RTX Presents: Live Week! Sponsored by Dollar Shave Club (http://bit.ly/2zQ61Xb) MVMT Watches (http://bit.ly/2zPGRIp) and Felix Gray Glasses (http://bit.ly/2Ce36ca) Hosted by Jon Risinger. Featuring Joel Heyman, Jeremy Dooley, Miles Luna, Chris Demarais, Blaine Gibson and Ellie Main.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-on-the-spot-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9862880a-4219-4991-8929-85a7681ee9ab.png/sm/OTSthumb2.png","duration":3203,"publication_date":"2018-02-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-a-million-pounds-although","changefreq":"weekly","video":[{"title":"S5:E4 - A Million Pounds, Although","description":"Grab a cup of tea and enjoy a very special British episode of MDB starring Burnie, Gavin, and Ellie! A special thanks to the Rooster Teeth community for attending RTX London and for making this episode possible!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-a-million-pounds-although","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bf5e7cd2-b30a-4767-828c-db8749f15319.jpg/sm/MDBS5London6Thumbnail.jpg","duration":527,"publication_date":"2018-02-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-480","changefreq":"weekly","video":[{"title":"2018:E480 - Maintaining Animosity For 20 Years - #480","description":"Join Gus Sorola, Blaine Gibson, Barbara Dunkelman, and Burnie Burns as they discuss favorite fast food, relationships, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-480","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee097b83-9449-4180-993f-9c52ccc7528c.jpg/sm/RTP480PSthumb1.jpg","duration":1141,"publication_date":"2018-02-21T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-rt-podcast-480","changefreq":"weekly","video":[{"title":"2018:E480 - We’re Starting a Fight Club - #480","description":"Join Gus Sorola, Blaine Gibson, Barbara Dunkelman, and Burnie Burns as they discuss travel horror stories, Star Wars, shared universes, and more on this week's RT Podcast! This episode originally aired on February 19, 2018, sponsored by Casper (http://bit.ly/2sa1gGZ) and Squarespace (http://bit.ly/1SPgAL3)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-rt-podcast-480","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38bc7f73-a6a8-40be-ac7f-af4cc35c2a46.jpg/sm/RTP480thumb5.jpg","duration":5438,"publication_date":"2018-02-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-57","changefreq":"weekly","video":[{"title":"2018:E57 - Chris Gets Replaced - #57","description":"Join Barbara Dunkelman, Jon Risinger, Ellie Main and Gus Main as answer a question from the Box of Issues.","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/68546ae5-4275-41df-ac56-d6634d3f123e.jpg/sm/psthumb.jpg","duration":801,"publication_date":"2018-02-20T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-57","changefreq":"weekly","video":[{"title":"2018:E57 - In Bed With the Dunkelmans - #57","description":"Join Barbara Dunkelman, Jon Risinger, Ellie Main and Chris Demarais as they discuss a user-submitted confessional, learn about Chris’ noise complaint and answer a question from the Box of Issues. This episode sponsored by Daily Harvest (http://bit.ly/2qV3vOV) and MeUndies (http://bit.ly/2o3FAci).","player_loc":"https://roosterteeth.com/embed/always-open-2018-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8133aa80-f2f3-431f-be21-a3a2231cffc4.jpg/sm/tempthumb.jpg","duration":3926,"publication_date":"2018-02-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-317","changefreq":"weekly","video":[{"title":"2018:E317 - Michael Tiny Hands Jones","description":"Michael is a little insecure about his tiny hands, but is in a race to escape the cops. He hijacks a bus Lindsay is driving and things get out of 'hand' \r\n\r\nAudio from On the Spot #81\r\nhttp://roosterteeth.com/episode/on-the-spot-season-8-81-j9ahka\r\nAnimated by: Jordan Battle\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-317","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/319c09ba-7f7c-49d0-9095-6267c4960cb3.jpg/sm/rtaa317tn.jpg","duration":103,"publication_date":"2018-02-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-63sewr2","changefreq":"weekly","video":[{"title":"S3:E4 - Episode 4 - Grimm Passengers","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-63sewr2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/58583375-6ca3-4ff5-a505-3022fcb7e972.jpg/sm/RWBYChibi3Ep04Thumbnail.jpg","duration":216,"publication_date":"2018-02-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-just-monika","changefreq":"weekly","video":[{"title":"2018:E7 - Just Monika","description":"I'm sorry, but an uncaught exception occurred.While running game code: File \"game/script.rpy\", line 56, in script call File \"game/scriptch!.rpy\", line #6, in script File \"renpy/common/$$action%menu.rpy\", line &$!, in %%call%% renpy.call%in%ne%context(\"%game%menu\", )sel*.args, %game%menu%screen+screen, ))sel*.args- File \"renpy/common/$$gamemenu.rpy\", line &!, in script  ui.interact(- File \"renpy/common/$$gamemenu.rpy\", line &!, in 0module1  ui.interact(- File \"renpy/common/$$action%*ile.rpy\", line 2, in %%call%% renpy.load(*n-3estart4opontext: Oh jeez...I didn't break anything, did I?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-just-monika","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8efc7fab-a6a7-4eb9-be06-50e2033965b0.png/sm/BzCDOKIDOKIPT3THUMB05.png","duration":6960,"publication_date":"2018-02-17T03:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-for-the-win-season-11-125","changefreq":"weekly","video":[{"title":"S11:E125 - Who the Hell is Susan? - #125","description":"Everyone gets really mad at someone nobody knows.","player_loc":"https://roosterteeth.com/embed/on-the-spot-for-the-win-season-11-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/25663c65-a49a-4801-a158-73192137b299.png/sm/ots125PS1.png","duration":670,"publication_date":"2018-02-16T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-on-the-spot-125","changefreq":"weekly","video":[{"title":"S11:E125 - Everyone Gets Wet - #125","description":"Jurassic Park is wrecked after Lindsay does her thing and Max has a secret love, well, not so secret. Sponsored by Quip (http://bit.ly/2ErPbzQ), Boll and Branch (http://bit.ly/2DMARm8), and Audible (http://adbl.co/2EqfcPZ) Hosted by Jon Risinger. Featuring Lindsay Jones, Andy Blanchard, Max Kruemke and Jessica Vasami.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-on-the-spot-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/29b99cae-98e7-4a65-893d-50eb9c1d6ed6.jpg/sm/RTPStreamthumb2.jpg","duration":2492,"publication_date":"2018-02-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-sugar-pine-7-can-t-poop","changefreq":"weekly","video":[{"title":"S5:E3 - Sugar Pine 7 Can't Poop","description":"Join Steven, James, and Cib in their first (and probably last) episode of Million Dollars, But! There's a superhero with gum powers, nude public speaking, and for some reason everyone touches James' crotch.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-sugar-pine-7-can-t-poop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4597762b-b5fe-4b51-94d5-71063c420d33.jpg/sm/MDBS5SugarPine7Thumbnail2.jpg","duration":371,"publication_date":"2018-02-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-479-post-show","changefreq":"weekly","video":[{"title":"2018:E6 - The Comedown Show - #479","description":"Join Ashley Jenkins, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss going to Vegas, Australian phrases, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-479-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9b0849b7-2b02-4125-ae33-9746807a61ba.jpg/sm/BarbAndGavinWhippedCreamFun.jpg","duration":1355,"publication_date":"2018-02-14T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-479","changefreq":"weekly","video":[{"title":"2018:E479 - Burnie Ups His Pancake Game - #479","description":"Join Ashley Jenkins, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss pancakes, nudity in film, food misconceptions, and more on this week's RT Podcast! This episode originally aired on February 12, 2018, sponsored by Evenprime (http://bit.ly/2EE4FUH) and Casper (http://bit.ly/2EyIz69)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-479","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9136bb2a-ccb1-48a9-92b6-a6f2104c44f2.jpg/sm/RTPodcast4791thumbnail.jpg","duration":5370,"publication_date":"2018-02-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-still-open-56","changefreq":"weekly","video":[{"title":"2018:E56 - Thrill of the Chase - #56","description":"Join Barbara Dunkelman, Ashley Jenkins, Blaine Gibson, and Mariel Salcedo as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-still-open-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3608f1d-931a-4b22-9979-da749e5d1170.png/sm/AOSite00003621Still003.png","duration":737,"publication_date":"2018-02-13T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-56","changefreq":"weekly","video":[{"title":"2018:E56 - The Accidental Snapchat - #56","description":"Join Barbara Dunkelman, Ashley Jenkins, Blaine Gibson, and Mariel Salcedo as they do a round of cupidity, discuss a user-submitted confessional, and answer a question from the Box of Issues! This episode brought to you by HelloFresh (http://bit.ly/2BlWg30) and Tripping (http://bit.ly/2nTPDQa).","player_loc":"https://roosterteeth.com/embed/always-open-2018-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/573ccd6a-b9a1-48ea-8568-6f469925257a.jpg/sm/Always_Open_56_1_thumbnail.jpg","duration":3111,"publication_date":"2018-02-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-316","changefreq":"weekly","video":[{"title":"2018:E316 - Find Your Kenny","description":"Fun fact. Jon can't smell, so a couple of his college buddies put him to the test. Chris throws some shade. \r\n\r\nAudio from Rooster Teeth Podcast #459\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-459-oevhii\r\nAnimated by: Quinn Weston\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f0f4f35-2ef3-49a4-8e45-876642af7a8e.jpg/sm/rtaa316tn.jpg","duration":155,"publication_date":"2018-02-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-po02s","changefreq":"weekly","video":[{"title":"S3:E3 - Episode 3 - Mortal Frenemies","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-po02s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ffda3691-ef7c-4c6e-bf2d-be13a3e36d2c.jpg/sm/RWBYChibi3Ep03Thumbnail.jpg","duration":214,"publication_date":"2018-02-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-the-architect","changefreq":"weekly","video":[{"title":"2018:E6 - The Cream of the Crop","description":"After last week our boys are anything but ready for what the rest of this game has in store for them but you know who is ready? SHE'S THE CREAM OF THE CROP, OH YEAH, SHE HAS THE BAKING SKILLS TO PAY THE BILLS, FOR HER THE SKY'S THE LIMIT, WHO'S READY? NATSUKI'S READY.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-the-architect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2dc17759-71c5-41bc-a274-3a0084b2b565.jpg/sm/BzCDOKIDOKI1Thumb04.jpg","duration":3968,"publication_date":"2018-02-09T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-11-on-the-spot-124","changefreq":"weekly","video":[{"title":"S11:E124 - Keeping Up With the Joneses Down Under - #124","description":"The two power couples of Funhaus and Achievement Hunter battle it out in Sydney over what Emperor Palpatine looks like naked, Australia's leftover animals, and Stephen Hawking's sexy moves. Also there is a major push-up competition. Sponsored by Blue Apron (http://cook.ba/1V1MMMd), 1-800-Flowers (http://bit.ly/2nQcigs), and Shari's Berries (http://bit.ly/2EBDpDG). Hosted by Jon Risinger. Featuring Michael and Lindsay Jones, and James and Elyse Willems.","player_loc":"https://roosterteeth.com/embed/on-the-spot-11-on-the-spot-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5f6819a9-9ada-4e12-9cea-0be54e0320fc.jpg/sm/OntheSpot124thumbnail5.jpg","duration":3212,"publication_date":"2018-02-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-2","changefreq":"weekly","video":[{"title":"S5:E2 - Funhaus All Lubed Up","description":"Join Adam, Lawrence and Bruce in a greasy, lubricated adventure with magnetic balls and a fleet of drones in this Funhaus episode of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6c5c5ed3-320d-4084-bd12-f130043aac9d.jpg/sm/MDBS5FunhausThumbnail5.jpg","duration":305,"publication_date":"2018-02-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-478-post-show","changefreq":"weekly","video":[{"title":"2018:E5 - The Jumanji Time Paradox - #478","description":"Join Tyler Coe, Blaine Gibson, Chris Demarais, and Todd Womack as they discuss remakes, reboots, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-478-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c4ecb78d-c7e5-49bd-9d4d-d6ff15d248bb.jpg/sm/RTP478ToddPS.jpg","duration":1062,"publication_date":"2018-02-07T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-rt-podcast-478","changefreq":"weekly","video":[{"title":"2018:E478 - Scruffy Looking Nerf Herders - #478","description":"Join Tyler Coe, Blaine Gibson, Chris Demarais, and Todd Womack as they discuss dating techniques, unpopular opinions, replacing people in movies, and more on this week's RT Podcast! This episode originally aired on February 5, 2018, sponsored by MeUndies (http://bit.ly/2CQjpvr), Squarespace (http://bit.ly/1SPgAL3), ProFlowers (http://bit.ly/2ykkmgZ)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-rt-podcast-478","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/64179356-a526-487e-99d1-03e153fbc5a8.jpg/sm/RTPodcast478thumbnail8.jpg","duration":5304,"publication_date":"2018-02-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-still-open-2018-still-open-55","changefreq":"weekly","video":[{"title":"2018:E55 - Beatboxin' with Jessica Nigri - #55","description":"Join Barbara Dunkelman, Miles Luna, Mariel Salcedo, and special guest Jessica Nigri as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-still-open-2018-still-open-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e627544d-74b4-4f7f-b3de-8672dc29d2b7.jpg/sm/ao55PSthumb.jpg","duration":998,"publication_date":"2018-02-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2018-things-get-furry-with-jessica-nigri-55","changefreq":"weekly","video":[{"title":"2018:E55 - Things Get Furry with Jessica Nigri - #55","description":"Join Barbara Dunkelman, Miles Luna, Mariel Salcedo, and special guest Jessica Nigri as they do a round of cupidity, discuss the new RT Doc starring Jessica, talk about their inspirations, and answer a question from the Box of Issues! This episode brought to you by BioClarity (http://bit.ly/2AnGPHP) and MVMT (http://bit.ly/2xJDj8o)","player_loc":"https://roosterteeth.com/embed/always-open-2018-things-get-furry-with-jessica-nigri-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3337282-1f42-46bf-a3dd-74f119209c4d.jpg/sm/AlwaysOpen55thumbnail3.jpg","duration":3298,"publication_date":"2018-02-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-315","changefreq":"weekly","video":[{"title":"2018:E315 - Michael the Baby Seal Overlord","description":"Michael plays Overlord 2 and is a bit of an over achiever when it comes to killing. Denise isn't having it and tries to shame him.\r\n\r\nAudio from Off Topic #94\r\nhttp://achievementhunter.roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-94-heoibh\r\nAnimated by: John Floyd\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/16133ac6-75b6-4ce8-b9a6-f1f55eac32df.jpg/sm/rtaa315tn.jpg","duration":110,"publication_date":"2018-02-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2018-cod-ww2-nazi-zombies","changefreq":"weekly","video":[{"title":"2018:E1 - CoD WW2 Nazi Zombies","description":"Plum Squad finally decides to give PUBG a rest and move on to another game to be terrible at. Can they channel their inner Ving Rhames and survive? Find out!\r\nSpecial thanks to Evan VanWormer for the Plum Squad fan art used in the thumbnail.","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2018-cod-ww2-nazi-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/32fce485-20a9-43d3-9962-6c81eadf8e91.jpg/sm/thumbnail.jpg","duration":2522,"publication_date":"2018-02-03T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-eha0sf","changefreq":"weekly","video":[{"title":"S3:E2 - Episode 2 - Evil Interview","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-eha0sf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7eb7b5bf-e020-4d52-bb45-4c3d4e36b258.jpg/sm/RWBYChibi3Ep02Thumbnail.jpg","duration":212,"publication_date":"2018-02-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2018-airbrushing-rwby","changefreq":"weekly","video":[{"title":"2018:E1 - CRWBY Gets a Crazy Gift!","description":"On the heels of an amazing RWBY finale, Marcus and the art department prepare a Grimm gift for CRWBY. Special appearance by the fan-favorite Nuckelavee.","player_loc":"https://roosterteeth.com/embed/rt-life-2018-airbrushing-rwby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/166bc079-ed4c-446a-b54f-593dae220ab5.jpg/sm/RT_Life_Nuckelavee_1_Thumbnail.jpg","duration":113,"publication_date":"2018-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-doki-doki-3","changefreq":"weekly","video":[{"title":"2018:E5 - No Longer Okie Doki","description":"% Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. Get out of my head. NSFL.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-doki-doki-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/75e7ecf2-edf4-4a6c-aae1-b3aa04f30484.jpg/sm/BzCDOKIDOKI1Thumb03.jpg","duration":4305,"publication_date":"2018-02-02T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/for-the-win-season-11-123","changefreq":"weekly","video":[{"title":"S11:E123 - For the Win #123","description":"Hosted by Jon Risinger. Featuring Gus Sorola, Ashley Jenkins, Brian Gaar, and Todd Womack.","player_loc":"https://roosterteeth.com/embed/for-the-win-season-11-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c484029-7344-48d4-9600-c191ad9b25fb.jpg/sm/YT00202623Still001.jpg","duration":650,"publication_date":"2018-02-02T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-ots-123","changefreq":"weekly","video":[{"title":"S11:E123 - Jon & Friends in the Morning #123","description":"Gus invents the Pepto & Vodka cocktail to get through a morning taping, Ashley discovers horse punching in the City of Battery Love, and a \"secret points\" scandal is exposed. Sponsored by 1-800-Flowers (http://bit.ly/2pdrQNi), Shari's Berries (http://bit.ly/2BJkTGA), and MeUndies (http://bit.ly/2BJMbwr). Hosted by Jon Risinger. Featuring Gus Sorola, Ashley Jenkins, Brian Gaar, and Todd Womack. ","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-ots-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee21e216-1a16-4ac9-990a-85b53809f7b6.jpg/sm/OntheSpot123thumbnail4.jpg","duration":2672,"publication_date":"2018-02-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-5-1","changefreq":"weekly","video":[{"title":"S5:E1 - Achievement Hunter Sandal Scandal","description":"Join Jack, Jeremy, and Ryan as they fight inanimate objects and hunt down sandal & sock sociopaths in an Achievement Hunter episode of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-5-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a272e4f6-8036-4818-8f9e-d260df055b14.jpg/sm/MDBS5AchievementHunterThumbnail1.jpg","duration":309,"publication_date":"2018-02-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-477-post-show","changefreq":"weekly","video":[{"title":"2018:E4 - This Is The Best Bit - #477","description":"Join Gus Sorola, Gavin Free, David Eddings, and Burnie Burns as they discuss Gus’s birthday, Transformers, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-477-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d1644092-1656-4480-908c-ae5931eac03c.jpg/sm/RTP477PsGusCaught.jpg","duration":1339,"publication_date":"2018-01-31T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2018-onnit-assessment","changefreq":"weekly","video":[{"title":"2018:E1 - Onnit Assessment","description":"After working out 6 times a week for 6 weeks Ellie checks in with the team at Onnit to find out her final assessment numbers","player_loc":"https://roosterteeth.com/embed/the-lab-2018-onnit-assessment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dea30aac-3203-4688-883a-44de83c747b1.png/sm/OnnitThumbnail.png","duration":463,"publication_date":"2018-01-31T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-477","changefreq":"weekly","video":[{"title":"2018:E477 - Gus Has a Diva Moment - #477","description":"Join Gus Sorola, Gavin Free, David Eddings, and Burnie Burns as they discuss retro gaming, celebrity deaths, an intern coming clean, and more on this week's RT Podcast! This episode originally aired on January 29, 2018, sponsored by Tripping (http://bit.ly/2Dne7rt), ProFlowers (http://bit.ly/2ykkmgZ), Dollar Shave Club (http://bit.ly/2D8ErXc)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-477","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2f277f54-f85d-4dd6-b938-b16ec1272032.jpg/sm/RTPodcast4774thumbnail.jpg","duration":5542,"publication_date":"2018-01-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-314","changefreq":"weekly","video":[{"title":"2018:E314 - Mooning Over Shoes","description":"Aaron recalls the first time he was ever mooned, while Brandon pitches his moon shoes idea to a tough band of investors. \r\n\r\n\r\nAudio from Rooster Teeth Podcast # 340 and 462\r\nhttp://roosterteeth.com/episode/rt-podcast-season-1-the-proposal-problem-340\r\nhttps://www.youtube.com/watch?v=8AKLa-iTJcM\r\n \r\n\r\nAnimated by: Tanya Fetzer and Gabe Silva\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/40312b2c-05e0-435b-9bf9-021658342194.jpg/sm/rtaa314tn.jpg","duration":120,"publication_date":"2018-01-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-3-episode-1","changefreq":"weekly","video":[{"title":"S3:E1 - Episode 1 - Road Trip","description":"RWBY Chibi is back for a third season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-3-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dcc1cc9a-6039-432a-a855-0adee76a2394.jpg/sm/RWBYChibi3Ep01Thumbnail.jpg","duration":225,"publication_date":"2018-01-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-doki-doki-2","changefreq":"weekly","video":[{"title":"2018:E4 - Embrace the Sploosh","description":"Kyle and Miles are deeply invested in this game if only to become deeply invested in waifu Yuri but our boys slowly realize that showing one girl affection might affect their other potential waifus in a negative way.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-doki-doki-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c27b10cc-7d48-4b98-b6cb-6446822c36fd.jpg/sm/BzCDOKIDOKI1Thumb02.jpg","duration":6562,"publication_date":"2018-01-26T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/master-and-apprentice-season-1-monster-hunter-world-jaw-blade","changefreq":"weekly","video":[{"title":"S1:E5 - Monster Hunter: World - Jaw Blade","description":"Adam and Marcus fabricate a massive 7 foot sword out of balsa wood, it’s Monster Hunting time!\r\n\r\nExecutive Producers : Burnie Burns and Matt Hullum \r\nSupervising Producer: Will Hyde\r\nUnit Production Manager: Christopher Shea \r\nAssociate Producer: Jason Baskin\r\nCreated by: Marcus LaPorte and Adam Ellis \r\nDirector: Drew Saplin \r\nDirector of Photography : Taylor Camarot, Nathan Smith \r\nCamera Operators : Erik Gatling & Colton Clements \r\nKey Grip: Fionna Mogford \r\nArt Department Coordinator: Stephanie Ard\r\nAdditional Prop fabricators: Kit Casati, Stephen Fay, Alex Toader, Ashley Schmidt \r\nWardrobe: Erika Slay \r\nPost Producer : Allison Feldstein\r\nEditors: John Moore, Jordan Kefield, Timothy Edwards, Kody Gibson \r\nAdditional Editors : Joe Ashe, Sarah Deuel \r\nPost Sound : Jake Camitta \r\nMotion Graphics : Brian Behm \r\nDIT: David Nguyen","player_loc":"https://roosterteeth.com/embed/master-and-apprentice-season-1-monster-hunter-world-jaw-blade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6e326e56-fe5f-4d53-ac8f-e2b2ef5877e0.jpg/sm/MAEp5Thumbnail3.jpg","duration":776,"publication_date":"2018-01-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-docs-becoming-jessica-nigri-8jgohb3s","changefreq":"weekly","video":[{"title":"BJN:E2 - Becoming Jessica Nigri","description":"Jessica Nigri is an internationally renowned cosplayer, racking up millions of social media followers and the number one Patreon page in cosplay. Becoming Jessica Nigri explores her life, from a magical childhood growing up with quirky parents in New Zealand, to entering middle school in the U.S. where she was mercilessly teased for her “nerdy” interests. Through cosplay, Jessica learned that becoming someone else gives her the courage to be herself.","player_loc":"https://roosterteeth.com/embed/rt-docs-becoming-jessica-nigri-8jgohb3s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/acb212d3-83d2-40fb-9d29-cda13f5a97a1.png/sm/ScreenShot20180123at102935AM.png","duration":2927,"publication_date":"2018-01-26T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/for-the-win-season-11-122","changefreq":"weekly","video":[{"title":"S11:E122 - For the Win #122","description":"Hosted by Jon Risinger. Featuring Miles Luna, Alfredo Diaz, Mariel Salcedo and Ellie Main.","player_loc":"https://roosterteeth.com/embed/for-the-win-season-11-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4a4c28fa-45c2-41f8-985f-e642c5b7e877.png/sm/Site00024708Still008.png","duration":350,"publication_date":"2018-01-26T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-122","changefreq":"weekly","video":[{"title":"S11:E122 - Live Más - #122","description":"\"Jon’s “parents” make a surprise visit. Alfredo and Mariel have to play our version of a taboo challenge. \nSponsored by Dollar Shave Club (http://bit.ly/2zQ61Xb) MVMT Watches (http://bit.ly/2zPGRIp) and Felix Gray Glasses (http://bit.ly/2Du6vUf) Hosted by Jon Risinger. Featuring Miles Luna, Alfredo Diaz, Mariel Salcedo and Ellie Main.\"","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5a1689d-22cf-41e7-8925-9b9f7ca68f02.jpg/sm/OntheSpot122thumbnail1.jpg","duration":2582,"publication_date":"2018-01-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-476-post-show","changefreq":"weekly","video":[{"title":"2018:E3 - The Remote Show - #476","description":"Join Gus Sorola, Gavin Free, and Burnie Burns as they discuss pets,home automation, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-476-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be754702-d358-422c-adb1-708ed1c25ae2.jpg/sm/rtp476THUMB.jpg","duration":1532,"publication_date":"2018-01-25T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-jessica-nigri-brings-cinder-to-life-14","changefreq":"weekly","video":[{"title":"1:E14 - Jessica Nigri Brings Cinder to Life! - #14","description":"Chad and Yssa host a stirring finale feauring Jessica Nigri and Gray Haddock, the voices of villains Cinder and Torchwick. They discuss the RWBY Volume 5 finale, and Gray gets a secret message from the Couch of Doom.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-jessica-nigri-brings-cinder-to-life-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8016e947-ef9f-413c-9458-7c43a8ba0cbc.jpg/sm/RWBYRW14Thumb.jpg","duration":2341,"publication_date":"2018-01-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-476","changefreq":"weekly","video":[{"title":"2018:E476 - Jessica Nigri Eats Lemons - #476","description":"Join Gus Sorola, Gavin Free, Burnie Burns, and special guest Jessica Nigri as they discuss significant others and video games, VR, One List One Life, and more on this week's RT Podcast! This episode originally aired on January 22, 2018, sponsored by Squarespace (http://bit.ly/290ucbK), MVMT (http://bit.ly/2vXl1zZ), Blue Apron (http://cook.ba/29J4MMj). \n\nFor tickets to “RTX Presents: Live From Austin!” visit http://bit.ly/2DwmqS7\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAnd for more info on One List, One Life and how you can help, visit Chris and Dillon’s website at http://bit.ly/2DtnTZg","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-476","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/db29f993-1873-42c0-8bb7-87a25ae33093.jpg/sm/RTPodcast476thumbnail5.jpg","duration":5820,"publication_date":"2018-01-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-final","changefreq":"weekly","video":[{"title":"2017:E53 - The Final Vlog","description":"Recorded January 12, 2018. The Vlog series ran from January 25th, 2017 to Janurary 23rd, 2018. Many people made it possible: Ellie Main, Camino 84, Lumix, Bradley Friesen, Monstercat, Guy Blomberg, Matt Cherne, Brian Behm, Marcus LaPorte, Gavin Free, Matt Hullum, Jessica Versteeg, Olga Kay, Korey Kuhl, Hannah Hart, Chelsea Harfoush, Zach Roth, Onnit, Martha Marin, SAAM Hunter Training, Graphics Guys, Genesis Flight Academy, Barenaked Ladies, Cairns Dive Centre, DJI Global, Jordan Burns, JD Burns, Teddy Burns and Ashley Jenkins.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-final","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a09fa139-111e-4893-9cf2-3705886a72bd.png/sm/FinalVlogThumbnail.png","duration":887,"publication_date":"2018-01-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-313","changefreq":"weekly","video":[{"title":"2018:E313 - Gus' Mile High Club","description":"Gus just can't control his body.\r\n\r\nAudio from Rooster Teeth Podcast #399 and #436\r\nhttp://roosterteeth.com/episode/rt-podcast-2016-399\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-436-sfj39u4t\r\n\r\nAnimated by: Johnathan Floyd, William Ball, Quinn Weston\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1027cb34-4aa8-45a4-bfc0-44ab97d650e2.jpg/sm/rtaa313tn.jpg","duration":145,"publication_date":"2018-01-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-fanfare","changefreq":"weekly","video":[{"title":"1:E14 - Fanfare","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-fanfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f515cadc-46b8-4d0d-804b-b3e3530a9ed0.jpg/sm/CRWBYvolume1episode14Thumbnail.jpg","duration":254,"publication_date":"2018-01-20T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-14vvs8sd","changefreq":"weekly","video":[{"title":"V5:E14 - Volume 5, Chapter 14: Haven's Fate","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-14vvs8sd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b73eefba-1ada-492a-bce4-b2af3add5a1c.jpg/sm/RWBYvolume5episode14Thumbnail.jpg","duration":1469,"publication_date":"2018-01-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-doki","changefreq":"weekly","video":[{"title":"2018:E3 - Doki Doki Literature Club!","description":"Kyle and Miles join a literature club full of adorable waifus. Should just be your typical harem anime type visual novel right? ......Right?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-doki","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/83b91a41-9c42-4da7-a4f2-23643ba1909d.jpg/sm/BCDOKIDOKI1Thumb01.jpg","duration":8674,"publication_date":"2018-01-20T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/master-and-apprentice-season-1-alien-motion-tracker","changefreq":"weekly","video":[{"title":"S1:E4 - Alien - Motion Tracker","description":"Adam and Marcus build a Xenomorph detecting motion tracker from the game Alien: Isolation.","player_loc":"https://roosterteeth.com/embed/master-and-apprentice-season-1-alien-motion-tracker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/038d2b0b-c05b-4b30-9395-bce2d000c32e.jpg/sm/MAEp4Thumbnail1.jpg","duration":615,"publication_date":"2018-01-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/for-the-win-season-11-111","changefreq":"weekly","video":[{"title":"S11:E121 - For the Win #121","description":"Hosted by Jon Risinger. Featuring Jeremy Dooley, Trevor Collins, Cole Gallian and Patrick Matthews.","player_loc":"https://roosterteeth.com/embed/for-the-win-season-11-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad45850d-cbac-4b1a-9ea3-12bd7c2a72a3.jpg/sm/OTS121MediumPS.jpg","duration":781,"publication_date":"2018-01-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-theme-pack-dungeons-dragons-and-dumbasses","changefreq":"weekly","video":[{"title":"TP:E5 - Dungeons, Dragons, and Dumbasses","description":"Journey with Gus, Frank, and Griffon as they get pestered by their own personal fairy and have their lives ruled by a dungeon master in this fantasy-themed episode of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-theme-pack-dungeons-dragons-and-dumbasses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aef1d53c-4d9c-434a-a50d-9770086c334c.jpg/sm/MDBS5Episode5Thumbnail3.jpg","duration":311,"publication_date":"2018-01-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-11-121","changefreq":"weekly","video":[{"title":"S11:E121 - Tide Pod Bros - #121","description":"Jon tests Cole and Trevor's Pokemon skills while Jeremy and Patrick end up in a cave together with no pants. Just another season opener for On The Spot. Sponsored by Blue Apron (http://cook.ba/1V1MMMd) and Boll and Branch (http://bit.ly/2DMARm8). Hosted by Jon Risinger. Featuring Jeremy Dooley, Trevor Collins, Cole Gallian and Patrick Matthews.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-11-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/112f51c5-793e-426e-b811-7b221d7936a1.jpg/sm/OntheSpot121thumbnail5.jpg","duration":2453,"publication_date":"2018-01-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-475-post-show","changefreq":"weekly","video":[{"title":"2018:E2 - Too Much Money To The Face - #475","description":"Join Gus Sorola, Gavin Free, Burnie Burns, and special guest Kirk Johnson as they discuss microtransactions, GTA, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-475-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02120ebc-dccc-4c59-9d1e-d2fe493083ef.jpg/sm/RTP475PSBurnieDefensive.jpg","duration":1088,"publication_date":"2018-01-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-all-the-answers-13","changefreq":"weekly","video":[{"title":"1:E13 - All The Answers - #13","description":"Co-hosts Yssa and Chad host RWBY co-writer/co-director Miles Luna and director/co-writer Kerry Shawcross in an exciting episode bursting at the seams with co-lossal answers to co-mmunity questions about RWBY.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-all-the-answers-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d314a434-3578-4da7-a2fe-d82ba447ea03.jpg/sm/rwbyrw13THUMB.jpg","duration":2011,"publication_date":"2018-01-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-ama","changefreq":"weekly","video":[{"title":"2017:E52 - AMA","description":"Ever wondered what Burnie's favorite moment in the history of RT is? Or what he would change? Or where he gets his clothes? Burnie answers questions sent in from the audience in the penultimate Vlog with help from Chelsea, and Gus (the dog).","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-ama","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2c8f30be-b423-4a9a-a36f-ed39b78e1bc4.png/sm/BurnieVLOGTHUMB.png","duration":1254,"publication_date":"2018-01-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-475","changefreq":"weekly","video":[{"title":"2018:E475 - Is Reality Dumber Than Fiction? - #475","description":"Join Gus Sorola, Gavin Free, Burnie Burns, and special guest Kirk Johnson as they discuss Star Wars, the best shows of 2017, flying incidents, and more on this week's RT Podcast! This episode originally aired on January 15, 2018, sponsored by MeUndies (http://bit.ly/2CQjpvr), Daily Harvest (http://bit.ly/2qV3vOV), Casper (http://bit.ly/2sa1gGZ)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-475","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff270254-4c61-4d5b-8c83-e93c2fd67f48.jpg/sm/RTPodcast475thumbnail5.jpg","duration":5830,"publication_date":"2018-01-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-312","changefreq":"weekly","video":[{"title":"2018:E312 - Recycling Rulz, T-Rex Droolz","description":"The Gang argue about the art of recycling and Gus daydreams about a T-rex in the modern world.\r\n\r\nAudio from Rooster Teeth Podcast # 405 postshow and 350\r\nhttp://roosterteeth.com/episode/rt-podcast-season-1-the-time-capsule-cast-350\r\nhttp://roosterteeth.com/episode/rt-podcast-2016-podcast-405-post-show-paa7dn\r\n\r\nAnimated by: Tanya Fetzer and Jordan Battle\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eab0e92e-2bde-4a42-8baf-ec32170f043a.jpg/sm/rtaa312tn.jpg","duration":98,"publication_date":"2018-01-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-no-technical-difficulties","changefreq":"weekly","video":[{"title":"1:E13 - No Technical Difficulties","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-no-technical-difficulties","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0dc298b3-cf7b-4286-8887-8ffcbea9bfa2.jpg/sm/CRWBYvolume1episode13Thumbnail.jpg","duration":215,"publication_date":"2018-01-13T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-13zxsre98","changefreq":"weekly","video":[{"title":"V5:E13 - Volume 5, Chapter 13: Downfall","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-13zxsre98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cbefdf00-3833-4aa1-bc7a-8741ee9a2474.jpg/sm/RWBYvolume5episode13Thumbnail.jpg","duration":928,"publication_date":"2018-01-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-do-u-know-da-wae","changefreq":"weekly","video":[{"title":"2018:E2 - DO U KNOW DA WAE?","description":"Kyle and Miles are back with \"Brick House\" Baker and a simple question, DO U KNOW DA WAE?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-do-u-know-da-wae","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa3cd889-35af-470d-8b4a-45ba35247500.jpg/sm/BzCRE7DLCENDOFZOETHUMB02.jpg","duration":3799,"publication_date":"2018-01-12T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/master-and-apprentice-season-1-3","changefreq":"weekly","video":[{"title":"S1:E3 - Star Wars - Custom Lightsabers","description":"Marcus and Adam build their own custom lightsabers. Always two there are, no more, no less. A master, and an apprentice.","player_loc":"https://roosterteeth.com/embed/master-and-apprentice-season-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/42c7f0ee-bf7e-4603-81c6-f170c24512c5.jpg/sm/MAEP3NoLogoThumbnail.jpg","duration":485,"publication_date":"2018-01-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1","changefreq":"weekly","video":[{"title":"1:E12 - Plot Twist Central - #12","description":"Chad and Yssa explore and expand on a huge RWBY episode. Erin and Sean from the art team drop by to chat concept art and rigging. Yssa feels better.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cdf7feb6-ebb0-4044-b76d-115c7ad8fed9.jpg/sm/RWBYRW12.jpg","duration":1934,"publication_date":"2018-01-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-post-show-2018-474-post-show","changefreq":"weekly","video":[{"title":"2018:E1 - The Sugar Daddy Capital - #474","description":"Join Gus Sorola, Gavin Free, Ellie Main, and Burnie Burns as they discuss sugar daddies, coffee, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-post-show-2018-474-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a1ceb614-2acf-4ee7-a488-a819dee9b863.jpg/sm/RTP474_PS_01.jpg","duration":1272,"publication_date":"2018-01-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2018-474","changefreq":"weekly","video":[{"title":"2018:E474 - What Makes Burnie Jealous? - #474","description":"Join Gus Sorola, Gavin Free, Ellie Main, and Burnie Burns as they discuss small jealousies, controversies, the internet and how it’s changed, and more on this week's RT Podcast! This episode originally aired on January 8, 2018, sponsored by Dollar Shave Club (http://bit.ly/2D8ErXc)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2018-474","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3da08e9-767e-4309-8220-14410d02f808.jpg/sm/RTPodcast474thumbnail3.jpg","duration":5512,"publication_date":"2018-01-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-resolutions","changefreq":"weekly","video":[{"title":"2017:E51 - Resolutions","description":"Your favorite friends at RT preview some exciting projects in the work for 2018, and talk about their personal goals for the year.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-resolutions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c36041e1-f97b-4772-89fa-04e56fdeb84a.png/sm/BurnieVlogResoltionsThumbnail.png","duration":653,"publication_date":"2018-01-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2018-311","changefreq":"weekly","video":[{"title":"2018:E311 - Twitch Chicken","description":"Jon and Miles get caught streaming at the same time and things get intimate.\r\n\r\nAudio from Rooster Teeth Podcast # 352\r\nhttp://roosterteeth.com/episode/rt-podcast-season-1-352\r\nAnimated by: Quinn Weston\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2018-311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/553fc009-af69-40ed-9193-186e97b99a12.jpg/sm/rtaa311tn.jpg","duration":139,"publication_date":"2018-01-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-the-pen-and-the-sword","changefreq":"weekly","video":[{"title":"1:E12 - The Pen and The Sword","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-the-pen-and-the-sword","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7fb6b6d4-4eef-4409-98c0-15f8757909a2.jpg/sm/CRWBYvolume1episode12Thumbnail.jpg","duration":208,"publication_date":"2018-01-06T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-12lkopoklk1","changefreq":"weekly","video":[{"title":"V5:E12 - Volume 5, Chapter 12: Vault of the Spring Maiden","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-12lkopoklk1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/24625a6b-3fd6-4569-85d5-6e2e66f5553c.jpg/sm/RWBYvolume5episode12Thumbnail.jpg","duration":883,"publication_date":"2018-01-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-you-re-gonna-carry-that-weight","changefreq":"weekly","video":[{"title":"2017:E49 - You're Gonna Carry That Weight - #49","description":"Join Gray, Kerry, Cole, Austin, Yssa, and Erin as they discuss the 2018 Winter Season, reflections on the series covered, and the biggest news in Fan Service history on this episode of Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-you-re-gonna-carry-that-weight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d8456972-7aae-4aa8-b563-78bc635d5673.png/sm/unnamed.png","duration":5719,"publication_date":"2018-01-06T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2018-1","changefreq":"weekly","video":[{"title":"2018:E1 - Re7 - End of Zoe","description":"Kyle and Miles step into the shoes of their new best friend Joe Baker and quickly find out that he has no weapons to speak of, nothing but his fists. After they discover this our duo realizes one thing. Joe isn't trapped in the swamp with gators, the molded, and swamp thing; they're trapped in the swamp with Joe.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2018-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/68af2bda-7cd0-4f25-bb26-83833e47c2db.jpg/sm/BzCRE7DLCENDOFZOETHUMB01.jpg","duration":3926,"publication_date":"2018-01-05T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/master-and-apprentice-season-1-2","changefreq":"weekly","video":[{"title":"S1:E2 - Blade Runner - Retinal Scanner","description":"Marcus and Adam fabricate a replicant identifying retinal scanner inspired by the production design and aesthetic of the Blade Runner universe.","player_loc":"https://roosterteeth.com/embed/master-and-apprentice-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3609d9a3-45e9-45ef-ab50-757edde98a2e.jpg/sm/MAEP22Thumbnail.jpg","duration":520,"publication_date":"2018-01-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-rwbyrw-11","changefreq":"weekly","video":[{"title":"1:E11 - Can We Talk About Weiss? - #11","description":"Yssa nurses a busted heart, Chad puts on a brave face, & RWBY Lead Producer Koen Wooten shares NOTHING! But Layout/Story Artist Rachel Doda maintains a pleasant demeanor as she walks us through her impressive contributions to RWBY. Watch out for spoilers!","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-rwbyrw-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/84a9ff67-979c-4e04-aff7-413ae8489b0c.jpg/sm/RWBYRW11THUMBNAIL.jpg","duration":1843,"publication_date":"2018-01-03T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-473-post-show","changefreq":"weekly","video":[{"title":"2017:E473 - Happy New Year! - RT Podcast #473 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss New Year's Resolutions","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-473-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dc1531b0-2ec8-4acd-9df4-80b0510e5515.png/sm/RTPps473.png","duration":1317,"publication_date":"2018-01-03T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-473","changefreq":"weekly","video":[{"title":"2017:E473 - Gus Offers His Lap #473","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss their favorite vines, Chrissy Teigen's nightmare flight, and more! This episode brought to you by Squarespace (http://bit.ly/1SPgAL3) and Tripping (http://bit.ly/2Dne7rt)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-473","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/adad7818-1f23-4812-a1d6-fe2d035a8a50.png/sm/RTP473HyperStill.png","duration":5545,"publication_date":"2018-01-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-ljj8gwkhl","changefreq":"weekly","video":[{"title":"2017:E50 - Ellie Gets Fired","description":"Ellie is too dangerous to be Burnie's assistant. The solution? She will continue her training to become Bear Grylls / Lara Croft and Burnie will hire a jaguar (or a very smart Puma) for protection and to organize his calendar. Sounds about right. MUSIC: Dreamers by Matt Cherne","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-ljj8gwkhl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28e46eaa-ed8c-42b0-9b94-122f247dc437.png/sm/EllieGetsFiredThumbnail.png","duration":503,"publication_date":"2018-01-02T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-snowboard-slam","changefreq":"weekly","video":[{"title":"2017:E53 - Snowboard Slam","description":"Michael has been snowboarding only one time and of course he hit someone.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-snowboard-slam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23c84d2f-62dd-4ef2-a9c0-30b7c40eb764.jpg/sm/rtaa310tn.jpg","duration":148,"publication_date":"2018-01-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-11oipiow45","changefreq":"weekly","video":[{"title":"V5:E11 - Volume 5, Chapter 11: The More the Merrier","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-11oipiow45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a53d5d35-c739-4b17-8e28-1a461190b175.jpg/sm/RWBYvolume5episode11Thumbnail.jpg","duration":965,"publication_date":"2017-12-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-drawing-inspiration","changefreq":"weekly","video":[{"title":"1:E11 - Drawing Inspiration","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-drawing-inspiration","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/28b6c5ca-4b0a-457e-a07e-d9c6f10ca2e4.jpg/sm/CRWBYvolume1episode11ThumbnailALT.jpg","duration":206,"publication_date":"2017-12-30T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-fs48","changefreq":"weekly","video":[{"title":"2017:E48 - 2018: The Penetration Renaissance - #48","description":"Join Gray, Kerry, Cole, Austin, and Erin as they discuss Land of Lustrous, Space Battleship Yamato, the last 100 years of anime and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-fs48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f54ad72a-a529-4450-965f-b4f3d0c08917.png/sm/fanservice048.png","duration":4243,"publication_date":"2017-12-30T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-i-c-p","changefreq":"weekly","video":[{"title":"2017:E50 - RE7 - I.C.P.","description":"Kyle and Miles have a bomb strapped to their wrist, an I.C.P. loving mad man on the loose, and mold, so much mold growing everywhere in this mine. Our boys better grab some bleach and get to cleaning because this DLC is barreling towards it's conclusion. (Stick around after the credits because our boys get an exclusive play through of a Claire Redfield \"Secret Mission\".)","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-i-c-p","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9016eb25-f867-40e4-a183-a7b22d586553.jpg/sm/BzCRE7DLCTHUMB02.jpg","duration":2836,"publication_date":"2017-12-29T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/master-and-apprentice-season-1-master-apprentice-blade-runner-retinal-scanner","changefreq":"weekly","video":[{"title":"S1:E1 - Destiny 2 - Wardcliff Coil","description":"In the first episode of the series, Marcus and Adam face a tough build as they tackle Destiny 2’s Wardcliff Coil.","player_loc":"https://roosterteeth.com/embed/master-and-apprentice-season-1-master-apprentice-blade-runner-retinal-scanner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f75f4c36-6334-4364-a555-8824b8ee806d.jpg/sm/MARocketLauncher1Thumbnail.jpg","duration":545,"publication_date":"2017-12-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-472-post-show","changefreq":"weekly","video":[{"title":"2017:E62 - When is Boxing Day? - Podcast #472 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Burnie Burns as they discuss sports teams that relocated, Boxing Day, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-472-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38b0b600-21a5-47f8-ae82-8aefe000ba53.jpg/sm/psthumb.jpg","duration":687,"publication_date":"2017-12-28T23:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-eoy-2017","changefreq":"weekly","video":[{"title":"2017:E9 - 2017: The Year of the Rooster","description":"2017 was filled with new shows, new seasons, new episodes, and new laughs. Check out some highlights from the Year of the Rooster, and thanks for being a part of our awesome community and helping make this the best year ever!","player_loc":"https://roosterteeth.com/embed/the-lab-2017-eoy-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5e3052e-7a33-4529-a436-ce7f3760a9e4.jpg/sm/RT_EOY_2017_2_Thumbnail.jpg","duration":153,"publication_date":"2017-12-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-472","changefreq":"weekly","video":[{"title":"2017:E472 - Porgs Are Better Than Ewoks - #472","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Burnie Burns as they discuss Santa’s reindeer, highest grossing movies, horsepower, and more on this week's RT Podcast! This episode originally aired on December 25, 2017, sponsored by Audible (http://adbl.co/2CRjvmi)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-472","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7c2b623-ffd2-470d-926b-d27fa1e214b7.jpg/sm/RT_Podcast_472_1_thumbnail.jpg","duration":5414,"publication_date":"2017-12-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-year-of-the-rooster","changefreq":"weekly","video":[{"title":"2017:E48 - Year of the Rooster","description":"Just in time for the holidays, join Burnie and many familiar Rooster Teeth faces as we celebrate the Year of the Rooster and all the grand adventures it gave to us! From scuba diving the Great Barrier Reef to filming Lazer Team 2 and everything in between, 2017 packed a lot of punch. Enjoy!\r\n\r\nMUSIC\r\nGo to Sleep 6\r\nHyperarchive 2 - Anders Bother\r\nTough Act to Follow - Johannes Hager\r\nBritish Invasion 6 - Bjorn Skogsberg\r\nAll You Need - Johan Svensson\r\n\r\nStory & post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-year-of-the-rooster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/42edd0a4-f739-476e-ab1e-f694034a0975.jpg/sm/BurnieVlogYearofRooster.jpg","duration":656,"publication_date":"2017-12-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-309","changefreq":"weekly","video":[{"title":"2017:E309 - Gavin's AC Anomaly","description":"Gavin calls a repair man to fix his house, but instead makes it worse. Audio from Off Topic Podcast #57\r\nhttp://achievementhunter.roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-57-a9abff. Animated by William Ball and Beth Mackenzie. Directed by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-309","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/83b235cf-9063-481d-b27f-19496b2b85c0.jpg/sm/rtaa309tn.jpg","duration":122,"publication_date":"2017-12-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-47","changefreq":"weekly","video":[{"title":"2017:E47 - That Movie F***ed Me Up - #47","description":"Join Miles, Cole, Yssa, Austin, and Erin as they discuss the new Castlevania, Xenoblade Chronicles 2, the new Godzilla anime and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd93f4b2-95eb-4c0c-a39f-19c030e8c6a2/sm/671784-1513884369334-unnamed-1.png","duration":4211,"publication_date":"2017-12-23T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-not-a-hero","changefreq":"weekly","video":[{"title":"2017:E49 - RE7 - Not a Hero","description":"It has almost been a year since Kyle and Miles put on the shoes of Ethan Winters and took on the foul creatures that inhabited the Baker Estate. At the end of their journey they were promised a new adventure with series mainstay Chris Redfield set for the spring. Cut back to now, it's the middle of winter and our boys can finally get their hands on that sweet, sweet, Chris Redfield DLC that they have been waiting for. Join them as they take on the sick and twisted games that Lucas Baker has concocted and hopefully figure out why Chris Redfield is working for Umbrella.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-not-a-hero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8a6e4e01-d84b-4768-bd22-f39634bcc221.jpg/sm/BC_RE7_DLC_THUMB_01.jpg","duration":3681,"publication_date":"2017-12-22T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-for-the-win-120","changefreq":"weekly","video":[{"title":"S10:E5 - For the Win #120","description":"Hosted by Jon Risinger. Featuring Miles Luna, Cole Gallian, Max Kruemke and Patrick Matthews.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-for-the-win-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc785ec7-8723-4ea6-823e-39dbca27dc7b.jpg/sm/psthumb.jpg","duration":778,"publication_date":"2017-12-22T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-308","changefreq":"weekly","video":[{"title":"2017:E308 - Becca's Inconvenient BM","description":"Becca has fortunately never shit herself, but she's come close! One such occasion was in an inconveniently underconstruction convenient store.\r\n\r\nAudio from Rooster Teeth Podcast #427\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-427-sgrt5h\r\nAnimated by: Tanya Fetzer\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-308","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/64e5a8b2-03bd-47b6-8446-311ce9e650b8.jpg/sm/rtaa308tn.jpg","duration":111,"publication_date":"2017-12-21T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-120","changefreq":"weekly","video":[{"title":"S10:E120 - Christmas is Cancelled - #120","description":"Will a warped batch of fruitcakes stop Miles and Max from winning the final episode of the year? Sponsored by Capterra (http://bit.ly/2AdwSAh), Blue Apron (http://cook.ba/1V1MMMd) and the Rooster Teeth Store (http://store.roosterteeth.com). Hosted by Jon Risinger. Featuring Miles Luna, Cole Gallian, Max Kruemke and Patrick Matthews.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2ab0d63-dec9-460e-9ea0-c3694fd13217.jpg/sm/ots120THUMB.jpg","duration":2516,"publication_date":"2017-12-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-46-john-is-totally-hollywood","changefreq":"weekly","video":[{"title":"S1:E42 - Try Harder 46 - John is totally Hollywood","description":"S1:E42 - Try Harder 46 - John is totally Hollywood","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-46-john-is-totally-hollywood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30e4ded1-6e9b-45cf-96e0-177d8e539cae/sm/2056966-1504373195725-TryHarder46.jpg","duration":251,"publication_date":"2017-09-02T18:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-four-man-show-returns-try-hard-podcast-45","changefreq":"weekly","video":[{"title":"S1:E46 - THE FOUR MAN SHOW RETURNS - Try Hard Podcast #45","description":"Thanks to our Sponsors this week!\n\n▶Beach Body - Get a FREE trial membership. Text TRYHARD to 303030▶Brooklinen - Get $20 off & FREE shipping. Go to http://www.brooklinen.com and use promo code \"TryHard\"▶StickFix - Get an additional 25% off when you keep all 5 items in your box. Go to http://www.Stichfix.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-four-man-show-returns-try-hard-podcast-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8971895a-5670-4fde-b74f-86d922b5011a/sm/2056966-1503943405724-TryHard45.jpg","duration":5554,"publication_date":"2017-08-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-john-can-t-wear-shorts","changefreq":"weekly","video":[{"title":"S1:E40 - John can't wear shorts","description":"Sponsor Info:This episode is Sponsored by:▶Blue Apron - Get THREE FREE MEALS with FREE SHIPPING - =http://www.BlueApron.com/TryHard&source=gmail&ust=1503248885493000&usg=AFQjCNHm_3cZGOlN8rErKoM9MDkQCwWXrA\">http://www.BlueApron.com/TryHard▶Brooklinen - Get $20 off & FREE shipping when you use pro code \"TryHard\" at =http://www.Brooklinen.com&source=gmail&ust=1503248885493000&usg=AFQjCNHQg1BzYzF4zJtCidLi3llKe0fLow\">http://www.Brooklinen.com","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-john-can-t-wear-shorts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ec55b10-b4fc-490c-ac0c-89ab24d3d45d/sm/2056966-1503163926964-TryHarder44.jpg","duration":1135,"publication_date":"2017-08-19T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-wake-the-f-u-p-try-hard-podcast-44","changefreq":"weekly","video":[{"title":"S1:E45 - WAKE THE F UP! - Try Hard Podcast #44","description":"S1:E45 - WAKE THE F UP! - Try Hard Podcast #44","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-wake-the-f-u-p-try-hard-podcast-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cc56b59-9b66-4984-ba34-f7d15130f168/sm/2056966-1503163777539-TryHard44b.jpg","duration":4528,"publication_date":"2017-08-19T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-the-most-epic-game-ever-played-ever-mario-party-saturday-at-rtx-2017","changefreq":"weekly","video":[{"title":"S1:E79 - THE MOST EPIC GAME EVER PLAYED EVER - Mario Party Saturday at RTX 2017","description":"S1:E79 - THE MOST EPIC GAME EVER PLAYED EVER - Mario Party Saturday at RTX 2017","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-the-most-epic-game-ever-played-ever-mario-party-saturday-at-rtx-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d484b79-afcd-48d7-97fd-e9fbe7d4807c/sm/2056961-1503083384617-MarioPartySaturdayRTX.jpg","duration":6556,"publication_date":"2017-08-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-game-attack-vs-kinda-funny-vs-mega-64-vs-screw-attack","changefreq":"weekly","video":[{"title":"L:E9 - Game Attack vs Kinda Funny vs Mega 64 vs ScrewAttack","description":"L:E9 - Game Attack vs Kinda Funny vs Mega 64 vs ScrewAttack","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-game-attack-vs-kinda-funny-vs-mega-64-vs-screw-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bf225fe-b557-4e5b-876d-b1a319a8ee27/sm/2056961-1502310343185-GAvsRTX.jpg","duration":5771,"publication_date":"2017-08-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-metroid-bolen-finally-beats-super-metroid-super-metroid-s-n-e-s-game-attack-live-stream","changefreq":"weekly","video":[{"title":"SM:E5 - BOLEN FINALLY BEATS SUPER METROID ⚡ Super Metroid (SNES)⚡ Game Attack Live Stream","description":"SM:E5 - BOLEN FINALLY BEATS SUPER METROID ⚡ Super Metroid (SNES)⚡ Game Attack Live Stream","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-metroid-bolen-finally-beats-super-metroid-super-metroid-s-n-e-s-game-attack-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/524882d8-ebec-4505-89a9-895a62fcdeea/sm/2056961-1502379722844-hq720.jpg","duration":10854,"publication_date":"2017-08-10T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-metroid-raging-over-a-classic-super-metroid-playthrough","changefreq":"weekly","video":[{"title":"SM:E4 - Raging over a Classic - Super Metroid Playthrough","description":"SM:E4 - Raging over a Classic - Super Metroid Playthrough","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-metroid-raging-over-a-classic-super-metroid-playthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48e6e6f6-053c-4e67-9a0b-cf9c451ed152/sm/2056961-1502379601944-SuperMetroid3.jpg","duration":5900,"publication_date":"2017-08-10T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-demon-souls-will-the-a-s-s-kicking-ever-s-t-o-p-demon-s-souls-playthrough","changefreq":"weekly","video":[{"title":"DS:E3 - WILL THE ASS-KICKING EVER STOP?? - Demon's Souls Playthrough","description":"DS:E3 - WILL THE ASS-KICKING EVER STOP?? - Demon's Souls Playthrough","player_loc":"https://roosterteeth.com/embed/death-days-demon-souls-will-the-a-s-s-kicking-ever-s-t-o-p-demon-s-souls-playthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8473151-6e70-4394-8aa5-d7f6eb60da14/sm/2056961-1502379362201-DeathDays2-4.jpg","duration":8330,"publication_date":"2017-08-10T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-house-of-dankness-try-hard-podcast-44","changefreq":"weekly","video":[{"title":"S1:E44 - THE HOUSE OF DANKNESS - Try Hard Podcast #43","description":"This episode is brought to you buy two sponsors this week!Savage Jerky: Visit http://www.savagejerky.com and use promo code: TRYHARD for 10% off your orderDollar Shave Club: http://www.DollarShaveClub.com/TryHard for our special deal!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-house-of-dankness-try-hard-podcast-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55633cd7-d6a1-4d18-8341-3f4d6cd1274f/sm/2056966-1502379259279-Try_Hard_Thumb_Temp.jpg","duration":3662,"publication_date":"2017-08-09T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-atomic-blonde-and-the-magic-of-legos-try-hard-42","changefreq":"weekly","video":[{"title":"S1:E43 - Atomic Blonde and the Magic of Legos! | Try Hard 42","description":"S1:E43 - Atomic Blonde and the Magic of Legos! | Try Hard 42","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-atomic-blonde-and-the-magic-of-legos-try-hard-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7501546-bf4d-4b31-9680-83ca87ff0b29/sm/2056966-1501542627601-TryHard42Thumb.jpg","duration":4900,"publication_date":"2017-08-01T04:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-what-say-t-h-a-t-mario-party-saturday-exhibition","changefreq":"weekly","video":[{"title":"S1:E78 - WHAT SAY THAT?? - Mario Party Saturday Exhibition","description":"Help bring Mario Party Saturday back for Season 2! Become a YouTube Sponsor of Game Attack. When we hit 2000 total YouTube Sponsor Mario Party Saturday returns for a second season! Click here to become a YT Sponsor: http://bit.ly/GAYouTubeSponsor","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-what-say-t-h-a-t-mario-party-saturday-exhibition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/828077e4-85be-4ef6-a521-197671cb4648/sm/2056961-1501272094165-MarioPartySaturdayExhibition.jpg","duration":5478,"publication_date":"2017-07-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-metroid-shoot-him-in-the-m-o-u-t-h-bolen-s-super-metroid-playthrough","changefreq":"weekly","video":[{"title":"SM:E3 - SHOOT HIM IN THE MOUTH! - Bolen's Super Metroid Playthrough","description":"Bolen continues his No Hit Speedrun. *\"No Hit Speedrun\" refers to Bolen being hit many, many times during his first time playing through this all-time classic.","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-metroid-shoot-him-in-the-m-o-u-t-h-bolen-s-super-metroid-playthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c8197fa-5ef1-479d-9084-1ae738a7e332/sm/2056961-1501009319324-SuperMetroid3.jpg","duration":5244,"publication_date":"2017-07-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-could-you-more-insulting-try-hard-41-2","changefreq":"weekly","video":[{"title":"S1:E42 - Could You More Insulting?! | Try Hard 41","description":"This week's podcast is brought to you by two new sponsors!Stich Fix - Look sexy like us and get 25% off: =http://www.stitchfix.com/tryhard&source=gmail&ust=1501022386152000&usg=AFQjCNETJ-LlPygTO3OJpQjmPwgNTI8_2g\">http://www.stitchfix.com/tryhardbrooklinen - Get $20 off & free shopping: =http://www.brooklinen.com&source=gmail&ust=1501022386153000&usg=AFQjCNFzjlAgiajgg9__KkOASoYN_LmLTg\">http://www.brooklinen.com + promo code: TRY HARD","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-could-you-more-insulting-try-hard-41-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82477810-f684-4e7e-9675-1058612f3bc9/sm/2056966-1500936307317-TryHard41Thumb.jpg","duration":3862,"publication_date":"2017-07-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-mario-party-in-the-future-bolen-s-alcoholic-dad-f-u-n","changefreq":"weekly","video":[{"title":"S1:E38 - Mario Party in the Future + Bolen's Alcoholic Dad! FUN!","description":"S1:E38 - Mario Party in the Future + Bolen's Alcoholic Dad! FUN!","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-mario-party-in-the-future-bolen-s-alcoholic-dad-f-u-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29f8147a-d686-4358-a955-a5d42cf670b4/sm/2056966-1500936769603-maxresdefault.jpg","duration":959,"publication_date":"2017-07-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-demon-souls-we-descend-into-hell-demon-souls-death-days","changefreq":"weekly","video":[{"title":"DS:E1 - WE DESCEND INTO HELL | Demon Souls (Death Days)","description":"Don't miss us on Rooster Teeth's Tuesday Night Game Fights. Become a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \n\n\n\nWAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n\n\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!\n\n\n\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\n\n\n\n▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \n\n\n\n\n\n▶ Come be a part of Game Attack and the best community online. SUBSCRIBE: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\n\n\n\nFREE Game Attack Ringtone Packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\nLook fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack\n\n\n\n\n\nWe get some requests to send us games and fan art - thanks! Feel free to send them here:Game Attack6101 Long Prairi","player_loc":"https://roosterteeth.com/embed/death-days-demon-souls-we-descend-into-hell-demon-souls-death-days","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c537148a-e882-447a-b8b4-1c1736c5fb2a/sm/2056961-1500900834469-DD2.jpg","duration":8439,"publication_date":"2017-07-24T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-metroid-b-o-l-e-n-s-a-metroid-virgin-super-metroid-playthrough","changefreq":"weekly","video":[{"title":"SM:E2 - BOLEN'S A METROID VIRGIN - Super Metroid Playthrough","description":"Bolen is still trying to figure out what those green doors are all about...\n\nWatch the guys on Rooster Teeth's Tuesday Night Game Fights tonight.  Become a FIRST Member to watch it (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \n\n\n\n\n\n\n\nNew to Game Attack? Subscribe and possibly win a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017\n\n\n\n\n\nWAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n\n\n\n\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n\n\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!\n\n\n\n\n\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\n\n\n\n\n\n▶ Come be a part of Game Attack and the best community online. SUBSCRIBE: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n▶ Buy Some Merchandise and look fly when wearing it: http://bit.ly/GameAttackStore\n\n\n\n\n\n\n\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\n\n\n\n\n\nFREE Game Attack Ringtone Packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttp://twitter.com/GameAttackTeam\n\n\n\n\n\nLook fly","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-metroid-b-o-l-e-n-s-a-metroid-virgin-super-metroid-playthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8e4332b-6d5f-4f59-a010-128c5a6389e5/sm/2056961-1500900552723-SM2.jpg","duration":5783,"publication_date":"2017-07-24T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-demon-souls-death-d-a-y-s-the-next-chapter-begins","changefreq":"weekly","video":[{"title":"DS:E2 - DEATH DAYS: THE NEXT CHAPTER BEGINS","description":"After a grueling adventure in Dark Souls, it's time to start a new chapter in Death Days. You've made your voices heard - what game will be played?\r\n\r\nWAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\r\n\r\n\r\n\r\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\r\n\r\n\r\n\r\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!\r\n\r\n\r\n\r\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\r\n\r\n\r\n\r\n▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \r\n\r\n\r\n\r\n\r\n\r\n▶ Come be a part of Game Attack and the best community online. SUBSCRIBE: https://www.youtube.com/GameAttack?sub_confirmation=1\r\n\r\n\r\n\r\n\r\n\r\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\r\n\r\n\r\n\r\nFREE Game Attack Ringtone Packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\r\n\r\n\r\n\r\n\r\n\r\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\r\n\r\n\r\n\r\nLook fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/death-days-demon-souls-death-d-a-y-s-the-next-chapter-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03c45162-d6dd-49cc-a443-e1aa985af485/sm/2056961-1500900671219-DD1.jpg","duration":6245,"publication_date":"2017-07-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-metroid-b-o-l-e-n-s-first-time-playing-super-metroid","changefreq":"weekly","video":[{"title":"SM:E1 - BOLEN'S FIRST TIME PLAYING SUPER METROID","description":"He's never played it and it's one of Craig's favorite games. Something has to give.WAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!\n\n\n\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\n\n\n\n▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \n\n\n\n\n\n▶ Come be a part of Game Attack and the best community online. SUBSCRIBE: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\n\n\n\nFREE Game Attack Ringtone Packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\nLook fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-metroid-b-o-l-e-n-s-first-time-playing-super-metroid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc5df23b-9c5b-4ab2-9950-d125236680ca/sm/2056961-1500900435414-SM1.jpg","duration":6120,"publication_date":"2017-07-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-we-are-going-to-disney-land","changefreq":"weekly","video":[{"title":"S1:E37 - We are GOING TO DISNEY WORLD","description":"S1:E37 - We are GOING TO DISNEY WORLD","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-we-are-going-to-disney-land","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6564439f-a5e4-4a60-a934-7af0f1ab8219/sm/2056966-1500331481361-TryHarder40.jpg","duration":621,"publication_date":"2017-07-18T17:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-craig-s-first-time-watching-game-of-thrones","changefreq":"weekly","video":[{"title":"S1:E41 - Craig's First Time Watching Game of Thrones","description":"S1:E41 - Craig's First Time Watching Game of Thrones","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-craig-s-first-time-watching-game-of-thrones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a119916f-326a-4fcf-85e9-eeef69c17241/sm/2056966-1500331793550-TryHard40Thumb.jpg","duration":4724,"publication_date":"2017-07-18T17:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-dark-souls-1-craig-finally-beats-dark-s-o-u-l-s","changefreq":"weekly","video":[{"title":"DS1:E7 - CRAIG FINALLY BEATS DARK SOULS?","description":"After a journey spanning nearly 7 months, Craig may finally beat Dark Souls.","player_loc":"https://roosterteeth.com/embed/death-days-dark-souls-1-craig-finally-beats-dark-s-o-u-l-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61ceaefd-b41a-4bfd-8a20-a5a179bf91bd/sm/2056961-1500042613610-DeathDays27.jpg","duration":7384,"publication_date":"2017-07-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-mario-galaxy-bolen-finally-beats-super-mario-g-a-l-a-x-y","changefreq":"weekly","video":[{"title":"SMG:E6 - BOLEN FINALLY BEATS SUPER MARIO GALAXY!!","description":"Is this it?? Is Bolen FINALLY about to beat Super Mario Galaxy for the first time? Bowser is going down.","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-mario-galaxy-bolen-finally-beats-super-mario-g-a-l-a-x-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a44a3844-998f-48d0-b603-c5efe7102968/sm/2056961-1500042721934-Nintuesday6.jpg","duration":5583,"publication_date":"2017-07-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-who-is-j-o-h-n-also-sadness","changefreq":"weekly","video":[{"title":"S1:E36 - Who is JOHN? Also, Sadness.","description":"S1:E36 - Who is JOHN? Also, Sadness.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-who-is-j-o-h-n-also-sadness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60f57e40-3258-4ebb-b80e-e91752df79fa/sm/2056966-1499121979853-John.jpg","duration":503,"publication_date":"2017-07-04T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-find-our-d-o-p-p-e-l-g-a-n-g-e-r-s-try-hard-podcast-39","changefreq":"weekly","video":[{"title":"S1:E40 - FIND OUR DOPPELGANGERS!! | Try Hard Podcast #39","description":"S1:E40 - FIND OUR DOPPELGANGERS!! | Try Hard Podcast #39","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-find-our-d-o-p-p-e-l-g-a-n-g-e-r-s-try-hard-podcast-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3c3e7b2-d88a-4c43-91d8-3eb70b4caca4/sm/2056966-1499264822286-hqdefault.jpg","duration":3850,"publication_date":"2017-07-04T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-dark-souls-1-is-this-the-e-n-d-dark-souls","changefreq":"weekly","video":[{"title":"DS1:E6 - IS THIS THE END??? - Dark Souls","description":"DS1:E6 - IS THIS THE END??? - Dark Souls","player_loc":"https://roosterteeth.com/embed/death-days-dark-souls-1-is-this-the-e-n-d-dark-souls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d8d42b-bf83-4faf-994f-f077b80157e7/sm/2056961-1498879082890-hq720.jpg","duration":7687,"publication_date":"2017-07-01T08:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-mario-galaxy-time-to-save-the-g-a-l-a-x-y-super-mario-galaxy","changefreq":"weekly","video":[{"title":"SMG:E5 - TIME TO SAVE THE GALAXY! - Super Mario Galaxy","description":"SMG:E5 - TIME TO SAVE THE GALAXY! - Super Mario Galaxy","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-mario-galaxy-time-to-save-the-g-a-l-a-x-y-super-mario-galaxy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddf2adb1-2dcc-4d04-a62b-31e7a821acad/sm/2056961-1498879006313-hq720_1.jpg","duration":9363,"publication_date":"2017-07-01T08:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-game-attack-is-a-lot-like-a-restaurant","changefreq":"weekly","video":[{"title":"S1:E35 - Game Attack is a Lot Like a Restaurant!","description":"S1:E35 - Game Attack is a Lot Like a Restaurant!","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-game-attack-is-a-lot-like-a-restaurant","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1800c6e-08f0-48e0-9e20-9f89b51356df/sm/2056966-1498517128459-joe_vicaris_andiamo_italian_steakhouse_server_mergim_riza_by_anthony_mair_WEB.jpg","duration":570,"publication_date":"2017-06-27T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-nes-mini-makes-craig-try-h-a-r-d","changefreq":"weekly","video":[{"title":"S1:E39 - The NES MINI Makes Craig (Try) HARD!","description":"This week's sponsors include: Vincero. Check out http://www.vincerocollective.com/tryhard for a discount!World of Tanks Console: http://www.console.worldoftanks.com/promos/TANKHARD","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-nes-mini-makes-craig-try-h-a-r-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b872d2e9-b656-4a90-9cb1-e8bac0533fc0/sm/2056961-1498878846834-hq720_2.jpg","duration":3989,"publication_date":"2017-06-27T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-dark-souls-1-the-four-kings-get-wrecked-dark-souls-death-days","changefreq":"weekly","video":[{"title":"DS1:E5 - THE FOUR KINGS GET WRECKED - Dark Souls/Death Days","description":"The chat cheers up Craig in a big way. Thank you.▶ New to Game Attack? Subscribe and possibly win a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017\n\nWAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n\n\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!\n\n\n\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\n\n\n\n▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \n\n\n\n\n\n▶ Come be a part of Game Attack and the best community online. SUBSCRIBE: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\n\n\n\nFREE Game Attack Ringtone Packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttp://twitter.com/GameAttackTeam\n\n\n\nLook fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack\n\n\n\n\n\nWe get some requests to send us games and fan art - thanks! Feel free to send them h","player_loc":"https://roosterteeth.com/embed/death-days-dark-souls-1-the-four-kings-get-wrecked-dark-souls-death-days","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b81c3b47-41d1-4ca9-ab60-002979cfd605/sm/2056961-1498250757150-DeathDays25.jpg","duration":7411,"publication_date":"2017-06-24T01:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-mario-galaxy-the-most-magical-wii-game-ever-super-mario-galaxy-4","changefreq":"weekly","video":[{"title":"SMG:E4 - THE MOST MAGICAL WII GAME EVER - Super Mario Galaxy #4","description":"Bolen continues his first playthrough of the most magical Wii experience there is.▶ New to Game Attack? Subscribe and possibly win a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017\n\nWAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n\n\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!\n\n\n\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\n\n\n\n▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r \n\n\n\n\n\n▶ Come be a part of Game Attack and the best community online. SUBSCRIBE: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\n\n\n\nFREE Game Attack Ringtone Packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-mario-galaxy-the-most-magical-wii-game-ever-super-mario-galaxy-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1a7383d-e2b2-498c-b939-e26d2f099573/sm/2056961-1498250693432-Nintuesday4.jpg","duration":8540,"publication_date":"2017-06-24T01:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-dame-a-t-t-a-c-k-try-harder-37","changefreq":"weekly","video":[{"title":"S1:E34 - DAME ATTACK|Try Harder 37","description":"What do we call our wives?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-dame-a-t-t-a-c-k-try-harder-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b6f1d3c-9de1-4925-bd60-dcbb15800199/sm/2056966-1498089051253-Untitled-1.png","duration":446,"publication_date":"2017-06-21T16:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-stop-making-crap-movies-try-hard-37","changefreq":"weekly","video":[{"title":"S1:E38 - STOP MAKING CRAP MOVIES | Try Hard 37","description":"This episode is brought to you buy:Blue Apron: Get 3 FREE Meals & FREE shipping: >http://www.BlueApron.com/TryHardBombas: Get 20% OFF your order: >http://www.Bombas.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-stop-making-crap-movies-try-hard-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6f0da0b-6c77-499e-8656-7c07ae5e4f54/sm/2056966-1498088311007-DCtisWrUMAAW62a.jpg","duration":4129,"publication_date":"2017-06-21T16:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-dark-souls-1-fighting-giant-wolf-with-a-sword","changefreq":"weekly","video":[{"title":"DS1:E4 - FIGHTING GIANT WOLF WITH A SWORD","description":"▶ New to Game Attack? Subscribe and possibly win a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017\n\nWAYS TO SUPPORT GAME ATTACK▶ SPONSOR Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n\n\n▶ DONATE - Simply go to this link (https://youtube.streamlabs.com/UCWDIL65Y3kHmLjfp_0ZrpfQ#/) and contribute as much or as little as you feel. That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n▶ SUPER CHAT - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can contribute and help us grow!","player_loc":"https://roosterteeth.com/embed/death-days-dark-souls-1-fighting-giant-wolf-with-a-sword","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c2e4134-3cc5-43cc-9da3-3c239988e324/sm/2056961-1497643188681-DeathDays24b.jpg","duration":9421,"publication_date":"2017-06-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-e3-should-not-exist-try-hard-podcast-36","changefreq":"weekly","video":[{"title":"S1:E37 - E3 SHOULD NOT EXIST - Try Hard Podcast #36","description":"This episode is brought to you buy:Squarespace: Go to >http://www.Squarespace.com/tryhard + Promo code: TRYHARD for 10% off your orderVincero: Go to >http://www.vincerocollective.com/tryhard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-e3-should-not-exist-try-hard-podcast-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2cd3a30-c0e9-4de8-92ef-b630e3dcd1b2/sm/2056966-1497556792553-maxresdefault_1.jpg","duration":4345,"publication_date":"2017-06-15T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-t-v-s-hottest-mom-try-hard-34","changefreq":"weekly","video":[{"title":"S1:E35 - TV's Hottest Mom - Try Hard #34","description":"Whoops. Looks like we missed this upload. Our bad!\n\n\n\n\n\n\n\n\n\n\n\nWell, here we are - it's just us and you. Let's have some fun.Thanks to this episodes sponsors: They support our independence so please support them.▶ http://www.ResumeWritingSucks.com▶ http://www.SquareSpace.com/TryHard & use keyword TryHard to get 10% off your order!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-t-v-s-hottest-mom-try-hard-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3169123e-391c-4e72-9242-557c28fcabee/sm/2056961-1497284727843-TryHard34Thumb2.jpg","duration":5705,"publication_date":"2017-06-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-days-dark-souls-1-craig-vs-giant-evil-dragon","changefreq":"weekly","video":[{"title":"DS1:E3 - CRAIG VS GIANT EVIL DRAGON","description":"Craig battles the hardest mother f'n dragon ever conceived. \n\n\n\n\n\n▶ New to Game Attack? Subscribe and possibly win a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017","player_loc":"https://roosterteeth.com/embed/death-days-dark-souls-1-craig-vs-giant-evil-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/147592c9-9823-4925-a35b-abc8c923af1f/sm/2056961-1497038609153-DeathDays23.jpg","duration":8197,"publication_date":"2017-06-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-mario-galaxy-this-is-sooooooo-g-o-o-d-super-mario-galaxy","changefreq":"weekly","video":[{"title":"SMG:E3 - THIS IS SOOOOOOO GOOD! - Super Mario Galaxy","description":"Bolen's childlike wonder is EXACTLY what Nintendo games are all about.\n\n▶ WIN a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-mario-galaxy-this-is-sooooooo-g-o-o-d-super-mario-galaxy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2de9d3a3-8d02-453f-aa97-21a3aa214188/sm/2056961-1497038196272-hq720.jpg","duration":8298,"publication_date":"2017-06-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-the-shocking-50-turn-finale-mario-party-20","changefreq":"weekly","video":[{"title":"S1:E77 - Mario Party Saturday - THE SHOCKING 50 TURN FINALE - Mario Party 20","description":"▶ Help Mario Party Saturday season 2 happen! Become a YouTube Sponsor of Game Attack and help us reach our goal of bringing it back this fall! Just click the \"Sponsor\" button here: https://gaming.youtube.com/gameattack\n\n\n\n▶ Can't watch the episode yet? Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-the-shocking-50-turn-finale-mario-party-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc93def3-7732-4a58-885a-3efb34ac5d99/sm/2056961-1497017649045-Mario20Thumb2.jpg","duration":10011,"publication_date":"2017-06-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-we-re-the-b-e-s-t-try-hard-35","changefreq":"weekly","video":[{"title":"S1:E36 - We're the BEST!! | Try Hard #35","description":"▶ WIN a $100 Steam Giftcard in our contest this month: https://gleam.io/ijnEa/game-attacks-100-steam-giftcard-giveaway-june-2017\n\n\n\n\n\n\n\n\n\nThanks to this week's sponsors! They support us so please support them!Dollar Shave Club: http://www.DollarShaveClub.com/TryHard to get a sweeeeeet deal just for our g1s!Squarespace: http://www.Squarespace.com/tryhard + Promo Code \"TryHard\" to get 10% off your order!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-we-re-the-b-e-s-t-try-hard-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/977fbc85-6237-4f6b-8583-ecbddab2d2d2/sm/2056966-1496847947556-maxresdefault.jpg","duration":4716,"publication_date":"2017-06-07T17:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-bolen-goes-poopoo-so-creepy-john-fills-in","changefreq":"weekly","video":[{"title":"S1:E35 - Bolen goes poopoo - so CREEPY JOHN fills in!","description":"S1:E35 - Bolen goes poopoo - so CREEPY JOHN fills in!","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-bolen-goes-poopoo-so-creepy-john-fills-in","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf392ceb-6333-4a6b-bd90-b22e42b018e6/sm/2056966-1496781212444-Nose.PNG","duration":845,"publication_date":"2017-06-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-best-of-game-attack-april-2017","changefreq":"weekly","video":[{"title":"L:E8 - Best of Game Attack - April 2017","description":"L:E8 - Best of Game Attack - April 2017","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-best-of-game-attack-april-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e118c35b-5682-4036-832b-f45e5b36cb63/sm/2056961-1496433106868-BestofApril17.jpg","duration":1791,"publication_date":"2017-06-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-the-one-before","changefreq":"weekly","video":[{"title":"S1:E76 - YOU DID THIS!!! - Mario Party 1 - Mario Party Saturday","description":"Help Mario Party Saturday season 2 happen! Become a YouTube Sponsor of Game Attack and help us reach our goal of bringing it back this fall! Just click the \"Sponsor\" button here: https://gaming.youtube.com/user/GameAttack/","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-the-one-before","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/974b31f5-0ffc-45b8-a5a0-4bdde8d31520/sm/2056961-1496421723982-MP19Thumb.jpg","duration":3795,"publication_date":"2017-06-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-who-will-w-i-n-game-attack-vs-screw-attack-tekken-7-tournament","changefreq":"weekly","video":[{"title":"LPS:E138 - WHO WILL WIN?? Game Attack vs ScrewAttack: Tekken 7 Tournament!","description":"Thanks again to Bandai Namco Tekken 7 for partnering with me for this video check out the link for more - http://bit.ly/2pReXpV","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-who-will-w-i-n-game-attack-vs-screw-attack-tekken-7-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e72c5003-2091-4a2d-b49f-c74d71389c2e/sm/2056961-1496161168602-Tekken7.jpg","duration":994,"publication_date":"2017-06-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-mario-galaxy-the-definition-of-insanity-nintuesdays-3","changefreq":"weekly","video":[{"title":"SMG:E2 - THE DEFINITION OF INSANITY | Nintuesdays #3","description":"Is Mario Galaxy the best Mario game ever made? Bolen's mind is slowly startLook! The more Sponsors we have, the more we can do! The rundown for our Sponsor Drive: https://twitter.com/GameAttackTeam/status/864220158981701634\n\n\n\nWe passed 750 YouTube Sponsors! AMAZING! As promised, here's your official Game Attack ringtone packs:mp3s - https://drive.google.com/open?id=0B1qXo5vHFY-DamFGV2gwUGFRVlUiPhone - https://drive.google.com/open?id=0B1qXo5vHFY-DNzVocERZMXVLQm8\n\n\n\n\n\n\n\n\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n\n\nSuper Chat Custom Emotes$13.37 - Hell Yeah!$25 - Look at all that Gold$50- That's a Huge Bitch$100 - New Best Friend$500 - O Face & you get to pick the next sounder\n\n\n\n\n\n\n\nDON'T FORGET, 4PM ct IS GAME ATTACK TIME! Live programming Monday through Friday at 4pm.New to us? Subscribe - http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nWAYS TO SUPPORT GAME ATTACK▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r (get access to complete episodes of our live streams - not the edited version of YouTube)\n\n\n\n\n\n\n\n▶ Sponsor Game Attack on YouTube - Click the green button button. You get access to the elite GA icon next to your name and sponsor and Super Chat exclusive streams.\n\n\n\n\n\n\n\n▶ Super Chat - There is a dollar sign next to the smiley face in the chat when watching on YouTube Gaming (https://gaming.youtube.com/user/GameAttack/live) That's where you can donate and help us grow! We appreciate your support no matter how big or how small!\n\n\n\n\n\n\n\nTo get notifications when we're live, download the YouTube Gaming app. Sign in and allow notifications. If you have followed us, you will get a notification when we go live! Make sure to click that bell next to the subscribe button!\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nLook fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackS","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-mario-galaxy-the-definition-of-insanity-nintuesdays-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c401277-f6cb-4156-866c-5747a9577cf5/sm/2056961-1496243022394-Nintuesday3.jpg","duration":8657,"publication_date":"2017-05-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-gramers","changefreq":"weekly","video":[{"title":"S1:E32 - Gramers. | Try Hard 33","description":"S1:E32 - Gramers. | Try Hard 33","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-gramers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4755c621-1f6f-40a0-86fc-ca9159c562f6/sm/2056966-1496156873666-Gramers.png","duration":829,"publication_date":"2017-05-30T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-days-dark-souls-1-craig-gets-wrecked","changefreq":"weekly","video":[{"title":"DS1:E1 - CRAIG GETS WRECKED","description":"Look! The more Sponsors we have, the more we can do! The rundown for our Sponsor Drive: https://twitter.com/GameAttackTeam/status/864220158981701634▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1","player_loc":"https://roosterteeth.com/embed/death-days-dark-souls-1-craig-gets-wrecked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06267610-8a81-4bfa-8d97-b1af670dad98/sm/2056961-1496076211996-DeathDays21.jpg","duration":5071,"publication_date":"2017-05-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-wtf-is-going-o-n","changefreq":"weekly","video":[{"title":"L:E7 - WTF IS GOING ON???","description":"L:E7 - WTF IS GOING ON???","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-wtf-is-going-o-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a4b4dfd-5263-4e7f-8f8f-dda154cba30d/sm/2056961-1496076479486-hqdefault.jpg","duration":3325,"publication_date":"2017-05-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-1-million-chickens-vs-nuclear-bomb","changefreq":"weekly","video":[{"title":"LPS:E137 - 1 MILLION CHICKENS vs NUCLEAR BOMB","description":"It's the battle you've been waiting...","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-1-million-chickens-vs-nuclear-bomb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6280b54-71da-45bb-8507-86ab777414f4/sm/2056961-1495655363915-ChickenvsBomb2.jpg","duration":873,"publication_date":"2017-05-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-duel-to-the-death-mario-party-18","changefreq":"weekly","video":[{"title":"S1:E75 - Mario Party Saturday - DUEL TO THE DEATH - Mario Party 18","description":"S1:E75 - Mario Party Saturday - DUEL TO THE DEATH - Mario Party 18","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-duel-to-the-death-mario-party-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edafa4f5-a493-402e-8de9-dd81c3afc68f/sm/2056961-1495655048632-MP18THumb.jpg","duration":7289,"publication_date":"2017-05-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-s-u-r-p-r-i-s-e-we-re-taking-o-v-e-r-try-hard-34","changefreq":"weekly","video":[{"title":"S1:E34 - SURPRISE! We're taking OVER! | Try Hard #33","description":"S1:E34 - SURPRISE! We're taking OVER! | Try Hard #33","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-s-u-r-p-r-i-s-e-we-re-taking-o-v-e-r-try-hard-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fa8c31c-ad9d-408d-8cb6-7db9836e368f/sm/2056966-1495644592987-maxresdefault_1.jpg","duration":5673,"publication_date":"2017-05-24T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintuesdays-super-mario-galaxy-b-o-l-e-n-s-mind-gets-blown-super-mario-galaxy-2","changefreq":"weekly","video":[{"title":"SMG:E1 - BOLEN'S MIND GETS BLOWN | Super Mario Galaxy #2","description":"Look at all that crazy gravity! Bolen's mind gets BLOWN.\n\nLook! The more Sponsors we have, the more we can do! The rundown for our Sponsor Drive: https://twitter.com/GameAttackTeam/status/864220158981701634","player_loc":"https://roosterteeth.com/embed/nintuesdays-super-mario-galaxy-b-o-l-e-n-s-mind-gets-blown-super-mario-galaxy-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f3357ce-df34-4381-a7e0-e55146a00b75/sm/2056961-1495645779509-MarioGalaxies2Live.jpg","duration":7203,"publication_date":"2017-05-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-we-suck-as-gladiators-tap-that-app","changefreq":"weekly","video":[{"title":"S1:E19 - We SUCK as Gladiators | Tap That App","description":"HUGE thanks to Genera Games for sponsoring this vid and supporting us at Game Attack! Check out Gladiator Heroes for yourself:iOS: http://m.onelink.me/e9f18d01Android: http://m.onelink.me/819e4c7e","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-we-suck-as-gladiators-tap-that-app","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12c22c51-e252-4cc2-ac4c-3fa1b388873c/sm/2056966-1495645544054-GAThumbnailCorner.png","duration":705,"publication_date":"2017-05-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-what-has-social-media-done-to-us","changefreq":"weekly","video":[{"title":"S1:E31 - What has Social Media Done to us?","description":"S1:E31 - What has Social Media Done to us?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-what-has-social-media-done-to-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76a3c526-f791-4915-842a-4a757b42e3e6/sm/2056966-1495645203500-Untitled-1.png","duration":800,"publication_date":"2017-05-24T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-absolutely-hopeless-death-days-21","changefreq":"weekly","video":[{"title":"LPS:E136 - Absolutely Hopeless | DEATH DAYS 21","description":"LPS:E136 - Absolutely Hopeless | DEATH DAYS 21","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-absolutely-hopeless-death-days-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e9967d7-e2ef-437a-bf1a-3489daceda22/sm/2056966-1495399442734-Manus_Thumb.png","duration":8103,"publication_date":"2017-05-21T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-mario-galaxy-b-e-g-i-n-nintuesdays-1","changefreq":"weekly","video":[{"title":"LPS:E135 - Mario Galaxy - BEGIN!! | Nintuesdays #1","description":"LPS:E135 - Mario Galaxy - BEGIN!! | Nintuesdays #1","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-mario-galaxy-b-e-g-i-n-nintuesdays-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10b0df6a-2186-41c6-b4da-739bbed917f4/sm/2056966-1495397924990-Galaxy_Thumb_1.png","duration":7744,"publication_date":"2017-05-21T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-greatest-game-of-battlegrounds-ever-played-because-we-won","changefreq":"weekly","video":[{"title":"LPS:E134 - The Greatest Game of Battlegrounds Ever Played... Because We Won.","description":"We wreck that shit.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-greatest-game-of-battlegrounds-ever-played-because-we-won","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3529efa4-b787-41c1-8e71-6c62589d5682/sm/2056961-1495246848320-BattlegroundsWin.jpg","duration":1190,"publication_date":"2017-05-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-throwing-dead-dogs-at-terrorists","changefreq":"weekly","video":[{"title":"LPS:E133 - THE BEST WAY TO KILL TERRORISTS","description":"LPS:E133 - THE BEST WAY TO KILL TERRORISTS","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-throwing-dead-dogs-at-terrorists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89e85c97-c52f-4273-9f06-5c5a84c0e447/sm/2056966-1495225811625-Kill_the_bad_guy.png","duration":665,"publication_date":"2017-05-21T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-massive-strategery-mario-party-7","changefreq":"weekly","video":[{"title":"S1:E74 - Mario Party Saturday - MASSIVE STRATEGERY - Mario Party 7","description":"Four Friends. Mario Party. Every Saturday. Strategery.\n\n\n\n\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-massive-strategery-mario-party-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75408fbc-17dc-4c1e-b135-a5a871253020/sm/2056961-1495211033426-Mario17Thumb.jpg","duration":6652,"publication_date":"2017-05-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-harder-32-what-direction-is-game-attack-g-o-i-n-g","changefreq":"weekly","video":[{"title":"S1:E33 - Try Hard #32 - WHAT DIRECTION IS GAME ATTACK GOING??","description":"With all the changes that have happened over the last couple weeks, we have some answers so you know what to expect from us moving ahead.\n\n\n\n\n\n\n\nThis episode is sponsored by http://resumewritingsucks.com. They support us so please support them.\n\n\n\n\n\n\n\n\n\n\n\n4PM CT IS GAME ATTACK TIME! Live programming Monday through Friday at 4pm.New to us? Subscribe - http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe rundown for our Sponsor Drive: https://twitter.com/GameAttackTeam/status/864220158981701634","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-harder-32-what-direction-is-game-attack-g-o-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14fc8cd3-c77f-40a8-82fa-df0b9a6fb763/sm/2056961-1494951469885-TryHard32Thumb.jpg","duration":5664,"publication_date":"2017-05-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-19-craig-v-s-the-hardest-souls-boss","changefreq":"weekly","video":[{"title":"LPS:E131 - DEATH DAYS: CRAIG VS. THE HARDEST SOULS BOSS","description":"Artorias has met his match???","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-19-craig-v-s-the-hardest-souls-boss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8068ab82-9275-4adc-af77-af433fff54f6/sm/2056966-1494860094942-DeathDays19-2.jpg","duration":7143,"publication_date":"2017-05-16T01:34:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-mario-kart-8-deluxe-c-h-a-l-l-e-n-g-e-game-attack-vs-y-o-u","changefreq":"weekly","video":[{"title":"LPS:E132 - MARIO KART 8 DELUXE CHALLENGE: GAME ATTACK vs YOU!","description":"Craig & Bolen take on the best Mario Kart 8 players in the world.\n\n\n\n\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-mario-kart-8-deluxe-c-h-a-l-l-e-n-g-e-game-attack-vs-y-o-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be44afd0-b4ff-434a-b5ab-7a4546c5e892/sm/2056961-1494896187726-GameAttackThumbnails720-Recovered.jpg","duration":1171,"publication_date":"2017-05-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bolen-s-awesome-battlegrounds-moments","changefreq":"weekly","video":[{"title":"LPS:E130 - Bolen's Awesome Battlegrounds Moments","description":"Who wants to see some cool shit in Battlegrounds???","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bolen-s-awesome-battlegrounds-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e3bb05-4690-4e03-9ba0-9e9d0f0526fa/sm/2056961-1494778179583-GAThumbnailCorner.png","duration":1239,"publication_date":"2017-05-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-expert-challenge-rage-fest","changefreq":"weekly","video":[{"title":"LPS:E129 - EXPERT CHALLENGE RAGE FEST ","description":"100 lives on Expert setting apparently is pretty hard.\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-expert-challenge-rage-fest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab1925ea-13b5-4d33-a027-1dc7500494a7/sm/2056961-1494628763167-MarioMakerThumbRage3.jpg","duration":1141,"publication_date":"2017-05-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-mario-party-saturday-absolute-garbage-mario-party-6","changefreq":"weekly","video":[{"title":"LPS:E126 - Mario Party Saturday - ABSOLUTE GARBAGE - Mario Party 6","description":"Four Friends. Mario Party. Every Saturday. Garbage.\n\n\n\n\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-mario-party-saturday-absolute-garbage-mario-party-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7218be8e-0c03-4ec0-b6cd-e7239209a6bd/sm/2056961-1494438127541-MarioParty16.jpg","duration":7091,"publication_date":"2017-05-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-playing-with-our-balls-2-golf-with-friends","changefreq":"weekly","video":[{"title":"LPS:E126 - Playing with Our Balls 2 - Golf With Friends","description":"We bust out our shafts and knock each others balls a little bit again.\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-playing-with-our-balls-2-golf-with-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e8a471d-d78b-4a76-a9fd-e9cdcd1885f3/sm/2056961-1494437874281-GolfwithFriends2b.jpg","duration":1499,"publication_date":"2017-05-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-31-why-would-you-cancel-the-nes-mini","changefreq":"weekly","video":[{"title":"S1:E30 - Try Harder #31 - Do You Use Testosterone??","description":"S1:E30 - Try Harder #31 - Do You Use Testosterone??","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-31-why-would-you-cancel-the-nes-mini","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4e4e19a-c592-4190-8197-382199e2fa10/sm/2056961-1494360777179-TryHarder31.jpg","duration":1386,"publication_date":"2017-05-10T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-19-drunk-days-returns","changefreq":"weekly","video":[{"title":"LPS:E126 - DEATH DAYS Day 19 - DRUNK DAYS RETURNS","description":"DEATH DAYS RETURNS TO YOUTUBE!\n\n▶ Watch the complete Death Days series and non-edited episodes early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-19-drunk-days-returns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbb5a62b-0c3a-4253-8235-0eb410b38fdc/sm/2056961-1494437733788-DeathDays18Thumb.jpg","duration":3345,"publication_date":"2017-05-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-do-you-nod-handshake-or-hug-try-hard-podcast-31","changefreq":"weekly","video":[{"title":"S1:E32 - Do You Nod, Handshake or Hug? | Try Hard Podcast #31","description":"We ask the important questions on Try Hard this week.\n\n\n\n\n\n\n\n\n\n▶ Help Craig & Bolen reach 100,000 subscribers: https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-do-you-nod-handshake-or-hug-try-hard-podcast-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f7a4abf-8729-4f83-afbd-952a2882312f/sm/2056961-1494358801046-TryHard31.jpg","duration":6412,"publication_date":"2017-05-10T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-gore-gore-never-changes-soldier-of-fortune-payback","changefreq":"weekly","video":[{"title":"LPS:E125 - Gore . . . Gore Never Changes | Soldier of Fortune PAYBACK","description":"This is the sickest game ever made in the history of Umblokmasockma","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-gore-gore-never-changes-soldier-of-fortune-payback","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88ceda58-34bf-4808-a0d8-2fae96e9d731/sm/2056966-1494286347868-Thumb.png","duration":998,"publication_date":"2017-05-08T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-30-what-just-happened","changefreq":"weekly","video":[{"title":"S1:E29 - Try Harder #30 - What Just Happened","description":"Better late than never eh?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-30-what-just-happened","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb685326-dd45-43fa-b716-0b39d2a6bec0/sm/2056961-1494281097992-TryHarder30.jpg","duration":532,"publication_date":"2017-05-08T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-drunk-battlegrounds-drinking-guns-d-o-n-t-mix","changefreq":"weekly","video":[{"title":"LPS:E124 - Drunk Battlegrounds - DRINKING & GUNS DON'T MIX","description":"After recording our latest drunk Death Days we thought it would be appropriate to play a game with guns. Nothing good came from it.\n\n▶ Subscribe for more Game Attack - https://www.youtube.com/GameAttack?sub_confirmation=1\n\n\n\n\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-drunk-battlegrounds-drinking-guns-d-o-n-t-mix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3992f7db-0952-4519-872c-72959a0f68cb/sm/2056961-1494177896873-BattlegroundsDrunk1b.jpg","duration":773,"publication_date":"2017-05-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-arctic-t-h-u-n-d-e-r","changefreq":"weekly","video":[{"title":"LPS:E123 - ARCTIC THUNDER!","description":"New to us? Subscribe - http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\nWAYS TO SUPPORT GAME ATTACK▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r (get access to complete episodes of our live streams - not the edited version of YouTube)","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-arctic-t-h-u-n-d-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96dbdfbb-a224-4eb4-9cda-ef2f264a3216/sm/2056961-1494041809607-ArcticThunderThumb.jpg","duration":1000,"publication_date":"2017-05-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-18-drunk-days-return","changefreq":"weekly","video":[{"title":"LPS:E122 - Death Days 18 - Drunk Days Return","description":"Rules1. For every $100 Super Chat donation one of us will take a shot.2. For every $200 Super Chat donation the person who donated gets to decide who takes the shot.3. For Every 25 new Sponsors we'll both take a shot.4. When we're going to die IRL we will stop drinking but you can still donate to continue to support Game Attack's independence. \n\n\n\n\n\nNew to us? Subscribe - http://bit.ly/Sub2GameAttack\n\n\n\n\n\nWAYS TO SUPPORT GAME ATTACK▶ Becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r (get access to complete episodes of our live streams - not the edited version of YouTube)","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-18-drunk-days-return","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7522f7a8-d6ec-49a4-aa5f-e6a713c82887/sm/2056961-1494096289587-DeathDays18-31.png","duration":7200,"publication_date":"2017-05-06T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-one-f-n-coin-mario-party-5","changefreq":"weekly","video":[{"title":"S1:E73 - Mario Party Saturday - ONE F'N COIN - Mario Party 5","description":"Four Friends. Mario Party. Every Saturday. One F'n Coin.\n\n▶ Subscribe - http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-one-f-n-coin-mario-party-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bab601d-9487-4b8a-9dbc-7d4ca01edcb6/sm/2056961-1493838724178-MarioParty15Thumb.jpg","duration":5021,"publication_date":"2017-05-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-most-intense-game-e-v-e-r","changefreq":"weekly","video":[{"title":"LPS:E121 - THE MOST INTENSE GAME EVER??","description":"Also, what's up with the Pringles guy??\n\n▶ Subscribe - http://bit.ly/Sub2GameAttack\n\n\n\n\n\n▶ Watch all our videos early (and support Game Attack) by becoming an Rooster Teeth FIRST Member: http://bit.ly/2dJck7r\n\n\n\n▶ Look fly as hell in Game Attack shirts & hats: http://bit.ly/GameAttackStore","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-most-intense-game-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8e99a9a-3f09-43f9-927e-99f18e31f45b/sm/2056961-1493825349380-Battlefield2Thumb.jpg","duration":1141,"publication_date":"2017-05-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-podcast-30-a-new-beginning-full-cut","changefreq":"weekly","video":[{"title":"S1:E31 - Try Hard Podcast #30 - A New Beginning (Full Cut)","description":"The complete 3 hours show with all the support getting shouts out.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-podcast-30-a-new-beginning-full-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48a32ad8-1a3b-4651-ab55-c4c87a34c2ee/sm/2056961-1493758591451-TryHard30Thumb2.jpg","duration":8686,"publication_date":"2017-05-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-podcast-30-a-new-beginning","changefreq":"weekly","video":[{"title":"S1:E30 - Try Hard Podcast #30 - A New Beginning","description":"With us now being independent from Rooster Teeth, what's next? The guys answer all the questions.\n\n\n\n\n\nThis is an edited version of the original show. We removed a lot of the \"name saying\" of the wonderful g1s who became YouTube Sponsors and donated via Super Chat to keep the flow of the show going. We hope you understand.  If you'd like to watch the entire version you can as a RT FIRST Member. Use this link for a free 30 day trial: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-podcast-30-a-new-beginning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5372d0a2-8986-465c-afbe-bce576694d90/sm/2056961-1493758244873-TryHard30Thumb.jpg","duration":3717,"publication_date":"2017-05-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-best-game-no-one-is-playing","changefreq":"weekly","video":[{"title":"LPS:E120 - The BEST Game NO ONE is Playing","description":"A cross between Smash Bros, Power Stone and Rocket League? Yes please.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-best-game-no-one-is-playing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f71d98d-d38f-478f-bf49-7b93538ae194/sm/2056961-1493762606760-DeformersThumb.jpg","duration":1234,"publication_date":"2017-05-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-major-game-attack-news","changefreq":"weekly","video":[{"title":"L:E6 - MAJOR Game Attack News","description":"#BleedPurple","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-major-game-attack-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cdddf1f-42ad-426e-8cec-b275688159d5/sm/2056961-1493619288354-IndyThumb.jpg","duration":137,"publication_date":"2017-05-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-disney-afternoon-collection-makes-our-hearts-happy","changefreq":"weekly","video":[{"title":"LPS:E119 - Disney Afternoon Collection Makes Our Hearts Happy","description":"Even Parker, who wasn't alive to experience the cartoons likes them.\n\n\n\n\n\nPut yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-disney-afternoon-collection-makes-our-hearts-happy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/230919bd-4e73-4646-a570-9ef56c189a3c/sm/2056961-1493528332839-DisneyAfternoonThumb.jpg","duration":1133,"publication_date":"2017-04-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-17-t-h-a-t-s-a-big-crystal-m-u-t-h-a-s-u-c-k","changefreq":"weekly","video":[{"title":"LPS:E118 - Death Days #17 - THAT'S A BIG CRYSTAL MUTHASUCK!","description":"Craig may run into a really big muthasuck today.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-17-t-h-a-t-s-a-big-crystal-m-u-t-h-a-s-u-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb16aa69-db06-4ec1-b438-0d4b2628fe06/sm/2056961-1493417436606-DeathDays18.jpg","duration":7738,"publication_date":"2017-04-29T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-satuday-mario-party-the-movie-mario-party-4","changefreq":"weekly","video":[{"title":"S1:E72 - Mario Party Saturday - Mario Party: the Movie (Mario Party 4)","description":"Four Friends. Mario Party. Every Saturday. Marathons.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-satuday-mario-party-the-movie-mario-party-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/759bbebc-cb49-4f3d-9aa7-955f240625bb/sm/2056961-1493315842361-MarioParty14Thumb.jpg","duration":10164,"publication_date":"2017-04-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-28-car-chases-are-1","changefreq":"weekly","video":[{"title":"S1:E28 - Try Harder #28 - Car Chases are #1","description":"It's the truth. We talk about why.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-28-car-chases-are-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/360f3d99-636c-4c10-a475-241328a36041/sm/2056961-1493140640783-TryHarder29Thumb.jpg","duration":1800,"publication_date":"2017-04-26T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-chunk-norris-v-s-all-of-middle-earth","changefreq":"weekly","video":[{"title":"LPS:E117 - CHUNK Norris VS. All of Middle Earth ","description":"Craig throws Penguins up against Santa's in a red, red, Christmas","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-chunk-norris-v-s-all-of-middle-earth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7070ef12-4154-462e-965e-ef608d6679fa/sm/2056966-1493222153837-Epic_battle.png","duration":1467,"publication_date":"2017-04-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-podcast-29-the-destruction-of-dwight-schrute","changefreq":"weekly","video":[{"title":"S1:E29 - Try Hard Podcast #29 - \"The Destruction of Dwight Schrute\"","description":"NEXT WEEK - Try Hard is LIVE on YouTube at 7pm CT on Monday. BIG ANNOUNCEMENTS. MAKE SURE TO TUNE IN!\n\n\n\n\n\nPlease support this week's sponsors as they support us!➤ Dollar Shave Club - http://www.DollarShaveClub.com/TryHard (first month for only $1!)➤ Blue Apron - http://www.BlueApron.com/TryHard (first three meals FREE)","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-podcast-29-the-destruction-of-dwight-schrute","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6742ead-3104-41f1-a492-e78421b3fda0/sm/2056961-1493140357474-TryHard29Thumb2.jpg","duration":4901,"publication_date":"2017-04-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-who-will-be-a-millionaire","changefreq":"weekly","video":[{"title":"LPS:E116 - Who Will Be A Millionaire??","description":"Craig, Bolen and Parker compete against evil Regis Philbin to try to take all his money and make him homeless.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-who-will-be-a-millionaire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb9e288e-0deb-4d11-aac9-11f4519b39a0/sm/2056961-1493077850705-Millionairethumb.jpg","duration":1242,"publication_date":"2017-04-25T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-craig-bolen-s-final-mission-r-i-p-la-guerras-ghost-recon-wildlands","changefreq":"weekly","video":[{"title":"LPS:E115 - Craig & Bolen's FINAL Mission, R.I.P. La Guerras | Ghost Recon Wildlands","description":"Thanks to Ubisoft for sponsoring this video. Have fun with Wildlands for yourself here: http://ubi.li/rrzmp\n\n\n\n\n\nPut yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-craig-bolen-s-final-mission-r-i-p-la-guerras-ghost-recon-wildlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3a0af15-e304-4ed3-a7a7-41258f22132a/sm/2056966-1492967878669-Wildlands6-b.jpg","duration":1850,"publication_date":"2017-04-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-crash-bash-with-achievement-hunter-game-2","changefreq":"weekly","video":[{"title":"LPS:E114 - Crash Bash with Achievement Hunter - Game 2","description":"LPS:E114 - Crash Bash with Achievement Hunter - Game 2","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-crash-bash-with-achievement-hunter-game-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3259cfe3-9589-4f30-ad70-84696b1e03c4/sm/2056961-1492810007591-CrashBash2.jpg","duration":1364,"publication_date":"2017-04-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-16-ornstein-and-smough","changefreq":"weekly","video":[{"title":"LPS:E113 - Death Days - Day 16 - Ornstein and Smough","description":"The battle everyone's wanted to see since Day 1 is finally here.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-16-ornstein-and-smough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64a06269-497c-4fab-90c0-2514206f3bf1/sm/2056961-1492794440824-DeathDays16.jpg","duration":7367,"publication_date":"2017-04-22T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-c-o-l-l-u-s-i-o-n-mario-party-3","changefreq":"weekly","video":[{"title":"S1:E70 - Mario Party Saturday - COLLUSION!!! - Mario Party 3","description":"Four Friends. Mario Party. Every Saturday. COLLUSION!\n\n\n\n\n\nPut yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-c-o-l-l-u-s-i-o-n-mario-party-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9704589b-abac-49d5-bac4-78417ca9ac5f/sm/2056961-1492032195454-MarioParty13Thumb.jpg","duration":5497,"publication_date":"2017-04-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-best-of-game-attack-march-2017","changefreq":"weekly","video":[{"title":"LPS:E112 - Best of Game Attack - March 2017","description":"We have the best community online - did you know that? Well community member Eddy (aka MrBeardnGlasses) took it upon himself to put together a highlight reel of his persona favorite moments from March 2017. We thought it was so cool we thought we'd put it on our channel. Eddy says he's already working on a highlight reel for April so if you have any suggestions for him make sure to hit him up. All his info is below.What a stud Eddy is!\n\n\n\n\n\nYouTube Channel: https://www.youtube.com/channel/UCh0BdwKPrTrBkZDMp8k2qkwTwitch Channel: https://www.twitch.tv/beardnglassesTwitter: https://twitter.com/mrbeardnglasses","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-best-of-game-attack-march-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7541797-12a4-4067-acb7-4867b3a1230f/sm/2056961-1492635933827-BestofMarch17-2.jpg","duration":1952,"publication_date":"2017-04-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-28-would-you-fuck-a-body-pillow","changefreq":"weekly","video":[{"title":"S1:E27 - Try Harder #28 - Why Would You Cancel the NES Mini?","description":"We ask the important questions.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-28-would-you-fuck-a-body-pillow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/026db1e1-f121-4019-bd95-856e2ad90843/sm/2056961-1492555365411-TryHarder28.jpg","duration":1035,"publication_date":"2017-04-19T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-portal-2-super-puzzle-bros","changefreq":"weekly","video":[{"title":"LPS:E111 - Portal 2: Super Puzzle Bros","description":"Craig and Bolen are back to take down all the brain twisters in Portal 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-portal-2-super-puzzle-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01a0b6b9-ed36-4e7f-8329-87bc763b4f66/sm/2056961-1492634649055-Portal2-2.jpg","duration":2405,"publication_date":"2017-04-19T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-podcast-28-bolen-s-insecurities","changefreq":"weekly","video":[{"title":"S1:E28 - Try Hard Podcast #28 - Bolen's Insecurities","description":"Bolen sure does get weird about things...\n\nThanks to Audible for sponsoring this episode. Get Audible for free for 30 days: http://audible.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-podcast-28-bolen-s-insecurities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c28f5bf-744b-4709-8bb5-93fcedcea31a/sm/2056961-1492554476269-TryHard28.jpg","duration":4285,"publication_date":"2017-04-19T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-300-judge-dredd-skyforge","changefreq":"weekly","video":[{"title":"LPS:E110 - 300 + Judge Dredd = Skyforge","description":"It's so shiny!\n\n\n\n\n\nThis video is sponsored by My.com - learn more about Skyforge here:: http://bit.ly/2o0CBn5","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-300-judge-dredd-skyforge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dd2251e-0695-4778-bc35-8d7d6c789747/sm/2056961-1492554941162-Skyforge3.jpg","duration":707,"publication_date":"2017-04-19T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-best-gta-modder-we-ve-ever-seen","changefreq":"weekly","video":[{"title":"LPS:E109 - The Best GTA Modder We've Ever Seen","description":"We were just f'n around one day and then BAM.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-best-gta-modder-we-ve-ever-seen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0a6d928-23c4-43d8-9940-34a52563af79/sm/2056961-1492462709586-GTAHacks.jpg","duration":836,"publication_date":"2017-04-17T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-we-kill-a-c-a-t-guns-blazing-challenge-ghost-recon-wildlands","changefreq":"weekly","video":[{"title":"LPS:E108 - WE KILL A CAT: Guns Blazing Challenge (Ghost Recon: Wildlands)","description":"Thanks to Ubisoft for sponsoring this video. Have fun with Wildlands for yourself here: http://ubi.li/rrzmp","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-we-kill-a-c-a-t-guns-blazing-challenge-ghost-recon-wildlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/723eba5f-9b4e-4b53-a7f4-4625168f9cca/sm/2056961-1492275918317-Wildlands5b.jpg","duration":1239,"publication_date":"2017-04-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-1-2-switch","changefreq":"weekly","video":[{"title":"LPS:E107 - Game Attack vs Achievement Hunter: 1-2 Switch","description":"How as this game full price? HOW?","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-1-2-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc5dc6d6-6e34-4914-8872-33f0db22d697/sm/2056961-1492189977044-12Switch-2.jpg","duration":1293,"publication_date":"2017-04-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-15-anor-londo-l-e-t-s-g-o","changefreq":"weekly","video":[{"title":"LPS:E106 - Death Days Day 15 - Anor Londo LET'S GO!","description":"Craig enters fabled Anor Londo and is introduced to pain...","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-15-anor-londo-l-e-t-s-g-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22151a7b-1987-46b5-8729-cf41546a61bc/sm/2056961-1492195496062-DeathDays15.jpg","duration":7193,"publication_date":"2017-04-15T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-pine-season-1-we-wanna-be-millionaires-let-s-pine-1","changefreq":"weekly","video":[{"title":"S1:E1 - We wanna be millionaires? ","description":"We're not ALL part of the 1%.","player_loc":"https://roosterteeth.com/embed/let-s-pine-season-1-we-wanna-be-millionaires-let-s-pine-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/afd4bdd8-aa5e-4419-8516-a2e1063ef9c8.jpg/sm/letspine1thumb.jpg","duration":934,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-cleaning-cow-chop-s-warehouse","changefreq":"weekly","video":[{"title":"S2:E31 - Cleaning Cow Chop's Warehouse","description":"A suptic always pays his dues.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-cleaning-cow-chop-s-warehouse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/db4c4f3e-7cc6-424a-b433-551e41cb6400.jpg/sm/als2e31.jpg","duration":407,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-show-of-the-year","changefreq":"weekly","video":[{"title":"S2:E30 - Show of the Year.","description":"Big things are happening.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-show-of-the-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec616c19-cf04-43bb-901e-e924f65e8e95.jpg/sm/SP7ShowoftheYear.jpg","duration":462,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-death-of-a-water-warrior","changefreq":"weekly","video":[{"title":"S2:E29 - Death of a water warrior.","description":"James reveals his past.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-death-of-a-water-warrior","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/58103264-adf5-4ac5-98c4-bb0bfa0b1c9f.jpg/sm/SP7Deathof.jpg","duration":509,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-the-naked-episode","changefreq":"weekly","video":[{"title":"S2:E28 - The naked episode.","description":"Terrible mistakes are made by everyone.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-the-naked-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e488cb96-6458-432b-9ef0-34326dfe1bf8.jpg/sm/SP7Naked.jpg","duration":510,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-annual-cow-chop-vs-sugar-pine-7-tennis-off-2017","changefreq":"weekly","video":[{"title":"S2:E27 - Annual Cow Chop vs. Sugar Pine 7 Tennis-Off. 2017.","description":"Our annual tennis-off goes badly awry.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-annual-cow-chop-vs-sugar-pine-7-tennis-off-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/589ff7e4-cb30-4d0c-9c17-ed53454b1b16.jpg/sm/SP7AnnualCowChop.jpg","duration":293,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-this-is-why-you-shouldn-t-do-drugs","changefreq":"weekly","video":[{"title":"S2:E26 - This is why you shouldn't do drugs.","description":"FAJAM gets an intervention... kind of.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-this-is-why-you-shouldn-t-do-drugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/90398645-2284-4789-b468-fed7444ab510.jpg/sm/thumb.jpg","duration":597,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-pumpkin-spice-therapy","changefreq":"weekly","video":[{"title":"S2:E24 - Pumpkin Spice Therapy","description":"While Steven and James are in Idyllwild, Cib misunderstands a situation yet again, causing the SP7 crew to take the day off.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-pumpkin-spice-therapy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/66e32b81-5b01-4bbd-aa5f-5327735736fb.jpg/sm/SP7PumpkinSpice.jpg","duration":823,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-we-found-a-dog","changefreq":"weekly","video":[{"title":"S2:E23 - We found a dog.","description":"Cib continues to think things are happening that are definitely not happening.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-we-found-a-dog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/688bd3c1-7326-4ecc-beb0-9999fc4caf41.jpg/sm/SP7WeFoundDog.jpg","duration":314,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-funhaus-stole-my-editor","changefreq":"weekly","video":[{"title":"S2:E22 - Funhaus stole my editor.","description":"The day of reckoning has finally come. Little does Funhaus know we plan to retaliate.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-funhaus-stole-my-editor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59b8a43f-0127-4bf7-9da1-1cbdedc3443c.jpg/sm/SP7FunhausStole.jpg","duration":390,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-movie-night","changefreq":"weekly","video":[{"title":"S2:E21 - Movie night.","description":"A movie night turns deadly and we have a couple big announcements.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-movie-night","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dc651668-1175-46e8-a4cd-719284a5e30f.jpg/sm/SP7MovieNight.jpg","duration":424,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-new-money","changefreq":"weekly","video":[{"title":"S2:E20 - New money.","description":"James and Cib go busking for money, leaving Steve stuck in an awkward situation.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-new-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27fd06dc-33a7-4ba7-90f9-f3bde9c1a7ba.jpg/sm/SP7NewMoney.jpg","duration":483,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-what-is-that-smell","changefreq":"weekly","video":[{"title":"S2:E19 - What is that smell?","description":"Something smells worse than usual at the SP7 office.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-what-is-that-smell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/66dda169-b8de-49c4-a5f4-efef1b5e9555.jpg/sm/SP7Smell.jpg","duration":347,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-a-traitor-in-our-midst","changefreq":"weekly","video":[{"title":"S2:E18 - A traitor in our midst...","description":"Autumn and Famous Actor both look for other jobs and are given what they deserve.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-a-traitor-in-our-midst","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c7046896-a253-45b1-8ab4-49cb43154035.jpg/sm/SP7Traitor.jpg","duration":404,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-no-more-jeremy","changefreq":"weekly","video":[{"title":"S2:E17 - No more Jeremy.","description":"Our issues with Jeremy come to a head.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-no-more-jeremy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a501a535-ae5c-4e22-9224-7da74ed4a212.jpg/sm/SP7NoMoreJeremy.jpg","duration":694,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-don-t-listen-to-the-news","changefreq":"weekly","video":[{"title":"S2:E16 - Don't listen to the news...","description":"Light is shed on a startling local mystery.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-don-t-listen-to-the-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/32f56ae5-ec12-4bc0-87b4-327110b9b8f7.jpg/sm/SP7Dontlistennews.jpg","duration":421,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-broken-into","changefreq":"weekly","video":[{"title":"S2:E14 - Broken into.","description":"A mysterious chain of events puts everyone on edge.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-broken-into","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e3b58848-cf57-4022-b4e0-a6c20956d7a0.jpg/sm/SP7BrokenInto.jpg","duration":624,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-harassment-in-the-workplace","changefreq":"weekly","video":[{"title":"S2:E15 - Harassment in the workplace.","description":"Alfredo has been making advances towards Autumn. It's Steven's job to shut this down. Steven doesn't associate himself with lesser issues. Steven chooses to spend his time elsewhere. Alfredo is a free man.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-harassment-in-the-workplace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b134428-1700-45c0-b900-a772f695c2f5.jpg/sm/thumb.jpg","duration":457,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-everything-we-say-is-a-lie","changefreq":"weekly","video":[{"title":"S2:E13 - Everything we say is a lie.","description":"James may not be everything he seems.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-everything-we-say-is-a-lie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dc32f3b9-52b9-4de2-a7ed-a49dd8d8e6e0.jpg/sm/SP7EverythingWeSay.jpg","duration":614,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-my-apology-to-sami-jo","changefreq":"weekly","video":[{"title":"S2:E12 - My apology to Sami Jo.","description":"Sometimes love just isn't what it seems.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-my-apology-to-sami-jo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5824731-ebe8-4fa0-bce8-a88c495c1593.jpg/sm/SP7MyApologySamiJo.jpg","duration":568,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-vaper-s-anonymous","changefreq":"weekly","video":[{"title":"S2:E11 - Vaper's Anonymous","description":"Well, we tried.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-vaper-s-anonymous","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e4de9968-9621-4d22-855b-af9d477af9e8.jpg/sm/SP7Vapers.jpg","duration":405,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-bought-my-best-friend-a-40-000-car","changefreq":"weekly","video":[{"title":"S2:E9 - Bought my best friend a $40,000 car.","description":"Hoping he reads the title and gets just as sad as the video.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-bought-my-best-friend-a-40-000-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0aa505ea-61bd-4bdf-83a7-2a15ef8014f9.jpg/sm/SP740kcar.jpg","duration":639,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-finally-burying-parker","changefreq":"weekly","video":[{"title":"S2:E10 - Finally burying Parker. ","description":"The one place we can't, is the one place we will.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-finally-burying-parker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dea693f0-351e-4f0f-977a-4cb802a6256c.jpg/sm/als2e10.jpg","duration":670,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-new-friends-new-dreams","changefreq":"weekly","video":[{"title":"S2:E8 - New friends, new dreams.","description":"Devin vs. Denver.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-new-friends-new-dreams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cc89b66-b389-41a3-9450-98768e963119.jpg/sm/SP7NewFriends.jpg","duration":463,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-just-a-couple-friends-music-video","changefreq":"weekly","video":[{"title":"S2:E7 - Just A Couple Friends - Music Video","description":"Available now on iTunes: https://itunes.apple.com/us/album/just-a-couple-friends/ id1270893179?i=1270893420","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-just-a-couple-friends-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eca3d1fc-eef2-432b-aa08-e45a49756d23.jpg/sm/als2e7.jpg","duration":206,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-day-in-the-life-of-sugar-pine-7","changefreq":"weekly","video":[{"title":"S2:E6 - Day in the life of Sugar Pine 7","description":"Cow Chop visits and we deal with it accordingly.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-day-in-the-life-of-sugar-pine-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3323958d-a72c-48b5-868b-3cd155371e2d.jpg/sm/Sp7Dayinthelife.jpg","duration":335,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-here-s-how-you-lose-your-business","changefreq":"weekly","video":[{"title":"S2:E5 - Here's how you lose your business.","description":"Just when things are looking up, we get some bad news.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-here-s-how-you-lose-your-business","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7a803de1-6e6d-434e-a021-666468169938.jpg/sm/SP7LoseBusiness.jpg","duration":321,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-golfing-with-my-dad","changefreq":"weekly","video":[{"title":"S2:E4 - Golfing with my dad. ","description":"Opportunities are endless, with family and friends.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-golfing-with-my-dad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c3efd48b-84db-4d2e-9bf3-add36892ef7b.jpg/sm/thumb.jpg","duration":572,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-our-new-boss","changefreq":"weekly","video":[{"title":"S2:E3 - Our new boss.","description":"An accomplished businessman and a drunk person battle to be our boss. Which is impossible, because Steven is our boss. And he is a good boss. A very good boss. The best boss.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-our-new-boss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/727891ff-17c1-497b-a8e9-06270254b12a.jpg/sm/SP7NewBoss.jpg","duration":625,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-alfredo-s-apology","changefreq":"weekly","video":[{"title":"S2:E2 - Alfredo's apology.","description":"After getting back from vacation, Alfredo has a tough time coping with current events.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-alfredo-s-apology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/37d61bbe-0057-4c56-8ea6-3e1be42fb31e.jpg/sm/SP7AlfredosApology.jpg","duration":453,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-2-what-do-we-do-with-the-body","changefreq":"weekly","video":[{"title":"S2:E1 - What do we do with the body?","description":"Season 2 premiere.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-2-what-do-we-do-with-the-body","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c66d4f9c-89e7-4d05-bb9e-db133b15e5b2.jpg/sm/SP7Body.jpg","duration":397,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-akrasia","changefreq":"weekly","video":[{"title":"S1:E67 - Akrasia","description":"Sugar Pine 7 Season 1 finale.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-akrasia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad80f75e-56be-49fd-8a0b-7e09e280624c.jpg/sm/Akrasia.jpg","duration":618,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-last-goodbye","changefreq":"weekly","video":[{"title":"S1:E65 - The last goodbye.","description":"Parker and Cib finally talk about Sami Jo.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-last-goodbye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/20556a22-95f6-4441-8a2b-b5899b93a33d.jpg/sm/SP7LastGoodbye.jpg","duration":402,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-this-is-why-you-shouldn-t-fall-in-love","changefreq":"weekly","video":[{"title":"S1:E64 - This is why you shouldn't fall in love.","description":"Sorry *this is why Parker shouldn't fall in love.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-this-is-why-you-shouldn-t-fall-in-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/735f4a97-5f7a-4c99-862e-fb3629220756.jpg/sm/SP7Fallinlove.jpg","duration":513,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-fired-from-rooster-teeth","changefreq":"weekly","video":[{"title":"S1:E63 - Fired from Rooster Teeth","description":"After Autumn left a terrible impression on everyone at RTX, Rooster Teeth invited us back a week later to discuss...things.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-fired-from-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ceb73c14-3881-43a4-9bd5-5d3d7a71b176.jpg/sm/SP7FiredfromRT.jpg","duration":368,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-truth-about-parker","changefreq":"weekly","video":[{"title":"S1:E62 - The Truth About Parker","description":"After traveling for days, I come home to one of my least favorite people and a dark dark secret.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-truth-about-parker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d0f64a51-6792-4e4b-83b4-b305704eb30a.jpg/sm/SP7TruthParker.jpg","duration":381,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-a-day-in-the-life-of-alfredo","changefreq":"weekly","video":[{"title":"S1:E61 - A day in the life of Alfredo.","description":"No fear. No real humanity. Alfredo is the beacon of a new generation and a reminder of what it means to start at nothing and rise to the top.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-a-day-in-the-life-of-alfredo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d40551ea-c335-47a7-b1ab-ca50fb0baa6b.jpg/sm/SP7LifeofAlfredo.jpg","duration":478,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-good-the-bad-the-bully","changefreq":"weekly","video":[{"title":"S1:E60 - The good, the bad & the bully.","description":"The taste of the good life gets to James...and someone's gotten to all of us.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-good-the-bad-the-bully","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2736f983-500f-4f85-8cde-95dbb1cd71f4.jpg/sm/SP7Bully.jpg","duration":338,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-here-s-what-rtx-is-like","changefreq":"weekly","video":[{"title":"S1:E59 - Here's what RTX is like...","description":"RTX. The event of a lifetime. We show up representing Sugar Pine 7 and everything goes so well I swear.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-here-s-what-rtx-is-like","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f254501-f878-4b3b-9d93-24a6f149d218.jpg/sm/SP7RTX.jpg","duration":370,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-third-wheel","changefreq":"weekly","video":[{"title":"S1:E58 - The third wheel.","description":"Cib and Sami Jo are two peas in a pot. And then there's Parker.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-third-wheel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/59ea6aa6-8194-458a-a9b1-99e2e17f3d75.jpg/sm/SP7ThirdWheel.jpg","duration":447,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-teaching-autumn-some-manners","changefreq":"weekly","video":[{"title":"S1:E57 - Teaching Autumn some manners.","description":"As our official editor, we need Autumn to shape up.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-teaching-autumn-some-manners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8391462e-df5f-4567-8a14-0fb5f04ed563.jpg/sm/SP7TeachingAutumn.jpg","duration":319,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-this-is-why-we-need-a-security-guard","changefreq":"weekly","video":[{"title":"S1:E56 - This is why we need a security guard...","description":"After a terrifying turn of events... I realized we truly needed more security.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-this-is-why-we-need-a-security-guard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c4b42e2c-62e0-4fd3-b5d6-9aa9b991e941.jpg/sm/SP7SecurityGuard.jpg","duration":405,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-i-ll-see-you-in-court","changefreq":"weekly","video":[{"title":"S1:E54 - I'll see you in court.","description":"Basketball runs in my blood. So does chronic waterbug's-disease.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-i-ll-see-you-in-court","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d396f798-804d-4e96-aa33-d54b419d23f8.jpg/sm/SP7Court.jpg","duration":420,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-how-dare-they-replace-me","changefreq":"weekly","video":[{"title":"S1:E53 - How dare they replace me…?","description":"The Bay of Pigs meets I Am Sam.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-how-dare-they-replace-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4a7b3c44-5b8b-4faf-99e1-02746d2cf06e.jpg/sm/SP7ReplaceMe.jpg","duration":480,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-here-s-why-we-don-t-upload-everyday","changefreq":"weekly","video":[{"title":"S1:E52 - Here's why we don't upload everyday...","description":"Transportation is a vital part of Sugar Pine 7, which is why everyone does it completely wrong.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-here-s-why-we-don-t-upload-everyday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5bdde96b-2509-4605-9547-6d9420dd2bf7.jpg/sm/SP7UploadEveryday.jpg","duration":417,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-day-one","changefreq":"weekly","video":[{"title":"S1:E51 - Day one.","description":"The first day at the office isn't exactly how I wanted it to go.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-day-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a8ed481-9f7d-48ed-a61f-f017edbd1ba3.jpg/sm/SP7DayOne.jpg","duration":703,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-welcome-to-our-office","changefreq":"weekly","video":[{"title":"S1:E50 - Welcome to our office.","description":"After more than 2 months, we're finally almost settled in. Welcome to the Sugar Pine 7 office.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-welcome-to-our-office","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e643655e-c867-4130-92a2-ec9b7b948c88.jpg/sm/SP7WelcomeOffice.jpg","duration":343,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-world-s-biggest-pizza-challenge","changefreq":"weekly","video":[{"title":"S1:E49 - World's biggest pizza challenge.","description":"This is the story about 4 boys taking on the world's largest pizza.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-world-s-biggest-pizza-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ab369c9-40d3-4635-a876-1a9b21d86810.jpg/sm/SP7BiggestPizza.jpg","duration":327,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-sugar-pine-7-live-show","changefreq":"weekly","video":[{"title":"S1:E48 - The Sugar Pine 7 Live Show","description":"After 2 hours of practice...we were finally ready to perform.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-sugar-pine-7-live-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/14a4b527-b999-4fb5-816c-94928d4bc431.jpg/sm/SP7Liveshow.jpg","duration":616,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-love-is-all-you-need","changefreq":"weekly","video":[{"title":"S1:E47 - Love is all you need.","description":"Cib's girlfriend is a big change for all of us. Some more than others.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-love-is-all-you-need","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a742df9-d3ab-4a33-bc17-ef503ea135c8.jpg/sm/SP7Love.jpg","duration":307,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-our-message-to-ign","changefreq":"weekly","video":[{"title":"S1:E46 - Our message to IGN.","description":"This is our response to Cory from IGN.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-our-message-to-ign","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8fe6039f-b191-410c-8d3e-b5136acf180b.jpg/sm/SP7IGN.jpg","duration":439,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-cib-meets-his-replacement","changefreq":"weekly","video":[{"title":"S1:E44 - Cib meets his replacement...","description":"A meeting in downtown Los Angeles puts Cib at odds with a friend.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-cib-meets-his-replacement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/caf01105-7db5-4910-a863-8d4f2dc73d6b.jpg/sm/SP7CibMeets.jpg","duration":452,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-alcohol-changes-you","changefreq":"weekly","video":[{"title":"S1:E43 - Alcohol changes you.","description":"E3 is going on, so Cib and I stopped by to wait in line for a few hours and play nothing.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-alcohol-changes-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/041cfa73-09a3-4403-96e9-34468d2cb7ec.jpg/sm/SP7AlcoholChanges.jpg","duration":357,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-i-hate-my-dad-and-so-should-you","changefreq":"weekly","video":[{"title":"S1:E45 - I hate my dad and so should you.","description":"It's father's day. A day for reflecting, compassion and respect.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-i-hate-my-dad-and-so-should-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/081ee3db-e974-4587-95af-3a13112cdbae.jpg/sm/SP7IHate.jpg","duration":720,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-annual-bi-weekly-sugar-pine-7-sleepover","changefreq":"weekly","video":[{"title":"S1:E42 - The annual bi-weekly Sugar Pine 7 sleepover.","description":"Cib has a girlfriend?","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-annual-bi-weekly-sugar-pine-7-sleepover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c9b4be34-65f5-4fe9-a447-a31e8ef17c67.jpg/sm/SP7BiWeekly.jpg","duration":1112,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-i-hired-autumn-and-here-s-why","changefreq":"weekly","video":[{"title":"S1:E41 - I hired Autumn, and here's why.","description":"After an intense round of interviewing, my final pick was the only person I interviewed. Find out what put her above the rest by watching the video.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-i-hired-autumn-and-here-s-why","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7c39f9bb-4acc-4d50-85b5-fbbd266a341b.jpg/sm/SP7HiredAutumn.jpg","duration":314,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-business-vs-friendship","changefreq":"weekly","video":[{"title":"S1:E40 - Business vs. Friendship","description":"It sounds cool to go into business with your friends, but is it really?","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-business-vs-friendship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/afa73a60-7132-4ee8-9102-3636bd5a7509.jpg/sm/SP7BusinessvsFriendship.jpg","duration":529,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-it-s-our-money-and-we-want-it-now","changefreq":"weekly","video":[{"title":"S1:E39 - It's our money and we want it now.","description":"Big things are happening, between the live show and our business. Our goal is to make them faster and bigger and harder.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-it-s-our-money-and-we-want-it-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/19435f86-47f8-436d-9e5e-790e8e892de9.jpg/sm/SP7OurMoney.jpg","duration":607,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-worst-idea-i-ve-had-yet","changefreq":"weekly","video":[{"title":"S1:E38 - The worst idea I've had yet...","description":"I know you're watching, McLaren. And I know you like what you see. I also know you shouldn't start a sentence with \"and\".","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-worst-idea-i-ve-had-yet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/18173236-3754-46e4-9d9b-35304e162a17.jpg/sm/SP7WorstIdea.jpg","duration":313,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-teambuilding-exercise-fighting","changefreq":"weekly","video":[{"title":"S1:E37 - Teambuilding Exercise: Fighting","description":"In order to build Parker's confidence...we take him out to a field and train him in many different forms of combat.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-teambuilding-exercise-fighting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/334a2b14-07f5-417a-9e97-19ea0de242ed.jpg/sm/SP7TeamBuilding.jpg","duration":465,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-friday-the-13th","changefreq":"weekly","video":[{"title":"S1:E36 - Friday the 13th.","description":"We come ever closer to making this a gaming channel.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-friday-the-13th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/711391b2-9c5c-4625-a593-5af26af9a90d.jpg/sm/SP7Friday.jpg","duration":356,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-our-internship-program","changefreq":"weekly","video":[{"title":"S1:E35 - Our Internship Program.","description":"The Sugar Pine 7 Internship Program is an amazing opportunity where you'll learn the basics of love and freedom.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-our-internship-program","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/32605161-cdc9-4597-90d4-25c0a3c128bf.jpg/sm/SP7Internship.jpg","duration":498,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-heaven-is-a-place-called-anywhere-parker-isn-t","changefreq":"weekly","video":[{"title":"S1:E34 - Heaven is a place called: Anywhere Parker isn't.","description":"A cancelled sleepover turns into one of the worst nights in recorded history.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-heaven-is-a-place-called-anywhere-parker-isn-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/33ceae48-29d1-4ca4-bddd-c99648235b7f.jpg/sm/SP7Heaven.jpg","duration":281,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-band-practice","changefreq":"weekly","video":[{"title":"S1:E33 - Band practice.","description":"It's easy to make a band...but staying friends? That's irrelevant when you're rich and in a band.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-band-practice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eeec2f81-b8a3-42c3-82e4-cf7c8889c7c9.jpg/sm/SP7BandPractice.jpg","duration":547,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-we-re-actually-screwed","changefreq":"weekly","video":[{"title":"S1:E32 - We're actually screwed.","description":"With the company in my hands, it's up to me to make sure everyone is safe.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-we-re-actually-screwed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/629be0ef-fdd8-4d0f-9d27-d65a8fad41bf.jpg/sm/SP7Screwed.jpg","duration":331,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-waxing-cib-good-or-bad-choice-you-decide","changefreq":"weekly","video":[{"title":"S1:E31 - Waxing Cib: Good or bad choice? You decide.","description":"The rumors started by me at the end of this video are true.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-waxing-cib-good-or-bad-choice-you-decide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6965a780-5f97-4f2d-b15e-388c0a07f753.jpg/sm/WaxingCib.jpg","duration":434,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-funhaus-volleyball-the-real-story","changefreq":"weekly","video":[{"title":"S1:E30 - Funhaus. Volleyball. The real story...","description":"Sugar Pine 7 hits the beach to face off against Funhaus in the world's oldest sport: Volleyball.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-funhaus-volleyball-the-real-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c8f94321-cb48-492c-8575-68fbfc866878.jpg/sm/SP7FunhausVolleyball.jpg","duration":604,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-replacing-cib","changefreq":"weekly","video":[{"title":"S1:E29 - Replacing Cib.","description":"If Cib really does have to go back to Canada, it's important to be prepared. Even if that means accepting someone with a preexisting condition.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-replacing-cib","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee3632c8-12d1-446b-a19d-a669afd6d069.jpg/sm/SP7ReplacingCib.jpg","duration":619,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-i-m-taking-a-break-from-my-friends","changefreq":"weekly","video":[{"title":"S1:E28 - I'm taking a break from my friends...","description":"Sometimes you just have to take a break for a day and look at how deranged your friends are in post.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-i-m-taking-a-break-from-my-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5f12be5-a1f3-421b-ae77-f29a04558828.jpg/sm/SP7TakingBreak.jpg","duration":381,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-charity-technical-support-for-the-elderly","changefreq":"weekly","video":[{"title":"S1:E27 - Charity technical support for the elderly.","description":"Cow Chop's head master doesn't know how to run a podcast.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-charity-technical-support-for-the-elderly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f8c84cee-ad3f-42ac-9933-382200aa92a5.jpg/sm/SP7CharityTechnical.jpg","duration":371,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-rooster-teeth-eats-world","changefreq":"weekly","video":[{"title":"S1:E26 - Rooster Teeth Eats World","description":"We beg for money from two old men.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-rooster-teeth-eats-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/32c67f52-1473-4f5d-94e4-5cb5b6569572.jpg/sm/SP7RTEats.jpg","duration":286,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-please-excuse-my-privilege","changefreq":"weekly","video":[{"title":"S1:E25 - Please excuse my privilege.","description":"LET'S GET PEAS.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-please-excuse-my-privilege","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8cb44825-d070-4b02-a551-c6d0eaaae3d1.jpg/sm/SP7Pleaseexcuse.jpg","duration":442,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-okay-now-here-s-some-good-news","changefreq":"weekly","video":[{"title":"S1:E24 - Okay, now here's some good news.","description":"Not a lot of good news. But like… some.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-okay-now-here-s-some-good-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bb04a197-e97b-4f51-b163-55af1b316f77.jpg/sm/SP7GoodNews.jpg","duration":322,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-here-s-some-bad-news","changefreq":"weekly","video":[{"title":"S1:E23 - Here's some bad news...","description":"I carry a dark secret along with me during a fishing trip.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-here-s-some-bad-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2748c614-bb16-4fac-8493-a7fe9bcb7264.jpg/sm/SP7BadNews.jpg","duration":370,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-boys-will-be-boys","changefreq":"weekly","video":[{"title":"S1:E22 - Boys will be boys.","description":"I decided to wear a tank top today. My arms flew around in the wind.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-boys-will-be-boys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78795a78-5353-4c71-a8b6-98863c89d5e4.jpg/sm/SP7Boyswillbe.jpg","duration":615,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-sourcefed-where-are-they-now-again","changefreq":"weekly","video":[{"title":"S1:E21 - Sourcefed: Where are they now? Again.","description":"We catch up, again.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-sourcefed-where-are-they-now-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fcfed8ea-1f94-426e-82f6-541acbca1e61.jpg/sm/SP7SourcefedAgain.jpg","duration":612,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-fake-friends","changefreq":"weekly","video":[{"title":"S1:E20 - Fake Friends","description":"How many of us? How many","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-fake-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c2650482-e3a4-42d8-8365-650b4b6f6418.jpg/sm/SP7FakeFriends.jpg","duration":423,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-sorry-funhaus","changefreq":"weekly","video":[{"title":"S1:E19 - Sorry, Funhaus.","description":"I can change. I will change.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-sorry-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c94daa06-6824-412b-b14e-33b75d69d98b.jpg/sm/SP7SorryFunhaus.jpg","duration":610,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-now-this-is-what-i-call-bad","changefreq":"weekly","video":[{"title":"S1:E18 - Now This is what I call...bad.","description":"We visit LifeNoggin, the mall and the gun range. Average day.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-now-this-is-what-i-call-bad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0e9c3dd-5164-41c5-92e8-789582dca76b.jpg/sm/SP7NowCallBad.jpg","duration":603,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-trouble-in-paradise","changefreq":"weekly","video":[{"title":"S1:E17 - Trouble in paradise.","description":"We stop by Cow Chop to promote peas.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-trouble-in-paradise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e3eadaeb-338a-452b-9b92-7d952d198ef5.jpg/sm/SP7TroubleinParadise.jpg","duration":602,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-sourcefed-meets-my-friends","changefreq":"weekly","video":[{"title":"S1:E16 - Sourcefed meets my friends.","description":"Clash of the titans.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-sourcefed-meets-my-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1e3bf754-0e29-42f8-874d-291d8ce8383b.jpg/sm/SP7SourcefedMeetsFriends.jpg","duration":465,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-only-thing-to-fear","changefreq":"weekly","video":[{"title":"S1:E14 - The only thing to fear...","description":"Children. Nature's animals. They're everywhere, but why?","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-only-thing-to-fear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c212088b-7b63-4609-a294-31a4dac6ce8b.jpg/sm/SP7OnlyThingToFear.jpg","duration":349,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-visiting-cowchop","changefreq":"weekly","video":[{"title":"S1:E13 - Visiting Cowchop","description":"Cowchop is a travel channel created by Casey Neistat.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-visiting-cowchop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a88d0577-1584-4fbb-8b9c-027cd119f8f5.jpg/sm/SP7VisitingCC.jpg","duration":360,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-patience-is-the-worst-virtue","changefreq":"weekly","video":[{"title":"S1:E12 - Patience is the worst virtue.","description":"Every day is a new nightmare when you're Cib's dad.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-patience-is-the-worst-virtue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a13388e5-989c-42d2-9e3c-7489423ee630.jpg/sm/SP7patience.jpg","duration":351,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-burned-out","changefreq":"weekly","video":[{"title":"S1:E11 - Burned out.","description":"Time! Time! Time! Time!","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-burned-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c1346e27-9e2f-4683-8de2-034d601154a3.jpg/sm/SP7BurnedOut.jpg","duration":353,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-ghost-hunters","changefreq":"weekly","video":[{"title":"S1:E10 - Ghost Hunters","description":"The boys are back in town.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-ghost-hunters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/14b44fd4-67f1-4005-a0fb-e5c9f1e1442e.jpg/sm/SP7ghosthunters.jpg","duration":795,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-search-for-a-new-office","changefreq":"weekly","video":[{"title":"S1:E9 - The search for a new office...","description":"Finding an office space in LA is a lot harder than we thought it'd be.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-search-for-a-new-office","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/137d5ff8-898c-42cb-9429-7c4115162a45.jpg/sm/SP7searchnewoffice.jpg","duration":410,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-things-are-changing","changefreq":"weekly","video":[{"title":"S1:E8 - Things are changing...","description":"We got a new camera. It's a big deal to us.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-things-are-changing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/50b8f0f4-f5aa-4bfb-a54b-496a913fd19d.jpg/sm/SP7thingsarechanging.jpg","duration":365,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-just-say-yes","changefreq":"weekly","video":[{"title":"S1:E7 - Just say \"yes\"","description":"I didn't mean for the title and thumbnail to give of that kind of vibe.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-just-say-yes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bcb9b96-02f2-4267-a78c-83a535858da8.jpg/sm/SP7Justsayyes.jpg","duration":372,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-sourcefed-where-are-they-now","changefreq":"weekly","video":[{"title":"S1:E5 - Sourcefed. Where are they now?","description":"Follow the tale of Candace, Ava and Mike as I uncover what they're up to.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-sourcefed-where-are-they-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6018e6df-5428-4098-9ff5-2d174dbba585.jpg/sm/SP7Sourcefed1.jpg","duration":547,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-taco-trip-2017","changefreq":"weekly","video":[{"title":"S1:E6 - Taco Trip 2017","description":"S1:E6 - Taco Trip 2017","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-taco-trip-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d6786038-e94a-4ccc-b2ba-165ded3dc2fe.jpg/sm/SP7Tacotrip.jpg","duration":584,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-part-time-part-time-at-funhaus","changefreq":"weekly","video":[{"title":"S1:E4 - Part-time 'part-time' at Funhaus.","description":"My employment status remains a mystery.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-part-time-part-time-at-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e06c2fb0-4c3d-421b-b956-6368b9937539.jpg/sm/SP7PartTime.jpg","duration":306,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-neighborhood-watch","changefreq":"weekly","video":[{"title":"S1:E3 - Neighborhood Watch.","description":"We watch the neighborhood.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-neighborhood-watch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f22a084-45c3-419e-967c-9f0605e24225.jpg/sm/SP7NeighborhoodWatch.jpg","duration":448,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-the-future-of-this-channel","changefreq":"weekly","video":[{"title":"S1:E2 - The future of this channel...","description":"Where will we be in a year? Dude idk hahahahahaha","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-the-future-of-this-channel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d7e5a35a-3822-4e80-aa3a-7b49a5f7d23f.jpg/sm/SP7Futurechannel.jpg","duration":346,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-sugar-pine-7","changefreq":"weekly","video":[{"title":"S1:E1 - Sugar Pine 7","description":"An Idyllwild glamping trip for the boys is exactly what we needed to de-stress.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-sugar-pine-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3e0d03e8-1226-4cd8-bf1f-db4026d81676.jpg/sm/SP7SP7.jpg","duration":839,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-why-we-killed-off-parker","changefreq":"weekly","video":[{"title":"S1:E1 - Why we killed off Parker","description":"Welcome to Beyond the Pine. Today we're talking about the end of season 1, new beginnings and what Parker will do now that he's on the street.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-why-we-killed-off-parker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43e0f85e-7a03-47b4-b2ab-2623824fb6b2.jpg/sm/maxresdefault.jpg","duration":3531,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-autumn-s-modern-life","changefreq":"weekly","video":[{"title":"S1:E2 - Autumn's Modern Life","description":"Welcome back to Beyond the Pine. Autumn has a dark past. A past worth briefly glossing over then ignoring completely.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-autumn-s-modern-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0ee14d8-90e0-4c83-94da-e36a37fa0310.jpg/sm/maxresdefault.jpg","duration":3406,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-we-have-an-award-winning-show","changefreq":"weekly","video":[{"title":"S1:E5 - We have an award-winning show...?","description":"Welcome back to Beyond the Pine. Something smells, and it's Steve yankin' it in the office. Or maybe it's all the mono. Or maybe it's our four Streamys nominations?","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-we-have-an-award-winning-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8b1be8d4-ab70-44c9-8993-64ec9c3515ce.jpg/sm/maxresdefault.jpg","duration":3277,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-moving-in-with-funhaus","changefreq":"weekly","video":[{"title":"S1:E6 - Moving in with Funhaus...?","description":"Cib fights a crackhead, James and Devin fight Skrillex, and everyone's mad at Steve jerking off. This is Beyond The Pine and we're doin just fine.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-moving-in-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/01ef5944-5fab-4b06-82c3-b6650aeef065.jpg/sm/maxresdefault.jpg","duration":3275,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-we-re-making-a-movie","changefreq":"weekly","video":[{"title":"S1:E7 - We're making a movie","description":"Welcome back to Beyond the Pine. I didn't edit this one so I don't really know what they talked about.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-we-re-making-a-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02f991b8-b315-4456-94c4-0ffb6ebac492.jpg/sm/maxresdefault.jpg","duration":3389,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-just-cause-3-rap-i-don-t-need-a-reason","changefreq":"weekly","video":[{"title":"2016:E1 - Just Cause 3 Rap - \"I Don't Need a Reason\"","description":"You've been asking and here it is: Just Cause 3 Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-just-cause-3-rap-i-don-t-need-a-reason","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7154b576-afb6-4b84-b395-16791b9d9533.png/sm/JTMusic2016_1_widethumb.png","duration":229,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-league-of-legends-rap-out-of-your-league","changefreq":"weekly","video":[{"title":"2016:E2 - League of Legends Rap - \"Out of Your League\"","description":"Biggest PC game in the world...It's about time we threw a rap its way.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-league-of-legends-rap-out-of-your-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/03e89174-e950-427e-b6a6-9e349c10dd51.png/sm/JTMusic2016_2_widethumb.png","duration":246,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-far-cry-primal-rap-let-your-soul-walk-free","changefreq":"weekly","video":[{"title":"2016:E4 - Far Cry Primal Rap - \"Let Your Soul Walk Free\"","description":"Ubisoft gambled with this game's setting being prehistoric, but we loved it and allowed us to try out some new things musically. Thank you to Miracle of Sound for their vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-far-cry-primal-rap-let-your-soul-walk-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/529fe789-67dc-4049-93e8-5cc162d1b32e.png/sm/JTMusic2016_4_widethumb.png","duration":268,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-world-of-tanks-rap-rolling-out","changefreq":"weekly","video":[{"title":"2016:E6 - World of Tanks Rap - \"Rolling Out\"","description":"Special thanks to World of Tanks and Wargaming.net who collaborated with us on this track!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-world-of-tanks-rap-rolling-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ad6b3f8-5e83-44c3-8b7f-dcfa06dac9f7.png/sm/JTMusic2016_6_widethumb.png","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-rocket-league-rap-ready-for-liftoff","changefreq":"weekly","video":[{"title":"2016:E5 - Rocket League Rap - \"Ready for Liftoff\"","description":"Rocket League is our new favorite game! Giving it a rap was a no brainer.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-rocket-league-rap-ready-for-liftoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ba039686-8c89-4e2e-b55f-dda2f5472fec.png/sm/JTMusic2016_5_widethumb.png","duration":182,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-wolfenstein-rap-revisited-the-doomed-order","changefreq":"weekly","video":[{"title":"2016:E7 - Wolfenstein Rap Revisited - \"The Doomed Order\"","description":"We revisit our Wolfenstein Rap but add in female vocals for the chorus. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-wolfenstein-rap-revisited-the-doomed-order","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23a5031e-7719-43a4-8a36-9035877199d9.png/sm/JTMusic2016_7_widethumb.png","duration":224,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-quantum-break-rap-screams-of-time","changefreq":"weekly","video":[{"title":"2016:E8 - Quantum Break Rap - \"Screams of Time\"","description":"Quantum Break took us by surprise and we LOVED IT. So here's this Music Video to show our adoration.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-quantum-break-rap-screams-of-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fc2f167d-0b08-408f-936e-8ebc4b3cce0d.png/sm/JTMusic2016_8_widethumb.png","duration":232,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-gta-v-mega-ramp-rap","changefreq":"weekly","video":[{"title":"2016:E12 - GTA V Mega Ramp Rap","description":"Why are Mega Ramps so awesome? The answer is obvious. In case you need to hear all the reasons why, we made this song. Thanks to Neebs Gaming for their verses.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-gta-v-mega-ramp-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0d4f201b-a36a-438a-b844-8dba898cb409.png/sm/JTMusic2016_12_widethumb.png","duration":169,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-gang-beast-drunk-rap","changefreq":"weekly","video":[{"title":"2016:E15 - Gang Beast DRUNK Rap","description":"So we got drunk and did this whole video end to end in one night...did I mention we were drunk?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-gang-beast-drunk-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d6201af5-3455-4a42-bb1b-1175ee7a3d9b.png/sm/JTMusic2016_15_widethumb.png","duration":161,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-dark-souls-iii-rap-darkness-falling","changefreq":"weekly","video":[{"title":"2016:E11 - Dark Souls III Rap - \"Darkness Falling\"","description":"Dark Souls III continues the tradition of painfully difficult gameplay as do we with video game raps.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-dark-souls-iii-rap-darkness-falling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6636f20-8e31-46d0-aeb0-c771d4178e68.png/sm/JTMusic2016_11_widethumb.png","duration":333,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-doom-rap-fight-like-hell","changefreq":"weekly","video":[{"title":"2016:E13 - Doom Rap - \"Fight Like Hell\"","description":"DOOM Guy goes off dropping bars and slaying demons!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-doom-rap-fight-like-hell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07ea4af2-2906-4a3b-a405-42fcae02967c.png/sm/JTMusic2016_13_widethumb.png","duration":271,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-battleborn-rap-born-to-battle","changefreq":"weekly","video":[{"title":"2016:E9 - Battleborn Rap - \"Born to Battle\"","description":"Unfortunately this game was doomed from the start with the launch of Overwatch, but let's not forget the awesome universe that Gearbox built here. We hope this song reminds you of that!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-battleborn-rap-born-to-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3b4b6d2b-f63e-46eb-b006-5f608b383d7d.png/sm/JTMusic2016_9_widethumb.png","duration":254,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-fallout-4-love-song-falling-for-fallout","changefreq":"weekly","video":[{"title":"2016:E10 - Fallout 4 Love Song - \"Falling for Fallout\"","description":"It’s real. Fallout breaks up relationships. This 50s styled love song is ALLLL about that.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-fallout-4-love-song-falling-for-fallout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f01114f1-f850-4ce4-9510-a1307dd94af9.png/sm/JTMusic2016_10_widethumb.png","duration":279,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-sans-and-papyrus-song-to-the-bone","changefreq":"weekly","video":[{"title":"2016:E14 - Sans and Papyrus Song - \"To the Bone\"","description":"Sans and Papyrus sing a song to you after you've fallen into the Underground.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-sans-and-papyrus-song-to-the-bone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/49caedc7-8d16-4b64-9366-24c673f80894.png/sm/JTMusic2016_14_widethumb.png","duration":289,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-battlefield-1-rap-the-world-s-the-war","changefreq":"weekly","video":[{"title":"2016:E19 - Battlefield 1 Rap - \"The World's The War\"","description":"Battlefield is here to reign supreme and here's an epic rap to display that! Oh and we got the best Battlefielders ever to join us on this track! Thanks to Neebs Gaming for their vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-battlefield-1-rap-the-world-s-the-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0142e4c1-a830-4287-a605-63d514c08e71.png/sm/JTMusic2016_19_widethumb.png","duration":318,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-pokemon-go-song-we-all-evolve","changefreq":"weekly","video":[{"title":"2016:E18 - Pokemon GO Song - \"We All Evolve\"","description":"Pokemon GO has taken the world by storm and we're here to add a soundtrack to the phenomenon.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-pokemon-go-song-we-all-evolve","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/64fc75cd-e671-4d92-a9ad-65b205388496.png/sm/JTMusic2016_18_widethumb.png","duration":220,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-the-markiplier-rap","changefreq":"weekly","video":[{"title":"2016:E16 - The Markiplier Rap","description":"Markiplier has been an awesome staple in the YouTube community and we decided to make a song about him. This is a song not only for Markiplier but his community of fans. We hope this is the song you always deserved!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-the-markiplier-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a9731007-e59e-4bf7-b9bd-5f84d27e8ae0.png/sm/JTMusic2016_16_widethumb.png","duration":262,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-no-man-s-sky-song-stargazer","changefreq":"weekly","video":[{"title":"2016:E17 - No Man's Sky Song - \"Stargazer\"","description":"Hello Stargazers! No matter how you feel about the game, there is no doubt this song is a perfect companion to a No Man's Sky adventure! May the stars be with you friends!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-no-man-s-sky-song-stargazer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/079893a0-858c-4c44-a6e0-86536de9fdfe.png/sm/JTMusic2016_17_widethumb.png","duration":308,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-sans-and-papyrus-song-to-the-bone-animated","changefreq":"weekly","video":[{"title":"2016:E20 - Sans and Papyrus Song - \"To the Bone\" (Animated)","description":"Sans and Papyrus sing a song to you after you've fallen into the Underground. BUT this time in animated in beautiful Source Filmmaker!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-sans-and-papyrus-song-to-the-bone-animated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff014cd7-9104-479f-bfc0-e773e414c8a0.png/sm/JTMusic2016_20_widethumb.png","duration":290,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-titanfall-2-rap-aligned-with-giants","changefreq":"weekly","video":[{"title":"2016:E21 - Titanfall 2 Rap - \"Aligned with Giants\"","description":"Stand by for Titanbars.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-titanfall-2-rap-aligned-with-giants","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c9cb69d-4527-4c94-a32a-5049bd2e59cd.png/sm/JTMusic2016_21_widethumb.png","duration":262,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-bioshock-rap-rapture-rising","changefreq":"weekly","video":[{"title":"2017:E1 - Bioshock Rap - \"Rapture Rising\"","description":"One of our favorite games of all time (Bioshock) FINALLY gets a rap.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-bioshock-rap-rapture-rising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f4396c9-8616-441b-937e-ead519f15c24.png/sm/JTMusic2017_1_widethumb.png","duration":338,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-hello-neighbor-song-parody-goodbye-neighbor","changefreq":"weekly","video":[{"title":"2017:E2 - Hello Neighbor Song Parody - \"Goodbye Neighbor\"","description":"The perfect song parody for Hello Neighbor to a classic hit song by Supertramp.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-hello-neighbor-song-parody-goodbye-neighbor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e001aa37-415f-49f7-a3b0-49ecf515fe4f.png/sm/JTMusic2017_2_widethumb.png","duration":209,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-hello-neighbor-rap-hello-and-goodbye","changefreq":"weekly","video":[{"title":"2016:E24 - Hello Neighbor Rap - \"Hello and Goodbye\"","description":"So what is this neighbor up to?! We haven’t the slightest idea, BUT here’s a rap for Hello Neighbor.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-hello-neighbor-rap-hello-and-goodbye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b774a1b5-58c0-4429-8df8-d258a479674f.png/sm/JTMusic2016_24_widethumb.png","duration":226,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-call-of-duty-infinite-warfare-rap-unlimited","changefreq":"weekly","video":[{"title":"2016:E23 - Call of Duty Infinite Warfare Rap - \"Unlimited\"","description":"We didn't know if this music video was gonna happen, BUT the game's single player changed our mind. And so here is our Call of Duty Infinite Warfare Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-call-of-duty-infinite-warfare-rap-unlimited","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ee3d3e5-011a-4819-b944-5c93f568475a.png/sm/JTMusic2016_23_widethumb.png","duration":289,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2016-dishonored-2-rap-honor","changefreq":"weekly","video":[{"title":"2016:E22 - Dishonored 2 Rap - \"Honor\"","description":"We missed Dishonored the first time around song-wise. BUT this Dishonored 2 Rap should make up for it!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2016-dishonored-2-rap-honor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/445be7a6-d7d0-4fc5-be2a-b638f8f6a3fd.png/sm/JTMusic2016_22_widethumb.png","duration":279,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-for-honor-rap-deus-vult","changefreq":"weekly","video":[{"title":"2017:E6 - For Honor Rap - \"Deus Vult\"","description":"This game has Vikings in it so we worked with Norwegian metal musicians to do the instrumental to this For Honor Rap. BIG thanks to the band TrollfesT for their work! We hope this song does the game justice!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-for-honor-rap-deus-vult","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad9cdb36-4687-4b4b-aadf-7cc32034aff2.png/sm/JTMusic2017_6_widethumb.png","duration":298,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-ark-survival-evolved-rap-apex-predator","changefreq":"weekly","video":[{"title":"2017:E4 - Ark Survival Evolved Rap - \"Apex Predator\"","description":"We have been LOVING Ark and decided it was about time that we made a song for it! Big thanks for Dan Bull for jumping on the track.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-ark-survival-evolved-rap-apex-predator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb0c80e6-97e5-4ee8-bc46-67dc2fb9aa99.png/sm/JTMusic2017_4_widethumb.png","duration":242,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-resident-evil-7-rap-shadow-of-myself","changefreq":"weekly","video":[{"title":"2017:E3 - Resident Evil 7 Rap - \"Shadow of Myself\"","description":"Resident Evil 7 was a pleasant surprise for us personally and we made this song on a whim when we never had any original intentions in covering this game.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-resident-evil-7-rap-shadow-of-myself","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23d81e8a-9c58-4e9c-88a6-c5f584c831f3.png/sm/JTMusic2017_3_widethumb.png","duration":322,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-bioshock-song-circus-of-value","changefreq":"weekly","video":[{"title":"2017:E5 - Bioshock Song - \"Circus of Value\"","description":"WELCOME TO THE CIRCUS OF VALUEEEEE. This was a credit song for our Bioshock Rap and you all seemed to dig it...so here's the full version!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-bioshock-song-circus-of-value","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7ea27100-04af-4017-b5b2-de12de03b3ad.png/sm/JTMusic2017_5_widethumb.png","duration":109,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-tattletail-rap","changefreq":"weekly","video":[{"title":"2017:E7 - Tattletail Rap","description":"Yayyyy more mechanical and cute things we can be terrified of! Here's the JT Music Tattletail Rap! Thank you to Andrea Storm Kaden and DAGames for their vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-tattletail-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a04c0b1f-7613-4afe-bc51-c5d11597098e.png/sm/JTMusic2017_7_widethumb.png","duration":258,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-assassin-s-creed-3-rap-redux-born-into-revolution","changefreq":"weekly","video":[{"title":"2017:E8 - Assassin's Creed 3 Rap REDUX - \"Born into Revolution\"","description":"Here's a redux of one of our all time favorite JT Music songs. \"Born into Revolution\", our Assassin's Creed 3 Rap gets revisited 5 years later.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-assassin-s-creed-3-rap-redux-born-into-revolution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/99c4d9ba-ca3b-4959-a693-12636fdd2e31.png/sm/JTMusic2017_8_widethumb.png","duration":283,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-mass-effect-andromeda-rap-feels-like-home","changefreq":"weekly","video":[{"title":"2017:E9 - Mass Effect Andromeda Rap - \"Feels Like Home\"","description":"Who knew Madonna and Mass Effect would make sense when mixed together?","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-mass-effect-andromeda-rap-feels-like-home","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1c587ba5-e1bb-4b09-916c-8b50fa0f9ffc.png/sm/JTMusic2017_9_widethumb.png","duration":354,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-happy-wheels-rap-to-victory","changefreq":"weekly","video":[{"title":"2017:E10 - Happy Wheels Rap - \"To Victory\"","description":"Happy Wheels...a masochistic jubilation. Here's the JT Music Happy Wheels Rap!!! Blast it as you run through some levels!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-happy-wheels-rap-to-victory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9cd1350b-000c-4591-918c-fbba2ed6fa15.png/sm/JTMusic2017_10_widethumb.png","duration":257,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-pubg-rap-song-the-last-man-to-stand","changefreq":"weekly","video":[{"title":"2017:E12 - PUBG Rap Song - \"The Last Man To Stand\"","description":"We've been loving Battlegrounds and put this dope track together with Thick44 of Neebs Gaming!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-pubg-rap-song-the-last-man-to-stand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2cda5d33-0070-4d41-8f19-400a2444bdb8.png/sm/JTMusic2017_12_widethumb.png","duration":264,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-bendy-and-the-ink-machine-rap-can-t-be-erased","changefreq":"weekly","video":[{"title":"2017:E11 - Bendy and the Ink Machine Rap - \"Can't Be Erased\"","description":"A terrifying Ink monster loosely based off of Disney stuff? Sign me up.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-bendy-and-the-ink-machine-rap-can-t-be-erased","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/376dc9f2-1665-408b-a875-0d6394def930.png/sm/JTMusic2017_11_widethumb.png","duration":299,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-prey-rap-open-your-eyes","changefreq":"weekly","video":[{"title":"2017:E13 - Prey Rap - \"Open Your Eyes\"","description":"No one told us this game is a lot like BioShock...WE LOVE THAT. We had to make this Prey Rap. Nemraps from NerdOut also joins us on the track and crushes it!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-prey-rap-open-your-eyes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/539760e4-328c-4fb1-bd23-4affecd9e434.png/sm/JTMusic2017_13_widethumb.png","duration":284,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-perception-rap-song-echoes","changefreq":"weekly","video":[{"title":"2017:E15 - Perception Rap Song - \"Echoes\"","description":"This game Perception intrigued us...you play as a blind girl in a haunted mansion. Better yet, the game is made by ex-Bioshock devs. We decided it deserved a song! Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-perception-rap-song-echoes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/534b634d-f6d4-47cd-aaf3-1fe085bb23d9.png/sm/JTMusic2017_15_widethumb.png","duration":293,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-battlesloths-rap-like-a-sloth","changefreq":"weekly","video":[{"title":"2017:E14 - Battlesloths Rap - \"Like a Sloth\"","description":"A song for Battlesloths 2025 The Great Pizza Wars! We had a lot of fun making this song and it features 3-Toe, MC Snuggles and Nap Daddy of the Beastly Boys.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-battlesloths-rap-like-a-sloth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7d28ee01-20a2-4749-8334-cf2caf958231.png/sm/JTMusic2017_14_widethumb.png","duration":304,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-little-nightmares-rap-song-hungry-for-another-one","changefreq":"weekly","video":[{"title":"2017:E17 - Little Nightmares Rap Song - \"Hungry for Another One\"","description":"This game is a gem for sure and we wanted to make a song that fit the universe of Little Nightmares. We hope we did it justice with this song! Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-little-nightmares-rap-song-hungry-for-another-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3a5fd4f7-65e5-439d-ac41-0f84d6b99866.png/sm/JTMusic2017_17_widethumb.png","duration":288,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-injustice-2-rap-injustice","changefreq":"weekly","video":[{"title":"2017:E16 - Injustice 2 Rap - \"Injustice\"","description":"Move over Avengers, the Justice League is here to rap and sing their hearts out. Thanks to Rockit Gaming for their verses and production.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-injustice-2-rap-injustice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6829c27c-7f12-4499-b9cb-2a93bec2e556.png/sm/JTMusic2017_16_widethumb.png","duration":234,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-crash-bandicoot-rap-the-ooda-booga-boobie","changefreq":"weekly","video":[{"title":"2017:E18 - Crash Bandicoot Rap - \"The Ooda-Booga Boobie\"","description":"Get ready for an N Sane Crash Bandicoot Rap!!! Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-crash-bandicoot-rap-the-ooda-booga-boobie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b526631-ecbc-4fba-b81e-7a3e3f4f1cb3.png/sm/JTMusic2017_18_widethumb.png","duration":260,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-rick-and-morty-rap-get-schwifty-numero-dos","changefreq":"weekly","video":[{"title":"2017:E19 - Rick and Morty Rap - \"Get Schwifty Numero Dos\"","description":"What do you do when you find out you can do a decent Rick and Morty impersonation? You make a rap song.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-rick-and-morty-rap-get-schwifty-numero-dos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e6c60f60-2165-4c46-8bd1-89bafcfe493a.png/sm/JTMusic2017_19_widethumb.png","duration":283,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-dream-daddy-song-the-dream-daddy-for-me","changefreq":"weekly","video":[{"title":"2017:E21 - Dream Daddy Song - \"The Dream Daddy For Me\"","description":"Here's our Dream Daddy Song! Hope you like 90s boy band music and hot dads, cause that's what you're getting.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-dream-daddy-song-the-dream-daddy-for-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/96fc833b-d6f1-4d44-9bbd-512479a64883.png/sm/JTMusic2017_21_widethumb.png","duration":260,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-subnautica-rap-don-t-hold-your-breath","changefreq":"weekly","video":[{"title":"2017:E22 - Subnautica Rap - \"Don't Hold Your Breath\"","description":"Water you waiting for? Go watch this Subnautica Rap!","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-subnautica-rap-don-t-hold-your-breath","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/352fc8a3-e912-4a5f-8593-6b6451ed0663.png/sm/JTMusic2017_22_widethumb.png","duration":249,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-lawbreakers-rap-time-to-break","changefreq":"weekly","video":[{"title":"2017:E20 - Lawbreakers Rap - \"Time to Break\"","description":"This song is so fire it's almost criminal. I guess we're Breakers.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-lawbreakers-rap-time-to-break","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6d9398f3-1fcb-4afd-91a0-e561a293c55c.png/sm/JTMusic2017_20_widethumb.png","duration":284,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-destiny-2-rap-fireborn","changefreq":"weekly","video":[{"title":"2017:E23 - Destiny 2 Rap - \"Fireborn\"","description":"Greetings fellow Guardians! Here's your new anthem to blast as you slay the Cabal Legions! Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-destiny-2-rap-fireborn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a5f77a0-a07d-466d-bc38-98ae55c40de9.png/sm/JTMusic2017_23_widethumb.png","duration":351,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-crysis-3-rap-live-the-prophet","changefreq":"weekly","video":[{"title":"S1:E4 - Crysis 3 Rap Live - \"The Prophet\"","description":"Here is our Crysis 3 Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-crysis-3-rap-live-the-prophet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/657a5200-508e-432e-9b6c-7dc6ff07dd33.png/sm/JT Music Raps Live_5_widethumb.png","duration":231,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-cuphead-rap","changefreq":"weekly","video":[{"title":"2017:E24 - Cuphead Rap","description":"We spit hot fire and mean cup puns in this Cuphead Rap","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-cuphead-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5f267fea-7baf-4eef-acc3-e52f2a62b741.png/sm/JTMusic2017_24_widethumb.png","duration":226,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/songs-about-games-songs-about-games-2017-shadow-of-war-embrace-my-curse","changefreq":"weekly","video":[{"title":"2017:E25 - Shadow of War - \"Embrace My Curse\"","description":"Ready to take Sauron out? If not, this song should put some fire in your heart and get you ready to do so.","player_loc":"https://roosterteeth.com/embed/songs-about-games-songs-about-games-2017-shadow-of-war-embrace-my-curse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/acafca7f-4672-48ff-90c3-6f606911f848.png/sm/JTMusic2017_25_widethumb.png","duration":278,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-gears-of-war-judgement-rap-live-kilo-squad","changefreq":"weekly","video":[{"title":"S1:E5 - Gears of War Judgement Rap Live - \"Kilo Squad\"","description":"Here is our Gears of War Judgement Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-gears-of-war-judgement-rap-live-kilo-squad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c9b9c7c4-0941-4482-b10c-e0b5bb31c42a.png/sm/JT Music Raps Live_6_widethumb.png","duration":269,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-call-of-duty-black-ops-ii-rap-live","changefreq":"weekly","video":[{"title":"S1:E3 - Call of Duty Black Ops II Rap Live","description":"Here is our CoD: Black Ops II Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-call-of-duty-black-ops-ii-rap-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/34f031a0-e36b-4639-9957-2497a85a2baa.png/sm/JT Music Raps Live_3_widethumb.png","duration":246,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-assassin-s-creed-3-rap-live-born-into-revolution","changefreq":"weekly","video":[{"title":"S1:E2 - Assassin's Creed 3 Rap Live - \"Born Into Revolution\"","description":"Here is our Assassin's Creed 3 Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-assassin-s-creed-3-rap-live-born-into-revolution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7f2a2aa8-55a1-4536-8301-08e449a44df1.png/sm/JT Music Raps Live_2_widethumb.png","duration":258,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-hitman-absolution-rap-live","changefreq":"weekly","video":[{"title":"S1:E6 - Hitman Absolution Rap Live","description":"Here is our Hitman Absolution Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-hitman-absolution-rap-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/74211c17-7f37-4e98-8f92-790d1cc35aa1.png/sm/JT Music Raps Live_7_widethumb.png","duration":186,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-doom-rap-live-fight-like-hell","changefreq":"weekly","video":[{"title":"S1:E12 - Doom Rap Live - \"Fight Like Hell\"","description":"Here is our Doom Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-doom-rap-live-fight-like-hell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/42e0f07b-5e2f-45ac-b55b-69b1399c3994.png/sm/JT Music Raps Live_13_widethumb.png","duration":274,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-fnaf-sister-location-song-join-us-for-a-bite","changefreq":"weekly","video":[{"title":"S1:E13 - FNAF Sister Location Song - \"Join Us For A Bite\"","description":"Here is our FNAF Sister Location Song, but LIVE. Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-fnaf-sister-location-song-join-us-for-a-bite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3510606d-a8a2-4ec2-b46a-52a4d1a65180.png/sm/JT Music Raps Live_14_widethumb.png","duration":187,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-halo-master-chief-collection-rap-live-back-in-the-ring","changefreq":"weekly","video":[{"title":"S1:E9 - Halo Master Chief Collection Rap Live - \"Back in the Ring\"","description":"Here is our Halo Master Chief Collection Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-halo-master-chief-collection-rap-live-back-in-the-ring","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e5a5e87a-5ad5-4e44-8070-49eae21d2bbc.png/sm/JT Music Raps Live_10_widethumb.png","duration":243,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-tomb-raider-rap-live-looks-can-kill","changefreq":"weekly","video":[{"title":"S1:E7 - Tomb Raider Rap Live - \"Looks Can Kill\"","description":"Here is our Tomb Raider Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-tomb-raider-rap-live-looks-can-kill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ed48e78-595f-4c78-85b7-c8a5bc01de10.png/sm/JT Music Raps Live_8_widethumb.png","duration":223,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-five-nights-at-freddy-s-2-rap-live-five-more-nights","changefreq":"weekly","video":[{"title":"S1:E10 - Five Nights at Freddy's 2 Rap Live - \"Five More Nights\"","description":"Here is our Five Nights at Freddy's 2 Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-five-nights-at-freddy-s-2-rap-live-five-more-nights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2dabdd69-eca8-48c4-972a-2c0d07f1bbfc.png/sm/JT Music Raps Live_11_widethumb.png","duration":248,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-five-nights-at-freddy-s-rap-live-five-long-nights","changefreq":"weekly","video":[{"title":"S1:E8 - Five Nights at Freddy's Rap Live - \"Five Long Nights\"","description":"Here is our Five Nights at Freddy's Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-five-nights-at-freddy-s-rap-live-five-long-nights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd5c8e95-f417-40d8-802c-1c3550019abd.png/sm/JT Music Raps Live_9_widethumb.png","duration":169,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-halo-5-rap-live-angel-by-your-side","changefreq":"weekly","video":[{"title":"S1:E11 - Halo 5 Rap Live - \"Angel By Your Side\"","description":"Here is our Halo 5 Rap, but LIVE. Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-halo-5-rap-live-angel-by-your-side","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b00eb560-75de-43c9-9780-db70ef5caa04.png/sm/JT Music Raps Live_12_widethumb.png","duration":308,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-the-markiplier-rap-live","changefreq":"weekly","video":[{"title":"S1:E15 - The Markiplier Rap Live","description":"Here is our Markiplier Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-the-markiplier-rap-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ddd27513-4982-4084-b5c4-5c526929ac56.png/sm/JT Music Raps Live_16_widethumb.png","duration":262,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-bioshock-rap-live-rapture-rising","changefreq":"weekly","video":[{"title":"S1:E17 - Bioshock Rap Live - \"Rapture Rising\"","description":"Here is our Bioshock Rap, but LIVE. Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-bioshock-rap-live-rapture-rising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/30844ddb-a09e-4601-b4b0-87ada41acffb.png/sm/JT Music Raps Live_18_widethumb.png","duration":347,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-merry-fnaf-christmas-song-live","changefreq":"weekly","video":[{"title":"S1:E14 - Merry FNAF Christmas Song Live","description":"Here is our Merry FNAF Christmas Song, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-merry-fnaf-christmas-song-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc436f37-60b4-48f3-8453-aa46fefd4837.png/sm/JT Music Raps Live_15_widethumb.png","duration":160,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-dishonored-2-rap-live-honor","changefreq":"weekly","video":[{"title":"S1:E16 - Dishonored 2 Rap Live - \"Honor\"","description":"Here is our Dishonored 2 Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-dishonored-2-rap-live-honor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eef0a0b4-d1fd-4457-bc55-4cb19f7ed097.png/sm/JT Music Raps Live_17_widethumb.png","duration":284,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-dead-space-rap-live-keeping-me-human","changefreq":"weekly","video":[{"title":"S1:E19 - Dead Space Rap Live - \"Keeping Me Human\"","description":"Here is our CoD: Dead Space Rap, but LIVE.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-dead-space-rap-live-keeping-me-human","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f4dc866b-30da-45fb-9e17-46cd5c748fd4.png/sm/JT Music Raps Live_4_widethumb.png","duration":250,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-tracer-vs-scout-rap-battle-live","changefreq":"weekly","video":[{"title":"S1:E21 - Tracer vs Scout Rap Battle Live","description":"Here is our Tracer vs Scout Rap Battle, but LIVE. Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-tracer-vs-scout-rap-battle-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bf46009c-9c2b-43a2-b615-a8ece5ca76be.png/sm/JT Music Raps Live_21_widethumb.png","duration":230,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jt-music-raps-live-season-1-lara-croft-vs-nathan-drake-rap-battle-live","changefreq":"weekly","video":[{"title":"S1:E20 - Lara Croft vs Nathan Drake Rap Battle Live","description":"Here is our Nathan Drake vs Lara Croft Rap Battle, but LIVE. Special thanks to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/jt-music-raps-live-season-1-lara-croft-vs-nathan-drake-rap-battle-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4d6dcf38-1164-42ce-b72c-62186eb3c24e.png/sm/JT Music Raps Live_20_widethumb.png","duration":202,"publication_date":"2018-02-13T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-overwatch-hero-rap-2-what-a-hero-s-made-of","changefreq":"weekly","video":[{"title":"S1:E3 - Overwatch Hero Rap #2 - \"What a Hero's Made Of\"","description":"Six different characters from Overwatch rap some verses in our second Hero Rap. Thank you to Andrea Storm Kaden, Tryhardninja, THK and Rockit Gaming for their verses.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-overwatch-hero-rap-2-what-a-hero-s-made-of","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7d4c2ab5-7323-4094-a1f9-8f001a77f90d.png/sm/OverwatchSongs_3_widethumb.png","duration":209,"publication_date":"2018-02-12T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-hanzo-vs-genji-rap-battle","changefreq":"weekly","video":[{"title":"S1:E2 - Hanzo vs Genji Rap Battle","description":"Two brothers with some juicy history settle their differences with a rap battle.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-hanzo-vs-genji-rap-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3035eb31-3983-4e74-a6d9-0fee674792b2.png/sm/OverwatchSongs_2_widethumb.png","duration":340,"publication_date":"2018-02-12T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/overwatch-songs-season-1-overwatch-hero-rap-1-a-hero-never-dies","changefreq":"weekly","video":[{"title":"S1:E1 - Overwatch Hero Rap #1 - \"A Hero Never Dies\"","description":"Six characters from Overwatch drop some bars in this ensemble rap. Thank you to Andrea Storm Kaden for her vocals.","player_loc":"https://roosterteeth.com/embed/overwatch-songs-season-1-overwatch-hero-rap-1-a-hero-never-dies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f283d86a-542c-40ad-8663-5bb61a473850.png/sm/OverwatchSongs_1_widethumb.png","duration":238,"publication_date":"2018-02-12T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-and-the-streamy-goes-to","changefreq":"weekly","video":[{"title":"S1:E9 - And the Streamy goes to...","description":"Who will it be??","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-and-the-streamy-goes-to","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78081d78-fc4f-4de1-b685-740c02ac1728.jpg/sm/maxresdefault.jpg","duration":3214,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beyond-the-pine-season-1-just-a-couple-friends","changefreq":"weekly","video":[{"title":"S1:E3 - Just a Couple Friends","description":"On this episode of Beyond the Pine, we sing our new song for a solid five minutes. Probably more. Sorry.","player_loc":"https://roosterteeth.com/embed/beyond-the-pine-season-1-just-a-couple-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9a887a78-4f03-4313-888e-9d1e96ca410e.jpg/sm/maxresdefault.jpg","duration":3377,"publication_date":"2017-10-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-woods-2017-the-woodspoihghf14f","changefreq":"weekly","video":[{"title":"2017:E1 - The Woods","description":"Stranded in the secluded wilderness of Pleasant Oaks, a group of friends fight for survival against a terror that lurks in the woods.","player_loc":"https://roosterteeth.com/embed/the-woods-2017-the-woodspoihghf14f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cf98884-57a2-46d7-8166-e0bfe21dfe12/sm/3014926-1508799278167-Webp.net-resizeimage_7.png","duration":1401,"publication_date":"2017-10-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alternative-lifestyle-season-1-living-in-privilege","changefreq":"weekly","video":[{"title":"S1:E55 - Living in privilege.","description":"Cib and James explore the neighborhood while I explore the intricacies of Parker’s mind.","player_loc":"https://roosterteeth.com/embed/alternative-lifestyle-season-1-living-in-privilege","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/37614953-aa12-420a-8b01-8d47312f58be.jpg/sm/SP7LivingPrivilege.jpg","duration":451,"publication_date":"2017-10-20T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-switch-cardboard-edition","changefreq":"weekly","video":[{"title":"2018:E14 - Nintendo Switches to... CARDBOARD!","description":"Why go VR when you can make your video games out of cardboard instead? Seems they've got cats running the show at Nintendo these days.","player_loc":"https://roosterteeth.com/embed/game-news-2018-switch-cardboard-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4d12fa5b-ef95-4fc8-ae48-183bb54fd395.jpg/sm/20180118WhatIsLabo.jpg","duration":562,"publication_date":"2018-01-19T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180118-roundup","changefreq":"weekly","video":[{"title":"2018:E13 - Fortnite KILLING Paragon? + Star Wars TOO UGLY for China? + YouTube BANS Tide Pod Videos","description":"Fortnite's success could mean curtains for Epic's other Free to Play game. Star Wars: The Last Jedi bombed in China... because its actors aren't pretty enough to care about. YouTube's pulling down Tide Pod Challenge videos because they don't trust kids to know that eating detergent is bad.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180118-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e5454c3c-613d-4a94-b8aa-6add8650b02c.jpg/sm/20180118Roundup.jpg","duration":546,"publication_date":"2018-01-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-destiny-2-overhauling-microtransactions","changefreq":"weekly","video":[{"title":"2018:E10 - BOYCOTTS WORKED? Lootboxes on the Run!","description":"First it was Battlefront 2 pulling pay to win lootboxes from the game. Now Destiny 2 is dropping the paywall and making loot accessible to all players. Looks like players dropping out of games over the practice is working!","player_loc":"https://roosterteeth.com/embed/game-news-2018-destiny-2-overhauling-microtransactions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fbe04a65-4661-4425-a627-8c51bda774d3.jpg/sm/20180114destiny2fixinglootboxes.jpg","duration":456,"publication_date":"2018-01-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-youtube-screws-the-pooch-again","changefreq":"weekly","video":[{"title":"2018:E7 - YouTube KILLING Small Channels!","description":"What better way to keep big YouTube stars from misbehaving than by demonetizing every single small channel on the platform? BUT WAIT, THERE'S A TWIST!","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-youtube-screws-the-pooch-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d310b23b-866b-4230-ab55-05b2295c9c5c.jpg/sm/20180117YouTubeDemonetized.jpg","duration":645,"publication_date":"2018-01-18T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-is-fable-coming-back","changefreq":"weekly","video":[{"title":"2018:E13 - The Triumphant Return of... FABLE 4!?","description":"We thought this franchise had been written off after Fable Legends, but now it's back being worked on by... racing game devs? Cool.","player_loc":"https://roosterteeth.com/embed/game-news-2018-is-fable-coming-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/63824199-f30b-4313-8ea1-db30e0fcb0b2.jpg/sm/20180117FableReturns.jpg","duration":588,"publication_date":"2018-01-18T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180117-roundup","changefreq":"weekly","video":[{"title":"2018:E12 - FINALLY Buy/Sell PC Games + 120 PUBG Cheaters ARRESTED + Twitch Chat Spammer CHARGED","description":"A new Steam competitor will let you buy and sell digital PC games... does Steam finally have a solid competitor? 120 have been arrested for creating cheats in PlayerUnknown's Battlegrounds. A Twitch chat spammer is facing criminal charges for... basically being a jerk.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180117-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7b106281-318f-4094-858d-360373f7e677.jpg/sm/20180117Roundup.jpg","duration":598,"publication_date":"2018-01-17T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-quantic-dream-accused-of-being-crappy-workplace","changefreq":"weekly","video":[{"title":"2018:E11 - TOXIC WORKPLACE Accusations Against Detroit Dev","description":"When you have 180 people working for you, it gets tough to email around photoshops of colleagues photoshopped onto sexy nazis.","player_loc":"https://roosterteeth.com/embed/game-news-2018-quantic-dream-accused-of-being-crappy-workplace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/abdb43d3-e797-49ff-a871-fa595097c22c.jpg/sm/20180116ToxicWorkplace.jpg","duration":488,"publication_date":"2018-01-17T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-single-player-expectations-too-high","changefreq":"weekly","video":[{"title":"2018:E12 - Gamers Demand TOO MUCH?","description":"So, basically, it's your fault single player narrative games are going away.","player_loc":"https://roosterteeth.com/embed/game-news-2018-single-player-expectations-too-high","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78df0668-7e50-49b4-82f3-a5d218d53b2c.jpg/sm/20180116GamersWantTooMuch.jpg","duration":537,"publication_date":"2018-01-17T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180116-roundup","changefreq":"weekly","video":[{"title":"2018:E11 - NO NETFLIX for Switch + Fortnite BIGGEST GAME EVER? + AGDQ Breaks Records","description":"Don't get your hopes up for a Netflix app on Nintendo Switch. Epic has revealed new download figures for Fortnite that are seriously impressive. AGDQ is over and raised millions of dollars for charity by playing stuff really fast.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180116-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/63eac528-ff32-4aef-a77a-2181c768952e.jpg/sm/20180116Roundup.jpg","duration":468,"publication_date":"2018-01-16T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-game-season-1-new-game-33","changefreq":"weekly","video":[{"title":"S1:E33 - New Game + #33","description":"Have you ever made predictions on video games and gotten them completely wrong? Also what hobbies do you have outside of gaming?","player_loc":"https://roosterteeth.com/embed/new-game-season-1-new-game-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ab35f900-e4d2-433e-94df-980ac5fab58d.jpg/sm/GP33psTHUMB.jpg","duration":907,"publication_date":"2018-01-13T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-after-the-latest-youtube-controversy-it-looks-like-google-is-going-to-start-taking-a-more-active-role-in-monitoring-what-types-of-videos-are-on-the-platform","changefreq":"weekly","video":[{"title":"2018:E6 - Google STEPS IN to Fix YouTube","description":"YouTube's had some pretty major issues that have led to advertisers pulling out of the platform. That's no good for Google, who like money. So now Dad's stepping in to fix the mess.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-after-the-latest-youtube-controversy-it-looks-like-google-is-going-to-start-taking-a-more-active-role-in-monitoring-what-types-of-videos-are-on-the-platform","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f52f01a7-5c4b-4df5-9de6-58edbba08b83.jpg/sm/20180112GoogleStepsIn.jpg","duration":393,"publication_date":"2018-01-13T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180112-roundup","changefreq":"weekly","video":[{"title":"2018:E10 - Xbox CRUSHES December + Surprise Pikachu 2DS Comes West! + Warner Bros on Marvel Success","description":"Xbox reported a huge upswing in December hardware sales... looks like Xbox One X was what they needed. The Pikachu 2DS XL is coming west! Warner Bros acknowledges that Marvel's found success but DC can't follow its tracks.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180112-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27f6c8b5-f03d-4b42-9fee-228f66adbccb.jpg/sm/20180118Roundup.jpg","duration":606,"publication_date":"2018-01-13T01:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-a-huge-mini-direct-33","changefreq":"weekly","video":[{"title":"S1:E33 - A Huge Mini Direct - #33","description":"Join Gus, Adam, and Mica as they talk about what they played over the break, Go over the huge announcements in the Nintendo Mini Direct (20:58), check out the HTC Vive Pro (37:18), pass judgement the Hyperkin Ultra Game Boy (47:28), and determine if the new Games Done Quick chat idea is awesome or not.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-a-huge-mini-direct-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ed222e1-324e-4737-9525-47dac124bdb2.jpg/sm/GP33THUMB.jpg","duration":3768,"publication_date":"2018-01-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2018-black-widow-movie-on-the-way","changefreq":"weekly","video":[{"title":"2018:E1 - Black Widow Movie ON THE WAY","description":"Word out of Hollywood is that Black Widow is finally getting her own solo film! Considering Johansson's contract is supposed to be up after the Infinity War films, does that mean they're in talks to renew her for the next phase of Marvel films?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2018-black-widow-movie-on-the-way","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0ad51330-8ecf-4321-b9ed-ae4b1beb0a0b.jpg/sm/ThumbnailTemplate.jpg","duration":257,"publication_date":"2018-01-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-youtube-finally-addresses-recent-controversy","changefreq":"weekly","video":[{"title":"2018:E5 - Youtube FINALLY Addresses Recent Controversy","description":"YouTube... actually did something? Following loads of criticism about their treatment of Logan Paul's recent antics, YouTube stepped up to the plate and handed down some punishment. Will it be enough for the YouTube community?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-youtube-finally-addresses-recent-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/93c1150c-4e8f-4654-a70a-c305e6d91ea4.jpg/sm/ThumbnailTemplate.jpg","duration":338,"publication_date":"2018-01-12T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-nintendo-direct-overhyped","changefreq":"weekly","video":[{"title":"2018:E9 - Nintendo Direct OVERHYPED?","description":"Nintendo had a much-hyped Direct after a couple of weeks of rumors. Did it live up to the community's desires and Nintendo's teasing?","player_loc":"https://roosterteeth.com/embed/game-news-2018-nintendo-direct-overhyped","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a35c987d-c277-44c8-983c-a22b2b9ccf09.jpg/sm/ThumbnailTemplate.jpg","duration":337,"publication_date":"2018-01-11T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-xbox-exclusive-dates-leaked-battlefront-2-wins-december-ces-power-outage","changefreq":"weekly","video":[{"title":"2018:E9 - Xbox Exclusive Dates Leaked? + Battlefront 2 Wins December + CES Power Outage","description":"It looks like everybody got trolled by a fake PlayStation account, a couple of Xbox exclusives might have dropped their release dates, the Final Fantasy VII Remake gets a tiny update, Prince of Persia's creator wants a comeback, the Overwatch League had a huge first day, John Williams is back for Episode IX, and the power went out at CES.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-xbox-exclusive-dates-leaked-battlefront-2-wins-december-ces-power-outage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/06486a67-4f90-4d17-9c06-ab83c7361176.jpg/sm/20170111roundup.jpg","duration":580,"publication_date":"2018-01-11T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-playstation-don-t-worry-about-games-as-service","changefreq":"weekly","video":[{"title":"2018:E8 - PlayStation: Don't Worry About Games As Service","description":"PlayStation's new boss has some things to say about his company's vision for gaming... and it doesn't include Games As a Service. In fact, it's very anti Games as a Service, and seems to be focused on singleplayer titles. Plus, they're not the only ones in the industry with thoughts on the matter.","player_loc":"https://roosterteeth.com/embed/game-news-2018-playstation-don-t-worry-about-games-as-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0cc9b918-2dbe-4332-99cc-6a1ffcd0fd92.jpg/sm/ThumbnailTemplate.jpg","duration":337,"publication_date":"2018-01-11T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-youtube-apology-34-540","changefreq":"weekly","video":[{"title":"2018:E4 - Youtube FINALLY Addresses Recent Controversy","description":"YouTube FINALLY responded to one of their most recent, high-profile controversies. But was it too little too late? And is the apology going to be any different this time around than all the other times?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-youtube-apology-34-540","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/84f5a898-1bab-4ecb-beea-b79d5f0bc36d.jpg/sm/ThumbnailTemplate.jpg","duration":318,"publication_date":"2018-01-11T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180110-roundup","changefreq":"weekly","video":[{"title":"2018:E8 - Cyberpunk 2077 LIVES + PlayStation Wins at Pornhub + X-Films Still on Schedule","description":"Cyberpunk 2077 is coming back to life on Twitter, Xbox is updating its achievement system with loot crates, the Mario movie could be landing in 2020, Dreams is going to skip multiplayer on day 1, Japanese gamers are getting back into consoles thanks to Switch, PlayStation gamers love Pornhub, Twitch and Overwatch sign a massive multi-million dollar deal, Black Panther is setting box office records already, and the X-films seem to be moving forward, despite the Disney deal. It's your hump day news!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180110-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/821dec25-3453-4e9e-9f1c-744101a6bcef.jpg/sm/20180110roundup.jpg","duration":573,"publication_date":"2018-01-10T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-gamers-are-wrong","changefreq":"weekly","video":[{"title":"2018:E7 - Gamers Are WRONG?!","description":"Insomniac Games says one of the hardest lessons they've had to learn was about... well, not listening to fans the way they used to. The thing is, they're not the only developer that feels that way -- so now we've got a discussion about the balance of fan feedback and creative vision... which one's better?","player_loc":"https://roosterteeth.com/embed/game-news-2018-gamers-are-wrong","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27c18412-4e34-450c-8fa4-335513f80fb2.jpg/sm/ThumbnailTemplate.jpg","duration":385,"publication_date":"2018-01-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-ea-tries-to-patent-evil","changefreq":"weekly","video":[{"title":"2018:E6 - EA Wants to RUIN Matchmaking?","description":"Another huge publisher has filed a patent to mess with matchmaking in order to get you to spend more money! This time, it's EA, and they want to unbalance matchmaking so that you feel more engaged than ever before. That sounds fun, right?","player_loc":"https://roosterteeth.com/embed/game-news-2018-ea-tries-to-patent-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/609ec638-7d7b-44a8-8b13-1f51e9d1c378.jpg/sm/ThumbnailTemplate.jpg","duration":333,"publication_date":"2018-01-10T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180109-roundup","changefreq":"weekly","video":[{"title":"2018:E7 - New PS4 Milestone + Gamers Overreacted to Battlefront 2? + Getting Married to Tetris","description":"The PS4 has hit yet ANOTHER sales milestone (and sold a crapload of games over the holidays), God of War's director is not a big fan of open world games, State of Decay 2 could have a release date soon, Destiny 2 is getting fixed...again, investors think gamers overreacted to Battlefront 2's microtransactions, HTC revealed the Vive Pro, PUBG just became the best-selling PC game of all time, Alien might be in trouble at Disney... and yeah, there's a lot of news. You should just watch it.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180109-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f3c864f4-9949-4426-9939-60997f7c2144.jpg/sm/20180109thumb.jpg","duration":622,"publication_date":"2018-01-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180108-roundup","changefreq":"weekly","video":[{"title":"2018:E6 - Where is HALO 6? + Star Citizen Dev Responds to LAWSUIT + AGDQ Kicks Off","description":"343 Industries offers an update on when to expect (or not expect) Halo 6. Star Citizen developer Cloud Imperium Games responds to a lawsuit by Crytek. Charity speedrunning event Awesome Games Done Quick is back!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180108-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/51bfaf82-62a5-4c5f-8d1e-5a6ecd8c639b.jpg/sm/20180108Roundup.jpg","duration":672,"publication_date":"2018-01-08T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-game-season-1-new-game-32","changefreq":"weekly","video":[{"title":"S1:E32 - New Game + #32","description":"When have you made a video game really hard only to realize later that you're dumb? Also what are you predicting Nintendo will show at the January Direct?","player_loc":"https://roosterteeth.com/embed/new-game-season-1-new-game-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a17f34f1-5cd8-4431-8b3a-252a2e2ab330.jpg/sm/GP32psTHUMB.jpg","duration":1052,"publication_date":"2018-01-06T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20170105-roundup","changefreq":"weekly","video":[{"title":"2018:E5 - Where is Spider-man for PS4? + Intel CPU Gaming Test Results + Animaniacs RETURNS","description":"The director for the latest Uncharted game is leaving Naughty Dog. Paladins is the latest free to play game copying Battlegrounds. Warner Bros has appointed a new boss for the DC movies in an attempt to save them.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20170105-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/90590b90-83b3-4fe5-90cd-ae37c50b1650.jpg/sm/20180105Roundup.jpg","duration":954,"publication_date":"2018-01-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-switch-is-the-best-selling-console-ever","changefreq":"weekly","video":[{"title":"2018:E3 - Nintendo Switch is the Fastest Selling Console EVER","description":"Nintendo Switch has been doing well, but HOW WELL? Fastest selling console EVER in the US well....","player_loc":"https://roosterteeth.com/embed/game-news-2018-switch-is-the-best-selling-console-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/90dae9e2-b656-4fe0-b273-94c9d0eed1a9.jpg/sm/20180104switchbfastestselling.jpg","duration":332,"publication_date":"2018-01-05T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-xbox-2018-exclusives-leaked","changefreq":"weekly","video":[{"title":"2018:E4 - Xbox One EXCLUSIVES LEAK","description":"Xbox had a rough 2017 for exclusives, but they may be looking to turn that around based on a new leak that claims the company is bringing back some of its major original Xbox franchises.","player_loc":"https://roosterteeth.com/embed/game-news-2018-xbox-2018-exclusives-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fa04150f-2961-41e3-a39d-b14aa66da58a.jpg/sm/20180104xboxexclusiveleak.jpg","duration":377,"publication_date":"2018-01-05T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-glitch-please-32","changefreq":"weekly","video":[{"title":"S1:E32 - VR Worth Flipping The Bed Over - #32","description":"This week join Ashley, Adam, and Alfredo as they discuss what they played over the winter break (2:28), look forward to 2018 (29:15), and speedrun the news (56:16).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-glitch-please-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d78c347b-43bc-4e81-bd06-81ac9cc543f8.jpg/sm/GP32THUMB.jpg","duration":5040,"publication_date":"2018-01-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20170104-roundup","changefreq":"weekly","video":[{"title":"2018:E3 - Uncharted Lost Legacy Director QUITS + ANOTHER Battlegrounds Clone + DC Movies New BOSS","description":"The director for the latest Uncharted game is leaving Naughty Dog. Paladins is the latest free to play game copying Battlegrounds. Warner Bros has appointed a new boss for the DC movies in an attempt to save them.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20170104-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7e98a80d-4d4b-4d99-9c21-c90cb780172c.jpg/sm/20190104Roundup.jpg","duration":549,"publication_date":"2018-01-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-intel-apocalypse","changefreq":"weekly","video":[{"title":"2018:E2 - PC Gaming Apocalypse?","description":"A huge design flaw has been found in Intel processors, and the fix could have some major ramifications for PC gaming. Or not? We break down some of the latest reports about Intel's CPU apocalypse.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-intel-apocalypse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed5659ac-3bb3-4be0-986c-a78c7ae0a73f.jpg/sm/ThumbnailTemplate.jpg","duration":316,"publication_date":"2018-01-04T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-pubg-media-empire","changefreq":"weekly","video":[{"title":"2018:E2 - Battlegrounds Cinematic Universe!","description":"Player Unknown's Battlegrounds is the game that nobody can stop playing, apparently -- but it's got even bigger ambitions than that! Prepare for PUBG movies, animes, and probably a musical at some point, because the game's getting its own media empire soon.","player_loc":"https://roosterteeth.com/embed/game-news-2018-pubg-media-empire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/911363b9-fe3f-4dac-83b9-655dcd12052b.jpg/sm/ThumbnailTemplate.jpg","duration":315,"publication_date":"2018-01-03T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20170103-roundup","changefreq":"weekly","video":[{"title":"2018:E2 - Nintendo Online DELAYED? + EA Rejected X-Wing Pitch + Spotify SUED!","description":"Kinect is even deader than ever, Nintendo's Online Service might be delayed, we've got rumors about a bunch of leaked Switch games, it turns out EA rejected an X-Wing revival, Nexon blames PUBG for Lawbreaker's poor sales, The Walking Dead is still relevant, and Spotify gets sued in our first humpday round-up of 2018!","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20170103-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e38b3ff6-6d09-49fc-8d21-2d95ad127d2f.jpg/sm/20170103thumb.jpg","duration":534,"publication_date":"2018-01-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2018-gaming-is-a-health-problem","changefreq":"weekly","video":[{"title":"2018:E1 - Video Games OFFICIALLY a Health Hazard!?","description":"The World Health Organization has decided video games are a mental health risk. Get in line, WHO! Thing is... there's a lot of disagreement even in the health industry over it.","player_loc":"https://roosterteeth.com/embed/game-news-2018-gaming-is-a-health-problem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f4564ae-a0c9-44c3-8b2c-b9faff69b1cf.jpg/sm/20180102WHOvsGames.jpg","duration":402,"publication_date":"2018-01-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2018-logan-paul-is-an-idiot","changefreq":"weekly","video":[{"title":"2018:E1 - YouTube OK with Dead Bodies, Apparently?","description":"US National Suicide Prevention Hotline: 1-800-273-8255\r\nInternational Crisis Centers: http://iasp.info/resources/Crisis_Centres/\r\n\r\nYouTuber Logan Paul is no stranger to pulling stunts for attention, but his most recent video saw him showing off a recent suicide victim in Japan. YouTube content creators are criticizing Paul for crossing the line and demanding a response from YouTube. YouTube is... not too fussed about it, apparently.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2018-logan-paul-is-an-idiot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ac4fc75-9959-4817-9f19-9b13457d3a5a.jpg/sm/20180102LoganPaul.jpg","duration":486,"publication_date":"2018-01-03T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2018-20180102-roundup","changefreq":"weekly","video":[{"title":"2018:E1 - Xbox Retracts Stolen Ad + Apple Apologizes for Slowing iPhones + Arrest in Fatal SWATTING","description":"Xbox has pulled down an ad for PlayerUnknown's Battlegrounds after accusations of plagiarism. Apple has apologized for slowing down older model iPhones and slashed prices on battery replacements. A California man has been arrested over a fatal swatting incident that started as an argument between Call of Duty players.","player_loc":"https://roosterteeth.com/embed/news-roundups-2018-20180102-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0354d374-73b1-4984-b3c7-4862d14ffa75.jpg/sm/20180102Roundup.jpg","duration":694,"publication_date":"2018-01-02T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-most-anticipated-games-of-2018","changefreq":"weekly","video":[{"title":"2017:E412 - MOST ANTICIPATED Games of 2018","description":"There were some great games in 2017, but a bunch of games that sounded great also ended up getting delayed to 2018 to join a bunch of other 2018 games that also sound pretty exciting. This could be another great year.","player_loc":"https://roosterteeth.com/embed/game-news-2017-most-anticipated-games-of-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/897104a4-6d76-45ce-9897-39d7235f23ec.jpg/sm/20180101MostAnticipated.jpg","duration":1839,"publication_date":"2018-01-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-most-disappointing-games-of-2017","changefreq":"weekly","video":[{"title":"2017:E411 - MOST DISAPPOINTING GAMES of 2017","description":"Yeah, there were some really great games that came out in 2017. But there were also some real stinkers. Games that set us up with glitzy marketing only to release and faceplant, sometimes even killing off the studios that made them.","player_loc":"https://roosterteeth.com/embed/game-news-2017-most-disappointing-games-of-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a0eb232-9af7-4773-b0c6-f0c7a8bab102.jpg/sm/20171229BiggestDisappointments.jpg","duration":1280,"publication_date":"2018-01-01T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-best-games-of-2017","changefreq":"weekly","video":[{"title":"2017:E409 - The BEST Games of 2017","description":"Don't be put off by the lootboxes and Mass Effects. 2017 was an awesome year for games. Sure, some of the big franchises didn't deliver, but there were plenty that DID deliver, and in spades. Strap in while we go over some of the highlights.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-best-games-of-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/983d7ff9-4d03-4f07-b0fc-271dcdc91599.jpg/sm/20171228BestGamesof2017.jpg","duration":1634,"publication_date":"2018-01-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-weirdest-craziest-news-of-2017","changefreq":"weekly","video":[{"title":"2017:E408 - The WEIRDEST & CRAZIEST News of 2017","description":"2017 was a weird year for news. Weird enough we need to break it down into CATEGORIES of weird just to digest it all.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-weirdest-craziest-news-of-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c08e2bac-3f2f-42dd-a918-6a114ee87e15.jpg/sm/20171228WeirdestNewsof2017.jpg","duration":1647,"publication_date":"2018-01-01T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-2017-predictions-graded","changefreq":"weekly","video":[{"title":"2017:E405 - We Were WRONG? Our 2017 Predictions GRADED","description":"At the end of 2016 we sat down and imagined what might happen in 2017. Now it's time to see how much we got right and just how much we got wrong.","player_loc":"https://roosterteeth.com/embed/game-news-2017-2017-predictions-graded","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3135086-deeb-4341-b49b-9f83586e5f02.jpg/sm/20171224PredictionsGraded.jpg","duration":584,"publication_date":"2018-01-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-31","changefreq":"weekly","video":[{"title":"S1:E31 - New Game+ #31","description":"What video games would make the best plays or musicals?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3d0d26d8-cf8b-4edf-86da-9cebfb4a1a7d.jpg/sm/GP31psTHUMB.jpg","duration":480,"publication_date":"2017-12-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-best-of-2017-31","changefreq":"weekly","video":[{"title":"S1:E31 - Best of 2017 - #31","description":"On the last episode of 2017 join Ashley, Gus, Ryan, and Adam as they make their new year's gaming resolutions (11:06) and determine the best games of 2017 (35:22)!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-best-of-2017-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/51e7f09c-1705-4489-a06a-14d6c136d746.jpg/sm/GP31THUMB.jpg","duration":3300,"publication_date":"2017-12-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-did-nintendo-switch-have-the-best-launch-lineup-ever","changefreq":"weekly","video":[{"title":"2017:E406 - Did Nintendo Switch Have the BEST LAUNCH LINEUP EVER?","description":"Nintendo Switch has has a pretty good year. But has it had the best starting lineup of any console? We break down its competition and past Nintendo lineups to find out.","player_loc":"https://roosterteeth.com/embed/game-news-2017-did-nintendo-switch-have-the-best-launch-lineup-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2e6d9466-611e-4a15-9c9b-9f4bb9b754d5.jpg/sm/20171225NintendoSwitchLaunch.jpg","duration":1311,"publication_date":"2017-12-25T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-2017-the-year-battle-royale-took-over","changefreq":"weekly","video":[{"title":"2017:E407 - 2017: The Year BATTLE ROYALE Took Over","description":"2017 saw the rise of a lot of things.... lootboxes, more EA studio closures... but it also saw the rise of the Battle Royale game, which has taken over to dominate the year. Where did all that hype come from?","player_loc":"https://roosterteeth.com/embed/game-news-2017-2017-the-year-battle-royale-took-over","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3eba8ed-1433-4ad7-84eb-ab8225698e8b.jpg/sm/20171224TheYearOfBattleRoyale.jpg","duration":540,"publication_date":"2017-12-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-30","changefreq":"weekly","video":[{"title":"S1:E30 - New Game+ #30","description":"If you were required to get a gaming related tattoo what would you get?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/86beae4e-0054-4544-a4f2-6b509c777c90.jpg/sm/GP30psTHUMB.jpg","duration":540,"publication_date":"2017-12-23T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pokemon-switch-new-details","changefreq":"weekly","video":[{"title":"2017:E413 - Pokemon Switch NEW DETAILS","description":"We know there's a Pokemon game coming for Nintendo Switch, but the developers have been secretive about what they've got planned. Fortunately for fans, new job postings may have revealed some new details.","player_loc":"https://roosterteeth.com/embed/game-news-2017-pokemon-switch-new-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/822ae176-7e95-488e-b343-2d3292ee77d2.jpg/sm/20171222PokemonSwitch.jpg","duration":541,"publication_date":"2017-12-23T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-dec-22-2017-roundup","changefreq":"weekly","video":[{"title":"2017:E248 - Microsoft LEAKS Xbox Keyboard + Google's Own Battle Royale + Amazon is the New YOUTUBE?","description":"Microsoft Poland may have outed the Xbox One keyboard sooner than expected. Google has launched their own battle royale game for Christmas. Amazon may be taking on YouTube for streaming video.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-dec-22-2017-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd753933-2412-4a76-bd99-f35bc87bb4de.jpg/sm/20171222Roundup.jpg","duration":827,"publication_date":"2017-12-23T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-30","changefreq":"weekly","video":[{"title":"S1:E30 - Worst of 2017 - #30","description":"This week join Ashley, Gus, Ryan, and Adam as they speedrun the news (24:27) and discuss the worst things in gaming this year (49:11). This episode is brought to you by Skillshare (skl.sh/glitch4)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/92bec647-fce8-49cd-b9b0-ec68e5c36df6.jpg/sm/GP30THUMB.jpg","duration":5050,"publication_date":"2017-12-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-dec-21-2017-roundup","changefreq":"weekly","video":[{"title":"2017:E247 - Apple FIXES Lootboxes + Thanos Creator QUITS Marvel + Star Wars Director RESPONDS","description":"Apple is taking a stand against exploitative lootboxes. The creator of Thanos is quitting Marvel over a stolen idea. Star Wars director Rian Johnson responds to the backlash from unhappy fans.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-dec-21-2017-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f5f086b-7480-4ac3-85b4-1bf071251bd2.jpg/sm/20171221Roundup.jpg","duration":611,"publication_date":"2017-12-21T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2017-star-wars-spoilercast","changefreq":"weekly","video":[{"title":"2017:E11 - Star Wars SPOILERCAST","description":"We've seen Star Wars: The Last Jedi... some of us have seen it a few times. Now that it's been out for a weekend let's sit down and chat about everything we loved and hated about the movie with full, sexy spoilers.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2017-star-wars-spoilercast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6c73c241-c6ec-4bbf-8b27-612d68fcfcfc.jpg/sm/SWTLJSpoilercast.jpg","duration":4048,"publication_date":"2017-12-21T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sega-mini-incoming","changefreq":"weekly","video":[{"title":"2017:E404 - SEGA Dreamcast & Genesis Mini Consoles INCOMING?","description":"There's a new line of retro hardware coming from SEGA. Are they diving into the retro mini console pool at the deep end? What do they need to learn from Nintendo to be a success?","player_loc":"https://roosterteeth.com/embed/game-news-2017-sega-mini-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f7c9fc16-219c-43a3-88f9-c5edcbddecd1.jpg/sm/20171220segamini.jpg","duration":415,"publication_date":"2017-12-21T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171220-roundup","changefreq":"weekly","video":[{"title":"2017:E246 - Destiny 2's BIG NUMBERS + Paid Mods DONE RIGHT? + Harambe the Game","description":"Activision's released numbers for Destiny 2 and Call of Duty, and it looks like the PC launch gave Destiny a big boost. Another paid mods scheme is rolling out, but this looks like it might be a friendlier way to do it. Remember Harambe? There's a game about him now...","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171220-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27a11f7f-6955-49c8-aca5-3185aadb51bb.jpg/sm/20171220RoundupThumb.jpg","duration":480,"publication_date":"2017-12-20T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-star-wars-fans-mad-over-the-last-jedi","changefreq":"weekly","video":[{"title":"2017:E46 - Star Wars The Last Jedi Should be NON-CANON?","description":"Some Star Wars fans are pretty unhappy with the newest Star Wars movie, The Last Jedi. So unhappy they want it removed from canon. Or they want an apology from Rian Johnson. Or they want the movie re-edited...","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-star-wars-fans-mad-over-the-last-jedi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2c813a0-a42d-49bb-9a06-849155111492.jpg/sm/20171219SWNotCanon.jpg","duration":569,"publication_date":"2017-12-20T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171219-roundup","changefreq":"weekly","video":[{"title":"2017:E245 - Nintendo Switch Too Early for Success + Blizzard's New Space FPS + The Office RETURNS","description":"Nintendo says it's still to early to call the Switch a success. Blizzard's new game project sounds an awful lot like Starcraft Ghost. The Office is coming back to TV.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171219-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/99dbaece-ce5c-45cd-a33c-85f0db68ca19.jpg/sm/20171219RoundupThumb.jpg","duration":576,"publication_date":"2017-12-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-new-zelda-already-started","changefreq":"weekly","video":[{"title":"2017:E403 - The NEXT Legend of Zelda Game","description":"The Legend of Zelda: Breath of the Wild has been a huge game for Nintendo Switch, and Nintendo's not waiting around. They've confirmed they're already working on the sequel.","player_loc":"https://roosterteeth.com/embed/game-news-2017-new-zelda-already-started","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/44b4e3a9-62e0-48d9-828d-9a40bf13f062.jpg/sm/20171218NextZelda.jpg","duration":601,"publication_date":"2017-12-19T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-fcc-kills-net-neutrality-what-does-it-mean","changefreq":"weekly","video":[{"title":"2017:E402 - Net Neutrality is DEAD? What Happens NEXT?","description":"Earlier this week the FCC voted to repeal net neutrality protections in the US. We break down what it means and what still needs to be done.","player_loc":"https://roosterteeth.com/embed/game-news-2017-fcc-kills-net-neutrality-what-does-it-mean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4879be17-8466-487a-ad88-b3112d436ca0.jpg/sm/FCCKillsNetNeutrality.jpg","duration":659,"publication_date":"2017-12-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pubg-sucks-on-xbox-one-too-many-copycats","changefreq":"weekly","video":[{"title":"2017:E399 - PlayerUnknown's Battlegrounds SUCKS on Xbox One","description":"At long last! PlayerUnknown's Battlegrounds is out on Xbox One (well, as early access) and console players finally get to experience the magic of low frame rates, weird controls, and connection issues that PC players have been embracing for months.","player_loc":"https://roosterteeth.com/embed/game-news-2017-pubg-sucks-on-xbox-one-too-many-copycats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3822d21-cbff-4810-ba16-d287c687f0b6.jpg/sm/20171213PUBG.jpg","duration":577,"publication_date":"2017-12-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171218-roundup","changefreq":"weekly","video":[{"title":"2017:E244 - Final Fantasy Gets Old + RIP Dead or Alive + Uber Corporate ESPIONAGE","description":"Final Fantasy hits a bit milestone. The Dead or Alive devs are leaving the franchise behind. Uber's being investigated for some serious James Bond villain level behavior.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171218-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3da80dc0-5f87-4896-b62d-3502effea224.jpg/sm/20171218RoundupThumb.jpg","duration":635,"publication_date":"2017-12-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171215-roundup","changefreq":"weekly","video":[{"title":"2017:E243 - Battlefield Bad Company 3 UPDATE + Where is Pokemon STARS? + Watch YouTube in VR!","description":"Remember that Bad Company 3 leak? The leaker is walking some of those statements back. What happened to Pokémon Stars. Want to watch YouTube in VR? You can!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171215-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/88c924b5-64b6-4aa6-99f8-eefd3c2e7d2c.jpg/sm/20171215Roundup.jpg","duration":494,"publication_date":"2017-12-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-glitch-please-30","changefreq":"weekly","video":[{"title":"S1:E28 - New Game+ #29","description":"Do you ever worry about your validity as a female gamer and is that changing? Also, what games have you gone back to that don't hold up?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-glitch-please-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9c976759-5f2a-451a-8fe9-ff1e9d921f40.jpg/sm/GP29psTHUMB.jpg","duration":1045,"publication_date":"2017-12-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-reedus-s-fetuses-29","changefreq":"weekly","video":[{"title":"S1:E29 - Reedus's Fetuses - #29","description":"This week join Ashley, Gus, Ryan, and Mica as they discuss Death Stranding and everything that happened at The Game Awards (32:32), and the announcements from Playstation Experience (57:00). This episode is brought to you by Evenprime (http://bit.ly/2BzDtCa + promo code: GLITCH)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-reedus-s-fetuses-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/70413213-d753-4076-a262-96e2f0034fdf.jpg/sm/GP29THUMB.jpg","duration":4365,"publication_date":"2017-12-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-star-citizen-sued","changefreq":"weekly","video":[{"title":"2017:E401 - Star Citizen SUED BY CRYTEK!?","description":"Star Citizen is a behemoth of a crowdfunded game, and that's the kind of thing that puts a target on your back. Now, Crytek, the creators of CryEngine (you know, the ones who couldn't afford to pay their employees for months) are suing Cloud Imperium for... not using them enough, not paying them enough, and not talking about them enough.","player_loc":"https://roosterteeth.com/embed/game-news-2017-star-citizen-sued","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9a7fa42c-b5d7-425c-a320-e1c450dffb28.jpg/sm/20171213StarCitizen.jpg","duration":537,"publication_date":"2017-12-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-64-mini-prototype-pokemon-crystal-returns-net-neutrality-repealed","changefreq":"weekly","video":[{"title":"2017:E242 - Nintendo 64 Mini PROTOTYPE + Pokemon Crystal RETURNS + Net Neutrality REPEALED","description":"A Nintendo 64 handheld prototype has been leaked, and it's real, but.... it's not exactly official. Pokemon Crystal is getting a re-release! The FCC has voted to repeal net neutrality protections in the US.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-64-mini-prototype-pokemon-crystal-returns-net-neutrality-repealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/16d46850-2b37-45b8-a957-d5ed892497b3.jpg/sm/20171214RoundupThumb.jpg","duration":495,"publication_date":"2017-12-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-disney-buys-fox","changefreq":"weekly","video":[{"title":"2017:E45 - Disney buys Fox","description":"2017:E45 - Disney buys Fox","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-disney-buys-fox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2e8648e-f79a-4d64-b048-ff7523772c52.jpg/sm/20171213DisneyFox.jpg","duration":0,"publication_date":"2017-12-14T19:46:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-patreon-is-sorry-that-you-lost-all-those-patrons","changefreq":"weekly","video":[{"title":"2017:E43 - Patreon BACKS DOWN! Creators SAVED?","description":"A few days ago Patreon announced a new pricing structure that caused patrons to ditch the platform and lost a ton of money for creators. Now they've backed down. Is that enough? How will they make it up to creators who've lost income?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-patreon-is-sorry-that-you-lost-all-those-patrons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/09d7f077-57ef-4d3d-a946-a38b29633d78.jpg/sm/20171213Patreon.jpg","duration":516,"publication_date":"2017-12-14T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171213-roundup","changefreq":"weekly","video":[{"title":"2017:E241 - EA Gets DOWNGRADED + Overwatch 2 PREDICTED + AI Taking Over Harry Potter Fan Fic","description":"EA's been downgraded by analysts over the performance of Battlefront 2. One analyst is predicting Diablo 4 AND... Overwatch 2? AI's learning to write Harry Potter and it is... amazing.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171213-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/33c5cd51-4702-414f-90f4-e046326a6781.jpg/sm/20171213Roundup.jpg","duration":787,"publication_date":"2017-12-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-sells-10-million-units-in-nine-months-ps4-says-hold-my-beer","changefreq":"weekly","video":[{"title":"2017:E397 - Nintendo Switch Sells 10 MILLION! How It Stacks Up and Why It Matters","description":"Nintendo Switch just hit a major sales milestone, but what's a number without a little context? We look at how it stacks up against other consoles and what it means for the future of the Switch.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-sells-10-million-units-in-nine-months-ps4-says-hold-my-beer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e5fdf90b-8399-48b0-8114-2271f56b6f45.jpg/sm/switchsells10million.jpg","duration":631,"publication_date":"2017-12-13T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-battlefield-bad-company-3-leaked-no-microtransactions","changefreq":"weekly","video":[{"title":"2017:E398 - Battlefield Bad Company 3 HUGE LEAK! EA Ditching Microtransactions?","description":"The cat's out of the bag. It looks like the next Battlefield game will bring Bad Company back for some Vietnam War/Cold War action AND EA may have learned a thing or two from the Battlefront 2 disaster!","player_loc":"https://roosterteeth.com/embed/game-news-2017-battlefield-bad-company-3-leaked-no-microtransactions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8a00b7e3-5ded-4e70-b600-8a86b94b605c.jpg/sm/bfbc3leak.jpg","duration":490,"publication_date":"2017-12-13T01:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2017-star-wars-the-last-jedi-watch-wait-skip","changefreq":"weekly","video":[{"title":"2017:E2 - Star Wars: The Last Jedi... WATCH? WAIT? SKIP? - SPOILER-FREE Couch Chat","description":"Ashley, Eric, and Jon have seen Star Wars: The Last Jedi. Join them for a spoiler-free discussion about how the movie turned out and if they'd watch, wait, or skip if they had to do it over again.","player_loc":"https://roosterteeth.com/embed/specials-2017-star-wars-the-last-jedi-watch-wait-skip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/56f72913-8706-420d-a727-4afcf237c9fb.jpg/sm/SWTLJWatchWaitSkip.jpg","duration":1458,"publication_date":"2017-12-13T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171212","changefreq":"weekly","video":[{"title":"2017:E240 - Death Stranding EXPLAINED + Destiny 2's Big FIX + Wolverine TOO LATE for MCU?","description":"Kojima has shared new details about Death Stranding that might... kinda explain some of the weird stuff we've seen in trailers. Bungie has announced some fixes for Destiny 2 to unlock content. Wolverine actor Hugh Jackman thinks it might be too late for his Wolverine to make an MCU appearance.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d33e2211-7fe6-4e8d-bb25-78e9feffeac4.jpg/sm/thumbnail.jpg","duration":683,"publication_date":"2017-12-12T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-all-the-games-set-for-2018","changefreq":"weekly","video":[{"title":"2017:E396 - All the Games Set for 2018! Best Year Ever?!","description":"Now that PSX and The Game Awards are done and all the major announcements are out of the way, we finally have a better idea about the layout of 2018 and what major games are waiting for us. Could it be one of the most stacked years of games ever? Don't we say that EVERY YEAR?!","player_loc":"https://roosterteeth.com/embed/game-news-2017-all-the-games-set-for-2018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b173992a-1ace-4433-aecd-22766f20e89e.jpg/sm/Thumbnail.jpg","duration":357,"publication_date":"2017-12-12T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-playstation-slams-games-as-a-service","changefreq":"weekly","video":[{"title":"2017:E395 - Playstation SLAMS Games as a Service","description":"It seems like everyone's going the route of Games as a Service these days. But it sounds like Sony is taking a major stand against it for their PlayStation studios. What did the company have to say at PSX about GAAS... we really need a better acronym for that.","player_loc":"https://roosterteeth.com/embed/game-news-2017-playstation-slams-games-as-a-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cf953a8e-ed6f-452a-9752-26f34e1ea961.jpg/sm/Thumbnail.jpg","duration":375,"publication_date":"2017-12-12T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171211-roundup","changefreq":"weekly","video":[{"title":"2017:E239 - PSX 2017 Announcements + PUBG Camel Toes + The Last Jedi Reactions","description":"Welcome to Monday! We've got new details on major PS4 exclusives like God of War, The Last of Us 2, and Ghost of Tsushima -- plus tons of other stuff straight out of PSX 2017 -- along with news about PUBG's new... anatomically correct models, some cool details about playing A Way Out with a friend, Stardew Valley's multiplayer beta is delayed, Ready Player One gets a sequel, Miles Morales makes his big screen debut, and the first The Last Jedi reactions!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171211-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ab17f12f-1c4a-4050-9cfa-13b34283f13f.jpg/sm/12112017.jpg","duration":735,"publication_date":"2017-12-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-28","changefreq":"weekly","video":[{"title":"S1:E27 - New Game+ #28","description":"Are Nintendo's odd business practices something to emulate, and will they be tempted to change them soon? And what are the Glitches' holiday gift suggestions?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3f5878d0-98bb-4788-b939-412af5f5e11c.jpg/sm/GP28psTHUMB.jpg","duration":960,"publication_date":"2017-12-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-patreon-jacks-up-fees-everyone-is-pissed","changefreq":"weekly","video":[{"title":"2017:E42 - Patreon SCREWS OVER Creators & Patrons","description":"A new change to Patreon's billing system is set to ruin smaller creators and patrons who can't afford large donations... all in the name of PROGRESS!","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-patreon-jacks-up-fees-everyone-is-pissed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aa797433-0faa-48eb-86b8-e194be8ec659.jpg/sm/20171207Patreon.jpg","duration":443,"publication_date":"2017-12-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171208-roundup","changefreq":"weekly","video":[{"title":"2017:E238 - GOTY Winners & Announcements + Far Cry 5 DELAY + Batfleck is OUT?","description":"We've got all the big winners and announcements from The Game Awards. Far Cry 5's been delayed. Ben Affleck's Batman may be out after Flashpoint.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171208-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/523b008c-1a48-439a-b4f6-80df332379d6.jpg/sm/20171208RoundupThumb.jpg","duration":720,"publication_date":"2017-12-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-dlc-locks-old-content-behind-paywall","changefreq":"weekly","video":[{"title":"2017:E393 - Destiny 2 RIPS OFF Players","description":"Destiny 2's Curse of Osiris content has dropped and... locked players out of previously accessible game content unless they buy the expansion too...","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-dlc-locks-old-content-behind-paywall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fe8b1784-db3c-4efa-ab7d-fbb1062e44f8.jpg/sm/20171207Destiny2.jpg","duration":470,"publication_date":"2017-12-08T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sony-can-t-ignore-switches-success","changefreq":"weekly","video":[{"title":"2017:E392 - Sony can't ignore Switches success?","description":"2017:E392 - Sony can't ignore Switches success?","player_loc":"https://roosterteeth.com/embed/game-news-2017-sony-can-t-ignore-switches-success","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a336c7d3-d00d-4d8d-9fc7-fc0a3afb5813.jpg/sm/20171207SonyCantIgnoreSwitch.jpg","duration":570,"publication_date":"2017-12-08T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-a-well-placed-gus-28","changefreq":"weekly","video":[{"title":"S1:E28 - A Well Placed Gus - #28","description":"This week join Ashley, Gus, and Adam as they discuss game censorship (10:27), speedrun the news (22:14), and try to maintain eye contact with Xenoblade Chronicles 2 (37:18). This episode is brought to you by Blue Apron (http://cook.ba/1pkkO63) and Skillshare (http://skl.sh/2BL29a9)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-a-well-placed-gus-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2058e07c-b9ec-4d76-9f50-4a91011e4c36.jpg/sm/GP28THUMB.jpg","duration":4389,"publication_date":"2017-12-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171207","changefreq":"weekly","video":[{"title":"2017:E237 - PS4 Price Cut! + New Tomb Raider Announced + Deadpool Does Pikachu","description":"Get your PS4 while it's cheap! Square-Enix has confirmed they're working on a new Tomb Raider game. Deadpool actor Ryan Reynold will play Detective Pikachu in the movie. Yeah, we don't get it either.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/88293604-57df-4e11-8e90-35f19e83c71c.jpg/sm/roundup12072017thumb.jpg","duration":500,"publication_date":"2017-12-07T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-dark-souls-remasters-wolverine-s-got-a-podcast-youtube-s-10-000-moderators","changefreq":"weekly","video":[{"title":"2017:E236 - Dark Souls Remasters? + Wolverine's Got a... Podcast + YouTube's 10,000 Moderators","description":"We've got even more rumors that a Dark Souls remaster is on the horizon, Metro Exodus is set to make an appearance at The Game Awards, EA sports players LOVE microtransactions (like a lot), Monster Hunter World gets open beta details, GPU prices could be on the rise thanks to cryptocurrency mining, Wolverine's got a podcast, bub, and YouTube's about to set a whole army of video moderators loose.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-dark-souls-remasters-wolverine-s-got-a-podcast-youtube-s-10-000-moderators","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cf595f64-5e01-48c2-9d34-21e505974fdc.jpg/sm/maxresdefault1.jpg","duration":489,"publication_date":"2017-12-07T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-portal-disappointment-constructor","changefreq":"weekly","video":[{"title":"2017:E391 - Portal: Disappointment Constructor","description":"If you thought we couldn't get any worse than a card game around a famous Valve property -- you've thought wrong. The internet got all abuzz yesterday about a rumor that a new Portal game could be announced this week. It turns out they were totally right -- but in the worst way possible. Get ready for Portal: Disappointment Constructor!","player_loc":"https://roosterteeth.com/embed/game-news-2017-portal-disappointment-constructor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82ffb9e6-1c76-4e44-974f-c218203f5b96.jpg/sm/ThumbnailTemplate.jpg","duration":333,"publication_date":"2017-12-07T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171206-dark-souls-remasters-wolverine-s-got-a-podcast-youtube-s-10-000-moderators","changefreq":"weekly","video":[{"title":"2017:E235 - 20171206 - Dark Souls Remasters? + Wolverine's Got a... Podcast + YouTube's 10,000 Moderators","description":"We've got even more rumors that a Dark Souls remaster is on the horizon, Metro Exodus is set to make an appearance at The Game Awards, EA sports players LOVE microtransactions (like a lot), Monster Hunter World gets open beta details, GPU prices could be on the rise thanks to cryptocurrency mining, Wolverine's got a podcast, bub, and YouTube's about to set a whole army of video moderators loose.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171206-dark-souls-remasters-wolverine-s-got-a-podcast-youtube-s-10-000-moderators","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d7b87b01-5f88-45ce-bb55-7d989e46e137.jpg/sm/maxresdefault1.jpg","duration":489,"publication_date":"2017-12-07T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-loot-boxes-adults-only","changefreq":"weekly","video":[{"title":"2017:E390 - Loot Boxes ILLEGAL for Kids?!","description":"Everyone hates loot boxes, but now we've got the most serious move against them yet -- because a couple of US lawmakers are gearing up to write an anti-loot box bill that would ban them for everyone under the age of 21. Does that mean sexy adults-only loot boxes are on the way? Probably not.","player_loc":"https://roosterteeth.com/embed/game-news-2017-loot-boxes-adults-only","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a306ba5-636e-4546-b90d-9522ea8076c9.jpg/sm/ThumbnailTemplate.jpg","duration":412,"publication_date":"2017-12-06T20:07:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-star-wars-interview","changefreq":"weekly","video":[{"title":"2017:E44 - How to Direct Star Wars with Rian Johnson and Ram Bergman","description":"Join Eric Vespe, Star Wars: The Last Jedi writer/director Rian Johnson, and producer Ram Bergman as they talk about how it all happened and what's next for Rian's standalone trilogy.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-star-wars-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f4e6bda-2dde-40a2-acbf-26a3e89477d1.jpg/sm/thumbnail.jpg","duration":1166,"publication_date":"2017-12-06T02:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gamecube-wii-finally-get-remasters-but","changefreq":"weekly","video":[{"title":"2017:E389 - Gamecube & Wii FINALLY GET REMASTERS! But...","description":"Nintendo fans have been begging for Switch virtual console. FINALLY, Nintendo is getting to work on remastering Gamecube and Wii games! Except... totally the wrong way.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gamecube-wii-finally-get-remasters-but","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b3c13914-22df-4619-8504-4759e3344305.jpg/sm/thumbnail.jpg","duration":720,"publication_date":"2017-12-06T02:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-x-men-fantastic-four-deadpool-return-to-marvel","changefreq":"weekly","video":[{"title":"2017:E43 - X-MEN/FANTASTIC FOUR/DEADPOOL Return to MARVEL!?","description":"Remember those stalled talks for Disney to buy Fox? THEY'RE BACK ON AND MAY BE DONE NEXT WEEK! Not only would Marvel get X-men, Fantastic Four, and Deadpool back... Lucasfilm would get rights to the original Star Wars: A New Hope as well. And that's before we even look at the catalog Disney would be buying.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-x-men-fantastic-four-deadpool-return-to-marvel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0c3b013a-0439-43de-a059-33cf61a34c00.jpg/sm/thumbnail.jpg","duration":720,"publication_date":"2017-12-06T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171205-roundup","changefreq":"weekly","video":[{"title":"2017:E234 - PlayStation LEAKS God of War Date? + Fortnite CHEATER Settles + Tarantino's STAR TREK","description":"PlayStation may have revealed when God of War is coming. Epic has settled a lawsuit against a cheater in Fortnite. Quentin Tarantino wants to do a Star Trek movie.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171205-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/752fad47-603e-4451-bd81-7584f482b82d.jpg/sm/thumbnail.jpg","duration":718,"publication_date":"2017-12-05T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-everybody-sues-google","changefreq":"weekly","video":[{"title":"2017:E41 - Google SUED for BILLIONS","description":"Google's no stranger to lawsuits over privacy violations. Wow. We're at the point where that's an everyday occurrence, and it's not getting better. At least there's money in it this time. Millions of iPhone users could see big paydays for privacy violations in a new class action lawsuit.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-everybody-sues-google","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a003ad3-288a-4fab-aa28-b55d5987500b.jpg/sm/thumbnail.jpg","duration":479,"publication_date":"2017-12-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-playstation-censored","changefreq":"weekly","video":[{"title":"2017:E388 - PlayStation CENSORED?!","description":"Government officials and child welfare advocates in the UK are calling for censorship on upcoming PS4 game Detroit: Become Human.","player_loc":"https://roosterteeth.com/embed/game-news-2017-playstation-censored","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0c85ff69-7410-4d50-9d1f-6137b013bd40.jpg/sm/thumbnail.jpg","duration":473,"publication_date":"2017-12-04T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171204-roundup","changefreq":"weekly","video":[{"title":"2017:E233 - Nintendo's New Zelda Project? + ALTERED CARBON First Look! + Happy Birthday PlayStation!","description":"Nintendo's working on a new action-adventure project. More Zelda... or is this a new IP? The Cybernoir Altered Carbon book adaptation's got a release date for Netflix and it looks AWESOME. It's PlayStation's 23rd birthday! Belatedly.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171204-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f81bbe70-9040-48e3-af00-5219720127e9.jpg/sm/thumbnail.jpg","duration":616,"publication_date":"2017-12-04T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-27","changefreq":"weekly","video":[{"title":"S1:E26 - New Game+ #27","description":"What are the best and worst controllers? And what are some of the weirdest control schemes?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea33408d-7ce6-4f64-a0ee-e4d9c0028222.jpg/sm/GP27psTHUMB.jpg","duration":930,"publication_date":"2017-12-02T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-do-you-want-to-see-a-dead-body-with-rob-heubel","changefreq":"weekly","video":[{"title":"2017:E42 - Do You Want to See a Dead Body with Rob Heubel?","description":"We sit down with Do You Want to See a Dead Body star Rob Heubel to talk about moving to YouTube, where to get dead bodies, and getting gross and naked.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-do-you-want-to-see-a-dead-body-with-rob-heubel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d5db4015-feb2-4e34-a192-8ed35f6171de.jpg/sm/robheubelthumb.jpg","duration":1024,"publication_date":"2017-12-02T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ufc-3-s-got-baaaaad-microtransactions","changefreq":"weekly","video":[{"title":"2017:E387 - EA's Pay To Win Hits ANOTHER Game!","description":"EA's taken a lot of criticism for microtransactions in Star Wars Battlefront 2. Now they're invading more games. But, contrary to EA's claims that no one cares about good single-player games, analysts show they're doing just fine.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ufc-3-s-got-baaaaad-microtransactions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c982418-e178-472c-b941-a0ea2ffe5029.jpg/sm/thumbnail2.jpg","duration":537,"publication_date":"2017-12-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-wins-black-friday","changefreq":"weekly","video":[{"title":"2017:E386 - Nintendo Switch is KING","description":"The past few years have not been kind to Nintendo, but that's all over now. The Switch is king of sales for holiday shopping, even without a discount.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-wins-black-friday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0f3543e0-22a7-440d-8979-ed08c383e84b.jpg/sm/thumbnail.jpg","duration":492,"publication_date":"2017-12-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bungie-fixing-everything","changefreq":"weekly","video":[{"title":"2017:E383 - Destiny 2 FIXED!?","description":"The Destiny 2 community has been up in arms over changes made to the game and elements that are still missing. Developer Bungie ha responded with a plan to do better and fix the game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-bungie-fixing-everything","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b2825348-12d7-4707-a6cc-dc23fb1e8b35.jpg/sm/thumbnail.jpg","duration":431,"publication_date":"2017-12-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-return-of-the-low-ping-bastards","changefreq":"weekly","video":[{"title":"S1:E27 - Return Of The Low Ping Bastards","description":"Join Ashley, Ryan, Adam, and Alfredo as they speedrun the news (23:42), discuss net neutrality (1:02:25), and shine the spotlight on some indie games (1:23:24)! This episode is brought to you by Casper (http://bit.ly/2xCIg7n) and Evenprime (http://bit.ly/2BzDtCa, Promo code: Glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-return-of-the-low-ping-bastards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3d06544-268b-4d70-9a2a-f5f989c8d143.jpg/sm/GP27THUMB.jpg","duration":6087,"publication_date":"2017-12-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-the-disaster-artist-and-the-art-of-the-bad-movie-with-paul-scheer","changefreq":"weekly","video":[{"title":"2017:E41 - The Disaster Artist and the Art of the Bad Movie with Paul Scheer","description":"We sat down with comedian and The Disaster Artist actor Paul Scheer to talk about what makes that movie special and whether bad-good movies are really bad or if that means they're actually good.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-the-disaster-artist-and-the-art-of-the-bad-movie-with-paul-scheer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bf02d0a7-8641-4a97-a13d-60c5045d9774.jpg/sm/paulscheerthumb.jpg","duration":1919,"publication_date":"2017-12-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xenoblade-chronicles-2-is-it-good","changefreq":"weekly","video":[{"title":"2017:E385 - Xenoblade Chronicles 2 WORTH PLAYING?","description":"Reviews for Xenoblade Chronicles 2, Nintendo's new Switch-exclusive JRPG, are in! Is this game worth picking up with all the other awesome stuff you could be playing?","player_loc":"https://roosterteeth.com/embed/game-news-2017-xenoblade-chronicles-2-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/af7bbbd6-2d3e-4997-94ef-1ae3e355ce59.jpg/sm/xc2isitgood.jpg","duration":534,"publication_date":"2017-12-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hffaztec1","changefreq":"weekly","video":[{"title":"2017:E332 - KISS MY AZTEC - Human Fall Flat Gameplay","description":"Prince once whispered a haiku in Sheila E's ear and she became so aroused she laid an actual egg, shell and all. And who chipped their way out of that egg 3 weeks later but the entire cast of Mama's Family, fully formed and cracking wise.\r\n(Cut me some slack. I've written like a hundred of these today. The room is spinning)\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hffaztec1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0ffc87c2-fed4-478d-ac9e-941135466f09.jpg/sm/aztec.jpg","duration":882,"publication_date":"2017-12-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-esportsseason2ep2","changefreq":"weekly","video":[{"title":"OS:E2 - OVERWATCH COMPETITIVE Ep. 10","description":"Just remember: It's only a gameplay... it's only a gameplay... it's only a gameplay... it's only a gameplay...\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-esportsseason2ep2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd5559e0-1399-4e1a-a23a-70a0e325a81d.jpg/sm/over2.jpg","duration":2011,"publication_date":"2017-12-28T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments99","changefreq":"weekly","video":[{"title":"2017:E99 - FINAL DEFAMATION - Funhaus Comments #99","description":"This is it! The big Comments Show series finale! And yup, you guessed it! The whole series was actually taking place inside of a snow-globe in the hands of the young autistic son of Boston physician. \r\n*editors note: James and I are currently competing for \"Least Timely Funhaus Pop Culture Reference of 2017\". Your move, Willems.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e3b5c7c9-f22c-4f04-aa40-08291e5bf149.png/sm/comments99thumb.png","duration":493,"publication_date":"2017-12-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtadoomheist1","changefreq":"weekly","video":[{"title":"2017:E334 - SONNTAG'S 4 - GTA 5 Gameplay","description":"\"So, which eleven actresses are we going to cast in the all female Ocean's 11 reboot?\"\r\n\"Eleven? Let's not get crazy! How about 8?\"\r\n\"Eight? As in 73% of the actors as in the male version?\"\r\n\"Yup. Something about that number just seems right.\"\r\n#wokebones #feminist #hero\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtadoomheist1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e660751b-3f64-4517-b66a-69b20b163d83.png/sm/GTADoomsdayHeistPt1.png","duration":945,"publication_date":"2017-12-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtadmjacob","changefreq":"weekly","video":[{"title":"2017:E330 - STAR CROSSED LOVERS - GTA 5 Gameplay","description":"Every time Jacob does an impression of an obscure Star Wars prequel character, somewhere up in a tree in Northern California, George Lucas shrieks, molts, and excretes an entirely new outfit of flannel.\r\n\r\nCode Zero Paleto -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/hJCeecBkg0axr5udZXsG4g#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/_jacobfullerton\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtadmjacob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a1e94966-eac9-48ab-9981-bfb8765de455.jpg/sm/jacobwars.jpg","duration":758,"publication_date":"2017-12-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds154","changefreq":"weekly","video":[{"title":"2017:E154 - OUR DUMB FAMILY - Dude Soup Podcast #154","description":"We're mixing it up this week and giving you a brief look into the lives of our cast and crew. We hope you enjoy getting to know them a little bit better. From our family to yours, happy holidays and a wonderful new year!\r\n\r\n00:40 - Bruce\r\n6:15 - James\r\n11:35 - Elyse\r\n18:00 - Jon\r\n23:35 - Bones\r\n29:05 - Adam\r\n34:45 - Dan\r\n40:10 - Jacob\r\n46:30 - Matt\r\n52:30 - Omar\r\n\r\nCome see us LIVE at the Regent Theater in Downtown LA on January 18!\r\nShow information here: https://www.spacelandpresents.com/event/1614612\r\nTickets here: https://www.ticketfly.com/purchase/event/1614612?utm_medium=bks\r\n\r\nTHUMBNAIL CREDIT: Thanks to /u/CynikSgt from reddit! https://www.reddit.com/r/funhaus/comments/5hvgyc/fan_art_my_funhaus_family_sketch/\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/real_rtbones\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4c3ddc4a-e23a-40c9-8567-48f8a39dcdd5.png/sm/DudeSoup154.png","duration":3699,"publication_date":"2017-12-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh149","changefreq":"weekly","video":[{"title":"2017:E149 - BITCOIN BILLIONAIRES? - Open Haus #149","description":"Ask us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nYou kids have fun with your Bitcoins and Ethereums or whatever. I'll continue to fund my horse erotica studio and human smuggling ring the old fashioned way.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e693c13b-695b-4c09-a560-36fd749c95a8.jpg/sm/OpenhausThumbnail149.jpg","duration":759,"publication_date":"2017-12-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo148","changefreq":"weekly","video":[{"title":"2017:E148 - WEDDED AND BEDDED - Demo Disk Gameplay","description":"After the reception Jon and the disk scampered off while the rest of the Funhaus gang stood with bated breath until the sheet covered in Jon's blood was hung ceremoniously out of the bedroom window.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\nhttps://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43e0ca6a-9481-40a2-bbd5-20782770e303.jpg/sm/DEMOFINAL.jpg","duration":958,"publication_date":"2017-12-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-edfnew","changefreq":"weekly","video":[{"title":"2017:E327 - BUG ZAPPERS - Earth Defense Force Gameplay","description":"Once, back in high school, I made the mistake of using the term \"Japanimation\" instead of \"Anime\" in front of the other kids who ate lunch in the computer lab. They mocked me and laughed until their inhalers ran dry. Jokes on them. My school let kids eat silently in the library, too.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-edfnew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/92f6ffd0-f0f5-4266-95bd-1f72ed7c9677.jpg/sm/edfnew.jpg","duration":1121,"publication_date":"2017-12-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-neofued","changefreq":"weekly","video":[{"title":"2017:E322 - BASIC GLITCHES - Neofeud Gameplay","description":"Hey guys. I hate to ask, but do any of you fans out there have like a really big den, or a finished basement with a lot of seating. We need a place to hold a \"Quintessential Gamer\" intervention for Lawrence. He's gone too far this time.\r\n\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-neofued","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8ea3b6de-38d0-4f81-a6d8-e84bdeb4f116.png/sm/neofued.png","duration":476,"publication_date":"2017-12-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausjedi","changefreq":"weekly","video":[{"title":"2017:E34 - LAST JEDI REVIEW - Movie Podcast","description":"This podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “film”\r\n\r\nOh boy! It's finally here and we wanna talk about it! Jon Risinger stops by to help us break down Star Wars: The Last Jedi! We'll talk about what we liked, what we hated, and our appreciation for the franchise in general. Also, stick around for a very special sci-fi edition of Funhaus Presents: BudHaus: Best Buds Bud Watch!\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/brucegreene\r\nhttps://twitter.com/JonRisinger\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausjedi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df181ff1-222f-47b8-9bee-47eefc079a3b.png/sm/jedi.png","duration":4700,"publication_date":"2017-12-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-singstar","changefreq":"weekly","video":[{"title":"2017:E329 - PITCH AND MOAN - SingStar Celebration Gameplay","description":"Thank you to Playstation for sponsoring this video!\r\nClick here https://www.playstation.com/en-us/games/playlink-ps4/ to play SingStar Celebration and all the rest of the PlayLink family of games for yourself!\r\n\r\nI can't believe the Pitch Perfect series is ending and I have to say goodbye to all my favorite characters like... Brown Hair, Blonde one, uuhhh... Asian Bangs, the four without names, Heavy Girl Who Falls Down... shoot... there's gotta be a \"Sassy Urban Girl Who Doesn't Suffer Any Fools\" somewhere in there, right?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-singstar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/939ea7a4-2373-4793-bfdc-8480d295f710.png/sm/singstar.png","duration":715,"publication_date":"2017-12-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hff2","changefreq":"weekly","video":[{"title":"2017:E320 - SWARMING THE CASTLE - Human Fall Flat Gameplay","description":"\"So you're saying that I get to hang around this super cool island, getting day-drunk on mead with a bunch of horny naked pagans, but at the end of the weekend you might burn me alive in that wicker statue full of livestock?\r\n\"That's the gist of it, yeah.\"\r\n\"... How horny are we talking about here?\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hff2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/084c87d5-eb07-47b9-bf85-bb8601b9aaa4.jpg/sm/fhthumbhffpart2option2.jpg","duration":1113,"publication_date":"2017-12-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-season-2-esports2-pt1","changefreq":"weekly","video":[{"title":"OS:E1 - OVERWATCH COMPETITIVE Ep. 9","description":"It all begins here. Uh... again. The boys are back for another round of bitter, angry cooperation. They've been away for an entire season! Will the be able to handle the competition? I dunno. But it's fun watching them scream at each other.\r\n\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-season-2-esports2-pt1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0efd6544-389a-4150-bf60-af854413d46e.png/sm/fhthumbowseason2.png","duration":1606,"publication_date":"2017-12-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-epiccrabs","changefreq":"weekly","video":[{"title":"2017:E321 - HULK VS JESUS - Ultimate Epic Battle Simulator Gameplay","description":"\"Hulk smash puny Beard-man!\"\r\n\"Aaaggh! Father! Why hast thou forsaken me?!\"\r\n\"... Wait. Puny Beard-man have issue with father?\"\r\n\"Yes, Hulk. My father has left me in this world to die for the sins of mankind.\"\r\n\"... My father mean too. We best friends now.\"\r\n\"Great! Say, you know who else is a pretty terrible dad? Every one of those Roman soldiers over there.\"\r\n\"Hulk take care of it.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-epiccrabs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8d6a97a3-d356-4aa6-8081-71b2391ae837.jpg/sm/fhthumbuebsoption3.jpg","duration":941,"publication_date":"2017-12-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jire7","changefreq":"weekly","video":[{"title":"S1:E7 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 7","description":"The drain event -- er, I mean, main event -- is upon us! The Twits wrestle for their lives in a tag-team Coffin Match against The Baron himself. \r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jire7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d79d2744-2c4b-4969-adfb-3066ed8f4f72.png/sm/Part7.png","duration":3569,"publication_date":"2017-12-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabat4","changefreq":"weekly","video":[{"title":"2017:E328 - BATMAN ENDS - GTA 5 Gameplay","description":"Is this really curtains for The League of Batmen? Will Nolan Batman ever speak in a normal voice again? Will Sub-Zero Batman ever find Scorpion? Will Adam West stop talking about sliding on poles? And will Lawrence please stop talking in that voice? Seriously it's making all of us very uncomfortable. Tune in next week! Same Fun time! Same Fun channel! \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabat4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/15b5022a-0e91-4fe1-bdbc-e878b02845da.jpg/sm/fhthumbgtabatmenpt4option3.jpg","duration":1110,"publication_date":"2017-12-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaoffroad","changefreq":"weekly","video":[{"title":"2017:E325 - INVOLUNTARY CELIBATE - GTA 5 Gameplay","description":"I've been involuntarily celibate for over two years now. It's called marriage! Aghahahahahahahaha! Get it? It's funny because I've legally bound myself to the wrong person and I'm choked with bitterness and remorse!\r\n\r\nTrophy Truck - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/k9vFZpSGCkeAtZ9SfReL_Q#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/thenasacova\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaoffroad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45487a03-5f32-49f2-9eba-1797f347c1bf.jpg/sm/gtagina.jpg","duration":659,"publication_date":"2017-12-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds153","changefreq":"weekly","video":[{"title":"2017:E153 - DR. DISRESPECTS WOMEN? - Dude Soup Podcast #153","description":"Get our special holiday deal with code \"Dude Soup\" at http://www.berries.com for a special gift box and keepsake platter.\r\nAnd go to http://www.dollarshaveclub.com/dude for a $5 kit including a razor, cartridges, and more.\r\n\r\nHey! This week our old pal Jon Risinger is here in studio to discuss Dr. Disrespect's family troubles as well as:\r\n27:10 - Our own experiences with our personal and online lives colliding.\r\n38:10 - What's up with Adam's tumtums.\r\n47:20 - PUBG on console vs PC.\r\n1:06:20 - Hard Nbettin'.\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nBuy merch! http://bit.ly/fhmerch\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/JonRisinger\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e426fa7b-be41-4842-8c77-6ad454e01965.jpg/sm/ds153.jpg","duration":4577,"publication_date":"2017-12-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-ps153","changefreq":"weekly","video":[{"title":"2017:E153 - WE ARE FESTIVE","description":"All new Q&A, comments, and fan art, only for you lucky First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-ps153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1960de74-6cb6-4d09-80aa-d1e238c7ef30.png/sm/ps153.png","duration":2572,"publication_date":"2017-12-19T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh148","changefreq":"weekly","video":[{"title":"2017:E148 - YOU'RE A TARDIS? - Open Haus #148","description":"Get our special $19.99 Shari's Berries offer by going to http://www.berries.com and using code \"openhaus\" at checkout!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nBruce and I were truly beautiful to behold in our Ska days. Hair meticulously spiked towards the heavens, wallet chains longer than we were, and every shirt we owned looked like it was made out of a picnic blanket. I think there was some sort of music involved too.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dd340f98-565f-4cce-8b8b-5df11ac4d587.jpg/sm/OpenhausThumbnail148.jpg","duration":741,"publication_date":"2017-12-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo147","changefreq":"weekly","video":[{"title":"2017:E147 - DRIPPING WITH BUU - Demo Disk Gameplay","description":"Sorry I don't have anything clever for you today. I asked the interns what Dragonball Z was about so I could write this description but I couldn't hear their response over the sound of every vagina in Culver City drying out simultaneously.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2d819409-d864-4a05-89c9-3e80dc9cf94a.jpg/sm/demo147.jpg","duration":1049,"publication_date":"2017-12-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-3on3","changefreq":"weekly","video":[{"title":"2017:E323 - BALL HANDLERS - 3on3 Freestyle Gameplay","description":"What? The title? It's a basketball term. I swear. I looked it up and everything. It's what they call the offensive player who is in possession of the ball on that given play. It's usually the point guard but it can change depending what's happening on the court at any moment. I was also talking about testicles.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-3on3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b71e2a6d-9f70-463f-a999-3610a4f466fb.jpg/sm/3on3thumb.jpg","duration":806,"publication_date":"2017-12-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-overit","changefreq":"weekly","video":[{"title":"2017:E324 - GRIP IT GOOD - Getting Over It with Bennett Foddy Gameplay","description":"\"His scorn of the gods, his hatred of death, and his passion for life won him that unspeakable penalty in which the whole being is exerted toward accomplishing nothing. This is the price that must be paid for the passions of this earth.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-overit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac829360-eac5-428c-9341-e1ee1d4c9dde.png/sm/getover.png","duration":942,"publication_date":"2017-12-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fortpubg2","changefreq":"weekly","video":[{"title":"2017:E310 - LOOT TO KILL - Fortnite Battle Royale Gameplay","description":"Fortnite Development HQ, 2016 - \r\n\"Alright Henderson, I just finished modeling all of the female characters. I'm gonna go tell the big-wigs upstairs. Now whatever you do, don't touch this knob marked 'Donk Enlarger'. The results could be... unpredictable. Be right back.\"\r\n(Henderson watches him leave. His gaze wanders down, lingering over the exquisite curves of the knob. He reaches out, eyes closed, biting his lip in anticipation.)\r\n\"May god forgive me...\"\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fortpubg2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/95b1f1da-6819-4d86-be83-c04fe03dab6e.png/sm/fortpubg2.png","duration":1027,"publication_date":"2017-12-16T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-evil-possession-gameplay","changefreq":"weekly","video":[{"title":"2017:E48 - Evil Possession Gameplay","description":"Technically there's a s'more game in there too, but it's merely an appetizer for some unedited campfire spookums!","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-evil-possession-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d74600ed-acab-4c05-b42b-e7e6fc757b41.jpg/sm/FullhausCamping.jpg","duration":4843,"publication_date":"2017-12-15T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-destinynight","changefreq":"weekly","video":[{"title":"2017:E318 - HOOP DREAMS - Destiny 2 Nightfall Gameplay","description":"You gotta hand it to Bungie, this is the slickest remastering of Superman for N64 that any of us could have possibly imagined.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/_jacobfullerton\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-destinynight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eef4f3a1-faf0-478b-be60-6578687ec98e.png/sm/destnight.png","duration":1438,"publication_date":"2017-12-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bestofnov17","changefreq":"weekly","video":[{"title":"2017:E326 - BEST OF BROS - Best of Funhaus November 2017","description":"Watching a Funhuas Best Of video is like when you were little and you would open a box of chocolates and take just a tiny bite out of each one to satisfy your curiosity about what was inside. Except if you get caught watching this video, your dad probably won't call you fat and beat you with an old fan belt. Probably.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/real_rtbones\r\nhttps://twitter.com/filmDstryr\r\nhttps://twitter.com/GeoffLRamsey\r\nhttps://twitter.com/JoelRubin_\r\nhttps://twitter.com/CrikMaster\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bestofnov17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2e1d04cc-109d-41f6-9e01-64a1bdcd5933.jpg/sm/FHNov2017.jpg","duration":1042,"publication_date":"2017-12-15T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bladenetcrik","changefreq":"weekly","video":[{"title":"2017:E317 - HACK ADDICTS - Bladenet Gameplay with Criken","description":"Dos Pueblos High School, Goleta, CA, 1995 - \r\n\"This is our world now. The world of the electron and the switch; the beauty of the baud. We exist without nationality, skin color, or religious bias. You wage wars, murder, cheat, lie to us and try to make us believe it's for our own good, yet we're the criminals. Yes, I am a criminal. My crime is that of curiosity. I am a hacker. You may stop me, but you can't stop us all.\"\r\n\"... You done?\"\r\n\"Yeah.\"\r\n\"Good. Okay guys, dunk his head in that toilet then make fifty copies of... what did you say this was again?\"\r\n\"... Babylon 5 Fan-fiction.\"\r\n\"Right. Better make it an even hundred and give one to every pretty girl in school.\" \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/CrikMaster\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bladenetcrik","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9de5d9d3-4bf6-4758-b127-a1189add64ad.png/sm/bladenet.png","duration":895,"publication_date":"2017-12-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabat3","changefreq":"weekly","video":[{"title":"2017:E319 - BOMBING BATMEN - GTA 5 Gameplay","description":"Burt Ward had it explicitly written into his Batman Season 3 contract that in regards to groupies, he was never to receive anything lower than \"sloppy fifths\", after Adam West, Burgess Meredith, the Irish cop guy, and whichever celebrity stuck their head out the window that week.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabat3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a3b76f0a-845a-4452-913a-3146697e45a7.png/sm/gtabatmen3.png","duration":975,"publication_date":"2017-12-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabowldon","changefreq":"weekly","video":[{"title":"2017:E316 - CRAPPY HOLIDAYS - GTA 5 Gameplay","description":"Back in '95, I used to race to Blockbuster Video every day after class and play their Virtual Boy until my eyes ached and tears streamed down my cheeks. It took three and a half minutes.\r\n\r\nBOWLING HUMAN RAMP - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/00ANfw-RIE61Iu-sPWw_Ag#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/thenasacova\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabowldon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/90956fcc-d5bb-4a82-955b-d84d437885a2.png/sm/gtabowl.png","duration":618,"publication_date":"2017-12-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds152","changefreq":"weekly","video":[{"title":"2017:E152 - Death Stranding EXPLAINED - Dude Soup Podcast 152","description":"Get our special $19.99 Shari's Berries offer by going to http://www.berries.com and using code \"Dude Soup\" at checkout!\r\nAnd go to http://www.mvmt.com/dudesoup to get watches starting at $95 with a free strap and gift box!\r\n\r\nThis week we break down that insane new Death Stranding trailer as well as:\r\n38:25 - How it might compare to other Kojima games.\r\n42:15 - Is it bad to give any creater too much freedom with their work?\r\n54:30 - Kojima's move from Konami to Sony.\r\n1:03:00 - Hard Nettin'.\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nBuy merch! http://bit.ly/fhmerch\r\n\r\nSOURCES:\r\n[Reddit] The sci-fi manga of hoshino yukinobu - possible death stranding influence and a theory - https://www.reddit.com/r/DeathStranding/comments/5r2jxj/the_scifi_manga_of_hoshino_yukinobu_possible/\r\n[IGN] KOJIMA EXPLAINS DEATH STRANDING GAMEPLAY AND LORE - http://www.ign.com/articles/2017/12/11/kojima-explains-death-stranding-gameplay-and-lore\r\n[Gamespot] Death Stranding Trailer Makes Sense After Playing 4-5 Hours, Sony Exec Claims - https://www.gamespot.com/articles/death-stranding-trailer-makes-sense-after-playing-/1100-6455532/\r\n\r\nHARD NETTIN':\r\nFat World Wiki: http://fatworld.wikia.com/wiki/FAT_WORLD_Wiki\r\nHypnoBeast: https://www.youtube.com/user/Hypnobeast/\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c12fb376-64f8-4791-8064-be10d39bb0d6.png/sm/ds152.png","duration":4498,"publication_date":"2017-12-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-ps152","changefreq":"weekly","video":[{"title":"2017:E152 - WE ARE HAMMERED","description":"All new comments, questions, and fan art, only for Rooster Teeth First Members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-ps152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/013e9f8d-e704-4429-860b-cf4b4947ea96.png/sm/ps152thumb.png","duration":3061,"publication_date":"2017-12-12T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-secretsanta","changefreq":"weekly","video":[{"title":"2017:E315 - CAUTION: FOWL LANGUAGE - Let's Play Secret Santa Reveal","description":"Don't forget to order all your Funhaus and Rooster Teeth merch by December 14th to receive it in time for the holidays! Thanks to Rooster Teeth for paying for all these dumb presents too. Stay tuned til the end to find out which Let's Play member will be our victim!\r\n\r\nFind Funhaus merch here! http://bit.ly/fhmerch\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-secretsanta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82a6bf91-9376-4a64-bbfd-9003034911f6.png/sm/santa.png","duration":216,"publication_date":"2017-12-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh147","changefreq":"weekly","video":[{"title":"2017:E147 - STUCK IN THE FRIEND ZONE? - Open Haus #147","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nT.V. Trivia Time!\r\nQ: How many of Home Improvement's P.A.s did Jonathan Taylor Thomas impregnate during the show's eight seasons?\r\nA: Trick question! The P.A.s were only there to get him started. JTT refused to bestow his seed upon anything lower than a costumer.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/76505f9c-fc5e-4e6a-ab43-a087c0ab6f70.jpg/sm/open147.jpg","duration":978,"publication_date":"2017-12-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo146","changefreq":"weekly","video":[{"title":"2017:E146 - GET SHREDDED! - Demo Disk Gameplay","description":"\"Hey, Bones! We really need a description for that Demo Disk where we look at Ninja Turtle stuff!\"\r\n\"Alright, alright! Give me a sec! Hmmm... turtles... turtles...\"\r\n*(googles actual turtle penises, calls mom crying, pours hot sand into eyes)*\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\nhttps://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c56dc9af-f90e-48d9-9321-1108fa42e89d.png/sm/demo146thumb.png","duration":983,"publication_date":"2017-12-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-pubgsark2","changefreq":"weekly","video":[{"title":"2017:E313 - INTO THE FIRE - PUBG Gameplay with Sark Part 2","description":"Remove the chicken giblets. Rinse the chicken inside and out. Remove any excess fat and leftover pinfeathers and pat the outside dry. Place the chicken in a large roasting pan. Liberally salt and pepper the inside of the chicken. Stuff the cavity with the bunch of thyme, both halves of the lemon, and all the garlic. Brush the outside of the chicken with the butter and sprinkle again with salt and pepper. Tie the legs together with kitchen string and tuck the wing tips under the body of the chicken. Scatter the onion slices around the chicken.\r\n\r\nRoast the chicken at 425 degrees for 1-1/2 hours, or until the juices run clear when you cut between a leg and thigh. Remove to a platter and cover with aluminum foil while you prepare the gravy.\r\n\r\nRemove all the fat from the bottom of the pan, reserving 2 tablespoons in a small cup. Add the chicken stock to the pan and cook on high heat for about 5 minutes, until reduced, scraping the bottom of the pan. Combine the 2 tablespoons of chicken fat with the flour and add to the pan. Boil for a few minutes to cook the flour. Strain the gravy into a small saucepan and season it to taste. Keep it warm over a very low flame while you carve the chicken.\r\n\r\nSlice the chicken onto a platter and serve immediately with the warm gravy.\r\n\r\n1 5- to 6-pound roasting chicken\r\nKosher salt\r\nFreshly ground black pepper\r\n1 large bunch fresh thyme\r\n1 lemon, halved\r\n1 head garlic, cut in half crosswise\r\n2 tablespoons butter, melted\r\n1 Spanish onion, thickly sliced\r\n1 cup chicken stock, preferably homemade\r\n2 tablespoons all-purpose flour\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttps://twitter.com/Mr_Sark\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-pubgsark2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/94b48daa-f7da-4bbd-a923-dea87d5ee291.png/sm/pubgsark2.png","duration":785,"publication_date":"2017-12-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-google2","changefreq":"weekly","video":[{"title":"2017:E312 - GROPE VS HARASSMENT - Google Trends Show","description":"Having worked in restaurants and bars my whole life, I can tell you that industry had a slightly different standard for sexual harassment. I'm pretty sure you had to be in your third trimester before your manager would even bother to blow the dust off the stack of complaint forms.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-google2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/09700539-782a-40c3-92ad-b3b80266138e.png/sm/trend2.png","duration":1731,"publication_date":"2017-12-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausfox","changefreq":"weekly","video":[{"title":"2017:E33 - DISNEY BUYS X-MEN? - Movie Podcast","description":"Check out this week’s menu and get $30 off of your first order — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\nThis week, the gang the gang explores the excitement and apprehension surrounding the rumored Disney/Fox acquisition as well as: \r\n15:30 - This weekend's upcoming movies.\r\n20:20 - Adam's favorite trailers of the week.\r\n25:30 - Funhaus Presents BudHaus: Best Buds Bud Watch: Holiday Edition: Snow Buddies\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausfox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02333ab3-2470-477a-a94b-b03874450415.png/sm/filmfox.png","duration":2077,"publication_date":"2017-12-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-avatar-2-gameplay","changefreq":"weekly","video":[{"title":"2017:E47 - Avatar 2 Gameplay","description":"Neytiri's back with some uncut bits for James Cameron's viewing pleasure.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-avatar-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07ea1f71-1512-4a9d-979a-d2728381e93b.jpg/sm/FullhausAvatar2.jpg","duration":2924,"publication_date":"2017-12-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-campevilray","changefreq":"weekly","video":[{"title":"2017:E306 - HAUNTED HIKERS - Evil Possession Gameplay with Ray","description":"I'm not much of an outdoorsman, but I do have the distinction of having been the most picked-on person at my junior high science camp. Seems like only yesterday that that little asthmatic kid with the grass allergy was calling me a p**** and threatening to cut off my rat-tail. \r\nCue the Wonder Years theme!\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/RayNarvaezJr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-campevilray","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c38d2b66-716f-4109-8edb-e10e51be73c8.png/sm/raycamp.png","duration":964,"publication_date":"2017-12-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-vrsuns","changefreq":"weekly","video":[{"title":"2017:E314 - BOLDLY GOING DOWN - From Other Suns VR Gameplay","description":"I don't get it. If they can build a sex-bot that can be seduced, remember positions, and climax, why can't they invent one that will stop telling how much less its previous owner cried afterwards?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-vrsuns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a041f5d7-1262-4a23-aee2-c2acbdd4942b.png/sm/vrsuns.png","duration":914,"publication_date":"2017-12-08T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jiremen6","changefreq":"weekly","video":[{"title":"S1:E6 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 6","description":"The gang double-teams their fiercest foe yet, as they vie for the coveted title of Underworld Champion. Plus they do a whole mess of drugs. \r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jiremen6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1b5c37ad-3b68-4834-8c61-5f5128bb2a92.png/sm/Part6.png","duration":3673,"publication_date":"2017-12-07T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabatmen2","changefreq":"weekly","video":[{"title":"2017:E311 - DORK KNIGHTS - GTA 5 Gameplay","description":"Alright, let me just bring out the big board here. Okay... which one of you kids had your money on \"Lazy Latino Batman\" in the Funhaus Culturally Insensitive Character Pool? \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabatmen2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b43bd7f-83d9-4a1f-8c11-bb10edb298e7.png/sm/gtabat2.png","duration":870,"publication_date":"2017-12-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabmx","changefreq":"weekly","video":[{"title":"2017:E309 - HELL ON WHEELS - GTA 5 Gameplay","description":"Maybe in addition to all those cute little creatures, the Fantastic Beasts game can help me find my interest in that franchise. I seemed to have misplaced it about seven years ago.\r\nDaaaaaammmnnn! Take that, billionaires who've introduced an entire generation to the joys of the written word!\r\n\r\nBMX Always on Top - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/AVn6Z163_0uDUcwhVW1LOw#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabmx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/981fe18b-340e-4fc0-8adf-edae2238d013.png/sm/gtabmx.png","duration":692,"publication_date":"2017-12-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds151","changefreq":"weekly","video":[{"title":"2017:E151 - YouTube BRAINWASHING KIDS? #ElsaGate! - Dude Soup Podcast 151","description":"Go to http://www.mvmt.com/DudeSoup to get watches starting at 95-dollars, and get a free strap, an elegant gift box, and free shipping!\nAnd get your first meal ($30 value) for free at http://www.blueapron.com/soup\n\nThis week the gang tackles \"Elsa-gate\" and the problems with keeping content geared for adults off of kids' eyeballs, as well as:\n19:10 - YouTube's actions to prevent this.\n24:45 - What each of us thinks the best course of action is.\n39:30 - Issues with \"YouTube Kids\".\n53:35 - \"Bruce Reads...\"\n57:30 - Hard Nettin'.\n\nVOTE on Hard Nettin! http://www.strawpoll.me/14561748\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\nFind Funhaus merch here! http://bit.ly/fhmerch\n\n\n\nFollow us on Twitter: \nhttp://twitter.com/adamkovic\nhttp://twitter.com/brucegreene\nhttp://twitter.com/jameswillems\nhttp://twitter.com/sirlarr\nhttp://twitter.com/elysewillems\n\n\n\nSOURCES:\n[Reddit] What is Elsagate: https://www.reddit.com/r/ElsaGate/comments/6o6baf/what_is_elsagate/\n[YouTube] Introducing the YouTube Kids app: https://www.youtube.com/watch?v=OUmMAAPX6E8\n[Today] Child advocacy groups say YouTube Kids rife with 'inappropriate' videos: https://www.today.com/money/child-advocacy-groups-say-youtube-kids-rife-inappropriate-videos-t21936\n[Today] Moms warn of disturbing video found on YouTube Kids: 'Please be careful' https://www.today.com/parents/moms-warn-disturbing-video-found-youtube-kids-please-be-careful-t101552\n[The Atlantic] The Algorithm That Makes Preschoolers Obsessed With YouTube: https://www.theatlantic.com/technology/archive/2017/07/what-youtube-reveals-about-the-toddler-mind/534765/\n[NYTimes] On YouTube Kids, Startling Videos Slip Past Filters: https://www.nytimes.com/2017/11/04/business/media/youtube-kids-paw-patrol.html?_r=0\n[The Verge] YouTube says it will crack down on bizarre videos targeting children: https://www.theverge.com/2017/11/9/16629788/youtube-kids-distrubing-inappropriate-flag-age-restrict\n[YouTube] 5 ways we’re toughening our approach to protect families o","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/61d08c90-df0f-4b83-87ca-35e675cca85b.png/sm/ds151thumb.png","duration":4346,"publication_date":"2017-12-05T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-ps151","changefreq":"weekly","video":[{"title":"2017:E151 - WE ARE TRENDY","description":"All new comments, questions, and fan art, only for First Members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-ps151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/317cb1cb-809b-4e1d-8548-5feb2a1a59f1.png/sm/ps151.png","duration":2020,"publication_date":"2017-12-05T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh146","changefreq":"weekly","video":[{"title":"2017:E146 - WE RUIN CHRISTMAS? - Open Haus #146","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nMan, you millennials are so fragile. We didn't have all these stupid toy regulations in the 80's. Back when i was little, I drank the entire can of green stuff from my He-Man Evil Horde Slime Pit Playset and I am turn brain good no problem!\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/759a6283-45be-437f-9e20-2de4d20ed843.jpg/sm/open146.jpg","duration":928,"publication_date":"2017-12-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo145","changefreq":"weekly","video":[{"title":"2017:E145 - MAKE HER QUAKE - Demo Disk Gameplay","description":"Hey, nerds. You know how Lovecraft does that thing where he cheats and says that things are so horrific that they can't be described in words? Right after I did a quality check on this video, Daniel called me over to look at the Rule 34 \"art\" that was too offensive to show in this video. I get it now. Cut out my eyes and bring on the inky eldritch blackness! \r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\nhttps://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3d87da79-f4dc-4797-8f40-8182c8581c3b.png/sm/demowhatever.png","duration":898,"publication_date":"2017-12-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fallflat1","changefreq":"weekly","video":[{"title":"2017:E305 - WRECKING CREW - Human: Fall Flat Gameplay","description":"A bunch of doughy white guys chaotically running into each other and failing to complete their assigned tasks? What is this, a video game... or Congress?! Aaaaaaggghhahahahahaha!\r\n*(proudly skips outside, wedges head beneath garbage truck tire, waits patiently for beeping to begin)*\r\n\r\n Follow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/omarcito\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fallflat1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/de6e25cf-fda3-417e-bf1b-897d9c0ab1be.png/sm/human.png","duration":1253,"publication_date":"2017-12-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-talkstalk4","changefreq":"weekly","video":[{"title":"2017:E303 - LET'S GET HAMMERED - Talking Stalkings Episode 4","description":"If this series keeps following its current trajectory, the next episode will just be all of us getting wrecked on Krokodil and bum-fighting each other while Jacob dutifully tosses off onto the Season 5 DVD box art.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/real_rtbones\r\nhttps://twitter.com/immortalhd\r\nhttps://twitter.com/hungryhundar\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-talkstalk4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fea8219c-9d94-46a5-9691-c4e8dda18371.png/sm/talkstalk4.png","duration":1033,"publication_date":"2017-12-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausinfinity","changefreq":"weekly","video":[{"title":"2017:E32 - TO INFINITY WAR AND BEYOND! - Movie Podcast","description":"Go to http://www.leesa.com/filmhaus and enter the promo code \"filmhaus\" to get a $100 discount off of your mattress purchase!\r\n\r\nMan oh man, that trailer! Today the fellas and Elyse talk all about Averngers: Infinity War, the Marvel films so far, why they're mostly so damn good, and what's next for the MCU. Adam also shares the first of several awful Christmas movie reviews, and those other idiots pop by for another installment of Funhaus Presents BudHaus: Best Buds Bud Watch.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausinfinity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b13e1431-a896-4c7b-829d-c159aa3a5a04.png/sm/filmwar.png","duration":2443,"publication_date":"2017-12-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-codww2","changefreq":"weekly","video":[{"title":"2017:E308 - WAR GAMES - COD WW2 Gameplay","description":"Thanks to Call of Duty®: WWII for sponsoring this video. Watch us and Achievement Hunter battle Cow Chop and Game Attack in Call of Duty: WWII’s all-new ‘War’ Mode Live on December 5th at 11 AM PST at [ link coming soon! ]\r\n\r\nIf only every war could be resolved with a simple game of football... hmmm... really makes you think, doesn't it? Hmmm... yeah. Apologies for blowing your mind. Just set my award for \"Most Enlightened Man in the Multiverse\" on the mantle when it arrives. I'll be in the bathroom, making out with my reflection in the mirror. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-codww2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/04efce6f-77bb-4c57-9e75-8fb66f9d8807.png/sm/codww2.png","duration":1340,"publication_date":"2017-12-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabatmenpt1","changefreq":"weekly","video":[{"title":"2017:E307 - GTA JUSTICE LEAGUE - GTA 5 Gameplay","description":"Did anyone else notice that in Justice League, Superman's chest hair was sculpted to look like we was wearing a little fur bikini? Really? No one? No one else paid good money to go see that movie like six times just to get a good long look at those sweet hairy pecs?\r\nYeah, me neither. What's a Justice League?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabatmenpt1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/38e5c8b2-886d-42b6-87a4-73507efee163.png/sm/batmen1.png","duration":988,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments98","changefreq":"weekly","video":[{"title":"2017:E98 - FINGER ON THE PULSE? - Funhaus Comments #98","description":"INT - NBC HEADQUARTERS - 1988\r\n\"Johnson! Get in here! Alright, fill me in. What have we got lined up for that d***-nosed, cat-eating alien puppet?\"\r\n\"ALF, sir?\" Well, so far we've given him a sitcom, 2 children's cartoons, a comic book, a TV movie, a trading card set, and four video games.\"\r\n\"Hmm... make it six video games. Now be a lamb and help me dig this cocaine-filled condom out of my assistant's rectum.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5155dbe3-df6d-4235-9bef-5a607c3e092f.jpg/sm/Comments98.jpg","duration":527,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-pubgsark1","changefreq":"weekly","video":[{"title":"2017:E302 - BATTLE BROS - PUBG Gameplay with Sark Part 1","description":"Wait a minute. Is this that game they based on that new Fortnite mode that they based on that new GTA 5 mode?\r\nPlayerUnkown? More like \"PlayerUnoriginal\".\r\nNailed it.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttps://twitter.com/Mr_Sark\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-pubgsark1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/66999d9b-3e88-4a6e-8e82-e9f135a1a5e8.png/sm/pubgsark1.png","duration":744,"publication_date":"2017-12-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabonkcage","changefreq":"weekly","video":[{"title":"2017:E304 - NEW BONK CITY - GTA 5 Gameplay","description":"This is kind of embarrassing to admit, but I had real difficulty conceiving with my wife. I tried every trick but nothing seemed to work. Happily, once I poked holes in all the condoms and switched out her birth control with some of those mini Altoids, it took no time at all. \r\n\r\nCage Fight - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/ixePRy_AuEuJ8JvBP3IHFA#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabonkcage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0c6bcb7f-7a9f-4e8c-8331-e2ae7bc05b28.png/sm/gtabonk.png","duration":631,"publication_date":"2017-11-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-surfersvsskatersfullhaus","changefreq":"weekly","video":[{"title":"2017:E46 - Surfers VS Skaters Gameplay","description":"This is less of a full gameplay and more of a 40-minute improv sesh.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-surfersvsskatersfullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f15e3992-2745-453a-923c-e99ee9c15717.jpg/sm/fhs.jpg","duration":2446,"publication_date":"2017-11-28T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds150","changefreq":"weekly","video":[{"title":"2017:E150 - WATCH THIS WHILE YOU CAN (Net Neutrality) - Dude Soup Podcast #150","description":"Get 15% off your MVMT watch today by going to http://www.mvmt.com/DudeSoup\r\nAnd get 20% off your Tipsy Elves order at http://www.tipsyelves.com and use code \"dudesoup\" at checkout!\r\n\r\nAlright. Focus. Eyes up here everybody. This week's topic isn't sexy but it is important for anyone who uses the internet for any damn thing. We're gonna break down this renewed Net Neutrality debate and tackle:\r\n3:25 - What Net Neutrality is and how it currently functions.\r\n6:20 - How it affects video streaming services.\r\n11:25 - American capitalism and its relationship with regulation.\r\n22:20 - Current ISP marketplace.\r\n45:00 - \"But Funhaus, what can I do?\"\r\n56:45 - Hard Nettin'.\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nFind Funhaus merch here! http://bit.ly/fhmerch\r\n\r\nSOURCES:\r\n[Fortune] Net Neutrality Explained: What It Means (and Why It Matters): http://fortune.com/2017/11/23/net-neutrality-explained-what-it-means-and-why-it-matters/\r\n[Ars Technica] All signs point to December vote to kill net neutrality rules, reports say: https://arstechnica.com/tech-policy/2017/11/fccs-net-neutrality-killing-vote-on-track-for-december-14/\r\n[Wikipedia] Net neutrality: https://en.wikipedia.org/wiki/Net_neutrality\r\n[Wired] What Everyone Gets Wrong in the Debate Over Net Neutrality: https://www.wired.com/2014/06/net_neutrality_missing/\r\n[Ars Technica] FCC explains why public support for net neutrality won’t stop repeal: https://arstechnica.com/tech-policy/2017/11/why-the-fcc-ignored-public-opinion-in-its-push-to-kill-net-neutrality/\r\n[Ars Technica] 98.5% of unique net neutrality comments oppose Ajit Pai’s anti-Title II plan: https://arstechnica.com/tech-policy/2017/08/isp-funded-study-finds-huge-support-for-keeping-current-net-neutrality-rules/\r\n[LA Times] I'm on the FCC. Please stop us from killing net neutrality: http://www.latimes.com/opinion/op-ed/la-oe-rosenworcel-fcc-net-neutrality-repeal-20171122-story.html\r\n\r\nHARD NETTIN:\r\nOmegaverse Genetics: http://archiveofourown.org/works/72020","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8d00189b-5766-4534-91b9-c052e4f14018.png/sm/ds150thumb.png","duration":4773,"publication_date":"2017-11-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-ps150","changefreq":"weekly","video":[{"title":"2017:E150 - WE ARE SHAPELY","description":"All new art and comments only for you super cool First members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-ps150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6a1d045f-6fe3-4af8-8668-122ac6566583.png/sm/ps150thumb.png","duration":2822,"publication_date":"2017-11-28T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh145","changefreq":"weekly","video":[{"title":"2017:E145 - WHO MURDERED US? - Open Haus #145","description":"Go to http://www.leesa.com/openhaus and enter the promo code \"openhaus\" to get a $100 discount off of your mattress purchase!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nWe've got a real Old Fashioned Funhaus Who-dun-it on our hands! Who will be revealed as the killer? Will it be Jacob? Or maybe Bruce. Or maybe me right now if Jon doesn't stop humming the god-damn theme song from The Suite Life of Zack and Cody in the bungalow.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3ebdd912-7a1f-4f2c-9c9c-146d2a1659b7.jpg/sm/Open145.jpg","duration":901,"publication_date":"2017-11-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo144","changefreq":"weekly","video":[{"title":"2017:E144 - PIXIE LICKS - Demo Disk Gameplay","description":"Ugh boy. The guys picked the exact wrong time to play a game where the main focus of the commentary is the boob-physics of a scantily-clad, child-like pixie. Oh well, we had a good run. See you in the unemployment line, everybody! \r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/adamkovic\r\nhttps://twitter.com/brucegreene\r\nhttps://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/44ad87af-47f0-4dfe-a573-ceea9ba47d42.png/sm/DEMO144.png","duration":828,"publication_date":"2017-11-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-spacengnew","changefreq":"weekly","video":[{"title":"2017:E298 - 3 MAN DOCKING - Space Engineers Gameplay","description":"\"Ready to initiate docking sequence.\"\r\n\"Alright. Please retract outer sheath of docking coupler.\"\r\n\"Outer sheath retracted.\"\r\n\"Nice. Easing into place now. Contact initiated.\"\r\n\"Extending sheath.\"\r\n\"Copy. Docking complete. Permission to come aboard?\"\r\n\"... Does this sound weird to anyone else?\"\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-spacengnew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e55e6c08-26ac-483b-82e7-0a18eb21a902.png/sm/spacethumb.png","duration":624,"publication_date":"2017-11-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-googletreason","changefreq":"weekly","video":[{"title":"2017:E299 - HACKING VS PRISON - Google Trends Show","description":"In these trying political times it's good that we can all still just sit down and have a good la- wait, who does he hate now? Elephants and Haitian refugees? F*** it, I'm out. Enjoy your game show.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-googletreason","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/09833cbd-812d-49f3-88ca-bbbf52405e45.png/sm/googtreason.png","duration":1526,"publication_date":"2017-11-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausjustice","changefreq":"weekly","video":[{"title":"2017:E31 - JUSTICE LEAGUE KILLS DC MOVIES? - Movie Podcast","description":"This podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “film”\r\n\r\nThis week the boys and Elyse sit down for a very spoilery chat about the new Justice League movie. They'll run down the plot, talk about what worked, what didn't, the flawed process behind making the film, and what they predict for the future of the franchise.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/brucegreene\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausjustice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ca9ad79b-03b9-47b3-a452-8372c8a31fc9.png/sm/filmjust.png","duration":2448,"publication_date":"2017-11-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-elex","changefreq":"weekly","video":[{"title":"2017:E300 - UGLY APOCALYPSE - Elex Gameplay with Criken","description":"Alright millennials! Time to take you to school. There is only one post-apocalyptic movie worth a damn and it's called \"The Postman\"! Forget your mazes and districts and divergents or whatever. This movie combines all the excitement of mail delivery with the non-stop action of Kevin Costner talking to a mule. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/CrikMaster\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-elex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9968c96-667c-4dfa-b2cb-4f3e63ffc41b.png/sm/elexthumb.png","duration":909,"publication_date":"2017-11-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bestofoct","changefreq":"weekly","video":[{"title":"2017:E301 - BEST OF CREEPS - Best Of Funhaus October 2017","description":"We will all remember where we were the day that mothers were finally made aware. It's like 9/11, or the Kennedy assassination, or when the The Freemasons faked that moon landing.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/MattsEditBay\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\nhttps://twitter.com/real_rtbones\r\nhttps://twitter.com/Mr_Sark\r\nhttps://twitter.com/GeoffLRamsey\r\nhttps://twitter.com/JoelRubin_\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bestofoct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd1901e6-f82c-4a38-ad8f-e4e8f260043f.jpg/sm/october2017.jpg","duration":1153,"publication_date":"2017-11-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-arktikavr","changefreq":"weekly","video":[{"title":"2017:E297 - DOUBLE TEAM IN VR - Arktika VR Gameplay","description":"Whoa. Like, what if you're not REALLY sitting there reading this boring description, but, like just a part of a computer simulation where someone else is getting bored watching you get bored reading this description?\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-arktikavr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7d79e287-7388-454c-9e76-08107876be56.png/sm/arktikathumb.png","duration":460,"publication_date":"2017-11-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jiremen5","changefreq":"weekly","video":[{"title":"S1:E5 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 5","description":"A deranged doctor enlists the group in a body-part scavenger hunt, which of course turns into a maim-a-thon. Plus, two unexpected challengers join the Monster Mash, sending Dirik’s fur flying.\r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jiremen5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d6ae434e-c7fa-4768-a94e-a7a744b69562.png/sm/part5.png","duration":3669,"publication_date":"2017-11-23T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaspook-2","changefreq":"weekly","video":[{"title":"2017:E297 - KILL OR BE KILLED - GTA 5 Gameplay","description":"\"Spookums! Why are you still in bed? Aren't you supposed to out there stalking and murdering people?\"\r\n\"Don't wanna!\"\r\n\"Why not? Are those mean Funhaus kids giving you a hard time again?\"\r\n\"... No\"\r\n\"Spookums?\"\r\n\"... Maybe.\"\r\n\"Spookums, you get out of that bed this minute and go murder those boys like you promised!\"\r\n\"Ugh. Jeepers. Fine whatever!\"\r\n\"That's my brave boy. Don't forget your back brace and inhaler.\"\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaspook-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/798296dd-9e1a-435d-87c5-5932ca53d309.png/sm/spook2thumb.png","duration":1034,"publication_date":"2017-11-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtariddle","changefreq":"weekly","video":[{"title":"2017:E296 - STUNTMAN FOREVER - GTA 5 Gameplay","description":"Man, 90's comic art was the best. All that long, beautiful, flowing hair. Those tiny waists and delicate legs meandering down to perfectly petite feet. And I guess the women were drawn pretty good too. Zing!\r\n*(dances The Charleston, dodges tomato, gets dragged out of bungalow by giant cane)*\r\n\r\nStunt City Itch - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/sPmSNLS2DkmeLl_TX6xmDg#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtariddle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/77049994-21f9-4236-9880-5e18a9e6f159.png/sm/gtaracethumb.png","duration":738,"publication_date":"2017-11-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds149","changefreq":"weekly","video":[{"title":"2017:E149 - EA SHOULD LOSE STAR WARS? - Dude Soup Podcast #149","description":"Get 15% off your MVMT watch today by going to http://www.mvmt.com/DudeSoup\r\nAnd get 20% off your Tipsy Elves order at http://www.tipsyelves.com and use code \"dudesoup\" at checkout!\r\n\r\nThis week we dive into even more Star Wars Battlefront 2 drama including:\r\n6:20 - EA decided to remove microtransactions.\r\n10:40 - the game's poor retail numbers.\r\n15:45 - Lawrence's take on the single player campaign.\r\n23:30 - Fake death threats.\r\n30:10 - Why all the monetization in games in the first place?\r\n43:45 - \"Bruce Reads\".\r\n50:45 - Hard Nettin'.\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nFind Funhaus merch here! http://bit.ly/fhmerch\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/43c2a2f4-828a-4c59-8b5d-a43ffe2352eb.png/sm/ds149b.png","duration":4007,"publication_date":"2017-11-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-ps149","changefreq":"weekly","video":[{"title":"2017:E149 - WE ARE UNOBTAINABLE","description":"All new fan art and comments just for Rooster Teeth First Members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-ps149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/83275c66-adce-43b0-bbba-64e37eab0aea.png/sm/ps145thumb.png","duration":3482,"publication_date":"2017-11-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh144","changefreq":"weekly","video":[{"title":"2017:E144 - OUR BIG COMEBACK? - Open Haus #144","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nI guess if Mel Gibson can come back from years of racism, sexism, verbal abuse, Lethal Weapon 4, homophobia, and threats of physical violence, anything is possible.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttp://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0c62d331-a866-47b0-bebd-de99ee3f9cda.jpg/sm/oh144thumb.jpg","duration":847,"publication_date":"2017-11-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo143","changefreq":"weekly","video":[{"title":"2017:E143 - KING DONG - Demo Disk Gameplay","description":"INT - MTV OFFICES 1992\r\n\"Alright gentlemen, I hear there's a pubescent kid in Southern California named Bones who's just starting to figure out his sexuality. What can we do to reeeaaaally throw a wrench in those works?\"\r\nAnd so, Aeon Flux was born.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/elysewillems\r\nhttps://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ca6ae19-e6ba-48e3-a606-5be49c339b2f.png/sm/demo143.png","duration":801,"publication_date":"2017-11-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-destiny2p2","changefreq":"weekly","video":[{"title":"2017:E294 - TITAN UP - Destiny 2 Part 2","description":"The entire staff here gathers around Jacob to ask about Destiny like the're back in junior high and he's the first one of their friends to touch a boobie. \r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-destiny2p2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/92aeb253-0f24-45f1-bda9-62e919c40aa1.png/sm/destthumb2.png","duration":613,"publication_date":"2017-11-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-avatar2","changefreq":"weekly","video":[{"title":"2017:E293 - AVATAR ASSISTED LIVING - Avatar Gameplay Part 2","description":"I'll bet you the Avatar sequel's opening weekend box office totals that James Cameron can't even get aroused anymore unless his partner is dressed in a full motion capture suit, hissing at a tennis ball hanging from a stick. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-avatar2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ca84ed0-4b57-4780-917a-94f2258a2b0a.png/sm/AV2THUMB.png","duration":587,"publication_date":"2017-11-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausgeo","changefreq":"weekly","video":[{"title":"2017:E30 - THIS STORM BLOWS - Movie Podcast","description":"Go to http://www.leesa.com/filmhaus and enter the promo code \"filmhaus\" to get a $100 discount off of your mattress purchase!\r\n\r\nThis week the boys are joined by Adum of Your Movie Sucks to pick apart Hollywood's latest disaster movie \"Geostorm\" including:\r\n3:23 - The plot.\r\n15:35 - Why the plot is stupid.\r\n20:25 - This plot compared top other stupid plots.\r\n34:00 - Funhaus Presents: BudHaus: Best Buds Bud Watch update.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/2gay2lift\r\nhttps://twitter.com/jonsmiff\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausgeo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/76c1d30b-f538-4166-8981-50297d10d680.png/sm/geothumb.png","duration":2164,"publication_date":"2017-11-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fightgods","changefreq":"weekly","video":[{"title":"2017:E295 - IMMORTAL KOMBAT - Fight of Gods Gameplay","description":"Apologies in advance for any offense this gameplay may cause Christians, Jews, Buddhists, uh... Zuesians, and... hmm... I don't know.... I want to say Norsementologists? Either way, from now I'm saying my prayers to that lady with the cleavage who throws wheat at people. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttps://twitter.com/ElyseWillems\r\nhttps://twitter.com/jonsmiff\r\nhttps://twitter.com/filmDstryr\r\nhttps://twitter.com/Omarcito\r\nhttps://twitter.com/_JacobFullerton\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fightgods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13fdc459-2d55-48e5-877b-1206f5d23d0d.png/sm/godfightthumb2.png","duration":1060,"publication_date":"2017-11-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-com97","changefreq":"weekly","video":[{"title":"2017:E97 - NEXT TOP MODELS? - Funhaus Comments #97","description":"My own modeling days were fraught with bouts of body dysmorphia, drug addiction, and crippling self-hatred. Plus, I could never get the decals to stick right. Wait. Did I say modeling? I meant model building.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-com97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f3a7bbd2-5802-4c61-91c3-41484c2da076.jpg/sm/com97thumb.jpg","duration":497,"publication_date":"2017-11-16T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astro-3","changefreq":"weekly","video":[{"title":"2017:E291 - LOST BOYS - Astroneer Gameplay Part 3","description":"Did you know that in addition to Kessel, spice mines could be found in several other planetary systems throughout the galaxy, including those of Ryloth and Naboo? \r\nWait. You did? Really? Oh man, that's too bad. Don't worry, I'm sure things are bound to turn around for you soon. Hang in there.\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astro-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/48b22f73-a0ac-4b60-bc98-126579815e2c.png/sm/astro3thumb.png","duration":1026,"publication_date":"2017-11-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-asscreed2","changefreq":"weekly","video":[{"title":"2017:E292 - JUST DESERTS - Assassin's Creed Origins Gameplay Pt. 2","description":"Thank you to Ubisoft for sponsoring this video!\r\nClick here http://ubi.li/8rr4u to check out the game for yourself!\r\nESRB Rated M\r\n\r\nWe're all doing our best to get James through these tough times but please, if you really want to help him, DO NOT pledge money to his \"Save the DUCU\" kickstarter. Healing cannot begin without acceptance.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-asscreed2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1d83d91b-5835-4065-99b6-803ab142f1bc.png/sm/asscreedthumb2.png","duration":550,"publication_date":"2017-11-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtapubgprank","changefreq":"weekly","video":[{"title":"2017:E289 - GTA CHICKEN DINNER - GTA 5 Gameplay","description":"\"Mr. Cameron, the studio is really on us about giving the audience something new in the Avatar sequels.\"\r\n\"S***. Wait. Okay, so there's this stuff called uh... Impossiblonium Oxide and it only exists in... uh... under this... You know what? Come back in an hour.\"\r\n(snorts line of ground narwhal horn, strikes christ pose, falls backwards into sensory deprivation tank full of braided ponytails)\r\n\r\nBattlegrounds(PUBG) - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/c1vLUGzNJE29ZSP2X2FlTg#\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtapubgprank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7ea8fa6c-9c59-4a23-b81f-a6ffd2d44438.png/sm/gtapub1.png","duration":633,"publication_date":"2017-11-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-snes-classic-gameplay","changefreq":"weekly","video":[{"title":"2017:E45 - Drunk SNES Classic Gameplay","description":"The 2-hour descent into madness has arrived, and Randy Newman is here to hold your hand.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-snes-classic-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc8abd5a-ba1d-4c8e-83f0-7560b21a90a1.jpg/sm/fhnd.jpg","duration":8297,"publication_date":"2017-11-14T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds148","changefreq":"weekly","video":[{"title":"2017:E148 - EA Greed KILLED Star Wars? - Dude Soup Podcast #148","description":"Get the Dollar Shave Club Starter Set for just $5 at http://www.dollarshaveclub.com/dude\nAnd get 25% off your Stitch Fix box when you keep all 5 items at http://www.stitchfix.com/dudesoup!\n\nThis week the gang sits down to play a little Battlefront 2 and discuss whether it's fair to have so much game content require so much time and money to unlock. There's also some hot, breaking(now two day old) news from EA, and another disturbing round of Hard Nettin'! \n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\nFind Funhaus merch here! http://bit.ly/fhmerch\n\n\n\nSOURCES:\n[reddit] Time / Money Estimates for Unlocks: https://np.reddit.com/r/StarWarsBattlefront/comments/7cimsb/i_calculated_the_estimated_time_required_to/\n[reddit] Most Downvoted Comment in reddit History: https://www.reddit.com/r/StarWarsBattlefront/comments/7cff0b/seriously_i_paid_80_to_have_vader_locked/dppum98/\n[Variety] Disney Closes Disney Interactive: http://variety.com/2014/digital/news/disney-interactive-lays-off-700-employees-1201126908/\n[Kotaku] Disney Cancels Disney Infinity: https://kotaku.com/disney-cancels-disney-infinity-1775846793\n[Kotaku] The Collapse Of Visceral's Ambitious Star Wars Game: https://kotaku.com/the-collapse-of-viscerals-ambitious-star-wars-game-1819916152\n[EA Blog] EA Secures Exclusive Star Wars License: https://www.ea.com/news/ea-and-disney-team-up-on-new-star-wars-games\n[CNBC] Electronic Arts shares drop after Wall Street raises concerns over 'Star Wars' game sales: https://www.cnbc.com/2017/11/01/electronic-arts-shares-drop-after-wall-street-raises-concerns-over-star-wars-game-sales.html\n\n\n\nFollow us on Twitter: \nhttp://twitter.com/adamkovic\nhttp://twitter.com/jameswillems\nhttp://twitter.com/sirlarr\nhttp://twitter.com/elysewillems","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f3e05ad9-62aa-4dd4-bb32-b564e772b7c5.png/sm/by5o3ET.png","duration":4532,"publication_date":"2017-11-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-ps148","changefreq":"weekly","video":[{"title":"2017:E148 - WE ARE BENT","description":"2017:E148 - WE ARE BENT","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-ps148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3bea945d-f0d3-4a6e-ae8f-6de2462eb013.png/sm/ps148thumb.png","duration":3110,"publication_date":"2017-11-14T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh143","changefreq":"weekly","video":[{"title":"2017:E143 - OUR MARIO DLC? - Open Haus #143","description":"Start your free trial today! Go to Squarespace.com/openhaus to get 10% off your first purchase!\r\n\r\nAsk us questions here!\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nI always imagine that if a person of color ever tried to join Farmersonly.com, an alarm would sound a bunker somewhere and the entire staff would flee in terror as one brave man stayed behind to blow up the servers like Bruce Willis at the end of Armageddon.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/68e07124-8c0a-4526-9755-0edd76aef868.jpg/sm/ohthumb.jpg","duration":763,"publication_date":"2017-11-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd142","changefreq":"weekly","video":[{"title":"2017:E142 - SK8ER BOI - Demo Disk Gameplay","description":"Oh man, I'd really like to make fun of that singer from Static-X but in the early 2000s I was only about three inches of spikes and 4 STDs away from being that guy.\r\n\r\nFollow us on Twitter: \r\nhttps://twitter.com/jameswillems\r\nhttps://twitter.com/brucegreene\r\nhttps://twitter.com/adamkovic\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/67a2e76a-0894-4ffc-bb8b-a71e02ed2748.png/sm/dd142thumb.png","duration":738,"publication_date":"2017-11-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-destiny2p1","changefreq":"weekly","video":[{"title":"2017:E287 - GHOST STORIES - Destiny 2 Gameplay","description":"I sincerely hope that when the day comes, that I love my child half as much as Jacob loves the \"glimmer-plips\" and \"space-blorps\" or whatever of Destiny 2. \r\nI'm not that optimistic. \r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-destiny2p1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/69b7e388-373e-44fd-a3f2-87ca2bd63daf.png/sm/FHThumb18copy.png","duration":669,"publication_date":"2017-11-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-surfskate","changefreq":"weekly","video":[{"title":"2017:E286 - WHOEVER WINS, WE LOSE - Surfers VS Skaters Gameplay","description":"I was gonna make up a bunch of stupid Inline Skating trick names for this description but then I stumbled across an actual list of them on a website from 1997 and realized that I could never do better than ACID DROP, FAKIO BIO 540, X-GRIND, AND TOPSIDE MISZOU ROYALE. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-surfskate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fab235cc-bf63-40c8-9163-601173a37384.png/sm/fhthumbSurfersvSkaters.png","duration":605,"publication_date":"2017-11-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-fhdisney","changefreq":"weekly","video":[{"title":"2017:E29 - DISNEY OWNS EVERYTHING? - Movie Podcast","description":"Check out this week’s menu and get $30 off of your first order — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\nThis week we pay tribute you everybody's favorite infallible corporate overlords and discuss:\r\n2:35 - The recent controversy of Disney blocking certain journalists from screenings.\r\n10:10 - Disney's side of the story.\r\n13:40 - The response from the rest of Hollywood and the press.\r\n16:00 - Do corporations have a responsibility to be \"good\"?\r\n30:15 - Funhaus Presents BudHaus: Best Buds Bud Watch Episode 5: Air Bud Spikes Back.\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/jonsmiff\r\nhttp://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-fhdisney","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/531bb9e7-f4db-4e58-afbd-18e5a300781f.png/sm/disbudthumb.png","duration":2018,"publication_date":"2017-11-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-vrdie","changefreq":"weekly","video":[{"title":"2017:E285 - FAULTY INTELLIGENCE - I Expect You to Die Gameplay","description":"Top 5 Least Popular \"Bond Girls\":\r\n5. Ivana Dropadigit\r\n4. Debbie Handjoberstein\r\n3. Acup McDaddyissues\r\n2. Penelope Criesrightafter\r\n1. Denise Richards\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-vrdie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b7ac468c-bfa8-4efd-8a8f-a4029ff909d6.png/sm/fhthumbiexpectyoutodiev220171012.png","duration":1119,"publication_date":"2017-11-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments96","changefreq":"weekly","video":[{"title":"2017:E96 - TRIGGER WARNING? - Funhaus Comments #96","description":"What's the world coming to when a YouTube channel can't make fun of the deaf, and the blind, and abortions, and AIDS, and most races, and all religions, and dead celebrities, and dying celebrities, and dying non-celebrities, and, wait, did I say AIDS already, and Malala Yousafzai probably, and... look, I've got s*** to do. I'll finish this later.\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/thenasacova\r\nhttps://twitter.com/real_rtbones\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/acd8d66b-cccf-4e8f-b5ee-5f5fc338529c.jpg/sm/com96thumb.jpg","duration":675,"publication_date":"2017-11-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-asscreed1","changefreq":"weekly","video":[{"title":"2017:E288 - PYRAMID SCHEMES - Assassin's Creed Origins Gameplay","description":"Thank you to Ubisoft for sponsoring this video!\r\nClick here http://ubi.li/8rr4u to check out the game for yourself!\r\nESRB Rated M\r\n\r\nGreat news, guys! Michael Fassbender will be returning as Aguilar in the as yet untitled Assassin's Creed movie sequel. Sadly, his massive, pendulous member will not due to a prior commitment to appear in my mind every time I close my eyes. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-asscreed1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/08f9df21-8968-46c3-b310-a779f8a2178a.png/sm/FHThumb18cop.png","duration":737,"publication_date":"2017-11-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj4","changefreq":"weekly","video":[{"title":"S1:E4 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 4","description":"The aftermath of the Twits’ encounter with the lagoon monsters proves dire for Mayor Myri, who just can’t seem to shake his Dwarven denizens. Next, a pressing puzzle demands a cunning solution when the Twits find themselves trapped in a veritable hallway of horrors. \r\n\r\nFollow us on Twitter:\r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/mattseditbay\r\nhttps://twitter.com/filmDstryr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/\r\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3e45a08-8b55-4b63-b494-04bc4f1a9954.png/sm/Part_4.png","duration":4100,"publication_date":"2017-11-09T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaspook1","changefreq":"weekly","video":[{"title":"2017:E284 - TAG, YOU'RE DEAD! - GTA 5 Gameplay","description":"What's the name of that version of \"Tag\" you play as a kid where you ask the other guys if they wanna look at your Garbage Pail Kids cards and then they laugh and slam you into the tether-ball pole and steal your Garbage Pail Kids cards and then run away and you have to chase them but you're too out of breath to catch up before they throw your Garbage Pail Kids cards down the storm drain and your mom has to come and pick you up from school early because you won't stop crying?\r\n \r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/brucegreene\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaspook1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/691ef910-fc6f-4856-becc-1329133ec8d7.png/sm/fhthumbgtaspookumspt1.png","duration":1004,"publication_date":"2017-11-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtageoff2","changefreq":"weekly","video":[{"title":"2017:E283 - FOOT FETISH FUNNY CARS - GTA 5 Gameplay","description":"Foot play in the bedroom? No thank you! The last thing I need is one more body part's underwhelming performance to apologize for. \r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/elysewillems\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttps://twitter.com/GeoffLRamsey\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtageoff2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aede81e8-b6e3-4e62-8605-1bf7d6b05b31.png/sm/FHThumb18copy21.png","duration":596,"publication_date":"2017-11-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude-soup-podcast-147-temporary-stream-version","changefreq":"weekly","video":[{"title":"2017:E147 - YOUTUBE CONTROLLED BY BOTS? - Dude Soup Podcast #147","description":"Get $25 off your first Blue Apron wine box by going to http://www.blueapron.com/soupwine\r\nGet $50 off any Casper mattress by visiting http://www.casper.com/dudesoup and using promo code dudesoup at checkout.\r\n\r\nDid you really click on this video? Are you really reading this description? Is this world anything more than the byproduct of a robot's fever dream? I dunno but here's some stuff we talk about today: \r\n4:25 - Casey Neistat and YouTube demonetization issues.\r\n27:00 - Children's content being made by bots.\r\n30:50 - Bots and algorithms at work outside of YouTube.\r\n37:45 - Targeted media vs random exploration.\r\n46:45 - Hard Nettin'.\r\n56:30 - New merch.\r\n59:30 - Upcoming content announcements.\r\n\r\nThumbnail art -- Lun-acy on Deviantart: https://lun-acy.deviantart.com/art/Microchip-mind-control-442677235\r\n\r\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\r\n\r\nFind Funhaus merch here! http://bit.ly/fhmerch\r\n\r\nFollow us on Twitter: \r\nhttp://twitter.com/adamkovic\r\nhttp://twitter.com/jameswillems\r\nhttp://twitter.com/sirlarr\r\nhttp://twitter.com/elysewillems","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude-soup-podcast-147-temporary-stream-version","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/24003c6e-0128-4757-beb8-3167f5af9b17.png/sm/ds147thumb.png","duration":3819,"publication_date":"2017-11-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-post-show-2017-we-are-phantoms","changefreq":"weekly","video":[{"title":"2017:E147 - WE ARE PHANTOMS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/dude-soup-post-show-2017-we-are-phantoms","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e4f84884-007c-4def-9edc-e68da657cb72.png/sm/ps147thumb.png","duration":2572,"publication_date":"2017-11-07T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-cuphead-gameplay","changefreq":"weekly","video":[{"title":"2017:E44 - Drunk Cuphead Gameplay","description":"I've got a Fullhaus 'sclusive for you folks. Let the drunken Cupheading commence!","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-cuphead-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f1024db-437a-4237-a302-b3bf47ec7eb3/sm/1533704-1509754653210-fh_thumb_drunkhead.png","duration":1606,"publication_date":"2017-11-06T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-play-pals-1","changefreq":"weekly","video":[{"title":"2018:E3 - Best of Achievement Hunter - Play Pals #1","description":"This is the best of Play Pals #1, where fatherhood is put through a test run in Who's Your Daddy, family bike rides are pushed to the extreme in Guts and Glory, and the guys go on the most phallic of dates in Genital Jousting.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-play-pals-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/128e71bb-6037-4c3e-a990-d5a4dbe5d3f4.png/sm/020118BestofPlayPals.png","duration":1479,"publication_date":"2018-02-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-297-sky-factory-part-36","changefreq":"weekly","video":[{"title":"2017:E410 - Minecraft - Episode 297 - Sky Factory Part 36","description":"It's moving day in the sky factory, as half the crew find new locations to settle down.\r\n\r\nOn today's episode, Geoff starts a new life away from the dragon-infested chicken farm, newlyweds Michael and Gavin start furnishing their \"secret\" lad den, Lindsay builds a fiendish contraption, Jeremy gets locked out, Ryan becomes an Amazon employee, and Jack makes some actual progress.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-297-sky-factory-part-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/39b13039-592e-49c4-95be-045dd52c1cbc.jpg/sm/020118SkyFactory36.jpg","duration":3635,"publication_date":"2018-02-01T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-sea-of-thieves-sneaky-boatjacking","changefreq":"weekly","video":[{"title":"2018:E2 - Sea of Thieves - Sneaky Boatjacking","description":"Matt and Geoff set sail in Sea of Thieves closed beta with a mission to sneak onto another pirate's boat and take off with everything they've got.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-sea-of-thieves-sneaky-boatjacking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07815242-9c33-45a5-b2ac-1ceb47ed3985.jpg/sm/seathingstodo.jpg","duration":290,"publication_date":"2018-01-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-call-of-duty-wwii-sensitivity-training","changefreq":"weekly","video":[{"title":"2017:E409 - Call of Duty WWII - Sensitivity Training","description":"Achievement Hunter and Millie do some sensitivity training in Call of Duty WWII and witness Ryan's transformation into The Shoveler.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-call-of-duty-wwii-sensitivity-training","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e8b191f3-ff4d-40e8-89a5-5fe641e03c68.png/sm/LPCoDSensitivity.png","duration":2507,"publication_date":"2018-01-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-shadow-of-the-colossus-remasted-the-first-three","changefreq":"weekly","video":[{"title":"2017:E84 - Shadow of the Colossus Remastered: The First Three","description":"Thanks to PlayStation for giving us the game early! \r\nRyan and Lindsay play Shadow of Colossus for the first time, while Jeremy and Michael drink moonshine and give them tips.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-shadow-of-the-colossus-remasted-the-first-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/91088d7f-ddf2-4558-9ad8-bc9d82efd118.jpg/sm/THUMBLWShadowoftheColossusv2.jpg","duration":2414,"publication_date":"2018-01-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-sea-of-thieves-pirate-skirmishes-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E408 - Sea of Thieves: Pirate Skirmishes - AH Live Stream","description":"The crew set out on the high seas in search of buried treasure. But can they hold it together long enough to avoid rival pirates and shark infested waters? This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-sea-of-thieves-pirate-skirmishes-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/54745511-7600-4dcf-aa97-18af08174907.jpg/sm/pubg_stream_thumb.jpg","duration":2446,"publication_date":"2018-01-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-geoff-gets-wood","changefreq":"weekly","video":[{"title":"2017:E58 - Geoff Gets Wood","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU\r\n\r\nIt's AHWU 406! Today's episode goes a little more mobile. Geoff gets some wood, makes fun of Brandon, and delivers some sheep.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-geoff-gets-wood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2ed5dca8-0b56-42cc-99e3-20769e38e3d0.jpg/sm/ahwuthumbv1.jpg","duration":676,"publication_date":"2018-01-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-battle-buddies-party-hard","changefreq":"weekly","video":[{"title":"2018:E2 - Battle Buddies - Party Hard","description":"Battle Buddies, your task is to go undercover and infiltrate Funhaus' recruitment rooftop party. Use caution and kill swiftly. Good luck.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-battle-buddies-party-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be2885d4-fcf6-4807-bd14-3c25088e2896.jpg/sm/BBPARTYHARD.jpg","duration":556,"publication_date":"2018-01-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gang-beasts-officer-quiff","changefreq":"weekly","video":[{"title":"2017:E406 - Gang Beasts: Officer Quiff","description":"The gang's back playing Gang Beasts! Officer Quiff's out to arrest some thugs (as long as he doesn't get pounded in the process).","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gang-beasts-officer-quiff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/427cbc11-f040-4b87-ac0d-e05ff2f03ad2.jpg/sm/GANGBEASTSTHUMB.jpg","duration":2230,"publication_date":"2018-01-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-call-2017-last-call-113","changefreq":"weekly","video":[{"title":"2017:E113 - The Aftermath - Last Call #113","description":"The AH Crew stand up outside to talk about the aftermath of the table destruction, Jeremy’s camping adventure, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/last-call-2017-last-call-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/071eea2e-5a9d-447e-b1e8-9d338cfe6bfd.jpg/sm/OFF113psTHUMB.jpg","duration":781,"publication_date":"2018-01-28T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-the-bogdan-problem-heist-doomsday-heist-6","changefreq":"weekly","video":[{"title":"2017:E407 - GTA V - The Bogdan Problem: Heist - Doomsday Heist (#6)","description":"We use the Strombergs to scan a submarine, board it through an airlock, and disable it, while holding off enemy agents in the Avenger above.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-the-bogdan-problem-heist-doomsday-heist-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/182e472c-88fc-4458-9682-e82fea7b75d6.jpg/sm/Thumb012818GTAVDoomsdayPart6v2.jpg","duration":3031,"publication_date":"2018-01-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-113","changefreq":"weekly","video":[{"title":"2017:E113 - The Table Gets Destroyed - Off Topic #113","description":"The AH Crew sit down to talk about the Off Topic table destruction, Sea of Thieves, professional wrestlers, and more on this week's Off Topic!\r\n\r\nThis episode originally aired January 26, 2018 and is sponsored by MeUndies (http://bit.ly/2EfibM0) and Dollar Shave Club (http://bit.ly/2EfjpqA)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4cdbdf40-e24b-4bac-9e1e-6e4bc21f096b.jpg/sm/OFF113THUMB.jpg","duration":7226,"publication_date":"2018-01-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-mario-kart-8-deluxe-race-3","changefreq":"weekly","video":[{"title":"2017:E405 - Mario Kart 8 Deluxe: Race 3","description":"Two new racers join the fray in part three of our Mario Kart 8 Deluxe series.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-mario-kart-8-deluxe-race-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/823e0c5c-bb5f-453b-af22-3a4fd6686fce.jpg/sm/Thumb012718MarioKartPt3.jpg","duration":2654,"publication_date":"2018-01-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2018-screen-cheat","changefreq":"weekly","video":[{"title":"2018:E1 - Screen Cheat","description":"Geoff, Ryan, Jeremy, and Jack get to play an old favorite, Screen Cheat. Who will cheat the best?","player_loc":"https://roosterteeth.com/embed/rouletsplay-2018-screen-cheat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cccf1a58-d734-41fa-bedf-c30a02066077.jpg/sm/RLPSCREENCHEAT.jpg","duration":723,"publication_date":"2018-01-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-hitman-pipe-dreams","changefreq":"weekly","video":[{"title":"2017:E83 - Hitman - Pipe Dreams","description":"Ryan, Jack, Gavin, and Michael each take turns at escalation missions in Hitman. As each task gets more complex, Ryan and Gavin express an obsession for a certain pipe.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-hitman-pipe-dreams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/45a5fbff-0e9e-455e-8d47-ac8f0e12fbb1.png/sm/RTLWHitmanEscalation.png","duration":4850,"publication_date":"2018-01-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-ryan-the-fire-guy","changefreq":"weekly","video":[{"title":"2018:E2 - Ryan the Fire Guy","description":"Ryan becomes a real American as he accidentally torches a building down with reckless abandon.\r\n\r\nOriginal audio from: https://www.youtube.com/watch?v=itUUepj4jV8. Animated by Jaime Aguilar.","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-ryan-the-fire-guy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fb8204c8-1c7d-4211-95cf-d88cc1a23d7c.jpg/sm/012518AnimatedRyanFireGuy.jpg","duration":116,"publication_date":"2018-01-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-296-sky-factory-part-35","changefreq":"weekly","video":[{"title":"2017:E404 - Minecraft - Episode 296 - Sky Factory Part 35","description":"It's the happiest of days in the sky factory, and Michael and Gavin get married (specifically in Minecraft).\r\n\r\nOn today's episode, Jeremy finds himself trapped in Simple Geoff's body, Jack makes lots of fancy presents, Ryan can't stop stealing rings, Gus stops by to officiate a wedding, and Michael and Gavin get married.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-296-sky-factory-part-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/efc521c8-f93d-47af-ad2c-ab27b44de6e7.jpg/sm/012518SkyFactory35.jpg","duration":3198,"publication_date":"2018-01-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2018-gta-v-rocket-race","changefreq":"weekly","video":[{"title":"2018:E1 - GTA V - Rocket Race","description":"A team with cars and flare guns must get across Los Santos while pursued by another team with Savage helicopters.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2018-gta-v-rocket-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f5892b41-7419-4113-a8d3-121831b50f62.jpg/sm/012418TTDRocketRaceThumb.jpg","duration":1543,"publication_date":"2018-01-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-playerunknown-s-battlegrounds-miramar","changefreq":"weekly","video":[{"title":"2017:E403 - PlayerUnknown's Battlegrounds - Miramar","description":"Ryan, Jeremy, Michael, and Gavin are leaving the land that they once knew and conquered for the new PUBG map, Miramar.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-playerunknown-s-battlegrounds-miramar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5ef7b574-958a-4908-9e5d-670d59418752.png/sm/LPPUBGNewMap.png","duration":2000,"publication_date":"2018-01-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-high-intensity-snacking","changefreq":"weekly","video":[{"title":"2017:E26 - High Intensity Snacking","description":"This new game is sweet. All you need is some baked goods and a baseball bat.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-high-intensity-snacking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/86c802e0-4f2f-4fdd-a02a-a3c03a218169.jpg/sm/BTGHighIntenseSnackingv1.jpg","duration":501,"publication_date":"2018-01-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-meet-the-garbos","changefreq":"weekly","video":[{"title":"2017:E402 - Worms WMD: Meet The Garbos","description":"Ryan, Michael, Gavin, and Lindsay kick off the year with explosive sheep, mechs, and the introduction of the Garbo Family! Grab the brand new Achievement Hunter shirts: http://bit.ly/2EUKWg8","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-meet-the-garbos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8f3828e1-916c-45b1-b0e4-6ce783ca2673.jpg/sm/wormswmdv2.jpg","duration":1639,"publication_date":"2018-01-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-normal-human-face-simulator","changefreq":"weekly","video":[{"title":"2017:E30 - Normal Human Face Simulator","description":"Michael and Gavin are just a couple normal human faces doing normal human face things like biting each other's normal human faces off.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-normal-human-face-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/232f20b3-ed7f-4be6-b76a-bc1d7bf611a3.png/sm/012218PPNormalHumanFaceSim.png","duration":796,"publication_date":"2018-01-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-jeopardy-jack-facts","changefreq":"weekly","video":[{"title":"2017:E400 - Jeopardy! - Jack Facts (#6)","description":"The boys play Alex Trebek's favorite paycheck, Jeopardy! Turn out Christopher Columbus was kind of a dick. King Henry VII was not a fan.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-jeopardy-jack-facts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/919294c3-e858-4c81-8381-a78c190ac3ba.jpg/sm/012218LPJeopardyJackFacts.jpg","duration":1922,"publication_date":"2018-01-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-golden-gift","changefreq":"weekly","video":[{"title":"2017:E57 - The Golden Gift","description":"It's AHWU 405! Sponsored by the Rooster Teeth store. Go to store.roosterteeth.com to buy all the new Achievement Hunter merch! \r\n\r\nOn today's AHWU, Jack wears the new AH girdle, Michael gets a golden gift, and Jeremy receives a monster truck.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-golden-gift","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d360ac29-dbed-4d72-ae8d-e79ccb52b6c1.jpg/sm/AHWU405.jpg","duration":713,"publication_date":"2018-01-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-call-2017-last-call-112","changefreq":"weekly","video":[{"title":"2017:E112 - Friend Mode Engaged - Last Call #112","description":"The AH Crew sit down to talk about the breaking point, Yoshi’s Woolly World, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/last-call-2017-last-call-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/76ab0c94-3da4-47f2-b969-94676a34e7aa.jpg/sm/OFF112psTHUMB.jpg","duration":1200,"publication_date":"2018-01-21T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-the-bogdan-problem-setup-doomsday-heist-5","changefreq":"weekly","video":[{"title":"2017:E399 - GTA V - The Bogdan Problem: Setup - Doomsday Heist (#5)","description":"We steal the Avenger from Merryweather, rescue Agent ULP at the foundry, and use water cannons on the RCV to secure stolen hard drives.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-the-bogdan-problem-setup-doomsday-heist-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1e1d3da0-2ecd-4ab9-987b-436f017d45a5.jpg/sm/ThumbGTAVDoomsdayPart5v2.jpg","duration":3077,"publication_date":"2018-01-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-toreba-crane-game","changefreq":"weekly","video":[{"title":"2017:E397 - Toreba Crane Game","description":"Thanks to Toreba for sponsoring this video! Get your first five tries free here: http://bit.ly/2CWqDxK.\r\nRyan thinks he has what it takes to get all the prizes from the Toreba Crane Game, but how many tries will it take?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-toreba-crane-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1ab698c9-3b61-4c54-96fc-2fe8d2e6ae76.jpg/sm/LPTorebaCraneGamev3.jpg","duration":2537,"publication_date":"2018-01-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-112","changefreq":"weekly","video":[{"title":"2017:E112 - The Achievo Drinking System - Off Topic #112","description":"The AH Crew and special guest Chad James sit down to talk about straws, Nintendo Labo, crying during movies, and more on this week's Off Topic!\r\nThis episode originally aired January 19, 2018 and is sponsored by Felix Gray (http://bit.ly/2DmNsLO) and MVMT (http://bit.ly/2kg8JSD)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/742a6fd8-d1aa-4c3c-92e4-02bbf2465a79.jpg/sm/OFF112THUMB.jpg","duration":9370,"publication_date":"2018-01-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-mario-kart-8-deluxe-race-2","changefreq":"weekly","video":[{"title":"2017:E401 - Mario Kart 8 Deluxe: Race 2","description":"The races continue as the crew adds a new racer to the mix.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-mario-kart-8-deluxe-race-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/98d00d12-8952-4f52-abab-0891739d82dc.jpg/sm/MARIOKARTPART2Thumb.jpg","duration":1681,"publication_date":"2018-01-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-the-walls-between-us-12","changefreq":"weekly","video":[{"title":"2017:E398 - 7 Days to Die: The Walls Between Us (#12)","description":"Whether it's a skyscraper, a massive canyon, or a house on top of a giant spire, our survivors are divided by walls. \r\nIn this episode: Jeremy and Ryan build a lot of ladders, Jack finds himself under house arrest, Gavin is alone and afraid, and Michael goes to rescue both of them.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-the-walls-between-us-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7c0c6829-c8c7-4d1f-a809-419a2d7bfce2.jpg/sm/7Days16_Ep12_v3.jpg","duration":2756,"publication_date":"2018-01-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2018-best-of-achievement-hunter-2017","changefreq":"weekly","video":[{"title":"2018:E1 - Best of Achievement Hunter - 2017","description":"Those good old Achievement Hunter fellows have had quite the memorable year for themselves. Between all the Sky Factory Innovations/Shenanigans, the countless number of Gmod Betrayals, the GTA V Sprunks n' Bips, the numerous failed attempts to capture Bigfoot, and the constant threat of murder by Jason in Friday the 13th, AH has proven time and time again to be a dysfunctional albeit entertaining bunch of goofy idiots. And that's why we love 'em. This is the Best of Achievement Hunter 2017!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2018-best-of-achievement-hunter-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b6fef92-f6c4-4d60-b1a4-2c27a7ca0f22.jpg/sm/011818BestofAH2017.jpg","duration":10527,"publication_date":"2018-01-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-295-text-to-speech","changefreq":"weekly","video":[{"title":"2017:E396 - Minecraft - Episode 295 - Text-to-Speech","description":"The gang tries out cross-platform play in the Better Together version of Minecraft, then promptly gets distracted with the new text-to-speech function.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-295-text-to-speech","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2d152ac3-fc53-4baf-a247-9edce6853eed.jpg/sm/011818MCTextToSpeech.jpg","duration":3088,"publication_date":"2018-01-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-v-night-of-the-mantis","changefreq":"weekly","video":[{"title":"2017:E52 - Halo 5 - Night of the Mantis","description":"The boys hop into Halo V to play Mantis horde mode. If even one mech reaches their base, it's game over.Map - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=Julianoz1224#ugc_halo-5-guardians_xbox-one_mapvariant_Julianoz1224_6bf32b59-f7e6-490c-a4d5-b75476941f41\n\n\n\nGame - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=Julianoz1224#ugc_halo-5-guardians_xbox-one_gamevariant_Julianoz1224_a8b379ee-d077-4f42-9a57-7c092a8b3998","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-v-night-of-the-mantis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2ddce07c-ef15-40f6-8bae-08747f7cbce3.jpg/sm/TTDNIGHTOFMANTIS.jpg","duration":1575,"publication_date":"2018-01-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-siege-white-noise","changefreq":"weekly","video":[{"title":"2017:E395 - Rainbow Six: Siege - White Noise","description":"The guys check out the newest operators in Rainbow 6 Siege's White Noise DLC.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-siege-white-noise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/981c252c-50ac-4a93-89d0-ab72d278d9da.jpg/sm/011718SiegeWhiteNoise.jpg","duration":1961,"publication_date":"2018-01-17T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-who-s-your-santa","changefreq":"weekly","video":[{"title":"2017:E82 - Who's Your Santa?","description":"Ryan, Michael, Linsday, and Jeremy sit down to play Who's Your Santa, a game where, well, we actually don't know what's going on. Who is this Santa, and why does he have so many adult toys?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-who-s-your-santa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d31daaa4-7d5a-4402-91d9-2e71609d576b.jpg/sm/LW_WhosYourSanta_v1.jpg","duration":2700,"publication_date":"2018-01-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-playerunknown-s-battlegrounds-lightning-chicken-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E394 - PLAYERUNKNOWN'S Battlegrounds - Lightning Chicken - AH Live Stream","description":"Gavin, Michael, Jeremy, Ryan, and Alfredo dive into PLAYERUNKNOWN'S Battlegrounds in search for the illusive chicken dinner. Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get a DSC Starter Set for just $5.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-playerunknown-s-battlegrounds-lightning-chicken-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5457ecc7-b62a-49e9-b341-0348d3047b72.jpg/sm/pubg_stream_thumb.jpg","duration":3041,"publication_date":"2018-01-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-the-balcony","changefreq":"weekly","video":[{"title":"2017:E29 - The Balcony","description":"The Red Shirt Group are up to no good. It's up to Michael and Gavin to drop, fling, and hurl objects off balconies to kill them.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-the-balcony","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4955ea72-4972-4d70-9438-f7a45a7d43b6.png/sm/PPTheBalcony.png","duration":3243,"publication_date":"2018-01-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-it-s-quiz-time","changefreq":"weekly","video":[{"title":"2017:E392 - It's Quiz Time","description":"It's time to test the minds of Achievement Hunter with another quiz game. It's quiz time!","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-it-s-quiz-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7cab9d60-b867-4e7e-9c58-bd4ebc0daeb4.jpg/sm/LPQUIZTIME.jpg","duration":3390,"publication_date":"2018-01-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-jeremy-is-bacon","changefreq":"weekly","video":[{"title":"2017:E56 - Jeremy is Bacon","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\r\n\r\nJack's out of town, so Jeremy and Michael are using AHWU to live as their truest selves. Michael becomes a famous beat-boxer, and Jeremy turns into bacon.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-jeremy-is-bacon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a01c965-5c5e-4465-b5b9-ee2139f8ca15.jpg/sm/ahwuthumbv1.jpg","duration":924,"publication_date":"2018-01-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-call-2017-last-call-111","changefreq":"weekly","video":[{"title":"2017:E111 - I Don’t Have Sh*t with Sh*t - Last Call #111","description":"The AH Crew and special guest Kirk Johnson stand up to talk about tequila, smashing the table, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/last-call-2017-last-call-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/156156d5-ed2b-44be-8349-678e668f495f.jpg/sm/OFF111PS.jpg","duration":1095,"publication_date":"2018-01-14T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-slashers-adversary-mode","changefreq":"weekly","video":[{"title":"2017:E386 - GTA V - Slashers Adversary Mode","description":"We went to New York to visit Rockstar HQ and test out their new Slashers Adversary game mode.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-slashers-adversary-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/19deb42d-80d7-4496-b8d5-7607d4adcf28.jpg/sm/011418gtavSLASHERS.jpg","duration":1769,"publication_date":"2018-01-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-110","changefreq":"weekly","video":[{"title":"2017:E111 - The Plight of Pinhead - Off Topic #111","description":"The AH Crew and special guest Kirk Johnson sit down to talk about shouting, amiibos, growing up with siblings, and more on this week's Off Topic!\nThis episode originally aired January 12, 2018 and is sponsored by Casper (http://bit.ly/2DpSEPv) and Daily Harvest (http://bit.ly/2qV3vOV)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/af8380b0-d8d6-4464-8d86-987fecfcf108.jpg/sm/OFF111Site.jpg","duration":10173,"publication_date":"2018-01-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-mario-kart-8-deluxe-race-1","changefreq":"weekly","video":[{"title":"2017:E393 - Mario Kart 8 Deluxe: Race 1","description":"It's finally here! Join the gang as they compete in Mario Kart 8 Deluxe.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-mario-kart-8-deluxe-race-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/20d7c0b0-0431-4707-93e6-373a45c67e3c.jpg/sm/MarioKart8DeluxePt1v2.jpg","duration":1901,"publication_date":"2018-01-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-resident-evil-7-biohazard-not-a-hero-dlc-part-2","changefreq":"weekly","video":[{"title":"2017:E81 - Resident Evil 7: Biohazard - Not a Hero DLC Part 2","description":"Ryan, Michael, Jeremy and Gavin have a showdown with Lucas Baker in the second part of the DLC Not a hero.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-resident-evil-7-biohazard-not-a-hero-dlc-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fcd912f5-9037-4f72-99c7-611b5b7fcf77.jpg/sm/LW_Re7NotaHeroPt2_v2.jpg","duration":1046,"publication_date":"2018-01-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2017-gtaiv-cops-n-crooks","changefreq":"weekly","video":[{"title":"2017:E15 - GTA IV: Cops 'n Crooks","description":"The lads and the gents get to play some classic Cops 'n Crooks in Grand Theft Auto IV.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2017-gtaiv-cops-n-crooks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ee68229e-a23a-4ac5-b629-87a13c4e274e.jpg/sm/RLPGTAIVCOPSNCROOKS.jpg","duration":1874,"publication_date":"2018-01-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2018-geoff-gets-warped","changefreq":"weekly","video":[{"title":"2018:E23 - Geoff Gets Warped","description":"Ryan the Deadly Ghost can't resist messing with everyone while invisible. Poor Geoff.​","player_loc":"https://roosterteeth.com/embed/ah-animated-2018-geoff-gets-warped","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9246aac-3801-435c-9b78-bbe7d1ee7640/sm/1104396-1515621233933-011118AHAnimatedGeoffWarpedv002.jpg","duration":110,"publication_date":"2018-01-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-294-sky-factory-part-34","changefreq":"weekly","video":[{"title":"2017:E391 - Minecraft - Episode 294 - Sky Factory Part 34","description":"Achievement Hunter discovers where all the dragons got off to when Shady Ryan builds a new Dragon Emporium in town.\r\n\r\nOn today's episode, Ryan hoards some dragons, Michael and Lindsay become dragon parents, Gavin decorates the blood altar, simple Geoff has a dragon infestation on the farm, Jack searches for saddles, and Jeremy traps the undeserving in literal Hell.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-294-sky-factory-part-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d4e62e71-bdc0-4e12-920c-3a633fd40fa3.jpg/sm/11118MCSkyFactory34.jpg","duration":2811,"publication_date":"2018-01-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-bum-bait","changefreq":"weekly","video":[{"title":"2017:E51 - GTA V - Bum Bait","description":"Gavin asks Matt if he could recreate Bum Bait in GTA V. Matt delivers on it with all new twists.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-bum-bait","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2fff27a4-8981-43ab-8441-293452156f60.jpg/sm/bumbaittv3_720.jpg","duration":182,"publication_date":"2018-01-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-vegas-2-mlg-lives-on-part-4","changefreq":"weekly","video":[{"title":"2017:E390 - Rainbow Six Vegas 2 - MLG Lives On (Part 4)","description":"Geoff, Jack, Michael, and Jeremy are back in Vegas hunting baddies. This time, they get the inspiration to play like the pros.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-vegas-2-mlg-lives-on-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d62012aa-e471-4627-88d4-761c25ae5b82.png/sm/LPR6Vegas2PART4.png","duration":1842,"publication_date":"2018-01-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-resident-evil-7-biohazard-not-a-hero-dlc","changefreq":"weekly","video":[{"title":"2017:E80 - Resident Evil 7: Biohazard - Not a Hero DLC","description":"Ryan, Michael, Jeremy, and Gavin run into mutants, clown puzzles, and so many different sets of keys in the Resident Evil 7 DLC: Not a Hero.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-resident-evil-7-biohazard-not-a-hero-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82ddb3dd-f20d-4972-a25f-6660f6e8c8d2.jpg/sm/LWRE7NotaHeroDLCv4.jpg","duration":4305,"publication_date":"2018-01-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fortnite-battle-royale-lots-of-splodes-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E389 - Fortnite: Battle Royale - Lots of 'Splodes - AH Live Stream","description":"Geoff, Jack, Ryan, and Jeremy take another shot at Fortnite's Battle Royale gamemode. This time, they're out to build, shoot, and 'splode everything around them! This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fortnite-battle-royale-lots-of-splodes-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/41a2af02-b1bf-4560-a265-cb9452a2b949.jpg/sm/pubg_stream_thumb.jpg","duration":1698,"publication_date":"2018-01-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-snipperclips-3","changefreq":"weekly","video":[{"title":"2017:E28 - Snipperclips #3","description":"Watch Michael and Gavin put their brains together in order to solve each puzzle in Snipperclips. Can they come together as a unit, or will the levels snip them to pieces?","player_loc":"https://roosterteeth.com/embed/play-pals-2017-snipperclips-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0b45ef51-079e-4274-aa22-2bcf064f3222.jpg/sm/snipperclips3thumb.jpg","duration":4138,"publication_date":"2018-01-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-ultimate-chicken-horse-sticky-situations-part-5","changefreq":"weekly","video":[{"title":"2017:E387 - Ultimate Chicken Horse - Sticky Situations (Part 5)","description":"Now that they know how to properly utilize the \"cheese\" for trap building, the boys find creative new ways to scream at each other.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-ultimate-chicken-horse-sticky-situations-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/37b14cd7-869a-45b4-bfda-aee195b9b3ca.png/sm/LPUltimateChickenHorsePt5.png","duration":2513,"publication_date":"2018-01-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-axe-box-ing","changefreq":"weekly","video":[{"title":"2017:E55 - Axe Box-ing","description":"Thanks Honey for sponsoring today's video. Go to Honey.com/AHWU today and join Honey for free. Start saving money today when you shop online!\r\n\r\nIt's AHWU #403! After a long day of road rage, AHWU sort of gets away from the gang. Ryan hopes to get things back on track with a little axe throwing.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-axe-box-ing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d1d4c2a7-cbaf-4885-aad1-b2672292a733.jpg/sm/ahwuv3.jpg","duration":667,"publication_date":"2018-01-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-call-2017-last-call-110","changefreq":"weekly","video":[{"title":"2017:E110 - Everything’s Stupid - Last Call #110","description":"The AH Crew sit down to talk about towns around Austin, Marvel TV shows, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/last-call-2017-last-call-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2810df4f-547c-47c6-900f-e8c9e92e43ce.jpg/sm/OFF110psTHUMB.jpg","duration":1422,"publication_date":"2018-01-07T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-the-bogdan-problem-prep-doomsday-heist-4","changefreq":"weekly","video":[{"title":"2017:E385 - GTA V - The Bogdan Problem: Prep - Doomsday Heist (#4)","description":"We steal some keycards, take out Agent ULP's kidnappers, tart a riot, steal the Riot Control Van, and boost some wrecked Strombergs.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-the-bogdan-problem-prep-doomsday-heist-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79df5694-a0cc-41fe-94bb-40d98743f48e.jpg/sm/010718LPgtavdoomsdayheistTHUMB.jpg","duration":3651,"publication_date":"2018-01-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-109","changefreq":"weekly","video":[{"title":"2017:E110 - The Worst Time To Be A Chicken - Off Topic #110","description":"The AH Crew sit down to talk about fast food, 2018, nintendo products, and more on this week's Off Topic!\r\n\r\nThis episode originally aired January 5, 2018.","player_loc":"https://roosterteeth.com/embed/off-topic-2017-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c4be0ba1-e3c0-4745-b493-6e9eb9aeaecf.jpg/sm/OFF110THUMB.jpg","duration":9315,"publication_date":"2018-01-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gmod-trouble-in-terrorist-town-my-heart-will-go-on-6","changefreq":"weekly","video":[{"title":"2017:E388 - Gmod: Trouble in Terrorist Town - My Heart Will Go On (#6)","description":"Near, far, wherever you are. Watch the boys play some Gmod: Trouble in Terrorist Town.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gmod-trouble-in-terrorist-town-my-heart-will-go-on-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8adc07ac-4b62-4942-98fa-7769e53fb3d2.jpg/sm/010618GmodfTTTPt6.jpg","duration":1745,"publication_date":"2018-01-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-mysterious-signs-11","changefreq":"weekly","video":[{"title":"2017:E384 - 7 Days to Die: Mysterious Signs (#11)","description":"Our survivors are scattered across the map, and getting involved in tricky situations.\r\nIn this episode: Ryan heads home with goodies, Jeremy can't satisfy his bloodlust, Geoff discovers his spark for adventure, Jack acquires a mild case of tourettes, Gavin finds himself alone in a dark building, and Michael goes on a rescue mission.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-mysterious-signs-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7a460fbd-6b3f-457b-ab2e-d181d0e0dcfe.jpg/sm/7Days16Ep11v2thumb.jpg","duration":3672,"publication_date":"2018-01-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-december-2017","changefreq":"weekly","video":[{"title":"2017:E38 - Best of Achievement Hunter - December 2017","description":"Description: This is the best of Achievement Hunter for December 2017, where the faces of war change in Rainbow Six Vegas 2, the Batmobile soars to new heighs in GTA V, and Gmod Murder gets personal. Edited by: Kyle Moran","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-december-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e196531-7a6a-41b2-911f-c036a2ba429c.jpg/sm/BestofAHDec2017Thumbnail4.jpg","duration":1360,"publication_date":"2018-01-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-michael-makes-a-munchdew","changefreq":"weekly","video":[{"title":"2017:E21 - Michael Makes a Munchdew","description":"Michael creates a new plant that is hungry for Geoff's precious trees.​\r\nOriginal audio from: https://youtu.be/Vqn0ZCKqOnw\r\nAnimated by Shaun Cunningham.","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-michael-makes-a-munchdew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b290c848-b813-4f40-a093-06a3250c5399.jpg/sm/122817AHAnimatedMunchdewTHUMB.jpg","duration":135,"publication_date":"2018-01-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-293-sky-factory-part-33","changefreq":"weekly","video":[{"title":"2017:E383 - Minecraft - Episode 293 - Sky Factory Part 33","description":"Achievement Hunter keeps improving their Sky Factory in hope that they can one day take on the Chaos Dragon.\r\nOn today's episode, Jack hatches some baby dragons, Jeremy brings the suffering, Ryan pines for bat souls, Simple Geoff builds some complex machines, Michael gets a new killing toy, and Gavin has a jetpack setback.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-293-sky-factory-part-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9964439-026e-485f-9d5d-0b4398f36248.jpg/sm/010418SkyFactory33.jpg","duration":3818,"publication_date":"2018-01-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-vegas-2-geoff-dar-part-3","changefreq":"weekly","video":[{"title":"2017:E382 - Rainbow Six Vegas 2 - Geoff-dar (Part 3)","description":"Certain qualified individuals are great at calling out enemies. Other people are just annoying.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-vegas-2-geoff-dar-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3685e87f-aa73-4865-894b-f2e619620a5a.jpg/sm/LP_R6Vegas2_Pt3_v3.jpg","duration":2195,"publication_date":"2018-01-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-flinchless-moony-doo","changefreq":"weekly","video":[{"title":"2017:E25 - Flinchless Moony Doo","description":"Part 3 of the flinchless series is the most painful yet, as the guys throw moon balls and hit boy balls.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-flinchless-moony-doo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3521c1cc-b08d-4bbd-965c-62e275f00f2b.jpg/sm/moonythumbv5.jpg","duration":487,"publication_date":"2018-01-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-rocket-reflect","changefreq":"weekly","video":[{"title":"2017:E50 - GTA V - Rocket Reflect","description":"Today, the gang answers life's greatest question: can boys equipped with flare guns defend against other boys with homing rocket launchers?\r\nCheck out this map here: http://rsg.ms/0ef630a","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-rocket-reflect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2fdcb38-fc4e-4303-8e98-eb41fb05d8e0.jpg/sm/TTDGTAVROCKETREFLECTTHUMB.jpg","duration":740,"publication_date":"2018-01-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-playerunknown-s-battlegrounds-xbox-one","changefreq":"weekly","video":[{"title":"2017:E381 - PLAYERUNKNOWN'S Battlegrounds: Xbox One","description":"Geoff, Ryan, Jeremy, and Millie switch gears over to the Xbox version of PUBG. Will the change in controls get the best of them, or will the power of the Lightning Round reign supreme?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-playerunknown-s-battlegrounds-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b2095c0d-d656-4e8f-bd4a-5c7724bd2e21.jpg/sm/xboxpubgthumb.jpg","duration":2498,"publication_date":"2018-01-02T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gmod-prop-hunt-obj-hunt","changefreq":"weekly","video":[{"title":"2017:E379 - Gmod: Prop Hunt & Obj Hunt","description":"Let's play Prop Hunt. No! Let's play Object Hunt! Ah heck, why not both?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gmod-prop-hunt-obj-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/086f020f-56ad-4ccb-8543-57d5cba15eb0.jpg/sm/PropHuntThumb.jpg","duration":2445,"publication_date":"2018-01-02T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-getting-over-it","changefreq":"weekly","video":[{"title":"2017:E27 - Getting Over It","description":"Welcome to Rage Pals. Michael and Gavin sit down and play the highly-requested title, Getting Over It with Bennett Foddy.\r\n\r\nSpoiler alert: They don't get over it.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-getting-over-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/48933260-3ca9-4e3a-8482-f3e922838756.jpg/sm/PPGettingOverIt.jpg","duration":1761,"publication_date":"2018-01-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-trivial-pursuit-cleaning-house-part-13","changefreq":"weekly","video":[{"title":"2017:E377 - Trivial Pursuit - Cleaning House (Part 13)","description":"Achievement Hunter plays some more Trivial Pursuit as they ignore the broken bottle of barbecue sauce in the corner of the room.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-trivial-pursuit-cleaning-house-part-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a0f8fcc-fa82-44a2-9d8a-763774218f6c.jpg/sm/tvpthumbv1.jpg","duration":3312,"publication_date":"2018-01-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-it-s-a-new-year","changefreq":"weekly","video":[{"title":"2017:E54 - It's a New Year!","description":"Thanks to Blue Apron for sponsoring this week's AHWU. Visit https://blueapron.com/ahwu to get your first 3 meals free off your first order and free shipping!\r\n\r\nIt's AHWU #402! Cotton candy, cool art, throwing hatchets, oh my! Better hope Geoff doesn't hit anyone in the eye...","player_loc":"https://roosterteeth.com/embed/ahwu-2017-it-s-a-new-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e28637f7-4ed8-46bc-b3f0-ef9b19c4f6f4.jpg/sm/123117ahwuThumb.jpg","duration":606,"publication_date":"2017-12-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-call-2017-last-call-108","changefreq":"weekly","video":[{"title":"2017:E109 - 2017 reflections - Last Call #109","description":"The AH Crew stand up to talk about 2017 and things to come.","player_loc":"https://roosterteeth.com/embed/last-call-2017-last-call-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/037f5270-f063-49ea-8a32-ff02e7da79cc.jpg/sm/OFF109PSTb.jpg","duration":704,"publication_date":"2017-12-31T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-the-data-breaches-heist-doomsday-heist-3","changefreq":"weekly","video":[{"title":"2017:E380 - GTA V - The Data Breaches: Heist - Doomsday Heist (#3)","description":"We use the Akula to infiltrate the server farm at the N.O.O.S.E. Government Facility, then begin the first heist in the Doomsday Heist DLC.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-the-data-breaches-heist-doomsday-heist-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/16d01bee-299e-405b-a8f9-e8aba7542c2b.jpg/sm/Doomsday03.jpg","duration":2496,"publication_date":"2017-12-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-108","changefreq":"weekly","video":[{"title":"2017:E109 - AH Fashionistas - Off Topic #109","description":"The AH Crew and special Guest Millie Ramsey sit down to talk about their favorite moments of 2017, new and old shows coming to AH, Funhaus TV, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-2017-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/995924a3-363d-4e9d-b985-fa6cb69bcc04.jpg/sm/OFF109Site.jpg","duration":7488,"publication_date":"2017-12-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2017-rainbow-six-vegas","changefreq":"weekly","video":[{"title":"2017:E14 - Rainbow Six: Vegas","description":"Yes, Achievement Hunter really did pull Rainbow 6 Vegas directly after Rainbow 6 Vegas 2. Just as much shooting, but 100% less goofy faces.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2017-rainbow-six-vegas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0d5e5ade-b529-43f5-906f-acdef7732bb7.jpg/sm/RSVEGAS1ROULETTESPLAYTHUMB.jpg","duration":1934,"publication_date":"2017-12-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-secret-santa-jones","changefreq":"weekly","video":[{"title":"2017:E22 - Secret Santa Jones","description":"Michael sneaks into homes to leave presents for all the ungrateful boys and girls around the world.\r\nOriginal audio from: https://www.youtube.com/watch?v=6ULGut9qG6A\r\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-secret-santa-jones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff79c737-bf61-437b-8157-1df386f9a389.jpg/sm/THUMBxmasANIMATED.jpg","duration":161,"publication_date":"2017-12-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-291-sky-factory-part-32","changefreq":"weekly","video":[{"title":"2017:E378 - Minecraft - Episode 292 - Sky Factory Part 32","description":"On today’s episode, Ryan makes mischief, Gavin shoots Ryan, Jeremy decorates his blood alter, Simple Geoff simply Geoffs, Michael makes multicolored marvels, Lindsay avoids Buzzfeed, and Jack ruins everything (but fixes it with dragons).","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-291-sky-factory-part-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3851a04b-21bf-42f5-8d16-db358778bebc.jpg/sm/122817LPmcTHUMBv1.jpg","duration":3679,"publication_date":"2017-12-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-chaos-corner-stardew-valley","changefreq":"weekly","video":[{"title":"2017:E37 - Chaos Corner - Stardew Valley","description":"Lindsay takes Michael and Andy down to Stardew Valley, where they experience Chodely's first few days on the farm.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-chaos-corner-stardew-valley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9db49517-5fe1-41f6-9b0b-ed4343ddaee4.jpg/sm/AHCHAOSCORNERSTARTDEWVALLEY1.jpg","duration":1639,"publication_date":"2017-12-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-vegas-2-blooming-onion-part-2","changefreq":"weekly","video":[{"title":"2017:E374 - Rainbow Six Vegas 2 - Blooming Onion (Part 2)","description":"A shotgun is a classic go-to weapon for short range combat in video games. Some people have trouble with that concept.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-vegas-2-blooming-onion-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d4bd514e-1328-493d-ae2a-aac0c0143e5e.jpg/sm/RSVegas2Part2Thumb.jpg","duration":2473,"publication_date":"2017-12-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-killing-floor-2-a-krampus-christmas","changefreq":"weekly","video":[{"title":"2017:E375 - Killing Floor 2 - A Krampus Christmas","description":"This stream is sponsored by the Rooster Teeth Store! Don't forget to go buy all of our awesome merch over at http://store.roosterteeth.com. The gang decides to celebrate Christmas by taking on Krampus and his horde of Holiday minions.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-killing-floor-2-a-krampus-christmas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7f722975-19f9-459c-b3d0-6ddfb592da9c.jpg/sm/kfthumbv1.jpg","duration":1915,"publication_date":"2017-12-27T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-call-of-duty-all-out-war-mode","changefreq":"weekly","video":[{"title":"2017:E376 - Call of Duty: All out 'War Mode'","description":"Thanks to Call of Duty®: WWII for sponsoring this video. Watch Achievement Hunter and Funhaus battle Cow Chop and Game Attack in Call of Duty: WWII’s all-new ‘War’ Mode","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-call-of-duty-all-out-war-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07365544-404b-44e0-b994-18527d003ab5.jpg/sm/CODTHUMB.jpg","duration":1487,"publication_date":"2017-12-26T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-bang-glove","changefreq":"weekly","video":[{"title":"2017:E24 - Bang Glove","description":"Achievement Hunter sets out to answer life's greatest mystery: Can a glove be shot across the room using the power of confetti cannons?","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-bang-glove","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b655db92-a212-4b84-ae50-aa7e34602b0c.jpg/sm/btgv1.jpg","duration":230,"publication_date":"2017-12-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-christmas-card","changefreq":"weekly","video":[{"title":"2017:E49 - GTA V - Christmas Card","description":"Geoff wanted to make a Christmas Card in GTA V, so he forced the boys to dress up as reindeer, with Santa Jones riding in his Deluxo sleigh.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-christmas-card","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c055d228-c8cf-4d8f-b9d0-246b0073840a.jpg/sm/TTDgtavXMAScardThumbv4.jpg","duration":780,"publication_date":"2017-12-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-mario-party-5-50-turn-extravaganza","changefreq":"weekly","video":[{"title":"2017:E371 - Mario Party 5: 50-Turn Extravaganza","description":"Michael, Gavin, Lindsay, and Meg return with another 4 hour Let's Play of Mario Party, in honor of Extra Life 2017.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-mario-party-5-50-turn-extravaganza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0f480783-4b72-40a0-a9c4-99a73b4de831.jpg/sm/Thumb50turnMarioPartyv3.jpg","duration":14224,"publication_date":"2017-12-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-49-cannibal-the-musical","changefreq":"weekly","video":[{"title":"2017:E25 - Episode #49: Cannibal The Musical","description":"Ho ho ho! Merry Holidaysnukkah! Please enjoy this gift from the AH crew to you! After being convicted of cannibalizing his expedition team, Alfred Packer, regals of what actually happened in an adventure involving Musical Numbers, Cyclops, and Samurai Native Americans.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-49-cannibal-the-musical","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b5a5eced-1935-4bd5-aa27-aa9d27c84991.jpg/sm/TM49THUMB.jpg","duration":5973,"publication_date":"2017-12-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-crash-3-warped-gavin-gets-bunced-finale","changefreq":"weekly","video":[{"title":"2017:E79 - Crash 3: Warped - Gavin Gets Bunced (Finale)","description":"Gavin, now equipped with the Fruit Bazooka, takes on the final stages of Crash 3. Will it be enough to defeat Cortex once and for all?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-crash-3-warped-gavin-gets-bunced-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6ef8465e-ec41-4f73-adcd-aa6379b312a2.png/sm/LW_Crash3_PART5.png","duration":3528,"publication_date":"2017-12-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-santa-jack","changefreq":"weekly","video":[{"title":"2017:E53 - Santa Jack","description":"Ho Ho Ho, Merry Christmas. Santa Jack has arrived and is delivering presents! How much coal will Achievement Hunter get this year?","player_loc":"https://roosterteeth.com/embed/ahwu-2017-santa-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a958c54c-86e6-4d73-a97e-98198205a7cb.jpg/sm/122417AHWU401.jpg","duration":671,"publication_date":"2017-12-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-snow-last-call-108","changefreq":"weekly","video":[{"title":"2017:E49 - Snow! - Last Call #108","description":"The AH Crew sit down to talk about cats, drunk personas, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-2017-snow-last-call-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/64a7472d-c279-450a-85f0-d5778df6ae9c.jpg/sm/OFF108psTHUMB.jpg","duration":1260,"publication_date":"2017-12-24T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-setup-the-data-breaches-doomsday-heist-2","changefreq":"weekly","video":[{"title":"2017:E372 - GTA V - Setup: The Data Breaches - Doomsday Heist (#2)","description":"To setup the Data Breaches Heist, we steal an Akula and use the Deluxos to hack multiple target vehicles - including a rather large cargo plane.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-setup-the-data-breaches-doomsday-heist-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce20a70e-f61c-4490-b65b-3edc01c0ddfb.jpg/sm/DoomsdayHeist02.jpg","duration":2445,"publication_date":"2017-12-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-crash-3-warped-dog-at-dog-fighting-part-4","changefreq":"weekly","video":[{"title":"2017:E78 - Crash 3: Warped - Dog at Dog Fighting (Part 4)","description":"The boys are back in Crash 3 with Gavin still at the helm. Gavin claims he's a bit rusty since the last part, but was he ever that good?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-crash-3-warped-dog-at-dog-fighting-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/87373f45-0ecf-4da5-870a-d426d1c16d26.png/sm/LW_Crash3_PART4.png","duration":2609,"publication_date":"2017-12-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-mind-spaghetti-off-topic-108","changefreq":"weekly","video":[{"title":"2017:E108 - Mind Spaghetti - Off Topic #108","description":"The AH Crew sit down to talk about the RT holiday party, the Harry Potter Movies, Git Gud Tryouts, and more on this week's Off Topic!\n\nThis episode originally aired December 22, 2017 and is sponsored by Man Crates (http://bit.ly/2kfeQXo) and Capterra (http://bit.ly/2j9Tw5k)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-mind-spaghetti-off-topic-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a0644a3c-cea8-4924-913e-7f434c22b7e2.jpg/sm/OFF108THUMB.jpg","duration":6269,"publication_date":"2017-12-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gmod-murder-peace-bananas-4","changefreq":"weekly","video":[{"title":"2017:E370 - Gmod: Murder - Peace Bananas (#4)","description":"The crew hops into Gmod to do some Murder in Italy. Will peace bananas be enough to keep from getting a knife in the throat? Probably not.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gmod-murder-peace-bananas-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3118164f-fcd3-4622-b2c7-99b6aa0ab619.jpg/sm/MurderThumbv002.jpg","duration":2531,"publication_date":"2017-12-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-crash-3-warped-gavin-loves-bum-part-3","changefreq":"weekly","video":[{"title":"2017:E77 - Crash 3: Warped - Gavin Loves Bum (Part 3)","description":"Gavin learns what the differences are between a shadow and a hole in Crash 3. Hint: You can't fall down a shadow.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-crash-3-warped-gavin-loves-bum-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/22da90a6-21af-47e7-baa0-eb9dd35683d4.png/sm/LW_Crash3_PART3.png","duration":4098,"publication_date":"2017-12-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-night-time-terrors-10","changefreq":"weekly","video":[{"title":"2017:E373 - 7 Days to Die: Night Time Terrors (#10)","description":"Everyone is out having so much fun adventuring, they forgot to watch the clock. \r\nIn this episode: Ryan and Jeremy start a new dig site, Gavin and Jack a sketchy city, Michael pops lots of pills, and Geoff starts renovations on the family property.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-night-time-terrors-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/50c49761-8b97-49fb-91fe-0ec1eaf27c4d.jpg/sm/7DaysEp10v2.jpg","duration":2363,"publication_date":"2017-12-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-knowledge-is-power","changefreq":"weekly","video":[{"title":"2017:E369 - Knowledge is Power","description":"Thanks to Sony and PlayLink for sponsoring this video. PlayLink Games 25% off on the PlayStation Store till Jan 2nd! https://store.playstation.com/en-us/product/UP9000-CUSA08013_00-1709181242KPU1M0\r\n\r\nAchievement Hunter finds that while knowledge helps them answer trivia questions, being assholes helps them win.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-knowledge-is-power","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5d5f515-0a96-4148-bd72-53e5cc757885.jpg/sm/LPSonyPLKnowledgeIsPowerv1.jpg","duration":1991,"publication_date":"2017-12-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-crash-3-warped-almost-good-part-2","changefreq":"weekly","video":[{"title":"2017:E76 - Crash 3: Warped - Almost Good (Part 2)","description":"Gavin continues to get familiar with the complex controls of a Playstation game from 1998 in Crash Bandicoot: Warped.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-crash-3-warped-almost-good-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ef2589f1-6207-48cf-aa7f-09441cec7200.png/sm/LW_Crash3_PART2.png","duration":2806,"publication_date":"2017-12-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-gavin-s-pathetic-death","changefreq":"weekly","video":[{"title":"2017:E20 - Gavin's Pathetic Death","description":"Gavin's hungry, but raw eggs are bad, and the stove's being guarded by a horrible zombie girl.\r\n\r\nAnimation audio from: https://www.youtube.com/watch?v=DDiS_3Y37JM\r\nAnimated by Simrell","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-gavin-s-pathetic-death","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2978b64-7a01-46bc-86ca-0ee1989c21fd.jpg/sm/122117AnimatedGavDeath.jpg","duration":147,"publication_date":"2017-12-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-291-a-very-slippery-christmas","changefreq":"weekly","video":[{"title":"2017:E368 - Minecraft - Episode 291 - A Very Slippery Christmas","description":"Santa has turned his entire Christmas village into an icy raceway. First one to the end gets the most Christmas presents.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-291-a-very-slippery-christmas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aeb5fecc-806d-4698-add1-42fb3690b10e.jpg/sm/122117MCSlippyChristmas.jpg","duration":2155,"publication_date":"2017-12-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-crash-3-warped-gavin-unleashed-part-1","changefreq":"weekly","video":[{"title":"2017:E75 - Crash 3: Warped- Gavin Unleashed (Part 1)","description":"Two Crash games down, one to go. This time Gavin takes control of the lovable bandicoot. How could that go wrong?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-crash-3-warped-gavin-unleashed-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/380880b2-01a9-44c2-9c46-3d6368741bc3.png/sm/LW_Crash3_PART1.png","duration":2451,"publication_date":"2017-12-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-pudding-shirt","changefreq":"weekly","video":[{"title":"2017:E23 - Pudding Shirt","description":"Get your very own pudding shirt in the Rooster Teeth Store.Achievement Hunter designs a new product for the RT Store. Introducing the Pudding Shirt. Trevor not included.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-pudding-shirt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c708eb11-4475-445f-9845-4587dea836df.jpg/sm/pudshirtthumb.jpg","duration":698,"publication_date":"2017-12-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-vegas-2-a-milky-vibe-part-1","changefreq":"weekly","video":[{"title":"2017:E367 - Rainbow Six Vegas 2 - A Milky Vibe (Part 1)","description":"Geoff, Ryan, Gavin, and Jeremy bring their beautiful and monstrous creations into Vegas 2 for some Terrorist hunt in Murdertown.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-vegas-2-a-milky-vibe-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f428b421-9a8e-4f38-999d-e6ccde2c774e.png/sm/LPR6Vegas2PART1.png","duration":4076,"publication_date":"2017-12-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-the-smoke-fire-explosions-of-rwby-10","changefreq":"weekly","video":[{"title":"1:E10 - The Smoke, Fire, & Explosions of RWBY - #10","description":"The RWBY visual effects team visits RWBY Rewind to show off some of the incredibly cool tricks of their trade, while Yssa and Chad dissect the thrilling events of RWBY Volume 5 Chapter 10.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-the-smoke-fire-explosions-of-rwby-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/39a5eb0a-9a61-4932-906f-4741bedbeaa9.jpg/sm/rwbyrw10THUMB.jpg","duration":1734,"publication_date":"2017-12-20T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-471-post-show","changefreq":"weekly","video":[{"title":"2017:E61 - #471 Post Show","description":"Featuring Gus, Burnie, Gavin and Chris","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-471-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b92625ed-338b-40a8-b06d-16412a32db7c.jpg/sm/RTP471PSChrisThinking.jpg","duration":1196,"publication_date":"2017-12-20T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-54","changefreq":"weekly","video":[{"title":"2017:E42 - Still Open #54","description":"Join Barbara Dunkelman, Lawrence Sonntag, Maggie Tominey, and Mariel Salcedo as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/72663f6d-3eb1-4652-8468-383b729b38f1.jpg/sm/psthumb.jpg","duration":872,"publication_date":"2017-12-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-471","changefreq":"weekly","video":[{"title":"2017:E471 - Burnie Puts Ashley on the Hot Spot - #471","description":"Join Gus Sorola, Gavin Free, Chris Demarais, and Burnie Burns as they discuss stupid stunts, the company holiday party, Star Wars: The Last Jedi, and more on this week's RT Podcast! This episode originally aired on December 18, 2017, sponsored by Uber (http://bit.ly/1ALXxLm), TrackR (http://bit.ly/2BvtMVN), MeUndies (http://bit.ly/2Ac9Jxn)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-471","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bbcc74a6-7285-4ca5-a3f3-ca359083a483.jpg/sm/rtp472thumb.jpg","duration":6068,"publication_date":"2017-12-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-inspiration","changefreq":"weekly","video":[{"title":"2017:E47 - Inspiration","description":"Just in time for the holidays, your favorite Burnie sits down to talk creative expression, finding inspiration, and the latest Star Wars movie.\r\n\r\nMUSIC\r\nGo to Sleep 6\r\n\r\nStory & Post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-inspiration","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7ac070b9-53dc-46bc-a564-2cc7c2c7eceb.jpg/sm/BurnieVlogThumbnailInspo.jpg","duration":711,"publication_date":"2017-12-19T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-54","changefreq":"weekly","video":[{"title":"2017:E54 - Lawrence Questions Everything - #54","description":"Join Barbara Dunkelman, Lawrence Sonntag, Maggie Tominey, and Mariel Salcedo as they do a round of cupidity, discuss a follow up submission, and answer a question from the Box of Issues! This episode brought to you by Casper (http://bit.ly/2d7S00q).Fill out the Always Open Survey here: http://bit.ly/2CH4nbc","player_loc":"https://roosterteeth.com/embed/always-open-2017-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eecad19-0222-41f7-beeb-821237c824fd/sm/690915-1513702983170-Always_Open_54_5_thumbnail.jpg","duration":4696,"publication_date":"2017-12-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-10saoiju23lkj","changefreq":"weekly","video":[{"title":"V5:E10 - Volume 5, Chapter 10: True Colors","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-10saoiju23lkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/086ab2fe-fec2-4f16-a135-09d959186302.jpg/sm/RWBYvolume5episode10Thumbnail.jpg","duration":1166,"publication_date":"2017-12-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-the-one-two-punch","changefreq":"weekly","video":[{"title":"1:E10 - The One Two Punch","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-the-one-two-punch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/254486b1-e29a-41c2-beae-4b5aa044fab3.jpg/sm/CRWBYvolume1episode10Thumbnail.jpg","duration":313,"publication_date":"2017-12-16T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-46-5r65h4g","changefreq":"weekly","video":[{"title":"2017:E46 - I Can't Believe I'm Putting These Thicc Girls Through College! - #46","description":"Join Miles, Cole, Yssa, Erin, and special guests SongWon Cho (ProZD) & Lawrence Sonntag as they discuss the new Mob Psycho OVA, Anime Crimes Division, Love Live and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-46-5r65h4g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ba6498d5-5fcc-4812-a2b0-cce5d1669c21.png/sm/fanservice46.png","duration":5378,"publication_date":"2017-12-16T12:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-gold-boi","changefreq":"weekly","video":[{"title":"2017:E48 - Shovel Knight #5 - Gold Boi","description":"The time has come, our boys have faced off with every Knight in the Order of No Quarter and now the only thing that stands in their way is The Enchantress and her Tower. Will Kyle and Miles overcome their challenges and avenge their good friend Shield Knight or will they fall never to rise again? One thing's for sure, they're gonna look fly as hell while doing it.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-gold-boi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b043aec3-8d75-46a1-8f40-617f6c20d646.jpg/sm/BC_SHOVELKNIGHT_THUMB_05.jpg","duration":4704,"publication_date":"2017-12-15T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-for-the-win-119","changefreq":"weekly","video":[{"title":"S10:E4 - For The Win #119","description":"S10:E4 - For The Win #119","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-for-the-win-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/725e0532-7a0f-416f-b64a-7c012f453896/sm/690915-1513368411801-pstempthumb.jpg","duration":636,"publication_date":"2017-12-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-on-the-spot-119","changefreq":"weekly","video":[{"title":"S10:E119 - Joel's Fishy Girlfriend - #119","description":"Joel cuddles with a fish and Tyler lets it all hang out for a Christmas classic. Sponsored by Evenprime (http://bit.ly/2BzDtCa), Felix Gray Glasses (http://bit.ly/2Ce36ca) and the Rooster Teeth Store (http://store.roosterteeth.com). Hosted by Jon Risinger. Featuring Joel Heyman, Lindsay Jones, Tyler Coe and Andy Blanchard.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-on-the-spot-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cce05850-0ff0-4dc2-a1cf-ecd8b207d77a.jpg/sm/On_the_Spot_119_thumbnail.jpg","duration":2545,"publication_date":"2017-12-14T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-theme-pack-holiday","changefreq":"weekly","video":[{"title":"TP:E4 - Holiday: 12 Crimes of Christmas","description":"Would you sacrifice the holidays for a million bucks? Join Gavin Free, Barbara Dunkelman, and Blaine Gibson as they babysit their drunk family and pull Christmas lights out of their butts.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-theme-pack-holiday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b6073d21-0ca8-46d1-a712-2fefb5e05e92.jpg/sm/MDBS5Episode4Thumbnail1.jpg","duration":301,"publication_date":"2017-12-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-24-nondescript-holiday-spectacular","changefreq":"weekly","video":[{"title":"S2:E24 - Episode 24 - Nondescript Holiday Spectacular","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-24-nondescript-holiday-spectacular","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/80712168-b4a0-432c-b461-1c60c93b3276.jpg/sm/RWBYChibiEp024Thumbnail.jpg","duration":214,"publication_date":"2017-12-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-new-michael-jones-rwby-character-revealed-9","changefreq":"weekly","video":[{"title":"1:E9 - New Michael Jones RWBY Character Revealed - #9","description":"Chad, Yssa, and Michael Jones dive deep into Sun Wukong's origin story, a new RWBY character is revealed (kinda), and a historic lightning round is played!","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-new-michael-jones-rwby-character-revealed-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/343420df-14f8-41a0-bb49-726b223f30db.jpg/sm/RWBYRW09.jpg","duration":1735,"publication_date":"2017-12-13T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-470-post-show","changefreq":"weekly","video":[{"title":"2017:E60 - The Text Game - Podcast #470 Post Show","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss texting, Burnie's Vlog, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-470-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fdddd971-a145-44e3-9664-e587aa02ab16.jpg/sm/BlaineExicitedPS.jpg","duration":1060,"publication_date":"2017-12-13T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-53","changefreq":"weekly","video":[{"title":"2017:E41 - Still Open #53","description":"Featuring Barbara Dunkelman, Mariel Salcedo, Tyler Coe, and Gavin Free.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2e063ce0-23e3-46b9-b963-00accd399a7b.jpg/sm/AO53PSthumb.jpg","duration":789,"publication_date":"2017-12-12T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-470","changefreq":"weekly","video":[{"title":"2017:E470 - Blaine Avoids Star Wars Spoilers - #470","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss desserts, Blaine’s toilet paper emergency, holidays, and more on this week's RT Podcast! This episode originally aired on December 11, 2017, sponsored by MVMT (http://bit.ly/2AdONpA), NatureBox (http://bit.ly/2kmvQr7), Squarespace (http://bit.ly/1SPgAL3)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-470","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/97e420f9-e053-4f2e-9d65-2261beb9e289.jpg/sm/RTPodcast470thumbnail3.jpg","duration":5620,"publication_date":"2017-12-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-caboose-s-guide-to-finding-your-home","changefreq":"weekly","video":[{"title":"S15:E25 - Caboose's Guide To Finding Your Home","description":"A house is a little hard to define, even if you think you know what you're talking about. Unless you're a hermit crab. Then it's pretty easy.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-caboose-s-guide-to-finding-your-home","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/69d79772-7d65-4f84-a135-cc4d6164b0c4.jpg/sm/CaboosePSAvolume1episode1Thumbnail.jpg","duration":228,"publication_date":"2017-12-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-getting-fit-for-the-apocalypse","changefreq":"weekly","video":[{"title":"2017:E46 - Getting Fit for the Apocalypse","description":"Ellie travels to Onnit Academy to begin her physical training to survive the apocalypse and protect Burnie.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-getting-fit-for-the-apocalypse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d9832d54-a0f7-4560-8d47-e1b66c313174.jpg/sm/VlogThumbnailOnnit1.jpg","duration":408,"publication_date":"2017-12-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-53","changefreq":"weekly","video":[{"title":"2017:E53 - Gavin Pranks Barbara - #53","description":"Featuring Barbara Dunkelman, Mariel Salcedo, Tyler Coe, and Gavin Free. This episode is brought to you by MVMT (http://bit.ly/2xJDj8o) and MeUndies (http://bit.ly/2xkzoyS)","player_loc":"https://roosterteeth.com/embed/always-open-2017-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b5b47e77-7de9-4e37-960b-981fcfdef258.jpg/sm/AlwaysOpen53thumbnail1.jpg","duration":3269,"publication_date":"2017-12-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-camp-camp-holiday-special-a-camp-camp-christmas-or-whatever","changefreq":"weekly","video":[{"title":"S2:E15 - Holiday Special - A Camp Camp Christmas, or Whatever","description":"Everyone gets into the holiday spirit when a freak snow storm blows in. David tries to make it the best \"holiday\" for all the kids, while Max and Neil try to figure out why Nikki loves Christmas so much.\r\nGet the original score for this video on iTunes: http://apple.co/2yuwsQn","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-camp-camp-holiday-special-a-camp-camp-christmas-or-whatever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a36a58b-6611-43ed-819c-2ba21fb95e6e.jpg/sm/CC2_Ep14_tn.jpg","duration":779,"publication_date":"2017-12-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-307","changefreq":"weekly","video":[{"title":"2017:E307 - Birds, Bees, and B.O.","description":"Becca and Blaine reminisce about how growing up and hitting THAT age was great.... it wasn't.\r\n\r\nAudio from Rooster Teeth Podcast #454 Post Show\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-podcast-454-post-show-rhtghr\r\nAnimated by Gil Calceta and Quinn Weston\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-307","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d97ffefd-d922-4369-bd0c-baa6a83e1a96.jpg/sm/rtaa307tn.jpg","duration":153,"publication_date":"2017-12-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-9eqoius23","changefreq":"weekly","video":[{"title":"V5:E9 - Volume 5, Chapter 9: A Perfect Storm","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-9eqoius23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eea1d662-edb5-4975-8470-2a6c0d360a3e.jpg/sm/RWBYvolume5episode9Thumbnail.jpg","duration":907,"publication_date":"2017-12-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-can-you-hear-me-now","changefreq":"weekly","video":[{"title":"1:E9 - Can You Hear Me Now?","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-can-you-hear-me-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/528649e9-5716-4a17-9415-f763c761c6f0.jpg/sm/CRWBYvolume1episode9Thumbnail.jpg","duration":292,"publication_date":"2017-12-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-45-eh65fgh","changefreq":"weekly","video":[{"title":"2017:E45 - Home Shopping Network Knife Disaster - #45","description":"Join Gray, Kerry, Miles, Austin, Erin, and special guest Rachel Doda as they discuss the new Batman Ninja anime, the conclusion of JoJo's Bizarre Adventure in Anime Telephone, and Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-45-eh65fgh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2756e139-7d24-42c8-aab5-4eed6ff6dd3f.png/sm/fanservice045.png","duration":4023,"publication_date":"2017-12-09T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-shovel-knight-4","changefreq":"weekly","video":[{"title":"2017:E47 - Shovel Knight #4 - This Armor was a Mistake","description":"Single screen co-op games can be a lot of fun. They can also be the most infuriating test of friendship two people can experience. This is one of those times.....the latter not the former. Shut up you knew what I meant.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-shovel-knight-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/393a80f3-3d2c-43dd-885c-a0b05dcfe43b.jpg/sm/BzCSHOVELKNIGHTTHUMB04.jpg","duration":3122,"publication_date":"2017-12-08T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-for-the-win-118","changefreq":"weekly","video":[{"title":"S10:E3 - For the Win #118","description":"S10:E3 - For the Win #118","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-for-the-win-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff4fac88-8244-42c1-bd69-8e1d596d7ec3.jpg/sm/ots118psthumb.jpg","duration":661,"publication_date":"2017-12-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-theme-pack-poke-pandemonium-ashley-the-furry","changefreq":"weekly","video":[{"title":"TP:E3 - Poké-Pandemonium & Ashley the Furry","description":"Level up with Burnie, Ashley, and Jon as they battle Pokémon and undergo extreme makeovers in a video game-themed episode of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-theme-pack-poke-pandemonium-ashley-the-furry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3b34693-b031-447f-a7c9-ccbb1402ba2e.jpg/sm/MDBS5Episode3Thumbnail2.jpg","duration":368,"publication_date":"2017-12-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-118","changefreq":"weekly","video":[{"title":"S10:E118 - You Better Watch Out! - #118","description":"Witness the sounds from Max that throws Jon into a fit of laughter. Sponsored by MVMT (http://bit.ly/2zPGRIp), Capterra (http://http://bit.ly/2AdwSAh) and the Rooster Teeth Store (http://store.roosterteeth.com). Hosted by Jon Risinger. Featuring Barbara Dunkelman, Trevor Collins, Alfredo Diaz and Max Kruemke.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/af71bcc8-89ab-402d-a6b9-21ff75a31e12.jpg/sm/OntheSpot118thumbnail2.jpg","duration":2498,"publication_date":"2017-12-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-8-dfgh65","changefreq":"weekly","video":[{"title":"1:E8 - Weird Mocap Moments - #8","description":"Yssa and Chad talk RWBY with producer and motion capture specialist Paco Vazquez. Paco talks about who plays the Grimm and other RWBY secrets, then busts out some sweet jokes before facing the dreaded lightning round.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-8-dfgh65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f9b46ac-93d4-4099-a198-d3cc03824dd0.jpg/sm/RWBYRW08THUMBNAIL.jpg","duration":1681,"publication_date":"2017-12-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-469postxkshl23","changefreq":"weekly","video":[{"title":"2017:E59 - America Has The Best Bacon - Podcast #469 Post Show","description":"Join Gus Sorola, Gavin Free, Ellie Main, and Burnie Burn as they discuss bacon, holiday traditions, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-469postxkshl23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d76c47f6-21a4-491d-8356-c455c461bcc4.png/sm/RTPBurnieEyeliner.png","duration":1078,"publication_date":"2017-12-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-stillopen52alkoiul2","changefreq":"weekly","video":[{"title":"2017:E40 - Still Open #52","description":"Join Barbara Dunkelman, Adam Kovic, Lindsay Jones, and Mariel Salcedo as they answer a question from the Box of Issues!","player_loc":"https://roosterteeth.com/embed/always-open-2017-stillopen52alkoiul2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3d7d9be6-d611-4463-9be5-a46c863e9848.jpg/sm/pstempthumb.jpg","duration":833,"publication_date":"2017-12-05T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-4690ojkjhj0","changefreq":"weekly","video":[{"title":"2017:E469 - Ellie Calls Out Gavin x - #469","description":"Join Gus Sorola, Gavin Free, Ellie Main, and Burnie Burns as they discuss internet scams, British and American differences, taxes, and more on this week's RT Podcast! This episode originally aired on December 4, 2017, sponsored by Casper (http://bit.ly/2sa1gGZ), Blue Apron (http://cook.ba/1YpCafL), MVMT (http://bit.ly/2AdONpA)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-4690ojkjhj0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/13917718-aad2-485f-8e20-dcd1f2b96b90.jpg/sm/RTPodcast469thumbnail2.jpg","duration":5958,"publication_date":"2017-12-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-taking-risks","changefreq":"weekly","video":[{"title":"2017:E45 - Taking Risks","description":"This week it’s back to the bus for another chat with Burnie! He’s here to talk about the importance of taking risks in your creative life, and how that’s shaped his journey to where he is today!\r\n\r\nMUSIC\r\nGo to Sleep 6\r\n\r\n\r\nStory & Post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-taking-risks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f55f69e8-46ed-43b5-8acc-d9a6aa3887a9.jpg/sm/thumbnailvlogtakingrisks.jpg","duration":704,"publication_date":"2017-12-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-52xklshl3","changefreq":"weekly","video":[{"title":"2017:E52 - Pikachu Speaks English - #52","description":"Join Barbara Dunkelman, Adam Kovic, Lindsay Jones, and Mariel Salcedo as they discuss their bad social media habits, marriage, and answer a question from the Box of Issues! This episode brought to you by HelloFresh (http://bit.ly/2kkP0RG) and MVMT (http://bit.ly/2xJDj8o).","player_loc":"https://roosterteeth.com/embed/always-open-2017-52xklshl3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71bc3c6e-386a-420c-8fa6-1b4cd566b4eb.jpg/sm/AlwaysOpen52thumbnail1.jpg","duration":4418,"publication_date":"2017-12-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-306-dlkfghjldk","changefreq":"weekly","video":[{"title":"2017:E306 - Aarons Astrology Standoff ","description":"Aaron tells a story about a crazy boss he once had and the out of this world interview process that landed him the job.\r\n\r\nAudio from Rooster Teeth Podcast #445\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-455-vehoh\r\nAnimated by: Gabriel Silva\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-306-dlkfghjldk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a9f99451-931b-42b1-903c-ab322530a612.jpg/sm/rtaa306tn.jpg","duration":146,"publication_date":"2017-12-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-plum-squad-is-rusty","changefreq":"weekly","video":[{"title":"2017:E10 - Plum Squad is Rusty","description":"Plum Squad suits up to chase an elusive chicken dinner. They may not have played PUBG as a squad together for some time but surely their skills are still in tact?\r\nSpecial thanks to Evan VanWormer for the Plum Squad fan art used in the thumbnail.","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-plum-squad-is-rusty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/db8f1b37-3d79-493a-8cab-1048e23a6b3b.jpg/sm/pubgthumb.jpg","duration":4683,"publication_date":"2017-12-02T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-8uoizl8es","changefreq":"weekly","video":[{"title":"V5:E8 - Volume 5, Chapter 8: Alone Together","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-8uoizl8es","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/70ada85c-e377-4eff-b575-47663b248758.jpg/sm/RWBYvolume5episode8Thumbnail.jpg","duration":918,"publication_date":"2017-12-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-the-complete-package","changefreq":"weekly","video":[{"title":"1:E8 - The Complete Package","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-the-complete-package","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8bade74e-c82c-4464-a918-7e89e4fe2f37.jpg/sm/CRWBYvolume1episode8Thumbnail.jpg","duration":227,"publication_date":"2017-12-02T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-44-rh45r","changefreq":"weekly","video":[{"title":"2017:E44 - You Gotta Pay Attention, It’s JoJo - #44","description":"Join Miles, Cole, Yssa, Austin, and Erin as they discuss My Hero Season 3 returning, JoJo's Bizarre Adventure in Anime Telephone, and Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-44-rh45r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2c2d1d5d-33fe-4895-9f9b-135cbd1348d5.png/sm/fanservice044.png","duration":4143,"publication_date":"2017-12-02T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-shovel-knight-3","changefreq":"weekly","video":[{"title":"2017:E46 - Shovel Knight #3 - The Cream of the Crop","description":"Kyle and Miles come across the unrivaled Baz, trade blows with the sub-aquatic Treasure Knight, and cross shovels with the cold hearted Polar Knight.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-shovel-knight-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f22d80d-0a7e-4cb5-894c-9f9287bc6995.jpg/sm/BzCSHOVELKNIGHTTHUMB03.jpg","duration":3568,"publication_date":"2017-12-01T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-for-the-win-117","changefreq":"weekly","video":[{"title":"S10:E2 - For the Win #117","description":"S10:E2 - For the Win #117","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-for-the-win-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6dc63731-509f-4308-9f97-421a40bb95bd.png/sm/tempThumb.png","duration":436,"publication_date":"2017-12-01T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-117","changefreq":"weekly","video":[{"title":"S10:E117 - Burnie Gets Bullied - #117","description":"Burnie has a big problem with Blaine’s alter ego. Sponsored by MVMT (http://bit.ly/2zPGRIp), Blue Apron (http://cook.ba/1V1MMMd), and the Rooster Teeth Store (http://store.roosterteeth.com). Hosted by Jon Risinger. Featuring Burnie Burns, Blaine Gibson, Ellie Main and Jessica Vasami.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/003ddc65-5bf3-4d54-92de-dcd8fccdb689.jpg/sm/OntheSpot117thumbnail.jpg","duration":2221,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-theme-pack-femme-fatales","changefreq":"weekly","video":[{"title":"TP:E2 - Femme Fatales","description":"Join Barbara, Mariel, and Elyse on a grim and ghoulish quest for money in a Death-themed episode of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-theme-pack-femme-fatales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8d23d313-4c15-4bd2-866f-60227f0b9a4b.jpg/sm/MDBS5Episode2Thumbnail4.jpg","duration":294,"publication_date":"2017-11-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-7-dfgbb21","changefreq":"weekly","video":[{"title":"1:E7 - What It's Like To Be Yang - #7","description":"We took Yang right out of RWBY and put her on RWBY Rewind to see what makes her tick. Of course we're talking about Barbara Dunkelman, the voice of Yang! Chad and Yssa discuss Yssa's delayed reaction to characters' bird names and Chad's pants.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-7-dfgbb21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a6598a30-d130-4494-9503-270a29bac747.jpg/sm/RWBYRW07Thumb.jpg","duration":1651,"publication_date":"2017-11-29T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-468postnwwj2lkj","changefreq":"weekly","video":[{"title":"2017:E58 - Moving to Detroit! - Podcast #468 Post Show","description":"Join Gus Sorola, Gavin Free, Becca Frasier, and Burnie Burns as they discuss Detroit, Cheesecake Factory, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-468postnwwj2lkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/63b1e856-220a-45a3-89dd-0637fc81e2a6.png/sm/GavinConfused.png","duration":959,"publication_date":"2017-11-29T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-51post43ljlkj","changefreq":"weekly","video":[{"title":"2017:E39 - Still Open #51","description":"Join Barbara Dunkelman, Geoff Ramsey, Bethany Feinstein, and Mariel Salcedo as they answer a question from the Box of Issues! ","player_loc":"https://roosterteeth.com/embed/always-open-2017-51post43ljlkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c50e82da-7c6a-43b5-bb4b-cb21bd68ff0a.png/sm/tempThumb2.png","duration":992,"publication_date":"2017-11-28T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-468nllll28u","changefreq":"weekly","video":[{"title":"2017:E468 - Will Gavin Sell His Bitcoin? - #468","description":"Join Gus Sorola, Gavin Free, Becca Frasier, and Burnie Burns as they discuss external hard drives, net neutrality, the iPhone X, and more on this week's RT Podcast! This episode originally aired on November 27, 2017, sponsored by Tipsy Elves (http://bit.ly/2AdzHAI), MVMT (http://bit.ly/2AdONpA), MeUndies (http://bit.ly/2Ac9Jxn), the Rooster Teeth Store (http://bit.ly/storeholiday)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-468nllll28u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5c51d9b7-654a-4c07-8e60-6f2dd76c0107.jpg/sm/RTPodcast468thumbnail3.jpg","duration":6104,"publication_date":"2017-11-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-renaissance","changefreq":"weekly","video":[{"title":"2017:E44 - Quests at the Renaissance Faire","description":"King Burnie and Queen Ashley gather together a fellowship of Barbara, Ellie, Chelsea, Adam, Grace (Zonbi) and Ragnar the Dancing Bard (okay it was Patrick ssshhh) to travel to the Texas Renaissance Festival for a day of mead, fine foods, feats of strength, and showmanship. Each member of the fellowship has a specific quest they must complete. Who will succeed? Who will fail? Why is Burnie’s crown so tall? Why am I still typing questions?\r\n\r\nMUSIC\r\nGo to Sleep 6\r\nScandinavian Folk 11 (Ellie’s remix) - Stefan Netsman\r\nScandinavian Folk 28 - Stefan Netsman\r\nScandinavian Folk 11 - Stefan Netsman\r\nScandinavian Folk 8 - Stefan Netsman\r\nThe Old Lighthouse - Various","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-renaissance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/be414a86-04ec-4e04-bcc2-14bbdd28e706.jpg/sm/BurnieVlogRenaissance.jpg","duration":831,"publication_date":"2017-11-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-51hrylkjl3","changefreq":"weekly","video":[{"title":"2017:E51 - Geoff Becomes Our Best Friend - #51","description":"Join Barbara Dunkelman, Geoff Ramsey, Bethany Feinstein, and Mariel Salcedo as they play a game of Most Likely To, discuss what they take for granted, and answer a few questions from the Box of Issues! This episode brought to you by Lyft (http://lft.to/2k09gCG) and MVMT (http://bit.ly/2xJDj8o).","player_loc":"https://roosterteeth.com/embed/always-open-2017-51hrylkjl3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/96732596-3826-469e-856e-9aa43bc28bfd.jpg/sm/AlwaysOpen51thumbnail1.jpg","duration":2562,"publication_date":"2017-11-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-305ppp23s","changefreq":"weekly","video":[{"title":"2017:E305 - Farts Still Funny","description":"The title says it all! The gang reminds you if you forgot.\r\n\r\nAudio from Rooster Teeth Podcast #340\r\nhttp://roosterteeth.com/episode/rt-podcast-season-1-the-proposal-problem-340\r\nAnimated by: Beth Mackenzie and Johnathan Floyd\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-305ppp23s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f2f8637d-38f5-4db6-978a-fe9b9c2bb977.jpg/sm/rtaa305tn.jpg","duration":139,"publication_date":"2017-11-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-23-ksghurjk","changefreq":"weekly","video":[{"title":"S2:E23 - Episode 23 - A Slip Through Time and Space Pt. 2","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-23-ksghurjk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ac6ef4bd-63be-4f71-878b-2155f8432cef.jpg/sm/RWBYChibiEp023Thumbnail.jpg","duration":220,"publication_date":"2017-11-27T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-7yihbbskhw98etu2","changefreq":"weekly","video":[{"title":"V5:E7 - Volume 5, Chapter 7: Rest and Resolutions","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-7yihbbskhw98etu2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/758fbe66-eaf3-4608-b25c-da4ee303e04c.jpg/sm/RWBYvolume5episode7Thumbnail.jpg","duration":768,"publication_date":"2017-11-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-7","changefreq":"weekly","video":[{"title":"1:E7 - The Perfect Shot","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/feb2d9e2-4f75-4c4c-aa72-d3b48efbc184.jpg/sm/CRWBYvolume1episode7Thumbnail.jpg","duration":240,"publication_date":"2017-11-25T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-shovel-knight-2","changefreq":"weekly","video":[{"title":"2017:E45 - Shovel Knight #2 - Fairy of Shovelry","description":"2017:E45 - Shovel Knight #2 - Fairy of Shovelry","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-shovel-knight-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8aefd614-1ded-4084-9a51-d07b6359d60e.jpg/sm/BzCSHOVELKNIGHTTHUMB02.jpg","duration":3229,"publication_date":"2017-11-24T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-for-the-win-116-dlfkghjlf","changefreq":"weekly","video":[{"title":"S10:E1 - For the Win #116","description":"This episode originally aired November 22, 2017, and is sponsored by MVMT (http://bit.ly/2zPGRIp),Upside (http://bit.ly/2hT3d7t) and the Rooster Teeth Store (http://store.roosterteeth.com).","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-for-the-win-116-dlfkghjlf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/94afd82f-0f59-4b94-9609-2054677e14a3.png/sm/tempThumb.png","duration":498,"publication_date":"2017-11-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-theme-pack-anime-fights-tantalizing-tentacles","changefreq":"weekly","video":[{"title":"TP:E1 - Anime Fights & Tantalizing Tentacles","description":"Follow Miles, Gray, and Kerry in a very \"In-Saiyan\" animation-themed episode of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-theme-pack-anime-fights-tantalizing-tentacles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc35f5eb-f545-4dd7-8318-6eb0a802cf03.png/sm/thumb.png","duration":425,"publication_date":"2017-11-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-10-116-esidfk","changefreq":"weekly","video":[{"title":"S10:E116 - Bobbing for Turkey Legs - #116","description":"If you’re a fan of cranberry sauce then we apologize for this wild redemption round of \"Bobbing for Thanksgiving.\" Sponsored by MVMT (http://bit.ly/2zPGRIp),Upside (http://bit.ly/2hT3d7t) and the Rooster Teeth Store (http://store.roosterteeth.com). Hosted by Jon Risinger. Featuring Ryan Haywood, Jeremy Dooley, Chris Demarais and Aaron Marquis.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-10-116-esidfk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4fdbeedc-f490-4351-96d7-71d062d80366.jpg/sm/OntheSpot116thumbnail6.jpg","duration":2242,"publication_date":"2017-11-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-6-fdg5h","changefreq":"weekly","video":[{"title":"1:E6 - Bringing All The RWBY Parts Together - #6","description":"Join Chad and Yssa as they discuss RWBY Volume 5, Chapter 6 and interview the CRWBY team behind the RW_Y reunion! Also, Get a behind the scenes look at how animation, layout, compositing, and lighting all come together to make RWBY happen.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-6-fdg5h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/12b0eb2a-b58f-410e-a18b-4a080fbdb523.jpg/sm/RWBYRW06Thumb.jpg","duration":2019,"publication_date":"2017-11-22T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-467postjklsl2","changefreq":"weekly","video":[{"title":"2017:E57 - Selfishness in Death - Podcast #467 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Charles Manson, plane crashes, and more!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-467postjklsl2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e758865b-6b14-4af9-a8e5-437dd40d1fbb.png/sm/RTP467Gus.png","duration":1264,"publication_date":"2017-11-22T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-50post2vsliulj0","changefreq":"weekly","video":[{"title":"2017:E38 - Still Open #50","description":"2017:E38 - Still Open #50","player_loc":"https://roosterteeth.com/embed/always-open-2017-50post2vsliulj0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3847fcd0-f20a-4271-892c-392fbe5cbba1.png/sm/tempThumb.png","duration":644,"publication_date":"2017-11-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-podcast-2017-467ej32jlkj","changefreq":"weekly","video":[{"title":"2017:E467 - Barb Beats Burnie - #467","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the RT bathroom situation, mind uploading, phones, and more on this week's RT Podcast! This episode originally aired on November 20, 2017, sponsored by Boomerang (http://bit.ly/2jbo0TB), Dollar Shave Club (http://bit.ly/2xMcCUD), ProFlowers (http://bit.ly/2xCHbZu), the Rooster Teeth Store (http://bit.ly/2dJMiSK)","player_loc":"https://roosterteeth.com/embed/rooster-teeth-podcast-2017-467ej32jlkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e28e377f-3c96-4e4b-9f55-90d0eb3e9d55.jpg/sm/RTPodcast467thumbnail4.jpg","duration":5772,"publication_date":"2017-11-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-saying-no-extra-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"2017:E43 - Saying No & Extra Life Behind the Scenes","description":"During the week leading up to Rooster Teeth’s annual Extra Life event, Burnie talks to different people around the office about the art of saying no and how it has the power to set you free and help you achieve your goals.\r\n\r\nMUSIC\r\nGo to Sleep 6\r\nWe Are Stardust (instrumental) - Bjorkman Pupavac\r\nOne More - Andre Aguado\r\n\r\nStory & Post-producer - Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-saying-no-extra-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7ac766e-1d72-471f-b50a-78596661d6a5.jpg/sm/SayingNo.jpg","duration":677,"publication_date":"2017-11-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-50jlkjluoiu2","changefreq":"weekly","video":[{"title":"2017:E50 - When Cib Met Steven - #50","description":"Join Barbara Dunkelman, Mariel Salcedo, and special guests Steven Suptic and Cib for a round of cupidity, an inside look into Steven and Cib's friendship, and a question from the Box of Issues! This episode brought to you by MeUndies (http://bit.ly/2xkzoyS) and MVMT (http://bit.ly/2xJDj8o)","player_loc":"https://roosterteeth.com/embed/always-open-2017-50jlkjluoiu2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e99f8b36-3cc8-4979-9b43-b8ff0ab5e052.jpg/sm/Always_Open_50_4_thumbnail.jpg","duration":2883,"publication_date":"2017-11-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-304pmljs2","changefreq":"weekly","video":[{"title":"2017:E304 - Sore About Syringes","description":"Geoff reluctantly goes to the doctor for the first time in a while. He's gonna get some shots while he's there.\r\n\r\nAudio from Off Topic Podcast #90\r\nhttp://achievementhunter.roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-90-3-iugy\r\nAnimated by: Gabe Silva\r\nDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-304pmljs2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f34dc5d6-feba-45b2-9090-421d72aee1cb.jpg/sm/rtaa304tn.jpg","duration":91,"publication_date":"2017-11-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-rooster-teeth-s-holiday-horror","changefreq":"weekly","video":[{"title":"S7:E46 - Rooster Teeth's Holiday Horror","description":"It's that time of year for another holiday story, \nthis time things got a little bit gory. \nWe hope you enjoyed this Christmas treat, \nnow check out our store and buy something neat!\nHoliday sale! Shop the Rooster Teeth Store: http://bit.ly/2rpUvRj","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-rooster-teeth-s-holiday-horror","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aed8ef17-3b83-4a20-88cc-1135a58f999a.jpg/sm/tempThumb.jpg","duration":149,"publication_date":"2017-11-20T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-6ulihl23hns988","changefreq":"weekly","video":[{"title":"V5:E6 - Volume 5, Chapter 6: Known by its Song","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-6ulihl23hns988","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/16b391fd-1346-4087-93e8-bc2afedb3c98.jpg/sm/RWBYvolume5episode6Thumbnail.jpg","duration":1057,"publication_date":"2017-11-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-skin-and-bones","changefreq":"weekly","video":[{"title":"1:E6 - Skin and Bones","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-skin-and-bones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c7a838c9-9dfd-4982-8990-9096e824ee35.jpg/sm/CRWBYvolume1episode6Thumbnail.jpg","duration":321,"publication_date":"2017-11-18T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-43-39h44","changefreq":"weekly","video":[{"title":"2017:E43 - The Boy is There - #43","description":"Join Gray, Miles, Yssa, Cole, Kerry, Austin, and Special Guest Monica Rial as they discuss Dragon Ball, JoJo's Bizarre Adventure in Anime Telephone, and Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-43-39h44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/83a271fe-0d2b-45fe-9b7f-09afbfbe2e3d.png/sm/fanservice043.png","duration":4481,"publication_date":"2017-11-18T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-shovel-knight","changefreq":"weekly","video":[{"title":"2017:E44 - Shovel Knight","description":"Huzzah and greetings eager viewers. Join our intrepid young adventurers as they take up their shovels and journey to defeat the evil Enchantress. Bandits, monsters, rats on propellers, and the Order of No Quarter stand between our heroes and the Tower of Fate where the Enchantress resides. Can our boys make it through these challenges or will they end up being each others downfall? Only time will tell.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-shovel-knight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5d5ffd6-00db-4519-8227-c8ad1d4058c4.jpg/sm/BzCSHOVELKNIGHTHUMB01.jpg","duration":3557,"publication_date":"2017-11-18T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-5-df6g5h4","changefreq":"weekly","video":[{"title":"1:E5 - Shaping RWBY Into a Diamond - #5","description":"This week, Yssa and Chad interview two of the classy RWBY editors who explain the many facets of editing such a complex and lovely beast like RWBY.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-5-df6g5h4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ad4b4f15-67bc-4797-8e10-b78a490d2c71.jpg/sm/RWBYRWTHUMBNAIL05.jpg","duration":1955,"publication_date":"2017-11-15T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-466-post-show-jgoierjg","changefreq":"weekly","video":[{"title":"2017:E56 - Afflicted Vampires - Podcast #466 Post Show","description":"Join Gus Sorola, Gavin Free, and special guests Steven Suptic and Cib as they discuss Black Mirror, trick beer throws, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-466-post-show-jgoierjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78bdd2cf-4fc0-4729-9d58-3514c6342bac.png/sm/tempThumb.png","duration":751,"publication_date":"2017-11-15T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-466-ghhgo5h","changefreq":"weekly","video":[{"title":"2017:E466 - Gus's Intervention - #466","description":"Join Gus Sorola, Gavin Free, and special guests Steven Suptic and Cib as they discuss celebrity scandals, bitmojis, passion projects, and more on this week's RT Podcast! And stick around for a special interview with \"The World's Greatest Card Mechanic,\" the blind Richard Turner, and director Luke Korem. Find out more about their documentary, Dealt, at http://bit.ly/2joPVQs. \n\n\n\n\n\n\n\n\n\n This episode originally aired on November 13, 2017, sponsored by NatureBox (http://bit.ly/2yuseM3), Squarespace (http://bit.ly/290ucbK), Upside (http://bit.ly/2jof65O), The Rooster Teeth Store (http://bit.ly/2dJMiSK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-466-ghhgo5h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/11526cf1-4a3c-4e2b-9c95-58d6a6306126.jpg/sm/RTPodcast466thumbnail1.jpg","duration":7057,"publication_date":"2017-11-15T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-49-go4ijhg","changefreq":"weekly","video":[{"title":"2017:E37 - Still Open #49","description":"2017:E37 - Still Open #49","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-49-go4ijhg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d2d48ab6-ab44-4c58-a6d6-67ec642d4015.png/sm/tempThumb.png","duration":1027,"publication_date":"2017-11-14T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-scuba-diving-at-the-great-barrier-reef","changefreq":"weekly","video":[{"title":"2017:E42 - Scuba Diving at the Great Barrier Reef","description":"Ellie flips the script on Burnie and gets him out of his comfort zone. After Pax Australia she takes Burnie and Ashley scuba diving, staying on a liveaboard boat at the Great Barrier Reef. MUSIC: Go To Sleep, Bustra - Everything's Different (Monstercat Release), Da Tooby - Knockout 2, Liquid Lounge, Anders Morlin - Money Job, Pacific Palisades, Matt Cherne - Close.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-scuba-diving-at-the-great-barrier-reef","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/82bdf229-82ff-4d41-9fd6-ce03cfb5bb37.png/sm/BurnieVlogScubaThumbnail.png","duration":1005,"publication_date":"2017-11-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-49-gh4h-l","changefreq":"weekly","video":[{"title":"2017:E49 - The Most Horrifying Faceswap - #49","description":"Join Barbara Dunkelman, Jessica Vasami, Max Kruemcke, and Ashley Jenkins as they play a game of Most Likely To, talk about their laziest habits, and answer some questions from the Box of Issues! This episode is sponsored by Casper (http://bit.ly/2hnkSAe) and Texture (http://bit.ly/2yuIqdy)","player_loc":"https://roosterteeth.com/embed/always-open-2017-49-gh4h-l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b6fec722-2142-4b2e-812f-b11f66ceccfb.jpg/sm/tempthumb.jpg","duration":3591,"publication_date":"2017-11-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-303-g4goi4j","changefreq":"weekly","video":[{"title":"2017:E303 - GoG Do Cats Know","description":"Another round of Gavin or Google from RTX Austin 2017!\r\n\r\nAudio from Rooster Teeth Podcast #440\r\nhttp://roosterteeth.com/episode/rt-podcast-2017-440-ogoiug\r\nAnimated by: Johnathan Floyd\r\nDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-303-g4goi4j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a1f798d-7e3c-4dd0-841c-19193ec2964c.jpg/sm/rtaa303tn.jpg","duration":170,"publication_date":"2017-11-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-5-qoiljjj32e","changefreq":"weekly","video":[{"title":"V5:E5 - Volume 5, Chapter 5: Necessary Sacrifice","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-5-qoiljjj32e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6d777504-b236-4fab-821a-4e15472ae7fd.jpg/sm/RWBYvolume5episode5Thumbnail.jpg","duration":1018,"publication_date":"2017-11-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-all-of-the-lights","changefreq":"weekly","video":[{"title":"1:E5 - All of the Lights","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-all-of-the-lights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/de81b651-431f-439d-a526-e6aa142285f7.jpg/sm/CRWBYvolume1episode5Thumbnail.jpg","duration":227,"publication_date":"2017-11-11T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-42-bid54","changefreq":"weekly","video":[{"title":"2017:E42 - This Show Has Changed You - #42","description":"Join Gray, Miles, Yssa, Cole, Kerry, Austin, and Special Guest Victoria Holden as they New Live action & Netflix series, JoJo's Bizarre Adventure in Anime Telephone, and Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-42-bid54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/230aeca4-ac2f-4558-820f-6006702dd841.png/sm/tempThumb.png","duration":4378,"publication_date":"2017-11-11T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-layers-of-fear-3","changefreq":"weekly","video":[{"title":"2017:E43 - Layers of Fear - Inheritance DLC","description":"Our boys thought they were done but oh how they were wrong. Years after the main game finished the painter's daughter returns to her childhood home in search of answers but unfortunately for Kyle and Miles the daughter may have inherited more from her father than just this decrepit old house.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-layers-of-fear-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e2ad1084-ec95-4113-b3cc-fafe22c87bb0.jpg/sm/BCLAYERSOFFEARTHUMB03.jpg","duration":4662,"publication_date":"2017-11-10T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-extra-life","changefreq":"weekly","video":[{"title":"2017:E7 - Rooster Teeth & Dell Children's Hospital Announcement!","description":"Rooster Teeth has worked with Dell Children’s Medical Center of Central Texas through Extra Life for several years, and today we are proud to announce a new portion of the hospital that has been named in our honor! Watch as Jack and Caiti tour the brand new mental health unit that was partially funded by Rooster Teeth’s donations, as well as the newly christened Rooster Teeth Healing Garden.","player_loc":"https://roosterteeth.com/embed/the-lab-2017-extra-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/88455823-355e-4a1f-9ddb-16f93e7b8464.jpg/sm/elv3.jpg","duration":114,"publication_date":"2017-11-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-4-erh56","changefreq":"weekly","video":[{"title":"1:E4 - Making RWBY Fights Tight - #4","description":"Chad and Yssa get into the wacky mind of RWBY animator Austin Hardwicke, who sheds light on all the intricate steps involved in making the many fight sequences in RWBY so very tight.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-4-erh56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ffd3ab10-09e4-477c-ac33-d10f4b156a9e.png/sm/tempThumb.png","duration":1968,"publication_date":"2017-11-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-465-post-show-g984u","changefreq":"weekly","video":[{"title":"2017:E55 - Hat! - Podcast #465 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss World of Warcraft classic servers, the Burnie hat, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-465-post-show-g984u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f4e33ad2-9764-4b00-904f-60ea9590fc89.png/sm/TempThumbGavinLaughing.png","duration":1281,"publication_date":"2017-11-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-48-skhior","changefreq":"weekly","video":[{"title":"2017:E36 - Still Open #48","description":"2017:E36 - Still Open #48","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-48-skhior","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0e30e359-bb0b-47fc-a387-b37d6ad5b93d.jpg/sm/ao48psthumb.jpg","duration":630,"publication_date":"2017-11-07T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-465-hio4gh","changefreq":"weekly","video":[{"title":"2017:E465 - Trailers Spoil Every Movie - #465","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss trailers, comic book movies, what’s too much water, and more on this week's RT Podcast! This episode originally aired on November 6, 2017, sponsored by Blue Apron (http://cook.ba/2l0pwsz), MeUndies (http://bit.ly/2yurK8H), Casper (http://bit.ly/2bgC0nt)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-465-hio4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bd7edb98-299c-4b85-af6c-7a0ea705b712.jpg/sm/RTPodcast465thumbnail2.jpg","duration":5627,"publication_date":"2017-11-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-pax","changefreq":"weekly","video":[{"title":"2017:E41 - PAX Australia","description":"Burnie, Ashley, and Ellie travel to Melbourne to take in the sights, sample fine millennial whiskey, and - most importantly - attend PAX Australia, where Burnie is giving the keynote. Afterwards, Ellie and Ashley have a surprise in store for Mr. Burns...\n\nMUSIC\nDreamers - Matt Cherne\nKickin It - Matt Cherne\nLimitless - Matt Cherne \nFunkadelic - Matt Cherne\n\n\n\n\n\n\n\nStory and post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-pax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e1d919bd-04dc-47ec-830b-8954fc4dd096.png/sm/bvlogpax.png","duration":716,"publication_date":"2017-11-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-48-jgo4uoi","changefreq":"weekly","video":[{"title":"2017:E48 - The Gender Spectrum - #48","description":"Join Barbara Dunkelman, Jon Risinger, Kdin Jenzen, and Mariel Salcedo as they play a round of Cupidity, discuss Kdin's Coming Out, and answer a few questions from the Box of Issues! Sponsored by BioClarity (http://bit.ly/2eZSeI1)","player_loc":"https://roosterteeth.com/embed/always-open-2017-48-jgo4uoi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/591bfac3-e82f-45e4-893d-178dc66e6319/sm/690915-1509981157178-AO_Site.00_22_07_13.Still001.jpg","duration":3612,"publication_date":"2017-11-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-barenaked-ladies-lookin-up-official-music-video","changefreq":"weekly","video":[{"title":"MV:E13 - Barenaked Ladies - \"Lookin' Up\" (Official Music Video)","description":"Rooster Teeth presents \"Lookin' Up\" (Official Music Video) by the Barenaked Ladies. \n\nFake Nudes is available to pre-order! Order now and get “Lookin’ Up” and “Bringing It Home” instantly. #BNLFAKENUDES http://found.ee/fakenudes","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-barenaked-ladies-lookin-up-official-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d4e806c-a1ac-4475-b6a5-5c07128bd54a/sm/2013912-1509562967126-thumb.jpg","duration":172,"publication_date":"2017-11-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-302-oghg5h","changefreq":"weekly","video":[{"title":"2017:E302 - Drunk Baby Sitting","description":"Miles gets stuck at work one night watching over drunk Chris and Blaine. Some remember it better than others.\n\nAudio from Rooster Teeth Podcast #398\n\n\n\nAnimated and Directed by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-302-oghg5h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/899afc73-343f-46cc-8043-3d11763fb5e7/sm/2013912-1509565672220-rtaa302tn.jpg","duration":175,"publication_date":"2017-11-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-4-odeihrl","changefreq":"weekly","video":[{"title":"V5:E4 - Volume 5, Chapter 4: Lighting the Fire","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-4-odeihrl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d56dd6f2-4938-4f1a-a45f-fbc6b9d5567f.jpg/sm/RWBYvolume5episode4Thumbnail.jpg","duration":975,"publication_date":"2017-11-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crwby-behind-the-episode-1-setting-the-scene","changefreq":"weekly","video":[{"title":"1:E4 - Setting the Scene","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/crwby-behind-the-episode-1-setting-the-scene","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d70a0d9f-7df6-4d00-939b-fb9a26591951.jpg/sm/CRWBYvolume1episode4Thumbnail.jpg","duration":177,"publication_date":"2017-11-04T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-41","changefreq":"weekly","video":[{"title":"2017:E41 - Bazinga - #41","description":"Join Gray, Miles, Yssa, Cole, Kerry, and Austin as they discuss Free! - Iwatobi Swim Club, JoJo's Bizarre Adventure in Anime Telephone, and Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8e98ddcb-88eb-4d05-b1ff-a42c330747b1.png/sm/tempthumb.png","duration":4213,"publication_date":"2017-11-04T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-layers-of-fear-2","changefreq":"weekly","video":[{"title":"2017:E42 - Layers of Fear - #2","description":"I know, I know, it's November and the card at the beginning says 2Spooky October but listen, our boys filmed this on Halloween and insisted it still counts. After everything they have been through and all the years they surely shaved off their lives from filming this part I think we can let it slide because this is without a doubt the scariest thing Kyle and Miles have played for Backwardz Compatible.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-layers-of-fear-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0d5c42f-a2f9-48fe-b0a9-7e21d7ff14b1.jpg/sm/BCLAYERSOFFEARTHUMB02.jpg","duration":8354,"publication_date":"2017-11-03T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-115-gjeoigj","changefreq":"weekly","video":[{"title":"S9:E16 - For the Win #115","description":"S9:E16 - For the Win #115","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-115-gjeoigj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/55cf1784-6668-4de7-8352-5607939f1192.jpg/sm/tempThumb.jpg","duration":484,"publication_date":"2017-11-03T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lazer-team-lazer-team-lazer-team-table-read","changefreq":"weekly","video":[{"title":"LT:E2 - Lazer Team: Table Read","description":"Join Matt Hullum and the cast of Lazer Team for a table read of the script of the Rooster Teeth's first feature film: \"Lazer Team\"","player_loc":"https://roosterteeth.com/embed/lazer-team-lazer-team-lazer-team-table-read","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70aa6f7a-74ac-4ce3-933f-0424d33e8ab9/sm/2013912-1509489838387-LT1THUMBNAILTABLEREADRTv5.png","duration":6254,"publication_date":"2017-11-03T10:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lazer-team-lazer-team-lazer-team","changefreq":"weekly","video":[{"title":"LT:E1 - Lazer Team: Director's Cut","description":"Four small-town losers stumble across an alien crash site containing an incredible battle suit. One round of bickering and a quick scuffle later, they each find themselves wearing a piece of the suit, which has genetically bound itself to them. Now they must work together as one to save humanity. With the government chasing after them and desperate to remove their new equipment at ANY cost, the foursome must learn to use a strange alien device meant for only one person, train for a battle against an omnipotent enemy, and not kill each other in the process. They may not be strong, smart, or talented... but they’re Lazer Team.","player_loc":"https://roosterteeth.com/embed/lazer-team-lazer-team-lazer-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59a5e535-5eec-49b8-93af-e080e1d2aa19/sm/2013912-1509489764440-LT1THUMBNAILRT.png","duration":6210,"publication_date":"2017-11-03T10:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-115-ghiu4h","changefreq":"weekly","video":[{"title":"S9:E115 - Michael and Lindsay Do Goo - #115","description":"How fast can you change a really dirty diaper? And, Michael is caught by Jar Jar (Lindsay) shaking his money-maker. Sponsored by Casper (http://bit.ly/2dQg1oc) and Lazer Team 2 (http://bit.ly/2iWqPsg). Hosted by Jon Risinger. Featuring Michael and Lindsay Jones, Chris Demarais and Patrick Matthews.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-115-ghiu4h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfd5f62c-b06a-4430-8ef2-9da7a16070e8/sm/2013912-1509654946120-5thumbnail.jpg","duration":2150,"publication_date":"2017-11-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-rwby-rewind-3","changefreq":"weekly","video":[{"title":"1:E3 - The Sounds of RWBY - #3","description":"Chris and Alena from RWBY's illustrious audio team drop by to share some \"sound advice,\" Chad and Yssa learn how a foley artist makes the sound of Crescent Rose firing a shot, and there's a FIRST look at RWBY Vol. 5 Chapter 4.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-rwby-rewind-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04f3288a-a4f5-4800-9a89-bcbd47b8d264/sm/690915-1509550041271-RWBYRW03thumb.jpg","duration":1797,"publication_date":"2017-11-01T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-final-fantasy-hairdos-2","changefreq":"weekly","video":[{"title":"S2:E25 - Final Fantasy Hairdos","description":"Final Fantasy is known for it's epic story lines, stunning visuals and of course over the top hair styles! So we're counting down our Top 10 Favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-final-fantasy-hairdos-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b94ac1f4-ba7e-4535-8ae8-cad94b50e1b6/sm/2097147-1498612382881-06_28_17-Top10-FFHair.jpg","duration":536,"publication_date":"2017-06-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-zero-teleports-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E16 - Zero teleports into DEATH BATTLE!","description":"Dr. Wily's greatest creation is ready to tear down its rivals","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-zero-teleports-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b7f5729-4ea7-48f9-b986-9b6b810ad880/sm/2097147-1498259609729-06-24_17_DBPreview_Zero.jpg","duration":176,"publication_date":"2017-06-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-kermion-vs-sonicnaut","changefreq":"weekly","video":[{"title":"S2:E33 - FUSION BATTLE!!! (Kermit VS Sonic)","description":"The crew admires your fanart of Kermit fusing with Scorpion and Sonic fusing with the Juggernaut and Metal Sonic is coming to DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-kermion-vs-sonicnaut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d1e95e3-1adc-427c-895c-bb52a543e2f4/sm/2097147-1498279280208-DBCast-Template.jpg","duration":3552,"publication_date":"2017-06-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-mega-man-vs-bomberman","changefreq":"weekly","video":[{"title":"S2:E12 - Mega Man VS Bomberman","description":"This battle of boys with bombs and bullets will decide who is the real man in the ring.\n\n\n\n\n\nThis episode's animator is Luis Cruz (CVAnimation)! https://twitter.com/CVAnimation\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-mega-man-vs-bomberman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9479477-302c-405a-8b64-bc65a4d9471e/sm/2031125-1498176019276-DBX_027.jpg","duration":118,"publication_date":"2017-06-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-dragon-ball-z-moments","changefreq":"weekly","video":[{"title":"S2:E24 - Dragon Ball Z Moments! ","description":"Dragon Ball Z is full of epic moments, but here are the 10 best!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-dragon-ball-z-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53736398-63f0-42af-832d-37757b185766/sm/2097159-1498076767034-TOP_10_DBZ_Moments_THUMBNAIL.jpg","duration":650,"publication_date":"2017-06-21T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-metal-sonic-drives-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E15 - Metal Sonic overdrives into DEATH BATTLE!","description":"The metal nemesis of the fastest hedgehog alive is here to exterminate its competition","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-metal-sonic-drives-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8a7db18-0c78-4056-ae53-2cbd0a242956/sm/2097147-1497679590475-Metal_Preview.jpg","duration":183,"publication_date":"2017-06-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-crimson-chin-vs-the-thick","changefreq":"weekly","video":[{"title":"S2:E32 - Crimson Chin VS The Tick","description":"Nick, Torrian and Ben discuss the latest Android 18 VS Captain Marvel DEATH BATTLE, how we calculate the strength of Dragon Ball characters and Superman is the worst father ever!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-crimson-chin-vs-the-thick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/599d4370-0a0e-49c8-a832-9545edb2ba07/sm/2097147-1497682451377-123.jpg","duration":5206,"publication_date":"2017-06-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-brazilian-mega-man-be-whack-yo-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S2:E12 - Brazil's INSANE Mega Man Comic | Desk of DEATH BATTLE","description":"Because who didn't think Mega Man needed more sex and violence?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-brazilian-mega-man-be-whack-yo-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19e4f954-45f9-4434-8445-65d3b2bd58ca/sm/2097159-1497633581504-Megaman-Thumb.jpg","duration":290,"publication_date":"2017-06-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-dads-w-boomstick","changefreq":"weekly","video":[{"title":"S2:E23 - Dads w/Boomstick","description":"It's that time of year again to appreciate the father figures in our lives. For Boomstick on the other hand....well, here's his list of fathers he wishes he had.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-dads-w-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7afaffa-9b4a-48b8-9ed0-23b0587d4a73/sm/2984284-1497462384186-TOP_10_DADS.jpg","duration":636,"publication_date":"2017-06-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-android-18-vs-captain-marvel-w-commentary","changefreq":"weekly","video":[{"title":"E:E23 - Android 18 VS Captain Marvel w/ Commentary","description":"Ben, Chad and Sam give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-android-18-vs-captain-marvel-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b65cf752-a5c4-4df6-9f47-f5ae30919897/sm/2056984-1497289130235-Commentary.jpg","duration":1057,"publication_date":"2017-06-13T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-android-18-vs-captain-marvel","changefreq":"weekly","video":[{"title":"S4:E7 - Android 18 VS Captain Marvel (Dragon Ball VS Marvel Comics)","description":"A battle of powerful blondes with devastating energy! Will the android who threatened the world win the day, or can Carol Danvers pull this one off?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer https://twitter.com/BenBSinger\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\nWriter: Sam Mitchell https://twitter.com/ScrewAttackSam\n\n\n\n\n\n\n\n\n\nWriter: Jessica Davis https://twitter.com/JLDTweets\n\n\n\n\n\n\n\n\n\nAnimator: Zack Watkins https://twitter.com/xZackAttack27x\n\n\n\n\n\n\n\n\n\nGraphic Artist: Chris \"Jerky\" Bastin https://twitter.com/HyperJerk\n\n\n\n\n\n\n\n\n\nVoice of Android 18: Amber Lee Connors https://twitter.com/AmberLeeConnors\n\n\n\n\n\n\n\n\n\nVoice of Captain Marvel: Terri Doty https://twitter.com/TeeDotally\n\n\n\n\n\n\n\n\n\nVoice Direction/Casting: Marissa Lenti https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\nVideo Editor: John Francis McCullagh https://twitter.com/johnfmfilms\n\n\n\n\n\n\n\n\n\nVideo Editor: Noel Wiggins https://twitter.com/NOELWIGGINSfilm\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero http://www.twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-android-18-vs-captain-marvel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3ba3a4e-bca6-425c-9c84-61cde44bb600/sm/2984284-1497277057591-Android_18_Vs_Captain_Marvel.jpg","duration":1060,"publication_date":"2017-06-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-scooby-doo-vs-blue","changefreq":"weekly","video":[{"title":"S2:E31 - Scooby Doo VS Blue","description":"The cast talks Scooby vs Blue, steals beer from Achievement Hunter and talks about the all new set!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-scooby-doo-vs-blue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8da32e33-9f97-4690-93a0-d4a4ed85ed47/sm/2056984-1497111049031-06_09_17-DBCast.jpg","duration":3965,"publication_date":"2017-06-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-sasuke-vs-killua-naruto-vs-hunter-x-hunter","changefreq":"weekly","video":[{"title":"S2:E11 - Sasuke VS Killua (Naruto VS Hunter x Hunter)","description":"The bad boys give it their all, but they're not just fighting for themselves!\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Benny \"Bio\" Landa! >https://twitter.com/BioRhythmic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: >https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: >https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: >https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-sasuke-vs-killua-naruto-vs-hunter-x-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36d0c746-a325-499a-b4f1-9eb7c30b1816/sm/2031125-1496872080324-DBX_027.jpg","duration":207,"publication_date":"2017-06-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-maids","changefreq":"weekly","video":[{"title":"S2:E22 - Maids","description":"Maids are the guardian angels that reinforce our laziness. In honor of their selflessness we're counting down our Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-maids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f60cd2d-c826-45db-b4a6-ca87e97dc7cb/sm/2984284-1496829074740-TOP_10_MAIDS.jpg","duration":578,"publication_date":"2017-06-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-captain-marvel-supernovas-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E14 - Captain Marvel Supernovas into DEATH BATTLE!","description":"S4:E14 - Captain Marvel Supernovas into DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-captain-marvel-supernovas-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/792150a0-acc1-477f-a2ca-d637b2a9c3a5/sm/2056984-1496640667603-Captain_Marvel_Preview_THUMBNAIL.jpg","duration":175,"publication_date":"2017-06-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-the-origin-of-kryptonite","changefreq":"weekly","video":[{"title":"S2:E11 - The Origin of Kryptonite","description":"There's more then one type of Kryptonite and each has their own VERY strange effect on the man of Steel","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-the-origin-of-kryptonite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f5634fb-6901-442a-901d-2c0baa5851b7/sm/2056984-1496427143519-05_45_17-DoDB-Kryptonite.jpg","duration":299,"publication_date":"2017-06-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-goku-s-a-team","changefreq":"weekly","video":[{"title":"S2:E30 - Goku's A-Team","description":"The cast talks Android 18's powers and abilities, the strongest Dragon Ball Super characters and Torrian the Hedgehog","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-goku-s-a-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94741be9-c732-4850-8821-dd972cc3e224/sm/2056984-1496248349196-05_31_17-DBCast-Thumb.jpg","duration":4013,"publication_date":"2017-06-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-batman-gadgets","changefreq":"weekly","video":[{"title":"S2:E21 - Batman Gadgets","description":"The Dark Knight has a plethora of wonderful toys and Nick counts down his Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-batman-gadgets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6d6182c-45cc-4588-a291-81446d74decb/sm/2056984-1496143433930-05_30_17-Top10-Batman.jpg","duration":604,"publication_date":"2017-05-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-android-18-boots-up-for-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E13 - Android 18 Energizes into DEATH BATTLE!","description":"The fearsome Android 18 is powering up for a battle to the death! ","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-android-18-boots-up-for-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f8a0e71-798b-48ff-832e-e494334a8302/sm/2097159-1495836995419-DB_18_Preview.jpg","duration":181,"publication_date":"2017-05-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-cloud-vs-guts-final-fantasy-vs-berserk","changefreq":"weekly","video":[{"title":"S2:E10 - Cloud VS Guts (Final Fantasy VS Berserk)","description":"Big swords and angry personalities don't mix. Someone's gonna die!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Kiid - https://www.youtube.com/user/TheRegularGuysXD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/BenBSinger \n\n\n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-cloud-vs-guts-final-fantasy-vs-berserk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7e62625-f904-4128-b578-e456dacc34be/sm/2031125-1495740510925-DBX_025.jpg","duration":166,"publication_date":"2017-05-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-kongs-vs-king-kong-2","changefreq":"weekly","video":[{"title":"S2:E29 - Kongs VS King Kong","description":"The cast talks the DK family VS King Kong, Sub-Zero vs Glacius and Torrian's strange ideas on... everything...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-kongs-vs-king-kong-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64c13d16-cec8-4002-873d-3e2b161753ad/sm/2097147-1495730227212-05_25_17-DBCast-Thumb.jpg","duration":4419,"publication_date":"2017-05-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-weirdest-fighting-game-characters","changefreq":"weekly","video":[{"title":"S2:E20 - Weirdest Fighting Game Characters","description":"There's been a lot of fighting games over the years and each comes with a huge cast of characters. Some of them are.... well WEIRD AS HELL! So Nick count's down his Top 10 Favorites!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-weirdest-fighting-game-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f288354e-cad7-4e26-9a6f-ac894a07cb7a/sm/2984284-1495644372925-05_24_17-Top10-Weirdest-Fighting.jpg","duration":622,"publication_date":"2017-05-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-sub-zero-vs-glacius-w-commentary","changefreq":"weekly","video":[{"title":"E:E22 - Sub-Zero VS Glacius W/ Commentary","description":"Ben, Chad and Nick give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-sub-zero-vs-glacius-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a060efda-a16f-4026-a4b3-cf5f71b5605d/sm/2097147-1495488372844-2017_Thumbnail_SvG.jpg","duration":863,"publication_date":"2017-05-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-sub-zero-vs-glacius","changefreq":"weekly","video":[{"title":"S4:E6 - Sub-Zero VS Glacius","description":"Two masters of ice and combat go head to head to see who's the coolest!\n\n\n\n\n\n\n\n\n\nCREDITS \n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer - http://www.twitter.com/BenBSinger \n\n\n\n\n\n\n\nBoomstick: Chad James - http://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\nWriter: Nick Cramer - http://www.twitter.com/THENervousNick \n\n\n\n\n\n\n\nAnimator: Kiid - https://www.youtube.com/user/TheRegularGuysXD \n\n\n\n\n\n\n\nGraphic Artist: Chris \"Jerky\" Bastin - http://www.twitter.com/HyperJerk \n\n\n\n\n\n\n\nVideo Editor: Gerardo Mejia - http://www.twitter.com/HybridRain \n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - http://www.twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-sub-zero-vs-glacius","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6df5848-ae89-409e-a256-3ce8029246d9/sm/2097147-1495400084665-DB_Thumb_077.jpg","duration":863,"publication_date":"2017-05-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-batman-s-crazy-costumes","changefreq":"weekly","video":[{"title":"S2:E10 - Batman's CRAZY Costumes!","description":"The Dark Knight has more in his wardrobe than dark colors! ","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-batman-s-crazy-costumes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f949982-a5fc-43f7-bc5f-e3a9d1717578/sm/2097159-1495227344469-05_20_17-Deskof_Batmancostumes.jpg","duration":262,"publication_date":"2017-05-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-chewbacca-vs-groot","changefreq":"weekly","video":[{"title":"S2:E28 - Chewbacca VS Groot","description":"The cast talks Glacius' origin, rule 34 DEATH BATTLE research and Nick's apartment break in.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-chewbacca-vs-groot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df79f555-1c15-49f7-9691-c6d02ec88742/sm/2056984-1495122157141-05_18_17-DBCast.jpg","duration":4265,"publication_date":"2017-05-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-dark-souls-bosses","changefreq":"weekly","video":[{"title":"S2:E19 - Dark Souls Bosses","description":"The Souls franchise is known for it's bosses, so Shaun from Game Attack teams up with Nick to count down their Top 10 favorite!\n\nSubscribe to Game Attack! ","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-dark-souls-bosses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3145c3c0-05dd-455b-af02-db33c0898511/sm/2984284-1495045761207-05_17_17-Top10-Darksouls.jpg","duration":677,"publication_date":"2017-05-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-glacius-puddles-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E12 - Glacius Pools Into DEATH BATTLE!","description":"The ice clad alien officer of Killer Instinct is ready to freeze the competition in their tracks.","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-glacius-puddles-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1c67fc5-df51-4be0-9610-8347b59bda4e/sm/2056984-1494866561295-05_15_17-DBPreview-Glacius.jpg","duration":144,"publication_date":"2017-05-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-aigis-vs-noel-vermillion-persona-vs-blaz-blue","changefreq":"weekly","video":[{"title":"S2:E9 - Aigis VS Noel Vermillion (Persona VS BlazBlue)","description":"No matter what happens, somebody's going to lose their favorite robo-waifu...\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Aquila Harukaze! https://twitter.com/AquilaHarukaze\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-aigis-vs-noel-vermillion-persona-vs-blaz-blue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd3e8906-ed35-4b89-ab11-9fb18e0d0bef/sm/2031125-1494630021205-DBX_024.jpg","duration":151,"publication_date":"2017-05-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-iron-fist-vs-liu-kang","changefreq":"weekly","video":[{"title":"S2:E27 - Elsa VS Sub-Zero","description":"The cast talks Sub-Zero's freezing techniques, why Elsa from Frozen might be the most OP ice character and Lui Kang vs Iron Fist","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-iron-fist-vs-liu-kang","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7558c0eb-13dd-4328-a5d6-6e8d88cc8ddf/sm/2056984-1494520663349-05_11_17-DBCast-Thumb.jpg","duration":3960,"publication_date":"2017-05-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-worst-moms","changefreq":"weekly","video":[{"title":"S2:E18 - Worst Moms","description":"In honor of Mother's Day, we're counting down the worst ladies to ever give birth.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-worst-moms","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2450a98-6fc7-4b8c-bb07-49dc59829559/sm/2984284-1494437158139-05_10_17-Top10-WorstMoms.jpg","duration":671,"publication_date":"2017-05-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-sub-zero-defrosts-into-death-battle","changefreq":"weekly","video":[{"title":"S4:E11 - Sub-Zero Slides into DEATH BATTLE!","description":"The frosty ninja of the Lin Kuei is ready to prove who's the coolest ice character!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-sub-zero-defrosts-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f81a0ee4-5fa0-43b0-88ea-c1c4ca69d4d2/sm/2056984-1494258630790-05_08_17-DBPreview-SubZero.jpg","duration":167,"publication_date":"2017-05-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-mutants-are-d-i-c-k-s-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S2:E9 - Mutants are DICKS!","description":"If mutants worked together they could change the world! Instead they just fight each other and make it worse!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-mutants-are-d-i-c-k-s-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/753dccd9-f043-4f66-9088-584a092b713a/sm/2097159-1494024831124-Thumbnail.jpg","duration":185,"publication_date":"2017-05-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sigma-vs-ultron","changefreq":"weekly","video":[{"title":"S2:E26 - Sigma VS Ultron","description":"The crew discusses the latest DEATH BATTLE Natsu  VS Ace, Sigma vs Ultron and why Iron Fist might ruin Marvel's Defenders.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sigma-vs-ultron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40c2eeba-be73-43d3-8186-00f868041579/sm/2056984-1493925636300-05_04_17-DBCast.jpg","duration":3723,"publication_date":"2017-05-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-natsu-vs-ace-w-commentary","changefreq":"weekly","video":[{"title":"E:E21 - Natsu VS Ace w/ Commentary","description":"Ben and Sam give you a look behind the scenes of the Natsu vs Ace DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-natsu-vs-ace-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/594eb44c-5a94-4f7b-9ce5-e03611e8cfd7/sm/2097147-1493829347979-DB_Thumb_076_Commentary.jpg","duration":1033,"publication_date":"2017-05-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-pirates","changefreq":"weekly","video":[{"title":"S2:E17 - Top 10 Pirates","description":"Yo ho yo ho a pirate's Top 10 for ye! From the seas to the vastness of space, we countdown our favorite pirates!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-pirates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1acf0f0-feac-4afa-adad-c7a9302f9f3f/sm/2097147-1493830711134-05_01_17-Top10-Pirates.jpg","duration":969,"publication_date":"2017-05-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-natsu-vs-ace-fairy-tale-vs-one-piece","changefreq":"weekly","video":[{"title":"S4:E5 - Natsu VS Ace (Fairy Tail VS One Piece)","description":"These blazing contenders scorch the battlefield and only one will prove who's flame burns brighter!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGOT AN IDEA FOR A DEATH BATTLE? SUBMIT IT HERE > >http://bit.ly/2fM8Z8l\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer @BenBSinger\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James @ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWriter: Sam Mitchell @ScrewAttackSam\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWriter: Jessica Davis @JLDTweets\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAnimator: Luis \"Jetz\" Cruz @CVAnimation\n\n\n\n\n\nGraphic Artist: Chris \"Jerky\" Bastin @HyperJerk\n\n\n\n\n\nVoice of Natsu: Howard Wang @TheHowardWang\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Ace: Valentine Stokes @ViewtifulVal\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Chef: Sam Mitchell @ScrewAttackSam\n\n\n\n\n\nVoice Direction/Casting: Marissa Lenti @LentiSoup\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideo Editor: Gerardo Mejia @HybridRain","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-natsu-vs-ace-fairy-tale-vs-one-piece","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaa7f039-6c81-4506-8434-3e1da6de7ab9/sm/2097147-1493597610777-DB_Thumb_076.jpg","duration":1033,"publication_date":"2017-05-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2","changefreq":"weekly","video":[{"title":"S2:E8 - Broly VS Doomsday (Dragon Ball Z VS DC Comics)","description":"Rage and madness reigns supreme! Two avatars of destruction battle to see whose power truly is maximum!\n\n\n\n\n\n\n\n\n\nThis episode's animator is Zack Watkins! https://twitter.com/xZackAttack27x\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d3a9c26-d4c4-4d15-a01b-1064e81d0b20/sm/2031125-1493424586545-DBX_023.jpg","duration":165,"publication_date":"2017-04-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-tmnt-vs-street-sharks","changefreq":"weekly","video":[{"title":"S2:E25 - TMNT VS Street Sharks","description":"The cast talks about the Teenage Mutant Ninja Turtles vs Street Sharks, Natsu vs Ace, and Star Wars","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-tmnt-vs-street-sharks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca548eb-238c-478f-b507-91482492946e/sm/2056984-1493311401158-04_27_17-DBCast.jpg","duration":4424,"publication_date":"2017-04-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-stupidest-weaknesses","changefreq":"weekly","video":[{"title":"S2:E16 - Top 10 STUPIDEST Weaknesses","description":"No matter how powerful they appear everyone has a weakness and some of them are straight up STUPID!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-stupidest-weaknesses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f8cb59f-54eb-4614-aecc-4ea5ddbd44f4/sm/2056984-1493222758860-04_26_17-Top10-Stupid-Weaknesses.jpg","duration":620,"publication_date":"2017-04-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-portgas-d-ace-bursts-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E10 - Portgas D. Ace Flares into DEATH BATTLE!","description":"The son of the most famous pirate in One Piece is eager to burst onto the scene and turn his opponent into ashes-","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-portgas-d-ace-bursts-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/096728d0-e843-4959-a1f8-ba094cde1aac/sm/2056984-1493020746044-04_04_17-DBPreview.jpg","duration":146,"publication_date":"2017-04-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-who-were-the-real-power-rangers-2","changefreq":"weekly","video":[{"title":"S2:E8 - The Making of Power Rangers!","description":"Power Rangers is the Frankenstein's monster of entertainment! Jocelyn recounts how they re-purposed a Japanese show's footage and turned it into a titanic American franchise","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-who-were-the-real-power-rangers-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff101211-cfc3-4e5f-b251-ded04288ffec/sm/2097147-1492847877551-01.jpg","duration":233,"publication_date":"2017-04-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-speedster-running-royale","changefreq":"weekly","video":[{"title":"S2:E24 - Speed Battle!","description":"The crew discusses Natsu's power, who would win in a speed battle, and so much more...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-speedster-running-royale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50ab416c-fa02-4538-885d-5b8f3644988f/sm/2056984-1492666854704-04_20_17-DBCast.jpg","duration":3656,"publication_date":"2017-04-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-cyborgs-w-death-b-a-t-t-l-e-s-wiz","changefreq":"weekly","video":[{"title":"S2:E15 - Cyborgs w/ DEATH BATTLE's Wiz!","description":"When humans are combined with machines incredible results are achieved. So, Wiz from DEATH BATTLE counts down his favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-cyborgs-w-death-b-a-t-t-l-e-s-wiz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac092290-2c88-4976-b527-78a00de6436f/sm/2056984-1492618514994-04_19_17-Top10Cyborgs.jpg","duration":548,"publication_date":"2017-04-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-natsu-dragneel-blazes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E9 - Natsu Dragneel Blazes into DEATH BATTLE!","description":"The fire eating, dragon trained, mage of the Fairy Tale Guild is ready to fight fire with fire in the next DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-natsu-dragneel-blazes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56b3d7c1-8e2c-437b-b383-3d655c4506f4/sm/2056984-1492448168779-04_17_17-DBPreview-Natsu.jpg","duration":207,"publication_date":"2017-04-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-raphael-vs-wolverine-ninja-turtles-vs-x-men","changefreq":"weekly","video":[{"title":"S2:E7 - Raphael VS Wolverine (TMNT VS X-Men)","description":"These cool but rude dudes take to the sewers for an all-out duel to the death!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Kervin Alcindor! https://www.youtube.com/user/xkareloadedx/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-raphael-vs-wolverine-ninja-turtles-vs-x-men","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c5f8982-ba70-4f7a-952e-f9674e5a52fd/sm/2031125-1491862313602-DBX_022.jpg","duration":82,"publication_date":"2017-04-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-batman-vs-big-o","changefreq":"weekly","video":[{"title":"S2:E23 - Batman VS Big O","description":"The DEATH BATTLE Cast dives into Power Rangers VS Voltron and who would win between Batman and Big O!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-batman-vs-big-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0473f40a-b6ef-4d25-bc3a-199f20962c9e/sm/2097147-1492097808877-04_13_17-DBCast.jpg","duration":3541,"publication_date":"2017-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-piloted-mecha","changefreq":"weekly","video":[{"title":"S2:E14 - Piloted Mechs","description":"When human and machine combine they become a force to be reckoned with! We countdown our Top 10 favorites","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-piloted-mecha","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06941d35-f585-4d47-9779-94ef1aca093f/sm/2097147-1492041829160-2017_ScrewAttackThumbnail-Template_copy.png","duration":602,"publication_date":"2017-04-12T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-power-rangers-vs-voltron-w-commentary","changefreq":"weekly","video":[{"title":"E:E26 - Power Rangers VS Voltron W/ Commentary","description":"Ben, Chad and Nick give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-power-rangers-vs-voltron-w-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1413908f-6fec-4207-8a74-7886840f350b/sm/2056984-1491967897904-DB_Commentary_mvV.jpg","duration":1188,"publication_date":"2017-04-12T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-megazord-vs-voltron-power-rangers-vs-voltron-force","changefreq":"weekly","video":[{"title":"S4:E4 - Power Rangers VS Voltron","description":"Two teams. Two Robots. Only one survives in this special 75th episode of Death Battle!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGOT AN IDEA FOR A DEATH BATTLE? SUBMIT IT HERE > http://bit.ly/2fM8Z8l\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer @BenBSinger\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James @ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWriter: Nick Cramer @THENervousNick\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLead Animator: Torrian Crawford @AnimatedTorrii\n\n\n\n\n\n\n\nVideo Editor: Gerardo Mejia @HybridRain\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSound Designer: Noel Wiggins @NOELWIGGINSfilm\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCasting/Recording: Sound Cadence Studios @SoundCadence\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nComposer: Brandon Yates @bmichaelyates\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSTARRING\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJason: Alejandro Saab @KaggyFilms\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAllura: Amanda Lee @AmaAmaLeeLee\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nZack: Andre Meadows @BlackNerd\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLance: Austin Hargrave @PeanutButterGmr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBilly: Jeff Fabre @Jeff_like_Feff\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKeith: Matthew Patrick @MatPatGT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKimberly: Melonie Mac @MelonieMac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTrini: Morgan Berry @TheMorganBerry\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHunk: Nick Landis @Lanipator\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPidge: Scott Frerichs @KaiserNeko\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Chris Guerrero @ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-megazord-vs-voltron-power-rangers-vs-voltron-force","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80bb49d8-1ec4-4111-9e71-1147951eeaa4/sm/2097147-1491754652768-DB_Thumb_075.jpg","duration":1189,"publication_date":"2017-04-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-joker-is-the-real-h-e-r-o-do-db","changefreq":"weekly","video":[{"title":"S2:E7 - The Joker is a hero!?","description":"Gotham's clown prince of crime might actually be the hero it needs!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-joker-is-the-real-h-e-r-o-do-db","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e980fa3-aff3-4256-aab0-c7dcf044bca1/sm/2056984-1491627788722-04_08_17-Dodb-Joker.jpg","duration":258,"publication_date":"2017-04-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-sudden-death-22","changefreq":"weekly","video":[{"title":"S2:E0 - Sudden DEATH #22","description":"The guys shares stories about the early days of ScrewAttack!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-sudden-death-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b6f4f07-1fed-469b-98b8-614ee6b3bed2/sm/2097147-1491578430735-2056984-1491489780436-04_06_17-DBCast.jpg","duration":1070,"publication_date":"2017-04-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-dr-manhattan-vs-genie","changefreq":"weekly","video":[{"title":"S2:E22 - Dr. Manhattan VS Genie (Aladdin)","description":"The crew goes in depth on the upcoming Megazord VS Voltron fight and they debate physics VS magic with Dr. Manhattan VS the Genie from Aladdin.","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-dr-manhattan-vs-genie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a5d3bdb-dbc2-4154-b0d8-c0fb01eabcc5/sm/2056984-1491489780436-04_06_17-DBCast.jpg","duration":4086,"publication_date":"2017-04-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-overwatch-characters","changefreq":"weekly","video":[{"title":"S2:E13 - Overwatch Characters","description":"Overwatch is full of unique and interesting characters. So we're counting down our Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-overwatch-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/524107d1-7dde-4070-923e-497509493c83/sm/2056984-1491408527662-04_05_17-Top10-Overwatch.jpg","duration":546,"publication_date":"2017-04-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-voltron-pounces-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E8 - Voltron pounces into DEATH BATTLE!","description":"Five pilots bring back the legendary defender to do protect the galaxy in DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-voltron-pounces-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/632d936f-23e8-46d5-b5bf-5044552a5ed8/sm/2056984-1491206166930-04_03_17-DBpreview-Voltron.jpg","duration":184,"publication_date":"2017-04-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-guile-vs-paul-phoenix-street-fighter-vs-tekken","changefreq":"weekly","video":[{"title":"S2:E6 - Guile VS Paul Phoenix (Street Fighter VS Tekken)","description":" Who wears the better hair? That's what really matters!\n\n \n\n\n\n\n\n\n\nThis episode's animator is Benny \"Bio\" Landa! https://twitter.com/BioRhythmic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX \n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger \n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-guile-vs-paul-phoenix-street-fighter-vs-tekken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af121468-148d-4a83-bea7-6f3f68d86932/sm/2031125-1491001052864-DBX_021.jpg","duration":168,"publication_date":"2017-04-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-puddies-vs-foot-soldiers","changefreq":"weekly","video":[{"title":"S2:E21 - Epic Iron Fist Rant","description":"The crew talks Megazord vs Voltron, Putties VS the Foot Clan and Torrian has an epic rant on the Iron Fist Netflix show!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-puddies-vs-foot-soldiers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94c2248f-af16-4f01-b007-90afd6bd7f55/sm/2056984-1490853098633-03_30_17-DBcast.jpg","duration":4576,"publication_date":"2017-03-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-worst-mighty-morphin-power-rangers-villains","changefreq":"weekly","video":[{"title":"S2:E12 - Worst Mighty Morphin Power Rangers Villains","description":"With all the power rangers hype recently we decided to count down the top 10 worst villains from the Mighty Morphin Power Rangers series","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-worst-mighty-morphin-power-rangers-villains","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24d32787-f1ae-4186-a5db-588d42a53566/sm/2056984-1490772112954-03_28_17-Top10-Worst_MMPR_v5.jpg","duration":518,"publication_date":"2017-03-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-the-power-rangers-morph-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E7 - The Power Rangers Morph into DEATH BATTLE!","description":"These teenagers with attitude are suited up and calling the Megazord to throw down in DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-the-power-rangers-morph-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e980f96-b3e0-4b55-a94b-4a1543f6340e/sm/2056984-1490594037814-03_27_17-DB-Megazord-preview.jpg","duration":246,"publication_date":"2017-03-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-should-all-comic-movies-be-rated-r","changefreq":"weekly","video":[{"title":"S2:E6 - Should ALL Comic movies be rated R?","description":"With the success of Deadpool and now Logan, Jocelyn dives into the question \"Should all comic book movies be rated R?\"","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-should-all-comic-movies-be-rated-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc8452b-a7a5-47ab-a1ae-e143208f4903/sm/2056984-1490418615038-03_25_17-Dodb.jpg","duration":288,"publication_date":"2017-03-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-5-best-and-worst-nintendo-consoles","changefreq":"weekly","video":[{"title":"S2:E11 - 5 Best and Worst Nintendo Consoles","description":"We count down the Top 5 best and worst Nintendo consoles of all time!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-5-best-and-worst-nintendo-consoles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30e796e4-280c-4990-b85a-602553bc3bd4/sm/2056984-1490291845292-03_23_17-Top10-Nintendo_V3.jpg","duration":479,"publication_date":"2017-03-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-power-rangers-battle-royal","changefreq":"weekly","video":[{"title":"S2:E20 - Power Rangers Battle Royale","description":"We discuss our latest DEATH BATTLE! Venom vs Bane, who would win a Power Ranger battle royale and how to rob a bank","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-power-rangers-battle-royal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47805df8-cc84-47d4-a364-fc5a10058fed/sm/2056984-1490245628408-03_23_17-DBCast-thumb_Final.jpg","duration":4354,"publication_date":"2017-03-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-15","changefreq":"weekly","video":[{"title":"E:E20 - Venom VS Bane w/ Commentary","description":"Ben, Chad and Nick give you a look behind the scenes into the making of this episode of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05b1aa59-0503-4cdb-8355-8232ef8f1e27/sm/2056984-1490198010501-DB_074_Commentary.jpg","duration":971,"publication_date":"2017-03-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-venom-vs-bane","changefreq":"weekly","video":[{"title":"S4:E3 - Venom VS Bane (Marvel VS DC Comics)","description":"One broke the bat. The other ruined the spider. Now they meet in the ring and only one will leave alive!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGOT AN IDEA FOR A DEATH BATTLE? SUBMIT IT HERE > http://bit.ly/2fM8Z8l\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer @benbsinger\n\n\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James @ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\nWriter: Nick Cramer @THENervousNick\n\n\n\n\n\n\n\n\n\n\n\n\n\nAnimator: S.K. Alam @xKayasx\n\n\n\nSprite Artist: Chris \"Jerky\" Bastin @HyperJerk\n\n\n\n\n\n\n\n\n\n\n\n\n\nEditor: Gerardo Mejia @HybridRain\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Venom: Adam Wennick @AdamWennick \n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Bane: Chris Guerrero @ChrisGuerreroVA\n\n\n\n\n\n\n\n\n\n\n\nVoice of Thugs: Gerardo Mejia @HybridRain\n\n\n\n\n\n\n\n\n\n\n\n\n\nCasting/Voice Direction: Marissa Lenti @LentiSoup\n\n\n\n\n\n\n\n\n\n\n\n\n\nRecorded at Sound Cadence Studios @SoundCadence \n\n\n\n\n\n\n\n\n\n\n\n\n\nAssistant Voice Director: Alejandro Saab @KaggyFilms \n\n\n\n\n\n\n\n\n\n\n\n\n\nAudio Engineer: Amber Lee Connors @AmberLeeConnors \n\n\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero @ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-venom-vs-bane","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b03cac47-bca1-4e6b-a7e4-be0a87cbbd05/sm/2097147-1490111228054-DB_074.jpg","duration":1066,"publication_date":"2017-03-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-genji-vs-raiden-overwatch-vs-metal-gear","changefreq":"weekly","video":[{"title":"S2:E5 - Genji VS Raiden (Overwatch VS Metal Gear)","description":"It's a cyborg ninja duel! The deadliest blades and tech meet on the battle field... and only one will walk away.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Mark Zhang! https://twitter.com/M_rkZh_ng\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-genji-vs-raiden-overwatch-vs-metal-gear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e5cfdcd-f5e6-42b6-861a-c7713e03ecf8/sm/2031125-1489783497233-DBX_020.jpg","duration":147,"publication_date":"2017-03-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-yeager-vs-jaeger","changefreq":"weekly","video":[{"title":"S2:E19 - Jaeger VS Yeager","description":"We discussed Venom's opponent Bane, our love for Power Rangers and Eren Yeager VS the Gipsy Danger Jaeger","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-yeager-vs-jaeger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35576cbb-9040-4e9c-9c50-08f40d76ba9d/sm/2056984-1489684064575-03_16_17-DBCast-thumb.jpg","duration":3897,"publication_date":"2017-03-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-primates","changefreq":"weekly","video":[{"title":"S2:E10 - Primates","description":"There's a lot of Primates in pop culture, and let's be honest, they're pretty great! So Nick counts down his Top 10 Favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-primates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ae5fcec-d8aa-429b-b327-8d36961003f8/sm/2056984-1489536287741-03_14_17-Top10-Primates.jpg","duration":568,"publication_date":"2017-03-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-bane-breaks-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E6 - Bane Breaks Into DEATH BATTLE!","description":"The man who broke the bat is ready to throw down in DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-bane-breaks-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d247b96e-e31a-48b5-b983-8fa60ca698a1/sm/2056981-1489416237791-03_13_17-DBPreview-Bane.jpg","duration":161,"publication_date":"2017-03-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-alfred-is-a-badass-mother-b-u-t-l-e-r","changefreq":"weekly","video":[{"title":"S2:E5 - Alfred is a BADASS Mother-BUTLER!","description":"Batman may be pretty cool, but Alfred is second to none! Learn why it's always important to respect your elders in this episode of Desk of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-alfred-is-a-badass-mother-b-u-t-l-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e13beb64-3096-4c4b-911f-36cf3197388b/sm/2097159-1489167977797-3-12-17_DoDB_Alfred.jpg","duration":229,"publication_date":"2017-03-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-kool-aid-man-vs-randy-savage","changefreq":"weekly","video":[{"title":"S2:E18 - Kool-Aid Man VS Macho Man","description":"The Cast talks Kool-Aid Man VS Macho Man, Venom in DEATH BATTLE, the Iron Fist Netflix Series and more!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-kool-aid-man-vs-randy-savage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/877cd307-dd23-4f0f-8927-26a9fa61e9a8/sm/2056984-1489038952420-03-09-17-DBCast-Thumb-Final.jpg","duration":4097,"publication_date":"2017-03-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-fantasy-worlds","changefreq":"weekly","video":[{"title":"S2:E9 - Fictional Worlds","description":"In fiction, worlds have been created that are fantastical, inspiring and sometimes downright awesome! So Nick counts down his Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-fantasy-worlds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4535e8e1-69de-4b0b-acd3-8ee5c2b42711/sm/2056984-1488948766004-03_08_17-Top10-Fictional-Worlds.jpg","duration":466,"publication_date":"2017-03-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-venom-consumes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E5 - Venom Creeps Into DEATH BATTLE!","description":"The parasitic alien and it's host are ready to battle it out to see who wields the true venom","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-venom-consumes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/274b6434-b8ec-444c-b725-5716899bca0c/sm/2056984-1488779166268-03_06_17-DBpreview-venom.jpg","duration":208,"publication_date":"2017-03-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-link-vs-meta-knight-legend-of-zelda-vs-kirby","changefreq":"weekly","video":[{"title":"S2:E4 - Link VS Meta Knight (Legend of Zelda VS Kirby)","description":"Before adventuring into Breath of the Wild, Link must survive an encounter with the deadliest ball of blades he's ever seen.\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Donimation! https://twitter.com/DonimationsFollow the creators of DEATH BATTLE & DBX► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/ScrewAttackBen► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-link-vs-meta-knight-legend-of-zelda-vs-kirby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee679a3-39dc-4370-a1b8-5ed2697cd738/sm/2031125-1488581239388-DBX_019.jpg","duration":109,"publication_date":"2017-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-db-cast-m-arch-01","changefreq":"weekly","video":[{"title":"S2:E17 - Moana vs Ariel","description":"The crew debates a disney matchup, the lineage of Goofy and goes in depth on Scrooge VS Shovel Knight","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-db-cast-m-arch-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5bcbb5f-5c12-4d31-966a-3c0f7b11361e/sm/2056984-1488439976031-03_02_17DBcast.jpg","duration":3600,"publication_date":"2017-03-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-knights-in-gaming","changefreq":"weekly","video":[{"title":"S2:E8 - Knights in Gaming","description":"Armor. Swords. Saving people. Knights are the original heroes and when it comes to video games there's no shortage of 'em. So, Nick counts down his top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-knights-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2b530a3-595d-4bf1-b75b-121e11013ebe/sm/2056984-1488344386441-Knights_in_Gaming.jpg","duration":547,"publication_date":"2017-03-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-scrooge-mc-duck-vs-shovel-knight-2","changefreq":"weekly","video":[{"title":"S4:E2 - Scrooge McDuck vs Shovel Knight","description":"These two masters of adventure, wealth and Pogo sticking duke it out to see who would win a DEATH BATTLE!\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer - @benbsinger\n\n\n\n\n\n\n\nBoomstick: Chad James - @ScrewAttackChad\n\n\n\n\n\n\n\nAnimator: Luis \"Jetz\" Cruz - @CVAnimation\n\n\n\n\n\n\n\nWriter: Sam Mitchell - @ScrewAttackSam\n\n\n\n\n\n\n\nWriter: Jessica Davis - @JLDTweets\n\n\n\n\n\n\n\nEditor: John Francis McCullagh - @JohnFMFilms\n\n\n\n\n\n\n\nAssistant Editor: Nick Cramer - @TheNervousNick\n\n\n\n\n\n\n\nSprite Artist: Chris \"Jerky\" Bastin\n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - @ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-scrooge-mc-duck-vs-shovel-knight-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/346656f8-9d09-4dc7-8083-79fbfb06d243/sm/2097159-1488161557328-DB_073.jpg","duration":1067,"publication_date":"2017-02-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-spider-man-s-aunt-may-held-the-powers-cosmic","changefreq":"weekly","video":[{"title":"S2:E4 - Spider-Man's Aunt May Held the Powers Cosmic?!","description":"Peter Parker's kindly Aunt May has done some interesting things in comics. Some of which involve Twinkies...","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-spider-man-s-aunt-may-held-the-powers-cosmic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc8697be-17ca-43d5-96bb-ec26f73bda15/sm/2097147-1488004064536-02_24_17-Dodb-Thumb.jpg","duration":310,"publication_date":"2017-02-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-flubber-vs-carnage","changefreq":"weekly","video":[{"title":"S2:E16 - Shovel Knight, Wizards & Flubber","description":"The DEATH BATTLE crew talks Shovel Knight, Wizards, Flubber and more! Also, it's national margarita day!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-flubber-vs-carnage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cde6f2a9-71f2-4c27-963a-700a09d65839/sm/2056984-1487833768170-02_23_17-DBCast-Thumb.jpg","duration":4028,"publication_date":"2017-02-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-kirby-power-ups","changefreq":"weekly","video":[{"title":"S2:E7 - Kirby Power Ups","description":"This adorable pink puff ball has more power ups than you can imagine. So Nick counts down his Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-kirby-power-ups","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3fc7d75-c39e-402f-81f0-ead737343b74/sm/2056984-1487746438389-02_22_17-Top10-Kirbypowerups.jpg","duration":368,"publication_date":"2017-02-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-wiz-vs-boomstick-rap-b-a-t-t-l-e-written-by-y-o-u","changefreq":"weekly","video":[{"title":"S1:E942 - Wiz VS Boomstick RAP BATTLE! Written by YOU!","description":"What started out as a community battle on the DEATH BATTLE Cast turned into a whole thing. Wiz and Boomstick from DEATH BATTLE throw down in a Rap Battle with lyrics from the community! Who do you think won?\n\n\n\n\n\n\n\n\n\n\n\nRap Track by Austin Harper: https://twitter.com/PotatoHound\n\n\n\n\n\n\n\n\n\nThumbnail artwork by Caleb Trembath: https://twitter.com/UziReloaded\n\n\n\n\n\n\n\n\n\nLyrics by Austin Harper, Chad James and the DB community","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-wiz-vs-boomstick-rap-b-a-t-t-l-e-written-by-y-o-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/001a1917-1808-41b4-8360-bfa14bca33ad/sm/2056984-1487709985072-02_21_17-Rapbattle.jpg","duration":201,"publication_date":"2017-02-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-shovel-knight-digs-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E4 - Shovel Knight digs into DEATH BATTLE!","description":"The gallant knight of Shovelry digs deep into BATTLE! See him face off against his opponent Scrooge McDuck next week!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-shovel-knight-digs-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/682077bc-39c6-4e7a-b81b-f2153bfcdba8/sm/2097159-1487375911611-02_20_17-DBPreview_ShovelKnight.jpg","duration":131,"publication_date":"2017-02-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-greninja-vs-espio-pokemon-vs-sonic-the-hedgehog","changefreq":"weekly","video":[{"title":"S2:E3 - Greninja VS Espio (Pokemon VS Sonic the Hedgehog)","description":"You've never seen ninjas quite like these.\n\n\n\n\n\n\n\nThis episode's animator is Gale! Check out his YouTube!Follow the creators of DEATH BATTLE & DBX► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/ScrewAttackBen► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-greninja-vs-espio-pokemon-vs-sonic-the-hedgehog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9643d2df-6fe6-44e7-9b21-8e4db6b0a3b9/sm/2056984-1487397813817-DBX_018.jpg","duration":139,"publication_date":"2017-02-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-db-cast-2","changefreq":"weekly","video":[{"title":"S2:E15 - Darth Maul VS Carnage","description":"Wiz & Boomstick throw down in a rap battle and the crew talks Shovel Knight, Carnage vs Darth Maul and more!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-db-cast-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76940b6e-ded4-4477-a7e6-c9b8d39c9464/sm/2056984-1487232117698-12_16_17-DBCast-DmaulvsCarnage.jpg","duration":3600,"publication_date":"2017-02-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-wifus-w-death-b-a-t-t-l-e-s-boomstick","changefreq":"weekly","video":[{"title":"S2:E6 - Waifus w/ DEATH BATTLE's Boomstick","description":"Boomstick recently learned about Waifus. So he scoured the fictional universe to pick his Top 10!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-wifus-w-death-b-a-t-t-l-e-s-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61d42b3e-e9cc-4d9e-84ef-887161f23973/sm/2056984-1487117323293-02_15_17-Top10-Waifus.jpg","duration":519,"publication_date":"2017-02-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-scrooge-mc-duck-cashes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E3 - Scrooge McDuck cashes into DEATH BATTLE!","description":"The ol' Scottish quadrillionaire mallard Scrooge McDuck is ready to face off in DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-scrooge-mc-duck-cashes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd1397a3-0138-4257-89f7-87de57fd9c9d/sm/2097159-1486769750587-Scrooge_Preview_Thumb.jpg","duration":100,"publication_date":"2017-02-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-desk-of-death-battle-what-if","changefreq":"weekly","video":[{"title":"S2:E3 - X-Men VS Star Trek & So Much More!","description":"Sometimes comics get weird with \"What if\" scenario's... here's a few of our favorites!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-desk-of-death-battle-what-if","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33d7fa2a-937c-49da-a195-2a8c29bffa6c/sm/2056984-1486792007145-02_11_17-Dodb-Thumb.jpg","duration":302,"publication_date":"2017-02-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-db-cast-014","changefreq":"weekly","video":[{"title":"S2:E14 - DICK TASER!","description":"The DB Cast talks Scrooge vs Shovel Knight, Jessica gives us a lesson in duck anatomy and Torrian takes the show to a whole new level!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-db-cast-014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067b2373-491f-4c35-b14e-1fcaff8de1ee/sm/2097147-1486625494660-Taser1.jpg","duration":3600,"publication_date":"2017-02-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-dbz-techniques","changefreq":"weekly","video":[{"title":"S2:E5 - Dragon Ball Z Techniques!","description":"DBZ is full of amazing moves and abilities we've dreamed of being able to do since we were kids! Nick counts down his Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-dbz-techniques","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75fbe2c5-2b0e-4c6d-a2a9-7ecb306184dc/sm/2097147-1486539250973-12_08_17-Top10-DBZtechniques.jpg","duration":548,"publication_date":"2017-02-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-14","changefreq":"weekly","video":[{"title":"E:E2 - Bloopers - Ken VS Terry & Hulk VS Doomsday","description":"Sometimes things get a little crazy in the voice over booth... ","player_loc":"https://roosterteeth.com/embed/death-battle-extras-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecec8807-4743-44ea-9085-cb7638768d2d/sm/2056984-1486361366174-12_06_17-DB-Bloopers.jpg","duration":341,"publication_date":"2017-02-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-kenshin-vs-zoro-rurouni-kenshin-vs-one-piece","changefreq":"weekly","video":[{"title":"S2:E2 - Kenshin VS Zoro (Rurouni Kenshin VS One Piece)","description":"Only one can be the true master swordsman!\n\nThis episode's animator is Kayas! Follow him on Twitter: https://twitter.com/xKayasx\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/benbsinger\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: >https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-kenshin-vs-zoro-rurouni-kenshin-vs-one-piece","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a56b491f-5b3d-4eac-b1f2-feafc443fe0c/sm/2031125-1486166552744-DBX_017.jpg","duration":119,"publication_date":"2017-02-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-dbcast-feb-01","changefreq":"weekly","video":[{"title":"S2:E13 - Goku / Luffy / Naruto Eating Contest!","description":"The DEATH BATTLE Crew debates who would win in an eating contest and gives extra details on the Lara vs Nathan episode!","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-dbcast-feb-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78363d27-435e-47d3-a980-c51b723898f8/sm/2056984-1486011718564-02_02_16-DBC-Eating.jpg","duration":3590,"publication_date":"2017-02-02T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-capes","changefreq":"weekly","video":[{"title":"S2:E4 - Capes","description":"They say clothing makes the man / woman and nothing accentuates awesomeness like a cape! So we count down our Top 10 favorite!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-capes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5937e98c-3c51-4891-89f9-c2188462f581/sm/2056984-1486009734353-BatmanTop10.jpg","duration":575,"publication_date":"2017-02-02T04:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-4-lara-croft-vs-nathan-drake","changefreq":"weekly","video":[{"title":"S4:E1 - Lara Croft VS Nathan Drake","description":"These two adventurers are here to prove once and for all who's the pivotal Playstation plunderer! Lara Croft the Tomb Raider and Nathan Drake the seeker of the uncharted!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGOT AN IDEA FOR A DEATH BATTLE? SUBMIT IT HERE - http://bit.ly/2fM8Z8l\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer - @benbsinger\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James - @ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWriter: Nick Cramer - @THENervousNick\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAnimator: Torrian Crawford - @AnimatedTorrii\n\n\n\n\n\n\n\nAdditional Animation: Jerome Rodgers-Blake - @JRAnimated\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEditor: Gerardo Mejia - @HybridRain\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Lara Croft: Eileen \"EileMonty\" Montgomery - @eilemonty\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoice of Nathan Drake: Gianni Matragrano - @gianni_vm\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCasting/Voice Direction: Marissa Lenti - @LentiSoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - @ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-4-lara-croft-vs-nathan-drake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9154a02-d80d-405b-9ee6-e99d6c36e990/sm/2031125-1485974090492-DB_072.jpg","duration":988,"publication_date":"2017-01-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2-what-the-flux-is-up-with-the-de-lorean-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S2:E2 - What the FLUX is w/ the DeLorean!?","description":"Everyone loves Doc Brown's time traveling DeLorean, but did you know it's NOT his first time machine?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2-what-the-flux-is-up-with-the-de-lorean-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e7171ad-6442-4213-a696-e4a3e30d7d81/sm/2097159-1485469543570-1_24_17-DoDB-Back-to-the-Future.jpg","duration":229,"publication_date":"2017-01-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-db-cast","changefreq":"weekly","video":[{"title":"S2:E12 - DEATH BATTLE: Behind the Scenes","description":"The DEATH BATTLE crew talks Lara vs Nathan and goes in depth into DEATH BATTLE and how the show changes your mindset","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-db-cast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/802f4189-8535-451b-a74a-9214cad01269/sm/2056984-1485412948709-01_26_19-DBCast-Thumb.jpg","duration":3531,"publication_date":"2017-01-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-top-10-90-s-cartoon-intros","changefreq":"weekly","video":[{"title":"S2:E3 - 90s Cartoon Intros","description":"The 90's were a totally radical time for toonage! Vibe with Nick as he righteously counts down ScrewAttack's Top 10 favorite intros","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-top-10-90-s-cartoon-intros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22fe3381-8937-48f3-98de-09b76c51679d/sm/2056984-1485322578598-12_24_17-Top10-90sintros.jpg","duration":605,"publication_date":"2017-01-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2-nathan-sets-course-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S4:E2 - Nathan Drake Discovers DEATH BATTLE!","description":"The explorer of the uncharted gets ready for a new adventure","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2-nathan-sets-course-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/307161b4-8209-4623-856a-1467f9176e76/sm/2056984-1485152198096-12_23_17-DBPReview_Nathan.jpg","duration":201,"publication_date":"2017-01-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-2-iron-man-vs-mega-man-x-marvel-vs-capcom","changefreq":"weekly","video":[{"title":"S2:E1 - Iron Man VS Mega Man X (Marvel VS Capcom)","description":"It's red versus blue as the Iron Avenger takes on the Maverick Hunter of the future! \n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode's animator is Kiidl! Check out his YouTube: https://www.youtube.com/user/TheRegularGuysXD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://www.twitter.com/ScrewAttackBen\n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://www.twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://www.twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-2-iron-man-vs-mega-man-x-marvel-vs-capcom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6efa9926-9af3-4e37-bacf-73ff00a00d94/sm/2031125-1494362894935-DBX_016.jpg","duration":117,"publication_date":"2017-01-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-what-s-the-deal-with-m-r-s-frizzle","changefreq":"weekly","video":[{"title":"S2:E11 - Batmobile vs The Magic School Bus","description":"The crew discusses the Batmobile taking on the Magic School Bus, who could take on Sherlock and more\n\nTry 3 FREE meals from Blue Apron with FREE shipping! www.blueapron.com/DBC","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-what-s-the-deal-with-m-r-s-frizzle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/777dd32c-77a9-4f82-9538-8d5ab5a45b07/sm/2056984-1484807696233-12_19_17-DBCas_v2t.jpg","duration":3258,"publication_date":"2017-01-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-swords-with-death-b-a-t-t-l-e-s-boomstick","changefreq":"weekly","video":[{"title":"S2:E2 - Swords with DEATH BATTLE's Boomstick","description":"DEATH BATTLE's Boomstick counts down his 10 favorite swords!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-swords-with-death-b-a-t-t-l-e-s-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c942080-7e36-4959-81f1-e5dbf5e87b3f/sm/2056984-1484722026428-1_18_2017-Top10-Swords.jpg","duration":570,"publication_date":"2017-01-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-we-re-all-wizards-mario-party-2","changefreq":"weekly","video":[{"title":"S1:E71 - Mario Party Saturday - We're All Wizards - Mario Party 2","description":"Four Friends. Mario Party. Every Saturday. Wizard Hats.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-we-re-all-wizards-mario-party-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4207fbd8-b44a-4990-ac67-b9e90a6eb6a5/sm/2056961-1492037035937-MarioPartySaturday12.jpg","duration":4242,"publication_date":"2017-04-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-3-x-t-r-e-m-e","changefreq":"weekly","video":[{"title":"LPS:E105 - 3XTREME!!!!!!!","description":"IT'S HARDCORE!!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-3-x-t-r-e-m-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a56b2a32-df4e-4507-a44e-f29ab65b3ea3/sm/2056961-1492140570318-3Xtreme.png","duration":1620,"publication_date":"2017-04-14T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-apparently-craig-said-the-funniest-thing-ever-said-try-harder-27","changefreq":"weekly","video":[{"title":"S1:E26 - Apparently Craig Said the Funniest Thing Ever Said - Try Harder #27","description":"There's a lot of laughing from three of the guys and confused looks from the other.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-apparently-craig-said-the-funniest-thing-ever-said-try-harder-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f407e646-c03b-4a44-b10e-e0ba2842f999/sm/2056961-1491927927209-TryHarder27Thumb.jpg","duration":386,"publication_date":"2017-04-12T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-portal-2-hole-buddies","changefreq":"weekly","video":[{"title":"LPS:E104 - Portal 2: Hole Buddies","description":"Craig & Bolen team up to find cake... or something. Can they work together?\n\n\n\n\n\nPut yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\nFollow the GA Team on Twitter:\n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-portal-2-hole-buddies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/172dc1a6-cf4b-4a06-a50d-90a08b37cda7/sm/2056961-1491934037285-Portal2.jpg","duration":1819,"publication_date":"2017-04-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-craig-s-butt-is-sore-try-hard-podcast-27","changefreq":"weekly","video":[{"title":"S1:E27 - Craig's Butt is Sore - Try Hard Podcast #27","description":"This episode is brought to you by: Nobody.\n\nIn addition to Craig's sore ass, the guys talk about cheerleaders, reality TV,  the sword in the stone and more.\n\n\n\n\n\n\n\nPut yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-craig-s-butt-is-sore-try-hard-podcast-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1ea56fd-e81c-467d-98b3-c12c9a6790ec/sm/2056961-1491927600591-TryHard27Thumb.jpg","duration":4728,"publication_date":"2017-04-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-being-john-wick-in-gta-5","changefreq":"weekly","video":[{"title":"LPS:E103 - BEING JOHN WICK IN GTA 5","description":"Should we play more GTA 5? Every other channel on the internet does.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-being-john-wick-in-gta-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a901df1-e2fa-4cb4-bbd8-c8cc6ac11e9a/sm/2056961-1491848457808-GTA5Wick.jpg","duration":1581,"publication_date":"2017-04-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-one-bullet-challenge-the-hot-one-with-the-skillz-ghost-recon-wildlands","changefreq":"weekly","video":[{"title":"LPS:E102 - One Bullet Challenge: The Hot One With the Skillz (Ghost Recon: Wildlands)","description":"Thanks to Ubisoft for sponsoring this video. Have fun with Wildlands for yourself here: http://ubi.li/rrzmp\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nPut yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWatch all our videos early: http://bit.ly/2dJck7r\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow the GA Team on Twitter: http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-one-bullet-challenge-the-hot-one-with-the-skillz-ghost-recon-wildlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0028ca-20d9-4664-b84e-a3882423d284/sm/2056961-1491605287752-Wildlands3-b.jpg","duration":686,"publication_date":"2017-04-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-14-we-re-in-a-painting","changefreq":"weekly","video":[{"title":"LPS:E101 - Death Days Day 14 - We're in a Painting","description":"LPS:E101 - Death Days Day 14 - We're in a Painting","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-14-we-re-in-a-painting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b354d1-95a5-4ef3-81bb-162ad0a0dd32/sm/2056961-1491601261423-DeathDays14.jpg","duration":7264,"publication_date":"2017-04-08T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-our-co-workers-hate-video-games","changefreq":"weekly","video":[{"title":"S1:E69 - Our Co-Workers Hate Video Games","description":"Put yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nWe played Battlegrounds with Funhaus and are still trying to figure out if they like video games.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-our-co-workers-hate-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b6712d6-0183-46d4-9a45-14626af4b657/sm/2056961-1491605089621-BattlegroundsThumb.jpg","duration":1514,"publication_date":"2017-04-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-the-hype-returns-mario-party-1","changefreq":"weekly","video":[{"title":"S1:E68 - Mario Party Saturday - The Hype Returns - Mario Party 1","description":"Four Friends. Mario Party. Every Saturday. BRUTAL games.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-the-hype-returns-mario-party-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a317afde-8329-400f-840c-66c39d8b221b/sm/2056961-1491501417814-MarioPartySaturday11.jpg","duration":6674,"publication_date":"2017-04-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-we-want-to-get-intimate-with-you","changefreq":"weekly","video":[{"title":"L:E5 - We Want to Get Intimate With You","description":"We love you and want to interact with you more outside of our YouTube channel. \n\nFollow us here on twitter here:\n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-we-want-to-get-intimate-with-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dca6cdbf-0c1c-4a21-b27a-da302ec136f0/sm/2056961-1491508848134-BFFs.jpg","duration":112,"publication_date":"2017-04-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-hype-hilarity-duck-game","changefreq":"weekly","video":[{"title":"S1:E67 - Hype & Hilarity: Duck Game","description":"Thank you very much, Mr. Ducksworth! Quack Quack Quack Quack Quack, Mr. Ducksworth!","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-hype-hilarity-duck-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba8039ee-ba99-4f64-8d11-f3b9cc739958/sm/2056961-1491501261149-DuckGame.jpg","duration":1336,"publication_date":"2017-04-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-playing-with-our-balls-golf-with-friends","changefreq":"weekly","video":[{"title":"LPS:E100 - Playing with our Balls - Golf with Friends","description":"We bust out our shafts and swing em around to knock each others balls a little bit.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-playing-with-our-balls-golf-with-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c492aef9-4774-484c-a933-64ab4340bba1/sm/2056961-1491489435849-GolfwithFriends2.jpg","duration":1615,"publication_date":"2017-04-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-thank-you-taker-try-harder-26","changefreq":"weekly","video":[{"title":"S1:E25 - Thank You Taker! | Try Harder #26","description":"The Deadman took his last ride over the weekend. He will be missed.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-thank-you-taker-try-harder-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43828480-fa0e-40ec-9ff2-7b07783391b7/sm/2097098-1491324475405-TryHarder26.png","duration":990,"publication_date":"2017-04-05T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-tiger-belt-kung-fu-master-try-hard-podcast-26","changefreq":"weekly","video":[{"title":"S1:E26 - Tiger Belt = Kung Fu Master! | Try Hard Podcast #26","description":"Sam will kick your ass if you're not careful! Craig comes this close to busting his ass on a hoverboard!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-tiger-belt-kung-fu-master-try-hard-podcast-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eff69a22-19c9-4c5b-b232-6bf018ded95a/sm/2097098-1491324635688-tryhard26thumb.jpg","duration":5345,"publication_date":"2017-04-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-holy-crap-this-is-fun-pac-man-256","changefreq":"weekly","video":[{"title":"LPS:E99 - Holy Crap This is Fun: Pac-Man 256","description":"LPS:E99 - Holy Crap This is Fun: Pac-Man 256","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-holy-crap-this-is-fun-pac-man-256","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48e22b48-a21b-447a-9735-624d547264e5/sm/2056961-1491235853335-PacMan256.jpg","duration":777,"publication_date":"2017-04-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-crash-bash-with-achievement-hunter","changefreq":"weekly","video":[{"title":"LPS:E97 - Crash Bash with Achievement Hunter","description":"A lifelong dream is fulfilled in this video.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-crash-bash-with-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d00548e9-346d-487e-9095-12e9d04b01c3/sm/2056961-1490976445202-CrashBash1.jpg","duration":972,"publication_date":"2017-04-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-5-minute-timed-mission-challenge-craig-s-an-idiot","changefreq":"weekly","video":[{"title":"LPS:E96 - 5 Minute Timed Mission Challenge: Craig's an Idiot","description":"Can Craig, Bolen, Bryan and Parker defeat the latest challenge Ubisoft gave us? Only if Craig can get out of their way.\n\nThanks to Ubisoft for sponsoring this video. Have fun with Wildlands for yourself here: http://ubi.li/rrzmp","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-5-minute-timed-mission-challenge-craig-s-an-idiot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80124667-1c13-4d3b-86c5-11623d7a07da/sm/2056961-1490975838593-Wildlands2Ubisoft.jpg","duration":763,"publication_date":"2017-04-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-13-mario-64-in-it","changefreq":"weekly","video":[{"title":"LPS:E98 - Death Days Day 13 - Mario 64in' It","description":"Craig jumps into a painting... and immediately regrets it.\n\nWe stream Death Days live every Thursday at 4pm CT on our YouTube channel for everyone to enjoy. If you'd like to watch the archives consider signing up for a FIRST membership using this link: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-13-mario-64-in-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/546a4bcb-ceed-437e-9309-59bc3c5b0045/sm/2056961-1490978417626-DeathDays13b.jpg","duration":7165,"publication_date":"2017-04-01T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-you-know-what-not-that-bad-mario-party-10","changefreq":"weekly","video":[{"title":"S1:E65 - Mario Party Saturday - You Know What? Not THAT Bad: Mario Party 10","description":"Four Friends. Mario Party. Every Saturday. Good Times.\n\nNew to Game Attack?  Put yourself in a good mood every day and sub to us: http://bit.ly/Sub2GameAttack\n\n\n\nPick the Mario Party board you feel should be played to finish Season 1 of Mario Party Saturday. The top 2 will be played in games 19 & 20. Vote on Twitter (and follow GA) here: https://twitter.com/GameAttackTeam/status/847905139700772864","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-you-know-what-not-that-bad-mario-party-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9bb9561-fda3-4b25-87d8-27c7ac939b6d/sm/2056961-1490895963781-MP10THumb.jpg","duration":2015,"publication_date":"2017-03-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-cluster-dr-u-nk-a-complete-train-wreck","changefreq":"weekly","video":[{"title":"S1:E66 - Cluster DrUNk: A COMPLETE TRAIN WRECK","description":"Put yourself in a good mood every day. Sub to us & (hopefully) smile: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nEver ran on top of semi trucks while being drunk? Don't do it.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-cluster-dr-u-nk-a-complete-train-wreck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88e9a3f9-720a-49ba-af00-6a2160d1f9d7/sm/2056961-1490900621414-GameAttackThumbnails720.jpg","duration":1088,"publication_date":"2017-03-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-25-couches-n-shit","changefreq":"weekly","video":[{"title":"S1:E24 - Try Harder #25 - Couches n' Shit","description":"S1:E24 - Try Harder #25 - Couches n' Shit","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-25-couches-n-shit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1bc9d90-0a08-439a-afd6-a43484ca482e/sm/2056961-1490816814179-TryHarder25.jpg","duration":879,"publication_date":"2017-03-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-funhaus-vs-game-attack-vs-rooster-teeth-wwe-2-k17-gameplay","changefreq":"weekly","video":[{"title":"LPS:E95 - Funhaus vs Game Attack vs Rooster Teeth | WWE 2k17 Gameplay","description":"We can't fight them in real life so we'll do it in a video game.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-funhaus-vs-game-attack-vs-rooster-teeth-wwe-2-k17-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/109af3cf-7f79-4cc9-8b13-093ab26edba8/sm/2056961-1490817828995-WWEk2k174Thumb.jpg","duration":1866,"publication_date":"2017-03-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-trapped-in-a-ring-of-fire-try-hard-podcast-25","changefreq":"weekly","video":[{"title":"S1:E25 - Trapped in a Ring of Fire | Try Hard Podcast #25","description":"Dads, poop and just how f'ed up weather can be.\n\n- Thanks to Blue Apron for supporting us. Get three free meals by going to http://www.BlueApron.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-trapped-in-a-ring-of-fire-try-hard-podcast-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b691ba4-e16a-4ba8-9221-0d4da1c332c2/sm/2056961-1490732609268-tryhard25thumb3.jpg","duration":5590,"publication_date":"2017-03-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-drunk-mini-games-2-this-was-an-even-more-horrible-idea","changefreq":"weekly","video":[{"title":"S1:E64 - DRUNK Mini Games #2: This Was an Even More HORRIBLE Idea ","description":"This was a bad idea... and to think we filmed a podcast immediately following playing this game (which you can watch here: https://www.youtube.com/edit?o=U&video_id=Lh7CdPY-I64).\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-drunk-mini-games-2-this-was-an-even-more-horrible-idea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff7f7e70-ff82-4c67-b18e-c04a4958004c/sm/2056961-1490642069276-DrunkThumb2.jpg","duration":2889,"publication_date":"2017-03-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-maximum-difficulty-challenge-flying-a-plane-into-bolen-s-face","changefreq":"weekly","video":[{"title":"LPS:E94 - Maximum Difficulty Challenge: Flying a Plane into Bolen's Face","description":"Craig and Bolen take the challenge from Ubisoft and tackle on of the hardest missions in Wildlands... and blow stuff up\n\nThanks to Ubisoft for sponsoring this video. Have fun with Wildlands for yourself here: http://ubi.li/rrzmp","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-maximum-difficulty-challenge-flying-a-plane-into-bolen-s-face","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f520bf7-4349-41ff-9886-3c63eb379327/sm/2056961-1490537181464-Wildlands2.jpg","duration":1763,"publication_date":"2017-03-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-extreme-you-tubing-hill-climber-2","changefreq":"weekly","video":[{"title":"S1:E18 - Extreme YouTubing: Hill Climber 2","description":"EXTREME! YOUTUBE!","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-extreme-you-tubing-hill-climber-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2506ad9-a51a-4a24-9e0f-2ececa44e407/sm/2056961-1490212896513-HillClimber2.jpg","duration":950,"publication_date":"2017-03-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-12-4-hour-marathon-the-biggest-fail-in-gaming-history","changefreq":"weekly","video":[{"title":"LPS:E93 - Death Days Day 12 - 4 Hour Marathon & The Biggest Fail in Gaming History","description":"While down in Austin, Craig attempts to conquer Sen's Fortress... and has one of the biggest fails ever. EVER.\n\n\n\n\n\n\n\n\n\nCan't make all Death Day streams live? You can watch the archive becoming a FIRST Member (and try it for FREE for 30 days) by clicking here: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-12-4-hour-marathon-the-biggest-fail-in-gaming-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b03941b-6ec1-4897-8bdc-313651712ba9/sm/2056961-1490378115974-DeathDays12.jpg","duration":14400,"publication_date":"2017-03-25T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-boo-s-a-d-ck-mario-party-9","changefreq":"weekly","video":[{"title":"S1:E63 - Mario Party Saturday - Boo's a D*ck - Mario Party 9","description":"Four Friends. Mario Party. Every Saturday. Boos.\n\nNew to us? Sub to Game Attack. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-boo-s-a-d-ck-mario-party-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5205d80-b10b-4fea-8152-43e3907ffc26/sm/2056961-1490212172029-MarioParty9.jpg","duration":3117,"publication_date":"2017-03-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-most-funnest-game-ever","changefreq":"weekly","video":[{"title":"LPS:E92 - The Most Funnest Game Ever","description":"We're back with the best game ever made: Snipperclips.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-most-funnest-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efb59a88-a5e9-4e7b-8e4b-43f996be1446/sm/2056961-1490211052290-SnipperClips3.jpg","duration":1617,"publication_date":"2017-03-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-w-w-e-s-xavier-woods-teaching-us-moves","changefreq":"weekly","video":[{"title":"S1:E62 - Gang Beasts: WWE's Xavier Woods Teaching Us Moves","description":"We had no idea there was so much we had yet to learn..","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-w-w-e-s-xavier-woods-teaching-us-moves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cce537c-7fb0-451a-b648-ddc5dc17350e/sm/2056961-1490208181051-GangBeasts_Austin.jpg","duration":2047,"publication_date":"2017-03-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-24-prank-channels-are-unforgiveable","changefreq":"weekly","video":[{"title":"S1:E23 - Try Harder #24 - Prank Channels are Unforgiveable","description":"Bolen's secret texts, classic internet videos that make us laugh and recent internet videos that make us want to vomit.\n\nNot a FIRST Member so can't watch this?  Support Game Attack and get a free 30 day. Check it out here: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-24-prank-channels-are-unforgiveable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9ceea2c-5266-4ae3-94e0-37290686b07d/sm/2056961-1490123306450-TryHarder24Thumb.jpg","duration":1277,"publication_date":"2017-03-22T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-being-mad-about-nothing-try-hard-24","changefreq":"weekly","video":[{"title":"S1:E24 - Being Mad About Nothing - Try Hard #24","description":"Let's get mad about stupid stuff. That's what the internet is for, right?\n\n- Get your first month of Dollar Shave Club for $1 with free shipping by going to: http://www.DollarShaveClub.com/TryHard. DSC supports us so please support them.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-being-mad-about-nothing-try-hard-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa149e82-7ceb-4533-9e85-a5268a0edb87/sm/2056961-1490122747969-TryHard24Thumb.jpg","duration":4991,"publication_date":"2017-03-21T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-seriously-how-can-you-breathe","changefreq":"weekly","video":[{"title":"LPS:E91 - Seriously... How Can You Breathe?","description":"Craig & Bolen return as La Famlia Guerra in their attempt to destroy as much of Bolivia as possible.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-seriously-how-can-you-breathe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64b9db2e-f6d7-4414-8614-87ba54625bf1/sm/2056961-1490044313588-WildlandsEp2.jpg","duration":1771,"publication_date":"2017-03-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-11-sen-s-funhaus","changefreq":"weekly","video":[{"title":"LPS:E90 - Death Days #11 - Sen's Funhaus","description":"Some funhauses are more like a house of horrors.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-11-sen-s-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/733e3599-3b0b-4622-a236-3c35c88e7b4a/sm/2097098-1489779944362-DeathDays11_Thumb.jpg","duration":7239,"publication_date":"2017-03-18T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-boop-him-perfectly-let-s-play-rocket-league","changefreq":"weekly","video":[{"title":"LPS:E89 - Boop Him Perfectly - Let's Play Rocket League","description":"After the best goal in history last episode, Craig has taken what he learned and done nothing with it. Instead choosing to talk about the Mighty Ducks 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-boop-him-perfectly-let-s-play-rocket-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cc2eca2-f52b-48af-9a58-2de58456a7fd/sm/2056961-1489683668432-RocketLeagueThumb2.jpg","duration":1716,"publication_date":"2017-03-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-mario-party-8-cannon-thug-life","changefreq":"weekly","video":[{"title":"S1:E60 - Mario Party Saturday - Mario Party 8: Cannon Thug Life","description":"Four Friends. Mario Party. Every Saturday. Cannons.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-mario-party-8-cannon-thug-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7277238-1a41-4c38-9a6a-99ee630951df/sm/2056961-1489611746294-MarioParty8Thumb.jpg","duration":6527,"publication_date":"2017-03-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-no-scope-360-bro-scope-time-call-of-duty-4-modern-warfare","changefreq":"weekly","video":[{"title":"S1:E61 - No Scope 360 Bro-Scope Time - Call of Duty 4: Modern Warfare","description":"We feel that the title of this video accurately depicts the action in the video. We hope you agree.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-no-scope-360-bro-scope-time-call-of-duty-4-modern-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e426322-da69-4766-b3b7-2ef895667075/sm/2056961-1489613205132-CoD4.jpg","duration":1331,"publication_date":"2017-03-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-23-dream-cars","changefreq":"weekly","video":[{"title":"S1:E22 - Try Harder #23 - Dream Cars","description":"With Burnie doing his thing to his Telsa, it got the guys thinking about their dream cars and how unattainable they actually are.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-23-dream-cars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c64e700-595b-4738-bb9b-6ee960f9e50e/sm/2056961-1489507576460-TryHarder23Thumb.jpg","duration":6348,"publication_date":"2017-03-15T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-butthurt-booze-mario-kart-8","changefreq":"weekly","video":[{"title":"S1:E59 - Butthurt & Booze - Mario Kart 8","description":"You know things are going to escalate when beer starts flowing in the studio and karts are being raced.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-butthurt-booze-mario-kart-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9742258e-8cd0-466a-a28a-7ff107e098be/sm/2056961-1489525969799-MarioKart8-2.jpg","duration":1444,"publication_date":"2017-03-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-podcast-23-blood-of-jesus","changefreq":"weekly","video":[{"title":"S1:E23 - Try Hard Podcast #23 - Blood of Jesus!","description":"While at PAX, the guys stayed at one of the most haunted hotels in the world. Knowing Craig's fear of ghosts, how did the experience treat him? We also give you quick tips on how to get a ghost to leave you alone. NICE!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-podcast-23-blood-of-jesus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/762c5c0a-1ac1-4d73-be2c-2244dbe64a90/sm/2056961-1489507064560-TryHard23Thumb.jpg","duration":4868,"publication_date":"2017-03-14T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bolen-vs-w-w-e-s-xavier-woods","changefreq":"weekly","video":[{"title":"LPS:E88 - Bolen vs WWE's Xavier Woods","description":"Our buddy Austin Creed (aka the New Day's Xavier Woods from WWE) stopped by Game Attack to take on all challengers. Craig was out of town so he had to settle for taking on Bolen.   \n\n\n\n\n\nCheck out Austin's channel: https://www.youtube.com/upupdowndown","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bolen-vs-w-w-e-s-xavier-woods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c5f4313-6513-487e-bf82-e5f6fcee1c08/sm/2056961-1489109030435-BolenVsAustin.jpg","duration":1368,"publication_date":"2017-03-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-how-not-to-play-h1-z1-king-of-the-kill","changefreq":"weekly","video":[{"title":"LPS:E85 - How Not to Play H1Z1: King of the Kill","description":"Bolen used to be pretty good at this game. We Promise. WTF happened??","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-how-not-to-play-h1-z1-king-of-the-kill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a5b2290-24fa-420d-ba0c-d2b1b068ee6f/sm/2056961-1489103207278-H1z1.jpg","duration":1326,"publication_date":"2017-03-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-our-last-zelda-video","changefreq":"weekly","video":[{"title":"LPS:E84 - Our Last Zelda Video","description":"We love us some Breath of the Wild but we better take it in now because this is the last video on GA.\n\nGo to http://www.DollarShaveClub.com/GameAttack to get a one-month trial of any of their razors for ONLY $1 with FREE shipping. They support us so please support them.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-our-last-zelda-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ef84144-9a5c-4ae0-b67a-cae922c3ddd2/sm/2056961-1489035685072-Zelda3thumb.jpg","duration":3254,"publication_date":"2017-03-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-privileged-mario-party-7","changefreq":"weekly","video":[{"title":"S1:E58 - Mario Party Saturday - Privileged: Mario Party 7","description":"Four Friends. Mario Party. Every Saturday. Privileged MFer.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-privileged-mario-party-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16ae40b9-1963-459e-b497-ca61af1efe05/sm/2056961-1488992563856-MarioParty7Thumb.jpg","duration":6772,"publication_date":"2017-03-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-guerra-means-war-the-battle-begins-wildlands-gameplay","changefreq":"weekly","video":[{"title":"LPS:E85 - \"Guerra Means War\" - The Battle Begins Wildlands Gameplay","description":"In our newest mini-series, Craig and Bolen tackle Wildlands and take on the personas of the Guerra family.  Thanks to Ubisoft for sponsoring this video and making it happen! Check out more of this awesome game here: http://ubi.li/5uzfq\n\n\n\nWe LOVE playing Wildlands but will you see more of the Guerra family? That's up to you. Watch.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-guerra-means-war-the-battle-begins-wildlands-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29f4142b-2b71-4392-8f38-3e8d17524006/sm/2056961-1489076414258-Wildlands3.jpg","duration":1194,"publication_date":"2017-03-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-guerra-means-war-begins-this-weekend","changefreq":"weekly","video":[{"title":"LPS:E85 - \"Guerra Means War\" Begins This Weekend!","description":" Craig and Bolen tackle Wildlands and take on the personas of the Guerra family. We LOVE playing Wildlands but will you see more of the Guerra family? That's up to you. Watch. Share. Subscribe. It's that easy.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-guerra-means-war-begins-this-weekend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6621c02f-7194-4b73-8ae9-83f030872f36/sm/2056961-1489076290310-Wildlands4.jpg","duration":60,"publication_date":"2017-03-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-22","changefreq":"weekly","video":[{"title":"S1:E21 - Try Harder #22 - Life Priorities","description":"If you get in a relationship with Sam he's got some news for you.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b760a851-b760-4930-9219-6b45cb51bd6e/sm/2056961-1488983231613-TryHarder22Thumb.jpg","duration":900,"publication_date":"2017-03-08T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-cringe-worthy-ad-campaign-try-hard-22","changefreq":"weekly","video":[{"title":"S1:E22 - Going down the WOWhole - Try Hard #22","description":"Bolen has finally figured out why he's not impressed by Zelda like everyone else, Craig found a new business venture and Chad rediscovers his giant time waste.\n\n\n\n\n\nGo to http://www.DollarShaveClub.com/TryHard to get a one-month trial of any of their razors for ONLY $1 with FREE shipping.  They support us so please support them.\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-cringe-worthy-ad-campaign-try-hard-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/980c0608-82d7-4a16-87af-a04aa13b4ccc/sm/2056961-1488983023263-TryHard22Thumb3.jpg","duration":5053,"publication_date":"2017-03-08T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-god-we-love-snipperclips","changefreq":"weekly","video":[{"title":"LPS:E79 - God We Love Snipperclips","description":"Is this the best game on the Switch (besides Zelda)? We dunno but it sure is crazy fun.\n\nGo to http://www.DollarShaveClub.com/GameAttack to get a one-month trial of any of their razors for ONLY $1 with FREE shipping.  They support us so please support them.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-god-we-love-snipperclips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14222122-8e7a-405b-86e3-eb7c3e2d6b6d/sm/2056961-1488902251353-Snipperclips.jpg","duration":1329,"publication_date":"2017-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-biggest-dissapointment-on-the-switch","changefreq":"weekly","video":[{"title":"LPS:E79 - The Biggest Dissapointment on the Switch","description":"Craig was HYPED for the new Bomberman... and then it went away.\n\nGo to http://www.DollarShaveClub.com/GameAttack to get a one-month trial of any of their razors for ONLY $1 with FREE shipping.  They support us so please support them.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-biggest-dissapointment-on-the-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc247ab4-d766-43bc-bf1f-0d7bf4deca8e/sm/2056961-1488902004558-maxresdefault.jpg","duration":1143,"publication_date":"2017-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-we-look-stupid-af","changefreq":"weekly","video":[{"title":"LPS:E79 - We Look STUPID AF","description":"We realize it while playing but it only made it worse when we edited this video.\n\nGo to http://www.DollarShaveClub.com/GameAttack to get a one-month trial of any of their razors for ONLY $1 with FREE shipping.  They support us so please support them.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-we-look-stupid-af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff54c23d-c6b5-4771-8e3a-8aa62d725cf4/sm/2056961-1488901800627-maxresdefault.jpg","duration":1048,"publication_date":"2017-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-zelda-bot-w-is-the-best-game-e-v-e-r","changefreq":"weekly","video":[{"title":"LPS:E79 - Zelda: BotW is the Best Game EVER??","description":"\"10/10\", \"Best Game Ever Made\", \"A Master Piece!\" Yeah, let's just see about that. \n\nGo to http://www.DollarShaveClub.com/GameAttack to get a one-month trial of any of their razors for ONLY $1 with FREE shipping.  They support us so please support them.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-zelda-bot-w-is-the-best-game-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/306a62c2-fdc3-44af-a0b6-c39d54cc6757/sm/2056961-1488901237049-SwitchWeekZelda1c.jpg","duration":2576,"publication_date":"2017-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-d-a-y-s-beyond-the-spider-b-tch","changefreq":"weekly","video":[{"title":"LPS:E78 - DEATH DAYS: Beyond the Spider-B*tch!","description":"We beat Quelaag, where to now?","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-d-a-y-s-beyond-the-spider-b-tch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8741505-4ff3-4d06-b659-1e994cdc285b/sm/2056961-1488580197431-DeathDays10Thumb.jpg","duration":7257,"publication_date":"2017-03-04T01:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-star-f-ck-64-mario-party-6","changefreq":"weekly","video":[{"title":"S1:E57 - Mario Party Saturday - Star F*ck 64: Mario Party 6","description":"Four Friends. Mario Party. Every Saturday. Complete Dissapointment.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-star-f-ck-64-mario-party-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a63513d1-5c73-4115-b477-2cb54dc10b2a/sm/2056961-1488412491700-MarioParty6Thumb.jpg","duration":6393,"publication_date":"2017-03-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-super-smash-bros-smash","changefreq":"weekly","video":[{"title":"LPS:E77 - Game Attack vs Achievement Hunter: Super Smash Bros Smash","description":"We brought some games down to Austin to play with Achievement Hunter and because only Ryan has touched an N64 controller before they had to bring in Matt as well.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-super-smash-bros-smash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41cfc621-5115-48eb-9416-6892144dfab9/sm/2056961-1488408861342-GAvsAHSmash64Thumb.jpg","duration":806,"publication_date":"2017-03-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-episode","changefreq":"weekly","video":[{"title":"S1:E20 - The Story of November Sex Hat & October Bitch Face","description":"Craig tells a story that literally has Bolen on the edge of his seat.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfb6dc61-a935-455e-9695-b59bbf86d961/sm/2056961-1488393489550-TryHarder21Thumb.jpg","duration":943,"publication_date":"2017-03-01T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-hot-girls-robot-dinosaurs","changefreq":"weekly","video":[{"title":"LPS:E76 - Hot Girls & Robot Dinosaurs","description":"Bolen has a new gaming crush...","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-hot-girls-robot-dinosaurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6aee7ca3-5035-4870-995c-1e545434a13a/sm/2056961-1488399426892-HorizonThumb2.jpg","duration":1316,"publication_date":"2017-03-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-if-game-attack-ended-tomorrow-try-hard-podcast-21","changefreq":"weekly","video":[{"title":"S1:E21 - If Game Attack Ended Tomorrow - Try Hard Podcast #21","description":"Oscar mess ups, life altering music and Sam wants to become a man-whore. Yup. This is Try Hard.\n\nBlue Apron sponsored this episode of Try Hard! They support us so please support them and get FREE FOOD.- Get 3 free meals from Blue Apron by going here: http://www.BlueApron.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-if-game-attack-ended-tomorrow-try-hard-podcast-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81e52c76-0cf3-43ee-a2b1-634c32865b33/sm/2056961-1488302876616-TryHard21Thumb.jpg","duration":5877,"publication_date":"2017-03-01T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-super-mario-maker-craig-teaches-bolen-how-to-mario","changefreq":"weekly","video":[{"title":"LPS:E75 - Super Mario Maker - Craig Teaches Bolen How To Mario","description":"Bolen sucks at Mario Maker. Craig knows Bolen sucks at Mario Maker. Craig makes Bolen feel bad about being bad at Mario Maker.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-super-mario-maker-craig-teaches-bolen-how-to-mario","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/767f9209-57b9-40b5-8a04-b91533b7a551/sm/2056961-1488214739841-MarioMakerThumb5.jpg","duration":1579,"publication_date":"2017-02-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-let-s-play-happy-wheels-b-l-o-o-d-guts-happiness","changefreq":"weekly","video":[{"title":"S1:E16 - Let's Play Happy Wheels - BLOOD, GUTS & HAPPINESS","description":"We now understand how Pewdiepie got so popular.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-let-s-play-happy-wheels-b-l-o-o-d-guts-happiness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7088a345-5744-47a2-8ba0-c98bc4f756f8/sm/2056961-1488214128434-HappyWheelsThumb.jpg","duration":1039,"publication_date":"2017-02-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bah-gawd-a-l-m-i-g-h-t-y","changefreq":"weekly","video":[{"title":"LPS:E74 - BAH GAWD ALMIGHTY!!","description":"This month on Game Attack Wrestling we have a two tremendous grudge matches and a championship match! Who will the champion fight next? YOU DECIDE!","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bah-gawd-a-l-m-i-g-h-t-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efaf1913-160b-4d62-858f-bd4d8ed9c173/sm/2056961-1488213980435-Wrestling4bThumb.jpg","duration":1678,"publication_date":"2017-02-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-days-day-9-here-s-to-100","changefreq":"weekly","video":[{"title":"LPS:E73 - Death Days Day 9 - \"Here's to 100!\"","description":"As Craig enters Blighttown, Bolen becomes an idiot and Sam becomes drunk. ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-days-day-9-here-s-to-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6f586b4-3df1-477c-aca0-a39647703b27/sm/2056961-1487957815925-DeathDays9Thumb.jpg","duration":6590,"publication_date":"2017-02-25T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-n-o-n-stop-excitement-mario-party-5","changefreq":"weekly","video":[{"title":"S1:E56 - MARIO PARTY SATURDAY - GOOD TO THE LAST SPIN - MARIO PARTY 5","description":"Four Friends. Mario Party. Every Saturday. Holy Shit.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-n-o-n-stop-excitement-mario-party-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab24259e-e1e7-42fc-acc8-c705da5c1e19/sm/2056961-1487943569650-MarioParty5Thumb.jpg","duration":6535,"publication_date":"2017-02-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-shrek-awesome-shrek-super-party","changefreq":"weekly","video":[{"title":"S1:E55 - Mario Party + Shrek = Awesome!? Shrek Super Party","description":"We don't give a damn what you say about Shrek Super Party, this game is legit. We're playing it every week. Screw Mario Party Saturday. It's not Super Shrek Saturday.\n\nok maybe not but still tho...","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-shrek-awesome-shrek-super-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb513fae-a980-4b8a-b55f-494caba3936c/sm/2056961-1487773605719-ShrekThumb.jpg","duration":4088,"publication_date":"2017-02-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-20-shut-u-p","changefreq":"weekly","video":[{"title":"S1:E19 - Try Harder #20 - SHUT UP!","description":"Can you believe we're still talking about THIS? Chad is PISSED.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-20-shut-u-p","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc350aa2-cd6d-4157-a3db-c689b15f9939/sm/2056961-1487724682972-TryHarder20Thumb.jpg","duration":1188,"publication_date":"2017-02-22T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-2-nd-drunk-cast-try-hard-podcast-20","changefreq":"weekly","video":[{"title":"S1:E20 - The 2nd Drunk Cast - Try Hard Podcast #20","description":"The next 79 minutes are a complete mess. Listen kids, drinking too much like Bolen is bad. Why's it so funny?? This episode is brought to you by Blue Apron:- Get 3 free meals from Blue Apron by going here: http://www.BlueApron.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-2-nd-drunk-cast-try-hard-podcast-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae5f600b-4c46-4f4b-9953-392c5daff781/sm/2056961-1487708358017-TryHard20Thumb.jpg","duration":4749,"publication_date":"2017-02-22T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-conan-exiles-the-1-st-day-of-dottie-the-shemite","changefreq":"weekly","video":[{"title":"LPS:E72 - Let's Play Conan: Exiles - The 1st Day of Dottie the Shemite","description":"We've heard a lot about Conan:Exiles so we decided to give it a whirl. Should we play more? ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-conan-exiles-the-1-st-day-of-dottie-the-shemite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce52973-7871-4ce3-bf27-7f604d6bbfce/sm/2056961-1487646644262-CanonThumb1.jpg","duration":1423,"publication_date":"2017-02-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-let-s-play-super-mario-run-golden-goomba-f-e-r-n-n-n-n-n","changefreq":"weekly","video":[{"title":"S1:E15 - Let's Play Super Mario Run: Golden Goomba FERNNNNN!!!","description":"High fi.... WASSSUP!","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-let-s-play-super-mario-run-golden-goomba-f-e-r-n-n-n-n-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/627a7b0a-eaa1-4031-a929-35f6cc373d3f/sm/2056961-1487268762204-MarioRunThumb.png","duration":816,"publication_date":"2017-02-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-here-s-the-100-death-days-day-8","changefreq":"weekly","video":[{"title":"LPS:E71 - Here's the 100 | Death Days Day 8","description":"Craig continues his quest in Dark Souls with help from his buddy Bolen... except things get a bit crazy.\n\nAfter this episode, all episodes will be archived for RT FIRST Members. Get a free 30 days trial by going here: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-here-s-the-100-death-days-day-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d73eb34-d1ff-4b22-9405-bc270eec5a89/sm/2097098-1487370762876-DeathDays8Thumb.png","duration":7176,"publication_date":"2017-02-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-w-h-o-s-t-i-m-e-my-t-i-m-e-mario-party-4","changefreq":"weekly","video":[{"title":"S1:E54 - Mario Party Saturday - WHO'S TIME? MY TIME! - Mario Party 4","description":"Four Friends. Mario Party. Every Saturday. IT'S MY TIME!","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-w-h-o-s-t-i-m-e-my-t-i-m-e-mario-party-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d3efde8-6cc0-49bf-a597-5ead1ecbfdfa/sm/2056961-1487206062595-MarioParty4Thumb.png","duration":5986,"publication_date":"2017-02-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-c-l-u-s-t-e-r-t-r-u-c-k-hype-hype-h-y-p-e","changefreq":"weekly","video":[{"title":"S1:E53 - CLUSTERTRUCK: HYPE HYPE HYPE!","description":"Hype. Hypity hype hype hYYPE. Hyape. Hiiiipe. Hyyyyyype. HHHHHHyyypEEE!","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-c-l-u-s-t-e-r-t-r-u-c-k-hype-hype-h-y-p-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c158b988-508b-4cad-951e-ab9633f5ec5d/sm/2056961-1487133906564-Clustertruck.jpg","duration":1428,"publication_date":"2017-02-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-19-the-best-creator-we-ve-never-seen","changefreq":"weekly","video":[{"title":"S1:E18 - Try Harder #19 - The Best Creator We've Never Seen","description":"While stumbling on YouTube we found some of the funniest shorts we've seen... unfortunately no one else has either.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-19-the-best-creator-we-ve-never-seen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0331dac-6db7-4883-9428-02a4389ea233/sm/2056961-1487094228735-TryHarder19THumb.png","duration":1131,"publication_date":"2017-02-15T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-for-honor-astrid-the-destroyer-how-can-you-b-r-e-a-t-h","changefreq":"weekly","video":[{"title":"LPS:E70 - Let’s Play For Honor - Astrid the Destroyer: HOW CAN YOU BREATH?","description":"We can't tell you how excited we are to get into For Honor. We would like to form a bad ass Game Attack team in time but right now we'll just create our current warrior goddess: Astrid the Destroyer.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-for-honor-astrid-the-destroyer-how-can-you-b-r-e-a-t-h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d59a6ec3-bf28-4349-aebd-2ece74a73695/sm/2056961-1487130978005-ForHonorThumb2.jpg","duration":1714,"publication_date":"2017-02-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-jennifer-anniston-is-still-crazy-hot-try-hard-podcast-19","changefreq":"weekly","video":[{"title":"S1:E19 - Jennifer Aniston is Still CRAZY Hot - Try Hard Podcast #19","description":"Craig loves him some Jennifer Anniston and he doesn't care who knows.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-jennifer-anniston-is-still-crazy-hot-try-hard-podcast-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/284c557a-2335-40cb-ab8a-f44ddc53809f/sm/2056961-1487093760657-TryHard19THumb.png","duration":4438,"publication_date":"2017-02-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-contra-shattered-soldier-shooting-a-giant-anus-monster","changefreq":"weekly","video":[{"title":"LPS:E69 - Let's Play Contra: Shattered Soldier - Shooting A Giant Anus Monster ","description":"In the spirit of Valentine's Day we thought the title of this video would serve multiple purposes.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-contra-shattered-soldier-shooting-a-giant-anus-monster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bea3fee-c884-4fc2-8d3a-3c1996a87bc9/sm/2056961-1487015069522-ContraThumb.jpg","duration":1975,"publication_date":"2017-02-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bolen-vs-dark-souls","changefreq":"weekly","video":[{"title":"LPS:E68 - Bolen vs Dark Souls","description":"After Death Week, Bolen wanted to show Craig how to REALLY play Dark Souls. Craig gave him 90 minutes to work his magic. They both learned a lot about each other that day.\n\n\n\n\n\nDeath Days premieres THIS THURSDAY at 4pm CT - LIVE on Game Attack's YouTube channel.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bolen-vs-dark-souls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72e28dba-cab9-444b-9793-b85b88d9bc32/sm/2056961-1486860343766-BolenvsDarkSoulsThumb.jpg","duration":5357,"publication_date":"2017-02-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-tig-ol-bitties-bmx-xxx","changefreq":"weekly","video":[{"title":"LPS:E67 - Tig ol' Bitties - BMX XXX","description":"So you take hookers to the hotel on the back of your bike and shoot aliens with guns? We're in.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-tig-ol-bitties-bmx-xxx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5c883f4-2073-4f6a-bce9-5d8ae76814ee/sm/2056961-1486744543434-BMXXXXThumb.jpg","duration":1016,"publication_date":"2017-02-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-wtf-did-you-do-to-our-g-a-m-e","changefreq":"weekly","video":[{"title":"S1:E52 - Gang Beasts: WTF DID YOU DO TO OUR GAME??","description":"They updated the game. Why did they do that??","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-wtf-did-you-do-to-our-g-a-m-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74877e13-103c-4889-8426-f9e77a502ba8/sm/2056961-1486759393181-GangBeastsThumbNewUpdate.jpg","duration":3149,"publication_date":"2017-02-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-3","changefreq":"weekly","video":[{"title":"S1:E51 - The More You Drink The Better You Get? - Mario Party 3","description":"It's Mario Party Saturday... and Sam is drunk.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8847094d-5972-4345-803a-f3c4756141ed/sm/2056961-1486758220451-MarioParty3Thumb2.jpg","duration":5871,"publication_date":"2017-02-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-is-nioh-a-better-dark-s-o-u-l-s-2","changefreq":"weekly","video":[{"title":"LPS:E66 - Is NIOH a Better DARK SOULS?","description":"A new game like Dark Souls?? A new game JUST like Dark Souls? We thought we'd take a look at it and see what's different in Nioh and how it stands out.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-is-nioh-a-better-dark-s-o-u-l-s-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/478cc946-58b9-490c-b9d4-3715d45f078a/sm/2056961-1486679892020-NiohThumb.jpg","duration":2657,"publication_date":"2017-02-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-18-john-wick-has-bolen-wrapped-around-his-pinky","changefreq":"weekly","video":[{"title":"S1:E17 - Try Harder #18 - John Wick Has Bolen Wrapped Around His Pinky","description":"Bolen wants to be John Wick so bad he called a secret number... and they responded. ","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-18-john-wick-has-bolen-wrapped-around-his-pinky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df8d4ae6-46e3-4728-980b-c26b98d3204a/sm/2056961-1486495585885-TryHarder18Thumb.jpg","duration":726,"publication_date":"2017-02-08T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-have-you-ever-watched-hentai-try-hard-podcast-18","changefreq":"weekly","video":[{"title":"S1:E18 - Have You Ever Watched Hentai?? - Try Hard Podcast #18","description":"It's a logical question. One that takes up the bulk of this week's show. Why? Because Bolen, Sam and Chad apparently are into it and Craig is not.\n\n\n\n\n\nThis episode is brought to you by Blue Apron. They support us, so please support them.- Get 3 free meals from Blue Apron by going here: http://www.BlueApron.com/TryHard\n\n\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack\n\n\n\n*no cookies are given out on Fridays.\n\n\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-have-you-ever-watched-hentai-try-hard-podcast-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a67d0418-6d0d-4d77-bb34-45a454aab285/sm/2056961-1486495212748-TryHard18Thumb.jpg","duration":4664,"publication_date":"2017-02-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-rocket-league-rage-skill-stupid-luck","changefreq":"weekly","video":[{"title":"LPS:E64 - Let's Play Rocket League - Rage, Skill & Stupid Luck","description":"You know it's good when the title of the video tells you everything you need to know but still doesn't do a good job explaining what exactly you'll see in the video. This is the first time we've played Rocket League on Game Attack - should we play more?","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-rocket-league-rage-skill-stupid-luck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9905c078-c5f9-4dc9-b504-aba048c132fa/sm/2056961-1486406560251-RocketLeagueThumb.jpg","duration":1563,"publication_date":"2017-02-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-best-of-game-attack-december-2016","changefreq":"weekly","video":[{"title":"LPS:E63 - Best of Game Attack - December 2016","description":"We have the best community online - did you know that? Well community member Eddy (aka MrBeardnGlasses) took it upon himself to put together a highlight reel of his persona favorite moments from December 2016. We thought it was so cool we thought we'd put it on our channel. Eddy says he's already working on a highlight reel for January so if you have any suggestions for him make sure to hit him up. All his info is below. You're the man Eddy!\n\n\n\n\n\nYouTube Channel: https://www.youtube.com/channel/UCh0BdwKPrTrBkZDMp8k2qkwTwitch Channel: https://www.twitch.tv/beardnglassesTwitter: https://twitter.com/mrbeardnglasses\n\n\n\n\n\n\n\n\n\nShout out to jays0nfmc for putting together the fan art for the thumbnail! Check jays0nfmc out here: https://www.youtube.com/user/SoulmetalKeyblade","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-best-of-game-attack-december-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4c80e7f-5a2d-4d3f-aaab-98f71e1a315c/sm/2056961-1486406339529-BestofDec2016Thumb.jpg","duration":1674,"publication_date":"2017-02-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-you-c-a-n-t-say-that-c-r-a-i-g","changefreq":"weekly","video":[{"title":"S1:E14 - YOU CAN'T SAY THAT CRAIG!","description":"While playing a stupid game about Dolphins, Craig made an accurate observation about the situation that apparently crossed the line. What else is new?","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-you-c-a-n-t-say-that-c-r-a-i-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3021f90e-62dc-4b08-9fdf-97e4d4e7079d/sm/2056961-1486270340017-DolphinThumb.jpg","duration":816,"publication_date":"2017-02-05T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bolen-s-one-stealthy-mofo-sniper-ghost-warrior-3-gameplay","changefreq":"weekly","video":[{"title":"LPS:E62 - Bolen's One Stealthy Mofo - Sniper Ghost Warrior 3 Gameplay","description":"Thanks to CI games for partnering with us for this video! Be sure to check out what you get with Sniper: Ghost Warrior 3's season Pass: http://bit.ly/2kf8enK\n\nAND to those who think they can snipe like Bolen, sign up now for the beta at: sniperghostwarrior3.com/beta ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bolen-s-one-stealthy-mofo-sniper-ghost-warrior-3-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/624a5ce9-7779-46f1-84ab-072a031cff38/sm/2056961-1486156281752-SniperThumb3.jpg","duration":1464,"publication_date":"2017-02-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-how-to-destroy-friendships-mario-party-2","changefreq":"weekly","video":[{"title":"S1:E50 - Mario Party Saturday - How to Destroy Friendships - Mario Party 2","description":"Four Friends. Mario Party. Every Saturday. Friendships Destroyed.\n\n\n\n\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.\n\n\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-how-to-destroy-friendships-mario-party-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb323bbb-75ef-4212-b38f-4df070950c54/sm/2056961-1485985238053-MarioParty2Thumb.jpg","duration":4132,"publication_date":"2017-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-level-of-hell-let-s-play-super-mario-maker","changefreq":"weekly","video":[{"title":"LPS:E61 - LEVEL OF HELL - Let's Play Super Mario Maker","description":"Bolen has met his great demise. How will Craig do?\n\n\n\n\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-level-of-hell-let-s-play-super-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aee1f62b-deda-4613-a8dc-686baa3fe7e4/sm/2056961-1485980308333-MarioMakerThumb1.jpg","duration":2097,"publication_date":"2017-02-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-hitman-murder-death-kill-y-e-s","changefreq":"weekly","video":[{"title":"LPS:E60 - Let's Play Hitman - Murder. Death. Kill. YES!!!","description":"Who knew being an assassin could bring so much joy to our lives?\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack\n\n\n\n*no cookies are given out on Fridays.\n\n\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-hitman-murder-death-kill-y-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a72cd6b0-1e1b-4fd5-8d44-13d27b7bd471/sm/2056961-1485976083514-HitManThumb3.jpg","duration":1545,"publication_date":"2017-02-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-17-it-s-time-for-some-real-talk","changefreq":"weekly","video":[{"title":"S1:E16 - Try Harder #17 - It's Time for Some Real Talk","description":"It's important to be transparent with you guys.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-17-it-s-time-for-some-real-talk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/438dfa5c-9030-460a-bf3a-82710a509dc7/sm/2056961-1485887031964-TryHarder17Thumb.jpg","duration":1281,"publication_date":"2017-02-01T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-are-you-blinded-by-nostalgia-try-hard-17","changefreq":"weekly","video":[{"title":"S1:E17 - Are You Blinded by Nostalgia? - Try Hard #17","description":"The guys chat about the upcoming Power Rangers movie, Disney World and probably one of the grossest things on the internet.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-are-you-blinded-by-nostalgia-try-hard-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70f6658e-eeb2-4924-9362-9407e044c9bf/sm/2056961-1485884955094-TryHard17Thumb.jpg","duration":5342,"publication_date":"2017-01-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-burnout-3-with-achievement-hunter","changefreq":"weekly","video":[{"title":"LPS:E59 - Let's Play Burnout 3 with Achievement Hunter","description":"We crash some cars with the boys from AH.\n\n\n\n\n\nNew to Game Attack? Check out our YouTube channel to learn more about who we are and what we make: https://www.youtube.com/GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-burnout-3-with-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21fe1a6b-1d3c-4692-bf07-a0620f37fb71/sm/2056961-1485884567059-BurnoutThumb2.jpg","duration":777,"publication_date":"2017-01-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-mc-kenna-s-gymtastic-tap-that-app","changefreq":"weekly","video":[{"title":"S1:E13 - Cosby's Coming For Ya|Tap that App","description":"Somehow we got 12 minutes worth of video out of this app. Is that a good thing?","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-mc-kenna-s-gymtastic-tap-that-app","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24a98dfd-d596-4647-ac28-4e8ea1439992/sm/2056961-1485811792043-American_girl.jpg","duration":739,"publication_date":"2017-01-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-in-fifa","changefreq":"weekly","video":[{"title":"LPS:E58 - Game Attack vs Achievement Hunter in FIFA","description":"Craig, Bolen, Jack and Geoff get together to play The Beautiful Game which in an event that could be the spawn of an epic rivalry. ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-in-fifa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffc4fd92-5bbe-4491-beea-2d6ecf9e40db/sm/2056961-1485374831608-FIFAThumb.jpg","duration":1462,"publication_date":"2017-01-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-saturday-there-will-be-blood-mario-party-1","changefreq":"weekly","video":[{"title":"S1:E49 - Mario Party Saturday - There Will Be Blood (Mario Party 1)","description":"Four Friends. Mario Party. Every Saturday. The journey begins.\n\nWatch Mario Party Saturday on Fridays: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\nSub to us & never miss an episode: http://bit.ly/Sub2GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-saturday-there-will-be-blood-mario-party-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd7e74e9-8f34-4c59-8986-c014b165cd23/sm/2056961-1485374259772-MarioParty1Thumb.jpg","duration":6472,"publication_date":"2017-01-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-best-just-cause-3-highlights-reel-ever-made","changefreq":"weekly","video":[{"title":"LPS:E57 - The Best Just Cause 3 Highlights Reel Ever Made","description":"Did we mention this games the best. It's the best f'n game in the history of video games. The best. God. Damn. It's the best.\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack\n\n\n\n*no cookies are given out on Fridays.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-best-just-cause-3-highlights-reel-ever-made","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daa02850-eb55-4e16-ab7f-b8b8f47bdd32/sm/2056961-1485371657629-JustCause3Thumb.jpg","duration":1409,"publication_date":"2017-01-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-the-best-child-killing-movie-in-the-world-try-harder-16","changefreq":"weekly","video":[{"title":"S1:E15 - The Best Child Killing Movie in the World - Try Harder #16","description":"Bolen watched some fucked up stuff as a kid so now we're gonna watch some of it too. Prepare to be shocked and laugh your ass off.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-the-best-child-killing-movie-in-the-world-try-harder-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73e15162-33a7-427a-9803-4e0d0fff0dc3/sm/2056961-1485380821040-TryHarder16Thumb.jpg","duration":1024,"publication_date":"2017-01-25T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-scariest-game-we-ve-ever-played","changefreq":"weekly","video":[{"title":"LPS:E56 - The Scariest Game We've Ever Played??","description":"What you're about to see are our genuine reactions to Resident Evil 7. Spoilers - it's scary as shit.\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-scariest-game-we-ve-ever-played","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea0c0521-097b-4d13-ba8d-6331f120df5a/sm/2056961-1485320520258-ResidentEvil7Thumb3.jpg","duration":2628,"publication_date":"2017-01-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-craig-s-unique-super-power-idea-try-hard-podcast-16","changefreq":"weekly","video":[{"title":"S1:E16 - Craig's Unique Super Power Idea - Try Hard Podcast #16","description":"Craig has an interesting idea for a super power that has the guys perplexed as to how they'd actually use it. How would YOU use it if you had it? Thanks to this week's sponsors, Dollar Shave Club and Blue Apron. They support us so please support them: \n\n\n\n\n\nTry Dollar Shave Club for $1 -http://DollarShaveClub.com/TRYHARD \n\n\n\nGet 3 Free Meals from Blue Apron - http://www.BlueApron.com/TRYHARD","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-craig-s-unique-super-power-idea-try-hard-podcast-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e80b880-bb43-4bf5-b724-7910aacc9305/sm/2056961-1485276205557-TryHard16Thumb2.jpg","duration":5227,"publication_date":"2017-01-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-frog-boys-blue-blob-cuphead-gameplay-ep-2","changefreq":"weekly","video":[{"title":"2017:E113 - FROG BOYS & BLUE BLOB • Cuphead Gameplay • Ep 2","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-frog-boys-blue-blob-cuphead-gameplay-ep-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc86066d-b4a5-41c8-b942-9988804122dd/sm/2516933-1507850909351-CUP_HEAD_EP_2.jpg","duration":930,"publication_date":"2017-10-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-world-war-ii-bloopers-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E36 - WORLD WAR II BLOOPERS • Behind the Cow Chop","description":"Welcome back! This week we have  bloopers for the Raid World War II gameplay. Be sure to check them out if you haven't already. Also Trevor gets some new sweet glasses for everyone and shows Brett some tasty bubbles.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-world-war-ii-bloopers-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39a952db-253d-444c-ad3b-aaf181fe19d7/sm/2516933-1507319146210-BTS_THUMB_1.jpg","duration":609,"publication_date":"2017-10-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-cuphead-is-finally-here-cuphead-gameplay-ep-1","changefreq":"weekly","video":[{"title":"2017:E110 - CUPHEAD IS FINALLY HERE • Cuphead Gameplay • Ep 1","description":"Cuphead is a classic run and gun action game heavily focused on boss battles. Inspired by cartoons of the 1930s, the visuals and audio are painstakingly created with the same techniques of the era (traditional hand drawn cel animation, watercolor backgrounds, and original jazz recordings). Aleks and James play as brothers, Mugman and Cuphead, on a mission to repay their debt to the devil.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-cuphead-is-finally-here-cuphead-gameplay-ep-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/916e999f-2ae8-470e-8d5f-c6ae0c9eedd0/sm/2516933-1507253532156-CUP_HEAD_EP_1X3.jpg","duration":927,"publication_date":"2017-10-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-w-h-a-t-s-in-the-box-challenge-feat-aleks","changefreq":"weekly","video":[{"title":"S1:E101 - WHAT'S IN THE BOX CHALLENGE (feat. Aleks)","description":"Eight items. Two friends. One box. It's time to test our trust by putting our hand into a mystery box and feel out whatever may be waiting inside. ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-w-h-a-t-s-in-the-box-challenge-feat-aleks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9fcfd1d-2f10-4a18-b37d-ad2adbb31f3f/sm/2516933-1507083005269-boxthumb.jpg","duration":968,"publication_date":"2017-10-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-thwart-the-onslaught-raid-world-war-ii-gameplay","changefreq":"weekly","video":[{"title":"2017:E109 - THWART THE ONSLAUGHT • RAID World War II Gameplay","description":"JOIN the Cow Chop crew as they travel back in time to defeat the Nazis and save the Russian! Or was it.. fight the Russian? Or is it Russian VS. Russian? All we know is our Russian is the best Russian.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-thwart-the-onslaught-raid-world-war-ii-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc029f7f-d87e-4b2b-86ac-97194350f757/sm/2516933-1506968206660-RAID_thumb.jpg","duration":1029,"publication_date":"2017-10-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cow-chop-roast","changefreq":"weekly","video":[{"title":"S1:E100 - COW CHOP ROAST","description":"Today we're trying something a little different, and it's only because we're all about to kill each other. To de-stress we're going to take everything out on each other with the worst possible roasts we can think of. Anything goes, and a slap to the face means someone is not taking this seriously. So keep a straight face or get smacked!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cow-chop-roast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f7581d4-8887-4f2b-96a1-8e78a0f4e95e/sm/2516933-1507052927506-Thumbnail.jpg","duration":450,"publication_date":"2017-10-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-crazy-office-antics-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E35 - OFFICE PILLOW PROBLEMS • Behind the Cow Chop","description":"Welcome back to more Behind the Cow Chop! This week we found a popcorn-scented-pillow on the ventilation pipe above our heads; this could be considered a possible hazard. The only way we know how to get it down though is to throw more pillows at it. Will that work?! Then, Trevor gets a present from someone. Watch to find out what it is!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-crazy-office-antics-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/245275d2-ce39-4fcf-88cc-cbf6327c6d85/sm/2516933-1506737122036-thumbnail_option3.jpg","duration":835,"publication_date":"2017-09-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-test","changefreq":"weekly","video":[{"title":"2017:E15 - MEXICAN EARTHQUAKE ESCAPE PLAN • WRONG SIDE OF YOUTUBE","description":"Youtube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67330d21-8136-4775-9c90-bd2a6f429cc3/sm/2516933-1506767249990-Thumbnail.jpg","duration":650,"publication_date":"2017-09-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-magical-edible-bubbles","changefreq":"weekly","video":[{"title":"S1:E99 - TRUTH ABOUT EDIBLE BUBBLES","description":"What are edible bubbles anyway? Well watch to find out not just what they are but the side effects as well.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-magical-edible-bubbles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26110db6-8335-4b9d-b698-d35bf0844c9b/sm/2516933-1506460834506-THUMBNAIL_option_1.jpg","duration":712,"publication_date":"2017-09-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-new-spies-spyfall","changefreq":"weekly","video":[{"title":"S1:E101 - NEW SPIES • Spyfall","description":"Some of the world's top spies all meet for one purpose; to discover who the REAL spy is.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-new-spies-spyfall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ea342ef-1ba5-46eb-ba28-13c8b8f4ee9b/sm/2516933-1506385359160-thumb4x.jpg","duration":1099,"publication_date":"2017-09-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-rock-of-ages-ii-2","changefreq":"weekly","video":[{"title":"2017:E108 - BOULDER CRASH COURSE • Rock Of Ages II Gameplay","description":"Aleks and James go head to head against their \"enemy\" Can they overcome? Will they defeat the enemy? Or will they get CHEESED!? Also Joe and Jake have to go in the ball. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-rock-of-ages-ii-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d851dce-29e5-4d97-8e90-369aa821894e/sm/2516933-1506124654775-rockof_ages_2.jpg","duration":877,"publication_date":"2017-09-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-bts-2","changefreq":"weekly","video":[{"title":"2017:E34 - MECHANICAL BULL TRIALS • Behind the Cow Chop","description":"Welcome back to Behind the Scenes! Did you ever wonder how much it costs to rent a full-on mechanical bull for a day? Watch to find out! And check out the rest of the crew try their hand at bull riding! Also, when James buys a new toy for the office, everyone gets really excited to play with it, even when it hasn't been used in the main video yet (oops!). ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-bts-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bc09418-fd67-4af5-b6db-a3f0038c0a7c/sm/2516933-1506044874232-THUMBNAIL_OPTION2X2.jpg","duration":713,"publication_date":"2017-09-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-hhj","changefreq":"weekly","video":[{"title":"2017:E15 - INNOVATIVE INVISIBLE INK • AMAZON PRIME TIME","description":"Thanks to our sponsor Dollar Shave Club, new members get their 1st month of the ‘Sh*t, Shower, Shave’ Starter Set including the Executive Razor and trial-sized versions of their Shave Butter, Body Cleanser and One Wipe Charlies’ Butt Wipes for ONLY $5 with FREE shipping. After that razors are just a few bucks a month. Exclusively at:  ;http://www.dollarshaveclub.com/cowchop   \n\n\n\n\n\n\n\n\n\nPatreon https://www.patreon.com/cowchopClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-hhj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c9dfcef-f596-4ade-a7af-dce026dcdf97/sm/2516933-1506172527535-gdgdgdg.jpg","duration":880,"publication_date":"2017-09-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cuphead-mov","changefreq":"weekly","video":[{"title":"S1:E100 - cuphead.mov","description":"We try the tutorial in Cuphead.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cuphead-mov","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28c65e83-1e49-4909-87e0-b02bc3264d72/sm/2516933-1506100199945-showcase_2_3333.jpg","duration":226,"publication_date":"2017-09-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-xbox-showcase-event","changefreq":"weekly","video":[{"title":"S1:E98 - MICROSOFT ACTUALLY INVITED US BACK","description":"The crew heads out to another Xbox Showcase with more games and free food!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-xbox-showcase-event","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69920339-1c75-4daf-b976-5abf167a06ab/sm/2516933-1506033764389-showcase_2.jpg","duration":797,"publication_date":"2017-09-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-truxk","changefreq":"weekly","video":[{"title":"2017:E106 - TRUCKING THROUGH LOS ANGELES • American Truck Simulator Gameplay","description":"James and Aleks join the open road and become truckers.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-truxk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f12b0b15-dcc0-4f14-ba3b-5dd260cfa113/sm/2516933-1505763370954-Thumbnail_2.jpg","duration":815,"publication_date":"2017-09-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-rock-of-ages","changefreq":"weekly","video":[{"title":"2017:E107 - ROLLING BOULDER DERBY • Rock Of Ages 2 Gameplay","description":"ONE V ONE. BOULDER V BOULDER. ALEKS V JAMES. James has set up a fun irl mini game for Aleks today, but will they even get to play before the rest of the Cow Chop heathens destroy everything they worked so hard for?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-rock-of-ages","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/244504d0-7a9c-42b2-b050-c744b4cabeea/sm/2516933-1505843462616-rockofages_inprogress.jpg","duration":872,"publication_date":"2017-09-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fsf","changefreq":"weekly","video":[{"title":"S1:E97 - Burger King Rodeo King Challenge ft. Mechanical Bull","description":"Today we bring in a mechanical bull to challenge ourselves to eat Burger King's Rodeo King burger while riding this beast at the same time. Not only do we risk biting our tongues off, but most of us leave this journey with quite a few bruises and sore backs. \n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nLos sonidos eran divertidos de hacer. Son un poco desordenado y tal vez un poco demasiado ruidoso, pero esa es la magia de la misma. Nada dice diversión como tinnitus.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fsf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14025554-e195-42ed-a912-978ff7af5423/sm/2516933-1505818309416-Thumbnail.jpg","duration":360,"publication_date":"2017-09-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-bts-s-wpt","changefreq":"weekly","video":[{"title":"2017:E33 - NEW COUCH + TARGET PRACTICE • Behind the Cow Chop","description":"Subscribe: http://bit.ly/1RQtfNf  \n\nPatreon: https://www.patreon.com/cowchopCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week on Behind the Cow Chop, James shows us some new fun toys he got, Crossbows! Also we finally got our new couch!!!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThanks to CIB ( @notCIB ) from Sugar Pine 7 for doing a post roll for us!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPenso che sia il momento che abbiamo un nuovo divano. La vecchia era ricoperta di tonnellate di liquidi corporei, tra cui buccia e pisello. Grazie a Dio per il nuovo divano !!!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNEW COUCH + TARGET PRACTICE • Behind the Cow ChopThank You ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-bts-s-wpt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd78bddb-98fd-4ef6-b1cf-e3f38cea0dd7/sm/2516933-1505420872361-BTS.jpg","duration":682,"publication_date":"2017-09-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-terrifying-giant-bunnies-mario-rabbids-gameplay","changefreq":"weekly","video":[{"title":"2017:E104 - TERRIFYING GIANT BUNNIES • Mario + Rabbids Gameplay","description":"Mario + Rabbids Kingdom Battle is a turn-based tactical game. It has both single player and co-op gameplay. Wanting a good co-op game, the guys choose teams as Mario and Luigi to slay the enemy Rabbids. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-terrifying-giant-bunnies-mario-rabbids-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9c83a1e-0605-4e4d-9520-5a8f32ca084e/sm/2516933-1505265037838-Thumbnail_ep_2.jpg","duration":948,"publication_date":"2017-09-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-mario-rabbids","changefreq":"weekly","video":[{"title":"2017:E103 - TACTICAL MANEUVERS • Mario + Rabbids Gameplay","description":"Mario + Rabbids Kingdom Battle is a turn-based tactical game. It has both single player and co-op gameplay. Wanting a good co-op game, the guys choose teams as Mario and Luigi to slay the enemy Rabbids. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-mario-rabbids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4216796c-fb98-460e-b543-c478a34fc341/sm/2516933-1504908758008-Thumbnail_ep_whateverx2.jpg","duration":930,"publication_date":"2017-09-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-marshmallow-crossbow-range","changefreq":"weekly","video":[{"title":"S1:E96 - MARSHMALLOW CROSSBOW RANGE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nPatreon: https://www.patreon.com/cowchop Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nJames set up and office shooting range with a custom made Marshmallow Crossbow!\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nÍnycsiklandós ízletes zamatos mályvacukrot. Én annyit fogok a szájamba, amennyit csak tudok, aztán belebotolok a seggfejbe. Köszönöm, hogy megengedte nekem, hogy az összes marshmallowt behelyezzem a butthole-ba.\n\n\n\n\n\n\n\nMARSHMALLOW CROSSBOW RANGEThank You ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-marshmallow-crossbow-range","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63f8e616-81e1-4feb-865a-a123abcb0eda/sm/2516933-1505153712631-bow.jpg","duration":1009,"publication_date":"2017-09-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-mystery-spy-spyfall","changefreq":"weekly","video":[{"title":"S1:E95 - MYSTERY SPY • Spyfall","description":"Subscribe http://bit.ly/1RQtfNf  \n\nPatreon: https://www.patreon.com/cowchop Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSome of the world's top spies all meet for one purpose; to discover who the REAL spy is. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGuud ahaan, marka carruurtu u isticmaasho sida basaasiinta, xaaladdu aad ayay u xumaatay. Shaqaaleynta iyo isticmaalka carruurta ka yar 15 jir si ay u taageeraan ciidamada qalabka / kooxaha awood kasta waxay ka soo horjeedaa sharciga caalamiga ah. Carruurta da'doodu tahay 15-18 waxaa loo ogol yahay inay si ikhtiyaari ah u adeegaan. Si kastaba ha ahaatee, carruurtu waxay u shaqeeyeen sida basaasiin badan oo isku dhacay, kuwaasi oo dhawaanahan u adeega warbaahin Soomaaliyeed oo ku saabsan aqoonsiga mucaaradka, iyo sida rasmiga ah, basaasiinta iyo weerarrada isqarxinta ee Taliban ee Afgaanistaan.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMYSTERY SPY • SpyfallThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-mystery-spy-spyfall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac1bc6d7-c357-49eb-a6ea-07ead8a97890/sm/2516933-1505000190873-thumb2.jpg","duration":1082,"publication_date":"2017-09-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-the-account-of-aleks-bloopers-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E32 - THE ACCOUNT OF ALEKS BLOOPERS • Behind the Cow Chop","description":"Welcome back! This week we have bloopers from The Account of Aleks video. Please go check it out if you haven't already! Also, a few of guys went to PAX West last weekend and met a lot of great people and signed a ton of merch; we wanted to show you a little bit from that. ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-the-account-of-aleks-bloopers-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39373915-b8c5-43e1-93bf-3a47dfc435ee/sm/2516933-1504913314000-thumbnail_option_1x2.jpg","duration":684,"publication_date":"2017-09-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-fans-roast-cow-chop","changefreq":"weekly","video":[{"title":"2017:E14 - FANS ROAST COW CHOP • WRONG SIDE OF YOUTUBE","description":"Patreon https://www.patreon.com/cowchop\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nAquí hay un pequeño hecho. Naruto es un anime, y es el anime más grande. Apreciar el arte por lo que es. Es asombroso. Asegúrese de ver todas las estaciones, son igualmente grandes. Amo el anime.\n\n\n\n\n\n\n\n\n\n\n\nVideos\n\n\n\n\n\n\n\n\n\n\n\nNaruto Run https://youtu.be/pwIMaz-pKgYGoku Scream https://youtu.be/DOAL3PFi0AcDonkey Kong Jump https://youtu.be/5rk18aTOMH0Waterslide Clickbait https://youtu.be/sOVNnnPgJxE0 Subscribers https://youtu.be/FO0h162Ty3w1 Subscriber https://youtu.be/r2IxbPmKO9kGay Frogs https://youtu.be/9JRLCBb7qK8Cowchop Criticism https://youtu.be/6mFzN1En4-sCow Chop Rant Angry https://youtu.be/soAwnplZshw\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You\n\n\n\n\n\nFANS ROAST COW CHOP • WRONG SIDE OF YOUTUBE","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-fans-roast-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48cc9c03-3972-467d-8378-2e4c0f7afe4c/sm/2516933-1504920678732-Thumbnail.jpg","duration":610,"publication_date":"2017-09-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cooking-flarp-experiment","changefreq":"weekly","video":[{"title":"S1:E91 - COOKING FLARP EXPERIMENT","description":"There's been a lot of talk about Flarp and the great sounds coming from it, but what if you were to cook it? Say, in a microwave or boiled in a pot? Perhaps toasted or sautéed? Does it explode? Catch on fire? Cause gaseous fumes to kills us all? Watch these great experiments to find out!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cooking-flarp-experiment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5623f9ba-878a-4521-8ed5-f3b9eee2fe86/sm/2516933-1504212484153-thumbnail_option1x3.jpg","duration":819,"publication_date":"2017-09-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-amateur-fencing-injuries-nidhogg-2-gameplay","changefreq":"weekly","video":[{"title":"2017:E102 - AMATEUR FENCING INJURIES • Nidhogg 2 Gameplay","description":"New levels! New characters! New... dimensions? Aleks and James face off one-on-one in some Nidhogg 2. Grab your popcorn and your fencing gear, and protect yourself!The following is for those multicultural:O cerco é um dos únicos quatro esportes a ser incluído em todos os Jogos Olímpicos modernos, desde o primeiro em 1896. A cerco também foi um esporte nos Jogos Olímpicos originais na Grécia antiga.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-amateur-fencing-injuries-nidhogg-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7890e185-265c-4315-947d-072d6309e30c/sm/2516933-1504722063744-nidhogg_thumb.png","duration":972,"publication_date":"2017-09-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cow-chop-goes-to-boot-camp","changefreq":"weekly","video":[{"title":"S1:E92 - COW CHOP GOES TO BOOT CAMP","description":"Subscribe http://bit.ly/1RQtfNf  \n\nPatreon: www.patreon.com/cowchop  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nThings have changed since we've moved to LA. It's time to get everyone back in line!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nDu wirst in die Schlange kommen! Du wirst den Müll rausziehen! Du wirst tun, wie ich sage! Du wirst aufhören, meinen Befehlen zu widersprechen! Du wirst Push-ups machen! Sie sehen Cow Chop!\n\n\n\n\n\n\n\n\n\n\n\nCOW CHOP GOES TO BOOT CAMPThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cow-chop-goes-to-boot-camp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fd27147-8197-45c4-bba2-ae9804ce7579/sm/2516933-1504639002618-armyyyyyyy.jpg","duration":551,"publication_date":"2017-09-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-the-account-of-aleks","changefreq":"weekly","video":[{"title":"S1:E93 - THE ACCOUNT OF ALEKS","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn a day like any other, Trevor discovers something that changes the course of his life forever. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nЕдин от малкото, които прекарахме няколко дни в планирането, писането и заснемането на видео. Не е обичайният ни импулс, опитвайки нещо ново. Какво мислиш?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE ACCOUNT OF ALEKSThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-the-account-of-aleks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bcf9819-b56f-4c76-800e-bb5038855231/sm/2516933-1504384324240-thumbnail.jpg","duration":950,"publication_date":"2017-09-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-germany-trip","changefreq":"weekly","video":[{"title":"2017:E31 - GERMANY TRIP & LOGO RIP-OFFS • Behind the Cow Chop","description":"This week on Behind the Cow Chop, we take a look at Brett's exciting trip to Germany. Then, Trevor is given a Roblox toy that should bring him inspiration for a new career. Finally, Aleks has a new shirt for Joe, but it looks suspiciously familiar.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-germany-trip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51abe37b-414c-4b9b-a7db-ebcc43d8823d/sm/2516933-1504308898479-thumbnail_option1x2.jpg","duration":604,"publication_date":"2017-09-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-f","changefreq":"weekly","video":[{"title":"2017:E13 - DISASTER OF HURRICANE HARVEY • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nHey, to jest sobota. Nie wiesz, co powiedzieć, ale obecnie jestem na wakacjach, lub będę w chwili zamieszczania tego. Naprawdę to piszę, kiedy powinienem się pakować. Idę do jakiejś chatki w lesie, obawiam się, że umrę. Idź i nie wysyłaj pomocy.\n\n\n\n\n\n\n\nVideos\n\n\n\n\n\n\n\nRubkis Cube - https://youtu.be/basLEgXcgVASad Fried Chicken - https://youtu.be/tl0-Mq3bnWYPeople On Jet Skis - https://youtu.be/l2Cd3ZSm0BQMore Jet Skis - https://youtu.be/wfrEiVto5wICatching Fish - https://youtu.be/pxbj4JcTfQMHawk Saga - https://youtu.be/4Jjh2XdpQYE\n\n\n\n\n\n\n\n\n\nThank You\n\n\n\n\n\n\n\nDISASTER OF HURRICANE HARVEY • WRONG SIDE OF YOUTUBE","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a8b7494-90e2-4a86-9273-dd72af466527/sm/2516933-1504259013687-youtubeharvey.jpg","duration":622,"publication_date":"2017-09-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-fresh-tracks-sonic-mania-gameplay","changefreq":"weekly","video":[{"title":"2017:E101 - RETRO PORTAL REMIX • Sonic Mania Gameplay ","description":"Sonic and Tails join together to defeat their rivals Doctor Eggman and the Hard-Boiled Heavies in the new game, Sonic Mania. Many of the levels are recycled from old games, which brings waves of nostalgia. However, each level seems to be completely new and upgraded, with new enemies and fresh tracks. The only problem is, will Tails be able to keep up with Sonic, or will he just be the meat shield during boss battles? ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-fresh-tracks-sonic-mania-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96a36230-3e79-4d9e-9b52-3424dd31948b/sm/2516933-1503943892363-thumbnail_option2.jpg","duration":928,"publication_date":"2017-09-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-brutal-c-s-go-faceoff","changefreq":"weekly","video":[{"title":"2017:E99 - BRUTAL CS:GO FACEOFF","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nMany years after Aleks and Trevor went 1v1 in CS:GO on Alek's channel, they decide to have a rematch.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nIch werde deinen Hintern in Videospielen kickst! Denkst du nicht für eine Sekunde, dass ich deinen Arsch nicht in CS:GO treten werde! Dein Arsch ist Grasmütze!\n\n\n\n\n\n\n\nBRUTAL CS:GO FACEOFFThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-brutal-c-s-go-faceoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee6f9bce-868b-4f9f-bf34-e15a4bbb5e7b/sm/2516933-1503621031372-Thumbnail.jpg","duration":748,"publication_date":"2017-08-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-sonic","changefreq":"weekly","video":[{"title":"2017:E97 - SONIC CO-OP IS BACK! • Sonic Mania Gameplay","description":"Sonic and Tails join together to defeat their rivals Doctor Eggman and the Hard-Boiled Heavies in the new game, Sonic Mania. Many of the levels are recycled from old games, which brings waves of nostalgia. However, each level seems to be completely new and upgraded, with new enemies and fresh tracks. The only problem is, will Tails be able to keep up with Sonic, or will he just be the meat shield during boss battles? ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-sonic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043b49b4-572e-403f-b912-b161797a19c9/sm/2516933-1503945999497-thumbnail_option2.jpg","duration":854,"publication_date":"2017-08-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-grumps","changefreq":"weekly","video":[{"title":"S1:E15 - GRUMP SPACE (feat. Arin) • CCTV #15","description":"Well, it's been a long and wild ride but CCTV is finally here at the end of a crazy summer season.  We came, we saw, we got kicked out sometimes.  Today we're wrapping things up in style with ARIN from GAME GRUMPS.  He and the boys talk life, youtube, and the celestial heavens above.  Hope you enjoy and we'll see you when we see you.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-grumps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b923774-60db-4edb-b0e8-4067fbfdb1e2/sm/2516933-1503947201034-CCTV_THUMB_ep15.jpg","duration":3446,"publication_date":"2017-08-29T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-life-sentence-the-escapists","changefreq":"weekly","video":[{"title":"2017:E100 - LIFE SENTENCE - the escapists","description":"Welcome to Youtube Prison, where baddies such as the likes of Aleks, James, DanTDM, and JackSepticEye are taken to pay their dues for their crimes against YouTube. Will they escape?\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAleks je prošetao milju sa različitim slabostima. Nikada nije sreo nekoga kao što je Džejms, veliki crni čovek osuđen za brutalno ubijanje par mladih sestara. Džejms je imao veličinu i snagu da ubije bilo koga, ali ne i ponašanja. Iznad njegove jednostavne, naivne prirode i smrtonosnog straha od mraka, Džejms je izgledao da poseduje ogroman, natprirodni poklon. Aleks je započeo da se bavi pitanjem da li je Džejms bio zaista kriv za ubistvo dve devojke.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-life-sentence-the-escapists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a61b5d6-3d63-4616-9e16-fc4909b9b4dc/sm/2516933-1503702341431-escapists2_ep2_.jpg","duration":750,"publication_date":"2017-08-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-insane-magic-trick-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E30 - INSANE MAGIC TRICK • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nAre you ready for some magic and some music and maybe some fire? Get ready for this week's Behind the Cow Chop.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nTein kerran porkkanan katoamaan sekaisin. Ajattelin, että se näyttäisi jälleen, mutta se ei koskaan tehnyt. Kunnes eräänä päivänä olin valmis syömään illallista, ja näin keittiöpöydän porkkanan. Olen mestari taikuri.\n\n\n\n\n\n\n\n\n\n\n\nINSANE MAGIC TRICK • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-insane-magic-trick-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f93317f5-4c74-477f-8c3c-865746311561/sm/2516933-1503697972778-bts_8-27_thumb.jpg","duration":661,"publication_date":"2017-08-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-trump","changefreq":"weekly","video":[{"title":"2017:E14 - STRETCH ARMSTRONG VS TRUMP • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nMe gusta comprar un montón de Armstrongs Stretch a granel y rasgarse la cabeza y ver su fuga de las entrañas en el transcurso de unas horas. Sólo trabajo para ganar más dinero para comprar más Stretch Armstrongs. Él es mi vínculo con la vida. Amo Stretch Armstrong, y usted también.\n\n\n\n\n\n\n\nSTRETCH ARMSTRONG VS TRUMP • AMAZON PRIME TIME\n\n\n\n\n\n\n\nThank you ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-trump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20ece598-6661-4692-940f-566be534cbdf/sm/2516933-1503745170132-AmazonTrump.jpg","duration":699,"publication_date":"2017-08-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-bigfoot-attack-caught-on-tape","changefreq":"weekly","video":[{"title":"2017:E96 - BIGFOOT ATTACK CAUGHT ON TAPE","description":"Subscribe http://bit.ly/1RQtfNf  \r\n\r\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe boys go on a hunt for Bigfoot. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nYa Tuhan! Ya Tuhan! Ya Tuhan! Ini kaki yang besar! MENJALANKAN! MENJALANKAN! MENJALANKAN!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBIGFOOT ATTACK CAUGHT ON TAPEThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-bigfoot-attack-caught-on-tape","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/691b11bd-8dee-41c8-bf3f-c7bda8817142/sm/2516933-1503436921339-Thumbnail_3.jpg","duration":604,"publication_date":"2017-08-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-youtube-prison-the-escapists-2-gameplay","changefreq":"weekly","video":[{"title":"2017:E98 - YOUTUBE PRISON • The Escapists 2 Gameplay","description":"Welcome to Youtube Prison, where baddies such as the likes of Aleks, James, DanTDM, and JackSepticEye are taken to pay their dues for their crimes against YouTube. Will they escape?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-youtube-prison-the-escapists-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a338c444-c780-4711-8629-b390f56eca15/sm/2516933-1503534153281-ESCAPISTS_ep1_v2.jpg","duration":974,"publication_date":"2017-08-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-bad-lawbreakers-gameplay","changefreq":"weekly","video":[{"title":"S1:E90 - BAD LAWBREAKERS GAMEPLAY ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Brett and Asher embark on a quest to break the law!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMaaaring Mabuhay ang Mga Palaka ng Kahoy na Pagiging Frozen Solid, Over and Over. Tuwing taglagas, ang mga pinakaligtas na hayop ay magtungo sa timog, na tumatakas sa taglamig na pag-aalsa upang maalis nila ang kamatayan o magwasak sa pamamagitan ng ngayon.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBAD LAWBREAKERS GAMEPLAYThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-bad-lawbreakers-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97a757d8-88da-4f18-9280-12f39990c676/sm/2516933-1503447105617-thumb.jpg","duration":953,"publication_date":"2017-08-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-bigfoot-gone-wild","changefreq":"weekly","video":[{"title":"2017:E95 - BIGFOOT GONE WILD","description":"Subscribe http://bit.ly/1RQtfNf  \r\n\r\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe boys go on a hunt for Bigfoot. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nLáttál már valaha, hogy a nagyorrú elvadult és szaladgált a meztelen bőréhez? Nagyon szexi, oh Istenem!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBIGFOOT GONE WILDThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-bigfoot-gone-wild","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b502bf10-381a-4180-bfc2-6a26e1443e89/sm/2516933-1503093704612-Thumbnail_2.jpg","duration":759,"publication_date":"2017-08-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-sp7-office-with-anna","changefreq":"weekly","video":[{"title":"S1:E14 - BOYS ONLY CLUBHOUSE (feat. Anna) • CCTV #14","description":"We have ourselves quite a familiar but yet special guest today, with an appearance made every once in awhile, we finally have the spotlight focused on Anna.  We take her to the den of Steven Suptics own office building to ask her about the general life at Cow Chop. We venture into how being hired seemed like a scam at first and how dangerous it is riding with James.  We hope you appreciate this insight from one of the only normal people working at Cow Chop.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-sp7-office-with-anna","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac6cd2b0-e529-4155-afc4-1d3029192dcf/sm/2516933-1503357284917-CCTV_THUMB_ep14_v2.jpg","duration":3104,"publication_date":"2017-08-22T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-artistic-tee-shirts-tee-k-o-gameplay","changefreq":"weekly","video":[{"title":"2017:E93 - ARTISTICALLY CHALLENGED DESIGNS • Tee K.O. Gameplay","description":"Tee K.O. is one of the games in Jackbox Party Pack 3. Get a group of your most artistic (or artistically challenged) friends together and see what you all come up with. In this episode, Aleks, Brett, James and Trevor race the clock to come up with the best designs and slogans on the market. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-artistic-tee-shirts-tee-k-o-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1360652a-366f-4524-8c7b-24d75cb33ea7/sm/2516933-1502920847460-Thumbnailoption2.jpg","duration":601,"publication_date":"2017-08-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-spa-bts","changefreq":"weekly","video":[{"title":"2017:E29 - WATER CLEAN UP FIASCO • Behind the Cow Chop","description":"After Aleks' spa day, there was a huge mess to clean up. Now everyone has to pitch in to keep the office from turning into a swamp. And Aleks has another box of presents for Trevor and himself.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-spa-bts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1872de7f-03c6-4912-bd03-48e7c3a5e52c/sm/2516933-1503111635558-thumbnail_option1x.jpg","duration":696,"publication_date":"2017-08-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-diss","changefreq":"weekly","video":[{"title":"2017:E12 - DISS TRACK DRAMA • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nHello, ako na usab kini. Trevor. Ania ako gikan sa laing gingharian aron sa pagsulti kanimo sa pagluwas kanako. Ako natanggong, nahigmata ako. Gikuha nila ang tanan kong mga tudlo ug mga tudlo ug ang tanan nga akong mahimo mao ang mobarug dinhi. Ang akong higdaan hinimo sa mga toothpick ug ako makadawat lamang og lab-as nga tubig matag duha ka adlaw ug tunga. Kung dili ka makatabang kanako, labing menos ipadala kanako ang pipila ka mga biscuit, ako gigutom.\n\n\n\n\n\n\n\nVideos\n\n\n\n\n\n\n\nJake Paul Diss Track - https://youtu.be/jC0BbeFd2zAW2S Diss Track - https://youtu.be/pmcfL_qLhMoDeji Diss Track - https://youtu.be/FOTBjtud8z8KSI Diss Track - https://youtu.be/YQKEJyDiIZcCar Attack (Best View) - https://youtu.be/g1q2xvPAYoQJennifer Lawrence & Chris Pratt - https://youtu.be/ETpiA8ych30\n\n\n\n\n\n\n\n\n\nThank You\n\n\n\n\n\n\n\nDISS TRACK DRAMA • WRONG SIDE OF YOUTUBE","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-diss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ce77415-5a08-4cc0-914f-26112f370469/sm/2516933-1503145755012-youtubedisstracks.jpg","duration":628,"publication_date":"2017-08-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-amazing-day-spa-resort","changefreq":"weekly","video":[{"title":"S1:E89 - AMAZING DAY SPA RESORT ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome to the Salon De Lon, Los Angeles' premiere beauty spa and resort. Services include facials, foot massages and an exclusive Jacuzzi for a low low price of $19.99! \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRoger Bannister berlari pertama sub-4 menit mil 60 tahun yang lalu hari ini. Enam puluh tahun yang lalu pada hari Selasa, Roger Bannister, seorang mahasiswa kedokteran berusia 25 tahun menyelesaikan apa yang pada waktu itu sepertinya tidak mungkin: Sebuah jarak empat mil.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAMAZING DAY SPA RESORTThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-amazing-day-spa-resort","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e4ae38a-973e-4ed1-bd85-a73148b0f561/sm/2516933-1503025122277-SPAthumb2.jpg","duration":1190,"publication_date":"2017-08-18T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-drunker-watch","changefreq":"weekly","video":[{"title":"2017:E94 - GIANT DRUNK MESS • Overwatch Gameplay?","description":"Now arriving: Vodka Industries. Join Aleks, Brett and Lindsey as the attempt to escort the payload and keep the point. And their sobriety. And Trevor's there too. Trevor's always there. Lurking in the shadows. Or just blatantly walking in the background.  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAng mga caffeinated alcoholic enerhiya na inumin ay maaaring maging mapanganib dahil ang caffeine ay maaaring mask ang impluwensiya ng alkohol at maaaring humantong sa isang tao na maling kahulugan ng kanilang aktwal na antas ng pagkalasing.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-drunker-watch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fec06a2-192b-4226-befa-8053fdf52318/sm/2516933-1502915113096-overwatch4_drunkwatch_v3.jpg","duration":712,"publication_date":"2017-08-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-f-a-k-i-n-it","changefreq":"weekly","video":[{"title":"2017:E92 - FAKIN' IT ","description":"Fakin' It is a Jackbox Party Game where everyone uses their smart phones to receive prompts. One person will get a \"faker\" prompt and then they have to lie, cheat, or deny to convince everyone that they are not the faker. So who can fake it best?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-f-a-k-i-n-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40c4dfa0-d276-4fe8-a2c2-6b8679b74486/sm/2516933-1502750591658-Thumbnailoption1.jpg","duration":800,"publication_date":"2017-08-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-gun-fight-smash-bros-gambling-tournament","changefreq":"weekly","video":[{"title":"S1:E88 - GUN FIGHT • Smash Bros Gambling Tournament ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nWelcome to the Super Smash Brothers Gambling Tournament! In this series, six contestants wager their bets on the Amiibo they think will win against the others in a brutal every-man-for-himself battle. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nPipoca é um tipo especial de milho. De todos os tipos de milho, a pipoca é a única variedade que aparece. Dentro de cada grão de pipoca está uma pequena gota de água cercada por uma casca dura chamada de casco. À medida que a pipoca é aquecida, a água se transforma em vapor, o que constrói pressão dentro do kernel.\n\n\n\n\n\n\n\n\n\n\n\nGUN FIGHT • Smash Bros Gambling Tournament Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-gun-fight-smash-bros-gambling-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/effb12a5-7a6d-4960-b30c-4f506c7d37a3/sm/2516933-1502762096834-EP3THUMB.jpg","duration":1144,"publication_date":"2017-08-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-13-joel","changefreq":"weekly","video":[{"title":"S1:E13 - JOEL'S BACKYARD (feat. Joel Rubin) • CCTV #13","description":"The year?  2010.  The company?  Machinima.  The story?  The journey of a lifetime.  Today's CCTV guest is Funhaus and Sourcefed veteran Joel Rubin and he's gonna tell some stories about his battles as a youtube veteran.  Also there's a cute dog hidden somewhere in this episode.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-13-joel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd01f40b-5692-4af1-9326-5eb3973a9f84/sm/2516933-1503422174942-CCTV_THUMB_ep13.jpg","duration":3870,"publication_date":"2017-08-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-how-well-do-we-know-each-o-t-h-e-r-that-s-you-gameplay","changefreq":"weekly","video":[{"title":"2017:E90 - HOW WELL DO WE KNOW EACH OTHER? • That's You! Gameplay","description":"That's You! is a fun guessing game for you and your friends to play via smart phone and PlayStation 4. Aleks, James, Brett, and Trevor need to pick cards that they think everyone else will pick to earn points. So who knows everyone the best? Watch to find out.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-how-well-do-we-know-each-o-t-h-e-r-that-s-you-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e11d0e5-4f41-40b2-bbe7-3d9d3ef40537/sm/2516933-1502400538553-Thumbnailoption2.jpg","duration":1101,"publication_date":"2017-08-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cockroach-infestation-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"S1:E87 - COCKROACH INFESTATION • Behind the Cow Chop ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAn uninvited guest makes its way into the warehouse and James Willems gives the guys some new workouts to whip them into shape.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEine Kakerlake kann den Atem für 40 Minuten halten und kann sogar überleben, unter Wasser für eine halbe Stunde untergetaucht zu werden.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCOCKROACH INFESTATION • Behind the Cow Chop Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cockroach-infestation-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6a7099c-11ec-4e59-b801-cea16ef17a57/sm/2516933-1502499746987-bts_thumb.jpg","duration":849,"publication_date":"2017-08-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-getting-inked-irl","changefreq":"weekly","video":[{"title":"2017:E91 - GETTING INKED IRL","description":"James and Aleks have decided to 1v1 in Guitar Ink Hero.  Whoever gets the most HARD points is the winner. The loser is gonna be \"inked.\" Winner makes a mess. Loser gets messed UP.\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\nЭцэг минь ээ!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-getting-inked-irl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1722bebe-3eac-4191-833c-09a70a595d66/sm/2516933-1502473210228-Thumbnail.jpg","duration":707,"publication_date":"2017-08-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-two-people-kill-as-jason-copilot-friday-the-13-th","changefreq":"weekly","video":[{"title":"2017:E89 - TWO PEOPLE KILL AS JASON • COPILOT Friday the 13th","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor this episode of COPILOT James and Aleks team up and go on a mass murder spree in Friday the 13th.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMwen aksidantèlman koupe koupe Dick mwen! SA Fè m mal vrèman move! Oke sou bò nan briyan nan bagay sa yo mwen Jis sove yon tòn lajan sou asirans machin mwen an pa oblije chanje a geico..\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTWO PEOPLE KILL AS JASON • COPILOT Friday the 13th Gameplay\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-two-people-kill-as-jason-copilot-friday-the-13-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d74c3b6-0cf6-48dd-8df4-8a9ce1c21854/sm/2516933-1502325909590-Thumbnail.jpg","duration":757,"publication_date":"2017-08-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-sugar-rush-smash-bros-gambling-tournament","changefreq":"weekly","video":[{"title":"S1:E86 - SUGAR RUSH • Smash Bros Gambling Tournament","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome to the Super Smash Brothers Gambling Tournament! In this series, six contestants wager their bets on the Amiibo they think will win against the others in a brutal every-man-for-himself battle. \n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFrihetsgudinnen ankom i New York Harbour 19. juni 1885, som en gave av vennskap fra folket i Frankrike til folket i USA. Skulptøren Frederic-Auguste Bartholdi's Liberty Opplysende verden måler 151 fot høy og har kommet for å symbolisere frihet og demokrati landsomfattende.\n\n\n\n\n\n\n\n\n\n\n\n\n\nSUGAR RUSH • Smash Bros Gambling Tournament Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-sugar-rush-smash-bros-gambling-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c43adb79-0023-45ba-a6fc-fc82a3cbe403/sm/2516933-1502238838722-thumb2x.jpg","duration":842,"publication_date":"2017-08-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-extreme-office-makeover","changefreq":"weekly","video":[{"title":"S1:E85 - EXTREME OFFICE MAKEOVER","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMachinima Artist: https://twitter.com/brgrmny\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBrett is gone for 2 weeks while traveling to China and Australia. We decide it would be good to make him feel more at home when he gets back by decorating his office with some Asian and Australian culture. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIsaky ny miala ao amin'ny birao mandritra ny fotoana lava dia misy ny fahafaha-miditra amin'ny toeram-piasana na ovaina ho an'ny video.\n\n\n\n\n\n\n\n\n\nEXTREME OFFICE MAKEOVER\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-extreme-office-makeover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c08b44b8-d54c-4605-987e-1ca54907d57b/sm/2516933-1502157203124-Brett_Office.00_07_46_03.Still004-Recovered.jpg","duration":824,"publication_date":"2017-08-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-ep-12-funhaus-gym","changefreq":"weekly","video":[{"title":"S1:E12 - FUNHAUS GYM (feat. James Willems) • CCTV #12","description":"You know that feeling, bro.  You haven't had a good pump sess lately and your gains are lookin' hella limp, hella flabby.  You just need one good set of reps to feed those bad boys and they'll be back to their normal swole size.  That's what this episode is like but for your mind.  Special Guest James Willems talks fitness and Funhaus and we all learn a little something about our bodies and our brains.  ","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-ep-12-funhaus-gym","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d208a11a-1e22-4192-96cf-36d614c48710/sm/2516933-1501893292882-CCTV_THUMB_ep12.jpg","duration":4564,"publication_date":"2017-08-08T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-ripping-gladiators-to-pieces-virtual-reality-gameplay","changefreq":"weekly","video":[{"title":"2017:E11 - RIPPING GLADIATORS TO PIECES • Virtual Reality Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nIf you thurst for blood and gore, then GORN is the game for you. This is what it's really like to be a gladiator.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nConoscevo un uomo una volta che disse: \"La morte sorride a tutti noi. Tutto quello che può fare è sorridere\".\n\n\n\n\n\n\n\n\n\n\n\nOggi ho visto uno schiavo diventato più potente dell'Imperatore di Roma.\n\n\n\n\n\n\n\n\n\n\n\nRIPPING GLADIATORS TO PIECES • Virtual Reality GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-ripping-gladiators-to-pieces-virtual-reality-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a572c4c-f8e7-4b22-aa1e-06b0c6951ed4/sm/2516933-1501708602421-ThumbnailOPTION_1.jpg","duration":635,"publication_date":"2017-08-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-betting-on-amiibos-smash-bros-gambling-tournament","changefreq":"weekly","video":[{"title":"S1:E84 - BETTING ON AMIIBOS • Smash Bros Gambling Tournament","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome to the Super Smash Brothers Gambling Tournament! In this series, six contestants wager their bets on the Amiibo they think will win against the others in a brutal every-man-for-himself battle. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGiraffes là loài động vật cao nhất trên thế giới. Con đực có thể cao đến 18 feet (5,5 mét), con cái có thể cao 14 feet (4,3 mét) và con của họ, được gọi là bê, cao 1,8 mét. Bê có thể lớn lên đến một inch mỗi ngày.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBETTING ON AMIIBOS • Smash Bros Gambling TournamentThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-betting-on-amiibos-smash-bros-gambling-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc2782ca-5315-4234-9985-0690e28bd271/sm/2516933-1501808004644-thumb.jpg","duration":897,"publication_date":"2017-08-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-bar-flirtation-dream-daddy","changefreq":"weekly","video":[{"title":"2017:E88 - BAR FLIRTATION • Dream Daddy","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks get into dad mode and play Dream Daddy to hopefully find a respectable date for their father they created.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMin hu daddy tiegħek?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBAR FLIRTATION • Dream DaddyThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-bar-flirtation-dream-daddy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd992a89-eaf3-4ae0-bcc1-c9317f77f3e0/sm/2516933-1501723569770-Thumbnail_2.jpg","duration":649,"publication_date":"2017-08-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-dunk-it-golf-with-friends-gameplay","changefreq":"weekly","video":[{"title":"2017:E87 - DUNK IT LIKE A BASKETBALL • Golf With Friends Gameplay","description":"Time to play a summer classic: mini golf. This episode, the guys need to dunk their golf balls into hoops, all while trying to navigate through ghosts and goop in a haunted mansion. Spooky!","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-dunk-it-golf-with-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bce4783-656d-4884-bc5a-2038911a47ba/sm/2516933-1501524363101-Thumbnailoption1.jpg","duration":752,"publication_date":"2017-08-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-edible-spray-paint-dinner","changefreq":"weekly","video":[{"title":"S1:E83 - EDIBLE SPRAY PAINT DINNER","description":"Subscribe: http://bit.ly/1RQtfNf   Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nThere is a new restaurant near our office called The Silver Dollar which has some of the best food around! ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-edible-spray-paint-dinner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bece1596-8e2c-4e68-8e6e-1e42aefde706/sm/2516933-1501608056632-thumbnail.jpg","duration":907,"publication_date":"2017-08-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-episode-11","changefreq":"weekly","video":[{"title":"S1:E11 - ECHO PARK ROOFTOP (feat. Asher) • CCTV #11","description":"Ayyyyy, today on CCTV we bring on fan request Asher to share some fresh new stories about life at Cow Chop.  Also we talk pickup lines, bad horror movies, and what it's like to get too blazed on the slopes of a ski resort.  ","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b575ef3d-a03e-4dc8-bafa-5ea3522de28c/sm/2516933-1501282862915-CCTV_THUMB_ep11.jpg","duration":3852,"publication_date":"2017-08-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-pharah-duel-overwatch-gameplay","changefreq":"weekly","video":[{"title":"S1:E81 - PHARAH DUEL • Overwatch Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOverwatch is Blizzard's fast-paced first person shooter that uses intuitive level and character design to be as accessible as possible. Yet some people still can't figure it out.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nБританий фунт нь бидний доллар шиг 100 цент болж хуваагдахгүй байсан ч хамгийн бага хэсэг нь зоос гэж нэрлэгддэг байсан тул өнөөдөр бидний \"пенни\" гэж нэрлэдэг. Гэвч нэгээс илүүг нь Британичууд \"пенс\" гэж нэрлэдэг бол бид \"пенни\" гэж нэрлэдэг.\n\n\n\n\n\n\n\n\n\n\n\n\n\nPHARAH DUEL • Overwatch Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-pharah-duel-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab8a0fb4-07a7-44fe-bd5b-b0e1174d9af2/sm/2516933-1501274675578-thumb.jpg","duration":957,"publication_date":"2017-07-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-parachuting-off-the-roof-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"S1:E82 - PARACHUTING OFF THE ROOF • Behind the Cow Chop ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this week's episode, the guys discover a door to the roof where they test the laws of gravity. Aleks gets sent free Adidas merch and James gives Aleks the best toast he's ever had.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nಅದು ಕ್ಯಾಸ್ಸಿನಿ ವಿಭಾಗವನ್ನು ಎಣಿಕೆ ಮಾಡಿದರೆ, ಒಟ್ಟು 8 ಉಂಗುರಗಳಿಗೆ 3 ಪ್ರಮುಖ ಉಂಗುರಗಳು ಮತ್ತು 5 ಧೂಳಿನ ಉಂಗುರಗಳು. ಆದರೆ ಶನಿಯ ಸುತ್ತಲೂ ಇನ್ನಷ್ಟು ಉಂಗುರಗಳು ಇವೆ. ಜಾನಸ್ ರಿಂಗ್, ಮೆಥೊನ್ ರಿಂಗ್ ಆರ್ಕ್, ಆಂಥೆ ರಿಂಗ್ ಆರ್ಕ್ ಮತ್ತು ಪಲೆನೆ ರಿಂಗ್, ಮತ್ತು ರೋಚೆ ವಿಭಾಗವೂ ಇದೆ.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPARACHUTING OFF THE ROOF • Behind the Cow Chop Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-parachuting-off-the-roof-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecb33ff7-98a6-4471-9679-91f5da9aaf90/sm/2516933-1501292697679-bts_thumb.jpg","duration":848,"publication_date":"2017-07-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-puck-time-golf-with-friends-gameplay","changefreq":"weekly","video":[{"title":"2017:E85 - PUCK TIME • Golf With Friends Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\nTime to play a summer classic: mini golf. But these aren't any ordinary golf balls, they're hockey pucks! See if the guys can make it through this jungle, dinosaur course playing with pucks.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nMini golf jégkorong-korongokkal. Ki gondolta volna? Vajon kevésbé unalmas a golf? Te döntesz.\n\n\n\n\n\n\n\n\n\n\n\nPUCK TIME • Golf With Friends GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-puck-time-golf-with-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8612724-5a16-4bd4-be0a-bfed3e287c1e/sm/2516933-1501093789318-Thumbnailoption2.jpg","duration":905,"publication_date":"2017-07-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-dating-father-dream-daddy","changefreq":"weekly","video":[{"title":"2017:E86 - DATING FATHER • Dream Daddy","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nJames and Aleks get into dad mode and play Dream Daddy to hopefully find a respectable date for their father they created.\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nBuvęs tėtis kartą. Aš turėjau augintinį ir pavadino jį stručiu. Galėtumėte stebėtis, kodėl aš vadinu stručiu, bet tai daugiausia buvo dėl to, kad aš iš tiesų turėjo didžiulę maniją su gigantiškais paukščiais. Man patinka būti šio augalo tėčiu.\n\n\n\n\n\n\n\nDATING FATHER • Dream DaddyThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-dating-father-dream-daddy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9a2ad27-cff2-497a-a8a2-877ae0ff4fc0/sm/2516933-1501101110488-Thumbnail.jpg","duration":701,"publication_date":"2017-07-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-adult-vr-2-virtual-reality-gameplay","changefreq":"weekly","video":[{"title":"S1:E80 - ADULT VR 2 • Virtual Reality Gameplay ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nWe return to the classic world of virtual reality porn games. This time, Joe and Trevor enjoy three of the most erotic porn games science can create.\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nNajbardziej poszukiwanym słowem pornograficznym w Ameryce jest MILF. Drugim najbardziej poszukiwanym jest Teen. Anal wchodzi na dziesiąte.\n\n\n\n\n\n\n\n\n\n\n\nADULT VR 2 • Virtual Reality Gameplay Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-adult-vr-2-virtual-reality-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d60fb74-7580-4797-b27e-a49a53e92765/sm/2516933-1501098251900-thumb.jpg","duration":930,"publication_date":"2017-07-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-guardian-down-destiny-2-beta","changefreq":"weekly","video":[{"title":"2017:E84 - GUARDIAN DOWN • Destiny 2 Beta","description":"STOP DUDE, YOU'RE BEING RUDEClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\nAleks and James unite in the Destiny 2 Beta to defeat the drill dogs, the goblins, the minotaurs, the blood guard centurions, and their own teammates. They don't need them! They're better off without them! Who cares whose mom that is!?\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBruterne har den \"brute force\" og pund for pund stærkere er end eliterne. Imidlertid ville elitene vinde i betragtning af, at det er smartere da brutes og også ved at bruge Covanent våben bedre. Husk, at Eiltes slog bruterne, da de var ude over 3-1 over Installation 00. Dette overvejer dog, at brutterne ikke begynder at kæmpe forstyrre sig selv, hvilket ville gøre denne \"kamp\" ende meget hurtigere.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nGUARDIAN DOWN • Destiny 2 BetaThank you. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-guardian-down-destiny-2-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c9fe2f4-9e50-441f-bb6e-13f561d0a7b7/sm/2516933-1501004252934-aleksDESTINY2.jpg","duration":1008,"publication_date":"2017-07-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-university-of-southern-california-cctv-10","changefreq":"weekly","video":[{"title":"S1:E10 - UNIVERSITY OF SOUTHERN CALIFORNIA • CCTV #10","description":"DO I LOOK LIKE A GOONY GOBLIN?\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nMusic by: https://echopork.bandcamp.com\n\n\n\n\n\n\n\n\n\n\n\n\n\nSpecial Guest: https://twitter.com/crikmaster\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to go to college and do YouTube. Don't. This week we sit down with one of the newest members of the Let's Play family, Criken. He takes us to his old stomping grounds, the University of Southern California, and we discuss not going to college. Where's Brett? Who cares? We can do whatever we want.\n\n\n\n\n\n\n\n\n\n\n\nCCTV - it's weird, it's wild, it's a mystery we experience together.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nSzkoła się skończyła,Czas na letnią zabawę,Bieganie, skakanie, pływanie,zawsze w biegu.\n\n\n\n\n\nDni szybko pójdąI lato wkrótce zniknie.Czas na szkołę znówKiedy zaczynasz drugą klasę!\n\n\n\n\n\n\n\n\n\n\n\nUNIVERSITY OF SOUTHERN CALIFORNIA • CCTV #10Thank You","player_loc":"https://roosterteeth.com/embed/cctv-2017-university-of-southern-california-cctv-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d04d12f0-e8e3-402f-a74a-c8285a9249ff/sm/2516933-1500676804815-CCTV_THUMB_ep10.jpg","duration":3162,"publication_date":"2017-07-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-hot-and-juicy-tips-golf-with-friends-gameplay","changefreq":"weekly","video":[{"title":"2017:E83 - HOT AND JUICY TIPS • Golf With Friends Gameplay","description":"Time to play a summer classic: mini golf. But this course isn't just any ordinary course, this course is made up of candy, ice cream, and cookies! Who knew golf could be so fun?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-hot-and-juicy-tips-golf-with-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/783ef142-7dc1-45a3-9c73-65d121583039/sm/2516933-1500685850729-Thumbnailep1x1.jpg","duration":926,"publication_date":"2017-07-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-deleted-scenes-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E27 - DELETED SCENES • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \r\n\r\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn this weeks Behind the Cow Chop we show you some deleted scenes from our new pilot episode of I'll See It When I Believe It. We also venture to RTX with some extra shenanigans.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWyobraź sobie, czy mógłbym wrzucić mojego dupku do kosmosu?\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nDELETED SCENES • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-deleted-scenes-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/726ea811-a7ee-44f2-a7f4-09c0103db16c/sm/2516933-1500681169523-thumb.jpg","duration":637,"publication_date":"2017-07-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-loud-meme","changefreq":"weekly","video":[{"title":"2017:E11 - BASS BOOSTED MEMES AND SNAPCHAT HOTDOG • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nUn día todos evolucionaremos para comunicarnos sólo con la tos. Esto ayudará a romper todas las barreras idiomáticas y nos llevará a una mayor paz con nuestros vecinos. La tos es el camino a seguir, no hay necesidad de hablar ningún idioma, así que ir excersise sus gargantas, porque tenemos un montón de tos para hacer.\n\n\n\n\n\n\n\nVideos\n\n\n\n\n\n\n\nSNAPCHAT HOTDOG https://youtu.be/zjjhBpVWY8wLOUD SNAPCHAT HOTDOG https://youtu.be/OECpJ8O439YLOUD FIREFLIES MEMES https://youtu.be/s-uOb0hXM6IJON SUDANO OWL CITY https://youtu.be/N2yW5MNbChUASMR STRYOFOAM https://youtu.be/AHCvd6VsGGUOCEAN MAN https://youtu.be/BMe0QycHfv0NORTH KOREA WII MUSIC https://youtu.be/4BAoYNV5O78HOW KIDS ATE IN THE 1950s https://youtu.be/RXndtMEJyOwTARGET SHOPLIFTER https://youtu.be/EhEBAWsHDkwTARGET FART PRANK https://youtu.be/WDxK48wEO9Q\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-loud-meme","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ede05fc6-0977-41d9-b8fd-364e5ef9420a/sm/2516933-1500716153570-youtubehotdog.jpg","duration":762,"publication_date":"2017-07-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-bad-meme-game","changefreq":"weekly","video":[{"title":"S1:E79 - BAD MEME GAME","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\"What do you meme?\" is a game where you match a random meme phrase with a picture. James, Aleks, Trevor, & Joe face off to see who can come up with the best memes in the office.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nSeberapa baik Anda mengenal meme Anda? Ada satu di mana sapi itu menancapkan ambing raksasa ke dalam lubang di tanah hanya untuk berlatih menyiram jus susu di mana-mana sambil menyuburkan tanah. Seberapa indah meme itu?\n\n\n\n\n\n\n\nBAD MEME GAMEThank You ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-bad-meme-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b4bb51f-7934-4a9c-9064-b5fc440c424d/sm/2516933-1500661985954-Thumbnail.jpg","duration":986,"publication_date":"2017-07-21T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-donald-trump-earthquake-virtual-reality-gameplay","changefreq":"weekly","video":[{"title":"2017:E10 - DONALD TRUMP EARTHQUAKE • Virtual Reality Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\nWe have two things to teach everyone today: earthquake safety and what it's like to be president. See how the boys fair during a massive earthquake and completing President Donald Trump's tasks before a major speech. \n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nシミュレーションはかなりクールです。誰でも本当に楽しいお勧めをしていますか?\n\n\n\n\n\n\n\nDONALD TRUMP EARTHQUAKE • Virtual Reality GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-donald-trump-earthquake-virtual-reality-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20bff233-c7e2-4426-bb17-a0a0eb6ecfa3/sm/2516933-1500513841826-Thumbnailoption1.jpg","duration":846,"publication_date":"2017-07-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cow-appreciation-day","changefreq":"weekly","video":[{"title":"S1:E78 - COW APPRECIATION DAY ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nDid you know that once a year Chik-Fil-A gives out free food to anyone wearing something cow related? Who better to take advantage of this than Cow Chop themselves?\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nСлед като открито осъди гей брака през 2012 г., основателят на компанията бе посрещнат със силна опозиция. Въпреки това, много поддръжници на християнската основателна компания изядоха пиле солидарно, като увеличиха печалбите на \n\n\n\n\n\n\n\n\n\n\n\nCOW APPRECIATION DAYThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cow-appreciation-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f9b1100-4e1b-4ff1-b62a-c635cdd9be6f/sm/2516933-1500413690803-thumb.jpg","duration":740,"publication_date":"2017-07-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-surge-simulator-copilot-the-surge","changefreq":"weekly","video":[{"title":"2017:E82 - SURGE SIMULATOR • COPILOT The Surge","description":"OUR POWER CORE IS DEFECTIVE Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" >https://goo.gl/NVZOT8Subscribe  href=\"http://bit.ly/1RQtfNf\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1RQtfNf  Cow Chop Merch: >http://bit.ly/2dY0HrO Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLD  Twitter:  href=\"https://twitter.com/CowChop\" target=\"_blank\" rel=\"noreferrer nofollow\">https://twitter.com/CowChop  For this episode of COPILOT James and Aleks test their skills in changing their defective power core. Their power core is defective. They must find a non defective power core to exchange with their defective power core. defectivepowercore. The following is for those multicultural.Ngoài ra, bán sức khoẻ của họ cho heroin và không chiến đấu với ông chủ.SURGE SIMULATOR • COPILOT The SurgeThank you. <><><>","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-surge-simulator-copilot-the-surge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a63d38d-dd46-42d2-b8a0-7a8e711309fe/sm/2516933-1500398176306-CO_PILOT___SURGE.jpg","duration":995,"publication_date":"2017-07-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-austin-convention-center","changefreq":"weekly","video":[{"title":"S1:E9 - AUSTIN CONVENTION CENTER","description":"RETIREMENT IS MY SCENE\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMusic by: https://echopork.bandcamp.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSpecial Guest: https://twitter.com/geofflramsey\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDuring RTX we made time for a little quality 3 on 1 with RoosterTeeth co-founder Geoff Ramsey. He answers some important questions like \"What is Let's Play?\", \"When will you retire?\" and \"Are we gonna go bankrupt?\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nCCTV - it's weird, it's wild, it's a mystery we experience together.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHerzlichen Glückwunsch zum RuhestandDu bist endlich freiVon den Fesseln der FristenUnd Telefone, die ständig klingelnHerzlichen Glückwunsch zum AbschlussDas hektischste Hektik des LebensEine fantastische zeit erwartet sieDavon bin ich sicher\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAUSTIN CONVENTION CENTER • CCTV #9Thank You ","player_loc":"https://roosterteeth.com/embed/cctv-2017-austin-convention-center","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf3fb86a-1ae1-432c-b783-adb816c776ce/sm/2516933-1499975612396-CCTV_THUMB_ep9.jpg","duration":3056,"publication_date":"2017-07-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E77 - FIGHT TO DEATH FOR MERCH","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe stopped by The Behemoth booth at RTX 2017 and decided to have an impromptu PVP showdown, playing one of our favorite games, Pit People. Fans lined up to play against James, but will any of them win to take home some sweet swag?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\nLjubitelji krava su stvarno seksi.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFIGHT TO DEATH FOR MERCHThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71313804-773a-4f84-8daa-92612ae30302/sm/2516933-1500078203318-thumbnail_option_1X2.jpg","duration":615,"publication_date":"2017-07-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-episode","changefreq":"weekly","video":[{"title":"2017:E26 - WHEN LIFE HANDS YOU LEMONS • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week on Behind the Cow Chop, we check out Steven Suptic's sweet pad, extra adorable pups, and even his trash all while he's not home! Then, do you know what goes into making fake vomit for the big screen? Well we don't either, but it might look something like this. Finally, what're we going to do with these helium balloons left over from the pilot episode of I'll See It When I Believe It? When life hands you lemons...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNår livet laver du citroner, lav limonade!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWHEN LIFE HANDS YOU LEMONS • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2be82fb-cb44-4e56-8c12-9ddf95808744/sm/2516933-1499974257345-thumbnail_option_1.jpg","duration":840,"publication_date":"2017-07-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-selfie-toast-and-bug-poop-tea-amazon-prime-time","changefreq":"weekly","video":[{"title":"2017:E12 - SELFIE TOAST AND BUG POOP TEA • AMAZON PRIME TIME","description":"Thanks to our sponsor Dollar Shave Club  new members get their 1st month of the Executive Razor with a tube of their Dr. Carver’s Shave Butter for ONLY $5 with FREE shipping.  That's a $15 value. After that razors are just a few bucks a month. Exclusively at:  ;http://www.dollarshaveclub.com/CowChop\n\n\n\n\n\n\n\n\n\nSubscribe: http://bit.ly/1RQtfNf   RT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAfortunadamente tenemos un patrocinador, así que ahora puedo finalmente tener una comida satisfactoria. Hemos estado viviendo de trigo adelgaza y Cheerios. Creo que podría ir a buscarme un bistec.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSELFIE TOAST AND BUG POOP TEA • AMAZON PRIME TIME\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-selfie-toast-and-bug-poop-tea-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deb660fb-0ae1-4e19-9c78-1c5479949efe/sm/2516933-1500119141521-Amazontoat.jpg","duration":1007,"publication_date":"2017-07-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-escape-room","changefreq":"weekly","video":[{"title":"S1:E76 - ESCAPE ROOM","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe guys take on the Fake AH Crew escape room at RTX 2017. Will they manage to solve the puzzles or will they resort to dirty cheats?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n비공식적 인 사용에서 \"가파른 학습 곡선\"이란 학습이 어렵고 (많은 노력이 필요) 무언가를 의미합니다. 사람들은 가파른 곡선 (산)을 오르는 것과 같은 것을 생각하고있는 것 같습니다. 어렵고 노력이 필요합니다.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nESCAPE ROOMThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-escape-room","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1e4db39-5180-40d8-862a-2317a39c3e03/sm/2516933-1499995090433-thumb.jpg","duration":999,"publication_date":"2017-07-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-j-o-e-s-birthday-weekend","changefreq":"weekly","video":[{"title":"S1:E92 - JOE'S BIRTHDAY WEEKEND","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe gang goes out on 6th Street to celebrate Joe's Birthday weekend in Austin.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAssicurarsi di non bere troppo o sarete puking il vostro culo fuori il giorno successivo. Essere al sicuro i bambini, e non bere fino a quando non sei di età. Grazie.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJOE'S BIRTHDAY WEEKENDThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-j-o-e-s-birthday-weekend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7920107-b24a-4b43-ab0d-30b77abd1652/sm/2516933-1499968579686-joes_bd.jpg","duration":601,"publication_date":"2017-07-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-17","changefreq":"weekly","video":[{"title":"2017:E91 - TOTAL MAYHEM • Overwatch Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOverwatch is Blizzard's fast-paced first person shooter that uses intuitive level and character design to be as accessible as possible. Yet some people still can't figure it out.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTežina na Mjesecu iznosi oko 17% onoga što je na Zemlji. Dakle, ako vagati 200 funti na Zemlji, izvagat ćete 34 funti na Mjesecu.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTOTAL MAYHEM • Overwatch Gameplay \n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19cccbc9-ff96-4785-b851-08f7c03d8825/sm/2516933-1499805046179-thumb.jpg","duration":929,"publication_date":"2017-07-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-selling-stolen-water-farming-simulator-gameplay","changefreq":"weekly","video":[{"title":"2017:E71 - WE'RE BROKE • Farming Simulator Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDo you think the Cow Chops guys would be any good at farming? Well, now you can find out! Join them plant, harvest, and cultivate to earn money and pay off their loans.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nA víz értékesítése lehet a legegyszerűbb és leggyorsabb módja a 2017-es gazdálkodási szimulátorban. De lehetséges? Találjuk ki.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nこの農業シミュレーターシリーズ全体がゲームで一日で起こった。言い換えれば、ジョーは2つの休憩、休日を取って、ちょうど1日ですべてをエスケープしようとしました。 Trevorは数台の車を裏返し、Jamesは盗まれた水を売ろうとした。彼が落ちたり両足を痛めなかったなら、Aleksは唯一の農家だったかもしれない。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWE'RE BROKE • Farming Simulator GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-selling-stolen-water-farming-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/beba6a64-c02e-4ca0-b23a-d468e158ae53/sm/2516933-1499725624893-Thumbnailoption1.jpg","duration":750,"publication_date":"2017-07-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-8","changefreq":"weekly","video":[{"title":"S1:E8 - STEVEN SUPTIC'S POOL • CCTV #8","description":"It's time to BEAT that SUMMER HEAT with a trip to the pool!  But not just any pool, no it's time for some low key B&E with a trip to Steven Suptic's house while he's at work.  It's okay though, we've got our special guest CIB to keep us company and a giant pool floatie to replace James who's gone missing.  SPLISH SPLASH let's dump some peas in the bath and talk BUSINESS, boys.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42b40390-359b-4125-91ba-528de0f67eec/sm/2516933-1499720385592-CCTV_THUMB_ep8.jpg","duration":3552,"publication_date":"2017-07-11T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-photorealistic-smoke-grenade-effect","changefreq":"weekly","video":[{"title":"S1:E90 - PHOTOREALISTIC SMOKE GRENADE EFFECT ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames bought some photorealistic smoke grenades and he's been itching to use them. Trouble is, there's no good place to use them. So he decided to use them in several bad places.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n煙の爆弾は、煙の濃い雲の後ろの視界から位置と物体を隠すために使用されます。軍隊はまた敵から兵士を隠すために煙の手榴弾を使う。スモークグレネードを使って地面にスポットを表示することができます(例えば、ヘリコプターを着陸させたい場所)。煙の爆弾が投げられたり、射撃されたりすることがあります。\n\n\n\n\n\n\n\n\n\n\n\nPHOTOREALISTIC SMOKE EFFECT GRENADEThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-photorealistic-smoke-grenade-effect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/218fbe46-eec0-4416-812e-935f49ed519e/sm/2516933-1499383495563-thumb.jpg","duration":693,"publication_date":"2017-07-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-final-exam-fever-dreams-part-8","changefreq":"weekly","video":[{"title":"S1:E8 - FINAL EXAM FEVER DREAMS - Part 8","description":"For the Class of 198X, it all comes down to this, THE FINAL BATTLE. Bear witness to our two-hour season finale as the teens take on the alien invader leadership and push their friendship to the limits of survival. Who will step up to become a hero and who will stay a huge piece of shit? \n\nFind out the fates of Amanda, Sam, Mike, Hannah, Steve and the kobolds right now on the CLASS OF 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-final-exam-fever-dreams-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d59771c-2f73-432d-9304-8a279f0f183c/sm/2013912-1499700558956-CL8X_-_Ep8_-_THUMB.jpg","duration":6876,"publication_date":"2017-07-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-the-missing-tapes-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E25 - THE MISSING TAPES • Behind The Cow Chop","description":"THE LOST FOOTAGE HAS BEEN FOUND! \r\n\r\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWelcome back to more Behind the Cow Chop! In January of 2017, a handful of YouTubers were evicted in the suburbs near Littleton, Colorado while shooting videos for their channel.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIn their haste to escape, they left behind one box full of dildos and a single tape of \"behind the scenes\" footage.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSix months later, that footage was found.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nВнимание спойлер. Ходор умира. Същото се отнася и с Нед Старк. И като ... един куп други хора. Пичове, настигнете.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTHE MISSING TAPES • Behind the Cow ChopThank You ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-the-missing-tapes-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcf02088-662b-4e84-8810-e9b75d04c552/sm/2516933-1499450618143-BTS_LOST_FOOTAGE.jpg","duration":726,"publication_date":"2017-07-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-i-ll-see-it-when-i-believe-it-pilot-episode","changefreq":"weekly","video":[{"title":"S1:E89 - I'll See It When I Believe It (Pilot Episode)","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome to our little science club, we'll be having discussions of the greatest questions that mankind has to offer.  Today we explore the Moon and whether or not humans have truly landed on it.  Tune in to find out our discoveries and even maybe you'll learn something new!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHola chicos es Trevor, lo siento por el video, jaja, oops\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nI'll See It When I Believe It (Pilot Episode)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-i-ll-see-it-when-i-believe-it-pilot-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5e56736-e277-4ffa-ac69-420992028651/sm/2516933-1499450006902-Thumbnail.jpg","duration":890,"publication_date":"2017-07-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-filthy-farmer-talk-farming-simulator-gameplay","changefreq":"weekly","video":[{"title":"2017:E70 - FILTHY FARMER TALK • Farming Simulator Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\nDo you think the Cow Chops guys would be any good at farming? Well, now you can find out! Join them plant, harvest, and cultivate to earn money and pay off their loans.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nExtra adag Mishka ebben. Nagyjából a legaranyosabb.\n\n\n\n\n\n\n\nこの新しいマルチプレイヤー設定はとても革新的で楽しいものです\n\n\n\n\n\n\n\nFILTHY FARMER TALK • Farming Simulator GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-filthy-farmer-talk-farming-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/256aa575-03bc-4572-8f91-32b69017912d/sm/2516933-1499368465901-fs_ep_2_thumbnail.jpg","duration":870,"publication_date":"2017-07-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-43","changefreq":"weekly","video":[{"title":"2017:E88 - BOOM HEADSHOT • Warface Gameplay","description":"Thanks again to Warfare for partnering with us for this video. Check out the game here: https://wf.my.com/promo/lvl11/en/?_1ld=2360605_2009101&_1lp=1. \n\n\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nThe boys join arms and go against enemy forces, but will their team work help them prevail victorious?\n\n\n\n\n\nThe following is for those multicultural.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19205e98-7de5-4f50-a0c2-f77da032df35/sm/2516933-1499297229570-Thumbnail_3.jpg","duration":1168,"publication_date":"2017-07-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-if-he-dies-he-dies-player-unknown-s-battlegrounds","changefreq":"weekly","video":[{"title":"2017:E69 - IF HE DIES HE DIES • PlayerUnknown's Battlegrounds","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\nAleks and James join teams and fight against countless teams to survive and be the last ones standing.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nKą darytum, jei buvai visų jų čempionu. Niekas negali įveikti ir nugalėti, ką sukūriau. Aš sukūriau didžiausią krūvą šūdas, kurį kada nors matėte.\n\n\n\n\n\n\n\nIF HE DIES HE DIES • PlayerUnknown's Battlegrounds\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-if-he-dies-he-dies-player-unknown-s-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/128ae98f-cb5a-4060-a5fb-4cc0990d586f/sm/2516933-1499134651079-Thumbnail.jpg","duration":808,"publication_date":"2017-07-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-we-w-o-n-t-survive-the-winter-farming-simulator-gameplay","changefreq":"weekly","video":[{"title":"2017:E68 - WE WON'T SURVIVE THE WINTER • Farming Simulator Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\nDo you think the Cow Chops guys would be any good at farming? Well, now we can find out! Join them plant, harvest, and cultivate to earn money and pay off their loans.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n誰が最高の農家だと思いますか?これまでに誰が最悪だと思いますか?\n\n\n\n\n\n\n\nDe där bönder vet säkert hur man skördar ett fält och tjänar pengar på det. Vad händer när fältet löper ut av vete? Och adhd sparkar in och ingen kan hämta det tillsammans? Det är för nästa gång.\n\n\n\n\n\n\n\nWE WON'T SURVIVE THE WINTER • Farming Simulator GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-we-w-o-n-t-survive-the-winter-farming-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2b38d64-4257-4f16-9e2b-c191fba261dc/sm/2516933-1499125557244-Thumbnailoption_1.jpg","duration":922,"publication_date":"2017-07-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-7","changefreq":"weekly","video":[{"title":"S1:E7 - HERMON PARK DOG PICNIC • CCTV #7","description":"BORK BORK yes it's time for the long awaited return of two of Cow Chop's most precious members: Ein & Mishka.  Today CCTV brings us to a nice shady picnic spot in Hermon Park for a doggy picnic with our canine pals.  The boys talk pets, prenups and other alliterative topics.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57f1e2c2-34b2-429f-9d3b-e119ab0da68b/sm/2516933-1499123589279-CCTV_THUMB_ep7.jpg","duration":3631,"publication_date":"2017-07-04T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-interoffice-fight-arms-gameplay","changefreq":"weekly","video":[{"title":"2017:E67 - INTEROFFICE FIGHT • Arms Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJoe and Trevor face off to see who is the ultimate brawler. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ni meneriakiku dan membuat dirinya berkelompok seperti binatang liar di sekujur wajahku. Itu membuat saya sangat terangsang jadi saya mulai mencium ayam. Itu akhirnya menggigit wajah saya tapi itu semua worth it. Tuhan memberkati ayam itu.\n\n\n\n\n\n\n\n\n\n\n\nINTEROFFICE FIGHT • Arms Gameplay • Arms Gameplay\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-interoffice-fight-arms-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d167c6d-83f4-45de-8332-35de7469ceb0/sm/2516933-1498592362650-Thumbnail.jpg","duration":636,"publication_date":"2017-07-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-dance-battle-of-dinosaur-jungle-part-7","changefreq":"weekly","video":[{"title":"S1:E7 - DANCE BATTLE OF DINOSAUR JUNGLE - Part 7","description":"On a very special CLASS OF 198X, we ask: how do you know if the party is too drunk? This week has got it all: dance battles, giant jungle creatures, dramatic real life enactments with very large weapons, sex scenes and ILLEGAL DRUGS. We packed it all in before next week's big finale, so bear with our blood alcohol level and join the party!","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-dance-battle-of-dinosaur-jungle-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59b1cd3a-f1dd-4d55-aff3-d260c5d7625a/sm/2013912-1498860504757-CL8X_-_Ep7_-_THUMB.jpg","duration":3812,"publication_date":"2017-07-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-borderline-heatstroke-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E24 - BORDERLINE HEATSTROKE • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nWelcome back to Behind the Cow Chop! First check out the sweet soccer-mom-rental-van we got. And it's all smiles when we leave, but on the way back, it's clear everyone almost had a heat stroke. After that, hop on a ride with Joe in China Town. Finally, take a look at the location where we shot the Golden Squiggly Cup Promo video (spoiler: it's not pretty).\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nСъжалявам за аудиото, за всички. Все още се работи за получаване на всички нови камери, оборудвани с добри микрофони.\n\n\n\n\n\n\n\n\n\n\n\n시청을 마쳤 으면 일부 동영상을보고 외출하고 게임하십시오. 탐색. 밖에 많은 것들이 있습니다. 방수로에있는 더러운 팬티처럼.\n\n\n\n\n\n\n\n\n\n\n\nBORDERLINE HEATSTROKE • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-borderline-heatstroke-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21ef13a9-b137-4408-89a6-ea1b5b6368ed/sm/2516933-1498688820281-thumbnail_option1x1.jpg","duration":552,"publication_date":"2017-07-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-g","changefreq":"weekly","video":[{"title":"2017:E11 - 4 WEIRD THINGS ON AMAZON • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nngar kaunggtae bhay kwan mell se rayhkyoe nae ngar hkyayhkyaungg waydanartway mha kyaitetaal .  ngar se waathkyaan taithku hpyitpwarr hcay ngar a pout mhatasaint slurp  hkyin kya parbhuu bharhpyitlhoetlellsotot taithkartaitranmhar ngar aahcarraasoutmyarrtwin a mell se aasonepyu par . haha XD  hcaung kyi bhhoet sang ko imyaha lout youtyarrtway kyaayyjuutainparsai\n\n\n\n\n\n\n\n4 WEIRD THINGS ON AMAZON • AMAZON PRIME TIME\n\n\n\nThank you ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/134a3196-5fe9-4a11-8051-4a1d30c31b80/sm/2516933-1498918991062-Amazonbeerpong.jpg","duration":774,"publication_date":"2017-07-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xenoblade-chronicles-2-is-it-good","changefreq":"weekly","video":[{"title":"2017:E385 - Xenoblade Chronicles 2 WORTH PLAYING?","description":"Reviews for Xenoblade Chronicles 2, Nintendo's new Switch-exclusive JRPG, are in! Is this game worth picking up with all the other awesome stuff you could be playing?","player_loc":"https://roosterteeth.com/embed/game-news-2017-xenoblade-chronicles-2-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/af7bbbd6-2d3e-4997-94ef-1ae3e355ce59.jpg/sm/xc2isitgood.jpg","duration":534,"publication_date":"2017-12-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-video-games-make-a-shit-load-of-money","changefreq":"weekly","video":[{"title":"2017:E384 - Video Games Make HOW MUCH!?","description":"Video game executives continually talk about how they need to make more money to break even... hence, microtransactions. But look how much the industry is making! It's a lot!","player_loc":"https://roosterteeth.com/embed/game-news-2017-video-games-make-a-shit-load-of-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/239b0cbc-8975-45d4-903c-1da3b425a5ea.jpg/sm/thumbnail.jpg","duration":543,"publication_date":"2017-12-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171130-roundup","changefreq":"weekly","video":[{"title":"2017:E231 - Battlefront 2 vs XP BOTS + Rey QUITTING Star Wars? + YouTube Responds to Adpocalypse","description":"EA's got a new Battlefront 2 war on their hands... against XP grinding bots. Rey actress Daisy Ridley says she's out after the next movie... for now. YouTube has responded to the new Adpocalypse.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171130-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a56a832-7524-48f1-8bf9-486ba6d76dd8.jpg/sm/thumbnail.jpg","duration":579,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171129-roundup","changefreq":"weekly","video":[{"title":"2017:E230 - Nintendo Announcing New Games? + 1 Million Free Games + Disney's Fox Acquisition Back On?","description":"Nintendo's hint at... something for the upcoming Game Awards. Are they announcing some new games? One developer is giving away 1 million copies of their game for free. Reports claim Disney's talks to acquire Fox (and therefore X-Men and Fantastic Four!) are back on.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171129-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c87d313b-8db2-4dad-9243-bf3408f06d98.jpg/sm/thumbnail.jpg","duration":582,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/specials-2017-the-avengers-infinity-war-trailer-breakdown","changefreq":"weekly","video":[{"title":"2017:E1 - The Avengers: Infinity War TRAILER BREAKDOWN","description":"We look through every frame of the new Avengers: Infinity War trailer and break down what it means, what's happening, and what background you need to know.","player_loc":"https://roosterteeth.com/embed/specials-2017-the-avengers-infinity-war-trailer-breakdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/21394b0a-376e-4b17-a244-40fa59e8fec9.jpg/sm/thumbnail2.jpg","duration":1426,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ea-going-to-ea","changefreq":"weekly","video":[{"title":"2017:E382 - EA Loses $3 BILLION Over Star Wars Battlefront 2","description":"EA's having a tough time convincing people to buy Battlefront 2. Following the game's troubled launch, EA's value has dropped $3 billion. But they're still convinced they're on the right track.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ea-going-to-ea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/57c7b0d5-4454-4586-8212-2354715c8fc7.jpg/sm/thumbnail.jpg","duration":566,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-industry-regulating-itself-because-of-loot-boxes","changefreq":"weekly","video":[{"title":"2017:E381 - Loot Boxes NEW HERO","description":"Governments and gambling regulators have turned an eye to video games and loot boxes following increasing complaints from players. Once, the video game industry stepped in to regulate itself and keep governments out. Now some insiders are trying to self-regulate to keep governments out of games.","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-industry-regulating-itself-because-of-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/aac4cee1-5979-438e-a95d-b8b612cde9b1.jpg/sm/thumbnail.jpg","duration":590,"publication_date":"2017-11-29T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-adpocalypse-part-two","changefreq":"weekly","video":[{"title":"2017:E40 - The Adpocalypse is WORSE THAN EVER?","description":"Early this year advertisers boycotted YouTube over objectionable content. It seemed like it might be getting better, but a new round of boycotts could leave it worse than ever.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-adpocalypse-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5ad4df76-d01f-4c30-87ee-16f44952e5ad.jpg/sm/thumbnail.jpg","duration":771,"publication_date":"2017-11-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171128-roundup","changefreq":"weekly","video":[{"title":"2017:E229 - PS4 Best Sales Ever! + Nintendo Making Amiibo Cereal + The Future of Internet Fast Lanes","description":"Sony says PS4 had its best Black Friday EVER this year for sales. Nintendo's getting into the cereal business and bringing Amiibo along. We may already be looking at the implications of internet fast lanes without net neutrality.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171128-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/287e7537-341c-43c5-8e0c-2709cc074834.jpg/sm/thumbnail.jpg","duration":761,"publication_date":"2017-11-28T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-smells-like-teens-getting-sued","changefreq":"weekly","video":[{"title":"2017:E379 - Fornite Battle Royale CHEATER Goes To Court!","description":"Fortnite developer Epic Games is going after cheaters in its Fortnite: Battle Royale game. So much so, that the company is suing a 14-year-old who publicized the use of cheats... and his mom isn't happy about them going after her baby boy.","player_loc":"https://roosterteeth.com/embed/game-news-2017-smells-like-teens-getting-sued","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ea68fd77-978f-4987-8e5b-2c85cd38d3fc.jpg/sm/thumbnail.jpg","duration":501,"publication_date":"2017-11-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-hiding-xp","changefreq":"weekly","video":[{"title":"2017:E380 - Destiny 2 SABOTAGES Players","description":"Destiny 2 players have discovered that the game steals XP to slow down progress, and Bungie's facing accusations that it's done to drive microtransaction sales.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-hiding-xp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4b004471-cfaa-4b38-a321-9275fd1c2d21.jpg/sm/thumbnail.jpg","duration":528,"publication_date":"2017-11-28T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171122-roundup","changefreq":"weekly","video":[{"title":"2017:E227 - Xbox's Big Comeback + Uber Uses Hackers to Cover Up Hack + PANIC ABOUT NET NEUTRALITY NOW","description":"Xbox One X is doing big numbers for Microsoft, according to GameStop. Uber suffered a big hack that stole customer information, so of course they... hired hackers to cover it up. The proposal to kill net neutrality is here. TIME TO PANIC.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171122-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/21841a4f-ae49-4b06-b909-c9a5f6888e06.jpg/sm/tkxus.jpg","duration":674,"publication_date":"2017-11-27T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-how-we-got-to-games-as-a-service","changefreq":"weekly","video":[{"title":"2017:E378 - A Quick History of GAMES AS A SERVICE","description":"There's been a lot of concern over microtransactions and games that keep charging players AFTER they've bought a game. It might seem like the practice is a new one, but it's been a long evolution to get to this point.","player_loc":"https://roosterteeth.com/embed/game-news-2017-how-we-got-to-games-as-a-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e9ec9ecb-d7f2-40b7-8d59-da6a6f423fe8.jpg/sm/tkgaas.jpg","duration":688,"publication_date":"2017-11-27T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-loot-boxes-in-trouble","changefreq":"weekly","video":[{"title":"2017:E377 - Lootboxes to be BANNED?","description":"Overnight the Belgium Gaming Commission and a Hawaiian government official both spoke up on lootboxes, and their days may be numbered, with one rep calling Battlefront 2 a \"Star Wars-themed online casino designed to lure kids into spending money.” DOOOOOOOOOOMED","player_loc":"https://roosterteeth.com/embed/game-news-2017-loot-boxes-in-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d839de08-4c5f-42d9-8109-100cf49dc0d8.jpg/sm/lootboxesdoomed.jpg","duration":540,"publication_date":"2017-11-27T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171127-roundup","changefreq":"weekly","video":[{"title":"2017:E228 - Nintendo Switch WINS HOLIDAY? + Lootboxes NOT Gambling + Pokemon Go's BILLIONS in Damage","description":"Nintendo Switch has come out of Black Friday as the winner of the holiday shopping season (so far). The UK says lootboxes aren't gambling... YET. Pokemon GO is estimated to have caused BILLIONS of dollars in damage from distracted players.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171127-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a08fd49-fed6-4da3-af38-0005aa6e376a.jpg/sm/thumbnail.jpg","duration":713,"publication_date":"2017-11-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-26","changefreq":"weekly","video":[{"title":"S1:E25 - New Game + #26","description":"What game on your backlog are you determined to get to before the end of the year?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0a9ffacb-4cac-427b-8ecf-cdd930c6e3a1.jpg/sm/GP26psTHUMB.jpg","duration":691,"publication_date":"2017-11-25T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-gather-round-the-thanksgiving-tree-26","changefreq":"weekly","video":[{"title":"S1:E26 - Gather 'Round The Thanksgiving Tree - #26","description":"This week join Ashley, Ryan, Adam, and Ben as they give thanks for their favorite game trends (2:36), and discuss The Game Awards' nominations (27:46)!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-gather-round-the-thanksgiving-tree-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0e353a2-4813-4755-8bd1-71e47603afbf.jpg/sm/GP26THUMB.jpg","duration":4733,"publication_date":"2017-11-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-kickstarter-game-accused-of-embezzling-1-million","changefreq":"weekly","video":[{"title":"2017:E376 - Kickstarter $1 MILLION Embezzlement!?","description":"A Kickstarter game has been accused of embezzling more than $1 million to fund a totally different project. Meanwhile, the accused is firing back with allegations of sexual misconduct. This one's a wild ride.","player_loc":"https://roosterteeth.com/embed/game-news-2017-kickstarter-game-accused-of-embezzling-1-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6e0b3d93-6f03-495b-9beb-c57298014091.jpg/sm/maxresdefault (27).jpg","duration":554,"publication_date":"2017-11-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gamers-are-undercharged","changefreq":"weekly","video":[{"title":"2017:E375 - Gamers Should Pay MORE MICROTRANSACTIONS!? and be happy about it?","description":"Fresh off EA temporarily removing microtransactions from Star Wars Battlefront 2, one analyst thinks gamers are not only overreacting, but should be happy to pay MORE in microtransactions because they're such a good deal.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gamers-are-undercharged","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/27e9cf41-e2d2-454a-aa10-119ec719973c.jpg/sm/mtxcostmore.jpg","duration":497,"publication_date":"2017-11-22T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171121-roundup","changefreq":"weekly","video":[{"title":"2017:E226 - 2017's Must-Buy Gadgets + Microtransactsions ABANDONED for Ethics + Interstellar Visitor","description":"The TIMES list of top gadgets for the year includes a lot of video game stuff. A free to play game is abandoning the microtransaction model for ethical reasons. NASA confirms we've seen our first visitor from another solar system.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171121-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a940f34b-b671-4b9f-a752-68767cf895a5.jpg/sm/thumbnail.jpg","duration":567,"publication_date":"2017-11-21T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-more-like-dud-stice-league-lol-owned","changefreq":"weekly","video":[{"title":"2017:E40 - Justice League FAILS!?","description":"Justice League is out after a long and troubled development. Unfortunately, it doesn't look like the movie overcame the challenges to please audiences.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-more-like-dud-stice-league-lol-owned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df480989-5f7f-41a0-b30c-586259ec5d74.jpg/sm/thumbnail.jpg","duration":621,"publication_date":"2017-11-21T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ea-deals-with-battlefront-ii-fallout","changefreq":"weekly","video":[{"title":"2017:E374 - Star Wars Battlefront 2 is a FLOP?","description":"Fans haven't been too happy with Star Wars Battlefront 2's microtransactions. Now that they're temporarily out, was that enough to save the game's opening weekend? Doesn't look like it.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ea-deals-with-battlefront-ii-fallout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bbe072c2-a7e2-47e7-8f64-03fb7123cb37.jpg/sm/bf2flopsthumb.jpg","duration":512,"publication_date":"2017-11-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nov-20-2017-roundup","changefreq":"weekly","video":[{"title":"2017:E225 - New Cyberpunk 2077 Details + Time for Animal Crossing! + War on Smartwatches","description":"CD Projekt RED has offered some new details about Cyberpunk 2077. Australia got Animal Crossing Pocket Camp early, but now it's the rest of the world's turn! Germany's declared war on illegal smartwatches that can listen in on kids in class. Plus, Nintendo Switch is a top invention, Kamiya wants more Okami, France is looking at consumer protections against lootboxes, Breath of the Wild takes a GOTY, Marvel Heroes players demand refunds, what's in store for Rainbow Six, 10 years of Uncharted, and an Incredibles 2 teaser.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nov-20-2017-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/490e6b12-259d-4d4a-9cd7-723186cf1077.jpg/sm/roundupNov20.jpg","duration":633,"publication_date":"2017-11-21T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-more-black-friday-deals","changefreq":"weekly","video":[{"title":"2017:E373 - BEST BLACK FRIDAY DEALS: GameStop, XBL, PSN, PC Components & More!","description":"It's time for more Black Friday deals! Want to know where to get the best prices on games, PC components, consoles, and more? Strap in. There are a lot of them.","player_loc":"https://roosterteeth.com/embed/game-news-2017-more-black-friday-deals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bb78e419-19de-41ef-b0bb-a69276534d2e.jpg/sm/blackfriday2017part2.jpg","duration":501,"publication_date":"2017-11-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-25","changefreq":"weekly","video":[{"title":"S1:E24 - New Game + #25","description":"Do you pursue romantic side quests in games and what are your favorites?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/caf02c90-6a23-489e-96b4-b9798b213724.jpg/sm/GP25psTHUMB.jpg","duration":486,"publication_date":"2017-11-18T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ea-kills-microtransactions","changefreq":"weekly","video":[{"title":"2017:E372 - Star Wars Battlefront 2 PAY 2 WIN DEFEATED! Or Is It?","description":"EA has made a HUGE change to Star Wars Battlefront II by removing microtransactions... TEMPORARILY. Does this mean they'll be fixed going forward? Is the game worth buying now?","player_loc":"https://roosterteeth.com/embed/game-news-2017-ea-kills-microtransactions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/217a4095-4fd8-4162-b02f-ccf6d16b55f4.jpg/sm/bf2defeatedthumb.jpg","duration":562,"publication_date":"2017-11-18T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-battlefront-ii-i-have-a-bad-feeling-about-this-25","changefreq":"weekly","video":[{"title":"S1:E25 - Battlefront II: I Have A Bad Feeling About This - #25","description":"This week join Ashley, Gus, and Adam as they discuss Star Wars Battlefront II (), and speedrun the news (). This episode is brought to you by Squarespace (squarespace.com/glitch).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-battlefront-ii-i-have-a-bad-feeling-about-this-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dcf039f8-1382-4e03-bfeb-7ee01f258f29.jpg/sm/GP25THUMB.jpg","duration":3600,"publication_date":"2017-11-18T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nov-17-roundup","changefreq":"weekly","video":[{"title":"2017:E223 - Xbox 360 for FREE + Ubisoft SAFE from Takeover + The Incredibles RETURNS","description":"Want an Xbox 360 for free? You can get one! Kind of. There's a rebate involved. Vivendi is backing off its hostile takeover of Ubisoft... for now. The Incredibles 2 is set to return and we're about to get our first look at it. Plus, the top games of October, THQ Nordic snaps up a new studio, Ubisoft Berlin working on more Far Cry, James Franco up for Multiple Man, Netflix outbids Disney for a superhero spoof, Star Wars is going to be looooong so go to the bathroom before you watch it, another star joins Detective Pikachu, the Boston Dynamics robot can do backflips now, and Tesla unveils the fastest production car ever made.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nov-17-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/492bb70f-2b3c-451c-b23e-c790cfc7667f.jpg/sm/thumbnail.jpg","duration":793,"publication_date":"2017-11-17T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-net-neutrality-under-attack","changefreq":"weekly","video":[{"title":"2017:E39 - Net Neutrality Under ATTACK","description":"We thought net neutrality had been won, but it may be thrown out in less than a month so your ISP can get in on the microtransaction game. Hey, it's working so well for EA and Star Wars, who can blame them?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-net-neutrality-under-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f6a3166f-81b1-420d-b284-131a5de5ab31.jpg/sm/thumbnail.jpg","duration":531,"publication_date":"2017-11-17T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-youtube-calls-out-nintendo","changefreq":"weekly","video":[{"title":"2017:E371 - YouTube Calls Out Nintendo","description":"If someone's got to call out Nintendo for the need to communicate and work better with video content creators, it should definitely be someone who knows what they're talking about, right? Like... YouTube? Huh. I mean, I guess they do know a thing or two about needing better communication...","player_loc":"https://roosterteeth.com/embed/game-news-2017-youtube-calls-out-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/07814929-4b70-4006-9655-e24563b06846.jpg/sm/thumbnail.jpg","duration":499,"publication_date":"2017-11-17T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-x-sneaky-failure-dumbledore-gets-sexy-kickstarter-takes-on-patreon","changefreq":"weekly","video":[{"title":"2017:E222 - Xbox One X SOLD OUT Trick + Meet Sexy Dumbledore + Kickstarter Takes on Patreon","description":"Xbox One X is selling well in some regions, but found a sneaky way to get around low numbers in Japan. The next Fantastic Beasts movie has been unveiled and Dumbledore's looking pretty hot these days. Kickstarter is taking on Patreon with monthly subscriptions and a feature that might give it the edge it needs.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-x-sneaky-failure-dumbledore-gets-sexy-kickstarter-takes-on-patreon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d1777534-1572-4769-8e09-aa3f8172bebc.jpg/sm/thumbnail.jpg","duration":609,"publication_date":"2017-11-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-battlefront-lootbox-dumpsterfire","changefreq":"weekly","video":[{"title":"2017:E370 - Star Wars Battlefront 2 INVESTIGATED","description":"The saga of Star Wars: Battlefront II backlash continues, with a reddit AMA that goes about how you'd expect, an investigation into the game's microtransactions. Honestly, this could make a great crawl.","player_loc":"https://roosterteeth.com/embed/game-news-2017-battlefront-lootbox-dumpsterfire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/23f2aed8-bfe6-4605-9fa0-4ba199f2d7b1.jpg/sm/thumbnail.jpg","duration":467,"publication_date":"2017-11-16T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bethesda-blocks-skyrim-multiplayer-mod","changefreq":"weekly","video":[{"title":"2017:E369 - Skyrim Multiplayer BLOCKED by Bethesda?","description":"Enterprising modders have been working tirelessly to bring multiplayer to Skyrim. Unfortunately, Bethesda's putting up roadblocks.","player_loc":"https://roosterteeth.com/embed/game-news-2017-bethesda-blocks-skyrim-multiplayer-mod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1b959dae-855b-469a-99e3-58081d982461.jpg/sm/thumbnail.jpg","duration":389,"publication_date":"2017-11-16T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-1115-round-up","changefreq":"weekly","video":[{"title":"2017:E221 - GameStop STOPS Used Game Subs + Battlegrounds NOT GOTY? + Justice League Worth Seeing?","description":"GameStop's pulling its PowerPass subscription program for unlimited used games. PlayerUnknown's Battlegrounds doesn't think it deserves Game of the Year. Justice League reviews are finally here.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-1115-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e9d238f-0980-4033-b03b-24129a207dd3.jpg/sm/thumbnail.jpg","duration":584,"publication_date":"2017-11-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-justice-league-reviews-held-back","changefreq":"weekly","video":[{"title":"2017:E39 - Justice League Scores DELAYED","description":"Justice League reviews are going to start dropping soon, but you're going to have to wait an extra day to find out its Rotten Tomatoes score. That's because Rotten Tomatoes is delaying the score to turn the reveal into more of an event. Is this the result of studio meddling or Rotten Tomatoes capitalizing on its own popularity? Why not both?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-justice-league-reviews-held-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3395a7c7-94e7-4f2b-a4b5-17625b9c24d3.jpg/sm/thumbnail.jpg","duration":360,"publication_date":"2017-11-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-star-wars-battlefront-ii-is-it-good","changefreq":"weekly","video":[{"title":"2017:E368 - Star Wars: Battlefront II: Does it Suck?","description":"Star Wars: Battlefront II is the bane of loot box haters everywhere, but what does the actual game play like? Reviews are finally dropping for one of the most contentious games of 2017... which means we can finally find out if the game's any good.","player_loc":"https://roosterteeth.com/embed/game-news-2017-star-wars-battlefront-ii-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bca74652-b3a2-43dd-989a-cd7514c772f5.jpg/sm/tk_default.jpg","duration":547,"publication_date":"2017-11-15T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-x-launch-beats-ps4-pro-super-mario-movie-lord-of-the-rings-series-confirmed","changefreq":"weekly","video":[{"title":"2017:E220 - Xbox One X Launch BEATS PS4 Pro? + Super Mario Movie + Lord of the Rings Series CONFIRMED","description":"Xbox One X is doing better than the PS4 Pro's launch in the UK, Nintendo's stock prices hit 10 year highs (again), Death Stranding is about space(?), the full list of Game Awards nominees are out, another Super Mario movie is on the way, Hitman gets a TV show, Wonder Woman 2 moves its release date, the LOTR series is real and happening, and lots more in today's Tuesday round-up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-x-launch-beats-ps4-pro-super-mario-movie-lord-of-the-rings-series-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a7c63bd1-8d92-4d1a-b076-ecc3feb6ccb2.jpg/sm/10142017roundup.jpg","duration":547,"publication_date":"2017-11-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ea-drops-battlefront-2-unlock-prices-after-player-backlash","changefreq":"weekly","video":[{"title":"2017:E368 - EA Drops Battlefront 2 Unlock Prices After Player Backlash!","description":"Gamers took to Reddit this weekend after Battlefront 2's early access dropped to complain about the outrageous prices for character unlocks and after achieving the most downvoted commented in Reddit history, EA responded.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ea-drops-battlefront-2-unlock-prices-after-player-backlash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c0c0d60f-cf8b-4549-96c9-f892542d7bca.jpg/sm/ThumbnailTemplate.jpg","duration":410,"publication_date":"2017-11-14T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-is-the-adpocalypse-over","changefreq":"weekly","video":[{"title":"2017:E39 - Is The AdPocalypse OVER?","description":"Youtube is exploring \"non-ad-based monetization opportunities\", does this mean that the dreaded AdPocalypse is finally coming to an end?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-is-the-adpocalypse-over","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/399b88a4-5f1e-433b-9588-5df8c99f74d3.jpg/sm/Thumbnail.jpg","duration":348,"publication_date":"2017-11-14T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-s-plans-for-2018-respawn-not-worried-after-being-acquired-by-ea-gal-gadot-issues-wonder-woman-ultimatum","changefreq":"weekly","video":[{"title":"2017:E219 - Nintendo's plans for 2018? + Respawn 'not worried' after being acquired by EA + Gal Gadot issues 'Wonder Woman' ultimatum","description":"We've got some rumors about what Nintendo's got planned next for the Switch; the head of Respawn says he's not worried about a loss of creative control after being acquired by EA, and Gal Gadot issues an ultimatum over the Wonder Woman sequel.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-s-plans-for-2018-respawn-not-worried-after-being-acquired-by-ea-gal-gadot-issues-wonder-woman-ultimatum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7b541b9c-d216-4cab-922e-b38c82c4b8e2.jpg/sm/tkthumb.jpg","duration":650,"publication_date":"2017-11-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-counting-switches-before-they-hatch","changefreq":"weekly","video":[{"title":"2017:E366 - Nintendo Gets TOO CONFIDENT?","description":"Nintendo's doing pretty well with the Switch so far, now that they're sorting out their hardware availability problems. Good enough that they think they'll sell 30 MILLION consoles per year? How realistic is that?","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-counting-switches-before-they-hatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f192300-0425-4389-adc6-576c66a63ac3.jpg/sm/tkntc.jpg","duration":538,"publication_date":"2017-11-12T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-24","changefreq":"weekly","video":[{"title":"S1:E23 - New Game+ #24","description":"Humble Bundle being acquired by IGN has brought up a lot of questions about the ethics of a media outlet being connected with a publisher. How do you feel about this?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b994e78-ca8e-423f-a663-488d2dad1118/sm/2411188-1510270940622-GP24psTHUMB.jpg","duration":725,"publication_date":"2017-11-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-nobody-ever-cheers-for-hummer-to-win-24","changefreq":"weekly","video":[{"title":"S1:E24 - Nobody Ever Cheers For Hummer To Win - #24","description":"This week join Ashley, Gus, and Cole as they speedrun the news (23:48), discuss Call Of Duty WWII (47:08), and put the Xbox One X to the test (1:02:30). This episode is brought to you by Blue Apron (blueapron.com/glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-nobody-ever-cheers-for-hummer-to-win-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c21cb4f-99c4-4801-aec5-c6dfeae46606/sm/2411188-1510270770745-GP24THUMB.jpg","duration":4896,"publication_date":"2017-11-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-n64-classic-hoax-fallout-new-vegas-dev-s-new-project-metal-gear-solid-movie-progress","changefreq":"weekly","video":[{"title":"2017:E216 - N64 Classic HOAX + Fallout New Vegas Dev's New Project + Metal Gear Solid Movie PROGRESS","description":"Gamers uncovered a games list for a Nintendo 64 Classic edition, buuuutttt it wasn't. Fallout New Vegas developer, Obsidian, is teasing a new project. The Metal Gear Solid movie has found a writer worthy of the project.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-n64-classic-hoax-fallout-new-vegas-dev-s-new-project-metal-gear-solid-movie-progress","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02f117c9-9c7d-4a48-b5d2-3d5cf5aafba9.jpg/sm/thumbnail.jpg","duration":452,"publication_date":"2017-11-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-3","changefreq":"weekly","video":[{"title":"2017:E365 - Black Friday BEST GAMING DEALS","description":"Black Friday is coming. Want to pick up some games and hardware on the cheap? Here are the best deals out so far.","player_loc":"https://roosterteeth.com/embed/game-news-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1f041233-601b-4038-a338-719c29df5919.jpg/sm/thumbnail.jpg","duration":401,"publication_date":"2017-11-09T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-no-more-yearly-fifa-and-madden","changefreq":"weekly","video":[{"title":"2017:E364 - Forget Annual Games! PAY ALL THE TIME!","description":"Why pay for a game once er year when you can pay ALL YEAR ROUND? EA knows what you want, and it may be that. All hail Games as a Service..........................","player_loc":"https://roosterteeth.com/embed/game-news-2017-no-more-yearly-fifa-and-madden","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e1057690-35fa-4dc4-bdd8-0f1017abd520.jpg/sm/tkthumb.jpg","duration":382,"publication_date":"2017-11-09T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-next-gen-consoles-in-2-years-hogwarts-go-incoming-dceu-flashpoint","changefreq":"weekly","video":[{"title":"2017:E214 - Next Gen Consoles in 2 Years? + Hogwarts GO Incoming + DCEU Flashpoint","description":"Ubisoft thinks it knows when the next Xbox and PlayStation are coming out, Square Enix is pumping up Switch production, IO confirms a new Hitman, the Star Wars: Battlefront II trial started today, Hogwarts GO is the follow-up to Pokemon GO, Telltale cuts 25% of its staff, Battle Royale is getting ANOTHER clone, and the DCEU might be getting blown up by Flash.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-next-gen-consoles-in-2-years-hogwarts-go-incoming-dceu-flashpoint","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9db115a2-4fc3-4930-98ef-88e650abb682/sm/710924-1510174469336-11082017.jpg","duration":700,"publication_date":"2017-11-08T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-activision-sued-over-call-of-duty","changefreq":"weekly","video":[{"title":"2017:E363 - Call of Duty LAWSUIT","description":"Activision's being sued over Call of Duty by... Hummer, the auto brand.","player_loc":"https://roosterteeth.com/embed/game-news-2017-activision-sued-over-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/264d7db6-d539-479c-832d-c3d54585a416.jpg/sm/tkcodsuit.jpg","duration":337,"publication_date":"2017-11-08T20:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microtransactions-run-video-games-now-ceo-on-microtransactions-we-re-just-getting-started","changefreq":"weekly","video":[{"title":"2017:E362 - Gamers LOVE Microtransactions!","description":"Hate microtransactions? Voting with your wallet? So is everyone else and it looks like they disagree with you. So... get ready for more!","player_loc":"https://roosterteeth.com/embed/game-news-2017-microtransactions-run-video-games-now-ceo-on-microtransactions-we-re-just-getting-started","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f6b3d202-e673-4fd2-a0d6-6681ea1d7a73.jpg/sm/tkmtx.jpg","duration":519,"publication_date":"2017-11-08T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-developers-rushing-to-support-switch","changefreq":"weekly","video":[{"title":"2017:E361 - Developers RUSHING To Support Switch","description":"With the huge success of Nintendo's Switch some 3rd party developers are scrambling to get their games on the console as quickly as possible!","player_loc":"https://roosterteeth.com/embed/game-news-2017-developers-rushing-to-support-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f2050c7-f591-40fc-a46b-d89fe3d2cdcc.jpg/sm/Untitled-1.jpg","duration":343,"publication_date":"2017-11-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-new-2d-zelda-coming-need-for-speed-payback-sucks-disney-boycott","changefreq":"weekly","video":[{"title":"2017:E213 - New 2D Zelda Coming? + Need for Speed Payback... Sucks? + Disney Boycott","description":"Happy N7 day guys....right? Phil Spencer is kinda walking back some of those mutliplatform comments, Xbox One X might sell double what analysts projected, there are signs that another 2D Zelda game could be in the works, Sony's teasing their PSX announcements, CoD: World War II's player numbers are way, way up, Need for Speed: Payback has some haters, Destiny 2 might have gotten another wave of PC bans, and Justice League got its run time mandated by the studio.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-new-2d-zelda-coming-need-for-speed-payback-sucks-disney-boycott","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a50305e3-f3b2-4b3a-8a62-0c3d916e0145.jpg/sm/roundupthumb.jpg","duration":529,"publication_date":"2017-11-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-anthem-dev-talks-lootboxes","changefreq":"weekly","video":[{"title":"2017:E360 - Will Anthem Have LOOTBOXES?","description":"Bioware's new game Anthem is the newest game to join the lootbox debate!","player_loc":"https://roosterteeth.com/embed/game-news-2017-anthem-dev-talks-lootboxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1b5a50fd-09dd-4e31-baf0-a94a6ba79c79.jpg/sm/Untitled-1.jpg","duration":373,"publication_date":"2017-11-07T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-disney-in-talks-to-buy-fox","changefreq":"weekly","video":[{"title":"2017:E37 - Disney to Buy FOX?! That Would Get X-Men Back!","description":"Chalk up another one to \"The Simpsons Did It!\" because reports claim that Disney has been talking to FOX to buy large chunks of the company. While those talks don't appear to be happening right now, it would certainly be one way for Disney to get X-men and Fantastic Four back...","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-disney-in-talks-to-buy-fox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9ffb2f89-6249-4f24-be9f-23e422d4d2b2.jpg/sm/theknowsimposonsfox.jpg","duration":414,"publication_date":"2017-11-07T03:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-all-over-the-place-edition","changefreq":"weekly","video":[{"title":"2017:E359 - XBOX: Next-Gen? No-Gen? on PlayStation? ALL OF THE ABOVE?","description":"Will Xbox have next-gen hardware? Will it go streaming instead? Will games appear on non-Microsoft platforms like PlayStation? Maybe all of the above! Confusing, maybe, but Xbox sure is doing a lot of talking.","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-all-over-the-place-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/53d0dcc8-76b2-4316-813f-276b8cf2a979.jpg/sm/tkxbps.jpg","duration":564,"publication_date":"2017-11-07T02:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-10","changefreq":"weekly","video":[{"title":"2017:E212 - PlayStation Trophies = MONEY + Crunchyroll Malware ATTACK + Lord of the Rings REMAKE?","description":"PlayStation trophies can now be turned into virtual money. Crunchyroll has been attacked by malware that infected site visitors. Amazon's Lord of the Rings show could cost A LOT of money.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b4437d6e-902e-4818-8e12-42eafc78c230.jpg/sm/thumbnail.jpg","duration":612,"publication_date":"2017-11-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-23","changefreq":"weekly","video":[{"title":"S1:E22 - New Game+ #23","description":"Let's check out the new Xbox One X and discuss if the jump to 4K is worth it right now.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e189ae4-ad40-44c8-8fa4-bf2b7d51b923/sm/2411188-1509659091970-GP23PSTHUMB.jpg","duration":700,"publication_date":"2017-11-04T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-one-x-story","changefreq":"weekly","video":[{"title":"2017:E357 - Xbox One X Breakdown!","description":"We've had hands on time with the Xbox One X this week, and we've broken down some pointers about the system -- how to get the most out of your HDR settings, what Xbox Enhanced really means, and how it stacks up against the PS4 Pro.","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-one-x-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dbfd459-d586-4cc6-bf01-a7b500e3083c/sm/710924-1509733694035-Thumbnail_Template.jpg","duration":407,"publication_date":"2017-11-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-wwii-is-it-good","changefreq":"weekly","video":[{"title":"2017:E357 - Call of Duty Is BACK!","description":"Is the Call of Duty franchise back on track with its newest game: Call of Duty: WWII? ","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-wwii-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c9bb139-566d-487e-a2ab-c8d9055fdc9b/sm/710924-1509733701991-Thumbnail_Template.jpg","duration":339,"publication_date":"2017-11-04T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-x-worth-it-rocksteady-superman-reveal-s-o-o-n-great-pyramid-mystery","changefreq":"weekly","video":[{"title":"2017:E211 - Xbox One X... Worth It? + Rocksteady Superman Reveal SOON? + Great Pyramid Mystery","description":"Is the Xbox One X worth the money? Rumor has it that Rocksteady is working on a Superman game. LA Noire is too big to fit on the Switch and researchers have discovered something new about one of the pyramids. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-x-worth-it-rocksteady-superman-reveal-s-o-o-n-great-pyramid-mystery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faac3e46-c33c-4a58-8e3d-0d3ad3ad9d35/sm/710924-1509733717405-Roundup_Thumbnail_Template.jpg","duration":560,"publication_date":"2017-11-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-999-moons-and-the-princess-ain-t-one-23","changefreq":"weekly","video":[{"title":"S1:E23 - 999 Moons And The Princess Ain't One - #23","description":"Join Ryan, Adam, Ben, and Kdin as they love on Super Mario Odyssey (13:20), speedrun the news (31:28), and discuss explicit content in marketing (1:12:40).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-999-moons-and-the-princess-ain-t-one-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c812d561-0802-48d3-bb43-f53d18131919/sm/2411188-1509655444428-GP23THUMB.jpg","duration":5207,"publication_date":"2017-11-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-video-games-are-eco-terrorism-2","changefreq":"weekly","video":[{"title":"2017:E356 - Video Games Are \"Eco-Terrorism\"?","description":"Politicians are mad at video games again! Some lawmakers don't like a new PC game that lets you blow up oil pipelines and claim that it supports \"eco-terrorism.\"","player_loc":"https://roosterteeth.com/embed/game-news-2017-video-games-are-eco-terrorism-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d455bd1-6ad3-49a3-b7d9-10e51159d019/sm/710924-1509653966272-Thumbnail_Template.jpg","duration":298,"publication_date":"2017-11-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-activision-files-another-microtransaction-patent","changefreq":"weekly","video":[{"title":"2017:E355 - Activision Files ANOTHER Microtransaction Patent","description":"Activision has filed for yet another patent that focuses on how to get you to spend more money on microtransactions. This one has to do with eSports and video game playback systems.","player_loc":"https://roosterteeth.com/embed/game-news-2017-activision-files-another-microtransaction-patent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58dc75ed-0afe-4f1e-a64e-5709d5aa80cb/sm/710924-1509667975048-Thumbnail_Template.jpg","duration":375,"publication_date":"2017-11-03T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171102-thursday-round-up","changefreq":"weekly","video":[{"title":"2017:E210 - Sony: Specs Don't Matter + Ubisoft Defends Double DRM + Arcade Shooters DEAD?","description":"Super Mario Odyssey is setting sales records for Nintendo, meanwhile a Playstation executive says that hardware specs don't matter as much as games. Everyone seems to love the Switch, except for EA -- oh, and we got a surprise TV spot for The Last Jedi during Game 7 of the World Series last night. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171102-thursday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2376a58e-d80b-42ed-b1a6-c8a6075bd295/sm/710924-1509645481361-Roundup_Thumbnail_Template.jpg","duration":408,"publication_date":"2017-11-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ps4-games-too-v-i-o-l-e-n-t","changefreq":"weekly","video":[{"title":"2017:E354 - PS4 Games TOO VIOLENT?","description":"Online outrage strikes again! Sony treated gamers to a ton of trailers earlier this week thanks to their conference at Paris Games Week -- but not everyone was pleased with some of the more mature subject matter on display. PlayStation is now responding to those complaints directly.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ps4-games-too-v-i-o-l-e-n-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb74b0db-8030-4c26-a302-713ef7c5820a/sm/710924-1509567249012-Thumbnail_Template.jpg","duration":407,"publication_date":"2017-11-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ea-responds-to-controversies","changefreq":"weekly","video":[{"title":"2017:E353 - EA Strikes Back Against Critics","description":"EA's been dealing with criticism on all sides lately, thanks to controversies over its Battlefront II loot box practices and its closure of Project Ragtag developer Visceral. Now that its earnings call season, EA is answering questions about both of those issues for its investors -- it's time to hear their side of the story.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ea-responds-to-controversies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f459db3b-1db1-4437-8903-5f65ff0223cd/sm/710924-1509564892209-Thumbnail_Template.jpg","duration":428,"publication_date":"2017-11-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20171031-wednesday-round-up","changefreq":"weekly","video":[{"title":"2017:E210 - Switches for EVERYONE + Pachinko Profits SOAR + Twitch Crushing YouTube Gaming","description":"PUBG finally has a release date for Xbox One, Nintendo's got a new plan for the Switch, Spider-Man is going to do everything a spider can right from the get-go, Horizon Zero Dawn: Frozen Wilds gets clocked, Konami is making way more money than you thought, Assassin's Creed: Origins gets flooded with fake reviews, how involved were those Han Solo reshoots, and more in our mid-week round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20171031-wednesday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32b5c948-dfb1-47fe-b842-61cba80b8324/sm/710924-1509559860970-11012017.jpg","duration":472,"publication_date":"2017-11-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-call-of-duty-wwii","changefreq":"weekly","video":[{"title":"2017:E352 - Know Before You Go... Call of Duty: WWII","description":"Call of Duty: World War II arrives on PC, Xbox One, and PS4 this week. After taking things back to the basics, Sledgehammer Games is adding a lot of changes to just about every aspect of the game. Here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-call-of-duty-wwii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58a18ce0-e1f3-4ce5-8db2-e724d98ec13a/sm/710924-1509467654507-Thumbnail_Template.jpg","duration":403,"publication_date":"2017-11-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-assassin-s-creed-origins-breaks-p-cs","changefreq":"weekly","video":[{"title":"2017:E351 - Assassin's Creed: Origins DRM Breaking PCs?","description":"PC players haven't been too happy about DRM these days, and it looks like one of the biggest releases of the year got a double dose of it! Players are reporting that Assassin's Creed: Origins's DRM is hampering the game's performance on their machines... and yeah, they're not too happy about that.","player_loc":"https://roosterteeth.com/embed/game-news-2017-assassin-s-creed-origins-breaks-p-cs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d379adec-ea88-4820-b20c-566858061b8b/sm/710924-1509467659604-Thumbnail_Template.jpg","duration":378,"publication_date":"2017-11-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ps4-breaking-records-switch-users-prefer-handheld-house-of-cards-cancelled-2","changefreq":"weekly","video":[{"title":"2017:E209 - PS4 SAVING Sony + Switch Users Prefer Handheld + House of Cards CANCELLED","description":"Sony is selling a ridiculous amount of PS4s at a more ridiculous rate than they thought they would, the Shadow of the Colossus remake gets a release date, the first Sonic Forces review is up courtesy of Famitsu, we have a better idea of how well Super Mario Odyssey is selling, Fortnite's player count keeps climbing, Far Cry 5 gets a new co-op trailer, House of Cards got canned thanks to Kevin Spacey, and lots more in today's spoopiest round-up of the year.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ps4-breaking-records-switch-users-prefer-handheld-house-of-cards-cancelled-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fe84388-3a30-4205-bda2-0c8c7990fae5/sm/710924-1509472558817-10312017_roundup_thumb.jpg","duration":471,"publication_date":"2017-10-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-you-tube-fixes-demonetization","changefreq":"weekly","video":[{"title":"2017:E37 - YouTube FIXES Demonetization?","description":"YouTube's had a demonetization problem for the better part of 2017, and now the company says those problems could be going away for good. Will their new algorithm update solve all of the demonetization woes?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-you-tube-fixes-demonetization","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3f9bb92-9bcf-4c1b-949b-24da902a67eb/sm/710924-1509396969041-Thumbnail_Template.jpg","duration":376,"publication_date":"2017-10-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-back-on-top","changefreq":"weekly","video":[{"title":"2017:E350 - Switch Outpacing EVERYTHING!","description":"Nintendo's riding a wave of Switch success, and thanks to their new financial report, it looks like it's a WAY bigger wave than anybody could have predicted, already in position to sell more than the Wii U in its first year alone. We now know the exact number of units the console has moved to date, and it looks like those recent rumors about increased production are true. Is the Switch poised to overtake all the other consoles on the market?","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-back-on-top","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86b8b191-538f-4483-a261-e10797fff71c/sm/710924-1509396955743-Thumbnail_Template.jpg","duration":396,"publication_date":"2017-10-31T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-9","changefreq":"weekly","video":[{"title":"2017:E207 - BIG PS4 Announcements! + Visceral: What Really Happened + Cheeseburger Emoji Controversy?","description":"2017:E207 - BIG PS4 Announcements! + Visceral: What Really Happened + Cheeseburger Emoji Controversy?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c905eef1-9675-457a-984a-2fca2de67dbf/sm/710924-1509394466146-10302017_roundup_thumb.jpg","duration":579,"publication_date":"2017-10-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-22","changefreq":"weekly","video":[{"title":"S1:E21 - New Game+ #22","description":"Are loot boxes and micro-transactions turning away new game players? And how can we fix micro-transactions?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5167029-c2a5-4576-b28d-ddac5d25be83/sm/2411188-1509058810330-GP22PSTHUMB.jpg","duration":484,"publication_date":"2017-10-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-loot-boxes-dont-affect-sales","changefreq":"weekly","video":[{"title":"2017:E349 - Loot Boxes DONT Affect Sales?!","description":"With so much anger going around about loot boxes, some gamers are hoping that taking a stand against them will have a visible impact on sales. But so far, one industry analyst says that's not the case at all. So get ready for lots more.","player_loc":"https://roosterteeth.com/embed/game-news-2017-loot-boxes-dont-affect-sales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/903c5a79-f118-4e36-9159-bd357f884824/sm/710924-1509127051112-Thumbnail_Template.jpg","duration":403,"publication_date":"2017-10-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-xbox-one-x-deboxinating","changefreq":"weekly","video":[{"title":"2015-2016:E30 - Xbox One X Deboxinating!","description":"We've got an Xbox One X ahead of its November 7 launch date. Do you want to watch us undress it to see where they're hiding all the Ks? You know you do.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-xbox-one-x-deboxinating","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/744621bb-aa2b-48ef-9294-cbe3d25445ea/sm/710924-1509127056700-Thumbnail_Template.jpg","duration":533,"publication_date":"2017-10-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pubg-crossplay-ea-shuts-down-fan-project-justice-league-low-projections","changefreq":"weekly","video":[{"title":"2017:E206 - PUBG Crossplay? + EA Shuts Down Fan Project + Justice League Low Projections?","description":"Nintendo is really regretting not having more Switches ready, Player Unknown is trying to make crossplay happen for the Xbox One version of PUBG, Xbox hardware sales are still down, Amazon just cancelled its biggest game in the works, EA pumped the breaks on a fan revival project, the Halloween sale is on at Steam, the Kingkiller Chronicles has a network, and Justice League's projections aren't super promising just yet compared to other DCEU movies. Let's close out the week with some news!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pubg-crossplay-ea-shuts-down-fan-project-justice-league-low-projections","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/959f4656-b0d3-4108-b52d-d1a80c2ef964/sm/710924-1509127066008-10272017_thumb.jpg","duration":493,"publication_date":"2017-10-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-let-s-get-scary-22","changefreq":"weekly","video":[{"title":"S1:E22 - Let's Get Scary - #22","description":"Join Gus, Ryan, Adam, and Alfredo as they discuss Destiny 2 PC (16:52), speedrun the news (30:53), and figure out which games are the scariest (49:35).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-let-s-get-scary-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de87b2cd-f4d9-4820-9ecd-4932c0b0e3c6/sm/2411188-1509056985221-GP22THUMB.jpg","duration":3840,"publication_date":"2017-10-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-video-game-reviews-matter-again","changefreq":"weekly","video":[{"title":"2017:E347 - Bethesda REVERSES Review Policy","description":"Bethesda controversially swore off early video game reviews last year -- but now it looks like the company is changing its tune, thanks to early review copies for Wolfenstein II: The New Colossus. Were sales affected by the lack of early reviews? And are those Wolfenstein II reviews any good? Let's find out.","player_loc":"https://roosterteeth.com/embed/game-news-2017-video-game-reviews-matter-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/309f3ca3-8446-4d28-bc3d-4382e3b991a5/sm/710924-1509049287430-Thumbnail_Template.jpg","duration":347,"publication_date":"2017-10-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-super-mario-odyssey-is-it-good","changefreq":"weekly","video":[{"title":"2017:E348 - Super Mario Odyssey: Is it good? ","description":"Super Mario Odyssey finally lands tomorrow, which means it's time to find out whether or not the game is any good. This is normally the part where we tease you with some kind of tantalizing question but come on, you've probably already heard, right?","player_loc":"https://roosterteeth.com/embed/game-news-2017-super-mario-odyssey-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a33d702-1ca8-4bf7-a7fc-6cad394bb9aa/sm/710924-1509049297923-Thumbnail_Template.jpg","duration":505,"publication_date":"2017-10-27T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-wolfenstein-i-i-the-new-colossus","changefreq":"weekly","video":[{"title":"2017:E346 - Know Before You Go... Wolfenstein II: The New Colossus","description":"Wolfenstein II: The New Colossus is an action/adventure shooter, set in an alternate timeline where Nazis won World War 2 and have taken over. It's the sequel to 2014's Wolfenstein: The New Order, which was a soft reboot to the venerable franchise. Here's everything you need to know before it releases on PC, Playstation 4 and Xbox One on Oct. 27th. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-wolfenstein-i-i-the-new-colossus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b466b292-1066-4e86-a572-8cb11a994666/sm/710924-1508960429122-Thumbnail_Template.jpg","duration":308,"publication_date":"2017-10-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-assassin-s-creed-origins","changefreq":"weekly","video":[{"title":"2017:E345 - Know Before You Go... Assassin's Creed: Origins","description":"Assassin's Creed has taken a 2 year break. The newest game, Origins, launches on October 27. How much has changed? What's it about? Will it have loot boxes? Here's everything you need to know?","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-assassin-s-creed-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebccf4d7-ed32-4060-989e-e28f61951d98/sm/710924-1508959617236-Thumbnail_Template.jpg","duration":324,"publication_date":"2017-10-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-unfair-bans","changefreq":"weekly","video":[{"title":"2017:E344 - Destiny 2 UNFAIR PC Bans?","description":"Destiny 2's PC version couldn't launch problem free, right? After loads of accusations that the game has been unfairly banning people for no reason, Bungie has responded to say that anyone who got banned was actually cheating all along -- oh, and not that many people were affected by it. That didn't sit too well with the folks who were banned.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-unfair-bans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7f84246-739f-45c2-a73e-b610fc99b952/sm/710924-1508959607588-Thumbnail_Template.jpg","duration":356,"publication_date":"2017-10-26T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-12","changefreq":"weekly","video":[{"title":"2017:E204 - Xbox: Single Player \"Complicated\" + Big Switch Rumors + Farewell Kinect","description":"Xbox weighs in on the \"death\" of single player gaming, Animal Crossing: Pocket Camp is going to get you addicted next month, everyone's least anticipated Metal Gear finally has a release date, Shadow of War's got big DLC plans, loads of Nintendo leaks hit the internet this week, the X23 movie is real and underway, and Microsoft dropped its lawsuit against the US government. Will we get demonetized if we make a humpday pun here? Whatever, let's hump the news!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a282f5a-19b9-4018-ba35-cd4cf46bdd2c/sm/710924-1508957932816-10252017_roundup_thumb.jpg","duration":465,"publication_date":"2017-10-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-developer-single-player-games-dead-at-ea","changefreq":"weekly","video":[{"title":"2017:E342 - EA Done With Singleplayer Games?","description":"After the closure of Visceral Games and the restructuring of their untitled Star Wars game many developers have come out in support of Single Player games.  However, one former EA developer has said that for the foreseeable future, Single Player games are DEAD...to EA.","player_loc":"https://roosterteeth.com/embed/game-news-2017-developer-single-player-games-dead-at-ea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5efdbaca-5199-4508-9794-c0ef77caf07d/sm/710924-1508874836077-Thumbnail_Template.jpg","duration":342,"publication_date":"2017-10-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cyberpunk-2077-social-hub-switch-ready-for-game-cube-new-egg-sued-for-fraud","changefreq":"weekly","video":[{"title":"2017:E203 - Cyberpunk 2077 Social Hub? + Switch READY for GameCube + NewEgg SUED for Fraud","description":"NeoGAF is back online and its owner denies the sex assault allegation that sparked the whole controversy. GameCube controllers apparently work with Switch? Some banks in South Korea are suing NewEgg for fraud, saying they lost hundreds of millions of dollars.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cyberpunk-2077-social-hub-switch-ready-for-game-cube-new-egg-sued-for-fraud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/536cafe3-9c02-4fab-8bd7-b5008beb53b9/sm/710924-1508870784383-10242017_roundup_thumb.jpg","duration":518,"publication_date":"2017-10-24T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-2","changefreq":"weekly","video":[{"title":"2017:E37 - NeoGAF MELTDOWN","description":"NeoGAF, one of gaming's longest-running forums, hit kind of a... snafu over the weekend. The site went down for several days and lost many of its moderators over sexual misconduct allegations against its owner. The site is juuuuust coming back online, but many are wondering if it's ever going to be the same after its mass exodus this weekend?","player_loc":"https://roosterteeth.com/embed/game-news-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b8903d9-9b6a-4a5f-8577-ba154a01e892/sm/1779-1508819353866-neogaf_thumb.jpg","duration":551,"publication_date":"2017-10-24T01:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-pc-primer","changefreq":"weekly","video":[{"title":"2017:E340 - Destiny 2 PC Primer","description":"Destiny 2 finally hit PC, so here is a quick rundown of everything you should know about Destiny and what you should do first in Destiny 2!  Good luck, new Guardians!","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-pc-primer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f5c6cd6-a08e-4d1d-84d7-8dd9a4876af5/sm/710924-1508864970473-Thumbnail_Template.jpg","duration":475,"publication_date":"2017-10-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-21","changefreq":"weekly","video":[{"title":"S1:E20 - New Game+ #21","description":"What is your preferred way to get Ultimate Weapons? Also we have our first Japanese test with PUNISHMENTS! How do you fare? Get your own Glitch Please reference cards HERE, HERE, and HERE.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9279bdc8-15f8-44e2-8bb9-028380f3bd85/sm/2411188-1508523535881-GP21-PS-THUMB.jpg","duration":1440,"publication_date":"2017-10-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-say-goodbye-to-single-player-21","changefreq":"weekly","video":[{"title":"S1:E21 - Say Goodbye To Single Player - #21","description":"This week join Ashley, Adam, and Alfredo as they speedrun the news (11:50), discuss South Park: The Fractured But Whole (37:25), and Shadow of War (47:35). This episode is sponsored by Squarespace (squarespace.com/glitchplease)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-say-goodbye-to-single-player-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f046acab-2a9f-4ac4-a3ac-f0623e08ad1b/sm/2411188-1508455523200-GP21-THUMB.jpg","duration":4140,"publication_date":"2017-10-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-10","changefreq":"weekly","video":[{"title":"2017:E200 - Nintendo Switch Gets Gud + Call of Duty Real World HEIST + Pikachu Arrested","description":"Nintendo Switch has a new update that adds some much-desired features. A real-world Call of Duty heist ends in jail. Pikachu's been arrested on the White House lawn. Yes, for real. Plus, Nintendo wins September hardware sales, Microsoft vs Japanese games, Ni No Kuni 2 platform clarification, new Battlefront 2 trailer, God of War director vs EA, GT Sport campaign absence explained, Destiny 2 prestige raid cheated, and X-Force movie update.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ca20d4c-e8c4-425d-8196-c62dad4d424a/sm/24363-1508442742298-thumbnail.jpg","duration":552,"publication_date":"2017-10-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-number-of-steam-games-is-still-too-damn-high","changefreq":"weekly","video":[{"title":"2017:E335 - Steam is STILL a Mess","description":"Valve has been putting in overtime to address problems with fake games and asset flipping on Steam. Curators, ditching Greenlight for Direct, that kind of thing. Unfortunately for them, it's not working.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-number-of-steam-games-is-still-too-damn-high","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c8a6156-cb1c-409a-bdcd-b2a4927a0e3b/sm/24363-1508445605015-maxresdefault_19.jpg","duration":501,"publication_date":"2017-10-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-activision-microtransaction-patent","changefreq":"weekly","video":[{"title":"2017:E336 - Activision's Manipulative Microtransaction Patent","description":"Activision has just received a patent for microtransactions based on player activity. Not worried yet? What if matchmaking pairs you with a player with awesome gear so you get trampled and want to buy the same gear? Now are you concerned?","player_loc":"https://roosterteeth.com/embed/game-news-2017-activision-microtransaction-patent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04444918-f932-4421-9942-44929c213be9/sm/24363-1508445706901-maxresdefault_20.jpg","duration":503,"publication_date":"2017-10-18T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-11","changefreq":"weekly","video":[{"title":"2017:E199 - Nintendo vs Leaked Review Games + Minecraft WORSE Together + World of Warcraft Legacy EMBEZZLEMENT","description":"Nintendo is tightening up review copies after one recipient leaked the game online. Minecraft's Better Together update is causing some serious issues. A World of Warcraft Legacy project has broken up over embezzlement. Plus, former Visceral employees speak up, WWE 2K18 reviews, Master Chief Collection getting a... beta, Pokemon Go Gen 3 for Halloween, Fire Emblem Warriors reviews, top actors for Detective Pikachu movie, and the USA vs Japan robot fight has happened!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0226f4b3-d57f-4888-8dd3-53de657fd684/sm/24363-1508354452598-thumbnail.jpg","duration":577,"publication_date":"2017-10-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-visceral-star-wars-doomed","changefreq":"weekly","video":[{"title":"2017:E334 - EA CLOSES VISCERAL! Star Wars 'Reworked' into Games As A Service","description":"Remember that cool Star Wars game Visceral has quietly been working on? The one headed up by Amy Hennig with some star industry talent working on it? We're due to hear great things about it any day now, right? Nope... it's now being totally reworked to include Games As A Service elements and Visceral getting shut down.","player_loc":"https://roosterteeth.com/embed/game-news-2017-visceral-star-wars-doomed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54a0a6f2-eee8-49be-b41f-870879de9952/sm/24363-1508286731543-ea_closes_visceral.jpg","duration":775,"publication_date":"2017-10-18T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-10","changefreq":"weekly","video":[{"title":"2017:E198 - Sony Games on Switch & PC + Govt Investigating Loot Boxes + Apple Loses HUGE Lawsuit","description":"Sony is publishing games for Nintendo Switch and PC now. The UK government has responded to the loot crate controversy and confirmed they will look into whether the mechanic should be regulated. Apple has lost a $400 million lawsuit over Facetime (again). Plus, new Xbox dashboard, Crash Bandicoot for Switch debunked, Gran Turismo Sport limited offline, another Mario Odyssey review, Jungle Inferno for Team Fortress 2, Netflix dropping $8 billion on content, Han Solo movie titled, ransomware shuts down Toshiba, and mobile huge in Japan.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc9da2cb-93ac-477b-b235-133ce7249bbf/sm/24363-1508270159293-thumbnail.jpg","duration":675,"publication_date":"2017-10-18T00:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-wants-to-know-what-you-re-wearing-under-that","changefreq":"weekly","video":[{"title":"2017:E333 - Nintendo Switch GONE WILD","description":"Nintendo Switch is ready to go through its Miley Cyrus twerking phase to show everyone it's all grown up! BRING ON THE SEXY GAMES!","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-wants-to-know-what-you-re-wearing-under-that","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fe78381-fa34-4437-ad94-8ea7d7e899df/sm/24363-1508445371586-maxresdefault_18.jpg","duration":451,"publication_date":"2017-10-17T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-kbyg-the-evil-within-2","changefreq":"weekly","video":[{"title":"2017:E325 - Know Before You Go... The Evil Within 2","description":"The Evil Within 2 is the sequel to 2014's The Evil Within by Shinji Mikami, creator of the Resident Evil series. Not sure if it's up your alley? Here's everything you need to know about the game's features!","player_loc":"https://roosterteeth.com/embed/game-news-2017-kbyg-the-evil-within-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32f6d92c-582e-4ac4-8484-4b49bd56361e/sm/24363-1508277808638-thumbnail.jpg","duration":404,"publication_date":"2017-10-17T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-uk-vs-loot-boxes","changefreq":"weekly","video":[{"title":"2017:E332 - Loot Boxes REPORTED to Government","description":"Loot boxes are the hot topic in gaming right now, and one country's government might be tackling them head on. It looks like one parliament member of the UK has submitted an inquiry about loot boxes to the Secretary of State for Digital, Culture, Media and Sport. Will the government step in?","player_loc":"https://roosterteeth.com/embed/game-news-2017-uk-vs-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83794c36-c586-461a-985b-58351e43de16/sm/710924-1508195832887-Thumbnail_Template.jpg","duration":375,"publication_date":"2017-10-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-devs-deny-harassment","changefreq":"weekly","video":[{"title":"2017:E331 - Game Devs DENY Harassment","description":"Both CD Projekt Red and Naughty Dog made statements over the weekend regarding some allegations -- for CD Projekt Red, it was about the way they treat their employees, and for Naughty Dog, it was over accusations of sexual harassment. Here's how each company handled their situation.","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-devs-deny-harassment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1469da0a-3c65-4193-a200-b964cdf59544/sm/710924-1508192168668-Thumbnail_Template.jpg","duration":430,"publication_date":"2017-10-17T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-fall-games-f-a-i-l-i-n-g-south-park-is-it-good-szechuan-traded-for-car","changefreq":"weekly","video":[{"title":"2017:E197 - Fall Games FAILING? + South Park: Is it Good? + Szechuan Traded for CAR","description":"Happy new week, everyone. Several fall games are... falling... well short of their predecessors, including the just launched Shadow of War and Evil Within 2, PUBG's new map and vaulting are on their way SOON, Ubisoft is hinting at a new Mario + Rabbids game, South Park: Fractured But Whole gets its first reviews, Nier's creator wants to make porn, WPA-2 got busted wide open, and Szechuan trading goes to a new level.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-fall-games-f-a-i-l-i-n-g-south-park-is-it-good-szechuan-traded-for-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d57f37f2-7207-43ec-927e-9c5ae485a1d6/sm/710924-1508179577394-10162017_roundup_thumb.jpg","duration":577,"publication_date":"2017-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh142","changefreq":"weekly","video":[{"title":"2017:E142 - WE'RE SO HUNGOVER? - Open Haus #142","description":"Get $25 off your first wine box by going to  http://www.blueapron.com/openhauswine\n\n\n\n\n\n\n\n\n\nAsk us questions here! http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nIn my experience nothing cures a hangover faster than the sharp crack of a policeman's nightstick hitting you in the ribs after you've passed out in the bushes in front of your ex-girlfriends apartment again. That and Orange Pedialyte.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4015692-0085-45c5-8772-d776cb1be869/sm/2371242-1509751894712-Openhaus_Thumbnail142.jpg","duration":1038,"publication_date":"2017-11-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd141","changefreq":"weekly","video":[{"title":"2017:E141 - PERFECT DORK - Demo Disk Gameplay","description":"Best look out, Tom Hanks' other son! There's some new, even whiter rappers on the scene! Wheezy E and Not So Lil Jon are gonna spit the dopest rhy- oh jesus I can't do this. I feel like I'm typing in blackface.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/sirlarrhttps://twitter.com/elysewillemshttps://twitter.com/jameswillemshttps://twitter.com/brucegreenehttps://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7944b6b2-67f0-4316-b9d4-7ea9a34d0134/sm/2371242-1509984424042-FH_Thumb_18_copy.png","duration":954,"publication_date":"2017-11-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-9","changefreq":"weekly","video":[{"title":"2017:E281 - LAST FORT STANDING - Fortnite Battle Royale Gameplay","description":"Every time Funhaus puts up a video of this game, a little part of me wants to title it \"Fart-nite\". But I don't do it. Because I'm an adult. Now if you'll excuse me, I really have to finish this photoshop of Peake eating oats out of Chyna's butt or something. Follow us on Twitter: \n\nhttp://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90da6251-3ffc-46fb-a121-7567bad07a2f/sm/2371242-1509747349084-thumbfortnitepubg20170929_1.png","duration":949,"publication_date":"2017-11-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ss4","changefreq":"weekly","video":[{"title":"2017:E282 - WITLESS PROTECTION - Secret Service Gameplay Part 4","description":"Qualifications needed to become President of The United States:1. Be a natural born citizen.2. Be at least 35 years old.3. Reside in the U.S.A. for at least 14 years.4. F*** it. Apparently, these days, that's literally it.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ss4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1cf7975-ca19-4a9d-9f04-f2b838468372/sm/2371242-1509753916018-FHThumbss4.png","duration":1095,"publication_date":"2017-11-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-fhthor","changefreq":"weekly","video":[{"title":"2017:E28 - THOR vs HULK: ROAD TO INFINITY WAR - Movie Podcast","description":"Go to  http://www.leesa.com/filmhaus  and enter the promo code \"filmhaus\" to get a $100 discount off of your mattress purchase!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday the boys get you all caught up on the stories leading up to Thor: Ragnarok and talk about:2:45 - Director Taika Waititi.8:10 - Marvel's brilliant world building strategy.17:20 - The history of Thor in media.22:40 - The insanity of Marvel character film rights.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-fhthor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f90d2934-51f3-4c28-9a64-0796ebb7860d/sm/2371242-1509736724329-FHThumb18thor.png","duration":1935,"publication_date":"2017-11-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-jgolf2","changefreq":"weekly","video":[{"title":"2017:E280 - JOEL IN ONE - Everybody's Golf Gameplay w/ Joel Part 2","description":"On my first day at Funhaus, Bruce showed me to my standing desk and told me that If the day ever came when I was even half as funny or as competent as Joel, he would spring for a chair. That was a year and a half ago. My feet hurt.  Follow us on Twitter: \n\nhttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/JoelRubin_\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-jgolf2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22bcaf29-0dc3-4590-9b16-3ba04025c83e/sm/2371242-1509665340899-fh_thumb_everybodys-golf_part-2.png","duration":505,"publication_date":"2017-11-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-co95","changefreq":"weekly","video":[{"title":"2017:E95 - WE GET HARD? - Funhaus Comments #95","description":"Don't talk to me about hard. Growing up on the mean streets of Santa Barbara, CA, I used to sing every word of \"Mama Said Knock You Out\" in front of the mirror while my dad braided my rat-tail.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/GeoffLRamsey\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-co95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60c36fa3-132c-4981-a78d-74dbb620f5ce/sm/2371242-1509655606663-COMTHUMB1.png","duration":448,"publication_date":"2017-11-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astronew2","changefreq":"weekly","video":[{"title":"2017:E279 - MINE AND CRAFT - Astroneer Gameplay","description":"I don't know why everyone makes such a big deal about astronauts. I let my body atrophy and drink my own urine every day and you don't see me asking for a damn parade.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astronew2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f80a0a1e-9939-44d2-8b9a-a91b1ba3da82/sm/2371242-1509491560590-fhthumbastroneerpart2.png","duration":966,"publication_date":"2017-11-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtavengers3","changefreq":"weekly","video":[{"title":"2017:E278 - DIE IN THE SKY - GTA 5 Gameplay","description":"Marvel Cinematic Universe Phase 5 Slate of Films:Avengers: Age of MojoSpeedball: HomecomingThor: But That One Alien That Kind of Looks Like a HorseFin Fang Foom: Vol. 2Black Widow Origins: 94 Minutes of Unedited Hysterectomy Footage\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtavengers3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/867fad78-5211-468a-b7de-2307c880b824/sm/2371242-1509490843416-FHThumb18copy20.png","duration":777,"publication_date":"2017-11-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtageoff1","changefreq":"weekly","video":[{"title":"2017:E277 - DEAD MEN RACING - GTA 5 Gameplay","description":"Seriously, guys. No matter how much he asks, DO NOT play \"Never Have I Ever\" with Jacob. Oh God... the things he's done. All those innocent people. And... I mean... Jesus, how many bodies do you need to make a decent skin-suit anyway?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/GeoffLRamsey\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtageoff1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbe11909-ac3b-4c59-b78c-3dd8d2acfe4a/sm/2371242-1509490011925-FHThumb18cop9.png","duration":540,"publication_date":"2017-11-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps146","changefreq":"weekly","video":[{"title":"2017:E146 - WE ARE BLOCKHEADS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5351e4c8-322f-4ec6-a269-b1a6eb17e856/sm/2371242-1509404733990-DS_PostShow_Template.png","duration":2663,"publication_date":"2017-10-31T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds146","changefreq":"weekly","video":[{"title":"2017:E146 - LOOT BOXES ARE ILLEGAL? - Dude Soup Podcast #146","description":"Get $25 off your first wine box by going to http://www.blueapron.com/soupwineAnd get 20% off your Mack Weldon order by going to http://www.mackweldon.com and use promo code \"soup\"\n\n\n\n\n\n\n\n\n\n\n\nToday the gang tackles the controversy over video game loot boxes as well as:4:10 - Vegas stories, Bro!29:05 - An interview with real life video game attorney Ryan Morrison.48:55 - Official Lawrence Brand Thoughtable: What is gambling really?1:00:25 - Hard Nettin': Dyson Show vs Marble Olympics.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant those joggers? http://bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Kotaku] The Collapse Of Visceral's Ambitious Star Wars Game: https://kotaku.com/the-collapse-of-viscerals-ambitious-star-wars-game-1819916152[GI.biz] EA's Ultimate Team now worth $800 million annually: http://www.gamesindustry.biz/articles/2017-03-01-eas-ultimate-team-now-worth-USD800-million-annually[Kotaku] GameStop Offering Unlimited 6-Month Access To Preowned Games: https://kotaku.com/gamestop-offering-unlimited-6-month-access-to-preowned-1819957746[Eurogamer] Are loot boxes gambling? http://www.eurogamer.net/articles/2017-10-11-are-loot-boxes-gambling[Rock, Paper, Shotgun] UK government responds to loot box questions: https://www.rockpapershotgun.com/2017/10/17/uk-government-responds-to-loot-box-questions-vaguely/[PCGamer] Behind the addictive psychology and seductive art of loot boxes: http://www.pcgamer.com/behind-the-addictive-psychology-and-seductive-art-of-loot-boxes/[YouTube] Stole my Cloud Song: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNET HARD:The Dyson Show - https://www.youtube.com/user/DysonShow500MarbleLympics - https://www.youtube.com/channel/UCMV8B1Q5lEEb5yR8Hqkbdhg\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0d70100-1cea-4a87-ab52-e1e2240adf6a/sm/2371242-1509470182538-FHThumb18copy19.png","duration":4351,"publication_date":"2017-10-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-everybody-s-golf-gameplay","changefreq":"weekly","video":[{"title":"2017:E43 - Everybody's Golf Gameplay","description":"This ain't your average golf-related Fullhaus, FIRST folks! This week it's 18 unedited holes of Joel.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-everybody-s-golf-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c06e745-6b01-4055-b750-2fa9f6afa1d3/sm/1533704-1509388664621-Fullhaus_Thumbnail_Everybodys_Golf.jpg","duration":4936,"publication_date":"2017-10-30T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh141","changefreq":"weekly","video":[{"title":"2017:E141 - CLASSIEST EPISODE EVER? - Open Haus #141","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “open”\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYae, 'tis true. We sip Surge from naught but the finest leaden crystal goblets whilst photo-shopping penises onto things. Now, if it please you, we must be going. The most sought after milliner in all of Christendom has agreed to show us the latest in collapsible top-hats. Away!*(rides off on penny-farthing, develops gout)* \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb0ad86d-fe40-4752-9416-446c780beaa6/sm/2371242-1509154976558-OpenhausThumbnail141.jpg","duration":800,"publication_date":"2017-10-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo140","changefreq":"weekly","video":[{"title":"2017:E140 - TIGHT END - Demo Disk Gameplay","description":"You guys have heard of the \"Madden Curse\" right? Where almost every player to appear on the box art for the game gets injured and benched the following season. It's kinda scary, but not nearly as scary as the other Madden curse: adult onset diabetes.  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/sirlarrhttps://twitter.com/elysewillemshttps://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bcc2468-b2aa-447f-8b8e-db72e736a813/sm/2371242-1509154695837-fhthumbdd140v1.png","duration":845,"publication_date":"2017-10-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-8","changefreq":"weekly","video":[{"title":"2017:E274 - HORROR HIGH - Hide and Shriek Gameplay","description":"I used to love those lame carnival haunted houses when I was a kid. With their dumb black lights and fog machines and rickety old animatronic monsters that would tickle you all over and ask you t-... Wait a minute. Animatronics don't tickle. ANIMATRONICS DON'T TICKLE!!! \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/mattseditbayhttp://twitter.com/jonsmiffhttp://twitter.com/jameswillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57ddf6fe-6bde-455a-b0ba-e51832ad7658/sm/1533704-1509048995004-thumbhideandshriekoption3.png","duration":854,"publication_date":"2017-10-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-drunksnes","changefreq":"weekly","video":[{"title":"2017:E275 - SUPER NINTENDRUNK - Drunk SNES Classic Gameplay","description":"For those of you counting at home, here are the totals:Shots of vodka: 60Shots of milk: 12Bouts of milk-induced diarrhea: 1Huey Lewis references: 1Open wounds: 1Craig jokes: 2Bottles thrown: 2Abortions: 1 (that we know of)\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-drunksnes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a3aea93-6b7d-4808-9509-d3b91d9f2f70/sm/1533704-1509048562593-FHThumb18.png","duration":1775,"publication_date":"2017-10-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausbed","changefreq":"weekly","video":[{"title":"2017:E27 - SCARY SHEET - Movie Podcast","description":"This podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis week, the gang gives their takes on a bunch of scary movies including:00:40 - \"Death Bed: The Bed That Eats\".16:25 - Sugar Pine 7's horror short \"The Woods\".24:40 - Netflix original \"The Babysitter:26:25 - Funhaus presents Budhaus: Best Buds Bud Watch: Episode IV: Air Bud: Seventh Inning Fetch with Special Guest: Benson Willems.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/sirlarrhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/jonsmiffhttp://twitter.com/real_rtbones\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausbed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e894993-70bb-430c-ad2e-c62e3c7ccfac/sm/2371242-1509129056960-thumbfilmhausdeathbedoption6.png","duration":2131,"publication_date":"2017-10-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-of-beasts","changefreq":"weekly","video":[{"title":"2017:E276 - BEST OF BEASTS - Best Of Funhaus September 2017","description":"I will always remember this as the month you all lost your collective s**t because Adam Kovic dared to shave his beard. You guys don't have to follow EVERY rule in Leviticus. You know that, right?\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/ElyseWillemshttps://twitter.com/MattsEditBayhttps://twitter.com/jonsmiffhttps://twitter.com/filmDstryrhttps://twitter.com/Omarcitohttps://twitter.com/thenasacovahttps://twitter.com/_JacobFullertonhttps://twitter.com/real_rtboneshttps://twitter.com/Mr_Sarkhttps://twitter.com/RahulKohli13https://twitter.com/AnneMunition\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-of-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9948848c-79c3-435e-95a5-64d12ca04d73/sm/2371242-1509151778516-FHThumbTemplateSeptember2017.jpg","duration":1197,"publication_date":"2017-10-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-94","changefreq":"weekly","video":[{"title":"2017:E94 - GEOFF JOINS FUNHAUS? - Funhaus Comments #94","description":"I don't think I'll ever get any tattoos. It's not because I'm afraid of the permanence or the pain. I just want to make sure that if I ever go to prison, the white supremacist who buys me has clean canvas to work on.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/GeoffLRamsey\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d8aa2d0-11e5-415b-86ee-e617ad81771b/sm/1533704-1509067678844-FHThumbTemplate94.jpg","duration":660,"publication_date":"2017-10-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj3","changefreq":"weekly","video":[{"title":"S1:E3 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 3","description":"Darkhaven Castle holds more secrets than the Twits realize -- even the furniture’s in on it! Nevertheless, they must brave the unknown and follow the crazed Baron Walter into the darkness below. Plus, weird lagoon creatures!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c1bfcc3-beda-43be-a46f-d7884ec74a6b/sm/2371242-1508953267666-Part3.png","duration":4749,"publication_date":"2017-10-26T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-coma","changefreq":"weekly","video":[{"title":"2017:E272 - TEACHER'S PET - The Coma: Recut Gameplay","description":"This epidemic of hot blonde teachers seducing their male students isn't just a recent phenomenon. Back when I was a freshman, I once got an involuntary erection on the way to the blackboard and I'm pretty sure my English teacher noticed it. That counts, right?\n\n\n\n\n\n\n\n\n\n\n\nLawrence art by @padabite\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-coma","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d287905-f221-4c61-9a62-54b390be334b/sm/2371242-1508970848906-fhthumbthcoma.png","duration":933,"publication_date":"2017-10-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabuy2","changefreq":"weekly","video":[{"title":"2017:E273 - WIDOW'S REVENGE - GTA 5 Gameplay","description":"\"In some deep-sea Anglerfish species, like the Needlebeard Seadevil, the tiny male bites into the female, who is often 10 times his size, and soon begins to disintegrate, melting and fusing into her until he’s nothing but testes—a sperm supply she’ll use to fertilize her eggs.\"I'm sorry. Are they talking about deep sea reproductive biology... or my marriage? Aaaaaaghahahahahahahahahahahaha!*(stabs self in eye with flat-head screwdriver, drinks gallon of bleach)*\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabuy2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27cf5455-8244-4fba-b8e5-f978775d84f1/sm/2371242-1508953843929-thumbbuysellpart2.png","duration":805,"publication_date":"2017-10-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtadeath","changefreq":"weekly","video":[{"title":"2017:E271 - JACKED VS RIPPED - GTA 5 Gameplay","description":"Since I found out I'm going to be a dad I've been trying to get in better shape. I started doing Insanity a few day ago, and with a little luck by the time the baby's born I might actually have smaller cans than my wife. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n #WAR# TeamDM Arena 1 - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/j7KO5d2JDE2tlYcGnULdSQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtadeath","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f95c449a-c00e-4005-b241-f2af08aeab97/sm/2371242-1508876515784-thumb_gta_option3.png","duration":660,"publication_date":"2017-10-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps145","changefreq":"weekly","video":[{"title":"2017:E145 - WE ARE UNBURNT","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b479337e-aacd-4b20-bb63-017077b19080/sm/2371242-1508798450885-DS_PostShow_Template145.png","duration":2256,"publication_date":"2017-10-24T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds145","changefreq":"weekly","video":[{"title":"2017:E145 - THE END OF MULTIPLAYER GAMES? - Dude Soup Podcast #145","description":"Claim a free Beach Body On Demand trial membership by texting \"Dude\" to 303030And try out Blue Apron’s “All-Time Customer Favorites” by going to http://www.blueapron.com/soup\n\n\n\n\n\n\n\n\n\n\n\nToday, Lawrence and the gang discuss Activision's multiplayer patents as well as:2:15 - Tons of gameplay footage from Jacob's Destiny 2 adventure.31:00 - Bots in video games, social media, and beyond.49:00 - YouTube continuing to favor \"brand safe\" content.51:50 - Hard Nettin'.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Glixel] Activision Researched Using Matchmaking Tricks to Sell In-Game Items: https://www.rollingstone.com/glixel/news/how-activision-uses-matchmaking-tricks-to-sell-in-game-items-w509288[USPTO] System and method for driving microtransactions in multiplayer video games: http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/9789406[Twitter] DeeJ Disclaims Matchmaking: https://twitter.com/DeeJ_BNG/status/920401730684166146[Wikipedia] Plato was on some shit, man: https://en.wikipedia.org/wiki/Allegory_of_the_Cave[Fortune] Sony Patent is Hilarious, Terrifying: http://fortune.com/2013/04/30/sony-patent-is-hilarious-terrifying/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN':[YouTube] Dyson Show: https://www.youtube.com/user/DysonShow500/featured[YouTube] Fart Master: https://www.youtube.com/channel/UCHoG_XCz4RxtE6Z6dYRtFxQ\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab119f4f-4cc9-48ae-bdfe-928c9288a12a/sm/2371242-1508805739892-Dude_Soup_1.png","duration":3976,"publication_date":"2017-10-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh140","changefreq":"weekly","video":[{"title":"2017:E140 - WEAR OUR FACES? - Open Haus #140","description":"Go to  http://www.leesa.com/openhaus  and enter the promo code \"openhaus\" to get a $100 discount off of your mattress purchase!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAn open letter to the joyless monsters who give out those little boxes of raisins to trick-or-treaters on Halloween:Knock it the hell off.Sincerely,People with a sense of decency.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/476b7042-54b9-4b93-ac48-221fb2e650c2/sm/2371242-1508532014018-Openhaus_Thumbnail140.jpg","duration":731,"publication_date":"2017-10-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo139","changefreq":"weekly","video":[{"title":"2017:E139 - CREAM ON - Demo Disk Gameplay","description":"Fun Movie Trivia Time!Q: For how many consecutive hours did the producers of \"Mrs Doubtfire\" beat each other off after they came up with the idea to put \"Dude Looks Like a Lady\" on the soundtrack?A: Trick question! They're still rubbing each other ragged to this day.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttps://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e6aa7bb-e5f4-422c-a659-9dafecc22c01/sm/2371242-1508546945357-fh_thumb_demo-disk_139_b.png","duration":1109,"publication_date":"2017-10-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hobo2","changefreq":"weekly","video":[{"title":"2017:E269 - GIMME SHELTER - Hobo: Tough Life Gameplay","description":"Right after I graduated college I was actually homeless for a short time. Well, I lived in a van. In my parents' driveway.In Santa Barbara, CA. But I did have to go to the same restaurant every day to ask for free food.Fine, my family owned the restaurant.Whatever. Like you're so tough.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttps://twitter.com/notCIBhttps://twitter.com/_rufhaus\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hobo2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9db764b-1cad-4978-9f10-5a5c5daeafff/sm/2371242-1508536337347-fh-thumb_hobo-tough-life_part-2_v1.png","duration":716,"publication_date":"2017-10-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-secret1","changefreq":"weekly","video":[{"title":"2017:E270 - TURRETS SYNDROME - Secret Service Gameplay Part 3","description":"Man! Kennedy banged movie stars, Swedish socialites, mobsters girlfriends, exotic dancers, White House interns, and East German spies all before his forty-seventh birthday. Just imagine what he could have accomplished if Ted Cruz's dad hadn't killed him.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/real_rtboneshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-secret1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cededdb7-f63a-48ae-8620-24f947ea4756/sm/2371242-1508550804939-fh_thumb_secret_service_3_option_1_b.png","duration":776,"publication_date":"2017-10-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-owgrumps2","changefreq":"weekly","video":[{"title":"2017:E268 - FUNHAUS VS GAME GRUMPS: VENGEANCE - Overwatch Gameplay","description":"You know when you're driving out in the country and you see a dead raccoon in the middle of the road? But it's not just dead, it's been run over like 10 times until it's barely more than a stain that never listens to its teammates and can't use its damn Ults to save its life?Why do I bring this up?No reason.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/egoraptorhttp://twitter.com/stevensuptichttp://twitter.com/immortalhd\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-owgrumps2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33af2d80-bb3f-41ad-ad12-45eec2e6e93a/sm/2371242-1508460400578-Grumpnail.jpg","duration":2404,"publication_date":"2017-10-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-klown","changefreq":"weekly","video":[{"title":"2017:E26 - KILLER KLOWNS FROM OUTER SPACE - Movie Podcast","description":"Go to  http://www.leesa.com/filmhaus and enter the promo code \"filmhaus\" to get a $100 discount off of your mattress purchase!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis week the gang continues their month of cheesy 80's horror movies with a review of the off-putting classic \"Killer Klowns From Outer Space\", as well as:18:10 - The potential future of the franchise23:25 - The simple beauty of practical effects27:25 - Final thoughts29:55 - Funhaus Presents BudHaus: Best Buds' Bud Watch: Episode 3: World Pup\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/jonsmiffhttp://twitter.com/real_rtbones\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-klown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f27408c3-7442-45de-8c83-370003fed9ab/sm/2371242-1508524786740-FH_thumb_filmhaus_killers-klowns-from-outer-space.png","duration":2353,"publication_date":"2017-10-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-93","changefreq":"weekly","video":[{"title":"2017:E93 - WEINSTEIN BRAND PLANT FOOD - Funhaus Comments #93","description":"\"Okay, just show me the way to your houseplants and I'll get 'em nice and fed.\"\"Can't you just leave me a bottle of the stuff and I can pour it in later?\"\"Oooo... that really doesn't work for me. I kinda need to apply it myself. I don't want to bore you with the details. Oh! And if you could maintain eye contact with me the whole time but then immediately look away when I'm finished, that would be great.\"  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bca4396-4938-45a5-b5cf-f9e43dfb9c3f/sm/2371242-1508443795216-FH_Thumb_Template_com93.png","duration":536,"publication_date":"2017-10-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-warhammer","changefreq":"weekly","video":[{"title":"2017:E267 - WORLD WAR D - Total War: Warhammer 2 Gameplay","description":"Thank you to Sega Total War: Warhammer for partnering with us on this video!Click here http://bit.ly/2wzioVr  to check out the game for yourself!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"I am Daenerys Stormborn of the House Targaryen, the First of Her Name, The Unburnt, Queen of the Andals, the Rhoynar and the First Men, Queen of Meereen, Khaleesi of the Great Grass Sea, Protector of the Realm, Breaker of Chains, Mother of Dragons, Maker of Dramatic Entrances, Whitest of Saviors, Wearer of Extensions, Lady Regent of the Friend-Zone, Lover of Nephews, Uppermost Lord-Lady Pontiff of- wait, I'm almost done! Where are you going?\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-warhammer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c11eb7ab-0cbb-4378-9fed-b8686051d861/sm/1788482-1508349528303-FH_Thumb_18_copy_17.png","duration":516,"publication_date":"2017-10-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaabuy1","changefreq":"weekly","video":[{"title":"2017:E266 - CARGO F*** YOURSELF - GTA 5 Gameplay","description":"\"Spin it lets begin itBare and grin it when you're in itYou can win it in a minuteWhen you spin it spin it spin it.HahahahaSo spin it!\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaabuy1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b17dd669-75cd-4423-be7f-9f2314d37d13/sm/1788482-1508348964301-FH_Thumb_GTA_Avengers_Buy-Sell_Pt1_v2.png","duration":978,"publication_date":"2017-10-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtalevelrace","changefreq":"weekly","video":[{"title":"2017:E265 - CATCH ME IF YOU CAN - GTA 5 Gameplay","description":"Watching \"Wild Wild West\" was without a doubt the least amount of fun I've ever had accidentally seeing Will Smith's scrotum.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGet on my Level - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/K_bAZ4L2tkunAxiB3Dtsmg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtalevelrace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80484ffd-b097-4b01-8aa8-6c7cd117f014/sm/2371242-1508278190727-FH_Thumb_Template_gtaklin2.png","duration":652,"publication_date":"2017-10-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps144","changefreq":"weekly","video":[{"title":"2017:E144 - WE ARE BAD WIDDLE BOYS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d371bfba-e663-487b-b1b5-ad96cdd715a3/sm/2371242-1508195663011-DS_PostShow_Template144.png","duration":2281,"publication_date":"2017-10-17T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds144","changefreq":"weekly","video":[{"title":"2017:E144 - THE PERFECT POOP? - Dude Soup Podcast #144","description":"Get 15% off your MVMT watch at http://www.mvmt.com/dudesoupAnd get your Dollar Shave Club start kit for $5 at http://www.dollarshaveclub.com/dude\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday, world renowned games journalist Lawrence Sonntag tells us all about his experience playing Super Mario Odyssey as well as:9:30 - The gang's favorite Mario memories22:55 - James vs Bones: Toilets26:35 - We blow the lid off of the Ariana Grande album cover photo conspiacy29:25 - MASON F*****G REESE!37:55 - James' heroic weekend50:20 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMERCH: bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[YouTube] Is All Not Well at CD Projekt Red? \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Twitter] CD Projekt RED Statement: https://twitter.com/CDPROJEKTRED/status/919885993171398656\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN':The Dyson Show: https://www.youtube.com/user/DysonShow500/Cooking Show: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/real_rtbones","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0d460ec-c64d-4fec-827e-e7e70bf9f0d0/sm/1788482-1508344773978-poopthumb_psd.png","duration":3556,"publication_date":"2017-10-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh139","changefreq":"weekly","video":[{"title":"2017:E139 - HOT YOUNG TV STARS? - Open Haus #139","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOut of respect for all of the people who have been victimized by Harvey Weinstein, we here at Funhaus have instituted a new policy that explicitly forbids any of our staff from beating off into potted plants on company grounds. Well, everyone except Jon. It's all he has left.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7142f2e9-2fc5-4c73-9cd9-cf6b43822470/sm/2371242-1507942553775-Openhaus_Thumbnail138_1.jpg","duration":946,"publication_date":"2017-10-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd138","changefreq":"weekly","video":[{"title":"2017:E138 - MOTHERS. BE. AWARE. - Demo Disk Gameplay","description":"I can't believe the journey is at an end. Over the past eleven weeks I've grown to love, then hate, then love this stupid song all over again. The pure joy on the faces of these men makes it all worth while. You are about to witness a truly singular and beautiful moment. Also, they look at pictures of Wallace and Gromit banging.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttps://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d72acf3-c306-499e-977e-5b2f0e4ce74e/sm/2371242-1507948670355-dd_thumb_138_v6.png","duration":1143,"publication_date":"2017-10-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gmodslash","changefreq":"weekly","video":[{"title":"2017:E263 - SCREAM QUEENS - Gmod Slashers Gameplay with Sark","description":"*ring...ring...ring...ring...ri-\"Mmmph h-hullo?\"\"Hey, Wes. Its me again.\"\"Wha- Skeet? Jesus, what time is it?\"\"I dunno, I'm pretty railed right now. Me, Matt and Jamie just did a pile of blow and cranked out a script for \"Scream 5: The Revenge of Billy Loomis\". Wanna take a look at it?\"\"You know I've been dead for like two years now, right?\"\"We could even put a five where the S should be, y'know.\"\"How did you even get this number?\"(muffled) \"Yeah, Matt, I just told him about the five thing! Shut up! I think he's into it.\"*click\"Hello? Wes? Shit... How do you even pronounce '5cream' anyways?\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/Mr_Sark\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gmodslash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f33e7306-d790-465c-b1bb-10444d1df013/sm/2371242-1507936372440-FH_Thumb_18_copy_16.png","duration":633,"publication_date":"2017-10-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-strange2","changefreq":"weekly","video":[{"title":"2017:E264 - DEMON SEED - Strangers in a Strange Land Gameplay Part 2","description":"Damn! Super hot chicks walking around in their bikinis, demon invocations, and orgies?!If life in Russia is this cool maybe we should let them decide ALL of our elections.*this joke brought to you courtesy of your middle-aged uncle who's the funniest guy at his office's weekly Applebee's happy hour.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-strange2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f243221-e880-4d2b-9073-21df0789a228/sm/2371242-1507935950661-FH_Thumb_Strangers-In-A-Strange-Land_Part-2.png","duration":891,"publication_date":"2017-10-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-minority-report-gameplay","changefreq":"weekly","video":[{"title":"2017:E42 - FIFA 17 Gameplay","description":"This is a long one, folks. But much like this video, the average length of a professional soccer game is also 90 minutes! Totally planned, I swears.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-minority-report-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68d689f0-d84c-488b-96b5-f9448407e953/sm/1601067-1507927714423-FullhausThumbnailFIFA.jpg","duration":5425,"publication_date":"2017-10-13T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhaus-troll","changefreq":"weekly","video":[{"title":"2017:E25 - TROLL 2 UNDERRATED? - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday James, Elyse, and Lawrence kick off a month of spooky garbage horror films with a review of Troll 2, as well as:5:35 - Crazy behind the scenes stories.10:15 - What makes a bad movie good.20:00 - The cult legacy of the film.28:35 - Jon and Bones' continue their slog through the Air Bud Cinematic Universe.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/jameswillemshttps://twitter.com/jonsmiffhttps://twitter.com/real_rtbones\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhaus-troll","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6e851d4-b6e8-4743-ac71-41a0127dc1c3/sm/2371242-1507917303440-fh_thumb_troll_2_filmhaus_v4.png","duration":2081,"publication_date":"2017-10-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-golfjoel1","changefreq":"weekly","video":[{"title":"2017:E262 - TEE BAGGERS - Everybody's Golf Gameplay with Joel","description":"I hate to say it guys, but I'm running dangerously low on stupid golf gags for these titles. What's left? TIN CUCK? CRAPPY GILMORE? Hand to god, I almost called this one DON'T NEGLECT THE BALLS. Maya Angelou would be struggling to come up with a good \"hole\" pun at this point. And she practically invented them.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/JoelRubin_\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-golfjoel1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d27d6542-007c-4e4f-9487-cb95276d0dcf/sm/2371242-1507860365498-fh_thumb_everybodys-golf_part-1.png","duration":821,"publication_date":"2017-10-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-92","changefreq":"weekly","video":[{"title":"2017:E92 - DANCING WITH OURSELVES - Funhaus Comments #92","description":"I knew a guy in high school who once refused to make out with a girl just because she had recently eaten a pack of Lunchables. In high school, I would have thrown that same girl in front of a bus for just the mini Butterfinger.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2245f377-5146-41ad-ad56-52b47a8e2568/sm/2371242-1507852968244-FH_Thumb_Template92.jpg","duration":456,"publication_date":"2017-10-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj2","changefreq":"weekly","video":[{"title":"S1:E2 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 2","description":"En route to the Baron’s Castle, our legendary heroes make a pitstop in the aptly named and bleak Darkhaven Village. It’s there that Grimo and Decker meet a mysterious traveler, Dirik and Shattercock dabble in the clairvoyant, and Racsan and Myriadus find the perfect weapon. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-lxj2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2688b6f-0cbb-46f8-9597-d9bc20b10d65/sm/2371242-1507741979804-Part_2.png","duration":3965,"publication_date":"2017-10-12T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-south","changefreq":"weekly","video":[{"title":"2017:E261 - SUPER BEST FRIENDS - South Park: The Fractured But Whole Gameplay","description":"Thank you to Ubisoft for sponsoring this video!Click here  http://ubi.li/3xsb4  to check out the game for yourself!\n\n\n\n\n\n\n\n\n\n\n\nYou guysAre my best friendsThrough thick and thinWe've always been togetherWe're four of a kindHavin' fun all dayPalling around and laughin' awayJust best friends...Best friends are we!I love you guys.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-south","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31a63840-7330-4a34-b6a4-6046146e6b78/sm/2371242-1507832175173-SPTFBH.jpg","duration":558,"publication_date":"2017-10-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabomb2","changefreq":"weekly","video":[{"title":"2017:E260 - AVENGERS AIRLINES - GTA 5 Gameplay","description":"\"Hey there lady I just met! Wanna bang in that coffin-sized room that smells like piss and the Cinnabon farts of 200 angry strangers? If we hurry we can get in there before that obese Amway salesman has to throw up again and-\"\"Ssshhh... you had me at 'Cinnabon farts'.\"And so, The Mile High Club was born.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabomb2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ae453a3-a73a-4a20-b37f-e5ba75df852a/sm/2371242-1507682195421-FH_Thumb_18_copy_14.png","duration":947,"publication_date":"2017-10-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtapubgmatt","changefreq":"weekly","video":[{"title":"2017:E259 - FULL METAL JACK IT - GTA 5 Gameplay","description":"This is my description. There are many others like it, but this one is mine. My description is my best friend. It is my life. I must master it as I must master my life. Without me, my description is useless. Without my description, I am useless. I must write my description true. I must write funnier than Jacob, who is trying to replace me. I will. Before God I swear this creed: my description and myself are defenders of Funhaus. So be it, until there is no internet. Amen.\n\n\n\n\n\n\n\n\n\n\n\nGTA Battlefield - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/KceqJpu-Xku4Y633G2uqQQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/mattseditbayhttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtapubgmatt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb4b3659-9d08-480a-9d03-09870f880e68/sm/2371242-1507679991099-FHpeakegta2.png","duration":614,"publication_date":"2017-10-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-dsps","changefreq":"weekly","video":[{"title":"2017:E143 - WE ARE FACELESS","description":"More art! More comments! More SHATTERCOCK BODY PILLOWS! Enjoy, you fine Firstees.","player_loc":"https://roosterteeth.com/embed/fan-show-2017-dsps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c105021a-e02c-4e8e-b90f-c71dcb8b27b9/sm/1533704-1507593387761-DS_PostShow_Template100917.jpg","duration":2357,"publication_date":"2017-10-10T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-big-corporations-own-y-o-u-t-u-b-e-dude-soup-podcast-143","changefreq":"weekly","video":[{"title":"2017:E143 - BIG CORPORATIONS OWN YOUTUBE? - Dude Soup Podcast #143","description":"Get your first three Blue Apron meals free at http://www.blueapron.com/soupAnd get your first Stitch Fix box at http://www.stitchfix.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the whole gang sits down to talk about YouTube's somewhat confusing and hypocritical ad policies as well as:6:45 - Larr's Movie Club35:15 - The McDonald's/Rick and Morty sauce debacle52:00 - James' Tales from the Gym58:00 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[YouTube] LET'S HELP THE VICTIMS OF THE LAS VEGAS ATTACK: \n\n\n\n\n\n\n\n\n\n\n\n[Twitter] Casey Neistat Video Demonetized: https://twitter.com/CaseyNeistat/status/916012674269429761[WSJ] ABC Starts Selling Ads Alongside Jimmy Kimmel Clips on YouTube: https://blogs.wsj.com/cmo/2015/09/09/abc-starts-selling-ads-alongside-jimmy-kimmel-clips-on-youtube/\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Twitter] McDonald's Announces Return of Fucking Stupid Sauce: https://twitter.com/McDonalds/status/917169818725384192[Twitter] Justin Roiland Distances from McDonald's Promo: https://twitter.com/JustinRoiland/status/917145891852623873\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN':Dyson Show: https://www.youtube.com/user/DysonShow500/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-big-corporations-own-y-o-u-t-u-b-e-dude-soup-podcast-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6af45b4-c866-4f5d-b86f-ca5ed8732695/sm/1533704-1507593248806-FH_Thumb_18_copy_5.png","duration":4484,"publication_date":"2017-10-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-blade-runner-2049-is-the-best-sequel-ever-movie-podcast","changefreq":"weekly","video":[{"title":"2017:E138 - OUR SECRET TO SUCCESS? - Open Haus #138","description":"Open Haus is sponsored by Blue Apron! Go to >http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\nAh, there's Bones. He told me he was going to Boston for the weekend but it turned out he was in Open Haus the whole time! Come back Bones. It's scary without you. It's dark, and there are glass shards in my fingertips. The typing... it hurts...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: >https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-blade-runner-2049-is-the-best-sequel-ever-movie-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1abf7fe-d2f2-4142-9910-081be05ddf7c/sm/1533704-1507400612232-OH137Thumb.png","duration":922,"publication_date":"2017-10-09T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd137","changefreq":"weekly","video":[{"title":"2017:E137 - BOBSLED CREAM - Demo Disk Gameplay","description":"Cool runnings came out in 1993. I came out in 1991. In case you're wondering if I'm Bones or not, it's up to you to learn the truth.\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/brucegreenehttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14c21767-1e3b-45b5-aee8-2bd7eb78b87b/sm/1533704-1507346066075-FH_Thumb_Template137.jpg","duration":1075,"publication_date":"2017-10-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-guesssark2","changefreq":"weekly","video":[{"title":"2017:E255 - SLAY AT THE BEACH - Gmod Guess Who Gameplay w/Sark Part 2","description":"\"The Insult That Made a Man Out of James\"\n\n\n\n\n\n\n\n\n\n\n\nJAMES: \"Hey! Quit kicking sand in our faces!\"ELYSE: \"That man is the worst nuisance on the beach.\"BRUCE: \"Listen here. I'd smash your face... only you're so skinny you might dry up and blow away.\"JAMES: \"The big bully! I'll get even some day.\"ELYSE: \"Oh, don't let it bother you, little boy.\"JAMES: \"Darn it! I'm sick and tired of being a scarecrow! Charles Atlas says he can give me a real body. All right! I'll gamble a stamp and get his free book!\"[later at home]JAMES: \"Boy! It didn't take Atlas long to do this for me! What muscles! That bully won't shove me around again!\"[back at the beach]JAMES: \"What you here again? Here's something I owe you!\"BRUCE: \"Ow!\"ELYSE: \"Oh, James, you are a real man after all!\"LAWRENCE: \"Gosh! What a build.\"ADAM: He's already famous for it!\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/Mr_Sark\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-guesssark2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05cd91de-462b-41c3-8ee7-374f5b4525d0/sm/2371242-1507242273560-FHsark2.png","duration":619,"publication_date":"2017-10-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-blade-runner","changefreq":"weekly","video":[{"title":"2017:E24 - \"Blade Runner 2049 is the best sequel ever.\" - Movie Podcast","description":"This episode of the Movie Podcast is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/filmhaus to get 15% off your very own Vincero watch!\r\n\r\n\r\n\r\n\r\n\r\nToday the gang talks about the long awaited film, Blade Runner 2049 while I think about how excited I am to go watch it alone with my overbuttered popcorn.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-blade-runner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d859f0d5-dc4d-43fe-907d-24cf3b8634e2/sm/1533704-1507343752319-FH_Thumb_18_copy_2.png","duration":2501,"publication_date":"2017-10-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-strange1","changefreq":"weekly","video":[{"title":"2017:E254 - DREAM MOMMIES - Strangers in a Strange Land Gameplay Part 1","description":"Russians have a pretty messed up view of American family life. We only SUBCONSCIOUSLY want to sleep with our mothers and murder our fathers. Crack a book, comrades! \n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-strange1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b35c5437-30bd-46e8-afd5-b06bcb42d37a/sm/2371242-1507239949726-FHstrange.png","duration":936,"publication_date":"2017-10-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-warface2sales","changefreq":"weekly","video":[{"title":"2017:E256 - THE DERP LOCKER - Warface Gameplay","description":"Thank you to Crytek Studio for sponsoring this gameplay!Click the link below to check out Warface for yourself!\n\nhttps://wf.my.com/promo/lvl11/2/en/?_1ld=2455945_2009985&_1lp=1 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe closest I've ever come to active military duty was that one time in 10th grade when I watched \"Major Payne\" and \"Renaissance Man\" in the same weekend.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-warface2sales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1095ee0d-615c-4402-9fc7-546793de9733/sm/2371242-1507235442354-FHderp.png","duration":1282,"publication_date":"2017-10-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments91","changefreq":"weekly","video":[{"title":"2017:E91 - OUR AWKWARD PHASE? - Funhaus Comments #91","description":"My awkward phase lasted from about 1989 to 1996. And then again from 2002-2005. Then for most of 2008, about 5 months of 2011, the entire Spring of 2013, and then finally from May of 2015 up until the typing of this sentence. Follow us on Twitter: \n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/_JacobFullerton\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35684c08-2a91-430d-a840-baaaf1cca194/sm/2371242-1507160223838-FH_Thumb_Template91.jpg","duration":543,"publication_date":"2017-10-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-cockroach","changefreq":"weekly","video":[{"title":"2017:E253 - SLUM LORDS - Cockroach Simulator Gameplay","description":"Do you have any idea how hard it was for me NOT to use a Papa Roach reference in the title for this video? I started to hum the first few bars from \"Last Resort\" as I typed and Bruce had to tackle me to the ground, kneel on my wrists, and shove an old towel in my mouth until I calmed down.\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-cockroach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc6653fd-1b2b-4759-b37c-c06c7041b4e2/sm/2371242-1507159746320-fh_thumb_cockroachsimulator_1.png","duration":751,"publication_date":"2017-10-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabushka1","changefreq":"weekly","video":[{"title":"2017:E258 - DEATH OF THE AVENGERS? - GTA 5 Gameplay","description":"\"Namor gives off a sense of charisma which most women tend to find captivating. Many of the ladies that have entered his life made clear their attraction to his masculine, slightly alien personality in ways both subtle and blatant. He reacts to such advances with gratitude tinged with a slight distance born of monarchical etiquette.\"- Some adult man on Wikipedia whose stepdad keeps tearing down his Namor posters.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabushka1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78848bb4-c9e2-4b5d-b656-22e8d44a422e/sm/2371242-1507148329995-gtabomb.png","duration":1028,"publication_date":"2017-10-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtapeake","changefreq":"weekly","video":[{"title":"2017:E257 - CART ATTACK - GTA 5 Gameplay","description":"I've always hated playing golf. I don't know if it's all the equipment you have to buy, the trudging around in the hot sun, or the memory of my mom beating me nightly with her VHS copy of \"Tin Cup\".\n\n\n\n\n\nGTA Kart 3 50cc - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/oEXE-tltAkWhDIJaX3cSFQ#\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/elysewillemshttp://twitter.com/mattpeakehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtapeake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6ec2051-accd-4c06-8d34-02d21a2c161b/sm/2371242-1507080323412-FHgta.jpg","duration":605,"publication_date":"2017-10-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-marc-ecko-s-getting-up-contents-under-pressure-gameplay","changefreq":"weekly","video":[{"title":"2017:E41 - Marc Ecko's Getting Up: Contents Under Pressure Gameplay","description":"Okay kiddies, take a break from your bi-daily teepeeing rampages and watch an hour of REAL art.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-marc-ecko-s-getting-up-contents-under-pressure-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d33e8115-819d-4d2d-a8b9-239fa75aabc9/sm/1533704-1506471376281-Fullhaus_Thumbnail_Marc_Ecko.jpg","duration":3569,"publication_date":"2017-10-04T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps-142","changefreq":"weekly","video":[{"title":"2017:E142 - WE ARE SATISFIED","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a54430cc-daeb-4f86-974b-5d41a077f0f7/sm/2371242-1506983841551-DSPostShow142.png","duration":3167,"publication_date":"2017-10-03T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup142","changefreq":"weekly","video":[{"title":"2017:E142 - SNES MAKES US YOUNG AGAIN? - Dude Soup Podcast #142","description":"Get 20% off of your http://www.mackweldon.com order with promo code \"dude\"And get a free 7 day Storyblocks trial account at http://www.storyblocks.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the gang plays a little SNES Classic and talks about its games, features, and shortcomings, as well as:26:50 - Adam's trip to Halloween Horror Nights and other theme park adventures49:10 - Games journalism55:50 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDUDE SOUP POST SHOW!\n\n\n\n\n\n\n\n\n\nhttp://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN'\n\n\n\n\n\n\n\n\n\n\n\n\n\nDinkster Daily: https://www.youtube.com/channel/UCYu1rWyr0TxTnHo99oW7ddA/featured\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7fb8f08-1928-445b-b650-b875c59c03a6/sm/2371242-1506991405402-ds.jpg","duration":4272,"publication_date":"2017-10-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh137","changefreq":"weekly","video":[{"title":"2017:E137 - OUR NEW MASCOT? - Open Haus #137","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus”\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"In the criminal justice system, sexually based offenses are considered especially heinous. In New York City, the dedicated detectives who investigate these vicious felonies are members of an elite squad known as the Special Victims Unit. These are their sto- Adam, stop eating that! Jesus. Leave some semen for the boys in the lab.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef722f21-39e2-42f4-ab22-51a54b05c473/sm/2371242-1506739996109-Openhaus_Thumbnail137.jpg","duration":1125,"publication_date":"2017-10-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo136","changefreq":"weekly","video":[{"title":"2017:E136 - MECH ME WET - Demo Disk Gameplay","description":"You'd all better god-damned appreciate the hell out of \"Mothers Be Aware\" when the boys finally unlock it. Editing these is taking its toll on poor Daniel. He doesn't eat. He doesn't sleep. The other morning I came into the bungalow and found him standing in the corner like the end of The Blair Witch Project. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttps://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63494411-5559-4eca-9d81-48a4a435a407/sm/2371242-1506740777096-FH_Thumb_18_copy_7.png","duration":880,"publication_date":"2017-10-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-lawbreakers","changefreq":"weekly","video":[{"title":"2017:E252 - BRO BOTS - Lawbreakers Gameplay","description":"I've never actually broken the law but I did spend the night of my bachelor party as a guest of the La Paz County, Arizona Sheriffs Dept. Quick tip for all you kids out there: If your redneck cousin decides to piss all over the door handles of some other redneck's pickup truck, maybe make yourself scarce for a few hours.   Follow us on Twitter: \n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-lawbreakers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8d62557b-116b-49b5-a8c2-24ba67c1aeb9.png/sm/FH_Thumb_Lawbreakers_v2.png","duration":1369,"publication_date":"2017-09-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wheel25","changefreq":"weekly","video":[{"title":"2017:E251 - THE HERO WE NEED - Wheelhaus Gameplay","description":"\"Peashe hash cosht you yaw strength. Victory hash derfeated you.\"\"What?\"\"You think daknush ish yaw ally? Thuh shadowsh betray you becaush they belong to me!\"\"Did anybody get that? Selena? You guys up in the rafters?\"\"I wush wunduring what would break fursht, yur shpirutt ow yur bawdy.\"\"You're who's buddy? Whatever. Can we move this along? My back's not going to break itself.\" \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wheel25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/57207a4a-c74d-4b1a-819c-a0f8c45244a1.png/sm/wheelhuas251.png","duration":904,"publication_date":"2017-09-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-psycho2","changefreq":"weekly","video":[{"title":"2017:E23 - KINGSMAN, PSYCHOS, and DOGS - Movie Podcast","description":"This podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis week the gang sits down to lay out out what was proper and what was rubbish about Kingsman: The Golden Circle, as well as:9:20 - A timely review of the little-known and even less liked American Psycho 220:20 - Bones and Jon pop in to introduce you all to the surprisingly large \"Air Bud Cinematic Universe\". \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/jonsmiffhttp://twitter.com/real_rtbones\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-psycho2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a6535df-a244-4245-86ed-e6d9f9535e80.png/sm/filmhaus20tb.png","duration":1426,"publication_date":"2017-09-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-guessark1","changefreq":"weekly","video":[{"title":"2017:E250 - SARK SIDE OF THE FORCE - Gmod Guess Who Gameplay w/ Sark Part 1","description":"DISNEY HQ - 9/5/2017 - 10:49 AM \"Sir, do you read me!? We have a situation down here!\"\"What is it? What's Happening? Are those screams?\"\"Oh god, he's torn through half my men! And he's... done things to them.\"\"Who are you talki-\"(muffled) \"F**k the tranqs, just take him down!\"\"Jenkins! What the hell is going on?!\"\"It's Him, Sir! It's Lucas! He found out we need a new director for Episode IX!\"\"Dear God.\"\"He just keeps screaming something about Watto's kids fighting Capt. Panaka's clone or something. It sounds terrible!\"\"Jenkins! Whatever you do, do net let him up here for a meeting!\"\"I don't know if... oh no. He's seen me. Tell my wife I'm so-aaaaaaggghh.....\"\"Jenkins! Jenkins, are you there?!\"\"...\"\"Jenkins?\"\"...\"\"...George?\"\"...Miiiiiii-diiiiiiiii-chlooooriaaaaans.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/Mr_Sark\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-guessark1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaee472f-8e85-41d5-9081-765981d30542/sm/2371242-1506640960065-FH_Thumb_18_copy_3.png","duration":670,"publication_date":"2017-09-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments90","changefreq":"weekly","video":[{"title":"2017:E90 - STRONG FEMALE ROLE MODELS? - Funhaus Comments #90","description":"We all treasure having Elyse on the team. The other day we even chipped in and bought her one of those old Barbie Styling Heads at a yard sale. You should see how happy she is, brushing its hair and rubbing lipstick all over it. That thing'll keep her quiet for hours.\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06b8a711-e558-4e4b-a2c9-93567d2195a3/sm/2371242-1506636212694-FH_Thumb_Template90.jpg","duration":442,"publication_date":"2017-09-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jire1","changefreq":"weekly","video":[{"title":"S1:E1 - THE LEAGUE OF EXTRAORDINARY JIREMEN: Part 1","description":"Five years have passed since the Battle in the skies over Parael that almost destroyed the world, and the mercenaries-turned-heroes known as the “Twits” have long since disbanded their fellowship. Now, a new challenge presents itself and their leader, the dwarf paladin turned mayor, Myriadus O'Probbles, must reunite the Twits for a dangerous new adventure. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on twitter\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/the-league-of-extraordinary-jiremen-the-league-of-extraordinary-jiremen-season-1-jire1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e4ec38a-79dc-4175-8ec5-ab398d11797f/sm/2371242-1506530008746-Part_1.png","duration":4360,"publication_date":"2017-09-28T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-zooicide","changefreq":"weekly","video":[{"title":"2017:E248 - ANIMAL CRUELTY - Zooicide Gameplay","description":"While we all had a good laugh playing this game, we here at Funhaus find nothing funny about the millions of animals suffering right now in zoos all over the world. For less than... um... let's say fifteen dollars a day you can help these poor beautiful creatures. Just send your cash or check for fif- you know what let's just make it an even twenty, to Bones c/o Funhaus and I'll make sure to build those wells or help those kids or whatever. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-zooicide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dabf8629-0072-4b71-9f4a-b4c1ebb2417b/sm/2371242-1506548873337-FH_Thumb_Zooicide_V1.png","duration":878,"publication_date":"2017-09-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-ep8","changefreq":"weekly","video":[{"title":"OS:E8 - OVERWATCH COMPETITIVE Ep. 8","description":"It all comes down to this. Will our boys bind together as a team to crush the competition? Or will they squabble and scream until they all quit to start their own gaming channels in opposite corners of the same room, hanging sheets to separate their territories like Marsha and Greg Brady sharing the attic apartment? Ask your parents.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on twitter:\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/IIJERiiCHOII\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-ep8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60fbbb21-cd53-4f98-9350-dc73ab4f05c3/sm/2371242-1506531926146-FunhausOWLogo1920OC_EP8.png","duration":4172,"publication_date":"2017-09-28T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtasmug2","changefreq":"weekly","video":[{"title":"2017:E249 - AVENGED FROM ABOVE - GTA 5 Gameplay","description":"Thanks a lot, Bruce. Now every time I think of Scarlett Johansson while I... relax, all I can picture is you cosplaying as a burly, tatted, BDSM mental patient.Wait... I can make this work.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtasmug2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59757f59-dcae-4f20-9496-8defe3c2ef75/sm/2371242-1506545403655-FH_Thumb_18_copy_2.png","duration":867,"publication_date":"2017-09-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-chat","changefreq":"weekly","video":[{"title":"2017:E247 - WE BREAK GTA - GTA 5 Gameplay","description":"Jennifer Love Hewitt or Sarah Michelle Gellar? If I had spent half as much time studying in the 90's as I did internally debating this question, it would be Dr. Bones PhD sitting here staring at poorly photo-shopped fake nudes of aging actresses for the rest of the day.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n† GTA Kart 3 · 50cc †·: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/oEXE-tltAkWhDIJaX3cSFQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-chat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e24d4eda-290f-44a7-b43b-ad90f0cbb845/sm/2371242-1506463681775-FH_Thumb_GTA_Pitbull_90s_v2.png","duration":560,"publication_date":"2017-09-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps141","changefreq":"weekly","video":[{"title":"2017:E141 - WE ARE PARTY BOYS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f63a68b-4f2b-4e62-98cf-84c415ea1238/sm/1601067-1506459730076-DS_PostShow_Template_141.png","duration":2590,"publication_date":"2017-09-26T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup141","changefreq":"weekly","video":[{"title":"2017:E141 - HIGH SCHOOL HOUSE PARTY - Dude Soup Podcast #141","description":"Claim your free Beach Body On Demand trial membership by texting \"Dude' to 303030!And get your first three Blue Apron meals free by going to http://www.blueapron.com/soup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the boys take a quick break from rubbing baby oil all over each other at the party mansion to answer your questions and watch other boys rub baby oil all over each other. It's like someone kicked one aging furry white man into the pool and they started reproducing like gremlins.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11687a43-82ee-4cd6-a012-85a9ab75c4bc/sm/1601067-1506464579540-FH_Thumb_18.png","duration":3625,"publication_date":"2017-09-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-beast-battle-simulator-gameplay","changefreq":"weekly","video":[{"title":"2017:E40 - Beast Battle Simulator Gameplay","description":"Eyyy bucko, you want some animals on a Monday? I've got a whole hour of creepy critters for your weekly cravings. Take 'em and cake 'em if you know what I'm sayin', eyyyyy.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-beast-battle-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c6e9469-a840-49d1-8e03-9a321d211b11/sm/1533704-1506368346272-Fullhaus_Thumbnail_Beast_Battle_Simulator.jpg","duration":3430,"publication_date":"2017-09-25T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh136","changefreq":"weekly","video":[{"title":"2017:E136 - BEAST MODE? - Open Haus #136","description":"Get Quidd here ►►► http://bit.ly/2eYbcLw Add us on the app! Username: openhaus\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe heard you loud and clear, millennials. You wanted more jokes about mid-90's sitcoms starring middle-age white people that were watched almost exclusively by other middle-age white people. Well here you go. Happy now?   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c61cf3-5c60-4c4f-85ad-54560e685ba2/sm/2371242-1506129458006-Openhaus_Thumbnail136.jpg","duration":768,"publication_date":"2017-09-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo135","changefreq":"weekly","video":[{"title":"2017:E135 - THE SLOW MO GUYS - Demo Disk Gameplay","description":"If you are one of our more tender viewers who found this video a little too racist, please bear in mind that we film for an hour. Just imagine what we cut out. Lets just say it involved a lot scotch tape on Bruce's eyelids and leave it at that.\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttps://twitter.com/Mr_Sark\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ef8d787-7629-4ca5-9c6d-790f54fa3a76/sm/2371242-1506128347840-fh_thumb_dd_135_v2.png","duration":1037,"publication_date":"2017-09-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fifa2","changefreq":"weekly","video":[{"title":"2017:E244 - PITCH SLAPPED - FIFA 17 Gameplay w/Rahul Kohli Part 2","description":"I bet Jacob would make a great soccer player. He already has a lot of experience never scoring! Bwaaaahahahahahaha! Get it? Scoring like having sex. And he doesn't. Have sex, I mean. Oh man. I boomed him! I boomed him good. Take that, nicest person I've ever met!\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fifa2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a83a598-307a-48b3-af9f-74d1b4f3b1b3/sm/2371242-1506114299279-FH_Thumb_18_copy_76.png","duration":1243,"publication_date":"2017-09-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ecko","changefreq":"weekly","video":[{"title":"2017:E246 - LET'S SPRAY - Marc Ecko's Getting Up: Contents Under Pressure Gameplay","description":"You people don't get it. Us taggers aren't vandals and criminals. We're artists, speaking truth to power! The streets are the canvas on which we spread our message of freedom and love! Now, if you'll excuse me, I have to go carve my name into the side of a urinal in that Arby's bathroom. Peace! \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ecko","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96a775f8-0e3f-40c6-a1ff-ccd08f7a4d76/sm/2371242-1506110266830-FH_Thumb_18_copy_78.png","duration":611,"publication_date":"2017-09-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-friend","changefreq":"weekly","video":[{"title":"2017:E22 - ZERO LIKES - Movie Podcast","description":"Get Quidd here ►►► http://bit.ly/2eYbcLw Add us on the app! Username: Filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis week the whole gang is back to review the new horror film nobody is talking about. Also nobody's seen it. Or heard of it. Or cares that they haven't seen it or heard of it. Anyway, it's called \"Friend Request\" and it's about Facebook, and ghosts, and maybe cyborg hornets or something. Enjoy.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-friend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9065897-53b2-4998-93a0-aa2963bc031a/sm/2371242-1506042243646-FH_Thumb_18_copy_77.png","duration":2575,"publication_date":"2017-09-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-beast","changefreq":"weekly","video":[{"title":"2017:E243 - WE KILLED A ZOO - Beast Battle Simulator Gameplay","description":"\"Everything you see exists together in a delicate balance. As king, you need to understand that balance and respect all the creatures, from the crawling ant to the leaping antelope. And when we die, our bodies become the grass, and the antelope eat the grass. And so we are all connected in the great Circle of Life. Do you understand Simba?\"\"Yes, Father, bu-\"\"Good. Now strap this laser cannon to your head and get out there. Those velociraptors don't play.\"*NAAAAANTS INGONYAAAAAMA BAGITHI BABAAA!\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-beast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14dfefc7-f9ad-492a-83a0-262c04deb51a/sm/2371242-1506031863695-FH_Thumb_18_copy_71.png","duration":1053,"publication_date":"2017-09-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments89","changefreq":"weekly","video":[{"title":"2017:E89 - SONIC BLUE-FACE? - Funhaus Comments #89","description":"How the hell is Elyse still sick? Has she been rolling around in a Chuck E. Cheese ball pit full of anti-vaxer kids? She's basically the monkey from Outbreak at this point. I'd rather share an office with Charlie Sheen's corpse.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d75681fe-d2b3-4e93-b9b6-3b649c2acd46/sm/2371242-1506019176572-FH_Thumb_Template89.jpg","duration":373,"publication_date":"2017-09-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astronew","changefreq":"weekly","video":[{"title":"2017:E242 - DROP THAT BASE - Astroneer Gameplay","description":"Astronaut Ice Cream is gross. I don't care if its taste still lingered on your lips that first time you touched a boobie at space camp. It's just gross.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astronew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecb34a2a-24fc-4888-9db4-7bed122c7325/sm/2371242-1505929594988-FH_Thumb_18_copy_67.png","duration":944,"publication_date":"2017-09-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-over7","changefreq":"weekly","video":[{"title":"OS:E7 - OVERWATCH COMPETITIVE Ep. 7","description":"Is this it?! Is this the turning point? Is this the moment when these four men come together as a team and finally crush the competition? How the hell should I know? Get off my back. I just work here.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-over7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/185e5b94-f8f1-49df-80fc-48a97f646304/sm/2371242-1505927745995-FunhausOWLogo1920OC_EP7.png","duration":1823,"publication_date":"2017-09-21T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtasmug1","changefreq":"weekly","video":[{"title":"2017:E245 - SMUGGLING DOPES - GTA 5 Gameplay","description":"To those of you out there who are really getting a kick out of the \"John Steed\" bit, please get off of the computer. The rest of the nursing home residents have been waiting very patiently for their turn. Besides, it's time for your pills.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtasmug1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23fbec3d-560e-423c-bc86-354667938a6b/sm/2371242-1505939443535-FH_Thumb_18_copy_75.png","duration":920,"publication_date":"2017-09-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtapubbones","changefreq":"weekly","video":[{"title":"2017:E241 - GTA'S BATTLEGROUNDS - GTA 5 Gameplay","description":"I imagine one of the toughest parts about being a parent is deciding when to talk to your kids about drugs. My folks dodged that bullet by hot-boxing with us riding in the back of our station wagon from birth. Roll down the windows? What, you want to air-condition the whole neighborhood?\n\n\n\n\n\n\n\n\n\n\n\n\n\nMotor Wars IV: https://socialclub.rockstargames.com/games/gtav/jobs/job/83X5hgH_CEe5rOyqeha7cg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtapubbones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8abeafad-8486-4148-ba3b-175411875e06/sm/2371242-1505861256284-FH_Thumb_18_copy_74.png","duration":753,"publication_date":"2017-09-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps140","changefreq":"weekly","video":[{"title":"2017:E140 - WE ARE FULL OF CARBS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7206d1bc-1ec1-42de-8045-9f90e1e79402/sm/2371242-1505772975361-DS_PostShow_Template_140.png","duration":3558,"publication_date":"2017-09-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds140","changefreq":"weekly","video":[{"title":"2017:E140 - DESTINY 2 VS PUBG - Dude Soup Podcast #140","description":"Get your $5 Dollar Shave Club Starter Kit by going to http://www.dollarshaveclub.com/dude.And get 15% off your MVMT order by going to http://www.mvmt.com/dudesoup.\n\n\n\n\n\n\n\n\n\n\n\nJacob threatened to quit unless we talked about Destiny 2 this week so here you go. The boys also touch on:37:20 - PUBG's continued success49:00 - Hard Nettin'1:00:45 - Funhaus news and upcoming events\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGet FIRST to watch the Let's Play Family \"Reunion\" - http://bit.ly/2y04z2C\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES: [Rolling Stone] 'PUBG' Is Steam's Most Played Game: http://www.rollingstone.com/glixel/news/pubg-is-steams-most-played-game-w504017\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN':Google Girl: \n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! http://bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttps://twitter.com/_JacobFullerton\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12d8154e-213d-4e5e-ab5c-c283ad26ad90/sm/2371242-1505778384988-FH_Thumb_18_copy_72.png","duration":3994,"publication_date":"2017-09-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh135","changefreq":"weekly","video":[{"title":"2017:E135 - TOO OFFENSIVE FOR US? - Open Haus #135","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\n\n\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBack in high school I hung around with the Swing Dancing clique.Okay, so it wasn't really a clique. It was a few guys and girls that liked to dance.Okay, it was mostly guys.All guys.Okay, it was just me sitting by myself at lunch listening to big band music on my yellow Walkman Sport.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/jonsmiffhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3787175e-abfb-47fa-b52d-c28765fc42ab/sm/2371242-1505515589003-Openhaus_Thumbnail135.jpg","duration":948,"publication_date":"2017-09-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd134","changefreq":"weekly","video":[{"title":"2017:E134 - WET AND FURRY - Demo Disk Gameplay","description":"\"Thanks for seeing me, Doc. I've been having some seriously painful digestive problems lately.\"\"Hhhm. That can be that can be the result of a variety of issues. Tell me, Jon, have you made any unusual changes to your diet lately?\"\"... Define unusual.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/brucegreenehttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d795ee3-7045-4a9f-9c63-751f1cf02067/sm/2371242-1505522824605-FH_Thumb_18_copy_69.png","duration":944,"publication_date":"2017-09-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-rainbow","changefreq":"weekly","video":[{"title":"2017:E239 - ZERO DORK THIRTY - Rainbow Six Siege Gameplay","description":"\"Tom Clancy has decided that Tom Clancy is ready to perform Tom Clancy's husbandly duties with Tom Clancy's wife on Tom Clancy's marital bed. You have Tom Clancy's apologies about last time. Tom Clancy for got to take Tom Clancy's pill.\"\"Ugh. Fine. Can you at least take off the stupid navy hat this time?\"\"Tom Clancy's hat says 'No'.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/AnneMunition\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-rainbow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2727a9e5-883d-4dc5-92db-12b666097d7c/sm/2371242-1505509330699-FH_Thumb_18_copy_63.png","duration":1164,"publication_date":"2017-09-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-porn","changefreq":"weekly","video":[{"title":"2017:E238 - IN THE CAN - Porno Studio Tycoon Gameplay","description":"\"I'm gonna shake off the dust of this boring one horse town and head out to Hollywood to be a star!\"7 months later...\"After he finishes, can I keep the pizza with the little hole cut out of the middle?\"\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elyse willems>https://twitter.com/JoshtheFlanagan\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-porn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89cd9a7e-9eec-452c-bf60-004fb7bf2ccd/sm/2371242-1505508798201-FH_Thumb_18_copy_59.png","duration":630,"publication_date":"2017-09-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-tea-room-gameplay","changefreq":"weekly","video":[{"title":"2017:E39 - The Tearoom Gameplay","description":"Here's another throbbing, veiny full gameplay for you fine folks. ","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-tea-room-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13b75fb5-b192-4715-84fd-be713e0cae37/sm/1533704-1505510072465-Fullhaus_Thumbnail_Tea_Room.jpg","duration":2339,"publication_date":"2017-09-15T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-it","changefreq":"weekly","video":[{"title":"2017:E21 - SCARED IT-LESS - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday Adam, Bruce, and good ol' Jon talk about \"Stephen King's IT\", its surprising success, and how it compares to the book and original mini-series, as well as:27:40 - Weird movie theater experiences35:40 - Star Wars franchise news\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jonsmiff\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de08b95d-e813-47de-b7db-1f603e87d508/sm/2371242-1505496791958-FH_Thumb_18_copy_61.png","duration":2325,"publication_date":"2017-09-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-of-august","changefreq":"weekly","video":[{"title":"2017:E240 - BEST OF COSPLAY - Best of Funhaus August 2017","description":"Ooooh, look at you! Too busy to watch all of these videos in their entirety! You're all soooooo important. Maybe your personal assistants can peruse them then let you know which ones are worth your precious time!You make me sick. Thanks for watching. Like, comment, and subscribe.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/jonsmithhttps://twitter.com/idsantyhttps://twitter.com/IIJERiiCHOIIhttps://twitter.com/RahulKohli13https://twitter.com/XavierWoodsPhDhttps://twitter.com/JoelRubin_\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-of-august","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf947ff0-ea4a-48bb-bc51-2d67d312678d/sm/1533704-1505440174409-August2017.jpg","duration":1173,"publication_date":"2017-09-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-464-post-show-g984yhgi","changefreq":"weekly","video":[{"title":"2017:E54 - Don’t Watch With Your In-Laws - Podcast #464 Post Show","description":"Join Gus Sorola, Brandon Farmahini, Becca Frasier, and Barbara Dunkelman as they discuss massages, Justin Timberlake, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-464-post-show-g984yhgi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1573da5f-e9a9-466f-b089-0f1123fde9d6/sm/2013912-1509487018370-RTP464GusSmiling.png","duration":878,"publication_date":"2017-11-01T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-464-bjo5ijhkl","changefreq":"weekly","video":[{"title":"2017:E464 - Gus Finally Loses It - #464","description":"Join Gus Sorola, Brandon Farmahini, Becca Frasier, and Barbara Dunkelman as they discuss zombies, restaurant wait times, teeth, and more on this week's RT Podcast! This episode originally aired on October 30, 2017, sponsored by MeUndies (http://bit.ly/2yurK8H), ProFlowers (http://bit.ly/2xCHbZu), TrackR (http://bit.ly/2xCrO3a)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-464-bjo5ijhkl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e74dde7e-e9b3-4ac0-b70e-1affa6422525/sm/2013912-1509463244380-RT_Podcast_464_4_thumbnail.jpg","duration":5701,"publication_date":"2017-10-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-47-goeirlkh","changefreq":"weekly","video":[{"title":"2017:E35 - Still Open #47","description":"Join Barbara Dunkelman, Gus Sorola, Bethany Feinstein, and Mariel Salcedo as they discuss a question from the Box of Issues.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-47-goeirlkh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f97bce14-583e-4022-a17c-342bcec0217b/sm/2013912-1509398838962-AO47PSthumbv1.jpg","duration":710,"publication_date":"2017-10-31T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-foraging-in-kent","changefreq":"weekly","video":[{"title":"2017:E40 - Foraging in Kent","description":"Back home in England, Ellie receives a mysterious directive from from a traveling Burnie. Along with her sister Caroline, Ellie discovers she is meant to learn which plants can heal - and which can KILL - when you’re living off the land post-apocalypse.\n\nMUSICGo to Sleep 6Sunny Side UpThe Old Lighthouse\n\n\n\n\n\n\n\nStory & post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-foraging-in-kent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3fdced1-fafe-434d-a197-970069ee440c/sm/2013912-1509382854047-BurnieVlogHerbalismThumb.jpg","duration":647,"publication_date":"2017-10-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-47-g4oh5j","changefreq":"weekly","video":[{"title":"2017:E47 - Witch’s Brew & a Gus Cat Too - #47","description":"Featuring Barbara, Mariel, Bethany and Gus. This episode is brought to you by Away (http://bit.ly/2xzLNPT) and MeUndies (http://bit.ly/2oqytsJ)","player_loc":"https://roosterteeth.com/embed/always-open-2017-47-g4oh5j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff68a396-370f-4ab9-a30c-f1f7ff2d7e07/sm/690915-1509375480914-tempthumb.jpg","duration":3387,"publication_date":"2017-10-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-301-gjoi4","changefreq":"weekly","video":[{"title":"2017:E301 - Construction Conspiracy","description":"Burnie has had enough of the constant construction around Austin. Gus and Gavin do their best to calm him down.\n\nAudio from Rooster Teeth Podcast #452\n\n\n\n\n\nAnimated and Directed by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-301-gjoi4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa394b2f-2fb9-4048-9d31-76fa41794ebf/sm/2013912-1509035325072-rtaa301tn.jpg","duration":174,"publication_date":"2017-10-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-3-g4ogoh4","changefreq":"weekly","video":[{"title":"V5:E3 - Volume 5, Chapter 3: Unforeseen Complications","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-3-g4ogoh4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0aafcf5-eeec-41e5-8309-00ffa2f69801/sm/2013912-1509120328493-RWBYvolume5episode3Thumbnail.jpg","duration":1115,"publication_date":"2017-10-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/c-r-w-b-y-behind-the-episode-1-3","changefreq":"weekly","video":[{"title":"1:E3 - Another Face In The Crowd","description":"Join CRWBY as they open the studio doors for an in-depth look at how each episode was made. Kerry, Miles, and the team walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/c-r-w-b-y-behind-the-episode-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4d47f43-665a-4101-b7eb-512433c7f54b/sm/2013912-1509121050509-CRWBYvolume1episode3v2Thumbnail.jpg","duration":231,"publication_date":"2017-10-28T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-episode","changefreq":"weekly","video":[{"title":"2017:E40 - Light Novel or Crazy Ramblings - #40","description":"Join Gray, Yssa, Cole, Kerry, and Austin as they discuss Netflix and the Anime Industry, Ancient Magus Bride, and Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51bd98ca-9448-4962-bfaf-e42f22b8e494/sm/2013912-1509128335669-fanservice040.png","duration":3844,"publication_date":"2017-10-28T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-layers-of-fear","changefreq":"weekly","video":[{"title":"2017:E41 - Layers of Fear","description":"2Spooky October has to come to an end. So why not do it with a nice exploration game right? That's what Kyle and Miles thought anyway, but they got more than they bargained for. What mysteries does this old house hold? What happened to the painters wife and child? What \"master piece\" awaits under all the layers of this man's past? All I'll say is that the clench factor is astoundingly high in this game.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-layers-of-fear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1d5982f-8e60-4a2f-b186-85f8eace6801/sm/2013912-1509047875708-BzCLAYERSOFFEARTHUMB01.jpg","duration":3312,"publication_date":"2017-10-27T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-114-gjoij5h","changefreq":"weekly","video":[{"title":"S9:E15 - For the Win #114","description":"S9:E15 - For the Win #114","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-114-gjoij5h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce9499d-19a3-491f-9b79-72c9dfaf6c17/sm/2013912-1509048665295-tempThumb.jpg","duration":793,"publication_date":"2017-10-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-114-goeihgr","changefreq":"weekly","video":[{"title":"S9:E114 - Guess What I’m Touching! - #114","description":"Joel & Jeremy semantically discuss periods while Barbara & Maggie put blindfolds on and attempt to guess what they are touching. This episode originally aired October 26, 2017 and is sponsored by Dollar Shave Club (http://bit.ly/2fS8AmC) and MVMT (http://bit.ly/2fyoK4g)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-114-goeihgr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/394278d5-e060-458a-9585-e13fb7fe500f/sm/2369885-1509028169303-tempthumb.jpg","duration":2444,"publication_date":"2017-10-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-2","changefreq":"weekly","video":[{"title":"1:E2 - Animating the Action - #2","description":"Yssa and Chad talk action sequences and see previously unseen art from RWBY in an interview with two of the amazing artists who have helped make the show since day one. And there's a FIRST look at a clip from RWBY Vol. 5 Chapter 3.","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d3e0417-8c21-4aee-8789-7b2e668f0f14/sm/2013912-1508945638178-RWBYRW02.jpg","duration":2076,"publication_date":"2017-10-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-463-post-show-eouhekjh","changefreq":"weekly","video":[{"title":"2017:E53 - The Chosen Few - Podcast #463 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and special guest Tim Gettys as they discuss Twitter, Halloween, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-463-post-show-eouhekjh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaa2195f-76be-4eb0-827e-aa3282545242/sm/2013912-1508945213583-RTP463PSthumb.jpg","duration":1132,"publication_date":"2017-10-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-463-gj4goh","changefreq":"weekly","video":[{"title":"2017:E463 - Gavin Karate Chops His Bum - #463","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and special guest Tim Gettys as they discuss credit cards, dumb products, talking on the phone, and more on this week's RT Podcast! This episode originally aired on October 23, 2017, sponsored by Bombas (http://bit.ly/2jaRTDC), Dollar Shave Club (http://bit.ly/2xMcCUD), Maltesers (http://bit.ly/2rxjbDQ), MeUndies (http://bit.ly/2yurK8H)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-463-gj4goh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36bdee37-2f12-4b0e-a82b-4a2cb8f88d1c/sm/2037887-1508857750071-tempthumb.jpg","duration":5962,"publication_date":"2017-10-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-46-how4g5y","changefreq":"weekly","video":[{"title":"2017:E34 - Still Open #46","description":"Join Barbara Dunkelman, Mica Burton, Blaine Gibson, and Mariel Salcedo as the discuss their favorite scary movies.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-46-how4g5y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96b5c89f-baa5-49b0-8437-7417a062ecf8/sm/2013912-1508859556436-AO46Still003.jpg","duration":881,"publication_date":"2017-10-24T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-rtx-london","changefreq":"weekly","video":[{"title":"2017:E39 - RTX London","description":"Burnie travels to London with several RT staff to put on the first ever RTX London. He talks about the crew’s experiences overseas and what it’s like holding a convention for the first time in a new city.\n\nMUSICGo to Sleep 6\n\n\n\n\n\nStory and post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-rtx-london","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13e7a2f9-2172-473b-a2e1-ce532e6a23e9/sm/1601067-1508781339736-bvrtxl.png","duration":580,"publication_date":"2017-10-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-46-wghi4kh","changefreq":"weekly","video":[{"title":"2017:E46 - Blaine's Male Parts Mummy - #46","description":"Join Barbara Dunkelman,Mica Burton, Blaine Gibson, and Mariel Salcedo as they discuss a pillow pet confessional, shipping people, and a question from the Box of Issues! This episode brought to you by MVMT (http://bit.ly/2xJDj8o) and Texture (http://bit.ly/2eHhu5O)","player_loc":"https://roosterteeth.com/embed/always-open-2017-46-wghi4kh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f03f84ea-f73e-4be3-a0a7-4eb7ff6d06ee/sm/690915-1508529965796-tempthumb.jpg","duration":3117,"publication_date":"2017-10-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-300-iugh","changefreq":"weekly","video":[{"title":"2017:E300 - Favorite RTAAs That Definitely, Probably, Might Have Happened","description":"Burnie and Gus improv their way to remembering their favorite RTAAs and the results are out of this world. \n\nAnimated by: Jordan Battle, Andrew Lhotsky, William Ball, and Quinn WestonDirected by: Jordan Cwierz, Jordan Battle, Andrew Lhotsky \n\n\n\n\n\nBecome a FIRST member: https://roosterteeth.com/FIRST","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-300-iugh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a2b50cb-dab3-4c7d-b9bc-fa68af5b105f/sm/3014926-1508527713900-rtaa300tn.jpg","duration":297,"publication_date":"2017-10-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-2-3-ghi4hth4","changefreq":"weekly","video":[{"title":"V5:E2 - Volume 5, Chapter 2: Dread in the Air","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-2-3-ghi4hth4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee953af2-c929-474f-84c8-2c7950c5ffe1/sm/3014926-1508429151038-RWBYvolume5episode2Thumbnail.jpg","duration":1264,"publication_date":"2017-10-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/c-r-w-b-y-behind-the-episode-1-2","changefreq":"weekly","video":[{"title":"1:E2 - Anima Skies Fight","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/c-r-w-b-y-behind-the-episode-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70240d04-2a3f-4c77-bc24-4cf432179253/sm/3014926-1508429567424-CRWBYvolume1episode2Thumbnail.jpg","duration":219,"publication_date":"2017-10-21T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-39","changefreq":"weekly","video":[{"title":"2017:E39 - Ripped 14 Year Olds - #39","description":"Join Cole, Gray, Miles, Yssa, and Austin as they discuss New Netflix anime titles, cultural defining anime, Rokka: Braves of the Six Flowers and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e4b570b-a403-4fd7-90cc-1fc378e7e6f1/sm/671784-1508535528231-unnamed.png","duration":3733,"publication_date":"2017-10-21T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-alien-isolation","changefreq":"weekly","video":[{"title":"2017:E40 - Alien Isolation: Last Survivor","description":"2Spooky October brings Kyle and Miles back to the Nostromo, back to the stress, the fear, the crushing anxiety. It brings them back to their lovely and deadly Xenomorph named Scoops. Poor Scoops has had no one to play with for a whole year, I wonder if he'll be excited to see Kyle and Miles? I know our boys will be screaming when they see Scoops.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-alien-isolation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d9d6596-c3d7-4bf0-886b-20eaa4ca97e3/sm/3014926-1508518385512-Webp.net-resizeimage_4.png","duration":4101,"publication_date":"2017-10-20T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-113-gjiogj","changefreq":"weekly","video":[{"title":"S9:E14 - For the Win #113","description":"S9:E14 - For the Win #113","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-113-gjiogj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b7e40db-ef38-4e13-b311-4fe823c27a22/sm/3014926-1508519283525-OTS_Stream.00_37_24_22.Still002.png","duration":700,"publication_date":"2017-10-20T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-113-g4hij5","changefreq":"weekly","video":[{"title":"S9:E113 - Dracula Fights Werewolf - On The Spot #113","description":"One grown man screams at another grown man about memes, Jesus helps another team score some big points and Dracula fights Werewolf just in time for Halloween. This episode originally aired October 18, 2017, and is sponsored by Blue Apron (http://cook.ba/2l0pwsz) and Beachbody on Demand (http://bit.ly/2wekldC)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-113-g4hij5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a56787b-c396-4b68-a53e-678113958395/sm/690915-1508420659562-tempthumb.jpg","duration":2714,"publication_date":"2017-10-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-rewind-1-1-g3goig3","changefreq":"weekly","video":[{"title":"1:E1 - Ruby Rose Rewinds With Us - #1","description":"Join Chad James and Yssa Badiola as they discuss the season premiere of Rwby Volume 5 and talk with the voice of Ruby, Lindsay Jones. Also, get a FIRST Look at RWBY Volume 5 Episode 2. ","player_loc":"https://roosterteeth.com/embed/rwby-rewind-1-1-g3goig3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3977c78c-eaf0-42e2-a14f-bbd320e08566/sm/690915-1508345512077-RWBYRW01_-_THUMB.jpg","duration":1685,"publication_date":"2017-10-18T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-462-post-show-eoihrhl","changefreq":"weekly","video":[{"title":"2017:E52 - Terrified of Space - Podcast #462 Post Show","description":"Join Brandon Farmahini, Tyler Coe, Mariel Salcedo, and Jon Risinger as they discuss space travel, Disneyland, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-462-post-show-eoihrhl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4ceda7bc-4e0e-41a4-9980-577be9543aab.jpg/sm/rtp462 - PS - THUMB.jpg","duration":948,"publication_date":"2017-10-18T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-462-ogirlkh","changefreq":"weekly","video":[{"title":"2017:E462 - Jon Wants to Touch the Rock - #462","description":"Join Brandon Farmahini, Tyler Coe, Mariel Salcedo, and Jon Risinger as they discuss horror movies, hypothetical situations, celebrities they want to meet, and more on this week's RT Podcast! This episode originally aired on October 16, 2017, sponsored by MeUndies (http://bit.ly/2yurK8H), NatureBox (http://bit.ly/2yuseM3), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-462-ogirlkh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ece96c01-875b-4a03-bbfd-1bc74ef776b1.jpg/sm/RT_Podcast_462_2_thumbnail.jpg","duration":5403,"publication_date":"2017-10-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-45-gheiutkh","changefreq":"weekly","video":[{"title":"2017:E33 - Still Open #45","description":"Join Barbara Dunkelman, Max Kruemcke, Maggie Tominey, and Mariel Salcedo as they discuss Maggie's affinity with.... hot buffalo wings.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-45-gheiutkh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4dd4c78-15d2-4f47-946f-7a57e74d40e7/sm/690915-1508255838268-AO45_-_PS_-_Thumb_v1.jpg","duration":731,"publication_date":"2017-10-17T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-bus","changefreq":"weekly","video":[{"title":"2017:E38 - Burnie's New Bus","description":"Burnie, Ellie, Marcus, and Chelsea check out Burns’ latest purchase: a school bus conversion for work and travel. Burnie’s relying on Marcus to transform the RV into a functional office space, but while he and Ellie are away, Max comes to play…\n\n\n\n\n\nMUSICGo to Sleep 6Tales (instrumental) - RaminBig Boys - Jan ChmelarMoneyMoneyMoney - Daniel Gunnarsson\n\n\n\n\n\n\n\nStory and post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-bus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc60334c-36fe-4964-834b-4512e536e2b2.jpg/sm/Burnie_Vlog_10.16_2_thumbnail.jpg","duration":695,"publication_date":"2017-10-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-45-iughekjg","changefreq":"weekly","video":[{"title":"2017:E45 - Barbara Becomes Britney - #45","description":"Join Barbara Dunkelman, Max Kruemcke, Maggie Tominey, and Mariel Salcedo as they discuss their favorite Halloween memories, shattered dreams, and self-care! This episode brought to you by Casper (http://bit.ly/2d7S00q) and Lyft (http://lft.to/2xkPlF2)","player_loc":"https://roosterteeth.com/embed/always-open-2017-45-iughekjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c8806bf-176f-49e9-b944-5b7acbd85cc4/sm/690915-1508161503015-temp_thumb.jpg","duration":3604,"publication_date":"2017-10-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-299-goi4gl","changefreq":"weekly","video":[{"title":"2017:E299 - Chris' Fake Fiance","description":"Chris arrives early for his Tinder date, and is roped into saving a complete stranger from her pursuer. Together, they come up with a lie that may deter the man, but Chris might get more than he bargained for in return. \n\nAudio from Rooster Teeth Podcast #448\n\n\n\n\n\nAnimated by: Beth Mackenzie and Quinn WestonDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-299-goi4gl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/760c6031-ccad-422a-b8f2-fca0da923aa6.jpg/sm/rtaa299tn.jpg","duration":178,"publication_date":"2017-10-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-5-1-fg2398gj","changefreq":"weekly","video":[{"title":"V5:E1 - Volume 5, Chapter 1: Welcome to Haven","description":"Ruby, Weiss, Blake, and Yang are each entangled in journeys of their own, but they all share one destination: Haven Academy. Whether it's the promise of ancient relics, mystical maidens, or simply more power, it's clear that the stage for the next great battle for Remnant has been chosen. The question is, with so many players in this game, who's going to come out on top?","player_loc":"https://roosterteeth.com/embed/rwby-volume-5-1-fg2398gj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f8cf640e-7111-468c-bf77-abc47533936d.jpg/sm/RWBYvolume5episode1Thumbnail (1).jpg","duration":1383,"publication_date":"2017-10-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/c-r-w-b-y-behind-the-episode-1-1-v983gh3g","changefreq":"weekly","video":[{"title":"1:E1 - The Start","description":"Join CRWBY as they open the studio doors for an in depth look on how each episode was made. Kerry, Miles and the team will walk you through the 3D pipeline and talk about how art, tech, post, and animation come together to create RWBY.","player_loc":"https://roosterteeth.com/embed/c-r-w-b-y-behind-the-episode-1-1-v983gh3g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/771276ba-a425-419c-bee0-c9977028378f.jpg/sm/CRWBYvolume1episode1Thumbnail.jpg","duration":188,"publication_date":"2017-10-14T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-38-gheoigh","changefreq":"weekly","video":[{"title":"2017:E38 - Bring Me Back to Love - #38","description":"Join Cole, Yssa, Austin, Kdin, and Mica as they discuss Sailor Moon Live Action, My Hero Academia season finale, the new Fan Service Anime Book Club show and more this week on Fan Service! ","player_loc":"https://roosterteeth.com/embed/fan-service-2017-38-gheoigh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fed6d457-728f-4700-9426-e3bbf921da4c/sm/1601067-1507935429178-fs38.png","duration":5551,"publication_date":"2017-10-14T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-bendy-and-the-ink-machine","changefreq":"weekly","video":[{"title":"2017:E39 - Bendy and the Ink Machine","description":"2Spooky October continues with Bendy and the Ink Machine! What horrors will Kyle and Miles find in the inky black heart of this once beloved animation studio? Monsters? Ghouls? Or the scariest thing of all...a sprint button that doesn't work?!","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-bendy-and-the-ink-machine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f5ffe16-8388-472e-904d-426a2dbafd9d.jpg/sm/BC_BENDY_THUMB.jpg","duration":7964,"publication_date":"2017-10-13T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-112-goigj4","changefreq":"weekly","video":[{"title":"S9:E13 - For the Win #112","description":"S9:E13 - For the Win #112","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-112-goigj4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7f0c1c4f-ac37-4a6d-b194-686219a12864.png/sm/Screen Shot 2017-10-12 at 5.37.47 PM.png","duration":736,"publication_date":"2017-10-13T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-112-geoirgh","changefreq":"weekly","video":[{"title":"S9:E112 - Trevor Gets Bamboozled! - #112","description":"One team is hiding a deep dark secret that will haunt the rest of the cast and the Halloween crab comes out of its shell. This episode originally aired October 11, 2017, and is sponsored by Felix Gray (http://bit.ly/2kHzuiF) and Quip (http://bit.ly/2kF1fIu)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-112-geoirgh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/30d80fb6-a2a9-4632-8dcb-da0ea3361f6b.jpg/sm/On_the_Spot_112_thumbnail.jpg","duration":2332,"publication_date":"2017-10-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-461-post-show-3-hvik","changefreq":"weekly","video":[{"title":"2017:E51 - Not My Job to Make Money - #461 RT Podcast Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Swedish Fish, injuries, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-461-post-show-3-hvik","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9eb7290d-2779-4530-b9e4-f769de258b3f/sm/1601067-1507845069274-rtp461ps.png","duration":1252,"publication_date":"2017-10-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-splitting-pellets-with-a-knife","changefreq":"weekly","video":[{"title":"S1:E80 - Splitting Pellets with a Knife","description":"When you throw a lump of metal a very sharp piece of metal, sharp piece of metal wins. You can't see it with your eyeball, but thankfully Gav and Dan are here. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-splitting-pellets-with-a-knife","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/529717cf-857a-4857-8f81-abc904b3bee7/sm/82-1507749171929-Screen_Shot_2017-10-11_at_13.59.57.jpg","duration":585,"publication_date":"2017-10-11T12:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-461-vh5oi4b","changefreq":"weekly","video":[{"title":"2017:E461 - Who Cares About Szechuan Sauce? - #461","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss McDonald’s Szechuan Sauce, social media, the Adpocalypse, and more on this week's RT Podcast! This episode originally aired on October 9, 2017, sponsored by Audible (http://adbl.co/2hZAT31), Blue Apron (http://cook.ba/29J4MMj), and Casper (http://bit.ly/2bgC0nt)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-461-vh5oi4b","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35aa65ea-57d6-4582-8ddd-6550c9b90c3a/sm/661278-1507597956050-RTPTempThumb.jpg","duration":5712,"publication_date":"2017-10-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-44-eiobtbt","changefreq":"weekly","video":[{"title":"2017:E32 - Still Open #44","description":"Join Barbara Dunkelman, Arryn Zech, Lindsay Jones, and Kara Eberle as they discuss how to tell if someone is right for you.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-44-eiobtbt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1258bf6e-3f4e-4cec-8119-2894bf5f67fe.png/sm/AO Site.00_00_46_07.Still003.png","duration":869,"publication_date":"2017-10-10T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-making-a-sword-belt","changefreq":"weekly","video":[{"title":"2017:E37 - Making a Sword Belt","description":"After Burnie instructed Ellie to prepare for a potential apocalypse by constructing her own sword, she turned to Rooster Teeth AD and part-time leather worker Drew Saplin to teach her how to construct a functional dual wielding sword belt. Click here to watch Ellie and Burnie make a sword. MUSIC Go to Sleep 6 Story and post-producer: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-making-a-sword-belt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b1c93bf-a8c1-43ad-a428-98ea478f4cbf.jpg/sm/Burnie_Vlog_10.9_1_thumbnail.jpg","duration":1063,"publication_date":"2017-10-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-44-bori5jny","changefreq":"weekly","video":[{"title":"2017:E44 - RWBY Ladies Reunite - #44","description":"Join Barbara Dunkelman, Arryn Zech, Lindsay Jones, and Kara Eberle as they discuss the upcoming RWBY season, insecurities, and compatibility. This episode is sponsored by Boll and Branch (http://bit.ly/2qasJo9) and MeUndies (http://bit.ly/2oqytsJ)","player_loc":"https://roosterteeth.com/embed/always-open-2017-44-bori5jny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/372ed697-84dc-46ec-85f8-24c3a38eddcd/sm/690915-1507318959271-temp_thumb.jpg","duration":3788,"publication_date":"2017-10-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-298-398-hvi","changefreq":"weekly","video":[{"title":"2017:E298 - Geoff's Spring Break Spite Beard","description":"Geoff has had it with Griffon taking his razor and grows a beard out of spite - He also recalls the last time he blacked out and things get wild. \n\nAudio from Off Topic #51\n\n\n\nAudio from RT Sponsor Cut\n\n\n\n\n\n\n\nAnimated by: Tanya Fetzer and William BallDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-298-398-hvi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1fad1640-9aea-488e-8eab-f0045cbd667e.jpg/sm/rtaa298tn.jpg","duration":120,"publication_date":"2017-10-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-22-vj389jb","changefreq":"weekly","video":[{"title":"S2:E22 - Episode 22 - Battle of the Bands","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-22-vj389jb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fa33d494-d1a2-451e-8330-fb53889a2d04.jpg/sm/RWBYChibiEp022Thumbnail.jpg","duration":237,"publication_date":"2017-10-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-spooky-s-jump-scare-mansion","changefreq":"weekly","video":[{"title":"2017:E38 - Spooky's Jump Scare Mansion","description":"It's October and things are getting a little spooky around the office, some might say 2Spooky. Our boys are playing a different spooky game every week in October. This week it's Spooky's Jump Scare Mansion. I know this looks cute and delightful now but trust me, things are not always what they seem.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-spooky-s-jump-scare-mansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/edece762-f9e7-415f-b74a-938ef6da8819.png/sm/BC_SMJS_THUMB_01.png","duration":3341,"publication_date":"2017-10-06T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-111-gjio4gj","changefreq":"weekly","video":[{"title":"S9:E12 - For the Win #111","description":"Featuring Jeremy Dooley, Matt Bragg, Cole Gallian, and Stan Lewis.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-111-gjio4gj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbfb5b94-1a34-4d5d-9b60-f2fd05ff6dec/sm/1601067-1507845207016-ots111ps.png","duration":577,"publication_date":"2017-10-06T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-halloween","changefreq":"weekly","video":[{"title":"S2:E13 - Halloween Special - NIGHT OF THE LIVING ILL","description":"An epidemic of illness is spreading throughout the camp, causing its victims to turn into snot-nosed zombies. It's up to the few kids spared to find a cure!","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-halloween","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f44fbb8-6021-4f7a-90d8-6597bd782156.jpg/sm/CC2_Ep13_tn.jpg","duration":752,"publication_date":"2017-10-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-111-hroiht","changefreq":"weekly","video":[{"title":"S9:E111 - JUST ENOUGH SPOOKY - #111","description":"Featuring Jeremy Dooley, Matt Bragg, Cole Gallian, and Stan Lewis. This episode originally aired October 4, 2017, and is sponsored by Audible (http://adbl.co/2fRk7T4) and Dollar Shave Club (http://bit.ly/2fS8AmC)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-111-hroiht","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ff0c943-1e67-4585-baea-bbd58f04e8e4/sm/661278-1507162508387-OTSTempThumb.jpg","duration":2327,"publication_date":"2017-10-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-460-post-show-049-ubo4","changefreq":"weekly","video":[{"title":"2017:E50 - Jon and Ashley Keep Secret From Burnie - Podcast #460 Post Show","description":"Join Gus Sorola, Burnie Burns, Jon Risinger, and Ashley Jenkins as they discuss bad network television, Twitter, stress dreams, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-460-post-show-049-ubo4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/901c3644-ae6f-4873-bb58-415b8b9a5581.jpg/sm/rtp460 - PS - THUMB.jpg","duration":1429,"publication_date":"2017-10-04T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-460-v3voj5g","changefreq":"weekly","video":[{"title":"2017:E460 - Burnie Punks Jon - #460","description":"Join Gus Sorola, Burnie Burns, Jon Risinger, Barbara Dunkelman, and special guest Morla Gorrondona as they discuss The SAG voice actor strike, gun laws, dating apps, and more on this week's RT Podcast! This episode originally aired on October 2, 2017, sponsored by Bombas (http://bit.ly/2yk5oHZ), ProFlowers (http://bit.ly/2yl4xa0), and Squarespace (http://bit.ly/1SPgAL3) ","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-460-v3voj5g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7013ef11-4ef5-46c8-b210-41e9093f72e5.jpg/sm/RT_Podcast_460_1_thumbnail.jpg","duration":5601,"publication_date":"2017-10-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-43-vjoeijb","changefreq":"weekly","video":[{"title":"2017:E31 - Still Open #43","description":"Join Barbara Dunkelman, Miles Luna, Mariel Salcedo, and special guest Reina Scully as they discuss their favorite Halloween parties.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-43-vjoeijb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eba0dff9-94d1-48af-9a3a-6c4aa798aeb6.jpg/sm/AO43 - PS - Thumb v2.jpg","duration":919,"publication_date":"2017-10-03T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-streamys-edgewalk-and-barenaked-ladies","changefreq":"weekly","video":[{"title":"2017:E36 - Streamys, Edgewalk, and Barenaked Ladies","description":"Burnie and Ashley head to Los Angeles to host the first ever Purpose Awards as well as support the Rooster Teeth family at the Streamys. Then it's away to Toronto, where Burnie and Ellie help out on the set of the Barenaked Ladies' latest music video. Finally, Burnie surprises Ellie with a trip to the CN Tower's Edgewalk to continue her apocalypse training.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-streamys-edgewalk-and-barenaked-ladies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c946fd0-e32f-4792-b6ed-d3da7fd3efc0.png/sm/bnlthumbnailv2.png","duration":741,"publication_date":"2017-10-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-43-rth5y","changefreq":"weekly","video":[{"title":"2017:E43 - Reina Scully Breaks Down Hentai - #43","description":"Join Barbara Dunkelman, Miles Luna, Mariel Salcedo, and special guest Reina Scully as they discuss Reina's Hentai preferences, their favorite Halloween costumes, and a question about high school sweethearts.","player_loc":"https://roosterteeth.com/embed/always-open-2017-43-rth5y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a05188c-5da6-4d33-affb-33067a121bec/sm/690915-1506951389946-AO_Site.00_01_22_04.Still002.png","duration":3255,"publication_date":"2017-10-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-297-h3goi3lh","changefreq":"weekly","video":[{"title":"2017:E297 - TP and PP on the Seat","description":"Chris has some weird bathroom habits that he gets called out on.\n\nAudio from Off Topic # 88\n\n\n\nAnimated by: Gil Calceta, Andrew Lhotsky, and Gabe SilvaDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-297-h3goi3lh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23918233-f090-4057-8f04-7cc729462d7c/sm/2013912-1506614836439-rtaa297tn.jpg","duration":184,"publication_date":"2017-10-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-21-gh3ghi3","changefreq":"weekly","video":[{"title":"S2:E21 - Episode 21 - Happy BirthdayWeen","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-21-gh3ghi3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d97b8c0-8a3c-4706-85ca-9fda4eb24c1f/sm/3014926-1506733209124-RWBYChibiEp021Thumbnail.jpg","duration":182,"publication_date":"2017-09-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-37","changefreq":"weekly","video":[{"title":"2017:E37 - Who's Your Daddy? - #37","description":"Join Kerry, Gray, Miles, Cole, Yssa, Austin ans special guest Reina Scully as they discuss Blade Runner 2022, My Hero Academia, profesional voice actors and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1547624-3c93-4795-8e1b-612418380b27/sm/2013912-1506713015609-Untitled-1.png","duration":4849,"publication_date":"2017-09-30T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dread-out-4","changefreq":"weekly","video":[{"title":"2017:E37 - DreadOut #4 - Mirror, Mirror, on the Wall","description":"Kyle and Miles have fought ghosts, and they have run from ghosts, but did they ever consider trying to sit down and talk to a ghost? Maybe these ghosts are just misunderstood, maybe the woman in the red dress just wants to be friends, maybe the ghost that killed Doni was just trying to give him a neck massage and her hand slipped, I don't know, but what I do know is that this is the last episode of DreadOut.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dread-out-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5071d51b-3181-4f21-b4d5-465776ecd09d.jpg/sm/BC_DredOut_THUMB_04.jpg","duration":5659,"publication_date":"2017-09-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-110-8-gieb","changefreq":"weekly","video":[{"title":"S9:E11 - For the Win #110","description":"If you can guess all the accents Ashley used in this episode you win a prize.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-110-8-gieb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/06a65d5e-37d8-43fc-8b1f-27acac41650d.png/sm/Screen Shot 2017-09-29 at 12.38.14 PM.png","duration":561,"publication_date":"2017-09-29T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-110-gh3gj","changefreq":"weekly","video":[{"title":"S9:E110 - NOW FAMILY FRIENDLY - #110","description":"Featuring Ellie Main, Ashley Jenkins, Gus Sorola, and Andy Blanchard. This episode originally aired September 27, 2017, and is sponsored by MVMT (http://bit.ly/2fyoK4g) and Beachbody on Demand (http://bit.ly/2wekldC)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-110-gh3gj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cacf3ba-1f4e-49e5-a89b-58536e26ea49/sm/1601067-1506630163051-On_the_Spot_110_1_thumbnail.jpg","duration":2716,"publication_date":"2017-09-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-459-post-show-hv49hv","changefreq":"weekly","video":[{"title":"2017:E49 - Pizza Post Show - Podcast #459 Post Show","description":"Join Gus Sorola, Blaine Gibson, Chris Demarais, and Jon Risinger as they discuss fast food pizza, Las Vegas, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-459-post-show-hv49hv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66b23c39-28a1-41bc-a4a2-e0c5c7ff6ba6/sm/2013912-1506525990489-RTP459_Jon_Frustrated.png","duration":1445,"publication_date":"2017-09-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-459-oevhii","changefreq":"weekly","video":[{"title":"2017:E459 - Triggered by Social Media - #459","description":"Join Gus Sorola, Blaine Gibson, Chris Demarais, and Jon Risinger as they discuss conflicts with one another, dreams, nude scenes, and more on this week's RT Podcast! This episode originally aired on September 25, 2017, sponsored by MeUndies (http://bit.ly/2aGm9yg), Skillshare (http://skl.sh/2hu231E), TrackR (http://bit.ly/2hskBPZ)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-459-oevhii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/828a5625-8f6b-4fb9-895b-a6911d7237a6/sm/690915-1506440033051-temp_thumb.jpg","duration":5951,"publication_date":"2017-09-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-42-eigheih","changefreq":"weekly","video":[{"title":"2017:E30 - Still Open #42","description":"Join Barbara Dunkelman, Tyler Coe, Mariel Salcedo, and special guest Mia Khalifa as they discuss a user submitted question about the female orgasm!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-42-eigheih","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73271a20-b625-4768-9b76-ca918d7e2c2e/sm/2013912-1506376079290-AO42_-_PS_-_Thumb_v1.jpg","duration":884,"publication_date":"2017-09-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-sniper-school","changefreq":"weekly","video":[{"title":"2017:E35 - Sniper School","description":"Burnie sends Ellie off to Barksdale, TX for long range weapons traning. A British fish out of water, Ellie acompanies the FTW Ranch team on a net gunning mission, a super long range attempt and a tannerite explosion, whilst undergoing a two day training course that ends in a \"not competition\"....but did she win? \n\n\n\n\n\nMusic: \"Down And Dirty\" John August Pregler, \"Get Dirty Again\" John August Pregler, Bernard James II Perry, \"Country Strut\" David John Vanacore, Matt Koskenmaki, \"Hogs in the Mud A\" Michael Alan Raphael, \"Boondock Rock\" David John Vanacore, Matt Koskenmaki, \"Kneeds in the Dirt\" Nikky French, \"Big Swamp\" Christopher James Goulstone, Keith Peter Christmas. Story and Post Producer: Chelsea Harfoush. Special thanks to Tim Fallon, Dave Knesek and all the folks at FTW Ranch! ftwsaam.com/","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-sniper-school","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64c62848-9d3d-42e9-8ec5-2e130e5ce211/sm/2013912-1506360615873-Burnie_Vlog_9.25_2_thumbnail.jpg","duration":1008,"publication_date":"2017-09-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-42-b4b5yj","changefreq":"weekly","video":[{"title":"2017:E42 - Mia Khalifa's Hard Core Parkour - #42","description":"Join Barbara Dunkelman, Tyler Coe, Mariel Salcedo, and special guest Mia Khalifa as they discuss Mia's Twitch streaming, their dating lives being affected by their careers, and more! This episode is sponsored by Lyft (http://lft.to/2k09gCG) and MVMT (http://bit.ly/2y3QkOt)","player_loc":"https://roosterteeth.com/embed/always-open-2017-42-b4b5yj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb3c4068-0f83-45ce-9c7f-ffc0f6f2c7a0/sm/690915-1506266244371-AO_Site_Copy_01.00_41_26_09.Still003.png","duration":3238,"publication_date":"2017-09-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-296-30-gu34i","changefreq":"weekly","video":[{"title":"2017:E296 - Don't Trust the Blue","description":"Burnie recalls the first time he ever blacked out from drinking.\n\nAudio from Rooster Teeth Podcast #443 Post Show\n\n\n\nAnimated by: Willaim Ball and Jordan BattleDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-296-30-gu34i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc9d638c-ed1f-4803-9f79-7c5bb96f4a40/sm/3014926-1506092880005-rtaa296tn.jpg","duration":153,"publication_date":"2017-09-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-8-u4i4g7h","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 8: Dawn","description":"The morning comes with revelations and consequences.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-8-u4i4g7h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37c71e42-7805-48f2-beca-8e3ff838f507/sm/2013912-1505244995017-D5S2_EP208_THUMBNAIL_RT.png","duration":2790,"publication_date":"2017-09-24T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-20-vjigo3","changefreq":"weekly","video":[{"title":"S2:E20 - Episode 20 - Monsters of Rock","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-20-vjigo3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b75310d-20e3-4560-9caa-3525db1fe810/sm/3014926-1506116476089-RWBYChibiEp20Thumbnail.jpg","duration":168,"publication_date":"2017-09-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dread-out-3","changefreq":"weekly","video":[{"title":"2017:E36 - DreadOut #3 - Lenny G","description":"Kyle and Miles have obtained the scissors, the ONLY thing that can cut rope apparently. Now nothing is stopping them from going to the front of the school and using the keys to open the door. Oh, TOTALLY unrelated but how do you feel about swarms of locus and/or rats crawling on your face?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dread-out-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9516553-c060-4b92-9a5c-fab9e347a1f9/sm/3014926-1506104288999-BC_DredOut_THUMB_03.jpg","duration":3176,"publication_date":"2017-09-22T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-458-post-show-b94hto","changefreq":"weekly","video":[{"title":"2017:E48 - Nobody Wants to Work for Disney - Podcast #458 Post Show","description":"Join Gus Sorola, Brandon Farmahini, Barbara Dunkelman, and Burnie Burns as they discuss Star Wars filming issues, Burnie’s bus, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-458-post-show-b94hto","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93b5b3d0-2622-482f-83c8-872b99f00fa3/sm/2013912-1505850908527-RTP458_Burnie_Happy.png","duration":1387,"publication_date":"2017-09-20T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-458-vieghi3","changefreq":"weekly","video":[{"title":"2017:E458 - The Sax Machine Plays On - #458","description":"Join Gus Sorola, Brandon Farmahini, Barbara Dunkelman, and Burnie Burns as they discuss the best people to travel with, playing musical instruments, losing stuff, and more on this week's RT Podcast! This episode originally aired on September 18, 2017, sponsored by Maltesers (http://bit.ly/2rxjbDQ), Dollar Shave Club (http://bit.ly/2xMcCUD), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-458-vieghi3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e8a5da5-9b30-4ac2-9809-3d15ddaeb08c/sm/2309941-1505826491853-RTP458_Burnie_Offended.png","duration":6099,"publication_date":"2017-09-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-41-jio3hv","changefreq":"weekly","video":[{"title":"2017:E29 - Still Open #41","description":"Join Barbara Dunkelman and Mariel Salcedo as they sit down with everyone's favorite bartender, Texas Dela Rosa, as they discuss his recent diagnosis with Bell's Palsy.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-41-jio3hv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eddd23a-4de2-42cd-bf3a-5085652f36a8/sm/2013912-1505762149327-AO41_-_PS_-_Thumb_v3.jpg","duration":919,"publication_date":"2017-09-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-what-s-that-smell","changefreq":"weekly","video":[{"title":"2017:E65 - What's That Smell?","description":"After a horrifyingly bad odor starts overwhelming the office, Max and Marcus take it upon themselves to discover the source and dispose of it.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-what-s-that-smell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b375280-3bc0-4fa7-9713-4016501381bc/sm/2013912-1505751078372-RT_Life_Hell_Fridge_thumbnail.jpg","duration":156,"publication_date":"2017-09-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-ellie-learns-krav-maga","changefreq":"weekly","video":[{"title":"2017:E34 - Ellie Learns Krav Maga","description":"Burnie wants his assistant to be prepared to protect him from any danger, so Ellie turns to The Know's Eddy Rivas - who happens to be a certified Krav Maga instructor. Miles...helps. MusicGo To Sleep 6. British Invasion 6 - Bjorn SkogsbergMe and My Dirt 3 - Niklas Gustavsson\n\nhttp://lionskravmaga.comStory & post-producer - Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-ellie-learns-krav-maga","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5d0ec98-0587-4702-8982-8233b5243181/sm/2013912-1505762723843-Burnie_Vlog_9.18_2_thumbnail.jpg","duration":660,"publication_date":"2017-09-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-41-goi3jb","changefreq":"weekly","video":[{"title":"2017:E41 - When Becca's Bike Broke Her - #41","description":"Join Barbara Dunkelman, Becca Frasier, Patrick Matthews, and Mariel Salcedo as they discuss going to the movies, doctor visits, and a question about being interested in someone who is unavailable! This episode is brought to you by Casper (http://bit.ly/2d7S00q), Lyft (http://lft.to/2xkPlF2), and MeUndies (http://bit.ly/2xkzoyS).","player_loc":"https://roosterteeth.com/embed/always-open-2017-41-goi3jb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30174e88-e188-4a74-b825-c0a65487d7d9/sm/2013912-1505761493822-Always_Open_41_1_thumbnail.jpg","duration":2937,"publication_date":"2017-09-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-295-doih53","changefreq":"weekly","video":[{"title":"2017:E295 - Tornado Punches","description":"Both Jeremy and Chris have stories about punches thrown during a Tornado. What are the odds?\n\nAudio from Off Topic #88\n\n\n\nAnimated by: Quinn Weston and Andrew LhotskyDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-295-doih53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b145e46-630d-495c-9ec1-47aef5c0986b/sm/2013912-1505494701365-rtaa295tn.jpg","duration":144,"publication_date":"2017-09-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-7-nf83hjg","changefreq":"weekly","video":[{"title":"S2:E7 - Episode 7: Apnea","description":"Forces converge on the Oasis and the battle for the sleep zone begins.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-7-nf83hjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c13653c7-e9c5-409e-8247-6aa1367e0ff4/sm/2013912-1505244931056-D5S2_EP207_THUMBNAIL_RT.png","duration":2518,"publication_date":"2017-09-17T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-19-gh39gh","changefreq":"weekly","video":[{"title":"S2:E19 - Episode 19 - Steals and Wheels","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-19-gh39gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5aca490-d688-498d-8561-4ad4497adf39/sm/2013912-1505496426188-RWBYChibiEp019Thumbnail.jpg","duration":248,"publication_date":"2017-09-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dread-out-2-get-schwifty","changefreq":"weekly","video":[{"title":"2017:E35 - DreadOut #2 - Get Schwifty ","description":"It's Friday, you're done for the day, it's time to sit down, relax, and enjoy some videos right? That may be true for everyone else in the world but Kyle and Miles got after school detention. For what? I don't know, but what I do know is that the teacher forgot about our boys and locked them in for the night. So now Kyle and Miles have to brave a school haunted by a pig, some white haired harlot, and a principal with mental issues. The only thing standing between them and these ferocious phantoms is the camera on their smartphone. I hope they brought a charger.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dread-out-2-get-schwifty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e7dd73c-0a7e-4293-9960-27b14fd864e7/sm/2013912-1505507551949-BC_DredOut_THUMB_02.jpg","duration":3374,"publication_date":"2017-09-15T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-9-hg48yg","changefreq":"weekly","video":[{"title":"1:E9 - The Championship! - #9","description":"Rooster Teeth, Achievement Hunter, Game Attack, and Funhaus take an insane drive to the Championship with Rocket League. This episode originally aired September 12, 2017 and is sponsored by MVMT (http://bit.ly/2xt5QyS) and SeatGeek (http://bit.ly/2tgjzaR).","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-9-hg48yg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2c0279f-c1dd-4fe0-948c-f418bd13c105/sm/2013912-1505321106559-TNGF_Championship_3_thumbnail.jpg","duration":4734,"publication_date":"2017-09-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-457-post-show-kjfhj","changefreq":"weekly","video":[{"title":"2017:E47 - Mustache Discord - Podcast #457 Post Show","description":"Join Gus Sorola, Jon Risinger, Blaine Gibson, and Barbara Dunkelman as they discuss toys from their going to movies by yourself, the Austin “gas crisis”, and more on this week's RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-457-post-show-kjfhj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e7b88c-27be-4f75-9a68-f7e56eb27b04/sm/2013912-1505324091146-RTP457_Site.00_15_21_06.Still007.png","duration":1873,"publication_date":"2017-09-13T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-457-goigu","changefreq":"weekly","video":[{"title":"2017:E457 - He Loves Barbies - #457","description":"Join Gus Sorola, Jon Risinger, Blaine Gibson, and Barbara Dunkelman as they discuss toys from their childhood, controversies, shooting guns, and more on this week's RT Podcast! This episode originally aired on September 11, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj), Casper (http://bit.ly/2bgC0nt), NatureBox (http://bit.ly/2jjKxOn)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-457-goigu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e852180b-7e8f-4b4e-b229-644eb3b0edb6/sm/2013912-1505235214987-RT_Podcast_457_2_thumbnail.jpg","duration":5903,"publication_date":"2017-09-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-40-gh498g4","changefreq":"weekly","video":[{"title":"2017:E28 - Still Open #40","description":"Join Barbara Dunkelman, Chris Demarais, and Mica Burton as they discuss a listener submitted question about someone who is concerned about spreading themselves too thin with their commitments.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-40-gh498g4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50c1fe51-4dc7-43fc-a13b-42815cd1af02/sm/2013912-1505163793552-AO_Site.jpg","duration":731,"publication_date":"2017-09-12T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-day-5-bts","changefreq":"weekly","video":[{"title":"2017:E64 - Sand Destroys the Day 5 Craft Services Table","description":"Chris, Aaron, and Josh give a glimpse behind the scenes of filming Day 5 season two, where they experienced sand, dirt, and the occasional karaoke dance party.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-day-5-bts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d51a4bb-2bb1-4384-91ac-6c144f979a11/sm/2013912-1505155613709-RT_Life_Day5_BTS_3_thumbnail.jpg","duration":128,"publication_date":"2017-09-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-harvey","changefreq":"weekly","video":[{"title":"2017:E33 - Harvey Donation Boxes","description":"Burnie and Ellie decide to see how long it takes to put together a \"Welcome Kit\" for those displaced from thier homes by Hurricane Harvey. Music: Go To Sleep, Limitless - Matt Cherne, Happy Ending 10 - Jonatan Järpehag. Story and Post Producer: Chelsea Harfoush.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-harvey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a389d01-d4c5-4288-a127-1e0e92eee630/sm/2013912-1505158050461-Burnie_Vlog_9.11_1_thumbnail.jpg","duration":805,"publication_date":"2017-09-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-40","changefreq":"weekly","video":[{"title":"2017:E40 - Barbara Finds Out She’s Big in Japan - #40","description":"Join Barbara Dunkelman, Chris Demarais, Mica Burton, and Mariel Salcedo as they help Mariel with a personal problem, discuss Mica's Japanese Adventures, and the talents they find attractive! This episode is brought to you by BioClarity (http://bit.ly/2eZSeI1) and Lyft (http://lft.to/2xkPlF2)","player_loc":"https://roosterteeth.com/embed/always-open-2017-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0336a29-96b9-456f-8724-80a45b57fa4f/sm/2013912-1505160159817-Always_Open_40_5_thumbnail.jpg","duration":3250,"publication_date":"2017-09-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-294-gh48gh","changefreq":"weekly","video":[{"title":"2017:E294 - Macaroni Makeout","description":"Jeremy talks about a couple that have no shame at the Macaroni Grill. How romantic.\n\nAudio from Off Topic #89\n\n\n\nAnimated by: Gil Calceta and Beth MackenzieDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-294-gh48gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55609744-e1e8-43a9-a0ca-bf38e47a85ba/sm/2013912-1504883232071-rtaa294tn.jpg","duration":125,"publication_date":"2017-09-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-6-nf93l4","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 6: Parasomnia","description":"As the fractured teams close in on the camp, a chance encounter pushes one hero to the breaking point. Aidan’s actions at the Oasis have unexpected consequences.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-6-nf93l4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3372e30-af09-43e6-b090-b3409bcb2e2f/sm/2013912-1504641351042-D5S2_EP206_THUMBNAIL_RT.png","duration":2682,"publication_date":"2017-09-10T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-456-post-show-ieugh","changefreq":"weekly","video":[{"title":"2017:E46 - The Environmental Episode - Podcast #456 Post Show","description":"Join Ashley Jenkins and Burnie Burns as they discuss hurricane season, wildfires, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-456-post-show-ieugh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33902af6-ce18-4962-969d-4afede0eb529/sm/2013912-1504908277813-RTP_Site.00_32_08_18.Still006.png","duration":889,"publication_date":"2017-09-09T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-18-hgi3ghk","changefreq":"weekly","video":[{"title":"S2:E18 - Episode 18 - The Fixer","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-18-hgi3ghk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7490eb1-9aaf-44ac-bf4f-f2ed31005504/sm/3014926-1504916325288-RWBYChibiEp018Thumbnail.jpg","duration":208,"publication_date":"2017-09-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-11","changefreq":"weekly","video":[{"title":"2017:E34 - DreadOut #1 - Definitely Not Fatal Frame","description":"It's under 90 degrees outside and in Texas that means it's fall and fall means it's time for some scary games. Indonesian horror game DreadOut made waves when it was first released so Miles bought it on Steam; problem is he was never brave enough to play it by himself so he brought it to Backwardz Compatible so Kyle can join in his misery.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25348e4d-5698-4d16-bf64-b6e851aadb3a/sm/2013912-1504908349376-BC_DredOut_THUMB.jpg","duration":3051,"publication_date":"2017-09-08T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-456-eoigh4","changefreq":"weekly","video":[{"title":"2017:E456 - Burnie and Ashley Air Their Grievances - #456","description":"Join Ashley Jenkins and Burnie Burns as they discuss their relationship, dieting, who plays more games, and more on this week's RT Podcast! This episode originally aired on September 7, 2017, sponsored by Boomerang (http://bit.ly/2jbo0TB), Bombas (http://bit.ly/2jaRTDC), LinkAKC (http://bit.ly/2vWfVYC)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-456-eoigh4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf137613-6f10-4103-a880-fedca2701704/sm/2013912-1504895465119-RT_Podcast_456_1_thumbnail.jpg","duration":4280,"publication_date":"2017-09-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-8-post-84-thjk","changefreq":"weekly","video":[{"title":"S1:E8 - RTAnimation Destroys Self - Post Fight Battle #8","description":"Blaine and Cole team up to defuse bombs and bro out in Rainbow Six Siege.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-8-post-84-thjk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/649169ba-a36d-4f8d-8455-51f9578f356e/sm/2013912-1504724118788-TNGF_AHvSA_PostShow_2_thumbnail.jpg","duration":571,"publication_date":"2017-09-07T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-8-gh4lkj","changefreq":"weekly","video":[{"title":"1:E8 - Michael Kills a Guy - #8","description":"Achievement Hunter and Screwattack fight for a spot in the playoffs during Rainbow Six Siege gameplay; Michael and Blaine employ morally questionable coaching techniques. This episode originally aired September 5, 2017 and is sponsored by SeatGeek (http://bit.ly/2w0uqqf)","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-8-gh4lkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa22e452-696f-4070-805e-6b39f3f0d4a5/sm/2013912-1504722947551-TNGF_AHvSA_thumbnail.jpg","duration":2365,"publication_date":"2017-09-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-455-post-show-eihu4","changefreq":"weekly","video":[{"title":"2017:E45 - Just In It For The Bones - Podcast #455 Post Show","description":"Join Chris Demarais, Aaron Marquis, Chad James, and Brandon Farmahini as they discuss being buried, a dangerous fetish, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-455-post-show-eihu4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ed9ed8e-9296-4888-9e94-f1cf3eb57507/sm/2013912-1504711596930-rtp455_-_PS_-_THUMB.jpg","duration":856,"publication_date":"2017-09-06T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-455-vehoh","changefreq":"weekly","video":[{"title":"2017:E455 - He Knocks Out Aaron - #455","description":"Join Chris Demarais, Aaron Marquis, Chad James, and Burnie Burns as they discuss getting knocked out, natural disasters, weird jobs, and more on this week's RT Podcast! This episode originally aired on September 4, 2017, sponsored by ProFlowers (http://bit.ly/2kI2inb), Squarespace (http://bit.ly/290ucbK)\n\n\n\n\n\n\n\n\n\nDonate to Hurricane Harvey relief on our GoFundMe page at http://bit.ly/2gDgmwV","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-455-vehoh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29303dcc-8a03-4d47-856e-acb0e6e4d7df/sm/2013912-1504635697949-RT_Podcast_456_5_thumbnail.jpg","duration":4864,"publication_date":"2017-09-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-39-hguho44","changefreq":"weekly","video":[{"title":"2017:E27 - Still Open #39","description":"Join Barbara Dunkelman, Josh Flanagan, Lindsay Jones, and Mariel Salcedo as they play a game of Quick Draw!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-39-hguho44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e428e615-090d-4dc8-9c63-4d9eb060cdb4/sm/2013912-1504629249957-AO39_-_PS_-_Thumb_v1.jpg","duration":774,"publication_date":"2017-09-05T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-rt-life-smg-bts-oobleck","changefreq":"weekly","video":[{"title":"2017:E63 - Oobleck Disaster!","description":"No one ever said making Oobleck was a clean, easy process. Max and Marcus find out the hard way how to prep the non-Newtonian substance for a Slow Mo Guys shoot.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-rt-life-smg-bts-oobleck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cbde6f7-e23e-4992-bc8d-a78a63bd9777/sm/2013912-1504625798183-RT_Life_Ooblek_thumbnail.jpg","duration":130,"publication_date":"2017-09-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-the-vlog-ellie-bails-out","changefreq":"weekly","video":[{"title":"2017:E32 - Machine Gun Helicopter","description":"Burnie is sent to Las Vegas to speak at the Game Stop conference. Whilst there, he organizes a part of Ellie's \"Skill Tree\" training...shooting a machine gun out of a helicopter.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-the-vlog-ellie-bails-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb4cf1bb-875a-4973-a5c4-4e42fe04865a/sm/2307869-1504557354086-Vegas_Thumb.png","duration":521,"publication_date":"2017-09-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-playerunknown-s-battlegrounds-desert-map-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E366 - PLAYERUNKNOWN'S Battlegrounds: Desert Map - AH Live Stream","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get $25 off your first wine box by going to: http://blueapron.com/AHLIVESTREAMWINE. The gang dives back into PUBG to check out the new test server desert map. Prepare for explosions, teamkilling, and more lightning rounds!","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-playerunknown-s-battlegrounds-desert-map-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9f6980d0-a91e-41b4-b70a-a46c7d20eee0.jpg/sm/pubg_stream.jpg","duration":2298,"publication_date":"2017-12-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-finding-bigfoot","changefreq":"weekly","video":[{"title":"2017:E36 - Battle Buddies - Finding Bigfoot","description":"Austin, Texas is being terrorized by a ferocious Big Foot. It's up to the Battle Buddies to save the city and capture the beastly squatch.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-finding-bigfoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c9d6806-61f2-43c4-a911-60a41c4a8933.jpg/sm/BBBIGFOOTTHUMB.jpg","duration":1792,"publication_date":"2017-12-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-ahwu-400-extra-intros","changefreq":"weekly","video":[{"title":"2017:E52 - AHWU 400 - Extra Intros!","description":"There were so many submited intros for AHWU #400 we wanted to share them all! For the latest episode of AHWU Click HERE","player_loc":"https://roosterteeth.com/embed/ahwu-2017-ahwu-400-extra-intros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c5c6b291-6bbb-4b7f-951b-d37422b8a273.jpg/sm/121817ahwuintros.jpg","duration":170,"publication_date":"2017-12-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-ultimate-chicken-horse-windmill-of-doom-part-4","changefreq":"weekly","video":[{"title":"2017:E362 - Ultimate Chicken Horse - Windmill of Doom (Part 4)","description":"It's time for some more Ultimate Chicken Horse! The trap placement is pretty brutal in this one.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-ultimate-chicken-horse-windmill-of-doom-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3a84c008-2d17-4575-a150-be2e5a496beb.jpg/sm/LPUltimateChickenHorsePt4.jpg","duration":1987,"publication_date":"2017-12-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-last-call-107","changefreq":"weekly","video":[{"title":"2017:E48 - Pretzel Pretzels - Last Call #107","description":"The AH Crew and special guests SungWon cho and Lawrence Sonntag stand up to talk about pretzels and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-2017-last-call-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fca71683-d4ad-4201-adca-d9bc05b2aa58.jpg/sm/OFF107psTHUMB.jpg","duration":982,"publication_date":"2017-12-17T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-400","changefreq":"weekly","video":[{"title":"2017:E51 - 400","description":"Special thanks to Pro Flowers for sponsoring today's episode. You can get 20% off roses or any other bouquet of $29 or more by going to http://ProFlowers.com, and using code “JackandGeoff” at checkout.\r\n\r\nIt's AHWU 400! Wow! Over the years, there's been fire, weapons, torture, and God knows what else. Why not celebrate AHWU's 400th birthday by watching all 400 episodes in a row? Then you can go on Jeopardy and impress Alex Trebek with all your fancy AHWU knowledge. I'm certain he'll ask questions about that. https://www.youtube.com/watch?v=PbWUjEPrRj4&list=PLTur7oukosPHi264nP5zwyqqW-HMySuo8\r\n\r\nIf you want to see all of the submited AHWU intros for episode 400, click HERE!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-400","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/52473234-c1d0-4ff0-89da-8386c2921f7e.jpg/sm/ahwuthumb.jpg","duration":1096,"publication_date":"2017-12-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-the-data-breaches-prep-doomsday-heist-1","changefreq":"weekly","video":[{"title":"2017:E364 - GTA V - The Data Breaches: Prep - Doomsday Heist (#1)","description":"Achievement Hunter steal an ambulance, some Deluxos, and an Akula in Act 1 of the Doomsday Heist DLC.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-the-data-breaches-prep-doomsday-heist-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cb19f484-d4b7-47a6-9ca0-f0b6b7e6f5af.jpg/sm/Doomsday01.jpg","duration":2228,"publication_date":"2017-12-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-107","changefreq":"weekly","video":[{"title":"2017:E107 - Flinchless Blankey-Doo - Off Topic #107","description":"The AH Crew and special guests SungWon Cho and Lawrence Sonntag sit down to talk about Mario Kart races, breaking stuff in the office, Super Mario Odyssey, and more on this week's Off Topic!\n\nThis episode originally aired December 15, 2017 and is sponsored by MVMT (http://bit.ly/2kg8JSD) and MeUndies (http://bit.ly/1RJ6Q8N)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c198d7d-b797-47f6-9709-ef2aba763406.jpg/sm/OFF107THUMB.jpg","duration":7702,"publication_date":"2017-12-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gmod-hide-and-seek","changefreq":"weekly","video":[{"title":"2017:E365 - Gmod: Hide and Seek Part 2","description":"Achievement Hunter pops back into Gmod to play Hide and Seek and maybe even do a little machinema.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gmod-hide-and-seek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1398e40d-ccde-400c-9e18-9e77c60f345f.png/sm/GmodHideandSeekv003.png","duration":1440,"publication_date":"2017-12-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fore-honor-infinite-minigolf-more-matt-maps-6","changefreq":"weekly","video":[{"title":"2017:E363 - Fore Honor - Infinite Minigolf - More Matt Maps (#6)","description":"The insanity returns with a holly jolly spirit! Join our country club and buy the Fore Honor shirt: https://store.roosterteeth.com/products/fore-honor-tee?variant=44769476229","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fore-honor-infinite-minigolf-more-matt-maps-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/96182220-d3c6-4bbb-9c87-7c39890d8a1c.jpg/sm/ThumbMattsMaps2Xmas.jpg","duration":2396,"publication_date":"2017-12-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2017-the-tomb-of-horrors-chapter-6-post-show-e5r44t","changefreq":"weekly","video":[{"title":"2017:E20 - The Tomb of Horrors - Chapter 6 Post Show","description":"It's a post show! The gang is all here to recap what happened inside the Tomb of Horrors. Plus, some great fan art","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2017-the-tomb-of-horrors-chapter-6-post-show-e5r44t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/476c738a-cd63-447c-948b-0ccaa990016a.jpg/sm/HHep40PS.jpg","duration":712,"publication_date":"2017-12-14T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-gmod","changefreq":"weekly","video":[{"title":"2017:E35 - Best of Achievement Hunter - Gmod","description":"Description: From Murder to Prop Hunt to Trouble in Terrorist Town, this is the best of Achievement Hunter Gmod.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-gmod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d46cff46-aec5-43f0-a541-a09fecaaf5ef.jpg/sm/BestGMODThumbnail.jpg","duration":1448,"publication_date":"2017-12-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-290-fishing-rodeo-and-jamboree-vi-sky-factory-31","changefreq":"weekly","video":[{"title":"2017:E361 - Minecraft - Episode 290 - Fishing Rodeo and Jamboree VI (Sky Factory 31)","description":"The boys head down to the fishing hole for the annual Fishing Rodeo and Jamboree. This year, whoever catches the most unique fish will take Sky's Factory's very first Tower of Pimps.\r\n\r\nOn today's episode, Simple Geoff catches some fish, Ryan catches some fish, Jack catches some fish, Jeremy catches some fish, Michael catches some fish, and Gavin catches some fiiiiiiiiiish.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-290-fishing-rodeo-and-jamboree-vi-sky-factory-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71c9bee8-0c73-461a-b475-fc11c4333153.jpg/sm/121417FIshingJamboree6.jpg","duration":3382,"publication_date":"2017-12-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-v-order-66","changefreq":"weekly","video":[{"title":"2017:E48 - Halo 5 - Order 66","description":"The boys execute Order 66 in Halo 5. Will any younglings escape?\n\nDownload the map here: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=WookieCookies1#ugc_halo-5-guardians_xbox-one_mapvariant_WookieCookies1_8d3fee71-cbfd-4ccc-bd1e-9808feac26a5\n\n\n\nDownload the game type here: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=WookieCookies1#ugc_halo-5-guardians_xbox-one_gamevariant_WookieCookies1_6184abfa-cd0b-47b3-9313-3f62da811665","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-v-order-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cda849d5-6039-4142-969e-e0e9e0ece2ba.jpg/sm/121317TTDHalo5Order66.jpg","duration":883,"publication_date":"2017-12-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2017-the-tomb-of-horrors-chapter-6-df-6g5","changefreq":"weekly","video":[{"title":"2017:E40 - The Tomb of Horrors - Chapter 6: The Final Descent","description":"Our halfwitted heroes descend to the last levels of the Tomb of Horrors and discover that when the going gets tough, the tough get going.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2017-the-tomb-of-horrors-chapter-6-df-6g5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cf2cdec8-15dc-40d0-a722-89fb45667cd9.jpg/sm/HHep40.jpg","duration":13868,"publication_date":"2017-12-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-git-gud-tryouts-call-of-duty-wwii","changefreq":"weekly","video":[{"title":"2017:E351 - Git Gud Tryouts: Call of Duty: WWII","description":"Call of Duty: WWII is the final contender for another Git Gud series. And boy is there some gettin' gud to do in this one.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-git-gud-tryouts-call-of-duty-wwii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/29052e2d-005d-4763-80f8-794b5ddbf499.jpg/sm/LPGITGUDTRYOUTCOD.jpg","duration":1365,"publication_date":"2017-12-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-what-if-super-mario-had-loot-boxes","changefreq":"weekly","video":[{"title":"2017:E34 - If Super Mario Had Loot Boxes (Game Action Theater)","description":"Super Mario finally catches up to the latest trend in video games, loot boxes.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-what-if-super-mario-had-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3076df08-4924-480a-bb9d-89d39dd3f621.jpg/sm/mariolootthumbv3.jpg","duration":249,"publication_date":"2017-12-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fortnite-battle-royale-bush-strats","changefreq":"weekly","video":[{"title":"2017:E359 - Fortnite: Battle Royale - Bush Strats","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get a DSC Starter Set for just $5. The gang is in search of loot and victory, but they'll need to watch out for other players, explosive, and bushes?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fortnite-battle-royale-bush-strats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c480fe13-047e-4c7f-a6f3-cde1020f6725.jpg/sm/StreamThumbs.jpg","duration":1818,"publication_date":"2017-12-12T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-let-s-play-secret-santa-who-sent-this","changefreq":"weekly","video":[{"title":"2017:E33 - Let’s Play Secret Santa - WHO SENT THIS!?","description":"Order by Dec. 14th to guarantee delivery by Christmas. store.roosterteeth.com\nSee what we got Kinda Funny for Christmas.\n\nThe Let's Play family decided to do Secret Santa this year, and Achievement Hunter's gift finally arrived! Did Secret Santa decide the gang was good this year, or is it all farts and syringes for Achievement Hunter?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-let-s-play-secret-santa-who-sent-this","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1592e182-d76a-49ec-b1f8-6e9ec3283d87/sm/1104396-1512753046093-SecretSantaThumbv004.jpg","duration":432,"publication_date":"2017-12-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-hidden-blades","changefreq":"weekly","video":[{"title":"2017:E50 - Hidden Blades","description":"Thanks to Blue Apron for sponsoring this week's AHWU. Visit https://blueapron.com/ahwu to get $30 and free shipping off your first order. \r\nIt's AHWU 399! Everyone is showing off their hidden blades.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-hidden-blades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0766caca-772d-492b-b4f8-c1997ac2f625.jpg/sm/ahwu399v1.jpg","duration":657,"publication_date":"2017-12-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-n","changefreq":"weekly","video":[{"title":"2017:E26 - N++","description":"Perhaps you've looked at Gavin and Michael and thought, \"Those two look like they're really great at technology and being ninjas,\" but N++ might change your opinion on both.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/17c81ed9-3931-496f-824b-587dfd40fbf2.jpg/sm/PlayPalsNPlusPlus.jpg","duration":3247,"publication_date":"2017-12-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-drunk-fu-wasted-masters","changefreq":"weekly","video":[{"title":"2017:E358 - Drunk Fu: Wasted Masters","description":"Achievement Hunter control drunken fighters in an intense brawl, using pool cues, bar stools, and other tools to bash in heads.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-drunk-fu-wasted-masters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/df8555e2-fec4-4d8a-944b-024c04519c9a.jpg/sm/DrunkFuthumb.jpg","duration":1372,"publication_date":"2017-12-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-last-call-106","changefreq":"weekly","video":[{"title":"2017:E47 - Blissful Ignorance - Last Call #106","description":"The AH Crew sit down to talk about DNA testing, death and immortality, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-2017-last-call-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ecb0adae-0df3-4c39-bcb0-672d9abba5a8.jpg/sm/OFF106PS.jpg","duration":1027,"publication_date":"2017-12-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-transform-races-rage-of-extinction-4","changefreq":"weekly","video":[{"title":"2017:E357 - GTA V - Transform Races: Rage of Extinction (#4)","description":"Transform Races are the evolution of racing in GTA Online. Watch us jump ramps, cruise, skydive, and barrel roll to the finish line!","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-transform-races-rage-of-extinction-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/dce56413-5154-4993-84c8-f8e3c46cf51d.jpg/sm/Transform4.jpg","duration":2654,"publication_date":"2017-12-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-106","changefreq":"weekly","video":[{"title":"2017:E106 - Diet Sugar Doesn’t Count - Off Topic #106","description":"The AH Crew sit down to talk about sodas, fast food, seeing movies, and more on this week's Off Topic!\n\nThis episode originally aired December 8, 2017 and is sponsored by Capterra (http://bit.ly/2j9Tw5k), Blue Apron (http://cook.ba/1RxiGhC), and MVMT (http://bit.ly/2kg8JSD)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8fb733d0-addf-4096-89e5-7d022a9d0bf2.jpg/sm/OFF106.jpg","duration":7075,"publication_date":"2017-12-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gmod-trouble-in-terrorist-town-part-5","changefreq":"weekly","video":[{"title":"2017:E356 - Gmod: Trouble in Terrorist Town Part 5","description":"The boys are in Gmod causing trouble for some terries. We ain't talking 'bout Teri Garr, and we certainly ain't talking 'bout no terry cloth.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gmod-trouble-in-terrorist-town-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9fe470a4-87a3-48e7-b4f4-ed08644040ed.jpg/sm/TTTthumb.jpg","duration":3229,"publication_date":"2017-12-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-treasure-hunters-9","changefreq":"weekly","video":[{"title":"2017:E355 - 7 Days to Die: Treasure Hunters (#9)","description":"Whether it's looting gas stations, tearing up a mountain, or taking a long journey, our survivors are all hunting for treasure. \r\n\r\nIn this episode: Jeremy and Ryan keep digging, Michael can't decide what to drop, Jack and Gavin go on an adventure, and Geoff is having \"a day.\"","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-treasure-hunters-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/163875b1-8775-4f00-9136-aa346106bfae.jpg/sm/AH7Days16Ep9v1.jpg","duration":2930,"publication_date":"2017-12-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-gavin-s-tiny-squirtle","changefreq":"weekly","video":[{"title":"2017:E19 - Gavin's Tiny Squirtle","description":"Gavin chooses his starting Pokemon and it turns out a little... different than the others'.\r\n\r\nAnimation audio from: https://www.youtube.com/watch?v=Cpp_81zvfJs\r\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-gavin-s-tiny-squirtle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4bb758a4-3b49-45b5-b106-bc17c19086aa.jpg/sm/SquirtleAnimThumb.jpg","duration":142,"publication_date":"2017-12-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-289-jamboree-prep-day-sky-factory-30","changefreq":"weekly","video":[{"title":"2017:E354 - Minecraft - Episode 289 - Jamboree Prep Day (Sky Factory 30)","description":"Achievement Hunter's annual Fishing Rodeo and Jamboree is just a week away, so the guys decided to build a Sky Factory-specific fishing dock for the occasion. \n\nOn today's episode, Geoff fears technology, Gavin lights up the sky, Jack classes up the joint, Jeremy gets blood on the fish, and Ryan glitches out.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-289-jamboree-prep-day-sky-factory-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c62fe23f-aea1-445e-8e9f-8a83758070d9.jpg/sm/SkyFac30Thumb.jpg","duration":4156,"publication_date":"2017-12-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-minecraft-creeper-bounce","changefreq":"weekly","video":[{"title":"2017:E47 - Minecraft - Creeper Bounce","description":"Matt Bragg shows off a custom Minecraft game featuring dozens of creepers bouncing on blocks of ooze. Whoever collects the most gunpowder wins!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-minecraft-creeper-bounce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/26a173d0-58e2-433f-a4ec-2514423218fa.jpg/sm/CreeperBounceThumb2.jpg","duration":473,"publication_date":"2017-12-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-git-gud-tryouts-ghost-recon-wildlands","changefreq":"weekly","video":[{"title":"2017:E353 - Git Gud Tryouts: Ghost Recon Wildlands","description":"The boys are trying out Ghost Recon Wildlands pvp for the next Git Gud series and are feeling pretty \"not good.\"","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-git-gud-tryouts-ghost-recon-wildlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/357d27fc-0f44-4a24-ac50-2ac229e50b2f.jpg/sm/LPGitGudWildlandsv5.jpg","duration":2561,"publication_date":"2017-12-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-wall-mayo","changefreq":"weekly","video":[{"title":"2017:E22 - Wall Mayo","description":"Gavin and Jeremy got all \"worked up\" and had to find a \"release\" for all their mayo.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-wall-mayo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/99890004-0ef9-408c-8f32-f2f69d05802c.jpg/sm/thumbv4.jpg","duration":197,"publication_date":"2017-12-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-siege-siege-and-steaks-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E352 - Rainbow Six: Siege - Siege and Steaks - AH Live Stream","description":"Special thanks to Omaha Steaks for sponsoring today's stream. Go to http://www.omahasteaks.com enter code JACKANDGEOFF in the search bar, and get a 75% savings! The crew gears up for a lightning fast, protein fueled session of Rainbow Six: Siege.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-siege-siege-and-steaks-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/08156c10-5590-4095-9ffc-6132bf0ed97c.jpg/sm/Stream Thumbs.jpg","duration":1891,"publication_date":"2017-12-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-torquel-2","changefreq":"weekly","video":[{"title":"2017:E25 - Torquel (#2)","description":"Michael and Gavin loved the 2D physics platformer, Torquel, so much that they couldn't pass up the chance to continue it. \"Roll\" the video!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-torquel-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8b06303c-9b2b-45d8-a90d-5a148aa6d398.jpg/sm/TorquelPT2Thumb.jpg","duration":1307,"publication_date":"2017-12-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-ultimate-chicken-horse-not-the-cheddar-part-3","changefreq":"weekly","video":[{"title":"2017:E348 - Ultimate Chicken Horse - Not the Cheddar (Part 3)","description":"The boys are back in Ultimate Chicken Horse and their trap placement is as cut-throat as ever..","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-ultimate-chicken-horse-not-the-cheddar-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8717f961-e495-4186-9649-d6d5f5c728d3.png/sm/LPUltimateChickenHorsePt3.png","duration":2057,"publication_date":"2017-12-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-all-wrapped-up","changefreq":"weekly","video":[{"title":"2017:E49 - All Wrapped Up","description":"It's AHWU 398! Now that it's December, Gavin's getting a head start on wrapping \"gifts\" for Christmas.\r\nThanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: \r\nhttp://www.mvmt.com/AHWU","player_loc":"https://roosterteeth.com/embed/ahwu-2017-all-wrapped-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ed7c6659-14db-4471-aba9-3b9c4b6cbb13.jpg/sm/ahwuv2.jpg","duration":843,"publication_date":"2017-12-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-lastcall105oerjs92s","changefreq":"weekly","video":[{"title":"2017:E46 - Do You Make Youtube? - Last Call #105","description":"The AH Crew stand up to talk about working out, Burnie’s bus, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-2017-lastcall105oerjs92s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f7572333-22cf-4a71-9b8a-ad1dacd6b9a7.jpg/sm/OFF105PSThumb.jpg","duration":1305,"publication_date":"2017-12-03T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-bat-car","changefreq":"weekly","video":[{"title":"2017:E347 - GTA V - Bat Car","description":"Everyone buys the Grotti Vigilante, a weaponised vehicle from the Smuggler's Run update. It's totally not the Batmobile.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-bat-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/99097e7a-5e6d-496c-a62b-4313de547c02.jpg/sm/BatCarThumbv3.jpg","duration":2681,"publication_date":"2017-12-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-2","changefreq":"weekly","video":[{"title":"2017:E33 - Call of Duty: WWII - Training for the War","description":"Thanks to Call of Duty®: WWII for sponsoring this video. Watch us and Funhaus battle Cow Chop and Game Attack in Call of Duty: WWII’s all-new ‘War’ Mode Live on December 5th at 1 PM CST at https://www.youtube.com/AchievementHunter","player_loc":"https://roosterteeth.com/embed/lets-play-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8ddde1d0-a807-400c-ba43-f0667aa4c6a0.jpg/sm/CODWWIITrainingv2.jpg","duration":1747,"publication_date":"2017-12-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-105poiu56se","changefreq":"weekly","video":[{"title":"2017:E105 - Doesn’t It Have a Lifetime Warranty? - Off Topic #105","description":"The AH Crew sit down to talk about Garbo Man, lost recordings, nudity, and more on this week's Off Topic!\r\n\r\nThis episode originally aired December 1, 2017 and is sponsored by MVMT (http://bit.ly/2kg8JSD), MeUndies (http://bit.ly/2kfeOPg), and Man Crates (http://bit.ly/2kfeQXo)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-105poiu56se","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1cf25e7a-32e7-40f2-b4a4-2cca6ea95588.jpg/sm/OFF105SiteThumb.jpg","duration":9385,"publication_date":"2017-12-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gmod-guess-who","changefreq":"weekly","video":[{"title":"2017:E350 - Gmod: Guess Who","description":"Can you guess who? It's a mystery! The guys try out Guess Who in Gmod. Does your person have a beard? Does your person have a black hole? Is your person dancing down the stairs?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gmod-guess-who","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e93ea05a-579b-4a69-93b9-4a781abcf1f9.jpg/sm/GuessWhoThumbv001.jpg","duration":1916,"publication_date":"2017-12-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2017-rainbow-six-vegas-2","changefreq":"weekly","video":[{"title":"2017:E13 - Rainbow Six: Vegas 2","description":"The boys once again plaster their faces onto CGI dummies in order to strike fear into the hearts of their terrorist enemies.","player_loc":"https://roosterteeth.com/embed/rouletsplay-2017-rainbow-six-vegas-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ff5afb4e-a362-49f8-98fb-98346549d495.jpg/sm/RouLetsPlayVegas2THUMBv2.jpg","duration":2562,"publication_date":"2017-12-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-nhl-18-threes-the-money-puck-returns-3","changefreq":"weekly","video":[{"title":"2017:E346 - NHL 18 Threes - The Money Puck Returns (#3)","description":"Ryan, Geoff, and Jeremy face their toughest opponents yet. Oh, and the money puck is back.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-nhl-18-threes-the-money-puck-returns-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/56dc6b15-a338-47e8-8019-6e92b963e884.png/sm/LPNHL18ThreesPt3.png","duration":1760,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-november-2017","changefreq":"weekly","video":[{"title":"2017:E32 - Best of Achievement Hunter - November 2017","description":"This is the best of Achievement Hunter November 2017, where GTA Sprunking transforms into an art form, cats and simple farmers drop from the world in Minecraft Sky Factory, and Mascots are called up to the big leagues in NHL 18. Watch and Enjoy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-november-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/44d7f5ee-e4cc-4435-848e-d8ef17536681.jpg/sm/BestofAHNovember2017Thumbnail3.jpg","duration":1180,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-288-sky-factory-part-29","changefreq":"weekly","video":[{"title":"2017:E345 - Minecraft - Episode 288 - Sky Factory Part 29","description":"Achievement Hunter's building, improving, and also destroying their world in the best mod pack six idiots could ask for, Sky Factory.\r\n\r\nOn today's episode, Ryan's off the rails with his rail, Jack adopts a pet, Jeremy performs a blood ritual, Michael gets some fancy lights, Gavin's pursuit of solar pays off, and Simple Geoff runs into another setback on the farm.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-288-sky-factory-part-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/b7409f0a-52b2-4eec-950e-73fb632285ac.jpg/sm/mcthumbSkyFac29.jpg","duration":4117,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-moon-ball","changefreq":"weekly","video":[{"title":"2017:E21 - Moon Ball","description":"Trevor brings a moon ball to the office and tells everyone to throw it around the light. Surely nothing will get broken this time.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-moon-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/71c7f4b1-0fc7-41d0-8945-a80e7009dc69.jpg/sm/moonballv4b.jpg","duration":370,"publication_date":"2017-12-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2017-the-tomb-of-horrors-chapter-5-post-show-d5f4gh","changefreq":"weekly","video":[{"title":"2017:E19 - The Tomb of Horrors - Chapter 5 Post Show","description":"Akshay pulls himself together while the gang checks out a special gift from RTX London","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2017-the-tomb-of-horrors-chapter-5-post-show-d5f4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/deeef5c9-afde-4e0d-8a81-9962b2c73e4d.jpg/sm/HH39PSThumb.jpg","duration":647,"publication_date":"2017-11-30T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-play-pals-torquel-1","changefreq":"weekly","video":[{"title":"2017:E24 - Play Pals - Torquel (#1)","description":"The Pals roll, extend, and musically jam their way around high walls and magma in the 2D physics platformer Torquel.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-play-pals-torquel-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8c46859a-7420-4c7a-a414-643b0c225863.jpg/sm/TorquelPPpart1v2.jpg","duration":1970,"publication_date":"2017-11-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2017-the-tomb-of-horrors-chapter-5-d6fgh54","changefreq":"weekly","video":[{"title":"2017:E39 - The Tomb of Horrors - Chapter 5: What Emerges in the Dark","description":"The party come up with a plan to find Akshay but encounter some speed bumps. This episode is sponsored by Blue Apron (http://bit.ly/HandHBlueApron) and MVMT (http://bit.ly/2kaRZMr)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2017-the-tomb-of-horrors-chapter-5-d6fgh54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d997c3c6-60dd-4395-9f75-8660b368cbb7.jpg/sm/HHep39Thumb.jpg","duration":12158,"publication_date":"2017-11-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-git-gud-tryouts-battlefield-1","changefreq":"weekly","video":[{"title":"2017:E344 - Git Gud Tryouts: Battlefield 1","description":"Battlefield 1 is the next contender for another Git Gud series. The boys could certainly git gudder with this game, so let us know.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-git-gud-tryouts-battlefield-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/89354830-11e5-46d4-80a0-b5ff6fe93fe7.png/sm/LPGitGudTryOutsBattlefield1.png","duration":2126,"publication_date":"2017-11-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gang-beasts-just-mortys-killing-mortys","changefreq":"weekly","video":[{"title":"2017:E343 - Gang Beasts: Just Mortys Killing Mortys","description":"Aw jeez! The crew suit up as characters from Rick and Morty. Who will be the one true Morty in Gang Beasts?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gang-beasts-just-mortys-killing-mortys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d895136a-cb4e-47e3-8698-426d25538bdc.jpg/sm/gangbeaststhumb.jpg","duration":1387,"publication_date":"2017-11-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-v-garbo-zap","changefreq":"weekly","video":[{"title":"2017:E46 - Halo 5 - Garbo Zap","description":"Garbo Man says, \"Don't get zapped!\" If you get garbo bipped, you'll get sucked in. Don't let it happen! It sucks!\n\nDownload the map here. \n\n\n\n\n\nAnd the game type here.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-v-garbo-zap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/564fec65-2151-4f72-98ea-5fa3ecc45910.jpg/sm/TTDGARBOZAP.jpg","duration":739,"publication_date":"2017-11-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-new-wheel-of-fortune-where-s-pat-part-1","changefreq":"weekly","video":[{"title":"2017:E342 - New Wheel of Fortune - Where's Pat?! (Part 1) ","description":"Ryan, Jeremy, and Gavin are back in Wheel of Fortune. But something is different. It's a new console with a new host. Where's Pat?!","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-new-wheel-of-fortune-where-s-pat-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0c732797-05de-45dd-a5e7-74de1c2e6894.png/sm/LPWheelofFortuneWheresPat.png","duration":1766,"publication_date":"2017-11-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-geoff-s-100-lighters","changefreq":"weekly","video":[{"title":"2017:E48 - Geoff's 100 Lighters","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\r\n\r\nIt's AHWU 397! One lighter wasn't nearly enough for Geoff. Maybe 100 will do.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-geoff-s-100-lighters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e7243805-398b-4ea7-b5ae-5641bcdc35fe.jpg/sm/ahwuv3.jpg","duration":705,"publication_date":"2017-11-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-lastcall104pwois13","changefreq":"weekly","video":[{"title":"2017:E45 - Chris Gets a Surprise - Last Call #104","description":"The AH Crew and Chris Demarais stand up to talk about manscaping, Chris’s European vacation, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-2017-lastcall104pwois13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1b28e739-3d8e-449d-8123-8e8901a1392b.jpg/sm/OFF104psTHUMB.jpg","duration":1280,"publication_date":"2017-11-26T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-geoff-bag-3","changefreq":"weekly","video":[{"title":"2017:E338 - Geoff Bag 3","description":"This Geoff Bag includes some lovely parkour courses, a stunt race, and a very creative Last Team Standing map.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-geoff-bag-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a9a0fbb-114a-4185-9e18-94edcaa17f02.jpg/sm/GeoffBag3Thumb.jpg","duration":3283,"publication_date":"2017-11-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-104pdjgw21d","changefreq":"weekly","video":[{"title":"2017:E104 - Mr. Dooley’s My Father, Call Me Alcoholic - #104","description":"The AH Crew sit down to talk about office interactions, method acting, Git Gud Tryouts, and more on this week's Off Topic!\r\n\r\nThis episode originally aired November 24, 2017 and is sponsored by Felix Gray (http://bit.ly/2zYjxbA), MVMT (http://bit.ly/2w7sDQh), and the Rooster Teeth Store (http://bit.ly/2dJMiSK)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-104pdjgw21d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b9d2eaa-d841-42fd-8264-8a1a59416850.jpg/sm/OFF104THUMB.jpg","duration":9595,"publication_date":"2017-11-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-lots-of-zombie-killin-8","changefreq":"weekly","video":[{"title":"2017:E340 - 7 Days to Die: Lots of Zombie Killin' (#8)","description":"While the weather bioms are getting back to normal, our survivors are running into more zombies than usual.\r\nIn this episode: Michael goes shopping, Jeremy continues his cave, Ryan levels up, Jack builds his basement, and Gavin searches for beakers.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-lots-of-zombie-killin-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/237a0c28-0768-4f21-8e12-5d275c9a1a9b.jpg/sm/7DaysEp8v2.jpg","duration":3360,"publication_date":"2017-11-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-nhl-18-threes-sabotage-2","changefreq":"weekly","video":[{"title":"2017:E339 - NHL 18 Threes - Sabotage! (#2)","description":"Ryan, Geoff, and Jeremy are back in NHL 18. All was going great until one of their own ruined everything.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-nhl-18-threes-sabotage-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7576767d-bb4b-41d4-ba16-dae5d2036a34.png/sm/LPNHL18ThreesPt2.png","duration":1918,"publication_date":"2017-11-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-what-s-a-fupa","changefreq":"weekly","video":[{"title":"2017:E18 - What's a FUPA?","description":"Ryan discovers a new word and does his best to figure out an elementary school joke.​\r\n\r\n​Animation audio from: https://youtu.be/i0ng_sS-haM\r\nAnimation by Shaun Cunningham","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-what-s-a-fupa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7e91e5be-a62e-4012-8ea7-4da30217b6cb.jpg/sm/AHAnimatedFUPAThumbnail.jpg","duration":137,"publication_date":"2017-11-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-287-sky-factory-part-28","changefreq":"weekly","video":[{"title":"2017:E341 - Minecraft - Episode 287 - Sky Factory Part 28","description":"\"The Sky Factory boys adopt a cat, kill a cat, and save a cat - maybe not in that order. \r\n\r\nOn today's episode, Jack keeps fusion crafting, Jeremy gets back into the blood, Michael lights up Geoff's life, Gavin closes in on Solar VIII, Ryan adds tech to the farm, and Simple Geoff simply farms.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-287-sky-factory-part-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2b3499d1-fded-4f78-adb7-381ca5aa129c.jpg/sm/mcthumbSkyFac28.jpg","duration":3848,"publication_date":"2017-11-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-v-garbo-flush","changefreq":"weekly","video":[{"title":"2017:E45 - Halo 5 - Garbo Flush","description":"This super awesome Halo 5 custom game lets you flush your enemies, your friends, and your garbo straight down the toilet. Let's give it a whirl!\n\nGAME: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=Darth%20Human#ugc_halo-5-guardians_xbox-one_gamevariant_Darth%20Human_0255e684-33f6-450d-a308-3f00c1b5e7c8\n\n\n\nMAP: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=Darth%20Human#ugc_halo-5-guardians_xbox-one_mapvariant_Darth%20Human_ea4347ca-dd53-48a4-960a-aaebfc21e15d","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-v-garbo-flush","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8df55f01-96f4-4442-bcf7-4c1eb0b062d6.jpg/sm/HALO5TOILETFLUSHTHUMB2.jpg","duration":705,"publication_date":"2017-11-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017","changefreq":"weekly","video":[{"title":"2017:E32 - Git Gud Tryouts: Rocket League","description":"We're trying out games for our next Git Gud series. Let us know if Git Gud: Rocket League should be next.","player_loc":"https://roosterteeth.com/embed/lets-play-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7496d7e9-bc7e-4517-8b01-9d77258d7736.jpg/sm/RocketLeagueGitGudThumbv3.jpg","duration":1827,"publication_date":"2017-11-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-flappy-dack-stack","changefreq":"weekly","video":[{"title":"2017:E20 - Flappy Dack Stack","description":"We can't tell you what this video's about without being demonetized. ;D","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-flappy-dack-stack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f384d9b9-fb50-48f6-9b3a-e7b1d0d6c097.jpg/sm/ahbtg.jpg","duration":562,"publication_date":"2017-11-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-playerunknown-s-battlegrounds-vaulting-into-action-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E337 - PLAYERUNKNOWN'S BATTLEGROUNDS: Vaulting Into Action - AH Live Stream","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get a DSC Starter Set for just $5. Jeremy, Ryan, Michael, and Gavin dive into the PUBG technical test servers to test their skills, wit, and the upcoming vault mechanic.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-playerunknown-s-battlegrounds-vaulting-into-action-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/faa834e8-5222-4364-8ab2-9315afd6882e.jpg/sm/pubg_testservers.jpg","duration":1703,"publication_date":"2017-11-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-call-of-duty-ww2-let-s-play-war-announcement","changefreq":"weekly","video":[{"title":"2017:E335 - Call of Duty: WWII Let's Play ‘War Mode’ Announcement","description":"Special thanks to Call of Duty®: WWII for sponsoring this video.\r\n\r\nYou can watch the War Mode livestream on Dec. 5th at 11 AM PST/1 PM CST on the corresponding channels.\r\n\r\nAchievement Hunter: https://www.youtube.com/user/AchievementHunter\r\nFunhaus: https://www.youtube.com/channel/UCboMX_UNgaPBsUOIgasn3-Q\r\nCow Chop: https://www.youtube.com/channel/UCmYBTQilY7p8EQ9IsyA3oLw\r\nGame Attack: https://www.youtube.com/user/GameAttack","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-call-of-duty-ww2-let-s-play-war-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/116a1332-28b1-434d-8318-42b5bba0fdd0.jpg/sm/COD_SQUAD_TEASER_THUMB.jpg","duration":95,"publication_date":"2017-11-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-shark-simulator-1","changefreq":"weekly","video":[{"title":"2017:E23 - Shark Simulator (#1)","description":"Gavin and Michael play as Ed the Shark in the sandbox simulator featuring a cheeky great white with weapons.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-shark-simulator-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c738b705-eef9-432a-948e-3170a0431886.jpg/sm/SharkSim1THumbv2.jpg","duration":2421,"publication_date":"2017-11-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-dead-by-daylight-nightmare-on-elm-street","changefreq":"weekly","video":[{"title":"2017:E334 - Dead by Daylight: Nightmare on Elm Street","description":"One, two, Ryan's killin the crew.\r\nThree, four, he's got knives galore.\r\nFive, six, gonna kill those pricks.\r\nSeven, eight, stab and lacerate\r\nNine, ten, then he'll kill again.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-dead-by-daylight-nightmare-on-elm-street","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c3c7a02e-9a85-4e15-ab74-e03a57346861.jpg/sm/lpfrd.jpg","duration":2414,"publication_date":"2017-11-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-hitman-patient-zero-the-source","changefreq":"weekly","video":[{"title":"2017:E74 - Hitman: Patient Zero - The Source","description":"Gavin and Ryan each take a crack at Hitman's \"The Source\" bonus mission, hoping to assassinate Oybek Nabazov and Sister Yulduz, Thailand's favorite cult leaders.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-hitman-patient-zero-the-source","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9c1d899b-d98f-4f8f-896b-8ae8000fc5e7.png/sm/HitmanThumbv002.png","duration":3442,"publication_date":"2017-11-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-103post2310stj","changefreq":"weekly","video":[{"title":"2017:E44 - Captain Michael Jones - Last Call #103","description":"AH Discusses Injuries","player_loc":"https://roosterteeth.com/embed/off-topic-2017-103post2310stj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6fc52c3a-38d8-430a-9a7f-36bbd415b79f.jpg/sm/OFF103PSthumb.jpg","duration":1065,"publication_date":"2017-11-19T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-real-mogar","changefreq":"weekly","video":[{"title":"2017:E47 - The Real Mogar","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\r\nIt's AHWU 396! Michael becomes the real life Mogar. His magical ice breath shines really bright.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-real-mogar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/047caa9e-b87b-4fa0-8672-ed5ca658b211.jpg/sm/lpmg.jpg","duration":813,"publication_date":"2017-11-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-transform-races-transformers-in-time-3","changefreq":"weekly","video":[{"title":"2017:E333 - GTA V - Transform Races: Transformers in Time (#3)","description":"Watch our supercars transform as they switch from races by land, sea, and sky! GTA Online's metamorphosis-based stunt race returns.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-transform-races-transformers-in-time-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c6f794aa-bc82-46fb-8a85-a3fc1bc1219c.jpg/sm/TransformRaces3v2.jpg","duration":3044,"publication_date":"2017-11-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-2017-103oipjkiw2","changefreq":"weekly","video":[{"title":"2017:E103 - You Can Break Anything If You Try Hard Enough - Off Topic #103","description":"The AH Crew sit down to talk about Extra Life aftermath, video edits, Assassin’s Creed, and more on this week's Off Topic!\nThis episode originally aired November 17, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV), MeUndies (http://bit.ly/29QtMVP), and the Rooster Teeth Store (http://bit.ly/2dJMiSK)","player_loc":"https://roosterteeth.com/embed/off-topic-2017-103oipjkiw2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9a67dac8-4122-41c6-88d2-bc33750317f2.jpg/sm/OFF103thumb.jpg","duration":8766,"publication_date":"2017-11-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fore-honor-everybody-s-golf-1","changefreq":"weekly","video":[{"title":"2017:E332 - Fore Honor - Everybody's Golf (#1)","description":"Golf angry. Get bipped.The hot new golf party game for the Play Station 4 bring lots of joy and rage to Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fore-honor-everybody-s-golf-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3bd14e52-41c4-4739-a258-558cde33fcf7.jpg/sm/EverybodysGolfTHUMB2.jpg","duration":2609,"publication_date":"2017-11-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-nhl-18-threes-end-that-cat-part-1","changefreq":"weekly","video":[{"title":"2017:E330 - NHL 18 Threes - End That Cat (Part 1)","description":"Geoff, Ryan, and Jeremy go up against the Edmonton Oilers in NHL 18. Can the Fridge Raiders defeat their opponents and their legendary mascot, Hunter?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-nhl-18-threes-end-that-cat-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6df691e7-560d-4abf-b99e-2da1e6a8add5.png/sm/LPNHL18ThreesPt1.png","duration":2071,"publication_date":"2017-11-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-8fhs124ds","changefreq":"weekly","video":[{"title":"2017:E30 - Achievement Hunter's Billion View Video","description":"Geoff gets the reactions from the group to the news that their video hit one BILLION views!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-8fhs124ds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec68ed5c-1b93-49d9-b275-fb6c8925023e.jpg/sm/RealThumbnail.jpg","duration":113,"publication_date":"2017-11-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-ah-salt","changefreq":"weekly","video":[{"title":"2017:E31 - Best of Achievement Hunter - Salt the Earth","description":"A compilation of some of the saltiest moments from across Achievement Hunter let's plays.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-ah-salt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c496bf34-3cec-4511-ad8f-0cb5c626ec12.jpg/sm/BestOfSaltTheEarthThumbnail.jpg","duration":1481,"publication_date":"2017-11-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2017-the-tomb-of-horrors-chapter-4-post-show-e45yfgh","changefreq":"weekly","video":[{"title":"2017:E18 - The Tomb of Horrors - Chapter 4 Post Show","description":"Mogar has a few questions before we look at more fan art.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2017-the-tomb-of-horrors-chapter-4-post-show-e45yfgh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6f8c5e7f-b529-4a2b-b986-706b41acc49d.jpg/sm/HHPSThumb.jpg","duration":667,"publication_date":"2017-11-16T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-286-sky-factory-part-27","changefreq":"weekly","video":[{"title":"2017:E331 - Minecraft - Episode 286 - Sky Factory Part 27","description":"With the Gaia ritual fixed, Achievement Hunter's ready for another beautiful day in their Sky Factory. Perhaps someone will join poopy-pants Geoff and double vomit Lindsay in the Sky Factory hall of shame.\r\nOn today's episode, Simple Geoff gets a little fan fare on the farm, Ryan shows off his new Apple product, Jeremy cosplays as young Santa, Jack gets too much power, Michael does the Gaia thing, and Gavin gets addicted to the ding.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-286-sky-factory-part-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ef01d4c4-1d28-4390-bc2f-004997d20376.jpg/sm/SkyFac27Thumb.jpg","duration":3999,"publication_date":"2017-11-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-minecraft-fish-s-day-out","changefreq":"weekly","video":[{"title":"2017:E44 - Minecraft - Fish's Day Out","description":"Matt Bragg built an obstacle course in Minecraft where two teams race to put an evil pair of fishies in a pool of water.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-minecraft-fish-s-day-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4f4811e9-e909-4736-b5c4-75e2c545787c.jpg/sm/TTDMCFishDayOutTHUMB.jpg","duration":484,"publication_date":"2017-11-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-2017-the-tomb-of-horrors-chapter-4-er6gh5","changefreq":"weekly","video":[{"title":"2017:E38 - The Tomb of Horrors - Chapter 4: Twisting In the Wind","description":"The party gets themselves to church in the Tomb of Horrors, and boy do they feel the Power! Can I get a hallelujah? This episode is sponsored by Mack Weldon (http://bit.ly/2kMs65c), MVMT (http://bit.ly/2ypdwHb), and Blue Apron (http://cook.ba/2zVgnF5)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-2017-the-tomb-of-horrors-chapter-4-er6gh5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/386f61e3-7191-4d74-87bf-b516fdc66803.jpg/sm/HHthumb.jpg","duration":6347,"publication_date":"2017-11-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-rainbow-six-siege-git-gud-check-in","changefreq":"weekly","video":[{"title":"2017:E329 - Rainbow Six Siege: Git Gud - Check In","description":"The Achievement Hunter boys showed us they could all \"git gud\" in Rainbow Six Siege, but can they hold onto that \"Got Gud\" status?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-rainbow-six-siege-git-gud-check-in","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24e741e1-fa20-4912-ada8-133ae9cf7c39/sm/1230840-1510855374800-LPGitGudR6SiegeCheckIn.jpg","duration":1848,"publication_date":"2017-11-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-let-s-play-call-of-duty-wwii-all-out-war","changefreq":"weekly","video":[{"title":"2017:E328 - Call of Duty: WWII - All Out War ","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get $25 off your first wine box by going to: http://blueapron.com/AHLIVESTREAMWINE. \nThe crew enlist in COD: WWII multiplayer for adrenaline filled rounds of explosions, fire, and tanks.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-let-s-play-call-of-duty-wwii-all-out-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/02677c3b-a8bd-476f-96c9-cb6bd3b649f2.jpg/sm/codwwiistreamthumb111417.jpg","duration":2086,"publication_date":"2017-11-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-super-mario-odyssey-sea-full-of-bananners","changefreq":"weekly","video":[{"title":"2017:E22 - Super Mario Odyssey - Sea Full of Bananners","description":"Michael and Gavin dive into Super Mario Odyssey in search of precious Moon pieces. But can they work together long enough to find them all?","player_loc":"https://roosterteeth.com/embed/play-pals-2017-super-mario-odyssey-sea-full-of-bananners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e0095439-f07d-4a8b-985d-9e774a24edc7.jpg/sm/playpalsmarioodyssey.jpg","duration":2552,"publication_date":"2017-11-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-stick-fight","changefreq":"weekly","video":[{"title":"2017:E327 - Stick Fight: The Game","description":"Geoff, Ryan, Jeremy, and Michael fight to the death in Stick Fight: The Game. As Geoff grasps the concept of how to play, Ryan already has a minigun in hand.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-stick-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/22480bec-d4e4-4373-989f-577dcb482e17.png/sm/LPStickFight.png","duration":1726,"publication_date":"2017-11-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-assassin-s-creed-origins-trials-of-the-gods-anubis","changefreq":"weekly","video":[{"title":"2017:E73 - Assassin's Creed: Origins - Trials of the Gods - Anubis","description":"Jeremy, along with Jack, Ryan, and Lindsay, takes on the first Trials of the Gods event in Assassin's Creed: Origins. Can he defeat Anubis, or will the god of death seal his fate?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-assassin-s-creed-origins-trials-of-the-gods-anubis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/00a84b61-73a3-4735-918b-6e86899814d9.png/sm/LWACOriginsAnubis.png","duration":1276,"publication_date":"2017-11-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-geoff-gets-a-lighter","changefreq":"weekly","video":[{"title":"2017:E46 - Geoff Gets a Lighter ","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.\r\nIt's AHWU 395! Someone decided to light up Geoff's life, and now he has a scary, high-tech lighter to burn things with!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-geoff-gets-a-lighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8197f72f-eba0-4a24-b929-0093eb9311b7.jpg/sm/ahjahwu.jpg","duration":697,"publication_date":"2017-11-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-102-hiwhg4","changefreq":"weekly","video":[{"title":"2017:E43 - Last Call #102","description":"The AH Crew stand up to talk about pizza, mosh pits, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-102-hiwhg4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32a821bf-03da-49ee-a7f1-d500baa22dd0/sm/2369885-1510352977563-Off102PSThumb.jpg","duration":840,"publication_date":"2017-11-12T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-gta-v-offense-defense-sauce-party-8","changefreq":"weekly","video":[{"title":"2017:E326 - GTA V - Offense Defense: Sauce Party (#8)","description":"Alfredo is introduced to the smash-tacular Offense Defense gamemode in GTA Online.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-gta-v-offense-defense-sauce-party-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bb708afc-0bc4-4363-a807-d8e8d8db5b7f.jpg/sm/ThumbGTAOffenseDefense8.jpg","duration":2134,"publication_date":"2017-11-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-102-ghoeg5y","changefreq":"weekly","video":[{"title":"2017:E102 - Cats Hate Pregnant - Off Topic #102","description":"The AH Crew sit down to talk about Jeremy’s bad morning, baby sounds, Extra Life and more on this week's Off Topic!\n\nThis episode originally aired November 10, 2017 and is sponsored by Beachbody on Demand (http://bit.ly/2wekldC) and the Rooster Teeth Store (http://bit.ly/2dJMiSK)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-102-ghoeg5y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4cec5b7-c3eb-4b1a-978f-e95cad7fd70b/sm/2369885-1510352922019-Off102Thumb.jpg","duration":7802,"publication_date":"2017-11-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rouletsplay-2017-the-last-of-gus","changefreq":"weekly","video":[{"title":"2017:E12 - The Last of Gus","description":"\"The blood wheel decided to bring in Gus for some Last of Us Remastered multiplayer. Let's see how the old gang does after three years off.\r\n\"","player_loc":"https://roosterteeth.com/embed/rouletsplay-2017-the-last-of-gus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a82d846-205c-4189-81b7-573c8b5b16fc.png/sm/LastofGusThumbv001.png","duration":1791,"publication_date":"2017-11-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-civic-doodles-with-tim-gettys","changefreq":"weekly","video":[{"title":"2017:E325 - Civic Doodle with Tim Gettys","description":"It's time to see who can doodle their way to the top with Kinda Funny's Tim Gettys.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-civic-doodles-with-tim-gettys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/83db9c18-e8d1-4bc9-b179-6196bc1a3b25.jpg/sm/LP_CivicDoogle-wTimG_v5.jpg","duration":1916,"publication_date":"2017-11-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-salty-raid","changefreq":"weekly","video":[{"title":"2017:E17 - The Salt Raid","description":"Lets Play\r\n Achievement Hunter\r\n INFO\r\n \t\t\r\n \r\nExplore\r\n\r\nThe infamous Destiny Raid that you all know and... love? Ryan brings the salt piles!\r\n\r\nAnimation audio from: https://www.youtube.com/watch?v=Am_BTlDkFaE\r\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-salty-raid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3a3912ee-ded1-4df1-b195-1d68b4cbbde9.jpg/sm/ahanim.jpg","duration":152,"publication_date":"2017-11-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-minecraft-episode-285-sky-factory-part-26","changefreq":"weekly","video":[{"title":"2017:E324 - Minecraft - Episode 285 - Sky Factory Part 26","description":"Everything might be broken and Ryan may have lost his body, but that won't stop the boys from having a good time at the Sky Factory. \n\n\n\nIn this episode, Ryan goes invisible and causes mischief, Michael hides ham under his helmet, Jeremy runs into a blood clot, Gavin's in need of a lemon jim jam, Jack turns the Sky Factory into Avatar, and Simple Geoff does the same thing Simple Geoff does every week.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-minecraft-episode-285-sky-factory-part-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/57b2a5cd-3462-4a37-842d-7d3c8610d444.jpg/sm/mcv2.jpg","duration":3613,"publication_date":"2017-11-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gtav-bullet-ball","changefreq":"weekly","video":[{"title":"2017:E43 - GTAV - Bullet Ball ","description":"The rules of Bullet Ball are simple: Shoot the ball, shoot your foes, shoot your friends, and shoot anyone who declares ceasefire.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gtav-bullet-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a529a73c-9c1f-47c5-af90-fb2130446f61.jpg/sm/ttdibb.jpg","duration":1147,"publication_date":"2017-11-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-pubg-git-gud-5-early-retirement-finale","changefreq":"weekly","video":[{"title":"2017:E323 - PUBG: Git Gud #5 - Early Retirement (Finale) ","description":"Michael, Ryan, Jeremy, and Geoff are back for their explosive finale in PlayerUnknown's Battlegrounds. This time they are on the offensive, and they have the taste for blood.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-pubg-git-gud-5-early-retirement-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/53277c6f-b468-4e22-8590-25630bfc18c7.png/sm/LPGitGudPUBGPt5Finale.png","duration":1894,"publication_date":"2017-11-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-gavin-s-fresh-breath","changefreq":"weekly","video":[{"title":"2017:E19 - Gavin's Fresh Breath ","description":"Geoff wants to clean Gavin's mouth, but not in the normal, \"boring\" way.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-gavin-s-fresh-breath","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/78c69922-0eda-4f4d-8ba0-46d74a9a1ca5.png/sm/BTG_GavinBrushesTeeth_v7.png","duration":382,"publication_date":"2017-11-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-worms-w-m-d-4","changefreq":"weekly","video":[{"title":"2017:E322 - Worms W.M.D. #4","description":"Special thanks to Leesa for sponsoring today's Live Stream. Go to http://www.leesa.com/AH and use code \"ACHIEVEMENTHUNTER\" for an extra $100 off! Join Achievement Hunter as they wiggle their way into another explosive Worms W.M.D Let's Play.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-worms-w-m-d-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/7973efe1-9f04-4ef6-819e-3003542b8528.jpg/sm/worms4thumb110717.jpg","duration":2303,"publication_date":"2017-11-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-sniper-elite-nazi-zombie-army-2-2","changefreq":"weekly","video":[{"title":"2017:E28 - Battle Buddies - Sniper Elite: Nazi Zombie Army (#2)","description":"Hitler is back, and he wants revenge for his ball! The Nazi Zombie fighting continues in Sniper Elite.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-sniper-elite-nazi-zombie-army-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68423192-94ac-4388-aaae-55da5fe81f48/sm/3014926-1509562951588-ThumbBBZombieNazisPart2.jpg","duration":1273,"publication_date":"2017-11-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-cloudberry-kingdom-the-censored-one-part-24","changefreq":"weekly","video":[{"title":"2017:E321 - Cloudberry Kingdom - The Censored One (Part 24)","description":"The Berry Bros. are back in the craziest Cloudberry Kingdom level yet. They also spoil Game of Thrones. Sorry.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-cloudberry-kingdom-the-censored-one-part-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70c33c4d-0775-4f16-8ff1-92eaea9f66cf/sm/3014926-1509738723128-LPCloudberry24.png","duration":2214,"publication_date":"2017-11-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-2","changefreq":"weekly","video":[{"title":"S4:E35 - Lara Croft Raids DEATH BATTLE!","description":"The famous tomb raider shows her skills and is up for a challenge!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9602ed2e-227b-457a-8106-ff837924cf4c/sm/2056984-1484579762638-12_16_2017-DBPreview-Lara.jpg","duration":135,"publication_date":"2017-01-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-2","changefreq":"weekly","video":[{"title":"S2:E43 - Mario is Better than You!","description":"He's got the plumbing, he's got the jumps, and he's got a whole lot of... jobs. You'll never live up to him","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22d874b6-8369-4eba-b2a8-8a7c47b2d622/sm/2097159-1484257070744-MarioDoDB.jpg","duration":252,"publication_date":"2017-01-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2-3","changefreq":"weekly","video":[{"title":"S2:E10 - Aquaman's Popemobile","description":"The guys talk about the upcoming DEATH BATTLE Lara Croft vs Nathan Drake, Torrian's childhood accident and a mobile swimming pool!\n\nTry 3 FREE meals of Blue Apron with FREE shipping! www.blueapron.com/Top10","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8f17f16-3cf9-47f1-94f9-d01057fc4158/sm/2056984-1484202737332-1_12_17-DBCast-Thumb.jpg","duration":3629,"publication_date":"2017-01-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-2-worst-sun-moon-pok-mon","changefreq":"weekly","video":[{"title":"S2:E1 - Worst Sun / Moon Pokémon","description":"We've counted down the best, now it's time for the worst! Oh, boy does Nick have some things to get off his chest!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-2-worst-sun-moon-pok-mon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07899053-5774-4e69-bb34-cde979c8bd0a/sm/2056984-1484116354453-1_11_17-Top10-Worst-sunmoon-pokemon.jpg","duration":457,"publication_date":"2017-01-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-2","changefreq":"weekly","video":[{"title":"S2:E9 - Minions vs Rabbids?","description":"DB cast is back and the guys talk Minions, Rabbids and Torrain's fear of flying","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76db78aa-6b07-4b22-afb6-91b32b2a32ee/sm/2056984-1483629990772-01_05_17-DBcast-Thumb.jpg","duration":3589,"publication_date":"2017-01-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-worst-santas","changefreq":"weekly","video":[{"title":"S1:E210 - Worst Santas!","description":"In honor of the holidays we're counting down the absolute worst Santas... Trust us, there's some bad ones","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-worst-santas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c737dc0-4712-4501-b1d4-f4d79daa89e3/sm/2056984-1482474927868-12_23_16-Top10_Santas.jpg","duration":562,"publication_date":"2016-12-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-db-cast-009","changefreq":"weekly","video":[{"title":"S1:E8 - Goku Kissed Superman?","description":"The DEATH BATTLE Crew talks Deadpool vs Pinkie Pie, Goku and Superman kissing, and so much more","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-db-cast-009","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9de98841-5464-4591-a146-a12f56d47c70/sm/2056984-1482387290892-12_22_16-DBCast_Thumb.jpg","duration":3613,"publication_date":"2016-12-22T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-deadpool-vs-pinkie-pie-marvel-vs-my-little-pony","changefreq":"weekly","video":[{"title":"S3:E14 - Deadpool VS Pinkie Pie (Marvel VS My Little Pony)","description":"Fiction is fragile. When two beings capable of seeing through their own reality face off in a duel to the death, what could possibly go wrong? It's the merc with a mouth versus the super party pony!\n\n\n\n\nGOT AN IDEA FOR A DEATH BATTLE? SUBMIT IT HERE - http://bit.ly/2fM8Z8l\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben B. Singer - https://twitter.com/benbsinger\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\nWriter: Nick Cramer - https://twitter.com/THENervousNick\n\n\n\n\n\n\n\n\n\nAnimator: S.K. Alam \"JPG\" - https://twitter.com/KayasXJPG\n\n\n\n\n\n\n\n\n\nAsst. Animator: Luis Cruz (CVAnimation) - https://twitter.com/CVAnimation\n\n\n\n\n\n\n\n\n\nEditor: Gerardo Mejia - https://twitter.com/HybridRain\n\n\n\n\n\n\n\n\n\nVoice of Deadpool: Curtis \"Takahata101\" Arnott - https://twitter.com/Takahata101\n\n\n\n\n\n\n\n\n\nVoice of Pinkie Pie: Brittany \"BreeFaith\" Lauda - https://twitter.com/BrittanyLaudaVO\n\n\n\n\n\n\n\n\n\nRecorded at Sound Cadence Studios - http://www.soundcadencestudios.com/\n\n\n\n\n\n\n\n\n\nCasting/Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup\n\n\n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-deadpool-vs-pinkie-pie-marvel-vs-my-little-pony","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c6dd13d-2511-4b1a-a639-d03f1c4da844/sm/2031125-1482187586042-DB_071.jpg","duration":1017,"publication_date":"2016-12-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-why-is-the-millennium-falcon-so-f-a-s-t-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E42 - Why is the Millennium Falcon so FAST!?","description":"We all know the Millennium Falcon ran the Kessel Run in 12 Parsecs, but how?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-why-is-the-millennium-falcon-so-f-a-s-t-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b71f9a4-c47b-48c9-a727-6faef6ba8c8d/sm/2097159-1481917778682-DoDBMFThumbnail.jpg","duration":250,"publication_date":"2016-12-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-star-wars-creatures","changefreq":"weekly","video":[{"title":"S1:E209 - Star Wars Creatures","description":"The release of Rogue One has Nick counting down his top 10 Star Wars creatures","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-star-wars-creatures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fd60977-771a-479e-9257-6eb1cf9925da/sm/2056984-1481877903016-12_16_2016-Top10-StarWars.jpg","duration":594,"publication_date":"2016-12-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-db-cast-8","changefreq":"weekly","video":[{"title":"S1:E7 - Santa Claus vs Easter Bunny","description":"The guys really get into the responses from the community battle, talk pinkie pie and Torrian is a unicorn","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-db-cast-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d32d1cac-e26b-4e81-8041-2b149b34dc97/sm/2056984-1481779420013-12_15_16-DBCast-Santa-v-bunny.jpg","duration":3286,"publication_date":"2016-12-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-pinkie-pie-party-up-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E34 - Pinkie Pie Parties into DEATH BATTLE!","description":"My Little Pony's Pinkie Pie is always ready for a party, but is she ready for a DEATH BATTLE!?","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-pinkie-pie-party-up-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63fc59be-00b6-4b3f-90c8-152620519364/sm/2056984-1481526708189-12_12_16-DBpreview-Pinkie.jpg","duration":182,"publication_date":"2016-12-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-final-fantasy-summons","changefreq":"weekly","video":[{"title":"S1:E208 - Final Fantasy Summons","description":"In honor of Final Fantasy XV we're counting down our Top 10 summons!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-final-fantasy-summons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8ccc158-d407-471f-aa7d-0e03a4fa4684/sm/2056984-1481265733398-12_09_16-Top10-FF-summons_V2.jpg","duration":530,"publication_date":"2016-12-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-death-battle-cast-episode-006","changefreq":"weekly","video":[{"title":"S1:E6 - Cereal Mascot Battle Royale","description":"The DEATH BATTLE crew talk Deadpool vs Pinkie Pie, DBX, and which cereal mascot would win in a battle royale","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-death-battle-cast-episode-006","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64fb0ae3-214a-4a01-8919-00fdb68641b2/sm/2056984-1481182919650-12_07_16-DBCast-Thumb.jpg","duration":3704,"publication_date":"2016-12-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-predator-vs-prophet-crysis","changefreq":"weekly","video":[{"title":"S1:E17 - Predator VS Prophet from Crysis","description":"Silent killing machines battle it out! Who will strike the killing blow first?\n\n\n\n\n\nThis episode's animator is Mark Zhang! Follow him on Twitter: https://twitter.com/M_rkZh_ng\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://twitter.com/benbsinger\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n\n\n► Lead Animator – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-predator-vs-prophet-crysis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be08cbe7-876a-4ef0-9cd2-e44f149e9484/sm/2031125-1481063719487-DBX_015.jpg","duration":148,"publication_date":"2016-12-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-deadpool-breaks-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E33 - Deadpool Returns to DEATH BATTLE!","description":"The Merc with the mouth returns to DEATH BATTLE! This time he's fighting... a pony?","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-deadpool-breaks-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a580c7c5-a9df-488d-ae4c-fc686eed875d/sm/2056984-1480917450467-12_05_16-Deadpool-Preview.jpg","duration":110,"publication_date":"2016-12-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-deadpool-s-not-always-a-jack-ass","changefreq":"weekly","video":[{"title":"S1:E41 - Deadpool is Nicer Than You Think","description":"Deadpool's done some pretty brutal things, but he's also got a softer side... in his own way","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-deadpool-s-not-always-a-jack-ass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c06e043-aad8-45ef-b389-a2d315de9000/sm/2097159-1480718648548-Untitled-1.jpg","duration":261,"publication_date":"2016-12-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-dragon-ball-characters-db-d-b-z","changefreq":"weekly","video":[{"title":"S1:E207 - Dragon Ball Characters (DB & DBZ)","description":"We count down our favorite characters from Dragon Ball and DBZ","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-dragon-ball-characters-db-d-b-z","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37ec7329-a0d7-456d-8511-fbbd55effe01/sm/2056984-1480667028856-12_02_16-Top10-DBZchars.jpg","duration":629,"publication_date":"2016-12-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-death-battle-cast-episode-005","changefreq":"weekly","video":[{"title":"S1:E5 - Wizards or Jedi? | DEATH BATTLE Cast","description":"We discuss Zoro vs Erza and find out why Torrian should never have super powers...","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-death-battle-cast-episode-005","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cc7d29f-4322-46b8-aa41-8b575c4eb4e7/sm/2097147-1480558389758-11_31_16-DBCast-Thumb.jpg","duration":3579,"publication_date":"2016-12-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-zoro-vs-erza-once-piece-vs-fairy-tail","changefreq":"weekly","video":[{"title":"S3:E13 - Zoro VS Erza (One Piece VS Fairy Tail)","description":"It's pirate versus mage in this duel of anime blades! They hope to be the best of the best, and this battle will prove it!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITSWiz/Showrunner: Ben B. Singer - https://twitter.com/benbsinger\n\n\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\n\n\n\n\nAnimator: Luis Cruz (CVAnimation) - >https://twitter.com/CVAnimation\n\n\n\n\n\nWriter/Project Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam\n\n\n\n\n\nWriter: Jessica Davis - https://twitter.com/jldtweets\n\n\n\n\n\nEditor: John Francis McCullagh – https://twitter.com/johnfmfilms\n\n\n\n\n\nVoice of Zoro: Kaiji Tang - https://twitter.com/KaijiTang\n\n\n\n\n\nVoice of Erza: Katelyn Barr - https://twitter.com/KBeeThatsMe\n\n\n\n\n\nCasting/Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup\n\n\n\n\n\nRecorded at Sound Cadence Studios - https://twitter.com/SoundCadence\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-zoro-vs-erza-once-piece-vs-fairy-tail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e19ec71d-d2cd-4d39-81e4-69b943570761/sm/2031125-1480351971003-DB_070.jpg","duration":955,"publication_date":"2016-11-28T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-sun-moon-pokemon","changefreq":"weekly","video":[{"title":"S1:E206 - Sun & Moon Pokémon","description":"We count down our favorite Sun and Moon Pokemon!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-sun-moon-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/899de4e8-5499-4ae3-ac60-5276969a0ee0/sm/2056984-1480054106224-11_25_16-Top10-Pokemon-Sunmoon.jpg","duration":448,"publication_date":"2016-11-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-death-battle-cast-004","changefreq":"weekly","video":[{"title":"S1:E4 - Dora vs Superman?","description":"The guys talk about the upcoming Zoro vs Erza DEATH BATTLE and how Dora the explorer could maybe take on Superman","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-death-battle-cast-004","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bb3fe0a-a413-4e79-b3ab-9bff33fbcf14/sm/2056984-1479966374664-11_24_16-DBCast_Thumb.jpg","duration":3386,"publication_date":"2016-11-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-spawn-vs-alucard","changefreq":"weekly","video":[{"title":"S1:E16 - Spawn VS Alucard","description":"Two lords of darkness battle! Which servant of death will reign supreme?\n\n \n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen\n\n\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-spawn-vs-alucard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d706b948-fb47-4d85-8382-94ebf00ff95a/sm/2031125-1479857121408-DBX_014.jpg","duration":65,"publication_date":"2016-11-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-erza-scarlet-armors-up-for-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E32 - Erza Scarlet Gets Equipped for DEATH BATTLE!","description":"Fairy Tail's brave warrior Erza Scarlet armors up for DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-erza-scarlet-armors-up-for-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45b7d55a-5aab-4ff1-a633-5b297fd5fd9c/sm/2056984-1479507172669-11_18_16-Erza-Preview.jpg","duration":102,"publication_date":"2016-11-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-batman-and-superman-jr-versus-feminism","changefreq":"weekly","video":[{"title":"S1:E40 - Batman & Superman JR VS... Feminism?","description":"Bruce and Clark Jr. team up to take on... Feminism?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-batman-and-superman-jr-versus-feminism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91d8ff24-f890-4bf1-a22f-cc937995023a/sm/2097159-1479441091658-DoDBThumbnail.jpg","duration":308,"publication_date":"2016-11-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-anime-tropes-w-fu-nimation","changefreq":"weekly","video":[{"title":"S1:E205 - Anime Tropes w/ FUNimation","description":"FUNimation and ScrewAttack team up to count down 10 of their favorite tropes in Anime!\n\n\n\n\n\n\n\nFollow on Twitter!\n\n\n\n\n\nChad: @ScrewAttackChad\n\n\n\n\n\nLauren: @Laurmoor\n\n\n\n\n\nScrewAttack: @ScrewAttack\n\n\n\n\n\nFUNimation: @FUNimation","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-anime-tropes-w-fu-nimation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ca4a62f-7241-4991-94d4-920e9f95cd55/sm/2056984-1479425505401-11_17_16-Top10-Anime-Tropes.jpg","duration":458,"publication_date":"2016-11-18T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-db-cast-episode","changefreq":"weekly","video":[{"title":"S1:E3 - Black Widow Has it Rough","description":"The guys talk Black Widow, Ruronoa Zoro, and the benefits of having robot arms\n\n\n\n\n\n\n\nFollow the guys on Twitter!\n\n\n\n\n\nChad: @ScrewAttackChad\n\n\n\n\n\nTorrian: @AnimatedTori\n\n\n\n\n\nBen: @BenBSinger\n\n\n\n\n\nSam: @ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-db-cast-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3100d2ea-f067-417d-9a4d-90e10c89a83b/sm/2056984-1479410427047-11_17_16-DBCast-Thumb.jpg","duration":3220,"publication_date":"2016-11-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-roronoa-zoro-slashes-into-death-battle","changefreq":"weekly","video":[{"title":"S1:E31 - Roronoa Zoro Slashes into Death Battle!","description":"The Pirate Hunter is ready to unleash his Three Sword Style!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-roronoa-zoro-slashes-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75b4af44-da69-4535-8128-98573998a515/sm/2056984-1479093264620-11_13_16-Zorro-Preview.jpg","duration":147,"publication_date":"2016-11-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-terry-bogard-vs-jon-talbain-king-of-fighters-vs-darkstalkers","changefreq":"weekly","video":[{"title":"S1:E15 - Terry Bogard VS Jon Talbain (King of Fighters VS Darkstalkers)","description":"Man versus beast! When these fighting game icons clash fists, who's still standing at the end?\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: >https://twitter.com/ScrewAttackBen\n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: >https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: >https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-terry-bogard-vs-jon-talbain-king-of-fighters-vs-darkstalkers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/983df272-8c14-4639-b9bc-984a6df13c5f/sm/2031125-1478993697134-DBX_013.jpg","duration":105,"publication_date":"2016-11-13T00:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-game-boy-games","changefreq":"weekly","video":[{"title":"S1:E204 - Game Boy Games","description":"In honor of the release of Super Rad Raygun, we're counting down the best Game Boy games of all time.\n\n\n\n\n\n\n\n\n\nPick up our all new game Super Rad Raygun here! http://bit.ly/2fcWX6V","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-game-boy-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4ff4c98-4ae7-43ea-9a85-79ed6294dfc3/sm/2056984-1478891804507-11_11_16-Top-10-Game-Boy-Games.jpg","duration":574,"publication_date":"2016-11-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-death-battle-cast-002","changefreq":"weekly","video":[{"title":"S1:E2 - Hulk & Doomsday Get Strange","description":"The guys talk about Dr Strange, Superman Porn and go deeper into Hulk vs Doomsday.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the guys on Twitter!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChad: @ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTorrian: @AnimatedTori\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNick: @THENervousNick\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSam: @ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-death-battle-cast-002","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/716e7e6e-f125-4e8e-8002-c508a701eaff/sm/2056984-1478762191596-11_10_26-DB_Cast_Thumb.jpg","duration":3447,"publication_date":"2016-11-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-hulk-vs-doomsday-marvel-vs-dc-comics","changefreq":"weekly","video":[{"title":"S3:E12 - Hulk VS Doomsday","description":"It's Marvel vs DC as two titans clash in the ultimate battle between the unstoppable and the immovable!\n\n\n\n\n\n\n\n\n\n\n\n\n\nSuper Rad Raygun is now live on Steam for PC, Mac, and Linux! Pick it up before 11/15 and get the soundtrack, free!!>http://bit.ly/SuperRadRT \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITSWiz: Ben Singer - https://twitter.com/benbsinger\n\n\n\n\n\n\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\nWriter/Project Lead: Nick Cramer - https://twitter.com/THENervousNick\n\n\n\n\n\n\n\nAnimator: Torrian Crawford - https://twitter.com/AnimatedTorrii\n\n\n\n\n\n\n\nEditor: Gerardo Mejia – https://twitter.com/HybridRain\n\n\n\n\n\n\n\nVoice of Hulk: Parker Bohon - https://twitter.com/parkerbohon\n\n\n\n\n\nCasting/Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup\n\n\n\nRecorded at Sound Cadence Studios - https://twitter.com/SoundCadence\n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-hulk-vs-doomsday-marvel-vs-dc-comics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10d35481-4c6a-4a0b-ad63-70be11e495cd/sm/2097147-1478665546326-DB_069.jpg","duration":1218,"publication_date":"2016-11-09T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-scrooge-mc-duck","changefreq":"weekly","video":[{"title":"S1:E39 - SCROOGE MCDUCK IS HOW RICH?!","description":"This wealthy waterfowl may just be the richest fictional character of all time.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-scrooge-mc-duck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7362d2a0-f1b7-4f29-a239-97d7c088592a/sm/2056984-1478322257578-11_05_16-DoDB-Scrooge.jpg","duration":232,"publication_date":"2016-11-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-worst-superman-villains","changefreq":"weekly","video":[{"title":"S1:E203 - Worst Superman Villains","description":"The Man of Steel has fought some pretty strange opponents over the years...","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-worst-superman-villains","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28d10ddd-fd81-4485-8d4e-771c0ead4572/sm/2031125-1478261701516-Top10_WorstSupermanVillains.jpg","duration":797,"publication_date":"2016-11-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-cast-season-1-welcome-to-the-death-battle-c-a-s-t","changefreq":"weekly","video":[{"title":"S1:E1 - Doomsday's Baby Goo - #1","description":"On the first episode of the DEATH BATTLE Cast, Ben, Nick, Torrian and Chad discuss Doomsday's origins, which candy would in a fight and Torrian break's Chad's heart.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the guys on Twitter!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBen: @BenBSinger\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChad: @ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTorrian: @AnimatedTori\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNick: @THENervousNick","player_loc":"https://roosterteeth.com/embed/death-battle-cast-season-1-welcome-to-the-death-battle-c-a-s-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6815ff2d-7dbb-49db-b226-c4f99f32f2db/sm/2056984-1478192405880-DBCast_1_Thumb.jpg","duration":3562,"publication_date":"2016-11-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-doomsday-rampages-into-death-battle","changefreq":"weekly","video":[{"title":"S1:E30 - Doomsday Rampages into DEATH BATTLE!","description":"The Ultimate killing machine is unleashed on DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-doomsday-rampages-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ad80c20-e47a-4f2d-92b5-54f20ea8a458/sm/2097147-1477700901081-10_28_16-Doomsday-Preview.jpg","duration":155,"publication_date":"2016-10-31T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-epic-battlefield-1-moments","changefreq":"weekly","video":[{"title":"S1:E202 - EPIC Battlefield 1 Moments","description":"Thanks so much to EA for sponsoring this Top 10. If you want to join in on the shenanigans, why not check out Battlefield 1 on Origin today! http://www.Battlefield.com","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-epic-battlefield-1-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5067459c-b6eb-4f2d-a190-b0458072302e/sm/2056984-1477588941856-10_27_16-Top-10-Battlefield.jpg","duration":393,"publication_date":"2016-10-27T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-donald-trump-vs-hillary-clinton","changefreq":"weekly","video":[{"title":"S1:E14 - Donald Trump VS Hillary Clinton","description":"The Presidential Candidates duke it out in a brutal battle to the DEATH! Surprisingly, it may be more civil than the debates...\n\n\n\n\n\n\n\n\n\n\n\nThis episode’s animators!\n\n\n\n\n\n\n\n\n\nLuis Crus (CVAnimation) - https://twitter.com/CVAnimation\n\n\n\n\n\n\n\n\n\nS.K. Alam “JPG” - https://twitter.com/KayasXJPG\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOriginal Sprites: https://twitter.com/HyperJerk\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/benbsinger\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-donald-trump-vs-hillary-clinton","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/550ae408-5b86-4f08-8175-9f0e8d17ad93/sm/2031125-1477501301291-DBX_012.jpg","duration":168,"publication_date":"2016-10-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-the-incredible-hulk-smashes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E29 - The Incredible Hulk Smashes Into DEATH BATTLE!","description":"The Green Goliath is here to do what he does best... SMASH!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-the-incredible-hulk-smashes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74708cbb-14ee-4274-a365-fa16f39d6907/sm/2056984-1477272349470-Hulk_preview_thumb.jpg","duration":145,"publication_date":"2016-10-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-dogs","changefreq":"weekly","video":[{"title":"S1:E201 - Dogs","description":"Which of these canines would you want as your best friend?","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-dogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0246b17e-de8c-4dea-b26a-1abf0450abad/sm/2031125-1477055200377-Top10_Dogs.jpg","duration":684,"publication_date":"2016-10-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-jotaro-vs-yu-jo-jo-s-bizarre-adventure-vs-persona","changefreq":"weekly","video":[{"title":"S1:E13 - Jotaro VS Yu ( JoJo's Bizarre Adventure VS Persona)","description":"It's Persona versus Stand in this battle of the flash-tastic summoners!\n\n\n\n\n\nThis episode’s animator is Andre Duval II “Maniac”! Follow him on Twitter - https://twitter.com/MizutoManiac\n\n\n\n \n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n\n\n► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-jotaro-vs-yu-jo-jo-s-bizarre-adventure-vs-persona","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8528522-03d7-4900-9057-9940a526fd3d/sm/2031125-1476829886946-DBX_011.jpg","duration":120,"publication_date":"2016-10-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-amy-rose-vs-ramona-flowers-sonic-the-hedgehog-vs-scott-pilgrim","changefreq":"weekly","video":[{"title":"S3:E10 - Amy Rose VS Ramona Flowers (Sonic the Hedgehog VS Scott Pilgrim)","description":"They may have bad boy habits, but they also carry giant hammers. Don't mess with these vicious vixens.\n\n\n\n\n\n\n\n\n\n\n\nLove DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttack \n\n\n\n\n\n\n\n\n\nWe greatly appreciate your support!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLike ScrewAttack on FACEBOOK: >;http://bit.ly/ScrewAttackFacebook\n\n\n\n\n\n\n\n\n\nFollow ScrewAttack on TWITTER: >;http://bit.ly/ScrewAttackTwitter\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\n\n\nWiz/Showrunner: Ben Singer - https://twitter.com/benbsinger\n\n\n\n\n\n\n\n\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad \n\n\n\n\n\n\n\n\n\nAnimator: S.K. Alam \"JPG\"  - https://twitter.com/KayasXJPG\n\n\n\n\n\n\n\n\n\nWriter/Project Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam \n\n\n\n\n\n\n\n\n\nWriter:Jessica Davis - https://twitter.com/jldtweets\n\n\n\n\n\n\n\n\n\nEditor: John Francis McCullagh - https://twitter.com/johnfmfilms \n\n\n\n\n\n\n\n\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-amy-rose-vs-ramona-flowers-sonic-the-hedgehog-vs-scott-pilgrim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b21c2c9-3d06-44c6-811e-6dc8eea1d114/sm/2031125-1476739848100-DB_068.jpg","duration":929,"publication_date":"2016-10-18T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-stupid-comic-villians","changefreq":"weekly","video":[{"title":"S1:E38 - Stupid Comic Villians","description":"Without villains we wouldn't have heroes, but man there have been some dumb ones over the years","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-stupid-comic-villians","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81cfa630-7eb2-4747-a1a6-ce589f68321f/sm/2056984-1476546580877-10_15_16-DoDB-Stupid_Comic_Villains.jpg","duration":283,"publication_date":"2016-10-15T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-worst-cartoons-based-on-video-games","changefreq":"weekly","video":[{"title":"S1:E200 - Worst Cartoons based on Video Games","description":"We may have grown up watching them, but that doesn't mean they get a free pass!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-worst-cartoons-based-on-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/490e7ed5-4a37-48dc-a915-2de15bdb7362/sm/2031125-1476441438572-Top10_VideoGameCartoons.jpg","duration":859,"publication_date":"2016-10-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-everyone-s-favorite-memories-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E277 - Extended Cut: Favorite SideScrollers Memories","description":"The crew reads the g1 community's favorite SideScrollers moments","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-everyone-s-favorite-memories-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f2ac81a-6832-4522-81b1-d4952732049e/sm/2056984-1476162227617-10_11_16-extended-thumb.jpg","duration":1028,"publication_date":"2016-10-11T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-last-one-out-gets-the-lights-side-scrollers-554","changefreq":"weekly","video":[{"title":"S1:E276 - The Final Episode","description":"Sam, Craig and Chad go into detail about the new Game Attack channel announcement and host SideScrollers for the last time.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-last-one-out-gets-the-lights-side-scrollers-554","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66295f81-66fe-4fcb-a4d7-70b786a756bb/sm/2056984-1476161113002-10_11_16-SideScrollers-Final.jpg","duration":3207,"publication_date":"2016-10-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-everything-changes-n-o-w","changefreq":"weekly","video":[{"title":"S1:E941 - Everything Changes... NOW!","description":"Check out Game Attack - the brand new channel created by Craig featuring Shaun Bolen, Parker, Bryan, Chad & Sam: https://www.youtube.com/user/GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter:\n\n\n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - http://bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-everything-changes-n-o-w","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd3031c6-d382-4b62-9bb4-dee1f93c15e2/sm/2056961-1476106716011-10_10_16_EverythingChangesRevealThumb.jpg","duration":238,"publication_date":"2016-10-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-ramona-flowers-skates-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E28 - Ramona Flowers Skates Into DEATH BATTLE!","description":"The girl of Scott Pilgrim's Dreams is here to kick some ass!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-ramona-flowers-skates-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b303ff2-5ff0-4985-a2a2-f2c07b959c45/sm/2056984-1476143316046-10_10_16-Ramona-preview.jpg","duration":123,"publication_date":"2016-10-10T11:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-screw-attack-top-10-s","changefreq":"weekly","video":[{"title":"S1:E199 - Top 10 ScrewAttack Top 10s","description":"In his last Top 10, Stuttering Craig counts down his favorite ScrewAttack Top 10's","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-screw-attack-top-10-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd0091ab-e472-4fe5-ae1f-d5c7a1417f09/sm/2056984-1475732334081-SA_top10.jpg","duration":687,"publication_date":"2016-10-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-spider-man-vs-mikasa","changefreq":"weekly","video":[{"title":"S1:E12 - Spider-Man VS Mikasa (Marvel VS Attack on Titan)","description":"When the Titans aren't attacking, Mikasa still defends Trost from anything and anyone... even the superhero web crawler!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben B. Singer: https://twitter.com/ScrewAttackBen\n\n\n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-spider-man-vs-mikasa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/405e6429-d621-43fd-9611-a5792b704a64/sm/2031125-1475624443116-DBX_010.jpg","duration":101,"publication_date":"2016-10-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-available-now-10-4-16","changefreq":"weekly","video":[{"title":":E41 - Court Jester of the Kill | Available Now #58","description":"Bolen tells us all about his trip to Twitch-Con, and Hinz is playing Destiny...again...","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-available-now-10-4-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5154519-e902-4fa9-bcf1-c1d61ae6abb4/sm/2056984-1475760425940-10_06_16-Available-Now.jpg","duration":3876,"publication_date":"2016-10-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-side-scrollers-extended-cut-10-03-16","changefreq":"weekly","video":[{"title":"S1:E274 - Extended Cut: Craig Has Become That Which He Hates","description":"Craig realizes he's perpetuated a childhood trama","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-side-scrollers-extended-cut-10-03-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2af7e6f-738a-43d2-9b54-fcdd46e1cf4b/sm/2056984-1475551457014-Extended_thumb_craig.jpg","duration":822,"publication_date":"2016-10-04T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-side-scrollers-10-03-16-553","changefreq":"weekly","video":[{"title":"S1:E274 - Terrible Sexy Costumes","description":"With Halloween approaching, Craig, Sam and Chad discover some of the worst sexy costumes ever.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-side-scrollers-10-03-16-553","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83fa7d28-c8ee-4ccb-98bd-583fcaaff7ca/sm/2056984-1475550747652-Terrible_sexy_costumes.jpg","duration":3257,"publication_date":"2016-10-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-amy-rose-stalks-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E27 - AMY ROSE STALKS INTO DEATH BATTLE!","description":"Sonic the Hedgehog's number one fangirl has her hammer ready for a fight!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-amy-rose-stalks-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7c44054-a86c-4055-ab77-1b4d88e6d432/sm/2056984-1475469084860-amy_thumb.jpg","duration":149,"publication_date":"2016-10-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-pok-mon-nightmare-fuel","changefreq":"weekly","video":[{"title":"S1:E37 - Pokémon Nightmare Fuel","description":"While many Pokémon are cute and cuddly, some are straight up terrifying","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-pok-mon-nightmare-fuel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af8bf18f-c5a7-4342-b352-9c0af4d5dfde/sm/2056984-1475205785695-Pokemon_Nightmare_Fuel.jpg","duration":230,"publication_date":"2016-09-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-dumb-top-10-ideas","changefreq":"weekly","video":[{"title":"S1:E198 - Top 10 Dumb Top 10 Ideas","description":"It's Shaun's last Top 10 and he thought he'd share a list of the worst Top 10 ideas he's ever had... With some help from you guys.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-dumb-top-10-ideas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3a1d5eb-f8f7-4069-a6cf-7176e8049f74/sm/2056984-1475188019020-Top_ten_Dumb.jpg","duration":541,"publication_date":"2016-09-29T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-craig-wants-to-talk-available-now-57","changefreq":"weekly","video":[{"title":":E40 - Craig Wants To Talk! | Available Now #57","description":"Craig is crashing the party and has things to say about eSports, emulators and adblock!","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-craig-wants-to-talk-available-now-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/572ea4ec-f431-4804-ac1f-326ec86b9b2a/sm/2056984-1475035993392-Avail_now_thumb.jpg","duration":3984,"publication_date":"2016-09-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-extended-cut-mega-man-wrestling","changefreq":"weekly","video":[{"title":"S1:E273 - Extended Cut: Mega Man Wrestling","description":"Extended episode of SideScrollers covering wrestling intros, Sesame Street and Lebron","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-extended-cut-mega-man-wrestling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a94ff36f-cc22-40a6-90fa-28fe0bd7a3eb/sm/2056984-1474954095581-Mega_Wrestling.jpg","duration":604,"publication_date":"2016-09-27T13:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-tinder-motif","changefreq":"weekly","video":[{"title":"S1:E272 - The Best Games of All Time","description":"The SideScrollers gang talks the best games of all time, Tinder and how much it would cost to put a gold plated dildo.... well... you know","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-tinder-motif","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f140f3e-9d39-4b2d-acfc-d8094b9d67d9/sm/2056984-1474952814407-Best_Games_SS2.jpg","duration":3551,"publication_date":"2016-09-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-ken-vs-terry-street-fighter-vs-king-of-fighters","changefreq":"weekly","video":[{"title":"S3:E9 - Ken VS Terry (Street Fighter VS King of Fighters)","description":"Fiery, fierce, and red. It's time to crown America's top fighting champion!\n\nLove DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: >http://bit.ly/SponsorScrewAttack We greatly appreciate your support!\n\n\n\n\n\n\n\n\n\n\n\n\n\nLike ScrewAttack on FACEBOOK: >http://bit.ly/ScrewAttackFacebook\n\n\n\n\n\n\n\nFollow ScrewAttack on TWITTER: >http://bit.ly/ScrewAttackTwitter\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREDITS\n\n\n\n\n\n\n\nWiz/Showrunner: Ben Singer - https://twitter.com/benbsinger\n\n\n\n\n\nBoomstick:Chad James - https://twitter.com/ScrewAttackChadWriter/Project Lead: Sam Mitchell - https://twitter.com/ScrewAttackSamWriter:Jessica Davis - https://twitter.com/jldtweetsAnimator: Luis Cruz (CVAnimation) - https://twitter.com/CVAnimationEditor: John Francis McCullagh - https://twitter.com/johnfmfilmsBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-ken-vs-terry-street-fighter-vs-king-of-fighters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e26de607-d869-4d47-9467-91836977825d/sm/2031125-1474842147825-DB_067.jpg","duration":812,"publication_date":"2016-09-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-donkey-kong-country-levels-retro","changefreq":"weekly","video":[{"title":"S1:E197 - Top 10 Donkey Kong Country Levels (Retro)","description":"Nick looks back at some of the greatest retro platforming levels of all time.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-donkey-kong-country-levels-retro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0679e30a-430e-44dc-808d-af25cb2b47f0/sm/2056984-1474531062922-DKC_temp.jpg","duration":531,"publication_date":"2016-09-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-bruce-lee-vs-the-world","changefreq":"weekly","video":[{"title":"S1:E11 - Bruce Lee VS The World","description":"He was an icon, and so many would-be legends copied his style. Can the real deal prove he’s better than the rest in this battle of Bruceploitation?\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode’s animator is Jymir “Gale” Mathis! Check out his YouTube channel!\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen\n\n \n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n \n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-bruce-lee-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c66bcd84-e42e-4e18-a9dc-0cd2d3bd70b4/sm/2031125-1474433935160-DBX_009.jpg","duration":155,"publication_date":"2016-09-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-side-scrollers-extended-olmec-bryan","changefreq":"weekly","video":[{"title":"S1:E271 - SideScrollers Extended - Olmec Bryan","description":"We really need a talking Olmec Bryan prop","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-side-scrollers-extended-olmec-bryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef194f65-45e0-4953-bd87-c2bb537e48d7/sm/2056984-1474348762680-SS_Extended.jpg","duration":1321,"publication_date":"2016-09-20T13:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-movies-you-should-have-seen","changefreq":"weekly","video":[{"title":"S1:E270 - Movies You Should Have Seen","description":"Craig, Sam and Chad talk overpriced juice, meth dealers and movies that \"everyone\" should have seen.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-movies-you-should-have-seen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/204cfac1-0c35-4732-8388-51e8e7a5b6cb/sm/2056984-1474347795246-SS_Thumb.jpg","duration":3510,"publication_date":"2016-09-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-terry-bogard-knuckles-his-way-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E26 - TERRY BOGARD KNUCKLES HIS WAY INTO DEATH BATTLE!","description":"The King of Fighters hungry wolf is ready for a fight","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-terry-bogard-knuckles-his-way-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/293a6110-5770-4875-b2ac-281f957c110d/sm/2056984-1474256289495-Terry_preview_thumb.jpg","duration":101,"publication_date":"2016-09-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-craig-skitzfamous-buy-music-video","changefreq":"weekly","video":[{"title":"S1:E940 - Craig Skitzfamous \"Buy\" Music Video","description":"Music video for Craig Skitzfamous's first smash hit \"Buy\" Directed by Shaunny B., 1994\n\n\n\n\n\nPick up our Video Game Vault book now for 30% off on Amazon (https://www.amazon.com/ScrewAt...) and have it tomorrow with Prime. NICE","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-craig-skitzfamous-buy-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9a4c9f6-60bb-4ade-8eaf-46a65672f2f2/sm/2056961-1474059182410-Screen_Shot_2016-09-16_at_3.48.52_PM.png","duration":132,"publication_date":"2016-09-16T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-gamer-pet-peeves","changefreq":"weekly","video":[{"title":"S1:E196 - Top 10 Gamer Pet Peeves","description":"The shit that just drives us crazy.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-gamer-pet-peeves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/284eaf2b-0fdf-464e-bd59-113cd9674d8f/sm/2056961-1473982355926-Top10PetPeavesThumb.jpg","duration":471,"publication_date":"2016-09-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-curious-case-of-paker-bohon","changefreq":"weekly","video":[{"title":"S1:E269 - The Curious Case of Paker Bohon","description":"It's time to learn about ScrewAttack's bro-ish Bohon.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-curious-case-of-paker-bohon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f537650-b94e-4275-8ec8-e1e8cc04fd87/sm/2056961-1473871330524-bro.png","duration":616,"publication_date":"2016-09-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-modern-warfare-remastered-makes-infinite-warfare-look-goooooooood","changefreq":"weekly","video":[{"title":":E39 - Modern Warfare Remastered Makes Infinite Warfare Look GOOOOOOOOOD","description":"We've played them both. Don't get your hopes up for Remastered.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-modern-warfare-remastered-makes-infinite-warfare-look-goooooooood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a4ad87a-7975-4280-92c4-b8d05a0ae85d/sm/2056961-1473872254241-09_13_16_AvailableNowThumb.jpg","duration":2999,"publication_date":"2016-09-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-d-b-x-sasuke-vs-hiei-naruto-vs-yu-yu-hakusho","changefreq":"weekly","video":[{"title":"S1:E10 - Sasuke VS Hiei (Naruto VS Yu Yu Hakusho)","description":"It’s a duel of swords and tortured angst! Who will claim the prize of this fight… and keep their life?\n\n\n\n\n\n\n\n\n\n\n\nThis episode’s animator is Andre Duval II “Maniac”! Follow him on Twitter: https://twitter.com/MizutoManiac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n\n\n\n\n\n\n\n\n\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen\n\n\n\n\n\n\n\n\n\n\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n\n\n\n\n\n\n\n\n\n\n► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-d-b-x-sasuke-vs-hiei-naruto-vs-yu-yu-hakusho","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12093dea-38e4-4053-b084-57d73830adec/sm/2056961-1473866069364-DBX_008.jpg","duration":180,"publication_date":"2016-09-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-enough-o-v-e-r-h-o-l-i-d-a-y-i-n-g","changefreq":"weekly","video":[{"title":"S1:E268 - ENOUGH OVER-HOLIDAYING!","description":"Craig has had enough with all these BS made up holidays...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-enough-o-v-e-r-h-o-l-i-d-a-y-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ba631b2-bb27-4ea6-a659-5bd674299531/sm/2056961-1473771225390-SSTHumbHolidays.jpg","duration":2283,"publication_date":"2016-09-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-ken-masters-kicks-his-way-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E25 - Ken Masters Kicks His Way Into DEATH BATTLE!","description":"Street Fighter's Ken Masters is here to kick some ass.","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-ken-masters-kicks-his-way-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be9322fd-755a-40f5-a0b5-d0d70c199bc4/sm/2056961-1473697226447-KenThumb.jpg","duration":104,"publication_date":"2016-09-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-5-reasons-nintendo-s-nx-will-be-awesome","changefreq":"weekly","video":[{"title":"S1:E195 - 5 Reasons Nintendo's NX Will Be AWESOME","description":"There's a lot of reasons not to believe in the NX but Craig is here to tell you why it will be awesome.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-5-reasons-nintendo-s-nx-will-be-awesome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb4cf1b7-6aad-4e33-9eeb-b859acf7ec69/sm/2056961-1473352076783-NXThumb.jpg","duration":197,"publication_date":"2016-09-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-tracer-vs-scout-overwatch-vs-team-fortress-2","changefreq":"weekly","video":[{"title":"S3:E8 - Tracer VS Scout (Overwatch VS Team Fortress 2)","description":"There’s a\nnew scout in town, and the old cream of the crop has some competition! Can the Scout’s experience and wacky tactics take down the high-speed finesse of\nTracer? Two will enter, but only one will live.\n\n Love DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttack We greatly appreciate your support! \n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter \n\nCredits Wiz/Showrunner: Ben Singer - https://twitter.com/ScrewAttackBen Boomstick: Chad James - https://twitter.com/ScrewAttackChad Writer/Project Lead: Nick Cramer - https://twitter.com/THENervousNick Animator: Torrian Crawford - https://twitter.com/AnimatedTorrii Editor:Gerardo Mejia – https://twitter.com/HybridRain Voice of Tracer:Elsie Lovelock - https://twitter.com/sweetpoffin Voice of Scout:Alexander Gross - https://twitter.com/Octopimp Casting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup Battle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-tracer-vs-scout-overwatch-vs-team-fortress-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfc9d43e-3341-4ac7-9657-9b7482f993ff/sm/2031125-1473056462563-DB_066.jpg","duration":936,"publication_date":"2016-09-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-world-breaker-and-love-maker-who-is-the-hulk-bruce-banner","changefreq":"weekly","video":[{"title":"S2:E11 - World Breaker and Love Maker | Who Is The Hulk (Bruce Banner)","description":"When he's not destroying worlds, Hulk is rocking them.","player_loc":"https://roosterteeth.com/embed/who-is-season-2-world-breaker-and-love-maker-who-is-the-hulk-bruce-banner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a98f935-262a-4392-907f-7028d66904b5/sm/2097098-1472880081185-09_03_16_WhoIs_Hulk.jpg","duration":485,"publication_date":"2016-09-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-10-games-that-suck-but-we-love","changefreq":"weekly","video":[{"title":"S1:E194 - 10 Games That SUCK But We LOVE ","description":"We all have those games that critics hate, right?","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-10-games-that-suck-but-we-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8026a713-784d-49a9-a424-23d8ac46fae5/sm/2056961-1472742263528-Top10ThumbSuck.jpg","duration":644,"publication_date":"2016-09-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-dbx-ryu-vs-lucario-street-fighter-vs-pokemon","changefreq":"weekly","video":[{"title":"S1:E9 - Ryu VS Lucario (Street Fighter VS Pokémon)","description":"When you wanna catch ‘em all, you better be ready for a battle!\n\n This episode’s animator is S.K. Alam “JPG”! Follow him on Twitter: www.twitter.com/KayasXJPG \n\nFollow the creators of DEATH BATTLE & DBX ► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen ► Boomstick – Chad James: https://twitter.com/ScrewAttackChad ► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii\n\n Original Lucario sprites by Ralord http://ralord.deviantart.com/art/Lucario-Sprite-sheet-Update-4-176363395","player_loc":"https://roosterteeth.com/embed/dbx-season-1-dbx-ryu-vs-lucario-street-fighter-vs-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c855b52d-0dec-4522-ad99-b33b29af1a71/sm/2031125-1472659947347-DBX_007.jpg","duration":138,"publication_date":"2016-08-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-sean-has-a-boner-for-duex-ex","changefreq":"weekly","video":[{"title":":E38 - Sean has a Boner for Deus Ex","description":"It's true.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-sean-has-a-boner-for-duex-ex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d53db02-e110-40ca-b38f-c150cbf3c506/sm/2056961-1472593983477-AvailableNowThumb.jpg","duration":2762,"publication_date":"2016-08-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-a-new-admiration-for-streamers","changefreq":"weekly","video":[{"title":"S1:E266 - Extended Cut: A New Admiration for Streamers","description":"Craig is starting his personal Twitch and YouTube channels and the one thing he learned? It's hard.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-a-new-admiration-for-streamers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f88274de-2d47-4a72-960b-0f6b87924240/sm/2056961-1472521670404-SideScrollersExtendedThumb.jpg","duration":744,"publication_date":"2016-08-30T04:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-when-gamers-go-too-serious","changefreq":"weekly","video":[{"title":"S1:E267 - When Gamers Go Too SERIOUS","description":"Chad and Sam went on a business trip and experienced a unique side of the fighting game community...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-when-gamers-go-too-serious","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca0a7514-3146-4c2c-becc-48fb2c83cefd/sm/2056961-1472522129629-SideScrollersThumb.jpg","duration":2887,"publication_date":"2016-08-30T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-scout-enters-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E24 - Scout enters DEATH BATTLE!","description":"Team Fortress's Scout is in to battle Tracer from Overwatch!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-scout-enters-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d30676a-07bf-4ff4-bf6d-59eff3a8be8a/sm/2056961-1472500396868-ScoutPreviewThumb.jpg","duration":140,"publication_date":"2016-08-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-rolls-in-video-games","changefreq":"weekly","video":[{"title":"S1:E193 - Top 10 Rolls in Video Games","description":"It's all about moving around at a rapid space while close to the ground.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-rolls-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a465b2b7-d5d3-493a-b3eb-20f9b54b4f2a/sm/2056961-1472091149071-yahaa.JPG","duration":387,"publication_date":"2016-08-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-available-now-podcast-deus-ex-mankind-divided","changefreq":"weekly","video":[{"title":":E37 - Available Now Podcast - Deus Ex: Mankind Divided","description":"The new Deus Ex is out and is causing some excitement in the office.... and by \"excitement in the office\" we mean Sean is excited.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-available-now-podcast-deus-ex-mankind-divided","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589b07c0-da14-4765-8bc5-00c660f11c09/sm/2056961-1472053143371-deusex.jpg","duration":3498,"publication_date":"2016-08-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-joys-of-building-p-cs","changefreq":"weekly","video":[{"title":"S1:E265 - The Joys of Building PCs","description":"Yes, it's nerdy but we love it.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-joys-of-building-p-cs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/442821d0-8b10-4e42-89bc-1b9506b94c47/sm/2056961-1471924189556-SSExtendedThumb.jpg","duration":1021,"publication_date":"2016-08-24T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-who-cares-about-the-olympics-side-scrollers-podcast-548","changefreq":"weekly","video":[{"title":"S1:E264 - Who Cares About the Olympics? | SideScrollers Podcast #548","description":"So the Olympics happened... did you watch?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-who-cares-about-the-olympics-side-scrollers-podcast-548","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae2ed904-f257-42e6-8b54-ebff14315c3a/sm/2056961-1471922690043-SSThumb2.jpg","duration":3142,"publication_date":"2016-08-23T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-tracer-teleports-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E23 - Tracer Teleports into DEATH BATTLE!","description":"Overwatch's young wonder pilot enters DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-tracer-teleports-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9afc294-2ee2-4b8f-923f-073cb8cc6b01/sm/2056961-1471921192670-TracerPreview.jpg","duration":125,"publication_date":"2016-08-23T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-the-mutant-who-became-death-who-is-gambit","changefreq":"weekly","video":[{"title":"S2:E10 - The Mutant Who Became DEATH | Who Is Gambit","description":"Gambit steals life, love, and precious objects!","player_loc":"https://roosterteeth.com/embed/who-is-season-2-the-mutant-who-became-death-who-is-gambit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c55a7f2-f9a5-4127-859b-ea541313c960/sm/2097098-1471797472155-082116WhoIsGambit.jpg","duration":439,"publication_date":"2016-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-10-ways-to-improve-pok-mon-g-o","changefreq":"weekly","video":[{"title":"S1:E192 - 10 Ways To Improve Pokémon GO!","description":"We've spent more than our fair share of time with Pokémon GO & have some free advice on how to make it what it should be.\n\n\n\nStuff you should do:\n\n►We have a book for you to read and stuff: http://bit.ly/ScrewAttackN64Book\n\n►Watch our stuff early: http://bit.ly/SponsorSA\n\n►Our store: http://bit.ly/NewScrewAttackStore\n\n\n\n►Look how social we are:\n\nScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\n►Stalk the crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-10-ways-to-improve-pok-mon-g-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85edde17-3b6f-4010-af55-7a15069fc827/sm/2056961-1471540376268-Top10ThumbPokemon.jpg","duration":393,"publication_date":"2016-08-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-a-mobile-game-for-gamers","changefreq":"weekly","video":[{"title":"S1:E939 - A Mobile Game For Gamers??","description":"Big thanks to Gun Glory for sponsoring this video! Download the game today on iOS \"link\" and Android \"link\". Leave your username in the comments and be entered for a chance to win $100 of in-game currency.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-a-mobile-game-for-gamers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b16ba1a-338d-439e-aa6e-06fe2ccb20a4/sm/2056961-1471541319077-Mobilethumb.jpg","duration":1051,"publication_date":"2016-08-18T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-d-b-x-trunks-vs-silver-dragon-ball-z-vs-sonic-the-hedgehog","changefreq":"weekly","video":[{"title":"S1:E8 - Trunks VS Silver (Dragon Ball Z VS Sonic the Hedgehog)","description":"It’s a battle for the future!\n\nThis episode's animator is Donald Gagnon! Follow him on Twitter: https://twitter.com/Donimations \n\nFollow the creators of DEATH BATTLE & DBX\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen ► Boomstick – Chad James: https://twitter.com/ScrewAttackChad ► Head of Animation – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-d-b-x-trunks-vs-silver-dragon-ball-z-vs-sonic-the-hedgehog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a72f7573-5d07-4036-95dc-47fd393bd41b/sm/2056961-1471402429424-DBX_006.jpg","duration":126,"publication_date":"2016-08-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-maybe-your-sky-man-available-now","changefreq":"weekly","video":[{"title":":E36 - Maybe Your Sky, Man? | Available Now ","description":"Not everyone hates NMS the way Craig does\n\nSend your moves, failures, and questions to Live@ScrewAttack.com!","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-maybe-your-sky-man-available-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9902b3db-541f-4d46-857f-540bed42e286/sm/2097098-1471386986318-08_16_16_AvailableNow.jpg","duration":3848,"publication_date":"2016-08-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-ps-vue-and-crappy-oreos","changefreq":"weekly","video":[{"title":"S1:E263 - PS Vue and Crappy Oreos","description":"Thank to MVMT Watches for sponsoring this week's episode. Get 15% off your entire order by going to http://MVMTWatches/com/SideScrollers | This week the guys taste all the latest Oreos so you don't have to and ask a serious question: when is it time to cut the cable cord?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-ps-vue-and-crappy-oreos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb47101e-47bd-42ca-b89e-4acc58e89f54/sm/2056961-1471313507703-SSExtendedCutThumb.jpg","duration":3389,"publication_date":"2016-08-17T04:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-worst-tv-show-idea-in-history","changefreq":"weekly","video":[{"title":"S1:E262 - The Worst TV Show Idea in History?","description":"This episode is produced exclusively for FIRST Members. Watch this and all of our videos early by trying a free 30 day trial: https://screwattack.roosterteeth.com/first/details\n\nRecently on a road trip Craig, Sam, Bolen and Chad came up with the worst TV show idea in history... or is it the best?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-worst-tv-show-idea-in-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0fa3c8d-5462-41cb-8cbd-6bc63eb498b3/sm/2056961-1471355448343-SSExtendedCutThumb.jpg","duration":937,"publication_date":"2016-08-16T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-cammy-vs-sonya","changefreq":"weekly","video":[{"title":"S3:E7 - Cammy VS Sonya","description":"It's Street Fighter versus Mortal Kombat! Two iconic military stunners across the pond from each other will duel, but only one will survive.\n\n\n\nFind out who the next fighters will be squaring off against by following our instagram - https://www.instagram.com/officialscrewattack\n\n\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nCredits\n\nWiz/Showrunner: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\nWriter & Project Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam\n\nWriter: Jessica Davis - https://twitter.com/jldtweets\n\nAnimator: Luis Cruz (CVAnimation) - https://twitter.com/CVAnimation\n\nEditor: John Francis McCullagh - https://twitter.com/johnfmfilms\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA\n\nAudio Engineer - Amber Lee Connors - https://twitter.com/AmberLeeConnors\n\nAudio recorded at Sound Cadence Studios - https://twitter.com/SoundCadence","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-cammy-vs-sonya","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/877310dd-0b49-4869-88ca-5139711d5c28/sm/2031125-1471151547090-DB_065.jpg","duration":741,"publication_date":"2016-08-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-sonya-blade-cuts-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E22 - Sonya Blade Cuts into DEATH BATTLE!","description":"Mortal Kombat's Sonya is here to take on Cammy from Street Fighter!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-sonya-blade-cuts-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a10b19f4-a571-4278-8b1f-0af71e20e1a4/sm/2056961-1471034730316-SonyaPreviewThumb.jpg","duration":125,"publication_date":"2016-08-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-deadpool-thanos-death-true-love","changefreq":"weekly","video":[{"title":"S1:E36 - Deadpool + Thanos + Death = True Love","description":"Deadpool has a boner for Death. Thanos had a boner for Death. Death has a boner for....?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-deadpool-thanos-death-true-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a98a5fbd-50d8-44c9-88c7-41a619d4de52/sm/2056961-1471017126767-DeskofThumbnail.jpg","duration":276,"publication_date":"2016-08-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-hair-do-s","changefreq":"weekly","video":[{"title":"S1:E191 - Top 10 Hair Do's","description":"Regardless of what they do, these characters will always look fabulous!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-hair-do-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68d20873-f56a-4664-9341-905c5525242c/sm/2097147-1470955550744-Top_Ten_Hair_Dos.jpg","duration":444,"publication_date":"2016-08-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-craig-hates-no-man-s-sky","changefreq":"weekly","video":[{"title":":E35 - Craig Hates No Man's Sky","description":"Let's go over there and walk for 8 minutes. Then let's walk back another 8 minutes. NO.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-craig-hates-no-man-s-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06518e74-9b60-43f8-a2e1-f994b1477370/sm/2056961-1470778375640-ANThumb.jpg","duration":4502,"publication_date":"2016-08-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-inspector-gadget-stuttering-craig-jean-luc-picard","changefreq":"weekly","video":[{"title":"S1:E261 - Inspector Gadget + Stuttering Craig + Jean-Luc Picard","description":"Because why not...?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-inspector-gadget-stuttering-craig-jean-luc-picard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aa4b33b-8953-449a-96e7-3a89196e24c6/sm/2056961-1470751986425-ExtendedCutThumb.jpg","duration":350,"publication_date":"2016-08-09T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-covered-peas-giant-dongs","changefreq":"weekly","video":[{"title":"S1:E260 - Covered Peas & Giant Dongs","description":"SideScrollers Podcast #546 - Did you know that you can make a dick that's over 12 feet long?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-covered-peas-giant-dongs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa442383-907f-4433-80c1-e421f57063da/sm/2056961-1470751717943-SideScrollersThumb3.jpg","duration":3625,"publication_date":"2016-08-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-wtf-is-wrong-with-you-p-e-o-p-l-e-2","changefreq":"weekly","video":[{"title":"LPS:E55 - WTF IS WRONG WITH YOU PEOPLE?? ","description":"We've heard the internet complain about this game for a long time so we decided to pop it in. Sorry, internet, you're wrong.\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.\n\n\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlayTap That App - http://bit.ly/GATapThatApp\n\n\n\n\n\nTry Hard on iTunes: http://bit.ly/TryHardiTunesTry Hard on Google Play: http://bit.ly/TryHardGooglePlay\n\n\n\n\n\nGame Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-wtf-is-wrong-with-you-p-e-o-p-l-e-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f4b849f-6148-47e1-a772-fe3c1305b485/sm/2056961-1484940497309-MightyNo9Thumb.jpg","duration":1802,"publication_date":"2017-01-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-ninja-masters-vs-trump-clinton-total-accurate-battle-simulator","changefreq":"weekly","video":[{"title":"S1:E48 - Ninja Masters vs Trump & Clinton: Total Accurate Battle Simulator","description":"The guys square off in a TABS tournament! Who is the best and most strategic player at putting random fighters in a brawl together? The answer will surprise you.\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-ninja-masters-vs-trump-clinton-total-accurate-battle-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ded37dc6-50a6-45a2-932e-7ce9f6f1011a/sm/2056961-1484939461072-TABS2Thumb.jpg","duration":1525,"publication_date":"2017-01-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-7-the-gaping-dragon","changefreq":"weekly","video":[{"title":"LPS:E53 - Death Week Day 7 - The Gaping Dragon","description":"In the finale of Death Week, Craig lingers on the ultimate rage quit against his biggest opponent - and it's not what you think it would be. \n\n\n\n\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek Watch Death Week a day early by becoming a Rooster Teeth FIRST Member. Get a free 30 day trial by going here (and you can watch the entire week!): http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-7-the-gaping-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85b8d05c-06d0-4b86-9852-ac18224f2392/sm/2056961-1484776736165-DeathWeekDay7.jpg","duration":3907,"publication_date":"2017-01-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-7-the-gaping-dragon-uncut","changefreq":"weekly","video":[{"title":"LPS:E53 - Death Week Day 7 - The Gaping Dragon (Uncut)","description":"In the finale of Death Week, Craig lingers on the ultimate rage quit against his biggest opponent - and it's not what you think it would be. \n\n\n\n\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek Watch Death Week a day early by becoming a Rooster Teeth FIRST Member. Get a free 30 day trial by going here (and you can watch the entire week!): http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-7-the-gaping-dragon-uncut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5118febc-6a0a-4752-b133-35a12d5d603b/sm/2056961-1484776730136-DeathWeekDay7Uncut.jpg","duration":6007,"publication_date":"2017-01-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-6-bolen-s-great-regret-uncut","changefreq":"weekly","video":[{"title":"LPS:E49 - Death Week Day 6 - Bolen's Great Regret (Uncut)","description":"With his new found confidence, Craig enters a realm that could very well destroy everything he's worked for.\n\n\n\n\n\n\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek Watch Death Week a day early by becoming a Rooster Teeth FIRST Member. Get a free 30 day trial by going here (and you can watch the entire week!): http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-6-bolen-s-great-regret-uncut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64e43d8c-19b7-4c48-97ea-64a984926f5b/sm/2056961-1484761568250-DeathWeekDay6Uncut.jpg","duration":5374,"publication_date":"2017-01-20T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-6-bolen-s-great-regret","changefreq":"weekly","video":[{"title":"LPS:E49 - Death Week Day 6 - Bolen's Great Regret","description":"With his new found confidence, Craig enters a realm that could very well destroy everything he's worked for.\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek Watch Death Week a day early by becoming a Rooster Teeth FIRST Member. Get a free 30 day trial by going here (and you can watch the entire week!): http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-6-bolen-s-great-regret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdc628a8-d1c8-4086-aa71-cb07e78b67e9/sm/2056961-1484761438436-DeathWeekDay6.jpg","duration":2546,"publication_date":"2017-01-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-5-craig-s-the-best","changefreq":"weekly","video":[{"title":"LPS:E49 - Death Week Day 5 - Craig's the Best","description":"After hitting the lowest point a man can get, Craig dusts himself off with a new attitude and a new weapon.\n\n\n\n\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek Watch Death Week a day early by becoming a Rooster Teeth FIRST Member. Get a free 30 day trial by going here (and you can watch the entire week!): http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-5-craig-s-the-best","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3f100ae-027a-42a5-a933-31e1d9580135/sm/2056961-1484760983014-DeathWeekDay5b.jpg","duration":2847,"publication_date":"2017-01-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-5-craig-s-the-best-uncut","changefreq":"weekly","video":[{"title":"LPS:E49 - Death Week Day 5 - Craig's the Best (Uncut)","description":"After hitting the lowest point a man can get, Craig dusts himself off with a new attitude and a new weapon.\n\n\n\n\n\n\n\nGet a free 30 day trial FIRST Membership by going here (and you can watch the entire week!): http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-5-craig-s-the-best-uncut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1aea789-2902-4a1c-9d31-d5b87734fc02/sm/2056961-1484761135973-DeathWeekDay5bUncut.jpg","duration":3627,"publication_date":"2017-01-19T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-hard-live-in-vegas-try-harder-15","changefreq":"weekly","video":[{"title":"S1:E14 - Try Hard Live in Vegas? | Try Harder #15","description":"The guys recall some of their best (or worst) stories when hitting the gambling tables including some never before told... or remembered... by some members of the team.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-hard-live-in-vegas-try-harder-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6ffe85b-77b4-44a9-8e05-24d671f42083/sm/2056961-1484780197840-TryHarder15Thumb.jpg","duration":1708,"publication_date":"2017-01-19T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-4-the-bottom-of-the-barrel-uncut","changefreq":"weekly","video":[{"title":"LPS:E47 - Death Week Day 4 - THE BOTTOM OF THE BARREL (Uncut)","description":"Craig encounters his biggest challenge yet: The Bell Gargoyles and Hank, the biggest piece of trash in video game history. EVER. F YOU HANK. F YOU!!\n\n\n\n\n\nTo get a free 30 day trial of FIRST Membership and watch this wonderful video in it's entirety (and support the GA boys) click here: ;http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-4-the-bottom-of-the-barrel-uncut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/966c936f-6d51-44dd-aafb-aeba43765f62/sm/2056961-1484756406784-DeathWeekDay4Uncut.jpg","duration":6195,"publication_date":"2017-01-18T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-4-the-bottom-of-the-barrel","changefreq":"weekly","video":[{"title":"LPS:E47 - Death Week Day 4 - THE BOTTOM OF THE BARREL","description":"Craig encounters his biggest challenge yet: The Bell Gargoyles and Hank, the biggest piece of trash in video game history. EVER. F YOU HANK. F YOU!!","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-4-the-bottom-of-the-barrel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d15f064-bc6a-4da1-b95b-efbcb15ae47a/sm/2056961-1484756153345-DeathWeekDay4.jpg","duration":3012,"publication_date":"2017-01-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-nintendo-switch-expectations-classic-hollywood-faces-try-hard-podcast-15","changefreq":"weekly","video":[{"title":"S1:E15 - Nintendo Switch Expectations & Classic Hollywood Faces - Try Hard Podcast #15","description":"With the big Nintendo Switch delivering all the good stuff this week, the guys sit down and try to figure out what they think will happen once it's released. Spoilers: Craig likes the Switch.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-nintendo-switch-expectations-classic-hollywood-faces-try-hard-podcast-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85851495-9031-4be6-ad17-cb216aed56cc/sm/2056961-1484688418459-TryHard15Thumb.jpg","duration":4783,"publication_date":"2017-01-17T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-3-face-your-fears-u-n-c-u-t","changefreq":"weekly","video":[{"title":"LPS:E43 - Death Week Day 3 - Face Your Fears (UNCUT)","description":"Exclusive for FIRST Members - Day 3 of Death Week Completely Uncut.\n\n\n\n\n\n\n\n\n\nTo get a free 30 day trial of FIRST Membership and watch this wonderful video in it's entirety (and support the GA boys) click here: ;http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-3-face-your-fears-u-n-c-u-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/135f2847-b20e-471b-8938-4471afd0f9db/sm/2056961-1484344171591-DeathWeekDay3Uncut.jpg","duration":4105,"publication_date":"2017-01-17T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-3-face-your-fears","changefreq":"weekly","video":[{"title":"LPS:E40 - Death Week Day 3 - Face Your Fears","description":"With great progress being made, Craig must now face his fears face to face. What will become of our great warrior?\n\n\n\n\n\n\n\n\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-3-face-your-fears","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7068fe5-a499-4a6e-a5f4-b4f91824fc11/sm/2056961-1484342343161-DeathWeekDay3.jpg","duration":2513,"publication_date":"2017-01-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-2-the-definition-of-insanity-u-n-c-u-t","changefreq":"weekly","video":[{"title":"LPS:E43 - Death Week Day 2 -The Definition of INSANITY (UNCUT)","description":"Exclusive for FIRST Members - Day 2 of Death Week Completely Uncut.\n\n\n\n\n\n\n\n\n\nTo get a free 30 day trial of FIRST Membership and watch this wonderful video in it's entirety (and support the GA boys) click here: ;http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-2-the-definition-of-insanity-u-n-c-u-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76746eee-dc66-426a-a3ba-284a475ec720/sm/2056961-1484344122391-DeathWeekDay2Uncut.jpg","duration":4142,"publication_date":"2017-01-16T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-2","changefreq":"weekly","video":[{"title":"LPS:E40 - Death Week Day 2 -The Definition of INSANITY","description":"Craig continues his question and does battle with one of the most vicious bastards ever: the Taurus Demon.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d50ae95f-8592-438f-b8da-48ee2a1ae7f6/sm/2056961-1484341789571-DeathWeekDay2.jpg","duration":2075,"publication_date":"2017-01-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-1-basic-training-to-d-i-e-u-n-c-u-t","changefreq":"weekly","video":[{"title":"LPS:E43 - Death Week Day 1 -Basic Training... TO DIE!! (UNCUT)","description":"Exclusive for FIRST Members - Day 1 of Death Week Completely Uncut.\n\n\n\n\n\n\n\nTo get a free 30 day trial of FIRST Membership and watch this wonderful video in it's entirety (and support the GA boys) click here: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-1-basic-training-to-d-i-e-u-n-c-u-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d3d357c-a5fe-415b-a210-2b82e3b9ca6d/sm/2056961-1484343986951-DeathWeekDay1Uncut.jpg","duration":4766,"publication_date":"2017-01-15T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-death-week-day-1-basic-training-to-die","changefreq":"weekly","video":[{"title":"LPS:E40 - Death Week Day 1 - Basic Training... TO DIE","description":"This is the story of a man who has never experienced Dark Souls and his friend who wants to torture him. \n\n\n\n\n\nIf you enjoy this please make sure to watch it every day... because if you don't we'll never do anything like this again. EVER. Like... ever. So watch and spread the word about #DeathWeek","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-death-week-day-1-basic-training-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/822cd423-25ad-4e62-9799-22df81ec87d8/sm/2056961-1484341543367-DeathWeekDay1b.jpg","duration":3543,"publication_date":"2017-01-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-duke-nukem-s-t-tty-city-is-a-real-thing","changefreq":"weekly","video":[{"title":"LPS:E46 - Duke Nukem's T*tty City is a Real Thing","description":"Sometimes you just want to play a game with a strip club in it.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-duke-nukem-s-t-tty-city-is-a-real-thing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f48a22cb-e905-4b7f-99e6-56695602a85f/sm/2056961-1484351918381-DNFThumb3.jpg","duration":1349,"publication_date":"2017-01-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-dick-chops-decapitations-for-honor-executions-highlights","changefreq":"weekly","video":[{"title":"S1:E47 - Dick Chops & Decapitations: 'For Honor' Executions & Highlights","description":"Bolen went out to San Fran and got to play For Honor early and brought back some highights for the guys to drool over.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-dick-chops-decapitations-for-honor-executions-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee1a0507-e114-4b0d-889b-d5b81e5d8a22/sm/2056961-1484173238945-ForHonorThumb.jpg","duration":1135,"publication_date":"2017-01-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-craig-vs-bolen-l-e-t-s-get-crazy","changefreq":"weekly","video":[{"title":"LPS:E39 - Craig vs Bolen - LET'S GET CRAZY","description":"Where the hell is the product placement? I mean, I get that they paid for it like 20 years ago and all but can't you just throw them in their just as a little nod to the past? I could really go for some Pizza Hut right about now. I guess it worked eh?","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-craig-vs-bolen-l-e-t-s-get-crazy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f780010-f82a-4abc-a707-5818d64f6da6/sm/2056961-1484090116024-CrazyTaxiThumb2.jpg","duration":1572,"publication_date":"2017-01-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-would-you-put-your-kid-on-you-tube-try-harder-14","changefreq":"weekly","video":[{"title":"S1:E13 - Would You Put Your Kid on YouTube? - Try Harder #14","description":"With one of the most popular YouTubers being 5 years old, Craig was hit with a serious question. What would YOU do?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-would-you-put-your-kid-on-you-tube-try-harder-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34487568-715b-4e87-94ba-ddfbae61435b/sm/2056961-1484082806228-TryHarder14Thumb.jpg","duration":1262,"publication_date":"2017-01-11T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-the-world-is-f-l-a-t-try-hard-podcast-14","changefreq":"weekly","video":[{"title":"S1:E14 - The World is FLAT??? - Try Hard Podcast #14","description":"Did you know the world was flat? Apparently some people still do. Craig also talks about why he may die soon as well as GA's plan for the Nintendo Switch.\n\nThis episode is sponsored by Dollar Shave Club. Try it out and support Game Attack all in one step  by going to http://dollarshaveclub.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-the-world-is-f-l-a-t-try-hard-podcast-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1374ba3-5021-4525-9235-22d3c70ffd5e/sm/2056961-1484082588030-TryHard14Thumb.jpg","duration":5442,"publication_date":"2017-01-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-rawr-i-m-a-dinosaur","changefreq":"weekly","video":[{"title":"LPS:E38 - RAWR I'M A DINOSAUR","description":"At some point in this video we can be 100% be classified as insane. For those of you looking for intense Lego Jurassic Park action go buy some Legos and watch Jurassic Park. It's available for 5 bucks at your local Wal-Mart and possibly Target. We think that both mega stores have it available but Target may charge you a dollar more. They tend to be a bit more ritzy. ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-rawr-i-m-a-dinosaur","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ae5261f-9043-43fb-8eaf-e0374f35f026/sm/2056961-1483740720569-JurrasicParkThumb2.jpg","duration":2333,"publication_date":"2017-01-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-best-game-ever-made","changefreq":"weekly","video":[{"title":"LPS:E37 - THE BEST GAME EVER MADE","description":"How the HELL has it taken us so long to play this game. It is Game Attack personified as a video game.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-best-game-ever-made","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b16592-6e2a-4b13-b8cf-92ab3682e188/sm/2056961-1483739507502-JustCauseThumb.jpg","duration":2358,"publication_date":"2017-01-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-the-greatest-story-ever-told-overcooked","changefreq":"weekly","video":[{"title":"S1:E46 - The Greatest Story Ever Told: Overcooked","description":"Sometimes there are stories that can't be told - only watched. This is the story of four men who never met each other previously coming together for one common cause.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-the-greatest-story-ever-told-overcooked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b864857b-792c-4e3d-9762-f612f9a6eec7/sm/2056961-1483731558998-Overcooked3Thumb.jpg","duration":1940,"publication_date":"2017-01-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-there-are-no-boobs-in-this-video","changefreq":"weekly","video":[{"title":"LPS:E36 - There Are No Boobs in this Video","description":"If you want to see more games from this era do three things: 1)watch the whole video 2)tell a friend we're doing it so they watch and subscribe 3)tell us what other games of this era you'd like to see.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-there-are-no-boobs-in-this-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff37b242-6dd6-42b6-802a-7a8b26fb257a/sm/2056961-1483657808573-SSXTrickyThumb.jpg","duration":1016,"publication_date":"2017-01-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-he-is-broken-in-h-a-l-f","changefreq":"weekly","video":[{"title":"LPS:E35 - HE IS BROKEN IN HALF! ","description":"What could possibly beat last time these four met in the squared circle? You'll have to see it to believe it.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-he-is-broken-in-h-a-l-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e241362a-976e-4fc7-bf0c-9c41df1e2be2/sm/2056961-1483470746362-Wrestling2Thumbc.jpg","duration":795,"publication_date":"2017-01-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-amazing-frog-the-mis-adventures-of-froggy-mc-frogerson-snatch","changefreq":"weekly","video":[{"title":"LPS:E34 - Let's Play AMAZING FROG - The Mis-Adventures of Froggy McFrogerson & Snatch","description":"Sometimes Froggy McFrogerson givith and some times Froggy McFrogerson taketh it away. This time he taketh away.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-amazing-frog-the-mis-adventures-of-froggy-mc-frogerson-snatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18159c12-f83c-414f-b8f1-3b9af66aeec2/sm/2056961-1483466376363-AmazingFrogThumb.jpg","duration":1393,"publication_date":"2017-01-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-12-killing-chickens-craig-vs-cinefiles","changefreq":"weekly","video":[{"title":"S1:E12 - Try Harder #12 - Killing Chickens & Craig vs Cinefiles","description":"What's up with rappers killing chickens in their closest?","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-12-killing-chickens-craig-vs-cinefiles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbf1e5c6-b390-444b-b789-8a3495995fc6/sm/2056961-1483464818132-TryHarder13Thumb.jpg","duration":1063,"publication_date":"2017-01-04T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-pin-up-girls-inappropriate-dreams-try-hard-podcast-13","changefreq":"weekly","video":[{"title":"S1:E13 - Pin-Up Girls & Inappropriate Dreams - Try Hard Podcast #13","description":"Bolen feels the need to tell the guys about a widely inappropriate dream involving a hot tub and dick picks. Nice.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-pin-up-girls-inappropriate-dreams-try-hard-podcast-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a7fba6e-c774-4bee-8e25-d9407807c9db/sm/2056961-1483464197387-TryHard13Thumb.jpg","duration":3834,"publication_date":"2017-01-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-craig-vs-bolen-the-saddest-app-ever","changefreq":"weekly","video":[{"title":"S1:E12 - Craig vs Bolen: The Saddest App Ever","description":"Craig and Bolen play an app that includes the brutal murder of the cutest boot ever made... AND... CONTROVERSY!!! ","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-craig-vs-bolen-the-saddest-app-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7771e219-b9ad-48fa-a250-a17db1ee6b29/sm/2056961-1483052395084-DontGringThumb2.jpg","duration":478,"publication_date":"2017-01-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-lance-a-lot-prematurely-celebration","changefreq":"weekly","video":[{"title":"S1:E45 - Lance A Lot: Prematurely Celebration","description":"We've all been there. We've all done it. We've all suffered from it - but who did it this time?","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-lance-a-lot-prematurely-celebration","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1eaa59d-7cd5-4532-92d4-b790dbe5c500/sm/2056961-1483049304744-LancealotThumb.png","duration":1507,"publication_date":"2017-01-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-adorable-a-holes","changefreq":"weekly","video":[{"title":"S1:E43 - ADORABLE A-HOLES","description":"No animals were harmed in the making of this video. We think. That could be totally bullshit but we think it's accurate... for the most part. Ok, actually, I think Chad stepped on a cricket or a roach or something. You know we should really put down some sort of roach catcher or something in the office. I'll make sure to bring that up at the next meeting. Wait... we don't really have meetings. Fuck my life.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-adorable-a-holes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce42c52-c35b-425d-a8ef-f08720e29ecf/sm/2056961-1482956083966-UltimateChickenHorseThumb.jpg","duration":1229,"publication_date":"2017-01-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-wtf-is-wrong-with-you-p-e-o-p-l-e","changefreq":"weekly","video":[{"title":"LPS:E33 - WTF IS WRONG WITH YOU PEOPLE??","description":"How ANYONE can think this game is good is ridiculous. I understand you have an opinion but your opinion is wrong. I'm sorry but this game is a nasty turd in the history of gaming and should never been spoken of again. What the fuck is wrong with you people? ANSWER ME!!!! HAPPY FUCKING NEW YEAR.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-wtf-is-wrong-with-you-p-e-o-p-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69d112a0-37b1-4aca-bb8d-eefe6a5b0ef5/sm/2056961-1482955821375-ShadowThumb.jpg","duration":1037,"publication_date":"2016-12-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-c-l-u-s-t-e-r-t-r-u-c-k-the-hype-r-e-t-u-r-n-s","changefreq":"weekly","video":[{"title":"S1:E43 - CLUSTERTRUCK: THE HYPE RETURNS!","description":"There's really only one way to make ClusterTruck better: add lasers to it... and you know what? They did. They added lasers to it. Damn it, it's beautiful.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-c-l-u-s-t-e-r-t-r-u-c-k-the-hype-r-e-t-u-r-n-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/339a991e-181c-4eca-941c-47f4cde29b29/sm/2056961-1483055453487-Clustertruck3Thumb.jpg","duration":1966,"publication_date":"2016-12-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-best-vr-g-a-m-e","changefreq":"weekly","video":[{"title":"LPS:E32 - THE BEST VR GAME??","description":"Craig's been a sceptic of VR since the beginning so threw an Oculus on his stupid face to see if this game could change his mind.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-best-vr-g-a-m-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a0fcd9e-a083-42e7-b6e9-cfa54bad0a80/sm/2056961-1482949224268-VRSportsThumb.jpg","duration":960,"publication_date":"2016-12-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-12-the-games-of-the-year","changefreq":"weekly","video":[{"title":"S1:E11 - Try Harder #12 - The Games of the Year","description":"We know our favorite games of the year.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-12-the-games-of-the-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/519f74f2-ccc8-446e-a5d9-14d8befda0a6/sm/2056961-1482899495207-TryHarder12Thumb.jpg","duration":1507,"publication_date":"2016-12-28T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-bolen-discovers-the-internet-try-hard-podcast-12","changefreq":"weekly","video":[{"title":"S1:E12 - Bolen Discovers the Internet - Try Hard Podcast #12","description":"And on the 12th podcast, Bolen discovered the internet.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-bolen-discovers-the-internet-try-hard-podcast-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/753cf3aa-4238-466a-ac95-6d8cfcd658ea/sm/2056961-1482899131101-TryHard12Thumb.jpg","duration":4020,"publication_date":"2016-12-28T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-ninja-masters-vs-barbarians","changefreq":"weekly","video":[{"title":"S1:E42 - Ninja Masters vs Barbarians","description":"One thing we're pretty proud of is that all the faces you see in our thumbnail actually come from our videos - no fake or staged faces. Why is that important? I don't know. ","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-ninja-masters-vs-barbarians","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a243e7b5-c573-49c9-990d-08236923fc5c/sm/2056961-1482807034462-TABSThumb.jpg","duration":1642,"publication_date":"2016-12-27T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-minecraft-guns","changefreq":"weekly","video":[{"title":"S1:E11 - MINECRAFT + GUNS","description":"Ever wanted to play one of the most popular games in history with guns? Well now you can't. This isn't it.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-minecraft-guns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5365a22-7dd1-4fec-a03f-2af43dc8440b/sm/2056961-1482376386960-MinecraftGunGameThumb.jpg","duration":954,"publication_date":"2016-12-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-we-broke-mario-maker","changefreq":"weekly","video":[{"title":"LPS:E31 - We Broke Mario Maker","description":"LPS:E31 - We Broke Mario Maker","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-we-broke-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b99aae0b-b012-40eb-9d9d-c80bfe5184b3/sm/2056961-1482375867949-MarioMaker3Thumb.jpg","duration":950,"publication_date":"2016-12-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-total-manliness","changefreq":"weekly","video":[{"title":"S1:E40 - TOTAL MANLINESS ","description":"You may have seen other YouTube channels play this game but NOTHING like this.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-total-manliness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5623dd1c-d219-4a0b-9f37-20e2d66098c5/sm/2056961-1482375585298-MountYourFriendsThumb.jpg","duration":1611,"publication_date":"2016-12-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-10-simply-unbelievable","changefreq":"weekly","video":[{"title":"S1:E41 - Mario Party 10: SIMPLY UNBELIEVABLE","description":"No words... none.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-10-simply-unbelievable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e3193eb-2949-4257-a8b5-4fa053a1177b/sm/2056961-1482375401292-MarioParty6.jpg","duration":1347,"publication_date":"2016-12-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-action-movie-s-i-m-u-l-a-t-o-r","changefreq":"weekly","video":[{"title":"LPS:E30 - ACTION MOVIE SIMULATOR!!","description":"VR is the future eh?","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-action-movie-s-i-m-u-l-a-t-o-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/221f34e3-afc7-455a-8bf0-0f0b8d2503f6/sm/2056961-1482347048577-SuperHotThumb2.jpg","duration":893,"publication_date":"2016-12-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-hard-11-the-fart-heard-around-the-world","changefreq":"weekly","video":[{"title":"S1:E10 - Try Harder #11 - The Fart Heard Around the World","description":"During this episode of Try Harder something happened. Something unexpected. Something magical.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-hard-11-the-fart-heard-around-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa8f0447-784a-4a49-a878-804b9e7a8c3d/sm/2056961-1482274583270-TryHarder11Thumb.jpg","duration":594,"publication_date":"2016-12-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-a-tale-of-two-podcasts","changefreq":"weekly","video":[{"title":"S1:E11 - A Tale of Two Podcasts - Try Hard Podcast #11","description":"Some will call this episode \"The One with Burnie and Ashley.\" Some will call this \"The One Where Shit Went Crazy.\" Some will call this \"The One Where Bolen Told a Horrible Story.\" What are you going to call it?","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-a-tale-of-two-podcasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec16a3e-4d6e-4b43-a83a-5f5a60279322/sm/2056961-1482276568833-TryHard11Thumb2.jpg","duration":3320,"publication_date":"2016-12-21T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-bolen-s-reaction-to-john-wick-2","changefreq":"weekly","video":[{"title":"L:E4 - Bolen's Reaction to John Wick 2","description":"Bolen loves John Wick. He loves John Wick. HE LOVES JOHN WICK.","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-bolen-s-reaction-to-john-wick-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd8d7a50-95cf-492c-b71f-30a033b9d86a/sm/2056961-1482215949549-JohnWickReactionThumb.jpg","duration":271,"publication_date":"2016-12-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-drunk-mini-games-this-was-a-horrible-idea","changefreq":"weekly","video":[{"title":"S1:E39 - DRUNK Mini Games: This Was a HORRIBLE Idea","description":"This was a bad idea... and to think we filmed a podcast immediately following playing this game.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-drunk-mini-games-this-was-a-horrible-idea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a90b6f5-5d21-48f1-ad34-53b7fbc5d544/sm/2056961-1482105741416-8BitFiestaThumb2.jpg","duration":2928,"publication_date":"2016-12-19T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bah-gawd-they-killed-h-i-m","changefreq":"weekly","video":[{"title":"LPS:E29 - BAH GAWD THEY KILLED HIM!!","description":"Craig vs Bolen vs Chad vs Sam in a battle for the Game Attack Championship. Who will be the champion??","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bah-gawd-they-killed-h-i-m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b38193b6-50c4-4257-85c5-c96f8a9c19ab/sm/2056961-1481915381548-2k17Thumb.jpg","duration":1491,"publication_date":"2016-12-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-driver-san-fransisco","changefreq":"weekly","video":[{"title":"LPS:E28 - Game Attack vs Achievement Hunter - Driver: San Fransisco","description":"Bolen's been wanting to play this for a while so we got together with Achievement Hunter and tried to figure out who's the best?","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-game-attack-vs-achievement-hunter-driver-san-fransisco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eb09777-b9b1-4928-ba58-b2d2f1cf69ba/sm/2056961-1481913826720-DriverSFThumb.jpg","duration":1381,"publication_date":"2016-12-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-stabbing-rats-in-the-face","changefreq":"weekly","video":[{"title":"S1:E38 - Stabbing Rats in the Face","description":"What's better than stabbing rats in the face? Stabbing pigs in the butt\n\n\n\n\n\nSub to us. We give out daily videos at 8am CT and cookies on Fridays*: http://bit.ly/Sub2GameAttack*no cookies are given out on Fridays.\n\n\n\n\n\n\n\nWarhammer: End Times - Vermintide on Steam: http://bit.ly/2hmB7ic","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-stabbing-rats-in-the-face","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeddec55-3176-462e-971a-7090dbb47e57/sm/2056961-1481741270773-VermintideThumb.jpg","duration":1177,"publication_date":"2016-12-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-twitter-trolls-and-twitch-switch","changefreq":"weekly","video":[{"title":"S1:E9 - Try Harder #10 - Twitter Trolls and #TwitchSwitch","description":"Craig responds to an idiot Twitter troll and the guys talk about the idea of switching from YouTube to Twitch","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-twitter-trolls-and-twitch-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b06a991-c599-44ce-8c11-351184878418/sm/2056961-1481649995638-TryHarder10Thumb.jpg","duration":1423,"publication_date":"2016-12-14T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-send-us-your-l-e-w-d-s-try-hard-podcast-10","changefreq":"weekly","video":[{"title":"S1:E10 - SEND US YOUR LEWDS! - Try Hard Podcast #10","description":"Did Craig really just say that? If it's offensive then why is it so funny?\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-send-us-your-l-e-w-d-s-try-hard-podcast-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff65861e-e963-4037-9a44-010d06c7f743/sm/2056961-1481649534818-TryHard10Thumb.jpg","duration":5437,"publication_date":"2016-12-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-tecmo-bowl-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut","changefreq":"weekly","video":[{"title":"LPS:E27 - Let's Play Tecmo Bowl - HUT HUT HUT HUT HUT HUT HUT HUT HUT HUT HUT HUT HUT HUT HUT","description":"Woo! Look at that 8-bit sex happening on screen... and by \"sex\" we mean \"football.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-tecmo-bowl-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut-hut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8d1f1eb-68c0-478b-9161-e2173460a7f9/sm/2056961-1481652468538-TecmoBowlThumb.jpg","duration":800,"publication_date":"2016-12-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-road-t-r-i-p","changefreq":"weekly","video":[{"title":"LPS:E26 - ROAD TRIP!!!","description":"This is an experiment. There is no logic behind why we made this video. We just want to know if you like watching us play mediocre games from 2011. If you do please let us know and we'll play more.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-road-t-r-i-p","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08074ab7-d865-4b5d-84d1-c87fd7c2a5e6/sm/2056961-1481304413863-NFSTheRunThumb2.jpg","duration":2034,"publication_date":"2016-12-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-another-mario-k-n-o-c-k-o-f-f","changefreq":"weekly","video":[{"title":"S1:E10 - ANOTHER MARIO KNOCKOFF??","description":"If there's one thing Craig hates, it's a Mario knock off. Lucky for you, the app store is filled to the brim with them.\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-another-mario-k-n-o-c-k-o-f-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c68fb33a-23bb-48a7-b542-74828dfb6001/sm/2056961-1481230975329-MarioKnockoff2.jpg","duration":776,"publication_date":"2016-12-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-can-bolen-beat-super-mario-bros","changefreq":"weekly","video":[{"title":"LPS:E25 - Can Bolen Beat Super Mario Bros?","description":"Three attempts. That's it. Craig vs Bolen with 75 Game Attack Pride on the line. ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-can-bolen-beat-super-mario-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/389fa479-b947-4126-97b0-42e3998e9b49/sm/2056961-1481229104619-BolenSMBThumb.jpg","duration":1021,"publication_date":"2016-12-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-the-short-film","changefreq":"weekly","video":[{"title":"S1:E37 - Gang Beasts: The Short Film","description":"You've asked for more Gang Beasts so we're delivering with more Gang Beasts. This is super long SO YOU BETTER WATCH ALL OF IT. Don't make us regret it.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-the-short-film","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce5725e-af4d-4c95-90e2-1949622466fc/sm/2056961-1481225747175-GangBeastsThumb.jpg","duration":2617,"publication_date":"2016-12-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-10-o-m-f-g","changefreq":"weekly","video":[{"title":"S1:E36 - Mario Party 10: OMFG!!!","description":"When will Craig every be taken down? Is this the guys opportunity? Can this be it???\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-10-o-m-f-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b27f5e49-eb4d-4b5f-acad-f0af2669ba57/sm/2056961-1481213826763-MarioParty5.jpg","duration":1185,"publication_date":"2016-12-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-celebrity-deathmatch-l-e-t-s-murder-p-e-o-p-l-e","changefreq":"weekly","video":[{"title":"LPS:E24 - Celebrity Deathmatch: LET'S MURDER PEOPLE!","description":"LPS:E24 - Celebrity Deathmatch: LET'S MURDER PEOPLE!","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-celebrity-deathmatch-l-e-t-s-murder-p-e-o-p-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f07b377-1e00-4ced-88b0-6b4d279424f9/sm/2056961-1480958512656-CelebrityDeathMatchThumb.jpg","duration":891,"publication_date":"2016-12-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-9","changefreq":"weekly","video":[{"title":"S1:E8 - Try Harder #9 - Don't Sleep on the Classics","description":"S1:E8 - Try Harder #9 - Don't Sleep on the Classics","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/122671eb-36f3-41d0-a0f6-f71c8344cecc/sm/2056961-1481139641782-TryHarder9.jpg","duration":1546,"publication_date":"2016-12-07T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-8","changefreq":"weekly","video":[{"title":"S1:E9 - Let's Fight a Kangaroo -Try Hard Podcast #9","description":"This week the guys go over some hard hitting topics including Kangaroo fighting, Hideo Kojima possibly being overrated, Elf of a Shelf, Hockey Fights and Bill Goldberg.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/894bc2b7-ccee-431b-88dc-ce7e08586819/sm/2056961-1481139583266-TryHard9b.jpg","duration":6305,"publication_date":"2016-12-07T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-swords-machine-g-u-n-s-knight-squad-with-easy-allies","changefreq":"weekly","video":[{"title":"S1:E35 - Swords & MACHINE GUNS?!? Knight Squad with Easy Allies","description":"Competitive games are awesome when you're playing with your buddies. They're even more fun when you have a machine gun and they have a sword.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-swords-machine-g-u-n-s-knight-squad-with-easy-allies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70501428-3d54-485f-9992-65567ae8f12e/sm/2056961-1480888624377-KnightSquadThumb2.jpg","duration":1525,"publication_date":"2016-12-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-this-episode-sucks-sonic-dash-2","changefreq":"weekly","video":[{"title":"S1:E9 - This Episode Sucks: Sonic Dash 2","description":"We're only playing Sonic again if you guys beg us to. Like, get on your knees and beg us to play this generic Temple Run knockoff.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-this-episode-sucks-sonic-dash-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e8d2e9d-6877-4232-93ed-ea128c402ae9/sm/2056961-1480885129629-SonicBoomThumb.jpg","duration":666,"publication_date":"2016-12-04T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-nes-classic-super-mario-bros-2","changefreq":"weekly","video":[{"title":"LPS:E22 - NES Classic - Super Mario Bros 2","description":"The Super Best Bros are back with some friends to take on Wart and the other bad guys in the black sheep of the Mario franchise.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-nes-classic-super-mario-bros-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1054dc2-8ce9-4357-85f1-176a5775eb00/sm/2056961-1480540173933-Mario2Thumb.jpg","duration":1680,"publication_date":"2016-12-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bolen-s-man-crush-mario-kart-8-battle-mode-with-kinda-funny","changefreq":"weekly","video":[{"title":"LPS:E23 - Bolen's Man Crush: Mario Kart 8 Battle Mode with Kinda Funny","description":"Did you know Game Attack hired Kinda Funny's Tim Gettys? Oh you didn't?? His name is Shaun Bolen. Apparently they're the exact same person.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bolen-s-man-crush-mario-kart-8-battle-mode-with-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c4a0a48-2bce-43dc-8af1-2798d8539f94/sm/2056961-1480697309357-MarioKartKFThumb.jpg","duration":769,"publication_date":"2016-12-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-sanrio-world-smash-ball-with-achievement-hunter","changefreq":"weekly","video":[{"title":"LPS:E21 - Sanrio World Smash Ball! with Achievement Hunter","description":"You who hates playing retro games? Achievement Hunter. You know what we love to do when we're in Austin? Play retro games with Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-sanrio-world-smash-ball-with-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0246fb11-57da-4602-a1ed-c92ebf1fd30e/sm/2056961-1480538164933-SanrioThumb2.jpg","duration":954,"publication_date":"2016-12-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-overcooked-with-the-know","changefreq":"weekly","video":[{"title":"LPS:E20 - Overcooked with The Know","description":"While in Austin we got together with Ashley Jenkins and Ryan Haywood from The Know (https://www.youtube.com/user/know) to play some Overcooked... and it was actually not violent.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-overcooked-with-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34e928c3-6920-4625-84ba-848c6c527c64/sm/2056961-1480536285856-103016_OvercookedThumb.jpg","duration":814,"publication_date":"2016-11-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-8-the-guys-are-still-drunk","changefreq":"weekly","video":[{"title":"S1:E7 - Try Harder #8 - The Guys Are Still Drunk","description":"Yup. They're still blitzed... and still talking. This is a bad thing.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-8-the-guys-are-still-drunk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/941582f3-0a04-40d9-9580-8cff644f2107/sm/2056961-1480454775404-TryHarder8Thumb.jpg","duration":1003,"publication_date":"2016-11-30T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-we-re-dr-un-k-try-hard-podcast-8","changefreq":"weekly","video":[{"title":"S1:E8 - We'Re DrUnK - Try Hard Podcast #8","description":"Before recording the podcast, the guys thought it would be a good idea to record an episode of Four Play involving a drinking game. Was it a good idea? We'll leave that up to you to decide.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-we-re-dr-un-k-try-hard-podcast-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d858afe-4038-4f52-8655-f539bfe5d782/sm/2056961-1480453404987-TryHard8Thumb.jpg","duration":4174,"publication_date":"2016-11-29T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-super-mario-maker-bolen-s-the-worst","changefreq":"weekly","video":[{"title":"LPS:E18 - Super Mario Maker: Bolen's THE WORST","description":"After constant nagging about wanting to play Mario Maker, Bolen finally got his chance and we all quickly realized why he wasn't allowed to play in the first place.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-super-mario-maker-bolen-s-the-worst","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abba40a9-0ba2-4470-904f-940d84cfb02c/sm/2056961-1479506611545-MarioMakerBolenThumb.jpg","duration":2050,"publication_date":"2016-11-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-super-mario-knockoff","changefreq":"weekly","video":[{"title":"S1:E8 - SUPER MARIO KNOCKOFF","description":"A game that is SUCH a blatant copy it brings out Evil Craig.\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-super-mario-knockoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44af58c9-f248-465b-bad2-8214254b473a/sm/2056961-1479923097415-MarioKnockoffThumb2.jpg","duration":928,"publication_date":"2016-11-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-frog-climbers-grabbing-dicks-and-butts","changefreq":"weekly","video":[{"title":"S1:E34 - Frog Climbers: Grabbing Dicks and Butts","description":"Chad James represents everything wrong with video games. If we were to meet Chad James in an alley we would whip the shit out of him simply because he's a lying piece of crap and won't fess up to being a bastard cheater. Enjoy the video.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-frog-climbers-grabbing-dicks-and-butts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aaa6972-a904-4160-9fbd-8d5bd8780f5f/sm/2056961-1479499511751-FrogClimbersThumb2.jpg","duration":1994,"publication_date":"2016-11-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-10-when-will-the-madness-end","changefreq":"weekly","video":[{"title":"S1:E33 - Mario Party 10: When Will The Madness End??","description":"Bowser is BACK but the guys are back with some major reinforcements: Andrew WK!\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-10-when-will-the-madness-end","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2449248e-d830-4b75-80cd-777a67e3cb60/sm/2056961-1479493984119-GA_MarioParty10pt4Thumb.png","duration":1622,"publication_date":"2016-11-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-let-s-get-rich-famous-as-f-ck","changefreq":"weekly","video":[{"title":"S1:E7 - Let's Get Rich & Famous as F*ck","description":"Bolen wanted to play the Kim Kardashian game. Craig wanted to tell everyone how he really felt about Kim Kardashian. Apparently that offended seven people while watching the original cut of this video. That's stupid.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-let-s-get-rich-famous-as-f-ck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38f7e85a-c79f-48b7-9484-02e43b62225a/sm/2056961-1479490915182-KimKThumb.jpg","duration":804,"publication_date":"2016-11-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-7-freaky-sexy-shit","changefreq":"weekly","video":[{"title":"S1:E6 - Try Harder #7 - Freaky Sexy Shit","description":"We asked the live FIRST viewers to throw us questions about relationships and quickly uncovered how big of a FREAK Sam is. Craig was shocked and confused.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-7-freaky-sexy-shit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b479c42c-8f9a-4c95-b475-5f996905e6a2/sm/2056961-1479845710427-TryHarderEp7Thumb.jpg","duration":1072,"publication_date":"2016-11-23T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-chad-said-w-h-a-t-try-hard-podcast-7","changefreq":"weekly","video":[{"title":"S1:E7 - CHAD SAID WHAT????? - Try Hard Podcast #7","description":"WE know what Chad said and YOU know what Chad said but Chad doesn't realize what Chad said. ","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-chad-said-w-h-a-t-try-hard-podcast-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3e3bdb-db80-4e65-b691-d605e1098ab2/sm/2056961-1479845521479-TryHardEp7Thumb.jpg","duration":4132,"publication_date":"2016-11-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-highlight-of-game-attack-at-rooster-teeth-extra-life-2016","changefreq":"weekly","video":[{"title":"L:E3 - Highlight of Game Attack at Rooster Teeth Extra Life 2016","description":"We were invited to come down to the Rooster Teeth Extra Life stream to raise money for the kids. The best way to raise money for the kids? Create a japanese game show and watch people look stupid and get hurt. \n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-highlight-of-game-attack-at-rooster-teeth-extra-life-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c7f8c4e-43a4-4e7f-92bb-09f34b11afb1/sm/2056961-1479489034874-ExtraLife2016Thumb-3.jpg","duration":4230,"publication_date":"2016-11-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-nes-classic-super-mario-bros-3-part-2","changefreq":"weekly","video":[{"title":"LPS:E19 - The NES Classic: Super Mario Bros 3 part 2","description":"The Super Best Bros are here to rock Bowsers face. Did we tell you we had an awesome time playing this? Because we did.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-nes-classic-super-mario-bros-3-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae1c7bca-1f75-4ab5-9952-dfda389a532e/sm/2056961-1479652628648-Mario3pt2Thumb-2.jpg","duration":3200,"publication_date":"2016-11-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-the-nes-classic-super-mario-bros-3","changefreq":"weekly","video":[{"title":"LPS:E17 - The NES Classic: Super Mario Bros 3","description":"Craig and Bolen dive into the NES Mini and play what some consider the best game ever made.\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-the-nes-classic-super-mario-bros-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fdaf777-b786-4ae3-9b24-edce2b2fff48/sm/2056961-1479492958292-Mario3pt1Thumb-2.jpg","duration":3393,"publication_date":"2016-11-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-bolen-is-a-battlefield-1-g-o-d","changefreq":"weekly","video":[{"title":"LPS:E15 - BOLEN IS A BATTLEFIELD 1 GOD!","description":"Bolen is back to showcase his ridiculous Battlefield 1 skill and to further awe Craig into the fetal position. He's the best. Bolen. Is. The. Best.\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-bolen-is-a-battlefield-1-g-o-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1fc9289-03f2-4bb2-acdd-9f90c24777f6/sm/2056961-1479331204399-BattlefieldHighlights2Thumb.jpg","duration":956,"publication_date":"2016-11-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-c-l-u-s-t-e-r-t-r-u-c-k-hype-as-s-h-t","changefreq":"weekly","video":[{"title":"S1:E32 - CLUSTERTRUCK: HYPE AS SH*T","description":"It's just one of those games that you make stupid faces while you play. Want proof? Look at Bolen.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\nWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-c-l-u-s-t-e-r-t-r-u-c-k-hype-as-s-h-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3cf57a3-9093-4c3e-95fb-366de6303809/sm/2056961-1479315511730-ClusterTruckThumb.jpg","duration":1197,"publication_date":"2016-11-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-super-rad-raygun-the-game-boy-l-i-v-e-s","changefreq":"weekly","video":[{"title":"LPS:E14 - Super Rad Raygun: The GameBoy LIVES!","description":"Full disclosure, Super Rad Raygun is published by ScrewAttack Games and Rooster Teeth Games. No money was exchanged for us to play Super Rad. We were just asked and said \"sure!\" so here we are.\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttackWatch all our videos early: http://bit.ly/2dJck7r","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-super-rad-raygun-the-game-boy-l-i-v-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c136e79-570c-4575-be4a-cca4327b8d70/sm/2056961-1479266059371-SuperRadThumb.jpg","duration":1291,"publication_date":"2016-11-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-6-don-t-ever-talk-about-bumper-stickers","changefreq":"weekly","video":[{"title":"S1:E5 - Try Harder #6 - Don't EVER Talk About Bumper Stickers","description":"Craig brings up bumper stickers and the set explodes.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-6-don-t-ever-talk-about-bumper-stickers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c2dc82-8d67-4bd4-86f6-67eb54a5d98b/sm/2056961-1479233318396-TryHarder6Thumb.jpg","duration":1276,"publication_date":"2016-11-16T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-is-nintendo-smart-or-really-stupid","changefreq":"weekly","video":[{"title":"S1:E6 - Is Nintendo Smart or REALLY Stupid?","description":"Craig got his hands on an NES Classic Edition but no one else did. Is the lack of supply a good idea for Nintendo or just Nintendo being morons? That, and Craig burns all sorts of bridges this week.\n\n\n\n\n\n\n\nThis week's sponsor is DollarShaveClub.com. Get a free month by going to http://www.DollarShaveClub.com/TryHard. They support us, so please support them!","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-is-nintendo-smart-or-really-stupid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a222f60-9231-4e30-b0ac-17b8a63b8420/sm/2056961-1479232830791-TryHard6Thumb.jpg","duration":5217,"publication_date":"2016-11-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-drawful-with-easy-allies","changefreq":"weekly","video":[{"title":"S1:E31 - Drawful with Easy Allies","description":"We get together with our buddy Brandon Jones to play (and draw) some of the most ridiculous things ever. How do you draw a feminist???","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-drawful-with-easy-allies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ffaefef-a354-4794-bd4f-1505834e5513/sm/2056961-1478815837588-DrawfulTumb.jpg","duration":1687,"publication_date":"2016-11-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-ragdoll-ninja","changefreq":"weekly","video":[{"title":"S1:E6 - Clumsy Ninja Gets Physically Abused | Tap That App","description":"S1:E6 - Clumsy Ninja Gets Physically Abused | Tap That App","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-ragdoll-ninja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b75177f-53cf-4838-bc1f-ae77d05eaf6a/sm/2056966-1478986631632-ClumsyNinja.jpg","duration":609,"publication_date":"2016-11-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-guts-and-glory-this-f-n-g-a-m-e","changefreq":"weekly","video":[{"title":"LPS:E13 - Guts and Glory: THIS F'N GAME!","description":"When one speaks of Guts and Glory one must only realize that it is a metaphor of life. One that continuously kicks you right in your penis and laughs constantly. Then, once you've fallen on the ground in pain, stands over you and takes a dump on your forehead.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-guts-and-glory-this-f-n-g-a-m-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac58659a-eb2e-4d13-9de8-1972dc12d119/sm/2056961-1478715086437-GutsNGloryTHumb.jpg","duration":2208,"publication_date":"2016-11-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-with-andrew-wk","changefreq":"weekly","video":[{"title":"S1:E30 - Gang Beasts with Andrew WK","description":"Did you know that Andrew WK likes to party? Did you know Gang Beasts is a great party game? Seems like a pretty good fit.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-with-andrew-wk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54a09af7-7e3d-4e57-858f-db39bd9b50c1/sm/2056961-1478647110900-GangBeastsWKThumb3.jpg","duration":813,"publication_date":"2016-11-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-10-the-best-game-ever-played","changefreq":"weekly","video":[{"title":"S1:E29 - Mario Party 10: The Best Game Ever Played","description":"Craig has been on a rampage as Bowser but is it time for Shaun, Chad and Sam to FINALLY get their revenge on him? Find out in the most epic, intense game of Mario Party 10 ever played on God's green Earth.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-10-the-best-game-ever-played","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4653832-e73c-4cb1-afc8-b4e5bc915a0d/sm/2056961-1478097049422-GA_MarioParty10pt3Thumb.png","duration":1711,"publication_date":"2016-11-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-everything-happens-for-a-reason","changefreq":"weekly","video":[{"title":"S1:E4 - Everything Happens For a Reason","description":"Try Harder is usually just for FIRST Members but we thought this would be good to post just so you could get to know us a little better. Everyone goes through challenges in their lives. It's all how you respond to them.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-everything-happens-for-a-reason","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39aa9cb8-56ba-466f-8c6d-bda8143518d6/sm/2056961-1478638908986-TryHarder5Thumb.jpg","duration":1822,"publication_date":"2016-11-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-pyramid-schemes-crappy-doctors-xxx-try-hard-podcast-5","changefreq":"weekly","video":[{"title":"S1:E5 - Pyramid Schemes, Crappy Doctors & XXX - Try Hard Podcast #5","description":"Like Try Hard? Support our sponsors cause they support us! This week's episode is sponsored by JACT (https://www.jact.com/?ref=Try_Hard) & Dollar Shave Club (http://DollarShaveClub.com/TryHard).\n\n\n\n\n\nBelieve it or not, there's very little talk about porn this episode. Ok, we lied. Bolen talks about porn a lot.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-pyramid-schemes-crappy-doctors-xxx-try-hard-podcast-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d413eaa-c009-425b-9488-52eec39040a0/sm/2056961-1478632720055-TryHard5Thumb.jpg","duration":4740,"publication_date":"2016-11-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-super-mario-maker-craig-s-the-best","changefreq":"weekly","video":[{"title":"LPS:E12 - Super Mario Maker: Craig's THE BEST","description":"Craig loves him some Mario Maker. Craig thinks he's the best Mario player ever. Bryan found some levels for Craig to play. Craig will conquer them.\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-super-mario-maker-craig-s-the-best","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abed7d72-e517-4683-b036-8955aabb6576/sm/2056961-1478536903387-MarioMakerThumb.jpg","duration":1386,"publication_date":"2016-11-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-hore-world-3-d","changefreq":"weekly","video":[{"title":"S1:E5 - HORE WORLD 3D","description":"It the bet tory ever told. Let go ride the hore to the table.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-hore-world-3-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa422b28-4750-46e2-a7c2-7999088e802d/sm/2056961-1478287344474-HorseWorld3DThumb3.jpg","duration":672,"publication_date":"2016-11-07T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-amazing-frog-the-quest-for-mount-froggidora","changefreq":"weekly","video":[{"title":"LPS:E10 - Amazing Frog - The Quest for Mount Froggidora","description":"There is a mountain that is so scary, so intimidating, so magical that only two heroes have ever been brave and stupid enough to scale it. Those heroes are Craig & Bolen.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-amazing-frog-the-quest-for-mount-froggidora","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/560e27d7-ed47-4eca-8b98-d82970f325a2/sm/2056961-1478276780886-AmazingFrogPt2Thumb.jpg","duration":1231,"publication_date":"2016-11-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-amazing-frog-fuck-ups-farts","changefreq":"weekly","video":[{"title":"LPS:E11 - Amazing Frog? - Fuck Ups & Farts","description":"Craig & Bolen begin their quest into the unknown world of Swindon and discover a lot of things about themselves along the way.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-amazing-frog-fuck-ups-farts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f657abb-ef68-4266-88f3-0723aeb13de8/sm/2056961-1478278554634-AmazingFrogPt1Thumb.jpg","duration":2861,"publication_date":"2016-11-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-battlefield-1-highlights-glitches","changefreq":"weekly","video":[{"title":"LPS:E9 - Battlefield 1 Highlights & Glitches","description":"Diving off exploding blimps? Yes please. Bolen's the best. The absolute best. He should quit GA and just go pro at Battlefield 1 right now. God damn he's the best.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-battlefield-1-highlights-glitches","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c6d8c11-86d4-4bf3-a688-a18ff863ca00/sm/2056961-1477925456354-11_03_16_LP_Battlefield1GlitchesThumb.jpg","duration":674,"publication_date":"2016-11-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-ragdoll-runners-with-mat-pat-we-get-booted-from-our-hotel-room","changefreq":"weekly","video":[{"title":"S1:E27 - Ragdoll Runners with MatPat: We Get Booted From Our Hotel Room ","description":"You ever played a game that makes you laugh, yell and be so loud that you get kicked out of your hotel? We have. Thanks MatPat.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - http://bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\n\n\n\n\nGame Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-ragdoll-runners-with-mat-pat-we-get-booted-from-our-hotel-room","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e09cbf5-8cda-432d-ac68-2cd8857d2510/sm/2056961-1477680178107-110216_RagdollRunnersThumb.jpg","duration":918,"publication_date":"2016-11-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-fight-scenes-power-alleys-drag-shows-try-hard-4","changefreq":"weekly","video":[{"title":"S1:E4 - Fight Scenes, Power Alleys & Drag Shows - Try Hard #4","description":"With Sam out, Shaun, Craig and Chad discuss the glory of Halloween, well directed fight scenes & tell shitty YouTube commentors how they really feel about them.","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-fight-scenes-power-alleys-drag-shows-try-hard-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec5a9ee9-9ce4-4aaf-ab13-d3f4984d272b/sm/2056961-1478013666028-TryHard4Thumb.jpg","duration":4415,"publication_date":"2016-11-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-2","changefreq":"weekly","video":[{"title":"2017:E88 - BOYFRIEND SQUAD • Onward 4 Player Virtual Reality Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOnward simulates realistic warfare in a virtual reality world. It perfectly captures the grit of shooting, reloading, aiming and ducking with no technical glitches whatsoever. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSie haben Nasenlöcher genannt Blaslöcher. Über Millionen von Jahren der Evoloution Wale und Delfine Nasenflügel bewegt sich an die Spitze ihres Kopfes. Dies erlaubt ihnen zu atmen, indem sie auftauchen, anstatt sie ihren ganzen Kopf aus dem Wasser zu haften. Das erste, was ein neugeborener Delphin tun muss, ist, an die Oberfläche zu gehen, um zu atmen.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBOYFRIEND SQUAD • Onward 4 Player Virtual Reality Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc385229-f642-40b3-b6e3-8cd2d252db1e/sm/2516933-1498775579296-thumb2.jpg","duration":1051,"publication_date":"2017-06-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-punched-in-the-face-arms-gameplay","changefreq":"weekly","video":[{"title":"2017:E66 - ELASTIC PUNCH OUT • Arms Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks put up their fists and get ready to brawl.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTá mé ag dul a slap tú in aghaidh má tú a choinneáil ag caint cacamas. Just a iarracht a dhéanamh agus a choinneáil ag magadh timpeall. Beidh mé Lí tú chomh dian sin go mbeidh do coileach isteach taobh istigh de do chorp chomh maith le do sac liathróid. Chomh maith leis sin más Lí tú mé ar ais Beidh mé chomh sásta agus ar ndóigh, tarraing ar do mhéara.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nELASTIC PUNCH OUT • Arms GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-punched-in-the-face-arms-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1769c402-241d-412f-8c6f-d6295c5c6241/sm/2516933-1498259368025-Thumbnail_Arms.jpg","duration":949,"publication_date":"2017-06-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-3","changefreq":"weekly","video":[{"title":"2017:E87 - TANGO DOWN • Onward 4 Player Virtual Reality Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOnward simulates realistic warfare in a virtual reality world. It perfectly captures the grit of shooting, reloading, aiming and ducking with no technical glitches whatsoever. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nПоле зору було набагато більше під час запису, але з якоїсь причини він скоротився на 50% при експорті. Це не так, як виглядає гра, я обіцяю.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTANGO DOWN • Onward 4 Player Virtual Reality Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/359099a5-447e-40e4-bc1b-cd8a0afb6b38/sm/2516933-1498673823844-thumb1.jpg","duration":1044,"publication_date":"2017-06-28T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foreign-import-2017-chinese-panda-business-foreign-import","changefreq":"weekly","video":[{"title":"2017:E4 - CHINESE PANDA IN CHINA TOWN • Foreign Import","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis time on Foreign Import, Aleks and James teleport to China(town) to purchase authentic Chinese nik naks and outfits. When they teleport back and discover James has already seen the documentary that Aleks picked out about a Chinese panda named Tao Tao, Asher has to fill in for the co-host and take his spot on the couch. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n据中国卫生部称,工业污染使癌症成为中国的主要死因。每年,环境空气污染只会造成数十万公民死亡。中国有5亿人没有安全,干净的饮用水。好,他们至少知道如何照顾大熊猫!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n中国と比較して、日本ははるかにクリーンです。全体的な空気の質と飲料水が良いです。中国の汚染は自動車からのものであるが、主に燃えている石炭(特に、冬には気温が下がり、より多くの電力が必要になる)から生じる。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCHINESE PANDA IN CHINA TOWN • Foreign ImportThank You","player_loc":"https://roosterteeth.com/embed/foreign-import-2017-chinese-panda-business-foreign-import","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e9f6c44-1b24-4d50-b8bd-99685670c558/sm/2516933-1498585889722-Thumbnailoption1x1.jpg","duration":1162,"publication_date":"2017-06-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-episode-6-2","changefreq":"weekly","video":[{"title":"S1:E6 - 116° PALM SPRINGS DESERT • CCTV #6","description":"OH BABY, IT'S HOT.  One hundred and SIXTEEN degrees out in the deserts that surround Los Angeles but CCTV is all about adventure so we trekked into the searing heat and risked crew, cameras, and the ability to hold a coherent conversation for this one.  Get yourself a nice cold drink and tangle with that hot hot heat of the Palm Springs desert alongside your pals at Cow Chop.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-episode-6-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19eff162-9f67-4aae-a2ae-0e0a40395e41/sm/2516933-1498155859534-CCTV_THUMB_ep6_v3.jpg","duration":2695,"publication_date":"2017-06-27T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-c-o-op-dark-souls-in-space-hellpoint-gameplay","changefreq":"weekly","video":[{"title":"2017:E65 - CO-OP DARK SOULS IN SPACE • Hellpoint Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks play Hellpoint where they join together to save the world.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nĮsivaizduokite pasaulį, kuriame aš galėčiau sėdėti ant jūsų veido ir tai būtų gerai. Pasisveikinti su kitu asmeniu, kuris yra tavo draugas, tu tiesiog pateks į juos ir sėdėsi ant jų veido. Aš žinau, kad tai gąsdins, bet jūs būsite pasveikinti ir leiskite jiems žinoti, kad jums rūpi. Aš negaliu laukti, kol gyvensiu šiame pasaulyje.\n\n\n\n\n\n\n\nCO-OP DARK SOULS IN SPACE • Hellpoint GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-c-o-op-dark-souls-in-space-hellpoint-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b4b2a3-b37f-4f0d-a82d-13dd315cb105/sm/2516933-1498174854969-Thumbnail.jpg","duration":990,"publication_date":"2017-06-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-secret-slaves-of-the-spider-part-6","changefreq":"weekly","video":[{"title":"S1:E6 - SECRET SLAVES OF THE SPIDER - Part 6","description":"On an all new CLASS OF 198X, the gang confronts the hideous alien spider from last week's cliffhanger and Amanda does some of her best work putting the group in danger. The teens try their best to survive while making time for some precious attempts at physically overpowering and robbing each other. TEAMWORK!","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-secret-slaves-of-the-spider-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38f016c9-062b-4c0e-9e68-f51d53fba009/sm/2013912-1498493411997-Class198X_THUMB.jpg","duration":3430,"publication_date":"2017-06-26T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-surviving-e3-and-china-town-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E23 - SURVIVING E3 AND CHINA TOWN • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nWelcome back to more Behind the Cow Chop! Join us on some more E3 bits and getting hassled in China Town. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nJ'espère que tout le monde passe un bon week-end. J'espère que ça s'est amélioré après ce bisou juteux à la fin.\n\n\n\n\n\n\n\n\n\n\n\nSURVIVING E3 AND CHINA TOWN • Behind the Cow Chop","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-surviving-e3-and-china-town-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a587c0dd-10c2-4ecf-ba80-673602f48820/sm/2516933-1498267981520-thumbnail_option_1x3.jpg","duration":600,"publication_date":"2017-06-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-magic13","changefreq":"weekly","video":[{"title":"2017:E10 - DRIVE THRU PRANKS AND GTA 6 CLICKBAIT • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nMr. Big Toe tiene mucho en mente. Él está pasando por un divorcio desagradable y su esposa ya ha conocido a un hombre nuevo antes de que incluso pudiera finalizar los papeles. Actualmente se pudre en el zapato empapado de la Sra. Johnsons por el río de lodo. Por lo menos ellos pueden oler la contaminación en el aire, lo único bueno que queda en la vida del Sr. Toe Grande. Quién sabe lo que le pasará a continuación. Tal vez sintonice la próxima vez si recuerdo escribir el resto de la historia.\n\n\n\n\n\n\n\n\n\n\n\nVideos\n\n\n\n\n\n\n\n\n\n\n\nAmerica's Got Talent Drive-Thru - https://youtu.be/YLOHngghq3sScreaming Drive Thru Orders - https://youtu.be/522u59NDj3kI'm scared to talk to Women - https://youtu.be/WG63HMAdTx8Drive Thru Rap Rejection - https://youtu.be/g1A2tCqBgFcCrocodile Bite - https://youtu.be/RnKCJBJwYwIGTA 6 Clickbait/Parody - https://youtu.be/mjlnieZmeQc\n\n\n\n\n\n\n\nGOD HIMSELF - https://youtu.be/IAv2B8Om6e8\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-magic13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a0eb56d-76b9-4388-9af9-39ad6eaa8329/sm/2516933-1498296048796-youtubemagic13.jpg","duration":656,"publication_date":"2017-06-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-4","changefreq":"weekly","video":[{"title":"2017:E86 - ORIGINAL ENTERPRISE • Star Trek: Bridge Crew 4 Player Virtual Reality Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWith this new addition into the Star Trek canon, the guys take on the role of being the crew of the Enterprise. In a game all about teamwork, do they stand a chance?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nЕдин епизод от \"Стар Трек\" - следващото поколение бе забранен в Ирландия и Великобритания, защото се позова на обединението на Ирландия през 2024 г. след успешна терористична кампания.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nORIGINAL ENTERPRISE • Star Trek: Bridge Crew 4 Player Virtual Reality Gameplay \n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cad53d1-efbc-4fe2-8aeb-3fb42e262884/sm/2516933-1498162683269-thumbnail3.jpg","duration":883,"publication_date":"2017-06-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-bad-e3","changefreq":"weekly","video":[{"title":"S1:E85 - BAD E3","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nE3 opened its doors to the public consumer this year which leaves us competing in line with everybody else.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTadidiko rehefa ampiasaina mba ho afaka dinganina ny tsipika ary ampifalio ny lalana miakatra amin'izay toerana tsy misy fanontaniana tiako nanontany. Izany no indray rehefa zavatra tsara, raha zavatra tsotra kokoa. Ary ny hany fomba hahazoana eny aloha ny tsipika dia ny diky teo amin'ny tany, ary manaova toerana, ary raha ny rehetra no lasa adala izay no mahazo eny aloha. Fotoan-tsarotra.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBAD E3Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-bad-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a08bce7-361f-4702-be9d-8ebfc93e79a1/sm/2516933-1498096100139-e3_shit_2.jpg","duration":764,"publication_date":"2017-06-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-playing-with-nail-polish-poison-part-2-watch-ya-mouth","changefreq":"weekly","video":[{"title":"2017:E64 - PLAYING WITH NAIL POLISH POISON PART 2 • Watch Ya Mouth","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWatch Ya' Mouth is back, this time with the Throwdown edition! We really need to give it our all this time, since we're basically playing for our lives.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDel to er så ekkelt og bedårende samtidig. Det er som å se en baby droll over hele chew leketøy.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nErëm, Kanner, probéieren dës sinn trainéiert professionell also nët dësen doheem!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPLAYING WITH NAIL POLISH POISON PART 2 • Watch Ya MouthThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-playing-with-nail-polish-poison-part-2-watch-ya-mouth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a31060e5-05a7-4329-8a7e-60f69c5c8293/sm/2516933-1497984918471-Thumbnailep2.jpg","duration":626,"publication_date":"2017-06-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-xbox-one-x-showcase","changefreq":"weekly","video":[{"title":"S1:E82 - XBOX ONE X SHOWCASE ","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\nThe crew heads out to the Xbox showcase where they have a blast checking out the new stuff. Also did we mention there is free food and drinks?\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nBrett įstrigo eismo valandas. Šiuo metu renginys buvo daugiau nei jis vis dar buvo pastatyti eismo kampe, kur jie gavo sumažėjo išjungti. Valio Los Andželo miesto centro eismą.\n\n\n\n\n\n\n\n\n\n\n\n\n\nXBOX ONE X SHOWCASE\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-xbox-one-x-showcase","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d99183a0-11c9-489d-99fe-42a1d32ffb96/sm/2516933-1497561514856-showcase.jpg","duration":604,"publication_date":"2017-06-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-5","changefreq":"weekly","video":[{"title":"2017:E84 - SPACE FIGHTS • Star Trek: Bridge Crew 4 Player Virtual Reality Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWith this new addition into the Star Trek canon, the guys take on the role of being the crew of the Enterprise. In a game all about teamwork, do they stand a chance?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRymdfärjan vägde 165 000 pund tomt. Den yttre tanken vägrade 78,100 pund tom och dess två solida raketförstärkare vägde 185 000 pund tomma vardera. Varje solid raketbooster höll 1,1 miljoner pund bränsle.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSPACE FIGHTS • Star Trek: Bridge Crew 4 Player Virtual Reality Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eeacad99-126b-4ad1-9407-c9db74965a27/sm/2516933-1497919720975-thumbnailep2.jpg","duration":1427,"publication_date":"2017-06-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-episode","changefreq":"weekly","video":[{"title":"S1:E5 - CHINATOWN & FREEWAY OFFRAMP • CCTV #5","description":"After last week's fiasco we thought maybe we'd have a relatively chill conversation in the heart of Chinatown.  However, the Emperor's guards are everywhere and his eyes fell upon us, forcing a hasty exile into the borderlands of his territory.  Come and join us on our exodus and a conversation about comfort zones and buying restaurant franchises.","player_loc":"https://roosterteeth.com/embed/cctv-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4e5ccc3-fe45-4793-b972-26785c850bdc/sm/2516933-1497644470504-CCTV_THUMB_ep5.jpg","duration":2600,"publication_date":"2017-06-20T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-cow-chop-vs-funhaus-the-show-17-2","changefreq":"weekly","video":[{"title":"2017:E64 - SPRING TRAINING W/ FUNHAUS • Let's Play League (MLB The Show 17)","description":"SWING FOR THE FENCES Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCheck out the new Flexfit Baseball Cap @ the Rooster Teeth store today: https://store.roosterteeth.com/products/cow-chop-flexfit-baseball-hat !! \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFunhaus webcam ser litt rart ut til noen andre? Nei? Kan være? Det er bare litt rotet opp siden internett er ganske forferdelig.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nÄr vår adress i den här videon? Vänta är det? Vänligen skicka inte SWAT-laget. Snälla du. Snälla du.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCOW CHOP vs FUNHAUS • The Show 17 Thank You ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-cow-chop-vs-funhaus-the-show-17-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01de687e-5a20-474b-8b7e-acd7f7fc979d/sm/2516933-1497641195457-Thumbnail2.jpg","duration":1339,"publication_date":"2017-06-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-friendship-is-the-final-boss-part-5","changefreq":"weekly","video":[{"title":"S1:E5 - FRIENDSHIP IS THE FINAL BOSS - Part 5","description":"The CLASS OF 198X faces their most powerful adversary yet as they traverse a ghostly version of their hometown shopping mall. Also the group threatens to kill Amanda a whole bunch of times, and everybody upgrades their style for TRUE ADVENTURE.","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-friendship-is-the-final-boss-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/635d5e4b-f397-4855-b39b-760be2c75c53/sm/2013912-1497631413766-CL8X_-_Ep5_-_THUMB.jpg","duration":3535,"publication_date":"2017-06-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-road-to-e3-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E22 - GETTING ON THE GUEST LIST • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nIn this weeks Behind the Cow Chop watch as the crew ventures to E3. \n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nだから大胆にステップアウトし、すべてを試してみてください!私がすべてを意味するとき、私は何かを意味する。これまでに何か機会を失い、あなたがなりたい人になれないようにしてください。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nROAD TO E3 • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-road-to-e3-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d8b5747-82fb-459c-ae3a-31db7e59c5c8/sm/2516933-1497658631758-e3_thumb.jpg","duration":551,"publication_date":"2017-06-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-ice-cream-kickball-and-dirty-cocktails-amazon-prime-time","changefreq":"weekly","video":[{"title":"2017:E10 - ICE CREAM KICKBALL AND DIRTY COCKTAILS • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nHola gente, Trevor aquí, es una vez más el sábado. Así que voy a dejaros chicos con un pequeño mensaje secreto, \"mis dedos del pie están creciendo oídos\". Gracias.\n\n\n\n\n\n\n\nICE CREAM KICKBALL AND DIRTY COCKTAILS • AMAZON PRIME TIME\n\n\n\n\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-ice-cream-kickball-and-dirty-cocktails-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6be47386-2fed-4f8c-924c-22e3d3c34768/sm/2516933-1497693286974-Amazonicecreamball.jpg","duration":906,"publication_date":"2017-06-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-walking-the-plank-sea-of-thieves-e3-gameplay","changefreq":"weekly","video":[{"title":"S1:E83 - WALKING THE PLANK • Sea of Thieves E3 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis year, E3 showcased a new game called Sea of Thieves, a multiplayer pirate simulator. Who better to be the captain of the ship than Joe?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nഒരു പൈറേറ്റ് കപ്പലിന്റെ മുകളിലായി തലയോട്ടുകളും ക്രോസ്ബോണുകളും പതാകയെ ജോളി റോജർ എന്നു വിളിക്കുന്നു. \"ജോളി റോജർ\" എന്ന പേര് ഇല്ലാതെയായിട്ടുണ്ടെങ്കിലും, ഒരു സിദ്ധാന്തം ചുവന്ന പതാകകൾ ഉപയോഗിച്ചുവരുന്നു. നൂറ്റാണ്ടുകൾക്കു മുൻപ്, ഒരു നാവികയുദ്ധത്തിൽ സാധാരണഗതിയിൽ ഒരു കറുത്ത പതാക ഉപയോഗിക്കാറുണ്ടായിരുന്നില്ല, അതിന് യാതൊരു കരുണയും നൽകാനാവില്ലെന്നും, പിടികൂടുന്ന ആർക്കും ഉടനെ കൊല്ലപ്പെടുകയും ചെയ്യും.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWALKING THE PLANK • Sea of Thieves E3 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-walking-the-plank-sea-of-thieves-e3-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/641ad342-41c8-4d40-a625-18e20c0206cf/sm/2516933-1497564294342-thumb3.jpg","duration":788,"publication_date":"2017-06-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-6","changefreq":"weekly","video":[{"title":"2017:E81 - WARP SPEED • Star Trek: Bridge Crew Virtual Reality Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWith this new addition into the Star Trek canon, the guys take on the role of being the crew of the Enterprise. In a game all about teamwork, do they stand a chance?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSiden 1971 har mer enn 125 videospill basert på eller inspirert av Star Trek-serien blitt opprettet, begynner med et tekstspill skrevet i BASIC i 1971, et oppstartsparti-spill i 1972, og senere tidlige datasystemer og spillsystemer som Commodore 64 Og Atari 5200 til moderne PS3 og Xbox 360-konsoller. Mange av titlene er ganske fargerike, som The Kobayashi Alternative, Klingon Honor Guard og Delta Vega: Meltdown på Ice Planet. Det ville trolig være vanskelig å samle dem alle på dette tidspunktet - eller for å kunne spille dem, med mindre man eier alle de forskjellige videospillplatformene som kreves - men kanskje noen har det.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWARP SPEED • Star Trek: Bridge Crew Virtual Reality Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca6ccdd9-400d-4435-8488-26749d85ee13/sm/2516933-1497397008004-thumbnail2.jpg","duration":1514,"publication_date":"2017-06-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-playing-with-poison-watch-ya-mouth","changefreq":"weekly","video":[{"title":"2017:E62 - PLAYING WITH POISON • Watch Ya' Mouth","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWatch Ya' Mouth is back, this time with the Throwdown edition! We really need to give it our all this time, since we're basically playing for our lives.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nJustin Bieber tûsî gelek kêseyan pussy? Ma çawa dibe ku Trevor vê bizanin?\n\n\n\n\n\n\n\n\n\n\n\nAyaw pagsulay niini nga sa balay, mga bata. Kini mao ang gibansay nga mga propesyonal.\n\n\n\n\n\n\n\n\n\n\n\nPLAYING WITH POISON • Watch Ya' MouthThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-playing-with-poison-watch-ya-mouth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6578d0f-2295-46ef-a160-433443aa3bbd/sm/2516933-1497299587332-Thumbnailep1.jpg","duration":1160,"publication_date":"2017-06-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-podcast-ep-4","changefreq":"weekly","video":[{"title":"S1:E4 - LA SUBWAY & THE SURFACE WORLD ABOVE • CCTV #4","description":"This episode is a real mess, y'all.  But it's CCTV so is anyone surprised?  On this hot new grease fire of an edition, CCTV travels on the LA Metro, riding the rails beneath the mighty metropolis above.  Then the gang moves upward, on a winding dysfunctional quest to learn to live again in the light of day.  Join us and may we all learn something about ourselves.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-podcast-ep-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40894964-cb08-4e4c-bb10-8356835b42e0/sm/2516933-1497036844298-CCTV_THUMB_ep4.jpg","duration":3698,"publication_date":"2017-06-13T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-32","changefreq":"weekly","video":[{"title":"2017:E79 - DOUBLE TROUBLE • NBA Playgrounds Gameplay","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks and James grab some teammates and play some doubles on the court.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCómo estás hoy? ¿Qué harías si golpeara la pelota en el culo? También recuerda el momento en que puse mi trofeo de baloncesto en mi oído cada vez que farted salió un poco más? Buenos tiempos.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDOUBLE TROUBLE • NBA Playgrounds GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01d356ff-4d13-41e9-9c71-8034f987fe04/sm/2516933-1497057795232-Thumbnail_2.5.jpg","duration":893,"publication_date":"2017-06-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-s-h-t-eating-social-anxiety-part-4","changefreq":"weekly","video":[{"title":"S1:E4 - SH*T-EATING SOCIAL ANXIETY - Part 4","description":"The CLASS OF 198X finally figures out some mysteries as they uncover Amanda's lies about her parents and Steve, solve the puzzle of the alien collar, and make a lot of really bad attempts at problem-solving along the way.","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-s-h-t-eating-social-anxiety-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef4a3d43-7fdd-4826-9c73-366b94a92376/sm/2013912-1497026897116-CL8X_-_Ep4_-_THUMB.jpg","duration":4271,"publication_date":"2017-06-12T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-bts","changefreq":"weekly","video":[{"title":"2017:E21 - WET MULTIPLAYER VR • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nWelcome back to Behind the Scenes! This week we get dressed up for an NBA game, play in our own water park, and there's a little sneak peek into the multiplayer virtual reality set-up we created.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nАко смятате, че новата настройка на VR изглежда, че ще е много забавно, просто изчакайте!\n\n\n\n\n\n\n\n\"Left Shark\" on nimekkeen nimi Katy Perryn esityksestä Super Bowl XLIX-puoliajalla vuonna 2015. Vasemmassa Sharkissa kotiin vasemmalla, Perryn oikealla puolella, sai merkittävän fanin ja median huomiota puoliväliinoton aikana ja sen jälkeen sen erillisen Tanssimyrkyt, jotka olivat molemmat outbeat ja synkronoituja \"Oikealle Sharkille\". Vasen Sharkista tuli nopeasti Internetin tunne, joka ilmestyi sosiaalisen median sivustoille, kuten Facebookille ja Twitterille, ja siitä tuli myös Internet-meme. [1] Vasemman Sharkin suoritti Bryan Gaw, yksi Perryn pitkään jatkuneista taustatanssijoista.\n\n\n\n\n\n\n\n\n\nWET MULTIPLAYER VR • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-bts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c15a08ea-d618-49cc-92a7-337f993c9956/sm/2516933-1497062646655-thumbnail_option_1.jpg","duration":605,"publication_date":"2017-06-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-blood-brothers-and-menstrual-witches-wrong-side-of-youtube","changefreq":"weekly","video":[{"title":"2017:E9 - BLOOD BROTHERS AND MENSTRUAL WITCHES • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nHey chicos, es Trevor otra vez. Espero que disfrute de la nueva calidad de estas cámaras de 4k. He estado presionando por estos chicos malos desde octubre y me alegro de que finalmente los tengamos. Se ven y se sienten muy bien y ahora se puede ver canales caos de la naturaleza en perfecta calidad como nunca antes. Imagina todos los fluidos corporales que puedes ver en 4k.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-blood-brothers-and-menstrual-witches-wrong-side-of-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0177b8ed-3358-42af-81e8-a96350208fce/sm/2516933-1497093071721-Youtube-Recovered.jpg","duration":665,"publication_date":"2017-06-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-26","changefreq":"weekly","video":[{"title":"2017:E78 - OVERWATCH WORLD CUP • Overwatch Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOverwatch is Blizzard's fast-paced first person shooter that uses intuitive level and character design to be as accessible as possible. Yet some people still can't figure it out.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nՄեկը հիմնական բողոքները, որոնք Բլիզարդ ունեցել իրենց չհաջողված MMO, Տիտանի, այն էր, որ դա պարզապես չի եղել որեւէ հաճելի է, ըստ էության, խաղալ: Հետեւաբար, mantra համար անքնությունից ուժասպառ լինել եղել է առաջնահերթ զվարճալի gameplay. Մեկը ազդեցությունների այս որոշումն Խաղի բացակայությունը ammo. Ով է ուզում առաջադրվելու շուրջ եւ վերցնել ammo իրենց հերոսների. Տեսնելով, քանի որ Բլիզարդ գտել այս ձանձրալի, այդ պատճառով դուք ունեք անսահմանափակ մատակարարման անքնությունից ուժասպառ լինել:\n\n\n\n\n\n\n\n\n\n\n\n\n\nOVERWATCH WORLD CUP • Overwatch Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f06419e-c90d-41cd-bec3-210835fcb79e/sm/2516933-1497032244368-OverwatchThumb.jpg","duration":1573,"publication_date":"2017-06-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-aleks-epic-water-park-extravaganza","changefreq":"weekly","video":[{"title":"S1:E74 - ALEKS EPIC WATER PARK EXTRAVAGANZA","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSupport us! Click to sign up for Rooster Teeth FIRST and remember to use the referral code \"COWCHOP\":  https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks invites the boys to his epic water park which everybody soon finds to be a complete disaster.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks vandens parkas buvo įvertinti nuo yelp kaip vienas iš blogiausių vandens parkų egzistavimą. Viauktelėjimas turėjo iš tikrųjų sukurti neigiamą reitingą tiesiog įvykdyti klientų poreikius lankotės šioje shitty vandens parke. Laimei po Brett bėgo per savo automobiliu parkas uždaryti visam laikui.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nALEKS EPIC WATER PARK EXTRAVAGANZA Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-aleks-epic-water-park-extravaganza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a46a4f5-db38-4d97-9e29-e77dba5b6b56/sm/2516933-1496254928151-thumb.jpg","duration":531,"publication_date":"2017-06-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-34","changefreq":"weekly","video":[{"title":"2017:E77 - AIRBALLS & THREE POINTERS • NBA Playgrounds Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks and James face off in some NBA Playgrounds to see who the best player is.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nSlam kurupiro e pihikete ki taua waiu kotahi nohinohi. Hanga e pihikete waiwaitia i roto i te waiu no te mea mana'o te reira na pai me te reka na reka. aroha tiakarete pihikete maramara toua ki te waiu Katoa. e aroha ahau e tika i teie nei.\n\n\n\n\n\n\n\n\n\n\n\n\n\nAIRBALLS & THREE POINTERS • NBA Playgrounds GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8391371-04ec-4cc1-8336-e1fe8fe4ec16/sm/2516933-1496799241205-Thumbnail_1.jpg","duration":800,"publication_date":"2017-06-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-38","changefreq":"weekly","video":[{"title":"2017:E76 - LAST ROUND • Monopoly Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMonopoly is unique in the sense that most board games try to be fun and accessible. Instead, the fun of Monopoly lies within the struggle to understand what is happening and how to actually play the game.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nDie wirkliche Person war Samuel Langhorne Clemens. Als er anfing zu schreiben, wählte er die Nom de Feder oder den Namen des Stiftes von \"Mark Twain\". \"Mark Twain\" ist ein Flussboot Begriff, der zwei Faden (12 Fuß) in der Tiefe misst: markieren (Maß) twain (zwei).\n\n\n\n\n\n\n\n\n\n\n\n\n\nLAST ROUND • Monopoly Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/424f8a41-6a55-45fb-9571-b22800aaa815/sm/2516933-1496703744392-monopoly4.jpg","duration":772,"publication_date":"2017-06-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-podcast-ep-3","changefreq":"weekly","video":[{"title":"S1:E3 - LOS ANGELES NATIONAL FOREST • CCTV #3","description":"CCTV continues its tour of our nation with a trip to the home of mountain lions, swarms of bugs and raging brush fires - that's right the boys are in the dang woods.  Also back in the heat, but it's the heat of nature, not an industrial misery.  Joe joins the show this week and hot dogs are grilled and consumed.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-podcast-ep-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c8180b5-7e96-442b-9d06-668b2fb76ce3/sm/2516933-1496428005522-CCTV_THUMB_ep3.jpg","duration":3538,"publication_date":"2017-06-06T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-end-of-the-world-dark-souls-iii-the-ringed-city","changefreq":"weekly","video":[{"title":"2017:E61 - END OF THE WORLD • Dark Souls III • The Ringed City ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nYou guys asked for it, so we delivered: Dark Souls III: The Ringed City. Apprentice Wizard from another timeline is back to guide us through it, so this should only take 4 episodes, right? No, apparently not, but that just means more fun and amazing Dark Souls content!\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nHe sacado esto de reddit (gritar a u/Carneus): \"...La concha que Fillianore estaba sosteniendo estaba atrapando el tiempo manteniendo congelada la Ciudad Anillada (en el tiempo) y cuando la cáscara se derrumbó, la ciudad fue enviada a su hora apropiada (donde Todo ya está ceniza) y Gael acaba de terminar los últimos seres vivos en la tierra cuando lo encuentras. Es por eso que es capaz de sangrar al Alma Oscura, ya que el Alma Oscura fue segmentado en pedazos llamado Humanidad y se extendió por toda la población de humanos, la única manera de recrearla sería recuperarla de toda la humanidad (matándolos a todos) Y parece que Gael tuvo éxito.\" Esto podría estar bien, podría estar equivocado. La mejor teoría que pude encontrar.\n\n\n\n\n\nFinalmente, no quedaron más almas oscuras. Hoy es bueno hoy. Adiós a la gente del sofá de todas las líneas de tiempo.\n\n\n\n\n\nEND OF THE WORLD • Dark Souls III • The Ringed City Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-end-of-the-world-dark-souls-iii-the-ringed-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4d341b2-1b1e-417b-94d4-0b5abe13b790/sm/2516933-1496277028629-Thumbnail5.jpg","duration":1128,"publication_date":"2017-06-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-vintage-teenage-violence-part-3","changefreq":"weekly","video":[{"title":"S1:E3 - VINTAGE TEENAGE VIOLENCE - Part 3","description":"This week on The Class of 198X the gang rolls up their sleeves and gets to some good old fashioned CLOBBERING, as they arm themselves and take on a small force of reptilian invaders at their beloved mall.","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-vintage-teenage-violence-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b0ba86d-962d-4410-9b18-e6e3d8a7dbeb/sm/2013912-1496678973656-CL8X_-_Ep3_-_THUMB.jpg","duration":4383,"publication_date":"2017-06-05T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-parking-in-m-a-r-k-i-p-l-i-e-r-s-spot-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E21 - PARKING IN MARKIPLIER’S SPOT • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nThis is the fear and anxiety you have to live with when you park in Markiplier’s spot. Also, we got a bunch of new stuff, so check it out!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nHåper alle har en veldig fin dag i dag. Ikke glem å sjekke ut noe merch og vær så snill å gi denne videoen en tommelen opp. Og jeg forteller deg dette nå, siden ingen påminnte deg inne i post-rollen.\n\n\n\n\n\n\n\n\n\n\n\nLAN կուսակցությունները են, որտեղ դա է! Պետք է լինի ինչ - որ իրական Լավ դուրս գալու այդ set-up. Մնալ tuned է, որ!\n\n\n\n\n\n\n\n\n\n\n\nPARKING IN MARKIPLIER’S SPOT • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-parking-in-m-a-r-k-i-p-l-i-e-r-s-spot-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92090d14-7b50-43c4-a864-618cb41df098/sm/2516933-1496511800928-Main.00_15_07_11.Still002.png","duration":706,"publication_date":"2017-06-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-vsape","changefreq":"weekly","video":[{"title":"2017:E9 - VAPING ALCOHOL IN A STRIP CLUB • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   RT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.\n\n\n\nThe following is for those multicultural.\n\n\n\nNo es seguro para comer caca, así que este es su recordatorio diario para no comer caca. Sé que para algunos de ustedes puede ser tentador simplemente ir fuera y encontrar un gran pedazo de caca para mascar, pero debo aconsejar en contra de eso. Por favor, permanezca dentro y en lugar de comer una porción saludable de manzanas. Gracias por escuchar hoy, vuelve otro día para un consejo más grande.\n\n\n\nVAPING ALCOHOL IN A STRIP CLUB • AMAZON PRIME TIME\n\n\n\nThank you ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-vsape","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9e9a284-4eea-4ea1-a291-9267837b5a2c/sm/2516933-1496451841035-AmazonVape.jpg","duration":869,"publication_date":"2017-06-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-the-best-fights-tekken-7-gameplay","changefreq":"weekly","video":[{"title":"2017:E60 - THE BEST FIGHTS • Tekken 7 Gameplay","description":"Thanks again to Bandai Namco Tekken 7 for partnering with us for this video. Check out the link for more info - http://bit.ly/2pH9Lsz\n\n\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks dust off their fighting gear and take each other on in Tekken 7.  The trash talking starts nice and early, cause the best fights are personal.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nTekken war schon immer eines meiner Lieblingsspiele. Ich erinnere mich, wann wir in die Arkade gehen und uns gegenseitig kämpfen würden. Brett würde immer unsere Esel treten, weil er der Beste ist. Also würde ich immer versuchen, in die Arkade zu kommen, bevor er auftauchen würde. Manchmal würde ich ihn nicht einmal einladen, damit ich der Verfechter der Nacht sein könnte.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-the-best-fights-tekken-7-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4181fef-2026-4253-8339-9a874b2e1279/sm/2516933-1496253578840-Thumbnail.jpg","duration":1254,"publication_date":"2017-06-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-minecraft-birthday-party-bus-featuring-funhaus","changefreq":"weekly","video":[{"title":"S1:E75 - MINECRAFT BIRTHDAY PARTY BUS FEATURING FUNHAUS","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nSupport us! Click to sign up for Rooster Teeth FIRST and remember to use the referral code \"COWCHOP\" :  ;https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\nIt's James' 27th birthday and he wants to give back to those who helped him come so far. So he rented a game truck and brought it to the Funhaus office for a day of gaming, cake and fun!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMinecraft fillimisht u quajt \"Game Cave\". Në ditët e para, zhvilluesi Markus \"Notch\" Persson i referohej ndërtuesit të përulur sandbox si \"Game Cave\", por më vonë e ndryshoi atë në Minecraft.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMINECRAFT BIRTHDAY PARTY BUS FEATURING FUNHAUSThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-minecraft-birthday-party-bus-featuring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/081f3b26-c33b-43ce-8a70-400fdf70cf43/sm/2516933-1496276195100-minecraft_thumb.jpg","duration":982,"publication_date":"2017-06-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-pvp-showdown-dark-souls-iii-the-ringed-city","changefreq":"weekly","video":[{"title":"2017:E59 - PVP SHOWDOWN • Dark Souls III • The Ringed City ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nYou guys asked for it, so we delivered: Dark Souls III: The Ringed City. Apprentice Wizard from another timeline is back to guide us through it, so this should only take 4 episodes, right? No, apparently not, but that just means more fun and amazing Dark Souls content!\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nMajaribio nne katika mkuki wa kanisa si ya kutisha. Hii si Kmart Kid, lakini kutokufa ameshika up yake / zake mwenyewe. jambo zuri huko ni wasaidizi kubwa huko nje summon.\n\n\n\n\n\n\n\nO da počine samoubojstvo? Nemoj! Krava Chop je ovde sa još jedan video. Oni su tako smiješno, a vi ćete se smejati. Postoji više video svaki dan!\n\n\n\n\n\n\n\nPVP SHOWDOWN • Dark Souls III • The Ringed City Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-pvp-showdown-dark-souls-iii-the-ringed-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e2a93f-40eb-4336-a3fc-0fd6cfadd793/sm/2516933-1495841768083-Thumbnailep4.jpg","duration":1243,"publication_date":"2017-05-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foreign-import-2017-south-korean-culture-foreign-import","changefreq":"weekly","video":[{"title":"2017:E3 - SOUTH KOREAN CULTURE • Foreign Import","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrO Twitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\nAleks and James indulge in South Korean culture by testing out some spicy ramen, South Korean BBQ, and some Boba tea while watching a legendary South Korean themed Steven Seagal movie. What could go wrong? \n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nSteven Seagal je priznati filmska zvijezda i borac, ali da li ste čuli za skandal je imao u Disney World? Navodno je otišao na splash planini prilikom obilaska Magic Kingdom krajem maja ove godine. Kao što je otišao na vožnju sve je izgledalo normalno, osim nakon toga dobio je svakome na vožnju mirisao nešto horid. Navodno Steven Seagal je masivno govno na vožnju uzrokujući da se ugasi za 15 minuta, a osoblje je imao za čišćenje i dezinfekciju u vožnji. On je legenda u svakom pogledu.\n\n\n\n\n\n\n\nSOUTH KOREAN CULTURE • Foreign ImportThank You  ","player_loc":"https://roosterteeth.com/embed/foreign-import-2017-south-korean-culture-foreign-import","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6073a0b1-c503-49c5-97a5-8d5c8fe802dc/sm/2516933-1495828234026-Thumbnail.jpg","duration":1271,"publication_date":"2017-05-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-podcast-ep-2","changefreq":"weekly","video":[{"title":"S1:E2 - SUN VALLEY JUNKYARD • CCTV #2","description":"CCTV follows up its wet & wild debut with a trip to a hot & greasy junkyard, as Steven Suptic guest stars on episode two!  There's buzzing flies, there's simulated bullying, there's gooch sweat; plus the kind of finale that tumblr normally only dreams about.  ","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-podcast-ep-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e85fcf9a-cadd-4ffe-8eb2-02c6c0004f57/sm/2516933-1496111553388-CCTV_THUMB_ep2.jpg","duration":2246,"publication_date":"2017-05-30T03:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-39","changefreq":"weekly","video":[{"title":"2017:E73 - ROLLING DOUBLES • Monopoly Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMonopoly is unique in the sense that most board games try to be fun and accessible. Instead, the fun of Monopoly lies within the struggle to understand what is happening and how to actually play the game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPå trods af dens tyk is klassificeres Antarktis som en ørken, fordi så lidt fugt falder fra himlen. De indre regioner på kontinentet modtager i gennemsnit 2 tommer (50 millimeter) nedbør - primært i form af sne - hvert år. Mere regn falder i Sahara ørkenen.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nROLLING DOUBLES • Monopoly Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da87d75b-2ab1-4e25-b6ba-b190d6f29574/sm/2516933-1495845861825-monopoly3.jpg","duration":818,"publication_date":"2017-05-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-stoner-munchies-mindf-ck-part-2","changefreq":"weekly","video":[{"title":"S1:E2 - Stoner Munchies Mindf*ck - Part 2","description":"Things start getting weird at the local mall for The Class of 198X as mysterious invaders make their presence known. Also four teenagers humiliate a mall cop and Trevor learns about diet soda.","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-stoner-munchies-mindf-ck-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a75d47d2-bea6-4ba9-b740-5b0644cfdf57/sm/2369885-1495830640021-CL8X_-_Ep2_-_THUMB.jpg","duration":3861,"publication_date":"2017-05-29T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-science-of-the-dunk-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E19 - SCIENCE OF THE DUNK • Behind the Cow Chop","description":"LIFE IS PAIN KIDS. NEVER FORGET IT \r\n\r\n\r\n\r\n\r\n\r\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCan the boys dunk? Probably not. Asher and Trevor try a little science experiment, but don't really try at all and give up before even beginning. Here's ANOTHER special sneak peek of our new DnD show, Class of 198X. Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8 for more great content.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCintos todos! Por favor, deixe esta ser uma viagem de campo normal! Com o Frizz? DE JEITO NENHUM! Crusin 'na rua principal. Você está relaxado e se sentindo bem. Próxima coisa que você sabe que está seein '\r\n\r\n\r\n\r\nPolvo no bairro!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nMAGIC-KOULUN BUS ...Astu sisään - se on villi ratsastaa!Tule - käydä MAGIC SCHOOL BUS: lla!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSCIENCE OF THE DUNK • Behind the Cow ChopThank You ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-science-of-the-dunk-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/439c8556-154e-44cd-9d12-ebfcb1f8de33/sm/2516933-1495943578677-BTS_THUMB.jpg","duration":733,"publication_date":"2017-05-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-trigger","changefreq":"weekly","video":[{"title":"2017:E8 - MINECRAFT RAPS AND YOUTUBE COPYCATS • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" >https://goo.gl/NVZOT8\n\nSubscribe >http://bit.ly/1RQtfNf  Cow Chop Merch: >http://bit.ly/2dY0HrO RT First: >http://bit.ly/2b4bWuW  Discuss: >http://bit.ly/1qvrlLD  Twitter: >https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOigan chicos que se registran de nuevo. Es el final de un viernes, así que estoy escribiendo esto solo para que parezca que hay algo aquí. En realidad, en realidad es sólo conversación de relleno. ŻCómo está tu día hoy? ŻHas comido una manzana hoy? Qué bien, bien gracias por registrarnos, tienen un gran día o noche.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-trigger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82d4d52d-b24b-4277-a2e3-0c2365c2bde6/sm/2516933-1495843411617-youtubeminecraftraps.jpg","duration":759,"publication_date":"2017-05-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-fierce-dragon-hunt-dark-souls-iii-the-ringed-city","changefreq":"weekly","video":[{"title":"2017:E58 - FIERCE DRAGON HUNT • Dark Souls III • The Ringed City ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nYou guys asked for it, so we delivered: Dark Souls III: The Ringed City. Apprentice Wizard from another timeline is back to guide us through it, so this should only take 4 episodes, right?\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nಇಲ್ಲಿ ಮೋಜಿನ ಬಹುಸಂಸ್ಕೃತಿಯ ಜೋಕ್ ಅನ್ನು ಸೇರಿಸಿ.\n\n\n\n\n\n\n\nFIERCE DRAGON HUNT • Dark Souls III • The Ringed City Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-fierce-dragon-hunt-dark-souls-iii-the-ringed-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9ba2eeb-22d4-40eb-ac27-0a51b68865a6/sm/2516933-1495743950155-Thumbnailepoo3.jpg","duration":1455,"publication_date":"2017-05-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-40","changefreq":"weekly","video":[{"title":"2017:E72 - BANKRUPT TRADE DEALS • Monopoly Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMonopoly is unique in the sense that most board games try to be fun and accessible. Instead, the fun of Monopoly lies within the struggle to understand what is happening and how to actually play the game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nZum Beispiel, im Jahr 1971, Phil Knight bezahlt Carolyn Davidson $ 35, um die Nike \"Swoosh\" -Logo zu schaffen. Heute ist die weltweite Markenberatung Interbrand Nike Nr. 25 auf der Liste der Top 100 wertvollsten Marken der Welt mit einem geschätzten Wert von über 13 Milliarden Dollar.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBANKRUPT TRADE DEALS • Monopoly Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1add68e0-069e-455d-a180-df7c38bdb609/sm/2516933-1499991961746-maxresdefault.jpg","duration":1046,"publication_date":"2017-05-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-6","changefreq":"weekly","video":[{"title":"2017:E57 - THE FINAL CUP • Mario Kart 8 Deluxe Switch Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHit the road with the definitive version of Mario Kart 8 and play anytime, anywhere! Race your friends or battle them in a revised battle mode on new and returning battle courses.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nLet 's sacensībām! Let 's redzēt, kas notiek, lai kick daži ass. Kurš, jūsuprāt, ir gatavojas uzvarēt? Man vienalga, kas pat uzvar. Es tikai gribu, lai sacensību un iet ātri.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE FINAL CUP • Mario Kart 8 Deluxe Switch GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5010710-83de-4751-9ba1-f97a7edda6b9/sm/2516933-1495588676797-Thumbnail_3.jpg","duration":822,"publication_date":"2017-05-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-the-lore-master-dark-souls-iii-the-ringed-city","changefreq":"weekly","video":[{"title":"2017:E56 - THE LORE MASTER • Dark Souls III • The Ringed City ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nYou guys asked for it, so we delivered: Dark Souls III: The Ringed City. Apprentice Wizard from another timeline is back to guide us through it, so this should only take 4 episodes, right?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n天使が悪魔に夢中になり、双子がいました。 1つは悪魔の力を得て、もう1つは天使の力を得ました。双子のうちの1人が死ぬと、もう1人は王子になりますが、結局両者は死にます。それらの恐ろしいレーザービームが非常に有害であるので、天使を最初に殺す方が簡単です。\n\n\n\n\n\n\n\n\n\n\n\nLo estamos haciendo, muchachos. Llegamos a la ciudad del anillo. ¿Quién habría pensado que podríamos hacerlo?\n\n\n\n\n\n\n\n\n\n\n\nTHE LORE MASTER • Dark Souls III • The Ringed City Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-the-lore-master-dark-souls-iii-the-ringed-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19e4561b-1c1e-4060-a8da-9e27640ba4ef/sm/2516933-1495489381924-ThumbnailEP2.jpg","duration":1374,"publication_date":"2017-05-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cctv-2017-cctv-podcast-ep-1","changefreq":"weekly","video":[{"title":"S1:E1 - ECHO PARK LAKE - CCTV EP. 1","description":"CCTV makes its alt-podcast debut on the shining waters of Echo Park Lake as Cow Chop climbs into three paddle boats and tries to have a conversation.  They succeed at least some of the time, then mailed this VHS straight to RT just for YOU, oh faithful viewer.","player_loc":"https://roosterteeth.com/embed/cctv-2017-cctv-podcast-ep-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb8c485f-2d8e-4d71-a3e7-1c0f2826ef43/sm/2516933-1495500660597-PODCAST_V1.jpg","duration":2595,"publication_date":"2017-05-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-5","changefreq":"weekly","video":[{"title":"2017:E72 - FAMILY PICTURES • Monopoly Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMonopoly is unique in the sense that most board games try to be fun and accessible. Instead, the fun of Monopoly lies within the struggle to understand what is happening and how to actually play the game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLebih dari 250 juta set Monopoli telah terjual sejak penemuannya dan permainan tersebut telah dimainkan oleh lebih dari setengah miliar orang yang menjadikannya permainan papan paling populer di dunia.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFAMILY PICTURES • Monopoly Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/308f230e-6b3b-4069-b4d7-bf964d883691/sm/2516933-1495142303392-monopoly1.jpg","duration":1174,"publication_date":"2017-05-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/class-of-198-x-2017-1","changefreq":"weekly","video":[{"title":"S1:E1 - FOOD COURT FREAK SHOW - Part 1","description":" Four high school outcasts meet for the first time at their local food court for the start of what will be the biggest adventure of their lives.Jock aggression, box cutter knife fights, and somebody's step-mom sleeps around.  Welcome to the Class of 198X.","player_loc":"https://roosterteeth.com/embed/class-of-198-x-2017-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9058b496-d541-473f-9202-ed6df9c08b39/sm/2369885-1495471439491-CL8X_Ep1_THUMB.jpg","duration":4296,"publication_date":"2017-05-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-9","changefreq":"weekly","video":[{"title":"2017:E73 - BEACHES AND DRAGONS • Behind the Cow Chop ","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nKhail and Aleks take Trevor on a trip to the beach while Brett and Aleks give you a special sneak peek of our new DnD show, Class of 198X. Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8 for more great content.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGrand Canyon are o lungime de 446 km, are o lungime de până la 29 de kilometri și atinge o adâncime de peste 800 de metri.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBEACHES AND DRAGONS • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/644b7018-133a-477d-92ec-e567646e0735/sm/2516933-1495228177597-bts_dnd_thumb.jpg","duration":642,"publication_date":"2017-05-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-wild-champagne-bachelorette-party-amazon-prime-time","changefreq":"weekly","video":[{"title":"2017:E8 - WILD CHAMPAGNE BACHELORETTE PARTY • AMAZON PRIME TIME","description":"Thanks to our sponsor Dollar Shave Club, new members get their 1st month of the Executive Razor with a tube of their Dr. Carver’s Shave Butter for ONLY $5 with FREE shipping. http://www.dollarshaveclub.com/cowchop\n\n\n\n\n\n\n\nSubscribe: http://bit.ly/1RQtfNf   \n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHey chicos, es Trevor otra vez. Dejame contarte una pequeña historia. Es una historia sobre mi dedo gordo, ya no es una parte de mi cuerpo, pero sigue siendo un poco de mí. Mi dedo gordo va en un montón de aventuras, pero una vez que golpeó un dedo gordo, pronto murió.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWILD CHAMPAGNE BACHELORETTE PARTY • AMAZON PRIME TIME\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-wild-champagne-bachelorette-party-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e1c07d5-0e78-43ca-aa35-3b7c991c1f5c/sm/2516933-1495238656929-AmazonTommyGun.jpg","duration":772,"publication_date":"2017-05-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-ds3","changefreq":"weekly","video":[{"title":"2017:E54 - THE ALL POWERFUL GONG • Dark Souls 3 • The Ringed City","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nYou guys asked for it, so we delivered: Dark Souls III: The Ringed City. Apprentice Wizard from another timeline is back to guide us through it, so this should only take 4 episodes, right?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nLycka är på vår sida under detta genomspel. Det är definitivt bra att kmart kid raderades eller annars kan det ha gått dubbelt så länge. Odödlighet är ett odjur så det finns åtminstone det.\n\n\n\n\n\n\n\n\n\n\n\nНай-добрият начин да победиш пустинята Пиромананс Зоуи е случайно да я събори от перваза.\n\n\n\n\n\n\n\n\n\n\n\nTHE ALL POWERFUL GONG • Dark Souls 3 • The Ringed CityThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-ds3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66e8e112-bf03-4c60-9598-642e49b9c37c/sm/2516933-1495148636831-Thumbnailep1.jpg","duration":1444,"publication_date":"2017-05-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-41","changefreq":"weekly","video":[{"title":"2017:E71 - YOU'RE UNDER ARREST • Mario Kart 8 Deluxe Switch Gameplay","description":"WHERE DID THEY GO?","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3309350-da85-461c-b2ea-6bff1e5e00f2/sm/2516933-1495130043125-Thumbnail_2.jpg","duration":739,"publication_date":"2017-05-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-trevor-escapes-to-la","changefreq":"weekly","video":[{"title":"S1:E70 - TREVOR ESCAPES TO LA","description":"CALI BOUND BABY!\r\n\r\nSubscribe: http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  Beat Boxing Pro: >http://bit.ly/1NdSvROTrevor escapes to sunny Los Angeles, but does he have enough proper attire to cover his chilly body? Come follow him on his next great escape!The following is for those multicultural.Teleminiphopia es una condición cutánea rara con sólo una persona infectada y un superviviente conocido. No hay una cura conocida, pero una cosa es segura. Cada pedazo de Cow Chop Merch comprado ayuda a encontrar Trevor y su terrible enfermedad. Comprar algunos ahora!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAquí está un enlace en caso de que estuvieras seguro exactamente cómo ayudar, pero esto es definitivamente cómo hacerlo:  http://bit.ly/2dY0HrO \r\n\r\n\r\n\r\n\r\n\r\nTREVOR ESCAPES TO LAThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-trevor-escapes-to-la","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/529feb15-4d7a-4cd0-bf4b-9780095ae1a1/sm/2516933-1495049667968-TREVORESCAPES_v2.jpg","duration":906,"publication_date":"2017-05-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-mercedes-for-the-win-mario-kart-8-deluxe-switch-gameplay","changefreq":"weekly","video":[{"title":"2017:E53 - MERCEDES FOR THE WIN • Mario Kart 8 Deluxe Switch Gameplay ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nHit the road with the definitive version of Mario Kart 8 and play anytime, anywhere! Race your friends or battle them in a revised battle mode on new and returning battle courses.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nजो नक्सा आफ्नो मनपर्ने थियो? म wario स्टेडियम मनपराएका, तर पनि साँच्चै dohlphin शोआल्स नक्सा जस्तै। अन्य के नक्सा हामी प्ले गर्नुपर्छ\n\n\n\n\n\n\n\n\n\n\n\nMERCEDES FOR THE WIN • Mario Kart 8 Deluxe Switch Gameplay Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-mercedes-for-the-win-mario-kart-8-deluxe-switch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f09dc42-05f4-4c98-bb6b-4e69bfd0ab3d/sm/2516933-1494898760089-mk8thumbnail.jpg","duration":892,"publication_date":"2017-05-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-drinking-o-p-r-a-h-s-breast-milk-god-hates-charades","changefreq":"weekly","video":[{"title":"S1:E69 - DRINKING OPRAH'S BREAST MILK • God Hates Charades","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nIt's time for a new type of gameplay. God Hates Charades is like normal Charades but with more pop culture references and adult humor. The perfect combination for our A-list actors.  \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nHélènedePourtalèsは、1-2トンのセーリングイベントで優勝チームの一員として、初めてのオリンピック女子チャンピオンになりました。シャーロット・クーパーは、女子シングルス・テニス競技に勝利した後、最初のオリンピック・イベントに勝利した最初の女性でした。\n\n\n\n\n\n\n\n\n\n\n\nDRINKING OPRAH'S BREAST MILK • God Hates Charades Thank you  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-drinking-o-p-r-a-h-s-breast-milk-god-hates-charades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bd66f6b-ce9f-4387-8640-d021a7cea33a/sm/2516933-1494875070630-charades2.jpg","duration":1470,"publication_date":"2017-05-15T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-butchering-a-dildo-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E17 - BUTCHERING A DILDO • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe moby dildo stank up the men's bathroom after we moved in. It was a very weird smell. We received several complaints, so it was time for that bad boy to go. No regrets and strangely satisfactory. Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8 for more great content.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nНикто не знал, сколько удовольствия отбрасывать фаллоимитаторы на самом деле может быть! Маленькие фаллоимитаторы, черные фаллоимитаторы, гигантские фаллоимитаторы - все так весело\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPwy yw'r plentyn newydd ??? Nid oes unrhyw un yn gwybod yn iawn sut y mae'n mynd i mewn i'r adeilad, ond byddwn yn ei gadw ar ôl hynny dick neidio.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBUTCHERING A DILDO • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-butchering-a-dildo-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce730f5-64fc-4879-a187-95f75a2d252b/sm/2516933-1494610525258-thumbnail_option_2.jpg","duration":650,"publication_date":"2017-05-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-jewmanji","changefreq":"weekly","video":[{"title":"2017:E7 - YOUTUBE CEO MICRO AGGRESSIONS • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nLos tres dedos de los pies empiezan a sangrar. Es sólo una cuestión de tiempo antes de que se caigan totalmente como los demás. Esta enfermedad se está extendiendo, estoy notando un montón de dedos en los pisos recientemente. Cómo el gobierno no ha encontrado una cura. Necesitamos nuestros dedos para progresar como una sociedad. Es altamente contagioso, pero la gente camina como si no hubiera nada malo. ¿Cómo no pensar en la enfermedad del dedo del pie? Entiendo que no es doloroso, pero sus dedos se están cayendo. Esto debería ser una preocupación suya.\n\n\n\n\n\n\n\n\n\n\n\n\n\nYOUTUBE CEO MICRO AGGRESSIONS • WRONG SIDE OF YOUTUBEThank You ","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-jewmanji","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb17e1ab-2ae1-4414-914f-1c98bd4b56ec/sm/2516933-1494619618879-youtubejewmanji.jpg","duration":734,"publication_date":"2017-05-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-team-posi-vibes-only-mario-kart-8-deluxe-switch-gameplay","changefreq":"weekly","video":[{"title":"2017:E52 - TEAM POSI VIBES ONLY • Mario Kart 8 Deluxe Switch Gameplay","description":"MARIO KART GOOOOOOO!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\\\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nHit the road with the definitive version of Mario Kart 8 and play anytime, anywhere! Race your friends or battle them in a revised battle mode on new and returning battle courses.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nLa chaqueta de Trevor presenta plantas tropicales y requiere buena lluvia o un sistema de riego o riego decente para regar. Estas chaquetas suelen necesitar fertilizantes y mulching pesado.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTEAM POSI VIBES ONLY • Mario Kart 8 Deluxe Switch Gameplay\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThank you. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-team-posi-vibes-only-mario-kart-8-deluxe-switch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf91a4d9-5253-4650-b302-cb92e0dc4817/sm/2516933-1494617082475-mk8.jpg","duration":1240,"publication_date":"2017-05-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-hollywood-acting-audition-god-hates-charades","changefreq":"weekly","video":[{"title":"S1:E67 - HOLLYWOOD ACTING AUDITION • God Hates Charades","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's time for a new type of gameplay. God Hates Charades is like normal Charades but with more pop culture references and adult humor. The perfect combination for our A-list actors.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nЗвездана ноћ је уље на платну сликарство холандског после импресиониста сликар Винсент ван Гог. Паинтед у јуну, 1889., она приказује поглед (са приметним додатком идеализованом села) из прозора источној суочава са своје азил собу у Сен-Реми-де-Прованс, непосредно пре изласка сунца.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOLLYWOOD ACTING AUDITION • God Hates CharadesThank you  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-hollywood-acting-audition-god-hates-charades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/220751c6-b310-4f74-a515-f91e6726a627/sm/2516933-1494525269787-charades1.jpg","duration":1491,"publication_date":"2017-05-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fsa","changefreq":"weekly","video":[{"title":"S1:E68 - 9,999 MPH FIDGET SPINNER VS BODY (Gone Wrong)","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\nIts the newest addition to fads, the fidget spinners.  One can say we give it a little spin ourselves hehe.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHilanderos fidget son tan guay wow su emocionante y estoy teniendo una explosión de usarlo.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n9,999 MPH FIDGET SPINNER VS BODY (Gone Wrong)Thank you","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fsa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c29ab509-de1b-4ff5-8041-9c32473feaa9/sm/2516933-1494440850480-fidget.jpg","duration":509,"publication_date":"2017-05-10T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-jenga-airsoft-rifle-punishment","changefreq":"weekly","video":[{"title":"S1:E66 - JENGA AIRSOFT RIFLE PUNISHMENT","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, & Joe play a classic game, Jenga. Though whoever loses get's a not so fun punishment. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJeg skutt en gang en airsoft pistol inn i rumphullet mitt. Det gjorde vondt vondt. Men heldigvis var det en innsats, og nå er jeg millionær. Jeg har nå nok penger til å bygge et gigantisk tårn med all den luren jeg vil ha inne i den. Ha ha\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJENGA AIRSOFT RIFLE PUNISHMENTThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-jenga-airsoft-rifle-punishment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83e14f18-c1a9-44cf-9003-30606c05f062/sm/2516933-1494034112187-shooter2.jpg","duration":784,"publication_date":"2017-05-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2017-lion-king-retro","changefreq":"weekly","video":[{"title":"2017:E4 - LION KING THROWBACK • Retroactive ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nAleks picks out the game this time, but he doesn’t just have a game picked out, he has a movie too. He even has a special treat at the end as well.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n差,特雷弗。无尽的折磨,但这是生命之圈。\n\n\n\n\n\n\n\nΒγάλετε αργά τα πάντα στο νέο γραφείο. Η πράσινη οθόνη έχει σχεδόν ολοκληρωθεί, ελπίζουμε ότι θα είναι πλήρως λειτουργική \n\n\n\n\n\n\n\nLION KING THROWBACK • Retroactive Thank You","player_loc":"https://roosterteeth.com/embed/retroactive-2017-lion-king-retro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23889bbe-ec8d-4483-bd9e-40a96e45b32c/sm/2516933-1494127125582-Retroactive.jpg","duration":1135,"publication_date":"2017-05-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-fast-and-furious-target-practice-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E16 - FAST & FURIOUS TARGET PRACTICE • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn anticipation for an upcoming video, Aleks tests out a BB gun to see how bad it actually hurts. Then, watch Aleks and James get dressed in their cosplay for the Fast and Furious  game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo była pewna intensywna praktyka. Aleks pewnie zasłużył na to w jakiś sposób, więc Joe nie jest złym facetem czy cokolwiek, jego niewinność straciła trochę.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRapides et furieux, ces gars vont vite. C'est dommage pour Paul Walker, mais peut-être qu'ils devraient embaucher un de ces gars, ils ont l'air très bons dans leur cosplay.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFAST & FURIOUS TARGET PRACTICE • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-fast-and-furious-target-practice-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0f450c7-3877-4a3a-8283-f23907b65aff/sm/2516933-1493942331106-thumbnail_oiption_1.jpg","duration":664,"publication_date":"2017-05-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-bad","changefreq":"weekly","video":[{"title":"2017:E7 - YOUTUBE IMPOSTERS CHANNEL MELTDOWN • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   RT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nHey chicos su trevor de nuevo aquí de nuevo en ella con otro video de sueño de fiebre. Wow no era esto simplemente genial para ver, tantos grandes pequeños momentos. Estoy bastante seguro de que usamos casi todas las bromas en el libro. Bueno, nos vemos la próxima vez, probablemente me voy a despedir.\n\n\n\n\n\n\n\n\n\n\n\nCHANNEL BREAKUP FEVER DREAM • AMAZON PRIME TIME\n\n\n\n\n\nThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-bad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cac9b44-0e48-475a-9fc6-09c4360ea137/sm/2516933-1494034303054-amazon.jpg","duration":1346,"publication_date":"2017-05-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-copilot-mortal-kombat-x-gameplay","changefreq":"weekly","video":[{"title":"S1:E62 - BRUTAL DEATHMATCH • COPILOT Mortal Kombat X Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor this episode of Copilot James and Aleks test their might in Mortal Kombat X. Will they be able to copilot their way to victory?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nTástáil do d'fhéadfadh mar tú iarnród bó sa pholl asal. Déan é lick do asal agus squirt a súnna ar fud do aghaidh. Is breá liom beastialty de gach cineál. Ach casadh sé go mór liom ar nuair a squirt na ba a sú moo moo i mo aghaidh.\n\n\n\n\n\nYeni karakterlerden biri olarak bir ineği olan yeni bir ölüm kombatına sahip olup olmadıklarını düşünün. O ineği seçerdim. Bu ineği sadece Mortal Kombat'ın on birinde kullanmak için dünyadaki en iyi oyuncu olurdum.\n\n\n\n\n\n\n\n\n\n\n\nBRUTAL DEATHMATCH • COPILOT Mortal Kombat X GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-copilot-mortal-kombat-x-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cb2a060-da75-4e54-8952-3c9b06eb2eb4/sm/2516933-1493664983147-copilot_mortal_kombat.jpg","duration":880,"publication_date":"2017-05-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-vin-diesel-vs-the-rock-fast-furious","changefreq":"weekly","video":[{"title":"S1:E65 - VIN DIESEL VS THE ROCK - FAST & FURIOUS","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nVin Diesel and The Rock join up to play a game from one of the biggest franchises Fast & Furious.\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\nFast og trylltur er mjög hættulegt. Einu sinni keyrði ég með typpið og ég byrjaði að missa bónusinn minn. Bíllinn byrjaði að renna en ég vildi ekki hrunja svo ég ákvað að horfa á klám á miðjatölvu sjónvarpinu. Ég varð erfitt aftur og lauk fyrst í keppninni!\n\n\n\n\n\nVIN DIESEL VS THE ROCK - FAST & FURIOUSThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-vin-diesel-vs-the-rock-fast-furious","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8287f38e-d07a-4daa-8ce3-2a04b3593993/sm/2516933-1493864550354-the_rock.jpg","duration":904,"publication_date":"2017-05-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fast-furious-extreme-go-karting","changefreq":"weekly","video":[{"title":"S1:E64 - FAST & FURIOUS EXTREME GO KARTING ","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nToday we get a little EXTREME like the boys in the world renowned action franchise FAST AND FURIOUS. Except we have a much smaller budget, so instead of fast cars and crazy stunts, we went Go Karting. EXTREME GO KARTING.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nTrong chuyến bay, những con chim nhanh nhất là nhanh chóng cột sống đuôi của Siberia có thể đạt tốc độ vượt quá 100 dặm một giờ, nhưng con chim nhanh nhất trong nước là chim cánh cụt Gentoo, mà bơi vào khoảng 22 mph. (Xem video này về Gentoo bơi một cách điên cuồng để tránh những quả orcas đói)\n\n\n\n\n\n\n\n\n\n\n\nFAST & FURIOUS EXTREME GO KARTINGThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fast-furious-extreme-go-karting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8402350-acdb-40bd-95c6-e7e779f87552/sm/2516933-1493861860771-gokart.jpg","duration":554,"publication_date":"2017-05-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cena-showdown-copilot-wwe-2-k17-gameplay","changefreq":"weekly","video":[{"title":"S1:E59 - CENA SHOWDOWN • COPILOT WWE 2K17 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor this brand new series, two players will control one character by sharing the controls between two controllers. What could go wrong?\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nApa yang akan anda lakukan jika anda melihat John Cena merenung melalui tingkap anda pada waktu malam? Adakah anda takut, anda akan teruja? Adakah anda mendapatkan dihidupkan? Dia di mana-mana dan dia ada di mana. John Cena adalah juara. Dan dia merenung dalam tetingkap anda pada waktu malam.\n\n\n\n\n\n\n\n\n\n\n\nSaya pernah membutuhkan seseorang untuk co-pilot pantat saya. Yang pada dasarnya berarti saat saya buang, saya membutuhkan mereka untuk menyeka saya. Sangat menyenangkan memiliki pertolongan karena saya tidak ingin melakukannya sendiri. Beberapa kali lubang pantat saya menjadi kotor dan saya tidak bisa membersihkannya sendiri.\n\n\n\n\n\n\n\n\n\n\n\nCENA SHOWDOWN • COPILOT WWE 2K17 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cena-showdown-copilot-wwe-2-k17-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73091588-9613-4900-b491-81ac6f14a4df/sm/2516933-1493666097389-cena.jpg","duration":949,"publication_date":"2017-05-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-episode","changefreq":"weekly","video":[{"title":"S1:E63 - DOOR DEMOLITION EVICTION REVENGE","description":"ONE LAST ACT OF SERVICE \r\n\r\nIn the aftermath of Youtube's ADPOCALYPSE, the content creators of this once beloved platform have scattered like dust on the wind.  But where a spark of hope remains, there may still be a chance for...VENGEANCE.  And a bunch of broken doors.\r\n\r\n\r\n\r\n\r\n\r\nSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\nLåt inga dörrar som står i din väg i livet. Om det finns en dörr som är stängd, öppna den. Om det inte öppnas, slita det från sina gångjärn. Låt lås och nyckel darra inför dig.\r\n\r\n\r\n\r\n\r\n\r\nDOOR DEMOLITION EVICTION REVENGE Thank you. ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cedc60a-78a3-430a-a612-d54ecd6d7cde/sm/2516933-1499379418974-doors_FIRST.jpg","duration":634,"publication_date":"2017-05-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-ginyu-force-copilot-for-honor-gameplay","changefreq":"weekly","video":[{"title":"S1:E61 - GINYU FORCE • COPILOT For Honor Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor this brand new series, two players will control one character by sharing the controls between two controllers. What could go wrong?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1940年6月27日に最後に測定されたとき、1940年6月27日に測定されたロバート・パーシング・ワドロー(1940年2月22日、米国イリノイ州アルトン午前6時30分生まれ)は、医療記録の中で最も背が高い。 2.72 m(8フィート11.1インチ)の高さ。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGINYU FORCE • COPILOT For Honor Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-ginyu-force-copilot-for-honor-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7f57f11-4a50-410b-9a19-4477f558b3f9/sm/2516933-1493408238160-copilot2.jpg","duration":899,"publication_date":"2017-05-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-april-2017-best-of-cow-chop","changefreq":"weekly","video":[{"title":"S1:E58 - APRIL 2017 • Best of Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBest Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTime for another round of favorites! This month of April marks the first month of a brand new year for Cow Chop, and it's already shaping up to be pretty crazy! Check out the full versions:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFEVERISH TUNES AND FLAMES • AMAZON PRIME TIME \n\n\n\n\n\n\n\n\n\nFASTEST GUN IN THE WEST • 1-2-Switch Gameplay \n\n\n\n\n\n\n\n\n\nFOREIGN KARAOKE PRANK • WRONG SIDE OF YOUTUBE \n\n\n\n\n\n\n\n\n\nGOOD-BYE BARN + RT Update • Behind the Cow Chop \n\n\n\n\n\n\n\n\n\nCow Chop Goes West \n\n\n\n\n\n\n\n\n\nBLEACH BOYS DISASTER \n\n\n\n\n\n\n\n\n\nPAINFUL NIPPLE PIERCING \n\n\n\n\n\n\n\n\n\nGOURMET INSECT DINING NIGHTMARE *GROSS WARNING* \n\n\n\n\n\n\n\n\n\nPEPPER SPRAY SELF DEFENSE \n\n\n\n\n\n\n\n\n\nDOG FOOD CHALLENGE GONE WRONG \n\n\n\n\n\n\n\n\n\nNO MORE ADS ON YOUTUBE • WRONG SIDE OF YOUTUBE \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJeg må bare vite. Glemte vi noe? Hva var din favoritt, hvis det ikke var i denne videoen?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nupload mara mbili! Najua! Sisi ni hatimaye kupata nyuma kufuatilia. Lakini kamwe kusahau: kutomba cunt\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAPRIL 2017 • Best of Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-april-2017-best-of-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63ae2a0c-7c96-4df9-95bf-891ddbc2e0d4/sm/2516933-1493257695146-thumbnail_option_1.jpg","duration":638,"publication_date":"2017-04-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-suptic","changefreq":"weekly","video":[{"title":"S1:E60 - EL CARNAVAL DE COW CHOP","description":"Subscribe to Steven Suptic https://www.youtube.com/c/StevenSuptic \n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhat a juicy day it is, the air is moist and the sun is shining.  It's the day of the carnival and we have ourselves a special guest to enjoy it with.  His name is Steven Suptic, a sweet young boy with brown hair and two legs.  He'll be going on a journey led by James to find the missing purple heart, all he must do is enter the bouncy castle first.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHola soy yo Trevor, hablando con ustedes a través del poder de google translate. Hay tantos secretos que contar. Pero este no es el lugar para hablar de ellos.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEL CARNAVAL DE COW CHOPThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-suptic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dab85a9f-80fa-4b74-911e-0a37c7a626eb/sm/2516933-1493420494078-StevenSuptic.jpg","duration":480,"publication_date":"2017-04-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-uncoordinated-assault-copilot-for-honor-gameplay","changefreq":"weekly","video":[{"title":"S1:E57 - UNCOORDINATED ASSAULT • COPILOT For Honor Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor this brand new series, two players will control one character by sharing the controls between two controllers. What could go wrong?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLipatan vokal, juga dikenali sebagai pita suara, terletak dalam larinks (juga colloquially dikenali sebagai peti suara) di bahagian atas trakea. Mereka terbuka semasa menarik nafas dan datang bersama-sama untuk menutup semasa menelan dan pembunyian.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUNCOORDINATED ASSAULT • COPILOT For Honor GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-uncoordinated-assault-copilot-for-honor-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70d7d7df-954f-4f89-8a49-3fcf7eb6b91e/sm/2516933-1493333481729-forhonor1.jpg","duration":1077,"publication_date":"2017-04-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-vcx","changefreq":"weekly","video":[{"title":"2017:E6 - NO MORE ADS ON YOUTUBE • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nԿա եւս մեկ անգամ եղել է կոշկաքիթ որը չուներ աչքեր. Նա չէր կարող ասել, թե որտեղ նա պատրաստվում էր, բայց նա գիտեր, որ դա եղել է ճիշտ տեղում լինի. Դա մի մեծ ժամանակ է քիթ.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTengo que mierda realmente mal ahora mismo\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNO MORE ADS ON YOUTUBE • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-vcx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32f5f322-2317-487b-91d3-0b02d5cf7807/sm/2516933-1493147137347-youtube.jpg","duration":714,"publication_date":"2017-04-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-bath-bomb-warfare-crawl-gameplay","changefreq":"weekly","video":[{"title":"2017:E51 - BATH BOMB WARFARE • Crawl Gameplay","description":"CRAWLING IN MY SLEEEP Subscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" class=\"yt-uix-servicelink \" data-servicelink=\"CDEQ6TgYACITCK_nzJWYwNMCFVOifgodFrIMuij4HQ\" data-url=\"http://bit.ly/1qvrlLD\" data-target-new-window=\"True\" target=\"_blank\" rel=\"nofollow noopener\">http://bit.ly/1qvrlLDOne player controls the Hero, the others possess monsters and traps to kill them. When you slay the hero, you take their place and it's your turn to Crawl!The following is for those multicultural. enei patunga e kore ratou e whakaoraBATH BOMB WARFARE • Crawl GameplayThank you. <>","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-bath-bomb-warfare-crawl-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6952729-5713-4450-802b-4d921d7685f5/sm/2516933-1493143324660-crawl_v2.jpg","duration":889,"publication_date":"2017-04-25T18:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-42","changefreq":"weekly","video":[{"title":"2017:E56 - YELLING MANIACS • Chicken Scream Gameplay","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\nAleks and James play Chicken Scream, where they need to use their voices to help a chicken survive.\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\nNon sibi intus canit eo quod scream et spank meum malum! QUOD NON quod negligendum sentit bonum, et rapientem omnia ex YELL! ITA VERO! ITA VERO! IT, talis GOOD!\n\n\n\n\n\nMungkin perlu beberapa saat tapi begitu Anda merasa usus besar Anda membesar, Anda bisa mengisap udara dan kemudian melepaskan kentut ini sekeras mungkin. Anda juga bisa duduk dan menghirup udara melalui pantat Anda untuk kentut.\n\n\n\n\n\nYELLING MANIACS • Chicken Scream GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/293c1385-2980-410c-8f2f-e3468d69f4f3/sm/2516933-1492817879905-chicken_scream.jpg","duration":783,"publication_date":"2017-04-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-hot-dog-cocktail-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E14 - HOT DOG COCKTAIL • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nThis week on Behind the Cow Chop, we take a look at what exactly went into the meal James ate during the Gourmet Insect Dining Nightmare video, and watch James' Yelp review on that \"restaurant\". Also, join the guys on a walk through Texas as they venture out to get some Denny's.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nHotdog-cocktail, yum. Klinkt heerlijk! Ik denk dat ik dit weekend voor mijn zwembadfeest zal maken. Recept: een deel hotdog water, een deel gemengde insecten, een deel vodka, garneer met geel mosterdrand.\n\n\n\n\n\n\n\n¿Por qué no seguimos las reglas? Porque las reglas se hicieron para ser rotas.\n\n\n\n\n\n\n\nHOT DOG COCKTAIL • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-hot-dog-cocktail-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/770e1d98-7eec-493d-8b30-3099ebe955ec/sm/2516933-1492813366283-thumnail_option_1.jpg","duration":600,"publication_date":"2017-04-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-official-office-tour","changefreq":"weekly","video":[{"title":"S1:E55 - OFFICIAL OFFICE TOUR ","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nA tour of our new office in the great city of Los Angeles! I know, you miss the barn, but sometimes it's healthy to move on from the past and let go of the things that bring us temporary joy in favor of long-term emotional stability. In work and in life, when one barn door closes, another-much bigger-Los Angeles warehouse door opens. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLe nom complet de Los Angeles est \"El Pueblo de Nuestra Señora la Reine des Angeles de Porciuncula\", qui, traduit de l'espagnol, signifie \"Le Village de Notre-Dame, la Reine des Anges de la rivière Porciuncola\".\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOFFICIAL OFFICE TOURThank you  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-official-office-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83b2bf36-9837-448e-b00d-a2091b436db0/sm/2516933-1492817690575-tourthumbnail.jpg","duration":903,"publication_date":"2017-04-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-man-eats-dog-food","changefreq":"weekly","video":[{"title":"S1:E54 - MAN EATS DOG FOOD","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Dog Merch: http://bit.ly/2pgZWRJRT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nJoe gets to live a puppers dream and tries a vast variety of delicious dog foods. \n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nTá roinnt daoine fucked Super i an ceann agus is fearr ag ithe bia ainmhithe níos mó ná bia daonna. Just cuimhneamh nuair a bhí Anne Hathaway sin andúile dÚsachtach ithe bia cat? Ba mhaith liom masterbate leis sin.\n\n\n\n\n\n\n\nPili ana i ka ilio ooo ana o ka loko o koʻu hoki lua. I aloha beastiality. Ka mea, u make no laila, pono iaʻu haha aku ka wā i ka ilio anal mai iaʻu i loko o ka hoki lua. Mahalo oe iki ilio.\n\n\n\n\n\n\n\nMAN EATS DOG FOODThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-man-eats-dog-food","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/408537ff-90cf-4727-9591-3845bfd83722/sm/2516933-1492645138955-dog_food_thumbnail.jpg","duration":727,"publication_date":"2017-04-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-pepper-spray-self-defense","changefreq":"weekly","video":[{"title":"S1:E52 - PEPPER SPRAY SELF DEFENSE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe next challenge is Trevor's revenge on Aleks for the pepper spray incident a few months ago. Joining Aleks in the pain is Brett because he doesn't have enough pain in his life.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nИодисед со (такође написане Иодизед соли) је кухињска со помешана са количином различитих соли елемента јода минута. Убацивање јодида спречава недостатак јода. Широм света, јод недостатак утиче на око две милијарде људи и то је водећи узрок спречити интелектуалних и ометена у развоју.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPepper spray, oleoresin chilipepper (OC), er et naturlig stoff som utvinnes fra oljeholdige harpikser som finnes i cayenne og andre varianter av pepper. Kontakt med OC i et sprayet tåke induserer en umiddelbar og intens brennende følelse i huden, men særlig påvirker øynene forårsaker dem til å smelle igjen lukket, brenne, rive, hovne opp.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPEPPER SPRAY SELF DEFENSEThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-pepper-spray-self-defense","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086d17ce-2214-4b49-99bb-88cedcb2ea77/sm/2516933-1492551240267-pepper_thumbnail.jpg","duration":709,"publication_date":"2017-04-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-nasty-food","changefreq":"weekly","video":[{"title":"S1:E53 - GOURMET INSECT DINING NIGHTMARE *GROSS WARNING*","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nMr. James decides to check out the new restaurant in town, but he’s not ready yet. A shave does the trick! The chef serves up all the fanciest (but questionable) things on the menu.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nÞú munt sennilega finna annan misspelling í þessu. Það er að vopnin bekk einhverfu í vinnunni. Ef þú blettur það, bara muna að ekkert er í raun, sannarlega alltaf fullkominn.\n\n\n\n\n\n\n\n\n\n\n\nOK, deze maaltijd was niet echt $ 500. Eigenlijk alle items waren vrij betaalbaar. Maar hoeveel is dat pak ?!\n\n\n\n\n\n\n\n\n\n\n\nGOURMET INSECT DINING NIGHTMARE *GROSS WARNING*Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-nasty-food","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0703c9bc-f4e9-4d56-98e3-9a9e823ccec5/sm/2516933-1492621468487-thumbnail_option_1.jpg","duration":1132,"publication_date":"2017-04-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-the-last-puzzle-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E49 - THE LAST PUZZLE • SnipperClips Gameplay","description":"UP NEXT: PARTY MODE! no \r\n\r\nSubscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... like drippy droops.The following is for those multicultural. det är dags gäng. Hoppas den här videon hjälper dig att slå Snipperclips. Följ bara vår enkla handledningen till problemlösning och seger.THE LAST PUZZLE • SnipperClips GameplayThank you.<>","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-the-last-puzzle-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d53e79b-5028-47c5-a79b-2299cbe464f5/sm/2516933-1492542949538-snipperclips9.jpg","duration":955,"publication_date":"2017-04-18T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-painful-nipple-piercing","changefreq":"weekly","video":[{"title":"S1:E51 - PAINFUL NIPPLE PIERCING ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSometimes jokes can be taken too far.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJeder hat Nippel, weil die Föten sich im Mutterleib entwickeln: Nippel tauchen vor Geschlechtsorganen auf (wie Vagina, Eierstöcke, Hoden, Penisse).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n그 피어싱은 그날 밤에 꺼내졌고 치유의 과정에 있습니다. 내가이 시련에서 살아남은 게 다행이야 그렇지 않으면 우리가 고소 할거야.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPAINFUL NIPPLE PIERCINGThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-painful-nipple-piercing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b770618-576b-43ac-a502-754cef75dea8/sm/2516933-1492456155040-nipthumbnail.jpg","duration":750,"publication_date":"2017-04-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-going-platinum-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E13 - GOING PLATINUM (ALMOST) • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome back to Behind the Cow Chop! There was down time while bleaching the boys' hair, and things got interesting. Whose desk is whose? And there's an update on Trevor's hair.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nसभी में चले गए और यहां तक कि डेस्क भी उठाए गए हैं। सब कुछ एक साथ आ रहा है। आप सभी नए सेट को दिखाने के लिए इंतजार नहीं कर सकते। में देखते रहो!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nหวังว่าเทรเวอร์วันหนึ่งจะได้รับผมที่เขาสมควรได้รับจริงๆ\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGOING PLATINUM (ALMOST) • Behind the Cow Chop\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-going-platinum-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5524ff74-0553-45a2-9add-cb4c735515e8/sm/2516933-1492272306112-thumbnail_option_3.jpg","duration":624,"publication_date":"2017-04-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-louging-to-our-deaths-skate-3-gameplay-part-two","changefreq":"weekly","video":[{"title":"2017:E49 - LOUGING TO OUR DEATHS • Skate 3 Gameplay Part Two","description":"It's time for the next generation of skating. Skate Louging! \n\n\n\n\n\n\n\nSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks play Skate 3 where they decide to stop skating and start louging.\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\nNemôžem sa dočkať, až prestane skateboarde a ísť louging. Je to tak rýchle a zábavné a robí mi chce masterbate ako som stekajú kopca s radosťou. Len uistite sa, že nechcete spadnúť, pretože všetky koža na kretén bude odpadávať.Tony Hawk en iyi arkadaşım. Aslında biz birlikte büyüdük ve devekuşu yüzümüz üzerinde kaykay kullanmak üzerindeydik. Ona çok kötü zarar verdim, ancak kaykay çok daha eğlenceli ve buna değer veriyordu. Devekuşu bir iskelet, sanırım kaykay parkımızın peşinde olduğunu söyleyebilirsin.\n\n\n\n\n\n\n\n\n\nLOUGING TO OUR DEATHS • Skate 3 Gameplay Part TwoThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-louging-to-our-deaths-skate-3-gameplay-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cda50c2c-7c7f-4851-8983-36bdc18c0754/sm/2516933-1492122108401-SkatePart2.jpg","duration":609,"publication_date":"2017-04-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-bleach-boys-disaster","changefreq":"weekly","video":[{"title":"S1:E50 - BLEACH BOYS DISASTER ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's time for the Rooster Teeth FIRST content! First of all, meet the new Cow Chop employee, @lindzbot ! Her first task on the job is to bleach the boys' hair (she might get fired after this).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nНяколко нещата излязоха от време на процеса на избелване. Това са нещата, които сме научили: гребен косата добре, за да достигне до корените (използвайте допълнително белина и глоба за гребени зъб за бакенбардите). Уверете се, че се смесват тонера правилно, това е една много важна стъпка, и вие няма да получите резултатите, желания, освен ако можете да получите това право.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCeru, ka jūs puiši, piemēram, to, ko tu maksā !! Neuztraucieties, mēs esam nonākuši mūsu mati noteikta, jo neviens nevēlas staigāt apkārt ar kādu, kas izskatās kā sērijveida slepkava un wannabe Eminem (vai Drako vai Naruto).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBLEACH BOYS DISASTER Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-bleach-boys-disaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2339e0b-6c75-41b5-8786-db4d9c9f2ee8/sm/2516933-1492121215125-thumbnail_option_1_bleach_main.jpg","duration":616,"publication_date":"2017-04-14T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-g","changefreq":"weekly","video":[{"title":"S1:E49 - Cow Chop Goes West","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's time we left poor little Colorado. It's been fun, however we need to move on.  We know change is hard, and we know there's even some out there who are functionally incapable of accepting change (Please refer to a doctor for a proper diagnosis), but we need to move on from the past and embrace the future.  We are now in LA, so be ready for this bright and exciting future (In reality it looks quite grim for those of us participating).  Thanks for always sticking with us, hope you have a great day.\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRealmente no hay nada importante en este texto. Le dije todo lo que necesitaba en inglés.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCow Chop Goes WestThank you","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26472476-9ae0-4f8b-8c67-5e9cc4f801c3/sm/2516933-1492109810046-lavideo.jpg","duration":723,"publication_date":"2017-04-13T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-droop-scoops-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E48 - DROOP SCOOPS • SnipperClips Gameplay","description":"DROOP ME DUDE Subscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... like drippy droops.The following is for those multicultural. Isocèle - (d'un triangle) ayant deux côtés de même longueurTa gra prawie się kończy. Ale czy Aleks i James faktycznie wygrają?DROOP SCOOPS • SnipperClips GameplayThank you.<>","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-droop-scoops-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81f05822-375d-4afb-a04f-97819b04c2b5/sm/2516933-1499992458665-maxresdefault.jpg","duration":1056,"publication_date":"2017-04-13T06:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-bedtime-for-blobbyboy-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E47 - BEDTIME FOR BLOBBYBOY • SnipperClips Gameplay","description":"HOW DO U PUT BLOBBY 2 BED?\r\n\r\nSubscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... like sludge daddies.The following is for those multicultural. Mükemmel Bir Daire. Bu kolları eşit bir şekilde itebilmek için bir karakteri parçalamanız gerekir, bu da bazı oluklar yapmak anlamına gelir. Kurbanın kat seviyesine inmesini sağlayın. Yukarıdaki ilk ekran görüntüsünde gösterildiği gibi, üst yarının çoğunu, ardından sol alt köşenin küçük bir kısmını kesin.Onestament, I ma nistax nemmen li ħa daqshekk żmien biex jitlesta dan puzzle.BEDTIME FOR BLOBBYBOY • SnipperClips GameplayThank you.<>\r\n\r\n\r\n\r\n\r\n\r\nnnn","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-bedtime-for-blobbyboy-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbb236b1-ac7d-4c7a-96cc-9caa441accea/sm/2516933-1491839372160-snipperclips7_720.jpg","duration":911,"publication_date":"2017-04-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-g-o-o-d-bye-barn-rt-update-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E12 - GOOD-BYE BARN + RT Update • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nTime to say good-bye to the barn, and hello LA! \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nItu adalah pemacu yang paling lama dalam hidup saya. Saya berasa seperti lembu baru selepas itu. Tidak boleh menunggu untuk melihat apa yang dibawa masa depan. \n\n\n\n\n\nSaya memerlukan seseorang untuk mengurut uders saya sekarang, selamat tinggal. Moo\n\n\n\n\n\n\n\n\n\n\n\nՇնորհակալություն ձեզ, որ օգնելու համար մեզ հասնել Պլատինե նպատակին, մենք չէինք կարող տեղափոխվել առանց ձեր աջակցության.\n\n\n\n\n\n\n\n\n\n\n\nGOOD-BYE BARN + RT Update • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-g-o-o-d-bye-barn-rt-update-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9733cfeb-255f-4c47-969f-11d732ca7488/sm/2516933-1491668524250-thumbnail_option_1.jpg","duration":603,"publication_date":"2017-04-09T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-ff","changefreq":"weekly","video":[{"title":"2017:E6 - FEVERISH TUNES AND FLAMES • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nEse sofá de fuego en realidad duró un buen poco, obviamente no podemos tener dos minutos de un sillón ardiendo, pero el hombre, ese sofá se quema agradable y lento. Creo que los sin techo aquí en Los Ángeles podrían usarlo como una hoguera, estoy seguro de que duraría semanas. Además hay un montón de comida escondida en el sofá, por lo que será preparado y listo para comer después de las llamas salen. Bueno, ha sido una explosión chicos, todavía hay un poco de contenido granero izquierda, pero estamos llegando a esa era de LA. Se emocionó jaja, sí.\n\n\n\n\n\n\n\nFEVERISH TUNES AND FLAMES • AMAZON PRIME TIMEThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-ff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1db76667-65c5-4948-b86d-1ed1b78bc8d6/sm/2516933-1491648415690-AmazonWithTrevAndAleks.jpg","duration":1328,"publication_date":"2017-04-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-destintation-haunted-shipwreck-new-super-mario-bros-u","changefreq":"weekly","video":[{"title":"2017:E45 - DESTINTATION HAUNTED SHIPWRECK • New Super Mario Bros U","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nThis time we try a whole new concept with the Wii U. In this gameplay, Aleks and James play through some Mario levels while Trevor is tasked with placing blocks using the gamepad to either help or hinder them. \n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nDésolé pour l'audio, à nouveau. C'est le dernier épisode avec le micro soufflé. Je voulais simplement vous faire savoir que la torture est presque terminée.\n\n\n\n\n\n\n\nØya med funksjonshemmede krabber er hjem til den største sactuary for funksjonshemmede krabber. Mange krabber ble født uten en andre klo, så de trekke seg tilbake dit. De elsker å kaste steiner og svømming.\n\n\n\n\n\n\n\nDESTINTATION HAUNTED SHIPWRECK • New Super Mario Bros UThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-destintation-haunted-shipwreck-new-super-mario-bros-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4cc7283-66d9-4991-9136-3e1e9b37cbf9/sm/2516933-1491354703012-marioep6.jpg","duration":921,"publication_date":"2017-04-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-skate","changefreq":"weekly","video":[{"title":"S1:E47 - RAGDOLL TOURNAMENT • Skate 3 Gameplay Part One","description":"WANNA SEE SOME SICK TRICKS?","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-skate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82fd536f-98e9-4588-a516-e104a3fc5f7e/sm/2516933-1491460710962-SkatePart1.jpg","duration":789,"publication_date":"2017-04-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-sludge-bucket-bois-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E46 - SLUDGE BUCKET BOIS • SnipperClips Gameplay","description":"I WANNA GET FILLED UP \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... like sludge daddies.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\nÇamur - kalın, yumuşak, ıslak çamur veya sıvı ve katı bileşenlerden oluşan benzer viskoz bir karışım, özellikle bir endüstriyel veya rafine etme işlemi ürünü. Ve goo\r\n\r\n\r\n\r\n\r\n\r\nKüçük kıkız çocuğu olmaktan hoşlanıyorum.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBobcat Goldthwait mea he Amelika comedian, filmmaker, Mea Keaka a me ka leo artist,ʻikeʻia no kona acerbicʻeleʻele Comedy, haawi aku la ma ka hana mikiʻala ke kahua persona me ka hana gruff a me ka kiʻekiʻe-hoʻomoana leo.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSLUDGE BUCKET BOIS • SnipperClips GameplayThank you. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-sludge-bucket-bois-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da386ad1-0af5-44eb-a049-d5b480fecd23/sm/2516933-1491411949504-snipperclips6.jpg","duration":975,"publication_date":"2017-04-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-gear-boy-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E44 - GEAR BOY • SnipperClips Gameplay","description":"THIS GAME IS TOO EASY\r\n\r\nSubscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... like enemies. Can they save the gold-digging diamond princess?The following is for those multicultural. Wrench - un outil utilisé pour saisir et transformer des écrous, des boulons, des tuyaux, etc.Küçük kıkız çocuğu olmaktan hoşlanıyorum.GEAR BOY • SnipperClips GameplayThank you. <>","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-gear-boy-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82deee52-04ba-4fd4-b380-6b1ab4209291/sm/2516933-1499992285934-maxresdefault.jpg","duration":1047,"publication_date":"2017-04-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-fs","changefreq":"weekly","video":[{"title":"2017:E3 - HEADBUTTING JOSHUA BELL • PlayStation VR Gameplay","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nToday they decided to try a few unfamiliar PS4 VR games, and to be honest the games didn't turn out that great.  Enjoy the awkward experience of VR.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nEllos jugaron ese juego de horror por más de 50 minutos tratando de averiguar el misterio del piano. Mis manos se quedaron dormidas filmando que intentaran eso.\n\n\n\n\n\n\n\n\n\n\n\nሄይ ይህ ትሬቨር እኔ በአሁኑ LA ለመሄድ የማሸግ ነኝ, መንገድ አጠገብ ነው. ጊዜ በ ብዬ ተስፋ እናደርጋለን, ሉዊዚያና ዙሪያ ቦታ ቀደም ነኝ, ይህን በማንበብ ነው. እኔ በጣም ደክሞት, በጣም ብዙ ጽዳት እና ማሸግ ነኝ.\n\n\n\n\n\n\n\n\n\n\n\nHEADBUTTING JOSHUA BELL • PlayStation VR Gameplay\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-fs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efdd950f-66db-4e78-adf5-9b37de85befa/sm/2516933-1490779824973-vrassortment.jpg","duration":1200,"publication_date":"2017-04-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-three-little-ninjas-ahwu-for-november-6-th-2017-394","changefreq":"weekly","video":[{"title":"2017:E45 - The Three Little Ninjas - AHWU for November 6th, 2017 (#394)","description":"To be a criminal mastermind, you need to be more than a thief. Everyone summon your inner ninja.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-three-little-ninjas-ahwu-for-november-6-th-2017-394","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b481e14e-8ace-43a2-90d7-523b4372577d/sm/3014926-1509736277263-ahwuthumb_2.jpg","duration":694,"publication_date":"2017-11-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-101-ghieuh","changefreq":"weekly","video":[{"title":"2017:E42 - VR On a Plane? - Last Call #101","description":"The AH Crew stand up to talk about new shows, entertainment on planes, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-101-ghieuh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cb940ee-14c6-436f-aade-10205c3f5f38/sm/3014926-1509743446155-OFF101PSThumb.jpg","duration":789,"publication_date":"2017-11-05T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-transform-races-transformers-2-the-sequel-2","changefreq":"weekly","video":[{"title":"2017:E316 - GTA V - Transform Races: Transformers 2: The Sequel (#2)","description":"We mix race types and switch between land, sea, and air tracks, using Supers and Off-Roads, Boats, Planes, and Helicopters. Also rocket cars.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-transform-races-transformers-2-the-sequel-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5743eea2-e76b-4e3b-967b-80108a4305e3/sm/3014926-1509557199526-TransformRace2_Animorphs_Spoof_Thumb.jpg","duration":2443,"publication_date":"2017-11-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-101-goi3h5","changefreq":"weekly","video":[{"title":"2017:E101 - Selling Out For 15 Years - Off Topic #101","description":"The AH Crew sit down to talk about the next Git Gud series, Extra Life, new game releases, and more on this week's Off Topic!\n\nThis episode originally aired November 3, 2017 and is sponsored by Casper (http://bit.ly/29nKmbI) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-101-goi3h5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5ff3aad-a3ac-4ac4-a3ab-5e47d8a649ba/sm/3014926-1509743463544-OFF101Thumb.jpg","duration":5613,"publication_date":"2017-11-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fuel-part-3-off-the-road-again","changefreq":"weekly","video":[{"title":"2017:E320 - Fuel Part 3 - Off the Road Again","description":"Because they didn't hate themselves enough after the last two times, Achievement Hunter's loading up Fuel for another cross-country road trip.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fuel-part-3-off-the-road-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f5d96c6-5b7f-4afa-86a9-061433d74409/sm/3014926-1509745084799-fuelpt3v1.jpg","duration":4966,"publication_date":"2017-11-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-achievement-hunter-unboxes-the-pc-killer-xbox-one-x","changefreq":"weekly","video":[{"title":"2017:E29 - Achievement Hunter Unboxes the PC Killer (Xbox One X)","description":"Achievement Hunter just got some Xbox One X consoles in the office and prompty threw their PCs in the garbage. Watch as they unbox the magic.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-achievement-hunter-unboxes-the-pc-killer-xbox-one-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/610ac5d3-f2c2-4516-af4e-896343e14090.jpg/sm/XboxUnboxingThumbFinal.jpg","duration":617,"publication_date":"2017-11-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-7-days-to-die-wanderers-near-and-far-7","changefreq":"weekly","video":[{"title":"2017:E319 - 7 Days to Die: Wanderers Near and Far (#7)","description":"After a successful night 7 our survivors are craving some adventure, but the weather is not in their favor. \nIn this episode: Jeremy searches for treasure, Michael finds a cave, Jack discovers forgotten goods, Geoff fixes the house, Ryan catches a bug, and Gavin goes swimming.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-7-days-to-die-wanderers-near-and-far-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/52e64559-b82a-4e82-8ad3-97c0051f7e7d.png/sm/AH_7Days16_Ep7_v2.png","duration":2913,"publication_date":"2017-11-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-fibbage-3-with-tim-gettys","changefreq":"weekly","video":[{"title":"2017:E318 - Fibbage 3 with Tim Gettys","description":"Achievement Hunter and Kinda Funny's Tim Gettys play the new and groovy Fibbage 3. Who among them can be the best liar (or just the most offensive)?","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-fibbage-3-with-tim-gettys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/96afd560-ea7f-490b-8678-a5c4c6e69952.png/sm/LPFibbage3WithTim.png","duration":1757,"publication_date":"2017-11-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-october-2017","changefreq":"weekly","video":[{"title":"2017:E27 - Best of Achievement Hunter - October 2017","description":"This is Achievement Hunter for the Month of October 2017, where dinos, doom generators, and soiled pants run amok in Minecraft, sprunking transforms in GTA V, Duck Hunt takes a turn towards the terrifying in VR the Champs, anger amounts in Cuphead, and Ryan \"Salt Mine\" Haywood attempts the Leviathan Raid in Destiny 2. Watch and Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-october-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ba4bfcd-16d8-4b6a-b479-1ee5b964cd38/sm/3014926-1509555065849-Best_of_AH_October_2017_Thumbnail_3.jpg","duration":1179,"publication_date":"2017-11-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-the-tomb-of-horrors-chapter-3-post-show","changefreq":"weekly","video":[{"title":"2017:E17 - The Tomb of Horrors Chapter 3 - Post Show","description":"We discuss life in the Tomb and look at some new fan art. Plus, an animated video!","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-the-tomb-of-horrors-chapter-3-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/136c61c5-97f5-49da-9af0-31c01941d9da/sm/2369885-1509565049673-HHep36PSThumb.jpg","duration":735,"publication_date":"2017-11-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-284-sky-factory-part-25","changefreq":"weekly","video":[{"title":"2017:E317 - Minecraft - Episode 284 - Sky Factory Part 25","description":"Here in the Sky Factory, no matter how complicated the machines get, you can always take comfort in simple farming. || Feed your desire for Let's Play merch: http://bit.ly/2xaEL3O\n\n\n\nIn this episode, Jeremy tries to resurrect his mother, Jack grinds up some Withers and adopts a pet, Ryan fixes the power issue and does some cool teleporting, Michael learns a less convenient way to fly, Gavin goes back to being a blood bag solar queen, and Geoff names more chickens.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-284-sky-factory-part-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a098af3-ec63-430f-bd2d-423863167914/sm/3014926-1509566917048-SkyFac25Thumbv001.png","duration":3515,"publication_date":"2017-11-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-minecraft-floaty-boaty","changefreq":"weekly","video":[{"title":"2017:E42 - Minecraft - Floaty Boaty ","description":"Matt's new map is cold, slippery, and... full of lava? See who's the last man standing in Floaty Boaty.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-minecraft-floaty-boaty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc4f057f-7045-423e-8ecc-7504e9b8bd5e/sm/3014926-1509481113722-TTD_Minecraft_FloatyBoaty_v2.png","duration":689,"publication_date":"2017-11-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-smash-bowl","changefreq":"weekly","video":[{"title":"2017:E18 - Smash Bowl","description":"Achievement Hunter throws a bowling ball at a trampoline. What else is there to say?","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-smash-bowl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72938293-5f5a-4d4b-89f0-43e0c59a9ed1/sm/3014926-1509472494477-btsthumb.jpg","duration":465,"publication_date":"2017-11-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-the-tomb-of-horrors-chapter-3-a-tomb-with-a-view","changefreq":"weekly","video":[{"title":"2017:E37 - The Tomb of Horrors Chapter 3: A Tomb With A View","description":"The party continues to find a dearth of warm and friendly vibes in the Tomb of Horrors.\n\n\n\n\n\n\n\n\n\n\n\n\n\nSponsored by Blue Apron (http://cook.ba/2A33okW) and MVMT (http://bit.ly/2A4L9vl)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-the-tomb-of-horrors-chapter-3-a-tomb-with-a-view","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/947ad31a-d5df-467b-a8ff-36d3d15b722e/sm/2369885-1509486859651-HH37_Thumb.jpg","duration":7266,"publication_date":"2017-11-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-p-u-b-g-git-gud-4-the-g-stands-for-good","changefreq":"weekly","video":[{"title":"2017:E315 - PUBG: Git Gud #4 - The G Stands for \"Good\"","description":"Michael, Ryan, Jeremy, and Geoff are heading back to school in their latest gittin' gud outing in PUBG. How could that go wrong?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-p-u-b-g-git-gud-4-the-g-stands-for-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d9f77fb-68f8-45bd-a03c-e33c71fd5c9b/sm/3014926-1509465256875-LPGitGudPUBG4.png","duration":2738,"publication_date":"2017-11-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-shaking-off-the-rust-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E314 - Rainbow Six: Siege - Shaking Off The Rust - AH Live Stream","description":"Special thanks to Brooklinen for sponsoring today's stream. You can get $20 off and free shipping when using promo code [ahlivestream] at http://www.brooklinen.com. The crew breaches their way back into Rainbow Six: Siege with Terrorist Hunt and some adrenaline filled PVP.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-shaking-off-the-rust-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67a6bfd8-a853-4839-92e5-7698f8d3d391/sm/3014926-1509401382218-Stream_Thumbs.jpg","duration":2190,"publication_date":"2017-10-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-spooky-s-jump-scare-mansion-hd-it-took-so-long-part-2-of-2","changefreq":"weekly","video":[{"title":"2017:E21 - Spooky's Jump Scare Mansion HD - It Took So Long - (Part 2 of 2)","description":"Michael and Gavin are now 700 rooms in and still struggle to find out when Spooky's Jump Scare Mansion becomes a game.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-spooky-s-jump-scare-mansion-hd-it-took-so-long-part-2-of-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cffd58c-66fe-4ea1-815b-eaf55043fc74/sm/3014926-1509132443602-PPJumpscarePART2.png","duration":2356,"publication_date":"2017-10-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-deceit","changefreq":"weekly","video":[{"title":"2017:E312 - Deceit","description":"Six boys enter the woods, but two are ready to become monsters and kill the rest. Achievement Hunter practice their lying skills in Deceit.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-deceit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c421d8f2-7129-4ec3-99aa-c5e1704c9699/sm/3014926-1509053286344-LP_DECEIT_THUMB.jpg","duration":2576,"publication_date":"2017-10-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-spooky-s-jump-scare-mansion-hd-attack-of-the-goobacks-part-1-of-2","changefreq":"weekly","video":[{"title":"2017:E20 - Spooky's Jump Scare Mansion HD - Attack of the Goobacks - (Part 1 of 2)","description":"The Play Pals are trapped in a mansion full of monsters and cute jump scare ice cream as they traverse through Spooky's Jump Scare Mansion.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-spooky-s-jump-scare-mansion-hd-attack-of-the-goobacks-part-1-of-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43015a7e-4390-4777-a564-6226e8729bf2/sm/3014926-1509131742689-PPJumpscarePART1WithLogo.png","duration":2588,"publication_date":"2017-10-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-blinking-light-ahwu-for-october-30-th-2017-393","changefreq":"weekly","video":[{"title":"2017:E44 - The Blinking Light - AHWU for October 30th, 2017 (#393)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\n\n\n\nThe Xbox 360 had ridiculous flashing lights caused by the red ring of death. Jeremy's Xbox One is flashing because of a bowling ball mishap.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-blinking-light-ahwu-for-october-30-th-2017-393","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b059372-0f25-4ab9-8d92-a120f1c8f813/sm/3014926-1509052533951-ahwuthumb_1.jpg","duration":716,"publication_date":"2017-10-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-100-g4goj4","changefreq":"weekly","video":[{"title":"2017:E41 - The Most Dangerous Episode - Last Call #100","description":"The AH Crew stand up to talk about what just happened, the set, and more on this week's Last Call! And for a behind the scenes moment, check out what Gavin shot here: http://bit.ly/2xAywXu","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-100-g4goj4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df81e6ad-3178-4db7-8181-b370903b1f64/sm/3014926-1509143592969-off100psthumb.jpg","duration":956,"publication_date":"2017-10-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-slasher-3-spooky-edition","changefreq":"weekly","video":[{"title":"2017:E313 - GTA V - Slasher 3: Spooky Edition","description":"The slasher game mode in GTA Online returns for spooky scary Halloween.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-slasher-3-spooky-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dabf43e-fdc2-4e75-9c0e-01f6ac7f62cc/sm/3014926-1509127804114-ThumbGTAvSLASHER.jpg","duration":2545,"publication_date":"2017-10-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-100-geoh5h","changefreq":"weekly","video":[{"title":"2017:E100 - The Dumpster Fire - Off Topic #100","description":"The AH Crew sit down to talk about 100 episodes, drunk Gavin and Jack, fire, and more on this week's Off Topic!\n\nThis episode originally aired October 27, 2017 and is sponsored by Blue Apron (http://cook.ba/2zVgnF5), Bombas (http://bit.ly/2h8kHbQ), and MVMT (http://bit.ly/2w7sDQh)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-100-geoh5h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac00eb4a-0f4d-426e-a26f-b99fea94cb72/sm/3014926-1509143899332-off100thumb1.jpg","duration":7300,"publication_date":"2017-10-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-wolfenstein-i-i-the-new-colossus","changefreq":"weekly","video":[{"title":"2017:E72 - Wolfenstein II: The New Colossus","description":"Achievement Hunter got their hands on Wolfenstein II: The New Colossus a little early and now they're ready for some over-the-top violence.\n\nThe boys take a spin with B.J. \"Terror Billy\" Blazkowicz, shooting, incinerating, and cutting the legs off of some people whose political ideologies are radically different from their own.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-wolfenstein-i-i-the-new-colossus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a69bfd91-2aea-4fed-a1e7-79f2867c0d74/sm/3014926-1509058634325-Wolfenstein2Thumbv001.png","duration":4649,"publication_date":"2017-10-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-infinite-minigolf-halloween-mansion-5","changefreq":"weekly","video":[{"title":"2017:E308 - Fore Honor - Infinite Minigolf - Halloween Mansion (#5)","description":"What what, in the putt? Infinite Minigolf returns with the super spooky Halloween Mansion map.\n\n\n\n\n\nJoin our country club and buy the Fore Honor shirt here.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-infinite-minigolf-halloween-mansion-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fd341f3-0039-474b-b5f3-735aa43f9d29/sm/3014926-1508793227854-InfMiniGolfThumb5.jpg","duration":1801,"publication_date":"2017-10-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-by-daylight-with-jacob-batalon-spider-man-homecoming","changefreq":"weekly","video":[{"title":"2017:E311 - Dead by Daylight with Jacob Batalon (Spider-Man: Homecoming)","description":"Ryan, Michael, Jack, Jeremy, and Geoff play a friendly game of Dead by Daylight with Jacob Batalon from Spider-Man: Homecoming and RT upcoming film, Bloodfest.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-by-daylight-with-jacob-batalon-spider-man-homecoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4426f59-5bda-46b4-9040-bcb94848c512/sm/3014926-1509052315303-LP_DBD-wJacob_v4.png","duration":2588,"publication_date":"2017-10-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-geoff-kills-mike","changefreq":"weekly","video":[{"title":"2017:E16 - Geoff Kills Mike","description":"Geoff faces off against a Wendigo by not facing off at all. In fact, he doesn't do a single thing!\n\nAnimated audio from: https://youtu.be/E9vMRlUpKmc?list=PL1cXh4tWqmsHbZz6e_TzaAlH-PAY8iQRxAnimated by Shaun Cunningham","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-geoff-kills-mike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed11964b-0b72-455b-9488-093663c3da29/sm/3014926-1508872326624-AH_Animated_Thumbnail.jpg","duration":137,"publication_date":"2017-10-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-283-sky-factory-part-24","changefreq":"weekly","video":[{"title":"2017:E310 - Minecraft - Episode 283 - Sky Factory Part 24","description":"Achievement Hunter gets fight-y in the Sky Factory, ready to beat down the Wither and the Ender Dragon and steal their souls! || Feed your desire for Let's Play merch: http://bit.ly/2xaEL3O\n\n\n\nIn this episode, Gavin learns to control the spectre of death, Geoff names his chicken babies, Michael prepares for Gaia's coming, Jack convinces the gang to stab some bad guys, Jeremy starts a fancy soul collection, and Ryan deals with a very glitchy computer.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-283-sky-factory-part-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46167c31-29bf-4e1d-b0f0-6154eb3fbbe3/sm/3014926-1508966670001-SkyFac24Thumb.jpg","duration":4214,"publication_date":"2017-10-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gtav-murder-woods","changefreq":"weekly","video":[{"title":"2017:E41 - GTAV - Murder Woods","description":"The Fake AH Crew run for their lives as murder-brother duo Jason and Shmason Vorhees try to kill them in the Murder Woods.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gtav-murder-woods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebd56905-8e76-4e78-9014-884016e8e448/sm/3014926-1508774882803-TTD_GTA_5_MURDER_WOODS.jpg","duration":1312,"publication_date":"2017-10-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-p-u-b-g-git-gud-3-a-pocketful-of-scopes","changefreq":"weekly","video":[{"title":"2017:E307 - PUBG: Git Gud #3 - A Pocketful of Scopes","description":"Michael, Ryan, Jeremy, and Geoff continue to hone their skills in PUBG. The quest to git gud continues.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-p-u-b-g-git-gud-3-a-pocketful-of-scopes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c343aa45-dabf-495e-97fe-d6fe82c6585b/sm/3014926-1508778842690-LP_GitGud_PUBG_3.jpg","duration":2627,"publication_date":"2017-10-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-middle-earth-shadow-of-war","changefreq":"weekly","video":[{"title":"2017:E71 - Middle Earth: Shadow of War","description":"The gents are headed back to Middle Earth as the perfect-haired duo: Talion and Celebrimbor. Callabrambum? The spooky bright lord guy.\n\n\n\nGet yourself some of that sweet Achievement Hunter merch here.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-middle-earth-shadow-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0d4c145-6806-4abd-8618-7ae822b9802b/sm/3014926-1508773411577-LWSHadowOfWar_Thumb_v001.png","duration":3426,"publication_date":"2017-10-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands-pvp-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E309 - Ghost Recon: Wildlands - PVP - AH Live Stream","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get your first month free! Ryan, Jeremy, Jack, and Alfredo form an elite task force to take on Ghost Recon's new PVP update.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands-pvp-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0515b656-6225-40b4-8249-9d9443e57d33/sm/3014926-1508794465714-Stream_Thumbs.jpg","duration":1980,"publication_date":"2017-10-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-cuphead","changefreq":"weekly","video":[{"title":"2017:E19 - Cuphead ","description":"Michael struggles between saving and also killing Gavin while fighting foes in Cuphead. To get some RT merch, click here: http://bit.ly/2l2u3Lo","player_loc":"https://roosterteeth.com/embed/play-pals-2017-cuphead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50179df6-fa70-4b7a-bfaf-c65b521f21bc/sm/3014926-1508545389298-PP_Cuphead_THUMB5.png","duration":3224,"publication_date":"2017-10-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-trivial-pursuit-the-power-of-oprah-part-12","changefreq":"weekly","video":[{"title":"2017:E306 - Trivial Pursuit - The Power of Oprah (Part 12)","description":"You get a let's play! And you get a let's play! Achievement Hunter is back for a couple of rounds of Trivial Pursuit Live.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-trivial-pursuit-the-power-of-oprah-part-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a972ac8-ecbe-4727-be88-ce3cede4c184/sm/3014926-1508538525113-LP_TrivialPursuit_Oprah.png","duration":2980,"publication_date":"2017-10-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-real-plumbus-ahwu-for-october-23-rd-2017","changefreq":"weekly","video":[{"title":"2017:E43 - The Real Plumbus - AHWU for October 23rd, 2017","description":"Special thanks to Pro Flowers for sponsoring today's episode. You can get 20% off summer roses or any other bouquet of $29 or more by going to http://ProFlowers.com, and using code “JackandGeoff” at checkout.\n\nRick and Morty has a special place in good ol' Jack's heart. He may have received a real life plumbus.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-real-plumbus-ahwu-for-october-23-rd-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78ca8617-f1c6-45f3-9b12-03f0d7d301df/sm/3014926-1508521162810-ahwu.jpg","duration":603,"publication_date":"2017-10-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-transform-races","changefreq":"weekly","video":[{"title":"2017:E304 - GTA V - Transform Races","description":"In Transform Races, players mix race types as they switch between land, sea, and air tracks, using Supers and Off-Roads, Boats, Planes, and Helicopters.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-transform-races","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d630940-fe3c-403f-8d1c-f96f0ba0cc89/sm/3014926-1508429438188-Thumb_GTA_V_Transformer_01.jpg","duration":2697,"publication_date":"2017-10-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-99-voeihg","changefreq":"weekly","video":[{"title":"2017:E99 - The Boy with the Golden Hands - Off Topic #99","description":"The AH Crew sit down with James Buckley to talk about RTX London, the Destiny 2 Raid arguments, pets, and more on this week's Off Topic!\n\nThis episode originally aired October 20, 2017.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-99-voeihg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a967ccd-7357-4462-acda-bfcdc63dcbcc/sm/3014926-1508526100926-OFF99-THUMB.jpg","duration":5588,"publication_date":"2017-10-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-night-7-6","changefreq":"weekly","video":[{"title":"2017:E305 - 7 Days to Die: Night 7... Everyone Panic (#6)","description":"As night 7 fast approaches, our survivors are preparing for he red moon and their first zombie horde. In this episode: Ryan investigates airdrops, Michael makes finishing touches, Jack finds his stones, Jeremy goes hunting, Geoff furiously makes spikes, and Gavin creates art.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-night-7-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/949f3659-ef2d-4ad4-b13c-30b1f670197c/sm/3014926-1508442479655-AH_7Days16_Ep6_v1.png","duration":3081,"publication_date":"2017-10-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-leviathan-raid-emperor-calus-finale","changefreq":"weekly","video":[{"title":"2017:E371 - Destiny 2: Leviathan Raid - Emperor Calus (Finale)","description":"In the finale to Destiny 2's Leviathan Raid, tensions rise and friendships fall. Will our heroes defeat Calus, or kill each other instead?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-leviathan-raid-emperor-calus-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7b8e255-2c3f-40a8-99b5-abd12455c277/sm/3014926-1508267226071-EmperorCalus_Thumb2.jpg","duration":2562,"publication_date":"2017-10-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-scares-2017","changefreq":"weekly","video":[{"title":"2017:E25 - Best of Achievement Hunter Scares - Fright Night #2","description":"Achievement Hunter just can't resist putting themselves though some good old horror games for our amusement. Happy Halloween!MORE Spooky Scares: https://www.youtube.com/watch?v=SIFRW2ltqOE","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-scares-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/620e8d4b-e05e-46d7-b1fa-776fb8c71e51/sm/3014926-1508259864010-Best_of_AH_Scares_2017_Thumbnail_Final_5-1.jpg","duration":740,"publication_date":"2017-10-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-36-post-show","changefreq":"weekly","video":[{"title":"2017:E16 - The Tomb of Horrors - Chapter 2: Post Show","description":"The gang talks about the Tomb of Horrors and check out some sweet fan art.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-36-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d1287d5-07d3-4e1c-9688-e74a01966d52/sm/2369885-1508363236461-HHep36PS.jpg","duration":566,"publication_date":"2017-10-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-282-sky-factory-part-23-2","changefreq":"weekly","video":[{"title":"2017:E304 - Minecraft - Episode 282 - Sky Factory Part 23","description":"Achievement Hunter continues making their Sky Factory the best factory, just with a few bathroom mishaps along the way.\n\nOn today's episode, Simple Geoff has some accidents and then has an accident, Jack makes some portals (and carrot juice), Ryan hunts for Wither skulls, Michael is inches away from destruction, Magneto Lindsay accidentally causes mischief, and Jeremy hunts for souls.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-282-sky-factory-part-23-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/702b97fd-c11c-42be-b95f-7e4459bd8393/sm/3014926-1508364204149-SkyFac23_Thumb.jpg","duration":3988,"publication_date":"2017-10-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-call-of-duty-infinite-warfare-gesture-warfare","changefreq":"weekly","video":[{"title":"2017:E370 - Call of Duty: Infinite Warfare - Gesture Warfare","description":"Geoff, Jack, Ryan, and Jeremy substitute their weapons for explosive fist bumps and finger guns in Call of Duty's new multiplayer mode, Gesture Warfare.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-call-of-duty-infinite-warfare-gesture-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e8847a4-3230-4299-8d69-704e84c1c895/sm/3014926-1508254968294-LP_CoD_GestureWarfare.png","duration":691,"publication_date":"2017-10-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-there-are-doors","changefreq":"weekly","video":[{"title":"2017:E36 - The Tomb of Horrors - Chapter 2: There Are Doors","description":"Bor Ealis discovers the joy of cooking; Orma demonstrates her shot put skills; the party faces their most vexatious adversaries ever: doors. \n\nSponsored by Elderwood Academy (http://bit.ly/2xteAFz) and Mack Weldon (http://bit.ly/2kMs65c)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-there-are-doors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7f5aa7b-eb61-4c04-9477-cea5301d2f76/sm/2369885-1508300561062-HHep36.jpg","duration":8338,"publication_date":"2017-10-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-p-u-b-g-git-gud-2-not-as-gud-er","changefreq":"weekly","video":[{"title":"2017:E369 - PUBG: Git Gud #2 - Not as Gud-er?","description":"Michael, Ryan, Jeremy, and Geoff continue their quest to git gud in PlayerUnknown's Battlegrounds. This doesn't go quite as planned.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-p-u-b-g-git-gud-2-not-as-gud-er","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/338235b8-83aa-450b-ade9-8234700be243/sm/3014926-1508194248638-LP_GitGud_PUBG_2.png","duration":2151,"publication_date":"2017-10-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-south-park-the-fractured-but-whole","changefreq":"weekly","video":[{"title":"2017:E1 - South Park: The Fractured But Whole ","description":"Thanks to Ubisoft for sponsoring this video. To check out the game for yourself, click here: http://ubi.li/h34ut. Geoff, Ryan, and Jack toe the comedic line between politically incorrect and morally despicable in South Park: The Fractured But Whole.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-south-park-the-fractured-but-whole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bd2ea27-35a6-4490-a8ce-f910104885b7/sm/3014926-1508182386531-LW_SouthPark-FBW_v4.png","duration":2419,"publication_date":"2017-10-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-call-of-duty-infinite-warfare-zombies-ah-live-stream-2","changefreq":"weekly","video":[{"title":"2017:E368 - Call of Duty: Infinite Warfare - Zombies - AH Live Stream","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHLIVESTREAMThe Achievement Hunter crew defend themselves against an endless horde of zombies while trying to unlock the camp site's secrets.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-call-of-duty-infinite-warfare-zombies-ah-live-stream-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5b9927e-2561-4246-b82c-2275b9b08a38/sm/3014926-1508187472732-cod_zombies_thumb.jpg","duration":2891,"publication_date":"2017-10-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-sniper-elite-nazi-zombie-army-1","changefreq":"weekly","video":[{"title":"2017:E41 - Battle Buddies - Sniper Elite: Nazi Zombie Army (#1)","description":"The Battle Buddies must shut down the Hellmouth in Berlin where and army of Nazi zombies is being manufactured.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-sniper-elite-nazi-zombie-army-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee231bdb-2974-44b6-a4b5-c1c38ba7f94f/sm/3014926-1507916132880-BB_ZombiesNazis.jpg","duration":1073,"publication_date":"2017-10-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-leviathan-raid-royal-pools-3","changefreq":"weekly","video":[{"title":"2017:E366 - Destiny 2: Leviathan Raid - Royal Pools (#3)","description":"The Destiny 2 raid crew must complete the Royal Pools before facing Emperor Calus. Can our Guardians keep their feet dry and beat the bathers?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-leviathan-raid-royal-pools-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f572b95-1653-4f04-a8ed-f515c6283db7/sm/3014926-1507915112770-Destiny_Raid3_Thumb_v001.png","duration":1729,"publication_date":"2017-10-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-98-vieuhrv","changefreq":"weekly","video":[{"title":"2017:E39 - Not Our Mess - Last Call #98","description":"The AH Crew get in the hot tub to talk about Extra Life streams, new video games, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-98-vieuhrv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9fbb3fe-b166-4088-8798-7b134db9fb15/sm/3014926-1507930821742-OFF98_-_PS_THUMB.jpg","duration":878,"publication_date":"2017-10-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-edible-spray-paint-ahwu-for-october-16-th-2017-391","changefreq":"weekly","video":[{"title":"2017:E42 - Edible Spray Paint - AHWU for October 16th, 2017 (#391)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.\n\n\n\nEdible spray paint! Shiny and chrome. Does edible mean you should actually eat it? Maybe Trevor will see Valahlla sooner than we thought.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-edible-spray-paint-ahwu-for-october-16-th-2017-391","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d4a1b8d-bf9f-4ae9-a5df-af395582b081/sm/3014926-1507932481619-AHWU_thumb.jpg","duration":670,"publication_date":"2017-10-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-motor-wars","changefreq":"weekly","video":[{"title":"2017:E365 - GTA V - Motor Wars","description":"In GTA Online's PUBG-inspired battle royale mode, Achievement Hunter face off using old and new vehicles of mass destruction.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-motor-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7d95a2d-7c63-42f3-b6a4-cdbfaa82fd15/sm/3014926-1507914971514-MotorWars_Thumb.jpg","duration":2677,"publication_date":"2017-10-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-98-vhi34vb","changefreq":"weekly","video":[{"title":"2017:E98 - A Burnt Monstrosity - #98","description":"The AH Crew sit down to talk about RTX London, Stanger Things season 2, cooking with Ryan, and more on this week's Off Topic!\n\nThis episode originally aired October 13, 2017 and is sponsored by Beachbody On Demand (http://bit.ly/2wekldC) and Nature Box (http://bit.ly/2fDW6yW)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-98-vhi34vb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcff46b7-455e-4921-8f0a-a238094238ba/sm/3014926-1507933359058-OFF98_-_THUMB.jpg","duration":5719,"publication_date":"2017-10-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-cooking-with-greg-and-geoff","changefreq":"weekly","video":[{"title":"2017:E367 - Let's Play Reunion - Cooking with Greg and Geoff","description":"Greg and Geoff team up to make dinner for the Let's Play Family Reunion.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-cooking-with-greg-and-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa435a08-c2ac-4339-90fd-be56a9976a2a/sm/3014926-1507926753114-bbq_Thumb.jpg","duration":2666,"publication_date":"2017-10-14T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-infinite-minigolf-matt-s-crazy-customs-4","changefreq":"weekly","video":[{"title":"2017:E364 - Infinite Minigolf - Matt's Crazy Customs (#4)","description":"Trevor told Matt Bragg to create the most challenging Infinite Minigolf custom maps that he could. So he did.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-infinite-minigolf-matt-s-crazy-customs-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a53afab1-b3ca-429c-b4bc-bf2b2c1800b8/sm/3014926-1507831656402-InfMinigolfPart4.jpg","duration":2172,"publication_date":"2017-10-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-leviathan-raid-the-gauntlet-2","changefreq":"weekly","video":[{"title":"2017:E357 - Destiny 2: Leviathan Raid - The Gauntlet (#2)","description":"The Destiny 2 raid crew head deeper into the Leviathan. Calus's next task, The Gauntlet, is no easy feat. Will they prove themselves worthy?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-leviathan-raid-the-gauntlet-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba45e62b-df63-4b3b-b269-edb23e0e5629/sm/3014926-1507565725174-LP_DESTINY_2_RAID_PART_2_THUMB.jpg","duration":2134,"publication_date":"2017-10-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-assassin-s-creed-origins-the-crocodile-hunter","changefreq":"weekly","video":[{"title":"2017:E362 - Let's Watch - Assassin's Creed: Origins - The Crocodile Hunter","description":"Jeremy, Jack, and Geoff help out the Egyptian locals in Assassin's Creed: Origins by solving a murder, releasing a prisoner, and of course, hunting crocs.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-assassin-s-creed-origins-the-crocodile-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b642d1f6-dba4-4e8a-9a4f-d6aee8088b69/sm/3014926-1507673317669-LW_ACOrigins.png","duration":3392,"publication_date":"2017-10-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-jeremy-does-a-magic","changefreq":"weekly","video":[{"title":"2017:E15 - Jeremy Does A Magic","description":"Jeremy demonstrates his magic to Michael in the land of Sky Factory!\n\nAnimation audio from: \n\n\n\nhttps://www.youtube.com/watch?v=U8LSYPPwG0sAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-jeremy-does-a-magic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d132df4d-83e7-4f72-9a49-04fa74a6bb96/sm/3014926-1507736057411-JeremyMagic_Thumb.jpg","duration":148,"publication_date":"2017-10-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-280-sky-factory-part-22","changefreq":"weekly","video":[{"title":"2017:E363 - Minecraft - Episode 281 - Sky Factory Part 22","description":"Everyone is trying to figure out their next steps, but what do to first? Finish old projects, or start new ones?On today's episode, Jack fixes everything, Jeremy and Ryan go to the Nether for a chance at goodies, Michael ascends, Lindsay is funemployed, and simple Geoff is woke","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-280-sky-factory-part-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/341a2d41-8586-4579-a4b7-87d4f1550aef/sm/3014926-1507758547647-mc_thumb_1.jpg","duration":3985,"publication_date":"2017-10-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-golf-with-your-friends","changefreq":"weekly","video":[{"title":"2017:E359 - Let's Play Reunion - Golf With Your Friends","description":"Enjoy minigolf gameplay as Achievement Hunter and Funhaus share some funny and some rage-filled moments.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-golf-with-your-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46f1aae5-803e-46e7-9aea-0b528660fd11/sm/3014926-1507574303551-RT_AH_FH_GWYF.png","duration":3294,"publication_date":"2017-10-11T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-rocket-league","changefreq":"weekly","video":[{"title":"2017:E40 - GTA V - Rocket League","description":"Everyone's favorite vehicular soccer game, Rocket League has been re-imagined in the world of Grand Theft Auto. It's more or less the same idea, except with more sticky bombs.\n\nMap: http://rsg.ms/3e5acef","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-rocket-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f3b54aa-b468-460b-ac77-9d0742d2daf3/sm/3014926-1507588513448-TTD_GTA5_RocketLeague.png","duration":567,"publication_date":"2017-10-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-p-u-b-g-git-gud-1-too-gud-too-soon","changefreq":"weekly","video":[{"title":"2017:E361 - PUBG: Git Gud #1 - Too Gud Too Soon ","description":"Michael, Ryan, Jeremy, and Geoff start the first Git Gud episode in PlayerUnknown's Battlegrounds. The problem is they didn't start the bar low enough.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-p-u-b-g-git-gud-1-too-gud-too-soon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22f579b2-a668-4ce0-a94e-5c25d95932a3/sm/3014926-1507662592488-LP_GitGud_PUBG_v1.png","duration":1963,"publication_date":"2017-10-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-overwatch","changefreq":"weekly","video":[{"title":"2017:E358 - Let's Play Reunion - Overwatch","description":"Funhaus and Cow Cop get competetive in this intense series of Overwatch matches.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-overwatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f63b9dd7-71ee-47a4-8622-bcdc036df5c9/sm/3014926-1507573834015-RT_FH_CC_Overwatch.png","duration":5271,"publication_date":"2017-10-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-duck-season","changefreq":"weekly","video":[{"title":"2017:E15 - Duck Season","description":"Geoff attacks a dog and a bunch of ducks in this surreal throwback to the 80's NES classic, Duck Hunt.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-duck-season","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27b98753-b78e-4dce-9bc5-a0cb154d6572/sm/3014926-1507561076144-LP_DESTINY_2_RAID_PART_1_THUMB.jpg","duration":1256,"publication_date":"2017-10-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-p-l-a-y-e-r-u-n-k-n-o-w-n-s-battlegrounds-lightning-rounds","changefreq":"weekly","video":[{"title":"2017:E360 - PLAYERUNKNOWN'S Battlegrounds: Lightning Rounds","description":"Special thanks to Brooklinen for sponsoring today's stream. You can get $20 off and free shipping when using promo code [ahlivestream] at http://www.brooklinen.com. The crew drops straight into the most popular locations in PUBG for a chaotic high octane battle for survival.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-p-l-a-y-e-r-u-n-k-n-o-w-n-s-battlegrounds-lightning-rounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7a3e8ef-1d3f-41ea-b473-db2f6306ab26/sm/3014926-1507578523126-pubg_stream_thumb_101017.jpg","duration":2250,"publication_date":"2017-10-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-cuphead","changefreq":"weekly","video":[{"title":"2017:E356 - Let's Watch - Cuphead","description":"Geoff and Michael see how hard Cuphead really is. Watch to see how far Geoff can get.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-cuphead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6222f0d7-6e11-40a3-8399-a652aa146d60/sm/3014926-1507328395626-LW_Cuphead.png","duration":2846,"publication_date":"2017-10-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-leviathan-raid-the-pleasure-gardens","changefreq":"weekly","video":[{"title":"2017:E355 - Destiny 2: Leviathan Raid - The Pleasure Gardens (#1)","description":"The Destiny 2 raid begins! Tensions mount right out of the gate as our heroes enter the Leviathan to search for and defeat Calus.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-leviathan-raid-the-pleasure-gardens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59d8e1c9-79df-4f64-9d06-64d100e20975/sm/3014926-1507237352949-LP_DESTINY_2_RAID_PART_1_THUMB.jpg","duration":2229,"publication_date":"2017-10-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-surprise-sound-grenade-ahwu-for-october-9-th-2017-390","changefreq":"weekly","video":[{"title":"2017:E41 - Surprise Sound Grenade - AHWU for October 9th, 2017 (#390)","description":"Thanks to Beachbody On Demand for sponsoring this video. To get a free trial membership, text [AHWU] to 303030, and get full access to the platform for free.\n\nOf all grenades, sound grenades are the worst! But this isn't the first time Michael has dealt with one, oh no.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-surprise-sound-grenade-ahwu-for-october-9-th-2017-390","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6493265-2b34-4acc-b85b-99a59acf9034/sm/3014926-1507323359020-ahwu_1.jpg","duration":905,"publication_date":"2017-10-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-97-h984hv","changefreq":"weekly","video":[{"title":"2017:E38 - The Hot Tub Post Show - Last Call #97","description":"The AH Crew get in the hot tub to talk about the Let’s Play Reunion, making announcements, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-97-h984hv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4ce3f07-f591-4229-91b5-624228d9b738/sm/3014926-1507313484888-OFF97_-_PS_-_THUMB.jpg","duration":652,"publication_date":"2017-10-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-geoff-bag-2","changefreq":"weekly","video":[{"title":"2017:E354 - GTA V - Geoff Bag 2","description":"Geoff Bag returns, featuring a giant billiards derby, motorcycle racing insanity, and Last Team Standing on a floating Yoshi platform.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-geoff-bag-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31335829-2796-4966-942b-c280b377483a/sm/3014926-1507237141840-GeoffBag_Thumb_part2.jpg","duration":1991,"publication_date":"2017-10-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-97-vi3kvnbkr4","changefreq":"weekly","video":[{"title":"2017:E97 - The View - Off Topic #97","description":"The AH Crew sit down to talk about the Let’s Play Reunion, drunk Jack, pizza, and more on this week's Off Topic!\n\nThis episode originally aired October 6, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-97-vi3kvnbkr4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/615cb85a-cac8-4dc2-ab37-b9b99855aac3/sm/3014926-1507314276163-OFF97_-_THUMB.jpg","duration":5054,"publication_date":"2017-10-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-by-daylight-leatherface","changefreq":"weekly","video":[{"title":"2017:E351 - Dead by Daylight: Leatherface","description":"Our survivors will need a lot of fixin' after getting mangled by Dead by Daylight's newest DLC killer: Leatherface.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-by-daylight-leatherface","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b1be0b3-0002-4180-9b45-2f8ac28fd3fc/sm/3014926-1507141518058-LP_Dbd_Halloween_THUMB3.png","duration":1697,"publication_date":"2017-10-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-gmod-murder","changefreq":"weekly","video":[{"title":"2017:E347 - Let's Play Reunion - Gmod: Murder","description":"Kinda Funny and Achievement Hunter join forces for an eight person game of Gmod: Murder.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-gmod-murder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/cc9ddc8b-5ff6-42ec-95c0-fa54cd306155.jpg/sm/gmod_thumb_FINAL.jpg","duration":2438,"publication_date":"2017-10-06T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-lime-throwers","changefreq":"weekly","video":[{"title":"2017:E348 - Let's Play Reunion - Lime Throwers","description":"The Let's Play Reunion gang found a lime tree at the house, and decided their best use might be indoor pitching practice.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-lime-throwers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9007c8c0-91c1-4232-a341-0cd34645c4c8.jpg/sm/lt_thumb.jpg","duration":1350,"publication_date":"2017-10-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-guns-gravity-and-boy-bands-5","changefreq":"weekly","video":[{"title":"2017:E353 - 7 Days to Die: Guns, Gravity and Boy Bands (#5) ","description":"Our favorite wasteland survivors start day 6 with the intention of fortifying the base, which means everyone gets distracted.\n\nIn this episode: Jack continues his basement, Jeremy becomes first aid certified, Geoff discovers the \"smelding\" pot, Ryan unearths an alarming sound, and Michael and Gavin have a disagreement.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-guns-gravity-and-boy-bands-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22e77566-3e79-4431-9bd4-56ae124cbcd5/sm/3014926-1507224881872-AH_7Days16_Ep5_THUMB3.png","duration":2647,"publication_date":"2017-10-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-player-unknown-s-battlegrounds-zombies","changefreq":"weekly","video":[{"title":"2017:E350 - Let's Play Reunion - PlayerUnknown's Battlegrounds: Zombies","description":"The Let's Play Family fight some zombie fans in this special PUBG stream featuring Achievement Hunter, Funhaus, Cow Chop, Criken, and Cib from Sugar Pine 7.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-player-unknown-s-battlegrounds-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c774fd74-744f-4afd-b4d8-6b074b106fb7/sm/3014926-1507135598215-pubgzombies_1.jpg","duration":3274,"publication_date":"2017-10-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-player-unknown-s-battlegrounds-family-feud","changefreq":"weekly","video":[{"title":"2017:E346 - Let's Play Reunion - PlayerUnknown's Battlegrounds: Family Feud","description":"Achievement Hunter plays PUBG with Kinda Funny, with Criken and Meg Turney getting pulled into the action.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-player-unknown-s-battlegrounds-family-feud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4892b7d8-68b4-491f-acd1-e770eb54b300/sm/3014926-1507063744633-pubg_thumb.jpg","duration":5102,"publication_date":"2017-10-05T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-2-back-from-the-dead-finale","changefreq":"weekly","video":[{"title":"2017:E349 - Let's Watch - Crash 2 - Back from the Dead (Finale) ","description":"Jeremy \"Crash Bandicoot\" Dooley (plus a little help from Michael) has risen from the ashes to stop Dr. Neo Cortex once and for all...again.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-2-back-from-the-dead-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfab64cc-c7a9-4975-8033-24f26063920a/sm/1601067-1507845451035-lwcrash2p5.jpg","duration":2993,"publication_date":"2017-10-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-september-2017","changefreq":"weekly","video":[{"title":"2017:E40 - Best of Achievement Hunter - September 2017","description":"This is the best of Achievement Hunter for the month of September 2017, where monumental trees are devoured in Minecraft Skyfactory, footballs are fumbled in Madden 18, portals fly/lead to never ending doom in Mari0, flammable wooden dive bars are set aflame in Far Cry 5, and team Nice Dynamite combine into a single, unnatural creature in Human Fall Flat. Watch and enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-september-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cd340b6-b62d-4dcd-bc56-9ce91a75d88e/sm/1601067-1507845607916-boahsept.jpg","duration":874,"publication_date":"2017-10-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-35-post-show","changefreq":"weekly","video":[{"title":"2017:E15 - The Tomb of Horrors - Chapter 1: Post Show","description":"It's Akshay! The heroes talk about Volume 2 and its newish players .","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-35-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0077106-bd47-4b4f-aa6d-2f15976a25a9/sm/3014926-1507130842739-HHs3_ep35_PS_Thumb.jpg","duration":608,"publication_date":"2017-10-05T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-pool-party-q-a","changefreq":"weekly","video":[{"title":"2017:E352 - Let's Play Reunion - Pool Party Q&A","description":"After a hard day playing video games, the Let's Play Family kick back and relax in a cliff-side swimming pool, followed by a Q&A Session.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-pool-party-q-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0b462e6a-9b29-434a-abd4-925bddde9386.jpg/sm/pool_thumb.jpg","duration":1824,"publication_date":"2017-10-05T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-280-dinosaur-island","changefreq":"weekly","video":[{"title":"2017:E344 - Minecraft - Episode 280 - Dinosaur Island","description":"The gang's taking a break from Sky Factory to check out the mysterious Dino Island. They're riding raptors and ruining the boat economy.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-280-dinosaur-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c10b239b-f3c4-4186-845e-3310cf61ace0.jpg/sm/minecraft_thumb.jpg","duration":2762,"publication_date":"2017-10-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-reunion-board-games","changefreq":"weekly","video":[{"title":"2017:E345 - Let's Play Reunion - Board Games","description":"The Let's Play Family bond over some wholesome games of Uno and Trivial Pursuit.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-reunion-board-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecddb525-430c-4ed3-b6ac-10a185eb1b38/sm/3014926-1507060928785-board_thumb.jpg","duration":4046,"publication_date":"2017-10-04T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-drag-race","changefreq":"weekly","video":[{"title":"2017:E39 - Halo 5 - Drag Race","description":"Achievement Hunter and Lannan \"LazarBeam\" Eacott feel the need for speed in this custom Halo 5 course. Three teams of two hop of a mongoose, blaze down the track, and shoot at their opponents using whatever Halo weapons they're given. Should be simple, right?\n\nMap: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=OPG%20StingRay17#ugc_halo-5-guardians_xbox-one_mapvariant_OPG%20StingRay17_bf8b6aca-1bf0-4a0f-b264-1c8c2b3cc75b\n\n\n\n\n\n\n\nGame Type: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=OPG%20StingRay17#ugc_halo-5-guardians_xbox-one_gamevariant_OPG%20StingRay17_5b51dcf5-4e86-4fb0-99b2-f56a69c6a604","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-drag-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbc3b172-2cf6-4c44-b8fa-3f11d5ab9fcd/sm/3014926-1507044172787-TTD_Halo5_DragRace.png","duration":1403,"publication_date":"2017-10-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-loiukhh-kl-lk-kkkk","changefreq":"weekly","video":[{"title":"2017:E35 - The Tomb of Horrors - Chapter 1: Old Dog, New Tricks","description":"A band of misfit adventurers embark on a quest to find a legendary tomb. Sponsored by Blue Apron (http://cook.ba/2jeJr22) and MVMT (http://bit.ly/2ypdwHb)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-loiukhh-kl-lk-kkkk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd71c38f-fb7c-4a8d-9b33-7f97c83461dc/sm/1601067-1507232620959-hh35.jpg","duration":8427,"publication_date":"2017-10-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-finale-got-gud","changefreq":"weekly","video":[{"title":"2017:E343 - Rainbow Six Siege: Git Gud Finale - Got Gud","description":"It's been a long journey, but it's time to see if the boys got gud. For added gudness, they're playing Rainbow 6 Siege's ranked mode.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-finale-got-gud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/3c69f58c-eca4-4aa8-a781-1070a7603598.jpg/sm/GIT_GUD_10.jpg","duration":1433,"publication_date":"2017-10-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-2-not-the-bees-part-4","changefreq":"weekly","video":[{"title":"2017:E341 - Let's Watch - Crash 2 - Not the Bees (Part 4)","description":"Like a bad Nick Cage flick, the bees are attacking Jeremy and Michael in Crash Bandicoot 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-2-not-the-bees-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a1638c6-34df-412f-9145-5c6de2a1c479/sm/3014926-1506972425264-LW_Crash2_PART4.png","duration":3754,"publication_date":"2017-10-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-total-war-warhammer-2","changefreq":"weekly","video":[{"title":"2017:E340 - Let's Watch - Total War: Warhammer 2","description":"Thanks to Sega Total War: Warhammer for partnering with us on this video. You can check the game out at the link below.\n\nhttp://bit.ly/2yjqshC\n\n\n\n\n\nRyan beats on some rat people strategically and in real time in Creative Assembly's newest real-time strategy game, Total War: Warhammer II.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-total-war-warhammer-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93e905f9-cc67-41c7-ae96-8cd2c6b1f100/sm/3014926-1506971820147-WARHAMMER.jpg","duration":2117,"publication_date":"2017-10-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-fortnite-battle-royale-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E342 - Fortnite: Battle Royale - AH Live Stream","description":"Special thanks to Leesa for sponsoring today's Live Stream. Go to http://www.leesa.com/AH and use code \"ACHIEVEMENTHUNTER\" for an extra $100 off! The gang takes a shot at Fortnite's latest update which introduces a new Battle Royale style gamemode.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-fortnite-battle-royale-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db4c49aa-04ab-4f05-bf8f-861ddb97047f/sm/3014926-1506975433143-fortnite_battleroyale_thumb_100317.jpg","duration":2361,"publication_date":"2017-10-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-snipperclips-2","changefreq":"weekly","video":[{"title":"2017:E18 - Snipperclips #2","description":"In our latest Play Pals, Michael and Gavin channel their cooperative platforming skills to take on obstacle courses in Snipperclips!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-snipperclips-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5a9e6f08-c0be-4ce3-94c2-b7cd760655cd.jpg/sm/playpals_snipperclips2_thumb.jpg","duration":1861,"publication_date":"2017-10-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-friday-the-13-th-must-kill-jason-3","changefreq":"weekly","video":[{"title":"2017:E339 - Friday the 13th: Must Kill Jason (#3)","description":"Moments of terror and fun abound as Jason Voorhees stalks his prey in our third installment of Friday the 13th.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-friday-the-13-th-must-kill-jason-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0edb8594-d26f-41db-9b24-0d4645092d2e.jpg/sm/Friday13th_no3.jpg","duration":2170,"publication_date":"2017-10-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-peter-piper-ahwu-for-october-2-nd-2017-389","changefreq":"weekly","video":[{"title":"2017:E40 - The Peter Piper - AHWU for October 2nd, 2017 (#389)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\n\n\n\nIt's time for AHWU in the spookiest month of the year! And what's spookier than bite-sized dick whistles?","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-peter-piper-ahwu-for-october-2-nd-2017-389","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0743fa74-36c2-4271-aab6-523c7958add0/sm/3014926-1506707058700-ahwu1_3.jpg","duration":754,"publication_date":"2017-10-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-96-vovrb4h","changefreq":"weekly","video":[{"title":"2017:E37 - The Ol' Russian Space Program - Last Call #96","description":"The AH Crew stand up to talk about explosives, fart bags, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-96-vovrb4h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cf9f456-1661-43fe-9f36-72ed15f21235/sm/3014926-1506724909450-OFF96_-_PS_-_THUMB.jpg","duration":806,"publication_date":"2017-10-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-cunning-stunts-feat-robbie-kay","changefreq":"weekly","video":[{"title":"2017:E338 - GTA V - Cunning Stunts feat. Robbie Kay","description":"British actor Robbie Kay joins Achievement Hunter for a special playlist of Cunning Stunts races.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-cunning-stunts-feat-robbie-kay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/efe4c0f6-8aec-4b58-b7f9-0dda5ca15319.jpg/sm/GTA_V_RacingWithRobbieKay.jpg","duration":2773,"publication_date":"2017-10-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-96-nveibolr","changefreq":"weekly","video":[{"title":"2017:E96 - Dinky Arms - Off Topic #96","description":"The AH Crew sit down to talk about Ryan’s flight problems, the Let’s Play Reunion, the AH puzzle, and more on this week's Off Topic!\n\nThis episode originally aired September 29, 2017 and is sponsored by MVMT (http://bit.ly/2w7sDQh) and NatureBox (http://bit.ly/2fDW6yW)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-96-nveibolr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ab2975f-9d7c-4402-92f5-2403adea2057/sm/1601067-1507324870887-0t96.jpg","duration":5400,"publication_date":"2017-09-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-2017-infinite-minigolf-santa-s-rough-ride-3","changefreq":"weekly","video":[{"title":"2017:E340 - Infinite Minigolf - Santa's Rough Ride (#3)","description":"The boys act both naughty and nice as they putt around Santa's Factory in our third installment of Infinite Minigolf.","player_loc":"https://roosterteeth.com/embed/let-s-play-2017-infinite-minigolf-santa-s-rough-ride-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/e83a45d5-8020-484b-bb37-6b72ab44b23f.jpg/sm/InfMiniGolf_Part3_Christmas_Thumb_A.jpg","duration":2305,"publication_date":"2017-09-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-madden-18-with-lazar-beam","changefreq":"weekly","video":[{"title":"2017:E337 - Madden 18 with Lazar Beam","description":"The boys play a bit of Madden with their special friend, Lannan. It's the Cowboys vs the Patriots in this friendly game of football.\n\nAlso, please forgive the Australian. Lazar Beam comes from an island of convicts. He doesn't fully understand that the Patriots are the bad guys.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-madden-18-with-lazar-beam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbd9a01b-4aad-4b33-b8e5-6c9d446c054c/sm/3014926-1506629041408-InfMiniGolf_Part3_Christmas_Thumb_A.jpg","duration":3263,"publication_date":"2017-09-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-ryan-the-fish-n-chips-man","changefreq":"weekly","video":[{"title":"2017:E14 - Ryan the Fish 'n Chips Man","description":"Ryan gets angry over onion soup as Geoff discovers the difficulties of plating a meal.\n\nAnimation audio from: Let's Play - Overcooked Part 3\n\n\n\n\n\nAnimation by Shaun Cunningham","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-ryan-the-fish-n-chips-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d47899fb-1ed2-4c63-abda-b1ec90f22bec/sm/3014926-1506616441392-Ryan_the_Fish_Thumb.jpg","duration":108,"publication_date":"2017-09-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-2-jeremy-forgets-everything-part-3","changefreq":"weekly","video":[{"title":"2017:E334 - Let's Watch - Crash 2 - Jeremy Forgets Everything (Part 3) ","description":"Michael and Jeremy return to Crash Bandicoot 2, but Jeremy's jumps are a bit rusty. He needs to git gud fast if he wants to see Tiny Tiger.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-2-jeremy-forgets-everything-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3c654f2-350c-47f0-82dd-50ea75db1aa5/sm/3014926-1506466564551-LW_Crash2_PART3.png","duration":2852,"publication_date":"2017-09-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-279-sky-factory-part-21","changefreq":"weekly","video":[{"title":"2017:E335 - Minecraft - Episode 279 - Sky Factory Part 21","description":"LP Family Reunion brought to you by the RT Store: http://bit.ly/LP-LPFR\n\n\n\nThe gang continues building the best Sky Factory they possibly can, then come together to show each other all their hard work.\n\n\n\n\n\n\n\nOn today's episode, Jack goes crazy for kolaches, Jeremy expands the blood altar, Michael fills Jack's pockets with bacon, Ryan builds the new new new mob killer, Geoff makes a dumb cluckin' mistake, and Gavin makes a really dense brick.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-279-sky-factory-part-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc9ca331-59b3-46b7-a99c-666b17e61d4e/sm/3014926-1506578378113-SkyFac21_Thumb.jpg","duration":4006,"publication_date":"2017-09-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-39","changefreq":"weekly","video":[{"title":"2017:E39 - Mariel Locks Herself Out - #39","description":"Join Barbara Dunkelman, Josh Flanagan, Lindsay Jones, and Mariel Salcedo as they do a round of Cupidity, discuss college and overnighters, and answer a question about erections! This episode is brought to you by Texture (http://bit.ly/2eHhu5O).","player_loc":"https://roosterteeth.com/embed/always-open-2017-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a17db932-926e-4122-b408-f3f9a8321d40/sm/2013912-1504320644257-Always_Open_39_1_thumbnail.jpg","duration":3255,"publication_date":"2017-09-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-293-fj4g4","changefreq":"weekly","video":[{"title":"2017:E293 - Drowning for Power","description":"Brandon tries bonding with his Father-in Law and almost drowns him in the process.\n\nAudio from Rooster Teeth Podcast #443\n\n\n\nAnimated by: Willaim Ball and Jordan BattleDirected by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-293-fj4g4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4ce26fb-8402-4830-a650-977975e3edc6/sm/2013912-1504302410996-rtaa293tn.jpg","duration":155,"publication_date":"2017-09-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-5-4-hkeg8r","changefreq":"weekly","video":[{"title":"S2:E5 - Episode 5: Sleepwalkers","description":"The team pursues the Oasis through the desert, as Aidan navigates the politics of the camp. Meredith finds an unlikely ally in her new assignment.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-5-4-hkeg8r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b6d3416-1822-4caa-8015-4689cab6ac58/sm/2013912-1504028525067-D5S2_EP205_THUMBNAIL_RT.png","duration":2800,"publication_date":"2017-09-03T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-17-geig3kg","changefreq":"weekly","video":[{"title":"S2:E17 - Episode 17 - The Mystery Bunch","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-17-geig3kg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea0cd02f-783b-451b-b533-c8defd2ed005/sm/2013912-1504307195914-RWBYChibiEp017Thumbnail.jpg","duration":223,"publication_date":"2017-09-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-36","changefreq":"weekly","video":[{"title":"2017:E36 - Conan's Anime Legs - #36","description":"Join Kerry, Gray, Miles, Cole, Yssa, and Austin as they discuss the Return of Miyazaki, My Hero Academia, Little Witch Academia, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c580123-c89e-4975-b05a-ddc40dcf4fd8/sm/2013912-1504303106652-fanservice_036.png","duration":4728,"publication_date":"2017-09-02T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-10","changefreq":"weekly","video":[{"title":"2017:E33 - DMC3, #10 - Two Brothers","description":"This is it, the last two missions for DMC3! Everything has been building to this moment, the sky whale, the fight with the Jester, driving a motorcycle up the side of a building, the giant chess game, getting shot in the head, getting stabbed in the chest, and let's not forget the desecration of a beloved pizza slice. Finally Kyle and Miles will face off with Arkham, confront Vergil, and close the portal to the demon world...hopefully.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0998308c-f526-46eb-9a04-830633eb7691/sm/2013912-1504302446280-BC_DMCLOL_THUMB_10.png","duration":4618,"publication_date":"2017-09-01T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-109-eighi3u","changefreq":"weekly","video":[{"title":"S9:E10 - For the Win #109","description":"Ending the season with a brand new game. That makes sense, right?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-109-eighi3u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d48c16e9-b0d4-47c9-8627-5cd9f0cdc781/sm/2013912-1504289278730-On_the_Spot_109_PostShow_2_thumbnail.jpg","duration":707,"publication_date":"2017-09-01T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-109-hgi4gyu","changefreq":"weekly","video":[{"title":"S9:E109 - MAGICIANS CURSED HER! - #109","description":"Barbara thought it was just another normal episode of On The Spot. Little did she know Max & Patrick came prepared with a plethora of hexes up their sleeves. This episode originally aired August 30, 2017 and is sponsored by Blue Apron (http://cook.ba/29yXWg2) and MVMT (http://bit.ly/2elNHLW)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-109-hgi4gyu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fcc757a-1699-46d2-ab5d-eacde45890e9/sm/2013912-1504208722197-On_the_Spot_109_2_thumbnail.jpg","duration":2961,"publication_date":"2017-08-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-7-post-384-hto","changefreq":"weekly","video":[{"title":"S1:E7 - Cib and Lawrence Fight to the DOOM - Post Fight Battle #7","description":"In a DOOM free for all, it comes down to Cib from SP7 and Lawrence from Funhaus, but you could also say John from JT Machinima and Parker and Chase from Game Attack were involved.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-7-post-384-hto","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4a9541b-a801-47c9-8829-af1906f655b8/sm/2013912-1504208644467-TNGF_FHvGA_PS_1_thumbnail.jpg","duration":496,"publication_date":"2017-08-31T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-7-gj409u","changefreq":"weekly","video":[{"title":"1:E7 - Funhaus Faces DOOM! - #7","description":"Funhaus, Sugar Pine 7, and JTM fight to stay alive in DOOM gameplay while Game Attack sends errand boys in their place. Also, Lawrence learns what love is. This episode originally aired August 29, 2017 and is sponsored by SeatGeek (http://bit.ly/2tgjzaR) and Blue Apron (http://cook.ba/2lWbtRf)","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-7-gj409u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95c2641f-2b0c-4b51-986f-8530cf3b3f74/sm/2350994-1504118030665-TNGF_FHvGA_thumbnail.jpg","duration":2337,"publication_date":"2017-08-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-454-post-show-rhtghr","changefreq":"weekly","video":[{"title":"2017:E44 - Becca Tries To Bury Her Womanhood - Podcast #454 Post Show","description":"Join Gus Sorola, Brandon Farmahini, Becca Frasier, and Blaine Gibson as they discuss Becca’s embarrassing story, growing up, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-454-post-show-rhtghr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16c84853-d70d-481c-b3e9-bab8ae74d869/sm/2350994-1504119646490-RTP454_Site.01_32_11_15.Still011.png","duration":1144,"publication_date":"2017-08-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-38-jgoiu4","changefreq":"weekly","video":[{"title":"2017:E26 - Still Open #38","description":"Join Barbara Dunkelman, Jeremy Dooley, Ashley Jenkins, and Mariel Salcedo as they discuss what their first purchases would be if they ever won the lottery.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-38-jgoiu4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/552ad3ce-237c-4786-9656-78f481172655/sm/2013912-1504031390184-AO38_-_PS_-_Thumb_v1.jpg","duration":690,"publication_date":"2017-08-29T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-454-g9y3","changefreq":"weekly","video":[{"title":"2017:E454 - Marching with the Juggalos - #454","description":"Join Gus Sorola, Brandon Farmahini, Blaine Gibson, and Becca Frasier as they discuss Hurricane Harvey, the March of the Juggalos, current and upcoming TV shows, and more on this week’s RT Podcast! This episode originally aired August 28, 2017, sponsored by Boomerang (boomerang.com/promo), Five Four Club (http://bit.ly/2wN2xGR), and MeUndies (http://bit.ly/1K8qW9z)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-454-g9y3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deda8b55-0941-42fd-8dd4-d21639b6a206/sm/2013912-1504032974726-RT_Podcast_454_thumbnail.jpg","duration":5598,"publication_date":"2017-08-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-ots-drag","changefreq":"weekly","video":[{"title":"2017:E62 - We Became Drag Queens","description":"In the lead up to the special Drag episode of On the Spot, Jon & the gang go shopping for the perfect outfits and Texas helps them bring their looks together with some seriously fabulous hair and makeup.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-ots-drag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55e0624e-c756-4253-9cd9-26072f4ca080/sm/2013912-1504021806456-RT_Life_Drag_thumbnail.jpg","duration":219,"publication_date":"2017-08-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-new-york-dojo","changefreq":"weekly","video":[{"title":"2017:E30 - New York Dojo","description":"Sophie takes Burnie to New York to promote Rooster Teeth's latest projects and productions...meanwhile Ellie heads into downtown New York City to begin her journey from zero to hero.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-new-york-dojo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05b721ea-a410-417c-8d72-d72e46a74f06/sm/2013912-1503946206386-Burnie_Vlog_8.28_2_thumbnail.jpg","duration":632,"publication_date":"2017-08-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-jeremy-s-wicked-speed-date-38","changefreq":"weekly","video":[{"title":"2017:E38 - Jeremy Dates Us - #38","description":"Join Barbara Dunkelman, Jeremy Dooley, Ashley Jenkins, and Mariel Salcedo as they take Jeremy on a date, what movie they'd want to live out, and a user-submitted question about threesomes! This episode is brought to you by HelloFresh (http://bit.ly/2dt9Db8), MVMT, (http://bit.ly/2xJDj8o), and MeUndies (http://bit.ly/2xkzoyS).","player_loc":"https://roosterteeth.com/embed/always-open-2017-jeremy-s-wicked-speed-date-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72dc75a1-247c-46c5-aa1e-db0b01946854/sm/2013912-1503950387204-Always_Open_38_thumbnail.jpg","duration":3603,"publication_date":"2017-08-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/barbara-vlogs-2017-a-cheeky-q-a","changefreq":"weekly","video":[{"title":"2017:E5 - A Cheeky Q&A!","description":"Let's have a nice chat- I sat down to answer some of your questions for a more laid back vlog this month! ... definitely NOT because I've been too busy to film a real vlog or anything like that hahahahahaha but seriously please enjoy.","player_loc":"https://roosterteeth.com/embed/barbara-vlogs-2017-a-cheeky-q-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5502312f-2fe1-4fc3-a6f9-ac8642ba0e3c/sm/2013912-1503933818462-Thumbnail.jpg","duration":741,"publication_date":"2017-08-28T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-292-fh84fh","changefreq":"weekly","video":[{"title":"2017:E292 - Covered In Kittens","description":"Michael gets to be covered in kittens and makes sure that Lindsay is both angry and jealous.\n\nAudio from Off Topic #17\n\n\n\nAnimated by: Quinn Weston and Andrew LhotskyDirected by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-292-fh84fh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/228d6648-63b5-4e5a-835d-ad26a7600faa/sm/2013912-1503704205158-rtaa292tn.jpg","duration":79,"publication_date":"2017-08-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-4-h84hkg","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4: Circadian Rhythms","description":"Tensions flare and complications arise on the flight to Nevada. Aidan attempts to meet the Sandman himself.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-4-h84hkg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75d005ac-5306-488f-a23d-fcac38330e65/sm/3014926-1502984039432-D5S2_EP204_THUMBNAIL_RT.png","duration":2749,"publication_date":"2017-08-27T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-453-post-show-wugig","changefreq":"weekly","video":[{"title":"2017:E43 - College Drama Failure - #453 Post Show","description":"Join Chris Demarais and Josh Flanagan as they discuss writing, comedies vs dramas, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-453-post-show-wugig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120c7cd8-a862-4a15-9121-6fcf94ae57ae/sm/2013912-1503686688898-rtp453_-_PS_-_THUMB.jpg","duration":887,"publication_date":"2017-08-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-16-gh3g3h","changefreq":"weekly","video":[{"title":"S2:E16 - Episode 16 - Neptune Noir","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-16-gh3g3h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de3aa013-1406-4f31-8303-fcdb43088c7a/sm/2013912-1503704765614-RWBYChibiEp016Thumbnail.jpg","duration":253,"publication_date":"2017-08-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-35","changefreq":"weekly","video":[{"title":"2017:E35 - RTX Austin 2016 - Fan Service #35","description":"Join Kerry, Gray, Miles, Cole, Yssa, and Austin in this release of the RTX 2016 panle as they discuss Trigger Shows, My Hero Academia, Stan's Shower Thoughts on RWBY, and more this week on Fan Service! ","player_loc":"https://roosterteeth.com/embed/fan-service-2017-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5825791-af63-4257-a094-c9299b1371d6/sm/661278-1503682899133-FS35_-_Thumbnail_2_copy.jpg","duration":3667,"publication_date":"2017-08-26T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-9","changefreq":"weekly","video":[{"title":"2017:E32 - DMC3, #9 - Boss Rush","description":"Like any classic game, when you get close to the end, sometimes you have to face off with each boss you've defeated up to that point one more time. As if their hands weren't full enough, Kyle and Miles decide they want to play a game of \"Would you rather?\" to make things a little more interesting. So ask yourselves this, would you rather give up oral sex (giving and receiving) or give up cheese?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7d3d018-e317-4851-bac7-bb535dc8ae85/sm/2013912-1503685916805-BC_DMCLOL_THUMB_09.png","duration":3644,"publication_date":"2017-08-25T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-108-h56ugh","changefreq":"weekly","video":[{"title":"S9:E9 - For the Win #108","description":"What have we learned today? That 90% of old B-Movie posters had half-naked women on them. Oh, and we also learned how to play a new game.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-108-h56ugh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cd236b2-54e5-4e3d-bd59-98dbc83b8ee9/sm/2013912-1503691065867-ots_108ps_thumb.jpg","duration":784,"publication_date":"2017-08-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-453-veghh","changefreq":"weekly","video":[{"title":"2017:E453 - Blaine Burns Everyone - #453","description":"Join Chris Demarais, Josh Flanagan, and a sidecar of guests as they discuss grievances with each other, dating, the last time they cried, and more on this week’s RT Podcast! This episode originally aired August 24, 2017, sponsored by TrackR (http://bit.ly/2vd6gwY)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-453-veghh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dc9b39c-91a0-4ec6-9d30-a8f7de361b69/sm/2013912-1503699844106-RT_Podcast_453_thumbnail.jpg","duration":5420,"publication_date":"2017-08-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-12-sfh893yt","changefreq":"weekly","video":[{"title":"S2:E12 - Episode 12 - Parents' Day","description":"In the season 2 finale, David invites the parents of the campers to come visit. To Campbell's dismay, the future of the camp now hinges on everything going smoothly.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-12-sfh893yt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a435fee-526f-45e4-8cd2-d09dac3cd517/sm/2013912-1503612481276-CC2_Ep12_tn.jpg","duration":1427,"publication_date":"2017-08-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-108-gh4g","changefreq":"weekly","video":[{"title":"S9:E108 - GAMESHOW OF THRONES - #108","description":"Dragons are animals. Animals eat stuff. Therefore dragons eat stuff. Therefore dragons have to poo. Which then not only brings up the question of how big these poos are or what consistency they are but also where do they put the poo AND what are the magical and/or medicinal properties of said poo? \n\n\n\n\n\nThis episode originally aired August 23, 2017 and is sponsored by Beachbody on Demand and Dollar Shave Club (http://bit.ly/2sVN84y)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-108-gh4g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f931603d-02f5-4a8c-9d5e-6fb2cc872824/sm/2013912-1503603649267-On_the_Spot_108_thumbnail.jpg","duration":3028,"publication_date":"2017-08-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-6-post-kdygu5","changefreq":"weekly","video":[{"title":"S1:E6 - Overwatch What You're Doing! - Post Fight Battle #6","description":"Enemies become allies as Sugar Pine 7 and Rooster Teeth join forces to battle the evil armies of RTAnimation and JT Machinima.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-6-post-kdygu5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4184165-2b0f-4e58-b6b6-85ae83458d66/sm/2013912-1503525215485-TNGF_SP7vRTA_PostFight_thumbnail.jpg","duration":509,"publication_date":"2017-08-24T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-6-jge84o","changefreq":"weekly","video":[{"title":"1:E6 - Can Anyone Overcome Overwatch? - #6","description":"The brothers of team Rooster Teeth put on a free Overwatch clinic while Sugar Pine 7 fights to stay alive. This episode originally aired August 22, 2017 and is sponsored by SeatGeek (http://bit.ly/2tgjzaR) and MVMT (http://bit.ly/2xt5QyS).","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-6-jge84o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1977305e-2d9f-47e1-8a78-e30930227340/sm/2013912-1503515075830-TNGF_SP7vRTA_thumbnail.jpg","duration":2824,"publication_date":"2017-08-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-452-post-show-igurhg","changefreq":"weekly","video":[{"title":"2017:E42 - Auto-Ideas - Podcast #452 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss medical issues, the next automated thing, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-452-post-show-igurhg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4a0159-d7e6-4b7c-a808-dc76c5901c73/sm/2013912-1503429081057-rtp452_-_PS_-_THUMB.jpg","duration":967,"publication_date":"2017-08-23T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-37-ghorg","changefreq":"weekly","video":[{"title":"2017:E25 - Still Open #37","description":"Join Barbara Dunkelman, Miles Luna, Lindsay Jones, and Mariel Salcedo as they discuss their favorite memories from college.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-37-ghorg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6ef2fdc-5ab0-46ee-afcf-f3ae4d5423bf/sm/2013912-1503425516659-AO37_-_PS_-_THUMB.jpg","duration":792,"publication_date":"2017-08-22T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-452-3-gu3ogi","changefreq":"weekly","video":[{"title":"2017:E452 - Construction Forever Always - #452","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss the solar eclipse, confederate statues, construction, and more on this week's RT Podcast! This episode originally aired on August 21, 2017, sponsored by Jersey Mike’s (http://bit.ly/2x98RFz), Maltesers (http://bit.ly/2rxjbDQ), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-452-3-gu3ogi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6741e83-acbc-40df-8d6c-afda4300690d/sm/2013912-1503428012096-RT_Podcast_452_6_thumbnail.jpg","duration":5368,"publication_date":"2017-08-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-kerry-vs-birds","changefreq":"weekly","video":[{"title":"2017:E61 - KERRY VS BIRDS","description":"While in New Zealand, Miles and Kerry visit the Zealandia sanctuary and find themselves face-to-face with dangerous wildlife that tests their courage.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-kerry-vs-birds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bd6ade3-a7fd-4c8e-8ef2-c78405ff4540/sm/2013912-1503414152080-RT_Life_Zealandia_4_thumbnail.jpg","duration":137,"publication_date":"2017-08-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-sword","changefreq":"weekly","video":[{"title":"2017:E29 - Making a Sword","description":"The first step of Ellie's \"Skill Tree\" is weapons, but before she can move onto smithing she learns how to cast a bronze sword. Burnie...supervises. \n\n\n\nAdditional Camera: Zach Roth\n\nEditor: Chelsea Harfoush","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-sword","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c683912a-9ff7-4107-a76e-386adfb17477/sm/2013912-1503340705629-Burnie_Vlog_8.21_1_thumbnail.jpg","duration":747,"publication_date":"2017-08-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-37","changefreq":"weekly","video":[{"title":"2017:E37 - The Return of Drunk Lindsay - #37","description":"Join Barbara Dunkelman, Miles Luna, Lindsay Jones, and Mariel Salcedo as they discuss parenthood, a question about budding romance with a fickle friend, and go through a speed round of hilarious questions! This episode is brought to you by Casper (http://bit.ly/2d7S00q) Lyft (http://lft.to/2xkPlF2) and MeUndies (http://bit.ly/2xkzoyS)Like Always Open on Facebook: http://bit.ly/2wrDusr","player_loc":"https://roosterteeth.com/embed/always-open-2017-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d63d456-11a3-4b82-aa2a-82541c636033/sm/2013912-1503341682613-Always_Open_1_thumbnail.jpg","duration":3407,"publication_date":"2017-08-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-291-fh48g","changefreq":"weekly","video":[{"title":"2017:E291 - Denise Tries The Moonshine","description":"Denise tries the leftover peach moonshine from RTX and has some choice words for Michael.\n\n\n\n\n\n\n\n\n\n\n\nFrom Off Topic #86\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected and Animated by: Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-291-fh48g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fc0689f-c318-46db-a5e0-af277f0bd82e/sm/1115962-1503095093995-rtaa291tn.jpg","duration":86,"publication_date":"2017-08-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-3-84-hfd8d","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3: Lucid","description":"As Aidan and Paula explore the camp, Jake and company battle a new threat, with an inventive method for staying awake.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-3-84-hfd8d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fcccb5f-57d0-4378-95f2-80d2af560d39/sm/3014926-1502914729966-D5S2_EP203_THUMBNAIL_RT.png","duration":2418,"publication_date":"2017-08-20T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-21-g340guj","changefreq":"weekly","video":[{"title":"S15:E21 - Episode 21: Epilogues","description":"Season 15 concludes with a mysterious visit from an old friend. Dylan finds her ending.  ","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-21-g340guj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc04801a-7cba-4871-85c7-6cc2cba09193/sm/1115962-1503105335320-RvB15Ep021Thumbnail.jpg","duration":934,"publication_date":"2017-08-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-451-post-show-rytht","changefreq":"weekly","video":[{"title":"2017:E41 - Whiskey in Cup - Podcast #451 Post Show","description":"Join Lindsay Jones and Burnie Burns as they discuss people who are rude to waitstaff, parents and kid interaction, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-451-post-show-rytht","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a6fdd18-bc6a-4241-92e1-b9643d173387/sm/661278-1503087058375-RT_Podcast_451_PS_thumbnail.jpg","duration":1226,"publication_date":"2017-08-19T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-15-gh3gih","changefreq":"weekly","video":[{"title":"S2:E15 - Episode 15 - Nurse Nora","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-15-gh3gih","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abc87e89-1126-4701-ab9e-3b6951adad91/sm/3063157-1503103412221-RWBYChibiEp015Thumbnail.jpg","duration":201,"publication_date":"2017-08-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-demonic-chess","changefreq":"weekly","video":[{"title":"2017:E31 - DMC3, #8 - Demonic Chess","description":"Kyle and Miles finally reach the top of Temen-ni-gru and enter the portal to the demon world. What would you expect to greet them? Demons? Tortured souls? Lucifer himself? What awaits is much more sinister, a giant game of chess. Where's Ron Weasley when you need him?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-demonic-chess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b69e63c1-8a96-4b2a-ad6f-749906e931a7/sm/3014926-1503073826755-BC_DMCLOL_THUMB_08.png","duration":3019,"publication_date":"2017-08-18T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-107-gh4gh","changefreq":"weekly","video":[{"title":"S9:E8 - For the Win #107","description":"Three words. Oh, hi, whale!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-107-gh4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29a4e238-478d-4a9f-93e2-fde857ec6bcd/sm/690915-1503085453355-ots_107ps_thumb.jpg","duration":760,"publication_date":"2017-08-18T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-451-fjoi3gu","changefreq":"weekly","video":[{"title":"2017:E451 - Lindsay Gives Birth? - #451","description":"Join Lindsay Jones and Burnie Burns as they discuss family, women in entertainment, accents, and more on this week's RT Podcast! This episode originally aired on August 17, 2017","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-451-fjoi3gu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43469820-2f8e-4695-8f44-173101d53a60/sm/2350994-1503100801846-RT_Podcast_451_thumbnail.jpg","duration":3739,"publication_date":"2017-08-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-11-gh4yui4","changefreq":"weekly","video":[{"title":"S2:E11 - Episode 11 - Cookin' Cookies","description":"The Flower Scouts' cookie sale is not going well, and if the girls are gonna win an all-expense paid trip to Cabo, they're gonna have to do some actual work. Ugh, the worst. So they try spicing up their cookies with a secret ingredient!","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-11-gh4yui4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/041a93bd-7bf0-4215-af4d-96b6e0cd81f5/sm/1115962-1503016871401-CC2_Ep10_tn.jpg","duration":684,"publication_date":"2017-08-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-107-g4ig4y","changefreq":"weekly","video":[{"title":"S9:E107 - SHE LICKS EVERYTHING - #107","description":"Barbara has cooties, Max is trying to start a fight, Ellie is England's Mickey Mouse and Jeremy's head breaks in the end. \n\n\n\n\n\nThis episode originally aired August 16, 2017 and is sponsored by Beachbody on Demand and Felix Gray (http://bit.ly/2we6YKy)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-107-g4ig4y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a442a783-e145-464b-95e7-ed7408ffc107/sm/2350994-1502995479206-On_the_Spot_107_3_thumbnail.jpg","duration":2872,"publication_date":"2017-08-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-5-post-oeuyoijl","changefreq":"weekly","video":[{"title":"S1:E5 - Cool Story Smash Bros - Post Fight Battle #5","description":"A surprisingly epic Smash Bros fight to the death featuring Achievement Hunter, Funhaus, and ScrewAttack.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-5-post-oeuyoijl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dcea64b-8fab-4bf4-9902-d199eea86b86/sm/661278-1502932359962-TNGF_FHvAH_PostFight_thumbnail.jpg","duration":204,"publication_date":"2017-08-17T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-7-na7hmu2","changefreq":"weekly","video":[{"title":"2017:E7 - Chris and Brent - #7","description":"On this month's Relationship Goals, Griffon and Geoff sit down with Geoff's cousin Chris and his fiancé Brent to talk wedding planning!","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-7-na7hmu2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70312941-fbb9-4ec7-a5c0-8f23e2bf9eee/sm/690915-1502986212741-RG07_-_THUMB_v2.jpg","duration":4188,"publication_date":"2017-08-17T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-5-gj4golj","changefreq":"weekly","video":[{"title":"1:E5 - Love, Hate, and Smash Bros - #5","description":"A Smash Bros showdown inspires love between Funhaus and AH, but ignites a war of words between former allies ScrewAttack and Game Attack. This episode originally aired August 15, 2017 and is sponsored by SeatGeek (http://bit.ly/2tgjzaR)","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-5-gj4golj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfc7f99c-9746-450b-a554-89e5b3b78888/sm/690915-1502903980543-TNGF_FHvAH_2_thumbnail.jpg","duration":3273,"publication_date":"2017-08-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-450-post-show","changefreq":"weekly","video":[{"title":"2017:E40 - McNuggets and Bullsh*t - Podcast #450 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss security cameras, the current state of politics, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-450-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f259324d-d4a5-4e4e-8bda-0bc5ce0ada35/sm/690915-1502907551794-rtp450_-_PS_THUMB.jpg","duration":1760,"publication_date":"2017-08-16T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-450-ho4igo","changefreq":"weekly","video":[{"title":"2017:E450 - Szechuan Sauce Taste Test - #450","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Szechuan sauce, friendly wagers, VR, and more on this week's RT Podcast! This episode originally aired on August 14, 2017, sponsored by Audible (http://adbl.co/2uvRPmB), Dollar Shave Club (http://bit.ly/2rYSFna), NatureBox (http://bit.ly/2w7owrm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-450-ho4igo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d00209c9-7131-4a70-be85-7ddb5262c534/sm/661278-1502819896997-rtp450_-_THUMB.jpg","duration":5773,"publication_date":"2017-08-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-aaron-bares-it-all","changefreq":"weekly","video":[{"title":"2017:E60 - Aaron Bares It All","description":"Aaron decides to play a torturous joke on Matt by forcing him to watch a particular piece of footage over and over again during shooting for season one of Day 5.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-aaron-bares-it-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23cd21f3-2d9a-4020-b8b7-08e096e70ee7/sm/3014926-1502747693807-Day_5_Porn_Shoot_Aarons_AssThumbnail_Final.png","duration":142,"publication_date":"2017-08-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-burnie-vlog-performance-review","changefreq":"weekly","video":[{"title":"2017:E28 - Performance Review","description":"After a full quarter working together, Burnie evaluates Ellie's performance, and introduces the need for her to develop a very particular set of skills to continue as his assistant; namely, prepping for the apocalypse. It turns out that at present, she is woefully unprepared...","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-burnie-vlog-performance-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6933604c-35c0-4f37-b20a-cca7601d3217/sm/3014926-1502739435859-Burnie_Vlog_8.14_2_thumbnail.jpg","duration":610,"publication_date":"2017-08-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-290-gho3ytu","changefreq":"weekly","video":[{"title":"2017:E290 - Michael's Bathroom Blastoff","description":"Michael takes the Banana Sprite Challenge and the results are explosive!\n\n\n\n\n\n\n\n\n\nAudio from Last Call #11\n\n\n\n\n\n\n\nDirected and Animated by: Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-290-gho3ytu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/081ffdae-3a35-4b6c-8bc6-65c1feaa00f6/sm/2013912-1502485673947-rtaa290tn.jpg","duration":84,"publication_date":"2017-08-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-2-fh84lk","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2: Oasis","description":"The team hunts for Gabbi -- and any chance to track down the Safe Sleep Zone -- as Aidan and a new ally attempt to enter the Sandman’s Oasis.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-2-fh84lk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b973f709-710b-463f-bba6-357641fd45ae/sm/2013912-1502226736425-D5S2_EP202_THUMBNAIL_RT.png","duration":2540,"publication_date":"2017-08-13T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-20-r39ugkj","changefreq":"weekly","video":[{"title":"S15:E20 - Episode 20: Blue vs Blue ","description":"It’s Red vs. Red and Blue vs. Blue in the action-packed penultimate episode of Season 15. Temple is on the verge of accomplishing his synister goals and there is only one group of primary-colored soldiers who can stop him.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-20-r39ugkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/498cc242-d8e4-4c04-baab-f78647ec57f0/sm/2013912-1502500553018-RvB15Ep020Thumbnail.jpg","duration":823,"publication_date":"2017-08-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-449-post-show-g984hjb","changefreq":"weekly","video":[{"title":"2017:E39 - Bad Words and Naughty Bits - Podcast #449 Post Show","description":"Join Ashley Jenkins and Burnie Burns as they discuss Game of Thrones, bar closing times, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-449-post-show-g984hjb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e82df0a-63a8-4da1-9aae-cc3a01a67120/sm/2013912-1502471632228-rtp449_-_PS_-_THUMB.jpg","duration":1190,"publication_date":"2017-08-12T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-playerunknown-s-battlegrounds-let-s-play-family-rumble","changefreq":"weekly","video":[{"title":"2017:E8 - Playerunknown's Battlegrounds Let's Play Family Rumble","description":"Plum Squad represents Rooster Teeth in an all out rumble amongst members of the Let's Play Family. Time to put our money where our mouth is and show our elite skills to the rest of those chumps.\n\n\n\n\n\nLet's be honest, you know who is gonna carry the team and who is going to crash vehicles nonstop.","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-playerunknown-s-battlegrounds-let-s-play-family-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffa2c562-d3c7-46cb-97e5-18cda84b5c8f/sm/2013912-1502398867652-pu_battlegrounds_RTPLPF.jpg","duration":3453,"publication_date":"2017-08-12T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-14-f4ug4gh","changefreq":"weekly","video":[{"title":"S2:E14 - Episode 14 - Cannonball!","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-14-f4ug4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/278d13bd-9d6c-48cf-9f10-38f4e2e5497f/sm/2013912-1502500160735-RWBYChibiEp014Thumbnail.jpg","duration":295,"publication_date":"2017-08-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-34","changefreq":"weekly","video":[{"title":"2017:E34 - Icy Hot - #34","description":"Join Kerry, Gray, Miles, Cole, and Yssa as they catch up on summer news, talk with Chad James of ScrewAttack, are joined by voice actor Clifford Chapin, and more this week on Fan Service! And, stick around for a special interview with Toshimichi Mori and Daisuke Ishiwatari from Arc System Works.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42a050f9-0dde-460f-96e1-415ad475f192/sm/2013912-1502466564838-fanservice_034.png","duration":5094,"publication_date":"2017-08-12T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-7","changefreq":"weekly","video":[{"title":"2017:E30 - DMC3, #7 - Bedroom Eyes","description":"While Arkham is busy opening the portal to the demon world, Kyle tells Miles about the other Star Wars smuggler, Dash Rendar.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7a54986-0895-415e-8c3d-13a389a46b3e/sm/2013912-1502481769867-BC_DMCLOL_THUMB_07.png","duration":3161,"publication_date":"2017-08-11T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-106-gho3igh","changefreq":"weekly","video":[{"title":"S9:E7 - For the Win #106","description":"If you get diabetes you will turn into Josh. Don't get diabetes, kids.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-106-gho3igh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66bb76b6-a214-4659-8264-af8704370fc7/sm/2013912-1502399749686-ots_106ps_thumb.jpg","duration":542,"publication_date":"2017-08-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-449-fj49g7","changefreq":"weekly","video":[{"title":"2017:E449 - The Eclipse Mix-Up - #449","description":"Join Matt Hullum and Burnie Burns as they discuss the upcoming solar eclipse, family stories, filming influences, and more on this week's RT Podcast! This episode originally aired on August 10, 2017, sponsored by Link AKC (http://bit.ly/2vWfVYC)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-449-fj49g7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b741970c-a1fb-4315-b50e-d1a060454084/sm/2013912-1502471604340-rtp449_-_THUMB.jpg","duration":3604,"publication_date":"2017-08-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-10-fh84l5","changefreq":"weekly","video":[{"title":"S2:E10 - Episode 10 - Space Camp Was a Hoax","description":"Space Kid is being more spacey than usual, and it's really annoying Max, Neil, and Nikki. Meanwhile, due to a legal loophole, David and Gwen are tasked with faking a moon landing for the would-be astronaut.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-10-fh84l5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e35f2792-9e8e-4ae8-a554-99a62c2ae655/sm/2013912-1502402504071-CC2_Ep11_tn.jpg","duration":734,"publication_date":"2017-08-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-106-g498hg","changefreq":"weekly","video":[{"title":"S9:E106 - DAY 5 CANCELLED - #106","description":"I invited the creator, writers and directors of Day 5 to come on my show. Funny thing is the only person who promoted their stupid show is the sex addict wearing a bath robe that had nothing to do with the production of Day 5. Oh well. At least I got to see some \"D\".","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-106-g498hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f810499e-7d50-4f69-b2c0-489d8fcc3df8/sm/2013912-1502398769020-ots_106_thumb.jpg","duration":3045,"publication_date":"2017-08-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-4-post-g49ghu","changefreq":"weekly","video":[{"title":"S1:E4 - Every Man and Maggie For Themselves - Post Fight Battle #4","description":"It’s a free-for-all Trials Fusion race featuring cats riding unicorns.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-4-post-g49ghu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0bc9dbb-1447-4719-91f5-ff1fb766c162/sm/2013912-1502304381524-TNGF04_-_PS_-_THUMB_v2.jpg","duration":427,"publication_date":"2017-08-10T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dream-daddy","changefreq":"weekly","video":[{"title":"2017:E27 - Dream Daddy","description":"Athletic Dad, Coffee Shop Dad, Rich Dad, Dad Dad. So many Dads and so little time but Kyle and Miles want to meet them all in the hopes of finding the perfect Dad.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dream-daddy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fee5df6f-9696-493a-b438-b20d06f10f10/sm/2013912-1500673832870-BC_DADS.png","duration":4629,"publication_date":"2017-08-09T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-4-g48ghl","changefreq":"weekly","video":[{"title":"1:E4 - Rooster Teeth Surges Past Achievement Hunter - #4","description":"In 10 intense heats of Trials Fusion, team Rooster Teeth and Achievement Hunter try to overcome their faults for their second win, while team ScrewAttack and RT Animation try to stay alive. This episode originally aired August 8, 2017 and is sponsored by SeatGeek (http://bit.ly/2tgjzaR).","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-4-g48ghl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d0e4c83-19cd-4d1f-aaa3-233a1dc8f9dc/sm/2013912-1502298958675-TNGF04_-_THUMB_v2.jpg","duration":2248,"publication_date":"2017-08-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-448-post-show-dogu4ij","changefreq":"weekly","video":[{"title":"2017:E38 - The Greek Kitchen - Podcast #448 Post Show","description":"Join Gus Sorola, Gavin Free, Josh Flanagan, and Chris Demarais as they discuss lubricants, fake food, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-448-post-show-dogu4ij","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57f9e01b-8195-4445-9c66-e8cddd871845/sm/2013912-1502219033941-rtp448_-_PS_-_THUMB.jpg","duration":1074,"publication_date":"2017-08-09T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-448-ghuro5","changefreq":"weekly","video":[{"title":"2017:E448 - The Fake Fiancee - #448","description":"Join Gus Sorola, Gavin Free, Josh Flanagan, and Chris Demarais as they discuss milk, filming Day 5, strange bar stories, and more on this week's RT Podcast! This episode originally aired on August 8, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj), Casper (http://bit.ly/2bgC0nt), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-448-ghuro5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bd01a76-631b-48c7-9a21-b4bd6c2f79c0/sm/2013912-1502218501954-rtp448_-_THUMB.jpg","duration":5923,"publication_date":"2017-08-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-g38gij3g","changefreq":"weekly","video":[{"title":"2017:E59 - Vision Quest","description":"After months of suffering through Tyler's terrible vision, Mariel takes him to finally get some glasses and puts him through a movie-montage-style vision makeover. Thanks to Warby Parker for supporting RT Life! Go to http://warbyparker.com/rtlife to order your free Home Try-Ons with free shipping all around.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-g38gij3g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70036a3c-e8ae-4916-a7ab-864bcfbbec9f/sm/2013912-1502122364830-thumbnail_2.png","duration":315,"publication_date":"2017-08-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-5-y4tyrh","changefreq":"weekly","video":[{"title":"2017:E27 - Ellie is Trying to Kill Me?","description":"Ellie books Burnie a boutique hipster LA hotel, to his DISMAY (although it was actually pretty cool); Burnie takes on the ultimate Dad task and fixes up Hannah Hart's studio after appearing on her show, AND catches the last ever @Midnight taping.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-5-y4tyrh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2b643c7-c43e-4ec4-8449-9434c1d2f1c3/sm/2013912-1502134438486-Burnie_Vlog_8.7_1_thumbnail.jpg","duration":818,"publication_date":"2017-08-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-289-fh3uf3","changefreq":"weekly","video":[{"title":"2017:E289 - Breast Kind of Greeting ","description":"Gus finds Burnie's porn stash and Ashley has a new habit of touching breasts with all her female co-workers. Gavin and Gus give her something to be jealous of. \n\n\n\n\n\nAudio from Rooster Teeth Podcast: RTX Sydney 2017 & Rooster Teeth Podcast # 440\n\n\n\n\n\n\n\nDirected & Animated by Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-289-fh3uf3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82469276-0f8c-4afd-93a5-12de587a693e/sm/2013912-1501880207065-rtaa289tn.jpg","duration":100,"publication_date":"2017-08-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day5-season-2-episode-1-94-n6dfw","changefreq":"weekly","video":[{"title":"S2:E1 - Season 2, Episode 1: Manifest Destiny","description":"Jake, Sam, and Ally search for Ellis as a broader threat unfolds… and rumors of a way to finally sleep again.","player_loc":"https://roosterteeth.com/embed/day5-season-2-episode-1-94-n6dfw","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d57e965-29a1-48e9-bb63-231a3662ebad/sm/2013912-1501781040223-D5S2_EP201_THUMBNAIL_RT.png","duration":2676,"publication_date":"2017-08-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-19-f093uf","changefreq":"weekly","video":[{"title":"S15:E19 - Episode 19: Red vs Red ","description":"It's all out war between the Reds and Blues and their evil counterpartss. The gang must overcome terrible odds to stop Temple before it's too late.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-19-f093uf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf881279-6208-4de9-bb79-370822361ea5/sm/2013912-1501904050494-RvB15Ep019Thumbnail.jpg","duration":616,"publication_date":"2017-08-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-447-post-show-984-hg","changefreq":"weekly","video":[{"title":"2017:E37 - Seven Years Behind - Podcast #447 Post Show","description":"Join Geoff Ramsey and Burnie Burns as they discuss YouTube channels and views, making content, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-447-post-show-984-hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b45cf80-a3a7-42d1-bb34-96289d6d444d/sm/2013912-1501872753216-rtp447_-_PS_-_THUMB.jpg","duration":1362,"publication_date":"2017-08-05T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-13-ghu4gh","changefreq":"weekly","video":[{"title":"S2:E13 - Episode 13 - Parent Teacher Conference","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-13-ghu4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9e055fc-d729-451b-bf2b-b99f254162a9/sm/2013912-1501796257131-RWBYChibiEp013Thumbnail.jpg","duration":251,"publication_date":"2017-08-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017","changefreq":"weekly","video":[{"title":"2017:E33 - RTX Austin 2017 - #33","description":"Join Kerry, Gray, Miles, Cole,  Austin, and Yssa as they discuss new anime coming this Fall, FLCL 2 & 3, Miles' spending habits and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33135d82-b21e-4cdf-9681-d4424b3a8db1/sm/690915-1501949207606-FS33-thumb01.jpg","duration":3711,"publication_date":"2017-08-05T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-6-the-dick-that-fucks-the-world","changefreq":"weekly","video":[{"title":"2017:E29 - DMC3, #6 - The Dick That Fucks The World","description":"They started from the bottom, then went to the top, and now they're at the bottom again. Kyle and Miles don't know what Temen-ni-gru has in store for them...but the Jester does.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-6-the-dick-that-fucks-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bf097a4-0778-4600-8146-33d6444039ca/sm/2013912-1501876691075-BC_DMCLOL_THUMB_06.png","duration":3866,"publication_date":"2017-08-04T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-105-gj4gj","changefreq":"weekly","video":[{"title":"S9:E6 - For the Win #105","description":"The definitive instructional video on how to do a proper tuck, brought to you by Rooster Teeth's resident experts, Lucy Lengua & Protina Shakeira.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-105-gj4gj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68ee925e-59a0-4000-8812-bd82963212d4/sm/2013912-1501862075466-ots_105ps_thumb.jpg","duration":577,"publication_date":"2017-08-04T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-447-fhio4gh","changefreq":"weekly","video":[{"title":"2017:E447 - Geoff the Hermit - #447","description":"Join Geoff Ramsey and Burnie Burns as they discuss the Jack Pattillo “firing,” sobriety, trips to LA, and more on this week's RT Podcast! This episode originally aired on August 3, 2017, sponsored by Day 5 (http://bit.ly/2wsiC0l)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-447-fhio4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffa7ae59-8bd7-411b-add2-dae257aa2d47/sm/2013912-1501868040323-rtp447_-_THUMB.jpg","duration":4864,"publication_date":"2017-08-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-9-g84ytkl","changefreq":"weekly","video":[{"title":"S2:E9 - Episode 9 - Eggs Benefits","description":"The campers are tasked with taking care of some valuable platypus eggs but get so caught up in being parental figures that things start to go awry.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-9-g84ytkl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b4f8b73-5882-4db3-87eb-817b8003a32b/sm/2013912-1501809742580-CC2_Ep09_tn.jpg","duration":848,"publication_date":"2017-08-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-5-fortnite-in-real-life-featuring-achievement-hunter","changefreq":"weekly","video":[{"title":"S5:E6 - Fortnite in Real Life Featuring Achievement Hunter","description":"Ryan and Jeremy must defend their fortress from waves of enemies while scavenging for ammunition in the battlefield. Will they survive? Can they beat Funhaus? Find out!","player_loc":"https://roosterteeth.com/embed/immersion-season-5-fortnite-in-real-life-featuring-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6cc12dc-ec43-492d-aceb-3c975cdb4b7e/sm/2013912-1501774022751-Immersion_Fortnite_2_thumbnail.jpg","duration":516,"publication_date":"2017-08-03T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-105-sfgho4","changefreq":"weekly","video":[{"title":"S9:E105 - DRAG IS FAB - #105","description":"Welcome to On The Spot: Drag Edition, brought to you by shade and sass. No heels, no contouring, no service. There are straws for your drinks, all of the walls are mirrors for obvious reasons and every 10 minutes is a lip sync battle. Please enjoy yourself and remember, you own everything!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-105-sfgho4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6fcc163-316b-4372-a90d-44c0a3b0f474/sm/2013912-1501779584657-ots_105_thumb.jpg","duration":2612,"publication_date":"2017-08-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-3-post-g48gh","changefreq":"weekly","video":[{"title":"S1:E3 - Everyone Except Game Attack vs. Game Attack - Post Fight Battle #3","description":"Winner-take-all Towerfall gameplay is intensified by new and insane hosts.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-3-post-g48gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e951ec56-e3f7-4378-8412-6115abf76e3a/sm/2013912-1501774604395-TNGF03_-_PS_-_THUMB_v1.jpg","duration":355,"publication_date":"2017-08-03T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-5-fortnight","changefreq":"weekly","video":[{"title":"S5:E5 - Fortnite in Real Life","description":"Bruce and Lawrence find out if the fortress they designed in a video game can protect them from wave after wave of enemies in real life. Thanks to Epic for sponsoring - check out the game at www.fortnite.com","player_loc":"https://roosterteeth.com/embed/immersion-season-5-fortnight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/455491a0-84ea-4fa4-a167-94f6936fbe11/sm/2013912-1501686182118-Immersion_Fortnite_4_thumbnail_1.jpg","duration":704,"publication_date":"2017-08-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-3-fhufh","changefreq":"weekly","video":[{"title":"1:E3 - Funhaus Shocks Everyone - #3","description":"In two thrilling matchups of TowerFall, Adam Kovic adds shock collars to the game, JT Machinima recites love/hate poems, Sugar Pine 7 perfects the dramatic entrance, Risinger saves the day, and Game Attack's fury can't be contained. This episode originally aired on August 1, 2017 and is sponsored by SeatGeek (http://bit.ly/2tgjzaR) and Blue Apron (http://cook.ba/2lWbtRf).","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-3-fhufh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/359ff94b-adc6-4e9d-84a6-3a985c727a3a/sm/2013912-1501695321030-TNGF03_-_THUMB_v1.jpg","duration":2738,"publication_date":"2017-08-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-446-post-show-w9g48h","changefreq":"weekly","video":[{"title":"2017:E36 - Fear and Dicks - Podcast #446 Post Show","description":"Join Miles Luna, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss male genitalia nomenclature, scary stuff, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-446-post-show-w9g48h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56fabe45-2dab-4512-ac12-85c201659a5f/sm/2013912-1501609026694-rtp446_-_PS_-_THUMB.jpg","duration":1392,"publication_date":"2017-08-02T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-446-foiegge4","changefreq":"weekly","video":[{"title":"2017:E446 - What Makes a Puppet a Muppet? - #446","description":"Join Miles Luna, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss The Emoji Movie, internet outrage, context in emails, and more on this week's RT Podcast! This episode originally aired on July 31, 2017, sponsored by Epic Games’ Fortnite (http://bit.ly/2wf0jvd), Jersey Mike’s (http://bit.ly/2uP5moE), MeUndies (http://bit.ly/2aGm9yg)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-446-foiegge4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac754297-9e05-47af-95cc-782fe2ab221c/sm/2013912-1501604746838-rtp446_-_THUMB.jpg","duration":5366,"publication_date":"2017-08-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-snapchat-roulette","changefreq":"weekly","video":[{"title":"2017:E58 - Snapchat Roulette","description":"Mariel decides to tempt fate by temporarily opening her Snapchat to the public.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-snapchat-roulette","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eba7bde9-5a0f-4a62-bdae-da9562ccef6d/sm/2013912-1501528866964-Mariel_Snapchat_Roulette_hands_on_head.png","duration":168,"publication_date":"2017-08-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-battleground","changefreq":"weekly","video":[{"title":"2017:E26 - Battlegrounds and Cheddar Biscuits","description":"Burnie and his PUBG crew take on the cunning AH in a battllegrounds...battle. He also woefully underestimates the resourcefulness of his producer and assistant, setting a task with the intention of bamboozling her, which she CONQUERS with panache. She definitely doesn't write these descriptions...","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-battleground","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7c2c973-747e-4035-9067-f161592f1457/sm/2013912-1501526659455-Thumbnail_PLACEHOLDER_Battlegrounds_V3.png","duration":762,"publication_date":"2017-07-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/barbara-vlogs-2017-anime-expo-adam-kovic-and-boats","changefreq":"weekly","video":[{"title":"2017:E4 - Anime Expo, Adam Kovic, and BOATS","description":"Join me and Adam Kovic as we wander around Anime Expo, followed by a time skip to the end of July where Burnie invites me to go \"Yachting\" and mooch off his Vlog! Someone (me) forgot to film much at RTX due to it being too crazy/awesome/exciting. Please forgive me, mom.","player_loc":"https://roosterteeth.com/embed/barbara-vlogs-2017-anime-expo-adam-kovic-and-boats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fda99f25-7c79-47ab-8b2b-204ebfd85846/sm/2013912-1501515252234-JulyVlogTHUMB.png","duration":531,"publication_date":"2017-07-31T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-288-fh38f3","changefreq":"weekly","video":[{"title":"2017:E288 - Joker Sex","description":"Miles tells his most embarrassing sex story which involves him roleplaying as the Joker. Probably the most cringe worthy thing he's ever done... as of right now.\n\nAudio from Rooster Teeth Podcast #436\n\n\n\nDirected & Animated by Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-288-fh38f3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1ba279e-4128-406b-a973-695346f13d50/sm/2013912-1501256892585-rtaa288tn.jpg","duration":101,"publication_date":"2017-07-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-18-fh849f","changefreq":"weekly","video":[{"title":"S15:E18 - Episode 18: Desolation","description":"The Reds and Blues are shaken in the aftermath of their daring escape. Dylan phones a friend for answers about Loco's crazy machine.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-18-fh849f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aff01532-ae32-4507-a331-ed0cf2f3c1cc/sm/2013912-1501256922477-RvB15Ep018Thumbnail.jpg","duration":594,"publication_date":"2017-07-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-445-post-show-hg94g","changefreq":"weekly","video":[{"title":"2017:E35 - No XP When You Sleep - Podcast #445 Post Show","description":"Join Gavin Free and Burnie Burns as they discuss how you sleep, the worst gift ever, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-445-post-show-hg94g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd369a62-ae84-4163-9716-068393b661c7/sm/2013912-1501261278092-rtp445_-_PS_-_THUMB.jpg","duration":1308,"publication_date":"2017-07-29T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-12-f4iugu4i","changefreq":"weekly","video":[{"title":"S2:E12 - Episode 12 - Evil Genius","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-12-f4iugu4i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84e6b279-d47f-447b-ae03-ec6f79ea3aa1/sm/2013912-1501256850732-RWBYChibiEp012Thumbnail.jpg","duration":272,"publication_date":"2017-07-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-5","changefreq":"weekly","video":[{"title":"2017:E28 - DMC3, #5 - Dante Daddy","description":"Kyle and Miles pickup right where they left off with DMC3. This episode is full of bosses, post RTX stories, a special appearance by \"Michael Caine\", and that good old wise crackin' Dante.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166afedf-d3c1-496c-8887-453ede699a4a/sm/2013912-1501269495379-BC_DMCLOL_THUMB_05.png","duration":3626,"publication_date":"2017-07-28T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-445-g4goi4g","changefreq":"weekly","video":[{"title":"2017:E445 - Sir Gavin of Business Class - #445","description":"Join Gavin Free and Burnie Burns as they discuss Gavin’s travel reputation, pets, the SNES Classic controversy, and more on this week's RT Podcast! This episode originally aired on July 28, 2017, sponsored by Casper (http://bit.ly/2bgC0nt)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-445-g4goi4g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7715c68-a33b-4cda-b725-b742425099f9/sm/2013912-1501261111069-rtp445_-_THUMB.jpg","duration":5014,"publication_date":"2017-07-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-8-g834jly","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 8 - Gwen Gets a Job","description":"After Max discovers Gwen has been looking for a new job, he blackmails her into finding an elusive treasure. Gwen, desperate to not have David find out, is forced to play along.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-8-g834jly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a186fb8-3963-463f-9b18-a0d04c25ed76/sm/2013912-1501211977290-CC2_Ep08_tn.jpg","duration":738,"publication_date":"2017-07-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-2-post-vh9hbr","changefreq":"weekly","video":[{"title":"S1:E2 - Achieve Attack vs. Rooster Teeth - Post Fight Battle #2","description":"The competition blows up as Michael and Chad team up to take on Blaine and Miles in Rocket League.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-2-post-vh9hbr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0224a45-f79c-45b8-bbe4-b660648fe0dc/sm/2013912-1501184861513-TNGF02_-_PS_-_THUMB.jpg","duration":520,"publication_date":"2017-07-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-2-fiyfuih","changefreq":"weekly","video":[{"title":"1:E2 - Achievement Hunter Rocks Animation - #2","description":"It's rockets meets cars meets soccer in a showdown between the screw from ScrewAttack, the muscle from Rooster Teeth, the rage quit from Achievement Hunter, and Miles of love from RT Animation. This episode originally aired on July 25, 2017 and is sponsored by MVMT (http://bit.ly/2w0uqqf) and SeatGeek (http://bit.ly/2tgjzaR)","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-2-fiyfuih","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59aecafc-3dbe-4735-aa71-33d070113bda/sm/2013912-1501083863652-TNGF02_-_THUMB_v3.jpg","duration":3007,"publication_date":"2017-07-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments88","changefreq":"weekly","video":[{"title":"2017:E88 - KEEP IT CLEAN - Funhaus Comments #88","description":"Personal hygiene was very important in my house when I was a child.\"Brush until you see white, scrub until you you see pink, wipe until you see red.\"That's what my dear old mother used to say.We aren't currently speaking.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b58d276d-5395-4e6d-bb7e-3ec31435220e/sm/2371242-1505423749752-FH_Thumb_Templatec88.png","duration":459,"publication_date":"2017-09-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-finale","changefreq":"weekly","video":[{"title":"S3:E31 - Funhaus Dungeons and Dragons - Ep. 31 Seasons 1-3 Finale","description":"This is it! The stunning conclusion to our heroes' first adventure, in which they engage in fisticuffs with an angry Sea-squatch, a fiery quest is undertaken, a familiar face from the past returns with violent intent, and Racsan's brain gets damaged. Well... more damaged.\n\n\n\n\n\nThanks to Daniel Gerstner for the fan-made intro! (@Danger_Street, https://dangerst.artstation.com/)\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d69efc4-375c-4a99-907e-13d7afccee45/sm/2371242-1505325231233-Twits_and_Crits_Logo_finale.png","duration":6851,"publication_date":"2017-09-14T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-boyfriend-2","changefreq":"weekly","video":[{"title":"2017:E237 - BEACHES BE CRAZY - My Boyfriend Gameplay Part 2","description":"This Funhaus gameplay is sponsored by the National Dairy Council. Next time you're on vacation, why not try ingesting nothing but milk, ice cream, and other delicious dairy products. Dairy: giving half of humanity irritable bowel syndrome since 5500 BCE.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-boyfriend-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e41fe2c-4ec3-4e95-b17b-4037aa95165c/sm/2371242-1505335021507-FH_Thumb_18_copy_57.png","duration":617,"publication_date":"2017-09-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-ep6","changefreq":"weekly","video":[{"title":"OS:E6 - OVERWATCH COMPETITIVE Ep. 6","description":"If any of you out there had rough childhoods, you might want to watch something else. Mommy and Daddy fight A LOT in this one.\n\n\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-ep6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a4edf41-d676-496d-88d2-57efabe66447/sm/2371242-1505252335782-FunhausOWLogo1920OC_EP6.png","duration":2627,"publication_date":"2017-09-14T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaav2","changefreq":"weekly","video":[{"title":"2017:E236 - AVENGERS GET HACKED - GTA 5 Gameplay","description":"Can you guys do me a favor and write in the comments if you actually cheer during those #@&%ing Stan Lee cameos. It will save me the trouble of having to learn to hate you over time.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaav2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/452aa163-b17f-4bff-bf33-68d093f9abeb/sm/2371242-1505322257027-FH_Thumb_18_copy_54.png","duration":1037,"publication_date":"2017-09-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-don","changefreq":"weekly","video":[{"title":"2017:E235 - HOT PURSUIT - GTA 5 Gameplay","description":"\"Hey, Honey. Sorry I missed dinner, but I just made a bundle selling video of that warehouse fire to a bunch of reporters!\"\"That's great, Don! We could really use the mo- wait. Why do you smell like kerosene?\"\"No reason. I'm gonna shower up. Be a dove and bury these clothes, will you?\"\n\n\n\n\n\n\n\n\n\n\n\nExtreme Wallride Hops - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/XoTxqeeRN0q_M2nABYKmWg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttps://twitter.com/thenasacova\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-don","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ece068de-6bf4-46a4-a94a-eeb431b9cdf6/sm/2371242-1505250391962-FH_Thumb_18_copy_53.png","duration":791,"publication_date":"2017-09-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps139","changefreq":"weekly","video":[{"title":"2017:E139 - WE ARE DOCTORS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f2995df-5552-40c0-866c-68ae0181ce73/sm/2371242-1505238945723-DS_PostShow_Template139.png","duration":3707,"publication_date":"2017-09-12T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds139","changefreq":"weekly","video":[{"title":"2017:E139 - THE CONSEQUENCES OF RACIAL SLURS? - Dude Soup Podcast #139","description":"Dude Soup is sponsored by Blue Apron and Casper Mattress. Check out this week’s menu and get your first three meals free—with free shipping—by going to http://blueapron.com/soup AND Get $50 off your Casper mattress when you go to http://casper.com/dudesoup and enter promo code dudesoup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUgh boy. Please watch the entire episode before you break out your quill and start penning your angry missives. This week we tackle the very sensitive subject of racial insensitivity as well as:21:40 - DMCA takedown by Campo Santo.34:30 - A light-hearted trip to Lucasfilm with Adam and Bruce.50:15 - Hard Nettin'.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES: PewDiePie's bad words:>http://www.bbc.com/news/world-europe-41222593https://www.engadget.com/2017/09/11/pewdiepie-outburst/DMCA Takedown Legal?>http://www.firewatchgame.com/about/#streaming\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN':Jam2Go>https://www.youtube.com/user/TheJam2goAlliance of Universes>https://budcharles.deviantart.com/art/Alliance-of-Universes-UPDATED-700071270\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b9f3d2e-ee79-4ea6-95bc-8e34a5533e7a/sm/2371242-1505174595633-FH_Thumb_18_copy_56.png","duration":3768,"publication_date":"2017-09-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh134","changefreq":"weekly","video":[{"title":"2017:E134 - WE GO FAMILY FRIENDLY? - Open Haus #134","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn accordance with YouTube's new content guidelines, I present to you the following description, free of all foul language, violent imagery, or erotic references:Hey... there. This video... sure is... good? It is always amusing when.. people... do... and say... things that are... different. Sometimes to be absurd or... comical also. Watch this now please. I go. *(takes shot of absinthe, screams obscenities into Jacob's ear for an hour)*\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttps://twitter.com/thenasacova\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c850e374-7901-41be-b258-3957a5f9e9c4/sm/2371242-1504901063802-Openhaus_Thumbnail134.jpg","duration":858,"publication_date":"2017-09-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo133","changefreq":"weekly","video":[{"title":"2017:E133 - TIGER'S WOOD - Demo Disk Gameplay","description":"Professions that get you laid the most (in order):1. Being Tiger Woods.2. Motorcross bro.3. NHL player.4. International DDR Champion.5. Every other job.Last. YouTube comedy channel uploader.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d08fd92-ff7b-48d9-b210-72aae8ec25f6/sm/2371242-1504920736369-FH_Thumb_TemplateTigey-2.jpg","duration":1062,"publication_date":"2017-09-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hobo","changefreq":"weekly","video":[{"title":"2017:E234 - RAGS TO GLITCHES - Hobo: Tough Life Gameplay w/Criken","description":"Say what you will about LA's homeless problem, but it does make it a lot easier to get a reasonably priced handie behind the Denny's next to my apartment. One would imagine. \n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/CrikMaster\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hobo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/957a192f-af88-4e2e-87e9-d72814f58815/sm/2371242-1504900582977-FH_Thumb_18_copy_52.png","duration":750,"publication_date":"2017-09-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-alek5","changefreq":"weekly","video":[{"title":"2017:E233 - TEXAS TOUGH BOYS - Alekhine's Gun Gameplay Part 4","description":"Get Alekhine’s Gun at 15% Discount (Official Store) with the code funhaus15: http://games.officialstore.io/FunhausAlekhinesGun#ad\n\n\n\n\n\n\n\n\n\nWhy do swingers always have those thick bushy mustaches? I doesn't matter what you're into in the bedroom, back alley, dungeon, or Applebee's bathroom. Either way, that thing's got to start to smell like an old mop head after a while.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-alek5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba8f1d8c-2647-4095-8483-d73f6c4f96c5/sm/2371242-1504900183750-FH_Thumb_18_copy_51.png","duration":622,"publication_date":"2017-09-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fifa1","changefreq":"weekly","video":[{"title":"2017:E231 - BALL BOYS - FIFA 17 Gameplay w/ Rahul Kohli Part 1","description":"Ugh, soccer. If I wanted to watch a bunch of perfectly coiffed, athletic, beautiful, sinewy, olive-skinned, rich, limber, baby-smooth, fashionable, charming, aggressive yet yielding, virile, engorged, wha, where, what was I talking about? I gotta sit down for a minute.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/sirlarrhttp://twitter.com/jameswillemshttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fifa1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44d08c3a-7ab9-45a0-9160-75f5a5f173bd/sm/2371242-1504829839639-FH_Thumb_18_copy_47.png","duration":1087,"publication_date":"2017-09-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwejoel","changefreq":"weekly","video":[{"title":"2017:E230 - THE HEBREW HEEL - WWE 2k17 with Joel Gameplay","description":"Ingredients:2 cups matzo meal2 large eggs, lightly beaten1/4 cup chicken fat or shmaltz*2 teaspoons kosher salt1 teaspoon chopped fresh parsley2 cups boiling water3-4 quarts chicken broth or stockDirections:In a bowl, mix together matzo meal, eggs, chicken fat, salt and parsley. Pour over boiling water and let sit until mostly absorbed, then lightly mix until no dry crumbs remain. Cover and refrigerate for at least 1 hour to mellow.Roll dough into ball approximately 1-inch in size (they will expand when cooked). Use a light hand here, you don’t want to compress the dough too much lest you lose the light, airy texture. Arrange balls on a plate or baking sheet and cook immediately, or refrigerate for up to 1 day.Bring a large pot of chicken broth (preferably homemade) to a bare simmer. Add half of matzo balls (you don’t want to overcrowd them) and cook for 20 to 30 minutes or until balls are cooked through (they will usually start to sink when they are done). Ladle into soup bowls with some broth and serve warm.* Rendered chicken fat (or schmaltz) is a crucial ingredient to these matzo balls, giving them the majority of their substance or flavor. While you *can* technically use vegetable oil or shortening here, chicken fat is going to produce a much more flavorful matzo ball. Look for frozen rendered chicken fat in the kosher section of your favorite grocery store, or ask your local butcher.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/JoelRubin_\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwejoel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04e80286-9306-4122-92c1-41a532f8b363/sm/2371242-1504829117902-FH_Thumb_18_copy_50.png","duration":1200,"publication_date":"2017-09-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-call-of-duty-world-war-ii-gameplay","changefreq":"weekly","video":[{"title":"2017:E38 - Call of Duty: WWII Gameplay","description":"Careful, watching this much unedited COD can have some pretty dank side effects.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-call-of-duty-world-war-ii-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd98209e-caf5-4902-afea-568dd36304fa/sm/1533704-1504807180631-Fullhaus_Thumbnail_COD.jpg","duration":3615,"publication_date":"2017-09-07T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments87","changefreq":"weekly","video":[{"title":"2017:E87 - NO GIRLS ALLOWED - Funhaus Comments #87","description":"Quit getting all worked up over all the \"teleporting\" in Game of Thrones. It's a fantasy show full of all sorts of crazy imaginary stuff. I don't see any of you throwing a fit every time a dragon flies by, or a zombie pops out of the ice, or a woman has an orgasm. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffa3cb2e-f817-43b8-9555-75727d41efb2/sm/2371242-1504817151953-FH_Thumb_Template87.jpg","duration":481,"publication_date":"2017-09-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gorn","changefreq":"weekly","video":[{"title":"2017:E229 - BLOOD AND SAND - GORN Gameplay","description":"Did you know that Joaquin Phoenix grew up in cult in South America called The Children of God, who used their female followers as \"flirty fishers\" to entice potential converts with various sex acts?Weird, right? Anyway, Jacob will be filling in for me the next few months while I take care of some important business in Suriname. Personal business. Don't worry about it.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcitohttps://twitter.com/_JacobFullerton\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gorn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/891c53ab-bd60-4380-9d8d-99342be43ece/sm/2371242-1504738189849-FH_Thumb_18_copy_44.png","duration":1171,"publication_date":"2017-09-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-ow5","changefreq":"weekly","video":[{"title":"OS:E5 - OVERWATCH COMPETITIVE Ep. 5","description":"Sorry to get your hopes up, but the Official Funhaus Branded eSports Towel a.k.a. The FunSham is currently out of stock.\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-ow5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/521bc795-713b-4f71-91ad-da9e9b51c9a5/sm/2371242-1504735717217-FunhausOWLogo1920OC_EP5.png","duration":2380,"publication_date":"2017-09-07T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaavenge1","changefreq":"weekly","video":[{"title":"2017:E232 - EARTH'S CRAPPIEST HEROES - GTA 5 Gameplay","description":"An omnipotent, jacked, purple space-god is attempting to take over the universe! Fear not, true believers! We have an absentee dad who shoots arrows good, a spayed ballet karate lady, a guy who can swim, and fop with an umbrella.Uuuh... assemble?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaavenge1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00559db5-fcd7-45b8-834e-179a91ddffa0/sm/2371242-1504731784211-FH_Thumb_18_copy_45.png","duration":1056,"publication_date":"2017-09-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-7","changefreq":"weekly","video":[{"title":"2017:E228 - WILL TO KILL - GTA 5 Gameplay","description":"This weekend I willed myself out of bed long enough to microwave a frozen burrito before crawling back under the covers and pleasuring myself to an episode of Designing Women. Where's my million dollars?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n!!MIlitary pro 2 !! - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/w-oPyyFsDUCuyPTrwGXbow#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c8f967a-9213-4d4f-93b7-3957a4b25a7c/sm/2371242-1504643435404-FH_Thumb_18_copy_43.png","duration":638,"publication_date":"2017-09-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds138","changefreq":"weekly","video":[{"title":"2017:E138 - PUBG IS TOO POPULAR? - Dude Soup Podcast #138","description":"Get started at http://www.stitchfix.com/dudesoup and get an extra 25% off when you keep all 5 items in your box!And can claim a free Beach Body on Demand trial membership by texting \"Dude\" to 303030!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the gang talks all about what has made PUBG the most popular game in the universe as well as:23:00 - How gambling and unlockables make games so addictive49:10 - SNES bundles ripping you off55:30 - Thoughtable: Would you let someone hit you in videos if it made you famous1:03:00 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES: [Twitter] PUBG #1 on Steam: https://twitter.com/PLAYERUNKNOWN/status/901809054527324161[Twitter] PUBG Player Counts in July: https://twitter.com/PLAYERUNKNOWN/status/891666676772610048[GI.biz] Playerunknown's Battlegrounds hits 8 million sales: http://www.gamesindustry.biz/articles/2017-08-21-playerunknowns-battlegrounds-hits-8-million-sales[Glixel] GameStop on Forced Bundling, SNES Classic, Xbox One X Scarcity: http://www.rollingstone.com/glixel/news/gamestop-on-forced-bundling-snes-classic-xbox-one-x-scarcity-w500135\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbbaf108-7fd5-4c3f-be6a-9a761d46fea1/sm/2371242-1504626721697-FH_Thumb_18_copy_42.png","duration":4519,"publication_date":"2017-09-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh133","changefreq":"weekly","video":[{"title":"2017:E133 - OUR MID-LIFE CRISIS? - Open Haus #133","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus”.\n\n\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAnxiety over fleeting youth: Check.Preoccupation with my own mortality: Check.Depression over lack of accomplishments in life: Check.Expanding mid-section: Check.Inability to maintain erection: Check.Unnecessarily flashy and expensive car: I still drive a total piece of sh*t. Phew. I was worried there for a second. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b253aaf-186b-42b7-b301-1b794941d0a0/sm/2371242-1504295507848-Openhaus_Thumbnail133.jpg","duration":805,"publication_date":"2017-09-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo132","changefreq":"weekly","video":[{"title":"2017:E132 - HOLE CALIBUR - Demo Disk Gameplay","description":"Listen, we didn't have the internet when we were young. If you couldn't find a soggy old magazine in the woods, sometimes the best a growing boy could hope for was a peak of butt crack in a video game's intro scene. Don't you dare judge us! \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/brucegreene\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3508ad59-73ee-4431-8c81-f37e149fd15e/sm/2371242-1504313841596-FH_Thumb_18_copy_40.png","duration":952,"publication_date":"2017-09-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-swordfan","changefreq":"weekly","video":[{"title":"2017:E226 - MASTER BLADER - Sword With Sauce Gameplay","description":"Be sure to stay tuned until moment 11:35 to hear a neat little one minute tale explaining why nobody should ever be a cat person. Ever. And he doesn't even mention Toxoplasmosis. Good god, the Toxoplasmosis! Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/TheMilesLunahttps://twitter.com/graymartiganhttps://twitter.com/Cole_Gallianhttps://twitter.com/kerryshawcrosshttps://twitter.com/patthewanderer\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-swordfan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b9f0bd2-c941-4c7e-865d-3c0877880669/sm/2371242-1504201064177-FH_Thumb_18_copy_37.png","duration":1121,"publication_date":"2017-09-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ag4","changefreq":"weekly","video":[{"title":"2017:E224 - CHINESE TAKE-OUT - Alekhine's Gun Gameplay Part 3","description":"Get Alekhine’s Gun at 15% Discount (Official Store) with the code funhaus15 at: http://games.officialstore.io/FunhausAlekhinesGun\n\n\n\n\n\n\n\n\n\nI would like to hope that right now John F. Kennedy is up in Heaven somewhere, smiling down on all of us, but I know this isn't so. It's hard to smile down on anything with your face buried between Marilyn Monroe's cans. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ag4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18741918-a98c-45a9-83cb-2b265ffbe76e/sm/2371242-1504200697605-FH_Thumb_18_copy_24.png","duration":810,"publication_date":"2017-09-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-deathnote","changefreq":"weekly","video":[{"title":"2017:E20 - DEATH NOTE SUCKS? - Movie Podcast","description":"Get ready to rage on us! We didn't all hate it. Join Adam and the gang as they discuss what was good and what was garbage about the new live action American Death Note movie, its differences from the anime, and the difficulties in general of translating eastern styles and storytelling for a western audience.\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/jameswillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-deathnote","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cce37438-af4b-47ef-b84e-1e648372ea14/sm/2371242-1504116449498-FH_Thumb_18_copy_33.png","duration":2365,"publication_date":"2017-09-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-tearoom","changefreq":"weekly","video":[{"title":"2017:E223 - SHOOTING GALLERY - The Tearoom Gameplay","description":"This is sick. Rest stops should only be used for resting, peeing, amphetamine trafficking, and the occasional black market organ sale. Unrelated question: Does anybody happen to know how long a kidney can last duct-taped to the inside of a toilet tank? \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-tearoom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c5153cb-12f9-4da0-bb3e-ee51d9789f35/sm/2371242-1504116053035-FH_Thumb_18_copy_30.png","duration":735,"publication_date":"2017-09-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments86","changefreq":"weekly","video":[{"title":"2017:E86 - WHO WILL DIE? - Funhaus Comments #86","description":"It could be any one of us. I'll never tell. You can threaten, beat, and torture me for as long as there is strength in your arms and I will never, not even with my dying breath, reveal her name. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/_JacobFullertonhttps://twitter.com/Mr_Sark\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ce1c3b8-49d3-4b5a-a477-5f477fdb8343/sm/2371242-1504214532443-FH_Thumb_Template86.jpg","duration":700,"publication_date":"2017-08-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-cod","changefreq":"weekly","video":[{"title":"2017:E227 - COD BLESS AMERICA - Call of Duty WW2 Gameplay","description":"Wanna know how cool I am? My original title for this video was going to be \"Call of Doobie\". You kids still call pot cigarettes doobies, right? Sh*t. Do you guys even still call it pot? Oh god! You don't even smoke it anymore do you? It's all oils and balms and mists or something. I need to do some more research. How many e's are there in \"AskJeeves\"?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-cod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a8cdff7-897b-453d-a60a-9186a08d7024/sm/2371242-1504138994099-FH_Thumb_18_copy_29.png","duration":848,"publication_date":"2017-08-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-oc-ep4","changefreq":"weekly","video":[{"title":"OS:E4 - OVERWATCH COMPETITIVE Ep. 4","description":"In this week's episode, Lawrence seriously considers tracking down an 11 year old and murdering him for talking too much.\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-oc-ep4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61e83039-0e55-49e6-9fbd-5c0366ae3110/sm/2371242-1504111877982-FunhausOWLogo1920OC_EP4.png","duration":2389,"publication_date":"2017-08-31T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-watchmen-final","changefreq":"weekly","video":[{"title":"2017:E225 - END OF WATCHMEN - GTA 5 Gameplay","description":"\"...Until your mother loves a man she has every reason to hate, and of that union, it was you, only you, that emerged. To distill so specific a form from that chaos of improbability, like turning air to gold... that is the crowning unlikelihood. The thermodynamic miracle. And so I was wrong. Now dry your eyes... and make out with five of me while I build some stuff over here.\"\"But Jon. What about Ea-\"\"Oh right! Earth! Yes. Let's save Earth! But then it's battery-finger time!\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-watchmen-final","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53bfe787-ebc2-4828-b66a-f312cbf11845/sm/2371242-1504054019589-FH_Thumb_18_copy_38.png","duration":1522,"publication_date":"2017-08-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-house-party-gameplay","changefreq":"weekly","video":[{"title":"2017:E37 - House Party Gameplay","description":"I bet the the last time you spent an unedited hour at a house party it wasn't nearly as engaging as this. HOW MANY STRAIGHT-EDGE DUDES DID YOU WAGGLE YOUR SNAGGLE AT, HMMMM?","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-house-party-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be850938-510a-4905-90f2-bc2f30ef974d/sm/1533704-1504115972300-Fullhaus_Thumbnail_House_Party.jpg","duration":3531,"publication_date":"2017-08-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtagrav","changefreq":"weekly","video":[{"title":"2017:E222 - GREEN LIVES MATTER - GTA 5 Gameplay","description":"When Venus sends its Gas-hounds, they're not sending their best. They're not sending you. They're not sending you. They're sending Storm-whores that have lots of problems, and they're bringing those problems with us. They're bringing retrograde rotation. They're bringing clouds of sulfuric acid. They're CO2 suckers. And some, I assume, are good people.\n\n\n\n\n\n\n\n\n\nGravity Defied - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/9dzx9ZmmnUu-c4xXeYrl-A#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/IIJERiiCHOII\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtagrav","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05b698f8-f897-41b6-80df-d9f00579ea78/sm/2371242-1504053346051-FH_Thumb_18_copy_32.png","duration":637,"publication_date":"2017-08-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps137","changefreq":"weekly","video":[{"title":"2017:E137 - WE ARE YUB NUBS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4db7b811-fa0d-476f-8b27-0f8180df9d55/sm/2371242-1503960530251-DS_PostShow_Template_137.png","duration":3510,"publication_date":"2017-08-29T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude137","changefreq":"weekly","video":[{"title":"2017:E137 - h3h3 SAVES YOUTUBE? - Dude Soup Podcast #137","description":"Get your $5 shave kit at http://www.dollarshaveclub.com/dude\n\nAnd get your first fix at http://www.stitchfix.com/dudesoup and you'll get an extra 25% off when you keep all 5 items in your box! \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the boys and Elyse break down the h3h3 lawsuit and what it means for fair use on the internet as well as:11:00 - Soap operas33:45 - New game distribution models to fight piracy48:20 - New Half-Life plot revealed54:10 - Ad-pocolypse changing the streaming ecosystem1:01:00 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMerch yourself! bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[YouTube] WE WON THE LAWSUIT: https://youtu.be/9eN0CIyF2ok[YouTube] The Big, The BOLD, The Beautiful (Re-Upload): https://youtu.be/CXUs5FOo-JE[Copyright.gov] Fair Use Guidelines: https://www.copyright.gov/fair-use/more-info.html[Imgur] Darkwood Developer Story: https://m.imgur.com/a/xVhDz[GitHub] Epistle 3: https://github.com/Jackathan/MarcLaidlaw-Epistle3/blob/master/Epistle3_Original.md[Pastebin] Translated Episode 3: https://pastebin.com/q9DMFa7c\n\n\n\n\n\n\n\n\n\n\n\n\n\nNET HARD: Jam2go - https://youtu.be/xCL6SvLuz64\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6edbe029-f0f5-46b3-a96e-6b47feeb5455/sm/2371242-1503968123262-FH_Thumb_18_copy_34.png","duration":4191,"publication_date":"2017-08-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh132","changefreq":"weekly","video":[{"title":"2017:E132 - FUNHAUS COSPLAY TUTORIAL? - Open Haus #132","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\nWhenever I work out, my favorite thing to listen to is the sound of my thighs scraping against one another coupled with my own pained wheezing and sobs. That or Kanye.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b26f79-3ed5-429f-a117-850d9f3c557c/sm/2371242-1503693915788-Openhaus_Thumbnail132.jpg","duration":635,"publication_date":"2017-08-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo131","changefreq":"weekly","video":[{"title":"2017:E131 - LEMUR DOUBLE TEAMER - Demo Disk Gameplay","description":"Be sure to stay tuned until the end of the episode to see some nipples. Big, juicy, perfectly pink nipples. Old, hairy, suspiciously male nipples. Yes, they're Jon's.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2490c6f-7fd7-48ee-8dbc-7d118a15e410/sm/2371242-1503706057529-FH_Thumb_18_copy_31.png","duration":963,"publication_date":"2017-08-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-drop0","changefreq":"weekly","video":[{"title":"2017:E221 - GAME OF THE YEAR: 2017 - Drop Out 0 Gameplay","description":"Step 1: Take 5 of your nephew's AdderallStep 2: Turn soundtrack of \"The Matrix Revolutions\" up to full volume.Step 3: Play Ukrainian bootleg of \"Tron: Legacy\"(laserdisk only) on a loop.Step 4: Huff every chemical under your sink at once.Step 5: Invent this stupid game.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/AnneMunition\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-drop0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9777dcd2-7f07-4d3c-b3a2-81af65d5f648/sm/2371242-1503691287195-FH_Thumb_18_copy_25.png","duration":638,"publication_date":"2017-08-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-summercar4","changefreq":"weekly","video":[{"title":"2017:E220 - VODKA FOR BREAKFAST - My Summer Car Gameplay Part 4","description":"Interesting fact about Finland: While it does reside on the Fennoscandian Peninsula, Finnish people do not consider themselves to be Scandinavian. Bonus fun fact: I technically lost my virginity to a Finnish exchange student's index finger back in 1999. I'm pretty sure that's like second base over there.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-summercar4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39b9edcb-a150-444f-854a-71f823725f2f/sm/2371242-1503690895695-FH_Thumb_18_copy_26.png","duration":913,"publication_date":"2017-08-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-absolver","changefreq":"weekly","video":[{"title":"2017:E218 - KARATE KIDS - Absolver Gameplay","description":"If any of you tough guys out there are planning on taking a swing at your old pal Bones, keep in mind that as a kid I achieved the rank of yellow belt in Tae Kwon Do. I'm pretty sure the instructor was contractually obligated to give it to me once my mom's check cleared, but still.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/sirlarrhttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-absolver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d64de508-ff71-4597-9901-e669295c127b/sm/2371242-1503617617200-FH_Thumb_18_copy_23.png","duration":1201,"publication_date":"2017-08-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sherlock-green-1","changefreq":"weekly","video":[{"title":"2017:E217 - CLUELESS GAMERS - Sherlock Holmes: The Devil's Daughter Gameplay","description":"\"Alright Holmes, so far we know that the body was discovered gutted, alone in a room locked from the inside. None of the neighbours heard a sound and not a single drop of blood has been found. Fascinating.\"\"... Watson, you're like a MEDICAL doctor, right?\"\"Why yes, of course. What does tha-\"\"Soooo can you write a prescription for like anything, or...?\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttps://twitter.com/idsanty\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sherlock-green-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c54f042-1625-473d-8ba1-e656230ffeab/sm/2371242-1503617225285-FH_Thumb_18_copy_21.png","duration":1099,"publication_date":"2017-08-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-shell-shock","changefreq":"weekly","video":[{"title":"2017:E219 - LET'S GET TANKED - Shellshock Live Gameplay w/Chilled Chaos & GaLm","description":"\"Alright David, I'm ready to go. Where should I look when this tank turns into a giant robot or whatever? You got a tennis ball dangling on a string up there somewhere?\"\"A robot? No, Shia. It's just a tank. This is a straight up war movie.\"\"Sh*t! Okay, I gotta switch gears here. Give me twenty minutes. I'll be in my trailer watching videos of myself masturbating.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/ChilledChaoshttps://twitter.com/Sondoman\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-shell-shock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eab91f67-3c5d-48ee-bc26-eab15a19c84d/sm/2371242-1503615855773-FH_Thumb_18_copy_28.png","duration":1123,"publication_date":"2017-08-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments85","changefreq":"weekly","video":[{"title":"2017:E85 - NOBODY LIKES US? - Funhaus Comments #85","description":"I'm not really sure if this is how trigger warnings work, but could you please send one of those my way next time you're about to call me a tired homeless version of Adam Kovic in the comments? The rest of the boys are getting sick of all the crying.  \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/687b6b72-1062-4bdd-921a-797ce7903804/sm/2371242-1503539150301-FH_Thumb_Template85.jpg","duration":406,"publication_date":"2017-08-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-comp-place-3","changefreq":"weekly","video":[{"title":"OS:E3 - OVERWATCH COMPETITIVE Ep. 3","description":"I wish I cared about anything as much as these guys care about Overwatch. Sorry, Honey.\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-comp-place-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be0a8110-ca95-47ed-9e1e-049f98c6cb24/sm/2371242-1503509066869-FunhausOWLogo1920OC_EP3.png","duration":907,"publication_date":"2017-08-24T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-watch5","changefreq":"weekly","video":[{"title":"2017:E216 - THE LAST LAUGH - GTA 5 Gameplay","description":"Heard joke once: Man goes to doctor. No. Wait. Hospital... No! Doctor. Says he's sad. Depressed! Yes. Depressed better. Where was I? Oh. Life seems harsh, and cruel. Guy says this. Not Doctor. Says he feels all alone in threatening world. Doctor says: \"Treatment is simple. The great clown-\"... wait. What was name? \"P\" something. Was French. Italian maybe. No! Stay! Will remember! Pagliacci! That's it. \"Pagliacci - is in town. Go see him. That should pick you up.\" Man bursts into tears. \"But doctor...\" he says... he says... Shoot. Hold on. Let me start over.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-watch5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afe8bfd9-96be-48e8-87ce-bc993ccfeacb/sm/2371242-1503528324356-FH_Thumb_TemplateComedian.jpg","duration":977,"publication_date":"2017-08-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-water","changefreq":"weekly","video":[{"title":"2017:E215 - DEAD IN THE WATER - GTA 5 Gameplay","description":"I'm so proud of us. We made it through an entire Owen Wilson themed GTA gameplay and never once mentioned his botched suicide attempt....Dang it!\n\n\n\n\n\n\n\n\n\n\n\nWater World 3000 - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/1xjyBiO5R0GB_JJxHDhIiw#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/IIJERiiCHOII\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-water","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc6705bc-7d4e-48f1-b857-1943d80a8a05/sm/2371242-1503443402624-FH_Thumb_18_copy_22.png","duration":667,"publication_date":"2017-08-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-james-cameron-s-avatar-gameplay","changefreq":"weekly","video":[{"title":"2017:E36 - James Cameron's Avatar Gameplay","description":"Elyse had to spend an entire hour covered in dots in a green screen studio in order to bring you this uncut video.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-james-cameron-s-avatar-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5bc568f-b921-4dbe-83ab-49949ba50012/sm/1533704-1503423035197-Fullhaus_Thumbnail_Avatar.jpg","duration":3325,"publication_date":"2017-08-22T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps136","changefreq":"weekly","video":[{"title":"2017:E136 - WE ARE COMRADES","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cd2912f-9136-4319-ad43-e0264cb7911d/sm/2371242-1503356700406-DS_PostShow_Template_136.png","duration":3463,"publication_date":"2017-08-22T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds136","changefreq":"weekly","video":[{"title":"2017:E136 - NO MORE GAMING ON YOUTUBE? - Dude Soup Podcast #136","description":"Check out this week’s Blue Apron menu and get your first three meals free by going to http://www.blueapron.com/soupAnd get 15% off your MVMT watch today —with free shipping and free returns — by going to http://www.mvmt.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\nAND check out our new merch at http://bit.ly/fhmerch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the boys talk about YouTube's \"Ad-pocolypse 2\" and it's effects on content creators, as well as:11:15 - The future of YouTube as platform for adult-oriented content30:10 - What Makes us Hard, aka What We Watched on TV This Weekend42:00 - Star Wars trash: Holiday Special and 2 Ewok movies52:00 - Issues with creators moving to other platforms1:01:45 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bae01f0-03bc-4789-978b-9c90be0058df/sm/2371242-1503426480133-FH_Thumb_18_copy_20.png","duration":4427,"publication_date":"2017-08-22T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh-131","changefreq":"weekly","video":[{"title":"2017:E131 - SONIC: THE MOVIE? - Open Haus #131","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nUh oh. Rahul's back. Wait. Did you hear that? That was the sound of every female Funhaus fan ovulating simultaneously. Okay, fine. It was just me. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0e76893-b1f3-411a-8dbe-bd11ccccfe54/sm/2371242-1503101207002-Openhaus_Thumbnail131_1.jpg","duration":776,"publication_date":"2017-08-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo130","changefreq":"weekly","video":[{"title":"2017:E130 - FRENCH TICKLERS - Demo Disk Gameplay","description":"Bonjour. Je m'excuse. Je ne pouvais penser à rien d'ingénieux à écrire pour cette description. À la place d'une petite blague intelligente, j'ai inclus un discours d'un de mes films préférés. Amusez-vous.\n\n\n\n\n\n\n\n\n\n\"Ne vous rendez-vous compte? La prochaine fois que vous verrez le ciel, ce sera sur une autre ville. La prochaine fois que vous faites un test, ce sera dans une autre école. Nos parents, ils veulent les meilleures choses pour nous. Mais maintenant, ils doivent faire ce qui leur convient. Parce que c'est leur temps. Leur temps! Là-haut! En bas, c'est notre temps. C'est notre temps ici. Tout au long de la seconde, nous montons le seau de Troy.\"\n\n\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4752cc72-7c21-4892-852a-6a8a7f25a2bc/sm/2371242-1503096972312-FH_Thumb_18_copy_18.png","duration":958,"publication_date":"2017-08-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-pubg-adam-bruce","changefreq":"weekly","video":[{"title":"2017:E211 - UNKNOWN SOLDIERS - PUBG Gameplay with Adam and Bruce","description":"Come on! We're playing this game! We bought a ton of fidget spinners! We got that haircut with the really short sides! I used a gendered pronoun the other day and Bruce beat me with my own shoe! What the hell else do you kids want from us?! \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreene\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-pubg-adam-bruce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72167b85-f455-4d85-b255-5294be10f64e/sm/2371242-1503092500437-FH_Thumb_18_copy_19.png","duration":1107,"publication_date":"2017-08-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-house-party","changefreq":"weekly","video":[{"title":"2017:E214 - 4 GIRLS 1 RED CUP - House Party Gameplay","description":"At my first house party in high school, my friend's older brother demanded that I drink a single light beer. I couldn't even do that, so after about 6 sips I went into the bathroom and pretended to throw up as I poured it out into the toilet. Best years of my life. Wooo! Go Class of '98! Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-house-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e81934d9-61f3-4ba9-8015-e1da96d2f912/sm/2371242-1503088745803-FH_Thumb_18_copy_17.png","duration":939,"publication_date":"2017-08-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-clone-drone-in-the-danger-zone-gameplay","changefreq":"weekly","video":[{"title":"2017:E35 - Clone Drone in the Danger Zone Gameplay","description":"Sure, the Geonosis arena battle isn't nearly as long as this uncut gameplay, but it still feels like an eternity of suffering and terrible droid puns.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-clone-drone-in-the-danger-zone-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23bc91d3-27e2-419b-bac0-c599282f88df/sm/1533704-1503090285961-Fullhaus_Thumbnail_Clonebonezonedrone.jpg","duration":4267,"publication_date":"2017-08-18T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-avatars","changefreq":"weekly","video":[{"title":"2017:E19 - WHO NEEDS AVATAR 2? - Movie Podcast","description":"Today Adam and the gang watch the criminally underrated \"Aliens vs Avatars\" while they discuss what makes a bad movie good, as well as the admirable work it takes to complete even the most embarrassingly terrible of films.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-avatars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8caa2953-7371-4f00-ab50-8fe6bc3518ec/sm/2371242-1503019769962-FH_Thumb_18_copy_16.png","duration":2380,"publication_date":"2017-08-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-of-july","changefreq":"weekly","video":[{"title":"2017:E213 - BEST OF HEROES - Best Of Funhaus July 2017","description":"Funhaus Best Of videos are like those fleeting glimpses of nipple caught through the swirling chaos of scrambled late night cable. Ask your parents, kids.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/jonsmithhttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-of-july","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d535922-8ef5-4b75-8406-ed8b68dc5019/sm/2371242-1503020985641-FH_Thumb_TemplateJuly2017.jpg","duration":1161,"publication_date":"2017-08-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments84","changefreq":"weekly","video":[{"title":"2017:E84 - EMOJI MOVIE VS LEGO MOVIE? - Funhaus Comments #84","description":"I'm really glad that emojis have become more diverse lately. Until they came out with the little eggplant, I thought I was the only guy out there who's wiener was dark purple with a bright green tip.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1afdf1a9-cd4a-4607-8168-ffc17595fc6a/sm/2371242-1503005439607-FH_Thumb_Template84.jpg","duration":623,"publication_date":"2017-08-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-clone2","changefreq":"weekly","video":[{"title":"2017:E212 - ROBOT BATTLE ARENA - Clone Drone in the Danger Zone Gameplay Part 2","description":"Last week I asked Jacob how many Jedi he could name from The Battle of Geonosis. He proudly unleashed this list upon me:Mace Windu, Yoda, Anakin Skywalker, Obi Wan Kenobi, Plo Koon, Coleman Trebor, Luminara Unduli, Shaak Ti, Barriss Offee, Stass Allie, Kit Fisto, Bultar Swan, Saesee Tin, Ki Adi Mundi, Eeth Koth, Sora Bulq.If you guessed more than Jacob: Congratulations! You've won a chance to reexamine some pretty telling life choices!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-clone2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d834ee2-9e8e-446d-a0c4-957d5350c9f0/sm/2371242-1502915024333-FH_Thumb_18_copy_13.png","duration":873,"publication_date":"2017-08-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-masters-2","changefreq":"weekly","video":[{"title":"OS:E2 - OVERWATCH COMPETITIVE Ep. 2","description":"Everyone is so happy! It's all high-fives and back-pats in the Funhaus offices. There's no way this embarrassment of victories will ever end! Right?\n\n\n\n\n\n\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-masters-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/820f80fd-5965-43d6-b5b2-91890e97d595/sm/2371242-1502904151302-FunhausOWLogo1920OC_EP2.png","duration":1545,"publication_date":"2017-08-17T12:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-watch4","changefreq":"weekly","video":[{"title":"2017:E210 - WATCHMEN GET HARD - GTA 5 Gameplay","description":"Why even make a comic book adaptation of the League of Extraordinary Gentleman movie if you're not gonna respect the source material. Where's Tom Sawyer? Where's the 6-wheeled LXG-Mobile. Get your sh*t together, Alan Moore.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-watch4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d3dbd88-5368-4017-b0e4-bf8409879984/sm/2371242-1502846055482-FH_Thumb_18_copy_12.png","duration":930,"publication_date":"2017-08-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-shuffle-2","changefreq":"weekly","video":[{"title":"2017:E209 - MEGA PLEASE! - GTA 5 Gameplay","description":"What. Is. MEGAROUND? Why has it come here? What does it want from us? Who cowers in its presence? What does it have to do with Funhaus, ducks, and that jacked dog from Tiny Toons? The answer may shock you!!!*\n\n\n\n\n\n\n\n\n\n\n\n*answer will not shock you.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThumbnail from:>https://www.reddit.com/r/funhaus/comments/6r37af/i_liked_the_idea_so_much_that_i_make_my_version/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-shuffle-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b1ceb31-123d-4b21-ba84-94deb2200bcf/sm/2371242-1502845483478-FH_Thumb_18_copy_10.png","duration":1003,"publication_date":"2017-08-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps135","changefreq":"weekly","video":[{"title":"2017:E135 - WE ARE FAMILY","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4637bd33-0536-4425-953b-fb9370e8b251/sm/2371242-1502751246494-DS_PostShow_Template_135.png","duration":3482,"publication_date":"2017-08-15T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds135","changefreq":"weekly","video":[{"title":"2017:E135 - SONIC STILL GARBAGE? - Dude Soup Podcast #135","description":"Get your free Beach Body trial by texting \"Dude\" to 303030\n\nAnd get 20% off your Mack Weldon order by using code \"soup\" \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the boys celebrate the majesty of all things Sonic as well as:9:30 - Lawrence's hot new segment \"Thoughtables\" and talks about the power of nostalgia in media.25:15 - Lazy filmaking just to make a buck.36:30 - Bruce and Adam's crazy drunken weekends.54:50 - Exploitation movies.61:25 - Hard Nettin'. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTING:Lizard Force: https://www.instagram.com/lizard_force/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d91bbf32-a5c4-4421-97cf-f905a83bf937/sm/2371242-1502751534442-FH_Thumb_18_copy_14.png","duration":4257,"publication_date":"2017-08-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-minority","changefreq":"weekly","video":[{"title":"2017:E208 - FEAR THE FUTURE - Minority Report Gameplay","description":"Alright, alright, we heard you! You want more random guys with dad-bods in your Funhaus content. Fine, here you go. Jeez. You can all stop clogging up the comment threads now. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/_jacobfullertonhttp://twitter.com/omarcitohttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttps://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-minority","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9e7c5d6-553e-4076-96db-efafbe6573a5/sm/2371242-1502490047109-Minority_Report.jpg","duration":701,"publication_date":"2017-08-14T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh130","changefreq":"weekly","video":[{"title":"2017:E130 - NEXT STOP NORTH KOREA? - Open Haus #130","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHopefully by the time this video airs there will still be any kind of Korea. Or Guam. Or internet for that matter. I'm just gonna crawl into a 50's era refrigerator for the next few weeks. Enjoy the hilarity. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1564fd6-5b58-45d8-ba5e-93d5bb5b728d/sm/2371242-1502499526296-Openhaus_Thumbnail130.jpg","duration":868,"publication_date":"2017-08-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd129","changefreq":"weekly","video":[{"title":"2017:E129 - SEE MEN SOLVE CRIME - Demo Disk Gameplay","description":"\"The housewife was found in the doghouse, strangled with a leash, with Beggin' Strips shoved into every hole. I guess you could say she liked it a little too...\"*(puts on sunglasses)*\"... harsh.\"\"YEEAAAA-wait what?\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8cacb96-427f-4ea4-b0d8-819d5f4f8a5e/sm/2371242-1502502427764-FH_Thumb_18_copy_9.png","duration":996,"publication_date":"2017-08-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-trek3","changefreq":"weekly","video":[{"title":"2017:E207 - PROBING THE VOID - Star Trek Bridge Crew Gameplay Part 3","description":"In the spirit of equality we men chose to allow Elyse to act as captain during this episode, then promptly ignored her orders and told her what to do. Please don't call us feminist icons. Heroes will do just fine. Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-trek3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3da42a22-13f0-4e17-b084-c4ae5d5968d3/sm/2371242-1502475607968-FH_Thumb_18_copy_3.png","duration":957,"publication_date":"2017-08-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-avatar","changefreq":"weekly","video":[{"title":"2017:E206 - WE BLUE OURSELVES - Avatar Gameplay","description":"\"Shit! I forgot to write the scripts for next four Avatar films! Get me my mini-sub, a mayonnaise jar full of adderall, some FernGully slash-fiction, five cats, and a can of blue paint! I'll see you in a fortnight.\"\"God-speed, Mr. Cameron.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-avatar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75f63e4e-2b60-4116-aa2c-f051df4367e5/sm/2371242-1502469021159-FH_Thumb_18_copy_1.png","duration":639,"publication_date":"2017-08-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-edf-5","changefreq":"weekly","video":[{"title":"2017:E187 - ALIEN ANT FARM - Earth Defense Force 4.1 Gameplay","description":"As he came into the windowWas a sound of a crescendoHe came into her apartmentHe left the bloodstains on the carpetShe was sitting at the tableHe could see she was unableSo she ran into the bedroomShe was struck downIt was her doom Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-edf-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d51b8262-78a2-4f26-ba9f-ed453c428a99/sm/2371242-1500659359551-FH_Thumb_17_copy_15.jpg","duration":1131,"publication_date":"2017-08-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-pubgletsplay","changefreq":"weekly","video":[{"title":"2017:E204 - NO PANTS PARTY - PUBG Gameplay with Let's Play","description":"\"Alright, Burnie. What's this great new idea?\"\"Okay, so, you know that private deserted island nation I bought?\"\"Of course.\"\"Right, so we scatter weapons and stuff all over the place then drop all the Let's Play guys on it and force them to try and slaughter each other for survival!\"\"You mean like for an episode of Immersion?\"\"...\"\"Burni-\"\"Yes. Of course! Immersion. That's totally what I was talking about.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-pubgletsplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82780a59-5c52-4096-ab93-7f25f32d3f86/sm/2371242-1502405846950-FH_Thumb_18_copy_8.png","duration":1213,"publication_date":"2017-08-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-83","changefreq":"weekly","video":[{"title":"2017:E83 - EVERYBODY DIES! - Funhaus Comments #83","description":"\"What's the point of all this? Each day is more empty and tedious than the last. The most vicious among us thrive as fools attempt to nurture what little goodness remains. We struggle to find meaning in banal carnal pleasures while an indifferent world mocks our collecti-\"\"Just blow out your damn candles, Adam. The rest of the kids want some cake.\"  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83312645-a695-43aa-845d-48e1f456558e/sm/2371242-1502396272454-FH_Thumb_Template83-1.jpg","duration":444,"publication_date":"2017-08-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-fullhaus-perception","changefreq":"weekly","video":[{"title":"2017:E34 - Perception Gameplay","description":"Oh hey, how'd we get here again? Here's an uninterrupted hour of us making fun of blind people.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-fullhaus-perception","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebca0acd-c42c-4b98-a646-46f1a59f7434/sm/1533704-1502394611544-Fullhaus_Thumbnail_Perception.jpg","duration":3811,"publication_date":"2017-08-10T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-6","changefreq":"weekly","video":[{"title":"2017:E195 - ATTACK OF THE DRONES - Clone Drone in the Danger Zone Gameplay Part 1","description":"I just asked Jacob how many Jedi he could name from the Battle of Geonosis. He calmly took off his headphones, closed his eyes, and started silently ticking off names on his fingers. I've never seen him so serious or pensive in all my life. Take a guess and place your bets. The results will be in the description for CLONE DRONE IN THE DANGER ZONE Part 2, one week from today!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb40112c-ade3-4dd8-93ba-cc696b8aed94/sm/1533704-1501774702149-FH_Thumb_17_copy_1.png","duration":909,"publication_date":"2017-08-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/esports-ejects-overwatch-competitive-placements-overwatch-competitive-placements-episode-1","changefreq":"weekly","video":[{"title":"OS:E1 - OVERWATCH COMPETITIVE Ep. 1","description":"It all begins here. The boys begin their slow march towards competitive Overwatch greatness. Or a very quick march towards the end of their friendships. Either way it should be pretty entertaining. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/esports-ejects-overwatch-competitive-placements-overwatch-competitive-placements-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f89d500-93d3-4672-9b04-c376eccafd65/sm/2371242-1502236214294-FunhausOWLogo1920OC_EP1_1.png","duration":1659,"publication_date":"2017-08-10T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtawatch3","changefreq":"weekly","video":[{"title":"2017:E204 - DR. MANHATTAN EXPRESSWAY - GTA 5 Gameplay","description":"According to an article I just made up, sixty-eight percent of women don't even mind dating a man with E.D. I myself have done just fine over the years using a precise system of focused, intensive foreplay and apologies.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtawatch3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad567a43-44a4-4151-8910-7320002baa3b/sm/2371242-1502235035170-FH_Thumb_18_copy_6.png","duration":889,"publication_date":"2017-08-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtashuffle","changefreq":"weekly","video":[{"title":"2017:E205 - READY PLAYER DOG - GTA 5 Gameplay","description":"I was having a real fun time with this description until I looked up Benson Willems on Twitter and discovered that I have less of an online presence than a eunuch with no thumbs, crippling anxiety, and Lupus.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtashuffle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92e286dc-2831-49aa-a83c-5f63171fc9f5/sm/2371242-1502297550779-FH_Thumb_18_copy_7.png","duration":1042,"publication_date":"2017-08-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps134","changefreq":"weekly","video":[{"title":"2017:E134 - WE ARE JUST","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16921d38-f07d-45e4-a371-99931a5bf721/sm/2371242-1502144886537-DS_PostShow_Template.png","duration":3124,"publication_date":"2017-08-08T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds134","changefreq":"weekly","video":[{"title":"2017:E134 - DLC GONE TOO FAR? - Dude Soup Podcast #134","description":"Check out this week’s menu and get your first three meals free, with free shipping, by going to http://www.blueapron.com/soup\n\nAnd get 15% off today, with free shipping and free returns, by going to http://www.mvmt.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week that gang debates the merits of different DLC and loot systems as well as:9:15 - Having pets vs children49:45 - Weird trends in movies56:30 - A very heated installment of Hard Nettin'1:08:00 - Benefits of joining Rooster Teeth First\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Shadow of War Forum] Introducing the Market: https://community.wbgames.com/t5/Official-Announcements/Introducing-the-Market/m-p/1611183[Eurogamer] Shadow of War has a ranked online mode: http://www.eurogamer.net/articles/2017-08-07-shadow-of-war-has-a-ranked-online-mode\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTING:Knuckle's Family Tree - https://m.imgur.com/Lfn4jilWho wins? VOTE HERE - http://www.strawpoll.me/13653066\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c54af8f9-b09f-4ce5-b88d-c55518d8effe/sm/2371242-1502150398196-FH_Thumb_18_copy.png","duration":4350,"publication_date":"2017-08-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh129","changefreq":"weekly","video":[{"title":"2017:E129 - WE LOVE THE NINETIES? - Open Haus #129","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\nTo be honest, I was only 9 when the 90s ended, but does anybody remember Fruitopia? 'Twas the nectar of the gods, yet every time I speak of it, people become distant and abruptly end the conversation. Does nobody yearn for the divine taste of a cold \"Strawberry Passion Awareness or a Raspberry Psychic Lemonade?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovic\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/joelrubinhttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c135765-aa6a-4d9b-9a32-cf21afdb28c3/sm/2371242-1501891620033-Openhaus_Thumbnail129.jpg","duration":1352,"publication_date":"2017-08-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-space-jammed-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2017:E128 - SPACE JAMMED - Demo Disk Gameplay","description":"I took a trip to the official Warner Bros Space Jam website for some description material. I clicked on a green planet labelled \"Jump Station\" and found this actual message:\n\n\n\n\n\n\"Well, we've got no idea how you got here, but you've discovered a now-empty page of information. Congratulations. Now please go somewhere else. Thank you.\"\n\n\n\n\n\n\n\nYou're welcome, Space Jam. You're welcome.\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-space-jammed-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad0f88f6-99fa-4d4e-8d69-0c85579e0c8f/sm/2371242-1501891175521-Thumb_Demo_Disk_128_04.png","duration":949,"publication_date":"2017-08-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-trek2","changefreq":"weekly","video":[{"title":"2017:E198 - WORK ON YOUR CORE - Star Trek Bridge Crew Gameplay Part 2","description":"\"Captain Picard, The Borg have breached the hull! What do we do?\"\"Set the holodeck for the old west!\"\"... uh.\"\"The roaring twenties?\"\"Why would we go t-\"\"Oh! That Sherlock Holmes one!\"\"Captain, I d-\"\"Look, Number One, I'm just trying to keep everyone from masturbating in it. The custodial staff is ready to shoot me out of the airlock.\" Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-trek2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53b847f-c2d9-4932-b3fe-5f4d0d9a240d/sm/1533704-1501801345259-FH_Thumb_17_copy_2.png","duration":692,"publication_date":"2017-08-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gmod-murder-part-2","changefreq":"weekly","video":[{"title":"2017:E202 - CASTLE SLASHERS - Gmod Murder Gameplay Part 2","description":"Okay, technically it's a some kind of fort or prison, but what does it matter when trust is being tested within the weathered brick of its walls!\n\n\n\n\n\nFollow us on Twitter:\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gmod-murder-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d971ad65-3510-4930-90da-d75cb4b9e19b/sm/2371242-1501896112557-Gmod.png","duration":988,"publication_date":"2017-08-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwe8","changefreq":"weekly","video":[{"title":"2017:E197 - CAGED BEASTS - WWE 2K17 Gameplay Part 8","description":"The following real 1980's wrestling promo has been brought to you by Cocaine:\"But if you look in their eyes, man, have you seen the fear in all those little Hulksters? They realize that when I get Andre the Giant cinched up in the launch position, when I SLAM him through the Trump Plaza, brother!---from New York, down to Tampa, Florida, the fault line is gonna break off! And as Andre the Giant falls into the ocean!---as my next two opponents fall to the ocean floor and I pin ‘em, so will DONALD TRUMP and ALL THE HULKAMANIACS! But as Donald Trump hangs on to the top of the Trump Plaza, with his family under his other arm, as they SINK, to the BOTTOM OF THE SEA---THANK GOD Donald Trump’s a Hulkamaniac! He’ll know enough to let go of his materialistic possessions, hang on to the wife and kids, DOG PADDLE with his life all the way to safety! But Donald, if somethin’ happens, if you run outta gas, and all those little Hulkamaniacs, just hang on to the LARGEST BACK in the world, and I’ll dog paddle us, backstroke all of us to safety!\"\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/XavierWoodsPhD\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwe8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8f852f4-cc4c-49ce-aa1f-30c940d0fe0a/sm/1533704-1501801310995-FH_Thumb_17_copy_3.png","duration":997,"publication_date":"2017-08-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-emoji-movie-filmhaus","changefreq":"weekly","video":[{"title":"2017:E18 - \"Emoji Movie is What's Wrong with Hollywood.\" - Movie Podcast","description":"This podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday, the gang talks about the zenith of American film making, The Emoji Movie. And yes, I did scoff at the reviews while simultaneously sending a kissy face followed by three blue hearts and a hot dog to my girlfriend.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-emoji-movie-filmhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7ef0665-2ccf-4d79-a980-7696d58b8770/sm/1533704-1501806937440-FH_Thumb_17_copy_4.png","duration":2131,"publication_date":"2017-08-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-funhaus-comments-82","changefreq":"weekly","video":[{"title":"2017:E82 - WE HATE MOVIES? - Funhaus Comments #82","description":"We know you're out there, Frank Marshall. We know that you're watching, and we know that you've got Congo deleted scenes hidden under your floorboards. You'd better believe it, buster. We'll findja, we'll stick a crowbar under your rug and, by golly, we'll see a gorilla shoot a gosh dern laser beam.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-funhaus-comments-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efbdc05e-96be-4b0e-841a-8effe765bea4/sm/1533704-1501795164446-FH_Thumb_Template82.jpg","duration":630,"publication_date":"2017-08-03T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wolfenstein-2-gameplay","changefreq":"weekly","video":[{"title":"2017:E201 - WHEELCHAIR ASSASSIN - Wolfenstein 2 Gameplay","description":"Take heed, viewers. Learn the lesson that these hapless Nazis could not. There's nothing more deadly than a stalwart, wheelchair-bound American wielding a pair of Nazi robot death lasers.\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wolfenstein-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7173c0f-c4ff-4700-827d-573de4adaaac/sm/1533704-1501715147913-FH_Thumb_17_copy.png","duration":1345,"publication_date":"2017-08-03T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-gunrunning-part-3","changefreq":"weekly","video":[{"title":"2017:E200 - WUSSY WATCHMEN - GTA 5 Gameplay","description":"\"Psychological impotence is where erection or penetration fails due to thoughts or feelings (psychological reasons) rather than physical impossibility; this is somewhat less frequent but can often be helped. Notably, in psychological impotence, there is a strong response to placebo treatment. Erectile dysfunction can have severe psychological consequences as it can be tied to relationship difficulties and masculine self-image.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-gunrunning-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08dadb6b-db97-4db1-9c2b-4132bf1cb913/sm/1533704-1501710379117-FH_Thumb_TemplateNiteOwl.jpg","duration":941,"publication_date":"2017-08-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-5-vagina-race","changefreq":"weekly","video":[{"title":"2017:E199 - STENCH TRENCH - GTA 5 Gameplay","description":"You came for some good ol' fashioned Grand Theft Auto? Sorry, buckeroo. It's time you got a proper education on the anatomy of the human female. Lucky for you, there are three trained professionals here to take you on a journey.\n\n\n\n\n\n\n\n\n\n\n\nClimb to the Top -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/vpV8i1smVESLla-2iBidJg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-5-vagina-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/246cfdcb-0da1-476e-b0ff-cc8a95575ba6/sm/1533704-1501548763513-FH_Thumb_17_copy_9.jpg","duration":598,"publication_date":"2017-08-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-talking-stalkings-season-3","changefreq":"weekly","video":[{"title":"2017:E33 - Talking Stalkings - Season 3","description":"Believe it or not, there's too much good content in a single episode of Talking Stalkings to have a video of acceptable length, so seeing it in its uncut glory makes for the perfect viewing experience.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-talking-stalkings-season-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ba0b971-049e-43ec-992a-b8324a89b104/sm/1533704-1501626126483-Fullhaus_Thumbnail_TS.jpg","duration":3983,"publication_date":"2017-08-01T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude-soup-133","changefreq":"weekly","video":[{"title":"2017:E133 - JOEL NEEDS A JOB? - Dude Soup Podcast #133","description":"Get your first Dollar Shave Club Box for only $5 at http://www.dollarshaveclub.com/dude\n\nAnd get your Stitch Fix at http://www.stitchfix.com/dudesoup and receive 25% off when you keep all 5 items in your box!\n\n\n\n\n\n\n\nFamed TV Production Assistant, Joel Rubin, joins us as we talk about: \n\n\n\n2:46 - Our future children/not children \n\n\n\n13:03 - Identifying with the audience \n\n\n\n23:22 - Joel writing for Disney \n\n\n\n48:11 - Mind Freak: Real life questing \n\n\n\n53:50 - Hard Netting\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTING:Ivan Dorin: https://www.youtube.com/user/shotztoxic\n\n\n\n\n\n\n\nPassion Dust: https://www.prettywomaninc.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude-soup-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3fc63d8-f971-4843-a579-d764f83405d3/sm/1533704-1501551312532-FH_Thumb_17_copy_8.jpg","duration":4027,"publication_date":"2017-08-01T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-post-show-133","changefreq":"weekly","video":[{"title":"2017:E133 - WE ARE WATCHMEN","description":"This week, you lovely folk get your comments and art looked at by a famous TV writer/production assistant!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-post-show-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea421338-6688-4b80-af1b-d89fd2bb41ed/sm/1533704-1501608065307-DS_PostShow_Template8217.jpg","duration":2891,"publication_date":"2017-08-01T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh128","changefreq":"weekly","video":[{"title":"2017:E128 - COLLEGE LIFE SUCKS? - Open Haus #128","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\nWhenever I get wistful for my old college dorm days I'll just crack a warm Natty Ice, stalk a few women on MySpace, and masturbate under a blanket in a room full of people I hate.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttps://twitter.com/CrikMaster\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3b9ac99-98c3-481b-8e46-16ff3ac0f31a/sm/2371242-1501290115390-Openhaus_Thumbnail128.jpg","duration":643,"publication_date":"2017-07-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo127","changefreq":"weekly","video":[{"title":"2017:E127 - DIRTY DANCING - Demo Disk Gameplay","description":"They'll let celebrities get away with anything as long as they can dance. Chris Brown beat the holy christ of Rihanna, Michael Jackson got to diddle all those kids, and they barely bat an eye when Channing Tatum torched that hospital full of war orphans.  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b5f6763-c0a1-45c1-814d-8be80d510aea/sm/2371242-1501295515757-FH_Thumb_17_copy_4.png","duration":958,"publication_date":"2017-07-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-trek1","changefreq":"weekly","video":[{"title":"2017:E194 - BOLDLY GOING NOWHERE - Star Trek Bridge Crew Gameplay Part 1","description":"\"Well, Jim, according to these readings you've contracted Bajoran Chlamydia, Romulan Herpes, Ferengi Papilloma Virus, Borg Crabs, Cardassian Gonorrhea, and AIDS.\"\"... Like, 'Space AIDS' or 'Vulcan AIDS' or something?\"\"No. Just regular AIDS.\"\"Shit.\"\n\n \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-trek1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc115117-3b16-4b49-8204-10eb2b328b58/sm/2371242-1501192648263-FH_Thumb_17_copy.png","duration":1328,"publication_date":"2017-07-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwe7","changefreq":"weekly","video":[{"title":"2017:E193 - XAVIER WOODS VS THE TROLL! - WWE 2K17 Gameplay Part 7","description":"It's the match-up you've all been waiting for: The winner of Most Popular Wrestler 2006, Comeback of Year 2015, and three WWE Tag Team Championship titles vs \"That guy who yells a lot about stuff on that one YouTube channel where they play video games, kind of\"!\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/XavierWoodsPhD\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwe7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7e696db-43bc-4e3b-a321-886eb3e7a734/sm/2371242-1501191283669-FH_Thumb_17_1.png","duration":605,"publication_date":"2017-07-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gmod-day5","changefreq":"weekly","video":[{"title":"2017:E196 - CUTTHROAT ISLAND - Gmod Murder Gameplay Part 1","description":"\"Thank you all for coming to my private island paradise. In the past, each of you crossed me in some way, yet still agreed to journey here tonight, chasing empty dreams of wealth and power. As you can see from the many heads hung upon these walls, I am an avid and fearless hunter. But these simple beasts no longer quench my blood-lust. I yearn to pursue far more formidable game. Some might call it the most dangerous game. The game known as m-\"\"Bears!\"\"Wha... no. Ma-\"\"Sharks?\"\"No! Dammit let m-\"\"It's lions guys. Kings of the jung-\"\"Hippos kill more people than anything.\"\"Please let me fi-\"\"How would he get a hippo on this island?\"\"I read about this spider in Australia tha-\"\"Forget it. I'm going to bed. The boat leaves in 20. Do please be on it.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/JoshtheFlanaganhttps://twitter.com/walktx1\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gmod-day5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29af535d-672b-4c9f-8da0-a0bd1ffabd21/sm/2371242-1501179458166-FH_Thumb_17_copy_26.jpg","duration":911,"publication_date":"2017-07-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-strafe","changefreq":"weekly","video":[{"title":"2017:E192 - DOOMED TO FAIL - Strafe Gameplay","description":"The 90's sucked. Everybody was so scared of AIDS that they just buried themselves in flannel, denim, and body hair and refused to have sex anyone without notarized blood test results in their wallet. And don't forget, a baggie of clean blood was REALLY expensive back then!\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-strafe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/944d6186-4612-4aa4-aed2-d347ad93a2d3/sm/2371242-1501116727100-FH_Thumb_17_copy_21.jpg","duration":1436,"publication_date":"2017-07-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments81","changefreq":"weekly","video":[{"title":"2017:E81 - HACKING IS COOL? - Funhaus Comments #81","description":"If you ever meet Steven Suptic, whatever you do, do NOT attempt to give him a hug. Not only is he disgusted by human contact, but I tried it once and his ribs crumbled like a handful of Pringles.  \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3b86710-f9ab-4d30-8f25-0620c45c7d80/sm/2371242-1501181479916-FH_Thumb_Template81.jpg","duration":538,"publication_date":"2017-07-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-perception","changefreq":"weekly","video":[{"title":"2017:E189 - SEE NO EVIL - Perception Gameplay","description":"We here at Funhaus would like to extend our deepest apologies to all of our visually-impaired... uh... viewers. The opinions of Lawrence Sonntag are his and his alone, and do not reflect the views of Funhaus, Rooster Teeth, or any of our parent companies. That being said, the story about James in New York was pretty funny. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-perception","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19f7772d-5fdb-4ae0-a66d-d742219854f9/sm/2371242-1501110732861-FH_Thumb_17_copy_28.jpg","duration":1036,"publication_date":"2017-07-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtawatch2","changefreq":"weekly","video":[{"title":"2017:E190 - WHO WATCHES THE WATCHMEN? - GTA 5 Gameplay","description":"\"The streets are extended gutters and the gutters are full of blood and when the drains finally scab over, all the vermin will drown. The accumulated filth of all their sex and murder will foam up about their waists and all the whores and politicians will look up and shout 'Save us!'... and I'll whisper 'no'.\"\"...Uuuh, right. Look, Mr. Moore, that's great and all but I'm kind of in the weeds here. Was that gonna be soup, salad, or fries with your grilled cheese?\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtawatch2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca8544d-a559-4407-9317-3bc2dd4dc3a8/sm/2371242-1501022767338-FH_Thumb_17_copy_24.jpg","duration":951,"publication_date":"2017-07-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-cammy-dives-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E21 - Cammy dives into DEATH BATTLE!","description":"The Killer Bee of Street Fighter fame is ready for a fight!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-cammy-dives-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/372683c0-3ed8-449b-b16f-aee2fa405614/sm/2031125-1470440121206-1_Cammy.jpg","duration":181,"publication_date":"2016-08-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-who-get-s-kicked-out-of-hell-who-is-harley-quinn","changefreq":"weekly","video":[{"title":"S2:E8 - Who Gets KICKED OUT Of Hell?!? | Who Is Harley Quinn","description":"Harley Quinn is way more than a sidekick!","player_loc":"https://roosterteeth.com/embed/who-is-season-2-who-get-s-kicked-out-of-hell-who-is-harley-quinn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeb30282-da12-4b56-8500-6a1ea473780a/sm/2097098-1470461996820-WhoisHarleyQuinnThumb.jpg","duration":451,"publication_date":"2016-08-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-ten-epic-action-hero-moments-in-video-games","changefreq":"weekly","video":[{"title":"S1:E190 - Ten EPIC ACTION HERO MOMENTS in Video Games!!","description":"These epic video game set pieces made us pee our pants. In a good way.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-ten-epic-action-hero-moments-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c7dce68-e700-49ba-ac39-ba8e0ee84c88/sm/2056966-1470238028842-uncharted_4_drake_smile.0.jpg","duration":571,"publication_date":"2016-08-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-sakura-vs-rin-tohsaka-naruto-vs-fate-stay-night","changefreq":"weekly","video":[{"title":"S1:E7 - Sakura VS Rin Tohsaka (Naruto VS Fate/stay Night)","description":"It's ninjutsu versus magic as these two leading ladies duke it out, arena style!\n\n\n\nThis episode's animator is Mark Zhang! Follow him on Twitter: https://twitter.com/M_rkZh_ng\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n► Wiz/Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n► Lead Animator – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-sakura-vs-rin-tohsaka-naruto-vs-fate-stay-night","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6d56ffa-5255-4700-ba73-c302eb12bed9/sm/2031125-1470162462993-DBX_005.jpg","duration":138,"publication_date":"2016-08-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-yooka-not-believe-how-much-fun-we-re-having-available-now-51","changefreq":"weekly","video":[{"title":":E34 - Yooka-not Believe How Much Fun We're Having! | Available Now #51","description":":E34 - Yooka-not Believe How Much Fun We're Having! | Available Now #51","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-yooka-not-believe-how-much-fun-we-re-having-available-now-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feb17831-4e64-41fd-804c-a5472ffdb7bf/sm/2097098-1470173161676-08_02_16_AvailableNow.jpg","duration":4158,"publication_date":"2016-08-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-tell-us-your-dreams","changefreq":"weekly","video":[{"title":"S1:E259 - Extended Cut: Tell Us Your Dreams!","description":"What goes on in the minds of ScrewAttack when they sleep?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-tell-us-your-dreams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/342e67d1-5dfb-48ad-836f-c35a863aca4b/sm/2097098-1470097595671-08_01_16_ExtendedCut.jpg","duration":592,"publication_date":"2016-08-02T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-bolen-is-a-pretty-princess","changefreq":"weekly","video":[{"title":"S1:E258 - Bolen Is A Pretty Princess","description":"When a random script generator is involved, who knows where SideScrollers is going!\n\nWe're coming Pewdiepie! Help ScrewAttack get to 100 Million Trillion subscribers. It all starts with you: http://bit.ly/SubtoScrewAttack\n\nStuff you should do:►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Support us by become FIRST Members on our website & getting all sorts of perks while doing so: http://bit.ly/SponsorSA\n\n►Be the envy of everyone by picking up some DEATH BATTLE & ScrewAttack clothing: http://bit.ly/NewScrewAttackStore\n\n►Connect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n►Stalk us on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-bolen-is-a-pretty-princess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3d6da9b-6272-4345-989f-2c97b8bf52fd/sm/2097098-1470097438460-080116_SideScrollers.jpg","duration":3012,"publication_date":"2016-08-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screw-attack-illustrated-season-1-a-beer-for-my-carseat","changefreq":"weekly","video":[{"title":"S1:E6 - A Beer for My Carseat??","description":"Sometimes people are just stupid.","player_loc":"https://roosterteeth.com/embed/screw-attack-illustrated-season-1-a-beer-for-my-carseat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c7cf5d7-9206-4b83-8998-202b8093c073/sm/2056961-1469740932005-Screen_Shot_2016-07-28_at_4.18.09_PM.png","duration":74,"publication_date":"2016-07-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-season-1-video-game-vault-wave-race-64-nintendo-64","changefreq":"weekly","video":[{"title":"S1:E437 - Video Game Vault - Wave Race 64 (Nintendo 64)","description":"A classic from the N64 era, will we ever see another Wave Race? If you enjoy the Video Game Vault series we have a book based on it! It's excellent reading. Learn more about it here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/video-game-vault-season-1-video-game-vault-wave-race-64-nintendo-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfd613c-473c-4618-b0f0-9a90e56d85e3/sm/2056961-1469739373014-WaveRace64.jpg","duration":102,"publication_date":"2016-07-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-available-now-podcast-we-happy-few","changefreq":"weekly","video":[{"title":":E33 - What's Up with \"We Happy Few?\"","description":"We get a first glimpse at one of the most talked about games of E3 2016!","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-available-now-podcast-we-happy-few","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aef31ea0-9e71-41bb-b516-3c497a9604db/sm/2056961-1469585511326-WeHappyFew_2_ExitBobby_PreAlpha.jpg","duration":3634,"publication_date":"2016-07-27T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-comic-con-was-no-joke-side-scrollers-544","changefreq":"weekly","video":[{"title":"S1:E256 - Comic-Con Was No Joke! | SideScrollers #544","description":"There were A LOT of awesome trailers at Comic-Con this year! Our sponsors at MVMT are going to give you 15% off your entire purchase by going to http://www.mvmtwatches.com/sidescrollers. And huge thanks to Leaping Tiger, which is available on iOS/Android and web at http://www.leaping-tiger.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-comic-con-was-no-joke-side-scrollers-544","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/556fa85e-b3fc-46a0-9238-affe2e888d2e/sm/2097098-1469499026139-SideScrollersThumb.jpg","duration":3216,"publication_date":"2016-07-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-sex-on-camera-extended-cut","changefreq":"weekly","video":[{"title":"S1:E257 - Sex on Camera | Extended Cut","description":"Windows 10 gave Sam a weird lock screen today.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-sex-on-camera-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23fa3355-c6e2-4d9b-8104-13cf55742adf/sm/2097098-1469500335413-SideScrollersExtendedThumb.jpg","duration":779,"publication_date":"2016-07-26T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-aquaman-controls-zombie-sea-p-e-o-p-l-e","changefreq":"weekly","video":[{"title":"S2:E7 - AQUAMAN CONTROLS ZOMBIE SEA PEOPLE??","description":"You thought you knew him but he was so much more than you ever thought.","player_loc":"https://roosterteeth.com/embed/who-is-season-2-aquaman-controls-zombie-sea-p-e-o-p-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6482579-e9ec-4516-8c64-5a05f65e8f86/sm/2056961-1468944707229-07_14_16_AquamanThumb.jpg","duration":459,"publication_date":"2016-07-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-10-reasons-mario-s-an-asshole","changefreq":"weekly","video":[{"title":"S1:E189 - 10 Reasons Mario's an Asshole","description":"Craig breaks down why video game's biggest champion is also a giant dick.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-10-reasons-mario-s-an-asshole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/911f7327-a596-4cdb-bb6b-bcfa6d5a72cc/sm/2056961-1469126840661-071916_EvilMario.jpg","duration":297,"publication_date":"2016-07-21T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-dbx-saitama-vs-kenshiro-one-punch-man-vs-fist-of-the-north-star","changefreq":"weekly","video":[{"title":"S1:E6 - DBX – Saitama VS Kenshiro (One Punch Man VS Fist of the North Star)","description":"One Punch Man dukes it out with the Fist of the North Star, where either one's victory is just a single punch away!\n\n\n\nVoice of Genos: Howard Wang - https://twitter.com/TheHowardWang\n\nCasting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup\n\nRecorded at Sound Cadence Studios - https://twitter.com/SoundCadence\n\n\n\nFollow the creators of DEATH BATTLE & DBX\n\n► Wiz & Showrunner – Ben Singer: https://twitter.com/ScrewAttackBen\n\n► Boomstick – Chad James: https://twitter.com/ScrewAttackChad\n\n► Lead Animator – Torrian Crawford: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-dbx-saitama-vs-kenshiro-one-punch-man-vs-fist-of-the-north-star","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97783d7b-a3e8-4f53-bbc2-265d2eecb1d6/sm/2056961-1468978412129-DBX_004.jpg","duration":161,"publication_date":"2016-07-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-evo-hype-is-real-available-now-49","changefreq":"weekly","video":[{"title":":E32 - EVO Hype Is Real! | Available Now #49","description":"Chad and Torrian let us live their wonderful weekend!","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-evo-hype-is-real-available-now-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94acd6cb-1c4f-48f5-bc2f-2552bcc03320/sm/2097098-1468962433103-071916_AvailableNow.png","duration":3338,"publication_date":"2016-07-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-high-school-is-scandalous-extended-cut","changefreq":"weekly","video":[{"title":"S1:E255 - High School Is Scandalous! | Extended Cut","description":"Our hosts weren't Plastics in high school, and it shows","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-high-school-is-scandalous-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cbcd640-9850-4ec3-9094-dce6bb24ebf9/sm/2097098-1468894678990-7_18_16_ExtendedCut.png","duration":872,"publication_date":"2016-07-19T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-we-should-make-a-magazine-side-scrollers-543","changefreq":"weekly","video":[{"title":"S1:E254 - Top 3 Sex Positions GO! SideScrollers #543","description":"We know what guys want to read!\n\n\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch everything we do early: http://bit.ly/SponsorSA►Become one of us: http://bit.ly/SubtoScrewAttack►Look Sexy: http://bit.ly/NewScrewAttackStore\n\n►Connect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n►Connect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam\n\nWatch our new series GameAttack - http://bit.ly/GameAttackPLWatch DBX - http://bit.ly/DBXPlaylistWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylistWatch ScrewAttack Top 10's - http://bit.ly/SATop10PlaylistWatch our podcast SideScrollers - http://bit.ly/SideScrollersPlaylistWatch Five Fun Facts - http://bit.ly/FFFPlaylistWatch One Minute Melee - http://bit.ly/OMMPlaylistWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylistWatch The Best Ever - http://bit.ly/BestEverPlaylist","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-we-should-make-a-magazine-side-scrollers-543","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/041f3df3-e639-44a2-a41d-ac1b6d54c3ce/sm/2097098-1468894151175-071816_SideScrollers.png","duration":3139,"publication_date":"2016-07-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-agent-carolina-enters-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E20 - Agent Carolina Enters DEATH BATTLE!","description":"S1:E20 - Agent Carolina Enters DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-agent-carolina-enters-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaa2b7b7-a529-4609-9340-1efbfd4ba608/sm/2056961-1468705328472-CarolinaThumb.jpg","duration":99,"publication_date":"2016-07-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-season-1-video-game-vault-super-c-n-e-s","changefreq":"weekly","video":[{"title":"S1:E436 - Video Game Vault - Super C (NES)","description":"It's not often the NES version of a game was better than the arcade but that's the case with Super C.","player_loc":"https://roosterteeth.com/embed/video-game-vault-season-1-video-game-vault-super-c-n-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ac2e6c3-9f4d-490d-b4b3-598df7de65d9/sm/2056961-1468705778355-SuperCThumb.jpg","duration":120,"publication_date":"2016-07-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screw-attack-illustrated-season-1-snorting-grandpa","changefreq":"weekly","video":[{"title":"S1:E5 - Snorting Grandpa","description":"If you are you are the worst person in the world. Rot in Hell you piece of trash.","player_loc":"https://roosterteeth.com/embed/screw-attack-illustrated-season-1-snorting-grandpa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5384302-1d70-4475-99ab-c7cf3f8b74bd/sm/2056961-1468705062417-Illustrated.jpg","duration":80,"publication_date":"2016-07-17T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-world-of-warcraft-trolls","changefreq":"weekly","video":[{"title":"S1:E188 - Top 10 World of Warcraft Trolls","description":"Chad recalls the legendary tales of the biggest trolls in the history of World of Warcraft.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-world-of-warcraft-trolls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1b2106b-7b27-494f-a5e2-b913a7ef4873/sm/2056961-1468362484441-Top10WoWTrollThumb.jpg","duration":599,"publication_date":"2016-07-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-we-re-video-ballin","changefreq":"weekly","video":[{"title":":E31 - We're (Video) Ballin'","description":"The game that has made Sean Hinz so horny he can't sit down is finally released.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-we-re-video-ballin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/897d3ea9-1d7f-49c8-909d-8046ea1d3b6a/sm/2056961-1468359988725-ANThumb.jpg","duration":4014,"publication_date":"2016-07-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-the-meta-enters-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E19 - The Meta Enters DEATH BATTLE!","description":"Red vs Blue's evil badass is here to cause havoc.","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-the-meta-enters-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8048ce65-4426-4255-bea2-82ecdeb358f1/sm/2056961-1468348997730-MetaPreview.jpg","duration":138,"publication_date":"2016-07-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-pokemon-go-and-vr-porn-conventions","changefreq":"weekly","video":[{"title":"S1:E253 - Pokemon GO and VR Porn Conventions","description":"What's the deal with Pokemon GO? What's the deal with Porn VR conventions being shut down?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-pokemon-go-and-vr-porn-conventions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0afaa4cd-3f0d-4580-89c7-11c6eac8ccdf/sm/2056961-1468330073892-07_11_16_SSThumb.jpg","duration":3471,"publication_date":"2016-07-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-first-member-exclusive-foreign-salty-licorice-taste-test","changefreq":"weekly","video":[{"title":"S1:E252 - FIRST Member Exclusive - Foreign Salty Licorice Taste Test","description":"The guys wrangle some new faces in to expose them to regret.\n\nBe a FIRST Member and watch this episode here: http://bit.ly/SponsorSA","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-first-member-exclusive-foreign-salty-licorice-taste-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a37e43ca-369f-44bc-bb50-d293420cb7d7/sm/2056961-1468292237742-07_11_16_Extended.jpg","duration":630,"publication_date":"2016-07-12T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-season-1-video-game-vault-super-smash-bros-n64","changefreq":"weekly","video":[{"title":"S1:E435 - Video Game Vault - Super Smash Bros (N64)","description":"One of the best games ever made? Yes. In this VGV that never aired on YouTube from a few years back, Nick relives the greatness of this classic that was nearly never made.\n\n\n\nIf you enjoy the Video Game Vault, we have a book based on the series! Learn more about it here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/video-game-vault-season-1-video-game-vault-super-smash-bros-n64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0a5f220-2695-4d11-b1ea-0bba3b723181/sm/2056961-1467924486258-VGVSmashThumb-2.jpg","duration":129,"publication_date":"2016-07-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-the-famous-amiibo-cockfight-at-sgc-2016","changefreq":"weekly","video":[{"title":"S1:E938 - The Famous AMIIBO COCKFIGHT at SGC 2016","description":"The Cockfight is back and it's more bizarre than ever. Filmed live at SGC 2016, you should probably come to SGC one year.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-the-famous-amiibo-cockfight-at-sgc-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b97ca75-91aa-4bf4-8076-8a20c3ccbde4/sm/2056961-1467924257104-CockfightThumb.jpg","duration":5880,"publication_date":"2016-07-08T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-smash-bros-tournament-with-jirard-the-completionist","changefreq":"weekly","video":[{"title":"S1:E937 - SMASH BROS Tournament with Jirard the Completionist!","description":"Jirard hit SGC and put together a wicked Smash Bros tournament!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-smash-bros-tournament-with-jirard-the-completionist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e330068-44b4-4ea6-9ecc-2c78a4683d2e/sm/2056961-1467924140057-JirardThumb3.jpg","duration":3746,"publication_date":"2016-07-08T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-screw-attack-vs-kinda-funny-from-sgc-2016","changefreq":"weekly","video":[{"title":"S1:E936 - ScrewAttack vs Kinda Funny from SGC 2016","description":"We chose to put Greg Miller in our thumbnail because of how stupid he looks. Doesn't he look stupid? Man, he's so stupid.\n\n\n\nRecorded Live at SGC 2016. Kinda Funny & ScrewAttack intros have been removed to avoid copyright strikes. Umm… you should probably come to SGC sometime.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-screw-attack-vs-kinda-funny-from-sgc-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d103a8ac-1abe-4740-91da-87c2c132f09b/sm/2056961-1467923977758-ScrewAttackvsKindaFunnyThumb-2.jpg","duration":4096,"publication_date":"2016-07-07T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-stuttering-craig-s-gameshow-of-awesomeness","changefreq":"weekly","video":[{"title":"S1:E935 - Stuttering Craig's GAMESHOW OF AWESOMENESS","description":"BIG MONEY! BIG PRIZES! I LOVE IT! Join Craig and Bryan as they hosts the greatest game show of all-time at SGC 2016.\n\n\n\nThanks to Pizza Hut for sponsoring this year's game show!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-stuttering-craig-s-gameshow-of-awesomeness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c1c59e0-4397-491b-baca-e31878257311/sm/2056961-1467923847131-CraigGameshowThumb-4.jpg","duration":4733,"publication_date":"2016-07-07T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-dbx-amy-rose-vs-king-dedede-kirby-vs-sonic-the-hedgehog","changefreq":"weekly","video":[{"title":"S1:E5 - DBX – Amy Rose VS King Dedede (Kirby VS Sonic the Hedgehog)","description":"It’s hammer time like never before! Can you nail down the victor between this pink hedgehog and over-excessive penguin?\n\n\n\nThis episode’s animator is Luis Crus (CVAnimation)! Follow him on Twitter: https://twitter.com/CVAnimation \n\nCREDITS Additional Animation: Larry “PsychoDino” Hall - https://twitter.com/ThePsychoDino Original Music: Acid-Notation - https://www.youtube.com/watch?v=i6_NJbtyvQY \n\nFollow the creators of DEATH BATTLE & DBX ► Wiz/Director - Ben: https://twitter.com/ScrewAttackBen ► Boomstick - Chad: https://twitter.com/ScrewAttackChad ► Lead Animator - Torrian: https://twitter.com/AnimatedTorrii","player_loc":"https://roosterteeth.com/embed/dbx-season-1-dbx-amy-rose-vs-king-dedede-kirby-vs-sonic-the-hedgehog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe0e4f19-1f65-440f-bb5e-9b47644571ad/sm/2056961-1467755322631-DBX_003.jpg","duration":137,"publication_date":"2016-07-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-mario-party-after-dark-sgc-2016-full-game","changefreq":"weekly","video":[{"title":"S1:E934 - Mario Party After Dark - SGC 2016 Full Game","description":"Recorded Live at SGC 2016 - Gus from Rooster Teeth & Greg from Kinda Funny join a drunk Sam and Chad from ScrewAttack to play the most intense game of Mario Party ever. Check your friendships at the door.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-mario-party-after-dark-sgc-2016-full-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f87c200-bd6b-43a7-bf28-7f9603bf2db8/sm/2056961-1467752630230-MarioPartyAfterDarkThumb2.jpg","duration":5538,"publication_date":"2016-07-06T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-mario-kart-8-don-t-drink-drive","changefreq":"weekly","video":[{"title":"S1:E933 - Mario Kart 8: Don't Drink & Drive","description":"DISCLAIMER - We do not condone drinking and driving in any way shape or form IRL or otherwise, please drink responsibly. With all that said, LETS DO SOME DRIVING AND DRINKING!!!!\n\n\n\nRecorded Live at SGC 2016. If we learned one lesson while playing this game it's that you shouldn't play this game... ever. Featuring Pro Jared, Jirard the Completionist, brentalfloss, and Craig, Chad, Bryan, Shaun and Sam from ScrewAttack.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-mario-kart-8-don-t-drink-drive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e46d664-8d7d-4e6c-855a-8588a0d1a765/sm/2056961-1467752246249-MarioKartDDDThumb.jpg","duration":4799,"publication_date":"2016-07-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-13","changefreq":"weekly","video":[{"title":"E:E17 - 10 DEATH BATTLE Facts You Probably Don't Know!","description":"Originally aired live at SGC 2016. You may be a DEATH BATTLE fan, but did you know all these crazy facts about the show??\n\n\n\nThanks to Marissa for voicing! - https://twitter.com/LentiSoup","player_loc":"https://roosterteeth.com/embed/death-battle-extras-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77c6c384-c2ea-404c-b7ad-cd57e29b9430/sm/2056961-1467754898094-10FactsDBThumb.jpg","duration":240,"publication_date":"2016-07-05T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-the-worst-nintendo-product-ever","changefreq":"weekly","video":[{"title":"S1:E35 - The Worst Nintendo Product Ever","description":"It's awful. Just... awful.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-the-worst-nintendo-product-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/207ec99c-2482-4bba-8f43-b6db6b6d221c/sm/2056961-1467349648021-07_01_16_DeskofThumb.jpg","duration":235,"publication_date":"2016-07-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-mewtwo-vs-shadow","changefreq":"weekly","video":[{"title":"S3:E6 - Mewtwo VS Shadow","description":"The ultimate life forms from Pokemon and Sonic square off! It's a battle of awesome power and pure edginess! Love DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttack \n\nWe greatly appreciate your support!\n\n Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter \n\nCredits Wiz: Ben Singer - https://twitter.com/ScrewAttackBen Boomstick: Chad James - https://twitter.com/ScrewAttackChad Writer/Project Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam Writer: Jessica Davis - https://twitter.com/jldtweets Animator: Donald Gagnon - https://twitter.com/Donimations Editor: John Francis McCullagh -https://twitter.com/johnfmfilms Voice of Mewtwo: Chris “Kirbopher” Niosi - https://twitter.com/Kirbopher Voice of Shadow: Curtis “Takahata101” Arnott - https://twitter.com/Takahata101 Casting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup Battle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-mewtwo-vs-shadow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbe0c99a-8271-4123-8609-823098778fd8/sm/2031125-1467172816232-DB_063.jpg","duration":815,"publication_date":"2016-06-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-hype-is-real","changefreq":"weekly","video":[{"title":"S1:E251 - The HYPE is Real","description":"We're hours away from the biggest party in video games and we are HYPED.\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-hype-is-real","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b3ffd12-683b-43e3-852d-e6659f6343a1/sm/2056961-1467084058486-06_27_16_SideScrollersTHumb.jpg","duration":3267,"publication_date":"2016-06-28T05:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-season-1-pok-mon-snap","changefreq":"weekly","video":[{"title":"S1:E434 - Pokémon Snap","description":"To celebrate the release of our new Video Game Vault book, we've brought back a limited 12 episode run of ScrewAttack's classic VGV series. This time we share a VGV that's never aired on YouTube based on Pokémon Snap!\n\n\n\n►Pick up our book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/video-game-vault-season-1-pok-mon-snap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/249cd298-294f-4854-8044-6a9a8d6ce302/sm/2056961-1467047782861-06_27_16_VGVSnap_Thumb.jpg","duration":180,"publication_date":"2016-06-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-headshots-with-death-b-a-t-t-l-e-s-boomstick","changefreq":"weekly","video":[{"title":"S1:E187 - Top 10 Headshots with DEATH BATTLE's Boomstick","description":"Boomstick is here to countdown his personal favorite headshots in video games.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-headshots-with-death-b-a-t-t-l-e-s-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5b0fdf0-633b-4934-926f-88963c8e90af/sm/2056961-1466529836439-06_24_2016_Top10_HeadshotsThumb.jpg","duration":396,"publication_date":"2016-06-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-mighty-number-nope","changefreq":"weekly","video":[{"title":":E30 - Mighty Number Nope","description":"Website Exclusive Show - Mighty Number 9 is officially out and all the guys want to do is play Overwatch.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-mighty-number-nope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9471c65e-af9e-46c6-9985-21e06aebdb0d/sm/2056961-1466610673322-06_22_16_ANThumb.jpg","duration":4014,"publication_date":"2016-06-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-ronald-mc-donald-vs-colonel-sanders","changefreq":"weekly","video":[{"title":"S1:E4 - Ronald McDonald VS Colonel Sanders","description":"This fast food feud boils into a super-sized helping of whoop-ass! No rules, no analysis, just bloodshed!\n\n\n\nThis episode's animator is Luis Cruz (CVAnimation)! Follow him on Twitter: https://twitter.com/CVAnimation\n\n\n\nFollow the creators of Death Battle & DBX\n\n► Wiz - Ben: https://twitter.com/ScrewAttackBen\n\n► Boomstick - Chad: https://twitter.com/ScrewAttackChad\n\n► Lead Animator - Torrian: https://twitter.com/AnimatedTorrii\n\n\n\nWant to see DBX episodes FIRST before anyone else? Become a Sponsor! Get tons of perks and support us in a big way: http://bit.ly/SponsorSA/","player_loc":"https://roosterteeth.com/embed/dbx-season-1-ronald-mc-donald-vs-colonel-sanders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acb68d13-322c-4719-995f-8950a3cc8397/sm/2056961-1466560670368-DBX_002.jpg","duration":128,"publication_date":"2016-06-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-we-re-crying-man-tears","changefreq":"weekly","video":[{"title":"S1:E249 - We're Crying Man-Tears","description":"Inspired by sports, Craig, Chad and Sam discuss the times they last got emotional about something they had no control over. When was the last time you man-cried?\n\n\n\nSend us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-we-re-crying-man-tears","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccc10bbc-8b24-461c-a152-e26626943d2a/sm/2056961-1466479924241-06_20_16_SideScrollers_Thumb.jpg","duration":3871,"publication_date":"2016-06-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-chad-s-man-tears-about-homeward-bound","changefreq":"weekly","video":[{"title":"S1:E250 - Chad's Man Tears about Homeward Bound","description":"What's up with Chad trying to protect the ending of Homeward Bound to Craig?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-chad-s-man-tears-about-homeward-bound","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f86f513-e2be-4cd6-af2e-cc54bfc40346/sm/2056961-1466483314634-06_20_16_ExtendedCut_Thumb.jpg","duration":706,"publication_date":"2016-06-21T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-season-1-video-game-vault-castlevania-n-e-s","changefreq":"weekly","video":[{"title":"S1:E433 - Video Game Vault - Castlevania (NES)","description":"To celebrate the release of our new Video Game Vault book, we've brought back a limited 12 episode run of ScrewAttack's classic VGV series. The first episode this time around? Craig revisits the game the first VGV was about in 2006: Castlevania!\n\n\n\n►Pick up our book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/video-game-vault-season-1-video-game-vault-castlevania-n-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4105b479-a074-40d8-8be0-badc278909a3/sm/2056961-1466484756729-06_20_16_VGV_Thumb3.jpg","duration":170,"publication_date":"2016-06-21T05:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-shadow-enters-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E18 - Shadow Returns to DEATH BATTLE!","description":"Shadow enters DEATH BATTLE to take on the most powerful Pokémon ever created.\n\n\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n►We're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n►Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\n►Connect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\n►Connect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam\n\n\n\nWatch our new series GameAttack - http://bit.ly/GameAttackPL\n\nWatch DBX - http://bit.ly/DBXPlaylist\n\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\n\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\n\nWatch our podcast SideScrollers - http://bit.ly/SideScrollersPlaylist\n\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\n\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\n\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\n\nWatch The Best Ever - http://bit.ly/BestEverPlaylist","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-shadow-enters-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d618c495-d571-479a-ae7a-ff2aaf957dd5/sm/2056961-1466394972063-06_19_16_DBShadowPreview.jpg","duration":120,"publication_date":"2016-06-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-the-flash-abe-lincoln-nuclear-explosions-comics-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E34 - The Flash + Abe Lincoln + Nuclear Explosions = Comics | Desk of DEATH BATTLE","description":"Have we told you that comics are f'n insane?\n\nThanks to g1 Liam Grey to the idea for this episode!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-the-flash-abe-lincoln-nuclear-explosions-comics-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bd764e9-4861-4a2b-a8df-bee6237179cb/sm/2056961-1466186662380-06_17_16_Deskof_Thumb.jpg","duration":266,"publication_date":"2016-06-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-do-we-overrate-the-dead-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E248 - Do We Overrate the Dead? | SideScrollers Extended Cut","description":"SPONSOR VIDEO - Is it possible we put too much stock in people's greatness after they die?\n\n\n\nTo watch SideScrollers Extended Cut consider becoming a Sponsor: bit.ly/SponsorSA","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-do-we-overrate-the-dead-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c6b6611-beff-4e52-bd41-e45c89fc8545/sm/2056961-1465738484014-06_12_16_Extended_Thumb.jpg","duration":634,"publication_date":"2016-06-15T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-warcraft-the-movie-hardcore-analysis-side-scrollers-539","changefreq":"weekly","video":[{"title":"S1:E247 - Warcraft the Movie Hardcore Analysis | SideScrollers #539","description":"Get our initial impressions coming off of the premier of Blizzard's Hollywood debut.\n\n\n\nThanks for MVMT Watches for sponsoring this episode! Go to http://MVMTWatches.com/SideScrollers to get a 15% off your entire purchase.\n\n\n\nDon't forget to use #H1Z1Attack and visit the game’s website (H1Z1.com/KotK) or follow King of the Kill on Twitter (@H1Z1KotK) to keep up with the latest news on the game.\n\n\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n►We're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n►Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n►Connect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n►Connect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam\n\nWatch our new series GameAttack - http://bit.ly/GameAttackPL\n\nWatch DBX - http://bit.ly/DBXPlaylist\n\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\n\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\n\nWatch our podcast SideScrollers - http://bit.ly/SideScrollersPlaylist\n\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\n\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\n\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\n\nWatch The Best Ever - http://bit.ly/BestEverPlaylist","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-warcraft-the-movie-hardcore-analysis-side-scrollers-539","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a8f16a8-df5c-4c32-8490-5b0e47a04de5/sm/2117071-1465912289607-Warcraft.jpg","duration":3317,"publication_date":"2016-06-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-mewtwo-enters-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E17 - Mewtwo Enters DEATH BATTLE!","description":"Pokémon's Mewtwo is the next combatant to enter the battle!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-mewtwo-enters-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5331b03d-4823-4fb6-a900-ea2387d566f0/sm/2056961-1465737934044-06_12_16_DBMewTwo_Thumb.jpg","duration":137,"publication_date":"2016-06-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-ultron-will-never-die","changefreq":"weekly","video":[{"title":"S2:E6 - Ultron Will NEVER Die","description":"Learn the many forms of Ultron including Santa Ultron? Santron?!??!","player_loc":"https://roosterteeth.com/embed/who-is-season-2-ultron-will-never-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfa2be7b-f273-4e6e-aa6e-c564a25091b0/sm/2056961-1465736607525-06_12_16_WhoisUltron_Thumb.jpg","duration":390,"publication_date":"2016-06-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-million-dollars-but-would-you-taste-your-own-dick-million-dollars-but-live-stream-archive","changefreq":"weekly","video":[{"title":"S1:E932 - Million Dollars But... Would You Taste Your Own Dick? | Million Dollars But.... Live Stream Archive","description":"You sure do learn a lot about people when interesting scenarios are put in front of you.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-million-dollars-but-would-you-taste-your-own-dick-million-dollars-but-live-stream-archive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aba97b3a-6ccd-42f1-9c45-7bda0ee01181/sm/2056961-1465572204800-MDBLiveThumb.jpg","duration":6528,"publication_date":"2016-06-10T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-will-overwatch-last-e3-2016-predictions","changefreq":"weekly","video":[{"title":":E29 - Will Overwatch Last & E3 2016 Predictions","description":"On this special edition of Available Now on YouTube, the guys chat about how the biggest event in gaming is changing and whether Overwatch has legs for a long run.\n\nThanks to Warcraft for sponsoring this episode of Available Now. Watch the trailer here: http://www.warcraftmovie.com and get tickets here: http://www.warcraftmovietickets.com","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-will-overwatch-last-e3-2016-predictions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/156be57f-540d-4ee9-9bb3-6561a6a8d7df/sm/2056961-1465570803141-ANThumb_copy_2.jpg","duration":4740,"publication_date":"2016-06-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-reasons-e3-sucks-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E186 - Top 10 Reasons E3 SUCKS with Evil Craig","description":"Evil Craig is back and has his eyes squarely on gaming's biggest show.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-reasons-e3-sucks-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce9e65e6-92d4-4aa7-9c05-fee4a52a2316/sm/2056961-1465399268999-06_08_16_Top10E3.jpg","duration":287,"publication_date":"2016-06-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-master-chief-vs-jango-fett-halo-vs-star-wars","changefreq":"weekly","video":[{"title":"S1:E3 - Master Chief VS Jango Fett (Halo VS Star Wars)","description":"Episode 1 premiere! In the first official episode of DBX, two armored up space titans square off! No rules, no analysis, just bloodshed!\n\n\n\nThis episode's awesome animator is Mark Zhang! Follow him on Twitter: https://twitter.com/M_rkZh_ng\n\n\n\nOriginal music by Brandon Yates: https://twitter.com/bmichaelyates\n\n\n\nWant to see DBX episodes 4 days before everyone else sees them on ScrewAttack and YouTube? Become a Sponsor! Get tons of perks and support us in a big way: http://bit.ly/SponsorSA/","player_loc":"https://roosterteeth.com/embed/dbx-season-1-master-chief-vs-jango-fett-halo-vs-star-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc39a5ef-b0ae-45cc-a5aa-bfb24382e1b9/sm/2056961-1465338497803-DBX_001.jpg","duration":141,"publication_date":"2016-06-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-season-1-sgc-2016-theatrical-promo","changefreq":"weekly","video":[{"title":"S1:E201 - SGC 2016 Theatrical Promo","description":"Hey look, we made a :30 spot that will be appearing in some theaters in the Dallas/Fort Worth area. We hope to see you at SGC in July. Get more info here http://www.RTXEvent.com","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-season-1-sgc-2016-theatrical-promo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d12e14f6-06d4-4ab4-b914-cd9e87598806/sm/2056961-1465338642210-SGCPromoThumb.jpg","duration":30,"publication_date":"2016-06-07T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-over-merchandising-passion","changefreq":"weekly","video":[{"title":"S1:E245 - Over Merchandising Our Passions","description":"Bolen arrives to wonder how something we're passionate about turned into something so merchandisable.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-over-merchandising-passion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da737071-a3b1-4b96-9b29-c48413a87230/sm/2056961-1465270257292-06_06_16_ScrewAttackExtendedThumb.jpg","duration":1300,"publication_date":"2016-06-07T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-screw-attack-s-sex-symbol","changefreq":"weekly","video":[{"title":"S1:E244 - ScrewAttack's Sex Symbol","description":"Craig, Chad and Sam hit on some important things this week...\n\nThanks to Warcraft for sponsoring this episode of SideScrollers. Watch the trailer here: www.warcraftmovie.com and get tickets here: www.warcraftmovietickets.com\n\n\n\nSend us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...\n\n\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n►We're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n►Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\n►Connect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\n►Connect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam\n\nWatch our new series GameAttack - http://bit.ly/GameAttackPL\n\nWatch DBX - http://bit.ly/DBXPlaylist\n\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\n\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\n\nWatch our podcast SideScrollers - http://bit.ly/SideScrollersPlaylist\n\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\n\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\n\nWatch The Desk of DEATH BATTLE - http://bit.ly/Des","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-screw-attack-s-sex-symbol","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/498b3ecf-9c21-441e-a8fb-044712531562/sm/2056961-1465270031196-06_06_16_SSThumb.jpg","duration":3544,"publication_date":"2016-06-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-joker-vs-sweet-tooth","changefreq":"weekly","video":[{"title":"S3:E5 - Joker VS Sweet Tooth","description":"Two\n crazy clowns enter the arena, and only one will survive! Will DC \nComics' Joker have the last laugh against the violent champion of \nTwisted Metal?\n\nThis episode of sponsored by Audible.com! Click the link to start your 30 day free trial today! http://www.audible.com/battle\n\n\n\nLove DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttack We greatly appreciate your support!\n\n\n\nFind out who the next fighters will be squaring off against by following us on social media:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nCredits\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\nWriter & Project Lead: Nick Cramer - https://twitter.com/THENervousNick\n\nAnimator: Torrian Crawford - https://twitter.com/AnimatedTorrii\n\nVoice of the Joker: Lucas Schuneman - https://twitter.com/LucasTheVANinja\n\nVoice of Sweet Tooth: Gianni Matragrano - https://twitter.com/Gianni_VM\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA\n\nCasting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup\n\nVideo Editor: Gerardo Mejia - https://twitter.com/HybridRain\n\nSound Design: Noel Wiggins - http://twitter.com/NOELWIGGINSfilm\n\nCuistom Sweet Tooth model: Nicholas Kaighen - https://twitter.com/nicholaskaighen","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-joker-vs-sweet-tooth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dada701-4897-491e-a5ee-1f36c3ec8b94/sm/2056961-1465149846463-DB_062.jpg","duration":1128,"publication_date":"2016-06-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screw-attack-illustrated-season-1-seppukuma-will-kill-y-o-u","changefreq":"weekly","video":[{"title":"S1:E4 - Seppukuma Will KILL YOU!","description":"Watch out for the most disturbing teddy bear ever.","player_loc":"https://roosterteeth.com/embed/screw-attack-illustrated-season-1-seppukuma-will-kill-y-o-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31fe1c7a-498a-43e0-bbf3-e63700f9b8cb/sm/2056961-1464984655387-06_03_16_IllustratedThumb-2.jpg","duration":72,"publication_date":"2016-06-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-stupid-superhero-disguises","changefreq":"weekly","video":[{"title":"S1:E33 - STUPID Superhero Disguises","description":"Apparently a trench coat is like camouflage??","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-stupid-superhero-disguises","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faa5cfe9-3298-4f3e-bd0e-5740ab74f1a0/sm/2056961-1464982613688-06_03_16_DeskofThumb.jpg","duration":239,"publication_date":"2016-06-04T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-hyped-games-that-sucked","changefreq":"weekly","video":[{"title":"S1:E185 - Top 10 Hyped Games That SUCKED","description":"Which game is the biggest let down ever? We know and we'll tell you.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-hyped-games-that-sucked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e8f2226-fa14-4fd7-9f6f-db1f2668cedb/sm/2056961-1464880409727-06_02_16_Top10HypedThumb.jpg","duration":627,"publication_date":"2016-06-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-dbx-joins-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E2 - DEATH BATTLE presents DBX on ScrewAttack!","description":"A new DEATH BATTLE series is coming next week! Death Battle Exhibition... or DBX! DBX gets right to the fight without having to relying on months of tedious research and analysis. It's all for fun!\n\n\n\nGet your sponsorship to watch DBX and DEATH BATTLE early! http://screwattack.roosterteeth.com/sponsorship/de...\n\n\n\nFollow the awesome animators!\n\n- Donald Gagnon - https://twitter.com/Donimations\n\n- Larry \"PsychoDino\" Hall - https://twitter.com/ThePsychoDino\n\n- Luis Cruz (CVAnimation) - https://twitter.com/CVAnimation\n\n- Kel-chan - http://kel-chan.newgrounds.com/\n\n- Mark Zhang - https://twitter.com/M_rkZh_ng\n\n- Shaq Focus - https://twitter.com/KiXx_VI\n\n- Torrian Crawford - https://twitter.com/AnimatedTorrii\n\n\n\nFollow the show's creators!\n\n- Ben Singer - https://twitter.com/ScrewAttackBen\n\n- Chad James - https://twitter.com/ScrewAttackChad\n\n\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n►We're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n►Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\n►Connect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\n►Connect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/dbx-season-1-dbx-joins-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69d5e734-27f0-4cb1-8744-260a7d547bcf/sm/2056961-1464830635602-DBX_Trailer.jpg","duration":81,"publication_date":"2016-06-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-overwatching-is-a-way-of-life","changefreq":"weekly","video":[{"title":":E28 - Overwatching is a Way of Life","description":"It's consumed the ScrewAttack HQ and all the guys want to do is play and talk about it.\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.comAsk us things on Twitter using the hashtag #AvailableNow","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-overwatching-is-a-way-of-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043f0979-0892-4c2a-9488-ed003a8dcaa3/sm/2056961-1464741858949-AVTHumb.jpg","duration":3516,"publication_date":"2016-05-31T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-sam-s-horrible-wedding-experience","changefreq":"weekly","video":[{"title":"S1:E243 - Sam's Horrible Wedding Experience","description":"SPONSOR exclusive video - Watch out for the chord...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-sam-s-horrible-wedding-experience","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/733a48f2-46f6-4622-89a7-37ae29a41ff1/sm/2056961-1464665558848-05_30_16_SideScrollersExtendedThumb.jpg","duration":646,"publication_date":"2016-05-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-over-fanning-of-nostalgia","changefreq":"weekly","video":[{"title":"S1:E242 - \"Over-Fanning\" of Nostalgia","description":"We all love things from our past but is possible we get our e-dicks in the way of being reasonable when talking about them?\n\nThanks for MVMT Watches for sponsoring this episode! Go to MVMTWatches.com/SideScrollers to get a 15% off your entire purchase.\n\n\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n►Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\n►Connect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\n►Connect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-over-fanning-of-nostalgia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15991a50-ea4c-400b-9582-2356268c10e6/sm/2056961-1464658784923-05_30_16_SideScrollersThumb.jpg","duration":3130,"publication_date":"2016-05-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-sweet-tooth-blazes-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E16 - Sweet Tooth Blazes into DEATH BATTLE!","description":"The most wicked ice cream man in history is ready to make The Joker feel pain.\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-sweet-tooth-blazes-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fdbb43c-7a97-401c-a53c-2c9b208573b1/sm/2056961-1464398552988-05_27_16_SweetToothPreviewThumb.jpg","duration":124,"publication_date":"2016-05-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-amiibos-will-die-at-sgc-2016","changefreq":"weekly","video":[{"title":"S1:E931 - Amiibos Will DIE at SGC 2016!","description":"Come witness the death of countless Amiibo at ScrewAttack's World Famous Amiibo Cockfight at SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-amiibos-will-die-at-sgc-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bdf9ba9-977e-48c7-9219-c0debf060e6c/sm/2056961-1464325268703-05_26_16_CockfightThumb-3.jpg","duration":85,"publication_date":"2016-05-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-casey-jones-was-a-drunk","changefreq":"weekly","video":[{"title":"S2:E5 - Casey Jones was a Drunk??","description":"Teenage Mutant Ninja Turtle's Casey Jones sure has had a tough go of it.\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/who-is-season-2-casey-jones-was-a-drunk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5080eb22-dc1b-466c-9eb5-33be85ed91fe/sm/2056961-1464397984914-05_27_16_WhoisCaseyJonesThumb.jpg","duration":398,"publication_date":"2016-05-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screw-attack-illustrated-season-1-s-t-o-r-m-p-o-c-a-l-y-p-s-e","changefreq":"weekly","video":[{"title":"S1:E3 - STORMPOCALYPSE!!","description":"Chad's house has been ruined by Texas weather that will kill you. Way to go stupid weather. Now he has to go through insurance to get his claim and that's a paid in the ass. Wait! You also f'ed up his car? You're a bastard weather. See, that's why everyone hates you.","player_loc":"https://roosterteeth.com/embed/screw-attack-illustrated-season-1-s-t-o-r-m-p-o-c-a-l-y-p-s-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a493f4f-792d-454e-9268-dc48234d271c/sm/2056961-1464277701710-05_26_16_IllustratedStormThumb.jpg","duration":67,"publication_date":"2016-05-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screw-attack-illustrated-season-1-bland-kid","changefreq":"weekly","video":[{"title":"S1:E2 - Bland Kid","description":"You ever know that you just want to punch... or photoshop out of pictures? Sam did.","player_loc":"https://roosterteeth.com/embed/screw-attack-illustrated-season-1-bland-kid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fd4e39a-d78d-4030-8595-00f3dcb61aae/sm/2056961-1464277590541-05_26_16_IllustratedBlandKidThumb.jpg","duration":77,"publication_date":"2016-05-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-the-completionist-pro-jared-funhaus-brentalfloss-and-more-at-sgc-2016","changefreq":"weekly","video":[{"title":"S1:E930 - The Completionist, ProJared, Funhaus, brentalfloss and MORE at SGC 2016","description":"See all your favorites and more at SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-the-completionist-pro-jared-funhaus-brentalfloss-and-more-at-sgc-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/891d711d-e23f-4e1d-8fac-83f7e562b2fa/sm/2056961-1464274830616-SGCGuestThumb.jpg","duration":67,"publication_date":"2016-05-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-battle-cries-in-gaming","changefreq":"weekly","video":[{"title":"S1:E184 - Top 10 Battle Cries in Gaming","description":"Shaun and Craig team up to deliver the biggest and best yells and deliveries in the history of video games. PS - Shaun's an idiot.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-battle-cries-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97cece80-f361-4796-8089-f03c41688689/sm/2056961-1464154758162-Top10BattlecriesThumb.jpg","duration":473,"publication_date":"2016-05-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-can-craig-last-45-minutes-in-the-matrix","changefreq":"weekly","video":[{"title":":E27 - Can Craig Last 45 Minutes in the Matrix??","description":"Craig joins the guys for his first extended session with the Oculus Rift. Will he vomit?\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.comAsk us things on Twitter using the hashtag #AvailableNow","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-can-craig-last-45-minutes-in-the-matrix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40b158fb-1d74-4db2-87af-769c1fca93b4/sm/2056961-1464127624960-ANThumb.jpg","duration":2961,"publication_date":"2016-05-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-save-up-to-75-on-screw-attack-games","changefreq":"weekly","video":[{"title":"S1:E929 - Save up to 75% on ScrewAttack Games!","description":"Pick up all the ScrewAttack Games super cheap!\n\n\n\nAngry Video Game Nerd II: ASSimilation on Sale\n\nHumbleStore ► http://bit.ly/HumbleAVGN2\n\nSteam ► http://bit.ly/AVGN2onSteam\n\n\n\nAVGN Adventures on Sale\n\nHumbleStore ► http://bit.ly/HumbleAVGN\n\nSteam ► http://bit.ly/AVGNASteam\n\nWii U ► http://bit.ly/WiiUAVGN\n\n3DS ► http://bit.ly/3DSAVGN\n\n\n\nDisorder on Sale\n\nHumbleStore ► http://bit.ly/HumbleDisorder\n\nSteam ► http://bit.ly/SteamDisorder","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-save-up-to-75-on-screw-attack-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d053317-b111-45bb-b7c0-e300998b7b02/sm/2056961-1464112415816-ScrewAttack-Games-SaleThumb.jpg","duration":61,"publication_date":"2016-05-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-eating-cow-pooper-soup","changefreq":"weekly","video":[{"title":"S1:E241 - Eating Cow Pooper Soup?","description":"The guys get you all the details on SGC 2016 as well as face a dilemma: do they eat the soup made from cow pooper? Who says yes and who says no way?\n\n►SGC and RTX 2016 is in July! Come hang out with for a weekend: http://bit.ly/SGCRTX2016\n\n►We have a book based on the Video Game Vault series! Learn more about it here: http://bit.ly/ScrewAttackN64Book\n\n►Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-eating-cow-pooper-soup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f87464f5-01b9-4aaa-bf57-abcd3f338ba6/sm/2056961-1464056966315-05_23_16_SideScrollersThumb2.jpg","duration":2970,"publication_date":"2016-05-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-chad-james-has-body-issues","changefreq":"weekly","video":[{"title":"S1:E240 - Chad James Has Body Issues","description":"Why does he have red marks near his junk?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-chad-james-has-body-issues","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a256d7ff-31b2-4412-9db2-d0b12991fb94/sm/2056961-1464042473550-05_23_16_SideScrollersExtended.jpg","duration":659,"publication_date":"2016-05-24T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-the-joker-laughs-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E15 - The Joker Laughs into DEATH BATTLE!","description":"Why so serious DEATH BATTLE??\n\n\n\nPre-order our new Video Game Vault book on Amazon here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-the-joker-laughs-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb9d0dcf-b6c5-4c8a-852c-5ed91442ceb7/sm/2056961-1463970190614-05_22_16_JokerPreview.jpg","duration":138,"publication_date":"2016-05-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screw-attack-illustrated-season-1-furious-george","changefreq":"weekly","video":[{"title":"S1:E1 - Furious George","description":"You can't escape Furious George. He's coming for you. And he will kill you.\n\n\n\nThanks to g1 MarioMiyamoto for animating this fine piece of insanity.","player_loc":"https://roosterteeth.com/embed/screw-attack-illustrated-season-1-furious-george","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/836bc2be-5fa9-4685-b7c8-bea080fe9709/sm/2056961-1463842305313-05_18_16_IllustratedThumb.jpg","duration":103,"publication_date":"2016-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-he-man-s-derpy-sidekicks-and-bad-guys","changefreq":"weekly","video":[{"title":"S1:E32 - He-Man's Derpy Sidekicks and Bad Guys","description":"Umm... What? Who? Why do these guys exist?","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-he-man-s-derpy-sidekicks-and-bad-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc984a0d-69b1-407b-a922-886eb06e0c82/sm/2056961-1463840993693-05_21_16_Deskof_Thumb.jpg","duration":333,"publication_date":"2016-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-drunken-movie-script-generator","changefreq":"weekly","video":[{"title":"S1:E239 - Drunken Movie Script Generator","description":"Chad, Sam and Austin were already drunk from drinking on SideScrollers so why not have them read a randomly generator movie script?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-drunken-movie-script-generator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a21817-98b1-4927-bbb2-48a0217d92af/sm/2056961-1463589047239-ScriptGeneratorThumb.jpg","duration":1033,"publication_date":"2016-05-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-many-things-wrong-with-sam","changefreq":"weekly","video":[{"title":"S1:E238 - The Many Things Wrong with Sam","description":"Jessica thinks Sam has things wrong with him. She's right.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-many-things-wrong-with-sam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1121e35-cba0-44bb-9d1a-ebba7fbc09f0/sm/2056961-1463588433726-ExtendedCutTHumb.jpg","duration":906,"publication_date":"2016-05-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-p-ies-in-video-game","changefreq":"weekly","video":[{"title":"S1:E183 - Top 10 P#$$ies in Video Game","description":"We're counting down the Top 10 cats.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-p-ies-in-video-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0e3119a-d9fd-4b6e-b2ca-8a5fa58b4370/sm/2056961-1463582751320-05_17_16_Top10Thumb.jpg","duration":501,"publication_date":"2016-05-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-what-s-with-the-doom-hate","changefreq":"weekly","video":[{"title":":E26 - What's with the Doom Hate?","description":"How come people gotta waste all Doom's flava?\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.comAsk us things on Twitter using the hashtag #AvailableNow","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-what-s-with-the-doom-hate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f80cb16-265b-4d1b-9b0b-e9997e71b4a1/sm/2056961-1463521419505-ANThumbDoom.jpg","duration":3019,"publication_date":"2016-05-17T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-guys-get-drunk-craig-gets-mad","changefreq":"weekly","video":[{"title":"S1:E237 - The Guys Get Drunk & Craig Gets Mad","description":"The booze starts flowing early this week and so does Craig's anger.\n\n\n\nSend us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...\n\n\n\nSGC in happening soon: bit.ly/SGCRTX2016Evil Craig's Hate shirt: bit.ly/NewScrewAttackStore","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-guys-get-drunk-craig-gets-mad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be00069c-5f2d-48f4-bcf0-40c8c2a81660/sm/2056961-1463452329778-05_16_16_SideScrollersThumb.jpg","duration":3653,"publication_date":"2016-05-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-flash-vs-quicksilver-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S3:E4 - Flash VS Quicksilver","description":"Love DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttackWe greatly appreciate your support!\n\n\n\nWatch the Warcraft trailer at http://www.warcraftmovie.com & grab your tickets on Fandango now! \n\nFind out who the next fighters will be squaring off against by following us on social media: Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter \n\nCredits Wiz: Ben Singer - https://twitter.com/ScrewAttackBen Boomstick: Chad James - https://twitter.com/ScrewAttackChad Writer & Project Lead: Sam Mitchell - https://twitter.com/ScrewAttackSam Writer: Jessica Davis - https://twitter.com/jldtweets Animator: Shaq Focus - http://kixx6.deviantart.com Animation Assistant: Larry “PsychoDino” Hall – https://twitter.com/ThePsychoDino Editor: John Francis McCullagh - https://twitter.com/johnfmfilms Editor: Gerardo Mejia - https://twitter.com/HybridRain\n\nVoice of Flash: Anthony Bowling - https://twitter.com/Bowling4day Voice of Quicksilver: Edwyn Tiong - https://twitter.com/Omahdon Casting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup Battle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-flash-vs-quicksilver-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20be1bc1-26c4-4087-a176-47bb9402f240/sm/2056961-1463331586228-DB_061.jpg","duration":1081,"publication_date":"2016-05-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-apocalypse-killed-dracula","changefreq":"weekly","video":[{"title":"S2:E4 - Apocalypse Killed Dracula??","description":"Everyone's favorite blue bad guy Apocalypse has had a tough go of it.","player_loc":"https://roosterteeth.com/embed/who-is-season-2-apocalypse-killed-dracula","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/095a0ea7-ca9b-4c82-8914-d8012cf8d88f/sm/2056961-1463195812169-05_12_16_WhoisApocThumb.jpg","duration":456,"publication_date":"2016-05-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-hilariously-violent-games","changefreq":"weekly","video":[{"title":"S1:E182 - Top 10 Hilariously Violent Games","description":"Violence isn't funny but video game violence sure is || Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n\n\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\nConnect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nConnect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-hilariously-violent-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f711745f-f3d8-4405-82fe-b16ae59cdea4/sm/2056961-1462978383652-05_10_16Top10Thumb.jpg","duration":490,"publication_date":"2016-05-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-is-uncharted-4-going-to-get-the-attention-it-deserves","changefreq":"weekly","video":[{"title":":E25 - Is Uncharted 4 Going to Get the Attention It Deserves?","description":"Did you know Available Now is ScrewAttack.com Exclusive Show?? Brutally real questions are asked this week on ScrewAttack's weekly gaming podcast, Shaun, Sean and Sam.","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-is-uncharted-4-going-to-get-the-attention-it-deserves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81eefc31-33ca-4360-9b41-6cc6480cee00/sm/2056961-1462914009090-ANThumb.jpg","duration":3372,"publication_date":"2016-05-10T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-craig-s-nintendo-confession","changefreq":"weekly","video":[{"title":"S1:E236 - Craig's Nintendo Confession","description":"Thanks to Tera for sponsoring this episode! Check it out here: http://bit.ly/TERAScrewAttack \n\nCraig's finally ready to admit what the internet thought it knew all along\n\n\n\nWatch SideScrollers Live and get DEATH BATTLE and all our videos early as a Sponsor: http://bit.ly/SponsorSA\n\n\n\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\nConnect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nConnect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-craig-s-nintendo-confession","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32e8e367-dedf-4f22-8935-0608df2a9ff9/sm/2056961-1462853574945-SideScrollersThumb.jpg","duration":3336,"publication_date":"2016-05-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-baby-graffiti-and-arrogant-ghosts","changefreq":"weekly","video":[{"title":"S1:E235 - Baby Graffiti and Arrogant Ghosts","description":"SPONSOR VIDEO - In this extended version of SideScrollers, Nick brings back a segment from a LONG time ago: the random plot generator.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-baby-graffiti-and-arrogant-ghosts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d2c6a6c-8df5-4c0e-8f8c-9cd077e4edb6/sm/2056961-1462833554319-ExtendedThumb.jpg","duration":786,"publication_date":"2016-05-10T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-quicksilver-bolts-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E14 - Quicksilver bolts into DEATH BATTLE!","description":"How will Quicksilver do against The Flash? || Watch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n\n\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\nConnect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nConnect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-quicksilver-bolts-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01ea9931-5ebc-4126-9a5e-47a3f7f48aae/sm/2056961-1462570732037-QuicksovlerPreview.jpg","duration":101,"publication_date":"2016-05-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-mulan-is-weak-af","changefreq":"weekly","video":[{"title":"S1:E31 - Mulan is WEAK AF","description":"Who knew being as strong as a typhoon would make you so f'n weak??\n\n\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\nConnect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nConnect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-mulan-is-weak-af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f8d9c3a-7cc7-4036-89e1-a951b84127c9/sm/2056961-1462586647066-MulanDeskofThumb.jpg","duration":277,"publication_date":"2016-05-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-3-d-platformers","changefreq":"weekly","video":[{"title":"S1:E181 - Top 10 3D Platformers","description":"What's the best game that got you from \"point A to point B\" in the third dimension?","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-3-d-platformers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b3c91f6-590d-472e-8117-8d83b1d57580/sm/2056961-1462326382363-05_03_16_Top103DPlatformerThumb.jpg","duration":619,"publication_date":"2016-05-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-how-fast-is-goku-behind-the-scenes","changefreq":"weekly","video":[{"title":"E:E16 - How Fast is Goku? (Behind the Scenes)","description":"Back in 2012... as Ben and Chad analyzed Goku's crazy powers, Craig started recording without telling them.","player_loc":"https://roosterteeth.com/embed/death-battle-extras-how-fast-is-goku-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b421b1-15c5-4929-a92f-8651230d1615/sm/2031125-1462378872354-GokuBtS.jpg","duration":260,"publication_date":"2016-05-04T03:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-is-battleborn-gearbox-s-return-to-form-available-now","changefreq":"weekly","video":[{"title":":E24 - Is Battleborn Gearbox's Return to Form? | Available Now","description":"Gearbox's new game is out! Will it launch them back into the stratosphere?\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.comAsk us things on Twitter using the hashtag #AvailableNow\n\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-is-battleborn-gearbox-s-return-to-form-available-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4276b73-9206-4698-b48c-fa2f49dfc666/sm/2097098-1462308557419-05_03_16_AvailableNow.jpg","duration":2930,"publication_date":"2016-05-03T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-chad-s-new-do-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E234 - Chad's New 'Do! | SideScrollers Extended Cut","description":"Chad's hair is only the beginning of another crazy Extended Cut","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-chad-s-new-do-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06890b2a-f0f5-4288-a188-1359aa403f6e/sm/2097098-1462240337702-050316_ExtendedCut.jpg","duration":976,"publication_date":"2016-05-03T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-hype-train-derailing-side-scrollers-533","changefreq":"weekly","video":[{"title":"S1:E233 - When The Hype Train Derails- SideScrollers #533","description":"All these games we look forward to, but then they just go off the tracks...\n\n\n\nSend us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-hype-train-derailing-side-scrollers-533","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc4edebe-77d6-4584-a5b7-d2cb4d1df1a7/sm/2097098-1462237301354-050216_SideScrollers.jpg","duration":2791,"publication_date":"2016-05-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-the-flash-races-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E13 - The Flash Races Into DEATH BATTLE!","description":"Wiz and Boomstick give a quick rundown on D.C.'s scarlet speedster. Does the Flash have what it takes to leave Quicksilver in the dust?","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-the-flash-races-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0dbb2f3-075d-4025-8393-f1c58f63e50f/sm/2056984-1462210647137-The_flash_thumb.jpg","duration":147,"publication_date":"2016-05-02T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-black-panther-is-one-fly-motha","changefreq":"weekly","video":[{"title":"S2:E3 - Black Panther is no Pussy Cat...","description":"A guy who can save the world and have an amazing love life? You're damn right.","player_loc":"https://roosterteeth.com/embed/who-is-season-2-black-panther-is-one-fly-motha","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5d63fa4-06a1-471d-969c-43ab1b5a3eba/sm/2056961-1462035561660-04_30_16_WhoisBlackPanther_Thumb.jpg","duration":349,"publication_date":"2016-05-01T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-20","changefreq":"weekly","video":[{"title":"S1:E19 - New Game+ #20","description":"Our suggestions for the best games to play for October spooky time. And what's the best route to getting a good gaming PC? Buying or Building?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/16d8345f-677f-4fcb-8694-d9a0dae1c0f5.png/sm/Screen Shot 2017-10-13 at 12.34.30 PM.png","duration":971,"publication_date":"2017-10-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ea-defends-battlefront-ii-loot-boxes","changefreq":"weekly","video":[{"title":"2017:E330 - EA DEFENDS Battlefront II Loot Boxes!","description":"Players got riled up about loot boxes in Star Wars: Battlefront II earlier this week, and now DICE and EA have responded to the complaints. Will a blog post be enough to assuage players' pay-to-win fears? Does anyone actually know the correct pronunciation of assuage?","player_loc":"https://roosterteeth.com/embed/game-news-2017-ea-defends-battlefront-ii-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e98bcbd-bd48-41da-9ff3-3468ffaa99e4/sm/710924-1507923595122-Thumbnail_Template.jpg","duration":362,"publication_date":"2017-10-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-more-crazy-pokemon-go-shit","changefreq":"weekly","video":[{"title":"2017:E329 - Hackers Use Pokémon Go as Flame Bait!","description":"Apparently Russian hackers tried to use Pokemon Go to make Americans really mad at each other? Which isn't even the weirdest thing to happen in the game and, come on, it's not like Americans need much help getting pissed off at each other anyway. That's like... our thing, man.","player_loc":"https://roosterteeth.com/embed/game-news-2017-more-crazy-pokemon-go-shit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/454aba52-c99e-40af-96da-6f27be22ebfc/sm/710924-1507923601592-Thumbnail_Template.jpg","duration":366,"publication_date":"2017-10-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-bioware-departures-evil-within-2-is-it-good-shadow-of-war-infinite-loot-boxes","changefreq":"weekly","video":[{"title":"2017:E196 - MORE Bioware Departures + Evil Within 2: Is it Good? + Shadow of War Infinite Loot Boxes","description":"Bioware loses ANOTHER important creative, Xbox says hardware sales aren't the most important metric, 1 million players tried out the Gran Turismo Sport demo, Bungie says they're working on the Destiny 2 end game, Evil Within 2 reviews are out (and so is the game), Riot's co-founders want to make more games, the MCU is getting a major shakeup, and more to close out your week of news.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-bioware-departures-evil-within-2-is-it-good-shadow-of-war-infinite-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9d894f3-58d6-4bdf-9980-3c0d6a2d3057/sm/710924-1507919654386-10132017_roundup_thumb.jpg","duration":458,"publication_date":"2017-10-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-20","changefreq":"weekly","video":[{"title":"S1:E20 - Loot Box Mania - #20","description":"This week join Ashley, Ryan, and Adam as they speedrun the news (2:00), loot boxes (46:20), and give their thoughts on The Evil Within 2 along with everything else they've been playing (1:61:40). This episode is sponsored by Blue Apron (http://cook.ba/2lWbtRf) and Casper (http://bit.ly/2xCIg7n)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a87dc5c7-98ca-4d92-9483-087088872370/sm/690915-1507905168631-temp_thumb.jpg","duration":6744,"publication_date":"2017-10-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-epic-sues-fornite-cheaters","changefreq":"weekly","video":[{"title":"2017:E327 - Fortnite Cheaters SUED!","description":"Watch out, cheaters -- Epic is on the hunt for people spoiling the Fortnite: Battle Royale experience for others. In fact, they want to get cheaters so bad that they're hitting two cheaters with lawsuits. This isn't even the first time they've sued a cheater, either.","player_loc":"https://roosterteeth.com/embed/game-news-2017-epic-sues-fornite-cheaters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7233c5c8-5e2d-43df-87a0-edf28527c480/sm/710924-1507845364576-Thumbnail_Template.jpg","duration":318,"publication_date":"2017-10-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-video-game-ratings-boards-versus-loot-boxes","changefreq":"weekly","video":[{"title":"2017:E328 - Loot Boxes AREN'T Gambling?","description":"Gamers have been up in arms over loot boxes recently, to the point where some are calling for the ESRB to rate loot boxes as gambling. Well, the ESRB has weighed in on the matter, and they think loot boxes are just fine.","player_loc":"https://roosterteeth.com/embed/game-news-2017-video-game-ratings-boards-versus-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2a9166c-766c-4efa-abb3-0031ac5cad7d/sm/710924-1507845348622-Thumbnail_Template.jpg","duration":0,"publication_date":"2017-10-13T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-9","changefreq":"weekly","video":[{"title":"2017:E195 - Xbox Bashes Exclusive DLC + Kerbel Space Review Bomb + AI Watching Porn","description":"Xbox isn't too big of a fan of exclusive DLC, the follow up to Final Fantasy XV is still in the planning phase, Shadow of War's DRM has been busted, Respawn announced a new VR project, South Park's new episode was a Fractured But Whole prequel, Kerbal Space Program gets the review bomb treatment, a bank robber used Google for assistance, and more in today's round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/867c11ad-040e-4d36-bc69-b77593ec5666/sm/710924-1507833508046-pornhub_thumb_roundup.jpg","duration":531,"publication_date":"2017-10-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-10","changefreq":"weekly","video":[{"title":"2017:E194 - Game Boy Classic Edition Soon? + Activision Downgraded Over Overwatch + New Oculus GO for $200","description":"Nintendo's working on something related to the Gameboy, sparking speculation it could be the next Classic Edition console. The first review for Super Mario Odyssey is in and it's a dime. Facebook announces a new standalone VR headset for $200. Plus, Guest Play returns to FIFA 18, SNES Classic sales numbers, Activision stock downgraded, poor localization, when Game of Thrones starts shooting, studios sign on to Disney's new movie service, DOW Jones publishes a hoax claiming Google bought Apple, Porsche's subscription service, and RIP Windows Phone.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/312fb7b4-146f-4aee-92a9-7aceff0da829/sm/24363-1507755432367-thumbnail2.jpg","duration":695,"publication_date":"2017-10-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-games-as-a-service-is-here-to-stay-whether-you-like-it-or-not","changefreq":"weekly","video":[{"title":"2017:E324 - Microtransactions TOO SUCCESSFUL to Stop?","description":"A new study shows just how much money microtransactions and loot boxes in AAA games is bringing into the game industry, so... looks like they're here to stay for now.","player_loc":"https://roosterteeth.com/embed/game-news-2017-games-as-a-service-is-here-to-stay-whether-you-like-it-or-not","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a304c7f8-bac2-4bc8-9c89-e7aa3ac63cc6/sm/24363-1507755532482-maxresdefault_14.jpg","duration":724,"publication_date":"2017-10-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-s-end-game-problem","changefreq":"weekly","video":[{"title":"2017:E322 - Destiny 2 Has No Endgame?","description":"Destiny 2's in the middle of some community debate right now about the title's end-game content. And Bungie sort of stoked the flames by sort of suggesting that the real end-game content players need is the friends they'll make along the way. Yeah, that didn't go over too well.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-s-end-game-problem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63de05e4-7cd7-4705-8033-a4de59dc8cae/sm/24363-1507755691067-maxresdefault_15.jpg","duration":612,"publication_date":"2017-10-11T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-telltale-batman-bad-photoshop-edition","changefreq":"weekly","video":[{"title":"2017:E321 - Telltale's Batman Uses REAL Dead Body... Oops?","description":"Telltale's Batman: The Enemy Within launched its second episode recently, only for players to discover that... well, there's a dead body in it. No seriously, it's a real one. How did something like that slip through the cracks at Telltale? That's what the internet wants to know.","player_loc":"https://roosterteeth.com/embed/game-news-2017-telltale-batman-bad-photoshop-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aea7ad7d-2428-47d3-9ad5-6172dde4272d/sm/24363-1507755801943-maxresdefault_16.jpg","duration":289,"publication_date":"2017-10-11T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-middle-earth-shadow-of-war-is-it-good","changefreq":"weekly","video":[{"title":"2017:E319 - Middle-Earth: Shadow of War: IS IT GOOD?","description":"Shadow of War is out soon and now the reviews are finally here. What did critics think about it? Did they talk about its loot boxes? Are the loot boxes canon? Come find out what the reviews said.","player_loc":"https://roosterteeth.com/embed/game-news-2017-middle-earth-shadow-of-war-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d55332cb-da80-47f0-9a44-f988d98bd09a/sm/24363-1507755925952-maxresdefault_17.jpg","duration":397,"publication_date":"2017-10-11T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-9","changefreq":"weekly","video":[{"title":"2017:E193 - SNES Classic Hacked + Why Assassin's Creed Failed + Bill & Ted 3 Update","description":"It didn't take long for people to hack the planet out of SNES Classic. Star Michael Fassbender on why the Assassin's Creed movie failed and what he'd do different. Keanu Reeves shares an update on Bill & Ted 3. Plus, Assassin's Creed Origins loot boxes, Hellblade sales donated for Mental Health Day, Fortnite's Battle Royale has millions of players, Destiny 2 prestige raid delayed, Blizzard's new project, The Fast & The Furious spin-off and drama, The Last Jedi trailer hits, and it's The Orange Box's 10th birthday.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c72a1483-a685-4cb2-8635-613874c3a48d/sm/24363-1507664844159-thumbnail.jpg","duration":675,"publication_date":"2017-10-10T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-rick-and-morty-szechuan-sauce-fiasco","changefreq":"weekly","video":[{"title":"2017:E35 - Rick and Morty's SZECHUAN DISASTER","description":"Rick and Morty is a fun show. You know what's not fun? When McDonalds tries to cash in on it by offering limited Szechuan sauce and doesn't make enough and fans start freaking out and berating minimum wage worker. Come on, guys. That job sucks enough already without you jumping on the counters and screaming memes at the top of your lungs.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-rick-and-morty-szechuan-sauce-fiasco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c677f51-b78a-40e1-a417-29dd5e0a70c2/sm/24363-1507603328193-szechuan_disaster.jpg","duration":606,"publication_date":"2017-10-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-but-i-was-going-to-tosche-station-to-pick-up-some-lootboxes","changefreq":"weekly","video":[{"title":"2017:E323 - Battlefront 2 a PAY 2 WIN Nightmare?","description":"\"But I was going to Tosche Station to pick up some lootboxes!\"The beta is here for Star Wars Battlefront II, and gamers are feeling a disturbance in the force--the game's balance-changing microtransactions paint a pretty dire pay to win picture.","player_loc":"https://roosterteeth.com/embed/game-news-2017-but-i-was-going-to-tosche-station-to-pick-up-some-lootboxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8c1d5b9-81c4-4bb5-b916-6c9406d47578/sm/24363-1507600848307-battlefront_2_pay2win.jpg","duration":519,"publication_date":"2017-10-10T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-7","changefreq":"weekly","video":[{"title":"2017:E192 - The Last of Us 2 WHEN? + Wolfenstein II vs Nazis + Blade Runner 2049 Disappoints","description":"The game's composer may be offering hints as to the window when we can expect to see The Last of Us 2. Bethesda's holding firm against people criticizing Wolfenstein II for it's anti-Nazi message. Blade Runner 2049's box office take hit far below expectations. Plus, Nintendo hits a 10-year high, Call of Duty: World War II datamined, Kojima still writing Death Stranding, Microsoft compares VR to Kinect, Telltale removes dead body from Batman, new Justice League trailer, and The Last Jedi trailer and tickets hit tonight.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06d6b23f-3c30-45fd-97c1-255ae597fce2/sm/24363-1507579228499-thumbnail.jpg","duration":538,"publication_date":"2017-10-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-19","changefreq":"weekly","video":[{"title":"S1:E18 - New Game+ #19","description":"What do you think about hand-holding mechanics in games? Are they a bad idea? Also let's learn more Japanese!\n\n\n\n\n\nFor anyone wanting to follow along: get your own reference cards HERE and HERE!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/753e4b57-8628-4b60-b162-40044359ceb2/sm/2411188-1507311876729-GP19_-_PS_-_THUMB.jpg","duration":1380,"publication_date":"2017-10-07T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-learning-to-hate-ourselves-19","changefreq":"weekly","video":[{"title":"S1:E19 - Learning To Hate Ourselves - #19","description":"This week join Ashley, Ryan, and Alfredo Diaz as they sign away their souls to Cuphead (5:11), run down the best things on the SNES Classic (28:35), and speedrun the news (48:38).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-learning-to-hate-ourselves-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/714948f7-6084-4505-a898-ae8fa0b93658/sm/2411188-1507307663145-GP19_-_THUMB.jpg","duration":4860,"publication_date":"2017-10-06T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-friday-round-up-4","changefreq":"weekly","video":[{"title":"2017:E191 - Xbox One X SECRETS + Epic DEFENDS Battle Royale + RIP AIM","description":"The Xbox One X is hiding a secret, we've got new details on Pokemon Ultra Sun and Moon, Evil Within 2 and Assassin's Creed: Origins get recommended PC specs, Epic's CEO defends Battle Royale, Hajime Tabata said he wouldn't take on Final Fantasy VII if asked, a Batman Ninja anime got announced, Netflix gets a price hike, and tons more to finish out your weekly news fix.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-friday-round-up-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/799ddfc0-eedd-4506-981b-22a549b4643a/sm/710924-1507319470497-epic_games_thumb.jpg","duration":520,"publication_date":"2017-10-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-doubles-switch-production","changefreq":"weekly","video":[{"title":"2017:E320 - Nintendo Switch Shortage OVER?","description":"Nintendo's had trouble keeping up with the demand fro the Switch in some regions, but those days may be over (right in time for the holiday/Mario demand to kick in!) with Switch doubling production numbers. That's a lot of consoles.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-doubles-switch-production","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e821e8a-3e0c-4c3e-b00a-565f72e7712a/sm/24363-1507250678651-switch_shortage_over.jpg","duration":318,"publication_date":"2017-10-06T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-8","changefreq":"weekly","video":[{"title":"2017:E190 - Forza FIXED? + Call of Duty to Stamp Out Cheating + Baby-spying AI Killed Off","description":"Turn 10 is updating Forza 7 to address fan complaints. Call of Duty developer Sledgehammer says the Call of Duty World War II PC beta didn't contain anti-cheat measures, but it will have them at launch. Mattel's Aristotle baby-monitor/AI has been killed off over privacy concerns. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6af9b15-0ded-4d52-a051-da870a1407e6/sm/24363-1507237362799-thumbnail.jpg","duration":561,"publication_date":"2017-10-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-talking-to-gamers-too-spoopy","changefreq":"weekly","video":[{"title":"2017:E318 - Why Game Developers Don't Communicate","description":"Hot on the heels of one developer calling gamers toxic, Overwatch boss Jeff Kaplan's taking on accusations that Overwatch developers ignore their community to talk about why developers REALLY don't communicate.","player_loc":"https://roosterteeth.com/embed/game-news-2017-talking-to-gamers-too-spoopy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70cf733e-da9d-472c-ba8b-6371a10b8585/sm/24363-1507174030679-overwatch_scared.jpg","duration":455,"publication_date":"2017-10-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-consoles-held-back-fallout-new-vegas","changefreq":"weekly","video":[{"title":"2017:E317 - Consoles Held Fallout Back CONFIRMED","description":"It's long been the philosophy of PC gamers that developing games for consoles means the PC versions are held back. One developer on Fallout: New Vegas has just confirmed that this fear is a reality. DUN DUN DUN","player_loc":"https://roosterteeth.com/embed/game-news-2017-consoles-held-back-fallout-new-vegas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/588cd5fe-40fb-4efa-90f8-e5688ba65f71/sm/24363-1507173916498-consoles_hold_fallout_back.jpg","duration":445,"publication_date":"2017-10-05T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-9","changefreq":"weekly","video":[{"title":"2017:E189 - Red Dead Redemption 2 ANALYZED + Halo Comes to Mixed Reality + EVERY Yahoo Account Hacked","description":"Red Dead Redemption 2's been stripped down and analyzed to discover what improvements Rockstar has made to the engine powering it. Halo is coming to Mixed Reality headsets. Yahoo admits that 100% of its accounts have been hacked. Plus, SNES Classic pre-orders being delayed after release, Forza 7 reviews, GT Sport gets a demo, Battlefront 2 beta kicks off, FIFA 18 beats Destiny 2, Turtle Rock's new game is for Gear VR, Skyrim's Creation Club is live, and Avatar sequels will be the most expensive ever made. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01e16e1b-14ff-4943-ac55-626d7b852e79/sm/24363-1507147514877-thumbnail.jpg","duration":589,"publication_date":"2017-10-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-is-b-a-c-k","changefreq":"weekly","video":[{"title":"2017:E316 - World War II SAVES Call of Duty!?","description":"Even a \"failure\" by Call of Duty standards can be the best-selling game of the year, but that doesn't mean Activision's happy about it. Fortunately, taking the game back to World War II seems to be bringing in a lot more interest from fans. You guys! This indie series might be saved!","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-is-b-a-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1120d568-c7fe-47f8-8f65-09379fc13057/sm/24363-1507068169471-thumbnail.jpg","duration":394,"publication_date":"2017-10-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-play-station-president-quits","changefreq":"weekly","video":[{"title":"2017:E315 - PlayStation President STEPS DOWN","description":"PlayStation president Andrew House is tapping out after 20+ years with Sony. He released the PS4. It's doing well. Now he's looking for some other kind of challenge, so he'll just be a chairman for now, which we're pretty sure is just a job title for people who sit in big comfy lounges and collect big paychecks.","player_loc":"https://roosterteeth.com/embed/game-news-2017-play-station-president-quits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a0389a8-fcbd-48ab-8776-15304ade5f1d/sm/24363-1507066369336-thumbnail.jpg","duration":571,"publication_date":"2017-10-04T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-8","changefreq":"weekly","video":[{"title":"2017:E188 - Xbox One X Next Gen or Not? + Battlefront 2 Multiplayer RETURNS + South Park Fart Contest","description":"Microsoft's Albert Penello comments on where Xbox One X fits in the generation. Classic Battlefront 2's multiplayer returns. Ubisoft is holding a fart contest to find the definite flatulence for South Park: The Fractured But Whole. Plus, PUBG's exclusivity talks, GT Sport open beta rumors, Spellbound details, WWE2K18 clarifies loot boxes, Sonic the Hedgehog movie finds a studio, no remasters at BlizzCon, and Men in Black's reboot.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7cd1c09-8483-4b06-9581-8ee8b3a7b044/sm/24363-1507057668840-thumbnail.jpg","duration":567,"publication_date":"2017-10-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-dceu-abandoned","changefreq":"weekly","video":[{"title":"2017:E34 - DC Extended Universe ABANDONED!?","description":"Despite putting up lots of dollars at the box office, DC's had trouble gaining critical support for its Extended Universe movies, so.... back to standalone movies that have nothing to do with each other?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-dceu-abandoned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27232f88-9af9-4823-8d80-072e1310e9ca/sm/24363-1506988062646-thumbnail.jpg","duration":431,"publication_date":"2017-10-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-forza-microtransactionsport-7","changefreq":"weekly","video":[{"title":"2017:E314 - Forza 7 is a RIPOFF?","description":"Forza Motorsport 7 is about to hit the streets (for those who aren't VIP, at least), and fans are crying foul that the game has been fundamentally changed to expect gamers to drop extra money on microtransactions, and VIP has been nerfed without warning.","player_loc":"https://roosterteeth.com/embed/game-news-2017-forza-microtransactionsport-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ed5cd63-66e5-4ca7-9a02-4bb2d1ccb0ec/sm/24363-1506987256855-thumbnail.jpg","duration":317,"publication_date":"2017-10-03T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-big-ps4-announcements-call-of-duty-hackers-gamers-are-g-e-n-i-u-s-e-s","changefreq":"weekly","video":[{"title":"2017:E187 - Big PS4 Announcements + Call of Duty HACKERS + Gamers Are GENIUSES?","description":"Sony's prepping some major announcements this month. Call of Duty World War II is still in beta but it's already plagued by hackers. A new study out of Germany actually has GOOD things to say about video games, like that they make you smarter! Plus, Rocksteady's next project, Red Dead Redemption 2 mapped, FIFA's online support for Switch is... not great, PUBG may be heading for PlayStation, PSVR's getting an upgrade, no more Metroid remakes, Commodore 64 makes a return, and Stardew Valley dated for Switch.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-big-ps4-announcements-call-of-duty-hackers-gamers-are-g-e-n-i-u-s-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f50c56ba-8ca7-4a08-afc7-fd818a4ffc17/sm/710924-1506967567516-1002_thumb.jpg","duration":412,"publication_date":"2017-10-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-18","changefreq":"weekly","video":[{"title":"S1:E17 - New Game+ #18","description":"Ben has prepared his first lesson for our cast to learn Japanese! We start out with some common terms you'll see in video games.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8d416c9-81cd-4f46-8392-001ed99aefd0/sm/1601067-1507845797539-gpngp18.jpg","duration":480,"publication_date":"2017-09-30T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bethesda-not-swayed-by-fan-criticism","changefreq":"weekly","video":[{"title":"2017:E313 - Bethesda Not Guided by Fan Feedback","description":"Bethesda has made it clear they won't change their plans just because fans are loud. And we're not talking about the Creator Club either, even though that's just expanded to Skyrim and got fans upset that they're now paying for mods that were free. It's more to do with, say, Elder Scrolls VI.","player_loc":"https://roosterteeth.com/embed/game-news-2017-bethesda-not-swayed-by-fan-criticism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e1800be-b586-4a9c-84c2-ba9d877bf640/sm/24363-1506747003740-bethesda_vs_fans.jpg","duration":392,"publication_date":"2017-09-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-youtube-vs-patreon","changefreq":"weekly","video":[{"title":"2017:E36 - YouTube CRACKS DOWN on Patreon & Alternate Revenue","description":"Since the adpocalypse a number of YouTube creators have turned to alternate revenue streams like Patreon, but YouTube is now cracking down on smaller channels with restrictions on what they can link to.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-youtube-vs-patreon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/765e3292-5eef-4cd2-9702-51d001198ae6/sm/24363-1506742401212-yt_crowdfunding.jpg","duration":477,"publication_date":"2017-09-30T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-round-up-09292017","changefreq":"weekly","video":[{"title":"2017:E186 - Nintendo BANS Livestreams + Cuphead Worth Playing? + Amazon All-in on Sci-Fi Shows","description":"Nintendo's laying down the law on livestreams and it's not in gamers' favor. Reviews for Cuphead are in now that the game is out. Amazon is going all-in on developing shows for some of the biggest science fiction books. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-round-up-09292017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/784a8ee3-2853-44d3-84a9-2e71417e5334/sm/24363-1506716977503-929roundupthumb.jpg","duration":650,"publication_date":"2017-09-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-are-gamers-being-toxic-18","changefreq":"weekly","video":[{"title":"S1:E18 - The Better Gamer Challenge - #18","description":"This week join Ashley, Gus, Ryan, and Adam as they discuss gamer toxicity (1:45), speedrun the news (23:35), and give their thoughts on Dishonored Death Of The Outsider along with everything else they've been playing (50:30). This episode is brought to you by Skillshare (http://skl.sh/glitchplease)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-are-gamers-being-toxic-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7df6fc28-aab3-484f-91d3-b3559eb35dd0/sm/2411188-1506636307433-GP18_-_THUMB.jpg","duration":5190,"publication_date":"2017-09-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-snes-classic-pulls-off-mask-it-was-an-nes-the-whole-time","changefreq":"weekly","video":[{"title":"2017:E311 - SNES Classic pulls off mask... it was an NES the whole time!","description":"Einhorn is Finkle. Finkle is Einhorn. Einhorn is a man! Oh, my god!The SNES Classic is here, and just in time for the revelation that it's all just a reskin of the exact same NES Classic hardware! WHICH IS... actually, that kind of makes sense.","player_loc":"https://roosterteeth.com/embed/game-news-2017-snes-classic-pulls-off-mask-it-was-an-nes-the-whole-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecb588f4-667a-4b2c-9bd6-320d5e604f14/sm/24363-1506695382001-thumbnail.jpg","duration":422,"publication_date":"2017-09-29T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-red-dead-redemption-2-trailer","changefreq":"weekly","video":[{"title":"2017:E312 - Red Dead Redemption 2 BREAKDOWN: Everything You Should Know","description":"The Red Dead Redemption 2 trailer is here! Let's go through all the details it gives us about what we can expect from the game when it launches.","player_loc":"https://roosterteeth.com/embed/game-news-2017-red-dead-redemption-2-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47ad87de-46d9-4e44-9afb-c05e7a7200fa/sm/24363-1506646105555-rdr2_breakdown.jpg","duration":441,"publication_date":"2017-09-29T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-7","changefreq":"weekly","video":[{"title":"2017:E185 - Battlegrounds SAVES Fortnite? + Mario PUNCHES Yoshi + Injustice 2 Patch BREAKS GAME","description":"Fortnite's putting up impressive numbers after its public spat with PlayerUnknown's Battlegrounds. Yoshi's designer says that, yep, Mario punches him to get him to lick stuff. Rude. A new patch for Injustice 2 is breaking the game and even the publisher is saying to hold off on installing it until they... patch the patch. Plus, Switch's software lineup may be the biggest ever for Nintendo, Assassin's Creed Origins will remove the game for you, Agents of Mayhem hit with layoffs, Gravity Rush 2 online features killed already, expect a new World of Warcraft expansion soon, JJ Abrams is tackling a live action anime, and Avatar sequels finally enter production.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/454fbc4b-6da7-4bb6-9284-e152dfbbfa55/sm/24363-1506631610201-thumbnail.jpg","duration":609,"publication_date":"2017-09-28T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-modders-defeat-dmca-takedown","changefreq":"weekly","video":[{"title":"2017:E310 - Modders DEFEAT DMCA Takedown!","description":"Score one for the little guys! A PS3 emulator team fought back against a DMCA by publisher Atlus over PS3 version of Persona 5, and... won? That's not how that story usually goes.","player_loc":"https://roosterteeth.com/embed/game-news-2017-modders-defeat-dmca-takedown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f6fdcf2-f6fa-4962-a6f1-c746730232ba/sm/710924-1506631922606-thumbnail.jpg","duration":383,"publication_date":"2017-09-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-valves-fake-game-apocalypse","changefreq":"weekly","video":[{"title":"2017:E309 - Valve Removes Fake Games!","description":"Valve dealt another harsh blow in the ongoing Steam problem of fake games -- taking down one developer and more than 200 fake games all in one fell swoop. That's got to be some kind of record.","player_loc":"https://roosterteeth.com/embed/game-news-2017-valves-fake-game-apocalypse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60825e18-4888-4064-b9ca-e411e7788ba2/sm/710924-1506631901749-thumbnail.jpg","duration":276,"publication_date":"2017-09-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-shadow-of-war-controversial-dlc-cena-visits-nintendo-twitter-gets-double-characters","changefreq":"weekly","video":[{"title":"2017:E184 - Shadow of War Controversial DLC + Cena Visits Nintendo + Twitter Gets Double Characters ","description":"It's a hump news day! Warner Bros finally responds to their controversial donation DLC, Super Mario Odyssey gets the Digital Foundry treatment, John Cena is partnering up with Nintendo for a mysterious project, the Ataribox costs way too much money, Blade Runner 2049 has glowing first impressions, and more!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-shadow-of-war-controversial-dlc-cena-visits-nintendo-twitter-gets-double-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6017b446-aced-4d7a-bb88-a0c3ab6689f3/sm/24363-1506631760211-twitter_longer_roundup_thumb.jpg","duration":432,"publication_date":"2017-09-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sony-not-interested-in-play-station-switch","changefreq":"weekly","video":[{"title":"2017:E308 - Sony Not Interested in \"PlayStation Switch\"","description":"If you were holding out hope for a PlayStation handheld console hybrid a la Switch... well, we've got some bad news for you. Sony's not really interested. And if you were hoping for another Vita, we've got double bad news...","player_loc":"https://roosterteeth.com/embed/game-news-2017-sony-not-interested-in-play-station-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41f49bd7-e9ee-4f10-bf73-73a19cbbf14e/sm/710924-1506631857416-thumbnail.jpg","duration":338,"publication_date":"2017-09-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gaming-voice-actor-strike-o-v-e-r","changefreq":"weekly","video":[{"title":"2017:E307 - Video Game Voice Actor Strike OVER!","description":"It looks like the video game voice actor's strike is over! Is everything completely worked out and will everybody live happily ever after? Well that might be stretching it a little bit, but hey, at least the union and publishers will work together again. For now.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gaming-voice-actor-strike-o-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df5cf4fe-4d58-4005-b8bb-2335a1ee987f/sm/710924-1506631827210-thumbnail.jpg","duration":287,"publication_date":"2017-09-27T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-next-gen-multiplayer-game-snes-classics-plentiful-star-trek-discovery-breaks-records","changefreq":"weekly","video":[{"title":"2017:E183 - Next Gen Multiplayer Game + SNES Classics Plentiful? + Star Trek Discovery Breaks Records","description":"2017:E183 - Next Gen Multiplayer Game + SNES Classics Plentiful? + Star Trek Discovery Breaks Records","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-next-gen-multiplayer-game-snes-classics-plentiful-star-trek-discovery-breaks-records","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04794e27-4a38-40fd-9eba-d59c8e0a21ff/sm/24363-1506631822822-next_gen_game_roundup_thumb.jpg","duration":461,"publication_date":"2017-09-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-snes-classic-know-before-you-go","changefreq":"weekly","video":[{"title":"2017:E306 - Know Before You Go... SNES Classic","description":"Nintendo's newest retro re-release is hitting stores this Friday, so we're here to give you everything you need to know before you go out and buy the SNES Classic Edition!","player_loc":"https://roosterteeth.com/embed/game-news-2017-snes-classic-know-before-you-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bae8c01-2f0e-439d-b6db-8ed89a731eb8/sm/710924-1506632068354-maxresdefault.jpg","duration":294,"publication_date":"2017-09-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gamers-don-t-deserve-transparency","changefreq":"weekly","video":[{"title":"2017:E305 - Gamer Culture Too TOXIC?","description":"Gamers constantly want more transparency from their favorite pastime, but one developer says that's basically impossible. Why? Because gamers are just too toxic for it.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gamers-don-t-deserve-transparency","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc535a8d-50be-4bfc-af22-dae4887c0836/sm/710924-1506631788511-Gamers_dont_deserve_transparency.jpg","duration":310,"publication_date":"2017-09-26T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-loot-boxes-defended-valve-new-game-concept-art-drone-helicopter-crash","changefreq":"weekly","video":[{"title":"2017:E182 - Loot Boxes DEFENDED + Valve New Game Concept Art + Drone Helicopter Crash ","description":"Monolith finally addresses some of the concerns about single player loot boxes, Bluehole clarifies their stance on Battle Royale copycats, South Park: The Fractured But Whole is now gold, Ubisoft might be facing its takeover soon, we got a look at a long-lost Valve fantasy adventure game, The Last Jedi is totally finished, and watch out where you're flying those drones. It's your Monday news!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-loot-boxes-defended-valve-new-game-concept-art-drone-helicopter-crash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/164c33b5-3898-4bc5-a4d9-71b12d2ce9de/sm/24363-1506631879029-drone_crash_roundup.jpg","duration":499,"publication_date":"2017-09-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-17","changefreq":"weekly","video":[{"title":"S1:E16 - New Game+ #17","description":"What are your favorite co-op experiences in games? Also, what game mechanics turn you off of a game? Send us your questions to be answered on the show at glitchplease@roosterteeth.com!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b69fba9c-6ba3-4a54-a0ac-044729a8d982/sm/2411188-1506096057102-GP17_-_PS_-_THUMB.jpg","duration":1020,"publication_date":"2017-09-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pubg-mad-about-fortnite","changefreq":"weekly","video":[{"title":"2017:E304 - Battleground THREATS Over Copycat","description":"Battlegrounds developer Bluehole is crying foul over another game copying it and threatening \"further action\" to stop the copy. Ironic? A bit, maybe, but it depends on the ins and outs of video game business politics.","player_loc":"https://roosterteeth.com/embed/game-news-2017-pubg-mad-about-fortnite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dca1ad5-f87e-4785-993d-91cf463748c5/sm/24363-1506122610356-thumbnail.jpg","duration":523,"publication_date":"2017-09-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-was-a-negative-game-review-k-i-l-l-e-d","changefreq":"weekly","video":[{"title":"2017:E303 - Game Review CORRUPTION Controversy","description":"A game review just reevaluated its score because of the game publisher, reigniting the debate over review scores and how much influence game publishers have in the process. Time to dig in!","player_loc":"https://roosterteeth.com/embed/game-news-2017-was-a-negative-game-review-k-i-l-l-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16e1bada-f498-4242-b296-33528a9fef1c/sm/24363-1506121683771-thumbnail.jpg","duration":506,"publication_date":"2017-09-23T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017","changefreq":"weekly","video":[{"title":"2017:E181 - Red Dead Redempton 2 Teaser + Xbox Duke IS BACK + Piracy DOESN'T Hurt Sales?","description":"Rockstar is teasing something for Red Dead Redemption 2. Remember the gigantic Xbox Duke controller? It's back. A study has been unearthed about piracy, and now there are accusations it was suppressed intentionally. Plus, Nintendo swears they overdelivered on the Switch, Mario + Rabbids sets a Switch record, Vampyr delayed, FIFA 18 reviews, Heat Signature could be the next big PC game, Square Enix doubles down on games as a service, more Halo games available on Xbox One, Han Solo could make the Kessel Run, and Netflix pulls a show over dick drawings.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1c92707-fbbb-4e0e-b197-422f890d074c/sm/24363-1506109251588-thumbnail.jpg","duration":641,"publication_date":"2017-09-22T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-you-tube-steals-from-twitch-17","changefreq":"weekly","video":[{"title":"S1:E17 - YouTube Steals From Twitch - #17","description":"This week join Ashley, Gus, and Adam as they speedrun the news (6:55), discover the new YouTube gaming features (24:55), and love on Divinity Original Sin 2 (35:00). This episode is brought to you by MVMT Watches (MVMT.com/Glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-you-tube-steals-from-twitch-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90863a96-5ac6-48eb-ac2a-e23596a60996/sm/2411188-1506035219138-GP17_-_THUMB.jpg","duration":3780,"publication_date":"2017-09-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-defenders-f-l-o-p-p-e-d-marvel-tv-d-e-a-d-h-y-p-e-r-b-o-l-e","changefreq":"weekly","video":[{"title":"2017:E33 - Marvel's TV DISASTERS! Cancelled Already?","description":"Marvel's seen success after success at the box office, but TV? Well... the first few Netflix shows were pretty promising and even Agents of SHIELD is doing fine but their most recent series may be cancelled before it even hits TV and The Defenders dropped more than 80% from Iron Fist's numbers. That's... not good.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-defenders-f-l-o-p-p-e-d-marvel-tv-d-e-a-d-h-y-p-e-r-b-o-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b787ebf8-a6d5-4ed7-bf31-aceca7c72072/sm/24363-1506032960932-thumbnail.jpg","duration":453,"publication_date":"2017-09-21T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-ea-a-corporate-monster","changefreq":"weekly","video":[{"title":"2017:E302 - EA: Studio KILLER Strikes Again","description":"EA's been accused of destroying well-loved studios in the past. Now, another developer has stepped forward to accuse the studio of trying to do it to his studio too.","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-ea-a-corporate-monster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/227b5f58-841d-4416-99a0-7673b6ab560a/sm/24363-1506032831025-thumbnail.jpg","duration":457,"publication_date":"2017-09-21T22:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-6","changefreq":"weekly","video":[{"title":"2017:E180 - Xbox One X Enhancements + PlayerUnknown on Battlegrounds Campaign + Submarines Get Controllers","description":"Microsoft on how Xbox One X enhancements work. PlayerUnknown discusses campaign, night mode, and more for Battlegrounds. Submarines are ditching $38,000 periscope controllers for... Xbox controllers. Plus, a YouTuber waiting in line for an SNES Classic already, Project Cars 2 dev teases a Fast & Furious game Fortnite is beating PUBG to console battle royale, Rainbow Six Siege dropped a new update that broke it, early analysis of Doom Switch performance, Kingsmen: Golden Circle reviews hit, and Equifax fails even harder.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7619813b-55df-4f5f-ae00-5863e5823bed/sm/24363-1506026946825-thumbnail.jpg","duration":443,"publication_date":"2017-09-21T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-fights-review-bombs","changefreq":"weekly","video":[{"title":"2017:E301 - Steam's WAR on Unfair Review Bombs","description":"Steam's had a rough time with angry gamers review bombing games on the platform. Sometimes it has to do with the game itself. Sometimes it's done to \"send a message\" to a developer, mafia style. And Valve's not taking it anymore.","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-fights-review-bombs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d3a834b-80dd-4dd9-bdde-6371384e1492/sm/24363-1505956955932-thumbnail.jpg","duration":414,"publication_date":"2017-09-21T01:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-d-m-c-a-s-mario-64-multiplayer","changefreq":"weekly","video":[{"title":"2017:E300 - Super Mario 64 Online NEW DMCA EDITION","description":"Who wouldn't want to play Super Mario 64 Online with a few dozen friends? It sounds awesome! And it is! Or... was. A modder who added multiplayer to the Nintendo game has found his YouTube videos and Patreon under attack by Nintendo over his work.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-d-m-c-a-s-mario-64-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/694f48c7-eac9-4376-86dd-b683cddbe41a/sm/24363-1505956731350-thumbnail.jpg","duration":344,"publication_date":"2017-09-21T01:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-8","changefreq":"weekly","video":[{"title":"2017:E179 - Xbox One X IS BACK + NBA 2K18 Predatory Microtransactions + Nintendo's Tribute to Iwata","description":"Xbox One X is available for pre-order again. Fans are upset about NBA 2K18's outrageous microtransactions. Nintendo secretly put a tribute to the late Satoru Iwata in every Switch. Plus, Xbox boss Phil Spencer's big promotion, more Nier coming, Danganronpa v3's streaming restrictions, PS5 in 2020?, Final Fantasy XV for Switch, Watchmen on HBO, Tomb Raider's trailer, and veterans return to Terminator.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f8716be-1dbe-4039-a04d-5e361e5ccf2c/sm/24363-1505950470704-xbox_stock_roundup.jpg","duration":527,"publication_date":"2017-09-20T23:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-you-tube-trying-to-save-gaming","changefreq":"weekly","video":[{"title":"2017:E35 - YouTube SAVES Gaming?","description":"It's no secret that YouTube gaming content creators have been having a tough time with advertising on the platform falling. YouTube to the rescue! It's got a daring plan to help these creators make money again! Just... become Twitch, basically!","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-you-tube-trying-to-save-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/994a471f-59ba-49a7-bb04-e8e7770b2470/sm/24363-1505863368271-thumbnail.jpg","duration":498,"publication_date":"2017-09-19T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-future-of-drm","changefreq":"weekly","video":[{"title":"2017:E34 - War for DRM is OVER! Big Business WINS?","description":"DRM for streaming video is about to change dramatically, and not necessarily for the better, thanks to a new standard that could bring criminal charges to anyone who even looks at it funny. So... gird your browsers and get your malware protection ready (as long as it doesn't give you malware, itself...).","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-future-of-drm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be58bb0d-5866-4f5e-9b34-0f5b436b5560/sm/24363-1505863229706-thumbnail.jpg","duration":414,"publication_date":"2017-09-19T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-130-million-switches-valve-writer-s-new-project-apple-protects-against-advertisers","changefreq":"weekly","video":[{"title":"2017:E178 - 130 MILLION Switches? + Valve Writer's New Project + Apple PROTECTS Against Advertisers?","description":"An analyst is doubling sales expectations for Nintendo Switch. Left 4 Dead, Portal 2, and Half-life 2 writer Chet Faliszek is working on a new project. Advertisers are upset with Apple for blocking advertisements from tracking users. Plus, Fortnite's crossplay disabled, Tokyo Game Show drops a ton of announcements, Call of Duty drops story details, Project Cars 2 review hit, everyone hates Tomb Raider's neck, when to expect The Last Jedi's trailer, and Toys R Us is officially bankrupt.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-130-million-switches-valve-writer-s-new-project-apple-protects-against-advertisers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5104841-2f0a-42b6-8b93-2f6a760df33d/sm/24363-1505862744189-thumbnail.jpg","duration":631,"publication_date":"2017-09-19T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-gets-secret-crossplay","changefreq":"weekly","video":[{"title":"2017:E299 - Game Gets SECRET Crossplay!","description":"2017:E299 - Game Gets SECRET Crossplay!","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-gets-secret-crossplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ad6e6d1-c477-4648-9bab-f36f967877aa/sm/710924-1505762878091-Thumbnail.jpg","duration":509,"publication_date":"2017-09-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-6","changefreq":"weekly","video":[{"title":"2017:E177 - Mario Odyssey TOO SMALL? + Everyone's Copying Ubisoft + CCleaner Distributes Malware ","description":"People are worried that Super Mario Odyssey is way too small, Tabata wants Final Fantasy XVI to feel like Breath of the Wild, PUBG shatters one last record, Divinity: Original Sin 2 sees a huge launch, Ubisoft thinks everyone is borrowing from them, Battleborn slips quietly into the night, security programs are transmitting malware, and lots more news to start your week off.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2200724-d89d-44d6-8f7c-14b85721f4d1/sm/710924-1505760300729-mario_too_smal_roundup.jpg","duration":455,"publication_date":"2017-09-19T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-16","changefreq":"weekly","video":[{"title":"S1:E15 - New Game+ #16","description":"This week we answer emails about early review copies, region locking, and Ben teaches us Japanese?!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b74f7185-2f77-4370-bebf-57bedd5b81e5/sm/2411188-1505488907586-GP16_-_PS_-_THUMB.jpg","duration":1020,"publication_date":"2017-09-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-let-s-kill-the-3-ds-16","changefreq":"weekly","video":[{"title":"S1:E16 - Let's Kill The 3DS - #16","description":"This week Ashley, Gus, Ryan, and Adam go into overwatch mode as they speedrun the news (19:03) discuss XCOM 2: War Of The Chosen (55:40) and revive all the dying video game dramas that could possibly have Full Motion Video in them (1:08:12). This episode is brought to you by Blue Apron (BlueApron.com/Glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-let-s-kill-the-3-ds-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/904c7aa6-f75b-4272-b45b-cb56b55085c8/sm/2411188-1505426184653-GP16_-_THUMB.jpg","duration":5130,"publication_date":"2017-09-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mario-s-got-nips-now","changefreq":"weekly","video":[{"title":"2017:E296 - Mario's Nipples DESTROY THE INTERNET?","description":"Nintendo made a lot of announcements at their Direct, but a picture is worth a thousand words and we all saw the most important thing: Mario's nipples. As you might expect, the internet promptly broke.","player_loc":"https://roosterteeth.com/embed/game-news-2017-mario-s-got-nips-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5892945e-c21b-481c-9fd5-3789aed58702/sm/24363-1505441881671-mario_nipples.jpg","duration":499,"publication_date":"2017-09-15T02:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ea-becoming-netflix-uncharted-director-leaves-x-men-back-to-marvel","changefreq":"weekly","video":[{"title":"2017:E175 - Nintendo's New Hotness + Overwatch Stunted by Toxic Players + Marvel Getting X-Men Back?","description":"Nintendo dropped a ton of new announcements, including new hardware and games. Blizzard says progress on Overwatch has been slowed as they try to deal with toxic players. Stan Lee says X-Men and Fantastic Four will come back to Marvel... sooner or later?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ea-becoming-netflix-uncharted-director-leaves-x-men-back-to-marvel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66bb5ea1-adc1-4cd8-850d-24c6f47e5580/sm/24363-1505420233132-thumbnail.jpg","duration":470,"publication_date":"2017-09-15T01:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-what-video-games-are-learning-from-casinos","changefreq":"weekly","video":[{"title":"2017:E294 - What VIDEO GAMES Are Learning from CASINOS","description":"Are video games becoming casinos where the money goes in but never comes out? A new study looks at the techniques casinos use to keep customers spending... and all the ways video games are starting to mirror them.","player_loc":"https://roosterteeth.com/embed/game-news-2017-what-video-games-are-learning-from-casinos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2aa374d-9b9d-4a01-9434-026fc15f2ae1/sm/24363-1505349999568-thumbnail.jpg","duration":479,"publication_date":"2017-09-14T00:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-goes-m-o-d-e-r-n","changefreq":"weekly","video":[{"title":"2017:E293 - Call of Duty Goes... MODERN?","description":"This year is all about World War 2, but could Call of Duty be returning to its Modern Warfare/Black Ops era next year with Treyarch? Signs so far point to... likely! Especially thanks to this shiny new job posting for Treyarch.","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-goes-m-o-d-e-r-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7543d667-0810-41bc-bb95-9bff72769751/sm/24363-1505348732652-thumbnail.jpg","duration":360,"publication_date":"2017-09-14T00:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cyberpunk-2077-is-how-b-i-g-destiny-2-s-kekistan-gauntlets-i-phones-last-one-year","changefreq":"weekly","video":[{"title":"2017:E174 - Cyberpunk 2077 is HOW BIG? + Destiny 2's Kekistan Gauntlets + iPhones Last ONE Year?","description":"A potential new leak suggests Cyberpunk 2077 could be 4 times the size of The Witcher 3. Bungie has proactively recalled a set of Destiny 2 gauntlets that resembled the \"Kekistan Flag,\" a symbol often associated with the resurgence of the white supremacist movement. Apple's defended broken phones in court, claiming that they're only guaranteed to last 1 year. Plus, improvements to Nintendo Switch voice chat, indies selling great on Switch, Japan's dipping Destiny 2 sales, SNES Classic costs over $300 some places, World of Warcraft's charity pet comes early, Star Wars Episode IX moves its date, iPhone X expected sales, and a fake CEO's retirement.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cyberpunk-2077-is-how-b-i-g-destiny-2-s-kekistan-gauntlets-i-phones-last-one-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfe2898e-9118-4903-a123-4636d968d3d7/sm/24363-1505334396382-thumbnail.jpg","duration":568,"publication_date":"2017-09-13T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-i-phone-x-changes-e-v-e-r-y-t-h-i-n-g-will-the-new-i-phone-flop","changefreq":"weekly","video":[{"title":"2017:E33 - New iPhone: INNOVATIVE or OUT OF IDEAS?","description":"Apple unveiled not 2, but 3 new iPhones! They must be doing some CRAZY cool stuff for 3 whole iPhones, right? Enter Animojis. FaceID. More glass! We tease, but let's be honest, we'll probably buy them.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-i-phone-x-changes-e-v-e-r-y-t-h-i-n-g-will-the-new-i-phone-flop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/681211e4-ae4c-4ddb-801d-74ba1b03b05f/sm/24363-1505267226903-thumbnail_2.jpg","duration":439,"publication_date":"2017-09-13T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-breaks-pc-gaming","changefreq":"weekly","video":[{"title":"2017:E292 - Windows 10 BREAKS PC Games?","description":"You remember that fancy Creators Update that was supposed to make PC gaming on Windows 10 even better? Turns out it... kinda broke a lot of game performance instead. Luckily, MICROSOFT thinks they've got it licked! So... all's well that ends well?","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-breaks-pc-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbd68137-efcb-48f0-a02a-e92f1096f3d3/sm/24363-1505323321868-thumbnail.jpg","duration":394,"publication_date":"2017-09-12T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pewdiepie-apologizes-nes-classic-b-a-c-k-jj-abrams-for-episode-ix","changefreq":"weekly","video":[{"title":"2017:E173 - Pewdiepie Apologizes + NES Classic RETURNS + PETA vs Monkey Selfie","description":"Pewdiepie has apologized for the racial slur that led to Firewatch developer Campo Santo blacklisting him. Nintendo confirms the NES Classic will return for gamers who couldn't get one in the first fun. A lawsuit over a monkey's selfie has been decided. Plus, Shadowrun could return to Xbox, Okami HD is official, Samus Returns reviews are in, Fortnite is getting in on the Battle Royale action, Chucklefish teases their magician life simulator, Lawbreakers hits a new low, a CSGO team misses out on $50k, Star Wars Episode IX has a director again, and Patty Jenkins returns for Wonder Woman 2.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pewdiepie-apologizes-nes-classic-b-a-c-k-jj-abrams-for-episode-ix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/567458ee-c340-4c91-9049-a1b3bec6599b/sm/24363-1505327723995-thumbnail.jpg","duration":667,"publication_date":"2017-09-12T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-selling-worse-than-destiny-1","changefreq":"weekly","video":[{"title":"2017:E291 - Destiny 2 PLUMMETS 58%! Is It FAILING?","description":"The first sales numbers are in for Destiny 2 and.... well, they're down. a lot. from Destiny 1. Is it time to panic about the whole thing? Not just yet. Let's dig into the numbers and how they really compare.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-selling-worse-than-destiny-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda717cf-a5f4-4e20-9e86-3d20401a9d8a/sm/24363-1505173682671-thumbnail.jpg","duration":443,"publication_date":"2017-09-12T00:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pewdiepie-goes-too-far-this-time","changefreq":"weekly","video":[{"title":"2017:E290 - The New War on Pewdiepie Could Ruin Let's Plays?","description":"Over the weekend a video of Pewdiepie dropping the n-bomb casually while playing Battlegrounds, leading Firewatch developer Campo Santo to ban him from doing videos in their games, even DMCAing a previous video. That's riled up the conversation around let's plays, streams, and fair use... and not necessarily in gamers' favor.","player_loc":"https://roosterteeth.com/embed/game-news-2017-pewdiepie-goes-too-far-this-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a345b99d-7bcd-47b5-a1fa-0906a363615a/sm/24363-1505170836607-thumbnail.jpg","duration":541,"publication_date":"2017-09-11T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-5","changefreq":"weekly","video":[{"title":"2017:E172 - Nintendo vs SNES Classic Scalpers + Batman Arkham DEAD? + Ark STILL BROKEN","description":"Nintendo swears they've learned from the NES Classic and you don't need to resort to paying scalper prices for an SNES Classic. Batman's voice actor reveals the Batman Arkham series is dead. Ark: Survival Evolved has officially launched, but the console versions are rough enough maybe it needed more time in the oven. Plus, Bethesda backtracks its backtrack about an unannounced game for 2017, Nintendo's got a Direct on Wednesday to talk more about their upcoming Switch and 3DS games, LA Noire will cost more on Switch than other platforms, more retailers are leaking a Shenmue remaster, IT sets box office records, and congress is planning a probe over the huge Equifax hack.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/381db351-def5-44c4-a3ac-73238c0994fb/sm/24363-1505159356232-thumbnail.jpg","duration":484,"publication_date":"2017-09-11T19:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-15","changefreq":"weekly","video":[{"title":"S1:E14 - New Game+ #15","description":"Can single player/ speedruns become esport options? Also will you game when you're old?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afcf5fb2-3681-4dcf-bf27-203a60fc25a3/sm/2411188-1504907380907-GP15_-_PS_-_THUMB.jpg","duration":1080,"publication_date":"2017-09-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-country-bans-steam","changefreq":"weekly","video":[{"title":"2017:E289 - Steam Gets BANNED by Mistake","description":"Steam has seen a country-wide ban in Malaysia after the country demanded the platform remove the new game, Fight of Gods, over religious sensitivity concerns. Just because Jesus can fight Buddha or whatever, apparently. #ZoolanderWasRight","player_loc":"https://roosterteeth.com/embed/game-news-2017-country-bans-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ee19e33-6d7b-40b2-b3a6-e1383f9d7502/sm/24363-1504910221325-thumbnail.jpg","duration":512,"publication_date":"2017-09-08T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-c-s-go-gambling-case-settled","changefreq":"weekly","video":[{"title":"2017:E288 - NO CONSEQUENCE for CSGO Lotto?","description":"Remember the whole scandal a few months back when it turned out YouTubers promoting a CS:GO Lotto website turned out to own the website? That got them pulled in front of a judge and now the verdict is in.","player_loc":"https://roosterteeth.com/embed/game-news-2017-c-s-go-gambling-case-settled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de2fc09c-ca05-4d12-8f63-30cf6bd46516/sm/24363-1504905918344-thumbnail.jpg","duration":459,"publication_date":"2017-09-08T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-friday-round-up-2","changefreq":"weekly","video":[{"title":"2017:E171 - Holiday Switch Shortage + X-FORCE Gon' Give It To Ya + Hack Exposes 143 Million","description":"Prepare for a holiday Switch shortage because even Nintendo's being evasive about it. An X-Force movie is moving forward with Deadpool and Cable. An Equifax hack has exposed 143 million people's super-personal information, including social security numbers and credit cards. Plus, Nintendo on VR for Switch, Ubisoft vs Vivendi, Halo backwards compatibility update, huge Destiny 2 sales and DLC leaks, Okami HD for PC, a sequel for IT, Marvel and Star Wars abandoning Netflix, and Toys R Us going bankrupt.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-friday-round-up-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/144dca78-8852-478c-8305-d267ef224246/sm/24363-1504899049559-thumbnail.jpg","duration":597,"publication_date":"2017-09-08T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-screaming-about-shaders-15","changefreq":"weekly","video":[{"title":"S1:E15 - Screaming About Destiny 2 Shaders - #15","description":"Reclaim your light level with Ashley, Ryan, Adam, and Mica as they rave about Destiny 2 (20:30), anticipate their biggest games of the holiday season (58:51), and speedrun the news (1:06:50).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-screaming-about-shaders-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4763a95-c485-4e2b-a360-075edb7b0c3a/sm/2411188-1504878387679-GP15_-_THUMB.jpg","duration":4760,"publication_date":"2017-09-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-south-park-has-a-dream","changefreq":"weekly","video":[{"title":"2017:E287 - South Park: The Fractured But Whole RACE-BASED DIFFICULTY","description":"South Park is no stranger to brutal social commentary, but the new race-based difficulty slider in The Fractured But Whole has still come as a surprise to many gamers. Well, that plus the whole cis/transgender options and the rednecks who assault you if they don't like you because of it. On the bright side? The difficulty doesn't affect combat! It just affects... your whole life.","player_loc":"https://roosterteeth.com/embed/game-news-2017-south-park-has-a-dream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e2ab04e-2ddc-4271-ab3e-d12c08f488b8/sm/24363-1504848592646-south_park_tfbh_race_difficulty.jpg","duration":443,"publication_date":"2017-09-08T05:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-players-revolt-over-fashion","changefreq":"weekly","video":[{"title":"2017:E286 - Destiny 2 PLAYER REVOLT","description":"It seems like only yesterday the biggest concern Destiny 2 had was microtransactions that provided potentially boosting in-game items. Now it's gotten so much worse. THEY CAME FOR OUR FASHION.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-players-revolt-over-fashion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d632073-47b6-40a1-bd8f-b162d8b6df92/sm/24363-1504827636153-thumbnail.jpg","duration":561,"publication_date":"2017-09-07T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-5","changefreq":"weekly","video":[{"title":"2017:E170 - Destiny 2 CRASHES + Bayonetta 3 Teased + Bethesda vs Paid Mods","description":"Destiny 2 is suffering PS4 Pro crashes and connection issues across the board. Hideki Kamiya is teasing fans about Bayonetta 3. Bethesda comments on the future of free vs paid mods. Plus, Bethesda may still have an unreleased/unannounced game dropping this year... or not, there's still hope for No More Heroes 3, Battlegrounds is teaming up with Rare for technology, Killer Instinct will have Windows 10/Steam crossplay on PC, LA Noire is getting re-released for new consoles, Jordan Vogt-Roberts has an idea why videogame movies have sucked and thinks he can do better, and everyone's fighting over the rights to James Bond.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc5e1811-01c0-48e2-bd45-bf0c147125ef/sm/24363-1504820560505-thumbnail.jpg","duration":585,"publication_date":"2017-09-07T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-is-google-crushing-all-dissent","changefreq":"weekly","video":[{"title":"2017:E32 - Google CENSORING Critics?","description":"Google's been accused by multiple sources of intentionally burying search results to content critical of its practices and even getting critics booted from partnered programs, on top of YouTubers claiming the adpocalypse is driving them off the platform.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-is-google-crushing-all-dissent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebeb708a-7dba-4d94-bfae-1c0b2475e9c9/sm/24363-1504737646817-thumbnail.jpg","duration":388,"publication_date":"2017-09-07T00:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-another-star-wars-director-fired","changefreq":"weekly","video":[{"title":"2017:E32 - Star Wars LOSES Another Director! TIME TO PANIC?","description":"Star Wars has just lost another director for an upcoming film. Time to worry? Instability with directors hasn't worked out too well for DCEU so far, but don't panic just yet.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-another-star-wars-director-fired","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d1b5e5-fa19-4125-bd51-64ab2093773d/sm/24363-1504737506641-thumbnail.jpg","duration":465,"publication_date":"2017-09-06T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-7","changefreq":"weekly","video":[{"title":"2017:E169 - Pokemon Chief Predicted Switch FAILURE + Nier Automata ABANDONED? + IT is Scary Good","description":"The Pokemon Company's CEO predicted failure for Nintendo Switch, but now admits he was a bit off. Nier Automata still hasn't been updated on PC, despite promises from the publisher. The IT movie reviews are out and they mostly agree it's pretty good. Plus, PlayerUnknown's Battlegrounds has hit 10 million sales, some games are already requiring a MicroSD card for Nintendo Switch, an analyst is predicting Xbox One X to outsell PS4 Pro, Hajime Tabata's Final Fantasy team is starting work on their next project for next-gen consoles, Sonic Mania's DRM has already been cracked (even though SEGA removed it), lawsuits against Yahoo for hacks that compromised more than 1 billion accounts are moving forward, The Last Jedi director Rian Johnson shares how Snoke fits into the movie, and scientists have found a black hole 100,000x larger than the sun. Sleep tight!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5847afa-026c-46e2-b12f-4cda2cde273e/sm/24363-1504727881203-thumbnail.jpg","duration":650,"publication_date":"2017-09-06T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-dean-takashi-s-40-000-hour-cuphead-speedrun","changefreq":"weekly","video":[{"title":"2017:E284 - Journalists Shouldn't SUCK at Games?","description":"A video has been making the rounds of a game journalist playing Cuphead and being... not so good at the game. Now it's reigniting the conversation about whether game journalists are worth listening to if they're not even good at games.","player_loc":"https://roosterteeth.com/embed/game-news-2017-dean-takashi-s-40-000-hour-cuphead-speedrun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57d52e84-4226-4c91-aac9-161d439abcdc/sm/710924-1504652565980-thumbnail.jpg","duration":426,"publication_date":"2017-09-05T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-pay-to-w-i-n-well","changefreq":"weekly","video":[{"title":"2017:E285 - Destiny 2 PAY TO WIN Microtransactions?","description":"Destiny 2 servers are live and players who got early physical copies are diving in to find... performance boosting microtransactions? Don't freak out, but get your concerned look ready.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-pay-to-w-i-n-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1b92fa5-bd80-4315-9faa-38f57c35b882/sm/24363-1504647836868-thumbnail.jpg","duration":473,"publication_date":"2017-09-05T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-7","changefreq":"weekly","video":[{"title":"2017:E168 - Mario FIRED + CENSORED on Steam + Inhumans WORST SHOW EVER?","description":"Looks like Mario's been fired from his plumbing job... probably because he never did any work. Another game has had to censor itself to get on Steam after being pulled from the platform. The Inhumans TV show kicked off with an IMAX launch and it's... REALLY REALLY BAD. Plus, Xbox talks segregation of controller players from keyboard and mouse players, Knack 2 is out and it's ok, Gearbox is teasing Borderlands 3 and nobody's surprised, Nintendo Switch is dramatically outpacing PS4 sales in Japan, we've got first hints about the Avengers game from Square-Enix, Harvy Relief Done Quick raised a ton of money for Houston, this was the worst Labor Day box office in decades, Shia Labeouf won't be in the next Indiana Jones movie, and Elon Musk thinks AI could start World War III.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ae681b9-23c1-4168-8485-51f688a90e17/sm/24363-1504647549871-thumbnail.jpg","duration":674,"publication_date":"2017-09-05T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-destiny-2","changefreq":"weekly","video":[{"title":"2017:E283 - Know Before You Go... Destiny 2","description":"Destiny 2 is only days away from launch. If you've been curious about what's different in the sequel -- or how it plans to avoid being as contentious in the first game -- we've got a round-up of everything you might want to know before you grab it from the store.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-destiny-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a185d6b4-3744-4ff3-96d1-0f455bfb68fe/sm/710924-1504296669030-thumbnail.jpg","duration":374,"publication_date":"2017-09-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7-too-much-of-a-good-t-h-i-n-g-know-your-t-h-r-o-n-e-s-the-game-of-thrones-nerdalong-for-season-7-episode-7","changefreq":"weekly","video":[{"title":"GoTS7:E7 - TOO MUCH OF A GOOD THING? - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 7","description":"Game of Thrones is over for at least a year, probably more from what we're hearing. We've watched the season finale, gotten angry, laughed, cried, and have a lot to say about the whole thing.WARNING: We recorded this higher quality version when we streamed but it still dropped frames on occasion (especially the end) so if that kind of thing bothers you we highly recommend pulling up pictures of cats in a new tab to watch while you listen to this instead.","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7-too-much-of-a-good-t-h-i-n-g-know-your-t-h-r-o-n-e-s-the-game-of-thrones-nerdalong-for-season-7-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb7d3db6-848e-4d3c-b5fb-cb81ed60792f/sm/24363-1504464805368-thumbnail.jpg","duration":3404,"publication_date":"2017-09-03T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-14","changefreq":"weekly","video":[{"title":"S1:E13 - New Game+ #14","description":"What do you look for when looking for new games? Do you have different criteria for a single player vs multiplayer game, and how does that mix in a game that offers both?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2522194a-d547-4e96-ae45-1f4b583f2a47/sm/2411188-1504214874763-GP14_-_PS_-_THUMB.jpg","duration":467,"publication_date":"2017-09-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-dev-claims-to-invent-multiplayer-gets-mocked","changefreq":"weekly","video":[{"title":"2017:E282 - Dev Called Out for STEALING Credit?","description":"A longtime iD Software developer sort-of claimed he invented the concept of multiplayer only maps in a recent interview... now, a bunch of his former colleagues are accusing him of taking credit for the work of others. So we've got a good old-fashioned developer fight on our hands, and they're setting the record straight.","player_loc":"https://roosterteeth.com/embed/game-news-2017-dev-claims-to-invent-multiplayer-gets-mocked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37bb23f7-aac6-4dc4-9645-07cb0894646d/sm/710924-1504296659842-thumbnail.jpg","duration":302,"publication_date":"2017-09-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-was-the-wii-built-with-stolen-tech","changefreq":"weekly","video":[{"title":"2017:E281 - Nintendo Loses Lawsuit!","description":"Oops, looks like Nintendo just lost a lawsuit over one of their consoles. Now they owe $10 million dollars in damages because of waggling -- we always knew it'd lead to trouble.","player_loc":"https://roosterteeth.com/embed/game-news-2017-was-the-wii-built-with-stolen-tech","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3597a547-e396-4e12-810c-8fa10786b5d6/sm/710924-1504293720786-thumbnail.jpg","duration":275,"publication_date":"2017-09-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-gamers-get-charitable-violent-games-banned-from-olympics-leo-for-joker-movie-theaters-dying","changefreq":"weekly","video":[{"title":"2017:E167 - Gamers Get Charitable + Violent Games Banned from Olympics + Leo for Joker","description":"Happy early Labor Day weekend! There are tons of ways gamers can give back this weekend, Gamescom may have been one of the most underhyped conventions ever, Sonic Forces got a release date, Microsoft lost another exclusive, eSports might not make it to the Olympics after all, the Metal Gear Solid movie is going full Kojima, and a familiar face might be tapped to play the Crown Prince.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-gamers-get-charitable-violent-games-banned-from-olympics-leo-for-joker-movie-theaters-dying","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35fbbf4c-7c25-4f39-8241-0b633739de1c/sm/710924-1504293394997-charity_games_roundup.jpg","duration":430,"publication_date":"2017-09-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-goombas-clean-their-butts-14","changefreq":"weekly","video":[{"title":"S1:E14 - Goombas Clean Their Butts? - #14","description":"Put on your stuff-combining-glasses because this week Ryan, Adam, Peyton, and Mica talk about Half Life 3 in the news (20:22), gush over Mario+Rabbids Kingdom Battle (40:44), and pitch their ideas for crazy crossovers (57:20). This episode is sponsored by Skillshare (http://skl.sh/glitchplease)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-goombas-clean-their-butts-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e542b8-3271-4f1d-a10e-ee055832904f/sm/2411188-1504214042558-GP14_-_THUMB.jpg","duration":4016,"publication_date":"2017-09-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-stop-defends-expensive-snes-bundles","changefreq":"weekly","video":[{"title":"2017:E280 - GameStop: Expensive Bundles \"More Convenient\"","description":"When a Nintendo system is hard to find, you can count on retailers to get more available... in the form of over-priced bundles with other stuff you don't want. Now, GameStop is defending that practice, claiming that it's \"more convenient\" for you to spend more money on the system. Right...","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-stop-defends-expensive-snes-bundles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a3c9459-919e-48d1-9dc3-8103f208fefb/sm/710924-1504208756229-thumbnail.jpg","duration":349,"publication_date":"2017-09-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-one-x-predorder-record-overblown","changefreq":"weekly","video":[{"title":"2017:E279 - Xbox One X Pre-Order Overblown?","description":"Xbox One X is getting hyped as the most pre-ordered Xbox ever, but one analyst has a bit of a bone to pick with that sentiment. And according to him, pre-order numbers for the system may not be simply just overblown, but \"bull****.\"","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-one-x-predorder-record-overblown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98d8982f-20c2-494d-b435-baf0bb1b5a16/sm/710924-1504208688545-thumbnail.jpg","duration":279,"publication_date":"2017-09-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-4","changefreq":"weekly","video":[{"title":"S1:E3 - Try Harder #4","description":"How much did Sean Murray make from No Man's Sky? No really, if someone could please tell us that would be great.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5997e1b1-4f25-44d5-adae-f36b1b6ee6a6/sm/2056961-1478014128003-TryHarder4Thumb.jpg","duration":1000,"publication_date":"2016-11-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-modern-warfare-remastered-multiplayer-done-signed-it-s-in-the-movie","changefreq":"weekly","video":[{"title":"S1:E28 - Modern Warfare Remastered Multiplayer: Done. Signed. It's in the Movie","description":"Done. Signed. It's in the movie. Done. Signed. It's in the movie. Done. Signed. It's in the movie.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-modern-warfare-remastered-multiplayer-done-signed-it-s-in-the-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0eb43c34-d40d-430e-9109-833c3ab2b9db/sm/2056961-1477931119940-11_01_16_LP_MWRemasteredMPThumb.jpg","duration":678,"publication_date":"2016-10-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-battlefield-1-with-achievement-hunter-vs-funhaus","changefreq":"weekly","video":[{"title":"LPS:E8 - Let's Play Battlefield 1 with Achievement Hunter vs Funhaus","description":"Game Attack teams up with AH & more of the LP Family to destroy those idiots at Funhaus in Battlefield 1! | Thanks to EA for sponsoring this video! Check out Battlefield 1 at http://www.Battlefield.com\n\n\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - http://bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\n\n\n\n\nGame Attack shirts & hats: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-battlefield-1-with-achievement-hunter-vs-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b72efb6-0dd3-4f8a-bac4-a6347ebd4c35/sm/2056961-1477679856562-110116_Battlefield1Thumb2.jpg","duration":806,"publication_date":"2016-10-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-get-to-the-c-h-o-p-p-a","changefreq":"weekly","video":[{"title":"S1:E4 - GET TO THE CHOPPA!","description":"We're playing Dustoff 2: Heli Rescue this time around & we learn one thing: Parker doesn't know SHIT about geography.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-get-to-the-c-h-o-p-p-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f252543-a86d-4bfc-a6bb-38b8e642faf7/sm/2056961-1477605962741-103016_Dustoff2Thumb.jpg","duration":850,"publication_date":"2016-10-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-outlast-2-craig-s-a-scared-baby","changefreq":"weekly","video":[{"title":"LPS:E7 - Outlast 2: Craig's A Scared Baby","description":"There's a reason Craig doesn't like to play horror games. It's because when he does he turns into a 6 year old girl who jumps and screams at everything. We're surprised he didn't pee his pants while recording thing. Wait... he did? Yeah, Craig peed his pants while recording this.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-outlast-2-craig-s-a-scared-baby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e361bab5-637e-4ed7-87c6-98fb2b30a7f8/sm/2056961-1477515728750-10_26_16_Outlast2Thumb.jpg","duration":877,"publication_date":"2016-10-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-kart-8-with-kinda-funny","changefreq":"weekly","video":[{"title":"S1:E26 - Mario Kart 8 with Kinda Funny","description":"Down in Austin we hung out with Greg & Tim from Kinda Funny and showed them who's boss in Mario Kart 8... or something like that.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-kart-8-with-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d901af56-3867-454a-9d3b-18c61e890e7d/sm/2056961-1477416374130-10_24_16_FP_MarioKartKindaFunny.jpg","duration":853,"publication_date":"2016-10-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1-try-harder-3","changefreq":"weekly","video":[{"title":"S1:E2 - Try Harder #3","description":"When Chad was 5 years old he told him mom to fuck off. She didn't take it very well.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1-try-harder-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b88519c-4eaf-457f-aa2f-239cb83324e1/sm/2056961-1477418754167-TryHarder3Thumb.jpg","duration":870,"publication_date":"2016-10-25T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-hail-to-the-bus-driver","changefreq":"weekly","video":[{"title":"S1:E3 - Hail to the Bus Driver","description":"Drunken Halloween parties, yam parties and bus drivers. Yup, this week was NUTS\n\n\n\n\n\n\n\n\n\nThanks to our first ever sponsor on Try Hard, Dollar Shave Club! Try it for free by going to http://www.DollarShaveClub.com/TryHard","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-hail-to-the-bus-driver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69853ded-53b6-439c-b21f-1e595b924073/sm/2056961-1477417616349-TryHard3Thumb.jpg","duration":5392,"publication_date":"2016-10-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-wwe-2-k17-the-match-of-the-c-e-n-t-u-r-y","changefreq":"weekly","video":[{"title":"LPS:E6 - Let's Play WWE 2k17 - THE MATCH OF THE CENTURY!","description":"LPS:E6 - Let's Play WWE 2k17 - THE MATCH OF THE CENTURY!","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-wwe-2-k17-the-match-of-the-c-e-n-t-u-r-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d55bfc9e-8189-47c1-9cc5-62eba7fefceb/sm/2056961-1477089138439-LPWWE2k17Thumb.jpg","duration":834,"publication_date":"2016-10-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-call-of-duty-infinite-warfare-vs-p-r-o-s","changefreq":"weekly","video":[{"title":"S1:E25 - Call of Duty: Infinite Warfare VS PROS!","description":"We take on the pro gaming team Mindfreak and the results may shock you.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-call-of-duty-infinite-warfare-vs-p-r-o-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/515ea6c4-bc03-4f08-b659-ebbb41795a0d/sm/2056961-1477086988192-CallofDutyvsPros.jpg","duration":1080,"publication_date":"2016-10-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-turbo-dismount","changefreq":"weekly","video":[{"title":"S1:E3 - TURBO DISMOUNT","description":"Ever wanted to reverse cowgirl a motorcycle through turbo boosters into landminds? It's GLORIOUS.","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-turbo-dismount","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74024850-abf8-4e2a-ba77-302041db30a6/sm/2056961-1477198335309-IMG_5733.JPG","duration":956,"publication_date":"2016-10-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-craig-s-crazy-nintendo-switch-reaction","changefreq":"weekly","video":[{"title":"L:E2 - Craig's Crazy Nintendo Switch Reaction","description":"So apparently Craig's pretty excited for the Nintendo Switch... and Bolen feels the need to chew his gum while being in front of a microphone. He's sorry.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-craig-s-crazy-nintendo-switch-reaction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1a4fd6a-a4d2-458e-85a6-a26320b9e3bf/sm/2056961-1476980562335-SwitchReactionThumb.jpg","duration":398,"publication_date":"2016-10-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-humpity-hump-hump","changefreq":"weekly","video":[{"title":"S1:E24 - Gang Beasts: Humpity Hump Hump","description":"The insanity continues with some of the most epic moments in video game history happening. Brace yourself.\n\nSub to Game Attack on YouTube: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlay\n\n\n\nTap That App - http://bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcast\n\n\n\nGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStore\n\n\n\nGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-humpity-hump-hump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f4374bf-ecac-47cf-81db-c66bf504f9b9/sm/2056961-1476899774322-GangBeasts3Thumb.jpg","duration":1125,"publication_date":"2016-10-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-mafia-3-glitches-and-highlights","changefreq":"weekly","video":[{"title":"LPS:E5 - Mafia 3 Glitches and Highlights","description":"Bolen played Mafia 3 for over 35 hours and compiled his absolute best moments... and worst.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-mafia-3-glitches-and-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4102e5a-5a8b-44fb-aed9-f96d14dbbe1f/sm/2056961-1476894503153-Mafia3HighlightThumb.jpg","duration":759,"publication_date":"2016-10-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Conquering Fears - Try Hard Podcast #2","description":"Chad's a scared baby. Bolen wants to help him fight his demons. Friends.\n\n\n\n\n\n\n\n\n\n\n\nSub to Game Attack on YouTube: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\n\n\n\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7640b367-063b-4fbc-9239-6a22bc645ce0/sm/2056961-1476817970159-TryHardThumb.jpg","duration":5867,"publication_date":"2016-10-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-amazing-frog-with-achievement-hunter","changefreq":"weekly","video":[{"title":"LPS:E4 - Let's Play Amazing Frog with Achievement Hunter","description":"A long requested game, Chad & Sam are joined by Michael & Gavin from Achievement Hunter to try to find out what's outside the mystical wall of Amazing Frog.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-amazing-frog-with-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ca3bc2-da57-4ae9-b46e-89c717ad3721/sm/2056961-1476751228158-AmazingFrog.jpg","duration":2702,"publication_date":"2016-10-18T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gta-cunning-stunts-with-achievement-hunter","changefreq":"weekly","video":[{"title":"S1:E23 - GTA Cunning Stunts with Achievement Hunter","description":"Craig, Shaun, Chad and Sam were down in Austin and played with AH and realized that Geoff is a really shitty sport.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gta-cunning-stunts-with-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/289dae6f-4c7a-4980-9e79-8d29e52a4415/sm/2056961-1476306079693-10_16_16_FPCunningStunts_Thumb.jpg","duration":1398,"publication_date":"2016-10-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-maximum-c-a-r","changefreq":"weekly","video":[{"title":"S1:E2 - MAXIMUM CAR!","description":"There was these cars and they were flipping all over the place, and then there was rockets that hit these other cars and then there was a boost that made the car go really fast and then there was almost a head on crash and then the cars missed and then WHOA.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\n\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-maximum-c-a-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4b07fd8-f1a8-4e4f-905a-a0635dc475ae/sm/2056961-1476507393695-10_16_16_TTA_MaximumCar2.jpg","duration":912,"publication_date":"2016-10-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-lists-lists-11-horrible-games-based-on-cartoons","changefreq":"weekly","video":[{"title":"L:E1 - 11 HORRIBLE Games Based on Cartoons","description":"We don't plan on doing many lists here on Game Attack BUT if you want to see more, make sure to thumbs up this videos!","player_loc":"https://roosterteeth.com/embed/game-attack-lists-lists-11-horrible-games-based-on-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87a7ffbd-2dac-47ab-b6cc-a2f0d1495b91/sm/2056961-1476503044774-10_15_16_List_Cartoons.jpg","duration":540,"publication_date":"2016-10-15T05:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-mafia-3-let-s-murder-people","changefreq":"weekly","video":[{"title":"LPS:E3 - Mafia 3: Let's Murder People","description":"YES! We finally get to be what we always wanted to be: a Vietnam soldier who is oppressed by police and fucks everything up. ","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-mafia-3-let-s-murder-people","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5640866-7e77-4a37-b163-cb871b5bc6af/sm/2056961-1476307839275-10_13_16_LPMafia3_Thumb.jpg","duration":1475,"publication_date":"2016-10-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/try-harder-season-1","changefreq":"weekly","video":[{"title":"S1:E1 - Try Harder #1","description":"Softcore porn. Yup. It's going down. No, Bolen does not take off his pants.... yet.","player_loc":"https://roosterteeth.com/embed/try-harder-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9152ce13-feb9-4f41-b6df-a7419d9c3151/sm/2056961-1476295296616-10_11_16_TryHarder_Thumb.jpg","duration":1080,"publication_date":"2016-10-12T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/try-hard-podcast-try-hard-season-1-try-hard-ep-1","changefreq":"weekly","video":[{"title":"S1:E1 - The Party Begins - Episode 1","description":"It's the premiere episode of Game Attack's flagship \"Try Hard\" Podcast and it took us 5 minutes to get to talking about nympho aligators with boobs. Also, Chad's a hoity toity spaghetti snob.\n\n\n\n\n\nSub to Game Attack on YouTube: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlayGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/try-hard-podcast-try-hard-season-1-try-hard-ep-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c178ed41-40dd-479e-b8a7-523e07ad07b1/sm/2097098-1476290997315-TryHard101016.jpg","duration":3442,"publication_date":"2016-10-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-overcooked-what-have-you-done-to-u-s","changefreq":"weekly","video":[{"title":"S1:E22 - Overcooked: WHAT HAVE YOU DONE TO US???","description":"You ever worked in a restaurant and had that guy who thought he knew what he was doing and was trying to be helpful always fucked everything up? We call him Chad - except Chad never worked in a restaurant.\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\nFollow the GA Team on Twitter:\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-overcooked-what-have-you-done-to-u-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/113e6c45-f7cd-4c3e-a1f9-dfe104df970d/sm/2056961-1476210423265-10_12_16_FPOvercooked_Thumb.jpg","duration":1608,"publication_date":"2016-10-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-modern-warfare-remastered-part-2","changefreq":"weekly","video":[{"title":"LPS:E2 - Modern Warfare Remastered Part 2","description":"Did you know that every time you throw a grenade in Call of Duty a puppy is shot? Think about that the next time you spam the shit out of them in MP.\n\n\n\n\n\nSub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: \n\n\n\nhttp://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-modern-warfare-remastered-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1bccc87-86b6-4a37-8acb-2e79769ebc8d/sm/2056961-1476143458280-10_10_16_LP_MWRemasteredpt1.jpg","duration":1638,"publication_date":"2016-10-11T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tap-that-app-season-1-pewdiepie-s-tuber-simultor-dirt-poor-asshats","changefreq":"weekly","video":[{"title":"S1:E1 - Pewdiepie's Tuber Simulator: Sex, Boobs & Weather","description":"The most popular YouTuber ever is going to teach us how to be successful. Our secret? Sex, boobs and the weather.\n\n\n\n\n\n\n\n\n\n\n\nSubscribe to the new GameAttack channel on YouTube: https://www.youtube.com/user/GameAttack","player_loc":"https://roosterteeth.com/embed/tap-that-app-season-1-pewdiepie-s-tuber-simultor-dirt-poor-asshats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4eaf6811-1e2d-4270-8c28-1499ba043c8b/sm/2056961-1475875416066-10_10_16_TapThatApp_PewDiePie.jpg","duration":1171,"publication_date":"2016-10-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2-lets-play-series-let-s-play-modern-warfare-remastered","changefreq":"weekly","video":[{"title":"LPS:E1 - Modern Warfare Remastered","description":"I don't want anybody else. When I think about you, I touch myself. Oh, I don't want anybody else, oh, no oh, no, oh, no.","player_loc":"https://roosterteeth.com/embed/lets-play-2-lets-play-series-let-s-play-modern-warfare-remastered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6005e136-4786-4b48-9c8e-f96646670a35/sm/2056961-1475894417699-10_10_16_LP_MWRemastered2.jpg","duration":1788,"publication_date":"2016-10-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-10-evil-craig","changefreq":"weekly","video":[{"title":"S1:E21 - Mario Party 10: Evil Craig","description":"Craig is back as Bowser & his only goal is to make the guys miserable. Is he successful. You bet your ass.Sub to Game Attack: http://bit.ly/Sub2GameAttack\n\n\n\n\n\n\n\nFollow the GA Team on Twitter: >http://twitter.com/CraigSkitzhttp://twitter.com/ShaunBolenhttps://twitter.com/tehrealbryanhthttps://twitter.com/parkerbohonhttp://twitter.com/GameAttackTeam\n\n\n\n\n\n\n\nWatch the new Game Attack shows:Four Play - http://bit.ly/GAFourPlayTap That App - bit.ly/GATapThatAppTry Hard Podcast - http://bit.ly/TryHardPodcastGA Let's Plays - http://bit.ly/GALetsPlay\n\n\n\n\n\n\n\n\n\nGame Attack merch: http://bit.ly/GameAttackStoreGame Attack on Reddit: https://www.reddit.com/r/GameAttack","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-10-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af624fcd-65d7-4b75-98a0-88610a77a4ec/sm/2056961-1476068363573-GA_MarioParty10pt2Thumb.png","duration":1046,"publication_date":"2016-10-10T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-party-10","changefreq":"weekly","video":[{"title":"S1:E20 - Mario Party 10: Bowser is a Cheating A**hole","description":"Did you know that Mario Party 10 is the cheapest game ever created? Craig plans to take full advantage of that.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-party-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2427b477-8de3-4f9c-9e83-50b35c3b7c2c/sm/2056961-1475877950876-GA_MarioParty10pt1Thumb.png","duration":999,"publication_date":"2016-10-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-halo-3-circle-of-doom","changefreq":"weekly","video":[{"title":"S1:E19 - Halo 3: Circle of Doom","description":"The GameAttack crew takes on the third installment of Halo and Shaun has his moment of glory","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-halo-3-circle-of-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91c5605a-b13f-48a1-8b9f-4861bf3bb48b/sm/2056984-1475293768976-Halo3Thumb.jpg","duration":1079,"publication_date":"2016-10-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-dripping-with-koi-doa-xtreme-beach-vollyball","changefreq":"weekly","video":[{"title":"S1:E18 - Dripping with Koi | DOA Xtreme Beach Volleyball","description":"Volleyballs and... other things are bouncing around like crazy in the latest episode of GameAttack. Also, has anyone seen Sam?","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-dripping-with-koi-doa-xtreme-beach-vollyball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aced320c-574f-40bc-a75c-2146263981a2/sm/2056984-1474608333927-09_22_16_DoAVolleyballThumb.jpg","duration":1015,"publication_date":"2016-09-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-halo-2-bean-flicking","changefreq":"weekly","video":[{"title":"S1:E17 - Halo 2: Flicking Beans & Ciddlin' Flits","description":"One player who's clearly superior than them all... who loves to play the fiddle. Watch the video and you'll understand.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-halo-2-bean-flicking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a50d672-09f7-4cdb-aa2b-892e1fe6ad2b/sm/2056961-1473883108944-GA_Halo2Thumb.jpg","duration":1826,"publication_date":"2016-09-16T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-kart-64-f-you-mario","changefreq":"weekly","video":[{"title":"S1:E16 - Mario Kart 64: F YOU MARIO","description":"You know when you play Mario Kart and the entire time you just keep getting f'ed on by the game? Green shell, then red shell, then lightning, then knocked off a cliff then.... F THIS GAME!","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-kart-64-f-you-mario","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6c01836-ef8d-43e6-b3d3-28367cd42c96/sm/2056961-1473436708197-MariokartGrandPrixThumb.jpg","duration":771,"publication_date":"2016-09-09T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-double-down","changefreq":"weekly","video":[{"title":"S1:E16 - Gang Beasts: Double Down","description":"We could play Gang Beasts everyday non-stop for the rest of our lives.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-double-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f2e2fee-d97d-40f4-baac-c040fc129a1a/sm/2056961-1472752235213-GameAttackGangBeastThumb.jpg","duration":827,"publication_date":"2016-09-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-shadow-warrior-2-look-in-the-f-n-well","changefreq":"weekly","video":[{"title":"S1:E15 - Shadow Warrior 2: TIger Threeway","description":"Some mother f*ckers always tryin' to ice skate uphill.\n\n\n\nFollow the guys:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBolen - http://twitter.com/ShaunBolen\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-shadow-warrior-2-look-in-the-f-n-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a81adc69-22df-4e28-8a20-dca0049425d0/sm/2056961-1472070610933-ShadowWarrior2Thumb.jpg","duration":411,"publication_date":"2016-08-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-starwahl-salty-sh-tbags","changefreq":"weekly","video":[{"title":"S1:E14 - Starwahl: Salty Sh*tbags","description":"Why's everyone got to be so mad about a game about space dolphins stabbing each other with giant nose horns?\n\nClick to Subscribe: http://bit.ly/SubtoScrewAttack\n\n\n\nStuff you should do:\n\n►We have a book for you to read and stuff: http://bit.ly/ScrewAttackN64Book\n\n►Watch our stuff early: http://bit.ly/SponsorSA\n\n►Our store: http://bit.ly/NewScrewAttackStore\n\n\n\nLook how social we are:\n\nScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nStalk the crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-starwahl-salty-sh-tbags","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04703dc7-dd61-4261-95f2-d074ab04842d/sm/2056961-1471540891559-StarwahlThumb.jpg","duration":1158,"publication_date":"2016-08-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-halo-combat-evolved-saltiness-prevails","changefreq":"weekly","video":[{"title":"S1:E13 - Halo: Combat Evolved - Saltiness Prevails","description":"What happens when you have a god-tier Halo player and three others that suck shit? Salt.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-halo-combat-evolved-saltiness-prevails","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcc1993d-4f6c-4c08-ba25-b08548b2b735/sm/2056961-1470845279747-GA_HaloThumb.jpg","duration":980,"publication_date":"2016-08-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-smash-bros-64-are-you-kidding-m-e","changefreq":"weekly","video":[{"title":"S1:E11 - Super Smash Bros: ARE YOU KIDDING ME?","description":"The guys duke it out in Smash 64... Craig gets mad...","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-smash-bros-64-are-you-kidding-m-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e519966-52ff-412f-80e2-9466526e414c/sm/2056984-1470340390005-GameAttackSmash64Thumb3.jpg","duration":525,"publication_date":"2016-08-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-grand-theft-auto-5-if-you-ain-t-first-you-re-last","changefreq":"weekly","video":[{"title":"S1:E10 - Grand Theft Auto 5: If You Ain't First You're Last","description":"Chad has been saying we should play GTA forever so we're playing GTA. Would you like for us to play more GTA? GTA is fun. GTA. G.T.A.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-grand-theft-auto-5-if-you-ain-t-first-you-re-last","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71e85eea-9620-481e-96d4-09f6dc91f895/sm/2056961-1469652595050-GameAttackGTA5Thumb2.jpg","duration":1131,"publication_date":"2016-07-28T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-mario-kart-64-battle-mode-the-battle-for-vin-diesel","changefreq":"weekly","video":[{"title":"S1:E9 - Mario Kart 64 Battle Mode: The Battle for Vin Diesel","description":"If you use those fake mystery boxes you're a piece of sh*t.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-mario-kart-64-battle-mode-the-battle-for-vin-diesel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a117c7f3-a534-4eb7-b53d-766fbeb4e96b/sm/2056961-1468947218984-GameAttackMario64BattleThumb.jpg","duration":948,"publication_date":"2016-07-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-the-most-intense-game-ever","changefreq":"weekly","video":[{"title":"S1:E8 - The Most Intense Game Ever?","description":"A game we've been waiting to get our hands on for over 2 years, VIDEOBALL makes us sweat, yell and scream at each other. We love it. Thanks VIDEOBALL for sponsoring this episode.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-the-most-intense-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2ad416d-4bbf-43ef-b5c7-190d0b01e463/sm/2056961-1468704595595-VideoBallThumb.jpg","duration":1027,"publication_date":"2016-07-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-bomberman-make-us-cuss-a-lot","changefreq":"weekly","video":[{"title":"S1:E7 - Bomberman Make Us Cuss... A lot","description":"How many cuss words can four men possibly say while playing an old school game? Lots.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-bomberman-make-us-cuss-a-lot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be34357a-48ed-4737-88f0-acd7472f7df7/sm/2056961-1467350133084-07_01_16_GameAttackThumb.jpg","duration":884,"publication_date":"2016-07-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-h1-z1-make-craig-s-q-u-e-a-l","changefreq":"weekly","video":[{"title":"S1:E6 - H1Z1: MAKE CRAIG SQUEAL!","description":"Tweet @H1Z1KotK with #H1Z1Attack to play on our team at RTX! Find out more here: http://roosterteeth.com/post/51269374 \n\nClick here for more info about the game: http://www.H1Z1.com/KotK \n\nThanks to Daybreak for sponsoring this video.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-h1-z1-make-craig-s-q-u-e-a-l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c8a1a51-5eb4-4813-904c-8d94cf4cbc13/sm/2056961-1466823874930-06_24_16_GameAttackH1Z1Thumb.jpg","duration":1433,"publication_date":"2016-06-25T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-for-honor-vikings-vs-samurai-yes","changefreq":"weekly","video":[{"title":"S1:E5 - For Honor: Vikings vs Samurai? YES","description":"Thanks again to Ubisoft for Sponsoring this video! For Honor ESRB Rating: RP \n\nIf you want to check out the Alpha or Beta, just click this link and sign up today. http://ubi.li/55sqx\n\nAnd for more gameplay, checkout Ubisoft's Campaign Trailer here!","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-for-honor-vikings-vs-samurai-yes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72b3f80a-8710-479b-b3c0-6e46d826d8c3/sm/2056961-1466823669430-06_20_16_GameAttack_ForHonor.jpg","duration":685,"publication_date":"2016-06-25T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-duck-game","changefreq":"weekly","video":[{"title":"S1:E4 - It's a Ducking Massacre | Duck Game","description":"If we have to hear Chad James say \"this is my first time playing this game\" one more time we're probably going to find the closest sharp object and shove it in our ears.","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-duck-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/636165a2-9c94-4ec6-acaa-955a6c26fe78/sm/2056961-1465399899602-GameAttack_DuckGameThumb3.jpg","duration":890,"publication_date":"2016-06-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-gang-beasts-butt-touchin","changefreq":"weekly","video":[{"title":"S1:E3 - Gang Beasts: Butt Touchin'","description":"We've uploaded three episodes of our new series GameAttack - one that's short (Mario Kart 8), that that's medium length (NBA Hangtime) and one that's longer (Gang Beasts). What do you prefer? Watch all of them and let us know!","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-gang-beasts-butt-touchin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cc6cd54-2089-47d6-ab49-53eb8946c3f8/sm/2056961-1464914792493-GameAttack_GangBeastsThumb-2.jpg","duration":1741,"publication_date":"2016-06-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-get-that-t-out-of-here-nba-hangtime","changefreq":"weekly","video":[{"title":"S1:E2 - Get That $#!T Out of Here | NBA Hangtime","description":"Some serious smack talk is in play when Team Wolf (Craig and Shaun) takes on the Old Men (Chad and Sam).","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-get-that-t-out-of-here-nba-hangtime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4452f0f0-dcfb-4b3c-8917-a2f544050d7b/sm/2056961-1464663579233-GameAttack_NBAHangtimeThumb.jpg","duration":732,"publication_date":"2016-06-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-attack-the-short-stuff-fast-and-furious-kart-mario-kart-8","changefreq":"weekly","video":[{"title":"S1:E1 - Fast and Furious Kart | Mario Kart 8","description":"Anyone have a cuss counter?","player_loc":"https://roosterteeth.com/embed/game-attack-the-short-stuff-fast-and-furious-kart-mario-kart-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b79121f-4749-4bd0-b002-96ce46e9bf84/sm/2056961-1463889323536-GameAttack_MarioKartThumb.jpg","duration":299,"publication_date":"2016-05-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-best-of-cow-chop-one-year","changefreq":"weekly","video":[{"title":"S1:E46 - BEST OF COW CHOP • One Year","description":"Subscribe http://bit.ly/1RQtfNf  \r\n\r\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nA lot of crazy things happened in just one year! Check out our most popular videos:\r\n\r\n\r\n\r\nFIRST VIDEO ICE CREAM BROWNIE DISASTER INFINITY GAUNTLET COOKING CHALLENGE  BODY BAG BURIAL • AMAZON PRIME TIME ft. Geoff Ramsey  ALEKS EPIC MILITARY GRADE STINK BOMB PRANK55 GALLONS OF PASSION LUBE • AMAZON PRIME TIMEDEEP INTO JOKER'S MOM • WRONG SIDE OF YOUTUBE SELF-INFLICTED FIRE DAMAGE • AMAZON PRIME TIME CREEPY CLOWN PANDEMIC • WRONG SIDE OF YOUTUBE EXTREMELY HOT AND SPICY • Watch Ya' Mouth AMAZING MINECRAFT PC BUILD ASYLUM PATIENT ADOPTS FISH • AMAZON PRIME TIME  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nEv ji salekê dîn bû, lê belê tu li wê derê ji bo me di hemû dema bûn. Ji bo ku, em soz didin ku her tim hewl da ku hûn bikenin.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nC'était le meilleur des temps, c'était le pire des temps, c'était l'âge de la sagesse, c'était l'âge de la folie, c'était l'époque de la croyance, c'était l'époque de l'incrédulité, c'était la saison de la Lumière, elle C'était la saison des ténèbres, c'était le printemps de l'espoir, c'était l'hiver du désespoir, nous avions tout devant nous, nous n'avions rien devant nous, nous allions tous directement au ciel, nous allions tous aller de l'autre côté Bref, la période était si proche de la période actuelle, que quelques-unes de ses plus bruyantes autorités insistaient sur le fait qu'elle soit reçue, pour le bien ou pour le mal, au niveau superlatif de la comparaison seulement.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBEST OF COW CHOP • One YearThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-best-of-cow-chop-one-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1339ab4b-9d5f-4233-8bef-592f4de4fc54/sm/2516933-1490910485033-BestOfONE_YEAR_thumbnail_option_1.jpg","duration":748,"publication_date":"2017-04-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-the-enemy-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E43 - THE ENEMY • SnipperClips Gameplay","description":"LOOK OUT FOR THE ENEMY \r\n\r\nSubscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... like enemies. Can they save the gold-digging diamond princess?The following is for those multicultural. Achtung auf den Feind! Warum hat diese Diamantprinzessin so viele Feinde? Wer kontrolliert die Feinde? Warum haben sie ihre Diamanten? Sind sie sogar ihre Diamanten? Achten Sie auf den Feind!Jag ska vara vad du vill att jag ska vara.THE ENEMY • SnipperClips GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-the-enemy-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6221862c-b72e-45ba-becf-d333a26d1d4a/sm/2516933-1490894442967-snipperclips4.jpg","duration":1192,"publication_date":"2017-03-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-expensive-drones-talking-birds-amazon-prime-time","changefreq":"weekly","video":[{"title":"S1:E45 - EXPENSIVE DRONES & TALKING BIRDS • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   RT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-expensive-drones-talking-birds-amazon-prime-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f16cb7c-e7d9-4334-aea4-6ce5ba1fda1e/sm/2516933-1490840852380-AmazonDrone.jpg","duration":1035,"publication_date":"2017-03-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-bros-will-be-bros-new-super-mario-bros-u","changefreq":"weekly","video":[{"title":"2017:E42 - BROS WILL BE BROS • New Super Mario Bros U","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nThis time we try a whole new concept with the Wii U. In this gameplay, Aleks and James play through some Mario levels while Trevor is tasked with placing blocks using the gamepad to either help or hinder them. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nToľko rôznych obleky v tejto epizóde. tučniak oblek, mýval oblek, oblek s vĺčik. Všetci veľkí obleky. Ktorý z nich je vaše najobľúbenejšie?\n\n\n\n\n\n\n\n\n\n\n\nΤα μυστικά είναι πραγματικά δύσκολο να βρεθεί, αν δεν ξέρετε πού να κοιτάξετε.\n\n\n\n\n\n\n\n\n\n\n\nBROS WILL BE BROS • New Super Mario Bros UThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-bros-will-be-bros-new-super-mario-bros-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b93a40f9-963b-4727-8015-eca091d5728d/sm/2516933-1490740834684-marioep5.jpg","duration":989,"publication_date":"2017-03-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-how-to-milk-a-cow-1-2-switch-gameplay","changefreq":"weekly","video":[{"title":"S1:E44 - HOW TO MILK A COW • 1-2-Switch Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe Grintendo Squish is the latest console gaming experience from the people that brought you Donkey Kong. 1-2-Switch showcases the motion sensing capabilities of the joy-cons through games like ping-pong, running, and milking a cow.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDepuis le début du 20e siècle, ce type spécifique de douleur musculaire, appelée «douleur musculaire retardée» (DOMS), a été pensé pour être cause de l'accumulation d'acide lactique dans les muscles pendant les séances d'entraînement intense où l'apport en oxygène de votre corps est épuisé.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBig Ben이라는 별명의 기원은 토론의 주제입니다. 닉네임은 먼저 Great Bell에 적용되었습니다. 그것은 중대한 종의 임명을, 또는 복싱의 영국 중량급 전사 벤자민 큰일 다음에 감독 한 각하 벤자민 홀의 이름을 따서 명명 될지도 모른다.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOW TO MILK A COW • 1-2-Switch GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-how-to-milk-a-cow-1-2-switch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2c2f3d5-f7f5-4971-be80-feeedf579006/sm/2516933-1490732384432-12switchep3.jpg","duration":1123,"publication_date":"2017-03-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-fish-splash-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E41 - FISH SPLASH • SnipperClips Gameplay","description":"I JUST WANT BABY BIRDS TO LIVE Subscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" class=\"yt-uix-servicelink \" data-target-new-window=\"True\" data-url=\"http://bit.ly/1qvrlLD\" data-servicelink=\"CDEQ6TgYACITCPbDzJWi99ICFQWyfgodXpoPUij4HQ\" rel=\"nofollow noopener\" target=\"_blank\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... The following is for those multicultural. Un jeune homme est réuni avec une sirène qui l'a sauvé de la noyade comme un garçon et tombe amoureux ne sachant pas qui / ce qu'elle est.Snip i Clip nie mają dłoni, więc wszystko musi być zrobione z kształtem ich ciał. Niektóre poziomy wymagają tylko, aby wycinali się na właściwe kształty, aby precyzyjnie wypełnić kontur, ale inni potrzebują więcej działań: naciskanie przycisków, obracanie zębów, manewrowanie przedmiotami (piłka, ołówek, muchówka) od A do B.FISH SPLASH • SnipperClips GameplayThank you. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-fish-splash-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5723201-2325-4bc8-abec-52189622f256/sm/2516933-1490633694866-snipperclips3.jpg","duration":1107,"publication_date":"2017-03-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-l-e-t-s-c-o-s-p-l-a-y-barn-edition-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E11 - LET’S COSPLAY: BARN EDITION • Behind the Cow Chop","description":"Subscribe >http://bit.ly/1RQtfNf  \n\nCow Chop Merch: >http://bit.ly/2dY0HrO  \n\n\n\n\n\n\n\nRT First: >http://bit.ly/2b4bWuW  \n\n\n\n\n\n\n\nDiscuss: >http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\nTwitter: >https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: >http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLet’s cosplay: barn edition! Watch the guys’ slow but sure transform into Link and Dark Link. Also, were you wondering why Trevor dressed up as Max Payne for his trip to Boston? Watch to find out!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n哇这些惊人的链接cosplay。多么伟大!多么美妙!充满力量和升级装甲。观看他们的游戏,看看你可以升级到那个级别!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n¿Quién es ese chico nuevo en la cuadra? No sé es un pasante verdaderamente atesorado y su cámara trabaja es allstar.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLET’S COSPLAY: BARN EDITION • Behind the Cow Chop\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-l-e-t-s-c-o-s-p-l-a-y-barn-edition-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cec3e57-d914-41e6-8f9a-f22504d0cd65/sm/2516933-1490404613781-thumbnail_option_2.jpg","duration":603,"publication_date":"2017-03-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-test","changefreq":"weekly","video":[{"title":"2017:E40 - A LINK BETWEEN JOYCONS • The Legend of Zelda: Breath of the Wild","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\nThis is the new Zelda game, I heard it's pretty good, but I don't think it's that good when you share the game with another person at the same time.  It just ruins the mood, know what I mean?  Well enjoy James and Aleks share a singleplayer experience together.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nHola soy yo, Trevor. Estoy aquí para decirte que estoy empacando cosas para Los Ángeles, no me voy a ir todavía, pero está llegando. Estoy listo para oler el aire del océano y andar en monopatín por todas las carreteras. Voy a blanquear mi cabello como los patinadores y luego me uniré a su culto. Me voy a divertir montando o muriendo jaja jaja\n\n\n\n\n\n\n\nA LINK BETWEEN JOYCONS • The Legend of Zelda: Breath of the Wild\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d015fac-e39b-4d7b-b829-ce34e7bf1a29/sm/2516933-1490454188129-zelda.jpg","duration":892,"publication_date":"2017-03-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-booster-guerrilla-new-super-mario-bros-u-gameplay","changefreq":"weekly","video":[{"title":"2017:E40 - BOOSTER KONG • New Super Mario Bros U Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nThis time we try a whole new concept with the Wii U. In this gameplay, Aleks and James play through some Mario levels while Trevor is tasked with placing blocks using the gamepad to either help or hinder them. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nAtvainojiet par audio, visi. Cerams, ka tad, kad mēs no šīs kūts un izveidot jaunajā ražošanas vietā, mums būs izcilo kvalitātes audio katru reizi. Paldies par iesaiņojumu ar mums pa šo trako pārejas laiku.\n\n\n\n\n\n\n\n\n\n\n\nHvað er hvatamaður guð? A hvatamaður guð er einhver sem aldrei bregst við hvatamaður valdsvið þeirra, alltaf að setja rétta hvatamaður á fullkominn tími. Er Guerilla hvatamaður að booster guð? Ég held ekki. En hann er örugglega hvatamaður Kong.\n\n\n\n\n\n\n\n\n\n\n\nBOOSTER KONG • New Super Mario Bros U GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-booster-guerrilla-new-super-mario-bros-u-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/456f61c5-fe3a-44cb-98ec-14badf4545f0/sm/2516933-1490316966085-marioep4.jpg","duration":1004,"publication_date":"2017-03-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cow-chop-in-boston","changefreq":"weekly","video":[{"title":"S1:E43 - COW CHOP IN BOSTON","description":"Come with us on our trip to Boston. \n\n\n\n\n\n\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\nFollow us on our trip to Boston, where we almost get kicked out of every place we go to. \n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\nEgyszer ragadt én kis fasz belül egy tehén végbélnyílás és ez annyira jó. Úgy éreztem, annyira jó, hogy én robbant belsejében, hogy a szigorú tehén seggét lyuk. Nagyon köszönöm, hogy a meglévő tehén végbélnyílás.\n\n\n\n\n\nM na-adịghị, m na-amaghị, goddammit. Nke ahụ bụ dị ka ọgwụgwụ nke a akwụkwọ. A akwụkwọ ebe m jerked anya ka girraaf ọtụ. Haha, girraaf ọtụ bụ otú dank na unyi. Ahụrụ m ya n'anya.\n\n\n\n\n\n\n\n\n\nCOW CHOP IN BOSTONThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cow-chop-in-boston","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25189863-ab04-4e12-9c4b-2bcade9faa3d/sm/2516933-1490162409694-Boston_2.jpg","duration":761,"publication_date":"2017-03-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-hoop-dreams-snipper-clips-gameplay","changefreq":"weekly","video":[{"title":"2017:E39 - HOOP DREAMS • SnipperClips Gameplay","description":"DUNK IT BOI \r\n\r\nSubscribe: >http://bit.ly/1RQtfNfCow Chop Merch: >http://bit.ly/2dY0HrORT First LA Fundraiser: >https://goo.gl/NVZOT8Discuss:  href=\"http://bit.ly/1qvrlLD\" target=\"_blank\" rel=\"noreferrer nofollow\">http://bit.ly/1qvrlLDIn this action-puzzle game, paper pals Snip (James) and Clip (Aleks) must cut each other up to overcome tricky obstacles... The following is for those multicultural. Hoop Dreams segue as vidas de dois meninos de Chicago do centro da cidade que se esforçam para se tornar jogadores de basquete universitário na estrada para ir profissional.Jeśli zginiesz w grze, umiera w prawdziwym życiu.HOOP DREAMS • SnipperClips GameplayThank you.<>","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-hoop-dreams-snipper-clips-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15da0672-d0f3-4202-860f-33a8ff929419/sm/2516933-1490204981913-snipperclips2.jpg","duration":883,"publication_date":"2017-03-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-yoga-boxing-1-2-switch-gameplay","changefreq":"weekly","video":[{"title":"S1:E42 - YOGA BOXING • 1-2-Switch Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe Grintendo Squish is the latest console gaming experience from the people that brought you Donkey Kong. 1-2-Switch showcases the motion sensing capabilities of the joy-cons through games like ping-pong, running, and milking a cow.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nZatímco Joanne Woodward je často vybrán jako první získal hvězdu na chodníku slávy, ve skutečnosti nedošlo k „první“ příjemcem; původní hvězdy byly instalovány jako kontinuální projekt, s žádnými jednotlivými obřady.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWährend die meisten Leute wissen, dass Nikotin im Tabak gefunden werden kann, können niedrige Niveaus der Verbindung in den Pfeffern, in den Tomaten und in den anderen Mitgliedern der Solanaceae blühenden Pflanzenfamilie gefunden werden. Forscher wollten feststellen, ob auch geringe Mengen an genießbarem Nikotin das Risiko senken könnten.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYOGA BOXING • 1-2-Switch GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-yoga-boxing-1-2-switch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a24c531e-ede9-4396-a435-655a05bc1ac2/sm/2516933-1490127447325-12switch2.jpg","duration":741,"publication_date":"2017-03-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-spelunky-4","changefreq":"weekly","video":[{"title":"2017:E38 - TEAMWORK BREAKS DOWN • Spelunky Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJust two guys spelunking in a simple cave. It's good, honest work. What more could you want?The only problem is all the snakes, giant spiders, murderous shopkeepers, and various other things that live in caves.Hopefully James and Aleks can keep it all together and save the all the dogs.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n(substantiv)samarbeid eller samordnet innsats på en del av en gruppe personer som opptrer sammen som et team eller av hensyn til en felles sak.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEv dikare yan jî dibe ku ji episode dawî ya Spelunky di pêşerojê de bi şertê ku nêzîkî ne. Ev dibe an ne be derew e. Kî dizane? Gelo gengaz e ku derewan li description? Ev belkî an jî dibe ku ne be.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTEAMWORK BREAKS DOWN • Spelunky Gameplay\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-spelunky-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a46c19b-6c1a-4b73-a821-c1fa5ea30526/sm/2516933-1489874519176-4.jpg","duration":622,"publication_date":"2017-03-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-wacky-pranksters-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E10 - WACKY PRANKSTERS • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First Fundraiser: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nTime to check out a Prank Kit that James got a long time ago. There are lots of pranks, but Aleks is having none of it. \n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nStellt sich heraus, dass Stan gelernt hat, wie man die Nagelpistole benutzt und Trevor als Streich erschießt. Manchmal nimmt er die Dinge ein wenig zu weit.\n\n\n\n\n\n\n\nCare a fost farsa favorita ta: apa gelificare glumă, bombe Fart, guma de mestecat vioi, sau șocantă mână? Spune-ne în comentariul de mai jos.\n\n\n\n\n\n\n\nWACKY PRANKSTERS • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-wacky-pranksters-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3eec77f-b72a-446f-a417-eca591d27f86/sm/2516933-1489616545403-thumbnail_option1_X2.jpg","duration":620,"publication_date":"2017-03-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-dsaf","changefreq":"weekly","video":[{"title":"S1:E41 - GO PAX CRINGE 2017","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nPAX EAST, the loving convention center planted right smack dab in Boston, Massachusetts.  Here we watch one of the worlds greatest interviewers, Aleks Marchant, perform his magic on the people attending this wonderful convention.  We get to see all kinds of video games, and stuff, and the people are also great too, thanks for asking\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nহা হা হা ধন্যবাদ\n\n\n\n\n\n\n\n\n\n\n\nThank You\n\n\n\n\n\n\n\n\n\n\n\nGO PAX CRINGE 2017","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-dsaf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23ee4e27-f273-4cc3-bdd0-173792f070fa/sm/2516933-1489839930291-Untitled-1.jpg","duration":884,"publication_date":"2017-03-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-m-a-r-i-o-s-lucky-leg-new-super-mario-bros-u-gameplay","changefreq":"weekly","video":[{"title":"2017:E34 - MARIO'S LUCKY LEG • New Super Mario Bros. U Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nThis time we try a whole new concept with the Wii U. In this gameplay, Aleks and James play through some Mario levels while Trevor is tasked with placing blocks using the gamepad to either help or hinder them. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nDen perfekt thown contoller til Aron muttere var ganske imponerende. Det er som alle de andre kontrollere James brøt har ledet opp til dette. Eller kanskje det var Marios heldig etappe.\n\n\n\n\n\n\n\n\n\n\n\nToad Harbor is een prachtig stadje op het strand. Het is te zien in Mario Kart 8. Vele jaren geleden little baby Yoshis daar woonde, maar zijn uitgestorven gegaan wegens massamoord sprees.\n\n\n\n\n\n\n\n\n\n\n\nMARIO'S LUCKY LEG • New Super Mario Bros. U GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-m-a-r-i-o-s-lucky-leg-new-super-mario-bros-u-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e93ccc9-bc02-4daa-bcd6-6aa35b68e106/sm/2516933-1489717035879-marioep3.jpg","duration":1076,"publication_date":"2017-03-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-trevor-escapes-to-boston","changefreq":"weekly","video":[{"title":"S1:E40 - TREVOR ESCAPES TO BOSTON","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nTrevor escapes to Boston to experience some of the extravagant and amazing things the city has to offer. Come follow him on his next great escape. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nKiedyś poszedłem do Bostonu i wiedział, że to miejsce, chciałem być. Uwielbiam jedzenie i pogodę i oczywiście ludzi. To jest takie wspaniałe miejsce do życia. Kto jeszcze kocha Boston? Widziałem kiedyś sam gówno ptak na ulicach Bostonu.\n\n\n\n\n\n\n\n\n\n\n\nThoir botail creachainn sùgh agus buntàta a 'goil ann an trom mòr saucepan thairis air àrd teas. Teas a lùghdachadh gu meadhan-ìosal; còmhdach agus simmer gus buntàta a tha maoth, mu 10 mionaid. Thoir air falbh bho teas. Leaghadh ìm ann an trom poit mhòr thar teas mheadhan. Cuir hama a bhruich agus gus hama 'tòiseachadh gu donn, mu 8 mionaidean.\n\n\n\n\n\n\n\n\n\n\n\nTREVOR ESCAPES TO BOSTONThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-trevor-escapes-to-boston","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7d92ddb-e796-42ec-b6c7-3ce06b20ad9f/sm/2516933-1489558495490-boston.jpg","duration":952,"publication_date":"2017-03-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-wii-sports-2-1-2-switch-gameplay","changefreq":"weekly","video":[{"title":"S1:E39 - WII SPORTS 2 • 1-2-Switch Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe Grintendo Squish is the latest console gaming experience from the people that brought you Donkey Kong. 1-2-Switch showcases the motion sensing capabilities of the joy-cons through games like ping-pong, running, and milking a cow.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCu o suprafață de 12 de milioane de kilometri pătrați (5 milioane de mile pătrate), Oceanul Arctic este cel mai mic ocean - mai mult de cinci ori mai mici decât oceanele Indian și Atlantic.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEs ist ein allgemeines Missverständnis, das im Winter überwintern ist. Während Bären dazu neigen, im Winter zu verlangsamen, sind sie keine wahren Hibernatoren. Schwarze Bären, Grizzlybären und Braunbären gehen in den Wintermonaten in einen tiefen Schlaf, als Torpor bekannt. Hibernation ist, wenn Tiere \"schlafen\" durch den Winter.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWII SPORTS 2 • 1-2-Switch GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-wii-sports-2-1-2-switch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f64fda3-8995-481e-a8e6-8f69c27af9e1/sm/2516933-1489495440075-12switch1.jpg","duration":888,"publication_date":"2017-03-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-friendly-fire-spelunky-gameplay","changefreq":"weekly","video":[{"title":"2017:E36 - FRIENDLY FIRE • Spelunky Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJust two guys spelunking in a simple cave. It's good, honest work. What more could you want?The only problem is all the snakes, giant spiders, murderous shopkeepers, and various other things that live in caves.Hopefully James and Aleks can keep it all together and save the all the dogs.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nSanta Claus, nga nailhan usab nga mga Santos sa Nicholas, Saint Nick, Kris Kringle, Amahan sa Pasko, o sa yano Santa, mao ang usa ka legendary nga tawo sa Western Kristohanong kultura nga miingon sa pagdala sa mga gasa ngadto sa mga balay sa pag-ayo-Naggawi mga anak sa Bisperas sa Pasko (24 Disyembre ) ug sa sayo sa buntag oras sa Pasko Day (25 December).\n\n\n\n\n\n\n\nDa Santa blev træt af at give væk gaver, gik han ned til hvor ingen af børnene kunne pine ham længere. Han gik ned til hulerne i spelunkers. Nu er han opholder sig dér som en butiksindehaveren, at holde øje med eventuelle terrorister, der måske tror at stjæle fra ham sin dyrebare merchandise.\n\n\n\n\n\n\n\n\n\n\n\nFRIENDLY FIRE • Spelunky Gameplay\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-friendly-fire-spelunky-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ea43a4c-2cc6-4b51-b45c-cfcd4f0941d3/sm/2516933-1489433166988-Spelunky_3.jpg","duration":730,"publication_date":"2017-03-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-how-to-calcify-your-house-rt-update-behind-the-cow-chop","changefreq":"weekly","video":[{"title":"2017:E9 - HOW TO CALCIFY YOUR HOUSE + RT Update • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks misses his cue and a random stranger has to explain the Rooster Teeth fundraiser. Brett explains why we dropped below Platinum. Finally, we get to show you how that hole in the wall happened at the old Cow Chop house (check out the full Off Topic episode here: https://youtu.be/8sxAv8Ti7pw  )\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCómo calcificar su casa: en primer lugar, rellene cualquier bañera en su casa con leche (unos sesenta galones), luego arroje un montón de cereales Lucky Charms en la misma bañera (sólo los marshmellows), y finalmente la cuchara en todos los respiraderos en tu casa. ¡Terminado!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOW TO CALCIFY YOUR HOUSE + RT Update • Behind the Cow Chop\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-how-to-calcify-your-house-rt-update-behind-the-cow-chop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35a3479b-60cc-434d-974b-7678aa1d4d4c/sm/2516933-1489209082759-thumbnail_option_1.jpg","duration":651,"publication_date":"2017-03-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-7","changefreq":"weekly","video":[{"title":"2017:E38 - LASER BEAM INCISION • Surgeon Simulator VR Gameplay","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis time it's Aleks' turn to play doctor. With his steady hands and quick thinking, there is absolutely no way this surgery can go wrong. Absolutely no way.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdomo obuolys yra iš tikrųjų sukelia iš kremzlės plokščių, kurios yra suklijuotų audinių ir raumenų skaidulas, kurios apsaugo balso stygų rinkinys išsipūtimo. Moterys turi šias plokštes, taip pat, bet bumbulas yra ryškesni vyrų dėl dviejų priežasčių: Testosteronas sukelia gerklų sparčiai augti brendimo metu,\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYog tsis muaj mob receptors nyob rau hauv lub hlwb nws tus kheej. Tab sis lub meninges (qhwv nyob ib ncig ntawm lub hlwb), periosteum (qhwv rau hauv cov pob txha), thiab cov tawv taub hau tag nrho cov muaj mob receptors. Phais yuav ua tau rau lub hlwb thiab technically lub hlwb tsis xav tias qhov mob. Cov uas hais tias, lub hlwb yog lub cuab tam uas peb siv mus ntes mob.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLASER BEAM INCISION • Surgeon Simulator VR GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ea7c912-b0f2-4965-9204-4c366e4a978d/sm/2516933-1489256173134-vrsurgeonsim2.jpg","duration":1041,"publication_date":"2017-03-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-horizon-e1","changefreq":"weekly","video":[{"title":"2017:E35 - ROBOTS VS TRIBESMEN • Horizon Zero Dawn Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\nHorizon Zero Dawn is a game in which you play as a tribesperson (I'm not assuming any genders here) fighting big robots.\n\n\n\n\n\nAleks and James decide to join the fight, wielding multiple bows that are nearly identical and getting insulted by every single villager they come across.Honestly, I would've picked the robots.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nIn vielen Ländern ist ein Horizont zu feiern. Doch im Lande Dänemark bringt der Horizont nur schlechte Dinge. In Dänemark bedeutet der Horizont im Allgemeinen, dass die Kaffeebohnen zu dehydriert sind, um ihre Familie zu ernähren und werden bald zu wütenden Tieren. Es ist eine große Gefahr, in die Nähe einer wütenden Kaffeebohne zu gehen. Viele haben ihr Leben darüber verloren\n\n\n\n\n\n\n\n\n\n\n\nHva slags navn er \"Aloy\" anyways? Hvis jeg var ham, ville jeg har kalt det barnet noe kult og kreativt. Noe sånt som \"soyasaus\" eller \"Banana brød\". Folk har ingen fantasi i disse dager.\n\n\n\n\n\n\n\n\n\n\n\nROBOTS VS TRIBESMEN • Horizon Zero DawnThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-horizon-e1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/127d6b2a-f8ab-4c17-ba97-6f9cd859752a/sm/2516933-1489196529205-3B80741F28371ACBCDC038E230EFC587494F3AF69ED9052986pimgpsh_fullsize_distr.jpg","duration":1467,"publication_date":"2017-03-10T07:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-5","changefreq":"weekly","video":[{"title":"2017:E38 - ASYLUM PATIENT ADOPTS FISH • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf   RT First LA Fundraiser: https://goo.gl/NVZOT8?? Cow Chop Merch: http://bit.ly/2dY0HrO   Discuss: http://bit.ly/1qvrlLD   Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef029cdd-a5aa-4ed6-89d7-07f45973fbad/sm/2516933-1488999629642-Amazonfish.jpg","duration":1200,"publication_date":"2017-03-08T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-diabetic-baby-yoshi-new-super-mario-bros-u-gameplay","changefreq":"weekly","video":[{"title":"2017:E33 - OBESE BABY YOSHI • New Super Mario Bros. U Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  \n\n\n\n\n\n\n\n\n\nRT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis time we try a whole new concept with the Wii U. In this gameplay, Aleks and James play through some Mario levels while Trevor is tasked with placing blocks using the gamepad to either help or hinder them. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nO altın bebek yoshi bir ateş topu tarafından vurulduğunda, onun ölümüne kadar yarışta uçarken gözyaşlarını görebilirsiniz. Zavallı şey. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"Where'd gausite savo drabužius iš ... tualetinio parduotuvėje?\" Nepamirškite patikrinti kai merch parduotuvė!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOBESE BABY YOSHI • New Super Mario Bros. U GameplayThank you","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-diabetic-baby-yoshi-new-super-mario-bros-u-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f72ac911-86d9-4da4-8d54-3993fb7102a5/sm/2516933-1488932721683-marioep2.jpg","duration":1171,"publication_date":"2017-03-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017-vr-surge","changefreq":"weekly","video":[{"title":"2017:E2 - ASSISTANTS AND DOG KIDNEYS • Surgeon Simulator VR Gameplay","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nThe boys want to become surgeons, and who can blame them?  Surgery looks fine, and a little easy don't you think?  You just cut open a slither of meat there, and stuff some other meat right in here, you see?  Well, hope you enjoy this episode of surgery, thanks.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nహే అబ్బాయిలు దాని నాకు ట్రెవర్. సహాయం పంపండి.\n\n\n\n\n\n\n\nəvvəlki mesaj ignore\n\n\n\n\n\n\n\nASSISTANTS AND DOG KIDNEYS • Surgeon Simulator VR Gameplay\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017-vr-surge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f20e7231-47b9-4e06-a71a-81011d6b0cba/sm/2516933-1488875712837-vrsurgeonsim1.jpg","duration":799,"publication_date":"2017-03-07T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-spelunky-2","changefreq":"weekly","video":[{"title":"2017:E32 - ANGRY SHOPKEEP • Spelunky Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJust two guys spelunking in a simple cave. It's good, honest work. What more could you want?The only problem is all the snakes, giant spiders, murderous shopkeepers, and various other things that live in caves.Hopefully James and Aleks can keep it all together and save the all the dogs.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nजब कुत्तों छाल, यह वास्तव में एक संकेत है कि वे spelunking जाना चाहते है। छोटे से ज्ञात तथ्य है, कुत्तों वास्तव में हजारों साल के लिए किया गया है और spelunking spelunking के बारे में नवाचार के मामले में सबसे आगे हैं। कुत्तों के बिना, हम भी शब्द spelunking का पता नहीं होता। मेरे परदादा वास्तव में एक spelunking कुत्ता था।\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n俳句\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"spelunking\"は良い\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nそれは心と魂を強化する\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n冷蔵庫\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nANGRY SHOPKEEP • Spelunky GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-spelunky-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d4183c-39d5-4f6a-b4cf-f6740cd7fa56/sm/2516933-1488826126538-Spelunky_EP2_THUMB.jpg","duration":698,"publication_date":"2017-03-06T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-best-of-cow-chop-february-2017","changefreq":"weekly","video":[{"title":"S1:E260 - BEST OF COW CHOP • February 2017","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nFebruary has been yet another great but crazy month in the life of Cow Chop. Thank you everyone for your support. Enjoy!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nTen rok może być tylko lepiej, jeśli mogę w końcu dostosować się żółwia domowych. Oni są tak słodkie i tak sexy. Chciałbym opieki nad nim i karmić go każdego dnia. Mogę nazwać Tylenol ponieważ posiadał wiem zajęłoby cały ból ode mnie. Dziękuję Tylenol, jesteś najlepszy żółw wszechczasów.\n\n\n\n\n\n\n\n\n\n\n\nTá áthas orm go bhfuil tú ag glacadh le bheith sna taiscéalaithe chlub salach. Inniu táimid tar éis tasc an-speisialta ar do shon. Beidh mhaith linn buíochas leat a iniúchadh a dhéanamh ar do Butt féin le galúnach agus uisce, mar gheall ar stinks do poll asal. Go raibh maith agat.\n\n\n\n\n\n\n\n\n\n\n\nBEST OF COW CHOP • February 2017Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-best-of-cow-chop-february-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed68d30e-1ab6-43d8-b46f-deb3e7350946/sm/2516933-1488561812197-BestOf_Feb.jpg","duration":675,"publication_date":"2017-03-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-sa","changefreq":"weekly","video":[{"title":"S1:E37 - Nintendo Switch Unboxing + Cartridge Taste Test","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nI guess this day is an alright day, the Nintendo Switch came out and somehow James found himself with 3 of them.  Today we're gonna unbox one and maybe give the games a little taste test, while also comparing it against a nice rotisserie chicken.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nWow nintendo bryteren er her med så mange spill å spille. Det er Zelda, en to-bryteren, og. . . og hva annet var det? Bomberguy?\n\n\n\n\n\n\n\nMe gustaría conseguir un Nintendo Switch si un nuevo Animal Crossing salió con él. Ese es mi juego favorito, ¿qué mejor manera de disfrutar de su tarde y luego sumergirse en una vida agradable que nunca podría vivir.\n\n\n\n\n\n\n\nNintendo Switch Cartridge Taste Test + Unboxing\n\n\n\nThanks","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-sa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e71ec39a-0a7f-4c66-880c-b1ffa6f31aa3/sm/2516933-1488664141198-switch.jpg","duration":773,"publication_date":"2017-03-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016","changefreq":"weekly","video":[{"title":"2017:E31 - BOOSTER BOY • New Super Mario Bros. U Gameplay","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\nThis time we try a whole new concept with the Wii U. In this gameplay, Aleks and James play through some Mario levels while Trevor is tasked with placing blocks using the gamepad to either help or hinder them. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nПроисхождение. Шоколадные чипсы являются необходимым компонентом в шоколадного печенья, которые были изобретены в 1937 году, когда Рут Грейвс Уэйкфилд из Toll House Inn в городе Whitman, штат Массачусетс добавил нарезанные куски полусладкое Нестле шоколада к рецепту \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMario serien är den bäst säljande spelserien genom tiderna. Över 210 miljoner enheter av den totala Mario-serien av spel har sålts. Koncessionen har grenade i flera medier, bland annat TV-program, film, serier och licensierade handelsvaror. Sedan 1995 har Mario framförts av Charles Martinet.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBOOSTER BOY • New Super Mario Bros. U Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23283009-5a3b-4dd3-8216-4f62411fb8e2/sm/2516933-1488558487380-marioep1.jpg","duration":966,"publication_date":"2017-03-03T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2017-2","changefreq":"weekly","video":[{"title":"2017:E3 - E.T. REJECTED SEQUEL • Retroactive","description":"Subscribe http://bit.ly/1RQtfNf  \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has yet another great surprise for Aleks, and by great we mean horrible. Check out another yet horrific game in this episode of Retroactive.  ","player_loc":"https://roosterteeth.com/embed/retroactive-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0dc3c6e0-8b66-47ff-bb00-aadebfbe9ca0/sm/2516933-1488482205530-RetroactiveET.jpg","duration":1012,"publication_date":"2017-03-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-2","changefreq":"weekly","video":[{"title":"2017:E30 - THE STINKY ZONE • Lovers in a Dangerous Spacetime Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLovers in a Dangerous Spacetime, a game where all the players need to know what cooperation is. Unfortunately, this is James and Aleks. Watch the duo fumble over every single objective as they fight over the simplest of things and yet somehow still complete the levels. They will really have to pull out every trick to get through this giant minefield disguised as a space adventure game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBig Red gum hat in lekkere kaniel smaak. Ik wol wat no, te slim wy binne noch dakleas.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nželezo gnoja hrošč je huda sovražnik. Ima ostrih koničastih konice vsej svoji glavi. Konec rit je relativno enostaven za poraz, vendar se prepričajte, da imate pravo ščit (tisti z ostrimi konicami), in da bodo dobili smrdljiva sina pasji za obrnila in vam pokaže, da je mesnata rit.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE STINKY ZONE • Lovers in Dangerous Spacetime GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98e92a50-bfcd-4e0a-8233-00a0adb72829/sm/2516933-1488391857422-lovers4.jpg","duration":970,"publication_date":"2017-03-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016","changefreq":"weekly","video":[{"title":"2017:E5 - POSITIVE ASMR CRYSTAL HEALING • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make Youtube great again when Youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHey su me Trevor otra vez, no intimidar a los niños. Lo escuchaste primero, no intimides a los niños.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nnaiz benetan nekatuta, gainera, dirua behar dut.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPOSITIVE ASMR CRYSTAL HEALING • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd408888-31a8-48e6-8a94-820aa0e14985/sm/2516933-1488269482785-YoutubePositive.jpg","duration":993,"publication_date":"2017-02-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-3","changefreq":"weekly","video":[{"title":"2017:E29 - DOGGY SACRIFICE • Spelunky Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJust two guys mining in a simple cave. It's good, honest work. What more could you want?The only problem is all the snakes, giant spiders, murderous shopkeepers, and various other things that live in a mine.\n\n\n\n\n\n\n\n\n\n\n\n\n\nHopefully James and Aleks can keep it all together and save the all the dogs.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIeu sabenerna nyandak eta leuwih 20 menit nepi ka tungtungna login ka akun Aleks 'jeung mimiti muterkeun. Ieu hal paling excruciating Kuring geus kungsi diawaskeun di sakabéh kahirupan mah.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSpelunker maximum officium est in mundo. Sine quibus carere non possunt esse planetam omnium insidias Indiana Jones. Nec quisquam in plateis volutabatur Boulders fore tutam fore. Si vos volo ut servo vestri tutus a saxa in nocte, et respondebo \"THANK MR SPELUNKER\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDOGGY SACRIFICE • Spelunky Gameplay\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a0116d0-9f13-41c8-8985-827a5172bf3b/sm/2516933-1488225190401-Spelunky_EP1_THUMB.jpg","duration":1082,"publication_date":"2017-02-27T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-3","changefreq":"weekly","video":[{"title":"2017:E4 - EXTREME DIY SUPERHEROES • AMAZON PRIME TIME","description":"Let's see your powers!  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cd1278a-9d33-4684-a44d-8f853cbf46d7/sm/2516933-1488050441449-Amazonextreme.jpg","duration":1298,"publication_date":"2017-02-25T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016","changefreq":"weekly","video":[{"title":"2017:E8 - SLINGSHOT AMUSEMENT • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUnopened Walmart Delivery toys are put to the test. Getting messy with the paintball gun leads to looking through merch and changing into some fresh Cow Chop duds on the spot. And this is how we deal with the terrible bug infestation at the barn…\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMi zapravo ne računaju dostignuća ovde. Kada smo dobili jednu stvar kompletan, dajemo jedni drugima \"dobar posao\", kao bombone na Dan zaljubljenih. It’s because we are all 90s babies. To je zato što smo svi 90s bebe.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHaal je de koe Chop merch buiten en vertegenwoordigen vandaag. Ik hoop dat iedereen heeft een goeie!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSLINGSHOT AMUSEMENT • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4125399-dfc9-48d1-9f07-0baf620554d9/sm/2516933-1488006429120-thumbnail_option_1x3.jpg","duration":744,"publication_date":"2017-02-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-4","changefreq":"weekly","video":[{"title":"2017:E28 - URSA MAJOR DOS • Lovers in a Dangerous Spacetime Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLovers in a Dangerous Spacetime, a game where all the players need to know what cooperation is. Unfortunately, this is James and Aleks. Watch the duo fumble over every single objective as they fight over the simplest of things and yet somehow still complete the levels.They will really have to pull out every trick to get through this giant minefield disguised as a space adventure game. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nموجة يديك في الهواء إذا كنت تشعر بخيرنحن ستعمل أعتبر في الوقت بدل الضائعمرحبا بكم في جام الفضاءها هي فرصتك، هل الرقص الخاصة بك في جام الفضاءحسنا\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n兔子实际上是水生动物。没有多少人知道。他们可以在水下呼吸无限的时间,以45英里/小时的速度游泳。在某种程度上,他们是非常可比的海豚\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nURSA MAJOR DOS • Lovers in a Dangerous Spacetime Gameplay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9b4b576-32d0-49c4-be86-2b38eb362001/sm/2516933-1487968338306-Lovers_THUMB_3.jpg","duration":1067,"publication_date":"2017-02-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2017","changefreq":"weekly","video":[{"title":"2017:E2 - RUGRATS NOSTALGIA • Retroactive ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome to the premiere of Retroactive: Barn Edition. In this episode, James forces Aleks to relive his childhood memories of playing Rugrats for the PS1. Surprise surprise, it sucks.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCompuesto de 31 estados y un distrito federal, la nación de México es el hogar de la población más grande del mundo de hispanohablantes. Desde los templos de Chichén Itzá, hasta las playas de Cancún o el bullicio de la Ciudad de México, México cuenta con un paisaje diverso y una rica historia.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nМеланин является пигмент, содержащийся в коже и волосяных клеток, что дает каждому свой цвет. Кажется странным, что солнце отбеливает наши волосы и темнеет нашу кожу. В основном, это связано с волосами, которые были мертвы и кожа быть живым. Солнце отбеливатели и разрушает меланин в волосах дает вам более легкий волосы.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRUGRATS NOSTALGIA • RetroactiveRugrats: Search for Reptar\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/retroactive-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8b355f9-a529-471a-b425-42909268b7ef/sm/2516933-1487904860210-RetroactiveRugrats.jpg","duration":1106,"publication_date":"2017-02-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-7","changefreq":"weekly","video":[{"title":"2017:E27 - SPACE PIRATES • Lovers in a Dangerous Spacetime Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLovers in a Dangerous Spacetime, a game where all the players need to know what cooperation is. Unfortunately, this is James and Aleks.  Watch the duo fumble over every single objective as they fight over the simplest of things and yet somehow still complete the levels. They will really have to pull out every trick to get through this giant minefield disguised as a space adventure game. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSe jkunu huma li tkun kapaċi li żżomm dawk promozzjonijiet ġodda frisk fuq il-vapur? Inti gonna jkollhom għalfejn jistennew l-episodju li jmiss biex issir taf!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLà nó có thể cho một con ong để ném ngọn lửa phát ra từ miệng của họ? Trong không gian, bất cứ điều gì là có thể.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSPACE PIRATES • Lovers in a Dangerous Spacetime GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09200ba9-6afc-4b5c-8c79-3d609a208889/sm/2516933-1487796472662-lovers2.jpg","duration":883,"publication_date":"2017-02-22T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-2","changefreq":"weekly","video":[{"title":"2017:E4 - MOTH STUCK IN NAZI BEARS EAR • WRONG SIDE OF YOUTUBE","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nHey dis ek, Trevor, tans die oplaai van die video op die skuur en dit ruik kinda snaaks in hierdie redigering stasie. Wat as dit vorm en ek stadig sterf, sou niemand weet totdat hulle klaar opname.\n\n\n\n\n\n\n\n\n\n\n\njaja si xD\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43287c1a-e46f-4528-ba3b-b767e869cb49/sm/2516933-1487720407258-YoutubeBearAttack.jpg","duration":868,"publication_date":"2017-02-21T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-8","changefreq":"weekly","video":[{"title":"2017:E26 - COOPERATIVE NIGHTMARE • Lovers in a Dangerous Spacetime Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLovers in a Dangerous Spacetime, a game where all the players need to know what cooperation is. Unfortunately, this is James and Aleks. Watch the duo fumble over every single objective as they fight over the simplest of things and yet somehow still complete the levels.They will really have to pull out every trick to get through this giant minefield disguised as a space adventure game. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJesteśmy w stodole. Gramy w gry wideo w stodole. Czyż nie jest to amerykański sen? Mogę myśleć o nic lepszego. Może z wyjątkiem pistacji.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n誰もが今スラングする時間だ私たちは本当のジャムを手に入れたスペースジャムへようこそあなたのチャンスは、スペースジャムであなたのダンスをする大丈夫さあ、スラムとジャムへようこそあなたがジャムしたい場合は是非、叩きます\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCOOPERATIVE NIGHTMARE • Lovers in a Dangerous Spacetime Gameplay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/537a90ba-2ae5-403a-9507-bc58086fee87/sm/2516933-1487621246367-Lovers_THUMB_1.jpg","duration":990,"publication_date":"2017-02-20T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-2","changefreq":"weekly","video":[{"title":"2017:E7 - CRICKET CANDY • Behind the Cow Chop","description":"Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop   Beat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this week's Behind the Cow Chop, Trevor chews on some cricket candy, James spends most of his time trying to get a rug down from the ceiling, and Aleks is just checking the place out.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAko ay gaganapin sa tutok ng baril at pinilit na isulat ang talatang ito para sa ilang mga channel youtube tinatawag cow tumaga. mangyaring magpadala ng tulong kaagad. sila pahirap sa akin araw-araw. hindi ang isa na may pangalang Joe though. Joe ay nice at ako'y bibigyan ng pagkain at kumot.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nείμαστε στη μέση του πουθενά. το πιο κοντινό κτίριο για εμάς είναι ένα υπόστεγο 50 μίλια μακριά, και αυτό εγκαταλείφθηκε. αν φτάσουμε ποτέ σε μπελάδες, θα είστε έτοιμοι για.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCRICKET CANDY • Behind the Cow ChopThank You ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95fece5b-d8ec-47fc-80ac-bfeb4c6508c1/sm/2516933-1487539732893-fasfaa.jpg","duration":622,"publication_date":"2017-02-19T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-barn-introduction","changefreq":"weekly","video":[{"title":"S1:E246 - BARN Introduction","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop   Beat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\nWe venture forward into the next era of Cow Chop, The Barn.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nVaques viuen en graners. Fan olor a merda i viuen en graners. A vegades, fins i tot dins caguen els graners. Esperem nostre graner no s'ompli de merda. Ja hem tingut una de les nostres oficines s'omplen de merda.\n\n\n\n\n\n\n\n\n\n\n\nImaginez un monde où les vaches pourraient voler et les chevaux pourraient frapper les uns les autres super dur chaque nuit? La vie serait un endroit merveilleux. Je ne peux pas attendre pour vivre dans ce monde.\n\n\n\n\n\n\n\n\n\n\n\nBARN IntroductionThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-barn-introduction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2967ff0-cccd-4a0a-b77d-559dd70756a1/sm/2516933-1487468007925-Barn_Move_In.00_06_38_22.Still019.jpg","duration":655,"publication_date":"2017-02-19T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-10","changefreq":"weekly","video":[{"title":"2017:E24 - CONQUISTADOR HORCHATA • Youtubers Life Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrORT First LA Fundraiser: https://goo.gl/NVZOT8Discuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n  \n\n\n\n\n\n\n\nAleks and James try their hand at a game that replicates what they have been doing for years. A game about being sucessful in the Youtube business. Will they crash and burn without leaving their mark in the highscores of Youtube? Or will they use their combined knowledge to make the greatest cooking channel we have ever seen? Probably a little bit of both. Or neither.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChtěla bych, abyste se držet svůj hamburger uvnitř mě, prosím. Jen ať to to klouzat. Jsem fanoušek hamburgerů. Cheeseburgery jsou moje oblíbené, a to zejména s rajčaty a cibulí a salát na ně taky. Kdo jiný má rád ukázat hamburgery uvnitř sebe sama?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNie waż się trzymać ołówek że wewnątrz mnie penis dziurę. Spala się tak źle, a ja naprawdę nie lubię, gdy oleje z mojego penisa smarować otwór penisa i pozwalają przesuwać w ołówek łatwiejsze. To naprawdę sprawia, że czuję się dobrze i mam orgazmu tak ciężko. Kochanie tak.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCONQUISTADOR HORCHATA • Youtubers Life GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3913a2f6-882c-41b5-9496-f4aa612244a8/sm/2516933-1487348142650-youtuberslife3.jpg","duration":1076,"publication_date":"2017-02-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-9","changefreq":"weekly","video":[{"title":"2017:E25 - EASY DIY RECIPES • Youtubers Life Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nAleks and James try their hand at a game that replicates what they have been doing for years. A game about being sucessful in the Youtube business. Will they crash and burn without leaving their mark in the highscores of Youtube? Or will they use their combined knowledge to make the greatest cooking channel we have ever seen? Probably a little bit of both. Or neither.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nNon, ce n'est pas vraiment le nouveau quartier général. Je n'aime pas être sans abri, et manquer cette maison de merde, moisi, malodorante mais chaude. En fin de compte, la chatte nous rendait plus forts. Merci pour ça, chatte.\n\n\n\n\n\n\n\n\n\n\n\nFumar marihuana cada día. Sólo quería ver cómo decir eso en español, ya que nos estamos moviendo tan cerca de la frontera.\n\n\n\n\n\n\n\n\n\n\n\nEASY DIY RECIPES • Youtubers Life GameplayThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/084eb5eb-7b88-46dc-923a-f38caaaa9d1f/sm/2516933-1487269539152-youtuberslife2.jpg","duration":1059,"publication_date":"2017-02-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-4","changefreq":"weekly","video":[{"title":"2017:E1 - BLEACHED EYES DISASTER • WALMART DELIVERY TIME","description":"Subscribe http://bit.ly/1RQtfNf  \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8??Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\nIt's DELIVERY TIME. WALMART DELIVERY TIME. Walmart is well known for being a mediocre store to obtain items in a cheap and timely manner. With this show, not only do we put that to the test, but we venture into what Walmart is all about, the cheap shit. \n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We are poor because of this, we just want you to know this.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nЦялото ми тяло е покрито с грес. Въпросът е какъв тип грес, какво грес съм готов да постави на цялото ми тяло. Ще оставя това на вас.\n\n\n\n\n\n\n\n\n\n\n\nMe gusta encender velas en un círculo y enterrar los huesos de pollo en el patio trasero. A continuación, deseo de buena suerte, pero parece que cada vez que hago que alguien que conoce se lastima.\n\n\n\n\n\n\n\n\n\n\n\nBLEACHED EYES DISASTER • WALMART DELIVERY TIMEThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/911466e8-b904-469e-bb8b-0f6137cceec9/sm/2516933-1487172528775-walmart_edition.jpg","duration":1148,"publication_date":"2017-02-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-11","changefreq":"weekly","video":[{"title":"2017:E23 - CLICKBAIT TITLES • Youtubers Life Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks and James try their hand at a game that replicates what they have been doing for years. A game about being sucessful in the Youtube business. Will they crash and burn without leaving their mark in the highscores of Youtube? Or will they use their combined knowledge to make the greatest cooking channel we have ever seen? Probably a little bit of both. Or neither.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNous avons perdu notre maison précieuse de côte de vache. Maintenant, nous devons gambader pour la nourriture sous nos canapés et espérons que nous pouvons trouver quelques morsels. Veuillez envoyer de l'aide. J'ai besoin de deux tonnes de fromage et d'un gâteau au citron.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEl arroz en el arroz no es una comida que idiota. Es literalmente arroz. ¿Qué te pasa? Apuesto a que comer esto en casa.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCLICKBAIT TITLES • Youtubers Life GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5706210c-e7a3-469b-87f5-48f99f7814b4/sm/2516933-1487106254764-EP_1.jpg","duration":1305,"publication_date":"2017-02-14T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-3","changefreq":"weekly","video":[{"title":"2017:E6 - ON THE STREETS • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop   Beat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nOn this week's Behind the Cow Chop we have a bunch of updates to give you all. Thanks for all your support guys.\n\n\n\n\n\n\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nEstamos nas rúas, pero non se preocupe, imos atopar un novo lugar en breve. Grazas por todo o apoio que persoas fermosa.\n\n\n\n\n\n\n\n\n\n\n\n\n\nMen bog'da bir la'nat yaxshi olma daraxti bor, deb eshitib. Men buni o'g'it berish uchun daraxt ostida olma va axlatni eyishni. meni bog'ida daraxt ostida Shit imkonini beruvchi uchun rahmat.\n\n\n\n\n\n\n\n\n\n\n\n\n\nON THE STREETS • Behind the Cow Chop\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88c74304-6e7c-44ad-acd9-22ffbd0dcd42/sm/2516933-1486883570275-Streets_3.jpg","duration":775,"publication_date":"2017-02-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-12","changefreq":"weekly","video":[{"title":"2017:E22 - HEAVY RAIN • THE THREE MYSTERIOUS CASES","description":"Subscribe http://bit.ly/1RQtfNf  \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8??Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday we investigate the three mysterious cases involving a man looking for a missing child, a dumbfounded cop trying to capture a burglar, and a Twitch girl who was kidnapped. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHola chicos, perdón por la falta de carga el viernes. Tenemos las manos atadas con mover todo. En realidad es un montón de trabajo y un montón de gente a la que llamar para tratar de conseguir un nuevo lugar temporal para trabajar. Tendremos algunas actualizaciones para usted el domingo! Esperemos que pronto después podamos mostrarle el nuevo lugar también.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHEAVY RAIN • THE THREE MYSTERIOUS CASES\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b986c001-bed0-42a6-ad49-ec1df5178eb1/sm/2516933-1486821791425-heavyrainthethreecases.jpg","duration":1501,"publication_date":"2017-02-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-13","changefreq":"weekly","video":[{"title":"2017:E21 - THERE CAN BE ONLY ONE WINNER • Mario Party 7 Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for each other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nY así termina otra sesión de partido mario. Un juego mejor jugado cuando todo el mundo está completamente privado de sueño y listo para matarse mutuamente. Espero que la próxima vez veamos algo de sangre.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHAHA! Ils ont pensé que je pourrais couper cette partie dehors? «Pas moi» a dit l'homme le plus paresseux pour éditer jamais une vidéo. Peut-être la prochaine fois.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHERE CAN BE ONLY ONE WINNER • Mario Party 7 Gameplay Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9468add4-c158-458c-a7b2-d1de2a1876e3/sm/2516933-1486686955469-EP_8.jpg","duration":1509,"publication_date":"2017-02-09T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-14","changefreq":"weekly","video":[{"title":"2017:E20 - THE FINAL FIGHT • Heavy Rain Ep 22","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe’re finally at the end, everyone. Here it is. Both Ethan and Madison know the address to the old, abandoned warehouse. Will Ethan be able to save his son from a certain death by drowning in the barred up, rain filled pit? And what happens when Shelby shows up, gun in hand? Only one thing is for sure: rebar plays an important role in this game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinalmente. Fine. Ora che cosa stiamo andando a giocare?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nShelby iompú díreach suas isteach i psychopath tar éis a dhiúltaigh a athair a shábháil John. timpeallaithe sé é féin agus a gcreach le rebar, i gcuimhne ar bhás Sheáin.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE FINAL FIGHT • Heavy Rain Ep 22Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97ccd52c-f737-4855-a92b-9eaebda1ec81/sm/2516933-1486574014865-HeavyRain22.jpg","duration":1133,"publication_date":"2017-02-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-15","changefreq":"weekly","video":[{"title":"2017:E19 - TOO MUCH LAKITU • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for each other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nPribližno 98% Antarktike je zajeta antarktične ledene plošče, plastjo ledu povprečja vsaj 1,6 km (1,0 mi) debela. Celina ima približno 90% svetovnega ledu (in s tem okoli 70% svetovne sladke vode). Če bi bili stopljeno vse te ledu, bi se morska gladina dvignila približno 60 m (200 ft). To je Cliffhanger\n\n\n\n\n\n\n\n\n\n\n\nItaly (dị ka Luigi) n'ezie ka pasta na Pizza. Ọ bụ nri na onunu ọkacha mmasị. Ha ga-eme ihe ọ bụla n'ihi pasta. M na hụrụ ugwu site pasta ihendori maka pasta Mans.\n\n\n\n\n\n\n\n\n\n\n\nTOO MUCH LAKITU • Mario Party 7 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec9da060-52da-4442-9d20-4d2258e3c972/sm/2516933-1486372929879-EP_7.jpg","duration":1276,"publication_date":"2017-02-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-best-of-cow-chop-january-2017","changefreq":"weekly","video":[{"title":"S1:E236 - BEST OF COW CHOP • January 2017","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  \n\n\n\n\n\n\n\n\n\nRT First: http://bit.ly/2b4bWuW  \n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\nTwitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt’s been a wild and crazy year so far. Check out some of the things we’ve been up to!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideos:\n\n\n\n\n\n\n\n\n\nFAILURE TO COMMUNICATE • Keep Talking and Nobody Explodes \n\n\n\n\n\n\n\n\n\nJUGGLING BABIES IN A HAUNTED HOUSE • Rescuties! Horror VR \n\n\n\n\n\n\n\nNEW YEARS FIREWORK DISPLAY • Behind the Cow Chop \n\n\n\n\n\n\n\nPEPPER SPRAY GAUNTLET PART ONE \n\n\n\n\n\n\n\n\n\nPEPPER SPRAY DANGER • Behind the Cow Chop \n\n\n\n\n\n\n\n\n\nHOW TO GET MERMAID POWERS • WRONG SIDE OF YOUTUBE \n\n\n\n\n\n\n\n\n\nBOO WARDROBE MALFUNCTION (+RT Update) • Behind the Cow Chop \n\n\n\n\n\n\n\n\n\nUP IN THE CLUB • Heavy Rain Ep 18 \n\n\n\n\n\n\n\n\n\nLEVEL FROM HELL • Battleblock Theater \n\n\n\n\n\n\n\n\n\nROCK STAR COWBOY • AMAZON PRIME TIME \n\n\n\n\n\n\n\n\n\n1000 degree KNIFE VS $40 Nokia and $700 iPhone 7 \n\n\n\n\n\n\n\n\n\nBETRAYAL FROM WITHIN • Mario Party 7 Gameplay \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVolt egy nagyon mozgalmas hónap. Sok-sok móka dolog történt. Néhány rossz dolog történt is. Mi volt a kedvenc pillanat az elmúlt hónapban?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nपागल समाचार आज के बहुत सारे, तो यह अच्छा पुराने समय पर वापस फेंक करने के लिए अच्छा है। अब सब कुछ डरावना और अनिश्चित है। कृपया मदद करे।\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBEST OF COW CHOP • January 2017\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-best-of-cow-chop-january-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66656b26-3821-48c6-90f5-88a49b822bbb/sm/2516933-1486188492619-BestOfjanuaryX2.jpg","duration":738,"publication_date":"2017-02-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-16","changefreq":"weekly","video":[{"title":"2017:E18 - ORIGAMI KILLER REVEAL • Heavy Rain Ep 21","description":"Subscribe >http://bit.ly/1RQtfNf  \n\n\n\nCow Chop Merch: >http://bit.ly/2dY0HrO  \n\n\n\n\n\n\n\n\n\n\n\nRT First: >http://bit.ly/2b4bWuW  \n\n\n\n\n\n\n\n\n\n\n\nDiscuss: >http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\nTwitter: >https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: >http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt’s Ethan’s last trial. Will he drink the deadly poison to save his son? Next we see how the little boy who got his foot stuck on some rebar in the water blown pipe dies. Everything starts to come together after that. Then, Madison has to confront the killer, but when he finds her at his place, he doesn't want to discuss anything. Will she make it out alive!?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFan dude, Aleks \"reaktion på origami mördaren var ovärderliga. James visste vem mördaren var, ingen vet när han deducerade det, men det hela kom tillsammans i slutet ... typ av. Vänta detta är inte slutet!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEste juego te hace follar tú mismo en el culo si no puedes averiguar quién es el asesino.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nORIGAMI KILLER REVEAL • Heavy Rain Ep 21\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1178c0f4-46b4-4bf6-b054-a9b9bbab63cd/sm/2516933-1485990938874-HeavyRain21.jpg","duration":1242,"publication_date":"2017-02-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-4","changefreq":"weekly","video":[{"title":"2017:E5 - GETTING KICKED OUT • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop   \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this week's Behind the Cow Chop we have the unfortunate news that we are being kicked out of our house. There are a couple more videos from the house which will be uploaded this week. We are still in the process of figuring out a temporary situation before moving to LA, and plan to keep you all updated. Thank you for all your support guys!\n\n\n\n\n\n\n\n\n\nClick the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" ;https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSucks sé go mór dúinn a fhágáil. Sucks sé go snitched éigin. Ach bogann am ar an agus beidh muid ag piocadh féin ar ais suas agus a ghnóthú. Go raibh maith agat do gach do chách tacaíochta.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMae'n amser yn awr i bennod newydd o Cow Torrwch. Tybed lle y byddwn yn y pen draw. Tybed lle byddwn mewn blwyddyn o hyn. Mae'n Bydd yn bendant yn dda.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGETTING KICKED OUT • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c4184b1-6b1a-4375-b6b2-6049cd150678/sm/2516933-1486164856410-Moving_Out_2.jpg","duration":932,"publication_date":"2017-02-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-3","changefreq":"weekly","video":[{"title":"2017:E3 - POLICE BRUTALITY AND LIFE HACKS • WRONG SIDE OF YOUTUBE","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nBog ima poklon za sve nas. Božiji dar mi je da on omogućava mi da moj jezik naopako.\n\n\n\n\n\n\n\n\n\n\n\nLo siento por la introducción, vieron alrededor de una hora de Sr. Gears y después de cortar ese lío que necesitaba para hacer algo creativo, a pesar de que no tiene sentido.\n\n\n\n\n\n\n\n\n\n\n\nVideos:\n\n\n\n\n\n\n\n\n\n\n\n10 Most Expensive Virtual Items - \n\n\n\n\n\n\n\nPolice Brutality - \n\n\n\n\n\n\n\nInauguration Protest - \n\n\n\n\n\n\n\nTrump Supporter - \n\n\n\n\n\n&t=161s\n\n\n\n\n\nSPICY HOT PAN TOOTHPASTE - \n\n\n\n\n\n\n\nSince they pretty much watched the whole catalog of Mr. Gears, here's his channel - https://www.youtube.com/channel/UCo6DJdltbIub80bLiyJRv3w/featured\n\n\n\n\n\n\n\nThank You ","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5e388a9-492a-46a7-9420-2ae34e5a7851/sm/2516933-1486132271688-Youtubegear.jpg","duration":842,"publication_date":"2017-02-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foreign-import-2017","changefreq":"weekly","video":[{"title":"2017:E2 - INDIAN TERMINATOR • Foreign Import","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO Twitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor the very first time, James and Aleks watch a foreign film. This episode they are watching an Indian film about a robot on a quest to sing, dance and save people from burning buildings.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKlepe na dřevo býval způsobem odvracet podezření na hrozící smůlu a teď to je používáno jako druh jazyka-in-tváři výraz pro když někdo měl hodně štěstí, což znamená, že člověk by měl být opatrný, aby se zabránilo smůla, které mohou následovat.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEr det ulovlig å reagere på utenlandske filmer? Sannsynligvis ikke som ulovlig så mange av de tingene vi gjør i Cow Chop huset.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nINDIAN TERMINATOR • Foreign ImportThank You  ","player_loc":"https://roosterteeth.com/embed/foreign-import-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95b77d11-1581-4165-9245-6b2e18999d9b/sm/2516933-1486001505208-forienginimportindian.jpg","duration":1089,"publication_date":"2017-02-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-18","changefreq":"weekly","video":[{"title":"2017:E17 - FORCEFUL TRIGGERING • Heavy Rain Ep 20","description":"Subscribe >http://bit.ly/1RQtfNf  \n\nCow Chop Merch: >http://bit.ly/2dY0HrO  \n\n\n\n\n\n\n\nRT First: >http://bit.ly/2b4bWuW  \n\n\n\n\n\n\n\nDiscuss: >http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\nTwitter: >https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: >http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode starts off with Shelby coming home to his apartment. There’s a surprise visitor waiting to see him; actually there’re a few visitors, and one of them is dying to see him. Will Shelby make it out alive? Madison is doing her own investigation to find Shaun Mars, despite the fact that Ethan already told her to fuck off. She’s visiting Ann Sheppard, the mother of the twin boys, and hopes to get some real information out of her. Too bad Ann has a serious case of Alzheimer’s. Will Madison get the name she’s looking for by forceful triggering?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNisam znao da smo imali toliko obožavatelja koji govore hrvatski. Zadnji tjedan multikulturalna sekcija je malo jadan. Ispričavam se zbog toga. Nadam se da ovo čini za to? Ugodan dan!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKung kailanman na iyong kilala kahit sino na may Alzheimer, alam mo ito ay tunay, tunay na nakakabigo upang makipag-usap sa kanila. Siguro hindi kaya magkano suffocating ang mga ito sa isang unan nakakabigo. Talagang isang gawain bagaman, at ang laro ay isang magandang trabaho sa simulating iyon.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFORCEFUL TRIGGERING • Heavy Rain Ep 20\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8bbf302-40d3-4980-9ab3-022ac63a9e8a/sm/2516933-1485884892292-HeavyRain20.jpg","duration":1306,"publication_date":"2017-01-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-19","changefreq":"weekly","video":[{"title":"2017:E16 - BETRAYAL FROM WITHIN • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/2dY0HrO\n\n\n\n\n\n\n\n\n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their \n\n\n\n\n\n\n\n\n\n\n\nfriendship and love for \n\n\n\n\n\n\n\n\n\n\n\neach other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nБізнэс ёсць бізнэс. Часам гэта можа разбурыць дружбу. Часам гэта можа стварыць сяброўскія адносіны. Незалежна ад таго, што бізнэс робіць, Тревор з'яўляецца мудак.\n\n\n\n\n\n\n\n\n\n\n\n\n\nຖ້າຫາກວ່ານີ້ແມ່ນເກມຂອງຄະ famous \"Monopoly\", ສິ່ງທີ່ໄດ້ຮັບທີ່ດີກວ່າ. ເປັນຫຍັງຈຶ່ງບໍ່ພຽງແຕ່ທັງຫມົດຕາມແລະມີຄວາມມ່ວນກັບ Mario Party? ນີ້ແມ່ນແທ້ເກີດໄພພິບັດ\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBETRAYAL FROM WITHIN • Mario Party 7 Gameplay\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6323b8fc-c84d-4792-8d67-b43f75daaff0/sm/2516933-1485816274483-EP_6.jpg","duration":1393,"publication_date":"2017-01-31T04:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-8","changefreq":"weekly","video":[{"title":"2017:E4 - 32 POUND MARSHMALLOW BATH • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop we take you behind the scenes with 32 Pounds of Marshmallows and we setup for our 1000 degree knife video. \n\n\n\n\n\nPlease support our move to LA!  Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nDame comida, dame marshmallows. Pega esos malvaviscos por mi culo. Se siente tan bien sentir los malvaviscos suaves insertados en mi tope. Oh, sí, se siente tan bien.\n\n\n\n\n\nJag hoppas att alla snitches får slag i ansiktet. De är alla ett gäng jävla skitstövlar. Också tack för att titta på dig sexig röv kor.\n\n\n\n\n\n\n\n\n\n\n\n32 POUND MARSHMALLOW BATH • Behind the Cow Chop Thank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e542a64b-4ed7-414a-a070-c20bdf62605d/sm/2516933-1485572881956-32_pound_cereal.jpg","duration":603,"publication_date":"2017-01-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-knife","changefreq":"weekly","video":[{"title":"S1:E229 - 1000 degree KNIFE VS $40 Nokia and $700 iPhone","description":"Subscribe http://bit.ly/1RQtfNf  \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\nToday James has found himself a little more curious than usual.  He has a newfound fascination with glowing HOT knives and he's decided to have Trevor has a new helping hand to cut two phones, one at the price of $40, and the other at the price of $700. \n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nMe quemé justo en mi nudillo, así que picado por un poco cada vez que lo dobló. Va a dejar una marca de por vida, esta será la segunda cicatriz de quemadura pequeña que he recibido de la cosecha de vaca. Para siempre marcará mi cuerpo.\n\n\n\n\n\n\n\nVsichko tova dim nie prodŭlzhavame vdishvane, az sŭm siguren, che nie shte imame rak na beliya drob. Bozhiite skorost priyateli, ni zhelayat kŭsmet.\n\n\n\n\n\n\n\n1000 degree KNIFE VS $40 Nokia and $700 iPhone\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-knife","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/774cb50f-ed8b-46ad-bd3b-ff7fd90679f3/sm/2516933-1485604887495-knifevideo.jpg","duration":853,"publication_date":"2017-01-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-20","changefreq":"weekly","video":[{"title":"2017:E15 - UNFAIR CHALLENGE • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First LA Fundraiser: https://goo.gl/NVZOT8 Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChopBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks join up to beat the unfair challenge in Pit People, but will they make it to the end?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIni adalah supaya tidak adil, saya jadi gila. Bagaimana sesuatu yang boleh menjadi begitu mustahil keras. Saya tidak mendapatkannya. Saya rasa kita perlu terus berlatih jika kita ingin menjadi juara.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeth fyddech chi'n ei wneud pe baem mewn rhyfel? Byddwn yn gwneud beth bynnag a allaf i ddod yn eich ffrind er mwyn i ni y ddau dîm i fyny ac yn gwneud pastai gyda'i gilydd. Pie yn ffycin blasus peidiwch â ydych yn credu. Beth yw eich hoff fath o bastai. Rwyf wrth fy modd pastai mêl. Yn hollol blasus.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUNFAIR CHALLENGE • PIT PEOPLEThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85f502af-0869-41bc-9356-4c258a6df84c/sm/2516933-1485484331511-Pit_People2.jpg","duration":1083,"publication_date":"2017-01-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-21","changefreq":"weekly","video":[{"title":"2017:E14 - THE RAID • Heavy Rain Ep 19","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEthan is back at his motel room when Madison shows up. He is distraught and clearly suffering from PTSD. Madison tries to comfort him in the only way she knows how (that was deep). But when he discovers that she's a journalist, Ethan doesn't know if he can ever trust Madison again. Will he accept her apology? THEN, in a sudden turn of events, the police show up to the motel. It's a full on raid. Will Ethan be able to evade S.W.A.T. team?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMadison može biti odsutan u ovom poglavlju, ako je ona ubijena u \"Doc\", mijenjajući početak. U poglavlju još uvijek počinje s Ethan sjedi, osim da on ne plače i već nosi crni kaput. Ethan ustaje, pronalazi posljednji origami i odlazi do ulaznih vrata i pita gdje je Madison je. On vidi policiju i bježi preko balkona.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDet SWAT team är helt oprofessionellt, men det är en riktigt bra sak för Ethan.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE RAID • Heavy Rain Ep 19Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d6b49b3-5ae4-4a51-a50d-d4e77da9cab2/sm/2516933-1485394571009-HeavyRain19.jpg","duration":933,"publication_date":"2017-01-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016-2","changefreq":"weekly","video":[{"title":"2017:E3 - ROCK STAR COWBOY • AMAZON PRIME TIME ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTë gjithë tokës fizike në Kanada është pronë e Kurorës, Mbretëresha Elisabeth 11. Nuk ka asnjë dispozitë në Ligjin Kanada, ose në Aktin Kushtetues 1982 e cila ndryshon atë, për çdo kanadez të vet ndonjë tokë fizike në Kanada.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGeoff Ramsey Rooster Dişleri, Başarı Avcısı ve Let's Play ailesinin kurucularındandır. Ancak saf metalden yapılmış olduğunu ve 70'li yılların her bandının davulcusu olduğunu biliyor muydunuz?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nROCK STAR COWBOY • AMAZON PRIME TIMEThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d91bbc56-57e8-4b39-a44b-ba03fa8aae92/sm/2516933-1485308812877-AmazonGeoff.jpg","duration":1101,"publication_date":"2017-01-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-22","changefreq":"weekly","video":[{"title":"2017:E13 - LEVEL FROM HELL • Battleblock Theater","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks are back to the classics.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nReturning to the one and only, Battleblock Theater, where it all began.A game requiring at least a little bit of cooperation, who knows how long until they kill each other.This time around, they're playing the levels that people have created and uploaded. They're all probably terrible.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nмастерство Aleks лягушки удивительно. Он действительно один с лягушкой. Он даже выглядит как лягушка. Какой урод\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDet är 2017 och \"BattleBlock\" är toppen av spel. Vad mer kan man eventuellt vill från ett spel? Den har allt! Block, strider, teatrar, katter, grodor, muffin män. Allt! Med undantag för färgen teal.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLEVEL FROM HELL • Battleblock Theater\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de403de0-166c-4f35-83b5-8bddb31f88cd/sm/2516933-1485293785352-Battleblock_-_THUMBNAIL_-_EP_3.jpg","duration":1403,"publication_date":"2017-01-24T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-25","changefreq":"weekly","video":[{"title":"2017:E10 - BREAKIN' BALLS • Heavy Rain Ep 18","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEthan and Madison are both 1 and 1 on total kills (Ethan shot the innocent drug dealer for his forth trial and Madison murdered the creepy serial killer, Colin). This time Madison is determined to figure out the owner of the apartment where Ethan chopped off his pinky and who he's working for. Will she kill him in the effort or just bust his balls?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWie draagt een shirt met kraag naar de club? Ik bedoel kom op, Paco. Het is duidelijk dat ze is een narc.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nזוהי הסצנה השלישית במשחק כי פוטנציאל כרוך עירום; מדיסון ניתן הפשיט עד לנקודה שבה היא מסירה את החזייה שלה, מראה שדיה. היא לא יכולה להסיר את התחתונים שלה.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBREAKIN' BALLS • Heavy Rain Ep 18Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e4e7eed-bdf0-4639-9c81-6c16ef66bfbe/sm/2516933-1484867221626-HeavyRain17.jpg","duration":870,"publication_date":"2017-01-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-5","changefreq":"weekly","video":[{"title":"2017:E3 - BOO WARDROBE MALFUNCTION (+RT UPDATE!) • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFireworks!! ... if they work. And everyone gets dressed up for another round of Mario Party. The gang is lookin' good until Aleks realizes his costume is missing a key component: the hood. Also, be sure to check out the important Rooster Teeth update from Brett!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nТова Бу костюм е всъщност наистина страшно за малко, а аз дори не съм уплашен от призраци. Това е нещо добро Тревър има фенерче.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFan hur gammal är dessa fyrverkerier? I kommentarerna, berätta hur gammal du tror att de är.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBOO WARDROBE MALFUNCTION (+RT UPDATE!) • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/365f4d84-0727-4a99-89ef-eac7753f8910/sm/2516933-1484876694780-Thumbnail_BTS_FINISHED.jpg","duration":901,"publication_date":"2017-01-21T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-24","changefreq":"weekly","video":[{"title":"2017:E11 - PREGNANT TROLL VS GOON SQUAD • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks face off in Pit People Versus. Who will Win?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPozwól mi pit w twarz. Pozwól mi napluć w twarz. Pozwól mi gówno na twarzy. Pozwól mi lizać cię całego. Pozwól mi gówno na twarzy. Dziękuję pit ludzi.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nВолим када сам трљати млеко по мојим сисама. Молим те, пусти ме да једем све сперма и сперме молим. Хвала вам што сте ми омогућили да имају млеко за доручак ручак и вечеру. Ти си прљава курва. Али опет хвала.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPREGNANT TROLL VS GOON SQUAD • PIT PEOPLEThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/836d5a08-70ae-44eb-9c65-700548aba52b/sm/2516933-1484983012465-pitpeople8.jpg","duration":1038,"publication_date":"2017-01-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-23","changefreq":"weekly","video":[{"title":"2017:E12 - ARRIVAL AT NEON HEIGHTS • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nRT First LA Fundraiser: https://goo.gl/NVZOT8\n\n\n\n\n\nCow Chop Merch: http://bit.ly/2dY0HrO    RT First: http://bit.ly/2b4bWuW   Discuss: http://bit.ly/1qvrlLD   \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for \n\n\n\n\n\n\n\n\n\n\n\neach other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n- Esos sapos están robando a todas nuestras mujeres y nuestros trabajos. Todo lo que les importa es monedas y estrellas. Malditos sapos.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n- Ja neviens veidi komentāriem (angļu valodā) \"uguņošanas banāns vistas piedāvājumu par manu galvu, es gribu dažas yummy yummy austiņas\", tad tas būs pēdējais Mario Party \n\n\n\n\n\n\n\n\n\n\n\nepizode, kas tiks atbrīvots.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nARRIVAL AT NEON HEIGHTS  • Mario Party 7 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af8570cf-a816-4f95-abba-39a4df7a7c8e/sm/2516933-1484881188376-EP_5.jpg","duration":1466,"publication_date":"2017-01-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-4","changefreq":"weekly","video":[{"title":"2017:E2 - HOW TO GET MERMAID POWERS • WRONG SIDE OF YOUTUBE ","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nΑμερικανοί διαμορφωτές μολύβι ήθελε έναν ιδιαίτερο τρόπο για να πει στους ανθρώπους που τα μολύβια τους περιείχαν κινεζική γραφίτη. Στην Κίνα, το κίτρινο χρώμα συνδέεται με βασιλείς και σεβασμό. Αμερικανοί κατασκευαστές μολύβι άρχισε να ζωγραφίζει τα μολύβια τους φωτεινό κίτρινο για να επικοινωνούν αυτό το «βασιλική» αίσθηση και σύνδεσης με την Κίνα.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nഓസ്ട്രേലിയ ഒരു ഭൂഖണ്ഡം ഏക രാജ്യമാണ്. ആസ്ത്രേലിയ തെക്കൻ ശാന്തസമുദ്രത്തിൽ ഇന്ത്യൻ മഹാസമുദ്രം ഇടയിലാണ്. പേര് ഓസ്ട്രേലിയ തെക്കൻ അർത്ഥം ലാറ്റിൻ പദമായ ഓസ്ട്രേലിയയിലെത്തി നിന്ന് വരുന്നു.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideos:\n\n\n\n\n\n\n\n\n\n\n\nShrek without main characters - \n\n\n\n\n\n\n\n\n\n\n\n\n\nShrek but ONLY donkey - \n\n\n\n\n\n\n\n\n\n\n\n\n\nimportant videos playlist - \n\n\n\n\n\n\n\n\n\n\n\n\n\n(PLEASE DO NOT BE ASSHOLES TO LITTLE KIDS)Real mermaid powers - \n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to get powers!! - \n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to become a mermaid NO JOKE REAL LIFE - \n\n\n\n\n\n\n\n\n\n\n\n\n\nLiving out of a storage locker for 2 months - \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOW TO GET MERMAID POWERS • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/339d4c5e-d0f5-4643-978f-f7c519eba047/sm/2516933-1484855530001-YoutubeSaltWater.jpg","duration":1334,"publication_date":"2017-01-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2017-3","changefreq":"weekly","video":[{"title":"2017:E1 - SUB ZERO MORTAL CRISIS • Retroactive ","description":"Subscribe http://bit.ly/1RQtfNf  \n\n\n\nRT First LA Fundraiser: https://goo.gl/NVZOT8Cow Chop Merch: http://bit.ly/2dY0HrO  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday's selection of a spicy Retro game is gladly provided by Aleks, which seemingly means it's James' turn to endure the madness of being bad at video games. How far will he reach? Will he complete the game? Or maybe even get past the tutorial? Tune in to find out!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nHe estado despierto toda la noche editando esto, mis ojos me dolieron un poco. Actualmente el video se está mostrando mientras escribo esto, espero que nada salga mal. Deséame suerte.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNire oinak hazten beraz, horiek ezin dut zurrupatu eta slurp out nire behatzak arteko gunk guztiak egin ahal izango dut nahi nuen, gero nire oinak txikitu dezake I tamaina normal eta osasuntsu bizi.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSUB ZERO MORTAL CRISIS • Retroactive\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/retroactive-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c359ab6a-41df-4202-a578-37835d2f9179/sm/2516933-1484757981233-RetroactiveSubZero.jpg","duration":1007,"publication_date":"2017-01-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-28","changefreq":"weekly","video":[{"title":"2017:E8 - THE LONELY BACHELOR • Heavy Rain Ep 17","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPrivate Investigator Scott Shelby and his helpful sidekick, Lauren Winter, are at it again. They put their heads together to find a name that's on two lists: one, a clientele list from Manfred's, the second, subscribers to an origami magazine. Will they find any names that appear on both lists?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCes pauvres enfants! Leur père les bat et leur mère n'est pas là pour aider. Puis ils vont jouer sur un chantier de construction et l'un d'eux meurt juste en face de l'autre. Certainement la naissance d'un psychopathe là-bas.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLi cihê ku venihêrtina is this game dispêre? Seattle? New Orleans? Comment ku hûn difikirin, ev kes dijîn.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE LONELY BACHELOR • Heavy Rain Ep 17Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8c9dd63-9ed5-4599-8903-f27371210bb0/sm/2516933-1484350438984-HeavyRain18.jpg","duration":991,"publication_date":"2017-01-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-27","changefreq":"weekly","video":[{"title":"2017:E9 - TEAMWORK TENSION • Battleblock Theater","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrORT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks are back to the classics.Returning to the one and only, Battleblock Theater, where it all began.A game requiring at least a little bit of cooperation, who knows how long until they kill each other.This time around, they're playing the levels that people have created and uploaded. They're all probably terrible.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPink Laffy Taffy no es una broma. En 1947, mis dos hermanos mayores murieron en un trágico accidente de Laffy Taffy durante el Gran Laffy Taffy Avalanche. El rosa estaba por todas partes. Verdaderamente un horror.\n\n\n\n\n\n\n\n\n\nVi er på ingen måte eller form for tiden sponset av Keurig™. Jeg sier ikke at vi er imot tanken på å bli sponset av Keurig™. Jeg sier bare. Du vet hva jeg sier?\n\n\n\n\n\n\n\n\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ea338e2-f2ab-4690-bc82-8773b5ef2cc6/sm/2516933-1484595397780-Battleblock_-_THUMBNAIL_-_EP_2.jpg","duration":1075,"publication_date":"2017-01-16T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-escapetola","changefreq":"weekly","video":[{"title":"S1:E216 - Cow Chop: Escape To LA","description":"Please support our move to LA!  Click the link to sign up for Rooster Teeth FIRST and use the referral code \"COWCHOP\" https://goo.gl/NVZOT8\n\n\n\n\n\n\n\nThanks to https://twitter.com/Y2KKev for the thumbnail!\n\n\n\n\n\n\n\nIf you can't click the link because you are either legally blind or have tremors, I'll just spam a bunch of the links, so just try to click anywhere!\n\n\n\n\n\n\n\nhttps://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8 https://goo.gl/NVZOT8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHAVE A GOOD DAY!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-escapetola","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ef2344-4701-45a1-a334-9699ed05db90/sm/2516933-1484504289933-THUMBNAIL.jpg","duration":649,"publication_date":"2017-01-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-6","changefreq":"weekly","video":[{"title":"2017:E2 - PEPPER SPRAY DANGER • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop, we take you behind the Pepper Spray Gauntlet and show you more of the dangers of pepper spray. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPiper spray squirt duzu nire ipurdian zuloa sartu eta utzi gau osoan erre da luze Lick duzun bezala nahi dut. Bide batez, nire Anus erretzen besterik ez da, eta horregatik hain madarikatua ona sentitzen me maite dut. Mesedez, Lick, egin hain ona erre me.\n\n\n\n\n\n\n\n\n\n\n\n\n\nSürətli onu qalmaq, i sizin ayaq yemək və onların off bütün mum sormaq istəyirəm. mənim ağız daxil nəhəng dildo daxil düşünün. Cows sevgi cinsi və başqa demək olar heç bir yolu yoxdur.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPEPPER SPRAY DANGER • Behind the Cow Chop\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fedbb7f-627d-453d-b512-1f581df96e98/sm/2516933-1484359867175-Pepper_spray_bts.jpg","duration":662,"publication_date":"2017-01-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2016","changefreq":"weekly","video":[{"title":"2017:E2 - BASS-BOOSTED MANICURE • AMAZON PRIME TIME ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWiley Hardeman Post (22 novembre 1898 - 15 août 1935) était un célèbre aviateur américain pendant la période connue sous le nom de Golden Age of Aviation, le premier pilote à voler en solo à travers le monde.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n今日私は、火薬のような月の塵のにおいが分かった。これは、月の表面上の遠足の後、月のモジュールに追跡された新鮮な月の塵を嗅ぐ機会があった宇宙飛行士によるものです。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBASS-BOOSTED MANICURE • AMAZON PRIME TIMEThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f70ab469-4f09-46ac-b1eb-344bd980b2da/sm/2516933-1484358917589-amazonsubpac.jpg","duration":1371,"publication_date":"2017-01-14T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-29","changefreq":"weekly","video":[{"title":"2017:E7 - HEAVIEST RAINFALL EVER • Heavy Rain Ep 16","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's time to complete the forth of 5 trials. Will Ethan really kill someone to save his own son? Madison has her own investigation planned; she checks out the owner of the apartment where Ethan cut off his finger. Turns out he's actually a really terrible guy. Will she be able to find any clues? Or will she be cut up into tiny pieces? Finally, Norman Jayden has another lead to investigate. Will he be able to survive the great brute that is Mad Jack? Find out on this episode of the heaviest rainfall ever!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n¡Mierda! ¡Norman Jayden está muerto! ¿Significa esto que tendrán un final terrible? Vas a tener que seguir viendo para averiguarlo.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nКолин был довольно жутким. Каковы были его планы с Мэдисон? Так рада, что мы никогда не узнаем.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHEAVIEST RAINFALL EVER • Heavy Rain Ep 16Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/196f86b4-ed94-46fa-95ac-1d179fb89e3c/sm/2516933-1484169764798-HeavyRain16.jpg","duration":1223,"publication_date":"2017-01-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-pepper-spray-gauntlet-part-two","changefreq":"weekly","video":[{"title":"S1:E211 - PEPPER SPRAY GAUNTLET PART TWO","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks has another surprise for us today, a gauntlet of extreme measures!  Today we'll be battling our way through a series of mini-games.  If you lose even one, that's a shot for you, look at the ref the wrong way?  Another shot.  Just keep drinking those shots son, sooner or later you won't feel anything anymore.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n아기 백조는 Cygnet이라고합니다. 별자리 Cygnus의 이름은 백조에 대한 라틴어 단어에서 온 것입니다.\n\n\n\n\n\n\n\n\n\n\n\n\n\nE 'fatale? Lo spray al pepe non è stato progettato per essere fatale e non ci sono contenuti discutibili che si trovano in spray al pepe che possono mostrare evidenze di diventare fatale. Tuttavia, ci sono casi di decessi registrati che sono associati con spray al pepe. Ciò è dovuto principalmente alla reazione allergica, definito come anafilassi.\n\n\n\n\n\n\n\n\n\n\n\n\n\nPEPPER SPRAY GAUNTLET PART TWOThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-pepper-spray-gauntlet-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4cf9eea-1f48-4f52-bf71-b96ceb5b8a22/sm/2516933-1484096273469-shotgauntlet2.jpg","duration":917,"publication_date":"2017-01-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-31","changefreq":"weekly","video":[{"title":"2017:E5 - A QUICK DEATH • Heavy Rain Ep 15","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNow that Ethan is free from jail and able to continue the trials to save his son, he debates with himself (he's a schizo) about saving his son OR proceeding with his NBA dreams, even though he no longer has all ten fingers. Private Detective Scott Shelby maintains his own investigation by visiting an old friend who might be able to tell him who the Origami Killer is...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVem kunde ha dödat Manfred? Han var en trevlig kille. Förhoppningsvis fånga det onda origamimördaren snart.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nومن المحتمل بالنسبة لك لمسح جميع مطبوعات وتجنب الشرطة طالما كنت تفعل ذلك بسرعة. يمكنك نفاد الوقت والتي سوف تعطيك نفس مشهد هو مبين في هذه الحلقة. أليكس غاب كل من الهاتف في الظهر وحافة النافذة. قد تحتاج أيضا للقضاء على باب الحمام، بالوعة الحمام، مقبض المرحاض (إلا إذا كنت لمست هذه)، وإطار الزجاج لورين يميل على (إذا كنت تأخذ وقتا طويلا).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nA QUICK DEATH • Heavy Rain Ep 15Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f7e2822-ff6e-4617-a03d-cce97d5f7429/sm/2516933-1483742610649-HeavyRain15.jpg","duration":955,"publication_date":"2017-01-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-gfdgfd","changefreq":"weekly","video":[{"title":"S1:E210 - PEPPER SPRAY GAUNTLET","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nAleks has another surprise for us today, a gauntlet of extreme measures!  Today we'll be battling our way through a series of mini-games.  If you lose even one, that's a shot for you, look at the ref the wrong way?  Another shot.  Just keep drinking those shots son, sooner or later you won't feel anything anymore.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nමරණය මේ නිවසේ අප අතර වේ. ඔබේ පව් යාච්ඤා, සෑම අස්සක් මුල්ලක් නෑර පමණ භූතයන් ඇත. ඔබේ නැවත නරඹන්න.\n\n\n\n\n\n\n\nAquest va ser probablement el pitjor dolor que sentia en una estona.\n\n\n\n\n\n\n\nPEPPER SPRAY GAUNTLETThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-gfdgfd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23ab6818-e611-495d-8533-ce5234c26450/sm/2516933-1484077479657-shotgauntlet1.jpg","duration":970,"publication_date":"2017-01-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-30","changefreq":"weekly","video":[{"title":"2017:E6 - A RETURN TO THE CLASSICS • Battleblock Theater","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nCow Chop Merch: http://bit.ly/2dY0HrO   RT First: http://bit.ly/2b4bWuW   Discuss: http://bit.ly/1qvrlLD   \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks are back to the classics.Returning to the one and only, Battleblock Theater, where it all began.A game requiring at least a little bit of cooperation, who knows how long until they kill each other.This time around, they're playing the levels that people have created and uploaded. They're all probably terrible.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nโรงละคร Battleblock โรงละครที่ดำเนินการบล็อกและการต่อสู้ มันคือทั้งหมดที่อยู่ในชื่อของเกม มีตัวอักษรอะไรอย่างอื่น ขอบคุณ\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nछोटी बेडूक हे एक कोड प्लॅटफॉर्मवर रस पुदिनायुक्त मांजरे घड्याळ छोटी बेडूक लढाई स्पाइक अवरोधित मांजरे घड्याळ हे एक कोड प्लॅटफॉर्मवर रस पुदिनायुक्त आहे लढाई स्पाइक अवरोधित\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cff2cec1-a118-474b-8173-520d68ed05f7/sm/2516933-1484005644731-Battleblock_-_THUMBNAIL_-_EP_1.jpg","duration":1345,"publication_date":"2017-01-09T03:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2016-5","changefreq":"weekly","video":[{"title":"2017:E1 - IF YOU'RE WATCHING THIS, I'M DEAD • WRONG SIDE OF YOUTUBE","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLe bruit de fissuration que fait un bullwhip lorsqu'il est bien manipulé est, en fait, un petit boom sonique. La fin du fouet, connue sous le nom de cracker, se déplace plus vite que la vitesse du son, créant ainsi un boom sonique. Le fouet est probablement la première invention humaine à briser la barrière sonore.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nカベルネは豊富で豊富なので、トマトベースの赤いソースで最高の状態になります。キアンティは強くて大胆な赤ワインで、風味豊かで味付けの良いソースにぴったりです。トマトベースの赤いソースと最高の組み合わせですが、クリームやオイルベースのソースでも動作します。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideos:Deep sea crab eats methane - \n\n\n\n\n\n\n\nOctopus leaps out of water, grabs crab -\n\n\n\n\n\n\n\nIF YOU'RE WATCHING THIS I'M DEAD - \n\n\n\n\n\n\n\nLong live the resistance - \n\n\n\n\n\n\n\nIf watching Im DEAD - \n\n\n\n\n\n\n\nIf you're watching this- I'm dead \n\n\n\n\n\n\n\nHUMAN FLYING DRONE - \n\n\n\n\n\n\n\nFireworks vest - \n\n\n\n\n\n\n\nReal Talk With Lucy - \n\n\n\n\n\n\n\nShrek but every time he smiles it gets 5% faster - \n\n\n\n\n\n\n\nthe bee movie but bee is replaced with the N Word - \n\n\n\n\n\n\n\nBee movie trailer but everytime they say \"bee\" it duplicates - \n\n\n\n\n\n\n\nSTUNG by a BULLET ANT - \n\n\n\n\n\n\n\n2016 Year in Review - \n\n\n\n\n\n\n\nWill Smith is Dead - \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIF YOU'RE WATCHING THIS, I'M DEAD • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/064021ff-d8dd-496d-aa29-2b9a04aa6c31/sm/2516933-1483669657029-YoutubeDeadMan.jpg","duration":1296,"publication_date":"2017-01-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2016-7","changefreq":"weekly","video":[{"title":"2017:E1 - NEW YEARS FIREWORK DISPLAY • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop, James and Trevor put together a spectacular firework celebration for everyone in the Cow Chop house.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPegue un fuego en mi culo. Se siente tan bien cuando explota. Sea seguro con los fuegos artificiales. No intentes nada de esto en casa o te herirán. Somos profesionales capacitados. Gracias.\n\n\n\n\n\n\n\n\n\n\n\nAdj egy okot, hogy sütni egy tortát. Ez nem a születésnapod hadd tudja az okát, miért kéne sütni egy tortát? Szeretném, hogy dugjon farkam belsejében egy tortát, és hagyja, hogy edd meg. Fincsi és ízletes finom sütemény a számat.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNEW YEARS FIREWORK DISPLAY • Behind the Cow Chop \n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeb4b89a-43ae-45ec-a74f-797658dbb509/sm/2516933-1483769437661-Fireworks_2.jpg","duration":770,"publication_date":"2017-01-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-33","changefreq":"weekly","video":[{"title":"2017:E4 - JAILBIRD • Heavy Rain Ep 14","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn the last episode, Ethan was caught by the FBI right after he chopped off his pinky finger. Even with Madison's help, he couldn't get away from them. Now he's in the investigation room being questioned by the FBI. Will he be able to break free and save his son?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSi usted es capaz de evitar que Ethan sea arrestado, entonces usted puede obtener una escena completamente diferente con Norman en su habitación de hotel, tratando de resistirse a las drogas. Si Ethan es arrestado, el juego te lleva de vuelta a la comisaría para que Norman rescate a Ethan.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nبه عنوان پیشرفت بازی، این امکان را برای شخصیت های اصلی به مرگ است. نظر شما چه کسی زندگی می کنند و که شما فکر می میرند؟\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJAILBIRD • Heavy Rain Ep 14\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e454cde-cefb-4090-b2ce-2bb07e6ea943/sm/2516933-1483650636528-HeavyRain14.jpg","duration":938,"publication_date":"2017-01-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foreign-import-2017-2","changefreq":"weekly","video":[{"title":"2017:E1 - DIRTY HORSE RACE GAMBLING • Foreign Import Gameplay","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/2dY0HrO Twitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLDBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe are back with even weirder horses in Japan World Cup 2 & 3. The steaks are high as James and Aleks put their bets on who is the number one horse. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n私は牛の女の子に乗って、良い私に乗る。私はあなたの牛に大きな牛の肛門を突き刺し、一晩中私に乗りたい。どうぞありがとうございます。私は牛のセックスが大好きです.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n私の牛の乳首を舐める。私の口の中にあなたの馬のジュースを詰める。あなたは牛と馬のジュースがすべて私の中に入るまで、吐きだしを止めようとはしませんか?あなたは一晩中あなたがたそがれそうにしましょう.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDIRTY HORSE RACE GAMBLING • Foreign Import GameplayThank You  ","player_loc":"https://roosterteeth.com/embed/foreign-import-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f486cd2-5812-4c94-9ff7-f2d05f0214c5/sm/2516933-1483658778249-ForeignHorseRace.jpg","duration":1152,"publication_date":"2017-01-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2017","changefreq":"weekly","video":[{"title":"2017:E1 - JUGGLING BABIES IN A HAUNTED HOUSE • Rescuties! Horror VR","description":"Subscribe: http://bit.ly/1RQtfNf    \n\nCow Chop Merch: http://bit.ly/2dY0HrO    RT First: http://bit.ly/2b4bWuW    Discuss: http://bit.ly/1qvrlLD    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks and James set up a VR adventure for their visitors, Brett and Dex. \n\n\n\n\n\n\n\n\n\n\n\nWhile Dex gets to live his lifelong dream of catching and throwing babies around the city, Brett does not get the same luxury.He must traverse the spooky house with no moral support from Dex and find out who is leaving all these barely legible notes around.Rescuties! VR and Emily wants to play VR. Juggling babies and hiding like babies.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n赤ちゃんは実際には驚くほど耐久性があります。例えば、私は赤ちゃんのように複数回赤ちゃんとして頭の中に落とされ、今は私を見ます。それは2017年で、私は完全に正常で正常です!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nዘልለው ለመሔድ ይጨንቀኛል በእርግጥ ለእናንተ በጣም አደገኛ ናቸው. እያጋጠሙዎት በጣም ብዙ ዝላይ በአንድ ጊዜ በትክክል ቆሽት መዝጋት ሊያደርጉ ይችላሉ ሆኖብኛል. ይህም በሳይንስ የተረጋገጠ ነው. እርስዎ ሊያስፈራራኝ መምረጥ መሆኑን ከጓደኞች እና ቤተሰብ አሰበ እባክዎ ልብ ይበሉ.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJUGGLING BABIES IN A HAUNTED HOUSE • Rescuties! Horror VR\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7957eed-c79e-4b1e-8088-eae09db39243/sm/2516933-1483511957874-BRETTDEX_VR_2016_-_THUMBNAIL.jpg","duration":1025,"publication_date":"2017-01-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-35","changefreq":"weekly","video":[{"title":"2017:E3 - FAILURE TO COMMUNICATE • Keep Talking and Nobody Explodes ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn this episode of Keep Talking and Nobody Explodes, Dex and Brett try their hand at bomb defusal (SPOILER: they're not good).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRomas yra distiliuotas alkoholinis gėrimas, pagamintas iš cukranendrių šalutiniai produktai, kaip antai: melasa, arba tiesiogiai iš cukranendrių sulčių, pagal fermentacijos ir distiliavimo procesą. Distiliatas, skaidrus skystis, tada paprastai brandinamas ąžuolo statinėse.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKe kukuli hui pili ana i ka uha me ka uha, a he mau articulations; o kekahi ma waena o ka femur a me ka tibia, a me kekahi ma waena o ka femur a me ka patella. He mea no ka nui loa i loko o ke ami hoi i ke kanaka kino.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFAILURE TO COMMUNICATE • Keep Talking and Nobody Explodes Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec68cd27-b245-4f60-8c55-b0699747a2ce/sm/2516933-1483396061213-ktanebrettdex.jpg","duration":1067,"publication_date":"2017-01-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-37","changefreq":"weekly","video":[{"title":"2017:E1 - FINGER LICKIN' GOOD • Heavy Rain Ep 13","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis time on Heavy Rain, Ethan needs to cut off his own finger in front of a live audience to save his son. Will he be able to do it before the five minutes run out? Also, the police are on the lookout for him, because his ex-wife told the police he's been acting strange. Can Ethan evade them with the help of Madison or will she turn him in, and end it all?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEste ensayo se llama \"El Lagarto\" más que probable debido a la capacidad de ciertos lagartos para perder piernas / partes del cuerpo y sobrevivir o incluso volver a crecer la extremidad perdida.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLe copeaux de bois qui est dans le coin n'est en fait pas une option pour couper le doigt. Ce petit morceau de bois est quelque chose pour Ethan pour serrer ses dents vers le bas afin de ne pas se concentrer sur la douleur.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFINGER LICKIN' GOOD • Heavy Rain Ep 13Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ed2e18a-c1d7-4ed7-84fc-23b6d9cb1d2d/sm/2516933-1482535986435-HeavyRain13.jpg","duration":1006,"publication_date":"2017-01-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-best-of-cow-chop-2016","changefreq":"weekly","video":[{"title":"S1:E200 - BEST OF COW CHOP • 2016","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHere's another round of best moments, but this time it's for the whole year, and everyone at the Cow Chop house tells you their personal favorite. Thanks to everyone for making this year not completely suck! Happy New Year!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVoorspoedige nuwe jaar! Kul 'am wa antum bikhair! Urte Berri on! Shuvo noboborsho! Sun nien fai lok! Xin nian yu kuai! Stastny Novy Rok! Godt NytÅr! Gelukkig nieuwjaar! Bonne année! Ein glückliches neues Jahr! Eutychismenos o kainourgios chronos! Hauoli Makahiki hou! Shana Tova! Boldog uj evet! Selamat Tahun Baru! Felice Anno Nuovo or Buon anno! Akemashite Omedetou Gozaimasu! Sehe Bokmanee Bateuseyo! Nyob Zoo Xyoo Tshiab! Felix sit annus novus! Barka da sabuwar shekara! Godt Nytt År! Manigong Bagong Taon! Szczesliwego Nowego Roku! La Multi Ani si Un An Nou Fericit! Ia manuia le Tausaga Fou! Feliz año nuevo! Heri za Mwaka Mpya! Gott Nytt År! Sawatdee Pi Mai! Chuc mung nam moi! Blwyddyn Newydd Dda\n\n\n\nVideos:\n\nEXTREME WATER RAFTING \n\n\n\nLITERAL FECES DISASTER *GROSS WARNING* \n\n\n\nDONALD TRUMP HOSTAGE RESCUE \n\n\n\nGUN SAFETY • Uncharted 4 Gameplay \n\n\n\nFAT OLD FRED • AMAZON PRIME TIME \n\n\n\nDO YOU KNOW HOW TO MEME? • Behind the Cow Chop \n\n\n\nPOKEMON TURF WAR • Pokemon Go \n\n\n\nSQUIGGLY CUP \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBEST OF COW CHOP • 2016Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-best-of-cow-chop-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2815fa5-c7ee-4434-864d-94020e5ab026/sm/2516933-1482973586340-BestOf2016thumbnail_FINISHED.jpg","duration":654,"publication_date":"2016-12-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015","changefreq":"weekly","video":[{"title":"2016:E198 - HOLIDAY FAN MAIL UNBOXING • Behind the Cow Chop","description":"P.O. BOX 3424 LITTLETON, CO 80161\n\n\n\n\n\n\n\n\n\n\n\nSubscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop, we have a holiday fan mail unboxing along with a home ghost cleansing.BE SURE TO SEND US MORE FAN MAIL ATP.O. BOX 3424 LITTLETON, CO 80161\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nApabila ada sesuatu yang pelik di kawasan kejiranan anda. Yang anda akan memanggil? Cow Chop! Apabila ada sesuatu yang berbau di dalam tab mandi, yang anda akan memanggil? Cow Chop! Apabila ada ... fuck ini.\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh yes, bata sé taobh istigh de dom. Seol dom roinnt fianáin delicious sa phost lucht leanúna agus ansin beidh mé ag oscailt mo bhéal agus deis a thabhairt duit chun beatha dom. Tabhair beatha daidí dom. Déan mo bolg lán de sonas agus áthas. Ba mhaith liom bia do thoil.\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOLIDAY FAN MAIL UNBOXING • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d1e4577-c29e-41db-8e0e-8218f2270a5f/sm/2516933-1482893270353-final_po_boxxxx.jpg","duration":862,"publication_date":"2016-12-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2016-8","changefreq":"weekly","video":[{"title":"2016:E201 - STARFIGHTERS AND EASTER EGGS • Star Wars Battlefront Rogue One: X-Wing VR Gameplay","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nHaving just watched the new Rogue One movie, James and Aleks decide to see how well Joe fares in the Rogue One universe with the Playstation VR. Turns out, he doesn't fare well in any universe. Our boys eventually get sidetracked and decide to play through Battlefront for an easter egg that Aleks heard about, The Mystical WAMPA!\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRealmente les tomó una hora para encontrar ese estúpido \"Wampa\". Creo que el sofá es la excreción de productos químicos tóxicos en todos nosotros. Todo el mundo se está volviendo un idiota.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJoe může být tajně terorista. Letí do celé řady různých kosmických lodí a jiných stacionárních objektů. Nemá ani Zdá se, cítit lítost o tom! Jeho úsměv je lež\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSTARFIGHTERS AND EASTER EGGS  • Star Wars Battlefront Rogue One: X-Wing VR GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8a547eb-d743-493c-bb44-8aaf2c4f2def/sm/2516933-1482998796978-SW_BF_THUMB.jpg","duration":1088,"publication_date":"2016-12-31T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-55","changefreq":"weekly","video":[{"title":"2016:E189 - SAVE THE NIPPLE • Heavy Rain Ep 12","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAfter Ethan went through the last trial  (a tunnel filled with glass, then an electrical condenser) he stumbled back to his apartment, and passed out with the door open. Good thing Madi just happened to be outside; hopefully she can help him with that terrible nipple burn. Blake suspects Ethan to be the Origami Killer, and private Detective Scott Shelby questions another person that might be connected to the murders.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nO capítulo em que a ex-mulher de Ethan chega à delegacia não é jogável, e é mais como uma cena. Também acontece de ser muito alto e difícil de ouvir. Basicamente ela disse aos detetives que ela suspeita que Ethan seja o assassino.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLe chapitre où Shelby jouer au golf avec M. Kramer est le plus facile dans le jeu. Tout ce que vous avez à faire est de frapper la balle trois fois pour déclencher les prochains événements. Si facile!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSAVE THE NIPPLE • Heavy Rain Ep 12Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/021b9c04-d0a4-4d4c-9b54-2d41b1760a3e/sm/2516933-1482277856142-HeavyRain12.jpg","duration":857,"publication_date":"2016-12-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fdsafdsaf","changefreq":"weekly","video":[{"title":"S1:E199 - DONALD TRUMP HOSTAGE RESCUE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nA special Agent is sent by a private military to save the newly kidnapped President, Donald Trump.  He must battle his way through a wave of terrorist before he can find the location of President Trump.  Will he succeed?\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nMe quedé despierto toda la noche para terminar esto para ustedes, espero que ustedes tengan un buen año nuevo, estoy de vacaciones. Espero que mi cuerpo no entre en shock.\n\n\n\n\n\n\n\n\n\n\n\nPrezident Trump öz boogers yeyir, amma cəhd qədər siz onu döymək bilməz tapmaq\n\n\n\n\n\n\n\n\n\n\n\nSAVING PRESIDENT TRUMPThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fdsafdsaf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22dd527a-467e-4313-a53b-662f6859d96e/sm/2516933-1482957924390-ktafsfne.jpg","duration":467,"publication_date":"2016-12-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2016-36","changefreq":"weekly","video":[{"title":"2017:E2 - BOMB SQUAD • Keep Talking and Nobody Explodes","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nIt is time to revisit a classic. In this episode, Aleks and James are sent to disarm a Lethal Weapon. Using only their wit, Speed, and walkie-talkies, can they save themselves or will they Die Hard? \n\n\n\n\n\nArmageddon. \n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nБомба отряд в Бристоле, Великобритания когда-то взорвали подозрительный ящик, в котором содержатся листовки о том, что делать, если вы нашли подозрительный пакет\n\n\n\n\n\n\n\n\n\n\n\n\n\nVisste du at Keep Talking og ingen eksploderer var en av de første videoene på Cow Chop? Fascinerende!Visste du også at spillet ble skrevet, programmert og designet utelukkende av hunder? Wow!\n\n\n\n\n\n\n\n\n\n\n\n\n\nBOMB SQUAD • Keep Talking and Nobody Explodes Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2016-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2837d82-8af5-4a9e-a41f-0c5ad2d657ac/sm/2516933-1482884004985-ktanejamesaleks.jpg","duration":954,"publication_date":"2016-12-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-60","changefreq":"weekly","video":[{"title":"2016:E194 - THE FINAL TURN • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nCow Chop Merch: http://bit.ly/2dY0HrO    RT First: http://bit.ly/2b4bWuW   Discuss: http://bit.ly/1qvrlLD   \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for each other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nWoah, la fiesta de Mario ya ha terminado! ¿Va a haber más? ¡Quién sabe! Yo ciertamente no.\n\n\n\n\n\n\n\n\n\n\n\nIn Mario Party, l'unico vincitore è sempre Mario. Indipendentemente da chi vincerà le mini-giochi, Mario è il volto di questo franchise. Lui è già ricco sfondato! Che una pasta mostro sporca\n\n\n\n\n\n\n\n\n\n\n\nTHE FINAL TURN • Mario Party 7 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d8bdaa4-fd97-4861-a159-19c3ab447f72/sm/2516933-1482530918078-Mario_Party_EP_4.jpg","duration":1296,"publication_date":"2016-12-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-11","changefreq":"weekly","video":[{"title":"2016:E196 - $1,000 HOLIDAY GIFT GUIDE: PART TWO • AMAZON PRIME TIME","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nIt's CHRISTMAS PRIME TIME. In this episode James has assembled the ultimate holiday gift guide featuring 11 of the hottest gift items from Amazon. I wonder how many will injure Aleks? \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\nWaa fasaxa! sow ma tihid faraxsan? Tani waa markii ugu fiican si aad u la qoyskaaga iyo wadaagaan hadiyadda ugu weyn ee dhan, qoyska. Thanks for isagoo qayb ka mid ah qoyska Cow la yaab leh. Thanks for daawashada.\n\n\n\n\n\n\n\n\n\n\n\n\n\nSoyez vous-même et donnez au monde. Donner des cadeaux aux autres et les rendre heureux. Non seulement des dons physiques mais de bons gestes et de bonnes actions. Faites du monde un meilleur endroit, de joyeuses fêtes à tous.\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOLIDAY GIFT GUIDE: PART TWO • AMAZON PRIME TIMEThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c2554f9-6745-4c2f-b77c-2fd6cfed386c/sm/2516933-1482549181920-AmazonGiftGuide2.jpg","duration":1339,"publication_date":"2016-12-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-2","changefreq":"weekly","video":[{"title":"2016:E195 - WORLD'S BEST SPA • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n On this weeks Behind the Cow Chop Aleks brings a whole new level of comfort into our house by making it into a spa.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nMən bunu istilənmək istəyirdi, çünki mən bir dəfə bir sauna mənim Dik vurulmuş. Bu tərləmə sona çatdı və belə yaxşı hiss etdim. Siz mənim dick sauna onu daxil sonra çox yaxşı hiss təsəvvür edə bilərsiniz, belə ki, Tərləmə dəri üçün həqiqətən yaxşıdır. Çox sağ ol.\n\n\n\nमेरे सभी अपने चेहरे पर गोज़ और गंदगी करते हैं। कृपया यह बहुत अच्छा लगता है और यह मुझे तो कमबख्त ज्यादा पर बदल जाता है। मैं पूरी तरह से प्यार करता हूँ जब वहाँ गोली चलाने की आवाज़ सब अपने होठों पर और देख मला आपको लगता है कि गंदगी सभी चाटना। हे भगवान, हे भगवान, हाँ।\n\n\n\nWORLD'S BEST SPA • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dd24b12-87ad-4538-a592-2ffed0318ed2/sm/2516933-1482535998804-Spa_resort_2.jpg","duration":601,"publication_date":"2016-12-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-gdsg","changefreq":"weekly","video":[{"title":"S1:E193 - Cow Chop's Misfit Christmas - Part Two","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nWelcome to Cow Chop's first Misfit Christmas, a two part journey of gift giving and experiences you wouldn't want to forget.  In this part the misfits will be giving Santa gifts as his old crippled body is in need of love too. So lets tune in to see what happens!","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-gdsg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ac8d1b3-f7ab-4895-98fc-14f57f31e20d/sm/2516933-1482527029686-christmaspart2.jpg","duration":1048,"publication_date":"2016-12-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-10","changefreq":"weekly","video":[{"title":"2016:E192 - $1,000 HOLIDAY GIFT GUIDE: PART ONE • AMAZON PRIME TIME ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDidžiausias kiaušinis svėrė 2.589 kg (5 £ 11,36 oz) ir buvo padėtas strutis (Struthio CAMELUS) ne ūkyje priklauso Kerstin ir Gunnar SAHLIN (Švedija) Borlange, Švedija, 2008 gegužės 17 d.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMistel (mistel) är från den anglosaxiska ord misteltan, som betyder \"liten dynga kvist\" eftersom anläggningen sprider även fågelspillning.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOLIDAY GIFT GUIDE: PART ONE • AMAZON PRIME TIMEThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0c92b3d-ce01-4ebf-b347-4b6c246da05f/sm/2516933-1482529416296-AmazonGiftGuide1.jpg","duration":1155,"publication_date":"2016-12-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-2","changefreq":"weekly","video":[{"title":"2016:E185 - HUMAN MAIL CHALLENGE GONE WRONG X2 • WRONG SIDE OF YOUTUBE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nVänta tills slutet att se Dexter på det hemma. Låter som attraktionen till London i rutan var inte mycket bekvämt, men vi försökte göra det så mysigt som möjligt. Åtminstone det var billigare än att flyga honom tillbaka ut på ett plan.\n\n\n\n\n\n\n\n\n\n\n\nKjo dynjaja sa halle ka. Teksti në këtë këngë duket lloj emo. Aleks duket se e pëlqen atë.\n\n\n\n\n\n\n\n\n\n\n\nHUMAN MAIL CHALLENGE GONE WRONG X 2 • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b80d593-9186-4c02-842e-dbd1720746bd/sm/2516933-1481929574346-YoutubeDex_THUMBNAIL_FINISHED.jpg","duration":894,"publication_date":"2016-12-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-cow-chop-s-misfit-christmas-part-1","changefreq":"weekly","video":[{"title":"S1:E190 - Cow Chop's Misfit Christmas Part 1","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  Beat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nWelcome to Cow Chop's first Misfit Christmas, a two part journey of gift giving and experiences you wouldn't want to forget.  In this part Santa will be giving the misfits gifts as they are in dire need for love and affection.  So lets tune in to see what happens!\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nFeliz Navidad mis inadaptados, es esa época del año donde los niños son felices nieva y los adultos no lo son. Debido a que no tenemos días de nieve en el trabajo, tenemos que aguantarlo. Mierda tío estúpido, echo de menos mis días de escuela de nieve, no tenía que preocuparse de nada, sólo tenía que quedarme allí como un estúpido idiota y la respiración porque todo estaba cuidado.\n\n\n\n\n\n\n\nEl meu tradició de les festes és menjar ungles dels peus de la meva família. El meu pare té una gran quantitat de brutícia en ell, que és com una salsa per mullar en realitat.\n\n\n\n\n\n\n\nCow Chop's Misfit Christmas Part 1\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-cow-chop-s-misfit-christmas-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75c1d77b-3fc6-4fe4-84a4-57d0ea972ef1/sm/2516933-1482273969551-christmaspart1.jpg","duration":1247,"publication_date":"2016-12-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-444-post-show-498-gg5","changefreq":"weekly","video":[{"title":"2017:E34 - Too Comfy - Podcast #444 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss movie theaters, their highest ranking videos, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-444-post-show-498-gg5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dadd71d2-8b98-4747-9a11-a93b42003c6a/sm/2013912-1501090824208-rtp444_-_PS_-_THUMB.jpg","duration":2010,"publication_date":"2017-07-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-lactose-intolerance","changefreq":"weekly","video":[{"title":"2017:E57 - Lactose Intolerance","description":"Gus and Miles take it upon themselves to educate their coworker Eddy about the values and virtues of milk.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-lactose-intolerance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93ed8262-a0a6-461d-9571-96e1db6932cd/sm/2013912-1501019225464-MilkMadnessRTLife.png","duration":115,"publication_date":"2017-07-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-444-jeguog","changefreq":"weekly","video":[{"title":"2017:E444 - Burnie Blames Blaine - #444","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss PUBG and teamwork, Comic-Con trailers, going to the gym, and more on this week's RT Podcast! This episode originally aired on July 24, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj), MVMT (http://bit.ly/2vXl1zZ)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-444-jeguog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0020a15f-97d8-47c6-96bc-36e133bf2838/sm/2013912-1501002506054-rtp444_-_THUMB.jpg","duration":5632,"publication_date":"2017-07-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-married-at-rtx","changefreq":"weekly","video":[{"title":"2017:E56 - Married at RTX","description":"After months and months of talking about getting married, Mariel and Bethany finally say \"I Do\" at the Always Open panel during RTX.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-married-at-rtx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4141d6-c0ed-4909-8b84-bbf360ed1032/sm/2013912-1500932078882-Thumbnail_8.png","duration":180,"publication_date":"2017-07-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-say-yes-to-everything","changefreq":"weekly","video":[{"title":"2017:E25 - Say Yes to Everything","description":"Burnie takes us on a very Austin style yacht race on Lake Travis and explores what it means to be a social chameleon. Ellie is definitely the best sailor on board and in no way embarrases her family or nation...","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-say-yes-to-everything","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4a9fdfe-e2e5-46ae-9301-a0449ed89145/sm/2013912-1500916601222-Vlog_24_Sayyestoeverything_thumbnail.png","duration":572,"publication_date":"2017-07-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-287-j49gu","changefreq":"weekly","video":[{"title":"2017:E287 - Mugged Miles ","description":"Miles talks about the time he accidentally got mugged and didn't know he was getting mugged? Or he didn't know he almost bought a knife. Confidence is key, kids.\n\nAudio from Rooster Teeth Podcast #398\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-287-j49gu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0dd252fe-f7be-47f0-9831-3112f71e05b3/sm/2013912-1500588425113-rtaa287tn.jpg","duration":99,"publication_date":"2017-07-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-17-go34h","changefreq":"weekly","video":[{"title":"S15:E17 - Episode 17: Quicksave ","description":"Free from their confinement; Carolina, Washington and Locus make plans for the gang's escape. Sarge struggles with difficult orders.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-17-go34h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0c36384-6e12-43b0-a739-6686be296fb8/sm/2013912-1500673120518-RvB15Ep017Thumbnail.jpg","duration":728,"publication_date":"2017-07-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-443-post-show-g948gh","changefreq":"weekly","video":[{"title":"2017:E33 - Call Mr. Bennigan - Podcast #443 Post Show","description":"Join Burnie Burns, Brandon Farmahini, Gray Haddock and Max Kruemcke as they discuss tampering with food preperation, drunk memory gaps, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-443-post-show-g948gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49016d21-2af7-4278-82ad-fe5765d76de6/sm/2013912-1500662893644-rtp443_-_PS_-_THUMB.jpg","duration":1109,"publication_date":"2017-07-22T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-playerunknown-s-battlegrounds-take-2","changefreq":"weekly","video":[{"title":"2017:E7 - Playerunknown's Battlegrounds Take 2","description":"Blaine, Burnie, Gus and Jon are back to settle a score.  Will they succeed and get a delicious chicken dinner or will their hopes be thrown off a rocky cliff?\n\n\n\n\n\nWe mercilessly pick on Blaine throughout this video. I almost feel bad about it.","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-playerunknown-s-battlegrounds-take-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/570be250-e01b-4ecd-8535-d9e455e51229/sm/2013912-1500661019803-pubg2-thumbnail.jpg","duration":6821,"publication_date":"2017-07-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-episode-11-gerhg3t5","changefreq":"weekly","video":[{"title":"S2:E11 - Episode 11 - Movie Night","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-episode-11-gerhg3t5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e262ca8b-2bab-4b21-9fe4-4694c5153893/sm/2013912-1500673057710-RWBYChibiEp011Thumbnail.jpg","duration":180,"publication_date":"2017-07-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-443-fj3io3f","changefreq":"weekly","video":[{"title":"2017:E443 - Verbal Government Approval - #443","description":"Join Burnie Burns, Brandon Farmahini, Gray Haddock and Max Kruemcke as they discuss float trips, dental hygiene, ranching, and more on this week's RT Podcast! This episode originally aired on July 20, 2017","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-443-fj3io3f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e64856b8-1f55-4bdc-b166-28a2c3544682/sm/2013912-1500662621349-rtp443_-_THUMB.jpg","duration":4481,"publication_date":"2017-07-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-104-fiegh4r5","changefreq":"weekly","video":[{"title":"S9:E5 - For the Win #104","description":"Just in case you didn't get enough of the Sugar Pine bois we decided to play one more game. Enjoy?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-104-fiegh4r5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16cb9d0d-3d3a-41f3-ba41-7383338877fa/sm/2013912-1500582395278-ots_104ps_thumb.jpg","duration":388,"publication_date":"2017-07-21T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-7-fgiuihqo","changefreq":"weekly","video":[{"title":"S2:E7 - Episode 7 - Bonjour Bonquisha","description":"The campers try to help David with his relationship problems. Then the Flower Scouts try to help the campers help David with his relationship problems.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-7-fgiuihqo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/139acd1a-8e3c-4c56-b304-e43508229454/sm/2013912-1500587921272-CC2_Ep07_tn.jpg","duration":655,"publication_date":"2017-07-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-104-hoigo4","changefreq":"weekly","video":[{"title":"S9:E104 - JON DOESN'T HOST ANYMORE - #104","description":"We were told the cast and crew of Arrested Development were coming to do On The Spot and instead some child wearing a pink dad hat, an illegal alien from Canada and a failed white rapper showed up, drank all of our booze, threw baby food everywhere and generally made everyone uncomfortable.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-104-hoigo4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/990257fd-a620-4926-8dc5-98875a0d6001/sm/3014926-1500577020648-ots_104_thumb.jpg","duration":2892,"publication_date":"2017-07-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-1-post-show","changefreq":"weekly","video":[{"title":"S1:E1 - Funhaus + SugarPine7 vs. Game Attack - Post Fight Battle #1","description":"It's gettin' hot in the kitchen as Elyse and Steven Suptic battle Game Attack in Overcooked.","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-1-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80bfa1bb-b41a-4465-a697-f2ca26620560/sm/2013912-1500564322351-TNGF01_-_PS_-_THUMB.jpg","duration":373,"publication_date":"2017-07-20T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tuesday-night-game-fight-1-1","changefreq":"weekly","video":[{"title":"1:E1 - Funhaus Licks Sugar Pine 7 - #1","description":"A fierce and funny gaming battle royale between the boys of Sugar Pine 7, the girl from Funhaus, the giants from Game Attack, and the JT from JTMachinima. This episode originally aired on July 18, 2017 and is sponsored by SeatGeek (http://bit.ly/2tgjzaR)","player_loc":"https://roosterteeth.com/embed/tuesday-night-game-fight-1-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50c6d73c-d687-4744-b07e-5f1c5be05d32/sm/2013912-1500496596578-TNGF01_-_THUMB_v9.jpg","duration":3055,"publication_date":"2017-07-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-442-post-show-g398g4","changefreq":"weekly","video":[{"title":"2017:E32 - Camera Utilizing New Technology - Podcast #442 Post Show","description":"Join Gus Sorola, Chris Demarais, Barbara Dunkelman, and Burnie Burns as they discuss PUBG and chicken dinners, sword open carry, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-442-post-show-g398g4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f61ecb73-775d-4ea3-a0fb-ce2b194f43a1/sm/2013912-1500487836081-rtp442_-_PS_-_THUMB.jpg","duration":1106,"publication_date":"2017-07-19T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-t-shirt-cannon","changefreq":"weekly","video":[{"title":"2017:E55 - Pyrrha Shot Out of a Cannon!","description":"The infamous hot dog t-shirt cannon made the rounds at various RTX panels, pelting attendees with shirts and plushies and nailing Michael in the groin.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-t-shirt-cannon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e98825f-920b-40f8-9e18-bc2b951922de/sm/2013912-1500403970859-TshirtCannon_01.png","duration":111,"publication_date":"2017-07-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-442-g094gu","changefreq":"weekly","video":[{"title":"2017:E442 - Monday Night Scumbags - #442","description":"Join Gus Sorola, Chris Demarais, Barbara Dunkelman, and Burnie Burns as they discuss Tuesday Night Game Fight, pronunciations, the Snapchat hot dog, and more on this week's RT Podcast! This episode originally aired on July 17, 2017, sponsored by Audible (http://adbl.co/2uvRPmB), NatureBox (http://bit.ly/2uvjLXA), Squarespace (http://bit.ly/2uvjLXA)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-442-g094gu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69372da1-258f-45d9-bdd1-ae995f4bf198/sm/2013912-1500400435910-rtp442_-_THUMB.jpg","duration":5931,"publication_date":"2017-07-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-sailor-moon-punks","changefreq":"weekly","video":[{"title":"2017:E54 - Sailor Moon Punks","description":"Barbara tests her cosplay skills when she joins a team of talented ladies in cosplaying as \"Sukeban\" Sailor Scouts during RTX.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-sailor-moon-punks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9349a1b6-5aae-447c-85b0-b3fccd3453d9/sm/2013912-1500330882868-Punk_Sailor_moon_Final.png","duration":188,"publication_date":"2017-07-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-how-to-get-a-job-at-rooster-teeth-or-any-creative-company","changefreq":"weekly","video":[{"title":"2017:E24 - How to Get a Job at Rooster Teeth... (or any creative company)","description":"Burnie interviews employees of Rooster Teeth and asks them all two questions: \"What was your first job?\" and \"What was your big break in the entertainment industry?\". The answers build a solid list of advice for anyone persuing a career in this field: make yourself available for opportunities, volunteer, intern and work unpaid, develop many different skills, get out of your comfort zone, build a brand for yourself and MAKE CONTENT!","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-how-to-get-a-job-at-rooster-teeth-or-any-creative-company","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64a1cb3b-0fea-4130-b1cb-aabd21ebe990/sm/2013912-1500309570624-Vlog_23_Howtogetajob_thumbnail.png","duration":805,"publication_date":"2017-07-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-286-g48hg","changefreq":"weekly","video":[{"title":"2017:E286 - Sticks & Flowers","description":"Joel goes to the doctor to get his bladder photographed. Unfortunately, it's not as easy (or as painless) as he hoped it would be. Then he insults pregnant women.\n\nAudio from Rooster Teeth Podcast #433\n\n\n\nDirected by Jordan CwierzAnimated by Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-286-g48hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/142eb623-25a1-43a3-a0ca-07351214c383/sm/2013912-1499980625589-rtaa286tn.jpg","duration":138,"publication_date":"2017-07-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-16-n8wthdg","changefreq":"weekly","video":[{"title":"S15:E16 - Episode 16: Grif Does a Rescue","description":"Sarge finally gets his wish as the Blues and Reds deal with an unexpected intruder. The gang learns the hard truth about a lost teamate.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-16-n8wthdg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec3ee78-0698-4c94-aaa8-975ca159ecd3/sm/2013912-1500048546865-RvB15Ep016Thumbnail.jpg","duration":537,"publication_date":"2017-07-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-441-post-show-g834go","changefreq":"weekly","video":[{"title":"2017:E31 - RTX I Can’t Yet - Podcast #441 Post Show","description":"Join Bethany Feinstein, Patrick Matthews, Chris Demarais, and Burnie Burns as they discuss their first breaks in entertainment, what lays eggs, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-441-post-show-g834go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a87fedb7-56a7-4d5f-898a-12bc215ea1b7/sm/2013912-1500063219194-rtp441_-_PS_-_THUMB.jpg","duration":1291,"publication_date":"2017-07-15T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-10-fj8yfh","changefreq":"weekly","video":[{"title":"S2:E10 - Episode 10 - Cool Dad","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-10-fj8yfh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9464e74-9175-408b-954c-575063e968c6/sm/2013912-1500048317003-RWBYChibiEp010Thumbnail.jpg","duration":261,"publication_date":"2017-07-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-441-fu93jg","changefreq":"weekly","video":[{"title":"2017:E441 - Who Broke the Door? - #441","description":"Join Bethany Feinstein, Patrick Matthews, Chris Demarais, and Burnie Burns as they discuss RTX incidents, Harry Potter World, a brand new game, and more on this week's RT Podcast! This episode originally aired on July 14, 2017, sponsored by ProFlowers (http://bit.ly/2kI2inb)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-441-fu93jg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c856720c-e758-4588-b317-7f5c91daf454/sm/2013912-1500062433022-rtp441_-_THUMB.jpg","duration":5471,"publication_date":"2017-07-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-4-attic-metal","changefreq":"weekly","video":[{"title":"2017:E26 - DMC3, #4 - Attic Metal","description":"Kyle and Miles are joined by Editor and Producer, Cole Gallian. Whille Cole entertains Miles with stories about his new house, Kyle runs into some trouble with a voluptuous Vampire.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-4-attic-metal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47c5f7e9-fa27-4dd0-84c8-1ef4e59c93e0/sm/1030918-1500076107715-BC_DMCLOL_THUMB_04_COLE.png","duration":4252,"publication_date":"2017-07-14T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-6-sofhehfl","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 6 - Quartermaster Appreciation Day","description":"After deciding Quartermaster deserves a day of appreciation, David reunites him with his quarter-sister, a distant relative who is not happy to see him.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-6-sofhehfl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3da22aa7-e8d2-40ce-b8d4-6b09311cbe30/sm/2013912-1500045638812-CC2_Ep06_tn_v002.jpg","duration":628,"publication_date":"2017-07-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-103-gh849y","changefreq":"weekly","video":[{"title":"S9:E103 - SOFTCORE IMPROV COMEDY - #103","description":"Improvisational theatre, often called improv or impro, is the form of theatre, often comedy, in which most or all of what is performed is unplanned or unscripted. Also lots of male nudity for some reason.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-103-gh849y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0e4d22b-e4d7-43ff-87c5-5849b34be315/sm/2013912-1499962645254-ots_103_thumb.jpg","duration":3441,"publication_date":"2017-07-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-6-ai7avn","changefreq":"weekly","video":[{"title":"2017:E6 - RTX Special - #6","description":"Griffon and Geoff invite couples from the community to the stage to share how their relationships got started.","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-6-ai7avn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7385960-c599-4a71-8241-29a335cba0c5/sm/2013912-1499892323054-RG06_-_THUMB.jpg","duration":3416,"publication_date":"2017-07-13T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-thank-you-rtx-guardians","changefreq":"weekly","video":[{"title":"2017:E53 - Thank You RTX Guardians!","description":"The final hour of RTX is spent in the tradition of thanking the dedicated, hard-working Guardians who help make RTX a resounding success every year. Thank you to our RTX 2017 Guardians, we'll see you next year!","player_loc":"https://roosterteeth.com/embed/rt-life-2017-thank-you-rtx-guardians","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/390573f3-fa0a-4126-bc23-c2b727f84d11/sm/2013912-1499874810674-RTXGuardiansThanks_01.png","duration":152,"publication_date":"2017-07-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-440-ogoiug","changefreq":"weekly","video":[{"title":"2017:E440 - Gavin or Google 13 - #440","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss RTX, Gavin or Google, bathroom habits, and more on this week's RT Podcast! This episode originally aired on July 10, 2017","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-440-ogoiug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85301b1f-44dc-4045-915f-b5de9fdab024/sm/2013912-1499786777903-rtp440_-_THUMB.jpg","duration":5336,"publication_date":"2017-07-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-miles-and-kerry-go-ape-in-new-zealand","changefreq":"weekly","video":[{"title":"2017:E52 - Miles and Kerry Go Ape in New Zealand","description":"Miles and Kerry travel to New Zealand to visit the WETA workshop and test out their performance capture process in the lead up to RTX. \n\nThis video is sponsored by War for the Planet of the Apes. Rooster Teeth visits Weta Digital to see the process that Andy Serkis goes through to become Caesar in War for the Planet of the Apes. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSynopsis: In War for the Planet of the Apes, the third chapter of the critically acclaimed blockbuster franchise, Caesar and his apes are forced into a deadly conflict with an army of humans led by a ruthless Colonel. After the apes suffer unimaginable losses, Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind. As the journey finally brings them face to face, Caesar and the Colonel are pitted against each other in an epic battle that will determine the fate of both their species and the future of the planet.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn Theaters - July 14, 2017\n\n\n\n\n\n\n\nGet Tickets Now: http://ApesMovieTickets.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected By Matt ReevesCast: Andy Serkis, Woody Harrelson, Steve Zahn, Amiah Miller, Karin Konoval, Judy Greer and Terry Notary","player_loc":"https://roosterteeth.com/embed/rt-life-2017-miles-and-kerry-go-ape-in-new-zealand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcd3eca3-597a-4606-8749-72f58913fa62/sm/2013912-1499707055026-MilesKerryWETA_03B.png","duration":753,"publication_date":"2017-07-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-rtx-austin","changefreq":"weekly","video":[{"title":"2017:E23 - RTX Austin","description":"RTX Austin, Rooster Teeth's own gaming and internet culture convention, just took place. Burnie gives us a behind the scenes snapshot of his RTX: panels, signings, the convention floor, and the secret back hallways.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-rtx-austin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61bece9e-4684-48af-a643-00d7f3432859/sm/2013912-1499700758184-Vlog_RTX_Thumbnail.png","duration":498,"publication_date":"2017-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-285-ig7dkbm","changefreq":"weekly","video":[{"title":"2017:E285 - Barbara vs The Old Man","description":"There is legend of an old man who lives in the same apartment complex as Blaine and Aaron. Is he a ghost? Is he lonely? Many have speculated, but few know for certain.\n\nAudio from Rooster Teeth Podcast #386\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan Battle & Johnathan Floyd","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-285-ig7dkbm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44eab397-8919-4b62-974d-84a94b7fb94e/sm/2013912-1499372559450-rtaa285tn.jpg","duration":85,"publication_date":"2017-07-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-15-f84hfl","changefreq":"weekly","video":[{"title":"S15:E15 - Episode 15: Objects in Space ","description":"With the fate of the Reds and Blues hanging in the balance, one robot boldly goes where no one has gone before.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-15-f84hfl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f446b78-f5d9-4ca0-87b7-a7575dc396c1/sm/2013912-1499361386449-RvB15Ep015Thumbnail.jpg","duration":572,"publication_date":"2017-07-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-439-post-show-wg94jg","changefreq":"weekly","video":[{"title":"2017:E30 - Do Not Nerd Shame Me - Podcast Post Show #439","description":"Join Burnie Burns, Ashley Jenkins, Jon Risinger and Trevor Collins as they discuss Marvel Comics, Riverdale, The Butter Controversy and more on this week's RT Podcast!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-439-post-show-wg94jg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05c26e62-2610-4f76-9464-f0e52a885270/sm/690915-1499403784589-rtp439_-_PS_-_THUMB.jpg","duration":1085,"publication_date":"2017-07-08T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-fortnite","changefreq":"weekly","video":[{"title":"2017:E6 - Fortnite","description":"Thanks to EPIC for sponsoring this video. To pre-order the game, click here: http://www.fortnite.com.\n\n\n\n\n\nBlaine, Brandon, Gavin and Gus all enter the world of Fortnite. Can they overcome their petty differences to build an awesome fort and stave off a horde of husks?\n\n\n\n\n\n\n\nTroll Blaine shows his true colors in this video and secretly works to subvert the team's every move. Watch his slow descent into madness as he drags his entire team down with him","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-fortnite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d17be46-747b-4543-b49c-e5642c1ffe6c/sm/2013912-1499287366980-thumbnail_final.jpg","duration":2577,"publication_date":"2017-07-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-9-ajfoiuf","changefreq":"weekly","video":[{"title":"S2:E9 - Episode 9 - Coming Home to Roost","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-9-ajfoiuf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b730a3d7-6af8-4a44-8f03-d11c14f5208a/sm/2013912-1499369483493-RWBYChibiEp09Thumbnail_ALT_after4pmFRI.jpg","duration":180,"publication_date":"2017-07-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-439-dg874ug","changefreq":"weekly","video":[{"title":"2017:E439 - I See The Food, I Eat The Food - RT Podcast #439","description":"Join Burnie Burns, Ashley Jenkins, Jon Risinger and Trevor Collins as they discuss The Black Death, Bowel Movements, Fast Food and more on this week's RT Podcast! ","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-439-dg874ug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eb63c6d-8aec-40da-bba7-8e5f6d4454e1/sm/690915-1499403693197-rtp439_-_THUMB.jpg","duration":5770,"publication_date":"2017-07-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-102-g498g","changefreq":"weekly","video":[{"title":"S9:E4 - For the Win #102","description":"This whole show is just three kids on top of each other in a trenchcoat.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-102-g498g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c308add1-9264-42b5-882d-3666e94c242a/sm/2013912-1499369180657-ots_102ps_thumb.jpg","duration":721,"publication_date":"2017-07-07T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-3","changefreq":"weekly","video":[{"title":"2017:E25 - DMC3, #3 - Role Play","description":"Kyle and Miles continue their ascent to the top of Temen-ni-gru and along their way they discuss how best to role play a Batman villain...in the bedroom.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70bb5178-3a31-446e-9132-6f151873cf1e/sm/2013912-1499369672713-BC_DMCLOL_THUMB_03.png","duration":3190,"publication_date":"2017-07-07T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-5-f38hl9","changefreq":"weekly","video":[{"title":"S2:E5 - Episode 5 - Jasper Dies at the End","description":"David reminisces a tale from his younger days back when he was a Campbell camper. When his fellow camper Jasper gets lost on a trek, it's up to young Davey to rescue him. Can he get to him before he's lost forever?","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-5-f38hl9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a23d4d9-5a66-419d-9b2e-3e67a9058954/sm/2013912-1499377610609-CC2_Ep05_tn.jpg","duration":767,"publication_date":"2017-07-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-102-jg84to","changefreq":"weekly","video":[{"title":"S9:E102 - THAT ONE WHERE SOMEONE ALMOST DIED ON IT - #102","description":"We finally have a fun redemption challenge that isn't gross or painful and Andy still finds a way to screw it up royally. Wag Walking: https://app.adjust.com/11kl02","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-102-jg84to","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9974fc6f-627a-49d2-b853-a36da751deae/sm/2013912-1499369184519-ots_102_thumb.jpg","duration":3320,"publication_date":"2017-07-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-rtx-austin-food-tour","changefreq":"weekly","video":[{"title":"2017:E22 - RTX Austin Food Tour","description":"Whenever RTX rolls into town, Burnie always gets asked for his food recommendations, so Burnie, Ashley, Jon, Barbara, Ellie and Naomi decide to visit all 8 of their recommendations in one day...! Did they do permanent damage? Does Jon fly too close to the sun? Find out!","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-rtx-austin-food-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/603cf8c8-8f04-4928-85dd-786c9fb9f69d/sm/5-1499346182060-Vlog_Food_Tour_Thumbnail.png","duration":1228,"publication_date":"2017-07-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-438-post-show-g478gh","changefreq":"weekly","video":[{"title":"2017:E29 - This Might All Be Garbage - Podcast #438 Post Show","description":"Join Gus Sorola, Burnie Burns and Jon Risinger as they discuss, even more Battlegrounds, Millennials, The Unconventional Documentary and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-438-post-show-g478gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbe86299-ef6f-4a11-9370-b853d5029108/sm/671784-1499266884853-rtp438_-_ps_-_thumb_1024.jpg","duration":1397,"publication_date":"2017-07-05T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-438-gj94tu","changefreq":"weekly","video":[{"title":"2017:E438 - No Room for Butter - #438","description":"Join Gus Sorola, Burnie Burns and Jon Risinger as they discuss, Amusement Parks, Tesla's new Model 3, Player Unknown’s Battlegrounds and more on this week's RT Podcast! This episode originally aired on July 3, 2017, sponsored by Maltesers (http://bit.ly/2rxjbDQ), Casper (http://bit.ly/2bgC0nt), MeUndies (http://bit.ly/2aGm9yg)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-438-gj94tu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67dd6a78-a749-46ff-95f6-2ef729a8cdf1/sm/671784-1499186010902-rtp438_-_thumb_v1_1024.jpg","duration":6050,"publication_date":"2017-07-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-t-shirt-cannon-test","changefreq":"weekly","video":[{"title":"2017:E51 - T-Shirt Cannon Test","description":"Miles and Barbara take the new hot dog-shaped T-shirt Cannon out for a test drive before RTX.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-t-shirt-cannon-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c14f7832-44cd-427f-bc01-fc4dd8d73c42/sm/2013912-1498851753950-miles_hotdog.png","duration":185,"publication_date":"2017-07-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-284-ngidk","changefreq":"weekly","video":[{"title":"2017:E284 - Cock Block Cop","description":"A heartstruck teenage Chris tries to get some alone time with a girl by going to a park for a make-out sesh. However, there's a cop who is apparently set to block Chris at every attempt.\n\n\n\nAudio from Rooster Teeth Podcast #398\n\n\n\nDirected by Jordan CwierzAnimated by Tanya Fetzer","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-284-ngidk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a511a31-4483-435c-8960-1c49622895d4/sm/2013912-1498772074397-rtaa284tn.jpg","duration":79,"publication_date":"2017-07-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-14-98-w4thj","changefreq":"weekly","video":[{"title":"S15:E14 - Episode 14: True Colors","description":"The Reds and Blues begin to suspect their colorful counterparts of sinister designs.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-14-98-w4thj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78cc3187-a6ef-49f6-b896-cb5727e40c78/sm/2013912-1498874199227-RvB15Ep014Thumbnail.jpg","duration":812,"publication_date":"2017-07-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-437-post-show-g498yg","changefreq":"weekly","video":[{"title":"2017:E28 - Hold Your Children Close - Podcast #437 Post Show","description":"Join Becca Frasier, Brandon Farmahini, Jordan Cwierz, and Mariel Salcedo as they discuss morbid shows, plane issues, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-437-post-show-g498yg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/873dffa4-2fda-45b0-96b4-4c9fff1311a4/sm/2013912-1498849268151-rtp437_-_PS_-_THUMB.jpg","duration":1340,"publication_date":"2017-07-01T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-playerunknown-s-battlegrounds","changefreq":"weekly","video":[{"title":"2017:E5 - PlayerUnknown's Battlegrounds","description":"Blaine, Burnie, Gus, and Jon set out with the best intentions to have a fun battle. The betrayal and intrigue they encounter along the way were entirely unexpected. \n\n\n\n\n\n\n\n\n\nThe whole team is awful. Seriously bad... but one person does stand out as worse than the rest. Try and see if you can figure out who it is. Some of these matches were hosted on our custom server with community members. See if you find your name in the video!","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-playerunknown-s-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b956478-70f3-4304-bce4-349e60489614/sm/2013912-1498842396615-pubg_thumbnail.jpg","duration":4600,"publication_date":"2017-07-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-8-fhe8yh","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 8 - Boy Band","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-8-fhe8yh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a37c4a3-cf2e-448e-a78a-0c9ca74e4f1c/sm/2013912-1498874167394-RWBYChibiEp08Thumbnail.jpg","duration":188,"publication_date":"2017-07-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-437-hg83gi","changefreq":"weekly","video":[{"title":"2017:E437 - People Were Bored - #437","description":"Join Becca Frasier, Brandon Farmahini, Jordan Cwierz, and Mariel Salcedo as they discuss cease and desists, the great milk war, capital punishment, and more on this week's RT Podcast! This episode originally aired on June 29, 2017, sponsored by Audible (http://adbl.co/2bgBJkt)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-437-hg83gi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17169a66-f986-44ca-9738-3eeaf80d26ef/sm/2013912-1498849235539-rtp437_-_THUMB_v1.jpg","duration":3880,"publication_date":"2017-06-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-101-fj4iout","changefreq":"weekly","video":[{"title":"S9:E3 - For the Win #101","description":"YOU CAN'T HANDLE THE NEW ON THE SPOT GAME!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-101-fj4iout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39d723f7-ab41-4751-bc6c-882fdb9174d7/sm/2013912-1498767847659-ots_101ps_thumb.jpg","duration":685,"publication_date":"2017-06-30T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dm-c3-2-a-soul-of-steel","changefreq":"weekly","video":[{"title":"2017:E24 - DMC3, #2 - A Soul of Steel","description":"While Kyle and Miles run around on their demon massacre they talk about the oft forgotten brother to Dante and Vergil.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dm-c3-2-a-soul-of-steel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cfd5b31-dcba-4b29-9886-68e41a1c590e/sm/2013912-1498849109096-BC_DMCLOL_THUMB_02.png","duration":3472,"publication_date":"2017-06-30T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-36-g3o9tjkg","changefreq":"weekly","video":[{"title":"2017:E24 - Still Open #36","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Adam Kovic as they discuss a fan submitted question about a boyfriend who is still using tinder.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-36-g3o9tjkg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8ecd4f4-10a1-40f6-9b0c-c10e94ace4e5/sm/2013912-1498682509138-AO36_-_PS_-_Thumb_v1.jpg","duration":586,"publication_date":"2017-06-30T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-4-a73ojfh","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4 - Jermy Fartz","description":"After making a misguided bet with the Wood Scouts, everyone at Camp Campbell is forced to be nice for a whole day. If that wasn't difficult enough, a new camper has just shown up and he's... a mess.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-4-a73ojfh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8367496-9395-43b8-a6f0-01c7360ee821/sm/2013912-1498769963545-CC2_Ep04_tn.jpg","duration":733,"publication_date":"2017-06-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-giant-6-ft-balloon-shower","changefreq":"weekly","video":[{"title":"S1:E79 - Giant 6ft Balloon Shower","description":"Making Giant Balloon June was sweaty work. Time to wrap it all up with a gargantuan shower. Don't try this one at home either. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-giant-6-ft-balloon-shower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d46e9d8e-5d96-42ca-841e-5a971c8f20d2/sm/82-1498844021582-Screen_Shot_2017-06-30_at_12.23.01.jpg","duration":490,"publication_date":"2017-06-30T10:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-docs-unconventional-unconventional","changefreq":"weekly","video":[{"title":"U:E2 - Unconventional","description":"Gus Sorola has talked on panels at some of the world's biggest conventions, met thousands of fans, and even co-founded the massive pop culture event, RTX. Now Gus wants to experience the other side - the hundreds of small, obscure, and downright bizarre conventions happening every weekend around the country. Follow him on a journey behind the scenes of obscure fandom as he tries to fit in and find the common link that unites these communities.","player_loc":"https://roosterteeth.com/embed/rt-docs-unconventional-unconventional","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/beafab83-9e97-4e04-bc2a-5566a3dc6b44/sm/2013912-1498670849986-Unconventional_Thumbnail.jpg","duration":2820,"publication_date":"2017-06-30T05:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-101-fh84th","changefreq":"weekly","video":[{"title":"S9:E101 - WHAT IS A HIPPO CAMPUS? - #101","description":"Here's a fun game to play. Count the veins on Blaine's neck during Ass Swipe.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-101-fh84th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75c0ea68-d66c-4926-9770-bbf8fadc4aa2/sm/2013912-1498767757784-ots_101_thumb.jpg","duration":2985,"publication_date":"2017-06-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-36-sfijhg2","changefreq":"weekly","video":[{"title":"2017:E36 - Adam Kovic's Colonoscopy - #36","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Adam Kovic as they discuss the worst fights they've ever been in, dating deal breakers, and a fan submitted question! This episode is sponsored by Boll & Branch (http://bit.ly/2qasJo9) and Lyft (http://lft.to/2k09gCG)","player_loc":"https://roosterteeth.com/embed/always-open-2017-36-sfijhg2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9298ce8-6775-4a96-86d3-4631e477ea8c/sm/2013912-1498677360447-AO36_-_Thumb_v4.jpg","duration":3816,"publication_date":"2017-06-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-436-post-show-g4g47y","changefreq":"weekly","video":[{"title":"2017:E27 - Pick Up Chicks - Podcast #436 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, Miles Luna, and Sally Le Page as they discuss birds, Stonehenge, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-436-post-show-g4g47y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ab3947a-6ba6-4f1f-ad8e-8c49ef9625da/sm/2013912-1498591281100-rtp436_-_PS_-_THUMB.jpg","duration":1001,"publication_date":"2017-06-28T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-436-sfj39u4t","changefreq":"weekly","video":[{"title":"2017:E436 - Solid D - #436","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, Miles Luna, and special guest Sally Le Page as they discuss the Koopalings, luck and statistics, strange sexual situations, and more on this week's RT Podcast! This episode originally aired on June 26, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj), Dollar Shave Club (http://bit.ly/2rYSFna), World of Tanks (http://bit.ly/2rYMaRs)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-436-sfj39u4t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9db4ed4d-46aa-4eb9-b240-715c0f49bdc2/sm/2013912-1498591657880-rtp436_-_THUMB.jpg","duration":5749,"publication_date":"2017-06-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-bean-bag-brawl","changefreq":"weekly","video":[{"title":"2017:E50 - Bean Bag Brawl","description":"When Aaron and Chris find themselves without an office they incite a mini-brawl with Blaine and can only be stopped by their coworker's adorable daughter.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-bean-bag-brawl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5efbd0ca-b3ff-47a0-9c7a-ab93b9e5c47e/sm/2013912-1498509823828-Beanbag_Brawl.jpg","duration":114,"publication_date":"2017-06-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/barbara-vlogs-2017-hanging-out-in-sydney-and-new-zealand","changefreq":"weekly","video":[{"title":"2017:E3 - Hanging out in Sydney and New Zealand","description":"For this month's vlog, join Barbara as she travels to Sydney for RTX Sydney, followed by a group trip to New Zealand with 14 other Rooster Teeth and Funhaus folks. It's a magical journey, and it's only for you, FIRST members. Take it all in. TAKE IT.","player_loc":"https://roosterteeth.com/embed/barbara-vlogs-2017-hanging-out-in-sydney-and-new-zealand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ba25562-5e19-4cd3-9b3f-b0c696288052/sm/2013912-1498252585963-Thumbnail_June1.png","duration":577,"publication_date":"2017-06-26T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-283-sgiekjh","changefreq":"weekly","video":[{"title":"2017:E283 - Hands Free Peeing & Hulking Out","description":"Gus talks urinal etiquette and Blaine remembers one of his worst halloween costumes.\n\nAudio from Rooster Teeth Podcast #361\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gil Calceta, Gabriel Silva, & Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-283-sgiekjh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0202c18f-6688-4f82-b8d2-72c474cce54d/sm/2013912-1498252007277-rtaa283tn.jpg","duration":105,"publication_date":"2017-06-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-13-sdfiy45","changefreq":"weekly","video":[{"title":"S15:E13 - Episode 13: Blue vs. Red - Part 2","description":"A pair of Freelancers break the stalemate in the action-packed finale of the Desert Gulch Chronicles.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-13-sdfiy45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6670bcb7-d803-43bb-bfd2-cc31f644e1ac/sm/2013912-1498243546693-RvB15Ep013Thumbnail.jpg","duration":609,"publication_date":"2017-06-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-435-post-show-gn498gy","changefreq":"weekly","video":[{"title":"2017:E26 - Scared of Dying - Podcast #435 Post Show","description":"Join Brandon Farmahini, Jessica Vasami, Tyler Coe, and Jon Risinger as they discuss phobias, the worst ways to die, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-435-post-show-gn498gy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e3cf5de-26b0-4382-a0ad-f4fc3e74355a/sm/2013912-1498245749561-rtp435_-_PS_-_THUMB.jpg","duration":1347,"publication_date":"2017-06-24T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-32","changefreq":"weekly","video":[{"title":"2017:E32 - Boys Sword Fighting - #32","description":"Join Kerry, Gray, Miles, Cole, and Yssa as they discuss upcoming summer anime, the latest episodes of Attack on Titan and Shirobako, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58443cb0-986c-4b00-8b0c-23e79f909277/sm/2013912-1498245923973-fanservice_032.png","duration":5498,"publication_date":"2017-06-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-7-ajif73h","changefreq":"weekly","video":[{"title":"S2:E7 - Episode 7 - Must Be Nice","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-7-ajif73h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab6da653-966d-43a5-bd34-bbe216d52ca5/sm/2013912-1498243505479-RWBYChibiEp07Thumbnail.jpg","duration":274,"publication_date":"2017-06-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-435-8-d7gkjh","changefreq":"weekly","video":[{"title":"2017:E435 - Solid but Not Hard - #435","description":"Join Gus Sorola, Brandon Farmahini, Jessica Vasami, Tyler Coe, Jon Risinger and special guest Adam Kovic as they discuss teleporting vs flying, intimate photos, ridesharing, and more on this week's RT Podcast! This episode originally aired on June 22, 2017.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-435-8-d7gkjh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af765c8a-e219-4d7c-9a88-71fb0490d270/sm/2013912-1498233321452-rtp435_-_THUMB.jpg","duration":3969,"publication_date":"2017-06-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-100-fh4oiy","changefreq":"weekly","video":[{"title":"S9:E2 - For the Win #100","description":"There is a lot of yelling and a lot of singing and a lot of questionable suggestions for online dating.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-100-fh4oiy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8123e26-b092-4f87-8521-41e5b24981cd/sm/2013912-1498156894932-ots_100ps_thumb.jpg","duration":611,"publication_date":"2017-06-23T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-dmc3-part-1","changefreq":"weekly","video":[{"title":"2017:E23 - DMC3, #1 - A Crazy Party","description":"Kyle and Miles have been invited to one crazy party filled with half demons, full demons, a sibling rivalry, a sky whale, a crazy lady on a motorcycle, and a world destroying tower. Not to mention one guy with more quips, puns and one liners than all of Arnold Schwarzenegger's movies combined. If things sound crazy don't worry, just sit down, turn the volume up and let's rock!","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-dmc3-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f663ae8-a591-41aa-868e-217d0443a1bb/sm/2013912-1498251651860-BC_DMCLOL_THUMB_01.png","duration":3548,"publication_date":"2017-06-23T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-35-sfnisyeg","changefreq":"weekly","video":[{"title":"2017:E23 - Still Open #35","description":"Join Barbara Dunkelman, Max Kruemcke, Mariel Salcedo and special guest Griffon Ramsey, as they discuss religious views.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-35-sfnisyeg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4511610-91eb-4edc-b340-0469fe91a5b4/sm/2013912-1498065627351-AO35_-_PS_-_Thumb_v1.jpg","duration":1714,"publication_date":"2017-06-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-geoff-ramsey-the-cake","changefreq":"weekly","video":[{"title":"2017:E49 - Geoff Ramsey: The Cake","description":"he Store Team requested Max utilize his art skills to decorate a cake for Geoff's birthday and the launch of his new shirts, but they may have gotten more than they bargained for with the final result.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-geoff-ramsey-the-cake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caff9b7c-48dc-4c6e-92a9-f8944b9f40a3/sm/2013912-1498167400914-geoffcake.png","duration":192,"publication_date":"2017-06-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-3-f8w3hl","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3 - Quest to Sleepy Peak Peak","description":"Nerris and Harrison pursue a date with destiny atop an active volcano. Which magic kid will save the day and vanquish the dark forces?","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-3-f8w3hl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b95b976-98ee-4fdf-9a4c-d27c4d6f368e/sm/2013912-1498156989636-CC2_Ep03_tn.jpg","duration":720,"publication_date":"2017-06-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-100-j984tj","changefreq":"weekly","video":[{"title":"S9:E100 - EPISODE 100 - #100","description":"We made it to one hundred episodes. Does this mean we can get syndicated, sell the show to TBS and just wait for the royalty checks to come in from now on? I'm getting that Seinfeld money!!\n\n\n\nThanks to Dollar Shave Club for sponsoring this episode: http://dollarshaveclub.com/spotGo to [http://console.worldoftanks.com/promos/TANKSPOT] and grab your free tank, garage slot and 3 Days Premium game time while this lasts. The number of new player registration codes is limited.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-100-j984tj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c3a6bfc-937f-4fa2-90ec-ceeaadd0f151/sm/2013912-1498154951477-ots_100_thumb.jpg","duration":2946,"publication_date":"2017-06-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-35-g39gjdg","changefreq":"weekly","video":[{"title":"2017:E35 - Expert Catfishing - #35","description":"Join Barbara Dunkelman, Max Kruemcke, Mariel Salcedo and special guest Griffon Ramsey as they discuss a confessional, their \"types\" and a fan submitted question about an absentee boyfriend and being vulnerable. This episode is sponsored by MeUndies (http://bit.ly/2oqytsJhttp://bit.ly/2oqytsJ)","player_loc":"https://roosterteeth.com/embed/always-open-2017-35-g39gjdg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b4f864e-3ff9-4e88-bd9f-845ed034146a/sm/2013912-1498065635952-AO35_-_Thumb_v2.jpg","duration":3009,"publication_date":"2017-06-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-434-post-show-w9fi34jg","changefreq":"weekly","video":[{"title":"2017:E25 - No Man’s Land - Podcast #434 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss North Korea, the missing Twitch streamer, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-434-post-show-w9fi34jg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e0401af-2149-4225-8fd9-4a74a7fa6960/sm/2013912-1497974375859-rtp434_-_PS_-_THUMB.jpg","duration":1089,"publication_date":"2017-06-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-434-dh58hg","changefreq":"weekly","video":[{"title":"2017:E434 - Anatomy of the Butt - #434","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss medical emergencies on flights, how to shower, food delivery, and more on this week's RT Podcast! This episode originally aired on June 19, 2017, sponsored by Maltesers (http://bit.ly/2rxjbDQ), Wag! (http://bit.ly/2sBlqdk), World of Tanks (http://bit.ly/2rzydsV)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-434-dh58hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/100e6621-53d5-4707-ae7f-258effb91736/sm/2013912-1497972986332-rtp434_-_THUMB.jpg","duration":5520,"publication_date":"2017-06-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-cleaning-frenzy","changefreq":"weekly","video":[{"title":"2017:E48 - Cleaning Frenzy","description":"Marcus, Max, and the art team take a walk down memory lane and dispose of some old beloved art department props.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-cleaning-frenzy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e65a6f4c-6cf8-4bef-acbb-04a8aec522b2/sm/2013912-1497889468584-art_thumb.png","duration":162,"publication_date":"2017-06-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-282-ajifjeh","changefreq":"weekly","video":[{"title":"2017:E282 - Gus' Turbulent Urination","description":"Gus has to pee while on a flight, but has a rough time when the plane experiences some pretty intense turbulence.\n\n\n\n\n\n\n\nAudio from Rooster Teeth Podcast #401\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gil Calceta & Johnathan Floyd","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-282-ajifjeh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24c543dd-fae4-4030-a4d5-68a96ee10707/sm/2013912-1497545032283-rtaa282tn.jpg","duration":104,"publication_date":"2017-06-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-12-fshfy44","changefreq":"weekly","video":[{"title":"S15:E12 - Episode 12: Blue vs. Red","description":"In a box canyon in the middle of nowhere, two teams are locked in stalemate over a game of capture the flag. This is Blue vs Red, the Desert Gulch Chronicles.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-12-fshfy44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e218de7-ff5b-45aa-942a-5c1199eabcb8/sm/2013912-1497544938109-RvB15Ep012Thumbnail.jpg","duration":531,"publication_date":"2017-06-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-31","changefreq":"weekly","video":[{"title":"2017:E31 - Hard Boys For Life - #31","description":"Join Gray, Cole, Yssa, and Austin as they discuss My Hero Academia, the latest episodes of Attack on Titan and Shirobako, and more this week on Fan Service! Submit your questions for the Community Service segment at http://bit.ly/2nJ61Ba.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7587512d-4c9e-4bd0-95b9-8fd26807b8cd/sm/2013912-1497644997534-fanservice_031.png","duration":5002,"publication_date":"2017-06-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-6-sfi93jg","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 6 - Super Besties","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-6-sfi93jg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d006af10-d05a-4ce6-a803-1538a2fe367d/sm/2013912-1497544651190-RWBYChibiEp06Thumbnail.jpg","duration":240,"publication_date":"2017-06-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-for-the-win-99-48-gry5","changefreq":"weekly","video":[{"title":"S9:E1 - For the Win #99","description":"Barbara drinks the blood of the young so that she can sing Forever Young better.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-for-the-win-99-48-gry5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d21d62a-b947-4986-8d31-d610a40932b1/sm/2013912-1497552145949-ots_99ps_thumb.jpg","duration":649,"publication_date":"2017-06-16T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-one-off-battlesloths-2025","changefreq":"weekly","video":[{"title":"2017:E22 - One Off: Battlesloths 2025","description":"Kyle and Miles are still deciding on a new game series so why not play a fun one off while they make a decision? Gray Haddock and Josh Ornelas join our intrepid duo for a fun and chaotic game of Battlesloths 2025: The Great Pizza Wars. Shout out to developer Invisible Collective for making this game! The publisher is pretty cool too. http://bit.ly/2rzHhAc","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-one-off-battlesloths-2025","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f91b6683-3d1b-499a-8c0b-fa9d3e6e5c2a/sm/2013912-1497648949732-BC_BS_THUMB.png","duration":3848,"publication_date":"2017-06-16T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-34-dboirg4","changefreq":"weekly","video":[{"title":"2017:E22 - Still Open #34","description":"Join Barbara Dunkelman, Mica Burton, and special guests Arryn Zech and Samantha Ireland as they discuss a fan submitted sexpertise question.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-34-dboirg4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0880d682-a012-449b-a523-8fae2ef9d5e9/sm/2013912-1497628113828-AO34_-_PS_-_Thumb_v1.jpg","duration":690,"publication_date":"2017-06-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-2-48-hak8f","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2 - Anti-Social Network","description":"Desperate to get some alone time with his computer, Neil makes a chatbot to distract the other campers. Things seems to be going smoothly until Nikki gets a little too attached...","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-2-48-hak8f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/666f0c20-802c-49d9-b163-bf478dd6d6cb/sm/2013912-1497541543202-CC2_Ep02_tn.jpg","duration":812,"publication_date":"2017-06-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-9-99-f8yt4j","changefreq":"weekly","video":[{"title":"S9:E99 - A HORDE OF ORGASMS - #99","description":"Joel leaves everyone satisfied, Cole likes to get handcuffed, Jeremy is a snuggler & Barbara gets the weiner. Welcome to a new season of On The Spot. Let's just see what happens this season, shall we?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-9-99-f8yt4j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20067dc4-d54c-4027-9156-19c92a3b5413/sm/2013912-1497551077994-ots_99_thumb.jpg","duration":3477,"publication_date":"2017-06-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-34-dgorug","changefreq":"weekly","video":[{"title":"2017:E34 - Lipstick on My Two Lips - #34","description":"Join Barbara Dunkelman, Mica Burton, and special guests Arryn Zech and Samantha Ireland as they discuss food poisoning, sexy videos, and a fan-submitted question about cheating!","player_loc":"https://roosterteeth.com/embed/always-open-2017-34-dgorug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99483b7c-a04d-4b61-943f-41ef631b25fe/sm/2013912-1497540478678-AO34_-_Thumb_v5.jpg","duration":3026,"publication_date":"2017-06-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-5-8-bwpw7","changefreq":"weekly","video":[{"title":"2017:E5 - The Willemses - #5","description":"On this month's Relationship Goals, Griffon and Geoff sit down with Elyse and James Willems from Funhaus to talk marriage, working together, and being co-dependent.","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-5-8-bwpw7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5023104-6743-4573-a743-1b2dea7cb0a8/sm/2013912-1497464117902-RG05_-_THUMB.jpg","duration":4563,"publication_date":"2017-06-15T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-433-post-show-38-hjfs","changefreq":"weekly","video":[{"title":"2017:E24 - Supply and Demand - Podcast #433 Post Show","description":"Join Brandon Farmahini, Blaine Gibson, Chris Demarais, and Joel Heyman as they discuss bitcoin, Guardians of the Galaxy 2 and the MCU, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-433-post-show-38-hjfs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de9ab556-eabe-43c2-b029-7898a2eaa4ed/sm/2013912-1497454092470-rtp433_-_PS_-_THUMB.jpg","duration":1267,"publication_date":"2017-06-14T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-bear-dance","changefreq":"weekly","video":[{"title":"2017:E47 - Bear Dance","description":"Ellie tries not to overheat while dressed as a bear during a particularly hot day filming Million Dollars, But...","player_loc":"https://roosterteeth.com/embed/rt-life-2017-bear-dance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13cc20a1-7155-4c1d-a9a2-2021e99e3887/sm/2013912-1497375046372-EllieBear_01.png","duration":90,"publication_date":"2017-06-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-433-sgh8hj","changefreq":"weekly","video":[{"title":"2017:E433 - Sticks and Flowers - #433","description":"Join Brandon Farmahini, Blaine Gibson, Chris Demarais, and Joel Heyman as they discuss drinking excessively, painful procedures, pets, and more on this week's RT Podcast! This episode originally aired on June 12, 2017, sponsored by MeUndies (http://bit.ly/2aGm9yg), MVMT (http://bit.ly/2n2cNFN), NatureBox (http://bit.ly/2n25cac)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-433-sgh8hj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bddf8187-0f1a-4e20-9d9e-c2550ddb5c39/sm/2013912-1497366572989-rtp433_-_THUMB.jpg","duration":5628,"publication_date":"2017-06-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-battlefront-ii-vs-ah-and-the-new-xbox-at-e3","changefreq":"weekly","video":[{"title":"2017:E21 - Battlefront II vs AH and The New Xbox at E3","description":"Burnie travels to E3 and gets his colleagues reactions to the possible new Xbox name, and tests out the new Battlefront game. For a brief and glorious moment, he actually held the top spot. Thanks to EA for sponsoring this video!","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-battlefront-ii-vs-ah-and-the-new-xbox-at-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ef8bd12-2c47-4506-827d-7e0d38a8b281/sm/2013912-1497299343489-BurnieBattlefront_02_THUMB.png","duration":630,"publication_date":"2017-06-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-281-dhfiwg","changefreq":"weekly","video":[{"title":"2017:E281 - Ding Dong Ditchers","description":"Teen Blaine and his teen friends decide to do a very teen activity and ding dong ditch a girl they like. But it's all fun and games until they get tracked down.\n\n\n\n\n\n\n\nAudio from Rooster Teeth Podcast #398\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-281-dhfiwg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c91e857-c121-4323-9fba-e31f104657de/sm/2013912-1497044236956-rtaa281tn.jpg","duration":83,"publication_date":"2017-06-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-rvb","changefreq":"weekly","video":[{"title":"2017:E5 - Drunk Red vs. Blue: The Lost Episode","description":"The original Blood Gulch Gang came together to get hammered and record a classic episode of RvB. It went so poorly that the episode was cut from Season 14, but thanks to one loud-mouthed millennial and the support of fans around the world, it can finally see the light of day.","player_loc":"https://roosterteeth.com/embed/the-lab-2017-rvb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec989c4-d3d7-4db2-93bb-a33f559c2ed1/sm/2013912-1496955466928-Drunk_RvB_Thumbnail.jpg","duration":549,"publication_date":"2017-06-12T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-episode-11-387-ghd","changefreq":"weekly","video":[{"title":"S15:E11 - Episode 11: Belly of the Beast","description":"Blocked by the Reds and Blues, Dylan decides to try and seek answers on her own. Sarge finally gets a shot at stardom.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-episode-11-387-ghd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/718b1699-d5cc-46cf-9199-684e445aa969/sm/2013912-1497027465063-RvB15Ep011Thumbnail.jpg","duration":564,"publication_date":"2017-06-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-bushwhackers","changefreq":"weekly","video":[{"title":"2017:E38 - GTA V - Bushwhackers","description":"The boys got lost in GTAV, and now they're deep in the weeds. Seems like their only way out is to blindly swing machetes at each other.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-bushwhackers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae68d889-d6b0-4792-adc6-fd78dc668727/sm/3014926-1506352773781-TTD_BUSHWHACKERS.jpg","duration":678,"publication_date":"2017-09-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-9-the-guddest-one-yet","changefreq":"weekly","video":[{"title":"2017:E333 - Rainbow Six Siege: Git Gud 9 - The Guddest One Yet ","description":"After throwing themselves at Rainbow 6: Siege multiplayer for this long, our favorite idiots may finally be \"gitting gud.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-9-the-guddest-one-yet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc036895-ce4a-4159-86f4-404e4e0bf150/sm/3014926-1506446409987-LP_GitGud_Ep9_THUMB2.png","duration":2963,"publication_date":"2017-09-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017","changefreq":"weekly","video":[{"title":"2017:E17 - Between the Games - Flinchless Bouncy-Doo","description":"After Flinchless Kickie-Doo's stonking success, Gavin makes a new game using the office's pile of super bouncy balls, Flinchless Bouncy-Doo.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1136c02b-dd2d-4eca-bf22-f892d039ba8f/sm/3014926-1506020781834-BTG_FLINCHLESS_BOUNCY_DO.jpg","duration":571,"publication_date":"2017-09-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-fist-rumble","changefreq":"weekly","video":[{"title":"2017:E332 - PlayerUnknown's Battlegrounds: Fist Rumble","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get your first month free! Achievement Hunter bands together for another explosive PUBG run in search of that illusive chicken dinner!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-fist-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a502b62a-ab24-421a-a13b-dbd0b8d95d51/sm/3014926-1506373287940-pubg_stream_edit_thumb_092617.jpg","duration":2483,"publication_date":"2017-09-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-2-can-they-bear-it-part-2","changefreq":"weekly","video":[{"title":"2017:E331 - Let's Watch - Crash 2 - Can They Bear It? (Part 2) ","description":"Jeremy and Michael are back in Crash Bandicoot 2 and continue to gather crystals for Dr. Neo Cortex. Let's get back to Snow Biz.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-2-can-they-bear-it-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee62a87d-9a3d-470f-9ef7-97ca02b5390c/sm/3014926-1506103467089-LW_Crash2_PART2.png","duration":2515,"publication_date":"2017-09-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-cloudberry-gavin-loves-willy-part-23","changefreq":"weekly","video":[{"title":"2017:E330 - Cloudberry - Gavin Loves Willy (Part 23) ","description":"The Berry Bros. return to even more outlandish levels. How much progress could they possibly make?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-cloudberry-gavin-loves-willy-part-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04eace7a-51f0-4d51-879d-1ac820333a05/sm/3014926-1506100966344-LP_Cloudberry23.png","duration":3645,"publication_date":"2017-09-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-burning-the-balls-ahwu-for-september-25-th-2017-388","changefreq":"weekly","video":[{"title":"2017:E39 - Burning the Balls - AHWU for September 25th, 2017 (#388)","description":"Special thanks to Pro Flowers for sponsoring today's episode. You can get 20% off summer roses or any other bouquet of $29 or more by going to http://ProFlowers.com, and using code “JackandGeoff” at checkout.\n\nGeoff got some Tiger Balm and glooped it on his gonads. Now his balls are burning, his testes are toasting, and his sack is scorching.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-burning-the-balls-ahwu-for-september-25-th-2017-388","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a51cd1d1-4a98-4372-8266-44bb5425f7cf/sm/3014926-1506105322867-ahuw_thumb.jpg","duration":534,"publication_date":"2017-09-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-95-jeorhv4","changefreq":"weekly","video":[{"title":"2017:E36 - Still Hungry - Last Call #95","description":"The AH Crew sit down to talk about food, voice differences, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-95-jeorhv4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c68d451-5303-419c-b010-127aaa099942/sm/3014926-1506118814541-OFF95_-_PS_-_THUMB.jpg","duration":866,"publication_date":"2017-09-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-smuggler-s-run","changefreq":"weekly","video":[{"title":"2017:E328 - GTA V - Smuggler's Run","description":"Bombers and gliders and planes, oh my! Achievement Hunter tries out the new vehicles from the Smuggler's Run DLC update to GTA Online.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-smuggler-s-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b293bcb-5015-403d-981d-199b6c81160f/sm/3014926-1505936019040-Thumb_D.jpg","duration":2400,"publication_date":"2017-09-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-95-45-h46m","changefreq":"weekly","video":[{"title":"2017:E95 - Bull Pattillo’s Creek - Off Topic #95","description":"The AH Crew sit down to talk about the Destiny 2 raid aftermath, androids and cyborgs, annoying each other, and more on this week's Off Topic!\r\n\r\nThis episode originally aired September 22, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-95-45-h46m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e5e877c-2129-4e73-952b-c773ab45024f/sm/3014926-1506118718346-OFF95_-_THUMB.jpg","duration":7969,"publication_date":"2017-09-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-moving-house-4","changefreq":"weekly","video":[{"title":"2017:E327 - 7 Days to Die: Moving House (#4)","description":"It's a new day in the Alpha 16 wasteland and our heroes are in search of a new forever home. \n\nIn this episode: Jack goes house hunting, Ryan and Jeremy find a factory, Geoff gets homesick, and Michael attempts to save a screaming Gavin.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-moving-house-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ab3b780-3302-42c2-aabb-a3076cfc8d9d/sm/3014926-1505929699878-Webp.net-resizeimage_52.png","duration":3488,"publication_date":"2017-09-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-witch-it","changefreq":"weekly","video":[{"title":"2017:E324 - Witch It!","description":"The witches are out, and they're turning into hay bales and cheese wheels in Witch It, the game that's totally not just magical Prop Hunt!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-witch-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7430f8d0-2c2a-4d0a-b093-ca5afaeaa1a0/sm/3014926-1505764024728-LP_WITCHIT_W_LANNAN.jpg","duration":1393,"publication_date":"2017-09-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-9","changefreq":"weekly","video":[{"title":"2017:E38 - Let's Watch - Crash 2 - Enter the Warp Room (Part 1)","description":"We return in Crash 2 Bandicoot 2: Cortex Strikes Back. This time, Jeremy, along with Michael must team up with Dr. Neo Cortex to save the world.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33a67e80-e68f-454f-9703-e716673d07b1/sm/3014926-1505938894346-Webp.net-resizeimage_56.png","duration":2783,"publication_date":"2017-09-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-unboxings","changefreq":"weekly","video":[{"title":"2017:E39 - Best of Achievement Hunter - Unboxings","description":"Over the past year, Achievement Hunter has received many gifts from it's generous fanbase. Some gifts have been crude, some have been edible, some have been weapons, some have been weaponized, and all were appreciated. Now let's see how Achievement Hunter used their gifts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-unboxings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2e83ea9-5d73-4b3d-beb8-12ef674e91af/sm/3014926-1505940388637-Best_of_AH_Unboxings_BAA_thumbnail_1.jpg","duration":585,"publication_date":"2017-09-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-34-post-show","changefreq":"weekly","video":[{"title":"2017:E14 - #34 - Post Show","description":"Our Heroes talk about the end of Volume 1 while taking a looking at a community submitted Animated Adventure that highlights one of Bo Jingles defining moments.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-34-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/352d7bf9-f15a-44cc-8efe-c40c705711a7/sm/3014926-1505938729023-HHs3_ep34_PS_Thumb.jpg","duration":845,"publication_date":"2017-09-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-278-sky-factory-part-20","changefreq":"weekly","video":[{"title":"2017:E326 - Minecraft - Episode 278 - Sky Factory Part 20","description":"As Jeremy delves deeper into Sky Factory's blood magic, can Ryan still defend the claim that he's the most evil boy in Minecraft?\n\nOn today's episode, Simple Geoff expands the farm, Jack does some complex organization, Gavin succumbs to the Nether, Jeremy takes a chance on cubes, Michael prepares for Alfheim, and Ryan claims to still be the king of evil.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-278-sky-factory-part-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dde9147-5417-4f40-b58e-6064f52b388c/sm/1601067-1505939541478-mcsf20.jpg","duration":3805,"publication_date":"2017-09-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-crossy-road","changefreq":"weekly","video":[{"title":"2017:E37 - Halo 5 - Crossy Road","description":"Why did the Spartans cross the road? To film a video for the AH channel. The gang tries to avoid getting run over in Halo 5's Crossy Road.\n\nMap: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=AngelitoCO#ugc_halo-5-guardians_xbox-one_mapvariant_AngelitoCO_ce913bb1-e127-446a-8886-8dd73d46c884\n\n\n\n\n\nGame Type: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=AngelitoCO#ugc_halo-5-guardians_xbox-one_gamevariant_AngelitoCO_1a28260c-2d6b-4a66-8c59-a24c5e26ff83","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-crossy-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff104c72-7c07-48d9-8dbf-5d8d0d6590d0/sm/3014926-1505774223032-TTD_Halo_CrossyRoad.png","duration":782,"publication_date":"2017-09-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-dream-a-little-dream-2","changefreq":"weekly","video":[{"title":"2017:E34 - Dream a Little Dream - #34","description":"The party embarks on their mission to stop the evil Rajah of Jackal Heart once and for all, but learn an awful truth in the conclusion of the first volume of Heroes & Halfwits.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-dream-a-little-dream-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd8f24f9-b032-4edd-85db-c423ffff8186/sm/3014926-1505878136131-Webp.net-resizeimage.jpg","duration":13570,"publication_date":"2017-09-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-gorn-2-part-2","changefreq":"weekly","video":[{"title":"2017:E14 - Gorn 2 Part 2","description":"It's Jeremy's turn to step into the arena of Gorn 2 VR. Watch as he slices, dices, and fist fights his opponents into a fine, bloody paste.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-gorn-2-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3de930fd-fcda-4cac-ae94-921ed7041fea/sm/3014926-1505513224016-VR_GORN_THUMB_PART_2.jpg","duration":1292,"publication_date":"2017-09-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-campaign-edz","changefreq":"weekly","video":[{"title":"2017:E325 - Destiny 2 Campaign: EDZ","description":"The Guardian boys suit up and head into the European Dead Zone to check out some of Destiny 2's campaign missions and public events.\n\nLP Family Reunion brought to you by the RT Store: http://bit.ly/LP-LPFR","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-campaign-edz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4141e0b6-9b31-4c66-a2ed-d4d262a1b32e/sm/3014926-1505839182890-LP_Destiny2_Campaign_PART1.png","duration":3932,"publication_date":"2017-09-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-leviathan-raid-part-1-first-attempt","changefreq":"weekly","video":[{"title":"2017:E323 - Destiny 2: Leviathan Raid - The First Attempt","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHLIVESTREAM Achievement Hunter takes a shot at Destiny 2's Leviathan Raid in search of adventure, glory, and loot!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-leviathan-raid-part-1-first-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5672fa8-bffb-4ad2-a187-7460fdacdea0/sm/3014926-1505763156319-d2_raid_thumbnail_part1.jpg","duration":2741,"publication_date":"2017-09-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-human-fall-flat-part-6-finale","changefreq":"weekly","video":[{"title":"2017:E17 - Human Fall Flat Part 6 (Finale)","description":"The Play Pals prepared a special treat for the grand finale of Human Fall Flat. It really helped them feel fully immersed in the game.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-human-fall-flat-part-6-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72d1ef68-9f88-4e9c-834b-69b258133bf9/sm/3014926-1505420565702-PP_HumanFallFlat_Part6_2.jpg","duration":3277,"publication_date":"2017-09-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-nidhogg-2","changefreq":"weekly","video":[{"title":"2017:E322 - Nidhogg 2","description":"It's a fight to the death as the AH crew kills each other in Nidhogg 2. But only one can claim victory and feed themself to the beast.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-nidhogg-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/309dbf4b-ff12-4891-9d37-bf82dc8f5b0e/sm/3014926-1505496871252-LP_Nidhogg2.png","duration":1254,"publication_date":"2017-09-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017","changefreq":"weekly","video":[{"title":"2017:E38 - It's So Veiny! - AHWU for September 18th, 2017 (#387)","description":"Special thanks to Beachbody on Demand for sponsoring today's epsiode. You can text AHWU to 303030 to get your free trial started for their awesome on demand service.\n\nLet's Play Family Reunion brought to you by the RT store: http://bit.ly/AH-LPFR\n\n\n\n\n\n\n\nAchievement Hunter got another big, floppy dildy-boy in the mail and decided to show it what happens when fake weens wander into the office.","player_loc":"https://roosterteeth.com/embed/ahwu-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9250ad96-4cdd-4efb-b995-8a4d9c11bfa1/sm/3014926-1505495981814-2.jpg","duration":912,"publication_date":"2017-09-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-94-oiebtnt","changefreq":"weekly","video":[{"title":"2017:E35 - The Rimmy Brim - Last Call #94","description":"The AH Crew sit down to talk about old video game commercials, organ donation, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-94-oiebtnt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9189b3dc-d037-4ca0-84d6-5b0d546f9055/sm/3014926-1505513636810-OFF94_-_PS_-_THUMB.jpg","duration":1102,"publication_date":"2017-09-17T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-geoff-bag","changefreq":"weekly","video":[{"title":"2017:E321 - GTA V - Geoff Bag","description":"It's Geoff Bag, a mushy mix of Geoff-curated GTAV games! Cars face off against RPGs for some funny moments as we play Last Team Standing.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-geoff-bag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4e8e9d8-09c9-47ce-88c8-ef9261100c56/sm/3014926-1505337134664-GeoffBag_Thumb2.jpg","duration":1790,"publication_date":"2017-09-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-94-heoibh","changefreq":"weekly","video":[{"title":"2017:E94 - Achievement Hunter Deadpool - Off Topic #94","description":"The AH Crew sit down to talk about Destiny, TV shows and movies, who will live the longest, and more on this week's Off Topic!\n\nThis episode originally aired September 15, 2017 and is sponsored by Beachbody on Demand (http://bit.ly/2wekldC) and Bombas (http://bit.ly/2h8kHbQ)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-94-heoibh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3f66c18-27fe-4b6d-9a8c-d3be79087e89/sm/3014926-1505514475635-OFF94_-_THUMB.jpg","duration":7809,"publication_date":"2017-09-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-infinite-minigolf-return-of-the-giant-home-2","changefreq":"weekly","video":[{"title":"2017:E319 - Infinite Minigolf - Return of the Giant Home (#2)","description":"The gang share a lot of hilarious moments in the second part of the Infinite Minigolf series.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-infinite-minigolf-return-of-the-giant-home-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2148c9ab-8ff1-42ad-8b74-ea924605a923/sm/3014926-1505319840430-InfMiniGolf_Part2_Thumb.jpg","duration":1972,"publication_date":"2017-09-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-destiny-2-raid-ready","changefreq":"weekly","video":[{"title":"2017:E37 - Destiny 2 - Raid Bootcamp","description":"The Leviathan Raid is out in Destiny 2, but you're still not raid ready. Come on down to boot camp and boost your power level fast.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-destiny-2-raid-ready","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da9935e8-a6b8-46e5-ba56-2de07f2cd980/sm/3014926-1505326706190-raid_bootcamp.jpg","duration":153,"publication_date":"2017-09-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-the-animal-lover","changefreq":"weekly","video":[{"title":"2017:E13 - The Animal Lover","description":"Jeremy wants to know how bird people get busy. Zelda just has a way with raising these kind of questions!\n\nAnimation audio from: https://www.youtube.com/watch?v=DhO7giUDb7g\n\n\n\n\n\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-the-animal-lover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c1c5ec3-4454-4853-8f44-c611e4d14952/sm/3014926-1505339352887-ah_anim_thumb.jpg","duration":147,"publication_date":"2017-09-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-277-sky-factory-part-19","changefreq":"weekly","video":[{"title":"2017:E320 - Minecraft - Episode 277 - Sky Factory Part 19","description":"Geoff fears for his trees as the gang works to make the Munchdew. Will turmoil hit the Sky Factory, or is this Munchadew about nothing?\n\nOn today's episode, Geoff does some simple farming, Jack does some more complex farming, Dark Magician Jeremy still craves blood, ham-faced Michael learns about magic plants and makes a Munchdew, Gavin compresses cobblestone, and Ryan keeps losing jetpacks.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-277-sky-factory-part-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/669f9798-ee5c-423d-8857-7b4e68230487/sm/3014926-1505330728904-SkyFac19_Thumb.jpg","duration":3821,"publication_date":"2017-09-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-overwatch-highest-noon","changefreq":"weekly","video":[{"title":"2017:E36 - Overwatch - Highest Noon","description":"It's 12 o'clock! Perfect time for Achievement Hunter to ready their trusty revolvers, sexy cowboy outfits, and let loose in McCree's highest noon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-overwatch-highest-noon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2759d055-cf32-4df3-8c5d-0276d560e2b9/sm/3014926-1505156945327-TTD_HighestNoon.png","duration":580,"publication_date":"2017-09-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-8-git-blood-orchid-gud","changefreq":"weekly","video":[{"title":"2017:E317 - Rainbow Six Siege: Git Gud 8 - Git Blood Orchid Gud","description":"There are a lot of funny moments in the latest Git Gud, featuring new operators from the Operation Blood Orchid DLC.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-8-git-blood-orchid-gud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76e3ffbc-d443-4d61-a9ae-46ff2e898625/sm/3014926-1505230180800-LP_R6Seige_GitGud8_THUMB_2_3.jpg","duration":2304,"publication_date":"2017-09-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-family-reunion-2017","changefreq":"weekly","video":[{"title":"2017:E318 - Let's Play Family Reunion 2017!","description":"September 24-25, 2017, the Let's Play family is coming together for a family reunion full of video games, podcasts, and shenanigans. Join in on the fun by watching along live with Rooster Teeth FIRST. Sign up today by going to http://achievementhunter.com/first","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-family-reunion-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80a84bce-9ee4-4c9e-b5a7-87423f2ce7df/sm/1104396-1505245855627-FamilyReunion_Thumb_v002.png","duration":354,"publication_date":"2017-09-12T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-2","changefreq":"weekly","video":[{"title":"2017:E16 - Between the Games - Super Dump Bucket","description":"Geoff bought 2,000 super balls for the office. With a grappling hook and a bucket, the weather inside is starting to look pretty balls.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02dfd0bb-c92c-45b4-8924-2550f430db75/sm/3014926-1505146571803-DUMP_BUCKET_1.jpg","duration":579,"publication_date":"2017-09-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-crucible-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E316 - Destiny 2: Crucible - AH Live Stream","description":"The gang decides to take a shot at Destiny 2's Crucible for an all-out multiplayer brawl full of super abilities, heavy weapons, and loot!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-crucible-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b566c615-0609-4de1-8031-260fb176c1e5/sm/3014926-1505164442842-thumbnail_template_-_Copy.jpg","duration":2313,"publication_date":"2017-09-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-cockroach-simulator","changefreq":"weekly","video":[{"title":"2017:E16 - Cockroach Simulator","description":"Michael's the roach killer, and Gavin's the roach in this infestation game: Cockroach Simulator. ","player_loc":"https://roosterteeth.com/embed/play-pals-2017-cockroach-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3eb19402-fdc6-4662-8c49-ceb47792a345/sm/2013912-1504923616283-PP_CockroachSimulator_THUMB1.png","duration":1710,"publication_date":"2017-09-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-family-feud-whitmore-is-crazy-part5","changefreq":"weekly","video":[{"title":"2017:E314 - Family Feud - Whitmore is Crazy (Part 5)","description":"Survey says! Achievement Hunter is back as your favorite dysfunctional family in the latest episode of Family Feud.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-family-feud-whitmore-is-crazy-part5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fca6e9a-683a-4c3f-b5e6-9b5c64191233/sm/2013912-1504895294372-LP_FamilyFeud_Part5.png","duration":1696,"publication_date":"2017-09-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-far-cry-5","changefreq":"weekly","video":[{"title":"2017:E315 - Let's Watch - Far Cry 5","description":"Achievement Hunter enjoy the splendors that Hope County has to offer in Far Cry 5. It's guns, trucks, and planes if you're wondering.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-far-cry-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/567efa31-b7b9-400e-9363-22bece55b726/sm/2013912-1504911385893-LW_FarCry5.png","duration":1636,"publication_date":"2017-09-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-93-ehiugh","changefreq":"weekly","video":[{"title":"2017:E34 - The Lego is More Valuable than Gold - Last Call #93","description":"The AH Crew stand up to talk about legos, angry Gavin, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-93-ehiugh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79cd9d56-cf00-46cd-818c-c2fb5df18d64/sm/2013912-1504911011606-OFF93_-_PS_-_THUMB.jpg","duration":1058,"publication_date":"2017-09-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-stink-bombs-ahwu-for-september-11-th-2017-386","changefreq":"weekly","video":[{"title":"2017:E37 - Stink Bombs! - AHWU for September 11th, 2017 (#386)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.\n\n\n\nIn the aftermath of Hurricane Harvey, Houston is in great need of your help. If you would like to join Rooster Teeth in donating to the Houston Food Bank, click here: https://www.gofundme.com/rtharvey\n\n\n\n\n\nAchievement Hunter got a package of Fart Bag stink bombs today and thought it would be rude not to use them.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-stink-bombs-ahwu-for-september-11-th-2017-386","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/335e9a30-1467-47f3-bd58-eef61057590a/sm/2013912-1504925668753-ahwu1_2.jpg","duration":740,"publication_date":"2017-09-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-overtime-shootout-early-rumblings-2","changefreq":"weekly","video":[{"title":"2017:E313 - GTA V - Overtime Shootout: Early Rumblings (#2)","description":"Achievement Hunter completes the Overtime Shootout maps before mercilessly shoving each other off the scoring platforms in Overtime Rumble.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-overtime-shootout-early-rumblings-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca07ab90-ccba-420e-85aa-e90eac0f4d73/sm/3014926-1504822626392-Thumb_A.jpg","duration":2382,"publication_date":"2017-09-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-93-vneoihj","changefreq":"weekly","video":[{"title":"2017:E93 - Besmirching the Good Name of Clowns - Off Topic #93","description":"The AH Crew sit down to talk about Geoff's cousin's bachelor party, Destiny 2, if Rooster Teeth ended tomorrow, and more on this week's Off Topic!\n\nThis episode originally aired September 8, 2017 and is sponsored by Dollar Shave Club (http://bit.ly/2jb4w1E)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-93-vneoihj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b5565a9-7f93-4bc7-b5ba-1d23cbf5e3ef/sm/2013912-1504925714551-OFF93_-_THUMB.jpg","duration":7219,"publication_date":"2017-09-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-destiny-2-the-new-traveler","changefreq":"weekly","video":[{"title":"2016:E21 - Destiny 2 - The New Traveler","description":"Learn how to activate the giant Traveler Ball easter egg in the new tower of Destiny 2!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-destiny-2-the-new-traveler","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38147626-5b12-4a5b-af4a-957496be3c5f/sm/2013912-1504912790143-destiny2_ttd_v3.jpg","duration":159,"publication_date":"2017-09-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-48-blood-orgy","changefreq":"weekly","video":[{"title":"2017:E24 - Episode #48: Blood Orgy At Beaver Lake","description":"The buck-toothed animal ain't the only kind of beaver making an appearance in this flick, if you catch my drift. Eh? Eh? Ehhh?","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-48-blood-orgy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be241870-839c-4ca3-b576-6ef02c5a93fd/sm/3014926-1504892143598-TM_-_Blood_Orgy_-_THUMB.jpg","duration":4442,"publication_date":"2017-09-08T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-gavin-joins-the-game-3","changefreq":"weekly","video":[{"title":"2017:E312 - 7 Days to Die: Gavin Joins the Game (#3)","description":"Our nugless heroes are horrified to find they will have to start this episode at night. \n\nIn this episode: Gavin discovers art, Michael studies iron, Jeremy crafts a new weapon, Jack looks for a new project, and Ryan explains negging","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-gavin-joins-the-game-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95b3a127-5ef2-428e-a7e5-71120262ac81/sm/3014926-1504821255182-AH_7Days16_Ep3_THUMB3.png","duration":3594,"publication_date":"2017-09-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-destiny-2-scouting-commander-sentry-ranks-x4-easter-egg","changefreq":"weekly","video":[{"title":"2016:E20 - Destiny 2 - Scouting Commander & Sentry Ranks x4 (Easter Egg)","description":"Learn how to find the secret scouting patrol easter egg on The Farm, max your sentry ranks, and get the Scouting Commander buff in Destiny 2.\n\nTrevor teaches Geoff and Jack about a secret patrol mission on The Farm, Destiny 2's premiere social space. In this easter egg guide, learn how to nab the wheel boost and vertigo bonuses, max your sentry ranks, and earn the Commander's Blessing buff. Now you can super jump, run crazy fast, and look like Tron.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-destiny-2-scouting-commander-sentry-ranks-x4-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8fb76f4-7516-4d6d-b4af-1df8bf377596/sm/3014926-1504810049986-Webp.net-resizeimage_43.png","duration":369,"publication_date":"2017-09-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-august-2017","changefreq":"weekly","video":[{"title":"2017:E35 - Best of Achievement Hunter - August 2017","description":"This is the best of Achievement Hunter for the month of August 2017, where Oppressors soared (and exploded) in GTA, a Let's Play War was waged in PlayerUnknown's Battlegrounds, bouncy castles proved fun for all ages, Minecraft Skyfactory gave birth to a new generation of Tower of Pimps, and Gitin' Gud in Rainbow Six Siege was questionably achieved. Watch and enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-august-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f7bbda-a609-43a8-85f4-f46df28d4ad9/sm/3014926-1504711362001-Best_of_AH_Aug_Thumbnail.jpg","duration":879,"publication_date":"2017-09-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-33-post-show","changefreq":"weekly","video":[{"title":"2017:E13 - #33 Post Show","description":"Allison talks about props and Micheal discovers the 'Hug' emoji.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-33-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589668e8-e045-424f-bbf5-bb84c362bbcf/sm/3014926-1504728190817-HHs3_ep33_PS.jpg","duration":436,"publication_date":"2017-09-07T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-276-sky-factory-part-18","changefreq":"weekly","video":[{"title":"2017:E311 - Minecraft - Episode 276 - Sky Factory Part 18","description":"Achievement Hunter turns corn into blood, blocks into computers, and ham into masks in the best Minecraft mod ever, Sky Factory 3!\n\nOn today's episode, Ryan refines the storage, Jack's kolaches go into overdrive, Geoff expands the chicken farm, Gavin gets milked, Michael makes some masks, but loses his mind in the process, and Jeremy wins Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-276-sky-factory-part-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e62c0e5-f639-47b1-a5b9-3c1bdfe06298/sm/3014926-1504736950819-SkyFac18_Thumb.jpg","duration":3855,"publication_date":"2017-09-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-pacman","changefreq":"weekly","video":[{"title":"2017:E35 - Halo 5 - Pac - Man","description":"Om nom nom! Achievement Hunter goes retro with this Pac-Man re-imagining in Halo 5: Guardians.Download the map here and the gametype here.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-pacman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/003b68b5-0a20-4487-a265-2aea79cfdbcb/sm/3014926-1504624908973-TTD_Halo5_Pacman.png","duration":766,"publication_date":"2017-09-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-gorn-2","changefreq":"weekly","video":[{"title":"2017:E13 - Gorn 2","description":"Ryan steps into the VR arena to slash, chop, beat, and rip his opponents limb from limb in Gorn 2.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-gorn-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b305884-59b6-407a-b559-90bdff5d70a1/sm/3014926-1504623505487-VR_GORN_THUMB_PART_1.jpg","duration":1301,"publication_date":"2017-09-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-should-old-acquaintances-be-forgot-33","changefreq":"weekly","video":[{"title":"2017:E33 - Should Old Acquaintances Be Forgot - #33","description":"Events move apace in the magical city of Jackal Heart as the party prepares to take down the despotic Rajah once and for all. Sponsored by Blue Apron (http://cook.ba/2jeJr22)and Mack Weldon (http://bit.ly/2kMs65c)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-should-old-acquaintances-be-forgot-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f608b7e8-0912-4134-8ee7-6935eaae4f6a/sm/3014926-1504712867998-HH33_Thumbnail_v2.jpg","duration":5550,"publication_date":"2017-09-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-7-inconsistently-gud-er","changefreq":"weekly","video":[{"title":"2017:E310 - Rainbow Six Siege: Git Gud 7 - Inconsistently Gud-er","description":"Achievement Hunter stumbles in another Rainbow Six: Siege Git Gud loaded with teamkilling, headshots, and maybe an epic win.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-7-inconsistently-gud-er","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b5ca7da-98e0-451b-94f6-24b7311985c4/sm/3014926-1504644445719-LP_R6Seige_GitGud2_THUMB.png","duration":2349,"publication_date":"2017-09-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-white-noise-2","changefreq":"weekly","video":[{"title":"2017:E309 - White Noise 2","description":"In this spooky scary horror game, four survivors try to evade and thwart a killer monster. Will they survive, or suffer a gruesome demise?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-white-noise-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4b7b090-1f2d-4658-a099-ebd3080aedad/sm/3014926-1504300903095-WhiteNoise2_Thumb_c.jpg","duration":1892,"publication_date":"2017-09-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-rainbow-6-siege","changefreq":"weekly","video":[{"title":"2017:E34 - Battle Buddies - Rainbow 6 Siege","description":"Be a beaming Battle Buddies buddy by buying a bodacious Battle Buddies shirt!: http://bit.ly/2xD1Ahp\n\n\n\nBattle Buddies - Funhaus have laid siege on the warehouse printing the new Battle Buddies shirt. Get in. Hunt them down. Save our merch.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-rainbow-6-siege","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30b5aef5-b264-491d-9daf-fe40b29b2a93/sm/3014926-1504286369491-BB_SIEGE.jpg","duration":1054,"publication_date":"2017-09-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-trivial-pursuit-learn-to-math-part-11","changefreq":"weekly","video":[{"title":"2017:E308 - Trivial Pursuit - Learn to Math (Part 11)","description":"Achievement Hunter puts their brains to the test in the latest Trivial Pursuit. In this epic battle of knowledge, who will come out on top?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-trivial-pursuit-learn-to-math-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bf62db7-28ef-4d4f-8f1a-1d734f01eb37/sm/3014926-1504286851890-LP_TrivialPursuit.png","duration":3129,"publication_date":"2017-09-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-getting-gooped-ahwu-for-september-4-th-2017-385","changefreq":"weekly","video":[{"title":"2017:E36 - Getting Gooped - AHWU for September 4th, 2017 (#385)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU\n\nIn the aftermath of Hurricane Harvey, Houston is in great need of your help. If you would like to join Rooster Teeth in donating to the Houston Food Bank, click here: https://www.gofundme.com/rtharvey","player_loc":"https://roosterteeth.com/embed/ahwu-2017-getting-gooped-ahwu-for-september-4-th-2017-385","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5df749a-238f-45d4-b35b-b73ae9827165/sm/3014926-1504300632502-ahwu.jpg","duration":719,"publication_date":"2017-09-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-92-eghjg","changefreq":"weekly","video":[{"title":"2017:E33 - The One with the BEVS Shirts - Last Call #92","description":"The AH Crew and special guest Jacob Batalon stand up to talk about Rainbow Six Siege, Alfredo’s expectations, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-92-eghjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb793ab6-c30c-40b2-a6b0-7e697d639ae2/sm/3014926-1504331376854-Off_Topic_92_PostShow_2_thumbnail.jpg","duration":1227,"publication_date":"2017-09-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-special-cunning-stunts-3","changefreq":"weekly","video":[{"title":"2017:E307 - GTA V - Special Cunning Stunts 3","description":"Achievement Hunter races in another GTA V Special Cunning Stunts full of hazardous jumps, wicked tricks, epic fails, and glorious wins.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-special-cunning-stunts-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9507e5d-28e5-4232-a6f3-a2a48caf5a84/sm/2013912-1504135834090-Thumb_F.jpg","duration":2984,"publication_date":"2017-09-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-92-whffheg","changefreq":"weekly","video":[{"title":"2017:E92 - We Apologize For Everything - Off Topic #92","description":"The AH Crew and special guest Jacob Batalon sit down to talk about building PCs, hurricanes, their destructive nature, and more on this week's Off Topic!\n\nThis episode originally aired September 1, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MVMT (http://bit.ly/2w7sDQh)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-92-whffheg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c913e94-2b1f-4c2e-8902-3f3cc62b9012/sm/3014926-1504331178844-Off_Topic_92_1_thumbnail.jpg","duration":8697,"publication_date":"2017-09-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode","changefreq":"weekly","video":[{"title":"2017:E23 - Episode #47: Sgt. Kabukiman NYPD","description":"KA-BOO-KEE?? Follow dim-witted Detective Harry Griswald in his quest to murder every criminal in New York City with his newfound racist powers as Sgt. Kabukiman!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0892131e-02ae-4543-bec8-b73c226aeff8/sm/3014926-1504214575747-TM_-_Kabukiman_-_THUMB.jpg","duration":6584,"publication_date":"2017-09-01T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-mari0","changefreq":"weekly","video":[{"title":"2017:E11 - Mari0","description":"Five years after the first Mari0 video (Ryan's first Let's Play!), RouLetsPlay forces a chaotic reunion of the teleporting Italian plumber gang.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-mari0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1f810d8-595b-4baa-b96f-d4ec68d67eda/sm/2013912-1504121556994-Mari0_Thumb_4.jpg","duration":1226,"publication_date":"2017-09-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-our-nugs-combined","changefreq":"weekly","video":[{"title":"2017:E12 - Our Nugs Combined","description":"Millions of years ago, six men touched their nugs. Since then the six nations of Nug have been at war.\n\nAnimation audio from: https://youtu.be/S4hAbxotPP8Animation by Shaun Cunningham","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-our-nugs-combined","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66a1302d-67b8-4849-b009-2cf19bc864de/sm/3014926-1504200899732-AH_Animated_Nug_Thumbnail.jpg","duration":88,"publication_date":"2017-08-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-275-sky-factory-part-17","changefreq":"weekly","video":[{"title":"2017:E306 - Minecraft - Episode 275 - Sky Factory Part 17","description":"The boys take control of water, wind, and fire in their continuing Minecraft journey through the Sky Factory 3 mod.\n\nOn today's episode, calamity strikes Geoff's farm while he's away, Michael becomes a junior magic botanist, Ryan tidies up the labor camp, Jack makes some kolaches, Gavin loses the energy race, and Jeremy takes control of the elements, becoming a god.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-275-sky-factory-part-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63bcb8b6-607d-4182-a456-a407325822d3/sm/2013912-1504135406946-SkyFac17.jpg","duration":3519,"publication_date":"2017-08-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-overwatch-dbz-fist","changefreq":"weekly","video":[{"title":"2017:E34 - Overwatch - DBZ Fist","description":"Kamehameha! Achievement Hunter channel their inner Gokus and Vegetas and beat the crap out of each other with Super Saiyan Doomfist.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-overwatch-dbz-fist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72fd4182-6dda-4d1b-ad75-5075f7066fb8/sm/3014926-1504019615209-TTD_DBZ_FIGHT.jpg","duration":417,"publication_date":"2017-08-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-6-could-be-gud-er","changefreq":"weekly","video":[{"title":"2017:E305 - Rainbow Six Siege: Git Gud 6 - Could be Gud-er","description":"Achievement Hunter's been gitting almost gud, but climb goes uphill forever.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-6-could-be-gud-er","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a61bf6b7-c9b9-488c-a4f7-199b77627196/sm/3014926-1504026999017-LP_R6Seige_GitGud6_THUMB.jpg","duration":2280,"publication_date":"2017-08-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-3","changefreq":"weekly","video":[{"title":"2017:E15 - Between the Games - Trevor Gets Zipped","description":"Gavin, Jeremy, and Jack suspend Trevor by some zip ties. Because reasons.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9004888-5c3d-4c31-a233-49bfcfd50100/sm/3014926-1503959127519-Thumb_BTG_ZipTiedTrev_V2.jpg","duration":901,"publication_date":"2017-08-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-bathroom-brawl-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E304 - PlayerUnknown's Battlegrounds: Bathroom Brawl ","description":"The crew are locked in for another round of Battlegrounds, but how long will bathrooms and tiny shacks protect them from the chaos outside?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-bathroom-brawl-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ff7dd10-404b-48a4-bc7c-846e695db610/sm/3014926-1503958596311-pubg_bathroombrawl_thumb_082917.png","duration":2439,"publication_date":"2017-08-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-human-fall-flat-part-5","changefreq":"weekly","video":[{"title":"2017:E15 - Human Fall Flat Part 5","description":"The boys are ec-static to play more Human Fall Flat. Do they have watt it takes to beat the electric world? You'll be shocked when you find out.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-human-fall-flat-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d2fe183-f62a-4276-b7a1-b5964bdc90ee/sm/3014926-1503687179689-PP_HumanFallFlat_Part5.jpg","duration":2699,"publication_date":"2017-08-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-mario-party-8-bowser-s-warped-orbit","changefreq":"weekly","video":[{"title":"2017:E303 - Mario Party 8: Bowser's Warped Orbit","description":"Ryan, Gavin, Michael, and Jeremy invoke their Bowser star-stealing abilities for the last map in Mario Party 8.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-mario-party-8-bowser-s-warped-orbit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58455558-2a95-443e-98f5-948722d1817f/sm/3014926-1503686763591-LP_MarioParty8_Bowser_THUMB1.png","duration":6004,"publication_date":"2017-08-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-big-boy-booms-ahwu-for-august-28-th-2017-384","changefreq":"weekly","video":[{"title":"2017:E35 - Big Boy Booms - AHWU for August 28th, 2017 (#384)","description":"Special thanks to Pro Flowers for sponsoring today's episode. You can get 20% off summer roses or any other bouquet of $29 or more by going to http://ProFlowers.com, and using code “JackandGeoff” at checkout.\n\nAchievement Hunter got a box of the loudest snap fireworks in existence, Torpedo Cracker Snaps. The warning label says not to throw them at anybody, so Geoff threw them at everybody.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-big-boy-booms-ahwu-for-august-28-th-2017-384","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41971652-c3fe-445a-a7e7-80e7f5281d02/sm/3014926-1503694414906-ahwu2.jpg","duration":699,"publication_date":"2017-08-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-91-wuhfie","changefreq":"weekly","video":[{"title":"2017:E32 - Jeremy's A Bad Person - Last Call #91","description":"The AH Crew sit down to talk about Voice Actors,Their Fan Moments, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-91-wuhfie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32173e4e-d719-4040-9ffa-5bc88aef4ca3/sm/3014926-1503695934161-OFF91_-_PS_-_THUMB.jpg","duration":1452,"publication_date":"2017-08-27T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-gta-v-overtime-shootout","changefreq":"weekly","video":[{"title":"2017:E302 - GTA V - Overtime Shootout","description":"It's Monkey Ball! No, wait, it's GTA V. Sorta hard to tell the difference with the new Overtime Shootout game mode.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-gta-v-overtime-shootout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ba13418-73b1-47b6-a92e-b05590cdd22e/sm/3014926-1503604315462-Thumb_A.jpg","duration":1965,"publication_date":"2017-08-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-91-fhi3ug","changefreq":"weekly","video":[{"title":"2017:E91 - And Then I was In Jail - Off Topic #91","description":"The AH Crew sit down to talk about The Wayweather fight, Annoying Drivers, upcoming games, and more on this week's Off Topic!\n\nThis episode originally aired August 25, 2017 and is sponsored by Dollar Shave Club (http://bit.ly/2w7Dry2) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-91-fhi3ug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b222bbb-252c-46a4-a6ea-4c9057758715/sm/3014926-1503696162090-OFF91_-_THUMB.jpg","duration":8002,"publication_date":"2017-08-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-46-nothing-out-there","changefreq":"weekly","video":[{"title":"2017:E22 - Episode #46: There's Nothing Out There","description":"Move over, Scream! In this low-quality precursor to the meta-horror hit, an alien lands on Earth to feast on a pack of horny teens and one boy must use his knowledge of horror movies to help them survive.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-46-nothing-out-there","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c93e859b-f8c2-4b46-b247-fec96f2fa8f5/sm/3014926-1503614977656-TM_-_Nothing_Out_There_-_THUMB.jpg","duration":5890,"publication_date":"2017-08-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-scavenging-in-the-city-2","changefreq":"weekly","video":[{"title":"2017:E301 - 7 Days to Die: Scavenging in the City (#2) ","description":"Our heroes explore the nearby city in search of guns, gear, and the new zombies.In this episode: Ryan and Jack dive into a survival discussion, Michael gets distracted, Jeremy climbs up, and Geoff is learning.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-scavenging-in-the-city-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46673ecd-f78e-46e2-abb1-38dc94d7560d/sm/3014926-1503603635079-AH_7Days_A16_Ep2_1.png","duration":4031,"publication_date":"2017-08-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-trivial-pursuit-with-greg-miller","changefreq":"weekly","video":[{"title":"2017:E300 - Trivial Pursuit with Greg Miller","description":"Greg Miller of Kinda Funny joins Jack, Ryan, and Jeremy for a game of Trivial Pursuit.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-trivial-pursuit-with-greg-miller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d1d0eda-6026-4ee9-93b2-1f42a55763f5/sm/3014926-1503592983722-Thumb_TrivialPusuit_with_GregMiller.jpg","duration":3340,"publication_date":"2017-08-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-32-post-show","changefreq":"weekly","video":[{"title":"2017:E12 - #32 - Post Show","description":"The Gang takes a look at some fan art. Plus a Mindcraft walk-thru of the caves.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-32-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd6b135a-5432-4f6b-a93d-b214698ad72f/sm/3014926-1503590804695-HHs3_ep32_PS_Thumb.jpg","duration":312,"publication_date":"2017-08-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-placeholder","changefreq":"weekly","video":[{"title":"2017:E11 - AH Animated - A Ruthless Killer","description":"Most of you know Matt as a kind-hearted and gentle builder. We know him as \"The Killer\".\n\nAnimation audio from: https://youtu.be/9zDIGkWwrKsAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-placeholder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f1116c0-3ec9-4150-84b4-ef861ab5785f/sm/2013912-1503541570712-RuthlessKillerThumb.jpg","duration":137,"publication_date":"2017-08-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-minecraft-episode-274-sky-factory-part-16","changefreq":"weekly","video":[{"title":"2017:E299 - Minecraft - Episode 274 - Sky Factory Part 16","description":"The boys continue making their Sky Factory even better, all while discussing their favorite fake metal bands.\n\nOn today's episode, Geoff levels up his chickens, Michael cleans up his mess, Ryan goes nuclear, Jack tidies up Ryan's machinery, and Jeremy just Neville Longbottoms all over the place.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-minecraft-episode-274-sky-factory-part-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d8b8bf6-19b0-4934-9ebc-4fe630327c10/sm/3014926-1503527081328-SkyFac16_Thumb.jpg","duration":3319,"publication_date":"2017-08-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-the-bor-ealis-shuffle-32","changefreq":"weekly","video":[{"title":"2017:E32 - The Bor Ealis Shuffle - #32","description":"The party returns to the Dolorous Chateau and enacts a plan to save the prisoners. Albus deals with the mental fallout from the death of his familiar. Everything's going to be just fine...right kids? Sponsored by Elderwood Academy (http://bit.ly/2xteAFz)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-the-bor-ealis-shuffle-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eefe9382-246a-4157-9e50-a6be6e9241df/sm/3014926-1503500569211-HH32_Thumb.jpg","duration":5624,"publication_date":"2017-08-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-blade-runner","changefreq":"weekly","video":[{"title":"2017:E33 - GTA V - Blade Runner","description":"\"Matt, have you even seen Blade Runner?\" \"No. I just assumed it's about a guy driving his car through windmill blades, so I went and made that.\"\n\nThe Achievement Hunter boys race their Ruiner 2000s down the racetrack, all while dodging deadly windmill blades. It's Blade Runner in GTA. And yes, it's a way better name than \"The Blade Field.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-blade-runner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af204fe1-a4d3-4a34-8e44-9442ac874c62/sm/3014926-1503426557126-BladeRunnerThumb_v001.png","duration":967,"publication_date":"2017-08-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-by-daylight-a-lullaby-for-the-dark","changefreq":"weekly","video":[{"title":"2017:E298 - Dead by Daylight: A Lullaby for the Dark","description":"What has two rabbit ears and loves tricks? A serial killer! Well, maybe not tricks, but the Huntress sure loves hatchets.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-by-daylight-a-lullaby-for-the-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/687d5525-55f0-4b87-8005-a9c2f86442d1/sm/3014926-1503419190948-DbD_Thumb_Lullaby.jpg","duration":1882,"publication_date":"2017-08-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-4","changefreq":"weekly","video":[{"title":"2017:E14 - Between the Games - AH HAP Battle","description":"It's time for a HAPster TAP HAPdown!  The AH Rap Battle is on iTunes NOW: http://apple.co/2thrZ4r","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a2042a0-1fb9-432b-abb8-029f10a29d12/sm/3014926-1503075627777-BTG_AH_HAP_BATTLE_1.jpg","duration":322,"publication_date":"2017-08-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-uncharted-the-lost-legacy","changefreq":"weekly","video":[{"title":"2017:E296 - Let's Watch - Uncharted: The Lost Legacy","description":"Special thanks to Playstation for giving us a copy of the game early.\n\nRyan is back to exploring/shooting up ancient ruins in Uncharted: The Lost Legacy. Will he run into his arch nemesis, the box with wheels? Probably.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-uncharted-the-lost-legacy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3180d8-4d40-41e3-a2af-359c2c30f3ef/sm/3014926-1503342231548-LW_UNCHARTED_LOST_LEGACY.jpg","duration":3494,"publication_date":"2017-08-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-5-not-gud-enuf","changefreq":"weekly","video":[{"title":"2017:E297 - Rainbow Six Siege: Git Gud 5 - Not Gud Enuf","description":"Now that Achievement Hunter has gotten a bit gudder, can they continue to climb, or have we finally seen their best-est?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-5-not-gud-enuf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7570a03-2b12-4209-8cb1-53187ad439c2/sm/3014926-1503353848463-LP_R6Seige_GitGud5_thumb_v2.png","duration":3449,"publication_date":"2017-08-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-tea-party-keep-talking-and-nobody-explodes","changefreq":"weekly","video":[{"title":"2017:E31 - Tea Party - Keep Talking and Nobody Explodes","description":"Gavin and Jeremy sit down for a spot of tea and some bomb defusal. They need to keep talking, or else they'll explode. Oh bugger.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-tea-party-keep-talking-and-nobody-explodes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/221fea64-c37a-459b-8b9b-e930281dd7d5/sm/3014926-1503074599254-TEA_PARTY_KEEP_TALKING.jpg","duration":2508,"publication_date":"2017-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-ryan-can-read-ahwu-for-august-21-st-2017-383","changefreq":"weekly","video":[{"title":"2017:E34 - Ryan Can Read! - AHWU for August 21st, 2017 (#383)","description":"Ryan reads all the books, notes, and fan letters sent into AHWU this week (since Trevor very much can't read), and Michael grips it and rips it!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-ryan-can-read-ahwu-for-august-21-st-2017-383","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/640f7300-ba0c-4988-b960-b7024edd985f/sm/3014926-1503333415171-ah2.jpg","duration":787,"publication_date":"2017-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-jeopardy-button-mashers-part-5","changefreq":"weekly","video":[{"title":"2017:E291 - Jeopardy! - Button Mashers (Part 5)","description":"While the others are away at Heroes & Halfwits, Jack, Gavin, and Jeremy compete on Jeopardy to find out who is the smartest. Or at the very least, who is the least dumb.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-jeopardy-button-mashers-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e50f8354-69a5-45ee-971d-0e1ec90dff8d/sm/3014926-1502814939324-LP_Jeopardy.png","duration":1964,"publication_date":"2017-08-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-90-gheih","changefreq":"weekly","video":[{"title":"2017:E31 - Every Day is National Something Day - Last Call #90","description":"The AH Crew sit down to talk about lunch, washers and dryers, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-90-gheih","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1a72ee3-7798-4892-8257-8b416ebebd39/sm/3014926-1503095302663-OFF90_-_PS_-_THUMB.jpg","duration":1059,"publication_date":"2017-08-20T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-gta-v-chopper-vs-chopper","changefreq":"weekly","video":[{"title":"2017:E295 - GTA V - Chopper vs. Chopper","description":"Five rocket-powered bikes against one rocket-shooting helicopter. 'Nuff said.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-gta-v-chopper-vs-chopper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f949a50e-9969-4871-a1a5-18ce403c5c5a/sm/3014926-1503097485722-ChopperVsChopperThumb_V2.jpg","duration":2132,"publication_date":"2017-08-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-90-3-iugy","changefreq":"weekly","video":[{"title":"2017:E90 - Would You Rather: Mouth or... - Off Topic #90","description":"The AH Crew sit down to talk about YouTube origins, shows they’re watching, the Achievement Hunter question, and more on this week's Off Topic!\n\nThis episode originally aired August 18, 2017 and is sponsored by Five Four Club (http://bit.ly/2xcb0PL) and Jersey Mike’s (http://bit.ly/2fSKTKh)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-90-3-iugy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4fd9d5-ca42-4d8e-8b8d-8421f07d802f/sm/3014926-1503095291237-OFF90_-_THUMB.jpg","duration":8210,"publication_date":"2017-08-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-45","changefreq":"weekly","video":[{"title":"2017:E21 - Episode #45: The Thingy","description":"Michael brings newborn Iris along to watch perhaps the worst possible film to bring a baby to.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ae7332f-fab8-411d-b1dc-816517b31e88/sm/3014926-1503074994694-TM_-_The_Thingy_-_THUMB.jpg","duration":5249,"publication_date":"2017-08-18T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-infinite-minigolf-giant-home","changefreq":"weekly","video":[{"title":"2017:E290 - Infinite Minigolf - Giant Home","description":"Achievement Hunter LOVES mini golf. They also love legally distinct versions of Andy's room from Toy Story. To Infinite Minigolf...and beyond!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-infinite-minigolf-giant-home","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbabe3c1-5c8f-4c8e-b925-4afa655b538e/sm/3014926-1502812074309-Infinite_MiniGolf.jpg","duration":1830,"publication_date":"2017-08-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-amazing-frog-with-game-attackl","changefreq":"weekly","video":[{"title":"2017:E290 - Amazing Frog? With Game Attack","description":"Craig and Michael hop about in the absolutely ribbeting game, Amazing Frog? How high can they hop? To space, apparently.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-amazing-frog-with-game-attackl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7b1d374-0976-4ff7-a6c2-79072c441b1a/sm/3014926-1502730582355-LP_AmazingFrogWithGameAttack.png","duration":1744,"publication_date":"2017-08-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-5","changefreq":"weekly","video":[{"title":"2017:E13 - Between the Games - Bounce Castle Mousetrap","description":"It's a zany action, a crazy contraption! The fun is catchin'! It's Bounce Trap!","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a0e90ce-65bd-4a93-a92a-1b4bf3f1f028/sm/3014926-1502811859623-BTG_BOUNCE_CASTLE_part_2.jpg","duration":508,"publication_date":"2017-08-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-273-sky-factory-part-15","changefreq":"weekly","video":[{"title":"2017:E294 - Minecraft - Episode 273 - Sky Factory Part 15","description":"The boys come back to Sky Factory to have a bloody good time. A magical time. A blood magic time.\n\nOn today's episode, Geoff mumbles to his chickens, Michael gets smelty, Gavin chisels some water, Jack tries for legendary loot, and Jeremy sacrifices his friends upon the blood altar.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-273-sky-factory-part-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6c28f49-cbe1-4424-a316-512285fb69cf/sm/3014926-1502921322440-SkyFac15_Thumb.jpg","duration":3757,"publication_date":"2017-08-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-crash-bandicoot-michael-s-descent-into-stormy-ascent","changefreq":"weekly","video":[{"title":"2017:E293 - Crash Bandicoot: Michael's Descent into Stormy Ascent","description":"21 years ago, Stormy Ascent was pulled from Crash Bandicoot because it was too hard. Today, Michael's going to tackle that level head first.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-crash-bandicoot-michael-s-descent-into-stormy-ascent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d29175-0b5d-4ec0-a96c-6be082a933c0/sm/3014926-1502837416222-RQ_Crash_StormyAscent_THUMB.png","duration":3183,"publication_date":"2017-08-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-rainbow-six-siege-git-gud-4-more-betterer-gud","changefreq":"weekly","video":[{"title":"2017:E289 - Rainbow Six Siege: Git Gud 4 - More Betterer Gud","description":"Achievement Hunter continue their quest to be the Bestest, Gud-est boys in Rainbow 6: Siege. But does it really count as gitting gud-er if they hire a ringer?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-rainbow-six-siege-git-gud-4-more-betterer-gud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06c159bf-a255-4edc-a024-487c6e418736/sm/3014926-1502727786938-LP_R6Seige_Git_Gud_4_2.jpg","duration":3458,"publication_date":"2017-08-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-dunkirk","changefreq":"weekly","video":[{"title":"2017:E191 - BEACHES OF DUMBKIRK - GTA 5 Gameplay","description":"So, wait. You DON'T have to get your stomach pumped when that happens? Sweet. You guys just saved me a trip to the hospital.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nРестлБро -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/cc9KWaVyXEKQ6l-rESISOg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-dunkirk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3efabc0-a02e-4971-8ee6-b185e548cd76/sm/2371242-1501028871076-FH_Thumb_17_copy_27.jpg","duration":654,"publication_date":"2017-07-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-weed-shop-gameplay","changefreq":"weekly","video":[{"title":"2017:E32 - Weed Shop 2 Gameplay","description":"This uncut chapter of the Tug Nuggets saga is, as the kids say, quite dank.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-weed-shop-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee2846e9-4edd-4bf9-89c4-e2a1ad6aae94/sm/1533704-1501003288105-Fullhaus_Thumbnail_Weed_SHop.jpg","duration":3689,"publication_date":"2017-07-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds132","changefreq":"weekly","video":[{"title":"2017:E132 - IT'S OK TO TEXT AND DRIVE? - Dude Soup Podcast #132","description":"Get 15% off today with free shipping and free returns by going to http://www.mvmt.com/dudesoupAnd get 10% off when you order online, at http://www.jerseymikes.com/dudesoup or use code \"dudesoup\" in the app.\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the boys and Elyse tackle the debate over using technology while driving as well as:22:00 - A very special video call-in from Gus Sorola27:30 - The chaos of Pokemon Go Fest38:00 - Our dependence of free online services46:45 - Why Reddit thinks PewdiePie is a nazi52:30 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[The Daily News] Drivers beware: New 'E-DUI' law takes effect - http://tdn.com/news/local/drivers-beware-new-e-dui-law-takes-effect/article_64e9f6a5-a891-5b94-b9ef-720113869627.html[KCRA] Everything to know about CA's new distracted driver law - http://www.kcra.com/article/hands-off-your-phone-everything-to-know-about-cas-new-distracted-driver-law/8537737[NHTSA] Distracted Driving - https://www.nhtsa.gov/risky-driving/distracted-driving[bobvids] Pokemon GO Fest Stream Supercut - Savagely Seasoned Cringe - \n\n\n\n\n\n\n\n\n\n\n\n[Pokemon Go Live] Niantic Pokémon GO Fest Chicago Update - http://pokemongolive.com/en/post/pokemongofestupdate\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTING:Ivan Dorin - https://www.youtube.com/channel/UCUZEt1gSA288a5FTdtECAqAKeijo Portugal - https://www.facebook.com/KeijoPortugal/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/614cda8d-0abc-4874-b02b-f5738e18c810/sm/2371242-1500936392716-FH_Thumb_17_copy_23.jpg","duration":3789,"publication_date":"2017-07-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps132","changefreq":"weekly","video":[{"title":"2017:E132 - WE ARE MOMMIES","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f685da-f99e-45db-9a46-f4d3fda4ea6c/sm/2371242-1500936559825-DS_PostShow_Template132.png","duration":2831,"publication_date":"2017-07-25T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh127","changefreq":"weekly","video":[{"title":"2017:E127 - OUR FIRST CRUSH? - Open Haus #127","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\nAaahh, first crushes. The summer breeze flowing through your hair. The awkward glances. The exhilarating charge as they graze your hand with theirs. The questions you've already answered. The boring stories they've told you a hundred god-damned times. The crying. The strange, almost comforting stony silence as you eat yet another in what seems to be an endless series of meals together. More crying. No, I wasn't flirting with that barista! I was just telling her how I like my coffee! What, can I not smile at another woman ever again?! Fine, go stay at your sister's! \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/865ca422-9fd1-4f5b-a8de-1918e72ec653/sm/2371242-1500696113840-Openhaus_Thumbnail127.jpg","duration":674,"publication_date":"2017-07-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/in-review-2017-a-great-switch-f-p-s-splatoon-2-in-review","changefreq":"weekly","video":[{"title":"2017:E1 - A GREAT SWITCH SHOOTER? - Splatoon 2 In Review","description":"You got surfaces, and we got goo. I'm sure we can find a mutually beneficial agreement here. Let me assure you that we have been covering surfaces in goo for a very long time. There is no doubt in my mind that we can fulfill all of your surface gooing needs. In fact, that's our motto. Funhaus: covering your surfaces in our goo for nearly a tenth of a half of a century. Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/sirlarrhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/in-review-2017-a-great-switch-f-p-s-splatoon-2-in-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18628a51-e283-4274-ae8a-9643ce1d91f2/sm/2371242-1500917860183-FH_Thumb_17_copy_18.jpg","duration":1298,"publication_date":"2017-07-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd-126","changefreq":"weekly","video":[{"title":"2017:E126 - ERECTILE DESTRUCTION - Demo Disk Gameplay","description":"Erectile dysfunction is no big deal. It happens to every man on occasion. Sure, sometimes more than that. Well, I wouldn't say \"usually\". More often than not. Maybe, nearly, almost every time. Fine. Every time. But I haven't heard any complaints yet. Well, maybe a few...\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54cafea5-1c2f-40fa-8420-d168d1145013/sm/2371242-1500678417643-FH_Thumb_17_copy_19.jpg","duration":784,"publication_date":"2017-07-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-weed-shop","changefreq":"weekly","video":[{"title":"2017:E186 - HIGH ON LIFE (and weed) - Weed Shop 2 Gameplay","description":"Little known fact: Jacob's tears can act as a powerful psychotropic. Contact with exposed skin can have a mild sedative effect. A single drop under the tongue can result in brief but intense periods of euphoria, synesthesia, and hallucinations. One chemistry grad student injected it directly into his vein. He's been having ceaseless overlapping orgasms ever since. Bet they didn't teach you that in D.A.R.E.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-weed-shop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abf64711-82b5-429a-8355-d534aac61549/sm/2371242-1500595967372-FH_Thumb_17_copy_16.jpg","duration":893,"publication_date":"2017-07-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-congo","changefreq":"weekly","video":[{"title":"2017:E17 - SKIP PLANET OF THE APES? - Movie Podcast","description":"This movie podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday the boys mix things up a bit to talk about the 1995 classic \"Congo\", a film that handles the delicate nature of political turmoil in central Africa with talking gorillas, diamond-powered laser guns, hippo attacks, and Bruce Campbell.   \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-congo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1842c4b1-3441-4e3e-9c23-be27f8c7afae/sm/2371242-1500657578681-FH_Thumb_17_copy_14.jpg","duration":1966,"publication_date":"2017-07-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-of-june","changefreq":"weekly","video":[{"title":"2017:E188 - BEST OF FREAKS - Best of Funhaus June 2017","description":"A Best of Funhaus video is like that first bump of heroin you did with that Styx roadie you met in the parking lot at the swap meet. Remember? Back when you swore you'd never use a needle? You know, before your wife left you for your cousin Debbie and you started doing all those sleep deprivation studies at the junior college to make rent?\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/jonsmith\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-of-june","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c400ac4d-8b00-4305-8c8d-6376ba0e6183/sm/2371242-1500593176900-June2017.jpg","duration":1029,"publication_date":"2017-07-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments80","changefreq":"weekly","video":[{"title":"2017:E80 - BEHIND THE SCENES? - Funhaus Comments #80","description":"Turns out that a peek behind the scenes of Funhaus is pretty much just like regular Funhaus, but with hours of unbroken, silent, hateful stares and a surprising amount of racial slurs.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37b88a1a-a97f-4dbb-9578-2c03fb966dfb/sm/2371242-1500574544092-FH_Thumb_Template80.png","duration":462,"publication_date":"2017-07-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-mxm","changefreq":"weekly","video":[{"title":"2017:E184 - ANIME-NIACS - Master X Master Gameplay","description":"Thank you to NCSOFT for sponsoring this video!Click the link to check out the game: http://bit.ly/FunhausMXM\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSo companies are just pulling games out of Lawrence's subconscious fully formed now? Seems kinda like cheating, but okay.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-mxm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7b0db9f-1235-4ce7-8f2c-a697a6a6b134/sm/2371242-1500507104500-FH_Thumb_17_copy_10.jpg","duration":837,"publication_date":"2017-07-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-watchmen","changefreq":"weekly","video":[{"title":"2017:E185 - THE WATCHMEN OF GTA - GTA 5 Gameplay","description":"\"Heeey Zack, it's Billy again. Not sure why you haven't called me back yet. I've left like... I don't know... one, two, eight, twel- a lot of messages. Guess you're pretty busy. Uuuumm hope you're doing well and that everything is cool. Yup. Cool, cool, cool. Anyway... about my dick size in the fi-(beeeeeeeeeeeep).\" \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-watchmen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afb486ec-41a6-4786-95a6-eb4600e5a109/sm/2371242-1500504953822-FH_Thumb_17_copy_12.jpg","duration":1117,"publication_date":"2017-07-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-monster","changefreq":"weekly","video":[{"title":"2017:E183 - PATRIOT GAMES - GTA 5 Gameplay","description":"Transcript from the unconditional surrender of German forces, Berlin, 1945:AMERICA: \"Now Germany, do you promise never to try and take over the world again?\"GERMANY: (sheepishly) \"Yeeesss. Ve are sorry.\"AMERICA: \"Well, that's what you said last time too.\"GERMANY: \"No no! Ve really mean it zis time. Ve promise.\"AMERICA: \"Alright then. Off to bed with you.\"GERMANY: \"Em... vat are you going to do vis zose atomic bombs?\"AMERICA: \"We'll think of something. Don't forget to brush your teeth.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nMonster Mayhem - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/gFiRZAenPUanl6bRPNlBfw#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-monster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83ade9af-1e6b-4014-bae8-4b8cf6ea417b/sm/2371242-1500403902720-FH_Thumb_17_copy_9.jpg","duration":497,"publication_date":"2017-07-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-system-hack-gameplay","changefreq":"weekly","video":[{"title":"2017:E31 - System Hack Gameplay","description":"This one's basically an hour-long documentary about a strange creature in its natural habitat.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-system-hack-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c38fa85-aba3-4691-b35d-59e5592aa15d/sm/1533704-1500399460948-Fullhaus_Thumbnail_System_Hack.jpg","duration":3387,"publication_date":"2017-07-18T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds131","changefreq":"weekly","video":[{"title":"2017:E131 - WHO'S MAKING HALF-LIFE 3? - Dude Soup Podcast #131","description":"Save an additional $50 toward a mattress purchase by going to http://www.casper.com/dudesoup and entering the promo code \"dudesoup\"And check out this week’s menu and get your first three meals free - with free shipping - by going to http://www.blueapron.com/soup\n\n\n\n\n\n\n\n\n\n\n\nToday the boys talk about the return of Half-Life 3 as well as:18:25 - JCVD movies24:45 - Martial arts action movies29:30 - Net neutrality48:50 - New Atari console55:40 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Arcade Attack] Marc Laidlaw (Valve) - Interview: http://www.arcadeattack.co.uk/marc-laidlaw/[NBC] Comcast Blocks Some Internet Traffic: http://www.nbcnews.com/id/21376597/#.WWzzCojyuUk[Kotaku AU] The First Look at the Ataribox: https://www.kotaku.com.au/2017/07/the-first-look-at-the-ataribox-ataris-new-console/[Eurogamer] First Look at Atari's New Console: http://www.eurogamer.net/articles/2017-07-17-first-look-at-ataris-newest-console\n\n\n\n\n\n\n\n\n\nHARD NETTING:Ivan Dorin - https://www.youtube.com/user/shotztoxic/videos\n\n\n\n\n\n\n\n\n\nThe True Ending to Half-Life 3 -- https://www.fanfiction.net/s/4139618/1/Half-Life-2-The-Final-Push\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52d765d7-fc75-4b7f-9e95-9678429c5540/sm/2371242-1500331928324-FH_Thumb_17_copy_8.jpg","duration":3775,"publication_date":"2017-07-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps131","changefreq":"weekly","video":[{"title":"2017:E131 - WE ARE NOT WORTHY","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f626b07c-14fc-4e36-88de-3b6eba79ab61/sm/2371242-1500331832065-DS_PostShow_Template131.png","duration":3763,"publication_date":"2017-07-18T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh126","changefreq":"weekly","video":[{"title":"2017:E126 - GAME OF THRONES TWISTS? - Open Haus #126","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus”.\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nThe greatest twist would be for George R.R. Martin to hold a press conference about the series, reveal he has written the last two books, burn the only copies, flip both birds, then immediately give himself a fatal heart attack.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0706bff-7e94-4737-80e3-76c203492ae2/sm/2371242-1500076511507-Openhaus_Thumbnail126.jpg","duration":870,"publication_date":"2017-07-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd125","changefreq":"weekly","video":[{"title":"2017:E125 - WE GET SUED - Demo Disk Gameplay","description":"Disclaimer: Please do not attempt any of the disk-breaking stunts you see on this program. Also, no matter what James tells you, shocks from a stun-gun do not actually make you stronger. And please, for the love of god, DO NOT under any circumstances eat one of Jon's fannypack sandwiches. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5ee74fe-9ff0-4c48-a8e7-ae869539f584/sm/2371242-1500079130672-FH_Thumb_17_copy_7.jpg","duration":1108,"publication_date":"2017-07-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hide","changefreq":"weekly","video":[{"title":"2017:E182 - SCHOOL OF THE DEAD - Hide and Shriek Gameplay","description":"A Halloween themed game. Played in April. Published in July. Guess which YouTube channel just spent almost a week working and partying in Austin for RTX?! I'll give you a minute. Follow us on Twitter: >http://twitter.com/elyse willems>http://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/925ceff7-91ed-44ad-b1b4-746e4d0697e4/sm/2371242-1499906237522-FH_Thumb_17_copy_5.jpg","duration":801,"publication_date":"2017-07-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-talkin3","changefreq":"weekly","video":[{"title":"2017:E181 - JOHNNY DEPP VS RAHUL KOHLI - Talking Stalkings Episode 3","description":"Please do not post refund requests or complaints about your Fruit Crate subscription in the comments thread. All matters relating to Fruit Crate LLC or any of its subsidiaries are to be handled by their respective legal departments. Funhaus and Rooster Teeth will not be held responsible for order inaccuracies, spoiled fruit, sickness, rashes, invasive tropical species infestations, potential exposure to that chemical from \"The Rock\", color-blindness, color-deafness, Matthew Modine's Syndrome, or death. Thank you for your understanding.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttps://twitter.com/RahulKohli13https://twitter.com/AJLoCascio\n\n\n\n\n\n\n\n\n\n\n\nhttps://twitter.com/OCSkaKids\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-talkin3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c70f0720-c1a3-4452-9e6f-ca37d3c5bfc3/sm/2371242-1499979276859-FH_thumb_1_copy_2.jpg","duration":986,"publication_date":"2017-07-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-catchpam","changefreq":"weekly","video":[{"title":"2017:E180 - COITUS INTERRUPTUS - Catch a Lover Gameplay with Pamela Horton","description":"Pamela's cam is all messed up. We know. We are sorry. Please don't make us get the length of hose from the old canning shed out back. We'll do better. We promise. No! Dear God, make us a bird. So we can fly far. Far far away from here!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/PamelaHorton13\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-catchpam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8ae651b-83ae-4da4-a702-2be656d09385/sm/2371242-1499896889533-FH_Thumb_17_copy_2.jpg","duration":717,"publication_date":"2017-07-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hearts","changefreq":"weekly","video":[{"title":"2017:E179 - LET'S PLAY DOCTOR! - Heart's Medicine: Time to Heal Gameplay","description":"My wife is a nurse, and from what I hear, working in a hospital involves very little romantic drama and closet banging, and a surprising amount of butt wiping and dodging punches from opioid addicts. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hearts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6429f706-653f-4fc0-baef-d19d81f9fc7e/sm/2371242-1499896523150-FH_Thumb_17_copy_1.jpg","duration":659,"publication_date":"2017-07-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments79","changefreq":"weekly","video":[{"title":"2017:E79 - TRIAL OF THE CENTURY? - Funhaus Comments #79","description":"\"Yaw Honah, I'm jest a simple Suthin' lawyah stereotahp, a'standin' heah in mah crisp seeahsuckuh suit, gently dabbin' perspuhrashun from mah brow wit' dis heah monagramed hankuhchif, set to wow Yaw Honah wit' some simplitic yet chahmin' homespun wisdom. Now, does it seem ta y'all that a guilty man would hiyah such a tiyud, played out cliche like muhself as his council in diyuh cuhcumstances such as these?\"\"Hmm... good point. Case dismissed!\" \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/omarcitoTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faf40515-763e-4e5a-97c8-29442b99c00b/sm/2371242-1499979068838-FH_Thumb_Template79.jpg","duration":590,"publication_date":"2017-07-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-usewords2","changefreq":"weekly","video":[{"title":"2017:E178 - GO BLANK YOURSELF - Use Your Words Gameplay Part 2","description":"From now on we're just gonna have Lawrence do all of his gameplays from the toilet. Turns out he's a lot funnier in when he's out of the room. Plus someone else has to deal with all the screaming. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-usewords2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7d17309-277a-4c91-b2dc-d5f250518201/sm/2371242-1499888663744-FH_Thumb_17_copy.jpg","duration":889,"publication_date":"2017-07-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtagun2","changefreq":"weekly","video":[{"title":"2017:E177 - PRETTY FLY FOR A WHITE GUY - GTA 5 Gameplay","description":"So far it looks like James' vast criminal empire consists of 6 golf carts, 3 port-a-potties, 2 under-stocked soda machines, and a mobile HQ that never goes anywhere. Wait!Is that a flying motorcycle?! Never mind. It somehow sucks too.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/GeoffLRamsey\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtagun2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7019d9a-c54c-4edc-937a-9f9a33918513/sm/2371242-1499821881730-FH_Thumb_17_copy_55.jpg","duration":782,"publication_date":"2017-07-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-cool-guys","changefreq":"weekly","video":[{"title":"2017:E176 - TOO COOL FOR YOU - GTA 5 Gameplay","description":"Wow! References to James Dean, Marlon Brando, AND The Rat pack?! No wonder we're crushing it with all of you millennials out there. Tune in next week when we drop sick burns on Ernest Borgnine, Robert Loggia, and the father from \"Small Wonder\".   \n\n\n\n\n\n\n\n\n\n\n\nRpg vs Looping Duke'death - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/OFrlOg12JEeVjGsnq_kTQQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-cool-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9421a1ad-edb2-46b1-a646-502650423b33/sm/2371242-1499821958327-FH_Thumb_17_copy_56.jpg","duration":632,"publication_date":"2017-07-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ff7","changefreq":"weekly","video":[{"title":"2017:E175 - HD JRPG T&A - Final Fantasy XII The Zodiac Age Gameplay","description":"Thank you to Square Enix for sponsoring this video! \n\nCheck out the game here: http://bit.ly/2tCNX2F \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIs it still sexist if the guys actually spend most of the video talking about how jealous they are of that one male character's abs?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ff7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72fa0198-a165-40a0-b528-4b4f2beb2cdd/sm/2371242-1499797286270-FH_Thumb_17_copy_52.jpg","duration":1297,"publication_date":"2017-07-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-ultimate-epic-battle-simulator-gameplay","changefreq":"weekly","video":[{"title":"2017:E30 - Ultimate Epic Battle Simulator Gameplay","description":"Fun fact: The length of this unedited gameplay is less than 10% the run time of the entire Lord of the Rings trilogy (extended editions, of course).","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-ultimate-epic-battle-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd0a79a9-9f40-40ab-a09b-586fb9fa350b/sm/1533704-1499279674778-Fullhaus_Thumbnail_UEBS.jpg","duration":3439,"publication_date":"2017-07-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup-130","changefreq":"weekly","video":[{"title":"2017:E130 - FIVE NIGHTS AT FREDDY'S DEAD? - Dude Soup Podcast #130","description":"This week your favorite folks talk about the imminent robot anime takeover, not to mention:06:10 - VR waifus that you can marry12:48 - The end of Five Nights at Freddy's as we know it26:36 - Streamer nip slips AND tip slips32:10 - Playstation uploads Anthem gameplay from the Xbox One43:17 - Everyone's 4th of July50:55 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aceddc1e-178d-4aee-8114-35d880081b04/sm/1533704-1499758405599-Dude_Soup_130.jpg","duration":3900,"publication_date":"2017-07-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-fh-oh-125","changefreq":"weekly","video":[{"title":"2017:E125 - OUR BIGGEST RIVALS? - Open Haus #125","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\nThree days of RTX. Everything hurts. So much fun. So much booze. So many beautiful people. Did I mention the booze? Me brain no is working now okay much. Goodnight.\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-fh-oh-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2635c6c-4f92-42f3-8fb2-7a3e8a3d0fde/sm/2371242-1499667950053-Openhaus_Thumbnail125.jpg","duration":812,"publication_date":"2017-07-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd124","changefreq":"weekly","video":[{"title":"2017:E124 - PECS MEN - Demo Disk Gameplay","description":"\"I hope this beautiful chest day is treating you well, and that you are all going to be blessed with a chest pump that even Arnold would be envious of.If you don’t have a chest day routine that you’re getting ready to crush in the gym this evening, then I’ve got your back. I wrote up a sick chest routine specifically designed to cause serious pain, and as a result, serious growth.Where most bros fuck up though is they depend far too much on the barbell bench, and pressing movements in general.When it comes to building an aesthetic chest, building your upper pecs is one of the biggest keys there is. A developed upper chest can lift your pecs, make them show more in a v-neck, and gives a more well rounded look.\"\n\n\n\n\n\n\n\n\n\n\n\nI love that these people exist.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd039af4-5eb9-4565-a929-b77cfcf28ef6/sm/2371242-1499382810781-FH_Thumb_17_copy_50.jpg","duration":856,"publication_date":"2017-07-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-100-ft","changefreq":"weekly","video":[{"title":"2017:E173 - SWINGERS PARTY - 100ft Robot Golf Gameplay with Steven Suptic","description":"For the love of God, James and Elyse, please don't let Steven near your future children. I would sooner leave my kids alone in a hot car with nothing but a box of detergent pods to eat than let them hang out with Steven Suptic. Follow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/StevenSuptic\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-100-ft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73514f5f-6b7d-40a6-8997-52308b6dce9a/sm/2371242-1499380164115-FH_Thumb_17_copy_41.jpg","duration":860,"publication_date":"2017-07-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-syshack","changefreq":"weekly","video":[{"title":"2017:E172 - BACKDOOR MAN - >//:System.Hack Gameplay","description":"\"Sir, 'Hackers' is about to go into production and we still haven't found the right actor to play the villian!\"\"Why don't we get that Indian guy from 'Short Circuit'. He must know all about computers.\"\"That was Fisher Stevens, sir. And he's white.\" \"Can he sort of ride a skateboard?\"\"I guess?\"\"Make the call.\"\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-syshack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65867cc0-3ed7-4461-a390-08e0c60728a0/sm/2371242-1499379779463-FH_Thumb_17_copy_42.jpg","duration":878,"publication_date":"2017-07-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-blomkamp-filmhaus","changefreq":"weekly","video":[{"title":"2017:E16 - BLOMKAMP DIRECTS HALO? - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\nOats Studios - Volume 1 on Steam - http://store.steampowered.com/app/633030/Oats_Studios__Volume_1/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nHoly crap! Today the gang gets a video call from director Neill Blomkamp to talk about his new project, OATS Studios as well as:\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n3:45 - DLC for film assets7:30 - Working in Hollywood vs. online14:20 - Working with pre-existing IPs20:00 - Possible future films29:30 - Creating content for YouTube33:00 - Blomkamp on video games\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttps://twitter.com/neillblomkamp\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-blomkamp-filmhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f73a6d94-19d9-4a41-93e8-524db37c62ca/sm/1533704-1499366195020-FH_Thumb_17_copy_5.jpg","duration":2301,"publication_date":"2017-07-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-warface","changefreq":"weekly","video":[{"title":"2017:E174 - GUNS BLAZING - Warface Gameplay","description":"Thanks to Warface for sponsoring this video!Please click the link below to check out the game for yourself!https://wf.my.com/promo/lvl11/en/?_1ld=2360606_2009101&_1lp=1\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"These godless commie savages have cut a swath through every last soldier on the front. I hoped that I would never have to do this, but... get me... The Funhaus Brigade!\"\"Uh sir. They're all recovering in the infirmary from stabbing the hell out of each other on the helicopter ride over.\"\"Again?\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-warface","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68766c90-47cd-4c77-9080-d848cd1cfa09/sm/2371242-1499365742837-FH_Thumb_17_copy_43.jpg","duration":1451,"publication_date":"2017-07-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-78","changefreq":"weekly","video":[{"title":"2017:E78 - TOO SEXY FOR YOUTUBE? - Funhaus Comments #78","description":"Now that \"cuck\" is officially played out, we look forward to whatever wacky term you kids come up with next to demean and denigrate us in the comments section of this free comedy channel.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83f08dee-133b-49e5-82ea-b988b3420c60/sm/2371242-1499300954385-FH_Thumb_Template78.jpg","duration":401,"publication_date":"2017-07-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-usewords1","changefreq":"weekly","video":[{"title":"2017:E171 - BAD LIBS - Use Your Words Gameplay Part 1","description":"It was another _____(adj) day at Funhaus. Elyse walked in the door and said \"Wow! I almost hit a _____(n) with my _____(n)!\"James took off his _____(n) and decided to _____(v) a _____(adj) _____(n).Meanwhile Bruce, Adam, and Peake were all _____(v)-ing a _____(n) while Lawrence furiously shoved a _____(adj) _____(n) into his _____(n).Once they had all washed up, the gang hopped into Bruce's _____(n) and went out for a nice _____(adj) bowl of _____(n).\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-usewords1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f86adc6c-d02b-4a1d-8d10-2e53c0baf814/sm/2371242-1499302603878-FH_Thumb_17_copy_36.jpg","duration":995,"publication_date":"2017-07-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-gunrun1","changefreq":"weekly","video":[{"title":"2017:E170 - SCUM AND VILLAINY - GTA 5 Gameplay","description":"Do we expect you to enjoy this video and share it with all your friends?No, Funhaus fans. We expect you to die... of laughter!*(snaps keyboard over knee, high-fives everyone in office, takes the rest of the day off)*\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/GeoffLRamsey\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-gunrun1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55a86e24-bde3-4a45-947b-d9c8ddc36443/sm/2371242-1499112234974-GTA_Gunrunning_1.jpg","duration":955,"publication_date":"2017-07-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-geoff-slide","changefreq":"weekly","video":[{"title":"2017:E169 - RACE TO FREEDOM! - GTA 5 Gameplay","description":"\"Speed is killing it at the box office. How about for the sequel we put them on a boat?\"\"You know boats go like half as fast as a bus, right?\"\"We could subtitle it 'Cruise Control'.\"\"...\"\"...\"\"What happened to us?\"\n\n\n\n\n\n\n\nDune Turtle Slide - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/eHyDaRqMekymVWGV_9bQgQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/GeoffLRamsey\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-geoff-slide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31ab023a-6926-4a83-bdd5-df734a74084c/sm/2371242-1499107164150-FH_Thumb_17_copy_39.jpg","duration":682,"publication_date":"2017-07-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-sayaka-gameplay","changefreq":"weekly","video":[{"title":"2017:E29 - Sayaka Gameplay","description":"Watch a gamer go head-to-head with his broken game for a very unbroken hour.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-sayaka-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c647d5c-7b40-46c3-ac76-55ce60b3f513/sm/1533704-1498847616390-Fullhaus_Thumbnail_Sayaka.jpg","duration":3182,"publication_date":"2017-07-04T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds129","changefreq":"weekly","video":[{"title":"2017:E129 - IS SONIC FASTER THAN THE FLASH? - Dude Soup Podcast #129","description":"Get 10% off your online Jersey Mike's order at http://www.jerseymikes.com and use code \"DUDESOUP\"\n\nAnd get 20% off your Mack Weldon order at http://www.mackweldon.com/ and use code \"SOUP\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the gang talks all about Games Done Quick 2017 as well as:6:00 - Adam and Larr's adventures at the LA Anime Expo18:00 - James' and Dan's adventures at Monday Night Raw31:00 - Sonic VS The Flash47:45 - Changes at Arkane Studios55:30 - A special call-in from that guy Chad or whatever from ScrewAttack59:00 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[YouTube] Beto theorizing: Sonic is faster than Flash: \n\n\n\n\n\n\n\n[GamesIndustry] Leaving Arkane: The pressure of \"making impossible things\" http://www.gamesindustry.biz/articles/2017-06-30-leaving-arkane-the-pressure-of-making-impossible-things\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/566364aa-85ad-4efd-96f3-3feb332298b7/sm/2371242-1499123141247-FH_Thumb_17_copy_47.jpg","duration":4101,"publication_date":"2017-07-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-we-are-babies","changefreq":"weekly","video":[{"title":"2017:E129 - WE ARE BABIES","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-we-are-babies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43c23777-581f-4dfa-9364-51ae2ecad04f/sm/2371242-1499133500812-DS_PostShow_Template129.png","duration":2687,"publication_date":"2017-07-04T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh124","changefreq":"weekly","video":[{"title":"2017:E124 - WE CRASH YOUR PROM? - Open Haus #124","description":"This episode of Open Haus is brought to you by Vincero Collective! Go to http://www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nThis Fourth of July, we here at Funhaus would like to honor our brave men and women in uniform by mocking one of them for both his past service to our country and his chronic, life-threatening illness. \"... from sea to shiiiiining seeaaaa!\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/JoshtheFlanagan\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4e1fcfe-5efe-4f4c-a0cf-1dda5d92febd/sm/2371242-1498947153342-Openhaus_Thumbnail124.jpg","duration":678,"publication_date":"2017-07-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd123","changefreq":"weekly","video":[{"title":"2017:E123 - SKID MARKS - Demo Disk Gameplay","description":"\"Alright Mr. Cruise, your Top Gun sequel has been green-lit! Production starts later this year.\"\"Great! We're gonna need to crank out some hits for the soundtrack. Bring me the corpse of Kenny Loggins!\"\"... Uh... Kenny Loggins is still alive, sir.\"\"You heard me.\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e3de873-10c5-4843-a2a2-80772721232f/sm/2371242-1498946241484-FH_Thumb_17_copy-2.jpg","duration":980,"publication_date":"2017-07-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bigfootsuptic","changefreq":"weekly","video":[{"title":"2017:E168 - WORST HUNTERS EVER - Finding Bigfoot Gameplay with Suptic","description":"Both the youngest AND oldest brothers from Home Improvement starred in terrible low budget Bigfoot movies in the nineties. Jonathan Taylor Thomas' agent tried to get him to do one too, but JTT couldn't hear him from underneath the pile of starlets he was bedding at the moment.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/StevenSuptic\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bigfootsuptic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/683ca0f5-6745-41e2-9249-a99ee2fde962/sm/2371242-1498692639276-FH_Thumb_17_copy_31.jpg","duration":1101,"publication_date":"2017-07-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-santa-battle","changefreq":"weekly","video":[{"title":"2017:E167 - SANTA VS ZOMBIES - Ultimate Epic Battle Simulator Gameplay","description":"I tried to watch all three Hobbit movies but I fell asleep about an hour in. Tell me: Is the whole trilogy just a bunch of dwarfs sitting around a table yelling over each other and eating mutton?\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-santa-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5144f3e4-7366-48dc-b49b-1c88b9fabcba/sm/2371242-1498692215547-FH_Thumb_17_copy_25.jpg","duration":859,"publication_date":"2017-07-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sakaya","changefreq":"weekly","video":[{"title":"2017:E165 - GAME OF THE YEAR! - Sayaka Gameplay","description":"Whatever this game may lack in unique characters, varying backgrounds, consistent controls, or engaging gameplay, it more than makes up for in blatant sexism and probable racism.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sakaya","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a72cfe4-0aaa-4a3d-b5e6-c32c0eac60e6/sm/2371242-1498691366564-FH_Thumb_17_copy_18.jpg","duration":876,"publication_date":"2017-06-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-lp-friday","changefreq":"weekly","video":[{"title":"2017:E166 - LET'S SLAY - Friday the 13th Gameplay","description":"If Jason doesn't kill vrigins then most of these Let's Play guys should be juuuust fine. BOOOOM! Take that, guys who are all more successful and make way more money than me and have probably gotten to second base with more girls than I ever will!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-lp-friday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa7584d4-30ab-4ec0-8481-c1735bc1434d/sm/2371242-1498690835144-FH_Thumb_17_copy_29.jpg","duration":1279,"publication_date":"2017-06-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments77","changefreq":"weekly","video":[{"title":"2017:E77 - ACTING IS EASY? - Funhaus Comments #77 ","description":"My high school existed in some bizarre mirror universe in which the theater kids were all straight-edge virgins and the band geeks crushed tail and drove around in sweet raised pick-ups. It's okay, though. I did learn to ACT like I understood how to speak to and sexually satisfy a woman. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78ffe7f9-f089-4e29-98db-5c08cda0cb84/sm/2371242-1498768769611-FH_Thumb_Template77.jpg","duration":509,"publication_date":"2017-06-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fortnite","changefreq":"weekly","video":[{"title":"2017:E164 - ERECT ALL DAY - Fortnite Gameplay","description":"Thank you to EPIC for sponsoring this video!Visit http://www.fortnite.com to pre-order or pre-register the game!\n\n\n\n\n\n\n\n\n\nI had no idea when I took this job that so much of it would be spent listening to everybody talk about how full and luscious Bruce's booty is.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fortnite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c10cee6-ceb4-471e-997e-170f3f2e8b92/sm/2371242-1498690147252-FH_Thumb_17_copy_17.jpg","duration":873,"publication_date":"2017-06-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-mi3","changefreq":"weekly","video":[{"title":"2017:E163 - RUNNING A TRAIN - GTA 5 Gameplay","description":"\"Mr. Woo, I'm sorry to disturb your uh... work... but do you really need to surgically hobble all of these doves to make them look like they're flying in slow motion? Couldn't we just slow it down in post?\"John Woo closes his eyes, reluctantly setting down his scalpel.\"... Are we artists, or are we whores?\"\"Uh... artis-\"\"Good. Now set up the \"Ving Rhames steps in poop\" scene. I'll be there in a minute.\"\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-mi3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19b52eee-d789-45aa-b283-e3cf4fcf82be/sm/2371242-1498587825031-FH_Thumb_17_copy_30.jpg","duration":828,"publication_date":"2017-06-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-geoffmatch","changefreq":"weekly","video":[{"title":"2017:E162 - DEATH TO HIPSTERS - GTA 5 Gameplay","description":"We liked liking cool things before they were cool before liking things before they were cool was cool.\n\n\n\n\n\n\n\nHipsters' Hassle - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/uUKo1WyFD0eTJlF8S3Bz5Q#\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/GeoffLRamseyTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-geoffmatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ae6b5cb-953b-4208-9a55-a4413a80e2f9/sm/2371242-1498587476494-FH_Thumb_17_copy_26.jpg","duration":557,"publication_date":"2017-06-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-dragon-ball-xenoverse-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E28 - Dragon Ball Xenoverse Gameplay","description":"Here's a real treat for you FIRST members. After the Xbox Conference, James had himself a little jaunt through Dragonballsland, and you will be the sole witnesses of his adventures!","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-dragon-ball-xenoverse-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2c77b6a-e1b4-4575-9e4c-bc74e2c45f1c/sm/1533704-1498596861134-DBZ.jpg","duration":2331,"publication_date":"2017-06-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds128","changefreq":"weekly","video":[{"title":"2017:E128 - NINTENDO BLEEDING US DRY? - Dude Soup Podcast #128","description":"Check out this week’s Blue Apron menu and get your first three meals free — with free shipping —by going to http://www.blueapron.com/soup\n\n\n\n\n\n\n\n\n\nGet 15% off today — with free shipping and free returns — by going to http://www.mvmt.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the gang discusses everything we know about the new SNES Mini as well as:37:00 - China cracking down on live streaming services41:40 - Automation of the workforce45:40 - New YouTube content policies56:00 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Time] Nintendo Says it Sold Over 2 Million NES Classics: http://time.com/4759594/nes-classic-millions-sales/[WSJ] Nintendo Battles Apple for Parts as Switch Demand Rises: https://www.wsj.com/articles/nintendo-battles-apple-for-parts-as-switch-demand-rises-1496136603[Reuters] China's authorities tighten noose around online video, audio content: http://www.reuters.com/article/china-internet-idUSL3N1JJ49W[Google] Four steps we’re taking today to fight terrorism online: https://www.blog.google/topics/google-europe/four-steps-were-taking-today-fight-online-terror/\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a21f1fc-59a3-4521-a322-6b42da8acdb8/sm/2371242-1498518172211-FH_Thumb_17_copy_27.jpg","duration":3910,"publication_date":"2017-06-27T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps128","changefreq":"weekly","video":[{"title":"2017:E128 - WE ARE BUDS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ad91282-d4aa-495c-80c3-fd1e9d7527bb/sm/2371242-1498514085445-DS_PostShow_Template_128.png","duration":2602,"publication_date":"2017-06-27T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh-123","changefreq":"weekly","video":[{"title":"2017:E123 - MARIO FUNHAUS CROSSOVER? - Open Haus #123","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nWhen I was in high school my parents, worried about my self-esteem, bought me a book on magic tricks and sleight of hand. I never got really good at it but it did give people something to mock me for besides my ponytail and weight problem for a change.Ta daa. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttps://twitter.com/idsanty\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e40f36c-37fd-4909-8a38-a7a5a23e0c86/sm/2371242-1498261201730-Openhaus_Thumbnail123_1.jpg","duration":802,"publication_date":"2017-06-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo-122","changefreq":"weekly","video":[{"title":"2017:E122 - BIG BEAUTIFUL WOMEN - Demo Disk Gameplay","description":"It has to stop. Jon will just keep making these disk demolitions more elaborate and dangerous until somebody gets seriously hurt. Is there no limit to your collective bloodlust? Shame on all of you.By the way: Pre-order your \"Jon Smith Official Disk Demolisher Cape and Hood\" today! Only in the Rooster Teeth Store! \n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aa36c92-5a17-4821-8047-6932ec7aff41/sm/2371242-1498267682225-FH_Thumb_17_copy_21.jpg","duration":845,"publication_date":"2017-06-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bigfootomar","changefreq":"weekly","video":[{"title":"2017:E161 - SHOT IN THE DARK - Finding Bigfoot Gameplay","description":"How the hell have there not been talks of a \"Cryptozoological Cinematic Universe\" yet?! You could have Bigfoot, Nessie, and the Chupacabra eventually team up to fight mermaids or Tom Cruise or something else stupid.Hold on. I have to email something to myself real quick.    Follow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/elysewillemshttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bigfootomar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78420692-4485-436d-bd72-73b157ece8fb/sm/2371242-1498243755126-FH_Thumb_17_copy_11.jpg","duration":1340,"publication_date":"2017-06-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-thumper","changefreq":"weekly","video":[{"title":"2017:E160 - PURE ECSTASY - Thumper Gameplay","description":"I was thinking of getting really into EDM but then I took one look at the pacifier costs alone and said \"#@!% it, I'm just gonna become a Juggalo\".Whoop Whoop, my ninjas!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-thumper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2313916c-b858-47da-84ae-0dd8d587d877/sm/2371242-1498242747286-FH_Thumb_17_copy_24.jpg","duration":1161,"publication_date":"2017-06-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-trans","changefreq":"weekly","video":[{"title":"2017:E15 - LOVE TO HATE TRANSFORMERS? - Movie Podcast","description":"This movie podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday Adam and the gang talk all things Transformers, including:3:30 - A recap of the franchise so far.20:10 - News about Transformers: The Last Knight.24:00 - The films vs the cartoons.27:40 - Domestic and international box office performance over the years.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-trans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36253e78-f649-4077-be2e-9fd1e60f50a0/sm/2371242-1498174668250-FH_Thumb_17_copy_20.jpg","duration":2025,"publication_date":"2017-06-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bestmay","changefreq":"weekly","video":[{"title":"2017:E159 - BEST OF ALIENS - Best Of Funhaus May 2017","description":"All of last month's best Funhaus moments, cut up and stitched together like a human centipede of comedy. \n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/mattseditbayhttp://twitter.com/jonsmiff\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bestmay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/446f446a-e224-4d59-b5bf-9a3f1ad8ccb2/sm/2371242-1498173965298-May2017.jpg","duration":954,"publication_date":"2017-06-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments76","changefreq":"weekly","video":[{"title":"2017:E76 - LORDS OF ESPORTS - Funhaus Comments #76","description":"Bring a print-out of this description along with proof of purchase of a Funhaus jersey to RTX this year and redeem them for a free 3 minute tickle fight with Jacob Fullerton!**(offer void in Texas)\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70b5fab8-a647-4372-9545-dbee624cc544/sm/2371242-1498162262829-FH_Thumb_Template76_1.jpg","duration":578,"publication_date":"2017-06-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-secret","changefreq":"weekly","video":[{"title":"2017:E158 - FAIL TO THE CHIEF - Secret Service Gameplay Part 2","description":"Watching the news the other day I finally realized that every time Trump says \"... and you know what that means\", what it really means is that he has no idea what the #*@% that means. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/682ac116-0f34-4246-ad46-bf12ed591f15/sm/2371242-1497988140925-FH_Thumb_17_copy_15.jpg","duration":710,"publication_date":"2017-06-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-e3-2017-pc-gaming-press-conference","changefreq":"weekly","video":[{"title":"2017:E25 - Drunk E3 2017 - PC Gaming Press Conference","description":"Prepare to be graced by the dynamic duo of drinking before noon, Lawrence and Omar! There's an hour of PC stuff as well.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-e3-2017-pc-gaming-press-conference","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0012dcc3-0a77-4cb6-9069-af3f368f2807/sm/1533704-1498090537908-DS_PostShow_TemplatePC.jpg","duration":6423,"publication_date":"2017-06-22T00:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-e3-2017-xbox-press-conference","changefreq":"weekly","video":[{"title":"2017:E27 - Drunk E3 2017 - Xbox Press Conference","description":"With the nonstop barrage of rad indie titles, Porsches, and Gareth Coker on a piano, behold what inebriation can do in the face of a pretty good E3 press conference.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-e3-2017-xbox-press-conference","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05719d42-2d9f-46a5-9c35-2026129ad9cd/sm/1533704-1498064427282-Xbox.jpg","duration":8191,"publication_date":"2017-06-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-e3-2017-sony-press-conference","changefreq":"weekly","video":[{"title":"2017:E26 - Drunk E3 2017 - Playstation Press Conference","description":"It's like Skyrim with VR! Wait... I already did that in another Drunk E3 description. Destiny looks cool though.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-e3-2017-sony-press-conference","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ed753f3-ef75-4456-b440-db72000e96e4/sm/1533704-1498080652280-Sony.jpg","duration":4322,"publication_date":"2017-06-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-e32017-bethesda","changefreq":"weekly","video":[{"title":"2017:E24 - Drunk E3 2017 - Bethesda/Devolver Digital Press Conference","description":"It's like Skyrim with VR! It's like Fallout with VR! It's like Bethesda with VR! ","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-e32017-bethesda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f32809c1-8155-453c-b701-2619b07b78a5/sm/1533704-1497911985059-DS_PostShow_TemplateBethesda.jpg","duration":5278,"publication_date":"2017-06-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-battlesloths-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E23 - Drunk Battlesloths Gameplay","description":"Sure, there's 15 minutes of setup, but watching a conveyor belt of drunk goofballs cycle into the webcam warrants a little wiggle room.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-battlesloths-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9a6b7a9-b03a-4bb2-8d14-54ccfff04e65/sm/1533704-1497979847052-Fullhaus_ThumbnailBattlesloths.jpg","duration":3133,"publication_date":"2017-06-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-drunk-e3-2017-ea-press-conference","changefreq":"weekly","video":[{"title":"2017:E22 - Drunk E3 2017 - EA Press Conference","description":"If you stick around long enough, you can watch 4 different groups of drunk people have separate conversations at the same time.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-drunk-e3-2017-ea-press-conference","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0456b99b-5f28-41fc-bcef-7bdad6188db9/sm/1533704-1497913511487-EA.jpg","duration":7874,"publication_date":"2017-06-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-5","changefreq":"weekly","video":[{"title":"2017:E157 - JUST THE TIPS - GTA 5 Gameplay","description":"Guy Fieri's former stylist once made the mistake of bleaching his entire goatee instead of just the middle chunk. Guy dipped him in beer-batter, tossed him in the deep fryer, and served him with \"Off-da-Hook Side-Winder Chili Fries\" and a side of \"Wow-sabi Cream\"! Love, peace, and taco grease, a-holes!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5fecfc4-087f-4568-bf69-f3b85ad54b2e/sm/2371242-1497987645526-FH_Thumb_17_copy_13.jpg","duration":811,"publication_date":"2017-06-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup127","changefreq":"weekly","video":[{"title":"2017:E127 - GTA 5 MODS ARE DEAD? - Dude Soup Podcast #127","description":"Get 20% off your Mack Weldon order by going to http://www.mackweldon.com and using promo code \"soup.\"\n\nAnd go to http://console.worldoftanks.com/promos/dudetank to get a free tank, garage slot and 3 days premium game time while this lasts. Codes are limited!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week Freddie Wong stops by to chat with the gang about:3:00 - Take Two shutting down mods on GTA20:20 - Steampunk and modern fashion30:15 - Is Freddie Wong really Freddie Wong?55:30 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/fwong\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/930a4017-0325-4284-8c88-97e627a032bd/sm/2371242-1497916364785-FH_Thumb_17_copy_16.jpg","duration":4194,"publication_date":"2017-06-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-we-are-totally-sober","changefreq":"weekly","video":[{"title":"2017:E127 - WE ARE TOTALLY SOBER","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-we-are-totally-sober","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0db6a7a4-cdbf-4b56-ac7d-6889d85b8d6e/sm/2371242-1497910372285-DS_PostShow_Template127.png","duration":3113,"publication_date":"2017-06-20T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh122","changefreq":"weekly","video":[{"title":"2017:E122 - WE MAKE A GAME SHOW? - Open Haus #122","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus”.\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nI read that Marc Summers won't even eat a meal anymore unless his wife throws it all in a kiddie pool at the bottom of a slide.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5842b0d6-de98-47c6-afc0-92f6e869a9e5/sm/2371242-1497668760643-Openhaus_Thumbnail122.jpg","duration":857,"publication_date":"2017-06-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-mlbhat","changefreq":"weekly","video":[{"title":"2017:E152 - FUNHAUS VS COW CHOP - MLB The Show 17 Gameplay (Let's Play League)","description":"Click the link below to get the new Funhaus Baseball Cap and more, only in the Rooster Teeth Store!\n\nhttps://goo.gl/gcj0Wv\n\n\n\n\n\n\n\n\n\n\n\nEach Dodger Dogs taste like it was hand made on a dare by a mental patient who hates food, baseball, America, and themselves.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemsTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-mlbhat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfbe33c4-5afa-4af3-8d7a-cdb7bf34965b/sm/2371242-1497653559595-FH_Thumb_17_copy_7.jpg","duration":894,"publication_date":"2017-06-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd121","changefreq":"weekly","video":[{"title":"2017:E121 - CALL OF BOOTY - Demo Disk Gameplay","description":"Make fun of that movie all you want, but if Morgan Freeman and peak Angelina Jolie came up to you and asked you to kill some dude because a loom said so, you'd probably do it too. \n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a2e8a0d-a8f9-40de-96c0-740ddbb5983b/sm/2371242-1497668335701-FH_Thumb_17_copy_9.jpg","duration":935,"publication_date":"2017-06-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-destiny-2-pc-4-k","changefreq":"weekly","video":[{"title":"2017:E155 - WE LOVE VIDEO GAMES - Destiny 2 Gameplay (4K on PC)","description":"I asked Jacob if he wanted to watch a rough cut of this video. He said he couldn't at work because he didn't bring a change of shorts.  Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreene\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-destiny-2-pc-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10c4fd1b-eaac-4f53-b916-727d11c5e4c7/sm/2371242-1497661403865-FH_Thumb_17_copy_5.jpg","duration":859,"publication_date":"2017-06-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-f13p2","changefreq":"weekly","video":[{"title":"2017:E151 - KILL THEM ALL! - Friday the 13th Gameplay Part 2","description":"Hey dummies! It's not the Jason from Jason Goes to Hell: The Final Friday! It's clearly Jason From Friday the 13th Part VI: Jason Lives, where Tommy Jarvis accidentally brings Jason back to life when he jams that gate spike into his chest and it gets struck by lightning! What is wrong with you people?!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-f13p2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39b3bdcf-a66e-4716-894b-4aca90375f78/sm/2371242-1497652981111-FH_Thumb_17_copy_4.jpg","duration":1171,"publication_date":"2017-06-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sloths","changefreq":"weekly","video":[{"title":"2017:E156 - DRUNK AND HUNGRY - Battlesloths Gameplay","description":"Sure. Maybe this game would have been easier to play if we weren't all stinking drunk. Maybe I do drink a little too much in general. And maybe I shouldn't have flipped off my entire AA meeting and then punched the shift manager of that Arby's. Maybe.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcitohttps://twitter.com/RahulKohli13https://twitter.com/jack_phttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sloths","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7709e957-db4f-4496-9ebe-3592b4c54e22/sm/2371242-1497665853959-FH_Thumb_17_copy_3.jpg","duration":568,"publication_date":"2017-06-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-f-h-mass-effect-andromeda-m-p-sales","changefreq":"weekly","video":[{"title":"2017:E153 - TAP THAT MASS - Mass Effect: Andromeda Gameplay","description":"Thank you to EA for sponsoring this video!\n\n\n\n\n\n\n\n\n\n\n\n\n\nBe patient, Lawrence. You'll get there. One day you will ascend, becoming the smooth, fish-eyed, solitary space-baby you've always wanted to be.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-f-h-mass-effect-andromeda-m-p-sales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3faa979e-bd4c-47f7-8ee9-2edebcdee1c3/sm/1533704-1497570701932-FH_Thumb_17_copy_1.jpg","duration":1133,"publication_date":"2017-06-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments75","changefreq":"weekly","video":[{"title":"2017:E75 - OUR FAVORITE POSITION? - Funhaus Comments #75","description":"Abstinence is the only true way to prevent pregnancy and STDs. Trust me. I have been involuntarily saving myself for the right girl for over 3 decades and I am clean as a whistle.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94582872-46e7-4e8b-aded-5e20512a568e/sm/2371242-1497556854334-FH_Thumb_Template75.jpg","duration":580,"publication_date":"2017-06-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-typo","changefreq":"weekly","video":[{"title":"2017:E150 - WE AM READ GOOD - Typoman Gameplay","description":"Get Typoman at 15% Discount (Official Store) with the code funhaus15: http://bit.ly/TypomaNThank you to Brainseed Factory for sponsoring this video!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThere is absolutely nothing funny about watching a child struggle with dyslexia. But a thirty-something YouTuber? For some reason that is god-damn hilarious.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/adamkovichttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-typo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/478fb48a-4a47-4e47-924a-82f5b38ddd0e/sm/2371242-1497482244438-FH_Thumb_17_copy_2.jpg","duration":1102,"publication_date":"2017-06-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-mi-1","changefreq":"weekly","video":[{"title":"2017:E148 - ESCAPE FROM FLAVORTOWN! - GTA 5 Gameplay","description":"Your mission Huskies, should you choose to accept it: Dress like 1920's gangsters... or 2010's Food Network hosts... fine, or Tom Cruise or whatever who cares. Then take the moonshine to th- y'know what forget it. Do whatever you want. As always, should you or any of your team be caught or killed, I'll sleep soundly tonight.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-mi-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20fd1951-b45f-4c8e-a947-1a5228f47b51/sm/2371242-1497398745374-FH_Thumb_17_copy_17.jpg","duration":791,"publication_date":"2017-06-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtapamrace","changefreq":"weekly","video":[{"title":"2017:E149 - GIRLS ARE GROSS - GTA 5 Gameplay","description":"Twice the ladies on this episode means twice the beauty, twice the smarts, twice the menstrual syncing, and for some reason, twice the Joel Schumacher talk.\n\n\n\n\n\n\n\n\n\n!I'ma Ruin You C#nt: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/poQn-V-GdUKIv17xNilx1g#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/PamelaHorton13\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtapamrace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb12d95-94ea-4367-9dd2-4cf8b8f68eaf/sm/2371242-1497398198876-FH_Thumb_17_copy_16.jpg","duration":845,"publication_date":"2017-06-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds126","changefreq":"weekly","video":[{"title":"2017:E126 - Ubisoft E3 DRINKING GAME - Dude Soup Podcast #126","description":"Get our exclusive $5 shave box at http://www.dollarshaveclub.com/dude\n\nand start your free 7 day trial at http://www.graphicstock.com/dude\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUgh boy. We've got a mid drunk-stream podcast surprise for you guys, covering all the reveals from the Ubisoft event including:3:30 - Mario + Rabbids18:45 - Assassin's Creed Origins24:20 - The Crew 233:10 - South Park: The Fractured But Whole35:00 - Transference VR37:12 - Skull and Bones49:00 - Just Dance 201852:00 - South Park: Phone Destroyer53:15 - Starlink: Battle for Atlas57:00 - Steep: Road to the Olympics1:00:15 - Far Cry 51:05:40 - Beyond Good and Evil 21:14:30 - Recap and prediction \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcitoTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a88f2651-f00a-4e22-9fa9-12d357f63c65/sm/2371242-1497385691654-UbiDrunkStream.png","duration":4887,"publication_date":"2017-06-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh121","changefreq":"weekly","video":[{"title":"2017:E121 - FUNHAUS REBOOTED? - Open Haus #121","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSirLarr's Laws of Robotics: 1. A robot may not injure a human being or, through inaction, allow a human being to come to harm.2. A robot must obey orders given it by human beings except where such orders would conflict with the First Law.3. A robot must protect its own existence as long as such protection does not conflict with the First or Second Law.4. Only use water soluble lube.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83dd7f6f-28d9-49ff-9cce-60f5217ad1a3/sm/2371242-1497055626646-Openhaus_Thumbnail121.jpg","duration":756,"publication_date":"2017-06-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo120","changefreq":"weekly","video":[{"title":"2017:E120 - FIST AND FURIOUS - Demo Disk Gameplay","description":"You just know that right now, somewhere in Hollywood, Paul Walker's brother is standing outside Vin Diesel's house with mo-cap dots drawn all over his face screaming his ideas for the next 3 Fast and Furious movies at a closed window. \n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0644b75-d2e5-478e-b8f7-64d0272eee1f/sm/2371242-1497059758643-FH_Thumb_17_copy_14.jpg","duration":969,"publication_date":"2017-06-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ghuessrahul2","changefreq":"weekly","video":[{"title":"2017:E146 - IMMIGRANTS VS AMERICANS - Gmod Guess Who Gameplay","description":"Dang immigrants! Comin' over here and takin' all all those sweet CW horror/comedy procedural show supporting roles away from us ordinary Americans! I should be playing Dr. Ravi Chakra-whatever!  Follow us on Twitter: \n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ghuessrahul2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67225764-cbca-41bb-ba5c-b196bb6c5279/sm/2371242-1497032599186-FH_Thumb_17_copy_9.jpg","duration":872,"publication_date":"2017-06-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-friday1","changefreq":"weekly","video":[{"title":"2017:E147 - SEX KILLS! - Friday the 13th Gameplay Part 1","description":"The first time I ever saw nudity in a movie was while watching my friend's older brother's Betamax copy of Friday the 13th Part 3. I think that might be why, to this day, I cry and pee my pants every time a woman talks to me. At least I hope it's that and not something weird.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-friday1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d439114e-df7a-4b22-8a3e-bdabc415ae66/sm/2371242-1497031588972-FH_Thumb_17_copy_7.jpg","duration":700,"publication_date":"2017-06-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-f-h-filmhaus-wonder-woman","changefreq":"weekly","video":[{"title":"2017:E14 - WONDER WOMAN WINS THE WORLD? - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday Adam and the gang review the new  Wonder Woman movie, talk women in cinema, and discuss why some comic book films are great, and others are garbage.Also, Bruce and Adam interview Joel Hodgson, creator of Mystery Science Theater 3000, about the latest version of the show and it's relation to modern let's play content!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttps://twitter.com/JoelGHodgson\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-f-h-filmhaus-wonder-woman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51870f29-d46b-410c-947e-36313b7b03a9/sm/2371242-1496964261252-FH_Thumb_17_copy_12.jpg","duration":2164,"publication_date":"2017-06-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sword2","changefreq":"weekly","video":[{"title":"2017:E145 - NINJA BLOODBATH - Sword with Sauce Gameplay","description":"Note to self: Never get left on a deserted island with Lawrence. Or go on a camping trip with him. Or go anywhere where there might be snakes.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sword2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2e45da8-8f89-46e1-b2f8-5e4fb5d29b3b/sm/2371242-1496963451801-FH_Thumb_17_copy_5.jpg","duration":1200,"publication_date":"2017-06-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments74","changefreq":"weekly","video":[{"title":"2017:E74 - HEROES WE DESERVE! - Funhaus Comments #74","description":"When asked in a recent interview if his daughter Suri ever gets nervous about all the crazy stunts in his films, Tom Cruise responded: \"Ha! Me? A Daughter? That's rich! Suri's not even a real name!\", then put on a pair of Ray-Bans and strapped himself to the side of a descending submarine.\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37295b00-c4fe-4607-bef9-357056b2992e/sm/2371242-1496952148086-FH_Thumb_Template74.jpg","duration":517,"publication_date":"2017-06-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-3-trailer","changefreq":"weekly","video":[{"title":"2017:E2 - WE ARE FUNHAUS!","description":"Times are changing and Funhaus has decided to change with them. We now have a woman, a Cuban, AND a half-Filipino! It's like the god-damn United Nations over here.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/thenasacovahttp://twitter.com/mattseditbayhttp://twitter.com/omarcitohttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttps://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-3-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d1d189a-5f54-4606-ac1b-1b2b187765b0/sm/2371242-1496866905833-FH_Thumb_15_copy_20.jpg","duration":162,"publication_date":"2017-06-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-moto-drugs-2","changefreq":"weekly","video":[{"title":"2017:E144 - CHRONIC FATIGUE - GTA 5 Gameplay","description":"Bad things happen when you do drugs, kids. One time my cousin peer-pressured me to smoke pot so I did and then I caught some ash in my throat and puked all over my comics. Learn from my mistakes. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-moto-drugs-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1011426-3eb3-46bd-a2e5-93e64e5a9997/sm/2371242-1496779270175-GTAThumbnail.jpg","duration":847,"publication_date":"2017-06-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-swamp","changefreq":"weekly","video":[{"title":"2017:E143 - DRAIN THE SWAMP - GTA 5 Gameplay","description":"If I had a time machine I'd go back to 2010 and nab the merkin contracts for Spartacus, Game of Thrones, and all these other period piece nudie cable shows. Do you have any idea how much money is in those fluffy little guys? Oh yeah, and then I'd kill baby Hitler or whatever.\n\n\n\n\n\n\n\nThis is my SWAMP! - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/oOVcZaF-SUS8QV9lMhNcuw#\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-swamp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61eeff4f-2fb5-4c6d-8a3e-f96ce9100b50/sm/2371242-1496769246435-FH_Thumb_15_copy_14.jpg","duration":795,"publication_date":"2017-06-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-wwe-2-k17-gameplay-wwf-pay-per-view-fullhaus","changefreq":"weekly","video":[{"title":"2017:E21 - WWE 2K17 Gameplay: WWF Pay Per View","description":"Here's 90 minutes of pure adrenaline pumping through Sacramento's collective veins. Eat your heart out, WWE.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-wwe-2-k17-gameplay-wwf-pay-per-view-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71c5347-3f2c-4aad-b56e-5a24cd408ada/sm/1533704-1496427654925-Fullhaus_Thumbnail_WWF_PPV.jpg","duration":5287,"publication_date":"2017-06-06T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude-soup-125","changefreq":"weekly","video":[{"title":"2017:E125 - \"It's like Netflix with Games!\" - Dude Soup Podcast #125","description":"Get your $15 shave value for only $5 by going to http://www.dollarshaveclub.com/dude\n\nAnd check out this week’s menu and get your first three meals free with free shipping by going to http://www.blueapron.com/soup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the gang gets all worked up about the new upcoming Nintendo Online services as well as:15:00 - Xbox Game Pass24:30 - Steam Direct41:20 - Random Funhaus tomfoolery46:45 - Hard Nettin'53:50 - Rooster Teeth Gaming news55:40 - Japanese console game releases\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:Nintendo Online Service: http://www.nintendo.com/switch/online-service/[Kotaku] Nintendo Switch's Online Service Will Be $20/Year, Includes Classic Games: http://kotaku.com/nintendo-details-switch-online-service-will-be-20-yea-1795743981Xbox Game Pass: http://www.xbox.com/en-US/games/xbox-game-pass[Gamasutra] How do game devs feel about Steam Direct's $100 fee?http://www.gamasutra.com/view/news/299283/How_do_game_devs_feel_about_Steam_Directs_100_fee.php[GamesIndustry] David Eddings joins Rooster Teeth Games: http://www.gamesindustry.biz/articles/2017-06-02-david-eddings-joins-rooster-teeth-games[Time] Everything Sony Told Us About the Future of PlayStation: http://time.com/4804768/playstation-4-ps4-pro-psvr-sales/\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN: The Girls watch themselves on Dude Soup / Funhaus - \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude-soup-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fa03c83-b92d-4c4d-968f-aab5a04a0714/sm/2371242-1496705317654-FH_Thumb_17_copy_6.jpg","duration":3521,"publication_date":"2017-06-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps125","changefreq":"weekly","video":[{"title":"2017:E125 - WE ARE DELICATE","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33533311-c61d-44e3-a585-dfa1f8fc78d0/sm/2371242-1496700611029-DS_PostShow_Template125.png","duration":3443,"publication_date":"2017-06-06T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh-120","changefreq":"weekly","video":[{"title":"2017:E120 - BEST CONSOLE EVER? - Open Haus #120","description":"This episode of Open Haus is brought to you by Vincero Collective. Go to www.vincerocollective.com/openhaus to get 15% off your very own Vincero watch!\n\n\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"On three separate occasions, a research team spotted young male seals sexually coercing what appeared to be healthy penguins of unknown gender.All four known sexual incidents followed a common pattern. Each time a seal chased, captured and mounted the penguin. The seal then attempted copulation several times, lasting about five minutes each, with periods of rest in between.Male and female penguins mate via an opening called a cloaca, and the seals are thought to have actually penetrated the penguins in some of the acts, which were caught on film.In three of the four recorded incidents the seal let the penguin go. But on one of the more recent occasions, the seal killed and ate the penguin after trying to mate with it.The incidents are the only time pinnipeds, the group that includes seals, fur seals and sea-lions, have been known to have sex with an animal from a different biological class, in this case a mammal trying to have sex with a bird.The scientists can only speculate about why the seals are behaving this way.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3989462-39fd-4db6-a19e-b47d6c0c4686/sm/2371242-1496449526733-Openhaus_Thumbnail120.jpg","duration":676,"publication_date":"2017-06-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd-119","changefreq":"weekly","video":[{"title":"2017:E119 - GOTTA GO FAST! - Demo Disk Gameplay","description":"\"Street Fighter: The Legend of Chun Li\" would have been a better film if every part had been played by Raul Julia's corpse. I'm sorry. That was crass and insensitive. Raul Julia's corpse would never have lowered itself to appear in that piece of s*** movie.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7417d9f-8ca8-4f3f-b24e-649a1646aacd/sm/2371242-1496548757606-FH_Thumb_17_copy.jpg","duration":804,"publication_date":"2017-06-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-giant-spiders","changefreq":"weekly","video":[{"title":"S1:E180 - Top 10 Giant Spiders","description":"Bolen counts down the best giant spiders in the history of the world ever. EVER!","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-giant-spiders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a014f11-bcab-4ce4-b914-28a81bafc3a6/sm/2056961-1461782644075-Spider_Thumb.jpg","duration":517,"publication_date":"2016-04-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-getting-cramps-by-sitting-down-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E232 - Getting Cramps By Sitting Down | SideScrollers Extended Cut","description":"How Craig manages to cramp up by sitting down is beyond us.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-getting-cramps-by-sitting-down-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55d70557-75c7-4e1f-b518-b3aa66a49d5e/sm/2056961-1461704454450-04_26_16_SideScrollersExtendedThumb.jpg","duration":698,"publication_date":"2016-04-27T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-change-is-not-a-bad-thing","changefreq":"weekly","video":[{"title":"S1:E231 - Change is NOT a Bad Thing","description":"The internet HATES change, but is it really such a bad thing? No.\n\n\n\nWatch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://bit.ly/SponsorSA\n\n\n\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun!\n\n\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\n\n\nConnect with ScrewAttack Online:\n\n\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-change-is-not-a-bad-thing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82f4d492-0602-412a-9452-b936a757a152/sm/2056961-1461703524739-04_26_16_SideScrollersThumb.jpg","duration":3117,"publication_date":"2016-04-27T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-are-we-ready-for-more-gears-of-war","changefreq":"weekly","video":[{"title":":E23 - Are We Ready For More Gears of War?","description":"Gears of War has gone back to the future, but do we want to go back to Gears?\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.com\n\nAsk us things on Twitter using the hashtag #AvailableNow\n\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-are-we-ready-for-more-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fea89dca-8f15-424f-bbe6-e22e361dae9f/sm/2097098-1461703615000-042616_AvailableNow.jpg","duration":3655,"publication_date":"2016-04-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-ratchet-clank-vs-jak-daxter","changefreq":"weekly","video":[{"title":"S3:E3 - Ratchet & Clank VS Jak & Daxter","description":"It's the battle of the dynamic duos! Which of these PlayStation all-stars will demolish the competition?\n\nThis episode of sponsored by our newest game AVGN II! Pick it up here: http://bit.ly/AVGN2onSteam\n\n\n\nLove DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com! Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttack We greatly appreciate your support!\n\n\n\nShow some love and look great. Pick up some NEW DEATH BATTLE and ScrewAttack merchandise in our NEW store: http://bit.ly/DBShirt\n\n\n\nFind out who the next fighters will be squaring off against by following us on social media:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nCredits\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\nWriter & Project Lead: Nick Cramer - https://twitter.com/THENervousNick\n\nAnimator: Torrian Crawford - https://twitter.com/AnimatedTorrii\n\nAnimation Assistant: Da Vaughn \"Deejay\" Henderson Jr. - https://twitter.com/deejayhyuga\n\nVoice of Ratchet: Daniel J Edwards - https://twitter.com/Jackydan513\n\nVoice of Clank: Josh Tomar - https://twitter.com/tomamoto\n\nVoice of Jak: Matthew Shipman - https://twitter.com/MattShipmanVO\n\nVoice of Daxter: Todd Haberkorn - https://twitter.com/ToddHaberkorn\n\nBattle Announcer: Christopher Guerrero - https://twitter.com/ChrisGuerreroVA\n\nCasting & Voice Direction: Marissa Lenti - https://twitter.com/LentiSoup\n\nAsst. Voice Director: Brittany Lauda - https://twitter.com/BrittanyLaudaVO\n\nMotion Capture Actor: John Francis McCullagh https://twitter.com/johnfmfilms\n\nSound Design: Noel Wiggins - http://twitter.com/NOELWIGGINSfilm","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-ratchet-clank-vs-jak-daxter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb210025-1131-4f62-b44b-8ee5363ccf05/sm/2097099-1461571426796-DB_060.jpg","duration":1188,"publication_date":"2016-04-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-jon-snow-is-the-biggest-bastard-on-tv-who-is","changefreq":"weekly","video":[{"title":"S2:E2 - Jon Snow is the Biggest Bastard on TV | \"Who Is\"","description":"Is he alive? Is he dead? Who the fuck cares. One thing we do know: he's a bastard.","player_loc":"https://roosterteeth.com/embed/who-is-season-2-jon-snow-is-the-biggest-bastard-on-tv-who-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef6aeaae-aee4-49d9-b0a7-fec3fbbf1738/sm/2056961-1461265295818-WhoisJonSnowThumb.jpg","duration":367,"publication_date":"2016-04-22T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-the-most-derpy-scray-pok-mon-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E30 - The Most Derpy & Scary Pokémon","description":"Not only do they have stupid names, they also do stupid things!\n\n\n\nThis episode is sponsored by CrunchyRoll. Get all the anime you can handle by going here: http://CrunchyRoll.com/DEATHBATTLE\n\n\n\nUse code SCREW to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-the-most-derpy-scray-pok-mon-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28453e53-bb88-4689-aa33-bba835dcb642/sm/2056961-1461265723040-04_21_16_DeskofPokemonDerpThumb.jpg","duration":287,"publication_date":"2016-04-22T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-taiwan-s-a-crazy-place-screw-attack-s-podcast-side-scrollers","changefreq":"weekly","video":[{"title":"S1:E229 - Taiwan's a Crazy Place | ScrewAttack's Podcast \"SideScrollers\"","description":"Craig and Sam return from Taiwan with some amazing life adventures and story time!\n\n\n\nSend us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-taiwan-s-a-crazy-place-screw-attack-s-podcast-side-scrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e75c87a-b28d-49b0-9124-6c752705148d/sm/2056961-1461185243216-04_20_16_SideScrollersThumb.jpg","duration":3249,"publication_date":"2016-04-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-denzel-washington-is-a-damn-fine-actor-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E230 - Denzel Washington is a Damn Fine Actor | SideScrollers Extended Cut","description":"The guys chat about one of the best actors of this or any generation.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-denzel-washington-is-a-damn-fine-actor-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8757fb6-bf59-450a-b581-a48b12fe40c4/sm/2056961-1461185667711-04_20_16_SideScrollersExtendedThumb.jpg","duration":607,"publication_date":"2016-04-20T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-consoles-ever","changefreq":"weekly","video":[{"title":"S1:E179 - Top 10 Consoles Ever Made","description":"This is it. After 10 years of Top 10s we FINALLY list off the best video consoles ever made.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-consoles-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23a59100-f8d1-441e-ba1f-36abad470e7a/sm/2056961-1461166697640-alt.jpg","duration":641,"publication_date":"2016-04-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-you-ready-for-star-fox-g-u-a-r-d","changefreq":"weekly","video":[{"title":":E22 - What The Hell Is Star Fox GUARD?!?","description":"Vote and show us what you're HYPED for! (http://strawpoll.me/7420048)Show us your best moves and failures! Live@ScrewAttack.comAsk us things on Twitter using the hashtag #hypemeter\n\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-you-ready-for-star-fox-g-u-a-r-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bec2f56-cd98-4728-bf14-b62fc962890a/sm/2097098-1461100610242-StarFoxThumb.jpg","duration":3956,"publication_date":"2016-04-19T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-star-wars-games","changefreq":"weekly","video":[{"title":"S1:E55 - Five Fun Facts - Star Wars Games","description":"One of the best decisions George Lucas has made is a cancelled game?","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-star-wars-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41a53de2-0920-4afa-8f2c-e68cf962d11c/sm/2056961-1461035604728-04_18_16_FFF_StarWarsThumb.jpg","duration":252,"publication_date":"2016-04-19T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-let-s-play-live-we-ll-murder-e-v-e-r-y-o-n-e","changefreq":"weekly","video":[{"title":"S1:E928 - Let's Play Live! - We'll Murder EVERYONE!","description":"It's ScrewAttack vs Achievement Hunter vs Funhaus vs Kinda Funny vs The Creatures! Come to Let's Play Live in Los Angeles, CA - http://www.RoosterTeethLive.com use code \"SCREW\" to get discounts... because ScrewAttack is too naughty or something.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-let-s-play-live-we-ll-murder-e-v-e-r-y-o-n-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a94d39d-e443-4a6a-ad63-99e98132c84f/sm/2056961-1460946744240-04_17_16_LetsPlayThumb.jpg","duration":242,"publication_date":"2016-04-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-jak-daxter-take-aim-for-a-death-battle","changefreq":"weekly","video":[{"title":"S1:E12 - Jak & Daxter Take Aim For A Death Battle!","description":"Their opponents may have some nifty weapons, but Jak & Daxter are packing some deadly assets of their own!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-jak-daxter-take-aim-for-a-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e97f92bc-964b-4f08-a2f0-e5955597f9fa/sm/2097099-1460962328281-jakdaxterpreviewTHUMB.jpg","duration":187,"publication_date":"2016-04-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-extended-cut-civil-w-a-r","changefreq":"weekly","video":[{"title":"S1:E228 - Extended Cut - CIVIL WAR!","description":"S1:E228 - Extended Cut - CIVIL WAR!","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-extended-cut-civil-w-a-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e87ae6f-80a4-45db-a760-90f916690a03/sm/2097098-1460583203972-04_13_16_EC.jpg","duration":672,"publication_date":"2016-04-13T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-i-t-s-time-for-d-e-a-t-h-s-c-r-o-l-l-e-r-s","changefreq":"weekly","video":[{"title":"S1:E227 - DEATH BATTLE Hosts SideScrollers!","description":"Send us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-i-t-s-time-for-d-e-a-t-h-s-c-r-o-l-l-e-r-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2937f19-d2da-4cd7-a817-f06d09836f93/sm/2097098-1460582244552-04_13_16_SS.jpg","duration":3475,"publication_date":"2016-04-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-toilets-in-gaming","changefreq":"weekly","video":[{"title":"S1:E178 - Top 10 Toilets in Gaming","description":"We celebrate the greatest porcelain thrones in all of gaming. Yes... Toilets.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-toilets-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e721d710-acfe-4094-ba33-0bf4191dd5e2/sm/2056981-1460514783805-04_08_16_Top10ToiletsTHumb.jpg","duration":440,"publication_date":"2016-04-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-dark-souls-3-will-be-the-end-of-us","changefreq":"weekly","video":[{"title":":E21 - Dark Souls 3 Will Be the End of Us!","description":"This episode of Available Now is brought to you by Geek Fuel. Show your support for the show and pick up a Geek Fuel box here: https://www.geekfuel.com/AvailableNow\n\nShow us your best moves and failures! Live@ScrewAttack.comAsk us things on Twitter using the hashtag #hypemeter\n\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-dark-souls-3-will-be-the-end-of-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b5d0e84-8a1e-498d-94ff-9f70fdb62477/sm/2097098-1460492491527-041216AvailableNow.jpg","duration":3398,"publication_date":"2016-04-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-sid-meier-s-civilization","changefreq":"weekly","video":[{"title":"S1:E54 - Five Fun Facts - Sid Meier's Civilization","description":"Did you know Gandhi was evil? Not just evil but the worst person in the world?","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-sid-meier-s-civilization","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d7b4494-c9bb-4581-bdff-a3b5d9c5a6bd/sm/2056961-1460418818830-04_12_16_FFF_Civthumb.jpg","duration":277,"publication_date":"2016-04-12T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-ratchet-clank-lock-and-load-for-a-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E11 - Ratchet & Clank lock and load for a DEATH BATTLE!","description":"The duo famous for outlandish weapons comes from humble origins. Find out more before they square off against Jak & Daxter!","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-ratchet-clank-lock-and-load-for-a-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27518e14-3bab-484d-a0b4-ab325d6cdf7f/sm/2097099-1460342701481-ratchetclankpreviewTHUMB.jpg","duration":161,"publication_date":"2016-04-11T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-screw-attack-achievement-hunter-are-the-bad-guys","changefreq":"weekly","video":[{"title":"S1:E927 - ScrewAttack & Achievement Hunter are The Bad Guys","description":"While at a tournament Craig and Jeremy from AH got together to be the most hated people in the event... by being bad guy wrestlers. What could be more fun than yelling at Adam Sessler? Nothing.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-screw-attack-achievement-hunter-are-the-bad-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96da865a-c858-4bde-87b9-bdeef3c53c17/sm/2056961-1460146629818-04_08_16_BadGuyThumb2.jpg","duration":413,"publication_date":"2016-04-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-the-video-game-vault-is-b-a-c-k","changefreq":"weekly","video":[{"title":"S1:E926 - The Video Game Vault is BACK!","description":"Yes! We're bringing back the Video Game Vault in book form! The first book in the VGV series is about the Nintendo 64 and will be available this summer! Pre-order the book now on Amazon here: http://bit.ly/ScrewAttackN64Book","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-the-video-game-vault-is-b-a-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08d455ea-40b5-44cc-a746-07f1a3ec0288/sm/2056961-1460210267999-VGVBookPromoThumb-2.jpg","duration":67,"publication_date":"2016-04-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-green-arrow-s-horrible-special-arrows-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E29 - Green Arrow's Horrible Special Arrows | The Desk of DEATH BATTLE","description":"Green Arrow sure has pulled a lot of crappy weapons out of his quiver...","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-green-arrow-s-horrible-special-arrows-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd27d86a-8eeb-4ece-8277-e0dd72832064/sm/2056961-1460130314931-04_08_16_DeskofTHumb.jpg","duration":259,"publication_date":"2016-04-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-boomstick-s-top-10-power-armors","changefreq":"weekly","video":[{"title":"S1:E177 - Boomstick's Top 10 Power Armors","description":"DEATH BATTLE's Boomstick gives you his favorite power armors in history.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-boomstick-s-top-10-power-armors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/876e2a1d-909c-4a8d-8fd1-d35c9ebd0bd4/sm/2056961-1460127958582-04_08_16_Top10PowerArmorsThumb.jpg","duration":532,"publication_date":"2016-04-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-we-like-weird-music-extended-cut","changefreq":"weekly","video":[{"title":"S1:E226 - We Like Weird Music | Extended Cut","description":"S1:E226 - We Like Weird Music | Extended Cut","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-we-like-weird-music-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8fa64b3-fbee-4696-a4d6-a10179777639/sm/2097098-1459983758212-040616_ExtendedCut.jpg","duration":486,"publication_date":"2016-04-06T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-wang-whacker","changefreq":"weekly","video":[{"title":"S1:E225 - The Wang Whacker","description":"Send us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.comGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-wang-whacker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04159ddc-12d7-4fd8-bd22-329a08e8dcd7/sm/2097098-1459983745944-040616_SideScrollers.jpg","duration":2466,"publication_date":"2016-04-06T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-is-star-fox-d-o-o-m-e-d","changefreq":"weekly","video":[{"title":":E20 - Is Star Fox DOOMED?","description":"This episode of Available Now is brought to you by Geek Fuel. Show your support for the show and pick up a Geek Fuel box here: https://www.geekfuel.com/AvailableNow\n\n\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.com\n\nAsk us things on Twitter using the hashtag #hypemeter","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-is-star-fox-d-o-o-m-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25671ed8-7628-4844-bb4e-b3cc4637c1b1/sm/2097098-1459888780168-040516_AN.jpg","duration":2836,"publication_date":"2016-04-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-sega-dreamcast","changefreq":"weekly","video":[{"title":"S1:E53 - Five Fun Facts - SEGA Dreamcast","description":"The best console that never was? Here's five facts that you probably didn't know about the SEGA Dreamcast.\n\n\n\nPick up some ScrewAttack merch and get 13% off by using promo code \"RT13\" - http://store.roosterteeth.com/collections/screwattack","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-sega-dreamcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52d569d6-ffa7-4a84-b807-43a722651fd6/sm/2056961-1459720566223-04_03_FFF_DreamcastThumb.jpg","duration":242,"publication_date":"2016-04-05T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-12","changefreq":"weekly","video":[{"title":"E:E15 - Animating Dante VS Bayonetta (Behind the Scenes)","description":"SPONSOR VIDEO - Meet the two talented guys who did the motion capture for Dante vs Bayonetta and see some behind the scenes ScrewAttack magic.","player_loc":"https://roosterteeth.com/embed/death-battle-extras-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e56e439-817b-4a68-ab84-34e7b47b3c2e/sm/2056961-1459444383534-Screen_Shot_2016-03-31_at_12.08.18_PM.png","duration":73,"publication_date":"2016-04-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-bowser-vs-ganon-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S3:E2 - Bowser VS Ganon","description":"Two of Nintendo's all-time favorite bosses square off in a battle of all that is evil.\n\n\n\nLove DEATH BATTLE? Watch episodes early by becoming a Sponsor on ScrewAttack.com. Click here for a FREE 30 day trial: http://bit.ly/SponsorScrewAttack We greatly appreciate your support!\n\n\n\nShow some love and look great. Pick up some NEW DEATH BATTLE and ScrewAttack merchandise in our NEW store: http://bit.ly/DBShirt\n\n\n\nFind out who the next fighters will be squaring off against by following us on social media:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nCredits\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad\n\nAnimator: Donald Gagnon - https://twitter.com/Donimations\n\nWriter: Sam Mitchell - https://twitter.com/ScrewAttackSam\n\nWriter: Jessica Davis - https://twitter.com/jldtweets\n\nEditor: Gerardo Mejia - https://twitter.com/HybridRain\n\nBattle Announcer: Christopher Guerrero - twitter.com/ChrisGuerreroVA\n\nGanondorf Sprites: Gregarlink10 - http://bit.ly/1RF0fsx\n\nOriginal Battle Music: Brandon Yates - https://twitter.com/bmichaelyates Check out his music here - https://www.youtube.com/watch?v=edZ3b9w_SlI","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-bowser-vs-ganon-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6408dac0-0fb1-46ca-b140-6184fac77f39/sm/2056961-1459690689221-DB_059.jpg","duration":859,"publication_date":"2016-04-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-season-2-the-punisher-could-have-killed-the-joker-who-is","changefreq":"weekly","video":[{"title":"S2:E1 - The Punisher Could Have Killed The Joker?? | \"Who is\"","description":"In the season 2 premiere of \"Who Is\" Chad dives into the background of Frank Castle aka \"The Punisher!\" Did you know the ultimate vigilante had a chance to take down one of Gotham City's biggest villains? Unfortunately SOMEONE f'd it up.","player_loc":"https://roosterteeth.com/embed/who-is-season-2-the-punisher-could-have-killed-the-joker-who-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36dfcea7-c483-46b2-8e49-0dc71eb31655/sm/2056961-1459395226546-03_30_16_WhoIsPunisherThumb.jpg","duration":298,"publication_date":"2016-04-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-video-game-ever-the-1-show","changefreq":"weekly","video":[{"title":":E11 - What's The #1 Video Game Ever? | The #1 Show","description":"In the season finale of The #1 Show Craig, Shaun and expert Sean tackle the greatest question of all-time.\n\n\n\nSponsors can vote here:http://strawpoll.me/7234777","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-video-game-ever-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21bad9ae-c68b-4ea0-8fc1-777b26249af1/sm/2056961-1459392786018-03_30_16_NumberOneThumb.jpg","duration":950,"publication_date":"2016-04-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-worst-first-date-stories-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E224 - The Worst First Date Stories | SideScrollers Extended Cut","description":"SPONSOR VIDEO - Did you know Chad makes the same voice everytime he speaks about a girl he doesn't like?","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-worst-first-date-stories-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8ce168c-37d7-4bec-9a46-afa8c2ed1edc/sm/2056961-1459429631380-03_31_16_ExtendedThumb.jpg","duration":620,"publication_date":"2016-03-31T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-don-t-eat-this-ever-side-scrollers-podcast","changefreq":"weekly","video":[{"title":"S1:E223 - Don't Eat This... Ever. | SideScrollers Podcast","description":"Sam brings cultural food onto the show again this week and Craig and Chad immediately regret the decision.\n\n\n\nWatch The Boss trailer the guys talk about here: http://unvrs.al/BossRestricted\n\n\n\nWatch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://www.bit.ly/SponsorScrewAttack\n\n\n\nConnect with ScrewAttack Online:\n\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\n\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nConnect with the ScrewAttack Crew on Twitter:\n\nCraig - https://twitter.com/StutteringCraig\n\nChad - https://twitter.com/ScrewAttackChad\n\nBen - https://twitter.com/ScrewAttackBen\n\nShaun - https://twitter.com/ShaunBolen\n\nNick - https://twitter.com/THENervousNick\n\nSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-don-t-eat-this-ever-side-scrollers-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13235dcf-54e6-4d4d-9730-24a3687d2bf7/sm/2056961-1459375317090-03_30_16_SideScrollersThumb.jpg","duration":2649,"publication_date":"2016-03-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-big-mutha-f-cks-in-video-games","changefreq":"weekly","video":[{"title":"S1:E176 - Top 10 BIG Mutha F*cks in Video Games","description":"Bolen is back with another Top 10 and we still have no idea what he's talking about.","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-big-mutha-f-cks-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05d8041e-c87c-43b2-a3a7-9dd27f9230ca/sm/2056961-1459287191861-03_29_16_Top10Thumb.jpg","duration":517,"publication_date":"2016-03-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-overwatch-says-no-butts-a-l-l-o-w-e-d-available-now-podcast","changefreq":"weekly","video":[{"title":":E19 - Overwatch Says: NO BUTTS ALLOWED! | Available Now Podcast","description":"This episode of Available Now is brought to you by Geek Fuel. Show your support for the show and pick up a Geek Fuel box here: https://www.geekfuel.com/AvailableNow\n\nAfter some internet rage, Overwatched has changed the way a fictional futuristic character stands. Good job Internet. You've saved humanity again!","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-overwatch-says-no-butts-a-l-l-o-w-e-d-available-now-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5c8c1c2-e721-4a32-8b00-38e9b1c2ef6f/sm/2056961-1459285553913-03_29_16_ANThumb.jpg","duration":3515,"publication_date":"2016-03-29T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-season-1-19-reasons-we-love-humanity","changefreq":"weekly","video":[{"title":"S1:E63 - 19 Reasons We LOVE Humanity","description":"Humans are the best thing ever. We're the best.","player_loc":"https://roosterteeth.com/embed/reasons-we-love-season-1-19-reasons-we-love-humanity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aca4836d-eab4-4ffc-b814-ff2cc67fe035/sm/2056961-1459264698819-Love_thumb.png","duration":77,"publication_date":"2016-03-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-26-reasons-we-hate-humanity-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E72 - 26 Reasons We HATE Humanity with Evil Craig","description":"You can cancel my show but you can't cancel me. Follow my ass on Twitter and find out when I return because I WILL FUCKING RETURN: http://www.twitter.com/xxEvilCraigxx","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-26-reasons-we-hate-humanity-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eab3714b-a220-4cab-8a8c-8da583a2f93d/sm/2056961-1459264892130-HATE_thumb.png","duration":147,"publication_date":"2016-03-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-ganon-forces-his-way-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E10 - Ganon forces his way into DEATH BATTLE!","description":"The Dark Lord of Hyrule appears to crush his opponent. Will be be able to? Find out next week when Ganon takes on Bowser on DEATH BATTLE!\n\n\n\nThis episode is sponsored by the upcoming video game Angry Video Game Nerd II: ASSimilation. Pre-order and get more information about it here:http://bit.ly/AVGNIIPreOrder","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-ganon-forces-his-way-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/118a0ce8-184b-45c2-a036-afcefc513608/sm/2056961-1459178170377-GanonThumb.jpg","duration":125,"publication_date":"2016-03-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-banjo-kazooie","changefreq":"weekly","video":[{"title":"S1:E52 - Five Fun Facts - Banjo Kazooie","description":"The amount of canned Banjo games makes us want to throw up in our mouths.","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-banjo-kazooie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/232a041d-f52e-4c72-b6b2-42fa17b5ef15/sm/2056961-1459177920668-03_28_16_FFF_BanjoThumb.jpg","duration":237,"publication_date":"2016-03-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-movie-ever-the-1-show","changefreq":"weekly","video":[{"title":":E10 - What's the #1 Movie Ever? | The #1 Show","description":"Episode 10 - The Best Movie Ever! This week Craig, Shaun, and special guest Nick talk -- or yell -- about the best movie ever made.\n\n\n\n\nSponsors can vote here: http://strawpoll.me/7189457\n\n\n\nThe #1 Show is a show about everything... except video games. We have enough shows for that. A show that was conceived after arguing while in a backyard pool over the best cereals, this is the end result... but is still a work in progress","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-movie-ever-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5efe1fbc-46f8-449a-a4d7-8077777431ee/sm/2056961-1458785846229-03_23_16_Number1MovieThumb.jpg","duration":1039,"publication_date":"2016-03-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-video-game-movie-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E89 - The Best Video Game Movie EVER!","description":"Nick is an idiot and all other opinions he will have from this point forward are invalid. We're sorry.","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-video-game-movie-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b45fc22-4c9b-4beb-9e59-0c4ce8043050/sm/2056961-1458750894127-03_23_16_BestEverMovieTHumb.jpg","duration":312,"publication_date":"2016-03-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-sam-and-chad-s-most-personal-stories-ever-told-side-scrollers-extended","changefreq":"weekly","video":[{"title":"S1:E222 - Sam and Chad's WAY Too Personal Story | SideScrollers Extended","description":"Why these guys would want to tell these stories so openly is beyond us... but they did. Gross.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-sam-and-chad-s-most-personal-stories-ever-told-side-scrollers-extended","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c684d4a-8c3e-4c55-8cbe-eb8e689e21c8/sm/2056961-1458771659894-03_23_16_ExtendedThumb.jpg","duration":624,"publication_date":"2016-03-23T21:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-hulk-hogan-saves-the-world-side-scrollers","changefreq":"weekly","video":[{"title":"S1:E221 - Hulk Hogan Saves The World | SideScrollers","description":"HULK HOGAN GETTING PAID! All it took was people to see his weiner.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-hulk-hogan-saves-the-world-side-scrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4793e13d-f85b-4d94-8c0b-0fba8d4a73c3/sm/2056961-1458770507641-03_23_16_SideScrollersThumb.jpg","duration":2802,"publication_date":"2016-03-23T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-trackmania-turbo-is-a-total-troll-available-now","changefreq":"weekly","video":[{"title":":E18 - Trackmania Turbo Is A Total Troll | Available Now","description":"This episode of Available Now is brought to you by Geek Fuel. Show your support for the show and pick up a Geek Fuel box here: https://www.geekfuel.com/AvailableNow\n\n\n\nBolen is in love with Trackmania Turbo, got it's giving Torrian nothing but trouble!\n\n\n\nVote in the #hypemeter! Click the 'i' in the top right corner of the video!\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.com\n\n\n\nAsk us things on Twitter using the hashtag #hypemeter\n\n\n\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...\n\n\n\nWatch DEATH BATTLE and all our videos early as a Sponsor (it's like our Patreon): http://www.bit.ly/SponsorScrewAttack","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-trackmania-turbo-is-a-total-troll-available-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d94aa00c-9632-4eff-a4e5-db531b39857e/sm/2056961-1458742953835-03_22_16_ANThumb.jpg","duration":3076,"publication_date":"2016-03-23T14:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-games-to-play-on-the-super-nintendo","changefreq":"weekly","video":[{"title":"S1:E175 - Top 10 Games You NEED To Play on the SNES","description":"S1:E175 - Top 10 Games You NEED To Play on the SNES","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-games-to-play-on-the-super-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b25da12f-1ae6-4dae-9fd9-2e08b5c7956b/sm/2056961-1458617390324-03_21_16_Top10_GamesSNESThumb.jpg","duration":528,"publication_date":"2016-03-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-season-1-18-reasons-we-love-the-internet","changefreq":"weekly","video":[{"title":"S1:E62 - 18 Reasons We LOVE the Internet","description":"S1:E62 - 18 Reasons We LOVE the Internet","player_loc":"https://roosterteeth.com/embed/reasons-we-love-season-1-18-reasons-we-love-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bf53698-2fe3-4160-bbfc-ba08801aecc9/sm/2056961-1458615554757-love_internet.png","duration":113,"publication_date":"2016-03-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-21-reasons-we-hate-the-internet-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E71 - 21 Reasons We HATE the Internet with Evil Craig","description":"Just one more Evil episode is left.","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-21-reasons-we-hate-the-internet-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda0a7d6-a873-4c2f-8c26-de2daad07c71/sm/2056961-1458615680115-hate_internet.png","duration":140,"publication_date":"2016-03-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-bowser-pounds-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E9 - Bowser Pounds Into DEATH BATTLE!","description":"Thanks to AVGN II: ASSimilation for sponsoring this episode! Support DEATH BATTLE and pre-order AVGN II: ASSimilation now and get 10% OFF and the soundtrack for FREE:http://bit.ly/AVGNIIPreOrder\n\nWatch the DEATH BATTLE before it hits YouTube as a Rooster Teeth sponsor:http://bit.ly/SponsorScrewAttack\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-bowser-pounds-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1543f96b-9305-4d08-9767-2aa1eef96851/sm/2056961-1458527954172-03_21_16_DBPreview_Thumb2.jpg","duration":145,"publication_date":"2016-03-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-the-original-xbox","changefreq":"weekly","video":[{"title":"S1:E51 - Five Fun Facts - The Original Xbox","description":"S1:E51 - Five Fun Facts - The Original Xbox","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-the-original-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3322e66-233c-411e-bbbf-508a39651e80/sm/2056961-1458526588142-03_20_16_FFF_XboxThumb.jpg","duration":293,"publication_date":"2016-03-21T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-nickelodeon-show-ever-the-1-show","changefreq":"weekly","video":[{"title":":E9 - What's the #1 Nickelodeon Show Ever? | The #1 Show","description":"Vote on this week's episode here: http://strawpoll.me/7113643","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-nickelodeon-show-ever-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0ccc127-d446-4399-a240-375426f056cd/sm/2056961-1458278833434-03_18_16_Number1NickShow.jpg","duration":736,"publication_date":"2016-03-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-that-time-superman-cremated-himself-and-batman-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E28 - That Time Superman Cremated Himself... and Batman | Desk of DEATH BATTLE","description":"S1:E28 - That Time Superman Cremated Himself... and Batman | Desk of DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-that-time-superman-cremated-himself-and-batman-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a0455e5-665f-4ebe-b803-3fbbe2abed38/sm/2056961-1458277472789-03_18_16_DeskofThumb2.jpg","duration":299,"publication_date":"2016-03-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-90-s-arcade-game-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E88 - The Best 90's Arcade Game EVER!","description":"S1:E88 - The Best 90's Arcade Game EVER!","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-90-s-arcade-game-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f92fc1c8-58fa-4aee-9c51-5424da87fb8d/sm/2056961-1458065386627-03_15_16_BestEver_90sArcadeGame.jpg","duration":318,"publication_date":"2016-03-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-white-gravy-or-brown-gravy-side-scrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E220 - White Gravy or Brown Gravy? | SideScrollers Extended Cut","description":"Exclusive for Sponsors - Craig, Sam and Austin chat about a recent segment an intense discussion breaks out and one Rooster Teeth employee must settle the score.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-white-gravy-or-brown-gravy-side-scrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a6965d6-0211-4286-80d5-5825f2a45e13/sm/2056961-1458164376891-03_16_16_SideScrollersExtendedThumb.jpg","duration":693,"publication_date":"2016-03-16T21:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-is-vr-the-future-and-why-it-will-fail-side-scrollers-podcast","changefreq":"weekly","video":[{"title":"S1:E219 - VR is \"The Future?\" Then Why is it Going to Fail? | SideScrollers Podcast","description":"Thanks to Geek Fuel for sponsoring this episode. Check out their monthly box here: https://www.geekfuel.com/sidescrollers\n\n\n\nThe guys on twitter:\n\nCraig - http://twitter.com/StutteringCraig\n\nSam - http://twitter.com/ScrewAttackSam\n\nAustin - http://twitter.com/PotatoHound","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-is-vr-the-future-and-why-it-will-fail-side-scrollers-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5967eb0b-9178-44cc-abd9-adb80b171d78/sm/2056961-1458166000898-03_16_16_SideScrollersThumb.jpg","duration":2928,"publication_date":"2016-03-16T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-pokken-tournament-is-the-cure-for-your-fever-available-now-podcast","changefreq":"weekly","video":[{"title":":E17 - Pokken Tournament is the Cure For Your Fever | Available Now Podcast","description":"Apparently you all have a fever and the only prescription is more Pokken Tournament\n\nThis episode of Available Now is brought to you by Geek Fuel. Show your support for the show and pick up a Geek Fuel box here: https://www.geekfuel.com/AvailableNow\n\n\n\nShow us your best moves and failures! Live@ScrewAttack.com\n\n\n\nAsk us things on Twitter using the hashtag #hypemeter\n\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-a...\n\n\n\nHypemeter games:\n\nFallout 4 Automatron DLC\n\nAVGN 2: Assimilation\n\nTrackmania Turbo\n\nHyrule Warriors: Legends\n\n\n\nSee all our content at least a day early as a RoosterTeeth Sponsor. If you'd like to support us and get access to ours, Achievement Hunter, Rooster Teeth and Funhaus' shows (and more) early consider becoming a Sponsor. Thanks: http://www.bit.ly/SponsorScrewAttack\n\n\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-pokken-tournament-is-the-cure-for-your-fever-available-now-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f4b1d9-0082-4318-be6f-4c00ce9bd213/sm/2056961-1458145006260-03_15_16ANThumb.jpg","duration":2829,"publication_date":"2016-03-16T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-24-reasons-we-hate-video-games-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E70 - 24 Reasons We HATE Video Games with Evil Craig","description":"S1:E70 - 24 Reasons We HATE Video Games with Evil Craig","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-24-reasons-we-hate-video-games-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d186242d-afe7-46a4-b91e-f5df78c8e730/sm/2056961-1458053978447-HATE_videogames.png","duration":140,"publication_date":"2016-03-15T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-season-1-25-reasons-we-love-video-games","changefreq":"weekly","video":[{"title":"S1:E61 - 25 Reasons We LOVE Video Games","description":"S1:E61 - 25 Reasons We LOVE Video Games","player_loc":"https://roosterteeth.com/embed/reasons-we-love-season-1-25-reasons-we-love-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eff073f7-b444-4bd2-896d-3ba9d87f4a2b/sm/2056961-1458053830830-LOVE_thumb.png","duration":82,"publication_date":"2016-03-15T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-3-dante-vs-bayonetta-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S3:E1 - Dante VS Bayonetta","description":"DEATH BATTLE is back with a match made in heaven! From Devil May Cry and the Umbra Witches, who will come out on top?\n\nThis episode is sponsored by the upcoming video game Angry Video Game Nerd II: ASSimilation. Pre-order and get more information about it here: http://bit.ly/AVGNIIPreOrder\n\n\n\nAre you a ScrewAttack Sponsor? If yes, thank you! Curious what happened to Trish and Jeanne after the battle? Click here to check out an early pilot of our upcoming series DBX! If you're not a Sponsor, it's a GREAT way to support us while seeing tons of content early with an ad-free website and store discount! Please consider it: http://bit.ly/SponsorScrewAttack\n\n\n\nWiz: Ben Singer - twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - twitter.com/ScrewAttackChad\n\nWriter: Nick Cramer - twitter.com/THENervousNick\n\nAnimator: Torrian Crawford - twitter.com/AnimatedTorrii\n\nAnimation Assistant: Da Vaughn \"Deejay\" Henderson Jr. - twitter.com/deejayhyuga\n\nDante: Stephen Fu - twitter.com/That_Fu\n\nBayonetta: Marissa Lenti - twitter.com/LentiSoup\n\nTrish: Morgan Berry - twitter.com/TheMorganBerry\n\nJeanne: Dawn M. Bennett - twitter.com/DawnMBennettVA\n\nBattle Announcer: Christopher Guerrero - twitter.com/ChrisGuerreroVA\n\n3D Modeling: Yare Yare Dongers - yare-yare-dong.deviantart.com/\n\nMotion Capture Actor: John Francis McCullagh twitter.com/johnfmfilms\n\nSound Design: Noel Wiggins - twitter.com/NOELWIGGINSfilm","player_loc":"https://roosterteeth.com/embed/death-battle-season-3-dante-vs-bayonetta-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7a2a919-b51e-4c0c-bec3-a4f28014d720/sm/2056961-1457934890455-DB_058_thumb.jpg","duration":1525,"publication_date":"2016-03-14T13:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dbx-season-1-dbx-trish-vs-jeanne-devil-may-cry-vs-bayonetta","changefreq":"weekly","video":[{"title":"S1:E1 - Trish VS Jeanne (Devil May Cry VS Bayonetta) | PILOT","description":"As Dante and Bayonetta duel in DEATH BATTLE, their sidekicks continue the fight in a no-holds-barred exhibition match! No rules! No analysis! Only bloodshed!\n\nThis is an early pilot episode of the upcoming DBX series! The first season of DBX will debut this May!\n\n\n\nAnimator: Da Vaughn \"Deejay\" Henderson Jr. - twitter.com/deejayhyuga\n\nBoomstick: Chad James - twitter.com/ScrewAttackChad\n\nTrish: Morgan Berry - twitter.com/TheMorganBerry\n\nJeanne: Dawn M. Bennett - twitter.com/DawnMBennettVA\n\nDirector & Producer: Ben Singer - twitter.com/ScrewAttackBen\n\nCasting & Voice Direction: Marissa Lenti - twitter.com/LentiSoup","player_loc":"https://roosterteeth.com/embed/dbx-season-1-dbx-trish-vs-jeanne-devil-may-cry-vs-bayonetta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d4528fa-1c85-4c35-91c7-f9d0b56b329e/sm/2056961-1457935307486-DBX_001_thumb.jpg","duration":112,"publication_date":"2016-03-14T13:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-simpsons-video-games","changefreq":"weekly","video":[{"title":"S1:E50 - Five Fun Facts - Simpsons Video Games","description":"Did you know Marge originally had something under her hair?","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-simpsons-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76d4e1d0-61af-463c-948a-19e12ed74e1f/sm/2056961-1457930367424-03_15_16_FFF_SimpsonsThumb.jpg","duration":201,"publication_date":"2016-03-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-fruity-candy-movie-the-1-show","changefreq":"weekly","video":[{"title":":E8 - What's The #1 Fruity Candy? | The #1 Show","description":"Episode 6 - Fruity Candy! This week Craig, Shaun and special guest Ben state their case for the best fruity candy ever.\n\nScrewAttack Sponsors can vote here: http://strawpoll.me/7057108\n\nThe #1 Show is a show about everything... except video games. We have enough shows for that. A show that was conceived after arguing while in a backyard pool over the best cereals, this is the end result... but is still a work in progress.","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-fruity-candy-movie-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dce90cf8-0270-4347-ae68-c67b817c33aa/sm/2056961-1457750926391-03_11_16_Number1CandyThumb.jpg","duration":795,"publication_date":"2016-03-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-worst-video-game-purchase-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E87 - The WORST Video Game Purchase EVER!","description":"Nick's life is filled with regrets... and lots of games he's never played.","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-worst-video-game-purchase-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/813686dc-e925-46fc-907b-0f874c4df4c2/sm/2056961-1457737895283-03_11_16_BestEverThumb.jpg","duration":360,"publication_date":"2016-03-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-suicide-assisting-robot-bears-are-amazing","changefreq":"weekly","video":[{"title":"S1:E218 - Suicide Assisting Robot Bears Are AMAZING","description":"This episode of SideScrollers is brought to you by Geek Fuel. Show your support for the show and pick up a Geek Fuel box here: https://www.geekfuel.com/SideScrollers \n\nAngry Video Game Nerd II: ASSimilation Pre-Order Link - http://bit.ly/AVGNIIPreOrder\n\nThis week the guys learn about the most amazing killing machine in the world and resolve to make some changes to the show by eating more.\n\nSend us questions for Live Tweets using #SideScrollers on Twitter!Send Sam Newsdesk stories! Sam@ScrewAttack.comSend us your QotW answers! Live@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-suicide-assisting-robot-bears-are-amazing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d686dcf7-9adc-425b-855f-ed8963a122d3/sm/2056961-1457665241945-03_09_16_SideScrollersThumb3.jpg","duration":2879,"publication_date":"2016-03-11T02:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-bayonetta-is-summoned-to-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E8 - Bayonetta is Summoned to DEATH BATTLE!","description":"Thanks to AVGN II: ASSimilation for sponsoring this episode! Support DEATH BATTLE and pre-order AVGN II: ASSimilation now and get 10% OFF and the soundtrack for FREE: http://bit.ly/AVGNIIPreOrder\n\nWatch the DEATH BATTLE before it hits YouTube as a Rooster Teeth sponsor: http://bit.ly/SponsorScrewAttack\n\n\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-bayonetta-is-summoned-to-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f50367c5-9a42-4556-a533-0b71196e7ca8/sm/2056961-1457664676429-Bayonetta_THUMB.jpg","duration":230,"publication_date":"2016-03-11T02:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-previews-season-1-dante-slices-into-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E7 - Dante slices into DEATH BATTLE!","description":"Watch the DEATH BATTLE before it hits YouTube as a Rooster Teeth sponsor: http://bit.ly/SponsorScrewAttack\n\nDEATH BATTLE is officially BACK! Season 3 starts with the first fight preview Wednesday, March 2nd at 8am CT. \n\nShow your support and pick up your own DEATH BATTLE shirt here: http://bit.ly/DBShirt\n\nShow some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam\n\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylistWatch ScrewAttack Top 10's - http://bit.ly/SATop10PlaylistWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylistWatch SideScrollers - http://bit.ly/SideScrollersPlaylistWatch The Industry - http://bit.ly/IndustryPLWatch Five Fun Facts - http://bit.ly/FFFPlaylistWatch One Minute Melee - http://bit.ly/OMMPlaylistWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylistWatch The Best Ever - http://bit.ly/BestEverPlaylistWatch The Game OverThinker - http://bit.ly/OverThinkerPLWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/death-battle-previews-season-1-dante-slices-into-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7377d7aa-4899-4495-aa21-f7d93d577987/sm/2056961-1457664634494-Dante_THUMB.jpg","duration":219,"publication_date":"2016-03-11T02:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-15-reasons-we-hate-death-battle-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E69 - 15 Reasons We HATE DEATH BATTLE with Evil Craig","description":"S1:E69 - 15 Reasons We HATE DEATH BATTLE with Evil Craig","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-15-reasons-we-hate-death-battle-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b815f22e-e875-48c7-9cf0-f17bb33a20cb/sm/2056961-1457663384077-hate_DB.png","duration":115,"publication_date":"2016-03-11T02:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-season-1-15-reasons-we-love-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E60 - 15 Reasons We LOVE DEATH BATTLE!","description":"S1:E60 - 15 Reasons We LOVE DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/reasons-we-love-season-1-15-reasons-we-love-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc6d1429-6903-49b6-907c-0a0af146795b/sm/2056961-1457663283705-love_DB.png","duration":94,"publication_date":"2016-03-11T02:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-pokken-tournament-destroys-our-hype-meter-available-now-podcast","changefreq":"weekly","video":[{"title":":E16 - Pokken Tournament Destroys Our Hype Meter | Available Now Podcast","description":"Connect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-pokken-tournament-destroys-our-hype-meter-available-now-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4ffa529-4559-4a46-943d-871d0fb43e97/sm/2056961-1457636766566-AN_PokkenTournament.jpg","duration":3522,"publication_date":"2016-03-10T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-fire-emblem-murders-our-favorite-characters-available-now-podcast","changefreq":"weekly","video":[{"title":":E15 - Fire Emblem Murders Our Favorite Characters! | Available Now Podcast","description":"Sean is all kinds of in love with the story in Fire Emblem: Fates.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-fire-emblem-murders-our-favorite-characters-available-now-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d20fe56f-9c49-4a2b-a9f9-bed8fc55bf59/sm/2056961-1457636489229-AN_FireEmblemMurders.jpg","duration":3422,"publication_date":"2016-03-10T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-what-s-our-fighting-game-guru-think-of-street-fighter-v-available-now","changefreq":"weekly","video":[{"title":":E14 - What's Our Fighting Game Guru Think of Street Fighter V? | Available Now","description":"Chad's subbing in this week to talk all about Street Fighter V!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-what-s-our-fighting-game-guru-think-of-street-fighter-v-available-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86c82060-dfec-41e5-baa4-95b574d30e2e/sm/2056961-1457636292934-AN_WhatsOurFightingGameGuru.jpg","duration":2648,"publication_date":"2016-03-10T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-fire-emblem-s-heavy-petting-problem-available-now-02-09-16","changefreq":"weekly","video":[{"title":":E13 - Fire Emblem's Heavy Petting Problem? | Available Now 02/09/16","description":"The guys are all playing games involving aliens, and Sean's got the new Fire Emblem! Lucky jerk.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-fire-emblem-s-heavy-petting-problem-available-now-02-09-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ae7f748-0015-4768-815f-10a010b49fa7/sm/2056961-1457636148058-AN_FireEmblemsHeavyPettingProblem.jpg","duration":3520,"publication_date":"2016-03-10T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-the-division-is-m-e-h-available-now-02-02-16","changefreq":"weekly","video":[{"title":":E12 - The Division is 'MEH' | Available Now 02/02/16","description":"We have lots to talk about from PAX South in What We've Been Playing! \nBut while we were playing games there, Hinz was playing...The \nDivision...\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-the-division-is-m-e-h-available-now-02-02-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/139b9425-c8d4-4af9-9d01-5d461e4557d9/sm/2056961-1457635935939-AN_DivisionIsMeh.jpg","duration":3411,"publication_date":"2016-03-10T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-immortal-bears-on-fire-available-now-video-game-podcast","changefreq":"weekly","video":[{"title":":E11 - Immortal Bears On Fire | Available Now Video Game Podcast","description":"Bolen's gonna tell you all about one of your biggest nemesis in Far Cry Primal and everything else he played this past week!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-immortal-bears-on-fire-available-now-video-game-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1ead35b-d21f-40e7-ab4d-e0c50b0ba776/sm/2056961-1457636953795-AN_ImmortalBearsonFire.jpg","duration":2880,"publication_date":"2016-03-10T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-why-s-the-e-shop-so-b-a-d-available-now-01-19-16","changefreq":"weekly","video":[{"title":":E10 - Why's the eShop SO BAD?!? | Available Now 01/19/16","description":"Bolen is new to the world of 3DS ownership, and he's found some things don't stand up to what's on his Vita.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-why-s-the-e-shop-so-b-a-d-available-now-01-19-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8411c91b-2c98-4221-bca0-7a1559aaefcc/sm/2056961-1457635586055-AN_WhysTheEshopSoBad.jpg","duration":3432,"publication_date":"2016-03-10T18:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-pc-master-race-issues-available-now-gaming-podcast","changefreq":"weekly","video":[{"title":":E9 - PC Master Race Issues | \"Available Now\" Gaming Podcast","description":"Things can go wrong when you build your own PC. Very wrong.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-pc-master-race-issues-available-now-gaming-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0b02045-bfeb-4cf3-9369-9949c78d890e/sm/2056961-1457634175767-AN_PCmasterRaceIssues.jpg","duration":3966,"publication_date":"2016-03-10T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-just-cause-3-best-6-e-v-e-r-available-now-12-08-15","changefreq":"weekly","video":[{"title":":E8 - Just Cause 3: Best \"6\" EVER? | Available Now 12/08/15","description":"Just how \"meh\" is Just Cause 3, really, guys? \n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-just-cause-3-best-6-e-v-e-r-available-now-12-08-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":3139,"publication_date":"2016-03-10T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-char-sa-mder-loves-pokemon-dungeons-available-now-12-01-15","changefreq":"weekly","video":[{"title":":E7 - CharSAMder Loves Pokemon Dungeons| Available Now 12/01/15","description":"Connect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-char-sa-mder-loves-pokemon-dungeons-available-now-12-01-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a46edcdb-2e7e-44eb-bce7-61f3ef949c94/sm/2056961-1457633613325-AN_CharSAMderLovesPokemon.jpg","duration":3620,"publication_date":"2016-03-10T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-bolen-s-biggest-gaming-fail-ever-available-now-gaming-podcast","changefreq":"weekly","video":[{"title":":E6 - Bolen's Biggest Gaming Fail EVER | \"Available Now\" Gaming Podcast","description":"Connect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-bolen-s-biggest-gaming-fail-ever-available-now-gaming-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15d03328-8fb1-44f5-9430-d918e862b472/sm/2056961-1457633298457-AN_BolensBiggestGamingFail.jpg","duration":3307,"publication_date":"2016-03-10T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-are-you-obsessed-with-fallout-4-available-now-gaming-podcast","changefreq":"weekly","video":[{"title":":E5 - Are You OBSESSED With Fallout 4?? | Available Now Gaming Podcast","description":"With Sam and Shaun deep into Fallout 4, Torrian and Chad are joining Sean to talk about the latest and greatest in games!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-are-you-obsessed-with-fallout-4-available-now-gaming-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5347fcfd-65e9-4dc0-8396-13316fc152ef/sm/2056961-1457633076510-AN_AreYouObsessedwFallout4.jpg","duration":2948,"publication_date":"2016-03-10T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-ea-access-not-that-evil-available-now-gaming-podcast","changefreq":"weekly","video":[{"title":":E4 - EA Access: Not THAT Evil? | Available Now Gaming Podcast","description":"Did EA do a thing you might actually approve of? Did Sam give up his \nkingdom for a horse? Does Sean go a week without mentioning Destiny? \nFind out on Available Now!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-ea-access-not-that-evil-available-now-gaming-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a2fbf69-577e-4e53-8688-1f2c6feed6fc/sm/2056961-1457632859679-AN_EAaccessNotThatEvil.jpg","duration":3007,"publication_date":"2016-03-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-does-halo-s-story-matter-available-now-gaming-podcast","changefreq":"weekly","video":[{"title":":E3 - Does Halo's Story Matter? | \"Available Now\" Gaming Podcast","description":"Torrian is hopping in this week to tell us about lots of JRPGs! You like JRPGs, right?\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-does-halo-s-story-matter-available-now-gaming-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9847ab41-88a6-4bfc-9ffe-f9330247bb1e/sm/2056961-1457632616441-AN_DoesHaloStoryMatter.jpg","duration":3596,"publication_date":"2016-03-10T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-what-s-up-with-yoshi-and-zelda-available-now-video-game-podcast","changefreq":"weekly","video":[{"title":":E2 - What's up with Yoshi and Zelda? | \"Available Now\" Video Game Podcast","description":"Connect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-what-s-up-with-yoshi-and-zelda-available-now-video-game-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5a41a94-3ce0-4b1a-abf1-0dc51207d4eb/sm/2056961-1457632362786-AN_WhatsUpWithYoshiZelda.jpg","duration":2322,"publication_date":"2016-03-10T17:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/available-now-podcast-season-we-re-obsessed-with-star-wars-battlefront-available-now-new-p-o-d-c-a-s-t","changefreq":"weekly","video":[{"title":":E1 - We're OBSESSED With Star Wars Battlefront | \"Available Now\" - NEW PODCAST!!","description":"If you love video games like we do you also like to talk about them. \njoin Sean, Shaun and Sam as they chat about what they've been playing as\n well as show you their best moves of the weeks on \"the most interactive\n video podcast on the internet\"\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/available-now-podcast-season-we-re-obsessed-with-star-wars-battlefront-available-now-new-p-o-d-c-a-s-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/636a104e-edae-444a-9e67-2f02c645e2cd/sm/2056961-1457632043395-AN_wereObsessedStarWarsBF.jpg","duration":3396,"publication_date":"2016-03-10T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-15-reasons-we-hate-ash-ketchum-from-pok-mon-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E68 - 15 Reasons We HATE Ash Ketchum from Pokémon with Evil Craig","description":"A reminder that Evil Craig hates an innocent little ten year old.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-15-reasons-we-hate-ash-ketchum-from-pok-mon-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49725ec3-15f4-4c5d-956d-96b2fe2ab785/sm/2056961-1457631622265-hate_ash_ketchum.jpg","duration":97,"publication_date":"2016-03-10T17:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-19-reasons-we-hate-street-fighter-5-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E67 - 19 Reasons We HATE Street Fighter 5 with Evil Craig","description":"Street Fighter 5 had some problems. Evil Craig tells it like it is.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-19-reasons-we-hate-street-fighter-5-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac42fadb-1df6-4085-b52f-78fdf8871bac/sm/2056961-1457631381469-hate_street_fighter.jpg","duration":135,"publication_date":"2016-03-10T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craig-season-1-14-more-reasons-we-hate-zelda-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E66 - 14 MORE Reasons We HATE Zelda with Evil Craig","description":"Evil craig vents about the Zelda games. I just don't want to get him mad. I like my job.","player_loc":"https://roosterteeth.com/embed/evil-craig-season-1-14-more-reasons-we-hate-zelda-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c45442c-999d-493c-8423-a0e6566d0161/sm/2056961-1457631009168-hate_zelda.jpg","duration":91,"publication_date":"2016-03-10T17:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-wolverine-is-gay-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E26 - Wolverine is Gay? | Desk of DEATH BATTLE","description":"S1:E26 - Wolverine is Gay? | Desk of DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-wolverine-is-gay-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70c8b9ef-0124-4c62-ab99-cb59269f8934/sm/2056961-1457629594719-wolverine_is_gay.jpg","duration":250,"publication_date":"2016-03-10T17:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-batman-s-horrible-villains-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E25 - Batman's Horrible Villains | The Desk of DEATH BATTLE","description":"Batman may have some iconic villain, but he has some shitty bad guys. They all can't be winners.","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-batman-s-horrible-villains-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5e3fb4d-1f8e-4668-bc7b-948dadf76ed1/sm/2056961-1457629020907-batman_s_horrible_villains.jpg","duration":306,"publication_date":"2016-03-10T16:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-dumbledore-is-death-the-desk-of-death-b-a-t-t-l-e","changefreq":"weekly","video":[{"title":"S1:E24 - Dumbledore is Death??? The Desk of DEATH BATTLE!","description":"S1:E24 - Dumbledore is Death??? The Desk of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-dumbledore-is-death-the-desk-of-death-b-a-t-t-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c37537a3-d3e4-41b2-9f28-bd783c88a57b/sm/2056961-1457628740165-dumbledore_is_death.jpg","duration":222,"publication_date":"2016-03-10T16:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-godzilla-got-dunked-on-by-charles-barkley-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E23 - Godzilla Got Dunked on by Charles Barkley??? | The Desk of DEATH BATTLE","description":"This happened! Check out how this came to be. \n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-godzilla-got-dunked-on-by-charles-barkley-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8f39d19-1baa-4c83-8fda-6a098250ab57/sm/2056961-1457628510606-godzilla_got_dunked.jpg","duration":299,"publication_date":"2016-03-10T16:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-fallout-s-vault-s-e-c-r-e-t-s-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E22 - Fallout's Vault SECRETS? | Desk of DEATH BATTLE","description":"Take a deeper look into Fallout's vaults and the secrets and expirements that went on in them. \n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-fallout-s-vault-s-e-c-r-e-t-s-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01790746-a0eb-446f-a228-685d8285dce5/sm/2056961-1457628264177-Fallout_s_Vault_SECRETS.jpg","duration":276,"publication_date":"2016-03-10T16:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-samus-manga-story-is-nuts-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E21 - Samus' Manga Story is NUTS | Desk of DEATH BATTLE","description":"Don't read Mangas? Well, here's Samus' story from the manga\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-samus-manga-story-is-nuts-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/730b1070-01fe-4fef-adf1-c52e89829e7a/sm/2056961-1457628225193-samusmangastory.jpg","duration":294,"publication_date":"2016-03-10T16:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-superman-vs-the-kkk-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E20 - Superman vs the KKK | The Desk of DEATH BATTLE","description":"Forget Batman V. Superman. The Superman V. the KKK is the greatest match up of all. Son of Krypton vs. the Ignorance of the KKK","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-superman-vs-the-kkk-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85445c26-a31e-456c-9ccb-3f375e78a4e5/sm/2056961-1457627566834-SupermanVKKK.jpg","duration":273,"publication_date":"2016-03-10T16:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/desk-of-death-battle-season-1-punisher-shot-wolverine-in-the-dick-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E19 - Punisher Shot Wolverine in the Dick? | The Desk of DEATH BATTLE","description":"Did the Punisher actually shoot Wolverine in the dick? I don't know. Watch the video to find out! \n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/desk-of-death-battle-season-1-punisher-shot-wolverine-in-the-dick-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80609d3e-f798-4f53-b36b-b50bc004ee4e/sm/2056961-1457627233641-PunisherShotWolve.jpg","duration":214,"publication_date":"2016-03-10T16:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-rocky-movie-the-1-show","changefreq":"weekly","video":[{"title":":E7 - What's The #1 Rocky Movie? | The #1 Show","description":"Episode 5 - Rocky Movies! This week Craig, Shaun and special guest John state their case for the best Rocky movie ever.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-rocky-movie-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad437ce4-34e4-495e-9b63-142319439e3e/sm/2056961-1457625646404-1show_RockyMovie.jpg","duration":1022,"publication_date":"2016-03-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-who-s-the-1-tv-villain-the-1-show","changefreq":"weekly","video":[{"title":":E6 - Who's the #1 TV Villain? | The #1 Show","description":"Episode 4 - TV Villain! This week Craig, Shaun and special guest Sam state their case for the best TV Villains ever.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-who-s-the-1-tv-villain-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16896b78-4713-46cc-b3e5-1aaf59c3a183/sm/2056961-1457625430567-1show_TVvillain.jpg","duration":994,"publication_date":"2016-03-10T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-who-s-the-1-wrestler-the-1-show","changefreq":"weekly","video":[{"title":":E5 - Who's the #1 Wrestler? | The #1 Show","description":"Episode 4 - Wrestler! This week Craig, Shaun and special guest Bryan \n\ntalk... or yell.. about the best wrestlers ever made. OHHHH YEAH \n\nBROTHA!!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-who-s-the-1-wrestler-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89195e0e-e8a9-47b0-8fbe-24ee7fb8e6a8/sm/2056961-1457625489161-1show_Wrestler.jpg","duration":757,"publication_date":"2016-03-10T15:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-cereal-the-1-show","changefreq":"weekly","video":[{"title":":E4 - What's the #1 Cereal? | The #1 Show","description":"Episode 3 - Cereal! This week Craig, Shaun and special guest Nick talk... or yell.. about the best cereals ever made.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-cereal-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75c94e46-f0cf-4640-94fb-4184660cae38/sm/2056961-1457624951375-1show_Cereal.jpg","duration":660,"publication_date":"2016-03-10T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-what-s-the-1-kids-movie-the-1-show","changefreq":"weekly","video":[{"title":":E3 - What's the #1 Kids Movie? | The #1 Show","description":"Episode 2 - Kids Movies! This week Craig, Shaun and special guest Chad \ntalk... or yell.. about the best children's movies ever made. The only \nrule? The movies must be rated PG or G.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-what-s-the-1-kids-movie-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3486e2aa-82f0-446a-8651-9c71ed1afa33/sm/2056961-1457624039725-1show_KidsMovie.jpg","duration":1049,"publication_date":"2016-03-10T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-destiny-2-secrets-datamined-dabbing-b-a-n-n-e-d-flammable-snes-game","changefreq":"weekly","video":[{"title":"2017:E166 - Destiny 2 Secrets Datamined + Dabbing BANNED?! + Flammable SNES Game ","description":"PC gamers have plumbed the depths of Destiny 2's secrets, Nintendo unleashed a slew of indie games, Absolver is moving lots of units for Devolver Digital, video games are DABBING for some reason, Creation Club is breaking free mods, and we're getting a gender-swapped...Lord of the Flies? Yeah, news is weird sometimes.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-destiny-2-secrets-datamined-dabbing-b-a-n-n-e-d-flammable-snes-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43191f08-b795-41b1-8fe6-f428db3ae761/sm/710924-1504203997900-destiny_leaks_roundup.jpg","duration":445,"publication_date":"2017-08-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-pc-aim-assist-controversy","changefreq":"weekly","video":[{"title":"2017:E278 - Destiny 2 PC Aim Assist Controversy","description":"Destiny 2's PC beta is being celebrated as a port done right... well, except for one problem. Apparently, Destiny 2 is incredibly generous with aim assist for controllers, and even allows players to spoof that aim assist for their mouse and keyboard setup as well. Now we've got an argument on our hands about keyboard versus controllers all over again.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-pc-aim-assist-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a70f950-8343-4336-b89f-4806b31e52a4/sm/710924-1504131785278-thumbnail.jpg","duration":390,"publication_date":"2017-08-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-sonic-mania-drm-sucks","changefreq":"weekly","video":[{"title":"2017:E277 - Sonic Mania Fans MAD About DRM","description":"Sonic Mania took its sweet time getting on PC, and according to fans, that's because it was busy adding everyone's favorite feature -- DRM! Sega launched the game with DRM and always online requirements, and if history's told us anything, it's that PC gamers just LOVE that stuff... right?","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-sonic-mania-drm-sucks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3a4a2ae-5519-4335-9a48-e49c74f572ae/sm/710924-1504131714049-thumbnail.jpg","duration":270,"publication_date":"2017-08-31T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-snes-classic-stock-rumors-half-life-3-game-jam-ark-refund-protest","changefreq":"weekly","video":[{"title":"2017:E165 - SNES Classic Stock Rumors + Half-Life 3 Game Jam + Ark Refund Protest","description":"There are some new rumors about who's getting SNES Classic stocked the next time you fail to get one, Microsoft is openly calling on Valve and Nintendo for more crossplay, a hypothetical Dishonored 3 would be Emily and Corvo-less, Sea of Thieves gets stunning 540p 15fps, indie developers are making their own Half-Life 3, Game of Thrones season 8 is going to be a bloodbath, and players are sticking it to Studio Wildcard with Ark refunds. It's your hump news day!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-snes-classic-stock-rumors-half-life-3-game-jam-ark-refund-protest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a72fd84-068f-48ee-ac52-bc91ba447c48/sm/710924-1504120734801-ark_refund_roundup.jpg","duration":440,"publication_date":"2017-08-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-paid-mods-b-a-c-k-fallout-4-review-bombed","changefreq":"weekly","video":[{"title":"2017:E276 - Fallout 4 Gets PAID MODS","description":"They've tried it once, and now they're doing it all over again -- Bethesda's put paid mods back onto Steam, this time in the form of Creation Club. Did they fix all the problems from the first time around? The internet doesn't think so, and they're letting Bethesda know about it.","player_loc":"https://roosterteeth.com/embed/game-news-2017-paid-mods-b-a-c-k-fallout-4-review-bombed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eed9f64b-60fe-4a5c-9bc8-18ef4226efb1/sm/710924-1504037996954-Paid_Mods_BACK_Fallout_4_Review_Bombed.jpg","duration":391,"publication_date":"2017-08-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-has-built-in-voice-chat","changefreq":"weekly","video":[{"title":"2017:E275 - Nintendo Switch Has SECRET Voice Chat?","description":"So you know how Nintendo is getting all kinds of flack for not having proper voice chat, and have decided to use the app instead? Yeah, it turns out that voice chat actually does work on the system. It's just secret, and only for LAN. That's... not convenient.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-has-built-in-voice-chat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38a38a8e-dc6f-47b7-a9a1-0f0e105f4da4/sm/710924-1504037982853-Switch_HAS_Built_in_Voice_Chat.jpg","duration":296,"publication_date":"2017-08-30T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pubg-stealing-from-csgo-target-game-of-thrones-hoax-hellboy-whitewashing-controversy","changefreq":"weekly","video":[{"title":"2017:E164 - PUBG Stealing from CSGO + Target Game of Thrones HOAX + Hellboy Whitewashing Controversy","description":"Battlegrounds seems to be getting most of its playerbase from another popular Steam game, Destiny 2's PC beta is already super popular on Twitch, PlayStation has announced their plans for Tokyo Game Show, Fractured But Whole gets some raunchy ESRB descriptions, that Target Game of Thrones thing wasn't legit at all, and the actual Game of Thrones is breaking all kinds of records.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pubg-stealing-from-csgo-target-game-of-thrones-hoax-hellboy-whitewashing-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3aa7ccd-5cec-4b63-ad09-570d6fc38e86/sm/710924-1504037334034-whitewashing_thumb.jpg","duration":470,"publication_date":"2017-08-29T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-half-life-3-fallout-continues","changefreq":"weekly","video":[{"title":"2017:E273 - Half-Life 3 Levels LEAKED?","description":"Half-Life 2: Episode 3's ending might have been revealed this week, and now we've got even more fallout from the series -- this time in the form of some potentially leaked prototype levels for Half-Life 3. Plus, gamers are now review-bombing Dota 2 in protest of the unfinished games... never change, gamers.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-half-life-3-fallout-continues","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82a1255-999f-4596-9766-6cf8910d38de/sm/710924-1503951214690-thumbnail.jpg","duration":319,"publication_date":"2017-08-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mario-rabbids-is-it-good","changefreq":"weekly","video":[{"title":"2017:E274 - Mario + Rabbids: Is it Good?","description":"Mario + Rabbids Kingdom Battle is out this week, and now we've got reviews! Will this very weird crossover between Mario and some even weirder sort-rabbits be worth your time? Is it just an XCOM clone? How many selfies can you take? We dig into the reviews to find out.","player_loc":"https://roosterteeth.com/embed/game-news-2017-mario-rabbids-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/747c5884-8a0e-4b69-8365-ef3e6f261c3f/sm/710924-1503951231847-thumbnail.jpg","duration":416,"publication_date":"2017-08-29T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-snes-stock-d-e-l-a-y-bethesda-s-game-of-thrones-l-e-a-k-e-d-dev-releases-on-pirate-bay","changefreq":"weekly","video":[{"title":"2017:E163 - SNES Stock DELAY? + Bethesda's Game of Thrones LEAKED? + Dev Releases on Pirate Bay","description":"Welcome back from the weekend! SNES Classics get another hitch, Switch might get VR support, PUBG takes the crown, Bethesda talks Dishonored 3, Target might have leaked a big Game of Thrones game, say goodbye to the OG Xbox One, and Bill Nye sues Disney in today's round-up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-snes-stock-d-e-l-a-y-bethesda-s-game-of-thrones-l-e-a-k-e-d-dev-releases-on-pirate-bay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7c0bcab-4406-45a0-a676-e5285ef32be7/sm/710924-1503949981853-pirate_bay_roundup_thumb.jpg","duration":472,"publication_date":"2017-08-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-13","changefreq":"weekly","video":[{"title":"S1:E12 - New Game+ #13","description":"So we definitely got our Xbox One X pre-orders. Did you? Are you looking forward to it or is it just another Xbox?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca264add-2392-4c64-bcf6-de6f2575e777/sm/2411188-1503680504871-GP13_-_PS_-_THUMB.jpg","duration":720,"publication_date":"2017-08-26T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-final-fantasy-x-v-time-to-get-naked-disrespectful","changefreq":"weekly","video":[{"title":"2017:E272 - Final Fantasy XV GETTING NAKED? Awesome!","description":"Final Fantasy XV is coming to PC and getting mod support too, which as far as we can tell is code for \"chocobros getting naked.\" That's been a matter of concern for the developers, but that's not going to stop modders. After all, that's why mods really exist.","player_loc":"https://roosterteeth.com/embed/game-news-2017-final-fantasy-x-v-time-to-get-naked-disrespectful","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd633280-47d7-4e56-a0d8-e47df66e7f4a/sm/24363-1503695059224-thumbnail_v2.jpg","duration":369,"publication_date":"2017-08-25T21:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-end-of-half-life","changefreq":"weekly","video":[{"title":"2017:E271 - THE END of Half-life","description":"We may never get another Half-life game, but now we know how it ends. Or, at least, the end as the writer envisions it. 10 years on, Marc Laidlaw has put out his version of the missing Half-life episode, and it's bittersweet.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-end-of-half-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd0a5f1b-b158-49b9-8c76-bb4bb3eb2765/sm/24363-1503691707625-thumbnail.jpg","duration":507,"publication_date":"2017-08-25T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-saves-game-stop-crackdown-3-announcement-mistake-secret-of-mana-r-e-m-a-k-e","changefreq":"weekly","video":[{"title":"2017:E162 - Switch SAVES GameStop + Crackdown 3 Announcement MISTAKE + Secret of Mana REMAKE!","description":"Nintendo Switch has boosted GameStop into the positive. Microsoft admits Crackdown 3 was announced too early. Secret of Mana is getting a flashy new remake. Plus, hands-on impressions of Xbox One X, a big PUBG tournament victor won by running and hiding, HTC may sell off the Vive business, Batman IS in the DCEU after all, prepare for a clown-only screening of the IT movie, James Cameron thinks Wonder Woman was a step back for women, and the fancy new features on the next iPhone could cost you $999.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-saves-game-stop-crackdown-3-announcement-mistake-secret-of-mana-r-e-m-a-k-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aa736de-014f-4cc9-b8cd-6f8eae4e0bb5/sm/24363-1503691549553-thumbnail.jpg","duration":638,"publication_date":"2017-08-25T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-fugitive-from-margaritaville-13","changefreq":"weekly","video":[{"title":"S1:E13 - Uncharted's Fugitive From Margaritaville - #13","description":"In this week's episode Ashley, Ryan, Ben speedrun the news (15:00) discuss Uncharted The Lost Legacy (44:10) and cast the perfect Uncharted movie (1:04:20). This episode is brought to you by MeUndies (MeUndies.com/Glitch) and MVMT (MVMT.com/Glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-fugitive-from-margaritaville-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4928f8f8-07e2-4fd3-997b-2917f2d402c0/sm/2411188-1503679570549-GP13_-_THUMB.jpg","duration":5580,"publication_date":"2017-08-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-gaming-videos-dying-on-you-tube","changefreq":"weekly","video":[{"title":"2017:E31 - Gaming Channels DYING on YouTube?","description":"YouTube says advertisers are back, but it looks like all those dollars are coming at the cost of gaming videos on the platform. Gaming YouTubers are coming out en masse to report demonetized videos and dropping revenue that's driving them to other platforms like Twitch.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-gaming-videos-dying-on-you-tube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e344db18-036f-4014-8ba7-9d3b9754de4a/sm/24363-1503617653242-thumbnail.jpg","duration":757,"publication_date":"2017-08-24T23:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-youtuber-wins-fair-use-lawsuit","changefreq":"weekly","video":[{"title":"2017:E30 - Fair Use Lawsuit WIN Big for YouTube","description":"Ethan and Hila Klein of the H3H3Productions YouTube channel have spend the past year and a half fighting a lawsuit in court over fair use. The judgement on the lawsuit is in and could have a significant impact on fair use interpretation for YouTube videos in the future.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-youtuber-wins-fair-use-lawsuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20ce6e83-3634-4f40-ac7e-f105f4ffb405/sm/24363-1503615917474-thumbnail.jpg","duration":372,"publication_date":"2017-08-24T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-x-outsells-ps4-pro-already-government-fails-at-zelda-dceu-madness","changefreq":"weekly","video":[{"title":"2017:E161 - Xbox One X Outsells PS4 Pro + Battlegrounds DMCA Abuse + Game of Thrones HUGE Changes","description":"According to Amazon, Xbox One X demand is already higher than PS4 Pro's has been all year. A Battlegrounds streamer is in hot water after abusing the DMCA system to take down another gamer's footage. George R.R. Martin says Game of Thrones is now so different from his vision for the books that there are at least 20 dead characters who would be alive in his version.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-x-outsells-ps4-pro-already-government-fails-at-zelda-dceu-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ceb5c5a2-666d-47e7-8a41-214f2a09e0c9/sm/710924-1503602876612-thumbnail.jpg","duration":699,"publication_date":"2017-08-24T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-e-a-mass-effect-andromeda-criticism-unfair","changefreq":"weekly","video":[{"title":"2017:E270 - Mass Effect Andromeda OUR FAULT?","description":"Good news! Mass Effect may not be dead forever. Bad news! EA blames gamers for being too darn harsh on the game's flaws. So it's our fault, really, that the game didn't do well.","player_loc":"https://roosterteeth.com/embed/game-news-2017-e-a-mass-effect-andromeda-criticism-unfair","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eb9c09a-3dd6-45a3-98f3-c20ea35bfdaa/sm/24363-1503612018368-maxresdefault_12.jpg","duration":477,"publication_date":"2017-08-23T23:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-joker-movie-in-the-works","changefreq":"weekly","video":[{"title":"2017:E31 - The Joker Gets an ORIGIN STORY Movie! WHY?","description":"Everyone loved Suicide Squad. But more importantly, everyone wanted MORE JOKER! RIGHT? Well Warner Bros has heard you loud and clear because they're giving him what every character needs: AN ORIGIN STORY! ","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-joker-movie-in-the-works","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3af6c57-1f9c-4ac3-92c0-a057747f60fb/sm/24363-1503611923219-maxresdefault_11.jpg","duration":501,"publication_date":"2017-08-23T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-6","changefreq":"weekly","video":[{"title":"2017:E160 - Xbox Live OUTAGE + Why No 60FPS for Console Destiny 2 + Overwatch Australia Apology","description":"Xbox Live suffered a major outage overnight. Bungie explains why consoles (even the higher powered ones) aren't getting 60FPS for Destiny 2. Overwatch apologizes to Australia. Plus, SNES Classics are all over Ebay thanks to big jerks, Xbox One X pre-orders are higher than Microsoft expected, Kojima's teasing ropes for Death Stranding, Microsoft is still trying to make crossplay work, Call of Duty World War 2's first look at headquarters, Fallout 4 VR has a release date, NBA 2K18's got a minor problem with its cover, a Game of Thrones director admits the timeline's getting funky, an actor's been cut from the Han Solo movie during reshoots, and your home robots can be hacked to attack you. Great.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/752e2377-cc84-4e97-b03e-9ea96504fd55/sm/24363-1503611829752-thumbnail.jpg","duration":654,"publication_date":"2017-08-23T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-has-the-biggest-exclusives-w-t-f","changefreq":"weekly","video":[{"title":"2017:E269 - Xbox One Has the BIGGEST EXCLUSIVES? ...","description":"Xbox is talking the talk at Gamescom. In spite of delays that put Crackdown 3 and State of Decay 2 both out of 2017, one Xbox marketing exec thinks Xbox is just delivering too many huge exclusives to handle.","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-has-the-biggest-exclusives-w-t-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecd9093c-1261-4ec9-b607-d35dcea7bdd4/sm/24363-1503469952078-xbox_biggest_exclusives.jpg","duration":537,"publication_date":"2017-08-23T06:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7-the-magnificent-seven-know-your-t-h-r-o-n-e-s-the-game-of-thrones-nerdalong-for-season-7-episode-6","changefreq":"weekly","video":[{"title":"GoTS7:E6 - THE MAGNIFICENT SEVEN - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 6","description":"The Magnificent Seven set off on one of the dumbest quests ever north of the Wall. How many will return? How sideways will it all go? Will anyone get naked? We're recapping the episode, analyzing it until it's dead as a wight, and theorizing what the season finale could possibly hold.","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7-the-magnificent-seven-know-your-t-h-r-o-n-e-s-the-game-of-thrones-nerdalong-for-season-7-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f80efb27-13ed-4ede-97d9-2ce81cee6b51/sm/24363-1503446436444-site_thumb.jpg","duration":2476,"publication_date":"2017-08-23T00:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-6","changefreq":"weekly","video":[{"title":"2017:E159 - Shenmue III Looks... BAD + Why PSN Downloads Slow + Ban Killer Robots!","description":"It's Gamescom week so there's tons of news! Unfortunately for Shenmue, it's that the new game's trailer doesn't do it any favors. A blogger thinks he's figured out why PSN downloads are so slow and has suggestions how you can improve them. Top AI specialists are calling for a ban on killer robots. Plus, PlayStation is teasing something new, we've got new gameplay for Far Cry 5, a new demo shows off Battlefront 2 gameplay, Need for Speed has a new trailer, THQ has announced a new game called Biomutants, Age of Empires 4 is coming, Metal Gear Survive will have base building, bad news for fans hoping for more Crimson Skies or Dark cloud, Final Fantasy XV may appear on Switch, and Stranger Things is definitely getting a third season.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/135da366-7466-468d-af1e-9ce012cb1da9/sm/24363-1503443220973-thumbnail.jpg","duration":551,"publication_date":"2017-08-22T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-snes-classic-insomniac-edition","changefreq":"weekly","video":[{"title":"2017:E267 - SNES Classic Edition SOLD OUT","description":"SNES Classic pre-orders are finally here! AAAAnnnnnndd they're gone. Thanks, Nintendo.","player_loc":"https://roosterteeth.com/embed/game-news-2017-snes-classic-insomniac-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc8d9998-7ec1-4b59-bf84-87be3db57aac/sm/24363-1503445365921-thubnail3.jpg","duration":365,"publication_date":"2017-08-22T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-battlegrounds-xbox-exclusive-or-n-o-t","changefreq":"weekly","video":[{"title":"2017:E266 - Battlegrounds: Xbox Exclusive OR NOT?","description":"Since Battlegrounds was announced for Xbox One there's been a lot of confusion over whether it's actually an exclusive or just a timed exclusive. Microsoft and Bluehole decided to clear all that up at Gamescom.... sorta?","player_loc":"https://roosterteeth.com/embed/game-news-2017-battlegrounds-xbox-exclusive-or-n-o-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c994c74a-1257-48f1-aa0e-6b93983abb75/sm/24363-1503369917002-thumbnail.jpg","duration":451,"publication_date":"2017-08-22T02:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mass-effect-andromeda-abandoned","changefreq":"weekly","video":[{"title":"2017:E265 - Mass Effect Andromeda ABANDONED","description":"It's official. Mass Effect Andromeda is dead after 5 months. No campaign DLC. No patches. Take it out back and bury it.","player_loc":"https://roosterteeth.com/embed/game-news-2017-mass-effect-andromeda-abandoned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d247e45e-8001-4172-8306-4521629485d2/sm/24363-1503362302855-thumbnail.jpg","duration":337,"publication_date":"2017-08-22T00:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-x-sold-out-play-station-hacked-nasa-terraforming-mars","changefreq":"weekly","video":[{"title":"2017:E158 - Xbox One X SOLD OUT + PlayStation HACKED + NASA Terraforming Mars","description":"Xbox One X pre-orders went up and it's already sold out. PlayStation got hacked on social media.... and maybe their user database too. NASA is attempting to create oxygen on Mars. Plus, Battlefront 2 shows off space battles, Madden 18 reviews are in, Xbox is getting more crossplay while PlayStation keeps it locked down, Final Fantasy XV is getting a bonus on PC, Conan Exiles has a new publisher, HTC Vive got a price cut, Patty Jenkins will get a big payday for Wonder Woman 2, and streaming video may get extra taxes.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-x-sold-out-play-station-hacked-nasa-terraforming-mars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3d26c68-7389-457c-ae5a-58a4e7dea108/sm/24363-1503351507818-thumbnail.jpg","duration":551,"publication_date":"2017-08-21T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-12","changefreq":"weekly","video":[{"title":"S1:E11 - New Game+ #12","description":"Ashley, Adam, and Side Glitch Ben dig into the mailbag. What games do you go back to repeatedly? Also, what expectations do you have on game genres?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef2cdc7e-9447-4d66-9b61-8192e80e837b/sm/2411188-1503082839183-GP12_-_PS_-_THUMB.jpg","duration":960,"publication_date":"2017-08-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-prank-family-facing-10-years-in-prison","changefreq":"weekly","video":[{"title":"2017:E29 - Prank Family Facing 10 YEARS in Prison?!","description":"2017:E29 - Prank Family Facing 10 YEARS in Prison?!","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-prank-family-facing-10-years-in-prison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/534fba08-7a54-4722-af4e-5da154416b43/sm/710924-1503086139360-thumbnail.jpg","duration":278,"publication_date":"2017-08-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-controlling-small-developers","changefreq":"weekly","video":[{"title":"2017:E264 - Steam CONTROLLING Small Developers?","description":"2017:E264 - Steam CONTROLLING Small Developers?","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-controlling-small-developers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3efe77a-a9b5-4bf0-b7b5-268314fc7193/sm/710924-1503083488151-thumbnail.jpg","duration":351,"publication_date":"2017-08-19T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-wins-july-fishing-planet-2-extreme-4-u-gpu-price-hikes-coming","changefreq":"weekly","video":[{"title":"2017:E157 - Switch WINS July + Fishing Planet 2 EXTREME 4 U + GPU Price Hikes Coming?","description":"2017:E157 - Switch WINS July + Fishing Planet 2 EXTREME 4 U + GPU Price Hikes Coming?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-wins-july-fishing-planet-2-extreme-4-u-gpu-price-hikes-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f14a51c-eeed-41af-a34a-affa5e1649fc/sm/710924-1503079951201-thumbnail.jpg","duration":579,"publication_date":"2017-08-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-sonic-mania-12","changefreq":"weekly","video":[{"title":"S1:E12 - Sonic Puts A Ring On It - #12","description":"This week Ashley, Ryan, and Adam speedrun the news (18:14), catch Sonic Mania with Miles (49:36), and champion old games for second chances (1:10:18). ","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-sonic-mania-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7b84061-d682-4595-a8cd-e9f6c1b5002c/sm/2411188-1503080115544-GP12_-_THUMB.jpg","duration":4920,"publication_date":"2017-08-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-uncharted-the-lost-legacy-is-it-g-o-o-d-xbox-one-x-pre-order-details-amd-vega-reviewed","changefreq":"weekly","video":[{"title":"2017:E156 - Uncharted The Lost Legacy: IS IT GOOD? + Xbox One X Pre-order Details + AMD Vega REVIEWED","description":"Reviews are out for Uncharted: The Lost Legacy. Want to know when to pre-order an Xbox One X? Those details incoming. AMD Radeon Vega reviews are in and they're... pretty good but still having trouble standing up to Nvidia. Plus, PlayStation Experience details, Shenue III finds a publisher, Microsoft has some surprises planned for Gamescom, EA was confused by Nintendo Switch, Iron Harvest is a new steampunkish RTS, Nielson is getting into eSports ratings, HBO's social media has been hacked, and Tom Cruise has been injured and set back production on the next Mission: Impossible movie.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-uncharted-the-lost-legacy-is-it-g-o-o-d-xbox-one-x-pre-order-details-amd-vega-reviewed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a96916b8-8400-466a-b339-8858f5b42c4b/sm/24363-1503002783894-thumbnail.jpg","duration":575,"publication_date":"2017-08-17T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-discord-vs-free-s-p-e-e-c-h-nope","changefreq":"weekly","video":[{"title":"2017:E28 - Discord vs FREE SPEECH!? nope.","description":"Discord's in the spotlight for banning a server belonging to the Alt Right political group, with similar moves following from GoDaddy, Reddit, Google, and others. This has some decrying the death of free speech on the internet. Except... that's not how free speech works.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-discord-vs-free-s-p-e-e-c-h-nope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14510f18-5bb2-4868-a9e9-c465877ada27/sm/24363-1502924306153-thumbnail.jpg","duration":586,"publication_date":"2017-08-16T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-gets-bent","changefreq":"weekly","video":[{"title":"2017:E261 - Nintendo Switch GETS BENT","description":"Nintendo Switch is selling like crazy, and some early adopters are running into that good old \"bendy Switch\" issue again, and in greater numbers. Still, it's got a long way to go before it becomes a red ring level issue.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-gets-bent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3428e4d4-b1ea-41c6-bbf1-5b8cbc1bcba5/sm/24363-1502921881795-thumbnail.jpg","duration":451,"publication_date":"2017-08-16T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-rejected-for-nintendo-switch-battlegrounds-passes-league-of-legends-hbo-airs-game-of-thrones-early","changefreq":"weekly","video":[{"title":"2017:E155 - REJECTED for Nintendo Switch + Battlegrounds Passes League of Legends + HBO Airs Game of Thrones EARLY","description":"Looks like the \"most shocking\" game ever, Night Trap, won't be coming to Nintendo Switch. PlayerUnknown's Battlegrounds has passed League of Legends for viewers on Twitch, in case you were wondering whether people like that game. HBO accidentally aired the next episode of Game of Thrones almost a week early so be wary of spoilers across the internet. Plus, legenday game designer SWERY is working on a new game about cats, a new survey has discovered exactly what people want from their RPGs, DOTA2 International viewers were up again this year, with even more viewers, a subscription service will let you go to a movie in theaters every day for $10 per month, Nick Fury is mysteriously missing from upcoming Marvel films, Daniel Craig has confirmed he's returning as James Bond, and we're getting more movie-themed parks except these ones are way less exciting than Harry Potter or Star Wars.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-rejected-for-nintendo-switch-battlegrounds-passes-league-of-legends-hbo-airs-game-of-thrones-early","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f76c50d-a503-4e62-8fad-3acdc4b3e5fe/sm/24363-1502912520109-thumbnail.jpg","duration":552,"publication_date":"2017-08-16T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-walking-dead-creator-at-war-with-amc","changefreq":"weekly","video":[{"title":"2017:E30 - Walking Dead Creator AT WAR with AMC","description":"No, this isn't Deja Vu. In addition to being under suit by the show's original showrunner, AMC is now being sued by Walking Dead creator Robert Kirkman and the entire producing team currently working on the show over accusations the studio is shortchanging them.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-walking-dead-creator-at-war-with-amc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e08d33ef-2f0a-4445-b509-cdf57b5c067b/sm/24363-1502839196690-thumbnail.jpg","duration":377,"publication_date":"2017-08-15T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-blizzard-admits-big-mistake","changefreq":"weekly","video":[{"title":"2017:E260 - Blizzard Admits BIG MISTAKE","description":"We all make mistakes. But you don't mess with Battle.net, even if you're Blizzard. You know what happens when you try to rename it? Everyone ignores you.","player_loc":"https://roosterteeth.com/embed/game-news-2017-blizzard-admits-big-mistake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec58136-dd67-4acd-abac-e2d5143bbad8/sm/24363-1502838446693-thumbnail.jpg","duration":392,"publication_date":"2017-08-15T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-crash-bandicoot-rivals-cod-destiny-s-steam-mistake-game-of-thrones-leak-arrest","changefreq":"weekly","video":[{"title":"2017:E154 - Crash Bandicoot Rivals COD + Destiny's Steam MISTAKE + Game of Thrones Leak ARREST","description":"Crash Bandicoot is putting up Call of Duty-level sales domination weeks in the UK. Destiny transactions briefly appeared on Steam but Bungie says it's a mistake. Four arrests have been made in the Game of Thrones episode leak. Plus, details for the Call of Duty private beta, we may get another HD remaster of Okami, Agents of Mayhem is out and it's... ok, Nier: Automata is credited with saving Platinum Games from some serious trouble, the new Xbox wireless adapter has been delayed, Tencent is rumored to be investing in Bluehole, and Johnny Depp is producing a Secret World TV show.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-crash-bandicoot-rivals-cod-destiny-s-steam-mistake-game-of-thrones-leak-arrest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a69fc53a-8c58-478b-86a3-3a19ddd118d2/sm/24363-1502829877924-thumbnail.jpg","duration":581,"publication_date":"2017-08-15T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7-jon-snow-is-w-h-a-t-know-your-t-h-r-o-n-e-s-game-of-thrones-season-7-episode-5-nerdathon","changefreq":"weekly","video":[{"title":"GoTS7:E5 - JON SNOW IS WHAT? - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 5","description":"Hope you're up to date on Game of Thrones! If you're not, don't watch this! If you are, join us as we recap the Eastwatch episode, make bold predictions about what's still to come, dig into more of the world's lore, and add names to our own death watch.","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7-jon-snow-is-w-h-a-t-know-your-t-h-r-o-n-e-s-game-of-thrones-season-7-episode-5-nerdathon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a7671aa-b60c-424e-b161-14af850e8178/sm/24363-1502753635702-site_thumb.jpg","duration":3154,"publication_date":"2017-08-15T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-for-honor-s-fail-tournament","changefreq":"weekly","video":[{"title":"2017:E258 - For Honor Comeback Celebration EMBARRASSING?","description":"For Honor's dropping a new update, adding dedicated servers... all good things! Unfortunately, the tournament they held to celebrate was an embarrassing mess that just highlighted how far they still have to go.","player_loc":"https://roosterteeth.com/embed/game-news-2017-for-honor-s-fail-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0134e750-9e44-4a18-986a-19a8e7e8413f/sm/24363-1502749258962-thumbnail.jpg","duration":354,"publication_date":"2017-08-14T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-11","changefreq":"weekly","video":[{"title":"S1:E10 - New Game+ #11","description":"With the new Hearthstone expansion out Gus decides to open up some card packs. Let's see what he gets!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5934eae-a443-4169-9f91-b6bb9318a113/sm/2411188-1502485833776-GP11_-_PS_-_THUMB.jpg","duration":732,"publication_date":"2017-08-12T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-sued-over-switch","changefreq":"weekly","video":[{"title":"2017:E257 - Nintendo Switch LAWSUIT to Stop Sales!?","description":"You thought you had trouble buying a Nintendo Switch now? Just wait! They're being taken to court by a company claiming they have the patent for joy cons, and they're asking the court to pull Nintendo Switch from store shelves!","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-sued-over-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5610143d-6a7e-4495-a54a-58c671d75fd5/sm/24363-1502496440343-thumbnail.jpg","duration":504,"publication_date":"2017-08-12T01:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-no-man-s-sky-finally-good","changefreq":"weekly","video":[{"title":"2017:E256 - No Man's Sky SURPRISE MULTIPLAYER","description":"One year after its heavily-criticized release, No Man's Sky's developer, Hello Games, has dropped an enormous update that take the first multiplayer steps for the game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-no-man-s-sky-finally-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85fbdb39-9f2e-4120-991d-510f8e196606/sm/24363-1502496298896-thumbnail.jpg","duration":485,"publication_date":"2017-08-12T00:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-friday-round-up","changefreq":"weekly","video":[{"title":"2017:E152 - Sonic Mania BREAKS Street Date! + HBO Bribes Hackers + Official Fidget Spinner Warning","description":"A few lucky Sonic fans have gotten early copies of Sonic Mania after the game was sent out ahead of release. HBO has attempted to bribe the hackers behind the Game of Thrones leak. Fidget Spinners are now getting all those warning that should be super obvious but apparently aren't. Plus, big changes are coming to Xbox Live's achievements, SEGA Confirms they're actively looking at Shenmue remasters, Chucklefish is teasing Stardew Valley for Nintendo Switch LIKE BIG OLD JERKS, PUBG has issued another controversial player ban, Disney's no longer distributing Studio Ghibli films in the US, Avengers 4 filming has begun, and 4 Earth-like planets have been found in the goldilocks zone around a nearby star.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-friday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a941f6e7-1500-427c-8d19-1ab8e04af77c/sm/24363-1502483435409-thumbnail.jpg","duration":617,"publication_date":"2017-08-11T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-banging-dinosaur-style-11","changefreq":"weekly","video":[{"title":"S1:E11 - Cents On The Hour - #11","description":"On this week's economical episode Ashley, Gus, Ryan, and Adam speedrun the news(23:50) peep on holograms in Tacoma (58:40) and try to figure out what is the value of a game's price(1:17:23). This episode of Glitch Please is brought to you by Blue Apron (BlueApron.com/glitch) and Casper (Casper.com/glitch Promo Code: glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-banging-dinosaur-style-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5bcc2d2-0a33-40ae-9f79-a2b61c13da78/sm/2411188-1502472156769-GP11_-_THUMB.jpg","duration":5900,"publication_date":"2017-08-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-disney-spying-on-kids","changefreq":"weekly","video":[{"title":"2017:E27 - Disney's Illegal SPY Apps?","description":"Disney is under legal fire over accusations that more than 40 smartphone apps are spying on users, including kids, and then selling that information in violation of COPPA.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-disney-spying-on-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f737e4c-50a9-4387-af0e-0e4355e7be7d/sm/24363-1502481882855-maxresdefault_9.jpg","duration":422,"publication_date":"2017-08-11T03:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-fps-games-bad-for-your-brain","changefreq":"weekly","video":[{"title":"2017:E255 - Video Games SHRINK YOUR BRAIN? Uh... no","description":"A new study's come out that shows shooter games can result in the loss of gray matter in the hippocampus. TIME TO PANIC? Not exactly.","player_loc":"https://roosterteeth.com/embed/game-news-2017-fps-games-bad-for-your-brain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be66e755-9bc9-45f4-bd22-6a62f0d40485/sm/24363-1502481688205-maxresdefault_10.jpg","duration":435,"publication_date":"2017-08-11T03:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-battlegrounds-2-s-u-r-v-i-v-a-l-ps4-pro-getting-an-upgrade-tweet-to-aliens","changefreq":"weekly","video":[{"title":"2017:E151 - Battlegrounds 2: SURVIVAL? + PS4 Pro Getting an Upgrade + Tweet to Aliens","description":"PlayerUnknown on his next game to follow Battlegrounds. Details have leaked about PS4's upcoming firmware update and it comes with some nice upgrades specifically for PS4 Pro. Want to be the first person to tweet out to all the aliens that may be trying to ignore us? NASA wants to help you. Plus, Call of Duty World War II's Destiny-like social space, Lawbreakers is having a pretty tough launch so far, Gran Turismo Sport is bucking the trend and skipping the microtransactions, AI is learning to play StarCraft 2, Tales from the Borderlands may have been received well but is considered a failure internally, Deadpool director Tim Miller is adapting Neuromancer, and Donald Glover's speaking on the director change for the Han Solo movie.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-battlegrounds-2-s-u-r-v-i-v-a-l-ps4-pro-getting-an-upgrade-tweet-to-aliens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8918307-2c46-4931-b6da-9085bb8714d2/sm/24363-1502396395042-thumbnail.jpg","duration":546,"publication_date":"2017-08-10T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-fidget-spinner-50-dlc","changefreq":"weekly","video":[{"title":"2017:E255 - Insane Fidget Spinner GOLD VAPE DLC Costs 50x More Than The Game","description":"So you thought fidget spinners were a passing trend. So did we, until we caught Jon Risinger with one unironically. Honestly we probably sell them now because there's some kind of legislation requiring we hop on the bandwagon. Anyway, if you want to pay $50 for a pretend gold fidget spinner and vape pen you can now. Here's hoping I get kidnapped by aliens any day now.","player_loc":"https://roosterteeth.com/embed/game-news-2017-fidget-spinner-50-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89ee622f-684d-465c-b706-4b6a39e83217/sm/710924-1502315487941-Thumbnail.jpg","duration":437,"publication_date":"2017-08-10T02:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-metroid-amiibo-holds-game-mode-hostage","changefreq":"weekly","video":[{"title":"2017:E255 - Metroid Game Mode Held HOSTAGE","description":"Metroid: Samus Returns is the perfect game to tide gamers over until Metroid Prime 4, except for one thing: Nintendo may have overstepped with its exclusive amiibo content this time around by locking an entire game mode behind an amiibo that costs almost as much as the game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-metroid-amiibo-holds-game-mode-hostage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6663cb1-de39-4f31-8e1e-ba1ba36edddd/sm/24363-1502389532130-maxresdefault_7.jpg","duration":417,"publication_date":"2017-08-10T02:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-valve-s-big-cashgrab","changefreq":"weekly","video":[{"title":"2017:E254 - Valve's New CASHGRAB?","description":"Valve has FINALLY announced a new game! It can still happen! They still make them! As long as there's some kind of crazy trend that will make them a boatload of money, that is. Not one of the games anyone was actually hoping for.","player_loc":"https://roosterteeth.com/embed/game-news-2017-valve-s-big-cashgrab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb384804-e8ac-4d2b-80f7-6938efc0a1c6/sm/24363-1502389459068-maxresdefault_6.jpg","duration":423,"publication_date":"2017-08-10T02:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pokemon-switch-first-details-no-man-s-sky-is-back-video-games-at-the-olympics","changefreq":"weekly","video":[{"title":"2017:E150 - Pokemon Switch First Details? + No Man's Sky Is BACK + Video Games at the Olympics","description":"We've finally almost got a detail for the Pokemon title planned for Nintendo Switch. No Man's Sky is back with another update and the devs talk about their, uh, bumpy launch. Video Games might be in the Olympics when they hit Paris. Plus, Gearbox's next game isn't Borderlands, Ubisoft is opening a new studio, Destiny 2's doubling down on their Dorito Popeitude with scented candles, Overwatch has new skins for summer, Wonder Woman's hit a new milestone, Game of Thrones has beat its new record already, and Disney's starting its own streaming service and ditching Netflix.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pokemon-switch-first-details-no-man-s-sky-is-back-video-games-at-the-olympics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fa7a3ab-78fb-4f80-bd82-0b8c2bb5ab0e/sm/24363-1502309715284-thumbnail.jpg","duration":534,"publication_date":"2017-08-09T21:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7-4","changefreq":"weekly","video":[{"title":"GoTS7:E4 - The Big Payoff - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 4","description":"It's time for payoffs years in the making. Join us to discuss the explosive events of the latest episode of Game of Thrones: The Spoils of War.","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2368f7b-d205-4736-b2c6-b2b4caeda264/sm/24363-1502306118961-thumbnail.jpg","duration":1991,"publication_date":"2017-08-09T19:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-destiny-2-is-dorito-pope-hellblade-deletes-saves-game-of-thrones-stars-doxxed","changefreq":"weekly","video":[{"title":"2017:E149 - Destiny 2 Is Dorito Pope + Hellblade DELETES Saves? + Game of Thrones Stars DOXXED","description":"2017:E149 - Destiny 2 Is Dorito Pope + Hellblade DELETES Saves? + Game of Thrones Stars DOXXED","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-destiny-2-is-dorito-pope-hellblade-deletes-saves-game-of-thrones-stars-doxxed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8949b715-6c9a-4d35-873f-670bbb6ffbf1/sm/710924-1502209290743-Thumbnail.jpg","duration":530,"publication_date":"2017-08-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-shadow-of-war-always-online","changefreq":"weekly","video":[{"title":"2017:E250 - Shadow of War Microtransaction Controversy","description":"2017:E250 - Shadow of War Microtransaction Controversy","player_loc":"https://roosterteeth.com/embed/game-news-2017-shadow-of-war-always-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f0ed674-65c5-41b1-8f96-e58df2cd2310/sm/710924-1502141944855-thumbnail.jpg","duration":274,"publication_date":"2017-08-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-steam-beats-xbox-live-no-man-s-sky-arg-livestream-am2r-developer-hired","changefreq":"weekly","video":[{"title":"2017:E148 - Steam Beats Xbox Live + No Man's Sky ARG Livestream + AM2R Developer HIRED","description":"2017:E148 - Steam Beats Xbox Live + No Man's Sky ARG Livestream + AM2R Developer HIRED","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-steam-beats-xbox-live-no-man-s-sky-arg-livestream-am2r-developer-hired","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c0cd6e8-abd4-47cc-8e9d-99c735b78b6b/sm/710924-1502130101834-thumbnail.jpg","duration":522,"publication_date":"2017-08-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-10","changefreq":"weekly","video":[{"title":"S1:E9 - New Game+ #10","description":"How many games are in your Steam Library? Also what would get you to buy into a Kickstarter campaign?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58eb327a-f886-48f6-ba20-991c131abc0c/sm/690915-1501860597637-GP10_-_PS_-_THUMB.jpg","duration":867,"publication_date":"2017-08-05T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-activision-milking-remasters-now","changefreq":"weekly","video":[{"title":"2017:E249 - Activision MILKING Remasters?","description":"2017:E249 - Activision MILKING Remasters?","player_loc":"https://roosterteeth.com/embed/game-news-2017-activision-milking-remasters-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0b9f8ac-92e6-4368-9012-ab04201fa307/sm/710924-1501890538678-thumbnail.jpg","duration":348,"publication_date":"2017-08-05T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-limits-streaming","changefreq":"weekly","video":[{"title":"2017:E248 - Destiny 2 LIMITS Streaming?","description":"2017:E248 - Destiny 2 LIMITS Streaming?","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-limits-streaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22255bd1-2954-4902-83a9-68318ea434a9/sm/710924-1501883324509-thumbnail.jpg","duration":447,"publication_date":"2017-08-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-last-of-us-2-details-ubisoft-kills-mods-seriously-more-alex-mauer-strikes","changefreq":"weekly","video":[{"title":"2017:E147 - Last of Us 2 Details? + Ubisoft KILLS Mods? + Seriously, MORE Alex Mauer Strikes?!","description":"2017:E147 - Last of Us 2 Details? + Ubisoft KILLS Mods? + Seriously, MORE Alex Mauer Strikes?!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-last-of-us-2-details-ubisoft-kills-mods-seriously-more-alex-mauer-strikes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54e557a1-31e1-44b1-a782-2713ecac4bc7/sm/710924-1501874808920-last_of_us_2_roundup_thumb.jpg","duration":477,"publication_date":"2017-08-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-hump-the-tree-to-life-10","changefreq":"weekly","video":[{"title":"S1:E10 - How to Destroy Your Computer in 1 Easy Step - #10","description":"Join Ashley, Gus, and Ryan as they go over the games they've been playing, speedrun the news (19:58), discuss their summer game backlogs (55:19), and take the 1 year anniversary of No Man's Sky think about which games got better with time (1:11:50). This episode is sponsored by MeUndies (MeUndies.com/glitch).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-hump-the-tree-to-life-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0d69de-3349-4664-98fd-d74d7cf699e9/sm/690915-1501801190049-GP07_-_THUMB.jpg","duration":4767,"publication_date":"2017-08-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-everyone-hates-dark-tower","changefreq":"weekly","video":[{"title":"2017:E29 - Everyone HATES The Dark Tower","description":"Reviews for the long-awaited The Dark Tower movie are here and.....drum roll please! It sucks. Sorry.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-everyone-hates-dark-tower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a10bf3f-5ecc-4bf7-8de8-5848830c2212/sm/24363-1501800911540-thumbnail.jpg","duration":570,"publication_date":"2017-08-03T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-rockstar-still-won-t-confirm-rdr-2-for-pc","changefreq":"weekly","video":[{"title":"2017:E247 - WHAT IS HAPPENING with Red Dead Redemption 2 on PC?","description":"Time for investor season and all the fun news game publishers like to trot out to brag to their investors about all the ways they've got money out of their endless piggy-banks (that's us, the gamers!). Or, in Take-Two's case, tap-dancing around any confirmation or denial of a PC version for Red Dead Redemption 2.","player_loc":"https://roosterteeth.com/embed/game-news-2017-rockstar-still-won-t-confirm-rdr-2-for-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/475fd14b-f57c-4600-a122-a2143a1e8954/sm/24363-1501799327702-thumbnail.jpg","duration":479,"publication_date":"2017-08-03T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-classic-consoles-b-r-o-k-e-n-aaa-switch-port-rumor-game-of-thrones-hack-gets-worse","changefreq":"weekly","video":[{"title":"2017:E146 - Classic Consoles BROKEN? + Xbox Goads PlayStation + RE Canceled Over Battlefront 3 Leak","description":"AtGames insists their classic consoles don't suck, they're just broken! Xbox goads PlayStation over crossplay. Resident Evil Raccoon City dev admits his game was cancelled over a Battlefront 3 leak. Plus, Injustice 2 tops grossing games for the second quarter, PUBG has a massive update going live, PSVR is still winning the minds of consumers over other VR solutions, a AAA port specialist may be bringing some popular properties to Nintendo Switch, Leia's send-off in Star Wars:Episode VIII will be \"amazing,\" the HBO hack may be worse than Sony's, and NASA's hiring a protector of the planet but it's less fun than it sounds.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-classic-consoles-b-r-o-k-e-n-aaa-switch-port-rumor-game-of-thrones-hack-gets-worse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45cd7469-b1cc-43e1-a4b8-a87661708c0f/sm/24363-1501797248323-thumbnail.jpg","duration":611,"publication_date":"2017-08-03T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-you-tube-hiding-shadow-banning-videos","changefreq":"weekly","video":[{"title":"2017:E26 - YouTube Secretly HIDING Videos?","description":"We're all used to this new post-adpocalypse YouTube, so it's time for the video giant to ruffle more feathers by secretly hiding videos that don't break guidelines but that they don't really like anyway.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-you-tube-hiding-shadow-banning-videos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b9947c-a575-4df6-a85d-6fd9c5b71f22/sm/24363-1501724479867-yt_hiding_videos.jpg","duration":545,"publication_date":"2017-08-03T01:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-kickstarter-developer-abandons-game-after-3-years","changefreq":"weekly","video":[{"title":"2017:E246 - Studio RUNS OFF with $660K Kickstarter Funds","description":"After languishing in Kickstarter limbo for years beyond the promised release date, Unsung Story developer Playdek has decided they're done with the project. Not completed. They just aren't going to work on it anymore. Instead they've farmed it off to a studio known primarily for childrens licensed games, and that studio's going to have to start all over.","player_loc":"https://roosterteeth.com/embed/game-news-2017-kickstarter-developer-abandons-game-after-3-years","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f42e6cf-48f1-496a-ad24-503b768af749/sm/24363-1501709395974-thumbnail.jpg","duration":495,"publication_date":"2017-08-02T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-snes-pre-orders-announced-8-k-on-p-s5-star-wars-bitcoin-headline-3","changefreq":"weekly","video":[{"title":"2017:E145 - SNES Classic Pre-orders Announced + PS5 is 8K? + Star Wars Needs Help","description":"Nintendo has officially announced pre-orders for SNES Classics in North America. GT Sport's creator is planning for 8K on the next PlayStation. Star Wars is bringing in extra help to fix Star Wars Episode IX. Plus, Super Mario Odyssey enters new territory as the first E10+ ESRB rating for the series, Assassin's Creed Origins has gang fights (and hug fights), Dragon Quest XI is doing great in sales so far, Stardew Valley multiplayer has a release window, Overcooked is half-baked on Nintendo Switch, Ant-man and the Wasp goes into full production, and Bitcoin's now splitting in 2.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-snes-pre-orders-announced-8-k-on-p-s5-star-wars-bitcoin-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9a71adf-d209-40e6-81fd-b075c13b7932/sm/24363-1501708632921-thumbnail.jpg","duration":661,"publication_date":"2017-08-02T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7-3","changefreq":"weekly","video":[{"title":"GoTS7:E3 - Daenerys Has Too Many Titles - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 3","description":"Join us as we dig into everything that happened during the latest episode of Game of Thrones. That's Season 7, Episode 3. If you haven't watched that yet, you probably don't want to watch this! If you have, join us to dig into it and speculate about what's going to happen next!","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8865d980-a6d0-4110-8209-467976353010/sm/24363-1502755613001-site_thumb.jpg","duration":2928,"publication_date":"2017-08-01T23:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bioware-montreal-shut-down","changefreq":"weekly","video":[{"title":"2017:E245 - Bioware Montreal SHUT DOWN","description":"There's been speculation about trouble for BioWare's Montreal studio--the studio behind the poorly received Mass Effect: Andromeda. Now EA's ripped the bandage off and announced that the studio's shutting down and the developers are being shuffled into projects at Motive instead. So... RIP Quarian Ark DLC, probably.","player_loc":"https://roosterteeth.com/embed/game-news-2017-bioware-montreal-shut-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fdda1d6-f504-4dea-bca8-281f5c5aef03/sm/24363-1501628174597-thumbnail.jpg","duration":426,"publication_date":"2017-08-01T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gta-sued-by-p-s-y-c-h-i-c-s","changefreq":"weekly","video":[{"title":"2017:E244 - GTA SUED by PSYCHICS","description":"GTA is headed to court AGAIN! Except this time it's not an offended starlet looking for a payday. It's...PSYCHICS! ","player_loc":"https://roosterteeth.com/embed/game-news-2017-gta-sued-by-p-s-y-c-h-i-c-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/518cbf64-cd81-4f02-a2b8-6d39f6a69f21/sm/24363-1501624984925-thumbnail.jpg","duration":429,"publication_date":"2017-08-01T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-player-unknown-defends-crates-game-stop-employees-mad-gi-fs-r-u-i-n-e-d","changefreq":"weekly","video":[{"title":"2017:E144 - Player Unknown Defends Crates + GameStop Employees Mad + GIFs RUINED?","description":"PlayerUnknown comes out in defense of paid crates. GameStop employees are upset their corporate overlords will have them working on Thanksgiving. Are GIFs ruined forever?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-player-unknown-defends-crates-game-stop-employees-mad-gi-fs-r-u-i-n-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20b1fa87-653a-4c46-a31f-44ea4b56ffab/sm/24363-1501623223632-thumbnail.jpg","duration":536,"publication_date":"2017-08-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-game-of-thrones-hacked-leaked","changefreq":"weekly","video":[{"title":"2017:E28 - Game of Thrones HACKED & LEAKED","description":"The Internet Is Dark And Full Of Terrors. Especially since hackers got their hands on a bunch of HBO's stuff, but MOST IMPORTANTLY on Game of Thrones. They've already begun releasing spoilers so now's a good time to never look at social media again, or at least until the end of the season.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-game-of-thrones-hacked-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b82fdfc-40d7-4108-a492-5cd0a14c0060/sm/24363-1501542481619-thumbnail.jpg","duration":399,"publication_date":"2017-07-31T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-crash-bandicoot-leaked-for-xbox-one","changefreq":"weekly","video":[{"title":"2017:E243 - Crash Bandicoot LEAKED for Xbox One?","description":"Crash Bandicoot: N.Sane Trilogy has been one of PS4's biggest sellers this year. But it looks like it may not be staying exclusive after all...","player_loc":"https://roosterteeth.com/embed/game-news-2017-crash-bandicoot-leaked-for-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e98f709-0dbf-4a6b-8766-563bff72b261/sm/24363-1501539175043-thumbnail.jpg","duration":348,"publication_date":"2017-07-31T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-battlefield-5-6-2-first-details-alex-mauer-strikes-again-magic-player-stabbed-over-game","changefreq":"weekly","video":[{"title":"2017:E143 - Battlefield 5 (6? 2?) FIRST DETAILS + Alex Mauer STRIKES Again + Magic: The Gathering Player STABBED Over Game","description":"EA has confirmed the first details for the next Battlefield game, but we still don't know what to call it. Bad Company 3, maybe? Alex Mauer, who has become infamous for DMCA sprees against YouTube videos and indie game developers has struck again. A Magic: The Gathering player has been stabbed over the game. Plus, EA's happy that Red Dead Redemption 2 got delayed (but not TOO happy), Niantic is postponing some of its European events for Pokemon Go, Bluehole has responded to the PlayerUnknown's Battlegrounds stream sniping controversy, ANOTHER study has shown that video games don't cause aggression, Night Trap 25th Anniversary Edition drops in August, AMD's answer to Nvidia's 1070/1080 line of graphics cards has been revealed, Persona 5 is getting an anime, and robots can now crack safes.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-battlefield-5-6-2-first-details-alex-mauer-strikes-again-magic-player-stabbed-over-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96fca072-e599-4fc3-a93d-0636c7727994/sm/24363-1501530153558-thumbnail.jpg","duration":606,"publication_date":"2017-07-31T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-9","changefreq":"weekly","video":[{"title":"S1:E8 - New Game+ #9","description":"What's the smuttiest game we've ever played? We answer your mailbag questions, exclusively for Rooster Teeth FIRST members.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64a84d0f-085e-484c-9068-9fa7cfaba037/sm/24363-1501280888112-GP09_-_PS_-_THUMB.png","duration":726,"publication_date":"2017-07-29T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pok-mon-go-fest-lawsuit","changefreq":"weekly","video":[{"title":"2017:E241 - Pokémon Go Fest LAWSUIT","description":"Everyone agrees that Pokémon Go Fest was kind of a disaster. Some people take that more seriously than others. Some people lodge lawsuits over it. Like these guys.","player_loc":"https://roosterteeth.com/embed/game-news-2017-pok-mon-go-fest-lawsuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cfea2a4-0ace-486d-bca9-be9b1638b5c4/sm/24363-1501280316944-thumbnail.jpg","duration":431,"publication_date":"2017-07-28T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-play-station-plus-price-hike-modern-warfare-remastered-broken-emoji-worst-movie-ever","changefreq":"weekly","video":[{"title":"2017:E142 - PlayStation Plus PRICE HIKE + Modern Warfare Remastered BROKEN + Emoji WORST MOVIE EVER","description":"PlayStation Plus gets a big price hike in some regions. Modern Warfare Remastered hit PC and it's super broken. The Emoji movie might be the worst movie ever made--not a single good review. Plus, that GTA VI leak has been denied, Mass Effect Andromeda made EA money anyway, the SEGA Flashback console is a big skip, For Honor is getting dedicated servers, NASA cautions people about eclipse glasses, researchers shut down an AI that developed its own language, and an asteroid almost hit Earth and no one noticed it until afterward.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-play-station-plus-price-hike-modern-warfare-remastered-broken-emoji-worst-movie-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd9ecbc0-4f85-4d3b-be2e-cb2106331cf6/sm/24363-1501280128901-thumbnail.jpg","duration":644,"publication_date":"2017-07-28T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-9","changefreq":"weekly","video":[{"title":"S1:E9 - Make It Fun For Me Now - #9","description":"Join Ashley, Adam, and Ryan as they go over the new games they've been playing and share their impressive accomplishments for the week, evaluate Fortnite's successes and failures (27:00), run through the craziest news of the week (48:50), and  debate whether exclusives are helpful or harmful to gamers and the gaming industry (1:11:50). This episode is sponsored by MVMT Watches (mvmt.com/glitch).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/901a07e0-93d5-4a24-bba0-2f25d356e13b/sm/24363-1501265812239-GP09_-_THUMB.png","duration":4999,"publication_date":"2017-07-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-too-sexy-for-steam","changefreq":"weekly","video":[{"title":"2017:E240 - TOO SEXY for Steam","description":"A game called House Party has been removed from Steam after complaints about its sexual content. Just what was it about THIS game in particular that made it too sexy for Steam? Maybe the lewdness? Sexually predatory behavior? BOOBS? And is that fair or is it censorship?","player_loc":"https://roosterteeth.com/embed/game-news-2017-too-sexy-for-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0450181b-5615-427c-8e69-1a6b55c9d7a1/sm/24363-1501190990497-thumbnail.jpg","duration":451,"publication_date":"2017-07-27T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-developer-suing-gamers-over-criticism","changefreq":"weekly","video":[{"title":"2017:E239 - Developer SUING GAMERS Over Criticism!?","description":"When you're a developer you want people to like your game and say nice things about it. And if you have to get the LAW involved to make that happen, YOU'RE GOING TO DO IT! ","player_loc":"https://roosterteeth.com/embed/game-news-2017-developer-suing-gamers-over-criticism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71a4b5b1-44a5-4552-8c81-d81dc063213c/sm/24363-1501188671840-thumbnail.jpg","duration":384,"publication_date":"2017-07-27T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-gta-6-leaked-new-consoles-in-september-darth-vader-cameo","changefreq":"weekly","video":[{"title":"2017:E141 - GTA 6 Leaked + New Consoles in September + Darth Vader Cameo","description":"An actor has confirmed the development of GTA 6. Two more retro consoles come out in September, riiiight before SNES Classic. Darth Vader may be appearing in the Han Solo film. Plus, Walmart has officially cancelled all SNES Classic pre-orders, Splatoon 2 is a massive success, EA wants your feedback on Mass Effect: Andromeda, traveling with portable consoles is getting much less convenient, Captain Marvel won't appear in Infinity War, the FCC is being sued for failing to disclose meetings that could affect net neutrality, and KFC has the hottest new gaming peripheral no one asked for.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-gta-6-leaked-new-consoles-in-september-darth-vader-cameo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a0fde5b-9450-4862-ab01-6a65cc948f43/sm/24363-1501182976747-thumbnail.jpg","duration":490,"publication_date":"2017-07-27T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pubg-ruined","changefreq":"weekly","video":[{"title":"2017:E238 - PlayerUnknown's Battlegrounds RUINED?","description":"PUBG has taken the PC gaming world by storm since March, and sold more than 5 million copies before it even releases. So far so good. Unfortunately, now microtransactions are coming to the game and it's not clear whether the current progression system will even be around once they can charge you extra for loot.","player_loc":"https://roosterteeth.com/embed/game-news-2017-pubg-ruined","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4db12017-4066-42fe-8fcc-820509a4acb8/sm/24363-1501111935255-thumbnail.jpg","duration":559,"publication_date":"2017-07-27T01:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-is-1","changefreq":"weekly","video":[{"title":"2017:E237 - Switch is #1 Console?","description":"Nintendo Switch is on track to sell better than the Wii, which is big news. That would make it Nintendo's best-selling console EVER. Potentially bigger news is that if Nintendo can keep the supply up their new hybrid console is tracking to sell on level with PS4.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-is-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f761e23-60eb-4950-9c31-fca9f47c0ad1/sm/24363-1501110878389-thumbnail.jpg","duration":434,"publication_date":"2017-07-26T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pokemon-on-switch-when-friday-the-13-th-a-b-a-n-d-o-n-e-d-mighty-no-9-trainwrecks-harder","changefreq":"weekly","video":[{"title":"2017:E140 - Pokemon on Switch WHEN + Friday the 13th ABANDONED? + Mighty No 9 Trainwrecks Harder","description":"Nintendo's offering further hints about when to expect Pokemon on Switch... in the least helpful way possible. Fans are upset that Friday the 13th is being abandoned before it's even fixed, but the developer responds. Mighty No. 9 backers got their physical edition reward and they're the laziest rewards possible. Plus, Bungie says they're keeping most of Destiny 2 secret intentionally, Skull & Bones may skip Nintendo Switch, Final Fantasy XV's multiplayer beta is coming soon, Niantic says they'll keep doing live events, the Robotech/Battletech lawsuit is back, Wonder Woman 2 is dated, and Amazon is accused of ripping of customers with its \"sales.\"","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pokemon-on-switch-when-friday-the-13-th-a-b-a-n-d-o-n-e-d-mighty-no-9-trainwrecks-harder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6114c79c-b5b1-49ea-8aeb-76f3734fd121/sm/24363-1501102107283-thumbnail.jpg","duration":554,"publication_date":"2017-07-26T21:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nostalgia-ruining-games","changefreq":"weekly","video":[{"title":"2017:E236 - Gaming's Money-Making Nostalgia Machine","description":"As evidenced recently by the NES Classic and the resurgence in repackaged classic consoles, remakes of games outselling new IPs, and more remasters than ever, gamers are suckers for nostalgia. We'll pay good money for old stuff, and gaming companies know it. There's even science behind it.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nostalgia-ruining-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69696820-6d5d-4322-abdd-1d45565b892e/sm/24363-1501032211859-games_are_suckers.jpg","duration":591,"publication_date":"2017-07-26T01:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-walmart-fucks-up-snes-classic-preorders","changefreq":"weekly","video":[{"title":"2017:E235 - SNES Classic Orders CANCELLED","description":"North American gamers have been not-so-patiently waiting for SNES Classic pre-orders to open up, and they finally did! The next obvious step is to cancel all the orders! Of course.","player_loc":"https://roosterteeth.com/embed/game-news-2017-walmart-fucks-up-snes-classic-preorders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb9cdf98-a433-4909-b6c6-378efcc5633b/sm/24363-1501022208368-thumbnail.jpg","duration":373,"publication_date":"2017-07-25T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-rip-console-cycles-gamers-want-more-diversity-superman-s-digital-mustache-united-bans-comic-books","changefreq":"weekly","video":[{"title":"2017:E139 - No Long Life for PlayStation 4 + Destiny 2 Open World Details + Robots Mapping Your Home","description":"PlayStation says not to expect long life cycles for their products ever again. Bungie's shared details on what Destiny 2's open world areas have to offer. Roombas have been mapping your home and iRobot wants to sell the data. Plus, Nintendo is still surprised by the success of the Switch, THQ Nordic is bringing more games to Gamescom, an Australian survey says gamers want more types of characters in games, Superman has to have his mustache digitally removed, Sweden leaks a ton of private details about its citizens, United banned comic books coming from Comic Con, and the scared dad stream clip is now the most viewed Twitch clip ever.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-rip-console-cycles-gamers-want-more-diversity-superman-s-digital-mustache-united-bans-comic-books","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7e23fa8-14e3-4b8c-903f-ce525931c0c8/sm/24363-1501021437662-thumbnail.jpg","duration":522,"publication_date":"2017-07-25T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-not-working-on-exclusives","changefreq":"weekly","video":[{"title":"2017:E234 - Microsoft HOLDING BACK Xbox Investment?","description":"Is Xbox's exclusive problem a result of Microsoft refusing to invest more in the platform? That's what a source who's leaked accurate Xbox details in the past is claiming.","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-not-working-on-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc2c0613-7f91-490f-9336-f90e1e4a7ae9/sm/24363-1500943600804-thumbnail.jpg","duration":421,"publication_date":"2017-07-25T00:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7-2","changefreq":"weekly","video":[{"title":"GoTS7:E2 - Euron Trouble Now - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 2","description":"TIME FOR THRONES! This week we're discussing season 7 episode 2 and all the wacky things those Westerosi are getting up to. Boobs. Death. Drama. We've got it all.","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da17a5a4-c548-4cb2-b67e-320c72677267/sm/24363-1500943437545-thumbnail.jpg","duration":3035,"publication_date":"2017-07-25T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pokemon-go-to-hell-fest","changefreq":"weekly","video":[{"title":"2017:E233 - Pokemon Go Fest a TOTAL DISASTER","description":"This weekend thousands of Pokemon Go superfans traveled to Chicago to be the first in the world to catch legendary pokemon during Niantic's official Pokemon Go Fest. Unfortunately, EVERYTHING went wrong. Does it join the ranks of Fyre Festival? DashCon? Well, there's no ball pit...","player_loc":"https://roosterteeth.com/embed/game-news-2017-pokemon-go-to-hell-fest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2f99d08-1ebb-4de2-a0c8-0da493da7477/sm/24363-1500942006695-thumbnail.jpg","duration":393,"publication_date":"2017-07-25T00:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-3","changefreq":"weekly","video":[{"title":"2017:E138 - SNES Classic GONE for Now + Breath of the Wild Multiplayer! sort of + Sex Tape Marketing","description":"SNES Classic pre-orders went up at Walmart over the weekend for American gamers and immediately sold out. Breath of the Wild gets multiplayer via an emulator. Agents of Mayhem put out a sex tape to market the game. Plus, Xbox One X pre-orders are coming soon, an analyst thinks having an exclusive like Battlegrounds will help Xbox One more than platform-exclusive content helps PlayStation, Crash Bandicoot keeps Splatoon 2 out of the top sales spot, Red Dead Redemption 2 isn't expected to be as bit a hit as GTA V, we got TONS of trailers out of San Diego Comic Con (Thor Ragnarok, Ready Player One, Stranger Things, and more), rumors are flying that Ben Affleck may be fired as Batman but Affleck says that's not the case, Verizon admits to throttling Netflix on its service, and Microsoft is killing Paint.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a39ba1a-9e7d-4dc5-8d46-5ea231d23807/sm/24363-1500937053656-thumbnail.jpg","duration":611,"publication_date":"2017-07-24T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sony-goes-hard-after-sdk-leakers","changefreq":"weekly","video":[{"title":"2017:E231 - PlayStation Witch Hunt GOES TOO FAR?","description":"Playstation 4's SDK has leaked, and Sony will go to any lengths to try to squash it--including sending their lawyers after discussions and completely unrelated websites.","player_loc":"https://roosterteeth.com/embed/game-news-2017-sony-goes-hard-after-sdk-leakers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/597d5306-18f8-49aa-b3e4-0196044b4997/sm/24363-1500857704895-thumbnail.jpg","duration":305,"publication_date":"2017-07-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-8","changefreq":"weekly","video":[{"title":"S1:E7 - New Game+ #8","description":"Kdin brought in all the different Splatoon amiibo! Join Kdin, Adam, and Mica as they test the different amiibo to see what bonuses they offer in Splatoon 2.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8872a81-a81b-404c-ba1c-e34b63838afc/sm/24363-1500686659205-GP08_-_PS_THUMB_v2.jpg","duration":833,"publication_date":"2017-07-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-pass-saving-xbox","changefreq":"weekly","video":[{"title":"2017:E232 - Game Pass SAVES Xbox?","description":"Xbox hardware sales have fallen off steeply, but Microsoft's games business may have an unlikely savior. Hero enters, stage right. The crowd gasps. A woman faints. A bystander points and cries, \"is that Game Pass?!\" It is.","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-pass-saving-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e706a3c-d02c-42d2-a13c-12b99f733314/sm/24363-1500691852521-game_pass.jpg","duration":504,"publication_date":"2017-07-22T02:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-bungie-responds-to-beta-hate-crash-1-worldwide-wtf-atari-speakerhat","changefreq":"weekly","video":[{"title":"2017:E137 - Bungie Responds to Beta Hate + Crash #1 Worldwide + WTF Atari Speakerhat","description":"Bungie's responded to the backlash from fans over the Destiny 2 beta gameplay. We knew Crash Bandicoot was big in countries that reported in early but now we've got confirmation that it's big EVERYWHERE. Atari is boarding the troll train with a speaker hat that's sure to make you the most hated person in a mile radius.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-bungie-responds-to-beta-hate-crash-1-worldwide-wtf-atari-speakerhat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a9d229c-b4e6-46b5-9070-013ef39294da/sm/24363-1500686223449-thumbnail.jpg","duration":435,"publication_date":"2017-07-22T01:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-inklings-are-children-of-hentai","changefreq":"weekly","video":[{"title":"S1:E8 - Kid in the Streets, Squid in the Sheets - #8","description":"In the freshest episode yet, Gus, Ashley, Adam, and Mica run through the biggest news (21:17), discuss whether Splatoon 2 is worth picking up (54:37), and answer your burning questions (1:18:55).","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-inklings-are-children-of-hentai","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fea39c90-1a1d-4a9e-ac6c-bc02ab76af5f/sm/24363-1500660981519-GP08_-_THUMB0.jpg","duration":5678,"publication_date":"2017-07-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-players-mad-about-destiny-2-beta","changefreq":"weekly","video":[{"title":"2017:E230 - Guardians HATE Destiny 2 Beta?","description":"Destiny 2's beta has barely been alive for a hot minute, but already the fire from Guardians is real. Players have responded en masse to the game's changes on Reddit, accusing Bungie of favoring multiplayer and losing sight of what made Destiny great -- is this just the case of gamers feeling entitled, or do they have a point?","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-players-mad-about-destiny-2-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f747d769-3bfa-486a-a55e-70521589252a/sm/24363-1500602496454-destiny_2_beta.jpg","duration":559,"publication_date":"2017-07-21T02:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-switches-voice-chat-app-is-a-giant-fucking-mess","changefreq":"weekly","video":[{"title":"2017:E229 - Nintendo's Voice Chat App DISASTER","description":"Nintendo's finally launched its long-criticized voice app... and the results might be even more disastrous than people first feared. We dig through all of the responses to Nintendo's new complicated voice client, which is actually a pretty big task... because seriously, people have a lot to say about this. Like a whole lot.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-switches-voice-chat-app-is-a-giant-fucking-mess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c0b1135-330e-49ce-86b5-19fa87222baf/sm/24363-1500601837029-nintendo_voice_chat.jpg","duration":328,"publication_date":"2017-07-21T01:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-56","changefreq":"weekly","video":[{"title":"2016:E188 - INAPPROPRIATE HARRASSMENT • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf   Cow Chop Merch: http://bit.ly/2dY0HrO    RT First: http://bit.ly/2b4bWuW   Discuss: http://bit.ly/1qvrlLD   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for each other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nМне кажется, что Mario Party на самом деле не является участником вообще. Какой партии заставляет вас ненавидеть своих друзей и вызывает аргументы возникают через каждые 5 минут? Nevermind звучит как партия мне\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRediģējot šo epizodi Mario puses, man ir bijuši vismaz 5 tases kafijas. Es jūtu, ka mēģina piespiest, tas ir veids, kas tieši tagad. Ja man nav pabeigt šo aprakstu laikā, nebūs iet atpakaļ. Par vēlu.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n INAPPROPRIATE HARRASSMENT • Mario Party 7 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3be2895-a9a4-4a7f-a269-f777bab7b6a3/sm/2516933-1482182707858-Mario_Party_EP_3.jpg","duration":1100,"publication_date":"2016-12-19T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-3","changefreq":"weekly","video":[{"title":"2016:E187 - TORTURING GUESTS • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\nOn this episode of Behind the Cow Chop, Brett and Dex come to town and are given the grand tour. \n\n\n\nThe following is for those multicultural.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b36ca45-8621-4864-ba7e-7f6f81597348/sm/2516933-1481945011289-00dex3.jpg","duration":610,"publication_date":"2016-12-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015","changefreq":"weekly","video":[{"title":"2016:E186 - YOUTUBE IS DYING • WRONG SIDE OF YOUTUBE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYouTube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube doşeka mirinê de ye û tiştekî ku em dikarin ji bo wê çi li wê derê ne. Dibe ku, eger em xwe bi dawî diçe bersivek ji banga me ji bo alîkarîya YouTube bibe me xilas bike. Ger YouTube nizane workout ne ji bo me wê demê em ê jî dest bi ser xwaringehekê Cow Chop. Ku hemû wê bê?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nApa yang kau lakukan dengan semua sampah yang di wajah Anda? Dapatkah saya membersihkannya untuk Anda? Biarkan saya membantu Anda membersihkannya. Saya akan menjilat semuanya dan pastikan Anda bersih dan shiney. Terima kasih untuk membiarkan saya menjilat wajahmu.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYOUTUBE IS DYING • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f563217b-155e-4f90-801f-a113f8c7da09/sm/2516933-1481957711591-YoutubeDying.jpg","duration":1062,"publication_date":"2016-12-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-57","changefreq":"weekly","video":[{"title":"2016:E184 - EXCEPTIONAL TEAMWORK • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nCow Chop Merch: http://bit.ly/2dY0HrO    RT First: http://bit.ly/2b4bWuW   Discuss: http://bit.ly/1qvrlLD   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for each other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEu vou contar a todos um segredo. Este é um segredo que foi transmitido de geração em geração, desde o meu grande tataravô. Se você olhar atentamente para o chapéu de Mario e Wario, você verá que o W é realmente um M de cabeça para baixo!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHello my amigos! This message is actually in ພາສາອັງກິດ! What a 捻! I can not ማመን it! ไข่เจียวของฉันจะได้รับเย็น!  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEXCEPTIONAL TEAMWORK • Mario Party 7 Gameplay\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/998a3ecc-09fd-4fd6-a0e6-70d24e94c7a7/sm/2516933-1481924580513-Mario_Party_EP_2.jpg","duration":964,"publication_date":"2016-12-16T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-31","changefreq":"weekly","video":[{"title":"2016:E179 - HOW MANY WAYS CAN YOU DIE? • HEAVY RAIN EP 11","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nDesperate to find his son, Ethan follows a butterfly origami clue to an abandoned power station. To get on the property he trespasses through a hole in the chain-linked fence, where he cuts his figure on the barbwire and happens to contract tetanus; unfortunantly for him, that is arguably not the worst thing to happen. To get another clue, he must go through a tunnel littered with shards of glass and then through a maze of high powered electrical condensers. Will he make it to the next clue?!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nDet är inte möjligt för Ethan att dö i detta kapitel, men det är nödvändigt för dig att få ledtråd till att lösa adressen pussel i slutet av spelet. Det är möjligt att få Ethan ont till den punkt där han kommer att ge upp och gå igenom Coward dörren själv, och kapitlet avslutas. Så var försiktig.\n\n\n\n\n\n\n\n\n\n\n\nאם אתה רוצה ללכת בכיוון ההפוך של הלהבה במהלך חלק המנהרה, אז תיתקל גופה. הגוף הוא יותר סביר להניח כי אחרת אבא מנסה לעשות את זה דרך המבוך.\n\n\n\n\n\n\n\n\n\n\n\nHOW MANY WAYS CAN YOU DIE? • HEAVY RAIN EP 11Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02f52e9d-6295-40e8-8d8b-aaf8f4aa41f7/sm/2516933-1481321205334-HeavyRain10.jpg","duration":814,"publication_date":"2016-12-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-amazing-minecraft-pc-build","changefreq":"weekly","video":[{"title":"S1:E183 - AMAZING MINECRAFT PC BUILD","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks' laptop is broken. Desperate for help, he calls the one man he knows who can fix it. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTudtad, hogy a Dexter adott hangot két különböző nő?Elvégzett hang színésznő Christine Cavanaugh feltéve, hogy a tökéletes hang mindkét Chuckie Finster a Rugrats és a címzetes Babe az 1995 film. Abbahagyta ábrázoló Dexter a show-ban a harmadik évad, 2001-ben, amikor visszavonult a szinkron üzlet. Ő váltotta Candi Milo. Sajnos, Cavanaugh elhunyt december 22-én, 2014-ben.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDen naturliga färgen på gummi är White. Gummi görs svart genom tillsats av olika kemikalier, såsom kolsvart. Detta är inte bara av kosmetiska skäl, men eftersom tillsats av kemikalier som kolsvart till gummit ökar drastiskt önskvärda egenskaper hos gummit.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAMAZING MINECRAFT PC BUILDThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-amazing-minecraft-pc-build","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/561aa453-3388-4fa4-a03f-988fb4ff2ff7/sm/2516933-1481747244988-dex.jpg","duration":1142,"publication_date":"2016-12-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-58","changefreq":"weekly","video":[{"title":"2016:E182 - WELCOME TO PYRAMID PARK • Mario Party 7 Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf   \n\nCow Chop Merch: http://bit.ly/2dY0HrO    RT First: http://bit.ly/2b4bWuW   Discuss: http://bit.ly/1qvrlLD   \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, Joe, Trevor, and James dress up as their childhood heroes: Mario, Peach, Wario, and Yoshi in Mario Party 7. The perfect game to show off their friendship and love for each other as they battle it out in a multitude of mini games. \n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\nUstawianie ostrości: termin używany, gdy ktoś jest dupkiem i \"skupia się\" specyficzną rolę w grze. To przestępstwo jest zagrożone karą śmierci\n\n\n\n\n\n\n\n\n\n\n\n\n\nLa pirámide fue hecha realmente por los chinos en vez de los egipcios. Es un error común. De hecho, los egipcios realmente construyeron la Gran Muralla. En realidad se llama la Gran Muralla de Egipto. Todo eso fue una mentira, idiotas\n\n\n\n\n\n\n\n\n\n\n\n\n\nWELCOME TO PYRAMID PARK • Mario Party 7 GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7058b649-f40a-492e-b7ef-825dcb0ef75a/sm/2516933-1481659614160-Mario_Party_EP_1.jpg","duration":1222,"publication_date":"2016-12-13T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fdsaf","changefreq":"weekly","video":[{"title":"S1:E181 - How To Make Christmas Dinner","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\nBrett wanted to celebrate the holidays with his newfound family, so he got them all suited up for the winter with some fresh new Cow Chop sweaters and they began their feast! \n\n\n\nThe following is for those multicultural. \n\n\n\nMi pregunta es cómo Joe sabía que era comida para perros de inmediato, y por qué admitió que lo comía antes, suficiente para conocer el sabor y el olor de la misma.\n\n\n\nBrett gizon ero bat da, crazy zuen. Jende Making jan intsektuak eta txakurra elikagaien eta kriskitin-zukua gordina.\n\n\n\nHow To Make Christmas Dinner\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fdsaf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ff9829e-2c79-4566-ae3f-0797ed0a4ccd/sm/2516933-1481580698599-ChristmasSweater.jpg","duration":1112,"publication_date":"2016-12-12T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-5","changefreq":"weekly","video":[{"title":"2016:E180 - X-MEN SIMULATION • Retroactive","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this Retroactive, Aleks and James team up to build their inner powers and save the universe in the classic hit X-Men for the Sega Genesis. \n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\nCachu glitchy bob amser yn cachu glitchy. Cofiwch y dyddiau y ol da 'pan oedd pob gêm res isel a glitchy? Mae rhai o'r gemau hyn yn rhai o'r gorau. I'n colli'r hen ddyddiau.\n\n\n\n\n\n\n\nApa yang akan anda lakukan jika anda boleh mempunyai satu kuasa besar? Saya akan mempunyai butthole super jadi saya boleh peluru najis seluruh muka anda, dan anda akan suka. Beritahu kami dalam komen di bawah apa kuasa super kegemaran anda akan menjadi.\n\n\n\n\n\n\n\nX-MEN SIMULATION • Retroactive\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/retroactive-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2abc362-12fe-4657-abd2-d86fc1ea35b6/sm/2516933-1481416835100-Retroactive7.jpg","duration":981,"publication_date":"2016-12-11T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-4","changefreq":"weekly","video":[{"title":"2016:E177 - DESTROYING THE EVIDENCE • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop we have to remove all evidence of a certain game from our household. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b92effc-ef2f-458b-bca3-b9ac34d58b32/sm/2516933-1481253610329-BTS_GUY_GAME.jpg","duration":616,"publication_date":"2016-12-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-32","changefreq":"weekly","video":[{"title":"2016:E178 - MONEY IN THE BANK • WWE 2K17 Tournament","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRobert Pershing Wadlow (Etats-Unis) (né à 6h30 à Alton, Illinois, États-Unis le 22 février 1918), le plus grand homme de l'histoire médicale pour lequel il y ait des preuves irréfutables, a été jugé être le dernier à mesurer le 27 juin 1940 2,72 m (8 pi 11,1 po) de hauteur.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n마지막 WWE 2k17 비디오. 약속. 이 시리즈를 즐겼습니까? 네가 그렇게하지 않았다면 나는 이해한다. 그러한 성 차별 주의자와 인종 차별 주의자를 특징으로하는 것을 즐기는 것은 어려울 수 있습니다.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMONEY IN THE BANK • WWE 2K17 Tournament\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6a7f8a9-dd2b-4ad2-be90-54b3bb28b27c/sm/2516933-1481319236624-wwefinal.jpg","duration":778,"publication_date":"2016-12-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-33","changefreq":"weekly","video":[{"title":"2016:E176 - DICK CANDY • Genital Jousting Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's a bunch of dicks. They're playing with dicks. What else do you need to know. It's James, Aleks, Joe, and Aron. They're dicks and they're playing with dicks. Great.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nВ некоторых частях мира, пенис считается деликатесом. Длинные пенисы, короткие пенисы, толстые пенисы, даже тощие пенисы! Если у меня был шанс, я бы определенно съесть член\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nE 'Dicembre! Sapete che cosa è nel dicembre giusto? Natale! Ciò significa che si dovrebbe comprare 5 coppie di nostri maglioni di Natale e 20 Cow accessori Chop per tutti i tuoi amici e la famiglia. Se non vendiamo abbastanza merce, dovremo uccidere Aron e Joe. In bocca al lupo!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDICK CANDY • Genital Jousting GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94e7783d-9a5d-4506-8c86-b767797ec487/sm/2516933-1481157294774-DJoust_Ep1.jpg","duration":885,"publication_date":"2016-12-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-34","changefreq":"weekly","video":[{"title":"2016:E175 - EPIC HOUSE PARTY • HEAVY RAIN EP 10","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nPrivate Detective Shelby is at home doing is own thing when someone he met from an interview shows up. She demands to be his partner so they can figure out who the Origami Killer is together. So they go see Mr. Kramer Jr. at his epic mansion party where there're lots of drugs and alcohol. They need to question him about his recent, pedophilic actions toward a boy who went missing. Will Shelby be able to sneak pasts the guards first?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n¿Van a ser capaces de averiguar quién es el asesino de Origami? Ha habido muchas pistas, pero no parece que estén cada vez más cerca. Sin estropear, comenta si piensas que lo conseguirán o no.\n\n\n\n\n\n\n\n\n\n\n\nPrivatdetektiv och dam blir närmare genom döden av hennes son och saknade make. De går till en episk house party med massor av sprit och droger. Det finns också en enorm kamp i slutet.\n\n\n\n\n\n\n\n\n\n\n\nEPIC HOUSE PARTY • HEAVY RAIN EP 10\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c236e97-2223-42a7-b389-e001d72dd5f2/sm/2516933-1481079412152-HeavyRain11.jpg","duration":809,"publication_date":"2016-12-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-35","changefreq":"weekly","video":[{"title":"2016:E174 - THE GRAND FINALE • WWE 2K17 Tournament ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n아, 시카고! 록은이 건물의 첫 레슬링 매니아 (WrestleMania)에 참여했습니다! 너는 알지, 락은 아무에게도 이것을 말하지 않았지만, 록은 긴장했다. 그러나 그날 밤 뭔가가 일어났습니다 - The Rock이 그것을 가져 오기로 결심했습니다! 그날 밤 비공식적 인 탄생이있었습니다. 팀 가져 오기 그것은 단지 슬로건이 아니라 삶의 방식입니다! Rock이 가져오고, Rock의 팬들이 가져옵니다! 당신이 팀을 가져올 때, 당신은 문을 두드립니다! 너는 벽을 찰 때! ANYBODY, 너는 ... 너는 두려움, 너의 불안, 너의 걱정, 모든 것을 공으로 굴리고, 그 자식의 시선을 돌리고, EM을 똑딱 거리지 마라.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"Покахонтас\" було прізвисько, що означає \"неслухняний один\" або \"розпещеною дитиною\". Її справжнє ім'я було Matoaka. Легенда свідчить, що вона врятувала героїчну Джона Сміта від удару палицею до смерті свого батька в 1607 році - вона була б близько 10 або 11 в той час.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE GRAND FINALE • WWE 2K17 Tournament\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c89873b-bc27-4b05-ab59-c31c4df3916d/sm/2516933-1481063539939-wwe7.jpg","duration":1055,"publication_date":"2016-12-06T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-36","changefreq":"weekly","video":[{"title":"2016:E172 - CRAZY POLICE CHASE • HEAVY RAIN EP 9","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMadison (the cam girl) ends up at the same motel as Ethan after not being able to sleep at her own place for a few days. Ethan is lucky she showed up, since he's in terrible shape from the fiery, burning car crash that happened in the last episode. Norman Jayden and Lieutenant Carter Blake are at it again while on a stake-out. When their suspect decides to run for it, it's up to Jayden to catch the guy on foot, crossing a busy street and charging through a Trader Joe's. Will he be able to catch the accused to question his activities and rule him out OR convict him as the Origami Killer? Watch to find out!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nちょうど私たちのトランジションショットのいくつかに便利な折り紙牛を作ってくれた、私たちのインターン、Jarielに特別な感謝を言いたいと思います。それは彼が折り紙のキラーだという意味ですか?怖いです。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWaarom heeft Ethan dragen zijn boksers, terwijl hij douches? Misschien kon hij ze niet opstijgen door hemzelf als gevolg van zijn verwondingen, of misschien is hij in een nooit naakt. Wat denk je?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCRAZY POLICE CHASE • HEAVY RAIN EP 9Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d90ffa2-d410-4236-ac78-15c3fe35a65a/sm/2516933-1480720062757-HeavyRain9.jpg","duration":735,"publication_date":"2016-12-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-5","changefreq":"weekly","video":[{"title":"2016:E173 - SPICY FAN MAIL DISASTER • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  ","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27cdb110-ee73-4fd9-8934-fe60300d96ff/sm/2516933-1480730654610-BTS_FAN_MAIL_FINAL.jpg","duration":859,"publication_date":"2016-12-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-37","changefreq":"weekly","video":[{"title":"2016:E171 - QUALITY UPGRADE • Party Panic Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\nAleks, James, Aron, and Trevor play Party Panic to see who is the biggest asshole. Party Panic; A game with tons of minigames to get you and your friends mad at each other. Perfect game to play on our shitstained couch.\n\n\n\nThe following is for those multicultural.  多人数参加型オンラインおよびローカルのブラウザーやゲームの面でパニック。ミニゲームは、行でレース\n\n\n\nPamene inu anakana chigamulocho wa chinachake. China chirichonse kamakhala anakana kwambiri. Ndi mmene maso anuwo. Mwachitsanzo: ngati inu anakana chigamulocho ku 1920x1080 kuti 680x480, izo lidzalira ndi fungo nthaŵi 15 poipa kusiyana ndi poyamba anachita. Amazing!\n\n\n\nQUALITY UPGRADE • Party Panic GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef1e9ab8-aeae-4b2d-9f03-49fb5bfe88b0/sm/2516933-1480716469239-Party_Panic_EP_2.jpg","duration":633,"publication_date":"2016-12-02T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-38","changefreq":"weekly","video":[{"title":"2016:E170 - TABLES LADDERS AND CHAIRS • WWE 2K17 Tournament","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\natmosfer bumi adalah sekitar 300 mil (480 kilometer) tebal, tetapi sebagian besar adalah dalam 10 mil (16 km) permukaan. tekanan udara menurun dengan ketinggian. Di permukaan laut, tekanan udara adalah sekitar 14,7 pon per inci persegi (1 kilogram per sentimeter persegi).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJe potrebné poznamenať, že napriek tomu, že je nazývaný zápas Stolná Ladder vozíky, stoličky sa ani raz použitá.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTABLES LADDERS AND CHAIRS • WWE 2K17 Tournament\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/401449fa-0949-47de-ac3c-17da7f713464/sm/2516933-1480642833157-wwe6.jpg","duration":1188,"publication_date":"2016-12-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-9","changefreq":"weekly","video":[{"title":"2016:E168 - BUBBLE BOY • AMAZON PRIME TIME","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  \n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nFor å være en boble gutten er en stor prestasjon. Å holde tilbake alle fristelser av ønsket å være gratis, så du kan bo i en boble for resten av livet. Det er gledelig.\n\n\n\n\n\n\n\nMolts dels meus mitjons tenen forats en ells ara. Tinc mitjons nous, però són manera de llarg. Estic tipus de tractar amb ella en aquest moment, però ho fa xuclar. Està en mi que això ha succeït, però xucla el meu home.\n\n\n\n\n\n\n\nBUBBLE BOY • AMAZON PRIME TIMEThank you  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4cdbc7f-e171-4b23-8195-811a1b50a870/sm/2516933-1480631788435-AmazonBubble.jpg","duration":1048,"publication_date":"2016-12-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-3","changefreq":"weekly","video":[{"title":"2016:E169 - HOSTILE TRUMP RIOT • WRONG SIDE OF YOUTUBE","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrORT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3dd2514-9a11-4b24-9631-805d42381982/sm/2516933-1480631724617-YoutubeTrump.jpg","duration":1006,"publication_date":"2016-12-01T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-best-of-cow-chop-november-2016","changefreq":"weekly","video":[{"title":"S1:E167 - BEST OF COW CHOP • NOVEMBER 2016","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe hope everyone had a nice November. Whether Thanksgiving is your favorite or least favorite holiday, we hope you laughed along with us this past month. Grab some hot coco and a blankie and enjoy the Best of Cow Chop, compiled just for you! Missed a video and saw a funny moment, so now you have to watch the whole thing? Videos are listed in chronological order below:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1) PRINCESS RAPUNZEL VS SYRINGE • WRONG SIDE OF YOUTUBE \n\n\n\n\n\n\n\n\n\n\n\n2) WORLD'S HOTTEST DEATH CHIP CHALLENGE\n\n\n\n\n\n\n\n\n\n\n\n3) LITERAL FECES DISASTER *GROSS WARNING*\n\n\n\n\n\n\n\n\n\n\n\n4) THE FINAL FIGHT • Dark Souls 3 • Ep 39\n\n\n\n\n\n\n\n\n\n\n\n5)OGRE vs JEW STEEL CAGE MATCH • WWE 2K17 Tournament \n\n\n\n\n\n\n\n\n\n\n\n6) BRUTAL HOVERBOARD ACCIDENT • AMAZON PRIME TIME \n\n\n\n\n\n\n\n\n\n\n\n7) GLITCH MODE: ON • Heavy Rain Ep 6\n\n\n\n\n\n\n\n\n\n\n\n8) EXTREMELY HOT AND SPICY • Watch Ya' Mouth \n\n\n\n\n\n\n\n\n\n\n\n9) HOVERBOARD FIRE • Behind the Cow Chop \n\n\n\n\n\n\n\n\n\n\n\n10) SUPER SAIYAN TRAGEDY • Dragonball Xenoverse 2  \n\n\n\n\n\n\n\n\n\n\n\n11)BODYBUILDER vs RUSSIAN TWINK • WWE 2K17 Tournament  \n\n\n\n\n\n\n\n\n\n\n\n12) Cow Chop's Thanksgiving Special \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGracias por todas las sugerencias que tuvimos el mes pasado. Fue el primer \"mejor de\" video, así que tomamos la crítica en serio. Si tiene alguna otra sugerencia, háganoslo saber!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSentimos falta de alguma coisa? Por favor, deixe-nos saber se perdemos seu momento favorito nos comentários abaixo.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBEST OF COW CHOP • NOVEMBER 2016Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-best-of-cow-chop-november-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a288f85-54e9-453c-920a-62b70c176e88/sm/2516933-1480543854886-BestOfNovember.jpg","duration":811,"publication_date":"2016-11-30T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-41","changefreq":"weekly","video":[{"title":"2016:E161 - SUICIDE BABY • Heavy Rain Ep 8","description":"Subscribe http://bit.ly/1RQtfNf  \r\n\r\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nPrivate Detective Scott Shelby (a.k.a. John Goodman) has yet another interview with a grieving parent whose boy was murdered by the Origami Killer. Unfortunantly, her husband took off and now she has to deal with a baby all on her on. Ethan's depression is shaping up nicely as he takes a little joy ride to save his son (a joy ride against traffic for five miles). There's a massive explosion at the end. Will Ethan survive so he can solve the mystery and save his son?! \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nV poglavju, ki Ethan vozi proti prometu se imenuje The Bear. Medvedi so ponavadi sramežljiv in preprosto prestrašeni vrste; Vendar, če se mati medvedka misli, da je njen mladič ogrožena, ona bo nasilno in divje brani njen mladi. To je odraz agresivne odločenost Ethan ima, kot tudi pogon proti prometu zrcaljenje zaračuna medveda.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nПостоји неколико Блооперс у игри за Беар поглавља. Прво, Итан никада копче, а он се не приказује свезала појас док не виси наглавачке из његовог појаса. Друго, иако можда није успео у ту епизоду, ручица је још увек у парку кад Итан вози у неколико снимака. Силли Гаме Девелоперс.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSUICIDE BABY • Heavy Rain Ep 8Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc18ce17-9756-4921-b2ee-42f6409f7469/sm/2516933-1479858068868-HeavyRain8.jpg","duration":1050,"publication_date":"2016-11-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-42","changefreq":"weekly","video":[{"title":"2016:E162 - ULTIMATE BACKSTAGE BRAWL • WWE 2K17 Tournament","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNe conservez jamais d'oignons dans des sacs en plastique. Cela permettra d'accélérer la germination et la détérioration en raison de l'absence de circulation d'air. PAS DE POMMES DE TERRE À PROXIMITÉ: Les pommes de terre et les oignons ne doivent pas être entreposés ensemble. Ils dégagent des gaz qui accélèrent la détérioration de l'autre.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nМожете ли вы поверить привилегированный белый мужчина выиграл? Я не видел победы это расстраивает начиная с Трампом.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nULTIMATE BACKSTAGE BRAWL • WWE 2K17 Tournament\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a43712b-bd8b-4d17-8ea2-812db79cc5d5/sm/2516933-1480366212882-wwe5.jpg","duration":710,"publication_date":"2016-11-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-39","changefreq":"weekly","video":[{"title":"2016:E166 - HAMMER DOWN • Party Panic Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, Aron, and Trevor play Party Panic to see who is the biggest asshole. Party Panic; A game with tons of minigames to get you and your friends mad at each other. Perfect game to play on our shitstained couch.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\nМая мама заўсёды казала мне \"Гэта не партыя, калі ніхто не панікуе\". Так што калі вы наладжваеце вечарынку, і ніхто не мае вострую патрэбу ў неадкладнай дапамогі, то вы робіце нешта няправільна.\n\n\n\n\n\n\n\n\n\nMini-Juegos son divertidos y todo, pero realmente no son nada en comparación con Mini-Guns. Un mini-juego puede durar alrededor de 30 segundos y no lograr nada jugar. Un Mini-Gun puede rasgar a través de un campo de ganado en 30 segundos. ¿Qué preferirías tener?\n\n\n\n\n\n\n\n\n\n\n\nHAMMER DOWN • Party Panic Gameplay\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/784c8bd7-65b3-481f-84d7-9d8a7c8012ab/sm/2516933-1480365736394-Party_Panic_EP_1.jpg","duration":721,"publication_date":"2016-11-28T02:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-6","changefreq":"weekly","video":[{"title":"2016:E164 - BREAKING DIRTY HABITS • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop, James helps everyone break their habits by using the shock watch he got. Aleks takes the guys to Target to get stuff to give to the homeless for Thanksgiving. And the cow pups have a little fun in the snow. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n子犬は雪を愛する。雪の中を転がって遊んで走るのが最善です。彼らは雪の中でお互いを楽しむべきです。彼らはとても愛らしいです。他に誰が子犬を愛する?\n\n\n\n\n\n\n\n\n\n\n\nAš vieną kartą turėjo blogą įprotį neliesti save. Taigi, aš nusprendžiau gauti šoko žiūrėti. Aš įdėti šoko žiūrėti ant mano penis ir tegul jis šoko save. Aš iš tikrųjų patinka, kai ji šokiruoja savo varpą. Aš ne manau, kad būtų jaustis taip gerai, bet, ji ne tik man pertrauka mano įprotis, bet dabar turiu naują hobį man patinka daryti.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBREAKING DIRTY HABITS • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fc4380c-8c22-41f5-8ef6-014c898b290c/sm/2516933-1479955130381-Shock_Watch.jpg","duration":605,"publication_date":"2016-11-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-40","changefreq":"weekly","video":[{"title":"2016:E165 - MONEY MANAGEMENT • Trivia Murder Party Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTrivia Murder Party is the perfect game for Aleks, James, Aron, and Trevor. Specifically because it is a game with weird and difficult(for them) questions. Perfect for them to make a fool of themselves.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. Denar je temelj za našo družbo. To je tisto, kar naredi svetovno delo! To je razlog, zakaj sem nič. Ne zato, ker jaz sem neproduktiven član družbe, ampak zato, ker se borim sistem! YEAH!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nپاسخ به سوالات چیزهای بی اهمیت در شکار نشانه. اگر من هم به اندازه کافی برای روشن شدن پیام در حال حاضر شما می خواهید به خط خطی های کامل\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMONEY MANAGEMENT • Trivia Murder Party GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a10d08b-3eed-4436-8237-33cd31fcc03a/sm/2516933-1480165324525-MP_EP_2.jpg","duration":1063,"publication_date":"2016-11-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-44","changefreq":"weekly","video":[{"title":"2016:E159 - LOSER REMATCH • WWE 2K17 Tournament ","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nমানুষের হাত 27 হাড়, sesamoid হাড়, সংখ্যা যা জনগণের মধ্যে তারতম্য সহ না হয়েছে. যার 14 আঙ্গুলের phalanges (নিকটবর্ত, চাষি শেষপ্রান্ত) হয়. metacarpals হাড় আঙ্গুলের এবং কব্জি সংযোগ স্থাপন করে আছে.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHeke ji we re dihêlim a mîna li ser vê video, Joe dê nav odeya xwe di şevê de diçfi û zîq bi bêdengî li we, heta bi rojhilatinê re.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLOSER REMATCH  • WWE 2K17 TournamentThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94ed789f-716b-4925-8fbb-66ffa8017c24/sm/2516933-1479774932093-wwe4.jpg","duration":724,"publication_date":"2016-11-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fdsafdsa","changefreq":"weekly","video":[{"title":"S1:E163 - Cow Chop's Thanksgiving Special","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nWe decided to do something a little different.  Instead of getting a feast and probably wasting all of it with a food fight, we chose instead to bring some spirit to the city of Denver.  Not all interactions with the people of Denver were recorded / published per as request from them.\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\nEl Día de Acción de Gracias es un tiempo de dar. Tienes que dar para sentir el don de dar, para dar es experimentar dando en su mejor manera de dar.\n\n\n\n\n\n\n\n\n\nEs diu que l'home encara està jugant l'harmònica fins avui\n\n\n\n\n\n\n\n\n\nCow Chop's Thanksgiving\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fdsafdsa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05b9c036-3ad9-42dd-b498-8556696e1c3e/sm/2516933-1479952518822-thanksgiving.jpg","duration":690,"publication_date":"2016-11-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-47","changefreq":"weekly","video":[{"title":"2016:E154 - BODYBUILDER VS RUSSIAN TWINK • WWE 2K17 Tournament","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\nYağlı güreş, Türk milli spordur ve güreşçiler zeytinyağına kendilerini kaplarlar. Bu güreş maçı başlangıçta birçok gün devam edebilirdi, ancak 1975'te zaman 40 dakika ile sınırlıydı.\n\n\n\n\n\n\n\n\n\n\n\n\n\nDok su svi preuzima \"G\" je skraćenica za \"Green Bay,\" ovalni logotip zapravo je skraćenica za \"veličinu.\" U Packers održati žig na logo koji je nastao opreme menadžer George Braisher vratio 1961. godine.\n\n\n\n\n\n\n\n\n\n\n\n\n\nBODYBUILDER VS RUSSIAN TWINK  • WWE 2K17 TournamentThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0d1e38f-bde3-49dd-aba6-c8079a0c198b/sm/2516933-1479416606152-wwe3.jpg","duration":947,"publication_date":"2016-11-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-43","changefreq":"weekly","video":[{"title":"2016:E160 - FINGER SACRIFICE • Trivia Murder Party Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\nTrivia Murder Party is the perfect game for Aleks, James, Aron, and Joe. Specifically because it is a game with weird and difficult(for them) questions. Perfect for them to make a fool of themselves.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\nБул сыр кодун чечмелей ала турган болсо, анда силер (нерсе) утуп алган бир мүмкүнчүлүк болушу мүмкүн. bsjbgjsgnwcnakhskdnzcnnwauhskjdna847659838475927341039128238123123\n\n\n\n\n\n\n\nTha na faclan murt agus phàrtaidh cha bu chòir a chleachdadh ann an aon tiotal. Murder eil fealla-dhà! Tha mi a dhroch thoradh air seo agus thèid sgrìobhadh gu mo staid riochdaire mu dheidhinn seo!\n\n\n\n\n\n\n\nFINGER SACRIFICE • Trivia Murder Party GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e470961-92f9-4006-bfa5-1f5485dfa1bd/sm/2516933-1479844348584-MP_EP_1.jpg","duration":958,"publication_date":"2016-11-23T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-45","changefreq":"weekly","video":[{"title":"2016:E158 - GOOD COP VS BAD COP • Heavy Rain Ep 7","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\nTwitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEthan finds a locker ticket in an envelope addressed to him. The ticket will open a locker at Lexington Station, so Ethan hurries there to see what he'll find. He must try to make it through the crowds to get to the lockers on the other side of the station. Norman Jayden kicks off a meeting with Lieutenant Carter Blake and Captain Perry, complete with a slideshow. He has a lot of new information about the Origami Killer that Blake doesn't seem to appreciate. Lastly, Blake and Jayden pay a visit to one of the Origami Killer suspects, Nathaniel. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEthan inser hans son är definitivt kidnappad, och det är dags att ta det asshole (mördaren) ut. Förhoppningsvis kan vi få alla ledtrådar och fånga rätt kille. Från och med nu, det finns fortfarande några hål saknas i detta pussel, men det hela kommer att samlas snart, eller hur?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nনাথানিয়েল পরিষ্কারভাবে পাগল, কিন্তু তিনি যথেষ্ট পাগল অপহরণ ও হত্যার আট বাচ্চাদের হয়? হয়তো, হয়তো না. ভাল জিনিস আমরা তাকে গুলি করা হয়নি, যাতে আমরা তাকে জিজ্ঞাসাবাদ করতে. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGOOD COP VS BAD COP • Heavy Rain Ep 7Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a94c67e9-1b8a-46b6-9180-68ef3b639b60/sm/2516933-1479759165414-HeavyRain7.jpg","duration":957,"publication_date":"2016-11-22T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-49","changefreq":"weekly","video":[{"title":"2016:E151 - SUPER SAIYAN TRAGEDY • Dragonball Xenoverse 2","description":"This video is sponsored by Turtle Beach!Cow Chop Merch: http://bit.ly/2dY0HrOSubscribe: http://bit.ly/1RQtfNf  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nJames and Aleks show off their Super Saiyan powers when the timelines of the Dragonball Xenoverse 2 universe are being tampered with. With James as Vegeta and Aleks as Goku, they team up with your favorite heroes Krillin, Piccolo, Buu, and others to defeat Raditz, Nappa, and Turles. Obtain SUPERHUMAN hearing with the Stealth 520 headsets yourself at http://shop.turtlebeach.com/us/headsets/playstation-4/turtle-beach-stealth-520. Hear Everything. Defeat Everyone. #ad\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nKrillin dipaké pikeun jadi perwira tina NYPD. Hiji poé dunya-Na dihurungkeun tibalik turun lamun nya pamajikan jeung sababaraha batur nu dicokot disandera ku teroris salila pihak Christmas. Nu Krillin ningali ayeuna aya sanggeus maranéhanana kajadian.\n\n\n\n\n\n\n\n\n\n\n\nČas je res noro in hlapne stvar. Tveganje, da bodo irreperable škode na roki, je prevelika in se nikoli ne bi smeli spreminjati. Prepričan sem, da je bil razlog, da sem zaspal in zamudil na delo včeraj zaradi nekoga zlorabili s časovnim razporedom in povzroča moje alarm okvaro.\n\n\n\n\n\n\n\n\n\n\n\nSUPER SAIYAN TRAGEDY • Dragonball Xenoverse 2Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dcb3a1c-adfb-4ae0-ae98-42a8fc4e3809/sm/2516933-1479171085971-DBZ_Thumb.jpg","duration":1177,"publication_date":"2016-11-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-7","changefreq":"weekly","video":[{"title":"2016:E156 - HOVERBOARD FIRE • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nOn this weeks Behind the Cow Chop, the guys test out the new hoverboard and cause some havoc in the house. Aleks explores a brand new room in the house, and we set fire to some more things.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOVERBOARD FIRE • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dca68c8-f749-42af-8ccc-d9f3d9a22f9a/sm/2516933-1479535555516-BTS_THUMB_Nov_21.jpg","duration":604,"publication_date":"2016-11-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-hot","changefreq":"weekly","video":[{"title":"S1:E157 - EXTREMELY HOT AND SPICY • Watch Ya' Mouth","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\nToday James has brought us a new exciting game with a bit more physicality to it.  We have ourselves Watch Ya Mouth, a challenging game where you must try to say your given word with a mouth guard hindering any chance of pronouncing even the most common words.  If your teammate can't guess it, then you'll be sprayed vigorously in the mouth and maybe in the eyes with some hot and spicy shit\n\n\n\nThe following is for those multicultural.\n\n\n\nEsta cosa estaba muy caliente en realidad, aunque no tengo esa gran tolerancia contra la mierda caliente y picante.\n\n\n\nkaka Hori lortu nahiko urrun nire sudurra ere, ez dut inoiz ahaztuko minak eromena dela.\n\n\n\nEXTREMELY HOT AND SPICY • Watch Ya' Mouth\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-hot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8434f4ed-3f9f-483b-9102-c63719afcdf8/sm/2516933-1479549029527-WatchYoMouthHot.jpg","duration":1115,"publication_date":"2016-11-19T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-46","changefreq":"weekly","video":[{"title":"2016:E155 - GLITCH MODE: ON • Heavy Rain Ep 6","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe interview about Shaun's disappearance continues, and the question on everyone's mind is, \"Was it the Origami Killer?\" Mr. Shelby continues to interrogate the parents of the murdered children, and his next stop is a corner store. The owner's son was murdered, and he might actually have some useful clues, but only if Shelby can get it out of him. After that we meet Madison (or is it Isabella?), the Cam Girl, and explore the possibilities of a \"glitch\" in a shower scene. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYouTube ve sıkı içerik kuralları nedeniyle, bu bölümde tam çıplaklık gösterilemiyor. Bunu sanat olarak etiketleyebiliriz, ancak youtube bunu makul bir mazeret olarak kabul etmeyebilir. Üzgünüm, çünkü Madison'un cesedi çok seksi.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nहम इस प्रकरण में क्या सीखा? कोई बताता है, तो अपने हाथ ऊपर डाल करने के लिए जब वे एक बंदूक अपने चेहरे को बताया है, बस आगे बढ़ो और अपने हाथों को ऊपर डाल दिया। या हो सकता है पहली जगह में चारों ओर चुपके पकड़े कोशिश नहीं की।\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGLITCH MODE: ON • Heavy Rain Ep 6Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af438729-52ab-4875-b6a6-a5cf30bd4c54/sm/2516933-1479419947691-HeavyRain6.jpg","duration":784,"publication_date":"2016-11-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-12","changefreq":"weekly","video":[{"title":"2016:E153 - BRUTAL HOVERBOARD ACCIDENT • AMAZON PRIME TIME","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f26b5ce-fc48-4a4a-b571-f28ae9e77758/sm/2516933-1479343653815-AmazonRollerboard.jpg","duration":1184,"publication_date":"2016-11-17T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-48","changefreq":"weekly","video":[{"title":"2016:E152 - CABBAGE CACTUS THING • Tee K.O. Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTee K.O. is a game that simulates the job of a real life t-shirt designer. By matching horrible drawings with offensive phrases, the guys create beautiful, unique and a little racist designs. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nՈրոշ ժողովուրդների, ենթադրվում է, որ հոգիները dingoes ապրում են cacti. Այլ հասարակությունները կարծում են, որ Cacti են ինչ-որ բան պետք է վախենում եւ ոչնչացվել: Որոշ մարդիկ ասում են, որ այն ժամանակ, երբ աշխարհը ավարտվում է, Կակտուս կլինի միակ բանը, որ մնացել է կանգնած:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHemm ħafna tipi ta 'qomos. T-Shirts, flokkijiet dress, ġamperijiet, Marco Qomos, Qomos Blue, qomos Green, qomos bojod u għalhekk ħafna aktar! Imma nemmen dak Trevor għandhom jilbsu l-ebda shirt.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCABBAGE CACTUS THING • Tee K.O. GameplayThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/014a6e22-4b0f-48ff-825f-1eeaf2144747/sm/2516933-1479335135982-F48A474CEE565D29C501A9F747629BDE5CEEC67B52559BEEF9pimgpsh_fullsize_distr.jpg","duration":537,"publication_date":"2016-11-16T03:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-50","changefreq":"weekly","video":[{"title":"2016:E150 - INTERGENDER SMACKDOWN • WWE 2K17 Tournament","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nZeus blev härskare över jorden efter en brottningsmatch när han besegrade Kronos, hans far. Brottning hänvisades i den äldsta boken i världen = Bibeln. 1896 grundaren av den moderna olympiska spelen Baron Pierre de Coubertin som heter brottning som en av de \"Grundforskningen Sports\" av de olympiska spelen.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKrowa Chop chcieliby, aby było jasne, że wszelkie rasistowskie i / lub seksistowskie żarty wykonane w tym filmie były czysto satyra. I śmieszne.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nINTERGENDER SMACKDOWN  • WWE 2K17 TournamentThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46ac90c7-6e13-45cb-a61d-f30a00c207ca/sm/2516933-1479171314992-wwe2.jpg","duration":867,"publication_date":"2016-11-15T18:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-51","changefreq":"weekly","video":[{"title":"2016:E149 - BLACKOUTS AND DRUG ADDICTION • Heavy Rain Ep 5","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday Ethan sees a shrink because of the terrible ordeal he went through after his son, Jason, was killed in a car accident. After that depressing visit, Ethan tries to cheer up Shaun by taking him to the park (it's not raining, for once!). Unfortunantly, right as they are about to leave, Ethan has another blackout. Watch and see what happens. . . \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nПочему Этан держать имея отключений? Когда он просыпается, почему он имеет оригами в руке? Самое главное, почему он ничего не сказал полиции?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDet viser seg at Ethan har schizofreni. Dette betyr ikke surpise noen, spesielt hans terapeut. Det er en god ting Ethan ikke fortelle ham om blackouts, det er nok noe han ønsker å holde tett om for nå.BLACKOUTS AND DRUG ADDICTION • Heavy Rain Ep 5Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d61ea9bc-8515-42d7-81e1-a443e763b778/sm/2516933-1479161652661-HeavyRain5.jpg","duration":941,"publication_date":"2016-11-14T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-52","changefreq":"weekly","video":[{"title":"2016:E148 - OGRE vs JEW STEEL CAGE MATCH • WWE 2K17 Tournament","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nJames has started Cow Chop's first tournament, with a very special game in mind, WWE 2k17.  We have 6 competitors, Aleks, Anna, Asher, Aron, Joe, and Trevor, all who will compete for a chance to win James' grand trophy!\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\nTrevors vida alternativo como luchador es una extraña. Aunque feo, que es uno de los mejores peleadores de nuestro tiempo. Él tiene fama, él tiene el dinero, pero él no tiene el aspecto o la felicidad de descubrir verdaderamente la vida. Todo lo que tiene es la lucha libre ahora.\n\n\n\n\n\n\n\nلقد أنقذ الأحبة الأنف له من العديد من المآزق، ولكن للأسف لا يمكن أن يخلصه من هذا مجنون ضرب أسفل من تريفور.\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a1a535c-cec2-4dcc-8095-2a8f0901f820/sm/2516933-1478952307634-wwe.jpg","duration":776,"publication_date":"2016-11-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-8","changefreq":"weekly","video":[{"title":"2016:E146 - SPICEY VAPE GEOMETRY • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome back! Have you ever tried talking while exhaling smoke? It's funnier sounding than you might think. Also, watch Aleks set up for the The World's Hottest Death Chip Challenge, and Trevor gets a surprise present from Aleks.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPaqui s Carolina Reaper Madness Chip anses världens hetaste tortilla chip, var och en kryddad med äkta Carolina Reaper-Guinness världsrekord hållare till hetaste chili-och dammas med ghost peppar och chipotle arom för en extra kick. I grund och botten, kommer det att göra din butthole blöda.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nआदमी है कि उपहार लंबे समय तक नहीं किया। बहुत ज्यादा नहीं इस घर जीवित रह सकते हैं।\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSPICEY VAPE GEOMETRY • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f76019b2-3061-42b6-886f-e200757f28dd/sm/2516933-1478914457262-main_thumbnail_artv1.jpg","duration":608,"publication_date":"2016-11-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-6","changefreq":"weekly","video":[{"title":"2016:E147 - ALIEN INVASION • Retroactive ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn this episode, Aleks makes James play Alien 3, one of Aleks' favorite childhood video games. Or is it? \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTriton setați de acum zvârcolea ghimbir tom jos pe banca de rezerve. Tentativ Bishop a ajuns afară și să-l mângâie. Jonesy a părut nesigur la început, dar a prezentat rapid la petting lui. Textura a fost uimitor, blana moale, cald, o senzație incredibilă la atingere. Aceasta a avut loc la Bishop că o afecțiune pisicile și încredere nu a fost ceva dat ușor, dar a fost cu atât mai prețios pentru ea.\n\n\n\n\n\n\n\n\n\nTriton întinse și puse mâna ei minuscul în Bishops de palmier, zâmbind larg.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIl ghiaccio secco è l'anidride carbonica congelata. Un blocco di ghiaccio secco ha una temperatura superficiale di -109,3 gradi Fahrenheit (-78.5 ° C). Il ghiaccio secco ha anche la caratteristica molto piacevole di sublimazione - come si rompe, si trasforma direttamente in anidride carbonica piuttosto che un liquido.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nALIEN INVASION • Retroactive\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/retroactive-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09962878-271f-47d2-a1cb-a5adea1259cc/sm/2516933-1478821585925-Retroactive6.jpg","duration":1067,"publication_date":"2016-11-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-61","changefreq":"weekly","video":[{"title":"2016:E144 - OFFENSIVE T-SHIRTS • Tee K.O. Gameplay ","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTee K.O. is a game that simulates the job of a real life t-shirt designer. By matching horrible drawings with offensive phrases, the guys create beautiful, unique and a little racist designs. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nApuesto a que te estás preguntando qué era la camisa censurada. Fueron los resultados electorales de 2016.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nУ дивљини, жирафе скоро никад не легну због осетљивости на предатора. Они обично спавају стојећи, понекад седење, и они рађају стојећи. Када жирафа спавају, они увити вратове и спавање за око пет минута на време, спава не више од 30 минута дневно.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOFFENSIVE T-SHIRTS • Tee K.O. Gameplay\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81b0703b-591d-41a4-92fd-c416f0fc4a9b/sm/2516933-1478636934397-teeko.jpg","duration":890,"publication_date":"2016-11-10T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-54","changefreq":"weekly","video":[{"title":"2016:E145 - THE FINAL FIGHT • Dark Souls 3 • Ep 39","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's the final episode of Dark Souls and my bosses never noticed that I was too lazy to figure out a description for Dark Souls. 39 episodes of this and I've gotten away with it thanks to you guys. Aleks and James embark on a journey to conquer the Kingdom of Lothric and link the great flame. Along the way, they encounter many monsters (all of whom are Trevor) and must brutally murder him to advance. Every once in a while, the Apprentice Wizard (Brett), appears to help out our two adventurers and they are slightly better off for it. FIND OUT WHAT HAPPENS NEXT TIME ON DARK SOULS 3(just kidding)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEl alma de Cinder es en realidad un pedazo de pepperoni que se ha dejado en el horno durante demasiado tiempo. El enojo de ser abandonado en ese infierno ardiente lo ha vuelto loco. Ahora se sienta en los restos destruidos de la Pizza Hut y mata a todo el mundo y todo lo que se acerca. TENER CUIDADO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDark Souls a finalement pris fin et maintenant il ya une chose à faire. Prenez la 3ème lettre de chaque message traduit dans ces 39 épisodes. Inversez ensuite l'ordre et traduisez le message. Le résultat sera incroyable!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTHE FINAL FIGHT • Dark Souls 3 • Ep 39Thank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80999197-0ffb-4f3e-98e3-18421d9df84e/sm/2516933-1478635754170-Dark_Souls_end.jpg","duration":1340,"publication_date":"2016-11-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-literal-feces-disaster-gross-w-a-r-n-i-n-g","changefreq":"weekly","video":[{"title":"S1:E141 - LITERAL FECES DISASTER *GROSS WARNING*","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nWhile Brett is visiting a nice smelly surprise is found in the basement. The horror is real! \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nJa se jednom ima gomilu otpada u mom dvorištu. Ovo je alo moja porodica i ja koristiti za izlučuju naše tjelesne tekućine u dvorište kao porodica ritual. Bilo je tako lijepo biti jedinstven i drugačiji. Kakva tradicija nema tvoja porodica ima?\n\n\n\n\n\n\n\n\n\n\n\nDette huset er en helt øde. Dårlig Brett må tåle bæsj og ødeleggelse vi har forårsaket, for ikke å nevne de lukter. Jeg tror en dag dette huset vil falle i en vask hull og falle i helvetes avgrunn. Eller kanskje det vil bli reddet og bli reddet av tv-show ekstrem makeover home edition.\n\n\n\n\n\n\n\n\n\n\n\nLITERAL FECES DISASTER *GROSS WARNING*Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-literal-feces-disaster-gross-w-a-r-n-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6be378c-d67b-4e0f-8a4e-29d435c2b930/sm/2516933-1478310165881-Shit_thumb.jpg","duration":866,"publication_date":"2016-11-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-62","changefreq":"weekly","video":[{"title":"2016:E143 - CRIME SCENE INVESTIGATION • Heavy Rain • Ep 4","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nTime to meet some new playable characters in this episode! The Origami Killer is still at large, and retired cop, Scott Shelby, is privately investigating the murders. He starts by interviewing a prostitute, Lauren Williams, whose boy was murdered by the Origami Killer. Then there's special agent, Norman Jayden, who gathers clues at each crime scene to figure out who the killer is. His power glove is super cool! Watch and see if he can gather all the clues.\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nCând se redă Scene capitolul Infracționalitatea în Heavy Rain, este foarte important să se adune toate indiciile disponibile. Urmele de anvelope și urmele de pași sunt indicii foarte valoroase pentru orice investigație, astfel încât găsirea celor foarte importante. Nu uita să se uite la corp! Nu că jocul va lăsa să pleci până nu verifica.\n\n\n\n\n\n\n\n\n\n\n\nNezapomeňte hlasovat tento týden, pokud žijete v Americe. Pokud Lauren Zimy mohou, můžete i vy!\n\n\n\n\n\n\n\n\n\n\n\nCRIME SCENE INVESTIGATION • Heavy Rain • Ep 4Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8828c42a-9d3f-4c39-9ca2-8d8bb81f8179/sm/2516933-1478551235778-HeavyRain4.jpg","duration":769,"publication_date":"2016-11-07T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-9","changefreq":"weekly","video":[{"title":"2016:E139 - GANGSTER TRUMP • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\nIn this week's episode of behind the scenes, Aleks and James get dressed to be in the Mafia, Joe and Trevor set up some real life ghosts in the Cow Chop set, and the house \n\n\n\n\n\ngets destroyed a little bit more. \n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\nIni ndiri vanopupurirwa pamubhedha Fucer. Handina chokwadi chokuti kana uchiziva chii ichi, asi regai ndikuudzei. Couch kuti vakarasika kuva zvidimbu fenicha kuti isu chete \n\n\n\n\n\nkushandisa pachigaro uye vagare. Asi chaizvoizvo ndinofarira kushandisa mubhedha wangu sezvo mumwe chimiro nenyaradzo. Ndinoda fuc mubhedha wangu. Ini ndopinza yangu chaiyo \n\n\n\n\n\n\n\n\n\nchikamu mukati pamutsago uende muguta. It anonzwa saka zvakanaka. Ndinodana kuzviremekedza wangu Bobby uchanja Fucer.\n\n\n\n\n\nEntão eu tenho mofo em minha casa ... O que eu faço? A casa está lentamente sendo destruída. Eu decidi que a melhor coisa a fazer é queimar a casa. Não tente isso em casa. Obrigado\n\n\n\n\n\n\n\n\n\nGANGSTER TRUMP • Behind the Cow ChopThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23476934-d00e-4f8f-a503-fa093d9f2422/sm/2516933-1478122326863-quarantined_trump_2.jpg","duration":610,"publication_date":"2016-11-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-worlds-hottest-death-chip-challenge","changefreq":"weekly","video":[{"title":"S1:E142 - WORLDS HOTTEST DEATH CHIP CHALLENGE","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  Beat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nHere we are again with another surprise from Aleks, today he's opened up a chip restaurant serving only the best chips around. Today's special is a hot and spicy chip.  Probably the hottest chip ever actually, it's a very spicy one! We have Joe, Brett, and Aron giving this new place a yummy taste test. \n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nEsas patatas fritas eran para asegurarse de picante. Una delicia picante dulce a nuestros hijos en el hogar. darles una mirada fija, porque van a quemar los ojos. Es un mundo de miedo nuestra allí.\n\n\n\n\n\n\n\n\n\n\n\nЯ просто рад, что у меня не было, чтобы съесть его.\n\n\n\n\n\n\n\n\n\n\n\nWORLDS HOTTEST DEATH CHIP CHALLENGESPICY PAQUI ONE CHIP CHALLENGE\n\n\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-worlds-hottest-death-chip-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0dd5e2d0-43ac-4aa0-8f2b-8f64d3ee7468/sm/2516933-1478331553916-ChipChallenge.jpg","duration":1130,"publication_date":"2016-11-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-4","changefreq":"weekly","video":[{"title":"2016:E140 - PRINCESS RAPUNZEL VS SYRINGE • WRONG SIDE OF YOUTUBE ","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrORT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLa zona que envolta l'Oceà Pacífic es diu el \"anell de foc\", perquè les seves vores marquen un cercle d'alta activitat volcànica i sísmica (terratrèmols). La majoria dels volcans actius del món es troben en aquesta circumferència.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nЯкщо хтось зумів схопити піцерії в Венесуелі, будь ласка, замовляйте нам великий кукурудзи піцу.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPRINCESS RAPUNZEL VS SYRINGE • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac7705a-7409-4594-9011-dbb6740bc379/sm/2516933-1478134286566-YoutubeBrett.jpg","duration":1238,"publication_date":"2016-11-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-63","changefreq":"weekly","video":[{"title":"2016:E138 - HOMEMADE BONFIRES • Dark Souls 3 • Ep 38","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.Let's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nกองเป็นจริงไม่ได้เป็นจริง พวกเขากำลังเช่นยูนิคอร์น ในความเป็นจริง, ไฟไหม้ไม่ได้เป็นจริงอย่างใดอย่างหนึ่ง ไม่เชื่อว่าทุกสิ่งที่คุณอ่านบนอินเทอร์เน็ต ไฟไหม้เป็นจริงเพียงแค่ภาพลวงตาเสกโดยนักมายากลที่จะโกงคุณออกจากเงินของคุณ\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGoogle Translate është një shërbim falas shumëgjuhësh përkthimit machine statistikore të ofruara nga Google për të përkthyer tekstin, fjalim, imazhe, faqet, ose video në kohë reale nga një gjuhë në tjetrën. Ajo ofron një ndërfaqe web, Apps celular për Android dhe iOS, dhe një API që zhvilluesit mund të përdorin për të ndërtuar extensions shfletuesit, aplikime dhe programe të tjera. Google Translate mbështet mbi 100 gjuhë në nivele të ndryshme dhe shërben mbi 200 milion njerëz çdo ditë.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHOMEMADE BONFIRES • Dark Souls 3 • Ep 38\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ded62da9-4cf1-4a9d-878d-9d1ceefd90a6/sm/2516933-1478115987945-B06A84BC3CA50E09DEDAE85BA12D6AC3E18A0841828A6AC412pimgpsh_fullsize_distr.jpg","duration":949,"publication_date":"2016-11-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-beware-of-the-vodka-watch-ya-mouth","changefreq":"weekly","video":[{"title":"S1:E137 - BEWARE OF THE VODKA • Watch Ya' Mouth","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nToday James has brought us a new exciting game with a bit more physicality to it.  We have ourselves Watch Yo Mouth, a challenging game where you must try to say your given word with a mouth guard hindering any chance of pronouncing even the most common words.  If your teammate can't guess it, then you'll be sprayed vigorously in the mouth and eyes with Vodka\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nLamentablemente las cuatro de ellos tiene derecho a cabo negro borracho después. El sabor del alcohol les puso en marcha y se fueron en un frenesí de beber todo lo que teníamos. Ellos todavía se están recuperando de este día.\n\n\n\n\n\n\n\n\n\n\n\nكما بريت هو الطريق إلى الخير في التوافه وألعاب التخمين. انها الغش أن يكون له على فريقك.\n\n\n\n\n\n\n\n\n\n\n\nBEWARE OF THE VODKA • Watch Ya' Mouth\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-beware-of-the-vodka-watch-ya-mouth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59a98bd0-d374-4a67-9ef1-abf7daf188b3/sm/2516933-1478118615844-WatchYoMouthVodka.jpg","duration":940,"publication_date":"2016-11-02T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-64","changefreq":"weekly","video":[{"title":"2016:E136 - UNREALISTIC NBA DREAMS • Heavy Rain • Ep 3","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday Ethan returns to the new bachelor pad with his only son left, Shaun. His new place is not nearly as nice as the old house, but at least there's still a basketball hoop to practice his lifelong dream: joining the NBA. Ethan stays busy taking care of Shaun too - when he isn't busy being super awkward and having random black outs.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDo sedaj nihče nima nobenega pojma, kdo je origami morilec je. Kako vedo Ethan? Zakaj so mu pošilja čudne zapiske po pošti? In verjetno najpomembnejše: kako je Ethan končajo sredi ulice z origami kosu?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nСредно училище старши играчи в крайна сметка, съставени от един отбор в НБА: За три в 10,000, или 0,03 процента. Това е грубо възможността от получаване на четири от един вид в първия кръг на дроу покер\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNBA DREAMS • Heavy Rain • Ep 3Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2df3d457-625f-48ae-8424-9dc1e75d4b5e/sm/2516933-1478026185362-HeavyRain3.jpg","duration":918,"publication_date":"2016-11-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-65","changefreq":"weekly","video":[{"title":"2016:E131 - WAR IS HELL• BATTLEFIELD 1","description":"This video is sponsored by EA!\n\nCow Chop Merch: ;http://bit.ly/2dY0HrO \n\n\n\n\n\n\n\n\n\n\n\nSubscribe http://bit.ly/1RQtfNf  \n\n\n\n\n\n\n\n\n\n\n\nRT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, Trevor, Brett, and Joe hop on Battlefield 1 to help bring victory to Team Achievement Hunter against the enemy scum of Team Funhaus.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCheck out Battlfield 1 yourself at https://battlefield.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirigeables sont un moyen très efficace de se déplacer. Des millions de personnes utilisent ces dirigeables pour leurs déplacements chaque jour. L'économie américaine est à un niveau record et nous sommes à un âge d'or en raison de ces ballons majestueux. Je rêve d'un jour où nous pouvons prendre un dirigeable pour explorer la outerspace.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEl CI promedio en United States es de 98.El CI promedio en el estado de Colorado es 101.El CI promedio en la Vaca Chop House es 17.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWAR IS HELL • Battlefield 1Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25933e00-e7a3-42aa-9a20-3b55f9d98268/sm/2516933-1477707052287-BF1_Thumbnail_v2.jpg","duration":675,"publication_date":"2016-10-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-best-of-cow-chop-october","changefreq":"weekly","video":[{"title":"S1:E135 - BEST OF COW CHOP • October","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHappy (early)Halloween! To celebrate, we created an entire episode dedicated to all our favorite moments from this past month. What's your favorite? Enjoy!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVideos included in this episode:\n\n\n\n\n\n\n\n\n\n\n\n\n\nSPOOKY SPIDER PENETRATION • AMAZON PRIME TIME F%#k DA POLICE • Mafia 3 Gameplay OUIJA BOARD RITUAL CHALLENGE! *ACTUAL SPIRITS WARNING!* FLAMETHROWER MANTIS RESCUE • Behind the Cow Chop CREEPY CLOWN PANDEMIC (CENSORED) • WRONG SIDE OF YOUTUBE APPRENTICE WIZARD RETURNS • Dark Souls 3 • Ep 37TREVOR ESCAPES TO NEW YORK SELF-INFLICTED FIRE DAMAGE • AMAZON PRIME TIME (unavailable to view at this time)DEPRESSION SIMULATOR • Heavy Rain • Ep 1 SERIOUS SAM VR • Virtual Reality Gameplay COUCH NINJAS • Behind the Cow Chop \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nՄեկ այլ մեծ կոստյում գաղափար է, իրոք piss դուրս այդ դժվար առանցքային ֆեմինիստական ընկերներին: vagina դիմակ. Բայց չեն դադարում այնտեղ, պետք է համոզվեք, որ տեղադրել մի Marshmellow մտրակ դրա վրա, եւ հարցրեք ձեր մյուս ընկերներին լիզում այն դուրս.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nЕто един чудесен костюм идея: siezure victum. Всичко, от което се нуждаете е няколко опаковки от поп скали и малко количество бира (всякакъв вид, че не е нужно да има Blue Moon), и си костюм е пълна. Не забравяйте да носите ризата нямате нищо против да става малко разхвърлян.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBEST OF COW CHOP • OctoberThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-best-of-cow-chop-october","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2776a868-a2fe-454b-beee-bdbd9dad5132/sm/2516933-1477715862819-BestOfOctober.jpg","duration":771,"publication_date":"2016-10-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-8","changefreq":"weekly","video":[{"title":"2016:E134 - SPOOKY SPIDER PENETRATION • AMAZON PRIME TIME","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJames dashuron duke blerë gjëra që mund të na merrni mosha-kim.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1979 оны 6 цагийн 1998 дор АНУ-ын талаар хоригложээ тамхи Дотоодын нислэг: 2 цаг 1990 дор АНУ-ын талаар хоригложээ тамхи Дотоодын нислэг: навчин тамхи болон Хоолой нисэх онгоц 1988 дээр хориотой Холбооны хууль-ий бүх нислэгийн тамхи татахыг хориглох нэвтрүүлсэн: Бүх АНУ-ын Дотоодын нислэгийн 2000 оны хориотой тамхи АНУ-ын агаарын тээврийн компаниуд.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSPOOKY SPIDER PENETRATION • AMAZON PRIME TIME\n\n\n\n\n\n\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4605acc-2519-4950-94ba-7ad657f7d776/sm/2516933-1477698895339-AmazonHalloween.jpg","duration":1144,"publication_date":"2016-10-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fds","changefreq":"weekly","video":[{"title":"S1:E133 - OUIJA BOARD RITUAL CHALLENGE! *ACTUAL SPIRITS WARNING!*","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/2dY0HrO  RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTrevor has been acting really weird lately, he's been off doing his own thing for a few days and only now have we seen it all come together.  He believes that he is part Native American, and he wants to find a way to contact his ancestors.  So he uses a Ouija board bought from Toys R Us to go through with his ritual.  But he needs moral support so he brings down the rest of the Cow Chop crew to help.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOm det gör någon av dig att må bättre, jag faktiskt kan vara två procent indian.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCada puesto que la grabación el vídeo sin embargo, he estado teniendo pesadillas, siento que algo me recorre. Ni siquiera puedo cagar sin sensación de que algo está ahí, observando. Podría ser mis antepasados, tratando de decirme la verdad. Estoy al miedo de contestar sin embargo.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOUIJA BOARD RITUAL CHALLENGE! *ACTUAL SPIRITS WARNING*\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83348909-a45e-475c-a36e-8f807ee0d122/sm/2516933-1477688610196-ouija.jpg","duration":877,"publication_date":"2016-10-28T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-5","changefreq":"weekly","video":[{"title":"2016:E131 - CREEPY CLOWN PANDEMIC • WRONG SIDE OF YOUTUBE","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/2dY0HrORT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an \n\n\n\n\n\nadventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nVolim klovnovi i njihove svijetle crvene noseve. To me jako pali kad je vidim trčanje prema meni u noći i ja mogu samo da jedva vidi crveni nos odskakanje prema meni. Ne \n\n\n\n\n\nbježati od klovn. Ja vodim prema njemu. Imam ruke širom otvorene kao što ja znam klovn će me dočekati u nju život. Volim klovnovi.\n\n\n\n\n\nSaya pernah mempunyai sista punggung. Ia dibakar begitu banyak yang saya terpaksa mendapatkan ia dikeluarkan. Doktor tertumpah jus lemon seluruh sista tersebut untuk membantu \n\n\n\n\n\n\n\n\n\n\n\nia dapat dikeluarkan lebih mudah. Saya sebenarnya suka jus lemon jadi saya bertanya kepada doktor untuk mencurahkan saya beberapa ketika sista pantat saya telah mendapat dibuang. Sekarang saya berasa hebat dan tidak keberatan mendapatkan kulit saya mengoyakkan terbuka supaya doktor boleh menarik sista yang betul keluar. Terima kasih doktor.\n\n\n\n\n\n\n\n\n\n\n\nCREEPY CLOWN PANDEMIC • WRONG SIDE OF YOUTUBEThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cded00a-bd1a-4d97-9020-b588b4704974/sm/2516933-1477607854666-YoutubeHalloween.jpg","duration":1189,"publication_date":"2016-10-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-66","changefreq":"weekly","video":[{"title":"2016:E130 - APPRENTICE WIZARD RETURNS • Dark Souls 3 • Ep 37","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/1U8HCxD   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\n\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\nApprentice tovenaar is teruggekeerd op het laatst. Wat een heerlijke dag. Zijn routebeschrijving naar de eindbaas zijn het enige dat ons zal krijgen tot het einde.\n\n\n\nMitä nämä kaksi kuvia Tome on yhteistä? Saat selville hyvin pian seuraava episodi. Nyt, mitä luulet että on yhteistä?\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07e64cac-91ca-4c8f-ac3a-2d76f678cf65/sm/2516933-1477424701916-darksoulsep27.jpg","duration":1026,"publication_date":"2016-10-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2016-7","changefreq":"weekly","video":[{"title":"2016:E129 - SERIOUS SAM • Virtual Reality Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWTwitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis time James, Aleks Trevor and special guest Brett play the latest installment in the Serious Sam french fries.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nНайстаріший підписав декларації був Бенджамін Франклін, який народився в 1706 році, і тому вже 70 під час Декларації.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBolehkah anda percaya apa yang anda lihat? Permainan VR di mana matlamatnya adalah untuk berdiam diri dan menembak musuh berjalan ke arah anda. Revolusi.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdb3e6cb-f20e-4237-ba5e-9ba9c7548e9a/sm/2516933-1477418381511-VRserioussam.jpg","duration":872,"publication_date":"2016-10-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-69","changefreq":"weekly","video":[{"title":"2016:E127 - IT CAN'T GET ANY WORSE THAN THIS • Heavy Rain • Ep 2","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/1U8HCxD   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\nIf you want to watch something with a dysfunctional family, death, and personalities disorders, then look no further. Heavy Rain continues to get more depressing as we delve deeper into Ethan Mars' life, and watch as a tragedy unfolds right in front of his eyes.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\nראַנדאָם און קריפּי בלאַזן סייטינגז ערשטער אנגעהויבן דעם פאַרגאַנגענהייַט זומער אין אַ וווינונג קאָמפּלעקס אין דרום קאראליינע. די בלאַזן איז געווען שטייענדיק לעבן דעם וואַלד, און געסטורינג בייַ קינדער צו קומען מיט אים. אלץ זינט עס האָבן געווען סייטינגז אַלע איבער דעם פּלאַץ, אַפֿילו אין די וק.\n\n\n\n\n\n\n\n\n\n\n\n\n\nLucruri pe care le-am aflat despre Ethan până în prezent: el are un fel de tulburare de personalitate (ar putea fi bipolară, ar putea fi schizofrenia), el nu a iubit Jason (din cauza genelor sale recesive), si in timp ce noi nu putem spune ceea ce el a fost de conducere înainte de , plimbare său acum este căcat.\n\n\n\n\n\n\n\n\n\n\n\nThank  you. ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0438a0f-f0eb-4a32-b9eb-31b3f8c38134/sm/2516933-1477092747815-HeavyRain2.jpg","duration":828,"publication_date":"2016-10-25T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-7","changefreq":"weekly","video":[{"title":"2016:E128 - GLOVE ON BALLS • Retroactive","description":"GLOVE ON BALLS • Retroactive\n\nCow Chop Merch: http://bit.ly/1U8HCxDSubscribe: http://bit.ly/1RQtfNfRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOn this Retroactive, Aleks is introduced to Glover! A glove who has a ball to help him through the world. Though the platforming is a bit more difficult than Aleks ever imagined.","player_loc":"https://roosterteeth.com/embed/retroactive-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01a7847c-4872-4de1-8835-655a59198da1/sm/2516933-1477100627257-glover.jpg","duration":1034,"publication_date":"2016-10-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-10","changefreq":"weekly","video":[{"title":"2016:E125 - COUCH NINJAS • Behind the Cow Chop","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/1U8HCxD   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn this week's episode of behind the scenes, James Joe and Trevor take a stranger's couch without Aleks' knowledge because he was too busy dressing up in girl's clothes to notice. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nninja bit sırasında boktan aydınlatma için üzgünüm. Biz sadece nasıl siluetler ve çerçeveleme çalışmaları hakkında unuttum.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEra pe un astfel de instrument încât Kazoo, inventat în secolul al 19-lea de către un Alabama Vest afro-american numit în Macon, Georgia, Statele Unite ale Americii, se bazează. Prima a fost Kazoo a fost fabricat conform specificațiilor lui Vest de Thaddeus Von Clegg, un ceasornicar german în Macon.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56bc0311-1123-4b8f-9cb8-3fb99243778d/sm/2516933-1476985817239-10-23.jpg","duration":694,"publication_date":"2016-10-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-70","changefreq":"weekly","video":[{"title":"2016:E126 - DEPRESSION SIMULATOR • Heavy Rain • Ep 1","description":"Subscribe http://bit.ly/1RQtfNf  \n\nCow Chop Merch: http://bit.ly/1U8HCxD   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe game many of you requested, Heavy Rain, is finally here! This game dates all the way back to 2010, but we think the remastered version looks pretty good. In this first episode, we learn about the main character, Ethan Mars. His back story is a lot more depressing than you might think at first. And we're pretty confident we can solve the mystery in this game, because we have the one and only Detective Norman Jayden on the couch.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEtan ne ba kawai wani arcitect, da ya ke a gaskiya artist. Ya likes a zana har gidajensu a kansa lokaci, mafi yawa don shahara mutane. Ba mutane da yawa a zahiri bukatar samfurin aikin, amma ya aika da su ta wata hanya.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nමිලියන පහළොවක් ගොඩක් මුදල් වේ. ඔහු ඇත්තටම තරුණ වයසේදී Macaulay Culkin ඔහුගේ ගොඩක් මුදල් කළේය. ඔහුගේ හොඳම ප්රසිද්ධ චිත්රපට පමණක් මුල් පිටුව වේ.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28081a59-a38b-44e1-8fde-53a46c870ac0/sm/2516933-1477077332715-HeavyRain1.jpg","duration":813,"publication_date":"2016-10-21T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-71","changefreq":"weekly","video":[{"title":"2016:E126 - F#CK DA POLICE • Mafia 3 Gameplay","description":"Subscribe http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks and James travel back in time to the Mafia days. Will they have enough street-smart to survive, or will they go swimming with the fishes?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSono andato alla panetteria all'angolo e mi sono preso qualche Cannolis. Il wiseguy al banco è stato così gentile da darmi un barbajada extra gratis. Lui sa chi comanda da queste parti. Sono Don Herpes e corro queste strade. Dimenticalo.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIs é an fhadhb cairde le candor. Beidh siad betray tú má lig tú iad agus ansin beidh siad in iúl d'aghaidh an fáth: 'Tá sé rud ar bith pearsanta, ach gnó. Bí cinnte chun breathnú i gcónaí ar do dhroim nuair a bhíonn tú sa ghnó seo. Chomh maith leis sin breathnú ar do asal nó a d'fhéadfadh duine éigin bata cannoli suas é.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18b344a3-de7a-4cd0-a021-42802faaae83/sm/2516933-1477002617055-Mafia3.jpg","duration":993,"publication_date":"2016-10-20T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-72","changefreq":"weekly","video":[{"title":"2016:E124 - SPACE SIEGE • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf Cow Chop Merch: http://bit.ly/1U8HCxD  RT First: http://bit.ly/2b4bWuW Discuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPit People is finally in beta so James and Aleks decide to explore the world as the people of the pits \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNacido demasiado tarde para explorar la tierraNacido demasiado pronto para explorar la galaxiaNacido justo a tiempo para ver los memes húmedos\n\n\n\n\n\n\n\n\n\n\n\nPour réussir à des jeux vidéo, tout ce que vous avez à faire est de chanter cette chanson avant de commencer:Lorsque John Henry était un petit bébéUne séance sur les genoux de son papaIl prit un marteau et un petit morceau d'acierIl dit: «gonna Marteau être la mort de moi,\" Seigneur, Seigneur\"Gonna Marteau être la mort de moi.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab230b88-d4b0-48c7-adbf-fe861a79e8d2/sm/2516933-1476899981795-FD6C2A7641A175E885B7439F2CA43C7DC2491580F6F7E3E4FBpimgpsh_fullsize_distr.jpg","duration":829,"publication_date":"2016-10-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-trevor-escapes-to-new-york","changefreq":"weekly","video":[{"title":"S1:E122 - TREVOR ESCAPES TO NEW YORK ","description":"Subscribe http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/1U8HCxD   RT First: http://bit.ly/2b4bWuW  Discuss: http://bit.ly/1qvrlLD  Twitter: https://twitter.com/CowChop  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nTrevor escapes to New York to participate in the daily life of a tourist.  He goes to a Vape shop to Vape up his Vape life, and then heads on down to a Pizza shop to give that a taste, and another taste with a little bit of Vape in it.  And for the finale he meets up with some fictional characters to Vape with them and hang out for however long 2 dollars pays for.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nEstoy bastante seguro de que estoy adicto a Vape ahora. Duele respirar y he estado teniendo mocos con sangre. Me despierto en medio de la noche ansia el próximo gran éxito, tratando de hacer que la nube más grande que hay.\n\n\n\n\n\n\n\n\n\n\n\n在纽约的人都奇怪,一个人来了我们,为我们提供了一些头虱。\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-trevor-escapes-to-new-york","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29009550-94b1-4b93-9a02-b8dda2580a50/sm/2516933-1476831805782-NewYork.jpg","duration":715,"publication_date":"2016-10-19T04:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-73","changefreq":"weekly","video":[{"title":"2016:E121 - MUSHROOM HERO • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf \n\nCow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW Discuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPit People is finally in beta so James and Aleks decide to explore the world as the people of the pits \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAlex James kunye nezinye nezingalunganga. Mna ngoku 1000, le nguqulelo.\n\n\n\n\n\n\n\n\n\n\n\nSopp er merkelig motstandsdyktige mot groper. Noe de har en sjette sans om når og hvor en grop vil dukke opp. Dette tillater dem å unngå alle typer pit. Selv de store.\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a772a09-5afd-412a-90cd-2fa57a2ac49c/sm/2516933-1476726887292-267F5B163E8BAE56E57AAD92CD19D3539CCCE3D2B786C1D443pimgpsh_fullsize_distr.jpg","duration":647,"publication_date":"2016-10-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-74","changefreq":"weekly","video":[{"title":"2016:E119 - NINJA TRAINING • Aragami Gameplay ","description":"Subscribe http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAn apprentice and his master attempt to live the life of a true ninja in Aragami. Not Origami. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n牛チョップは、このビデオに存在するあらゆる人種差別文や感想をお詫びしたいと思います。どちらが多いです。ビデオのほとんどのように。ごめんなさい。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nŻaby można usłyszeć zarówno w powietrzu i pod wodą. Oni nie mają uszu zewnętrznych; błony bębenkowej do ucha (błony) są bezpośrednio widoczne lub mogą być pokryte warstwą skóry, są widoczne w postaci kołowego obszaru tuż za okiem.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a08c0c8e-78ae-45c4-b1fa-c7f5de8ee46e/sm/2516933-1476485172296-Aragami.jpg","duration":1082,"publication_date":"2016-10-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-11","changefreq":"weekly","video":[{"title":"2016:E120 - RUSSIAN BEAR ATTACK • Behind the Cow Chop","description":"Twitter: https://twitter.com/CowChop   Subscribe: http://bit.ly/1RQtfNf  Cow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome back to Behind the Cow Chop! This time the we're at the Manhattan Center Hammerstein Ballroom for Let's Play Live, where there are plenty of mysterious rooms to explore. But that's not all: James receives an exciting package in the mail, and check out some cool new games from Twitch Con 2016. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nManhattan Centar je prvobitno nazvan Manhattan Opera House i sagrađena je 1906. godine Oscar Hammerstein I. Hammerstein je želio da se takmiči sa Metropolitan opere nudeći grand opere u New Yorku javnosti po nižim cijenama ulaznica. Godine 1910. Metropolitan opere smatra da više nije mogao da trpi konkurenciju, i ponudio 1.000.000 $ da se zaustavi proizvodnju opera za 10 godina. Hammerstein prihvatio ponudu.\n\n\n\n\n\n\n\nОсторожно попка акула находится на свободе\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdace8d1-9833-4b7b-b802-713ae1267121/sm/2516933-1476485336619-thumbnail_10-16x2.jpg","duration":656,"publication_date":"2016-10-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-75","changefreq":"weekly","video":[{"title":"2016:E118 - UNICORN RECRUITMENT • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf \n\nCow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW Discuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPit People is finally in beta so James and Aleks decide to explore the world as the people of the pits \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nยูนิคอร์นเป็นสัตว์ที่ใกล้เคียงกับแรดหนึ่ง ในความเป็นจริงหลาย ๆ คนทำผิดพลาดที่ทุกวันเดียว วิธีเดียวที่คุณสามารถบอกได้ว่ามันเป็นยูนิคอร์นหรือไม่มีกลิ่น ยูนิคอร์นกลิ่นเหมือนกระเป๋าร้อน\n\n\n\n\n\n\n\n\n\n\n\nMoni. ndikugwira anataya Mabaibulo. wina andithandize kwa ndimaiwala Chingerezi. Sindingathe kulankhula ndi anzanga kapena banja panonso. ndithandizeni\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/188b10ca-f3b3-4c81-8729-ac0a61291c0d/sm/2516933-1476467492938-B8CB160B98713DCAFAA163E52D55963B30756F816CF73C9138pimgpsh_fullsize_distr.jpg","duration":865,"publication_date":"2016-10-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-4","changefreq":"weekly","video":[{"title":"2016:E117 - SHAQ FU CRUISE • Retroactive","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\nOn this Retroactive, Aleks attempts finally play Taz-Mania until James realizes that the game is broken and they are forced to play another, Shaq Fu. The question is who is the Shaq master?","player_loc":"https://roosterteeth.com/embed/retroactive-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6526c7b1-186b-4e33-9ba6-f6f9e25d2c7a/sm/2516933-1476381800151-Retroactive5.jpg","duration":1052,"publication_date":"2016-10-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-6","changefreq":"weekly","video":[{"title":"2016:E115 - TRIGGER WARNING • WRONG SIDE OF YOUTUBE","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nХотите услышать секрет? Иди сюда. Ближе. Не стесняйся. Вот и все. Получить очень близко. Тебе удобно? Я чувствую себя комфортно. Просто расслабьтесь, все это скоро закончится. Ну правильно, секрет. Арон гей.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKażdy, kto może dostrzec pająk ukryty gdzieś w tym filmie będzie odbierać nagrodę w jednym z tych spłaszczonych grosze można uzyskać od Disneylandu.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nI HATE BABIES - \n\n\n\n\n\n\n\nFAT BOY READS HATE - \n\n\n\n\n\n\n\n5 Things to Help with Allergies - \n\n\n\n\n\n\n\nPopular Yoga Class for Women - \n\n\n\n\n\n\n\nOffensive graffiti on Winnipeg school - \n\n\n\n\n\n\n\n[18+] IDIOT DAB TRIGGER WARNING - \n\n\n\n\n\n\n\nBITCH - \n\n\n\n\n\n\n\nTrigger warning - \n\n\n\n\n\n\n\nEating the booty gone rouge - \n\n\n\n\n\n\n\nI BROKE MAH SCREEN BOIII -","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ccfb8be-3659-465b-8d88-7823c273d378/sm/2516933-1476134899012-YoutubeTriggered.jpg","duration":1031,"publication_date":"2016-10-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-77","changefreq":"weekly","video":[{"title":"2016:E116 - THE PERSISTENT SLAYER • Dark Souls 3 • Ep 36","description":"Subscribe: http://bit.ly/1RQtfNf Cow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW Discuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.Let's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDragonslayer Armour är klart lätt, eftersom vi kunde slå honom utan en kompis. Hans utseende är faktiskt mer skrämmande än han verkligen är. När du först gå igenom chefen dörren, rulla genom sin hoppning attack. Försök att få honom låst på trappan genom att köra i cirklar runt honom. Han kommer att bli förvirrad och öppen för mulitple attacker.\n\n\n\n\n\n\n\n\n\nВатра Голман вероватно ће то бити прилично љут када се вратимо у Фирелинк Схрине. случајно смо је убили, али она ће респавн.\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d49b8034-db96-4cae-a0c3-e8779fad39f3/sm/2516933-1476142943465-darksoulsep36.jpg","duration":717,"publication_date":"2016-10-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-78","changefreq":"weekly","video":[{"title":"2016:E114 - MISPLACED TRUST • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf \n\nCow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW Discuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPit People is finally in beta so James and Aleks decide to explore the world as the people of the pits \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSi yo fuera Aleks, me he visto este tipo de fraude de una milla de distancia. Como un veterano de Runescape, ya no me enamoro de tales trucos simples. Lo siento por el tonto.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJeg hadde tenkt å sette det faktum at jeg kom i min Snapple lokk, men jeg ønsker ikke å bli truffet av en slags obskure søksmålet. De kan meget vel være å overvåke alle fakta og har advokater klar til å få punks som meg som prøver å stjele deres cap fakta.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69b6c3ff-a4f8-4961-8406-0225f2156afc/sm/2516933-1476111861763-EF641CF1F93E75E2CC55E3B726253F24777C0039E2B0F81F94pimgpsh_fullsize_distr.jpg","duration":670,"publication_date":"2016-10-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-12","changefreq":"weekly","video":[{"title":"2016:E113 - FLAMETHROWER MANTIS RESCUE • Behind the Cow Chop ","description":"Twitter: https://twitter.com/CowChop  Subscribe: http://bit.ly/1RQtfNf Cow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW \n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome back to a fun filled behind the scenes! Learn how to remove a wasp nest the Cow Chop way, watch the guys do a little shopping at the handy dandy Home Depot, and it's time to meet that new kid everyone is talking about.   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nสีหมวกแข็งแตกต่างกันไปสำหรับบทบาทในสถานที่ก่อสร้าง โทนสีที่พบมากที่สุดคือสีขาวสำหรับผู้จัดการ, วิศวกร, คนงานหรือผู้บังคับบัญชา แรงงานทั่วไปและแผ่นดินเคลื่อนย้ายที่มักจะสวมใส่สีเหลือง\n\n\n\nיש נייר צרעות גוף ארוך ורגליים ארוכות. הן בונות קנים גדולים, חשופים שבו המסרקים גלויים לעין. קניהן מושווים לעתים קרובות כדי מטרייה במהופכת בנויים בדרך כלל באזורים מוגנים כמו המרזבים של בית או הסוף בצינור פתוח. הם יתקפו רק אם הם מרגישים מאוימים, אבל העוקץ שלהם יכול להיות כואב.\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9cf386b-52f7-41af-aa85-07bd6374bfc4/sm/2516933-1475879143045-THUMNAILX2.jpg","duration":617,"publication_date":"2016-10-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-79","changefreq":"weekly","video":[{"title":"2016:E112 - KITCHEN FEUD • Overcooked","description":"Subscribe http://bit.ly/1RQtfNf \n\nCow Chop Merch: http://bit.ly/1U8HCxD RT First: http://bit.ly/2b4bWuW Discuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nමුළුතැන්ගෙයි තරඟය සෞඛ්යයට අහිතකර වේ. සෑම ප්රධාන අරක්කැමි එකිනෙකාට හිතවාදී විය යුතුය. පවුලේ මෙන්! එසේ නැත්නම් අනතුරු සිදුවීමට ද කෝකියෙක් කකුල් අහිමි විය හැක\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDè an àite a bhith fiù 's còcairean? Gheibh thu cheart cho math a-mach às a 'ceangal poca de mhathachadh gu bheil feeds do bhodhaig làitheil. Daoine an crochadh air mar bhiadh luxuries ro thric an-diugh. Air ais ann mo àm, nach robh againn fancy rudan mar bhiadh. Bha againn ri òl galan a bhith beò\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5460a044-ad41-47f8-b112-f11b59739a47/sm/2516933-1475878744738-overcooked12.jpg","duration":718,"publication_date":"2016-10-07T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-7","changefreq":"weekly","video":[{"title":"2016:E112 - SELF-INFLICTED FIRE DAMAGE • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWTwitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n¿Quieres escuchar un pequeño secreto? Voy a volar a Nueva York en 9 horas mientras estoy escribiendo esto. Nada dice la productividad luego esperar hasta el último minuto mis amigos. Permítanme terminar estas ofertas de pollo y tal vez voy a empacar poco después de esto.\n\n\n\n\n\n\n\n\n\n\n\nSubstancje chemiczne w powietrzu była miła gratką dla mojego ciała. Że czuję się naprawdę dobrze moje chłopaki.\n\n\n\n\n\n\n\n\n\n\n\nThank you ","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb436df3-bbef-4fd9-b145-c7d714878e52/sm/2424803-1475817940679-AmazonFire.jpg","duration":874,"publication_date":"2016-10-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2016-6","changefreq":"weekly","video":[{"title":"2016:E111 - FART PUNCHING • DRAW WHAT?! Virtual Reality Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWTwitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn this episode of Draw What it's every man for himself, which makes things a little confusing. Who will win and prove themselves to be the Picasso of Cow Chop? \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIl y a une très petite araignée caché quelque part dans cette vidéo. Le premier à repérer, il recevrez une photo de Trevor quand il était 9.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAls Hauptstadt von Vermont, ist Montpelier die Website des Vermont State House, dem Sitz der Legislative von Vermont Regierung. Die Bevölkerung war 7855 bei der Volkszählung 2010. Durch die Bevölkerung ist es das kleinste Landeshauptstadt in den Vereinigten Staaten.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4550af7-b44a-4f93-bdb8-e6f05d13bb56/sm/2516933-1475710658902-VRdrawwhatfreeforall.jpg","duration":1247,"publication_date":"2016-10-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-81","changefreq":"weekly","video":[{"title":"2016:E109 - FIGHT IN THE PIT • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf \n\nCow Chop Merch: http://bit.ly/1U8HCxD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRT First: http://bit.ly/2b4bWuW \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPit People is finally in beta so James and Aleks decide to explore the world as the people of the pits \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRussel Crowe kien il-persuna fossa aħħari. Huwa fossa battled sa l-età antika ta '92 fejn kien traġikament meħuda mill Giraffe jtajru. Aħna jitilfu lilu ħafna\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu uqhatha abantu ITS LIKE THE yigama umdlalo\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd606181-77d1-4de1-a1d0-cddcbdf5e5df/sm/2516933-1475688330237-833D56410E7A1148B2B187C589535741C650E0647ED91CE304pimgpsh_fullsize_distr.jpg","duration":724,"publication_date":"2016-10-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-82","changefreq":"weekly","video":[{"title":"2016:E108 - HANDYMAN VS. HANDICAP • Can't Drive This Gameplay","description":"Subscribe http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\nA construction worker and race car driver team up to hopefully become the best tag team champs in Can't Drive This. \n\n\n\nThe following is for those multicultural.\n\n\n\n\n\nJa sam građevinski radnik koji gradi giganta zgrade koje su shapped kao kite i grudi. Danas gradimo najveće zgrade kurac u postojanje. To će biti tako velika Svima usta će pasti širom otvorena. Volim gradi giganta kurac zgrade.\n\n\n\n\n\nHva ville du gjøre hvis jeg bæsjet på brystet? Ville du likt det? Vil du være glad hvis jeg gjorde? Vennligst svar meg. Jeg vil bare at du skal gi meg beskjed hvis du liker bæsj på brystet. Takk for at du ga meg beskjed.\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f908e1c-c611-4d78-b117-28bfae23fbaa/sm/2516933-1475617089629-cantdrivethis.jpg","duration":921,"publication_date":"2016-10-04T14:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-84","changefreq":"weekly","video":[{"title":"2016:E106 - CORRUPTED DRAGONS • Dark Souls 3 • Ep 35","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.Let's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nKrigaren Thomas först förstörde de två drakar fem tusen år sedan. Tur han tog en bild med sin kamera så att vi kan hitta ett sätt att förstöra de demoniska drakar.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nStrategien guide skrevet av Michael Lumis og Phillip Marcus er en guide laget ikke for nybegynnere, men for erfarne spillere. Uvitende om dette på tidspunktet for kjøpet, må vi følge med hva vi har, noe som er bedre enn ingenting, er du ikke enig?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5bf7573-a145-4509-ae67-f0f95961d68c/sm/2516933-1475178891190-darksoulsep35.jpg","duration":734,"publication_date":"2016-10-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-8","changefreq":"weekly","video":[{"title":"2016:E104 - GOLDEN AXE MEATBALL PRISONER • Retroactive","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\nToday's Retro game is Golden Axe 3. Another game from Aleks' childhood. James soon realizes though that his character in the game has a very dark and unfortunate past with a passion for Swedish Meatballs. \n\n\n\nThe following is for those multicultural. \n\nUnë një herë mori boshti të fortë në vend. Kjo ishte një sëpatë artë. Kam marrë shumë ditë dhe netë të marrë. Unë kisha për të mbjellë 50 pemë të reja në terren dhe në fund kam marrë akset më të fuqishme. Ajo kurrë nuk do të thyejnë dhe më lejoni të prerë fruta sa më shumë që unë dua. Për fat të mirë për seri Sega Golden Axe ishte mbyllur, e cila lë më të fuqishme sëpatë artë weilding në të gjithë vendin. I dua kafshët kaluar.\n\n\n\nSiapa lagi yang mempunyai dinosaur haiwan peliharaan? Saya suka makan dinosaur asshole saya. Rasanya begitu baik. Rasa pantat dino hebat. Ini sebenarnya perkara kegemaran saya lakukan apabila saya lembaga atau lapar atau hanya mencari pengembaraan dalam hidup. Rasa najis berjalan ke dalam mulut saya dan ke dalam kerongkong saya ialah uncomparable untuk apa-apa lagi di dunia.\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/retroactive-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb7c429-f705-4aa3-ac49-cf5929555bcf/sm/2516933-1475176996333-Retroactive4.jpg","duration":932,"publication_date":"2016-10-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-13","changefreq":"weekly","video":[{"title":"2016:E103 - TRUMP & THE DIABOLICAL CONCOCTION • Behind the Cow Chop ","description":"Twitter: https://twitter.com/CowChopSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuW\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn this week's episode, James and Aleks try on their costumes for Pit People and taste some of Trevor's special juice.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFür die ganze Aufregung und Abenteuer in dieser Episode verpackt, ist es schwer, das alles fand ausschließlich in der Küche zu glauben, nicht wahr?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPare. Não traduzir isso. Merda, você acabou de fazer, não é? Eu queria colocar um segredo aqui destinado somente para pessoas que entendem Português, mas agora você está aqui e está fazendo todo mundo desconfortável.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e1d87d8-35e3-49d8-8df5-a1d78be4fd24/sm/2516933-1475104557179-10-2-rough1.jpg","duration":647,"publication_date":"2016-10-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-83","changefreq":"weekly","video":[{"title":"2016:E107 - BURN VICTIM • PIT PEOPLE","description":"Subscribe http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPit People is finally in beta so James and Aleks decide to explore the world as the people of the pits\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nピット(名詞):地面や腕や上半身の穴。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nНОВИНА: Місцеве Росії розслідується для кількох актів інцесту і підпалу. Він білий чоловік, який має особа тхора і суконь, як бітник. Якщо ви бачите його, будь ласка, тримати дистанцію, оскільки він дуже небезпечно і може плюнути в рот.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58b4ae0a-38c7-4258-b3db-5a5ccc7c7885/sm/2516933-1475221646069-225F07700B37955C5593F977D7FFE47DE9F4A2DD013A3845D0pimgpsh_fullsize_distr.png","duration":643,"publication_date":"2016-09-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-fas","changefreq":"weekly","video":[{"title":"S1:E105 - MY WIFE'S SAUSAGE VOMIT• Watch Ya' Mouth","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWTwitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\nToday James has brought us a new exciting game with a bit more physicality to it.  We have ourselves Watch Yo Mouth, a challenging game where you must try to say your given word with a mouth guard hindering any chance of pronouncing even the most common words.  If your teammate can't guess it, then you'll be sprayed vigorously in the mouth with a mystery spray. \n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nLa pulverización era bastante malo, cualquier dolor, crack, o corte que tenía en la boca o los labios se quema como el infierno. Era como un veneno, me tomó una foto de ella, estoy seguro de que pronto verá que en nuestra exitosa serie de detrás de las escenas, pero me metí la pata.\n\n\n\n\n\n\n\n\n\n\n\nAng mga kard dili sa daotan, sila pretty maayo. Apan walay bisan kinsa sa importante nga kon kamo dili gani ingon nga kini diha sa unang dapit. Ang imong kinabuhi nag-agad sa ibabaw sa imong teammate, o ikaw ang usa ka tawo nga buot nga sa pagpuyo uban sa sa sala sa pagkahibalo nga imong gipahinabo niini nga kasakit alang kanila. O kini ang tawo nga dili ipahibalo kini sayop. ako nga dili sigurado, usa ka tawo nga adunay nga badlonganon.\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-fas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/867409d8-d473-4efb-89e7-927afceaacfb/sm/2516933-1475173274306-WatchYoMouth.jpg","duration":1138,"publication_date":"2016-09-29T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-7","changefreq":"weekly","video":[{"title":"2016:E100 - YOUTUBERS I HATE • WRONG SIDE OF YOUTUBE","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n牛小费的做法被普遍认为是一个城市的传奇,牛不站着睡觉,并且暗示一头牛可以推过去,不会再站起来是不正确,因为,除非受伤,奶牛通常躺下,可以很容易重新站稳脚跟。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSie wissen, was eine normale Kuh-Hieb Video in eine hervorragende Kuh-Hieb Video verwandelt? Lässige Rassismus.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fab459c7-1ac0-40a0-8c08-d6b7af0938a3/sm/2516933-1474680389210-YoutubeBoyfriend.jpg","duration":978,"publication_date":"2016-09-27T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-86","changefreq":"weekly","video":[{"title":"2016:E102 - STRATEGY GUIDE BONFIRE • Dark Souls 3 • Ep 34","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.Let's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDen grunnleggende strategien for Dancer of Boreal Valley er tålmodighet, og hun er også svak mot lyn. Dette er to ting vi ikke har, så gå videre og dobbel boss buddy som vi gjorde, hvis du har problemer med å beseire denne grasiøs fiende.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nเถ้าถ่านของนักเต้นกระจายผ่านออกจากดินแดน มันเป็นสิ่งที่ดีที่จะเห็นเธอไป ตอนนี้เกี่ยวกับการเต้นรำมังกร\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24547ce2-beeb-49f5-a580-6c001a920508/sm/2516933-1474997169536-darksoulsep34.jpg","duration":807,"publication_date":"2016-09-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-87","changefreq":"weekly","video":[{"title":"2016:E101 - INTERNATIONAL CHEF STATION • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBeat Boxing Pro: http://bit.ly/1NdSvRO\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe following is for those multicultural.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAng Internation Chef Station (o ICS) ay nilikha para sa chefs sa buong mundo upang makibahagi sa mga mahusay na pagluluto tournament na tumatagal ng lugar sa isang beses bawat dalawang pung libong taon. Bawat tournament ay matatagpuan sa espasyo para sa optimal sa mga kondisyon pagluluto, ngunit ito ay ang unang pagkakataon sa loob ng isang milyong mga taon na nagkaroon ng mga kaya maraming mga idiots sa ICS sa isang pagkakataon\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nગુરુત્વાકર્ષણ ગેરહાજરી અંતિમ Burrito બનાવવા મદદ કરે છે. ત્યાં બ્રહ્માંડ કે જગ્યા કરતાં ખોરાક બનાવવા માટે વધુ સારું છે એક સ્થળ નથી. હકીકતમાં, શ્રેષ્ઠ restaraunt ક્યારેય બનાવવામાં અધિકાર આકાશગંગા કરવામાં આવી હતી!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ce75224-7cfa-4c8e-ba7f-8bbe16dc1220/sm/2516933-1474918177418-overcooked_11.jpg","duration":635,"publication_date":"2016-09-26T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-14","changefreq":"weekly","video":[{"title":"2016:E99 - FORCE FEED FETISH • Behind the Cow Chop","description":"Twitter: https://twitter.com/CowChopSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuW\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDo you like watching grown men throw food at each other? How about watching them put Trevor in a choke hold? Or maybe you like seeing Trevor tonguing a doughnut hole. If you answered yes to any of these, look no further than this episode of Behind the Cow Chop.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nles pomes d'Adam es troben tant en les dones i els homes que només apareixen de manera més prominent en els homes com un tros de cartílag ossi que s'embolica al voltant de la laringe. També coneguda com la prominència laríngia, la nou del coll es troba just a la part superior de la glàndula tiroide, de manera que la zona està apropiadament anomenat el cartílag tiroide.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSenki sem olvassa ezeket a multikulturális alkatrészek, ugye? Ez azt jelenti, lehet mondani, amit akarok, és soha senki nem fogja tudni. James és Aleks maradjunk új szerkesztők zárva a pincébe, és nem engedi, hogy jön ki, amíg nem találkozunk a mindennapi mém kvótát. A francba azt hallom egyikük jön le a lépcsőn most ...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67934613-dcae-4564-bc2f-6efc9a80f8e2/sm/2516933-1474673925982-9-25_thumbnail_rough4.jpg","duration":625,"publication_date":"2016-09-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-88","changefreq":"weekly","video":[{"title":"2016:E98 - GERMAN KITCHEN • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nParfois, les chefs sont tellement incompétents qu'ils doivent blâmer les autres pour leurs erreurs. Espérons que nous pouvons vous aider chef Aleks régler ses problèmes avant qu'il fait descendre toute la cuisine!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJag utlöses. Du utlöses. Han har utlöst. Vi är alla utlöses! Dessa är osäkra arbetsförhållanden! När en kock kockar något medan utlöses kan kunden smaka på sin mat. Det är en foul smak och kommer att förstöra aptiten av någon i närheten. Öva säkra arbetsförhållanden\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a76fd733-72e7-405f-98b0-ca9ad89e5835/sm/2516933-1474657758381-overcooked10.jpg","duration":728,"publication_date":"2016-09-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-6","changefreq":"weekly","video":[{"title":"2016:E96 - FAT OLD FRED • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWTwitter: http://bit.ly/1XU3JgSDiscuss: http://bit.ly/1qvrlLD \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe rules are simple, using our collective funds we buy a few items  for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nVi kokta några gås ägg och de luktade lite illaluktande. De smakade ganska jävla bra men påminde mig om min mödrar matlagning. Bara lägga lite senap och majonnäs på det och du har själv en behandling.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFat Old Fred ha sido un amigo de toda la vida en este momento. Hacemos todo juntos, sin embargo él es muy tímido. A veces tengo que hablar por él, pero cuando lo haga él dice muchas cosas buenas sobre mí. Es un hombre maravilloso.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5e21d66-a81e-47b2-9312-4df725a6b6bc/sm/2516933-1474498716237-AmazonEggs.jpg","duration":1007,"publication_date":"2016-09-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2016-5","changefreq":"weekly","video":[{"title":"2016:E97 - SURVIVE AND SLAUGHTER • Virtual Reality Gameplay","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWTwitter: http://bit.ly/1XU3JgS\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe're back with more Virtual Reality! In this episode we learn the true importance of having guns when it comes to virtual dinos. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nThe velociraptors li her du ji van games dişibin wan di movie Jurassic Park in, bi çermê wek lizard. Di jiyana rast, herî raptors hema hema bi rastî di hęlînę hatin nixamtin.\n\n\n\n\n\n\n\nTyrannosaurus Rex bija viens no lielākajiem zemes plēsējiem visu laiku. Tie sver līdz septiņiem tonnas, un līdz četrdesmit pēdu garš.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8976902-351b-4eb6-bff2-12d08ad9ca5f/sm/2516933-1474573149647-VRraptor_thumbnail.jpg","duration":955,"publication_date":"2016-09-22T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-90","changefreq":"weekly","video":[{"title":"2016:E95 - WHEELCHAIR ABUSE • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\nVozíčkáři si zaslouží být zacházeno jako každý jiný. Just Cause nemohou používat své nohy, neznamená, že by se mělo zacházet jinak! Ve skutečnosti může být lepší než námi. Oni ani nemusíte nosit boty.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nправила безпеки пістолет і рекомендації призначені для запобігання випадкового викиду або onviersiichteg розряду, або наслідки осічка люті. Їх метою є ризик ненавмисного смерті, каліцтва або пошкодження в результаті неправильного володіння, зберігання або поводження з вогнепальною зброєю завжди усунути або звести до мінімуму.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45b03ef4-e423-4e39-9937-e00b400cc1d9/sm/2516933-1474486365114-overcooked9.jpg","duration":625,"publication_date":"2016-09-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-t-r-e-v-o-r-s-hot-date","changefreq":"weekly","video":[{"title":"S1:E94 - TREVOR'S HOT DATE • GEEK TINDER PRANK ","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhile in Seattle for PAX, the guys attempt to find Trevor a special blind date. You wouldn't believe who they find.\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSiempre me gusta comer las cabezas en primer lugar, no importa cuál sea la situación. galletas de animales son una necesidad. Me gusta sentir que estoy en la especie dominante y todo el crujido animales cabezas en mi boca y me hacen sentir tan bien. Me refiero a si se hizo las colillas primero y luego no te dan ese tipo de sensación. Siempre morder las cabezas en primer lugar.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPewnego razu przystąpił do aplikacji randkowy. Nie jestem dobry w celu realizacji innych koni jak ja. Na szczęście nie było to aplikacja randki dla koni zwanych ba na mojej twarzy. Znalazłem Ryszard konia tam. Staliśmy bardzo blisko i ostatecznie żonaty i miał małe kucyki. Polecam tę aplikację do innych koni, które obecnie nie szuka kogoś specjalnego.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-t-r-e-v-o-r-s-hot-date","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6764b11b-eb5f-4691-a064-a74056ab5b18/sm/2516933-1474414717728-Pax_thumb_2.jpg","duration":1151,"publication_date":"2016-09-21T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-92","changefreq":"weekly","video":[{"title":"2016:E89 - NOT SO TINY DANCER • Dark Souls 3 • Ep 33 ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.Let's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMen ack hur det känns så verkligLigger här med ingen i närhetenBara du och du kan höra migNär jag säger mjukt långsamt\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHåll mig närmare liten dansareRäkna strålkastarna på motorvägenFastställa mig i ark av linneDu hade en hektisk dag idag\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHåll mig närmare liten dansareRäkna strålkastarna på motorvägenFastställa mig i ark av linneDu hade en hektisk dag idag\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWalen hunn geblosen genannt blowholes . Iwwer Millioune Joer vun evoloution Walen an Delfinen geblosen geplënnert widdert hire Kapp . Dëst erlaabt hinnen ze Hauch vun amplaz hinnen surfacing aus dem Waasser hir ganz Kapp geduet . Déi éischt Saach engem Neigebuerenen dolphin maachen muss ass zu der Uewerfläch ze goen ze otmen .\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c2b3c62-0fd6-44c3-b638-bc72665b744c/sm/2516933-1474052800496-darksoulsep30.jpg","duration":750,"publication_date":"2016-09-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-15","changefreq":"weekly","video":[{"title":"2016:E90 - FREDDY'S SURPRISE • Behind the Cow Chop","description":"Twitter: https://twitter.com/CowChopSubscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuW\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhat all do you need for a witch hunt? Find out in this episode of Behind the Cow Chop. Also, Aleks orders doughnuts, but the delivery driver can't seem to find the house. And there's even a Five Nights at Freddy's mystery-box reveal!","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b56bbe74-2264-4762-8ed2-9bbcfa0e220f/sm/2516933-1474049765049-thumbnail_sunday_18_v2.jpg","duration":645,"publication_date":"2016-09-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-3","changefreq":"weekly","video":[{"title":"2016:E92 - BEAVIS AND BUTT-HEAD • Retroactive ","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLDTwitter: https://twitter.com/CowChop\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday's Retro game is Beavis and Butt-Head, a game that James has loathed since childhood. Will they ever get their tickets to the GWAR concert?   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nТова е ларинкса ( или гласова кутия ) , което е причина всичко, което шум . Както тялото преминава през пубертета , ларинкса расте по-големи и по-дебели . Това се случва в двете момчета и момичета , но промяната е по-очевидна при момчетата . гласове на момичетата се задълбочават само от няколко тона и промяната е едва забележима \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJeg er den store Cornholio , jeg trenger T.P. for min Bunghole\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/retroactive-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65b421ef-2997-4e0a-9375-3be2aa224970/sm/2516933-1474068604315-Retroactive3.jpg","duration":983,"publication_date":"2016-09-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-116","changefreq":"weekly","video":[{"title":"2016:E93 - SPOOKY WITCH HUNT • Blair Witch Gameplay","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\nWith the release of the new Blair Witch movie, Aleks and James get hyped by playing the Blair Witch game. They see if they can find the witch and survive to tell the tale.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\nHesab edirəm ki, qaranlıq sakit və qorxudan idi , meşə idi. Nə ən mənə qorxuram ki, bu, necə sakit idi . Not qaranlıq , amma bir şey eşitmək bilməz. Mən bütün tək idi kimi bir şey mənə yanaşma ki, paranoid idi. Qəflətən mənə ilə külək zərbə bora hiss etdim. Mən tez mən ətrafında mənim flashlight shinned kimi nə görmək çevrildi. Mən yaxın kol hərəkət bir şey gördüm . Mənə o qədər qorxuram . ani bir körpə dovşan Bütün çölə atıldı və mənə qarşı hopped . Mən xoşbəxt idi . Bu, mənim üçün artıq hopped və mən onu rub düşüb . Bu tez atılaraq və mənim əl bit . ağrı dözülməz idi . Bu çox zərər . Mən tərəfdən baxıb sonra qışqıraraq və . Mənim barmaqları getdi edilmişdir . dovşan getmişdi. Mən evdə mənim yataq oyandı . Bu, bütün bir yuxu idi . Mən ürək hələ yuxu sürətli məğlub tualetə getmək üçün ayağa qalxdı . Mən tualet ... sonunda barmaqları var idi .... duşa getmək və tualet fincan ucaltmaq və mən görəndə ki.\n\n\n\n\n\n\n\n\n\n\n\nFilmskaparna bakom The Blair Witch Project skapat en lång och inblandade historia om de mystiska förehavanden i Burkittsville (även känd som Blair ) , Maryland . Av de många övernaturliga händelser som de kokat ihop är creepiest berättelsen om Rustin Parr . Enligt den fiktiva berättelsen , sju barn försvann från Burkittsville under det tidiga 1940-talet. År 1941 , en eremit som heter Rustin Parr lämnade sitt hus i skogen , promenerade till stad , och sade till en lokal butiksägare , \"Jag äntligen klar . \" Sex av barnen hittades mördad i Parr källare ; ett barn , Kyle Brody , var fortfarande lever och står i hörnet .\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e185fb78-0b1b-4dab-8813-662ed8c9f4d8/sm/2516933-1474069654703-Blair_Witch_Gameplay.jpg","duration":930,"publication_date":"2016-09-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-115","changefreq":"weekly","video":[{"title":"2016:E91 - BLAIR WITCH HUNT","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\nThe Cow Chop Crew heads out into the local Colorado woods to uncover any trace of a witch.  What you see is the footage we managed to recover and piece together.  Hope you enjoy our discoveries.\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n¿Cree que la bruja tiene un gran coño apestoso de edad. Tal vez huele el bosque. Tal vez eso es lo que las ráfagas de viento eran aleatorios , sólo su pedos de su edad coño apestoso .\n\n\n\n\n\n\n\n\n\n\n\nይህ ድብ ምናልባት አንድ ዳክዬ , አቅራቢያ ነበር ; በእርግጥ በአስፈሪው ነበር . በአንድ ወቅት እኔ ቀበሮና አየሁ , ወይም ምናልባት ብቻ አንዳንድ ቅርንጫፎች ነበር . ነገር ግን በጣም አስፈሪ ነበር .\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c03ee5e-1ce7-48af-b230-e8832001932d/sm/2516933-1474061756360-Blair_Witch_Live_Action.jpg","duration":688,"publication_date":"2016-09-16T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-93","changefreq":"weekly","video":[{"title":"2016:E88 - AMATEUR CHEFS • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\nzvinhu zvedu zvose ari mukicheni ichi vari asakara . Chii kunyange kutosvika yokubikira . Handina kuenda chef chikoro ichi chinhu chinonyangadza zvokutamburira afanane Kushandirapamwe . TINOFANIRA kundoitora ROSE\n\n\n\n\n\n\n\n\n\n\n\n\n\nLetys ( Lactuca sativa ) yn blanhigyn blynyddol y teulu llygad y dydd Asteraceae . Mae'n cael ei dyfu fwyaf aml fel llysieuyn deilen, ond weithiau am ei coesyn a hadau . Letys ei drin yn gyntaf gan yr Eifftiaid hynafol a drodd oddi chwyn , y mae eu hadau yn cael eu defnyddio i gynhyrchu olew , i mewn i blanhigyn bwyd a dyfir ar gyfer ei ddail blasus , yn ychwanegol at ei hadau olew - gyfoethog. Letys lledaenu i'r Groegiaid a'r Rhufeiniaid , rhoddodd yr olaf ohonynt y lactuca enw , y mae'r letys Saesneg yn deillio yn y pen draw .\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81379578-04cd-4cda-a87e-beecbf05afb3/sm/2516933-1473976231980-overcooked_8.jpg","duration":681,"publication_date":"2016-09-15T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-zombies-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E292 - PlayerUnknown's Battlegrounds: Zombies - AH Live Stream","description":"Special thanks to Blue Apron for sponsoring this AH Let's Play. Get your first three meals free with free shipping by going to http://blueapron.com/AHLIVESTREAM\n\nAchievement Hunter calls upon their community to become the zombie horde. Watch as the crew faces off against the masses of undead!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-zombies-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/549bfb3d-c124-47ee-ad96-78b3ff1d9346/sm/3014926-1502825206482-pubgz_thumb.jpg","duration":4249,"publication_date":"2017-08-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-6","changefreq":"weekly","video":[{"title":"2017:E12 - Between the Games - The Bounce Castle","description":"The guys got a bounce castle graded for 50 pound children. Let's see how this goes.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4b6dd6f-e4ad-4098-8331-1fc6ec44bc74/sm/3014926-1502738523756-BTG_BOUNCE_CASTLE_2.jpg","duration":388,"publication_date":"2017-08-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-yakuza-kiwami","changefreq":"weekly","video":[{"title":"2017:E283 - Let's Watch - Yakuza Kiwami","description":"Thanks to Sega for sponsoring this video. To check out more about the game, click here: http://bit.ly/2vjITyx.Join Trevor, Matt and Jeremy as they brawl, bet, and binge drink their way through Yakuza Kiwami.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-yakuza-kiwami","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63846c9b-8fe1-4c6e-bb5a-dcef21057ca4/sm/3014926-1502379348634-LW_Yakuza_DrinkingGame_THUMB1.png","duration":3463,"publication_date":"2017-08-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-3","changefreq":"weekly","video":[{"title":"2017:E288 - Human Fall Flat Part 4 ","description":"Michael and Gavin sail their way to victory with this awesome unique water level in their continuing journey through Human Fall Flat!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf3d12bb-4c51-4de9-8f67-dc8b5da17ddb/sm/3014926-1502484138245-PP_HumanFallFlat_Part4.jpg","duration":3328,"publication_date":"2017-08-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-cloudberry-kingdom-part-22","changefreq":"weekly","video":[{"title":"2017:E285 - Cloudberry Kingdom - Part 22","description":"The Cloudberry crew is back, and the levels haven't gotten any easier. Or have they? Sit back, relax, and find out what else Ryan has in his house.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-cloudberry-kingdom-part-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/035eccf1-f72b-4859-8bb5-e13c1f2b10a3/sm/3014926-1502399865940-LP_Cloudberry22.png","duration":1599,"publication_date":"2017-08-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-breaking-geoff-ahwu-for-august-14-th-2017-382","changefreq":"weekly","video":[{"title":"2017:E33 - Butcher Geoff - AHWU for August 14th, 2017 (#382)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.\n\nButcher Geoff knows that much like a fresh pig, there's lots of goodies deep inside the entrails of AHWU packages. There's tons of weapons, toys, and even weeny enhancers! Butcher Geoff also knows that much like a fresh pig, you have to use a big ol' meat cleaver in order to rip those packages clean open.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-breaking-geoff-ahwu-for-august-14-th-2017-382","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/870e26bd-487f-4e41-8869-25e42fc0591f/sm/3014926-1502490380445-ahwu_3.jpg","duration":712,"publication_date":"2017-08-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-89-g385h","changefreq":"weekly","video":[{"title":"2017:E30 - Guess What You're Playing? - Last Call #89","description":"The AH Crew sit down to talk about eating in the mic, content decision making, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-89-g385h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/572e7835-ea3d-4082-ac0b-fdd088bead89/sm/3014926-1502488092263-OFF89_-_PS_-_THUMB.jpg","duration":942,"publication_date":"2017-08-13T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-risky-rocket-runway","changefreq":"weekly","video":[{"title":"2017:E287 - GTA V - Risky Rocket Runway","description":"The boys go to the airport to screw around with their rocket bikes. \n\nGavin: When both wheels touch a surface, you recharge your boost. And the back of a titan is a surface. So why don't we try that shite?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-risky-rocket-runway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/331f89dc-e56f-4920-bb0e-84a3b7d56fe4/sm/3014926-1502476015427-LP_GTAV_RiskyRocketRunway_3.png","duration":2932,"publication_date":"2017-08-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-89-rj5k6tjy","changefreq":"weekly","video":[{"title":"2017:E89 - Pleb, Plank, and Plum - Off Topic #89","description":"The AH Crew sit down to talk about office arguments, welcoming Alfredo, game easter eggs, and more on this week's Off Topic!\n\nThis episode originally aired August 11, 2017 and is sponsored by NatureBox (http://bit.ly/2vWQTZA) and Warby Parker (http://bit.ly/2nHUo0l)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-89-rj5k6tjy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/571428e5-3086-4eb5-b801-dc68eaa5c2db/sm/3014926-1502519355105-OFF89_-_THUMB.jpg","duration":9868,"publication_date":"2017-08-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-44-getting-lucky","changefreq":"weekly","video":[{"title":"2017:E20 - Episode #44: Getting Lucky","description":"After finding a leprechaun in an empty beer bottle, a creepy young nerd is granted his wish to have a date with the girl he's been stalking.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-44-getting-lucky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9eba1fe-c08b-49c6-a12a-cf526938c455/sm/1601067-1503077181762-tm44.jpg","duration":5291,"publication_date":"2017-08-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-with-everyone","changefreq":"weekly","video":[{"title":"2017:E286 - PlayerUnknown's Battlegrounds with Everyone","description":"The Let's Play family duke it out in PlayerUnknown's Battlegrounds to determine which team is the best of the best.\n\nFEATURING:\n\n\n\n\n\n\n\n\n\nAchievement Hunter (https://www.youtube.com/watch?v=KjhoQxYpVNQ)\n\n\n\n\n\n\n\n\n\nFunhaus (https://youtube.com/watch?v=onmtdEGFfdE)\n\n\n\n\n\n\n\n\n\nKinda Funny (https://www.youtube.com/user/KindaFunnyGames )\n\n\n\n\n\n\n\n\n\nSugar Pine 7 (https://www.youtube.com/user/mlgHwnT)\n\n\n\n\n\n\n\n\n\nCow Chop (https://www.youtube.com/channel/UCmYBTQilY7p8EQ9IsyA3oLw)\n\n\n\n\n\n\n\n\n\nGame Attack (https://www.youtube.com/user/GameAttack)\n\n\n\n\n\n\n\n\n\nNoahJ456 (https://www.youtube.com/user/NoahJ456)\n\n\n\n\n\n\n\n\n\nLazarBeam (https://www.youtube.com/channel/UCw1SQ6QRRtfAhrN_cjkrOgA)\n\n\n\n\n\n\n\n\n\nCriken (https://www.youtube.com/user/Criken2)\n\nJT Machinima (https://youtu.be/2mvFpzSAYSk)\n\n\n\n\n\n\n\n\n\nRT Podcast (https://www.youtube.com/user/RoosterTeeth)\n\n\n\n\n\n\n\n\n\nBedbananas (https://www.youtube.com/user/BedBananas)","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-with-everyone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0f6d180-0afd-4ed0-b190-302f88d64a83/sm/3014926-1502422747381-mastercut_v2_THUMB.jpg","duration":2678,"publication_date":"2017-08-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-no-pants-no-mercy","changefreq":"weekly","video":[{"title":"2017:E284 - PlayerUnknown's Battlegrounds - No Pants, No Mercy","description":"Achievement Hunter's ready to face off against the rest of the Let's Play family in a full-fledged Battlegrounds battle royale. Through the loss of pants, they gain a powerful ally. Well, maybe powerful is the wrong word.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-no-pants-no-mercy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd855e50-75e9-417a-8cd4-d9558e2ac8f7/sm/3014926-1502405230254-pubg_v2.jpg","duration":2295,"publication_date":"2017-08-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-ah-animated-ryan-s-culling-trolling","changefreq":"weekly","video":[{"title":"2017:E10 - AH Animated - Ryan's Culling Trolling","description":"Ryan has some trouble fighting in The Culling. Luckily his good buddy Jack is there with some words of \"encouragement.\"Animation audio from Let's Watch: The Culling\n\nAnimation by Shaun Cunningham","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-ah-animated-ryan-s-culling-trolling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a5d09a2-350a-4d6c-bfbc-39ed19a02181/sm/3014926-1501873183500-AH_Animated_Culling_Thumb.jpg","duration":120,"publication_date":"2017-08-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-31-post-show","changefreq":"weekly","video":[{"title":"2017:E11 - #31 Post Show","description":"Geoff, Michael and Frank talk about playing D&D live at RTX2017","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-31-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e2235b9-bf96-4220-8357-86cecf7b0d90/sm/3014926-1502304818664-HH31_PS_-_Thumbnail.jpg","duration":582,"publication_date":"2017-08-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-272-sky-factory-part-14","changefreq":"weekly","video":[{"title":"2017:E282 - Minecraft - Episode 272 - Sky Factory Part 14","description":"Until now, Google Ryan has been the de facto Sky Factory leader, pushing Achievement Hunter towards a brighter future. But now Google Jack has arrived on the scene with a head full of sky knowledge. With two Sky Daddies, twice the progress should be made, right?\n\nOn today's episode, Michael learns some things, Jeremy goes feral in the Nether, Gavin doesn't understand lilies, Ryan makes way for royalty, and Jack elevates the Sky Factory.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-272-sky-factory-part-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/499e18e4-0be9-43f7-9896-bdf7b363d8c2/sm/3014926-1502331193046-SkyFac14_Thumb.jpg","duration":3815,"publication_date":"2017-08-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-run-to-the-shrine","changefreq":"weekly","video":[{"title":"2017:E32 - Halo 5 - Run to the Shrine","description":"There's boulders, kill balls, paper-thin platforms, and snow in this deadly obstacle course. The Achievement Hunter gang run to the shrine for what is definitely their first time.\n\nGametype: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants query=&tags=&gamertag=ry+ryno+ryry&lastmodifiedfilter=0\n\n\n\n\n\n\n\nMap: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=ry%20ryno%20ryry","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-run-to-the-shrine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94ac0a53-ccd5-41fc-a0b6-32b9baab39fa/sm/3014926-1501872034801-TTD_RUN_TO_SHRINE.jpg","duration":918,"publication_date":"2017-08-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-episode","changefreq":"weekly","video":[{"title":"2017:E31 - The Ribcage Rumble - #31","description":" The party deals with the blowback from Bo Jingles' exhortative performance. Sponsored by Blue Apron (http://cook.ba/2jeJr22) and Audible (http://adbl.co/2hNkDld)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/727f0c60-31c9-4bb1-bddc-f1bc29c18831/sm/1601067-1502927825454-hh31.jpg","duration":7038,"publication_date":"2017-08-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-the-golf-club-2","changefreq":"weekly","video":[{"title":"2017:E281 - The Golf Club 2","description":"It's a beautiful day on the course, so Jack, Geoff, and Jeremy are hitting the green with their best set of clubs.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-the-golf-club-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/422c6754-2fdb-44ee-b377-8ec5807dcd1e/sm/3014926-1502218861575-LP_TheGolfClub2.png","duration":1973,"publication_date":"2017-08-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-7","changefreq":"weekly","video":[{"title":"2017:E11 - Between the Games - Ceiling Ball","description":"The rules of Ceiling Ball are very simple. 1) Kick the ball in the ceiling hole. 2) Don't break everything in the office. 3) Ignore rule 2 within reason.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/106bbebb-a0d0-4741-b956-9e3011e33150/sm/3014926-1501866894301-BTG_CEILING_BALL.jpg","duration":437,"publication_date":"2017-08-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-3-even-better-gud-er","changefreq":"weekly","video":[{"title":"2017:E280 - Rainbow Six Siege: Git Gud 3 - Even Better Gud-er","description":"Thanks to Dollar Shave Club for sponsoring this video. Go to http://DollarShaveClub.com/Hunter to get your first month free!\n\nAchievement Hunter may have lost a Gavin and gained a Ryan, but their mission is the same: continue gitting better at gitting gud-er.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-3-even-better-gud-er","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f1550e9-c36f-49c5-879b-e77010fb9952/sm/3014926-1502146913363-LP_R6Seige_GitGud3_THUMB_v001.png","duration":2818,"publication_date":"2017-08-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-guts-and-glory-4-larry-the-scientist","changefreq":"weekly","video":[{"title":"2017:E13 - Guts and Glory #4 - Larry the Scientist ","description":"Michael and Gavin hop on Larry the LSD-taking scientist's lap as he blasts off in his new rocket chair.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-guts-and-glory-4-larry-the-scientist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f0330eb-26dc-4eaf-8299-c7fcc26c5569/sm/3014926-1501874218420-THumb_GutsAndGlory_Pt_4.jpg","duration":1412,"publication_date":"2017-08-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-wheel-of-fortune-two-and-a-half-cars","changefreq":"weekly","video":[{"title":"2017:E279 - Wheel of Fortune - Two and a Half Cars","description":"Jeremy, Jack, and Gavin are back in another game of Wheel of Fortune. This episode, there are 1/2 cars for everyone!\n\nAlso, the power may have gone out during the recording, but the guys were de-lighted to play another full game.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-wheel-of-fortune-two-and-a-half-cars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d863532-3fe0-4e3f-9191-04f4de5ebfad/sm/3014926-1501880426988-LP_WheelofFortune_August2017.png","duration":2843,"publication_date":"2017-08-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-bandicoot-the-secret-levels","changefreq":"weekly","video":[{"title":"2017:E277 - Let's Watch - Crash Bandicoot - The Secret Levels","description":"You thought it was over, but it ain't over until Michael says it's over. And by that we mean that he has to get 102%.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-bandicoot-the-secret-levels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/313bd101-26e5-4043-ae06-8595ed215923/sm/3014926-1501875464078-LW_CrashBandicoot_Bonus.png","duration":768,"publication_date":"2017-08-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-88-gh4gh","changefreq":"weekly","video":[{"title":"2017:E29 - Fine Wines and Milk - Last Call #88","description":"The AH Crew sit down to talk about lunch, calories and fast food, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-88-gh4gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ac066e2-f6b4-4d7a-97fd-6da8a99a8a31/sm/3014926-1501949706059-OFF88_-_PS_-_THUMB.jpg","duration":642,"publication_date":"2017-08-06T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-boys-get-trapped-ahwu-for-august-7-th-2017-381","changefreq":"weekly","video":[{"title":"2017:E32 - The Boys Get Trapped - AHWU for August 7th, 2017 (#381)","description":"Special thanks to MVMT for sponsoring today's episode. Get 15% off today with free shipping and free returns by going to http://mvmt.com/AHWU\n\n\n\n\"We're going in for the fan mail. So don't get caught.\" Chieve Trap! It's a zany action. A crazy contraption. The fun is catchin'. It's Chieve Trap!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-boys-get-trapped-ahwu-for-august-7-th-2017-381","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a116313c-49f1-4168-b453-96d0f0dcfeff/sm/3014926-1501877610969-ahwu1_1.jpg","duration":641,"publication_date":"2017-08-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-cover-blown-mobile-operations-3","changefreq":"weekly","video":[{"title":"2017:E278 - GTA V - Cover Blown (Mobile Operations #3)","description":"The boys shoot some missiles, run some guns, bike some rockets, and complete their missions in the finale to the Mobile Operations series in GTA Online.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-cover-blown-mobile-operations-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/568497de-5177-43be-8526-0c211bfa8138/sm/3014926-1501875983630-GTA_V_Thumb.jpg","duration":2719,"publication_date":"2017-08-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-88-4-thej5jj","changefreq":"weekly","video":[{"title":"2017:E88 - You’ve Never Seen a Moose - Off Topic #88","description":"The AH Crew and Chris Demarais sit down to talk about public bathrooms, the Harry Potter universe, Immersion ideas, and more on this week's Off Topic!\n\nThis episode originally aired August 4, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and Casper (http://bit.ly/29nKmbI)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-88-4-thej5jj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16c6227f-4345-4b2e-9e64-148394df0211/sm/3014926-1501887653453-OFF88_-_THUMB.jpg","duration":8501,"publication_date":"2017-08-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-ah-dubs-rwby-volume-1-chapter-8","changefreq":"weekly","video":[{"title":"2017:E27 - AH Dubs RWBY Volume 1: Chapter 8","description":"The epic Volume 1 turning point...as told by AH.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-ah-dubs-rwby-volume-1-chapter-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cfaa0d7-5b95-4481-8d7f-32f730d92104/sm/3014926-1501876628691-AH_RWBY_thumbnail.jpg","duration":387,"publication_date":"2017-08-05T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-43","changefreq":"weekly","video":[{"title":"2017:E19 - Episode #43: The Chosen One: Legend of the Raven","description":"This movie is like The Crow if there was less murder and more milk.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61618615-e0b7-437a-a805-1ac3fc374273/sm/3014926-1501866543066-TM_-_Chosen_One_-_THUMB.jpg","duration":5618,"publication_date":"2017-08-04T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-the-end-and-the-beginning-1","changefreq":"weekly","video":[{"title":"2017:E276 - 7 Days to Die: The End and the Beginning (#1)","description":"All good things must come to an end, and this is the final day in the 7 Days to Die: Alpha 15. Our heroes are prepared to give up their nugs and start naked and alone in the new world of 7 Days to Die: Alpha 16.In this episode: Geoff, Jack, Jeremy, Ryan, and Michael say goodbye to the old, and hello to the new.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-the-end-and-the-beginning-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27f2de02-e548-4e4a-9136-bddc8c088869/sm/3014926-1501798558966-LP_7Days_Finale_THUMB5.png","duration":4182,"publication_date":"2017-08-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-bandicoot-dr-neo-cortex-finale","changefreq":"weekly","video":[{"title":"2017:E274 - Let's Watch - Crash Bandicoot - Dr. Neo Cortex (Finale)","description":"Dr. Neo Cortex has Crash's girl, and it's up to Michael, Gavin, and Jeremy to stop him. Well, mostly Michael, but the others did what they could.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-bandicoot-dr-neo-cortex-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32ff4953-8b0c-4c56-b724-76f4b14c70ee/sm/3014926-1501710314906-LW_CrashBandicoot_PART4.png","duration":2699,"publication_date":"2017-08-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-july-2017","changefreq":"weekly","video":[{"title":"2017:E26 - Best of Achievement Hunter - July 2017","description":"This is the best of Achievement Hunter for the month of July, 2017, where Dead Rising Mini golf rages, GTA Criminal Mastermind intensifies, Telltale Game of Thrones suspends, Friday the 13thhorrifies, and Minecraft Sky Factory amazes with complexity. Watch and enjoy!\n\nEdited by Kyle Moran","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-july-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f099d51f-65a5-41cf-9de1-8bd98c00718c/sm/3014926-1501705518554-Best_of_AH_July_2017_Thumbnail_3.jpg","duration":2031,"publication_date":"2017-08-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-271-sky-factory-part-13","changefreq":"weekly","video":[{"title":"2017:E275 - Minecraft - Episode 271 - Sky Factory Part 13","description":"Sky Daddy still hasn't come home, but that isn't stopping Achievement Hunter from expanding their Sky Factory.\n\nIn this episode, Geoff has trouble with chickens, Jeremy builds a death ray, Gavin makes some additions to the Tower of Pimps, Michael plants the Forest of Mystery, Jack accidentally makes a friend, and Lindsay does her best. ","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-271-sky-factory-part-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7b44cfd-d303-4c47-a80b-135645d2154b/sm/2013912-1501718399913-SkyFac13_Thumb.jpg","duration":3426,"publication_date":"2017-08-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-things-to-do-in-gta-v-rocket-sphere","changefreq":"weekly","video":[{"title":"2017:E31 - GTA V - Rocket Sphere","description":"Achievement Hunter enjoyed racing around the Motosphere so much that Matt made an ever bigger ball to drive around. With holes. And Rocket Voltics. And holes.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-things-to-do-in-gta-v-rocket-sphere","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4d51a72-6677-48c5-9a6d-021d790511c9/sm/3014926-1501619146918-TTD_GTA_RocketSphere.png","duration":1057,"publication_date":"2017-08-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-part-2","changefreq":"weekly","video":[{"title":"2017:E273 - Rainbow Six Siege: Git Gud 2 - Gitting Gud-er","description":"The Achievement Hunter boys are diving back into Rainbow 6 Siege multiplayer in hopes of gitting just a little bit gud-er.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11aa0ce7-b869-4666-8d58-7ae83883bb72/sm/3014926-1501628757132-GitGud2_Thumb.png","duration":2540,"publication_date":"2017-08-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-bandicoot-the-moonshine-episode-3","changefreq":"weekly","video":[{"title":"2017:E272 - Let's Watch - Crash Bandicoot - The Moonshine Episode (#3)","description":"Michael powers through some tough stages, but luckily he has some liquid confidence to help him through it.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-bandicoot-the-moonshine-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0c6cf98-a465-44e4-a2fc-f413a2013a69/sm/3014926-1501536545907-LW_CrashBandicoot_PART3.png","duration":3102,"publication_date":"2017-08-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-8","changefreq":"weekly","video":[{"title":"2017:E10 - Between the Games - Jeremy's Death Mask","description":"Achievement Hunter attempt to make the silliest, stringiest mask they can for Jeremy.\n\nSomebody stop him! Achievement Hunter's making Jeremy put on the mask. Now he wants to give everything he can back to you...the people. And now he can take one more hit before losing a life. Which mask were we talking about again? This one just makes Jeremy sort of die.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9962613e-c3ec-4f09-9903-847c504f74b6/sm/3014926-1501258480221-ColorPass3.png","duration":752,"publication_date":"2017-08-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-mario-rabbids-kingdom-battle-sherbet-desert","changefreq":"weekly","video":[{"title":"2017:E270 - Let's Watch - Mario + Rabbids: Kingdom Battle: Sherbet Desert ","description":"Michael and Jack play coop on a brand new map: Sherbet Desert. The boys will enjoy killing rabbids in the desert.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-mario-rabbids-kingdom-battle-sherbet-desert","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2749c69-67c7-4ca6-9ac3-0cda1784c207/sm/3014926-1501514721389-LW_MarioRKB_Multiplayer_THUMB1.png","duration":1874,"publication_date":"2017-08-01T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-euro-fishing-the-angriest-fishermen","changefreq":"weekly","video":[{"title":"2017:E271 - Euro Fishing - The Angriest Fishermen","description":"Geoff, Jack, and Jeremy travel across Europe to do some fishing. Jeremy gets some fish, while Jack and Geoff get angry.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-euro-fishing-the-angriest-fishermen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98dd64bf-a85a-49d7-8ec7-9d96bcaae1b7/sm/3014926-1501536641490-EuroFishing2_Thumb_v001.png","duration":1486,"publication_date":"2017-08-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-splinter-cell-blacklist","changefreq":"weekly","video":[{"title":"2017:E25 - Battle Buddies - Splinter Cell: Blacklist","description":"Like always, The Battle Buddies' newest attempt at stealth doesn't go as planned. This is a loud one.\n\nAgent Dooley, Agent Haywood, here is your next mission. You are tasked with stopping the most dreadful of paraphernalia, Funhaus merchandise, from entering our beloved city.  Capture the head of Funhaus marketing and get him and yourselves out alive as quietly as possible. Good luck.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-splinter-cell-blacklist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5f78ee8-af70-4f46-a84f-fdfc39112013/sm/3014926-1501295120268-BB_Splinter_Cell_Brighter.jpg","duration":1846,"publication_date":"2017-07-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-quiplash-2","changefreq":"weekly","video":[{"title":"2017:E269 - Quiplash 2","description":"The Achievement Hunter gang and the audience playing along vote on who's the funniest (or who panders the best) in Quiplash 2!\n\nAchievement Hunter try to answer some of life's great questions as they play Quiplash 2, such as what currency we'll use after money, how do you summon the president, and what in the world is a circles jerk?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-quiplash-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8f97289-b402-4049-b304-a8830c43cbb5/sm/3014926-1501299272155-Quiplash2_Thumb_v002.png","duration":1996,"publication_date":"2017-07-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-rage-crash-bandicoot-the-lost-city-2","changefreq":"weekly","video":[{"title":"2017:E268 - Let's Rage - Crash Bandicoot - The Lost City (#2) ","description":"Michael is determined to go above and beyond the call of Crash duty to obtain the precious green gem, and it only takes him a handful of attempts.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-rage-crash-bandicoot-the-lost-city-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/958e1210-c474-4968-9d6c-f42f77660f42/sm/3014926-1501291610176-LW_CrashBandicoot_PART2.png","duration":4477,"publication_date":"2017-07-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-sound-grenade-ahwu-for-july-31-st-2017-380","changefreq":"weekly","video":[{"title":"2017:E31 - The Sound Grenade - AHWU for July 31st, 2017 (#380)","description":"Special thanks to Pro Flowers for sponsoring today's episode. You can get 20% off summer roses or any other bouquet of $29 or more by going to http://ProFlowers.com, and using code “JackandGeoff” at checkout.\n\nThanks to Ryan, things get a little noisy in the Achievement Hunter office","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-sound-grenade-ahwu-for-july-31-st-2017-380","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e6e086a-d3a7-42c1-81cc-11bd2f3fb46f/sm/3014926-1501289832303-ahwu.jpg","duration":1067,"publication_date":"2017-07-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-87-vh4iugh","changefreq":"weekly","video":[{"title":"2017:E28 - Between the Games Post Show Version - Last Call #87","description":"The AH Crew stand up to talk about monster cake, frosting, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-87-vh4iugh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0442b8e7-84a1-412d-8780-41743b2870e0/sm/3014926-1501289611645-OFF87_-_PS_-_THUMB.jpg","duration":786,"publication_date":"2017-07-30T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-exit-strategy-mobile-operations-2","changefreq":"weekly","video":[{"title":"2017:E267 - GTA V - Exit Strategy (Mobile Operations #2)","description":"Jack, Jeremy, Michael and Ryan return to finish the Gunrunning Missions: Half-track Bully, Exit Strategy, and Offshore Assets.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-exit-strategy-mobile-operations-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95f2cb9b-2201-44b2-9557-2441c0fcc17e/sm/3014926-1501254913492-LP_GTAV-GunRunners2_THUMB1.png","duration":2437,"publication_date":"2017-07-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-87-gh4ogh","changefreq":"weekly","video":[{"title":"2017:E87 - Stinks Like Cake - Off Topic #87","description":"The AH Crew sit down to talk about birthdays, Game of Thrones, candy, and more on this week's Off Topic!\n\nThis episode originally aired July 28, 2017 and is sponsored by Dollar Shave Club (http://bit.ly/2w7Dry2) and MVMT (http://bit.ly/2w7sDQh","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-87-gh4ogh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/572ef21b-f171-4bfa-8c92-8ac3589db9ad/sm/3014926-1501290649408-OFF87_-_THUMB.jpg","duration":7423,"publication_date":"2017-07-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-42-lust-for-freedom","changefreq":"weekly","video":[{"title":"2017:E18 - Episode #42: Lust for Freedom","description":"A wrongfully incarcerated woman must liberate her fellow inmates from a corrupt prison intent on manipulating and abusing them. Also there's lots of boobs and not a lot of bras.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-42-lust-for-freedom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02daf5a6-6d7d-4501-9518-bcbdf8cfc3a0/sm/3014926-1501256338038-TM42_-_THUMB.jpg","duration":5654,"publication_date":"2017-07-28T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-serial-cleaner","changefreq":"weekly","video":[{"title":"2017:E266 - Let's Watch - Serial Cleaner","description":"If you missed the box, get Serial Cleaner on Steam: http://store.steampowered.com/app/522210/Serial_Cleaner/\n\n\n\nSerial Cleaner was a part of July's Rooster Teeth Double Gold subscription!\n\n\n\nWant to get cool games and awesome Rooster Teeth swag each month? Sign up for Double Gold today: http://bit.ly/297NU2T\n\n\n\n\n\nJeremy, along with help from Geoff and Jack, takes on the life of The Cleaner. He's pretty similar to your ordinary cleaner, but with more blood and dead people.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-serial-cleaner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abbf3c4d-8123-4d4d-9383-44c8acb918ba/sm/3014926-1501184990807-LW_SerialCleaner.png","duration":1368,"publication_date":"2017-07-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-crash-bandicoot-part-1","changefreq":"weekly","video":[{"title":"2017:E264 - Let's Watch - Crash Bandicoot - Going Hog Wild! (#1)","description":"Jeremy, Gavin, and a bit of Jack accompany Michael as he begins his complete playthrough of the first Crash Bandicoot from the remastered trilogy.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-crash-bandicoot-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d072085-91f5-4eb4-a614-3dcadc3c6f28/sm/3014926-1501082641090-LW_CrashBandicoot_PART1.png","duration":2796,"publication_date":"2017-07-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-270-sky-factory-part-12","changefreq":"weekly","video":[{"title":"2017:E265 - Minecraft - Episode 270 - Sky Factory Part 12","description":"Daddy left for vacation, but the rest of Achievement Hunter's going to do their best to make their Sky Factory world a better place. \n\nIn this episode, Geoff fathers the ugliest chickens ever, Jack stuffs his pockets with manure, Jeremy crushes it, Michael cleans a dirty bottom, Gavin gets super crafty with sticks, and Lindsay attempts to become Magneto.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-270-sky-factory-part-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6efa361b-92a9-4d55-a67a-33af3e593c1f/sm/3014926-1501117550720-SkyFac12_Thumb.jpg","duration":3482,"publication_date":"2017-07-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-fat-kid-funhouse","changefreq":"weekly","video":[{"title":"2017:E30 - Halo 5 - Fat Kid Funhouse","description":"Achievement Hunter is stuck at a shady fair. Now they must beat all the carnival games or get beat to death.\n\nThe Achievement Hunter gang loves the carnival. It reminds them of their youth, playing the cool games like shooting little duckies for a prize or running across a bridge of swinging death hammers.  Can't forget the most important carnival staple: the fat kid that chases you around with a hammer and threatens to beat you to death unless you complete all the carnival games! Classic carnival nostalgia.\n\n\n\nMap - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=SiberianPanther#ugc_halo-5-guardians_xbox-one_mapvariant_SiberianPanther_9b8c1da4-fc39-46a7-ab3d-da70cbe124f4\n\n\n\n\n\nGame mode - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=SiberianPanther#ugc_halo-5-guardians_xbox-one_gamevariant_SiberianPanther_ec42aa63-a72c-4e13-94a1-863eefc864fd","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-fat-kid-funhouse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a36f5585-ff1f-4a89-aa72-3ec515e63449/sm/3014926-1501014365702-FAT_KID_THUMB.jpg","duration":1126,"publication_date":"2017-07-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-finding-bigfoot-the-first-squatch-hunt","changefreq":"weekly","video":[{"title":"2017:E263 - Finding Bigfoot: The First Squatch Hunt","description":"Before Z Bo, Cleet, or Trigger ever went squatchin' in the woods, Geoff, Michael, and Gavin took their first crack at catching Bigfoot.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-finding-bigfoot-the-first-squatch-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad26de06-6a57-4bcc-bf98-83e49b35fa3f/sm/3014926-1501008125298-LP_FindingBigfoot.png","duration":2083,"publication_date":"2017-07-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-9","changefreq":"weekly","video":[{"title":"2017:E9 - Between the Games - Lads Action Cab","description":"Rooster Teeth gave Achievement Hunter a new mail cart and told them not to put anyone in it, so they decided to put everyone in it. Lads Action Cab is at your service.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab53cf26-1ce8-41f5-94be-db778809fef5/sm/3014926-1500925612722-THUMB_LADS_ACTION_CAB2.jpg","duration":686,"publication_date":"2017-07-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-destiny-2-with-alfredo-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E262 - Destiny 2 with Alfredo: AH Live Stream","description":"It's Jack, Jeremy, Ryan and special guest Alfredo as they play PVP rounds in Destiny 2: Beta. To check out the live stream, click here: https://youtu.be/Tw1ld_7U50Y","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-destiny-2-with-alfredo-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6dea491-af7b-4a13-8f60-a6ec2cf616b3/sm/3014926-1500931192449-destiny_livestream.jpg","duration":3014,"publication_date":"2017-07-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-2","changefreq":"weekly","video":[{"title":"2017:E262 - Human Fall Flat Part 3 ","description":"The adventure continues as Michael and Gavin catapult their way to victory in Human Fall Flat part 3!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/243435ab-1b46-4d0b-8b7a-a275e91803a3/sm/3014926-1500673222251-PP_HumanFallFlat_Part3.png","duration":3301,"publication_date":"2017-07-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-call-of-duty-modern-warfare-remastered-prop-hunt","changefreq":"weekly","video":[{"title":"2017:E261 - Call of Duty: Modern Warfare Remastered - Prop Hunt","description":"Surely Geoff can't do as poorly as he did during the first course, right?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-call-of-duty-modern-warfare-remastered-prop-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37749e9a-8c39-48a2-ba1b-a40e3582aa3b/sm/3014926-1500676403883-Pasted_image_at_2017_07_21_05_30_PM.png","duration":2400,"publication_date":"2017-07-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-bane-s-awakening-ahwu-for-july-24-th-2017-379","changefreq":"weekly","video":[{"title":"2017:E30 - Bane's Awakening - AHWU for July 24th, 2017 (#379)","description":"Thank's to MeUndies for sponsoring today's episode. Get 20% off your first pair, plus FREE shipping at MeUndies.com/AHWU.\n\nJeremy takes AHWU from the corrupt! The rich! The oppressors of generations who have kept you down with myths of opportunity, and he gives it back to you... the people. AHWU is yours.\n\n\n\nNo one knew who Jeremy was until he put on the mask. Forced to serve a life sentence for crimes he didn't commit, Jeremy was born and raised in an underground prison. He trained and (sort of) grew to his maximum potential without ever seeing the light of day. Thanks to plot convenience, he escaped to Austin, Texas, and is now on a quest to break the backs of every Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-bane-s-awakening-ahwu-for-july-24-th-2017-379","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50d2bedc-142d-4fda-8887-a4896af8acad/sm/3014926-1500671907764-ahwu.jpg","duration":671,"publication_date":"2017-07-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-86-hoeige4","changefreq":"weekly","video":[{"title":"2017:E27 - Do You Know How Toilets Work? - Last Call #86","description":"The AH Crew sit down to talk about going to the bathroom, Jeremy’s writing, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-86-hoeige4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cb22378-d4b5-412c-a5f0-cea91974dc3a/sm/3014926-1500677061370-OFF86_-_PS_-_THUMB.jpg","duration":1368,"publication_date":"2017-07-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-severe-weather-patterns-mobile-operations-1","changefreq":"weekly","video":[{"title":"2017:E254 - GTA V - Severe Weather Patterns (Mobile Operations #1)","description":"The boys help Ryan beat the new Mobile Operations mission with the Dune FAV military buggy.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-severe-weather-patterns-mobile-operations-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e03b736-db59-432c-ae30-eb596888d96a/sm/3014926-1500390827245-GTA_V_DuneBuggy_Thumb.jpg","duration":2113,"publication_date":"2017-07-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-86-f894gh","changefreq":"weekly","video":[{"title":"2017:E86 - Pushing Buttons as a Team - Off Topic #86","description":"The AH Crew sit down to talk about Dream Daddy, impersonating others, the criminal masterminds finale, and more on this week's Off Topic!\n\nThis episode originally aired July 21, 2017 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and Jersey Mike’s (http://bit.ly/2vtai0z)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-86-f894gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6712fafb-494d-425b-a179-ab3ca29ed93b/sm/3014926-1500677471867-OFF86_-_THUMB.jpg","duration":8750,"publication_date":"2017-07-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-4-k-play-party-hard-beach-party","changefreq":"weekly","video":[{"title":"2017:E260 - 4K Play - Party Hard: Miami Party","description":"Party Hard was included in June's Rooster Teeth Double Gold Box. Want to get cool games and awesome Rooster Teeth swag each month? Sign up for a Double Gold Box here.\n\n\n\n\n\n\n\n\n\n\n\nIt's Party Hard in 4K! (Except here on the website, where 4K's not an option). Jeremy's ready to kill all the rowdy party-goers and bloody up the beach. That is, as long as he can get a smoke grenade. ","player_loc":"https://roosterteeth.com/embed/lets-play-2017-4-k-play-party-hard-beach-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/414c9185-77e6-42d9-b93d-28269376b4e1/sm/3014926-1500657073516-PartyHard_4K_Thumb.png","duration":1623,"publication_date":"2017-07-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-41-in-the-dark","changefreq":"weekly","video":[{"title":"2017:E17 - Episode #41: In the Dark","description":"A three film horror anthology featuring biker-killing demons, evil puppets and a VCR made out of human flesh. Join the AH Crew for the wild ride that is In The Dark!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-41-in-the-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7576f47c-ad31-44d3-87b2-4813f3cb9a4b/sm/3014926-1500656239672-TM41_-_THUMB.jpg","duration":5275,"publication_date":"2017-07-21T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-destiny-2-beta-campaign","changefreq":"weekly","video":[{"title":"2017:E259 - Let's Watch - Destiny 2 Beta: Campaign","description":"Michael, Jack, Jeremy, and Alfredo sit down with the Destiny 2 Beta to check out the first campaign mission. Watch as the Tower falls to pieces and the Traveler gets humped.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-destiny-2-beta-campaign","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce56328-9186-4aa2-9d7a-ed3c59b85ada/sm/3014926-1500589402574-LW_DESTINY_2_CAMPAIGN_THUMB_2.jpg","duration":2072,"publication_date":"2017-07-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-rising-4-mini-golf-course-6","changefreq":"weekly","video":[{"title":"2017:E258 - Dead Rising 4 Mini Golf: Course 6","description":"It's the last day of Dead Rising Mini Golf and Geoff is feeling pretty cocky about his last victory. Can he keep it up for the finale?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-rising-4-mini-golf-course-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62b8ded4-c79a-4e63-adcb-6615eaf2c84b/sm/3014926-1500585867946-LP_DeadRising_SuperUltraMiniGolf_Course6.png","duration":1738,"publication_date":"2017-07-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-2-beta-inverted-spire-strike-with-alfredo","changefreq":"weekly","video":[{"title":"2017:E257 - Destiny 2 Beta: Inverted Spire Strike","description":"The world's best guardians, Geoff, Ryan, and special guest Alfredo Diaz, team up to conquer the Inverted Spire Strike in the Destiny 2 Beta.\n\nEyes up, Guardians. We're sending you into a heavily-guarded Vex spire. The Vex are an alien race, which means they do things kinda like us, but with a perverted alien twist. Their spires are inverted! Your mission is to infiltrate the inverted spire, work your way down to its peak, and take out Protheon, Modular Mind and his series of disappearing floors. Good luck!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-2-beta-inverted-spire-strike-with-alfredo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82dad313-85e3-4d74-8170-fd8ef24802a0/sm/3014926-1500582003991-InvertedSpireThumb_v002.png","duration":1420,"publication_date":"2017-07-20T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-rising-4-mini-golf-course-5-2","changefreq":"weekly","video":[{"title":"2017:E256 - Dead Rising 4 Mini Golf: Course 5","description":"It's Super Ultra Dead Rising 4 Mini Golf: The Industrial Zone. Geoff's losing streak is starting to drive a wedge between him and the rest of the group.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-rising-4-mini-golf-course-5-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75b2af86-47ec-42b7-9575-fdc4654f8cfa/sm/3014926-1500505442922-LP_DeadRising_SuperUltraMiniGolf_Course5.png","duration":1622,"publication_date":"2017-07-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-jeremy-s-secret-room","changefreq":"weekly","video":[{"title":"2017:E9 - Jeremy's Secret Room","description":"Gavin stumbles into Jeremy's secret room in Minecraft. \"KILL.\" What does it mean?!Animation audio from: https://www.youtube.com/watch?v=P-LbBjcFObA&feature=youtu.be&t=7m21s\n\nAnimated by Jaime Aguilar","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-jeremy-s-secret-room","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/443dcf9a-2266-4f04-8126-06d3ba9c8775/sm/3014926-1500500786186-YT_TOP_10_Zelda_Items_Part2.jpg","duration":118,"publication_date":"2017-07-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-269-sky-factory-part-11","changefreq":"weekly","video":[{"title":"2017:E256 - Minecraft - Episode 269 - Sky Factory Part 11","description":"Now that the Gents have cleaned up Sky Factory, everyone's back and ready to move into the future. And with the future comes jet packs!\n\nIn today's episode, Gavin earns the title of Solar Queen, Michael gets deep in the weeds, Ryan takes to the skies, Geoff yearns for green dye, Jack stops farming long enough to build a new mob dropper, and Jeremy becomes a father.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-269-sky-factory-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e800641-0b54-47dc-ad8c-ee17d29495e5/sm/3014926-1500506803213-SkyFactory11_Thumb.jpg","duration":4167,"publication_date":"2017-07-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-tom-and-jerry","changefreq":"weekly","video":[{"title":"2017:E29 - Halo 5 - Tom and Jerry","description":"Squeak Squeak! It's a cat-and-mouse game in the AH office as the crew plays some Tom and Jerry in Halo 5.\n\nWho will squeak squeak their way to victory? Who will stay hidden the best? Who will betray their fellow mice? Nobody squeakin' knows.\n\n\n\n\n\n\n\nMap:https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=MisterJuOrDjoul#ugc_halo-5-guardians_xbox-one_mapvariant_MisterJuOrDjoul_738afc83-0874-4f1a-a2e8-497c34c47625\n\n\n\n\n\n\n\nGametype:https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=MisterJuOrDjoul#ugc_halo-5-guardians_xbox-one_gamevariant_MisterJuOrDjoul_f713460f-3982-47aa-8ccd-ba97155d97be","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-tom-and-jerry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9e20681-6a08-45e4-8e2f-47e2d72f274d/sm/3014926-1500309314511-TTD_TOM_AND_JERRY.jpg","duration":907,"publication_date":"2017-07-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-destiny-2-first-mission-easter-eggs","changefreq":"weekly","video":[{"title":"2016:E19 - Destiny 2 - First Mission Easter Eggs","description":"Destiny is back a little early with the Destiny 2 Beta, and there's a few hidden easter eggs right in the very first mission. I hope you enjoyed hanging out in the tower while you had the chance.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-destiny-2-first-mission-easter-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40f51674-fb0b-4d2a-975c-6a854b60466d/sm/3014926-1500481568617-Thumbnail.jpg","duration":126,"publication_date":"2017-07-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-rising-4-mini-golf-course-4","changefreq":"weekly","video":[{"title":"2017:E252 - Dead Rising 4 Mini Golf: Course 4","description":"It's Super Ultra Dead Rising 4 Mini Golf: Medieval Town Fairways.\n\nThere's more courses and Geoff is finding this one comes with exciting new ways to screw him over. Everyone's joining in!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-rising-4-mini-golf-course-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/545503a7-ac4f-417d-a325-60710ca78be9/sm/3014926-1500328534938-LP_DeadRising_SuperUltraMiniGolf_Course4.png","duration":862,"publication_date":"2017-07-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-git-gud-practice-round","changefreq":"weekly","video":[{"title":"2017:E253 - Rainbow Six Siege: Git Gud - Practice Round","description":"Special thanks to Blue Apron for sponsoring this video. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT\n\n\n\nBefore the guys started their Rainbow 6 live stream, they did a pre-stream set of matches to get warmed up. They weren't sure if it would see the light of day, but here it is! Sunshine and all. To check out the subsequent live stream click here: https://youtu.be/Z3dkRldMt-M","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-git-gud-practice-round","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20fc38b3-f66b-4065-9f76-690ad2672c33/sm/3014926-1500331470398-LP_R6Seige_Stream_v1_THUMB3.png","duration":3074,"publication_date":"2017-07-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-10","changefreq":"weekly","video":[{"title":"2017:E8 - Between the Games - Dicking Around","description":"When the boys dick around the office, stuff usually gets broken. When the boys throw dicks around the office, stuff definitely gets broken.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/012949b6-f6e7-4369-bb23-b6250c26b852/sm/3014926-1500314135169-DICKIN_AROUND_THUMB.jpg","duration":750,"publication_date":"2017-07-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-rising-4-mini-golf-course-3","changefreq":"weekly","video":[{"title":"2017:E251 - Dead Rising 4 Mini Golf: Course 3","description":"The boys are back for more Super Ultra Dead Rising 4 Mini Golf fun playing the holes of Pirate's Refuge.\n\nGeoff, Michael, Ryan, and Jack are half way through their week of Dead Rising 4 Mini Golf. Will Geoff finally beat Ryan so his stupid prank can have some legitimate payoff? Probably not!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-rising-4-mini-golf-course-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d815ad1d-d2b5-437f-836b-a2107125b99a/sm/3014926-1500306193939-LP_DeadRising_SuperUltraMiniGolf_Course3.png","duration":1884,"publication_date":"2017-07-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-268-5-sky-factory-part-10-5","changefreq":"weekly","video":[{"title":"2017:E250 - Minecraft - Episode 268.5 - Sky Factory Part 10.5","description":"Before progressing further in their Sky Factory world, The Gents take some time to clean up things up a bit.\n\nWhile the lads are away, the gents will play...Sky Factory. In this Minecraft bonus interstitial, Geoff, Jack, and Ryan take some time to de-ugly the contraptions they've built over the past 10 episodes, gather more resources, and get everything prepped for the next episode. It's like a Let's Build. Just with a little more beans.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-268-5-sky-factory-part-10-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c70edbe2-1427-407c-99fb-19070c7221ec/sm/3014926-1500070657583-SkyFactory10andHalf_Thumb.jpg","duration":4380,"publication_date":"2017-07-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017","changefreq":"weekly","video":[{"title":"2017:E249 - Human Fall Flat Part 2 ","description":"Michael and Gavin continue their squiggly adventure in Human Fall Flat!","player_loc":"https://roosterteeth.com/embed/play-pals-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d78637a-4f2e-46e5-8aba-f39dd4e06f5d/sm/3014926-1500064873466-PP_HumanFallFlat_Part2.png","duration":1847,"publication_date":"2017-07-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-rising-4-mini-golf-course-2","changefreq":"weekly","video":[{"title":"2017:E249 - Dead Rising 4 Mini Golf: Course 2","description":"It's Super Ultra Dead Rising 4 Mini Golf: Golden Apple Vineyards","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-rising-4-mini-golf-course-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/014dcf3d-f928-4dc7-abed-91b75a667694/sm/3014926-1500067372738-LP_DeadRising_SuperUltraMiniGolf_Course2.png","duration":1695,"publication_date":"2017-07-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-rising-4-mini-golf-course-1","changefreq":"weekly","video":[{"title":"2017:E248 - Dead Rising 4 Mini Golf: Course 1","description":"It's Super Ultra Dead Rising 4 Mini Golf: Santa's Village Fairway.\n\nJoin Geoff, Michael, Ryan, and Jack as they try their skills at the new Mini Golf DLC. But, there's definitely something fishy with Michael and Geoff.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-rising-4-mini-golf-course-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7635f97f-2a12-4025-b19d-b22f0d90a39e/sm/3014926-1500054143716-LP_DeadRising_SuperUltraMiniGolf_Course1.png","duration":1873,"publication_date":"2017-07-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-emergency-underpants-ahwu-for-july-17-th-2017-378","changefreq":"weekly","video":[{"title":"2017:E29 - Emergency Underpants - AHWU for July 17th, 2017 (#378)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.\n\nWith all the crap that happens in Achievement Hunter on a daily basis, you never know when you'll need an extra pair of underoos. Now the next time Ryan takes an axe to Jeremy's boxers, he'll have a backup pair of big boy panties at the ready.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-emergency-underpants-ahwu-for-july-17-th-2017-378","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dc598a6-fa10-4eb6-a219-aa1e5419eb32/sm/3014926-1500062757990-ahwu1.jpg","duration":876,"publication_date":"2017-07-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-gta-v-pacific-standard-heist-criminal-masterminds-finale","changefreq":"weekly","video":[{"title":"2017:E245 - GTA V - Pacific Standard: Heist - Criminal Masterminds (Finale)","description":"Achievement Hunter takes on the Pacific Standard Heist in the finale to the Criminal Masterminds series.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-gta-v-pacific-standard-heist-criminal-masterminds-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4f7afaa-9aee-4044-af24-306a51f095be/sm/3014926-1499890108792-GTA_CM_Finale_Thumb.jpg","duration":1774,"publication_date":"2017-07-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-69","changefreq":"weekly","video":[{"title":"2017:E247 - Let's Watch - Telltale Game of Thrones - Episode 6: The Ice Dragon","description":"In the epic conclusion to our Game of Thrones Let's Watch series, Michael and Gavin must give it their all to to protect Ironrath from House Whitehill's grasp.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a4ead69-ca4c-4ddf-a9e6-896f167945d5/sm/3014926-1500052764065-LW_GoT_PART6Finale.png","duration":6873,"publication_date":"2017-07-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-85-jo4ugo4l","changefreq":"weekly","video":[{"title":"2017:E85 - Ryan the Bad King - Off Topic #85","description":"The AH Crew sit down to talk about RTX 2017, changing diapers, old food, and more on this week's Off Topic!\n\nThis episode originally aired July 14, 2017","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-85-jo4ugo4l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c0f5181-68cf-42e5-ac7e-091c31eb5ee1/sm/3014926-1500053114432-OFF85_-_THUMB.jpg","duration":5127,"publication_date":"2017-07-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-68","changefreq":"weekly","video":[{"title":"2017:E246 - Let's Watch - Telltale Game of Thrones - Episode 5: A Nest of Vipers","description":"It's the penultimate episode in our Telltale Game of Thrones week. And like episode 9 of every season, Michael and Gavin will be helpless as their favorite characters get Thrones'd.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/454273a5-f002-414b-9299-eff0fe40f3c4/sm/3014926-1499965237752-LW_GoT_PART5.png","duration":5000,"publication_date":"2017-07-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-invisigun-heroes-with-screw-attack","changefreq":"weekly","video":[{"title":"2017:E244 - Invisigun Heroes with Chad","description":"Achievement Hunter and Chad from Screw Attack act heroic and get invisibley in Invisigun Heroes.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-invisigun-heroes-with-screw-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73365543-5b88-46bf-be04-0aa3738eafa1/sm/3014926-1499887373322-lp_invisigunheroesscrewattack.png","duration":1824,"publication_date":"2017-07-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-67","changefreq":"weekly","video":[{"title":"2017:E246 - Let's Watch - Telltale Game of Thrones - Episode 4: Sons of Winter","description":"Winter may still be coming, but things are heating up at House Forrester as Michael and Gavin pay the Whitehills a visit.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69761b91-8eab-49cb-af1b-1545e7a9639f/sm/3014926-1499891550324-LW_GoT_PART4.png","duration":8260,"publication_date":"2017-07-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-268-sky-factory-part-10","changefreq":"weekly","video":[{"title":"2017:E243 - Minecraft - Episode 268 - Sky Factory Part 10","description":"The Achievement Hunter crew keep striving to make their Minecraft world a better place in the best mod ever, Sky Factory.\n\nIn this week's episode: Geoff thinks chickens are clukin' awesome, Jack gets really mystical with his agriculture, Gavin goes all-in on renewable energy, Ryan doubles down on hammers, and Lindsay does a very bad thing.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-268-sky-factory-part-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/159eb303-51dc-431e-8b22-0341f0d8cfc2/sm/3014926-1499883851924-SkyFactory10Thumb.jpg","duration":3227,"publication_date":"2017-07-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-66","changefreq":"weekly","video":[{"title":"2017:E239 - Let's Watch - Telltale Game of Thrones - Episode 3: The Sword in the Darkness","description":"Michael and Gavin seek help from the mother of dragons while continuing to make poor decisions.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bf62397-d138-4aee-8328-bc763c106c71/sm/3014926-1499700130448-LW_GoT_PART3_THUMB.png","duration":6961,"publication_date":"2017-07-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-friday-the-13-th-pleasing-momma-voorhees-2","changefreq":"weekly","video":[{"title":"2017:E242 - Friday the 13th: Pleasing Momma Voorhees (#2)","description":"It's Friday the 13th somewhere! The boys are back for more killing, stabbing, murdering, and all-around Jason fun.\n\nCamping has never been so much fun. You sit around the campfire, sing a song, convince the cute girls to go skinny dipping, and have a crazy, psycho, murder monster fling an axe at your skull. Now the torment has contorted your face to freeze into a horrible, screaming face. The only thing that will fix your face problem is giving boy Jason a little hug. Don't worry. He won't bite. He'll just pull your arms out of their sockets and then punch your heart out.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-friday-the-13-th-pleasing-momma-voorhees-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4745085-70c2-481a-9d4a-859394a3a179/sm/3014926-1499799687583-F13_THUMB.jpg","duration":1981,"publication_date":"2017-07-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-65","changefreq":"weekly","video":[{"title":"2017:E238 - Let's Watch - Telltale Game of Thrones - Episode 2: The Lost Lords","description":"Day two of our Game of Thrones Let's Watch series has Michael and Gavin making their way to Castle Black to swear an oath to the Night's Watch.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/619b3639-ded3-4654-8f81-d2781cf9e683/sm/3014926-1499698937412-LW_GoT_PART2_THUMB.png","duration":6948,"publication_date":"2017-07-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-the-ship-remasted","changefreq":"weekly","video":[{"title":"2017:E240 - The Ship: Remasted","description":"Geoff, Ryan, Jack, Jeremy, Trevor, and special guest Alfredo, try out The Ship: Remasted. It's a fancy boat where polite society must fend for their lives, and also secretly, or not so secretly kill one another. All aboard! This murderous cruise liner is setting off again.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-the-ship-remasted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c6da3e1-86ac-4e74-81a0-13819584d3bb/sm/3014926-1499719207273-LP_TheShip-Remastered_THUMB1.png","duration":2039,"publication_date":"2017-07-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-63","changefreq":"weekly","video":[{"title":"2017:E235 - Let's Watch - Telltale Game of Thrones - Episode 1: Iron From Ice","description":"Michael and Gavin are preparing for the brand-new season of Game of Thrones by playing the Telltale series. The twist is that for each character death, they take a shot. Long story short, they'll have alcohol poisoning by the end of the game.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/197e02e7-1aaf-4322-b194-124f5f2f992e/sm/3014926-1499360354151-LW_GoT_PART1_THUMB.png","duration":7201,"publication_date":"2017-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-jackbox-fakin-it-true-lies","changefreq":"weekly","video":[{"title":"2017:E234 - Jackbox: Fakin' It - True Lies","description":"The boys crack open the Jackbox 3 party pack and try to deceive eachother in Fakin' It!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-jackbox-fakin-it-true-lies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/069b6625-1570-4c9f-90a0-77e8caa5dbf3/sm/3014926-1499353575782-Fakin_It_2_Thumb2.jpg","duration":2334,"publication_date":"2017-07-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-64","changefreq":"weekly","video":[{"title":"2017:E237 - Let's Watch - Final Fantasy XII: The Zodiac Age","description":"Thanks to Square Enix for sponsoring this video. You can check the game out here http://bit.ly/2tCNX2F. Matt, Michael, and Geoff get a chance to sit down and get an early peek at Final Fantasy XII: The Zodiac Age. We also got to learn that Matt is a ruthless killer.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b7248a3-680d-4028-ab1c-4d844d69da66/sm/3014926-1499378590880-FINAL_FANTASY_THUMB.png","duration":2936,"publication_date":"2017-07-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-presidential-plugging-ahwu-for-july-10-th-2017-377","changefreq":"weekly","video":[{"title":"2017:E28 - Presidential Plugging - AHWU for July 10th, 2017 (#377)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU\n\nAchievement Hunter gets a special AHWU visit from Prez Donny T, \"butt\" they're not sure if he should be used as intended.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-presidential-plugging-ahwu-for-july-10-th-2017-377","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c14baf3e-71df-4236-89a8-5f74c88bbc8d/sm/3014926-1499374037154-butts.jpg","duration":684,"publication_date":"2017-07-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-84-diofg4","changefreq":"weekly","video":[{"title":"2017:E26 - The Making of Off Topic - Last Call #84","description":"The AH Crew sit down to talk about Getting a Job, Making Internet Content, Team Edward and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-84-diofg4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e313ab2-5c04-4a75-812d-fbcb9e1625b9/sm/3014926-1499368950364-OFF84_-_PS_-_THUMB.jpg","duration":1537,"publication_date":"2017-07-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-pacific-standard-setup-criminal-masterminds-part-11","changefreq":"weekly","video":[{"title":"2017:E236 - GTA V - Pacific Standard: Setup - Criminal Masterminds (Part 11)","description":"Ryan, Jeremy, Gavin, and Michael need to rob the military and some bikers to prepare for the final heist in the Criminal Masterminds series.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-pacific-standard-setup-criminal-masterminds-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6eb00b0-9a2b-4365-91ff-a2ea91069d31/sm/3014926-1499373646080-GTA_Thumb_CM_Part11_purple.jpg","duration":1809,"publication_date":"2017-07-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-84-jgioyj","changefreq":"weekly","video":[{"title":"2017:E84 - An Ocean of Stupidity - Off Topic #84","description":"The AH Crew sit down to talk about Carrot Top, Space Corps, Professional Eating and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-84-jgioyj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b7b7c86-d698-4eed-a35d-fe86d2d3e43c/sm/3014926-1499369026727-OFF84_-_THUMB.jpg","duration":6558,"publication_date":"2017-07-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-62","changefreq":"weekly","video":[{"title":"2017:E233 - Let's Watch - Hitman Elusive Target: The Fugutive","description":"Hitman Ryan's hunting down another elusive target. The only problem is he has no idea who the target is.\n\nAgent 47, I have another elusive target for you to hunt. Ji-Hu is somewhere in this facility. In just a moment, I will be sending you a picture of his face. Oh bloody hell! I just spilled coffee all over these important assassin files. Well, never mind, Agent 47. Now Ji-Hu is nothing more than a smearing of hazelnut blend. I haven't the slighest what this guy looks like. Sorry about that. Just go in there, have some fun, and good luck.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d25d784-5d0e-4161-89d1-1c8e0b6f01a9/sm/3014926-1499273976296-Hitman_MysteryThumb_v001.png","duration":2448,"publication_date":"2017-07-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-more-gang-beasts-with-kinda-funny","changefreq":"weekly","video":[{"title":"2017:E229 - More Gang Beasts With Kinda Funny","description":"Jack and Jeremy load up Gang Beasts and go full-out brawl mode on Nick and Tim from Kinda Funny.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-more-gang-beasts-with-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f29e2667-c1ba-44ad-9dba-58acd8e7d27d/sm/3014926-1498861043326-LP_GangBeastsKindaFunny.png","duration":1726,"publication_date":"2017-07-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-gavin-gets-robbed","changefreq":"weekly","video":[{"title":"2017:E8 - Gavin Gets Robbed","description":"Gavin recounts the time he was robbed of his Slow Mo weaponry in this week's AH Animated!","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-gavin-gets-robbed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e9186f4-7a3a-4a41-a8e5-4761337fc79a/sm/3014926-1499267975930-GavinRobbedThumbnail.jpg","duration":115,"publication_date":"2017-07-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-5-ao8fkr","changefreq":"weekly","video":[{"title":"S2:E5 - Episode 5 - Girls Rock!","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-5-ao8fkr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e86662-9db6-4c8e-92cd-6505a5bdeb5f/sm/2013912-1497041501197-RWBYChibiEp05Thumbnail.jpg","duration":230,"publication_date":"2017-06-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-30","changefreq":"weekly","video":[{"title":"2017:E30 - Dude Service - #30","description":"Join Gray, Miles, Cole, Yssa, and special guests Elyse and James Willems as they discuss their favorite animes, the latest episodes of Attack on Titan and Shirobako, and more this week on Fan Service! Submit your questions for the Community Service segment at http://bit.ly/2nJ61Ba.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/879fc0dc-b789-4856-98bd-64d82d4799dc/sm/2013912-1497042764686-fanservice_030.png","duration":5862,"publication_date":"2017-06-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-10","changefreq":"weekly","video":[{"title":"2017:E21 - Sonic Adventure 2, #10 - Last Story","description":"It's all been leading to this. What was the warning Dr. Eggman got at the end of the Dark Story? What's going to happen if Sonic Already destroyed the Eclipse Cannon? What happened to Shadow on space colony Ark before Eggman found him? All of this and more will be answered on this final episode of Sonic Adventure 2!","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d044a66-0189-4103-82e8-9d181a9696df/sm/2013912-1497040842461-BC_SANIC_THUMB_PT10.png","duration":3203,"publication_date":"2017-06-09T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-33-jfiy3jf","changefreq":"weekly","video":[{"title":"2017:E21 - Still Open #33","description":"Join Barbara Dunkelman, Patrick Matthews, Bethany Feinstein, and Mariel Salcedo as they discuss a fan-submitted question about having feelings for a straight friend.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-33-jfiy3jf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97a6ed54-4004-437f-9f38-073651bfdeda/sm/2013912-1496936158455-AO33_-_PS_-_Thumb_v1.jpg","duration":648,"publication_date":"2017-06-09T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-2-episode-1-8-w74yhk","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 1 - Cult Camp","description":"Gwen puts out an ad looking for a new camp counselor, but is not happy with the results. Max suspects there is something off about the new hire.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-2-episode-1-8-w74yhk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c53ddeb-00ca-41cd-8c11-653d0526c902/sm/2013912-1496977275698-CC2_Ep01_tn.jpg","duration":823,"publication_date":"2017-06-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-behind-the-scenes-of-me-vs-drunk-me","changefreq":"weekly","video":[{"title":"2017:E4 - Behind the Scenes of Me vs Drunk Me","description":"During the filming for Me vs Drunk Me, Blaine gets surprisingly wholesome and sweet.","player_loc":"https://roosterteeth.com/embed/the-lab-2017-behind-the-scenes-of-me-vs-drunk-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/618d7843-0731-4306-ba7f-a759f25e250b/sm/2013912-1496935715236-BTSDrunk_01.png","duration":226,"publication_date":"2017-06-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-20","changefreq":"weekly","video":[{"title":"2017:E20 - Battlegrounds Win and Company All Hands","description":"Burnie wins Battlegrounds (and is pretty pleased about it) and takes us behind the scenes to the mid-year Rooster Teeth \"All Hands\" meeting. There are so many hands...","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeef982b-958a-43f5-b7ca-128da18a0a72/sm/2013912-1496950494811-Vlog_20_Allhands_Thumbnail.png","duration":321,"publication_date":"2017-06-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-33-jsiujsg","changefreq":"weekly","video":[{"title":"2017:E33 - Two Kitties, One Cup - #33","description":"Join Barbara Dunkelman, Patrick Matthews, Bethany Feinstein, and Mariel Salcedo as they discuss Women Only movie screenings, predictions about the future, being someone else, and a question about a suspicious fiance! This episode is sponsored by MeUndies (http://bit.ly/2oqytsJ) and MVMT (http://bit.ly/2g6rLUx)","player_loc":"https://roosterteeth.com/embed/always-open-2017-33-jsiujsg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8be14436-9129-4900-bfd3-caf1be4e4c31/sm/2013912-1496935559406-AO33_-_Thumb_v1.jpg","duration":2833,"publication_date":"2017-06-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-me-vs-drunk-me-blaine-talks-cannibalism","changefreq":"weekly","video":[{"title":"2017:E3 - Me vs Drunk Me - Blaine Talks Cannibalism","description":"Blaine gets drunk and interviews himself about cannibalism.","player_loc":"https://roosterteeth.com/embed/the-lab-2017-me-vs-drunk-me-blaine-talks-cannibalism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5eb052b-a2b5-4378-8c64-c14fe2a3f111/sm/2013912-1496701460731-DrunkBlaine_03b.png","duration":83,"publication_date":"2017-06-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-432-post-show-2874-jbnmf","changefreq":"weekly","video":[{"title":"2017:E23 - Are You a Robot? - Podcast #432 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Chris Demarais as they discuss Siri’s new voice, VR conference calls, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-432-post-show-2874-jbnmf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd212b6f-51b7-4da8-b59b-eed580de4298/sm/2013912-1496767305043-rtp432_-_PS_-_THUMB.jpg","duration":1124,"publication_date":"2017-06-07T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-crushed-by-a-giant-6-ft-water-balloon","changefreq":"weekly","video":[{"title":"S1:E78 - Crushed by a Giant 6ft Water Balloon","description":"S1:E78 - Crushed by a Giant 6ft Water Balloon","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-crushed-by-a-giant-6-ft-water-balloon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb3864f9-4c90-4422-9033-c65901559b4c/sm/82-1496847220961-Screen_Shot_2017-06-06_at_23.12.13.png","duration":540,"publication_date":"2017-06-07T07:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-me-vs-drunk-me-ashley","changefreq":"weekly","video":[{"title":"2017:E2 - Me vs Drunk Me - Ashley Talks Politics","description":"Ashley gets drunk and interviews herself about politics.","player_loc":"https://roosterteeth.com/embed/the-lab-2017-me-vs-drunk-me-ashley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/787662b9-5e10-4552-bc3d-8c6d66ade568/sm/2013912-1496685311773-DrunkAshley_03.png","duration":245,"publication_date":"2017-06-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-432-nfiunkg","changefreq":"weekly","video":[{"title":"2017:E432 - Is That Me? - #432","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Chris Demarais as they discuss framing someone, garage sales, bathroom horror stories, and more on this week's RT Podcast! This episode originally aired on June 5, 2017, sponsored by Casper (http://bit.ly/2sa1gGZ), MVMT (http://bit.ly/2s9ZxBm), Squarespace (http://bit.ly/2safJTb)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-432-nfiunkg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dc0be66-e3e3-4b16-aa28-86ae0734bb89/sm/2013912-1496762378174-rtp432_-_THUMB.jpg","duration":5511,"publication_date":"2017-06-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lab-2017-drunk-interviews-chris","changefreq":"weekly","video":[{"title":"2017:E1 - Me vs Drunk Me - Chris Talks Sex","description":"Chris gets drunk and interviews himself about sex.","player_loc":"https://roosterteeth.com/embed/the-lab-2017-drunk-interviews-chris","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22eb04a7-4680-4f0f-a539-3d1189888977/sm/2013912-1496675781089-DrunkChris_03.png","duration":226,"publication_date":"2017-06-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-280-ois7fj","changefreq":"weekly","video":[{"title":"2017:E280 - Porta-Potty Blowjob","description":"Gavin tries to use a porta-potty but a strange gentleman interrupts his tinkle time to do a quick bump. Then he wants a blowjob. Look, it's weird, just watch it.\n\n\n\n\n\n\n\nAudio from Rooster Teeth Podcast #404\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by William Ball & Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-280-ois7fj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36589474-b1f7-4f02-90a1-ff367a63aaef/sm/2013912-1496426040776-rtaa280tn.jpg","duration":153,"publication_date":"2017-06-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-battlesloths-2025-the-great-pizza-wars-game-trailer","changefreq":"weekly","video":[{"title":"S1:E32 - BATTLESLOTHS 2025: The Great Pizza Wars - Game Trailer","description":"Available on Steam June 6, 2017! Battlesloths 2025: The Great Pizza Wars is the fast-paced multiplayer competitive twin-stick shooter of your slothy dreams. Compete with up to 4 human players or play against some tough as nails AI sloths should you be short of friends. Use a myriad of weaponry, each with their own strategies, to destroy your enemies in a quest to collect the most pizza.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-battlesloths-2025-the-great-pizza-wars-game-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f24fbad1-ec2e-4cd2-8bc7-f9f5bbfc16bd/sm/2013912-1496443974232-BS_Trailer_Thumb_01.jpg","duration":58,"publication_date":"2017-06-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-10-ai7g4bj","changefreq":"weekly","video":[{"title":"S15:E10 - Episode 10: Battlescars","description":"Agents Carolina and Washington have successfully followed the trail of missing Freelancers to the beach house of an former associate, Agent Illinois. While digging through their past hasn’t yielded any revelations, it has managed to reopen old wounds for Carolina.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-10-ai7g4bj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f35e78a1-c49d-45b9-b4aa-7c51deae4b85/sm/2013912-1496425545724-RvB15Ep010Thumbnail.jpg","duration":564,"publication_date":"2017-06-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-4-k4hekg","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4 - Dad Jokes","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-4-k4hekg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eabd6080-d24a-48d5-83fb-f239e43047e3/sm/2013912-1496425680512-RWBYChibiEp04Thumbnail.jpg","duration":178,"publication_date":"2017-06-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-episode-29","changefreq":"weekly","video":[{"title":"2017:E29 - Fingering the Goodness - #29","description":"Join Kerry, Gray Miles, Cole, Yssa, and special guest Erin Winn as they discuss 3D anime, the latest episodes of Attack on Titan and Shirobako, and more this week on Fan Service! Also, be sure to stick around for a special post-show interview with Dante Basco discussing voice acting and more. \n\nSubmit your questions for the Community Service segment at http://bit.ly/2nJ61Ba.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-episode-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6173e05-ff74-4ae6-885e-383a6177d236/sm/2013912-1496444089573-fanservice_029.png","duration":2550,"publication_date":"2017-06-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-9-all-the-upgrades","changefreq":"weekly","video":[{"title":"2017:E20 - Sonic Adventure 2, #9 - All the Upgrades","description":"As many of you have pointed out the boys are missing some upgrades. So Kyle and Miles have made the decision to get all the upgrades that matter.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-9-all-the-upgrades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c28ffde-014e-4d37-89a5-6b80cb907e44/sm/2013912-1496425220783-BC_SANIC_THUMB_PT9.png","duration":3722,"publication_date":"2017-06-02T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-32-afhjf7","changefreq":"weekly","video":[{"title":"2017:E20 - Still Open #32","description":"Join Barbara Dunkelman, Jessica Vasami, Tyler Coe, and Mariel Salcedo as they discuss a fan question about being overly judgemental.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-32-afhjf7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe91c98-2024-41a5-97d4-6745c4d8ff5f/sm/2013912-1496417568154-AO32_-_PS_-_Thumb_v1.jpg","duration":592,"publication_date":"2017-06-02T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-19","changefreq":"weekly","video":[{"title":"2017:E19 - Failure","description":"Burnie walks and talks us through his week in Austin and LA, and discusses the subject of \"Failure\"","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fe8121b-cd44-4fe4-9983-9a2c454446b8/sm/2013912-1496333245844-Vlog_19_Failure_Thumbnail.png","duration":712,"publication_date":"2017-06-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-32-aiyfjwj","changefreq":"weekly","video":[{"title":"2017:E32 - Barbara's Huge Tonsils - #32","description":"Join Barbara Dunkelman, Jessica Vasami, Tyler Coe, and Mariel Salcedo as they discuss over-spending, Barbara's tonsils, and a fan-submitted question about long distance. This episode is sponsored by HelloFresh (http://bit.ly/2dpEq8M) and Lyft (http://lft.to/2k09gCG)","player_loc":"https://roosterteeth.com/embed/always-open-2017-32-aiyfjwj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3e5843a-8828-4d97-9bfd-01967f1d76d9/sm/2013912-1496333150412-AO32_-_Thumb_v1.jpg","duration":3454,"publication_date":"2017-06-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-pets-play-mario-kart","changefreq":"weekly","video":[{"title":"2017:E63 - Pets Play Mario Kart","description":"Matt Bragg decides to put the new auto-pilot features of the Switch to the test by bringing in some very inexperienced gamers: pets of the Rooster Teeth offices! It goes about as well as you'd expect.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-pets-play-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c06660c8-7052-4db9-9bd2-5a3b7a6784e2/sm/2013912-1496244595739-petsplay.png","duration":294,"publication_date":"2017-05-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-431-post-show-973-hkg","changefreq":"weekly","video":[{"title":"2017:E22 - Everything is Clickbait - Podcast #431 Post Show","description":"Join Gus Sorola, Blaine Gibson, Becca Frasier, and Burnie Burns as they discuss the news today, voice acting, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-431-post-show-973-hkg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c17dadaf-bbc8-439d-8927-d5231d4c6f79/sm/2013912-1496180528873-rtp431_-_PS_-_THUMB.jpg","duration":1432,"publication_date":"2017-05-31T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-sausage-party","changefreq":"weekly","video":[{"title":"2017:E62 - Sausage Party!","description":"Max gives us a glimpse into what it took to make the infamous sausage room on Million Dollars, But..., and dogs on set get a hold of some inappropriate props.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-sausage-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb860656-26ff-4e47-a06e-21b2592776ce/sm/2013912-1496157260988-sausage_party.png","duration":140,"publication_date":"2017-05-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-431-aopf8k","changefreq":"weekly","video":[{"title":"2017:E431 - Three Bs and a Gus - #431","description":"Join Gus Sorola, Blaine Gibson, Becca Frasier, and Burnie Burns as they discuss donating blood, social media annoyances, dating vs being single, and more on this week's RT Podcast! This episode originally aired on May 29, 2017, sponsored by Dollar Shave Club (http://bit.ly/2mNgPlK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-431-aopf8k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f6828f0-6c5a-440f-bd35-12d13b619dc7/sm/2013912-1496157284000-rtp431_-_THUMB.jpg","duration":5390,"publication_date":"2017-05-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/barbara-vlogs-2017-flicking-the-bean-getting-hot-in-arizona","changefreq":"weekly","video":[{"title":"2017:E2 - Flicking The Bean & Getting HOT in Arizona!","description":"It's the May Vlog! Which consists of content mostly from April! Makes sense, right? Join me (Barbara, hi!) as I travel to Chicago & Phoenix for fun times, and get a glimpse into another episode of Million Dollars, But... behind the scenes! Thanks for being a FIRST member, and for watching potentially TWO of these already!","player_loc":"https://roosterteeth.com/embed/barbara-vlogs-2017-flicking-the-bean-getting-hot-in-arizona","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acfb4d32-d240-4918-8bd7-889dee7ab74e/sm/2013912-1495832683870-Vlog2Thumbail.jpg","duration":562,"publication_date":"2017-05-29T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-279-fj97bf","changefreq":"weekly","video":[{"title":"2017:E279 - Miles' Fake ID Excursion","description":"Miles recalls the time he found someone's ID, for which he could use to get into bars before turning the legal drinking age. Needless to say, it doesn't go smoothly.\n\nAudio from Always Open podcast #24\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Andrew Lhotsky & Quinn Weston","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-279-fj97bf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3a93600-ff8c-4727-ae80-4e6b4dde6251/sm/2013912-1495833182291-rtaa279tn.jpg","duration":119,"publication_date":"2017-05-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-9-ie7t48","changefreq":"weekly","video":[{"title":"S15:E9 - Episode 9: Rigged","description":"The Reds and Blues get to know the Blues and Reds better, and discover a familier face among their ranks.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-9-ie7t48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6925b90a-45ca-4f6a-a71b-ec8c581f3ce8/sm/2013912-1495836952579-RvB15Ep09Thumbnail_1.jpg","duration":606,"publication_date":"2017-05-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-think-of-the-children","changefreq":"weekly","video":[{"title":"2017:E4 - Think of the Children","description":"Brandon pretty much screams for the entire Let's Play and refuses to listen to Gus' advice...which is weird because he refuses to use the shout function in the game.","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-think-of-the-children","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d55cbf82-33c4-4057-bde5-4201f2def698/sm/2013912-1495812192252-thumbnail.jpg","duration":1384,"publication_date":"2017-05-27T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-3-a9jtih8","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3 - Magic Show","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-3-a9jtih8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d7388b8-0d88-4646-bc7a-bf2c7553dca7/sm/2013912-1495831953075-rwbychibiep03thumbnail_720.jpg","duration":238,"publication_date":"2017-05-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-28","changefreq":"weekly","video":[{"title":"2017:E28 - The Whole Finger Goes in the Mouth - #28","description":"Join Kerry, Gray, Miles, Cole, Yssa, and special guest Caitlin Glass as they discuss Funimation productions (http://bit.ly/2rHZnBg), Caitlin’s voice acting history, the latest episodes of Attack on Titan and Shirobako, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64babad9-787a-4c79-a81c-34a763adf75c/sm/2013912-1495824502292-fanservice_028.png","duration":4939,"publication_date":"2017-05-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-8-word-association","changefreq":"weekly","video":[{"title":"2017:E19 - Sonic Adventure 2, #8 - Word Association","description":"Kyle and Miles are finally, FINALLY reaching the end of the Dark Story. Hopefully Miles gets his spine popped back in place so they can finish this one right.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-8-word-association","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bf7962e-5e37-4a84-857d-ddd7976278b6/sm/2013912-1495834004327-BC_SANIC_THUMB_PT8.png","duration":2810,"publication_date":"2017-05-26T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-18","changefreq":"weekly","video":[{"title":"2017:E18 - The Last Ringling Circus","description":"Olga left her small Russian village at the age of 14 to join the travelling circus, and at 16 was brought to America to perform in the Ringling Circus' Greatest Show On Earth! Burnie and Olga go to the last show, and she gives us a snapshot of life in rural Russia, moving to America and becoming a \"YouTuber\".","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7159444c-f3fe-46f2-b958-b09b324fa102/sm/2013912-1495745391956-Vlog_18_Last_Circus_Thumbnail.png","duration":807,"publication_date":"2017-05-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-31-nsify3","changefreq":"weekly","video":[{"title":"2017:E19 - Still Open #31","description":"Join Barbara Dunkelman, Mica Burton, Ashley Jenkins, and Mariel Salcedo as they discuss a question about initiating first kiss on a date.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-31-nsify3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d4b116c-6ce8-4091-bbe2-657f0f0cc630/sm/2013912-1495745087374-AO31_-_PS_-_Thumb.jpg","duration":599,"publication_date":"2017-05-26T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-gus-photoshoot","changefreq":"weekly","video":[{"title":"S7:E44 - Gus' Photoshoot","description":"15% off everything at the RT Store! Use code BBQ15 https://goo.gl/uEzffl\n\nThings get iffy when Chris starts making strange requests to Gus during their photoshoot for the Rooster Teeth Store.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-gus-photoshoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c584c7a2-674f-47d6-a48c-2a5dc36f05f5/sm/2013912-1495761311600-MerchShoot_06c.png","duration":213,"publication_date":"2017-05-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-31-ah8fhjw","changefreq":"weekly","video":[{"title":"2017:E31 - The Accidental Text - #31","description":"Join Barbara Dunkelman, Mica Burton, Ashley Jenkins, and Mariel Salcedo as they discuss sending dirty texts, self-inflicted hair cuts, and a user-submitted question about losing attraction in a partner. This episode is sponsored by Casper (http://bit.ly/2d4iXlI) and MeUndies (http://bit.ly/2oqytsJ)","player_loc":"https://roosterteeth.com/embed/always-open-2017-31-ah8fhjw","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/980a98a0-f2cc-4bed-9619-8b73c8539a92/sm/2013912-1495726379905-AO31_-_Thumb.jpg","duration":3366,"publication_date":"2017-05-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-obstacle-course-training","changefreq":"weekly","video":[{"title":"2017:E60 - Obstacle Course Training","description":"Blaine, Tyler, and Barbara join a daunting exercise class and find out just how hard it is to work out with giant obstacles, javelins, and mud. Thanks to Old Spice for sponsoring, and remember to check out DUOs at this link: http://bit.ly/2pGbqLZ.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-obstacle-course-training","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c15caa8b-706c-4fa4-b776-7f12fac3894b/sm/2013912-1495641893350-DuosPt2_03.png","duration":301,"publication_date":"2017-05-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-430-post-show-ai7jfnm","changefreq":"weekly","video":[{"title":"2017:E21 - It’s For Work! - Podcast #430 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Chris Demarais as they discuss TV resolutions, VR porn, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-430-post-show-ai7jfnm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d433350e-b6a7-4595-a2c6-edd34dd13b9b/sm/2013912-1495639688954-rtp430_-_PS_-_THUMB.jpg","duration":1381,"publication_date":"2017-05-24T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-bon-voyage-party","changefreq":"weekly","video":[{"title":"2017:E59 - Bon Voyage Party","description":"Max decides to throw Patrick a \"Nautical but Nice\" going away party when Patrick moves over to the Events team.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-bon-voyage-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bac14940-7db0-4d9f-b37c-41428516a15b/sm/2013912-1495554036535-PatrickDeparture_02.png","duration":191,"publication_date":"2017-05-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-430-anif3hm","changefreq":"weekly","video":[{"title":"2017:E430 - The Impossible Mission - #430","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Chris Demarais as they discuss RT merch in a strange place, the conception process, beaches, and more on this week's RT Podcast! This episode originally aired on May 22, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj) and MeUndies (http://bit.ly/2aGm9yg)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-430-anif3hm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0477d3b5-5bf1-4b01-aab9-4b83e0ce047e/sm/2013912-1495552535631-rtp430_-_THUMB.jpg","duration":5633,"publication_date":"2017-05-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-8-sfi7yj","changefreq":"weekly","video":[{"title":"S4:E8 - Hannah Hart in: Historic Hauntings","description":"Join Burnie Burns, Barbara Dunkelman, and Hannah Hart as they accept a million dollars to be haunted by historic figures and chug unfinished drinks.\n\nFind more Hannah Hart at @harto or at www.youtube.com/harto","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-8-sfi7yj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e642ad0-de0f-43cb-ac5a-5cb3999df491/sm/2013912-1494878884424-MDB_Hart_04.png","duration":366,"publication_date":"2017-05-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-278-fu6ehj","changefreq":"weekly","video":[{"title":"2017:E278 - Chris Strikes Out","description":"Geoff and Michael watch from afar as Chris tries his best to talk to a group of ladies. It is, to say the least, hard to watch.\n\nAudio from Off Topic podcast #25\n\nDirected by Jordan CwierzAnimated by Tanya Fetzer","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-278-fu6ehj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f65e60f4-bea2-4d56-b45d-c17387267c2f/sm/2013912-1495232387290-rtaa278tn.jpg","duration":76,"publication_date":"2017-05-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-98-a8f73hj","changefreq":"weekly","video":[{"title":"S8:E18 - For the Win #98","description":"Emus are awesome. End of story.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-98-a8f73hj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64637fda-d439-4a57-ab4b-2d9e02f4372c/sm/690915-1495301891324-ots_98ps_thumb.jpg","duration":796,"publication_date":"2017-05-21T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-8-28-gysl","changefreq":"weekly","video":[{"title":"S15:E8 - Episode 8: A Fistful of Colours","description":"It’s all been leading to this. On a desert planet in the middle of nowhere, the Reds and Blues find themselves face to face with the truth of their colorful imposters. The truth is revealed, and it's something they never saw coming.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-8-28-gysl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d7a80f5-6995-46a2-9e65-7a66bce356d3/sm/2013912-1494441805403-RvB15Ep08Thumbnail.jpg","duration":713,"publication_date":"2017-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-98-suf6jg","changefreq":"weekly","video":[{"title":"S8:E98 - KNIVES AND SEX - #98","description":"This season we have learned a lot of things. Mostly that swords and knives are fun and that it is really easy to buy sex from Jeremy Dooley.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-98-suf6jg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53c5bfe5-79eb-47ea-bc8b-64d4d63000f3/sm/690915-1495301617609-ots_98_thumb.jpg","duration":2858,"publication_date":"2017-05-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-2-f83hkg","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2 - Geist Buster","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-2-f83hkg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74a5c876-37d9-4462-bec8-66c1b68a32ed/sm/2013912-1495222358033-RWBYChibiEp02Thumbnail.jpg","duration":188,"publication_date":"2017-05-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-27","changefreq":"weekly","video":[{"title":"2017:E27 - Kitties & Tiddies - #27","description":"Join Kerry, Gray, Miles, Cole, Yssa, and special guest Lindsay Jones as they discuss anime recommendations, the latest episodes of Attack on Titan and Shirobako, and more this week on Fan Service! Submit your questions for the Community Service segment at http://bit.ly/2nJ61Ba.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef8409a6-c5f8-4d76-b03f-df6a367f1298/sm/2013912-1495226028473-fanservice_027.png","duration":5720,"publication_date":"2017-05-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-7-no-one-between-us","changefreq":"weekly","video":[{"title":"2017:E18 - Sonic Adventure 2, #7 - No One Between Us","description":"Kyle and Miles are tearing through the Dark Story, gush about the big news from Sonic Forces, and find the Wal Mart of military bases but when it looks like everything is going so well they decide to sing a duet and blow their load early. Maybe they were too excited after they found a picture of Sonic's original girlfriend Madonna.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-7-no-one-between-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b30cb55b-3f98-4d83-90d5-b72f7d8b058f/sm/2013912-1495222706295-BC_SANIC_THUMB_PT7.png","duration":4068,"publication_date":"2017-05-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-30-shfuyg","changefreq":"weekly","video":[{"title":"2017:E18 - Still Open #30","description":"Join Barbara Dunkelman, Burnie Burns, Bethany Feinstein, and Mariel Salcedo as they discuss their worst first impressions.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-30-shfuyg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a0a0fad-c3e2-48f4-ad77-18b7eb37d819/sm/2013912-1495207484269-AO30_-_PS_-_Thumb.jpg","duration":817,"publication_date":"2017-05-19T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-17","changefreq":"weekly","video":[{"title":"2017:E17 - How I Stay Motivated","description":"Burnie moves to LA to refocus, and to stay motivated in his creative endeavours.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efd5ff65-82c1-418b-b10a-f692c1df9f48/sm/2013912-1495136815586-BurnieVlog_17_Motivated_Thumbnail.png","duration":593,"publication_date":"2017-05-18T19:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-30-a7r3j7f","changefreq":"weekly","video":[{"title":"2017:E30 - Burnie Wasn't Invited - #30","description":"Join Barbara Dunkelman, Burnie Burns, Bethany Feinstein, and Mariel Salcedo as they discuss a dreamer's confessional, what they'd do if they were invisible, and a user-submitted question about smoking! This episode is sponsored by Boll and Branch (http://bit.ly/2qasJo9) and Lyft (http://lft.to/2k09gCG)","player_loc":"https://roosterteeth.com/embed/always-open-2017-30-a7r3j7f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d725881-4fce-444f-a9b2-7c00d8c1dce4/sm/2013912-1495128346942-AO30_-_Thumb.jpg","duration":3096,"publication_date":"2017-05-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-4-an7a22","changefreq":"weekly","video":[{"title":"2017:E4 - Kinda Funny Honeys - #4","description":"On This month's Relationship Goals, Griffon and Geoff explore the romantic inner-workings of professional relationships with Tim Gettys and Nick Scarpino from Kinda Funny!","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-4-an7a22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/362ba900-d541-4941-974c-7ef36c7dca2d/sm/2013912-1495050729257-RG04_-_THUMB.jpg","duration":4311,"publication_date":"2017-05-18T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-mini-segway-skills","changefreq":"weekly","video":[{"title":"2017:E57 - Mini Segway Skills","description":"Patrick decides to test Max's skills on Burnie's mini segway, and Max takes to it surprisingly well.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-mini-segway-skills","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7e77f7f-c97f-40bc-8b7c-cd50be8e6f61/sm/2013912-1494959888118-segway_thumb.png","duration":117,"publication_date":"2017-05-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-429-post-show-a297ht","changefreq":"weekly","video":[{"title":"2017:E20 - Burnie The Tornado - Podcast #429 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss American currency, people they’ve known longest, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-429-post-show-a297ht","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa6f8905-a8bc-4177-87a8-9c595657821f/sm/2013912-1495034834888-rtp429_-_PS_-_THUMB.jpg","duration":865,"publication_date":"2017-05-17T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-let-s-play-live-busch-gardens-adventure","changefreq":"weekly","video":[{"title":"2017:E56 - Let's Play Live Busch Gardens Adventure","description":"On one of their few free days during the Let's Play Live tour, Achievement Hunter and Funhaus visit Busch Gardens. Roller coasters, carnival games, and lots of sun.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-let-s-play-live-busch-gardens-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e88a6fd5-2c9d-45dc-8269-5ec2c7360fca/sm/2013912-1494875617906-BuschGargens_04.png","duration":224,"publication_date":"2017-05-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-429-sfj873","changefreq":"weekly","video":[{"title":"2017:E429 - Gavin’s Golden Bathroom Rule - #429","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss toilet paper, what constitutes a drink, pronunciations, and more on this week's RT Podcast! This episode originally aired on May 15, 2017, sponsored by Casper (http://bit.ly/2bgC0nt) and NatureBox (http://bit.ly/2n25cac)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-429-sfj873","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03f2818d-4788-4011-af15-b45f67c737f4/sm/2013912-1494948321178-rtp429_-_THUMB.jpg","duration":5718,"publication_date":"2017-05-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-7-jg9yukg","changefreq":"weekly","video":[{"title":"S4:E7 - Phil DeFranco in Screaming Food","description":"Will Gavin Free, Burnie Burns, and special guest Phil DeFranco take a million bucks if their food is constantly screaming at them? Find out in this episode of Million Dollars, But...\n\nYou can find more Phil DeFranco at this link: https://www.youtube.com/user/sxephil","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-7-jg9yukg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a22bb4d-9430-4a54-beec-8a734a838408/sm/2013912-1494871200532-MDB_DeFranco_05b_1.png","duration":301,"publication_date":"2017-05-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-277-ai7feh","changefreq":"weekly","video":[{"title":"2017:E277 - Gavin and the Annoying German","description":"Sitting next to an annoying person on a plane is never fun. But when that guy is fat and German and does gross stuff next to Gavin, then it's hilarious.\n\n\n\n\n\nAudio from RT Podcast #374\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Tanya Fetzer","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-277-ai7feh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e137c83c-44d6-4cab-a9c1-9e1defdcf2ab/sm/2013912-1494626959857-rtaa277tn.jpg","duration":86,"publication_date":"2017-05-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-97-83-hgl8","changefreq":"weekly","video":[{"title":"S8:E17 - For the Win #97","description":" Chris & Blaine do a Jason Statham impression and Griffon reboots Barney while Geoff fixes a bell.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-97-83-hgl8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2af99bdd-5210-4e42-b09e-78c1ffce0a01/sm/2369885-1494698003582-ots_97ps_thumb.jpg","duration":629,"publication_date":"2017-05-14T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-7-hw87gh","changefreq":"weekly","video":[{"title":"S15:E7 - Episode 7: Nightmare on Planet Evil","description":"On the search for Church, the Reds and Blues face their deepest fears in a haunted city.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-7-hw87gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e28481f-f5fc-42d8-b7af-592f4c2e2571/sm/2013912-1494000497846-RvB15Ep07Thumbnail.jpg","duration":651,"publication_date":"2017-05-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-97-j87rehjf","changefreq":"weekly","video":[{"title":"S8:E97 - GEOFF RAMSEY RETURNS! - #97","description":"In this episode, not only does Griffon Ramsey teach us how to open a champagne bottle but we also learn about ax safety, child birth and how Geoff feels about being a fashion icon.\n\n\n\n\n\nBrought to you by MVMT Watches http://bit.ly/2fN1Otc","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-97-j87rehjf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd818033-8f17-4f90-a0be-513278c3627a/sm/2369885-1494697664488-ots_97_thumb.jpg","duration":3180,"publication_date":"2017-05-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-2-1-fhs8yg","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 1 - Director Ozpin","description":"RWBY Chibi is back for a second season of crazy hijinks! More characters! More puns! More RWBY!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-2-1-fhs8yg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad63c1a9-66f5-4bf4-8447-1fb85285ad4a/sm/2013912-1494537971355-RWBYChibiEp01Thumbnail.jpg","duration":226,"publication_date":"2017-05-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-26","changefreq":"weekly","video":[{"title":"2017:E26 - You’re Not You When You’re Hungry - #26","description":"Join Kerry, Gray, Miles, Cole, Yssa, and special guests Dustin Matthews and Tanya Fetzer as they discuss gory anime, Attack on Titan, Shirobako, and more this week on Fan Service! Submit your questions for the Community Service segment at http://bit.ly/2nJ61Ba.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61796728-659e-47d0-bfef-206d0b9d8321/sm/2013912-1494633469413-fanservice_026.png","duration":5570,"publication_date":"2017-05-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-6","changefreq":"weekly","video":[{"title":"2017:E17 - Sonic Adventure 2, #6 - Who are all these people?","description":"Kyle and Miles are joined by Crunchyroll's Victoria Holden aka @SailorBee aka Shadow's gf 4 life and she brought a whole entourage of people with her.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3866ee66-fbed-430d-82e1-0ccc5c9c3f7d/sm/2013912-1494608382495-BC_SANIC_THUMB_PT6.png","duration":3383,"publication_date":"2017-05-12T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-29-hfuymdf","changefreq":"weekly","video":[{"title":"2017:E17 - Still Open #29","description":"Join Barbara Dunkelman, Tyler Coe, Lindsay Jones, and Mariel Salcedo as they discuss Fyre Festival.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-29-hfuymdf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4497acca-8d2e-4b83-a93d-dd4b2da43895/sm/2013912-1494516975316-AO29_-_PS_-_Thumb.jpg","duration":818,"publication_date":"2017-05-12T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-16","changefreq":"weekly","video":[{"title":"2017:E16 - New Assistant and a Cheese Dinner","description":"With \"outdoorsy\" as his only instruction, Burnie designs a wooden desk for his assistant, Ellie. After Travis builds and installs his creation, Ellie and Max take it to the left level. Meanwhile in NY, Burnie, Gavin and Dan celebrate Slow Mo Guys.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d034020f-baa9-4b89-a347-b1bd3fb3ff67/sm/2013912-1494523046039-Vlog_5-12-2017_Desk_16_Thumbnail.png","duration":672,"publication_date":"2017-05-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-29-ahif37i","changefreq":"weekly","video":[{"title":"2017:E29 - Tyler's Tiny Secret - #29","description":"Join Barbara Dunkelman, Tyler Coe, Lindsay Jones, and Mariel Salcedo as they discuss superstitions, a Roast and Toast of Barbara, and a user-submitted question about picking up on signs of flirting. This episode is sponsored by 1-800-Flowers (http://bit.ly/2jwIWEx) and MVMT Watches (http://bit.ly/2g6rLUx)\n\nOur sponsors at 1-800-Flowers have an amazing Mother’s Day bouquet deal. Get 24 Multicolored Roses for ONLY $24! For a bouquet Mom’s guaranteed to love, go to 1800Flowers.com/alwaysopen.","player_loc":"https://roosterteeth.com/embed/always-open-2017-29-ahif37i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e05220b2-dde1-48a8-8b7e-ba02dd0f002d/sm/2013912-1494441841571-AO29_-_Thumb.jpg","duration":3547,"publication_date":"2017-05-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-spray-painting-space","changefreq":"weekly","video":[{"title":"2017:E54 - Spray Painting Space","description":"In an effort to test his skills and enjoy a quick 30 minute break, art-wizard Marcus attempts his first painting with spray paint and materials from around the shop.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-spray-painting-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/898cb4ea-7db5-402f-b1eb-d8c5b947362c/sm/2013912-1494430153147-Speedpaint_05.png","duration":120,"publication_date":"2017-05-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-428-post-show-af97jb","changefreq":"weekly","video":[{"title":"2017:E19 - Darth Millennial - Podcast #428 Post Show","description":"Join Brandon Farmahini, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the Skywalkers, dude with two dicks, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-428-post-show-af97jb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05dc86d8-99e7-4cac-8f9d-1129174aef52/sm/2013912-1494352950656-rtp428_-_PS_-_THUMB.jpg","duration":967,"publication_date":"2017-05-10T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-diving-into-1000-mousetraps-in-4-k-slow-motion","changefreq":"weekly","video":[{"title":"S1:E77 - Diving into 1000 Mousetraps in 4K Slow Motion","description":"Gav and Dan spend 4 hours setting up 1000 mouse traps and then 4 seconds setting them all off. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-diving-into-1000-mousetraps-in-4-k-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76bf7bfd-49c4-4882-8ca2-5af8711d7709/sm/82-1494428058910-Screen_Shot_2017-05-10_at_00.09.46.jpg","duration":380,"publication_date":"2017-05-10T07:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-textbook-trivia","changefreq":"weekly","video":[{"title":"2017:E53 - Textbook Trivia","description":"Becca takes to the Rooster Teeth offices with some middle school textbooks to see how her coworkers would perform if they were sent back to school.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-textbook-trivia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41b09345-6f8a-4f4c-8eff-ac0cd5ca67c0/sm/2013912-1494280893810-Trivia_06.png","duration":195,"publication_date":"2017-05-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-428-al8fkjg","changefreq":"weekly","video":[{"title":"2017:E428 - Johnny Depth - #428","description":"Join Brandon Farmahini, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Gavin’s accent, the Panama Canal, flirting, and more on this week's RT Podcast! This episode originally aired on May 8, 2017, sponsored by ProFlowers (http://bit.ly/2kI2inb), Shari’s Berries (http://bit.ly/2gjcsXO), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-428-al8fkjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/630f83b5-f29b-46b4-8ac3-5acff8927b7c/sm/2013912-1494351559135-rtp428_-_THUMB.jpg","duration":5466,"publication_date":"2017-05-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-6-pu9s7gh","changefreq":"weekly","video":[{"title":"S4:E6 - Jessica Nigri in: Crashing Through Ceilings","description":"Join Barbara Dunkelman, Blaine Gibson, and special guest Jessica Nigri as they crash through ceilings and vibrate on while trying to eat food.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-6-pu9s7gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4552a71e-e59d-45e7-afa5-86a6b3478af1/sm/2013912-1494279358434-Nigri_13.png","duration":332,"publication_date":"2017-05-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-276-n08dgh","changefreq":"weekly","video":[{"title":"2017:E276 - Roombas With Guns, Sharpies in Butts","description":"The Off Topic guys ponder the big questions in life, like \"What would happen if you strapped a gun to a roomba?\", \"How was Rooster Teeth Started?\", and \"Is Geoff gay??\" Find out the answers!\n\n\n\n\n\nAudio from Off Topic podcast #31 and Off Topic podcast #18\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gabriel Silva, Andrew Lhotsky, & Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-276-n08dgh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ce00bb2-d585-4bd3-9bce-85b16cf70688/sm/2013912-1494000774141-rtaa276tn.jpg","duration":78,"publication_date":"2017-05-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-96-uj3t7f","changefreq":"weekly","video":[{"title":"S8:E16 - For the Win #96","description":"Drugs are bad.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-96-uj3t7f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0bc043c-7fe6-4d32-b71c-6a3ca0d614ed/sm/2013912-1494094136220-ots_96ps_thumb.jpg","duration":525,"publication_date":"2017-05-07T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-6-s8gj49","changefreq":"weekly","video":[{"title":"S15:E6 - Episode 6: Reacts","description":"The message sent by Kimbal spurs the Reds and Blues into immediate action. Tucker and Caboose leap to the rescue, while Carolina and Washington urge caution and patience. Meanwhile, Red Team gets weird.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-6-s8gj49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2448e67e-7239-4ff9-a8e0-6f376ae9216f/sm/2013912-1493934267140-RvB15EP06Thumbnail.png","duration":615,"publication_date":"2017-05-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-96-h8gk7e","changefreq":"weekly","video":[{"title":"S8:E96 - MOTHER'S DAY BEER CAM - #96","description":"In honor of the upcoming Mother's Day holiday we give each other flowers, drink beer and talk about SIDS. As usual.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-96-h8gk7e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd188901-ae9b-4a42-be2c-4f659adbc40c/sm/690915-1494081867299-ots_96_thumb.jpg","duration":2902,"publication_date":"2017-05-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-mario-kart-8","changefreq":"weekly","video":[{"title":"2017:E3 - Mario Kart 8 Deluxe","description":"Adam, Cole, Gus and Miles fight technical problems, each other, and a bunch of COM players to determine who will emerge victorious. Someone actually breaks their controller in a rage during this Let's Play, watch the video to find out why!","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-mario-kart-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94df6875-de7e-48a7-92c3-6c4f27f27c8f/sm/2013912-1493997714693-mk8d.jpg","duration":3404,"publication_date":"2017-05-06T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-25","changefreq":"weekly","video":[{"title":"2017:E25 - No Shirt, No Shoes, No Fan Service - #25","description":"Join Kerry, Gray, Miles, Cole, Yssa, and Crunchyroll’s Victoria Holden as they discuss My Hero Academia, Attack on Titan, Shirobako, and more this week on Fan Service! Submit your questions for the Community Service segment at http://bit.ly/2nJ61Ba.\n\n\n\nWant to see more of Victoria? Check out Crunchycast on VRV! - http://bit.ly/2qJOQlD","player_loc":"https://roosterteeth.com/embed/fan-service-2017-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d702bddf-0960-49cd-807d-4902928ba291/sm/2013912-1494003592489-fanservice_025.png","duration":5295,"publication_date":"2017-05-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-5","changefreq":"weekly","video":[{"title":"2017:E16 - Sonic Adventure 2, #5 - The Dark Side","description":"Kyle and Miles have one Final Rush before they can play the Dark Story but standing between them and glory is the Edge Lord himself Shadow. Can Kyle and Miles defeat the embodiment of cool? Will Damian grow up to be a well adjusted Chao? What does a hedgehog penis look like? All of this and more will be answered in this episode of Backwardz Compatible.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3c8caba-7f1e-4e79-b55b-70b2f1c9544e/sm/2013912-1494013728503-BC_SANIC_THUMB_PT5.png","duration":3813,"publication_date":"2017-05-05T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-28-h86fgh","changefreq":"weekly","video":[{"title":"2017:E16 - Still Open #28","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Hannah Hart, as they discuss if they have ever gone skinny dipping.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-28-h86fgh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a24f60bf-b04d-4b1e-9b0a-36e91a890fa6/sm/2013912-1493997516481-AO27_-_PS_-_Thumb_4.jpg","duration":632,"publication_date":"2017-05-05T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-15","changefreq":"weekly","video":[{"title":"2017:E15 - San Francisco \"High-End\" Weed Dinner","description":"Since the legalization of Marijuana in California a culture of 'haute' Cannabis has begun to emerge. When invited to a Cannabis infused private dinner in San Francisco, Burnie decides to make a weekend of it to celebrate Ashley's birthday! Music: \"Jamming with Jay\" MellowStu / \"Jazz Man\" MellowStu / \"Mowtown Funk and Soul Bliss Bed Mix\" Chezgroove","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46142de4-2ad4-421c-9ef8-90bba2c6769b/sm/2013912-1493915041130-Burnie_Vlog_15_Thumbnail.png","duration":653,"publication_date":"2017-05-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-28-js86fh","changefreq":"weekly","video":[{"title":"2017:E28 - Hannah Hart and the Shameless Plugs - #28","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Hannah Hart as they discuss dating site stigmas, their worst day at a job, and body image anxiety on this week’s Always Open.\n\nThis episode is sponsored by 1-800-Flowers (http://bit.ly/2jwIWEx) and HelloFresh (http://bit.ly/2dpEq8M)\n\n\n\n\n\n\n\n\n\n\n\n\n\nBuffering Book available at: bufferingbook.com\n\n\n\n\n\n\n\n\n\n\n\n\n\nOur sponsors at 1-800-Flowers have an amazing Mother’s Day bouquet deal. Get 24 Multicolored Roses for ONLY $24! For a bouquet Mom’s guaranteed to love, go to 1800Flowers.com/alwaysopen","player_loc":"https://roosterteeth.com/embed/always-open-2017-28-js86fh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb4932e2-a2a6-4a0e-b87d-332fb7884935/sm/2013912-1493911156839-AO27_-_Thumb_1.jpg","duration":3182,"publication_date":"2017-05-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-rupert","changefreq":"weekly","video":[{"title":"2017:E51 - Rupert Meets His Father","description":"Rupert the dachshund reunites with his father, and we meet the many dogs of Rooster Teeth animation.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-rupert","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38e15161-9c68-464e-b9fa-31bce3a090ec/sm/2013912-1493825110838-Rupert_05_1.png","duration":155,"publication_date":"2017-05-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-427-post-show","changefreq":"weekly","video":[{"title":"2017:E18 - Slurp Slurp - Podcast #427 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Becca Frasier as they discuss brunch, cloned genitalia, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-427-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2455fda0-81b8-4544-a4f5-a42ed8334e3b/sm/2013912-1493750338478-rtp427_-_PS_-_THUMB.jpg","duration":1475,"publication_date":"2017-05-03T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-427-sgrt5h","changefreq":"weekly","video":[{"title":"2017:E427 - Nature’s Gross - #427","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Becca Frasier as they discuss Fyre Festival, disgusting things in nature, rideshares, and more on this week's RT Podcast! This episode originally aired on May 1, 2017, sponsored by MeUndies (http://bit.ly/2aGm9yg), ProFlowers (http://bit.ly/2kI2inb), Shari’s Berries (http://bit.ly/2gjcsXO).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-427-sgrt5h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf681e7b-7b00-49c9-925d-1965762d3c00/sm/2013912-1493741485370-rtp427_-_THUMB.jpg","duration":5660,"publication_date":"2017-05-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-5-j9ugkf","changefreq":"weekly","video":[{"title":"S4:E5 - 80's Flashback","description":"Join Barbara, Blaine, and Jon in a radical and totally tubular 80's themed episode of Million Dollars, But...! Cowabunga dudes!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-5-j9ugkf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0e36314-0595-481f-b703-7f23b9b94814/sm/2013912-1493664015887-MDB_80s_02c_1.png","duration":316,"publication_date":"2017-05-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-275-f8ebkf8","changefreq":"weekly","video":[{"title":"2017:E275 - Gus' Sharkdanko Interview","description":"During the interview for his global entry or whatever, Gus finds himself in an odd office with an odd government official who likes movies.\n\n\n\n\n\n\n\nAudio from Rooster Teeth Podcast #390\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gil Calceta","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-275-f8ebkf8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0497c8b1-6434-4059-b452-83b116dd187e/sm/2013912-1493321662709-rtaa275tn.jpg","duration":123,"publication_date":"2017-05-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-95-ajifhj3","changefreq":"weekly","video":[{"title":"S8:E15 - For the Win #95","description":"Aaron & Chris got a stab at hosting. Why not let Andy & Trevor try their hand at the desk?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-95-ajifhj3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53908b5b-638e-4031-901f-c58dbc008dd6/sm/2013912-1493439573733-ots_95ps_thumb.jpg","duration":863,"publication_date":"2017-04-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-5-a84jh9","changefreq":"weekly","video":[{"title":"S15:E5 - Episode 5: Previously On","description":"Investigative Journalist Dylan Andrews sits down with the notorious Reds and Blues to finally hear the full story of their actions since Chorus.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-5-a84jh9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f9cdb98-b951-45bf-ab24-52947c02a417/sm/2013912-1493321399747-RvB15Ep05Thumbnail.jpg","duration":665,"publication_date":"2017-04-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-95-ha86ggw","changefreq":"weekly","video":[{"title":"S8:E95 - NEW HOST AUDITIONS - #95","description":"Turns out just giving in and letting other people take a shot at hosting the show is a lot easier for Jon than trying to get them to do what he wants the usual way.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-95-ha86ggw","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166d7d58-9ceb-4485-abfc-e85696342e31/sm/2013912-1493439446102-ots_95_thumb.jpg","duration":2291,"publication_date":"2017-04-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-7","changefreq":"weekly","video":[{"title":"2017:E7 - Why Do Video Game Movies Suck? - #7","description":"With Assassin's Creed & Warcraft keeping the curse alive that all video game movies have to be bad, will we ever see a good video game movie? Should filmmakers keep trying or let it rest?","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3fb1261-b9a5-4f19-9572-bbc0a4be1031/sm/2013912-1493439285234-ets_know01.jpg","duration":2992,"publication_date":"2017-04-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-2","changefreq":"weekly","video":[{"title":"2017:E2 - Rainbow Six Siege","description":"Blaine, Burnie, Chris, Gus and Jon test their mettle against strict NAT types and terrorists. They can defeat only one....which will it be?","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7d5a02a-d9e9-421e-b62a-55991b869cc9/sm/2013912-1493404363796-thumbnail_final.jpg","duration":3730,"publication_date":"2017-04-29T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-24-sf973h","changefreq":"weekly","video":[{"title":"2017:E24 - Welcome to the Bone Zone - #24","description":"Join Kerry, Gray, Miles, Cole, Yssa, and and special guest Reina Scully (http://bit.ly/2qgwOad) as they discuss Dragon Ball Z, Case Closed, Attack on Titan, Shirobako, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-24-sf973h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfead556-c274-460e-923f-4e9f1933a29a/sm/2013912-1493404839232-fanservice_024.png","duration":5772,"publication_date":"2017-04-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-4-rage-so-hard","changefreq":"weekly","video":[{"title":"2017:E15 - Sonic Adventure 2, #4 - Rage So Hard","description":"Kyle and Miles start this week off right with a big ol' boss battle. They're getting close to the end of the Hero story and the pressure is high. Sometimes when the pressure is that high and you fail it's frustrating. Sometimes frustration turns into rage. Sometimes that rage then erupts violently on poor unsuspecting water bottles. What does all of this mean? Just watch to find out.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-4-rage-so-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/218f8540-32cb-45d6-bf88-c25d5ce059d3/sm/2013912-1493234103044-BC_SANIC_THUMB_PT4.png","duration":4141,"publication_date":"2017-04-28T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-14","changefreq":"weekly","video":[{"title":"2017:E14 - How Does Rooster Teeth Make Money?","description":"Rooster Teeth Execs, Burnie, Matt and Ezra, explain the business' 5 part model: ad revenue, subscriptions, licensed content, events and merchandise.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c218dab2-6e42-46b6-b0d1-0c640f0e276b/sm/2013912-1493395073555-Burnie_Vlog_14_Biz_Thumbnail.png","duration":787,"publication_date":"2017-04-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-27-ahfg3j","changefreq":"weekly","video":[{"title":"2017:E15 - Still Open #27","description":"Join Barbara Dunkelman, Mariel Salcedo, and special guests Nick Scarpino and Tim Gettys as they discuss the worst road rage they've ever experienced.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-27-ahfg3j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89bfb22c-f92b-467a-b87c-6b69ba6242ce/sm/2013912-1493392694976-AO27_-_PS_THumb_4.jpg","duration":972,"publication_date":"2017-04-28T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-docs-haus-of-pain-haus-of-pain","changefreq":"weekly","video":[{"title":"HOP:E2 - Haus of Pain","description":"Rooster Teeth’s James Willems plays video games for a living, but he still harbors an unfulfilled childhood dream: to become a pro wrestler. That all changes when James teams up with friend and co-worker Lawrence Sonntag to enroll in a Los Angeles wrestling school, create wrestling personas (“James Angel” and “The Troll”), and train for a tag team match against a pair of vicious pro wrestlers known as “HATE.” How far will James and Lawrence push themselves to achieve James’s dream? Do they have what it takes to wrestle a pro team and not get killed?","player_loc":"https://roosterteeth.com/embed/rt-docs-haus-of-pain-haus-of-pain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a0a2d44-9853-4088-9d4f-4270f20d3340/sm/2013912-1493306711955-RTDocs_HAUS_OF_PAIN_v5.png","duration":3486,"publication_date":"2017-04-28T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-guess-rahul-1","changefreq":"weekly","video":[{"title":"2017:E141 - CELEBRITY STALKER - Gmod Guess Who Gameplay","description":"I mean, what is \"stalking\" anyway, right? Some people collect shot glasses or decorative plates, I collect my ex-girlfriend's discarded cosmetics and shampoo bottles so that my apartment always smells like her. Who's to judge?  Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttps://twitter.com/RahulKohli13\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-guess-rahul-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebaf44eb-a738-4160-a1ab-f0bcfe94677a/sm/2371242-1496428233693-FH_Thumb_15_copy_16.jpg","duration":595,"publication_date":"2017-06-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-trailer-show-3","changefreq":"weekly","video":[{"title":"2017:E139 - HOW TO GET PREGNANT - Trailer Show","description":"Look Who's Talking: \"Hey guys, I've got a great idea for an original take on the romantic comedy!\"Look Who's Talking Too: \"Another one? Huh. Okay. How about there's another baby and the first baby tries to learn how to use the toilet?\" Look Who's Talking Now!: \"Aw f*** it. Just get me a couple of dogs.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-trailer-show-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78bbd474-defe-4b69-9aca-107ba01cee4d/sm/2371242-1496427652123-FH_Thumb_15_copy_19.jpg","duration":735,"publication_date":"2017-06-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-dogalrax","changefreq":"weekly","video":[{"title":"2017:E140 - SPACE INVADE HER - Dogolrax Gameplay","description":"Aah. Games like this remind me of simpler times. Gas was cheap, a SANE sexual predator sat in the White House, and we reveled in the anticipation of spending an hour downloading a single nude picture of peak Pamela Anderson.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-dogalrax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eac24720-c39a-49c9-ba0f-677c62622341/sm/2371242-1496336375518-FH_Thumb_15_copy_17.jpg","duration":1084,"publication_date":"2017-06-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwflash","changefreq":"weekly","video":[{"title":"2017:E142 - HEROINE CHIC - Wonder Woman Flash Games Gameplay","description":"Maybe if women want to make more than 77% of what men do, they should be pleasant more than 77% of the time. Crack a smile, ladies. Just sayin'.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwflash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b567d46-4251-4b40-8808-ba34de4758cc/sm/2371242-1496336016348-FH_Thumb_15_copy_18.jpg","duration":618,"publication_date":"2017-06-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments73","changefreq":"weekly","video":[{"title":"2017:E73 - BECOME A YOUTUBER! - Funhaus Comments #73","description":"A blind woman once accidentally grazed Matt Peake's bare calf while sitting down on a park bench. Her eyesight returned instantly. Well, she's like 20/60 now. She can't drive at night or anything but it's still pretty cool.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5537837-6d7d-4c5d-bf30-b21057cf2384/sm/2371242-1496348550957-FH_Thumb_Template73.jpg","duration":705,"publication_date":"2017-06-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-tekkentag","changefreq":"weekly","video":[{"title":"2017:E138 - SHOW NO MERCY - Tekken 7 Gameplay","description":"Thanks again to Bandai Namco Tekken 7 for partnering with us for this video. Check out the link for more - http://bit.ly/2qooVSh\n\n\n\n\n\n\n\n\n\n\n\n\n\nINT - Dave and Busters - 8:57PM\"Sorry Mr. Casanova, but we really need to close up now. The cleaning crew is waiting.\"\"Wha- oh yeah, sure thing. Lemme just finish this last round.\"\"But that's what you said three rounds ago.\"Don slowly turns towards the waiter. His eyes are shimmering pools of silver liquid. As he opens his mouth, the deafening shriek of a thousand dial-up modems erupts from within. A moment later, the manager arrives to drag the lifeless body away to join the others, but not before dutifully laying another Power Card at Don's feet.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/thenasacovahttp://twitter.com/mattseditbayhttp://twitter.com/omarcitohttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttps://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-tekkentag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4724feaf-a29c-4ead-9d3b-cf0340e73ded/sm/2371242-1496273372422-FH_Thumb_15_copy_7.jpg","duration":1648,"publication_date":"2017-06-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-co-op-mc-drug-deliveries-pt-1","changefreq":"weekly","video":[{"title":"2017:E136 - INVINCIBLE CAR - GTA 5 Gameplay","description":"For all its critical praise over the course of seven seasons, Sons of Anarchy never once had the stones to devote an entire episode to delivering counterfeit documents on the back of a golf cart. We're here if you need us, FX.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-co-op-mc-drug-deliveries-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e69924b8-ac79-4dad-b7a2-596e57f37739/sm/1533704-1496183413620-FH_Thumb_15_copy_6.jpg","duration":808,"publication_date":"2017-05-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-f-h-g-t-a-deathwish","changefreq":"weekly","video":[{"title":"2017:E137 - RACE TO THE GRAVE - GTA 5 Gameplay","description":"When asked recently how he felt about giving up the role of Wolverine in X-Men in order to focus on Mission Impossible 2, Dougray Scott became so upset he nearly dropped the \"Discount Mattresses\" sign he was twirling right into a storm drain.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/adamkovicTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-f-h-g-t-a-deathwish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ccaea98-cd8c-4738-a23a-09ea5f07e434/sm/2371242-1496196328225-FH_Thumb_15_copy_14.jpg","duration":611,"publication_date":"2017-05-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-post-show124","changefreq":"weekly","video":[{"title":"2017:E124 - WE ARE MANLY","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-post-show124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/546515c5-c710-48c9-bc12-4ab1227f03a7/sm/2371242-1495830449369-DS_PostShow_Template124.png","duration":2000,"publication_date":"2017-05-30T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup124","changefreq":"weekly","video":[{"title":"2017:E124 - OVERWATCH LOOT BOXES A SCAM? - Dude Soup Podcast #124","description":"Go to http://www.mackweldon.com/ and get 20% off using promo code “soup”\n\nAnd get 15% off with free shipping and free returns by going to http://www.mvmt.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the gang talks about Overwatch's first birthday and the controversy around the accessibility to loot as well as:29:00 - New streaming services and chat room etiquette45:00 - The return of Seaman!51:45 - The upcoming Castlevania cartoon54:10 - A beefy new episode of Hard Nettin' \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Forbes] There Are Not Enough Hours In The Day To Grind For 'Overwatch' Anniversary Skins: https://www.forbes.com/sites/insertcoin/2017/05/24/there-are-not-enough-hours-in-the-day-to-grind-for-overwatch-anniversary-skins/#762822397628[Mixer] https://mixer.com/[Twitch] Moar Cheermotes, out now! https://blog.twitch.tv/moar-cheermotes-out-now-b7644b3f6af6[Twitter] Yoot Saito: https://twitter.com/YootSaito/status/867735378223964160[YouTube] Castlevania Teaser: \n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN: Game Girl Power - https://www.youtube.com/channel/UCuObd7z63vWt2oWSj-s0_EA/feed\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d67b8d12-db5f-4ff3-9462-b215acc0cca4/sm/2371242-1495845535178-FH_Thumb_15_copy_13.jpg","duration":3887,"publication_date":"2017-05-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-prey-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E20 - Prey Gameplay","description":"If the unedited friendship between Steven and Lawrence can survive this video, anything is possible.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-prey-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29b23231-92ac-4642-a28c-4eca8bd5ae54/sm/1533704-1495844875921-Fullhaus_Thumbnail_Prey.jpg","duration":4103,"publication_date":"2017-05-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh119","changefreq":"weekly","video":[{"title":"2017:E119 - GODS OF YOUTUBE? - Open Haus #119","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus”.\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nThe most famous person I've ever peed next to was the guy who played Rocky in my community college's production of The Rocky Horror Show. He said \"Hi\" to me and I got nervous and walked away without going.Yes. I've lived quite a life.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4eefc88-0af3-4dd2-b071-f7a3fa3d6474/sm/2371242-1495848156012-Openhaus_Thumbnail119.jpg","duration":836,"publication_date":"2017-05-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd118","changefreq":"weekly","video":[{"title":"2017:E118 - LOW BLOW - Demo Disk Gameplay","description":"A lot of people think it's silly that Mike Tyson get's to star in all these movies and cartoons and one man shows. \"He's just a washed up boxer.\" they say.Not true.He's also a serial wife-beater and convicted rapist.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c70e4a74-91c8-48d4-8f9b-239bf02497bb/sm/2371242-1495846787570-FH_Thumb_15_copy_11.jpg","duration":952,"publication_date":"2017-05-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wildeight2","changefreq":"weekly","video":[{"title":"2017:E135 - CRY WOLF - The Wild Eight Gameplay Part 2","description":"\"Bones, I'm scared. Why are they all yelling at each other so much?\"\"Well Jacob, sometimes when people have been together for a long time, they get upset and need to spend some time apart.\"\"Oh. Is it something I did? Is all this my fault?\"\"Yes Jacob. Yes it is.\" Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wildeight2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/594204a6-8809-498a-aa56-b002da16eeb3/sm/2371242-1495821915259-FH_Thumb_15_copy_6.jpg","duration":942,"publication_date":"2017-05-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sniper4-pt2","changefreq":"weekly","video":[{"title":"2017:E134 - SCROTAL RECALL - Sniper Elite 4 Gameplay Part 2","description":"Some helpful hints from your pals at Funhaus via the Testicular Cancer Awareness Foundation:How to Self-exam:The best time to self-exam is after a warm bath or shower when the scrotal skin is relaxed.Examine each testicle gently with both hands by rolling the testicle between the thumb a forefingers. Find the epididymis, the soft tube-like structure behind the testicle that collects and carries sperm. If you are familiar with this structure, you won't mistake it for an abnormal mass.Look for any lumps or irregularities. Remember that lumps or bumps may also present themselves as painless.Look for any changes in size, shape, or texture. Remember it's normal for one testicle to be slightly larger.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sniper4-pt2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e5f4dde-a4e5-4036-aaca-122690c4010f/sm/2371242-1495821481373-FH_Thumb_15_copy_3.jpg","duration":970,"publication_date":"2017-05-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-ducu","changefreq":"weekly","video":[{"title":"2017:E13 - TOM CRUISE DESTROYS MARVEL? - Movie Podcast","description":"This movie podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday Adam and the gang tackle everything we know about the new Universal \"Dark Universe\" as well as:15:15 - Streaming video services and their impact on film20:00 - Favorite childhood horror movies and the potential future of the \"D.U.C.U.\"27:00 - Trailer and post-credits scenes spoiling films\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-ducu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94f4f9d0-35bf-4174-a69a-6fdc7d9796b5/sm/2371242-1495760934601-FH_Thumb_15_copy_9.jpg","duration":2300,"publication_date":"2017-05-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwf6peake","changefreq":"weekly","video":[{"title":"2017:E133 - LAST MAN STANDING - WWE 2K17 Gameplay","description":"Hey. Remember when our president took a break from selling steaks on TV to become a wrestling villain for a while. That sure is really funny and not depressing or terrifying at all. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwf6peake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c1c230c-1ea2-49cf-a02e-6c6a93863f23/sm/2371242-1495738118624-FH_Thumb_15_copy_4.jpg","duration":1228,"publication_date":"2017-05-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd-30","changefreq":"weekly","video":[{"title":"S3:E30 - Funhaus Dungeons and Dragons - Episode 30","description":"In which a festival of fleshy delights is discovered, Shattercock introduces us to a strange music called \"SKA\", a tale of a galaxy far far away is recounted, and our heroes find themselves on uneasy ground.\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71a75c04-7d70-472a-93f5-e6da1aa77066/sm/2371242-1495758932821-Twits_and_Crits_Logo30.png","duration":3138,"publication_date":"2017-05-26T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-72","changefreq":"weekly","video":[{"title":"2017:E72 - LITTLE BOYS LOVE US? - Funhaus Comments #72","description":"Here's a helpful list of each Funhaus member's official catch-phrase:Adam: \"We live in a world where...\"Peake: \"Skoot! Skoot!\"Bruce: \"There goes the office!\"James: \"What a lovely day for some ham.\"Elyse: \"Did you know Hitler was a vegetarian?\"Lawrence: \"I made a widdle poopie.\"Don: \"I should really get back to editing.\"Dan: \"Kabonga!\" (followed by laugh track)Bones: \"Everything hurts and nobody cares.\"Omar: \"Bender, stop licking that!\"Jon: \"Do what you're told or you go back in the box.\"Jacob: (string of outdated racial slurs that I'm not allowed to type)\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b6a0a2c-b71c-4797-854f-458f8e358599/sm/2371242-1495750648740-FH_Thumb_Template72.jpg","duration":561,"publication_date":"2017-05-25T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-3-volleyball","changefreq":"weekly","video":[{"title":"2017:E1 - FUNHAUS VS STEVEN SEPTIC - Volleyball Battle","description":"Steven is the kind of guys who would offer to pay to watch you pleasure yourself behind a dumpster, then haggle with you over the price after you've finished. I would imagine. I barely know the guy. But seriously, 12 dollars? That's just insulting.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/StevenSuptic\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-3-volleyball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/133e4ff5-711a-4060-ac37-ccce7664f373/sm/2371242-1495741266869-FH_Thumb_15_copy_5.jpg","duration":413,"publication_date":"2017-05-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtatiny2","changefreq":"weekly","video":[{"title":"2017:E132 - BABY DRIVERS - GTA 5 Tiny Racers Gameplay","description":"When I was little I only had enough money to but those knock off toy cars at the flea market. I think they were called \"Hit Wheels\" or \"March-box\" or something. I forget. Either way, the lead paint was delicious.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtatiny2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fadbb43-4ee2-4b62-9277-6556cb044953/sm/2371242-1495560349005-FH_Thumb_15_copy_2.jpg","duration":1283,"publication_date":"2017-05-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtagrotto","changefreq":"weekly","video":[{"title":"2017:E131 - SHOW US YOUR HITS - GTA 5 Gameplay","description":"My lover and I don't tend to get too fancy in the bedroom. We usually just stick to the typical \"Lights out, half-clothed, two holes in two sheets, silent, inverted Barnswallow with subsequent whimpering under the drip of a tepid shower\". You know, the classics.\n\n\n\n\n\n\n\n\n\nDrunken Sexy Grotto Brawl - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/8KxcTbByLEK8_bOP3AkMVA#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtagrotto","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d40eda4-0067-4de9-aa23-38bb880e7f3f/sm/2371242-1495559835935-FH_Thumb_15_copy_1.jpg","duration":810,"publication_date":"2017-05-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-secret-service-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E19 - Secret Service Gameplay","description":"Is an hour long enough for a jacked secret service agent to save our country? Probably not...","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-secret-service-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27ebfc22-368d-4b87-bde3-223c0712fdbb/sm/1533704-1495560235368-Fullhaus_Thumbnail_Secret_Service.jpg","duration":3971,"publication_date":"2017-05-23T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow123","changefreq":"weekly","video":[{"title":"2017:E123 - WE ARE FRIGID","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ff8b10d-77b7-4185-b7cf-8a806713978d/sm/2371242-1495492974505-DS_PostShow_Template123.png","duration":3110,"publication_date":"2017-05-23T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup123","changefreq":"weekly","video":[{"title":"2017:E123 - BURNIE HATES BUYING HOUSES - Dude Soup Podcast #123","description":"Get a free 30 day membership to Beach Body On Demand by texting \"Dude\" to 303030.\n\nAnd check out this week’s menu and get your first three meals free — with free shipping —by going to http://www.blueapron.com/soup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday Burnie joins the gang in studio to talk about all kinds of stuff including:2:15 - Saturday Night Live's big year7:15 - The priorities and values of millennials vs older generations21:45 - Red Dead Redemption 2 delay28:15 - Burnie and other RT staff's interaction w/ fans41:00 - Terminator and Alien franchises49:00 - Hard Nettin'!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES: [60 Minutes] Melbourne property tycoon hammers millennials over spending habits: http://www.9news.com.au/national/2017/05/15/08/39/melbourne-property-tycoon-hammers-millennials-over-spending-habits[Time] Millionaire to Millennials: Stop Buying Avocado Toast If You Want to Buy a Home: http://time.com/money/4778942/avocados-millennials-home-buying/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/burnie\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4813e82-8e88-4faa-8663-328ebde41751/sm/2371242-1495494840482-FH_Thumb_15_copy.jpg","duration":3684,"publication_date":"2017-05-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh118","changefreq":"weekly","video":[{"title":"2017:E118 - OUR DREAM JOBS? - Open Haus #118","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nI wouldn't mind being one of those \"Official Bikini Inspectors\". I see those shirts everywhere and those guys seem pretty happy. That's not a real job? Great. Next you'll tell me that all those \"Freelance Gynecologists\" are faking it too.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f0e03ea-d273-48ba-9e95-5fdd243f4a1f/sm/2371242-1495243037576-Openhaus_Thumbnail118.jpg","duration":692,"publication_date":"2017-05-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-destiny2","changefreq":"weekly","video":[{"title":"2017:E130 - VEX OFFENDERS - Destiny 2 Gameplay","description":"I am in no way exaggerating when I say that Jacob came back from this event literally shaking with joy and excitement. I haven't seen him this happy since last July when he lost his last baby tooth. I put a nice shiny quarter under his keyboard. Shhh. Don't tell.\n\n\n\n\n\n\n\n\n\n\n\nAll Destiny 2 gameplay is on PS4.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/_jacobfullertonhttps://twitter.com/GameOverGreggy\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-destiny2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb95980b-eeb3-44d6-ba9c-d860ef83ad18/sm/2371242-1495242488013-FH_Thumb_15_copy_32.jpg","duration":784,"publication_date":"2017-05-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo117","changefreq":"weekly","video":[{"title":"2017:E117 - RED ROCKET - Demo Disk Gameplay","description":"I'm in no position to tell anyone how to do their job, but I think it might be really nice to have one episode of Demo Disk where James doesn't threaten to blow up an airport. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9b9a81e-606b-4e54-99d7-b0a02d444e38/sm/2371242-1495332119609-FH_Thumb_15_copy_44.jpg","duration":918,"publication_date":"2017-05-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wild81","changefreq":"weekly","video":[{"title":"2017:E128 - SURVIVE THE NIGHT - The Wild Eight Gameplay Part 1","description":"If I ever got lost in the woods with these guys I'd probably just take the easy way out and immediately fling myself into a pack of starving wolves. There would be less strife and screaming. Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wild81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2f8e45e-d5dc-4430-96cb-7132e4142616/sm/2371242-1495226779631-FH_Thumb_15_copy_26.jpg","duration":963,"publication_date":"2017-05-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-prey","changefreq":"weekly","video":[{"title":"2017:E127 - LET'S PREY WITH STEVEN SUPTIC - Prey Gameplay","description":"So wait. It's a music video about a play about a dream where she wakes up Black Maybe Jesus Statue Man and lets him get arrested for murder then bails him out after singing with a church choir while spilling out of her dress? I. Am. In. Follow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/stevensuptic\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-prey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3530835-6d4b-46e2-b60a-081858e5e8cd/sm/2371242-1495216843527-FH_Thumb_15_copy_29.jpg","duration":707,"publication_date":"2017-05-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bestapril","changefreq":"weekly","video":[{"title":"2017:E127 - BEST OF STEREOTYPES - Best Of Funhaus April 2017","description":"You know what they say: \"Every stereotype has to be based on some truth.\"Who says it? I dunno. Probably those filthy Argentinians mostly. You know how they are.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/thenasacovahttp://twitter.com/mattseditbayhttp://twitter.com/omarcitohttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttps://twitter.com/filmdstryr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bestapril","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58b5502d-e961-401c-9d9e-851de0af5044/sm/2371242-1495152154120-April.jpg","duration":929,"publication_date":"2017-05-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-smoshwatch","changefreq":"weekly","video":[{"title":"2017:E129 - FUNHAUS VS SMOSH GAMES - Overwatch Gameplay","description":"So what if they're younger, hipper, more popular, prettier, more popular, cooler, smell better, have sweeter cars, don't cry after sex, can afford to eat out a restaurants more than once a week, get invited to wicked parties, have friends who call them back, and ...uh... hold on. I'm gonna go lay down. I'll finish this later.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-smoshwatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22c20d64-fa10-4e86-be17-2f3681a6e698/sm/2371242-1495153409168-FH_Thumb_15_copy_28.jpg","duration":1910,"publication_date":"2017-05-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-resevilbed-2","changefreq":"weekly","video":[{"title":"2017:E126 - MOMMY DEADEST - Resident Evil 7 Bedroom DLC Gameplay","description":"That's it! I'm putting my foot down. No more scary games for Jacob. I know they're really funny and all but you're not the one who has to rock him to sleep every night and scrub the night-sweats out of his footie pajamas every morning.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/_jacobfullerton\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-resevilbed-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2b47564-5abb-416f-b5d5-31d506c57864/sm/2371242-1495148617519-FH_Thumb_15_copy_24.jpg","duration":1026,"publication_date":"2017-05-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments71","changefreq":"weekly","video":[{"title":"2017:E71 - CIRCUMCISION PARTY! - Funhaus Comments #71","description":"I feel bad for you guys. Thanks to YouTube's new rules about content and advertisers you've all just been robbed of the pleasure of reading a truly hilarious and super classy female circumcision joke. *(sigh)*Someday. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b232b92a-b076-44d7-bdd2-db25ed64642d/sm/2371242-1495130416978-FH_Thumb_Templatecomments71benny.png","duration":460,"publication_date":"2017-05-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd29","changefreq":"weekly","video":[{"title":"S3:E29 - Funhaus Dungeons and Dragons - Episode 29","description":"In which an unsettling game of Never Have I Ever is played, many orcs die in a most violent fashion, members of our group fall under a siren's spell, and we finally make landfall on the Island of Luc.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03ddfad7-5a87-49bd-a2d8-8f547248eab9/sm/2371242-1495124732691-Twits_and_Crits_Logo29.png","duration":5433,"publication_date":"2017-05-18T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtatiny1","changefreq":"weekly","video":[{"title":"2017:E124 - SIZE MATTERS - GTA 5 Tiny Racers Gameplay","description":"This video is dedicated to legendary Micro Machines spokesman John Moschitta Jr., now available to talk real fast or something at birthday parties and mall openings all across the greater Los Angeles area.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtatiny1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89c01a77-5251-45d7-bea7-6b8b3302afbf/sm/2371242-1494957941253-FH_Thumb_15_copy_20.jpg","duration":947,"publication_date":"2017-05-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtacliff","changefreq":"weekly","video":[{"title":"2017:E123 - PLASTIC SURGERY SHOWDOWN - GTA 5 Gameplay","description":"Eleven inches? I mean... It's just... That's gotta be like TOO much... Right? Like... it's not just about length... or girth right? It's more about... how you... uh... how... Well, this one girl, she told me that it's nice when it's not too bi- y'know what, I'm sorry, I have to be going.\n\n\n\n\n\n\n\n\n\n\n\nCliffhanger DELUXE - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/bldPnRU-JkWimLUyUnOVbw#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtacliff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a7c4bb8-475f-4fd6-9f2e-1a1b9c86de39/sm/2371242-1494957909806-FH_Thumb_15_copy_25.jpg","duration":664,"publication_date":"2017-05-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-ps122","changefreq":"weekly","video":[{"title":"2017:E122 - WE HAVE RETURNED","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-ps122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baf3567a-e016-4577-8207-86982eef8072/sm/2371242-1494888418415-DS_PostShow_Template22.png","duration":3189,"publication_date":"2017-05-16T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds122","changefreq":"weekly","video":[{"title":"2017:E122 - ARE WE YOUR FRIENDS? - Dude Soup Podcast #122","description":"Go to http://www.mackweldon.com and get 20% off using promo code \"soup\"\n\nAnd get $50 off your mattress when you go to http://www.casper.com/dudesoup and enter promo code \"dudesoup\". \n\n\n\n\n\n\n\n\n\n\n\nThis week the gang talks about Funhaus and other online content as a substitute for social interaction as well as:31:45 - Sega possibly recycling their old IPs48:45 - Amazon now52:30 - Another exciting episode of Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES: [RiceDigital] Shenmue HD Remaster Coming in 2017: http://www.ricedigital.co.uk/shenmue-hd-remaster-coming-2017/[Gematsu] Sega Planning \"revival of major IPs\": http://gematsu.com/2017/05/sega-planning-revival-major-ips\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0af0f137-f923-446e-ba2c-44062ffc5401/sm/2371242-1494891908589-FH_Thumb_15_copy_18.jpg","duration":3773,"publication_date":"2017-05-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh117","changefreq":"weekly","video":[{"title":"2017:E117 - WE ARE PIRATES? - Open Haus #117","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus”.\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nGeorge Lucas kicks in the office door, his face smeared with chocolate. Fragments of a giant lollipop are stuck to his flannel.\"Steve, Steve! I wanna help make Indiana Jones 5!\"\"I don't know, George, I think I might want to handle this one alo-\"\"So Indy's in this temple, and then a spaceship come down, and it's all 'brreeep-brrooop woooosh' and then these guys come out but they're like guys from the future and they're all like 'You took our thing!' and then some hippies show up and...\"Steven Spielberg reaches, ever so slowly, for the pistol duct-taped under his desk.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/687ff2ae-7ec2-4b41-8175-816de089fd40/sm/2371242-1494632706342-Openhaus_Thumbnail117.jpg","duration":780,"publication_date":"2017-05-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd116","changefreq":"weekly","video":[{"title":"2017:E116 - IRON MAN LOVE - Demo Disk Gameplay","description":"Really, Guardian of the Galaxy Vol. 2?! Multiple god-damned Stan Lee cameos? Still? Why are you acting this way? I thought we were friends.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82340d6c-2163-4953-9cde-d6c5c10f0f4e/sm/2371242-1494717880273-FH_DemoDisk_Thumb_2017-05-12.png","duration":763,"publication_date":"2017-05-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-edf4-2","changefreq":"weekly","video":[{"title":"2017:E122 - MOBILE SUIT DUMDUM - Earth Defense Force 4.1 Gameplay Part 4","description":"Randy Quaid sits on the floor in his soiled bathrobe staring at an unplugged rotary phone. His wife enters.\"Randy? Aw jeez, that smell. Randy, what are you doing?\"\"I'm waiting for them to call about Independence Day 2!\"\"Randy, that movie came out like a year ago. Also your character died, remember?\"Randy slowly looks up from the phone.\"... Oh... You wanna hump with the Rupert Murdoch masks again?\"\"(sigh)... I'll get the camera.\" \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-edf4-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ca1f507-8e6b-4a7b-9874-796e697659d0/sm/2371242-1494609171119-FH_Thumb_15_copy_14.jpg","duration":713,"publication_date":"2017-05-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gmod-crysis","changefreq":"weekly","video":[{"title":"2017:E121 - CRYSIS in GTA 5! Mod Gameplay!","description":"It's okay Elyse. I have no idea who this Crysis guy is either. He does fly a quidditch broom better than most futuristic nano-infused killing machines, though. I'll give him that.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nScript Hook V & Native Trainer>https://www.gta5-mods.com/tools/script-hook-vScript Hook V Dot Net >https://www.gta5-mods.com/tools/scripthookv-netSimple Trainer>https://www.gta5-mods.com/scripts/simple-trainer-for-gtaGTA V Super Man Script Mod by JulioNIB: >http://gtaxscripting.blogspot.com/2016/10/wip-superman-script.htmlIronmanV - Download and installation guide - Armors and script>http://gtaxscripting.blogspot.com/2015/08/ironmanv-installation-guide-armors-and.htmlGreen Goblin Mod by JulioNIB>http://gtaxscripting.blogspot.com/2015/04/green-goblin-mod.htmlThe Lion King Character Pack by MrMarco1003 >https://www.gta5-mods.com/player/the-lion-king-pacCrysis Script Mod by JulioNIB>http://gtaxscripting.blogspot.com/2017/02/gta-v-crysis-script-mod.htmlCrysis 2 Nanosuit by Jr59>https://www.gta5-mods.com/player/crysis-2-nanosuit-ped\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gmod-crysis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e78652bb-e2dd-4959-a5d1-d7a9fdbf31a6/sm/2371242-1494540840748-FH_Thumb_15_copy_13.jpg","duration":663,"publication_date":"2017-05-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-gotg2","changefreq":"weekly","video":[{"title":"2017:E12 - GUARDIANS OF THE GALAXY 2 BETTER THAN THE FIRST? - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday the gang joins Adam to talk all about Guardians of the Galaxy: Vol. 2 plus:26:30 - The new Samurai Jack cartoon(I know it's not a movie. Settle down.)31:15 - Blade Runner 204936:30 - Valerian and the City of A Thousand Planets\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemsTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-gotg2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0ec42e-bc91-4071-8e16-4981ff8f3270/sm/2371242-1494541949249-FH_Thumb_15_copy_11.jpg","duration":2318,"publication_date":"2017-05-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-golfit4","changefreq":"weekly","video":[{"title":"2017:E119 - TEED OFF - Golf It! Gameplay Part 4","description":"We're going to have to mash a quaalude into a hot dog and feed it to Li'l Benson before these golf gameplays. Poor guy's already got to deal with Doggie Lupus. Now you're gonna scream and fight around him too? Monsters.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-golfit4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c2d8a58-47ee-47bb-ab68-2f688ce463e8/sm/2371242-1494532997510-FH_Thumb_Golf_It_Pt4.png","duration":993,"publication_date":"2017-05-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-70","changefreq":"weekly","video":[{"title":"2017:E70 - WE GET BURNED? - Funhaus Comments #70","description":"It's summertime. You're strolling down a quiet suburban street when you come across a beautifully manicured lawn. It's just laying there, soft and fragrant, begging you to dive in. You run a hand through the feather-soft blades, the slightest hint of moisture kisses your fingers. Finally you submit, sprawling unashamedly across its pillowy expanse. Are you there? That lawn is the internet. And this show is the bitter, empty old man screaming at you to get off of it.   \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ee143ba-9919-4dfd-9c86-38596c447315/sm/2371242-1494461973585-FH_Thumb_Template70.jpg","duration":740,"publication_date":"2017-05-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd-28","changefreq":"weekly","video":[{"title":"S3:E28 - Funhaus Dungeons and Dragons - Episode 28","description":"In which a most nefarious plot against one of our heroes is hatched, a life-threatening experience shakes Miri to his core, yet another animal sovereign is largely ignored, and Decker finds a strange new dimension of unearthly pleasures. \n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb59162c-2a74-4ff9-9837-9a091fa96481/sm/2371242-1494434171483-Twits_and_Crits_Logo28.png","duration":3666,"publication_date":"2017-05-11T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-paladins","changefreq":"weekly","video":[{"title":"2017:E120 - WE ARE THE CHAMPIONS - Paladins Gameplay","description":">https://roosterteeth.com/first/double-goldClick the link above to get codes for special Paladins skins and loot PLUS everything else in the box by becoming a Rooster Teeth First Double Gold Member!\n\n\n\n\n\n\n\n\n\nI hear Paladins is Jacob's little brother's favorite new game. Maybe if you're lucky you can play on his team. His user name is \"jacobisastupidcurlyhairedfarteater91\". \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-paladins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d154b930-bc98-4f07-9a70-4c51785b1f27/sm/2371242-1494455609097-FH_Thumb_15_copy_12.jpg","duration":868,"publication_date":"2017-05-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabikegolf","changefreq":"weekly","video":[{"title":"2017:E118 - BOGEY MEN - GTA 5 Gameplay","description":"\"Alright, this meeting of the Buff Huskies Outlaw Motorcycle Club will come to order. First item on the agenda: Should we take the sailboat or the helicopter out to the yacht to relax before we shoot nine holes? Item 2: Has anyone seen our motorcycles?\" \n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabikegolf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a13a1850-8106-44aa-b024-67e875bfee6e/sm/2371242-1494352070792-FH_Thumb_15_copy_7.jpg","duration":1002,"publication_date":"2017-05-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-urinalgta","changefreq":"weekly","video":[{"title":"2017:E117 - URINE ALL-STAR - GTA 5 Gameplay","description":"Quick tip: When storing your jars of urine, organize them by date collected, NOT alphabetically by last name of source. Trust me. You'll save yourself a lot of embarrassment down the road when the Bilderbergs come knocking on your shelter door. \n\n\n\n\n\n\n\n\n\nLift Off: https://socialclub.rockstargames.com/games/gtav/jobs/job/DaHBvkP7dEKCdy1qPA78Ew#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-urinalgta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/887ac45f-697b-412c-b0f3-d4ac33608c10/sm/2371242-1494350386761-FH_Thumb_15_copy_4.jpg","duration":497,"publication_date":"2017-05-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-outlast-2-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E18 - Outlast 2 Gameplay","description":"Can poor Jacob evade angry hillbillies and Scientologists for an entire hour while also pretending to be Bruce as he berates Jacob while he impersonates... oh jeez, my head...","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-outlast-2-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2b033e5-c483-43b2-b42f-ccacc28affd6/sm/1533704-1494289522983-Fullhaus_Thumbnail_Outlast.jpg","duration":5595,"publication_date":"2017-05-09T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow121","changefreq":"weekly","video":[{"title":"2017:E121 - WE ARE MATERNAL","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce59e461-824c-4236-a08f-33963df6d079/sm/2371242-1494286832197-DS_PostShow_Template121.png","duration":3215,"publication_date":"2017-05-09T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup121","changefreq":"weekly","video":[{"title":"2017:E121 - FAR CRY 5 vs RED DEAD 2? - Dude Soup Podcast #121","description":"Our sponsors at 1-800-Flowers have an amazing Mother’s Day bouquet deal. Get 24 Multicolored Roses for ONLY $24! For a bouquet Mom’s guaranteed to love, go to http://www.1800Flowers.com/dudesoup.\n\nVisit http://www.Berries.com, click on the mic in the upper right, and use code \"Dude Soup\" to unlock our special berries deal starting at just $19.99 plus shipping.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe whole gang's back in the studio this week to talk about all kinds of Far Cry 5 gossip as well as:31:00 - Lawrence trying to look as handsome as possible for all you millennials out there37:45 - A reading from the classic novel based on the hit film \"xXx\"39:15 - E and L's Indie Game Corner53:15 - An exciting new Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Eurogamer] Ubisoft Polls Public on Future Far Cry Settings: http://www.eurogamer.net/articles/2015-01-05-ubisoft-polls-public-on-future-far-cry-settings[Great Falls Tribune] Film crew in Poplar to shoot scenes for video game: http://www.greatfallstribune.com/story/news/local/2017/05/03/film-crew-poplar-shoot-scenes-video-game/101241072/[WCCFTech] Far Cry 5 Might Be A Spaghetti Western Set in 19th America, Due This September: http://wccftech.com/far-cry-5-spaghetti-western-19th-america/[NeoGAF] SPECULATION: Is this indicative of Red Dead Redemption 2 releasing in September? http://www.neogaf.com/forum/showthread.php?p=235807525#post235807525\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d27ff325-a098-4051-a0fd-1ea09eb83c17/sm/2371242-1494287209872-FH_Thumb_15_copy_9.jpg","duration":4159,"publication_date":"2017-05-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh116","changefreq":"weekly","video":[{"title":"2017:E116 - WE LOVE TEEN DRAMA? - Open Haus #116","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMy teenage years were less about mysterious deaths and romantic tension and more about avoiding eye contact and choosing which tee shirt to wear in the pool. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67bf8137-61d7-4d65-8d4a-b9741f5500b3/sm/2371242-1494033392037-Openhaus_Thumbnail116.jpg","duration":829,"publication_date":"2017-05-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo115","changefreq":"weekly","video":[{"title":"2017:E115 - HAIR DOWN THERE - Demo Disk Gameplay","description":"Hey baby, you're looking real sexy tonight. Bet you'd look a whole lot sexier crumpled up on my bedroom floor. Wait! Sorry. That came out weird. What I meant was that I'd be most attracted to you once you've lost consciousness and collapsed into an uncomfortable pile on my floor. Say. Sweet taser you've got there. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ab02114-d16c-4cf5-ab55-4859059cb7fa/sm/2371242-1494050040586-Demo_Disk.png","duration":990,"publication_date":"2017-05-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-edf3","changefreq":"weekly","video":[{"title":"2017:E114 - WELCOME TO EARTH - Earth Defense Force 4.1 Gameplay Part 3","description":"I really wouldn't be surprised if one day soon a giant shimmering dome extended over Japan and the entire island chain blasted off into space. The last thing the rest of us would see would be their children, cheerfully singing and flipping us the bird as they rocketed towards their pristine and orderly new future among the stars. Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-edf3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05bffa8a-3308-4be6-865c-310b25de3609/sm/2371242-1494008394350-FH_Thumb_15_copy_3.jpg","duration":841,"publication_date":"2017-05-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-outlastjacob","changefreq":"weekly","video":[{"title":"2017:E116 - BLOOD HARVEST - Outlast 2 Gameplay","description":"I'm sick and tired of all these games portraying southerners as filthy, ignorant, fanatical savages. Don't forget, a lot of them can be really polite to you if you're a white heterosexual.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/_jacobfullerton\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-outlastjacob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6084c7f7-db21-488a-bfdd-5f9f4a00ad7a/sm/2371242-1494005441854-FH_Thumb_Outlast_2_Pt1_V2.png","duration":1099,"publication_date":"2017-05-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-4","changefreq":"weekly","video":[{"title":"2017:E115 - EXECUTIVE DISORDER - Secret Service Gameplay","description":"That reminds me. I need to get back to work on the script for my sequel to \"White House Down\". It's called \"Whiter House Down 2: White House Downer: The Re-Downening\". It's mostly just ninety minutes of Channing Tatum in a dirty tank top dancing to save a rec center or woo a single mom with a secret or something, then Jamie Foxx jumps the Grand Canyon in a car but the car's also a robot. I might give the robot AIDS. Haven't decided yet. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30b3efce-906c-4910-8ac8-92905769a282/sm/2371242-1493942583563-FH_Thumb_15_copy_6.jpg","duration":851,"publication_date":"2017-05-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-golf-it-3","changefreq":"weekly","video":[{"title":"2017:E113 - ROUGH STUFF - Golf It! Gameplay Part 3","description":"ll of the Dwarrowdelf was originally illuminated by many \"shining lamps of crystal\", although the halls of the highest level were also lit with windows and shafts carved through the mountain sides. These levels lay between flights of fifty or more stone steps, with seven hollowed out of the mountains above ground level, and many more subterranean levels — or 'Deeps' — beneath the Great Gates at the head of the Dimrill Dale. Every level comprised a multitude of arched passages, chambers and many pillared halls, often with \"black walls, polished and smooth as glass\". Below the level of the Gates lay mines, treasuries and even dungeons, although far below the lowest Deep of Khazad-dûm, lay primordial tunnels in perpetual darkness, gnawed by 'nameless things' that had lived there since the earliest beginnings of Arda.Nerds.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elyse willems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-golf-it-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f6a43e3-62d2-4807-a7ee-b67ad24abdf6/sm/2371242-1493939075160-FH_Thumb_Golf_It_Pt3_2.png","duration":979,"publication_date":"2017-05-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-69","changefreq":"weekly","video":[{"title":"2017:E69 - WE PLEASE EACH OTHER? - Funhaus Comments #69","description":"Heh heh. Get it? The episode number? And the title? Hee hee ha aaaghahahahahahahahaha! Oh man! It's good. It's too good. You should have seen my face when Bruce explained it to me. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4c3a0d1-1b77-4a56-b094-e2032025c93e/sm/2371242-1493930463387-FH_Thumb_Template69_1.jpg","duration":482,"publication_date":"2017-05-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd-27","changefreq":"weekly","video":[{"title":"S3:E27 - Funhaus Dungeons and Dragons - Episode 27","description":"In which a strange new monster appears, a fallen comrade is honored, a special musical guest steals our hearts, and the party finally, FINALLY, sets sail! \n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e2d6e66-5732-44bd-aa53-29e5dfb28019/sm/2371242-1493856381631-Twits_and_Crits_Logo27.png","duration":3228,"publication_date":"2017-05-04T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-residentjacob","changefreq":"weekly","video":[{"title":"2017:E112 - DEATH IN THE FAMILY - Resident Evil 7 Daughters DLC Gameplay","description":"Don't let the frightened squeals and those cute little cheeks fool you. Jacob Fullerton is all man. A moth once landed on Jacob's arm, and when he regained consciousness he worked almost the entire rest of the day. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/_jacobfullerton\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-residentjacob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60776e4d-c881-4f7c-9386-e2409b8f8114/sm/2371242-1493856019774-FH_Thumb_15_copy_2.jpg","duration":1224,"publication_date":"2017-05-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-yacht","changefreq":"weekly","video":[{"title":"2017:E110 - THE HIGH LIFE - GTA 5 Gameplay","description":"Finally a gameplay that shows all you commoners out there what life is really like for us millionaire YouTubers. We only pretend to drive busted cars and live in tiny apartments to try and stay relatable. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-yacht","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dae6799-7a91-4d0f-9f65-f15cc77b9cd2/sm/2371242-1493750584392-GTA_Yacht.jpg","duration":995,"publication_date":"2017-05-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabattle","changefreq":"weekly","video":[{"title":"2017:E111 - ALMOST BATTLEGROUNDS - GTA 5 Gameplay","description":"This video might contain the first instance of \"sane-splaining\" in Funhaus history. But don't worry. Whatever you may be dealing with, however much pain you're in, you will always find a safe space here with me in this description box that no one reads.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabattle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5a94c11-b490-41e8-ac95-cd0ed2364af3/sm/2371242-1493748541092-FH_Thumb_Template_Battlegrounds.jpg","duration":797,"publication_date":"2017-05-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds120","changefreq":"weekly","video":[{"title":"2017:E120 - CALL OF DUTY: ONE LAST TRY? - Dude Soup Podcast #120","description":"Our sponsors at 1-800-Flowers have an amazing Mother’s Day bouquet deal. Get 24 Multicolored Roses for ONLY $24! For a bouquet Mom’s guaranteed to love, go to http://www.1800Flowers.com/dudesoup.\n\nShari’s Berries is offering huge, freshly dipped strawberries starting at $19.99 plus shipping! Go to http://www.berries.com/ and enter code \"Dude Soup\" by clicking on the mic!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the gang talks all about the return of Call of Duty as well as:13:15 - Shitty movies for some reason19:00 - Back to Call of Duty29:00 - Twitch giving streamers more ways to make money46:15 - Another disturbing installment of Hard Nettin' \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN:Big Knee Lover: http://www.bigkneelover.deviantart.comA.I. Kizuna: https://www.youtube.com/channel/UC4YaOt1yT-ZeyB0OmxHgolA/videos\n\n\n\n\n\n\n\n\n\n\n\nVote on a winner! \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/032c4c7f-c44f-41ad-acd8-9f8e6555657a/sm/2371242-1493659033757-FH_Thumb_16_copy_9.jpg","duration":3710,"publication_date":"2017-05-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-real-heroes-firefighter-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E17 - Real Heroes: Firefighter Gameplay","description":"While you watch this hour-long video, it's possible that 90% of married firefighters around the world have committed at least 19 adulterous deeds each.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-real-heroes-firefighter-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4840498b-1562-4144-9f6e-c42eff68bb03/sm/1533704-1493339820351-Fullhaus_Thumbnail_Firefighters.jpg","duration":3888,"publication_date":"2017-05-01T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-0-h115","changefreq":"weekly","video":[{"title":"2017:E115 - WE ARE STREET RATS? - Open Haus #115","description":"Open Haus is sponsored by Shari's Berries! Go to http://www.berries.com and use code \"openhaus\" to get delicious, chocolate-dipped berries for only $19.99!\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWho is this \"Joel\" person and why is he popping up in so many of our new videos? And why are they packing up my desk around me? And why is security here to escort me to my car? Why is my wife crying? When did I move back in with my parents? How much do they pay you for blood and semen? I have a pretty hefty amount of both.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovic\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/joelrubin_\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-0-h115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5501deb-cf27-4fbe-99b9-fc1a84b2f646/sm/2371242-1493420247095-Openhaus_Thumbnail115.jpg","duration":892,"publication_date":"2017-05-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd114","changefreq":"weekly","video":[{"title":"2017:E114 - PLANET 34 - Demo Disk Gameplay","description":"I was looking up facts about Jamie Kennedy in order to better mock him in this description and then I saw his net worth so now I'm just gonna shut my stupid poor mouth and go back to my one bedroom apartment next to the homeless encampment.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47402bed-3a8a-4034-8c76-3082ff1cc34a/sm/2371242-1493424831577-FH_Thumb_Template114v2.png","duration":856,"publication_date":"2017-04-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-blkwk","changefreq":"weekly","video":[{"title":"2017:E93 - GRAB THAT BOOTY - Blackwake Gameplay","description":"Each night, Johnny Depp lies awake in bed, staring at the ceiling. A shiver runs through him as he can't help but wonder if he were remove all of the scarves, floppy, hats, jewelry, and eyeliner, would there be anything at all underneath? Then he kicks four French print models out of his bed and pays a runaway to beat him with a copy of \"Mordecai\". \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-blkwk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/795ca517-9a8c-4c7b-94bf-c1efc4c88dc1/sm/2371242-1493341569354-FH_Thumb_15_copy_1.jpg","duration":1176,"publication_date":"2017-04-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-my-bf","changefreq":"weekly","video":[{"title":"2017:E109 - PLEASURE ISLAND - My Boyfriend Gameplay","description":"WOMAN SEEKING MANCute, brunette SWF seeks SM to share long, aimless walks on the beach. Must love stray dogs, milk products, and flip-flops. Serious inquiries only. You will immediately become my soulmate. The cookie told me so. Why are you looking at that other woman. Where are you going? I'll kill your whole family! Non-smokers only please. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/rahulkohli13\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-my-bf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efaf354a-bc54-4b3a-b508-038bcaf70cca/sm/2371242-1493338405345-FH_Thumb_16_copy_4.jpg","duration":953,"publication_date":"2017-04-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmf8","changefreq":"weekly","video":[{"title":"2017:E11 - BEST FAST AND FURIOUS YET? - Movie Podcast","description":"This movie podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis week the fellas talk about dead celebrities(duh) as well as:2:20 -  Fate of the Furious24:40 - The crazy success and future of Netflix27:50 - The gang's most anticipated summer movies\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmf8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31dfac69-9c68-42db-ae9d-060d7beb307d/sm/2371242-1493330655027-FH_Thumb_16_copy_3.jpg","duration":1987,"publication_date":"2017-04-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-golfit2","changefreq":"weekly","video":[{"title":"2017:E108 - SLOPPY STROKES - Golf It! Gameplay Part 2","description":"Y'know, Mr Freeze never actually said \"Ice to see you\" in Batman and Robin. It was actually McBain on an episode of The Simpsons. It's true. Wait. Hold on. Did you just hear that? That was the sound of thousands of vaginas sealing themselves shut in unison. Heh. Still got it.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-golfit2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc1a61e6-4ee5-45b6-a1e8-c65d23a11bd6/sm/2371242-1493329327916-FH_Thumb_16_copy_8.jpg","duration":829,"publication_date":"2017-04-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments68","changefreq":"weekly","video":[{"title":"2017:E68 - WE'RE NOT RACIST? - Funhaus Comments #68","description":"\"Hey everybody, welcome to On the Spot! My first team tonight is Funhaus and oh, would you look at that, Adam has already disrobed and started lighting parts of the set on fire while Lawrence casually urinates into my coffee cup.\"\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7c82395-7933-4e36-b59d-3352bb3e87ae/sm/2371242-1493324391054-FH_Thumb_Template.png","duration":477,"publication_date":"2017-04-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd-26","changefreq":"weekly","video":[{"title":"S3:E26 - Funhaus Dungeons and Dragons - Episode 26","description":"In which a... uh... traditional Gire sock-hop is had, Miri's member is put on display, Grimo has the worst day ever, and an unwanted baby is thrown in a dumpster.\n\n\n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eba4425-10c5-4d6b-95a0-2bf6388a5ba9/sm/2371242-1493248625814-Twits_and_Crits_Logo26.png","duration":3414,"publication_date":"2017-04-27T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-battle2","changefreq":"weekly","video":[{"title":"2017:E107 - HUNTING SEASON - Battlegrounds Gameplay","description":"Finally we play the hottest game ever to rip off King of the Kill, which ripped off The Culling, which ripped off The Hunger Games, which ripped off Battle Royale, which ripped off The Most Dangerous Game, which of course ripped off the 1994 Ice-T masterpiece Surviving the Game. No. You look it up.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreene\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-battle2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d40bde2-9f81-4a0e-85be-9f09c56189b0/sm/2371242-1493167372262-FH_Thumb_15_copy_40.jpg","duration":955,"publication_date":"2017-04-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabikestunt","changefreq":"weekly","video":[{"title":"2017:E105 - AIR FORCE DUMB - GTA 5 Gameplay","description":"Is this the end of The Buff Huskies?! Wait. Is that what they're even called anymore. I'm confused. There's like two guys in Tron suits and one in some sort of neon Dia de los Muertos onesie. Is that Fake Vin Diesel from that other series we did? It's sad. This company used to care about a little thing called continuity.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabikestunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36a38db5-7140-4e8c-85fe-83cecdf4a70d/sm/2371242-1493144601959-FH_Thumb_TemplateGTA.png","duration":788,"publication_date":"2017-04-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-rainbow","changefreq":"weekly","video":[{"title":"2017:E104 - RACE LIKE A BOSS - GTA 5 Gameplay","description":"I once bet my brother twenty dollars that he couldn't name the line-up of shows for each season of TGIF. We sat there for forty minutes with wikipedia open on my phone as he furrowed his brow, traveling deep into his mind palace to search for the answers. I don't remember who won, but I'll never forget the shame I feel right now as I type this.  \n\n\n\n\n\n\n\nThe Rainbow Co#Ktail - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/QRR8n3g3F0Kb8QkGU-2YUw#\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/stevensuptic\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-rainbow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d701fa6f-9511-44c8-b533-070e1c3d7338/sm/2371242-1493141123465-FH_Thumb_15_copy_41.jpg","duration":575,"publication_date":"2017-04-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup119","changefreq":"weekly","video":[{"title":"2017:E119 - JOEL QUITS YOUTUBE? - Dude Soup Podcast #119","description":"Go to http://www.graphicstock.com/dudesoup to sign up for a free 7 day trial and download whatever you want!And get your first three meals free, with free shipping, by going to http://www.blueapron.com/soup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSome guy named Joel drops by this week to talk about life after Funhaus as well as:12:00 - Funhaus' relationship w/ the rest of Rooster Teeth18:00 - The early days of Funhaus28:30 - YouTube's \"Ad-pocolypse\"42:30 - Witcher books vs Witcher games1:02:00 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHARD NETTIN:Big Knee Lover: http://www.bigkneelover.deviantart.comBenjamin Bennett: https://www.youtube.com/channel/UCqW54i24PGw1q7IxciRmgTA\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/joelrubin_Tshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eabef20-8646-45dc-ac49-8c51fa2037f3/sm/2371242-1493065321220-FH_Thumb_16_copy_7.jpg","duration":4427,"publication_date":"2017-04-25T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sniper3","changefreq":"weekly","video":[{"title":"2017:E106 - SHOT IN THE DARK - Sniper Ghost Warrior 3 Gameplay","description":"Thanks to CI games for partnering with us for this video! Be sure to get the Sniper Ghost Warrior 3 Season Pass Edition - click here to find out more: http://bit.ly/2keYx8P\n\n\n\nLeave it to Kovic to have access to drones, compound bows, and all kinds of crazy impossible future-bullets and still waste time running over cows with his car.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sniper3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e03a6011-646c-4c33-94fa-0e4fb38d1604/sm/2371242-1493075469356-Sniper_Bruce.jpg","duration":1339,"publication_date":"2017-04-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh114","changefreq":"weekly","video":[{"title":"2017:E114 - WE BOUGHT A ZOO? - Open Haus #114","description":"Open Haus is sponsored by Shari's Berries! Go to http://www.berries.com and use code \"openhaus\" to get delicious, chocolate-dipped berries for only $19.99!\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn twenty-five years, people are going to be digging up a lot of stupid time-capsules full of La Croix cans, vape pens, hoverboards, and pictures of that goddamn dead gorilla.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/thenasacovahttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50521db0-abba-4e62-ac52-c1c7bead58ce/sm/2371242-1492823219569-Openhaus_Thumbnail114.jpg","duration":673,"publication_date":"2017-04-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd113","changefreq":"weekly","video":[{"title":"2017:E113 - HOT AND DARK - Demo Disk Gameplay","description":"Faith No More seamlessly combined the genres of rap and rock, paving the way for such influential bands as Limp Bizkit, Linkin Park, Legz Diamond, Lorp Puritz, Lizzle Skiz, Mads Mikkelsen, and probably some other awful piles of garbage.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d35c53bf-0d8a-4070-8c87-6ef3725c04a1/sm/2371242-1492826153499-FH_Thumb_16_copy_5.jpg","duration":846,"publication_date":"2017-04-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-my-summer-car-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E16 - My Summer Car Gameplay","description":"Good news, FIRST member! Due to the nature of this game, the video feels 100x longer than it actually is!","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-my-summer-car-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9542f44c-1b73-41fa-bc6f-9efd0a95719a/sm/1533704-1492723174954-Fullhaus_Thumbnail_Summer_Car.jpg","duration":4239,"publication_date":"2017-04-23T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-overrising","changefreq":"weekly","video":[{"title":"2017:E103 - EXPERTS ONLY - Overwatch Uprising Gameplay","description":"I haven't hear of this \"Over Watchers\" or whatever but if you guys wanna play some Paladins, my handle is \"ladeezluvcoolbonez6969\". Don't pick Androxus, though. I main Androxus.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-overrising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fa68f20-fbf2-4c0c-8336-31140cafb4f9/sm/2371242-1492798489876-FH_Thumb_16_copy_1.jpg","duration":1737,"publication_date":"2017-04-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-realfire","changefreq":"weekly","video":[{"title":"2017:E102 - BURNING SENSATION - Real Heroes: Firefighter Gameplay","description":"\"Look alive, men!\"\"What is it Cap'n?!\"\"Word just came in: All of our wives and girlfriends are taking a day trip to the spa. They won't be back until 4:00.\"\"But Cap'n, how are we all supposed to cheat on them by then? There just isn't enough time?!\"\"Nobody said being a firefighter would be easy. Quick! To the Applebee's by the junior college!\"\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-realfire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e27b32c6-3bbf-4cd8-89ed-dda5b62a3663/sm/2371242-1492793397411-FH_Thumb_15_copy_42.jpg","duration":840,"publication_date":"2017-04-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-march","changefreq":"weekly","video":[{"title":"2017:E101 - BEST OF MONSTERS - Best Of Funhaus March 2017","description":"Nightmare faces, dogs in hats, drunken injuries, and waaaaaay too many blurred out wieners await you all in last month's Best Of.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattpeakehttp://twitter.com/_jacobfullertonhttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttp://twitter.com/omarcito\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-march","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa424d41-3d85-4821-86f7-43bfea6871ba/sm/1533704-1492713920491-March.jpg","duration":971,"publication_date":"2017-04-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-golfit1","changefreq":"weekly","video":[{"title":"2017:E100 - CLUB KIDS - Golf It! Gameplay Part 1","description":"Everybody seemed pretty calm this time. Nobody screamed at each other. No inexplicable racial slurs. No one stormed off and quit the channel only to sheepishly return a few minutes later. Don't worry, though. It's coming. This is part one of four. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-golfit1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/094e3ad2-3e0c-4c99-a7d9-8958b6e884b1/sm/2371242-1492714568771-FH_Thumb_15_copy_43.jpg","duration":863,"publication_date":"2017-04-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-67","changefreq":"weekly","video":[{"title":"2017:E67 - WE'RE YOUR FETISH? - Funhaus Comments #67","description":"Is there a fetish out there where women want to sleep with guys who are just shy of middle age, a bit doughy around the mid-section, and make less than the person who takes your picture at the DMV? I'm asking for a friend.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/stevensuptic\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f31ac2d-07bb-45f3-92a5-08a1bd30eb17/sm/2371242-1492651816443-FH_Thumb_Template67.jpg","duration":584,"publication_date":"2017-04-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd25","changefreq":"weekly","video":[{"title":"S3:E25 - Funhaus Dungeons and Dragons - Episode 25","description":"In which a Parliament of useless animals meets, the kindness of a woman tears a friendship asunder, a strange new ritual is planned, and Decker finally consummates his self-love. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce9af392-44ff-4e0a-b74a-d61659a8a351/sm/2371242-1492635987365-Twits_and_Crits_Logo25.png","duration":3387,"publication_date":"2017-04-20T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wh24","changefreq":"weekly","video":[{"title":"2017:E99 - MAGIC SCHOOL DROPOUT - Wheelhaus Gameplay","description":"If those very special episodes of \"Diff'rent Strokes\" taught me anything as a kid, it's that a kidnapping is always good for a few laughs, everything works out fine in the end, and the experience is all but forgotten by the following week.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wh24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bf51a49-ca37-420e-8ea0-cb8f3625f84c/sm/2371242-1492635125109-FH_Thumb_15_copy_39.jpg","duration":811,"publication_date":"2017-04-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fhgta-buff-huskies","changefreq":"weekly","video":[{"title":"2017:E98 - PART-TIME FAILS - GTA 5 Gameplay","description":"Working at Funhaus is just like that show \"The Office\". One time, I put Jacob's stapler in a Jell-O mold, so in retaliation he smashed my face into the edge of his computer tower until I passed out. I was pooping teeth for a week. Hilarious.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fhgta-buff-huskies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c383ff22-e5f2-4695-8cf2-18a9bbc7f669/sm/2371242-1492621196710-FH_Thumb_16_copy.jpg","duration":1077,"publication_date":"2017-04-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-battle-for-t-r-u-m-p-s-wall-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2017:E97 - BATTLE FOR TRUMP'S WALL - GTA 5 Gameplay","description":"Unbeknownst to mainstream media, this video is actually a secret data package encouraging people trying to get past Trump's border wall using their childhood trampolines.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBATTLE FOR TRUMPS WALL - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/99l1SeSvt0CvF6GDCbcmNw#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/stevensuptic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-battle-for-t-r-u-m-p-s-wall-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24d5da7b-6524-4bdd-a8f5-d1afbe42b78e/sm/2371242-1492550647510-FH_Thumb_15-Recovered_copy.jpg","duration":577,"publication_date":"2017-04-19T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-we-are-giraffe-fetuses","changefreq":"weekly","video":[{"title":"2017:E118 - WE ARE GIRAFFE FETUSES","description":"Elyse's new haircut has you all in a frenzy. Behold, the fruits of your labor!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-we-are-giraffe-fetuses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18ce6625-410e-4638-abdc-93fc6d94be39/sm/2371242-1492540142055-DS_PostShow_Template.jpg","duration":3339,"publication_date":"2017-04-18T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-ds118","changefreq":"weekly","video":[{"title":"2017:E118 - STAR WARS NEEDS WOMEN? - Dude Soup Podcast #118","description":"Our sponsors at MVMT Watches want to give you 15% off your next order, by going to http://mvmtwatches.com/dudesoup\n\nMack Weldon is like nothing you've ever worn. Go to http://mackweldon.com and get 20% off using promo code \"SOUP.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nStar Wars Battlefront II debuts a stunning new trailer. But where the blonde womens at? Plus we also discuss:2:23 - Robert Yang using VR as a platform against homophobia15:40 - Battlefront 2 Trailer, female protagonists, Star Wars36:10 - April the Giraffe's world famous birthing video43:20 - Feather Eyebrows: The Newest Trend in Eyebrow Fashion47:30 - Charlize Theron to Vin Diesel: \"Kiss Off!\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGet tickets for Let's Play Live at http://www.roosterteethlive.com.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-ds118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/351d618a-d681-4e66-8e5d-7a2a96ace1f8/sm/2371242-1492478024848-FH_Thumb_15_copy_38.jpg","duration":3422,"publication_date":"2017-04-18T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh113","changefreq":"weekly","video":[{"title":"2017:E113 - WE MAKE THE NEXT ZELDA? - Open Haus #113","description":"Open Haus is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “openhaus\"\n\n\n\n\n\n\n\nAsk us questions here!\n\n\n\nhttp://www.reddit.com/r/funhaus\n\n\n\n\n\nUnfortunately for young Jacob, the only Zelda game we'll be making is one about a poor baby boy who was abducted by dolphins and has been forced to live among them, never to see human civilization ever again. Those dolphins are also the Triforce or whatever.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e35a36bc-8adb-49f2-b9c2-c835de5f989f/sm/2371242-1492216635896-Openhaus_Thumbnail113.jpg","duration":766,"publication_date":"2017-04-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd-112","changefreq":"weekly","video":[{"title":"2017:E112 - BATTLE FOR LAST PLACE - Demo Disk Gameplay","description":"\"Billy Hatcher has a unique style of gameplay revolving around rolling large eggs. The player controls the hero, Billy, who cannot do much by himself aside from moving and jumping.\"\n\n\n\n\n\n\n\n\n\nWhen you get a voice-acting part in a kick-started nostalgia-machine, be a less lame character than Billy Hatcher.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80b45993-5618-4ea4-a4f8-623c3e633eae/sm/2371242-1492218189636-FH_Thumb_15_copy_37.jpg","duration":1044,"publication_date":"2017-04-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-guts-and-glory-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E15 - Guts and Glory Gameplay","description":"You'll be delighted to hear that you get to spend this uncut video exploring the beautiful mind of Jon Smith. Will you emerge unscathed?","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-guts-and-glory-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0e1b286-5612-4f85-989c-ca86702aa4bd/sm/1533704-1492219429476-Fullhaus_Thumbnail_guts_and_glory.jpg","duration":3559,"publication_date":"2017-04-15T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-catchlover","changefreq":"weekly","video":[{"title":"2017:E96 - CAUGHT CHEATING - Catch a Lover Gameplay","description":"Elyse is taking a quick break from smashing the patriarchy in order to play this game in which all women seem to be good for is walking around in their underwear, cheating on their hard-working husbands, and cleaning up pee.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-catchlover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adff8a26-aeae-44de-8969-ab629405719e/sm/2371242-1492192907042-FH_Thumb_15_copy_33.jpg","duration":1058,"publication_date":"2017-04-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-talkin-2","changefreq":"weekly","video":[{"title":"2017:E94 - TALKING STALKINGS Episode 2 - Drunk Silk Stalkings Podcast","description":"America's highest rated, quarterly, Silk Stalkings based, web-exclusive talk show is back! Now with a new set, new panelists, a secret celebrity guest, an ocarina, something about condoms, and accidental nudity!  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcitohttp://twitter.com/real_rtboneshttp://twitter.com/jonsmiffhttp://twitter.com/_jacobfullerton\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-talkin-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee796431-273d-401a-a16d-cce3e2a780d2/sm/2371242-1492188642470-FH_Thumb_15_copy_32.jpg","duration":689,"publication_date":"2017-04-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-fhzim","changefreq":"weekly","video":[{"title":"2017:E10 - INVADER ZIM RETURNS? - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis week, Adam and the gang talk about their love of the new anime film \"Your Name\", as well as:7:15 - The upcoming \"Invader Zim\" movie.18:10 - The failings of \"Power Rangers\".22:00 - A possible \"Dungeons and Dragons\" movie that's in the works.32:00 - Ripped dudes,mostly\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-fhzim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10bc92f3-e74d-4b31-af71-3d512ddf73ce/sm/2371242-1492118180307-FH_Thumb_15_copy_34.jpg","duration":2172,"publication_date":"2017-04-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-my-summer-3","changefreq":"weekly","video":[{"title":"2017:E85 - TRUCKED UP - My Summer Car Gameplay Part 3","description":"Strap in for fifteen minutes of fast-pasted, edge of your seat, wood-chopping, envelope-mailing, sausage-eating action. Oh! And driving, I think.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-my-summer-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7693d858-694b-4882-80d1-69c8b0991a85/sm/2371242-1492117217633-FH_Thumb_15_copy_24.jpg","duration":889,"publication_date":"2017-04-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-w-h-a-t-s-the-best-90-s-action-f-i-l-m-the-1-show","changefreq":"weekly","video":[{"title":":E2 - WHAT'S THE BEST 90'S ACTION FILM? | THE #1 SHOW","description":"Craig, Shaun and Ben go over their list of the top action movies of the 90's\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-w-h-a-t-s-the-best-90-s-action-f-i-l-m-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7df61e8e-465e-4c6c-81d5-6a978c390eb1/sm/2056961-1457560403728-1show_90sActionFilm.jpg","duration":873,"publication_date":"2016-03-09T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-season-w-h-a-t-s-the-best-p-i-z-z-a-the-1-show","changefreq":"weekly","video":[{"title":":E1 - WHAT'S THE BEST PIZZA? | THE #1 SHOW","description":"SERIES PREVIEW - The #1 Show is a show about everything... except video \ngames. We have enough shows for that. A show that was conceived after \narguing while in a backyard pool over the best cereals, this is the end \nresult... but is still a work in progress\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-1-show-season-w-h-a-t-s-the-best-p-i-z-z-a-the-1-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdca3979-684a-47dd-80ca-8bebb9122e03/sm/2056961-1457560011691-1show_BestPizza.jpg","duration":802,"publication_date":"2016-03-09T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-hidden-gems-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E86 - The BEST Hidden Gems EVER!","description":"Look at how excited Chad is for his hidden gem. Who would of thought it \nhad to do with a brand associated with school-aged Japanese girls?\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-hidden-gems-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71c7230d-1bd9-4453-a0a4-b092a31d1302/sm/2056961-1457559511177-BE_HiddenGem.jpg","duration":421,"publication_date":"2016-03-09T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-video-game-commercial-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E85 - The BEST Video Game Commercial EVER!","description":"This week @StutteringCraig, @ShaunBolen and @ScrewAttackChad fill you in\n on what they feel are the best video game commercials in history. \nWhat's your favorites?\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-video-game-commercial-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa599468-cad4-4749-90a1-00e70a2ad73a/sm/2056961-1457559276826-BE_BestVGCommercial.jpg","duration":316,"publication_date":"2016-03-09T21:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-worst-video-game-console-e-v-e-r-featuring-funhaus","changefreq":"weekly","video":[{"title":"S1:E84 - The WORST Video Game Console EVER! featuring Funhaus","description":"Lawrence from Funhaus joins us to talk about the worst consoles ever.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-worst-video-game-console-e-v-e-r-featuring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16546ddc-e726-46a1-a2dc-175073463e71/sm/2056961-1457558923821-BE_WorstVGconsole.jpg","duration":383,"publication_date":"2016-03-09T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-robot-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E83 - The Best Robot EVER!","description":"The guys pick their best robot ever, and Sam teaches us some MATH!!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-robot-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00a4526a-ef8e-43e1-a450-cff3e5637fba/sm/2056961-1457558645429-BE_BestRobot.jpg","duration":412,"publication_date":"2016-03-09T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-omgwtf-moment-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E82 - The Best OMGWTF Moment EVER!","description":"The ScrewAttack! crew enlighten us with their picks for the best Oh My Gawd Wut The F*** moment ever\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-omgwtf-moment-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4262d84-5ac5-4f57-9754-f1bf74f0a3d0/sm/2056961-1457558286782-BE_OMGWTF.jpg","duration":421,"publication_date":"2016-03-09T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-worst-plot-twist-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E81 - The Worst Plot Twist EVER!","description":"What's YOUR worst plot twist in video games ever?","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-worst-plot-twist-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1333d58-0413-421b-9296-d3a651804090/sm/2056961-1457557921833-BE_PlotTwist.jpg","duration":385,"publication_date":"2016-03-09T21:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-emotional-moment-e-v-e-r-featuring-joel-from-funhaus","changefreq":"weekly","video":[{"title":"S1:E80 - The Best Emotional Moment EVER! Featuring Joel from Funhaus","description":"Break out the tissues and open your hearts as the guys describe the \nmoments in video games that hit 'em right in the feels. Thanks to our \nspecial guest Joel from Funhaus! You should totally go check out \nFunhaus.... no seriously... here's a link https://www.youtube.com/Funhaus\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-emotional-moment-e-v-e-r-featuring-joel-from-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50b8cb1c-2ad1-43cd-be49-bb63f7a63435/sm/2056961-1457557430300-BE_EmotionalMoment.jpg","duration":397,"publication_date":"2016-03-09T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-worst-boss-e-v-e-r-featuring-geoff-from-achievement-hunter","changefreq":"weekly","video":[{"title":"S1:E79 - The Worst Boss EVER! featuring Geoff from Achievement Hunter","description":"Geoff from Achievement Hunter joins us and reveals his shocking choice for worst boss ever: Burnie Burns\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-worst-boss-e-v-e-r-featuring-geoff-from-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbf1bcf3-577e-4bfb-859d-a6784655f85b/sm/2056961-1457557506423-BE_WorstBoss.jpg","duration":365,"publication_date":"2016-03-09T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-guilty-pleasure-game-ever-season-premiere","changefreq":"weekly","video":[{"title":"S1:E78 - The BEST Guilty Pleasure Game Ever! **Season Premiere**","description":"S1:E78 - The BEST Guilty Pleasure Game Ever! **Season Premiere**","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-guilty-pleasure-game-ever-season-premiere","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b43a76d5-2b9e-4211-8030-f7e6133c7b61/sm/2056961-1457556659385-BE_GuiltyPleasure.jpg","duration":311,"publication_date":"2016-03-09T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-season-1-the-best-open-world-game-e-v-e-r","changefreq":"weekly","video":[{"title":"S1:E77 - The BEST Open World Game EVER!","description":"The guys tell us what are the best open world games. Fact not opinion!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/the-best-ever-season-1-the-best-open-world-game-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44c88844-df0a-4ea1-afd6-68f8f895e12e/sm/2056961-1457556361427-BE_OpenWorld.jpg","duration":392,"publication_date":"2016-03-09T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-guys-get-drunk-side-scrollers","changefreq":"weekly","video":[{"title":"S1:E217 - The Guys Get Drunk | SideScrollers","description":"Sam is taking the guys to his youth with Monte Cristos and malt liqour!\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-guys-get-drunk-side-scrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d173f1c9-d513-45b3-988f-170b8870ccc6/sm/2056961-1457555767894-SS_GuysGetDrunk.jpg","duration":3369,"publication_date":"2016-03-09T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-1-the-god-of-sandwiches-side-scrollers-podcast","changefreq":"weekly","video":[{"title":"S1:E216 - The God of Sandwiches | SideScrollers Podcast","description":"In this week's random ass stream of consciousness discussion, Craig, \nChad and Sam discuss everything from knife wielding monkeys to living \nnext to a prison and the best sandwich in the world.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-1-the-god-of-sandwiches-side-scrollers-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/464ab7ff-55a1-4113-8225-1b95ae9bbf6f/sm/2056961-1457555451964-SS_GodSandwiches.jpg","duration":3354,"publication_date":"2016-03-09T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-deadpool","changefreq":"weekly","video":[{"title":"S1:E49 - Five Fun Facts - Deadpool","description":"Think you know everything about Deadpool? Think again...\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-deadpool","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40d3a16f-9d1d-4773-8f2c-37b6aab368e0/sm/2056961-1457555056027-FFF_Deadpool.jpg","duration":283,"publication_date":"2016-03-09T20:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-black-desert-online","changefreq":"weekly","video":[{"title":"S1:E48 - Five Fun Facts - Black Desert Online","description":"Thanks to Black Desert Online for sponsoring this video. Check them out at https://www.blackdesertonline.com/shop/GamePass.ht...\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-black-desert-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee156141-9286-4f4e-b5e6-b93100c60d54/sm/2056961-1457554785399-FFF_BlackDesert.jpg","duration":238,"publication_date":"2016-03-09T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-call-of-duty","changefreq":"weekly","video":[{"title":"S1:E47 - Five Fun Facts - Call Of Duty","description":"S1:E47 - Five Fun Facts - Call Of Duty","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a890ea2c-0614-475b-aa4c-a677a04cc698/sm/2056961-1457554494183-FFF_CallofDuty.jpg","duration":232,"publication_date":"2016-03-09T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-kingdom-hearts","changefreq":"weekly","video":[{"title":"S1:E46 - Five Fun Facts - Kingdom Hearts","description":"Think you know everything about Kingdom Hearts? Maybe not...\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-kingdom-hearts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68c8dde4-61c9-421a-bb75-086d4c2b1e08/sm/2056961-1457554125396-FFF_KingdomHearts.jpg","duration":231,"publication_date":"2016-03-09T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-animal-crossing","changefreq":"weekly","video":[{"title":"S1:E45 - Five Fun Facts - Animal Crossing","description":"Mitch fills us in on the lighthearted and lovable franchise Animal Crossing.... that was apparently inspired by loneliness...\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylistWatch ScrewAttack Top 10's - http://bit.ly/SATop10PlaylistWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylistWatch SideScrollers - http://bit.ly/SideScrollersPlaylistWatch The Industry - http://bit.ly/IndustryPLWatch Five Fun Facts - http://bit.ly/FFFPlaylistWatch One Minute Melee - http://bit.ly/OMMPlaylistWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylistWatch The Best Ever - http://bit.ly/BestEverPlaylistWatch The Game OverThinker - http://bit.ly/OverThinkerPLWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-animal-crossing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d2a921b-3c32-49ec-999e-af69a6ff5b19/sm/2056961-1457553831384-FFF_AnimalCrossing.jpg","duration":250,"publication_date":"2016-03-09T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-season-1-five-fun-facts-jak-and-daxter","changefreq":"weekly","video":[{"title":"S1:E44 - Five Fun Facts - Jak and Daxter","description":"Here are some things you may have not have known about Jak & Daxter\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/five-fun-facts-season-1-five-fun-facts-jak-and-daxter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a1fc5ef-6f36-406a-ac39-a150f5d99aa6/sm/2056961-1457553920257-FFF_JackDaxter.jpg","duration":232,"publication_date":"2016-03-09T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-nut-shots-in-video-games","changefreq":"weekly","video":[{"title":"S1:E174 - Top 10 Nut Shots in Video Games","description":"WARNING: This video should not be viewed by people who don't enjoy gratuitous hits to the man marbles. Yup, this is happening.\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-nut-shots-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac435bd6-a1a0-4051-aa20-75cafce1d6bb/sm/2056961-1457552915510-Top10_Nutshots.jpg","duration":498,"publication_date":"2016-03-09T19:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-ways-to-improve-street-fighter-5","changefreq":"weekly","video":[{"title":"S1:E173 - Top 10 Ways To Improve Street Fighter 5","description":"After digging into the latest Street Fighter we've come away with some \nsuggestions we feel could really improve the game. Are we on to \nsomething or should we STFU?\n\n\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\nConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-ways-to-improve-street-fighter-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49777565-f076-4fd3-bacb-77c7470e1893/sm/2056961-1457552107074-Top10_ImproveSS5.jpg","duration":430,"publication_date":"2016-03-09T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-s-season-1-top-10-reasons-sonic-is-cooler-than-you","changefreq":"weekly","video":[{"title":"S1:E172 - Top 10 Reasons Sonic is Cooler Than You","description":"Sonic may suck but he's actually than you... you dumb ass.\n\n\n\nPick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\n\nConnect with ScrewAttack Online:Visit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsiteLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook Follow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitterConnect with the ScrewAttack Crew on Twitter:Craig - https://twitter.com/StutteringCraigChad - https://twitter.com/ScrewAttackChadBen - https://twitter.com/ScrewAttackBenShaun - https://twitter.com/ShaunBolenNick - https://twitter.com/THENervousNickSam - https://twitter.com/ScrewAttackSam","player_loc":"https://roosterteeth.com/embed/top-10-s-season-1-top-10-reasons-sonic-is-cooler-than-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/885d68ee-b7e4-4bab-b74f-eb6713639535/sm/2056961-1457551310446-Top10_SonicIScool.jpg","duration":329,"publication_date":"2016-03-09T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-slides-in-video-games","changefreq":"weekly","video":[{"title":"S1:E171 - Top 10 Slides in Video Games","description":"If you enjoy this video please LIKE it! Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-slides-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53a75d8b-7854-44fd-a7fb-ad53e57c6127/sm/video_thumbnail_12891285-1455213578.jpg","duration":499,"publication_date":"2016-02-11T09:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-valentines-day-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E65 - Reasons We HATE Valentine's Day w/ EVIL CRAIG","description":"Tell me why you HATE Valentine's Day in the comments below!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-valentines-day-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f2b7b49-fbc6-45bf-b365-f27e4fd894f7/sm/video_thumbnail_12891247-1455139707.png","duration":132,"publication_date":"2016-02-11T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/substitute-teacher-story-time-sidescrollers-extended-cut-021016","changefreq":"weekly","video":[{"title":"S1:E924 - Substitute Teacher Story Time! | SideScrollers Extended Cut 02/10/16","description":"It's weird substitute teacher story time!","player_loc":"https://roosterteeth.com/embed/substitute-teacher-story-time-sidescrollers-extended-cut-021016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb45a22c-b843-488d-a811-43bf75a24814/sm/video_thumbnail_12891255-1455152379.jpg","duration":718,"publication_date":"2016-02-10T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-is-the-best-age-sidescrollers-021016","changefreq":"weekly","video":[{"title":"S1:E215 - Ten Is the Best Age! | SideScrollers 02/10/16","description":"We turn 10 next week! Let's look back at the last ten years and let everyone know our celebration plan!\r\n\r\n1:00 Nick gets everyone sick\r\n5:30 Pay our Gametrailers respects\r\n11:30 Our favorite ScrewAttack moments\r\n19:50 ONE F**KING COIN!\r\n27:13 Newsdesk\r\n37:50 Live Tweets\r\n48:00 Tweet of the Day!\r\n50:40 Community Video\r\n\r\nSend us questions for Live Tweets using #SideScrollers on Twitter!\r\nSend Sam Newsdesk stories! Sam@ScrewAttack.com\r\nSend us your QotW answers! Live@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/ten-is-the-best-age-sidescrollers-021016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65e815a7-2c21-4407-9571-8052623fec4e/sm/video_thumbnail_12891281-1455207732.jpg","duration":3420,"publication_date":"2016-02-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-goriest-video-games","changefreq":"weekly","video":[{"title":"S1:E170 - Top 10 Goriest Video Games","description":"We count down not just the most bloody but the GORIEST games in history. Some of these games you have to see to believe. They make us cringe!\r\n\r\nIf you enjoy this video please LIKE it! Show some love and look great. Pick up some NEW ScrewAttack merchandise in our NEW store: http://bit.ly/NewScrewAttackStore\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-goriest-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e7be5fc-f39e-4540-948b-e064e9b6dbbf/sm/video_thumbnail_12890983-1454615664.jpg","duration":430,"publication_date":"2016-02-04T11:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-undertale-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E64 - Reasons We HATE Undertale w/ Evil Craig","description":"Tell us why YOU hate Undertale in the comments!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-undertale-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0a095f7-6f04-4080-9840-7e1acd2e61b4/sm/video_thumbnail_12890939-1454527749.png","duration":99,"publication_date":"2016-02-04T06:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-love-undertale","changefreq":"weekly","video":[{"title":"S1:E1 - 17 Reasons We LOVE Undertale","description":"Tell us why YOU love Undertale in the comments below!","player_loc":"https://roosterteeth.com/embed/17-reasons-we-love-undertale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4308836a-a9ba-4fcf-aeac-417b444c0514/sm/video_thumbnail_12890938-1454527733.png","duration":62,"publication_date":"2016-02-04T06:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-fine-bros-evil-or-not-sidescrollers-020316","changefreq":"weekly","video":[{"title":"S1:E214 - The Fine Bros: Evil or Not? | SideScrollers 02/03/16","description":"This week Craig opens up discussion on The Fine Bros controversy and whether or not the internet uproar will really make a different in their bottom line... now with more graphs!\r\n\r\n01:25 - Chad falls asleep while peeing\r\n03:28 - Sam makes fun of a community member\r\n05:22 - SOCKS!\r\n8:00 - The Fine Bros\r\n19:00 - The Top 8 Games I Would Eat\r\n21:20 - The SideScroller Newsdesk\r\n32:10 - Twitter Time!\r\n39:40 - New Week's Question of the Week\r\n\r\nSend us questions for Live Tweets using #SideScrollers on Twitter!\r\nSend Sam Newsdesk stories! Sam@ScrewAttack.com\r\nSend us your QotW answers! Live@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/the-fine-bros-evil-or-not-sidescrollers-020316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/612626c7-2f28-419b-a1c9-a5e68351fd15/sm/video_thumbnail_12891019-1454688322.jpg","duration":2475,"publication_date":"2016-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-1-show-whats-the-best-90s-action-film","changefreq":"weekly","video":[{"title":"S1:E923 - The #1 Show - What's the Best 90's Action Film?","description":"Check out the first episode of \"The #1 Show\" debuting soon on ScrewAttack! After you watch the episode make sure to vote on who was right this week and gets their name immortalized on the bland, grey wall of win: http://strawpoll.me/6664017","player_loc":"https://roosterteeth.com/embed/the-1-show-whats-the-best-90s-action-film","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e12334d8-787d-43a4-aad2-f803672a2d41/sm/video_thumbnail_12890683-1454005512.jpg","duration":873,"publication_date":"2016-01-28T10:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-mobile-gaming","changefreq":"weekly","video":[{"title":"S1:E63 - Reasons We HATE Mobile Gaming","description":"Tell us all the reasons you HATE mobile games in the comments! And follow Evil Craig on twitter - @XxEVILCRAIGxX","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-mobile-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/916351c4-7aa3-44e5-9a81-eb85e16f718d/sm/video_thumbnail_12890646-1453927526.png","duration":78,"publication_date":"2016-01-28T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-love-mobile-gaming","changefreq":"weekly","video":[{"title":"S1:E2 - 14 Reasons We LOVE Mobile Gaming","description":"Tell us why you LOVE mobile gaming in the comments below!","player_loc":"https://roosterteeth.com/embed/14-reasons-we-love-mobile-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c69e2e06-3bbb-40d2-8314-1b98991dc103/sm/video_thumbnail_12890645-1453927521.png","duration":50,"publication_date":"2016-01-28T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chads-crazy-past-sidescrollers-extended-cut-012716","changefreq":"weekly","video":[{"title":"S1:E922 - Chad's Crazy Past | SideScrollers Extended Cut 01/27/16","description":"S1:E922 - Chad's Crazy Past | SideScrollers Extended Cut 01/27/16","player_loc":"https://roosterteeth.com/embed/chads-crazy-past-sidescrollers-extended-cut-012716","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37608ff3-9141-4495-994e-844b321498b7/sm/video_thumbnail_12890666-1453953642.jpg","duration":552,"publication_date":"2016-01-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/8-movie-reviews-in-10-minutes-sidescrollers-podcast","changefreq":"weekly","video":[{"title":"S1:E213 - 8 Movie Reviews in 10 Minutes | SideScrollers Podcast","description":"On his way to and from Australia for RTX Australia, Craig had a chance to catch up on A LOT of movies. On today's show he gives you his review of all of them.\r\n\r\nToday's rundown:\r\n00:00 - Hi, this is a podcast\r\n11:55 - Craig's Movie Mini-Reviews\r\n25:56 - g1 Video Spotlight - \"How I Got My Atari 2600\"\r\n29:00 - The SideScrollers Newdesk\r\n38:14 - Twitter Time!!!\r\n45:04 - The Best Idea Ever in History\r\n47:00 - Question of the Week\r\n49:20 - Wrap it up/Next Week's Question\r\n\r\nSend us questions for Live Tweets using #SideScrollers on Twitter!\r\nSend Sam Newsdesk stories! Sam@ScrewAttack.com\r\nSend us your QotW answers! Live@ScrewAttack.com\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/8-movie-reviews-in-10-minutes-sidescrollers-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc148677-0f13-4b5b-98b1-84ec98ed7b93/sm/video_thumbnail_12890665-1453953342.jpg","duration":3051,"publication_date":"2016-01-27T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/series-preview-the-1-show-pizza","changefreq":"weekly","video":[{"title":"S1:E921 - SERIES PREVIEW - The #1 Show - Pizza","description":"We have a new show launching this Monday called \"The #1 Show\" and we wanted you guys to take a sneak peek of a test we shot. If you enjoyed it please let us know.\r\n\r\nEvery week we'll have a new stupid topic that we feel passionate about with the debut episode being about \"90's Action Movies\".\r\n\r\nIf you'd like to vote on \"who is right\" for this test episode you can here:http://strawpoll.me/6656113","player_loc":"https://roosterteeth.com/embed/series-preview-the-1-show-pizza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23b3e4b4-622f-4099-8b2c-c0043d5b6161/sm/video_thumbnail_12890648-1453931339.jpg","duration":802,"publication_date":"2016-01-27T13:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-mascots-in-history","changefreq":"weekly","video":[{"title":"S1:E169 - Top 10 Worst Mascots in History","description":"We countdown the best... now the WORST!\r\n\r\nAVGN Adventures for $1.99! Disorder for $0.99!? Check out these deals here:\r\n\r\nAVGN Adventures:\r\nhttps://www.humblebundle.com/store/p/angryvideogamenerdadventures_storefront\r\n\r\nDisorder:\r\nhttps://www.humblebundle.com/store/p/disorder_storefront\r\n\r\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! ","player_loc":"https://roosterteeth.com/embed/top-10-worst-mascots-in-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/115d636a-a577-4b7b-877b-2cd49d837b6c/sm/video_thumbnail_12890548-1453736719.jpg","duration":499,"publication_date":"2016-01-25T07:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-grand-theft-auto-v-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E62 - Reasons We HATE Grand Theft Auto V w/ EVIL CRAIG","description":"Tell us why you HATE Grand Theft Auto V in the comments below!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-grand-theft-auto-v-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13b9c841-5a53-4362-b654-42e35f215e5a/sm/video_thumbnail_12890133-1452811519.png","duration":90,"publication_date":"2016-01-21T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nicks-dark-legacy-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E920 - Nick's Dark Legacy | SideScrollers Extended Cut","description":"S1:E920 - Nick's Dark Legacy | SideScrollers Extended Cut","player_loc":"https://roosterteeth.com/embed/nicks-dark-legacy-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92b3a21f-e921-4209-b781-bce88a35fbad/sm/video_thumbnail_12890356-1453330490.jpg","duration":597,"publication_date":"2016-01-20T18:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/its-time-for-a-deathcast-sidescrollers-012016","changefreq":"weekly","video":[{"title":"S1:E212 - IT'S TIME FOR A DEATHCAST!!! | SideScrollers 01/20/16","description":"Vote for our Achievement Hunter buddies in the Shortys! \r\nhttp://shortyawards.com/#vote-now\r\n\r\nEveryone on SideScrollers this week works on Death Battle. Let's talk about it!\r\n\r\nSend us questions for Live Tweets using #SideScrollers on Twitter!\r\nSend Sam Newsdesk stories! Sam@ScrewAttack.com\r\nSend us your QotW answers! Live@ScrewAttack.com\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/its-time-for-a-deathcast-sidescrollers-012016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04830362-0ca3-44c4-94a9-cba7d39f2a8c/sm/video_thumbnail_12890361-1453336606.jpg","duration":2490,"publication_date":"2016-01-20T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-mario-luigi-paper-jam-good","changefreq":"weekly","video":[{"title":"S1:E35 - Is Mario & Luigi Paper Jam Good?","description":"The Dream team Mario brothers cross over with their paper pushing doppelgangers to once again save the princess. But, is it good?\r\n ","player_loc":"https://roosterteeth.com/embed/is-mario-luigi-paper-jam-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/581d5129-0c9b-4622-b968-7cc81701be15/sm/video_thumbnail_12890355-1453328449.png","duration":114,"publication_date":"2016-01-20T14:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-best-mascots-in-video-games","changefreq":"weekly","video":[{"title":"S1:E168 - Top 10 Best Mascots in Video Games","description":"The most recognizable video game mascots. Let's find out which are the most famous!","player_loc":"https://roosterteeth.com/embed/top-10-best-mascots-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e9d6309-4590-4a21-ac79-fc8b88680266/sm/video_thumbnail_12890284-1453157314.jpg","duration":374,"publication_date":"2016-01-18T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-yoshi","changefreq":"weekly","video":[{"title":"S1:E43 - Five Fun Facts - Yoshi","description":"This time Mitch fills us in on our favorite binge eating dinosaur, Yoshi!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-yoshi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d0892c2-e287-4b16-8c28-c9e9f8490165/sm/video_thumbnail_12890274-1453150244.jpg","duration":269,"publication_date":"2016-01-18T12:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/meet-deejay-sidescrollers-extended-cut-011316","changefreq":"weekly","video":[{"title":"S1:E919 - Meet DeeJay! | SideScrollers Extended Cut 01/13/16","description":"S1:E919 - Meet DeeJay! | SideScrollers Extended Cut 01/13/16","player_loc":"https://roosterteeth.com/embed/meet-deejay-sidescrollers-extended-cut-011316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e69947c9-1069-40c2-860a-2484fa51727c/sm/video_thumbnail_12890118-1452793237.jpg","duration":593,"publication_date":"2016-01-14T09:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-super-smash-bros-wii-u-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E61 - Reasons We HATE Super Smash Bros. Wii U w/ EVIL CRAIG","description":"Tell us why you HATE Smash Bros. in the comments below!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-super-smash-bros-wii-u-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70a96f09-1489-4990-9410-4edfd3d10dad/sm/video_thumbnail_12890025-1452638237.png","duration":111,"publication_date":"2016-01-14T06:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/20-reasons-we-love-super-smash-bros-wii-u","changefreq":"weekly","video":[{"title":"S1:E3 - 20 Reasons We LOVE Super Smash Bros. Wii U","description":"Tell us why you LOVE Super Smash Bros. in the comments below!","player_loc":"https://roosterteeth.com/embed/20-reasons-we-love-super-smash-bros-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5486f5c-fbff-441e-b732-d3b9809f710b/sm/video_thumbnail_12890026-1452638244.png","duration":72,"publication_date":"2016-01-14T06:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-ridiculous-6-the-worst-adam-sandler-movie-sidescrollers-011316","changefreq":"weekly","video":[{"title":"S1:E211 - Is Ridiculous 6 The WORST Adam Sandler Movie? | SideScrollers 01/13/16","description":"This week Chad, Craig and Sam dig into what some are saying is not only the worst Adam Sandler film but one of the worst films ever!\r\n\r\nCome see Lazer Team with ScrewAttack !\r\nhttps://www.tugg.com/events/82702\r\n\r\nSend us questions for Live Tweets using #SideScrollers on Twitter!\r\nSend Sam Newsdesk stories! Sam@ScrewAttack.com\r\nSend us your QotW answers! Live@ScrewAttack.com\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/is-ridiculous-6-the-worst-adam-sandler-movie-sidescrollers-011316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74d0f1bc-8d99-43aa-ac40-d00ab63ad045/sm/video_thumbnail_12890100-1452736812.jpg","duration":3346,"publication_date":"2016-01-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/announcing-g1-of-the-year-2015","changefreq":"weekly","video":[{"title":"S1:E918 - ANNOUNCING g1 of the YEAR 2015!","description":"S1:E918 - ANNOUNCING g1 of the YEAR 2015!","player_loc":"https://roosterteeth.com/embed/announcing-g1-of-the-year-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdd8b210-e370-4736-a853-e5243cd1b89e/sm/video_thumbnail_12889687-1452555781.jpg","duration":157,"publication_date":"2016-01-11T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drugs-man-sidescrollers-extended-cut-010616","changefreq":"weekly","video":[{"title":"S1:E917 - Drugs, Man! | SideScrollers Extended Cut 01/06/16","description":"S1:E917 - Drugs, Man! | SideScrollers Extended Cut 01/06/16","player_loc":"https://roosterteeth.com/embed/drugs-man-sidescrollers-extended-cut-010616","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e1c1939-2be8-4140-99dd-e3fca9e43d07/sm/video_thumbnail_12889718-1452122235.jpg","duration":776,"publication_date":"2016-01-06T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-capcom-games","changefreq":"weekly","video":[{"title":"S1:E167 - Top 10 Capcom Games","description":"The best Capcom games ever, but which one is the best! Let´s find out!\r\n\r\nHappy New Year! Let's make 2016 the best ScrewAttack year yet! We know our Top 10 is much different than yours so let us know what yours is in the comments!\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-capcom-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/765641a8-146b-4ba9-9400-3db781e0568b/sm/video_thumbnail_12889611-1451938126.jpg","duration":446,"publication_date":"2016-01-04T12:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-secret-alt-ending-of-shao-kahn-vs-m-bison","changefreq":"weekly","video":[{"title":"E:E14 - SECRET ENDING to Shao Kahn VS M. Bison","description":"What happens when the hammer doesn't come down?","player_loc":"https://roosterteeth.com/embed/death-battle-extras-secret-alt-ending-of-shao-kahn-vs-m-bison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffe549a1-b859-45b2-9b2a-84c6c98bc45d/sm/2031125-1462314809968-ShaoKahnBisonEndingThumb.jpg","duration":43,"publication_date":"2016-01-02T04:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-fallout-4-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E60 - Reasons We HATE Fallout 4 w/ Evil Craig","description":"Tell me why you HATE Fallout 4 in the comments below! And follow me on Twitter - @XxEVILCRAIGxX","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-fallout-4-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c556ed0-f0d5-4adb-bc8b-111c8a6e93c0/sm/video_thumbnail_12889049-1451521458.png","duration":109,"publication_date":"2015-12-31T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-fallout-4","changefreq":"weekly","video":[{"title":"S1:E4 - 16 Reasons We LOVE Fallout 4","description":"Tell us why you LOVE Fallout 4 in the comments below!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-fallout-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e4976ff-48f1-4428-98c3-28537f53f1b2/sm/video_thumbnail_12889048-1451521430.png","duration":83,"publication_date":"2015-12-31T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pet-sounds-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E916 - Pet Sounds | SideScrollers Extended Cut","description":"S1:E916 - Pet Sounds | SideScrollers Extended Cut","player_loc":"https://roosterteeth.com/embed/pet-sounds-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63294eab-108c-469f-9d52-9acce70cbdd2/sm/video_thumbnail_12889050-1451521888.jpg","duration":409,"publication_date":"2015-12-30T16:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2015-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E915 - The 2015 ScrewAttack Royal Rumble","description":"S1:E915 - The 2015 ScrewAttack Royal Rumble","player_loc":"https://roosterteeth.com/embed/the-2015-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4571d7c3-e378-4f8b-8005-6b764bb53343/sm/video_thumbnail_12889040-1451499947.jpg","duration":1725,"publication_date":"2015-12-30T10:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-master-hand-vs-polygon-man-smash-bros-vs-playstation-all-stars","changefreq":"weekly","video":[{"title":"S1:E27 - One Minute Melee - Master Hand Vs Polygon Man (Smash Bros vs PlayStation All-Stars)","description":"S1:E27 - One Minute Melee - Master Hand Vs Polygon Man (Smash Bros vs PlayStation All-Stars)","player_loc":"https://roosterteeth.com/embed/one-minute-melee-master-hand-vs-polygon-man-smash-bros-vs-playstation-all-stars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e43ace46-94c5-4ca5-860f-c046ea386ab5/sm/video_thumbnail_12889039-1451499848.jpg","duration":147,"publication_date":"2015-12-30T10:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattacks-top-10-favorite-games-of-2015","changefreq":"weekly","video":[{"title":"S1:E166 - ScrewAttack's Top 10 Favorite Games of 2015","description":"S1:E166 - ScrewAttack's Top 10 Favorite Games of 2015","player_loc":"https://roosterteeth.com/embed/screwattacks-top-10-favorite-games-of-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8c87204-1d11-4026-bba1-84c9e9d5dbc4/sm/video_thumbnail_12889038-1451499784.jpg","duration":564,"publication_date":"2015-12-30T10:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/samus-nutty-manga-story-part-2","changefreq":"weekly","video":[{"title":"S1:E18 - Samus' Nutty Manga Story (Part 2)","description":"S1:E18 - Samus' Nutty Manga Story (Part 2)","player_loc":"https://roosterteeth.com/embed/samus-nutty-manga-story-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6c3434f-716b-45be-8323-874456bda73f/sm/video_thumbnail_12889037-1451499501.jpg","duration":369,"publication_date":"2015-12-30T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-hate-mega-man-x-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E59 - 18 Reasons We HATE Mega Man X with Evil Craig","description":"S1:E59 - 18 Reasons We HATE Mega Man X with Evil Craig","player_loc":"https://roosterteeth.com/embed/18-reasons-we-hate-mega-man-x-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8264b15e-3a28-49b7-97fc-8705a0a01175/sm/video_thumbnail_12889036-1451499446.png","duration":80,"publication_date":"2015-12-30T10:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/only-in-japan-sidescrollers-extended-cut-122315","changefreq":"weekly","video":[{"title":"S1:E914 - Only in Japan | SideScrollers Extended Cut 12/23/15","description":"S1:E914 - Only in Japan | SideScrollers Extended Cut 12/23/15","player_loc":"https://roosterteeth.com/embed/only-in-japan-sidescrollers-extended-cut-122315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7aa58b4-b1ab-4bb7-a6db-13d3fb692e47/sm/video_thumbnail_12888725-1450921042.jpg","duration":1167,"publication_date":"2015-12-23T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/kentucky-fried-christmas-sidescrollers-122315","changefreq":"weekly","video":[{"title":"S1:E210 - Kentucky Fried Christmas | SideScrollers 12/23/15","description":"On Today’s Episode we’re talking about holiday retail, Austin makes us eat the worst thing on the planet and we get a harsh lesson in economics. This is SideScrollers on ScrewAttack!\r\n\r\nSend us questions for Live Tweets using #SideScrollers on Twitter!\r\nSend Sam Newsdesk stories! Sam@ScrewAttack.com\r\nSend us your QotW answers! Live@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/kentucky-fried-christmas-sidescrollers-122315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97502e65-1078-4e89-a010-ee32dae0549e/sm/video_thumbnail_12888724-1450918412.jpg","duration":3784,"publication_date":"2015-12-23T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-headlines-of-2016-nintendo-nx-vr-sonic-maker","changefreq":"weekly","video":[{"title":"S1:E165 - Top 10 Headlines of 2016 (Nintendo NX, VR, Sonic Maker??)","description":"Nintendo NX, VR, Sonic Maker??? Will this headlines come true? Let's find out.\r\n\r\nWe hope you enjoy our ridiculous predictions for 2016. Seriously, they're all gonna happen. ALL OF THEM... mwhahahahahahaha\r\n\r\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! \r\n\r\nFrom the annotations (for mobile viewers):\r\nMore ScrewAttack Top 10 videos - https://www.youtube.com/playlist?list=PL093A0D4B558C61E5\r\n\r\nNew Merch Store - http://store.roosterteeth.com/collections/screwattack\r\n\r\nMystery Video - https://www.youtube.com/watch?v=nWZAbGJS_ls","player_loc":"https://roosterteeth.com/embed/top-10-headlines-of-2016-nintendo-nx-vr-sonic-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe63c797-11c3-435f-a10a-b5979e7714de/sm/video_thumbnail_12888277-1450457201.jpg","duration":414,"publication_date":"2015-12-18T08:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-mega-man-x","changefreq":"weekly","video":[{"title":"S1:E58 - Reasons We HATE Mega Man X","description":"Tell us why you HATE Mega Man in the comments below!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-mega-man-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1459d13f-4e4c-498c-9802-5b083dc522ee/sm/video_thumbnail_12888184-1450368002.png","duration":80,"publication_date":"2015-12-17T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fairly-odd-relatives","changefreq":"weekly","video":[{"title":"S1:E913 - Fairly Odd Relatives","description":"S1:E913 - Fairly Odd Relatives","player_loc":"https://roosterteeth.com/embed/fairly-odd-relatives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a663aeb5-3f0a-4c5e-8d1c-71d751df742f/sm/video_thumbnail_12888166-1450326909.jpg","duration":1177,"publication_date":"2015-12-16T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cookie-doh-sidescrollers-121615","changefreq":"weekly","video":[{"title":"S1:E209 - Cookie D'OH! | SideScrollers 12/16/15","description":"We're big fans of Smash 4, we play it a lot, and the guys want to talk about it! ALSO! What's going on in North Carolina? Seriously?\r\n\r\nSend us questions for Live Tweets! Use #SideScrollers on Twitter!\r\nSend us answers for Question of the Week!\r\nLive@ScrewAttack","player_loc":"https://roosterteeth.com/embed/cookie-doh-sidescrollers-121615","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/265ccd09-5a61-4b7b-994a-46d760b31064/sm/video_thumbnail_12888220-1450384408.jpg","duration":3524,"publication_date":"2015-12-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-sakuya-izayoi-vs-dio-brando","changefreq":"weekly","video":[{"title":"S1:E26 - One Minute Melee - Sakuya Izayoi vs Dio Brando","description":"S1:E26 - One Minute Melee - Sakuya Izayoi vs Dio Brando","player_loc":"https://roosterteeth.com/embed/one-minute-melee-sakuya-izayoi-vs-dio-brando","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47201d6e-1a8a-42a6-b9fa-8ca108ce38e2/sm/video_thumbnail_12888150-1450306569.PNG","duration":217,"publication_date":"2015-12-16T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-dante-vs-ragna-the-bloodedge","changefreq":"weekly","video":[{"title":"S1:E25 - One Minute Melee - Dante vs Ragna the Bloodedge","description":"S1:E25 - One Minute Melee - Dante vs Ragna the Bloodedge","player_loc":"https://roosterteeth.com/embed/one-minute-melee-dante-vs-ragna-the-bloodedge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a606d1f9-4f4e-448f-8136-b1da0a0506f1/sm/video_thumbnail_12888149-1450306363.PNG","duration":138,"publication_date":"2015-12-16T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-jotaro-kujo-vs-kenshiro-jojos-bizarre-adventure-vs-fist-of-the-north-star","changefreq":"weekly","video":[{"title":"S1:E24 - One Minute Melee - Jotaro Kujo Vs Kenshiro (JoJo's Bizarre Adventure vs Fist of the North Star)","description":"S1:E24 - One Minute Melee - Jotaro Kujo Vs Kenshiro (JoJo's Bizarre Adventure vs Fist of the North Star)","player_loc":"https://roosterteeth.com/embed/one-minute-melee-jotaro-kujo-vs-kenshiro-jojos-bizarre-adventure-vs-fist-of-the-north-star","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b58fbd5c-2f28-46f1-a3b4-a195204d0ac3/sm/video_thumbnail_12888146-1450305549.PNG","duration":188,"publication_date":"2015-12-16T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-ryu-vs-jin-street-fighter-vs-tekken","changefreq":"weekly","video":[{"title":"S1:E23 - One Minute Melee - Ryu Vs Jin (Street Fighter vs Tekken)","description":"S1:E23 - One Minute Melee - Ryu Vs Jin (Street Fighter vs Tekken)","player_loc":"https://roosterteeth.com/embed/one-minute-melee-ryu-vs-jin-street-fighter-vs-tekken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/897f72ab-b20a-45bb-8d6f-29bfacce3e76/sm/video_thumbnail_12888145-1450305308.PNG","duration":148,"publication_date":"2015-12-16T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-wario-vs-knuckles-mario-franchise-vs-sonic-franchise","changefreq":"weekly","video":[{"title":"S1:E22 - One Minute Melee - Wario Vs Knuckles (Mario Franchise vs Sonic Franchise)","description":"S1:E22 - One Minute Melee - Wario Vs Knuckles (Mario Franchise vs Sonic Franchise)","player_loc":"https://roosterteeth.com/embed/one-minute-melee-wario-vs-knuckles-mario-franchise-vs-sonic-franchise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b27d20c-3e9e-402e-8d25-033424e2639d/sm/video_thumbnail_12888143-1450304385.PNG","duration":201,"publication_date":"2015-12-16T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-naruto-vs-luffy","changefreq":"weekly","video":[{"title":"S1:E21 - One Minute Melee - Naruto Vs Luffy","description":"S1:E21 - One Minute Melee - Naruto Vs Luffy","player_loc":"https://roosterteeth.com/embed/one-minute-melee-naruto-vs-luffy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bde90f3-1f54-4281-9cee-ab2d0abd613e/sm/video_thumbnail_12888142-1450304054.PNG","duration":170,"publication_date":"2015-12-16T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-scorpion-vs-ghost-rider-mortal-kombat-vs-marvel","changefreq":"weekly","video":[{"title":"S1:E20 - One Minute Melee - Scorpion Vs Ghost Rider (Mortal Kombat vs Marvel)","description":"S1:E20 - One Minute Melee - Scorpion Vs Ghost Rider (Mortal Kombat vs Marvel)","player_loc":"https://roosterteeth.com/embed/one-minute-melee-scorpion-vs-ghost-rider-mortal-kombat-vs-marvel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/518b32d2-c2ba-4d9e-8e64-c18b17d3a798/sm/video_thumbnail_12888141-1450303764.PNG","duration":166,"publication_date":"2015-12-16T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-32","changefreq":"weekly","video":[{"title":"S2:E32 - Pokemon VS Digimon","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69d8c684-2ea9-427e-b2fd-090a7d5f2cbd/sm/video_thumbnail_12888136-1450299392.jpg","duration":1212,"publication_date":"2015-12-16T12:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-wrestling-games-with-wwes-xavier-woods","changefreq":"weekly","video":[{"title":"S1:E164 - Top 5 Wrestling Games with WWE's Xavier Woods!","description":"These are the Top 10 Wrestling games w/ specical guest Xavier Woods!","player_loc":"https://roosterteeth.com/embed/top-5-wrestling-games-with-wwes-xavier-woods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/361d420b-1db5-4597-ae95-dfad6e062e2f/sm/video_thumbnail_12888134-1450297762.PNG","duration":207,"publication_date":"2015-12-16T12:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-wii-u-games","changefreq":"weekly","video":[{"title":"S1:E163 - Top 10 Wii U Games!","description":"Here are the Top 10 games made for Wii U!","player_loc":"https://roosterteeth.com/embed/top-10-wii-u-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7fb5132-6e97-40d0-b925-4e8073546d35/sm/video_thumbnail_12888132-1450297093.PNG","duration":473,"publication_date":"2015-12-16T12:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-py-btche-in-gaming-screwattack","changefreq":"weekly","video":[{"title":"S1:E162 - Top 10 P#$$y @$$ B!tche$ in Gaming | ScrewAttack!","description":"These are the Top 10 B!tches in gaming!","player_loc":"https://roosterteeth.com/embed/top-10-py-btche-in-gaming-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9668927f-5dfd-42a9-993e-65231ec5e7fa/sm/video_thumbnail_12888126-1450296315.PNG","duration":412,"publication_date":"2015-12-16T12:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-big-names-that-fell-off-screwattack","changefreq":"weekly","video":[{"title":"S1:E161 - Top 10 Big Names That Fell Off | ScrewAttack!","description":"Here's ScrewAttack's Top 10 Big Names that Fell Off","player_loc":"https://roosterteeth.com/embed/top-10-big-names-that-fell-off-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8087bef-2025-472b-943f-0f3a3f58b64c/sm/video_thumbnail_12888125-1450296027.PNG","duration":406,"publication_date":"2015-12-16T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-beat-em-ups-in-video-games-screwattack","changefreq":"weekly","video":[{"title":"S1:E160 - Top 10 Beat 'em Ups in Video Games | ScrewAttack!","description":"Here's ScrewAttack's Top 10 Beat'em Ups in gaming.","player_loc":"https://roosterteeth.com/embed/top-10-beat-em-ups-in-video-games-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86292c73-d8fd-440c-84b5-1304bbe9630f/sm/video_thumbnail_12888124-1450295850.PNG","duration":363,"publication_date":"2015-12-16T11:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-gamecube-games-screwattack","changefreq":"weekly","video":[{"title":"S1:E159 - Top 10 GameCube Games | ScrewAttack!","description":"Here are ScrewAttack's Top 10 games that were made for the Gamecube!","player_loc":"https://roosterteeth.com/embed/top-10-gamecube-games-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b54fbecd-fca0-4d26-b8d0-b4f4c701f118/sm/video_thumbnail_12888122-1450294963.PNG","duration":398,"publication_date":"2015-12-16T11:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-love-princess-peach","changefreq":"weekly","video":[{"title":"S1:E7 - 14 Reasons We LOVE Princess Peach","description":"Tell us why you LOVE Princess Peach in the comments below!","player_loc":"https://roosterteeth.com/embed/14-reasons-we-love-princess-peach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1420ccff-4f4d-47df-991b-3eea9195ad06/sm/video_thumbnail_12888121-1450294469.PNG","duration":57,"publication_date":"2015-12-16T11:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-princess-peach","changefreq":"weekly","video":[{"title":"S1:E57 - 13 Reasons We HATE Princess Peach","description":"Here's all the reasons why Evil Craig HATES Princess Peach!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-princess-peach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5964578e-e00c-44bb-bb00-5f95eb31a582/sm/video_thumbnail_12888120-1450294089.PNG","duration":81,"publication_date":"2015-12-16T11:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-can-beat-superman-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E17 - Who Can Beat Superman?? | The Desk of DEATH BATTLE","description":"Is there actually someone capable of killing THE Superman!? Find out on this episode of Desk of DEATHBATTLE!","player_loc":"https://roosterteeth.com/embed/who-can-beat-superman-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8296a5e-453a-49a5-8c4d-b934d93557fa/sm/video_thumbnail_12888118-1450293530.PNG","duration":233,"publication_date":"2015-12-16T11:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/donkey-kong-switched-brains-with-a-robot-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E16 - Donkey Kong Switched Brains with a Robot??? | The Desk of DEATH BATTLE!","description":"Remember that time Donkey Kong switched brains with a Robot!? ","player_loc":"https://roosterteeth.com/embed/donkey-kong-switched-brains-with-a-robot-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3573f1-a807-46ff-91ca-85e019d61247/sm/video_thumbnail_12888117-1450292906.PNG","duration":210,"publication_date":"2015-12-16T11:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/donkey-kongs-derpy-country-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E15 - Donkey Kong's Derpy Country | The Desk of DEATH BATTLE!","description":"Here's all the Donley Kong research that didn't make it into DeathBattle!","player_loc":"https://roosterteeth.com/embed/donkey-kongs-derpy-country-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86920ea3-6d05-4756-9c1c-b94500ed6e6e/sm/video_thumbnail_12888116-1450292672.PNG","duration":241,"publication_date":"2015-12-16T11:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/spider-man-killed-mary-jane-with-cancer-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E14 - Spider-Man KILLED Mary Jane with Cancer | Desk of DEATH BATTLE","description":"Here's all the Spider-man research that didn't make it into Deathbattle!","player_loc":"https://roosterteeth.com/embed/spider-man-killed-mary-jane-with-cancer-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9fa36b4-7a84-44aa-9fbb-c444b2d48e83/sm/video_thumbnail_12888115-1450292387.PNG","duration":440,"publication_date":"2015-12-16T10:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-nintendo","changefreq":"weekly","video":[{"title":"S1:E42 - Five Fun Facts - Nintendo","description":"Here are five fun facts you may have not known about Nintendo!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bc751ec-56d6-49b2-88cd-55b23b6332dd/sm/video_thumbnail_12888107-1450287553.PNG","duration":278,"publication_date":"2015-12-16T09:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-bayonetta","changefreq":"weekly","video":[{"title":"S1:E41 - Five Fun Facts - Bayonetta","description":"Here are five fun facts you may have not known about Bayonetta!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-bayonetta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8555ca81-3c8b-42fd-bfa7-2639fcaff51e/sm/video_thumbnail_12888105-1450287343.PNG","duration":251,"publication_date":"2015-12-16T09:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-uncharted","changefreq":"weekly","video":[{"title":"S1:E40 - Five Fun Facts - Uncharted","description":"Here are five fun facts you may have not known about Uncharted","player_loc":"https://roosterteeth.com/embed/five-fun-facts-uncharted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff164cd8-c51e-458c-9568-4e94f811445d/sm/video_thumbnail_12888104-1450287181.PNG","duration":227,"publication_date":"2015-12-16T09:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-yoshis-island-2","changefreq":"weekly","video":[{"title":"S1:E39 - Five Fun Facts - Yoshi's Island","description":"Here are five fun facts you may have not known about Yoshi's Island","player_loc":"https://roosterteeth.com/embed/five-fun-facts-yoshis-island-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c80476e1-1951-4905-a89e-b3840de8c338/sm/video_thumbnail_12888103-1450286957.PNG","duration":277,"publication_date":"2015-12-16T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-yoshis-island","changefreq":"weekly","video":[{"title":"S1:E38 - Five Fun Facts - Yoshi's Island","description":"Here are five fun facts you may have not known about Yoshi's Island","player_loc":"https://roosterteeth.com/embed/five-fun-facts-yoshis-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12e819c5-ec58-4d77-81b3-d242f87d7aac/sm/video_thumbnail_12888103-1450286957.PNG","duration":277,"publication_date":"2015-12-16T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-super-mario-bros-3","changefreq":"weekly","video":[{"title":"S1:E37 - Five Fun Facts - Super Mario Bros 3","description":"Here are five fun facts you may have not known about Super Mario Bros. 3","player_loc":"https://roosterteeth.com/embed/five-fun-facts-super-mario-bros-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72b25d86-59e7-485c-84bc-958a4b56daaa/sm/video_thumbnail_12888101-1450286658.PNG","duration":208,"publication_date":"2015-12-16T09:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-conkers-bad-fur-day","changefreq":"weekly","video":[{"title":"S1:E36 - Five Fun Facts - Conker's Bad Fur Day","description":"Here are five fun facts you may have not known about Conker's Bad Fur Day!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-conkers-bad-fur-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2366bdf-3f86-4b35-afe6-2505a74fc556/sm/video_thumbnail_12888100-1450286424.PNG","duration":164,"publication_date":"2015-12-16T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-sonic-the-hedgehog","changefreq":"weekly","video":[{"title":"S1:E35 - FIVE FUN FACTS about Sonic The Hedgehog","description":"Here are five fun facts you may have not known about Sonic; The Hedgehog!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-sonic-the-hedgehog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa39ca80-8ecf-4535-b969-2b0636fcc20a/sm/video_thumbnail_12888093-1450284604.PNG","duration":216,"publication_date":"2015-12-16T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-splatoon","changefreq":"weekly","video":[{"title":"S1:E34 - Five Fun Facts - Splatoon","description":"Here are five fun facts you may have not known about Splatoon!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-splatoon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed0d190d-7b94-4959-8e5e-9e3bc0e11ff3/sm/video_thumbnail_12888091-1450284410.PNG","duration":248,"publication_date":"2015-12-16T08:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-fallout","changefreq":"weekly","video":[{"title":"S1:E33 - Five Fun Facts - Fallout","description":"Here are five fun facts you may have not known about the Fallout franchise!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-fallout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d868381a-d6db-47f6-aa85-a883fc885069/sm/video_thumbnail_12888090-1450284126.PNG","duration":240,"publication_date":"2015-12-16T08:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-worms","changefreq":"weekly","video":[{"title":"S1:E32 - Five Fun Facts - Worms","description":"Here are Five Fun Facts you may have not known about Worms.","player_loc":"https://roosterteeth.com/embed/five-fun-facts-worms","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/019fcba2-9570-41ab-9a8e-d540ac9caa04/sm/video_thumbnail_12888089-1450283651.PNG","duration":272,"publication_date":"2015-12-16T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-more-fun-facts-batman-arkham-series","changefreq":"weekly","video":[{"title":"S1:E31 - Five MORE Fun Facts - Batman Arkham Series","description":"Tell us why you love or hate Batman in the comments below!","player_loc":"https://roosterteeth.com/embed/five-more-fun-facts-batman-arkham-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/216de68b-b534-4e4d-8ceb-ab529c1c36b9/sm/video_thumbnail_12888088-1450283377.PNG","duration":184,"publication_date":"2015-12-16T08:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-batman-arkham-series","changefreq":"weekly","video":[{"title":"S1:E30 - Five Fun Facts - Batman Arkham Series","description":"Tell us why you love or hate the Batman Arkham series in the comments below!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-batman-arkham-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c80ad0d8-8328-4530-aa77-1e8e08ae5806/sm/video_thumbnail_12888087-1450283155.PNG","duration":191,"publication_date":"2015-12-16T08:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-destiny-the-taken-king-good","changefreq":"weekly","video":[{"title":"S1:E34 - Is Destiny The Taken King Good?","description":"Destiny's newest expansion is out, BUT! Is it good? ","player_loc":"https://roosterteeth.com/embed/is-destiny-the-taken-king-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1144d65-bc5c-4d93-bc9c-bca3c6fbb336/sm/video_thumbnail_12888015-1450201489.PNG","duration":128,"publication_date":"2015-12-15T09:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2017-l-e-t-s-date-some-dads-dream-daddy-a-daddy-dating-simulator","changefreq":"weekly","video":[{"title":"2017:E10 - LET'S DATE SOME DADS - Dream Daddy: A Daddy Dating Simulator","description":"The moment we've all been waiting for has finally arrived: it's time to bone some hot dads.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2017-l-e-t-s-date-some-dads-dream-daddy-a-daddy-dating-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f4e6b73-6a35-494a-9c18-2e2e5d105ec7/sm/24363-1500589582216-hq720.jpg","duration":7682,"publication_date":"2017-07-20T23:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-4","changefreq":"weekly","video":[{"title":"2017:E136 - N64 Classic REAL? + Kingdom Hearts 3 to Switch? + PUBG Streamer Taunts Devs","description":"2017:E136 - N64 Classic REAL? + Kingdom Hearts 3 to Switch? + PUBG Streamer Taunts Devs","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2729cb6b-d794-46b3-b5ff-5b8bfe3c9951/sm/710924-1500582800175-Roundup_Thumbnail_Template.jpg","duration":452,"publication_date":"2017-07-20T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ubisoft-making-its-own-battle-royales","changefreq":"weekly","video":[{"title":"2017:E227 - Ubisoft Wants to STEAL Player Unknown's Battlegrounds?","description":"Player Unknown's Battlegrounds is making a real splash in the online gaming scene. So much so that Ubisoft wants to get in on all that sweet battle royale money for their own games.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ubisoft-making-its-own-battle-royales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6403dd5d-e304-4aa0-939f-0e6b0194a7ac/sm/24363-1500502358013-thumbnail.jpg","duration":360,"publication_date":"2017-07-19T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-5","changefreq":"weekly","video":[{"title":"2017:E135 - Nintendo Voice Chat is LIVE + Kingdom Hearts 3 is CANON + Winnie the Pooh BANNED","description":"Nintendo's voice chat solution is finally here! Kingdom Hearts 3 is officially Toy Story canon. Winnie the Pooh is banned in China because he looks like the President. Plus, Days Gone has a dedicated team for dynamic events, Ghost Recon Wildlands is still on top for 2017, Evil Within 2 has a new trailer, some parts of Final Fantasy VII Remake are ahead of Kingdom Hearts III, Wolf Among Us is getting a new season, we may get to meet Chewbacca's wife, and a radio station is going old school to fight a ransomware attack.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b3e061e-8bfa-48e7-881e-67f9e80a9126/sm/24363-1500498149588-thumbnail.jpg","duration":459,"publication_date":"2017-07-19T21:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-splatoon-2-is-it-good","changefreq":"weekly","video":[{"title":"2017:E226 - Splatoon 2: IS IT GOOD?","description":"The reviews for Splatoon 2 are in, and we've had some hands-on time ourselves. Is it worth picking up? We've got answers for you!","player_loc":"https://roosterteeth.com/embed/game-news-2017-splatoon-2-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05ef6c9a-f8e5-4d4d-9851-3c7fd29eb920/sm/24363-1500427961349-splatoon_2_is_it_good.jpg","duration":515,"publication_date":"2017-07-19T01:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bio-ware-shakeup","changefreq":"weekly","video":[{"title":"2017:E225 - Bioware SAVED? Major Studio Shakeup","description":"Bioware's taken a couple major hits with gamers lately--most notably with the release of Mass Effect: Andromeda, which failed to please critically or commercially. Now their top exec is out and an old veteran returns to steer the ship. Is this how they get back on track with Anthem?","player_loc":"https://roosterteeth.com/embed/game-news-2017-bio-ware-shakeup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8767326e-05a7-45c8-8d6f-39b40ceffcb2/sm/24363-1500413783984-thumbnail.jpg","duration":392,"publication_date":"2017-07-18T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-5","changefreq":"weekly","video":[{"title":"2017:E134 - Crash REALLY IS Harder! + Half-life 3 Would Have Disappointed + First Robot Quits Life","description":"Activision admits officially that, YES Crash Bandicoot N.Sane Trilogy is harder than the original. Half-life writer Marc Laidlaw says Half-life 3 never would have had a satisfying ending anyway and he probably wouldn't even want to work on it. A new first in robotics: the first robot suicide. Plus, Battlegrounds reaches new heights of popularity, Kingdom Hearts 3 developers conflict about who caused the long development time, Destiny 2 beta kicks off, Super Mario Maker 64 is here and probably being DMCAed any minute now, that Last of Us shout-out in Game of Thrones was intentional, also lots of people watched Game of Thrones, Dunkirk is getting great reviews, and scientists have found weird radio signals coming from a nearby star.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41848d34-2447-4d4f-85d4-6dec54a42862/sm/24363-1500407833284-thumbnail.jpg","duration":587,"publication_date":"2017-07-18T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/know-your-thrones-game-of-thrones-season-7","changefreq":"weekly","video":[{"title":"GoTS7:E1 - WINTER IS HERE - KNOW YOUR THRONES, the Game of Thrones Nerdalong for Season 7 Episode 1","description":"Game of Thrones is back! That means at least one nudity or violence warning every episode! Today we're talking through the first episode of Season 7 and what we expect for the rest of the season.\n\nJoin us live next Monday on youtube.com/know (or it will be here afterwards too!)","player_loc":"https://roosterteeth.com/embed/know-your-thrones-game-of-thrones-season-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53150ae7-5b4b-4c9d-9aa4-f32886572703/sm/24363-1502754781868-site_thumb.jpg","duration":6056,"publication_date":"2017-07-18T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-episode","changefreq":"weekly","video":[{"title":"2017:E224 - Kingdom Hearts 3 Delays: WHO'S TO BLAME?","description":"Great news! Kingdom Hearts 3 finally has a release window! And Toy Story world is confirmed! Less great... director Tetsuya Nomura's blaming Square-Enix for the game's long development.","player_loc":"https://roosterteeth.com/embed/game-news-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9b94540-37de-4bc1-9d19-5e694a2c0d42/sm/24363-1500333711829-thumbnail.jpg","duration":453,"publication_date":"2017-07-17T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up-2","changefreq":"weekly","video":[{"title":"2017:E133 - Nintendo Switch Lines + Call of Duty Zombies LEAKED + Pokemon Minecraft Mod SHUTDOWN","description":"Microsoft responds to the Crackdown 3 complaints, Nintendo Switch is getting crazy long lines in Japan, D23 gives us a blowout of Marvel and Star Wars franchise info, Call of Duty World War II's Zombie Mode leaks early, and a popular Pokemon Minecraft Mod bites the dust. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b79bf654-af4b-4a60-a9ca-abebdc23c52b/sm/24363-1500333546220-thumbnail.jpg","duration":455,"publication_date":"2017-07-17T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-7","changefreq":"weekly","video":[{"title":"S1:E6 - New Game+ #7","description":"Are games made better by streaming audiences having input or changing games on the fly? ","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64459daf-2c72-4473-a543-29bfd534d26d/sm/2411188-1500065395467-GP07_-_PS_-_THUMB.jpg","duration":600,"publication_date":"2017-07-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-death-threats-and-dmca-vs-steam-vg-composer-strikes-again","changefreq":"weekly","video":[{"title":"2017:E223 - Death Threats and NEW DMCA RAMPAGE: Alex Mauer Strikes Again","description":"Not long ago we did a report on video game composer Alex Mauer, who went on a DMCA rampage after determining that a game studio that hired her owed her more money. Now she's at it again with a completely different game and she's even been arrested for making death threats. It's... a whole mess.","player_loc":"https://roosterteeth.com/embed/game-news-2017-death-threats-and-dmca-vs-steam-vg-composer-strikes-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b965e4d0-3e07-434e-aa75-7a534489a09a/sm/24363-1500138739169-alex_mauer_strikes_again.jpg","duration":521,"publication_date":"2017-07-15T03:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-fans-win-dmca-war-against-capcom","changefreq":"weekly","video":[{"title":"2017:E222 - Fans WIN DMCA WAR Against Capcom","description":"Capcom went full DMCA on a YouTube channel subtitling an Ace Attorney spin-off game, but this time the fans decided to fight back.","player_loc":"https://roosterteeth.com/embed/game-news-2017-fans-win-dmca-war-against-capcom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3153196-532d-4ddd-985b-7de4e9ea732d/sm/24363-1500072271291-THUMBNAIL.jpg","duration":347,"publication_date":"2017-07-15T03:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-low-sales-for-honor-fake-news-big-marvel-news-incoming","changefreq":"weekly","video":[{"title":"2017:E132 - Xbox One Low Sales? + For Honor \"Fake News\" + Big Marvel News Incoming","description":"Analysts predict Nintendo Switch will top Xbox for the year.  Ubisoft dev cries FAKE NEWS over reports of low For Honor players. Marvel's coming to Comic Con and they're coming hard. hehehe","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-low-sales-for-honor-fake-news-big-marvel-news-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0113b7aa-085c-4902-b592-822fa7fb3a80/sm/24363-1500071377382-thumbnail.jpg","duration":577,"publication_date":"2017-07-14T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-dracula-the-drama-queen-7","changefreq":"weekly","video":[{"title":"S1:E7 - Dracula the Drama Queen - #7","description":"On this week's episode Ashley, Gus, and Adam speedrun the news (12:30) and discuss the new Netflix series Castlevania (36:36). This episode is brought to you by MeUndies (MeUndies.com/GLITCH)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-dracula-the-drama-queen-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29ccc610-9040-4972-bb2e-56679e8afac3/sm/2411188-1500050482349-GP07_-_THUMB.jpg","duration":3060,"publication_date":"2017-07-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-next-console-generation-too-s-o-o-n","changefreq":"weekly","video":[{"title":"2017:E220 - Next Console Generation TOO SOON?","description":"Sony's already committed to another console generation with some analysts predicting it within the next year or two, and now it looks like Microsoft is actively developing their next console even though Xbox One X isn't even out yet. IT'S ALL HAPPENING SO FAST. Is it too soon or is this actually normal?","player_loc":"https://roosterteeth.com/embed/game-news-2017-next-console-generation-too-s-o-o-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae635367-115d-4f19-b4f4-6b64b9b9054b/sm/24363-1499996766133-thumbnail.jpg","duration":372,"publication_date":"2017-07-14T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-battlefront-2-recycled-content-nintendo-kills-new-3-ds-batman-movie-scrapped","changefreq":"weekly","video":[{"title":"2017:E131 - Battlefront 2 Recycled Content? + Nintendo Kills New 3DS + Batman Movie Scrapped","description":"Battlefront 2 will feature a bunch of OG content, raising concerns it will rely on recycled Battlefront assets. Nintendo's ending production for the New 3DS in Japan, which could signal a worldwide trend. The Batman movie's new director has scrapped Ben Affleck's script and is starting over from scratch. Plus, Destiny 2's estimated to be a huge seller on PC, you can link your Bungie and Blizzard accounts ahead of the beta, Fire Pro Wrestling World could come to Nintendo Switch, Ni No Kuni 2's been delayed, Adult VR games see a surge in popularity after the Oculus Rift price drop, the DOTA 2 International prize pool's already exceeded the previous record, Ryan Reynolds is in talks to star in the Rainbow Six movie, Intel's throwing shade at AMD, and it's Metal Gear's birthday!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-battlefront-2-recycled-content-nintendo-kills-new-3-ds-batman-movie-scrapped","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a849a2be-5d8e-4070-b21d-b8081c56c5c2/sm/24363-1499987164531-thumbnail.jpg","duration":559,"publication_date":"2017-07-13T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-drm-saves-you-money","changefreq":"weekly","video":[{"title":"2017:E219 - DRM Actually SAVES You Money! But...","description":"A new study shows that DRM means you pay less, BUT there's more to it because that's not necessarily what consumers want.","player_loc":"https://roosterteeth.com/embed/game-news-2017-drm-saves-you-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6cb5e11-2812-4420-a465-2d4142207467/sm/24363-1499899297530-thumbnail.jpg","duration":548,"publication_date":"2017-07-12T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-everyone-s-talking-about-net-neutrality-today","changefreq":"weekly","video":[{"title":"2017:E25 - Why is the Internet SO SLOW?","description":"Notice a bunch of loading bars and talk about net neutrality today? That's because internet companies are taking a stand against the FCC's plans to remove net neutrality protections. Here's what all that means and why it matters.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-everyone-s-talking-about-net-neutrality-today","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ffac281-5ba7-49b9-8075-ff828dd17b92/sm/24363-1499890975974-thumbnail.jpg","duration":399,"publication_date":"2017-07-12T22:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ps4-firmware-b-u-g-g-e-d-destiny-2-too-much-story-science-internet-full-of-jerks","changefreq":"weekly","video":[{"title":"2017:E130 - PS4 Firmware BUGGED? + Destiny 2 TOO MUCH Story + Science: Internet Full of Jerks","description":"PS4's having some issues and it may be thanks to new firmware. Bungie wants you to complain that Destiny 2 has TOO MUCH story. Science confirms what everyone already knows: that there are a bunch of jerks on the internet. Plus, Xbox One X won't charge for 4K updates to games, Switch is getting its first video app... in Japan, D23 might have new game trailers, game design legend Warren Spector's not happy with AAA games, Unity's got a new version out, Valerian reviews are out, Disney is having trouble casting the live action Aladdin movie, and the Castlevania show guy wants to tackle Metroid.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ps4-firmware-b-u-g-g-e-d-destiny-2-too-much-story-science-internet-full-of-jerks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f91ef5ac-6a5d-43b0-8da6-644eecbb4c55/sm/24363-1499887141712-thumbnail.jpg","duration":500,"publication_date":"2017-07-12T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-s-biggest-ban-ever","changefreq":"weekly","video":[{"title":"2017:E218 - Steam's BIGGEST BAN EVER","description":"Fresh off their annual Summer Sale, Valve has dropped their biggest ban hammer ever. That's good! But why did they wait until all the cheaters handed over their money for their cheater games? That part's a bit weird.","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-s-biggest-ban-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f97cb4f-d436-45f9-bbf6-9a6661a7280d/sm/24363-1499817107105-thumbnail.jpg","duration":450,"publication_date":"2017-07-11T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-riot-sues-mobile-developer-for-alleged-league-knockoff","changefreq":"weekly","video":[{"title":"2017:E217 - League of Legends Knock-off LAWSUIT & THREATS","description":"League of Legends is no stranger to the courtroom and they kinda miss it. That's why they're going after rip-off games, but their defendant isn't taking it lying down. Nope. They're threatening anyone who says they might be, well, ripping off League of Legends! This should be fun.","player_loc":"https://roosterteeth.com/embed/game-news-2017-riot-sues-mobile-developer-for-alleged-league-knockoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79ef22be-28fe-4a31-be45-ad9dd827f394/sm/24363-1499815213976-thumbnail.jpg","duration":346,"publication_date":"2017-07-11T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-not-nintendo-s-fault-half-life-u-p-d-a-t-e-d-rip-gangnam-style","changefreq":"weekly","video":[{"title":"2017:E129 - Switch NOT Nintendo's Fault + Half-Life UPDATED + RIP Gangnam Style","description":"Nintendo swears the Switch shortage isn't their fault. The ORIGINAL Half-Life has just been updated. Gangnam Style's been surpassed as the most-viewed YouTube video of all time. Plus, if you missed out on an NES Classic there are plenty of cheap knock-offs floating around, Battlefront 2's shared open beta details, Oculus Rift gets a new price cut, Friday the 13th  has an issue with user behavior, a Mega Man level creator is racing the DMCA clock, Wonder Woman 2 may be set during the Cold War, Stranger Things season 2's got a date, and Russians need passports to watch porn now.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-not-nintendo-s-fault-half-life-u-p-d-a-t-e-d-rip-gangnam-style","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d038210b-5364-4d96-9776-4ad10658701f/sm/24363-1499814756969-thumbnail.jpg","duration":558,"publication_date":"2017-07-11T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ark-rips-off-g-a-m-e-r-s","changefreq":"weekly","video":[{"title":"2017:E216 - Ark RIPS OFF GAMERS?","description":"Ark: Survival Evolved isn't even out yet and it's even making other game developers furious now. What did they do this time? Nothing big. Just, uh, DOUBLED the price of the game and tried to hide behind retailers.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ark-rips-off-g-a-m-e-r-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3599e84a-7353-4010-a3f8-0200c8e39c81/sm/24363-1499737271449-thumbnail.jpg","duration":443,"publication_date":"2017-07-11T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-play-station-5-in-2019-fallout-4-lawsuit-no-man-s-sky-gits-gud","changefreq":"weekly","video":[{"title":"2017:E128 - PlayStation 5 in 2019? + Fallout 4 LAWSUIT + No Man's Sky Gits Gud","description":"Another analyst is chiming in with a PS4 release date. Fallout 4's getting a lawsuit for being \"repugnant and morally indefensible.\" Get ready for more content coming to No Man's Sky. Plus, Crash Bandicoot is so popular it's getting scalped, Nintendo Switch has a built-in NES emulator already, Final Fantasy XII: The Zodiac Age is worth picking up, Battlegrounds has been delayed, Square-Enix is still working on a PC fix for Nier Automata, Castlevania on Netflix has already been renewed, Spider-Man: Homecoming's doing pretty good, and SGDQ has wrapped up after raising tons of money for charity.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-play-station-5-in-2019-fallout-4-lawsuit-no-man-s-sky-gits-gud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdea2a62-d526-42a1-abc1-00559a7b9a5d/sm/24363-1499726172897-thumbnail.jpg","duration":614,"publication_date":"2017-07-10T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-6","changefreq":"weekly","video":[{"title":"S1:E5 - New Game+ #6","description":"This week we take a look in the ol' mailbaWAIT IS THAT A NEW OVERWATCH CHARACTER?!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b17dada-d5f0-4005-bfc8-ec31fd05e4f4/sm/2411188-1499386051981-GP06_-_PS_-_THUMB.jpg","duration":1020,"publication_date":"2017-07-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-sony-is-n-sane-6","changefreq":"weekly","video":[{"title":"S1:E6 - Sony is N. Sane - #6","description":"This week Ashley, Gus, Miles, and Adam Speedrun the news (20:40), Get N. Sane with Crash Bandicoot N. Sane Trilogy (46:05), and think about the difference between playing games as a kid vs. an adult (1:05:43). This episode is sponsored by Blue Apron (BlueApron.com/GLITCH)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-sony-is-n-sane-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f51c7c42-f77d-4898-b396-9b56ee6876be/sm/2411188-1499389237741-GP06_-_THUMB.jpg","duration":5400,"publication_date":"2017-07-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-devs-nintendo-switch-is-too-weak","changefreq":"weekly","video":[{"title":"2017:E215 - Devs: Nintendo Switch TOO WEAK","description":"Nintendo Switch is taking heat from third-party developers who aren't happy with the power the hybrid console has to offer.","player_loc":"https://roosterteeth.com/embed/game-news-2017-devs-nintendo-switch-is-too-weak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aba1d57-104f-4057-b9f2-813e6ff81a23/sm/24363-1499374635806-thumbnail.jpg","duration":414,"publication_date":"2017-07-06T21:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-mario-odyssey-too-e-a-s-y-battlegrounds-leaving-early-access-ubisoft-s-a-v-e-d","changefreq":"weekly","video":[{"title":"2017:E126 - Super Mario Odyssey TOO EASY? + Battlegrounds Leaving Early Access + Ubisoft SAVED?","description":"Crash Bandicoot got you down? Lucky for you Super Mario Odyssey is impossible to lose at. Battlegrounds is already preparing to leave Early Access. Is Ubisoft SAVED from Vivendi's hostile takeover attempt? Plus, Nintendo says no to PC, pressure is on Sonic Mania to determine the future of the franchise, no PS4 release for Cuphead, don't look for a Prey sequel any time soon, Watch Dogs got crazy loud fireworks for the 4th of July, Spider-Man Homecoming's set to make lots of money this weekend, a Lord of the Rings lawsuit's been settled, and Pokemon Go's made $1.2 BILLION.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-mario-odyssey-too-e-a-s-y-battlegrounds-leaving-early-access-ubisoft-s-a-v-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bc76923-647e-4687-aa9b-ada8a02fa2e9/sm/24363-1499372350136-thumbnail.jpg","duration":532,"publication_date":"2017-07-06T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gamers-suck-now","changefreq":"weekly","video":[{"title":"2017:E214 - Gamers SUCK Now!?","description":"Gamers are getting a helpful reminder about just how challenging video games used to be and how much we all suck at them now, thanks to Crash Bandicoot N.Sane Trilogy. This time when we say, \"it's not you, it's me,\" we might actually mean it. Bummer.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gamers-suck-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/468f2d9c-5bfa-4e02-8b0c-15ab6ec1a83e/sm/24363-1499316918957-thumbnail.jpg","duration":325,"publication_date":"2017-07-06T05:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-one-x-tested-snes-classic-pre-orders-cancelled-gamers-stop-real-assassination","changefreq":"weekly","video":[{"title":"2017:E125 - Xbox One X TESTED + SNES Classic Pre-Orders CANCELLED + Gamers Stop Real Assassination","description":"The benchmarks for Xbox One X are here and they're pretty impressive. Gamers are getting cancellations for SNES Classic Edition consoles over quantity concerns. Gamers put a stop to a real life assassination attempt in France. Plus, Xbox responds to the photoshopped Anthem footage, Activision talks disappointment with Destiny content, the heroes for Star Wars Battlefront 2 have leaked, GTA's Open IV is back... but with a catch, Assassin's Creed is getting an anime, and prepare for feature-length Game of Thrones episodes.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-one-x-tested-snes-classic-pre-orders-cancelled-gamers-stop-real-assassination","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffec8e23-d5fc-4091-bf1c-6134a75c288f/sm/24363-1499304814181-thumbnail.jpg","duration":327,"publication_date":"2017-07-06T01:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-play-station-steals-xbox-one-x-gameplay","changefreq":"weekly","video":[{"title":"2017:E213 - PlayStation STEALS Xbox One X Gameplay!?","description":"Good news! PS4 is getting Bioware's Anthem. Bad news! They used Xbox One X footage to show everyone how awesome it's going to look on PS4!","player_loc":"https://roosterteeth.com/embed/game-news-2017-play-station-steals-xbox-one-x-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30270d46-e66c-415c-b160-395bac77b62d/sm/24363-1499137027861-thumbnail.jpg","duration":543,"publication_date":"2017-07-04T03:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-5","changefreq":"weekly","video":[{"title":"S1:E4 - New Game+ #5","description":"From a life changing air hockey table to claw games that are hard to understand, there's a lot going on in Japan's arcades.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/255651a5-c326-4f11-93c6-a75e5dc00888/sm/2411188-1498859800904-GP05_-_PS_-_THUMB.jpg","duration":880,"publication_date":"2017-07-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-trouble-with-publishers","changefreq":"weekly","video":[{"title":"2017:E212 - Nintendo Switch TROUBLE with Publishers?","description":"Nintendo Switch has been selling well, but it may be in trouble with third party developers who are having a tough time porting their games to the platform and may not be able to make them work at all.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-trouble-with-publishers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc9d41e7-ad5a-419f-897e-b5630c7d1ced/sm/24363-1498869500079-thumbnail.jpg","duration":453,"publication_date":"2017-07-01T00:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-psn-bans-thousands-snes-mini-pre-orders-d-e-l-a-y-e-d-fidget-spinners-e-x-p-l-o-d-i-n-g","changefreq":"weekly","video":[{"title":"2017:E123 - PSN Bans Thousands + SNES Mini Pre-Orders DELAYED? + Fidget Spinners EXPLODING?","description":"PSN has banned thousands of users using Paypal. SNES pre-orders may be delayed in the US by up to a month. Beloved fidget spinners are following in hoverboards' footsteps and exploding. Plus, a retailer is blaming Nintendo's Switch stock for their financial difficulties, Phil Spencer talks Gears of War 5 and Halo 6 (kinda), Shadow of the Colossus may get some changes, Marvel says they've got a whole slate of games planned, StarCraft Remastered has a release date, John Romero's sold his original Doom disks, the Witcher game composer may be working on the Netflix series, and it's up in the air whether Patty Jenkins will return for Wonder Woman 2.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-psn-bans-thousands-snes-mini-pre-orders-d-e-l-a-y-e-d-fidget-spinners-e-x-p-l-o-d-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efeee6cc-0e73-440b-924f-45ac6f45c5b6/sm/24363-1498865374887-thumbnail.jpg","duration":631,"publication_date":"2017-06-30T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-tap-it-and-forget-it-5","changefreq":"weekly","video":[{"title":"S1:E5 - Tap It And Forget It - #5","description":"Put on your nostalgia goggles because this week Ashley, Ryan, and Adam discuss the SNES Classic (16:20), speedrun the news (51:54), and answer your emails (1:33:03). This episode is sponsored by Casper (Casper.com/glitch Code: glitch) and MVMT (MVMT.com/Glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-tap-it-and-forget-it-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23165722-e20a-4219-bd0f-4ba2b79c480e/sm/2411188-1498836562915-GP05_-_THUMB.jpg","duration":6780,"publication_date":"2017-06-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mass-effect-andromeda-dlc-h-o-a-x","changefreq":"weekly","video":[{"title":"2017:E211 - Mass Effect Andromeda DLC HOAX!","description":"News went around earlier today that Mass Effect Andromeda wasn't just on ice, but so was all its planned story DLC. YIKES! Put down the pitch forks though, because it was FAKE NEWS!","player_loc":"https://roosterteeth.com/embed/game-news-2017-mass-effect-andromeda-dlc-h-o-a-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ed2fe53-b6d2-4c08-9a43-aa8aad128f6e/sm/24363-1498786180001-thumbnail.jpg","duration":468,"publication_date":"2017-06-30T01:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-spider-man-homecoming-is-it-good","changefreq":"weekly","video":[{"title":"2017:E26 - Spider-Man Homecoming: IS IT GOOD?","description":"Spidey's first headlining foray into the Marvel Cinematic Universe is nearly here and the reviews are in. Does this one manage to cancel out some of the weaker attempts at bringing the web-slinger to the big screen? IS IT GOOD? Let's find out.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-spider-man-homecoming-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99d020bb-1599-4758-894f-161817a384a0/sm/24363-1498783052183-thumbnail.jpg","duration":448,"publication_date":"2017-06-30T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-snes-mini-stock-d-o-u-b-l-e-s-rust-loses-millions-palmer-luckey-goes-rogue","changefreq":"weekly","video":[{"title":"2017:E122 - SNES Classic Stock DOUBLES? + Rust Refunds MILLIONS + Palmer Luckey GOES ROGUE","description":"It sounds like Nintendo learned from the NES Classic and have more than doubled production for the SNES Classic. Rust has shared numbers on player refunds and we're talking MILLIONS of dollars. Oculus founder Palmer Luckey's gone rogue since he parted ways with his company--he's now funding hacks that make Oculus exclusives playable on HTC Vive.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-snes-mini-stock-d-o-u-b-l-e-s-rust-loses-millions-palmer-luckey-goes-rogue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd467260-92c5-4bae-add0-ac4c8e8c5f7c/sm/24363-1498768177772-thumbnail.jpg","duration":525,"publication_date":"2017-06-29T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-g2a-f-i-x-e-d-g2a-goes-l-e-g-i-t","changefreq":"weekly","video":[{"title":"2017:E210 - G2A Goes LEGIT?","description":"G2A's been under fire from gamers and developers lately over grey market practices that enable scammers to sell illegally obtained games. Now, it looks like they might be turning over a new leaf. Maybe.","player_loc":"https://roosterteeth.com/embed/game-news-2017-g2a-f-i-x-e-d-g2a-goes-l-e-g-i-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad6a83ce-6037-43e3-81fa-c750b4342ec0/sm/24363-1498687754680-thumbnail.jpg","duration":427,"publication_date":"2017-06-28T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-battlegrounds-going-crossplay-miyamoto-worried-about-odyssey-google-fined-billions","changefreq":"weekly","video":[{"title":"2017:E121 - Battlegrounds Going Crossplay? + Miyamoto Worried About Odyssey + Google Fined BILLIONS","description":"Xbox and PC players may be able to face off in PlayerUnknown's Battlegrounds. Miyamoto admits he's had his share of worries over Super Mario Odyssey. Google's being fined billions by the EU over anti-trust activities.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-battlegrounds-going-crossplay-miyamoto-worried-about-odyssey-google-fined-billions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efe0b448-e34b-4a59-a36a-8a211efa4b1a/sm/24363-1498682637928-crossplay_battlegrounds_roundup.jpg","duration":513,"publication_date":"2017-06-28T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gamers-not-ready-for-4-k","changefreq":"weekly","video":[{"title":"2017:E209 - Gamers Not READY for 4K?","description":"2017:E209 - Gamers Not READY for 4K?","player_loc":"https://roosterteeth.com/embed/game-news-2017-gamers-not-ready-for-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d91b02f-3151-4ae9-acee-d3fe99acc94c/sm/710924-1498594636708-thumbnail.jpg","duration":402,"publication_date":"2017-06-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-have-the-snes-mini-shortages-already-begun","changefreq":"weekly","video":[{"title":"2017:E208 - SNES Mini SOLD OUT Already?","description":"2017:E208 - SNES Mini SOLD OUT Already?","player_loc":"https://roosterteeth.com/embed/game-news-2017-have-the-snes-mini-shortages-already-begun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ec575f7-bdfc-47ad-b7e8-d6a152059c74/sm/710924-1498594643472-thumbnail.jpg","duration":290,"publication_date":"2017-06-27T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ubisoft-fights-back-slime-rancher-vs-g2a-who-showed-the-most-at-e3","changefreq":"weekly","video":[{"title":"2017:E120 - Ubisoft Fights Back + Slime Rancher vs. G2A + Who Showed the Most at E3","description":"2017:E120 - Ubisoft Fights Back + Slime Rancher vs. G2A + Who Showed the Most at E3","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ubisoft-fights-back-slime-rancher-vs-g2a-who-showed-the-most-at-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d437918-f229-48a7-bad5-a12182e783a5/sm/710924-1498592160299-ubisoft_takeover_roundup_thumb.jpg","duration":418,"publication_date":"2017-06-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-video-game-composer-abusing-you-tube-strikes","changefreq":"weekly","video":[{"title":"2017:E207 - DMCA EXTORTIONIST Drags YouTubers into Legal Battle","description":"The developers of a Kickstarter game called Starr Mazer brought on well known chiptunes composer Alex Mauer to create the soundtrack. That sounds like a great idea! Unfortunately, it gets not-so-great when the composer decides you owe her more money and she decides to issue DMCA strikes against any YouTube video showing the game and using the music and threatens to kill their channels unless they complain about the developer.","player_loc":"https://roosterteeth.com/embed/game-news-2017-video-game-composer-abusing-you-tube-strikes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40e52e32-3337-4b2a-ae68-be47db6ca853/sm/24363-1498521163556-dmca_extortionist.jpg","duration":615,"publication_date":"2017-06-26T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-snes-classic-is-confirmed-but-is-it-a-scam","changefreq":"weekly","video":[{"title":"2017:E206 - SNES Classic Edition CONFIRMED!","description":"Ok, so this isn't the biggest surprise in the world. The SNES Classic Mini has been officially announced by Nintendo. BUT is this actually what we were hoping for? It costs more, has fewer games, and is going to create all kinds of confusion for Nintendo Switch's first holiday. Compared to the NES Classic it's... almost a rip-off?","player_loc":"https://roosterteeth.com/embed/game-news-2017-snes-classic-is-confirmed-but-is-it-a-scam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa90805b-bf82-4ac0-85fe-c32a9901d95a/sm/24363-1498521050690-SNES_classic.jpg","duration":572,"publication_date":"2017-06-26T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-vs-fanmade-games-gta-mods-are-b-a-c-k-star-citizen-b-r-o-k-e-nah","changefreq":"weekly","video":[{"title":"2017:E119 - Nintendo vs Fanmade Games + GTA Mods Are BACK! + Star Citizen BROKE? Nah.","description":"Nintendo's trying to explain their war on fan games. Mods are back in GTA V with Rockstar taking a step back. A rumor popped up over the weekend that Star Citizen had blown through all its crowdfunding money and was looking for a loan, but it turns out that's not necessarily the case.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-vs-fanmade-games-gta-mods-are-b-a-c-k-star-citizen-b-r-o-k-e-nah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1393772-ef7e-43b5-ac44-d4272632af3f/sm/24363-1498508379155-thumbnail.jpg","duration":483,"publication_date":"2017-06-26T20:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-e3-2017-s-biggest-disappointments","changefreq":"weekly","video":[{"title":"2017:E205 - E3 2017's Biggest Disappointments","description":"2017:E205 - E3 2017's Biggest Disappointments","player_loc":"https://roosterteeth.com/embed/game-news-2017-e3-2017-s-biggest-disappointments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92761829-0c2f-4caf-8fce-efd2711da017/sm/710924-1498260667710-thumbnail.jpg","duration":539,"publication_date":"2017-06-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-4","changefreq":"weekly","video":[{"title":"S1:E3 - New Game+ #4","description":"Now that E3 has wrapped up what are the indie games everyone is looking forward to?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bba383d6-9e82-4709-aacf-e54f0346ad79/sm/2411188-1498243093440-GP04_-_PS_-_THUMB.jpg","duration":853,"publication_date":"2017-06-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ps4-devs-mock-xbox","changefreq":"weekly","video":[{"title":"2017:E204 - PS4 Devs Mock Xbox One","description":"2017:E204 - PS4 Devs Mock Xbox One","player_loc":"https://roosterteeth.com/embed/game-news-2017-ps4-devs-mock-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d78c0308-4725-47ee-9249-a302e961dd59/sm/710924-1498252786316-thumbnail.jpg","duration":340,"publication_date":"2017-06-24T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ps5-r-e-a-l-switch-stock-not-intentional-battlegrounds-to-p-s4-m-a-y-b-e","changefreq":"weekly","video":[{"title":"2017:E118 - PS5 REAL? + Switch Stock NOT Intentional + Battlegrounds to PS4... MAYBE?","description":"2017:E118 - PS5 REAL? + Switch Stock NOT Intentional + Battlegrounds to PS4... MAYBE?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ps5-r-e-a-l-switch-stock-not-intentional-battlegrounds-to-p-s4-m-a-y-b-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15bff0e3-1a17-4d12-bf3d-5b4d2d48528d/sm/710924-1498252751037-ps5_roundup_thumb.jpg","duration":459,"publication_date":"2017-06-23T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-episode","changefreq":"weekly","video":[{"title":"S1:E4 - Call To ARMS - #4","description":"Down that cough syrup because this week Gus, Ashley, Mica, and Ryan battle con flu to bring you the news (5:47), discuss their favorite things from E3 (43:45), and decide if ARMS has legs (1:07:56). This episode is sponsored by MeUndies (MeUndies.com/GLITCH)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feb8c1cf-75d4-4ca8-b200-d08767fec169/sm/2411188-1498230679150-GP04_-_THUMB.jpg","duration":5220,"publication_date":"2017-06-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-apologizes-for-switch","changefreq":"weekly","video":[{"title":"2017:E203 - Nintendo APOLOGIZES for Nintendo Switch","description":"Nintendo is sorry. You hear? SORRY! Sorry you can't give them your money! They want it! They just can't make enough of the consoles to meet demand in most markets. And what's the chance this could eat into the console's maximum potential?","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-apologizes-for-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b825ad2-b29c-460f-80d2-316af0c0b1bb/sm/24363-1498177782419-nintendo_sorry.jpg","duration":416,"publication_date":"2017-06-23T00:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-battlegrounds-for-ps4-dev-disses-consoles-headline-3-oculus-sales-b-l-o-c-k-e-d-han-solo","changefreq":"weekly","video":[{"title":"2017:E117 - No Battlegrounds for PS4! + Metroid Prime 4 WHEN? + Han Solo SAVED?","description":"Looks like Battlegrounds will be skipping PS4 entirely. Nintendo may have misspoken about the release window for Metroid Prime 4. A new director steps in to take control of the Han Solo movie. Plus, Sony thinks Spider-Man is the game to take PS4 to 100 million sales, Skull & Bones will have a single-player campaign, the Crash Bandicoot N.Sane trilogy was almost entirely made from scratch, A Way Out's designer isn't a fan of consoles, Nintendo wants you to know that Mario doesn't \"possess\" anything in Super Mario Odyssey, Game of Thrones has an amazing new trailer, Fantastic Four may be getting a family-friendly reboot, and ZeniMax wants Oculus Rift sales stopped.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-battlegrounds-for-ps4-dev-disses-consoles-headline-3-oculus-sales-b-l-o-c-k-e-d-han-solo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2865d05-c3f2-40bb-9dc5-0d8e61388efe/sm/24363-1498177623420-roundup0622thumb.jpg","duration":592,"publication_date":"2017-06-23T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-visceral-star-wars-game-leak-new-xbox-exclusives-wonder-woman-pay-controversy","changefreq":"weekly","video":[{"title":"2017:E116 - Visceral Star Wars Game LEAK + New Xbox Exclusives? + Wonder Woman Pay Controversy","description":"Details on Visceral's Star Wars game project may have leaked. Xbox boss Phil Spencer promises exclusives are coming. There's been a big controversy about Wonder Woman's pay, but was it overblown? Maybe. Plus, Steam's Summer Sale is kicking off, SEGA is giving its games away for free, new Halo is a long way off, Gearbox wants in on Hitman, rumors of an LA Noire remaster are back, Final Fantasy XIV is being attacked, Watchmen is coming to HBO, and the Uber CEO has resigned.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-visceral-star-wars-game-leak-new-xbox-exclusives-wonder-woman-pay-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b10b41bd-f64f-4df7-bef2-0377fd0a63f8/sm/24363-1498092842725-maxresdefault_1.jpg","duration":643,"publication_date":"2017-06-21T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sony-killing-crossplay","changefreq":"weekly","video":[{"title":"2017:E202 - Sony KILLING Crossplay?","description":"2017:E202 - Sony KILLING Crossplay?","player_loc":"https://roosterteeth.com/embed/game-news-2017-sony-killing-crossplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/179dd612-27dd-407b-b761-cb9581949f10/sm/710924-1497986930933-thumbnail.jpg","duration":375,"publication_date":"2017-06-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-switch-shortages-hype-killed-scalebound-friday-the-13-th-apology","changefreq":"weekly","video":[{"title":"2017:E115 - MORE Switch Shortages + Hype KILLED Scalebound + Friday the 13th APOLOGY","description":"2017:E115 - MORE Switch Shortages + Hype KILLED Scalebound + Friday the 13th APOLOGY","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-switch-shortages-hype-killed-scalebound-friday-the-13-th-apology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be518535-75cf-4972-bf30-4b7b8319ec2e/sm/710924-1497986941060-switch_shortage_roundup_thumb.jpg","duration":441,"publication_date":"2017-06-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gta-v-users-pissed-after-mods-shut-down","changefreq":"weekly","video":[{"title":"2017:E201 - Take-Two Shuts Down GTAV Mods!","description":"2017:E201 - Take-Two Shuts Down GTAV Mods!","player_loc":"https://roosterteeth.com/embed/game-news-2017-gta-v-users-pissed-after-mods-shut-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d0fd2fd-b4f5-41bf-97d7-31e8af9deb18/sm/710924-1497908629616-thumbnail.jpg","duration":402,"publication_date":"2017-06-20T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-copying-horizon-battlefront-2-wins-e3-konami-blacklists-employees","changefreq":"weekly","video":[{"title":"2017:E114 - Xbox Copying Horizon + Battlefront 2 Wins E3 + Konami Blacklists Employees","description":"2017:E114 - Xbox Copying Horizon + Battlefront 2 Wins E3 + Konami Blacklists Employees","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-copying-horizon-battlefront-2-wins-e3-konami-blacklists-employees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a0e26e6-a441-4262-ad98-76fcf00141c4/sm/710924-1497905207657-xbox_horizon_roundup_thumb.jpg","duration":518,"publication_date":"2017-06-19T20:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-carboni-connected-universe-3","changefreq":"weekly","video":[{"title":"S1:E3 - Carboni Connected Universe - #3","description":"On this very special episode from E3 Ashley, Gus, Ryan, Burnie, Mica, and Anthony Carboni are joined by special guest LeVar Burton to discuss all the things they've seen! This episode is sponsored by Casper (casper.com/glitch) and Dollar Shave Club (dollarshaveclub.com/glitch)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-carboni-connected-universe-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9242fdd-4682-46a4-97cf-c899acf85923/sm/2411188-1497562865353-GP03_-_THUMB.jpg","duration":3840,"publication_date":"2017-06-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-new-game-2","changefreq":"weekly","video":[{"title":"S1:E2 - New Game+ #2","description":"Stolen identities, fake websites, espionage. Is this a political thriller or how you get into E3 for the first time?","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-new-game-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/944843fb-4edc-418f-94c0-863c3ad3ffb1/sm/2013912-1497032965290-GP02_-_PS_-_THUMB.jpg","duration":650,"publication_date":"2017-06-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-e3-2016-report-card","changefreq":"weekly","video":[{"title":"2017:E200 - The E3 2016 Report Card!","description":"2017:E200 - The E3 2016 Report Card!","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-e3-2016-report-card","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4fa9ffc-2664-4abc-9714-f279e23c644d/sm/710924-1497031629358-Thumbnail.jpg","duration":735,"publication_date":"2017-06-09T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-scorpio-gets-more-power-new-blizzard-fps-g2a-wins-award","changefreq":"weekly","video":[{"title":"2017:E113 - Scorpio Gets MORE Power + New Blizzard FPS + G2A Wins Award","description":"2017:E113 - Scorpio Gets MORE Power + New Blizzard FPS + G2A Wins Award","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-scorpio-gets-more-power-new-blizzard-fps-g2a-wins-award","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef023f86-a26b-47d2-a873-ab9b79b60083/sm/710924-1497032226721-powerful_scorpio_roundup_thumb.jpg","duration":410,"publication_date":"2017-06-09T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-winner-winner-chicken-dinner-2","changefreq":"weekly","video":[{"title":"S1:E2 - Winner Winner Chicken Dinner - #2","description":"In this week's episode join Gus, Ashley, Burnie, and Ryan as they discuss their early look at Fortnite, skydive into a discussion of PlayerUnknown's Battlegrounds (15:10), speed run the news (49:40), prepare for E3 (1:09:40), and rustle through the mail bag (1:20:26). This episode is sponsored by Dollar Shave Club (DollarShaveClub.com/GLITCH)","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-winner-winner-chicken-dinner-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e364f6bb-22da-4927-9bd0-8f22ab0ccbef/sm/2013912-1497031683051-GP01_-_THUMB.jpg","duration":5842,"publication_date":"2017-06-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sony-and-microsoft-are-taking-shots-at-each-other-before-e3","changefreq":"weekly","video":[{"title":"2017:E199 - Microsoft's Pre-E3 Trash Talk","description":"2017:E199 - Microsoft's Pre-E3 Trash Talk","player_loc":"https://roosterteeth.com/embed/game-news-2017-sony-and-microsoft-are-taking-shots-at-each-other-before-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83e448d5-bb80-4933-a635-c129596be25b/sm/710924-1496953641237-Thumbnail.jpg","duration":364,"publication_date":"2017-06-09T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-cyberpunk-2077-held-h-o-s-t-a-g-e","changefreq":"weekly","video":[{"title":"2017:E198 - Cyberpunk 2077 Held HOSTAGE!","description":"2017:E198 - Cyberpunk 2077 Held HOSTAGE!","player_loc":"https://roosterteeth.com/embed/game-news-2017-cyberpunk-2077-held-h-o-s-t-a-g-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/744f4583-13c3-4392-9d5f-ec283badf56b/sm/710924-1496953634318-Thumbnail.jpg","duration":322,"publication_date":"2017-06-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-bully-2-l-e-a-k-e-d-shenmue-3-delayed-game-cheating-illegal","changefreq":"weekly","video":[{"title":"2017:E112 - Bully 2 LEAKED? + Shenmue 3 DELAYED + Game Cheating ILLEGAL","description":"2017:E112 - Bully 2 LEAKED? + Shenmue 3 DELAYED + Game Cheating ILLEGAL","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-bully-2-l-e-a-k-e-d-shenmue-3-delayed-game-cheating-illegal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34f254ef-4b89-4972-a348-d3e528928ba0/sm/710924-1496948815554-bully_2_roundup_thumb.jpg","duration":513,"publication_date":"2017-06-08T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-why-mass-effect-andromeda-was-a-disaster","changefreq":"weekly","video":[{"title":"2017:E197 - Why Mass Effect Andromeda Was a Disaster","description":"2017:E197 - Why Mass Effect Andromeda Was a Disaster","player_loc":"https://roosterteeth.com/embed/game-news-2017-why-mass-effect-andromeda-was-a-disaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e9113ae-3410-4d31-a637-538b2eea6f39/sm/710924-1496867724356-thumbnail.jpg","duration":449,"publication_date":"2017-06-08T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-no-man-s-sky-developer-is-sending-cassette-tapes-to-fans","changefreq":"weekly","video":[{"title":"2017:E196 - No Man's Sky Developer Sending ARG Cassettes Tapes","description":"2017:E196 - No Man's Sky Developer Sending ARG Cassettes Tapes","player_loc":"https://roosterteeth.com/embed/game-news-2017-no-man-s-sky-developer-is-sending-cassette-tapes-to-fans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/931348bd-57b0-4637-ba4e-fa578e456657/sm/710924-1496867731317-thumbnail.jpg","duration":307,"publication_date":"2017-06-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-death-stranding-at-e3-more-switch-taxes-another-writer-leaves-valve","changefreq":"weekly","video":[{"title":"2017:E111 - No Death Stranding at E3 + MORE Switch Taxes + ANOTHER Writer Leaves Valve","description":"2017:E111 - No Death Stranding at E3 + MORE Switch Taxes + ANOTHER Writer Leaves Valve","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-death-stranding-at-e3-more-switch-taxes-another-writer-leaves-valve","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ebd0790-8c27-497c-90a3-230a535a4ab5/sm/710924-1496861311925-death_stranding_roundup_thumb.jpg","duration":495,"publication_date":"2017-06-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-everything-confirmed-for-e3-e3-everything-we-know","changefreq":"weekly","video":[{"title":"2017:E195 - Everything CONFIRMED for E3","description":"2017:E195 - Everything CONFIRMED for E3","player_loc":"https://roosterteeth.com/embed/game-news-2017-everything-confirmed-for-e3-e3-everything-we-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c846d9bf-9664-40b3-a891-2cc2a636dda9/sm/710924-1496785652249-thumbnail.jpg","duration":410,"publication_date":"2017-06-07T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pokemon-announces-new-tease-and-troll-versions-for-the-switch","changefreq":"weekly","video":[{"title":"2017:E194 - Pokemon Announcements DISAPPOINTING?","description":"2017:E194 - Pokemon Announcements DISAPPOINTING?","player_loc":"https://roosterteeth.com/embed/game-news-2017-pokemon-announces-new-tease-and-troll-versions-for-the-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31ae75b8-23a1-417a-a921-1e4bf65ed91b/sm/710924-1496778950174-thumbnail.jpg","duration":348,"publication_date":"2017-06-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-xbox-scorpio-logo-rip-for-honor-players-no-violent-video-games-on-you-tube","changefreq":"weekly","video":[{"title":"2017:E110 - Xbox Scorpio Logo? + RIP For Honor Players + No Violent Video Games on YouTube?","description":"2017:E110 - Xbox Scorpio Logo? + RIP For Honor Players + No Violent Video Games on YouTube?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-xbox-scorpio-logo-rip-for-honor-players-no-violent-video-games-on-you-tube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/352bb46c-c910-45a7-9ff7-a90e631d2278/sm/710924-1496775317195-stupis_s_roundup_Thumbnail.jpg","duration":451,"publication_date":"2017-06-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-play-station-worried-about-switch-nah","changefreq":"weekly","video":[{"title":"2017:E193 - Will PlayStation DOMINATE E3?","description":"2017:E193 - Will PlayStation DOMINATE E3?","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-play-station-worried-about-switch-nah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20e7994e-6b5c-4f26-849a-274eecd5814a/sm/710924-1496702899590-PSE3Thumb.jpg","duration":441,"publication_date":"2017-06-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-big-pokemon-announcement-coming-tomorrow","changefreq":"weekly","video":[{"title":"2017:E192 - Big Pokemon announcement coming tomorrow","description":"2017:E192 - Big Pokemon announcement coming tomorrow","player_loc":"https://roosterteeth.com/embed/game-news-2017-big-pokemon-announcement-coming-tomorrow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e119e3b-bd3d-4e7a-8534-fc5695050c98/sm/710924-1496698234909-PokemonThumb.jpg","duration":270,"publication_date":"2017-06-05T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-scorpio-price-rumors-new-death-stranding-hints-wonder-woman-breaks-records","changefreq":"weekly","video":[{"title":"2017:E109 - MORE Scorpio Price Rumors + NEW Death Stranding Hints? + Wonder Woman Breaks Records","description":"2017:E109 - MORE Scorpio Price Rumors + NEW Death Stranding Hints? + Wonder Woman Breaks Records","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-scorpio-price-rumors-new-death-stranding-hints-wonder-woman-breaks-records","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e3ed9f0-714d-40c5-857e-17a16256eaa4/sm/710924-1496691568689-scorpio_price_roundup_thumb.jpg","duration":488,"publication_date":"2017-06-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-post-show-1","changefreq":"weekly","video":[{"title":"S1:E1 - New Game+ #1","description":"The Glitches take on a question from community member Fletch Love and discuss their favorite games that have been lost to time.","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-post-show-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b64a82d-d397-46fb-96ca-686290b44e63/sm/24363-1496435202317-IMG_7464.JPG","duration":665,"publication_date":"2017-06-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/glitch-please-season-1-the-glitches-become-camp-counselors","changefreq":"weekly","video":[{"title":"S1:E1 - The Glitches Become Camp Counselors - #1","description":"Welcome to the first episode of the Glitch Please podcast from the fine folks at Rooster Teeth and The Know! In this first episode join Gus, Ashley, Adam, and Ryan as they discuss the newest games they've been playing, run through the news (0:21:43), deep dive into what works and doesn't work about Friday the 13th (0:50:51), and share their predictions for E3 (1:11:41). This episode is sponsored by Blue Apron (http://cook.ba/2lWbtRf) and MVMT Watches (http://bit.ly/2rVycmp)\n\nHelp us name the post-show!","player_loc":"https://roosterteeth.com/embed/glitch-please-season-1-the-glitches-become-camp-counselors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4550ab16-c3ed-4889-a8be-b1e96ca0fed3/sm/24363-1496363685807-GP01_-_THUMB.jpg","duration":6044,"publication_date":"2017-06-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-copying-nintendo","changefreq":"weekly","video":[{"title":"2017:E189 - Microsoft STALKING Nintendo Switch? Hmmm","description":"Look, we get it. Nintendo Switch is that new kid in your class who seems really cool and suddenly everyone wants to be their friend and you're sitting there by yourself asking, \"Why not me?\" Microsoft has decided WHY NOT, INDEED and they seem to be taking aim at Nintendo's new console by trying to figure out what it is that makes everyone like it and give it a pass even though it doesn't have a ton of exclusives (yet) either.","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-copying-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39d7f69e-c629-4fc1-8497-f9cfcf60436a/sm/24363-1496362935538-thumbnail.jpg","duration":507,"publication_date":"2017-06-02T00:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-makes-voice-chat-as-complicated-as-humanly-possible","changefreq":"weekly","video":[{"title":"2017:E188 - WTF Nintendo Switch Voice Chat?","description":"NIntendo's been doing so well with the Switch launch you KNEW the other shoe had to drop sooner or later. Hori has unveiled their voice chat headset for Splatoon 2, and if this is what the console's voice chat is going to look like it's going to be a mess.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-makes-voice-chat-as-complicated-as-humanly-possible","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e49436-6cc6-45f0-9063-4e067e116572/sm/24363-1496358727228-thumbnail.jpg","duration":489,"publication_date":"2017-06-01T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-3","changefreq":"weekly","video":[{"title":"2017:E107 - PS4 Update Bricks Consoles? + More GTA Microtransactions + Switch is Indestructible","description":"A PS4 update is causing serious issues for some consoles. GTA owner Take Two thinks they can get gamers to pay MORE in microtransactions. Nintendo Switch is basically superhero-level indestructible, according to a new drop test.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0065297-0984-4d39-b483-dd8f4f0fad87/sm/24363-1496358302386-thumbnail.jpg","duration":477,"publication_date":"2017-06-01T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-supreme-court-vs-eul-as","changefreq":"weekly","video":[{"title":"2017:E24 - Do You Even OWN Your CONSOLE? Supreme Court Weighs In","description":"There's been an ongoing legal battle between patent owners and users about who actually OWNS the console you bought and what you're allowed to do with it. Self repair? Modding? All part of it. The Supreme Court has now weighed in on a case that may set the precedent for hardware ownership and pave the way for future software cases.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-supreme-court-vs-eul-as","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af5f1ec2-ca9c-4264-b940-972153f47128/sm/24363-1496274319518-thumbnail.jpg","duration":528,"publication_date":"2017-05-31T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-wonder-woman-already-getting-banned","changefreq":"weekly","video":[{"title":"2017:E24 - Wonder Woman BANNED","description":"It's not even out yet, but DC's Wonder Woman has run into a bit of a snag... it's gotten itself banned. Not even because of the movie itself, but because of geopolitics involving lead actress Gal Gadot. We're in the world news business now!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-wonder-woman-already-getting-banned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4eada14b-7782-45ea-b870-422d9ca2ce91/sm/24363-1496270959328-thumbnail.jpg","duration":409,"publication_date":"2017-05-31T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-4","changefreq":"weekly","video":[{"title":"2017:E106 - Pre-E3 FAKE LEAKS + Microsoft HATED Halo + Twitch Plays the Stock Market","description":"A bunch of pre-E3 game leaks have been outed as fakes. Microsoft apparently hated Halo before it came out. Twitch is playing the stock market and hasn't lost yet so that's saying something! Plus, PlayStation's bringing their E3 conference to theaters, Take Two buys Kerbal Space Program, Marvel vs Capcom's roster is losing some key players, Platinum is talking Bayonetta 3, there's ANOTHER new Pokemon mobile game, Tekken 7 is reviewing really well, Sonic Mania's been priced and dated, and Animaniacs is getting a reboot.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c73e01f8-10ab-4a35-9471-8a4c7ef9c262/sm/24363-1496269640239-thumbnail.jpg","duration":484,"publication_date":"2017-05-31T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-wonder-woman-is-it-good","changefreq":"weekly","video":[{"title":"2017:E23 - Wonder Woman: Is it Good? ","description":"Wonder Woman finally hits theaters this week.  After director drama and releasing on the heels of the critically-panned Suicide Squad, is this the movie to break the DC Extended Universe movie curse? Let's look at the reviews.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-wonder-woman-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53027873-4d08-491d-9901-7ba20a2ca3dc/sm/24363-1496185859110-thumbnail.jpg","duration":716,"publication_date":"2017-05-30T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-will-the-switch-shortage-continue-through-2017","changefreq":"weekly","video":[{"title":"2017:E187 - Nintendo Switch Shortage is APPLE'S FAULT?","description":"Nintendo is trying to ramp up production on the Switch to meet demand, but may face a surprising obstacle: Apple. They're now competing for parts that can't be manufactured in high enough quantities.","player_loc":"https://roosterteeth.com/embed/game-news-2017-will-the-switch-shortage-continue-through-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0db88c91-c3a7-4103-b3c2-1d70284e2e35/sm/24363-1496183224512-thumbnail.jpg","duration":447,"publication_date":"2017-05-30T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cancel-far-cry-5-ffvii-development-hell-record-low-box-office","changefreq":"weekly","video":[{"title":"2017:E105 - CANCEL Far Cry 5 (or not?) + 34 Games BANNED + Hollywood is Over Party?","description":"A petition to cancel Far Cry 5 has reached Change.org, the place where companies definitely listen if you get mad enough, but hold your horses because some of the supporters don't realize it's a joke. Uzbekistan has banned 34 games. This is the worst start to a Hollywood summer blockbuster season this millennium. Plus, there's no way Scorpio is launching as soon as August, Shenmue 3 is skipping E3, Monster Hunter XX is getting crossplay, Super Nintendo World is going to have REAL MARIO KART, Final Fantasy VII Remake may be showing symptoms of development hell, Call of Duty may be the biggest thing to happen to World War II since... World War II, Rime's creators have dared pirates to crack it, more details about the Mario/Rabbids game have leaked, and PS3 has officially been discontinued.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cancel-far-cry-5-ffvii-development-hell-record-low-box-office","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26b31b4a-9d6b-467d-b418-6ea42ee06eae/sm/24363-1496176210143-thumbnail.jpg","duration":691,"publication_date":"2017-05-30T20:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-a-history-of-e3-s-biggest-disappointments","changefreq":"weekly","video":[{"title":"2017:E186 - The Biggest BROKEN PROMISES of E3","description":"E3 is coming up and it's going to be a big year. Nintendo's going hard with the Switch, Xbox is bringing Scorpio, PlayStation is working hard to keep its lead. Just remember... not every promise gets kept. Here are some of the times we got excited for big E3 games, only to end up disappointed.","player_loc":"https://roosterteeth.com/embed/game-news-2017-a-history-of-e3-s-biggest-disappointments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b931409a-3569-4cc2-89d2-fefcfec78259/sm/24363-1496085927772-e3_broken_promises_thumb.jpg","duration":808,"publication_date":"2017-05-29T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-a-look-at-minigames","changefreq":"weekly","video":[{"title":"2017:E185 - A Look At MINIGAMES","description":"2017:E185 - A Look At MINIGAMES","player_loc":"https://roosterteeth.com/embed/game-news-2017-a-look-at-minigames","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/505e4c04-e6f8-4a28-89ab-6c4398371e75/sm/710924-1495993537220-Untitled-1.jpg","duration":457,"publication_date":"2017-05-28T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ff-vii-and-kh3-3-years-away-wtf-square","changefreq":"weekly","video":[{"title":"2017:E184 - FFVII Remake & Kingdom Hearts 3 are the NEW HITMAN?","description":"Hitman was an episodic, games-as-a-service experiment for Square-Enix. That one didn't do well enough to keep the publisher from axing the studio. But maybe... MAYBE... if they just try it with Final Fantasy and Kingdom Hearts it will work this time? Get ready for games as a service instead of games as...games!","player_loc":"https://roosterteeth.com/embed/game-news-2017-ff-vii-and-kh3-3-years-away-wtf-square","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e19114b-2ea1-4fc9-8f12-2ede6d31af81/sm/24363-1495844651684-thumbnail.jpg","duration":498,"publication_date":"2017-05-27T00:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-everything-we-know-so-far-about-far-cry-5","changefreq":"weekly","video":[{"title":"2017:E183 - Far Cry 5 RELEASE DATE! DETAILS! CULTISTS! What You Should Know","description":"Far Cry 5's been kicking up some good old controversy over its setting, but the new trailer looks pretty darn cool. Doomsday religious cultists, bear attacks, planes, AMERICAN TIGERS WHICH ARE DEFINITELY A REAL THING, cows, guns, mercenaries... we've got the details.","player_loc":"https://roosterteeth.com/embed/game-news-2017-everything-we-know-so-far-about-far-cry-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdf4f2ad-714c-4a96-8bf4-7ac856b0543c/sm/24363-1495844163318-thumbnail.jpg","duration":518,"publication_date":"2017-05-27T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-outselling-wii-bethesda-making-a-m-o-b-a-chips-serial-killer-promo","changefreq":"weekly","video":[{"title":"2017:E104 - Switch SAVES GameStop + Bethesda's NEW PROJECT? + Add Serial Killers to Chips!","description":"GameStop says the Nintendo Switch is selling better than the Wii did. Bethesda may have let the cat out of the bag about an unannounced MOBA project. A chips brand tried to use the internet for a campaign and the internet... interneted it. Plus, Nintendo Switch is getting a different version of FIFA, Beyond Good & Evil 2 is skipping E3, Bungie explains the lack of dedicated servers on Destiny 2, Monster Hunter XX is coming to Nintendo Switch, Rime reviews are hitting, Battlegrounds is making a ton of money, and the Guardians of the Galaxy ride may contain teases about the future of Marvel Cinematic Universe.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-outselling-wii-bethesda-making-a-m-o-b-a-chips-serial-killer-promo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/277a7916-ae90-4837-a0a0-b477177d922e/sm/24363-1495843314252-thumbnail.jpg","duration":567,"publication_date":"2017-05-27T00:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-far-cry-5-art-is-already-sparking-controversy","changefreq":"weekly","video":[{"title":"2017:E182 - Far Cry 5 TOO CONTROVERSIAL?","description":"Ubisoft release their big teaser image for Far Cry 5 ahead of the game's trailer, and it's started a whirlwind of debate online over whether the game is going too far by setting white Americans as the bad guys.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-far-cry-5-art-is-already-sparking-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/389afea9-0d96-462b-b90e-0666209e8836/sm/24363-1495760016881-thumbnail.jpg","duration":370,"publication_date":"2017-05-26T00:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-fidget-spinner-porn","changefreq":"weekly","video":[{"title":"2017:E23 - Fidget Spinners TAKE OVER Adult Videos?","description":"Did you have some faith in humanity left? Let's just erase that for you. You know those fidget spinners everyone's going crazy over? They're going REALLY crazy. Like looking for tons of fidget spinner...um... adult oriented videos. You know what we mean. This is the darkest timeline, but at least it's entertaining.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-fidget-spinner-porn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3557144-437f-4b1a-81ee-57fe27cd445c/sm/24363-1495758988135-thumbnail.jpg","duration":468,"publication_date":"2017-05-26T00:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-saves-retail-overwatch-skins-a-rip-off-the-batman-villain-rumors","changefreq":"weekly","video":[{"title":"2017:E103 - Nintendo SAVES Retail? + Overwatch Skins a Rip-Off? + The Batman Villain","description":"Nintendo's getting the credit for saving retail stores. Complaints about Overwatch's anniversary skins costing too much. We've got word on The Batman's big villains.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-saves-retail-overwatch-skins-a-rip-off-the-batman-villain-rumors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c243612-899b-4b80-84b7-fcc5ec6e8d28/sm/24363-1495758681575-thumbnail.jpg","duration":467,"publication_date":"2017-05-26T00:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-everything-you-need-to-know-about-xbox-game-pass","changefreq":"weekly","video":[{"title":"2017:E181 - Xbox Game Pass OUT NOW! Exactly What Xbox Needed?","description":"Xbox Game Pass got a surprise release for Xbox Live Gold members today with a healthy mix of Xbox One and Xbox 360 titles to choose from. Is this what Xbox needed to transform its model?","player_loc":"https://roosterteeth.com/embed/game-news-2017-everything-you-need-to-know-about-xbox-game-pass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bed2c92d-2761-41d7-a0ff-059caea927ae/sm/24363-1495679658799-xbox_game_pass_thumb.jpg","duration":488,"publication_date":"2017-05-25T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-red-dead-redemption-2-skipping-e3","changefreq":"weekly","video":[{"title":"2017:E180 - Red Dead Redemption 2 GOES DARK","description":"Red Dead Redemption 2 was officially delayed earlier this week. If you were hoping to learn more about it at e3 anyway... bad news.","player_loc":"https://roosterteeth.com/embed/game-news-2017-red-dead-redemption-2-skipping-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3946c3b3-5d8f-40b2-82c4-408d3c5c9444/sm/24363-1495663622599-thumbnail.jpg","duration":424,"publication_date":"2017-05-24T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-live-h-a-c-k-e-d","changefreq":"weekly","video":[{"title":"2017:E179 - Xbox Live HACKED?","description":"Xbox Live has been compromised by a Chinese company that's stealing accounts and using victims' credit cards to buy and sell online goods.","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-live-h-a-c-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec88500-9c7a-4db6-8db3-02abb3cd125a/sm/24363-1495577747506-thumbnail.jpg","duration":522,"publication_date":"2017-05-23T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-zack-snyder-stepping-down-from-justice-league-movie","changefreq":"weekly","video":[{"title":"2017:E22 - Joss Whedon Replaces Zack Snyder on Justice League","description":"Zack Snyder has announced he's stepping back from work on the Justice League movie due to a death in the family. Avengers (and Batgirl!) director Joss Whedon is taking the helm on the superhero team up film from here.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-zack-snyder-stepping-down-from-justice-league-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fc35565-79c7-4e63-9a22-37626f67f5c4/sm/24363-1495576954901-thumbnailv2.jpg","duration":334,"publication_date":"2017-05-23T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-4","changefreq":"weekly","video":[{"title":"2017:E101 - Borderlands 3 Teased + Valve Hires Kerbal Space Program Devs + RIP Roger Moore","description":"Take Two teased what sounds like Borderlands 3 in their investor briefing. Valve has confirmed it hired Kerbal Space Program devs, but the KSP devs aren't sure who... James Bond actor Roger Moore has passed away. Plus, Red Dead Redemption 2's delay has hurt Take Two stock temporarily, IO Interactive announces layoffs, Shadow of War is skipping Nintendo Switch, the voice actor's strike claims its making progress, PSN hits 70 million users, the Resident Evil movies are getting rebooted, Neil Blomkamp is releasing an experimental movie on Steam, Universal's Dark Universe has been revealed, and the Yandere Simulator dev has been accused of stealing art for his game.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ade6323-7eeb-4c0d-b0ab-cb1e13c23b49/sm/24363-1495571532583-thumbnail.jpg","duration":628,"publication_date":"2017-05-23T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-8","changefreq":"weekly","video":[{"title":"2016:E87 - FOR MY GIRLFRIEND • WRONG SIDE OF YOUTUBE ","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nЗааны их бие нь зөвхөн урт, энэ нь хүн тав дахин их үнэр рецептортой савлаж биш юм байна. тэр ч байтугай өөрийн шиншлэх чадвараараа танигдсан bloodhound зэрэг нохой зодож - одоо судалгааны Африкийн заан хөхтөн амьтдын дунд үнэр хамгийн агуу мэдрэмж гэж байдаг юм.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAkahana : George wahi hânai holoholona paha , aole i komo i loko o ke kino hale Competition i ka 2013 .\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank You  ","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cec5a91-906d-49c6-9fc9-b8916a8778ea/sm/2516933-1473876658561-YoutubeEP11.jpg","duration":986,"publication_date":"2016-09-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-94","changefreq":"weekly","video":[{"title":"2016:E86 - NEW CHEF • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\n\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\n\n\n\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\n\n\n¿Qué carajo es lo que acabas de mierda decir de mí, pequeño chef? Voy a tener que sabes que me gradué parte superior de mi clase en la Academia de cocina, y he estado involucrado en numerosas competiciones de cocina en China, y tengo más de 300 premios de cocina confirmados. Estoy capacitado en pizza mueve de un tirón y yo soy la arrocera superior de todas las fuerzas estadounidenses de cocina. No eres nada para mí, pero simplemente otro cliente. Yo te limpie la mierda a cabo con precisión los gustos de los cuales nunca se ha visto antes en esta Tierra, marca mis putos palabras. ¿Cree que puede salir a decir que mierda para mí a través de Internet? Piense otra vez, hijo de puta. En estos momentos me pongo en contacto con mi red secreta de chefs de todo el EE.UU. y su IP se está trazando en este momento por lo que es mejor prepararse su paladar, maggot.You're puta hambre, cabrito. Puedo estar en cualquier lugar, en cualquier momento, y puedo crear una comida increíble para usted en más de siete mil maneras, y eso es sólo con mis manos desnudas. No sólo soy ampliamente capacitados en la cocina sin armas, pero no tengo acceso a todo el arsenal de los Cuerpos de Chef Estados Unidos y lo voy a utilizar en toda su extensión para limpiar su lamentable culo de la faz del continente, pedazo de mierda. Si tan sólo pudiera haber sabido lo profano retribución a su pequeño comentario \"inteligente\" estaba a punto de hacer caer sobre ti, tal vez le haya poseído su puta lengua. Pero no podía, que no lo hizo, y ahora está pagando el precio, Maldito idiota. Cagaré furia sobre ti y te ahogaré en ella. Estás hombre muerto, chico.\n\n\n\n\n\n\n\n\n\nAleks aslında mutfakta kötü şef . O gerçek özürlü biridir a","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a061abb-ec0a-4ddf-826a-507fd553493c/sm/2516933-1473799528433-overcooked.png","duration":610,"publication_date":"2016-09-13T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-114","changefreq":"weekly","video":[{"title":"2016:E85 - ALDRICH, DEVOURER OF GODS • Dark Souls 3 • Ep 32","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\nThe following is for those multicultural.\n\n\n\nMezin de, Arrow Barrage move herî metirsîdar Aldrich ye. Di qonaxa yekê de dikare bê ew ji aliyê diçin jorê nêzî patronê û tenê bi kişandina pişt boss dema ku mîrê hovîtî , di heman demê de di qonaxa duyemîn de , Tîrên te bişopîne û dom dike êdî . Ev dikare bi bandor rolling di pattern sêgoşe an jî bezandin û hovîtî .\n\n\n\nसिकारु विजार्ड आफ्नै संसार छ। उहाँले सबै भन्दा राम्रो सल्लाह दिनुहुन्छ। आशा छ एक दिन उहाँले फिर्ता हुनेछ।\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edb4e2d9-f9bc-4b83-b078-b7a1645a209a/sm/2516933-1473471452489-darksoulsep33.jpg","duration":790,"publication_date":"2016-09-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-26","changefreq":"weekly","video":[{"title":"2016:E82 - PAX WEST • Behind the Cow Chop ","description":"Twitter: https://twitter.com/CowChop\n\nSubscribe: http://bit.ly/1RQtfNf\n\n\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\n\n\nRT First: http://bit.ly/2b4bWuW\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\nIn this episode of Elevator Explorers, James and Aleks meet up with some fans at PAX, continue their quest to burn the Cow Chop house to the ground, and attempt to access the mysterious 28th floor of their hotel. \n\n\n\n\n\n\n\nThe following is for those multicultural:\n\n\n\n\n\n\n\nAquam gibbum camelorum thesauros non , ut vulgo creditur . Actu gibbum pingue eget lacus . Videlicet corpus adipem in gibbum , Regium per calorem captanda velit reliqua corporis , quae potest esse accommodata ad climate et in calidum .\n\n\n\n\n\n\n\nTrẻ sơ sinh là \" thở mũi bắt buộc . \" Điều này có nghĩa là họ không thể thở bằng miệng trong vài tháng đầu đời . Bởi vì em bé có mũi nhỏ , họ âm thanh nghẹt khi họ thở .\n\n\n\n\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80bfd24c-d618-42a3-b257-57c4392ec8f9/sm/2516933-1473368205217-9-11rough.jpg","duration":682,"publication_date":"2016-09-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-5","changefreq":"weekly","video":[{"title":"2016:E84 - ELECTROLARYNX EXPERIMENT • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: http://bit.ly/1XU3JgS\n\nDiscuss: http://bit.ly/1qvrlLD \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this.","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e2a4d6a-febd-4570-b825-c9230a0b1da9/sm/2516933-1473445692207-AmazonVoiceChanger.jpg","duration":987,"publication_date":"2016-09-09T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-100-layers-of-peanut-butter-and-jelly","changefreq":"weekly","video":[{"title":"S1:E83 - 100 LAYERS OF PEANUT BUTTER AND JELLY","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nJames and Aleks go above and beyond to perform the 100 layers challenge, they decide to make the ultimate peanut butter and jelly sandwich with 50 layers of peanut butter, and 50 layers of jelly. Combined they transform into something spectacular.\n\nThe following is for those multicultural.\n\n\n\nEspero que James no hay nada de mantequilla de maní atascado en el culo . Me imagino que sería muy difícil salir . Aleks en el otherhand , sin embargo, sólo un ligero apretón con sus músculos culo y todo lo que la jalea deben deslizarse a la derecha .\n\n\n\nAng kantidad sa peanut butter ug jelly ilang gigamit nga sa linalugan nga mga sa usa ka bug-os nga cafeteria sa mga bata alang sa mga semana , apan among gigamit kini sa Meme sa, pasalamat .\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-100-layers-of-peanut-butter-and-jelly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d75db1b-3c69-4e8b-a487-bc2a86f9f2b7/sm/2516933-1473374571449-pbj.jpg","duration":844,"publication_date":"2016-09-08T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-95","changefreq":"weekly","video":[{"title":"2016:E81 - BLIND RUN • Dark Souls 3 • Ep 31","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!?\n\n\n\nThe following is for those multicultural.\n\n\n\nDr. Loomis ne almara hali a cikin tsoro jerin, Halloween . Kowane Halloween Michael Meyers ne da baya ya kashe marar laifi mutane, kuma ya Docter kullum yayi kokarin dakatar da shi. Michael Lumis daya daga cikin biyu marubuta suka rubuta Duhu Rayukan 3 dabarun shiryarwa.\n\n\n\nविशालकाय लोहार Anor Londo में रह रहा था । वह दोस्तों Astora और हॉकआई गफ के आंद्रे के साथ था। वह थोड़ी देर पहले मर गया\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/675ede42-d92a-4233-a7b4-bbcc5ff4f3e1/sm/2516933-1473352776329-darksoulsep31.jpg","duration":893,"publication_date":"2016-09-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2016-4","changefreq":"weekly","video":[{"title":"2016:E80 - GO IN THE BASEMENT • Virtual Reality Gameplay ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: http://bit.ly/1XU3JgS\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nWe're back with more VR, this time with our first VR horror game. Watch as Trevor attempts to hide from the Boogeyman while being manipulated and harassed by Aleks and James.\n\n\n\nThe following is for those multicultural.\n\n\n\nLub Boogyeman yog ib qho npaum nkaus mus rau ib tug mythical zeej nyob rau hauv ntau haiv neeg siv los ntawm cov laus ntshai cov me nyuam mus rau hauv coj cwj pwm zoo . Qhov no dab twb tsis muaj ib qho zoo li, thiab conceptions txog nws yuav sib txawv ruaj los ntawm tsev neeg mus tsev neeg nyob rau hauv tib lub zej zog; nyob rau hauv Feem ntau, nws twb tsis muaj cov teeb tsos nyob rau hauv lub siab ntawm ib tug neeg laus los yog tus me nyuam , tab sis yog tsuas yog ib tug uas tsis yog - kev embodiment ntawm ntshai.\n\n\n\nTrevor ønsker å gjøre det klart at han ikke var under påvirkning av narkotika eller alkohol under filmingen av dette spillet. Aleks og James ble imidlertid tent af .\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c53642d-7843-42f3-9a1b-8bd4b9a3267c/sm/2516933-1473271660805-VRBoogeyman.jpg","duration":840,"publication_date":"2016-09-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-97","changefreq":"weekly","video":[{"title":"2016:E79 - ILLEGAL TRIVIA • The Guy Game","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nTwitter: https://twitter.com/CowChop\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n James brings in a game that could potentially put all of the Cow Chop guys in jail. Guy Game is a trivia game that has been banned due to some a certain element shown in the game. Aleks will have to get through this game show before he is arrested!\n\nThe following is for those multicultural. \n\n\n\nNici nu vreau să tastați nimic pentru acest video de data asta . Și dacă asta mă face complice ? Nu pot supraviețui în închisoare . Sunt prea fragil . trimite- ajutor, vă rugăm\n\n\n\nد رضايت عمر عمر چې یو کس ګڼل قانوني صلاحیت لرونکې ته د جنسي اعمالو راضي وي ، او په دې توګه دی چې لږ تر لږه يو کس د چا سره چې د بل چا په قانوني اجازه ده چې په جنسي فعاليت کې ګډون عمر . د د رضايت قوانينو د عمر متمایز اړخ دا دی چې په لاندې حد اقل عمر شخص د قرباني په توګه وبلل ، او \n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/145cc622-5f4d-4e63-8e7b-a75a08efdfc1/sm/2516933-1473202174966-GuyGame.jpg","duration":715,"publication_date":"2016-09-06T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-101","changefreq":"weekly","video":[{"title":"2016:E74 - CHEF VS CHEF • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNfCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuWDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\nThe following is for those multicultural.\n\nIn 1994 , Chef Boyardee in licentie Sesamstraat Pasta in de vorm van Big Bird , Ernie , Bert , Elmo en Cookie Monster . De lijn bestond uit zeven rassen ; vier ingeblikt punt keuzes voor de kleuters en drie microwavable keuzes voor peuters.\n\nარ არსებობს ასეთი რამ, როგორც ღალატი , სამზარეულო. ყველას მუშაობს ერთად, რათა მომხმარებელს ბედნიერი. გასაღები კარგი მზარეული მისი უნარი კარგად მუშაობს სხვებთან ერთად ! Trevor და ჯეიმს არ არის კარგი chefs.\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cf74da7-60c2-4c48-a984-d24702f99add/sm/2516933-1472694305595-overcookedep6.jpg","duration":668,"publication_date":"2016-09-05T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016-2","changefreq":"weekly","video":[{"title":"2016:E78 - TINY TOON CHEATERS • Retroactive","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nTwitter: https://twitter.com/CowChop\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nToday's Retro game is Tiny Toon Adventures, Buster's Hidden Treasure, brought in by James and played by our good ole pal Aleks. They soon learn though the deep dark secrets of this piece and spiral into a manic insanity of feverish dreams and thoughts. \n\n\n\nThe following is for those multicultural. \n\n\n\nCuando estaba atrapado en una isla aislada en el medio del océano , lo único que tenía que jugar era aventuras de Sonic , el mejor juego jamás se ha hecho . Me gustaría correr alrededor de la isla a la velocidad de la luz , pero eso no durará mucho tiempo , con el tiempo mis piernas se debilitaron , y llegaron a ser extremadamente sed. No pasó mucho tiempo para mi a sentirse mal y estar al borde de la muerte. Sin embargo vi una luz , la luz de un barco , y en ese barco que tenía una Sega Genesis con todos los juegos de Sonic en él . Fue un sueño hecho realidad.\n\n\n\nНо на самом деле , я только как Тасманский дьявол .\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/retroactive-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98267ed5-7d87-4cb1-bfc0-cfd42b32b58e/sm/2516933-1472860360266-Retroactive2.jpg","duration":900,"publication_date":"2016-09-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-16","changefreq":"weekly","video":[{"title":"2016:E77 - TENDER McCHICKEN REACTION • Behind the Cow Chop","description":"Twitter: https://twitter.com/CowChop\n\nSubscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nThe gang reacts to a viral McChicken video, which inspires them. James, Trevor, and Joe get kicked out of Good Will. Catch Aleks sleeping on the job, and watch James set up for the Chicken Tender Challenge. \n\n\n\nChicken Tender Challenge \n\n\n\nThe following is for those multicultural.\n\n\n\nΚέρατα πεπόνι είναι στην οικογένεια αγγούρι και το πεπόνι . Οι γεύσεις όπως το αγγούρι , κολοκύθι , μπανάνες και λεμόνι . Φάτε το horny φλούδα , γιατί είναι γεμάτη με πράγματα που είναι καλό για σας .\n\n\n\nVänner som meme tillsammans , hålla ihop .\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3cd0ab4-c097-496b-9da9-cc6cff76771c/sm/2516933-1472850299159-BTS_MAIN.00_20_44_170.Still009.png","duration":675,"publication_date":"2016-09-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-99","changefreq":"weekly","video":[{"title":"2016:E76 - SAUSAGE PARTY • Sausage Sports Club ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: https://twitter.com/CowChop\n\nDiscuss: http://bit.ly/1qvrlLD\n\nSausage Sports Club on Kickstarter: http://kck.st/2b8BgDE\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nSausage Sports Club is a gift to those who wish Rocket League had less rockets and more phallic imagery. \n\n\n\nThe following is for those multicultural.\n\n\n\nSalsicce erano soprannominati petardi durante la seconda guerra mondiale . Il loro alto contenuto di acqua a causa della scarsità di altri ingredienti ha fatto sì che fossero potrebbero esplodere durante la cottura come l'acqua si rivolse a vapore.\n\n\n\nA palavra \"cara \" foi usado pela primeira vez no final de 1800 como um termo de zombaria para os homens jovens que estavam excessivamente preocupados com manter-se com as últimas modas . Ele mais tarde veio a representar o povo da cidade à nora ( que vão para ranchos ) antes que se transformou em nosso todos os fins etiqueta descontraído para um cara .\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c720db8e-690f-48d9-8e34-bce9237f797e/sm/2516933-1472841212136-Sausage.jpg","duration":863,"publication_date":"2016-09-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-100","changefreq":"weekly","video":[{"title":"2016:E75 - PARANORMAL HUNT • WRONG SIDE OF YOUTUBE","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\n\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\n\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\nThe following is for those multicultural.\n\n\n\n\n\n\n\nAmin'ny McDonalds aho nihinana ny nahandroko rehefa tampoka ny sakafo nanidina ny alalan ' ny rivotra tsy misy fanazavana . Freaked avy aho . Nanomboka nahita olon-kafa izay nihinana teo koa ny sakafo mitora manodidina . Fa tsy nisy olona mikasika ny sakafo izay efa natomboka na aiza na aiza . I nihazakazaka nivoaka haingana niaraka tamin'ny hafa rehetra , ary izany rehefa nahita ny sasany freaky kokoa zavatra hitranga . Hitako ketchup rehefa nohosorana tamin'ny tsipelina am-baravarankely ny \" Ampitomboy ny VOLA ! \" Tsy maintsy ho Ronald McDonald . Izany mampatahotra fucking mpanao hatsikana.\n\n\n\n\n\n\n\nAš vieną kartą data vaiduoklis jis buvo toks seksualus ir skanus. Jis visada man duotų geriausius masažai ir būtų tokius gražius gestus. Aš visada bando pabučiuoti vaiduoklis , bet tai niekada pabučiuoti atgal. Aš gali būti crazy, bet aš myliu savo dvasią.\n\n\n\n\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8d021eb-3137-4251-bcc4-b7ab3e102fd9/sm/2516933-1472699962876-YoutubeGay.jpg","duration":900,"publication_date":"2016-09-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-102","changefreq":"weekly","video":[{"title":"2016:E72 - HOOK JOB • Human: Fall Flat","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: https://twitter.com/CowChop\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nHuman: Fall Flat is the latest artistic video gaming experience which seeks to immerse the player in a world of rag-doll puzzle solving and dick jokes. \n\n\n\nThe following is for those multicultural.\n\n\n\nIspod svakog prednjom nogom , more vidra ima labave vrećicu kože koja se proteže preko prsa . U ovoj vrećici ( prvenstveno lijevi ) , prodavaonice životinja prikupljene hrane da bi na površinu. Ova torbica također ima stijenu, jedinstveno u vidra, koja se koristi za obiti školjke i školjke .\n\n\n\nJohn Adams Serokê yekem ji bo dagirkirina Qesra Spî di 1800 de bû ; yek ji yekemîn additions xwe a baxçe nebatî bû.\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6fd0ea3-7a43-4632-badc-bc480fa29b5d/sm/2516933-1472605326242-humanfallflatep4.jpg","duration":865,"publication_date":"2016-08-31T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-chicken-tender-challenge","changefreq":"weekly","video":[{"title":"S1:E73 - CHICKEN TENDER CHALLENGE","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nTrevor takes up the challenge of taste testing and \"reviewing\" a multitude of chicken tenders from various vendors from all across the local county. To get him ready for his big day, James gets him suited up while Aleks prepares the meaty meals for him. \n\n\n\nThe following is for those multicultural.\n\n\n\nIna ia faamaoni Tauofoga moa e le o le tele , e le o moa breaded . Ae latou lautele maua ma faigofie e kuka ma prep . le a avea le taumafataga muamua faia i latou, ma e fai lava si faigata ona fuck i latou, ae peitai vendors pea pulea e fuck i latou .\n\n\n\nChat hanyag , manok tudlo , manok strips , manok tarogo , manok tibugol , manok tendies , ang tanan nga sa sama nga butang apan daghan kaayo nga mga ngalan alang sa maong usa ka yano nga kalan-on .\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-chicken-tender-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95365847-80ca-464f-a491-64d33f14d054/sm/2516933-1472604221347-ChickenTender.jpg","duration":1035,"publication_date":"2016-08-31T00:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-103","changefreq":"weekly","video":[{"title":"2016:E71 - PONTIFF SULYVAHN • Dark Souls 3 • Ep 30","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!? \n\n\n\nThe following is for those multicultural.\n\n\n\nExpertul se întoarce este plecat , dar acum e ceva aproape la fel de bun : ghid de strategie . Acest lucru ar trebui să ajute până când Ucenicul Expertul se întoarce . El se întoarce , nu?\n\n\n\nPontiff e bi hêsanî yek ji Ercîşê patronên di game . tiştekî baş e stîlên patronê wê derê, Eggbert. Legend dibêje Eggbert heye herî mezin dick li dora . Bi ew di destê , ew alîkariya têk Pontiff .\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2514622e-ea6e-4750-a6d5-80988d9b8a1a/sm/2516933-1472522674312-05EA70E2785CF9B18D8ACB65AFEBC9288F4E398005BB52CA8Apimgpsh_thumbnail_win_distr.jpg","duration":788,"publication_date":"2016-08-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-104","changefreq":"weekly","video":[{"title":"2016:E70 - CHEF STRESS • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\nThe following is for those multicultural.\n\nЗагрейте фурната до 350 градуса F ( 175 градуса С) . Мазнините и брашно с 9x9 инча тиган или линия кифла тиган с хартиени втулки .\n\nВ средно голяма купа , сметана заедно захарта и маслото . Разбийте в яйцата , едно по едно , а след това се разбърква в ванилия . ...\n\nПече се в продължение на 30 до 40 минути в предварително загрята фурна . За тарталети , пекат 20 до 25 минути.\n\nVo veľkej mise Umiestnite nabral dužina avokáda a limetovej šťavy , premiešajte . Drain , a vyhradiť limetkovej šťavy , potom, čo boli potiahnuté všetky avokáda . Použitie Masher zemiakov pridáme soľ , rascu , a kajenské korenie a kaše . Potom vmiešame cibuľu, paradajky , koriandrom a cesnakom . Pridajte 1 polievkovú lyžicu rezervovaného limetkovou šťavou . Nechal stáť pri teplote miestnosti po dobu 1 hodiny a potom slúžiť.\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef0eb705-a0e5-4ca8-8cb7-136d74955288/sm/2516933-1472497429147-overcookedep5.jpg","duration":648,"publication_date":"2016-08-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-17","changefreq":"weekly","video":[{"title":"2016:E69 - 75,000 DOLLAR BACKPACK • Behind the Cow Chop ","description":"Twitter: https://twitter.com/CowChop\n\nSubscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nAleks has another gift, this time it's for Trevor. James also has a present for anyone who dares to try it. And did you know The Rock is James' mom's favorite wrestler? Watch to find out her reaction to The Rock's infamous Cow Chop tweet. \n\n\n\nThe following is for those multicultural.\n\n\n\nSurge er en sitrus flavored brus ( smaker som Sprite , men med caffine ) utviklet av Coca Cola i 1997 for å konkurrere med Pepsi Mountain Dew. Lagging salg forårsaket produksjonen å ende i 2003 for de fleste markeder . Men populære fan baser ledet Coca - Cola til å re - slipp brus via Amazon.com Prime.\n\n\n\nPlecak , który kosztował 75K jest prawdziwa historia . Sprzedawca wziął plecak off Amazon po zdając sobie sprawę z pomyłki. Plecak był z powrotem do sprzedaży wkrótce po , z właściwą cenę.\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebca90b5-8c41-4400-a314-82a7492e0f54/sm/2516933-1472266221247-bts.jpg","duration":665,"publication_date":"2016-08-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-105","changefreq":"weekly","video":[{"title":"2016:E68 - DISABLED CHEF • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\nThe following is for those multicultural.\n\nUn chef dans un fauteuil roulant est tout aussi bon en tant que chef de 16 pieds . Il n'y a absolument aucune différence . Un chef handicapée peut faire quelque chose que vous pouvez faire mieux.\n\nSiempre asegúrese de que su entorno de trabajo es seguro cuando se está cocinando la comida ! Un suelo resbaladizo es un suelo peligroso. La causa número uno de muerte en el mundo es de los cocineros se hundan en el abismo al tratar de entregar los alimentos . ¡Cuida tu paso!\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb310338-65fb-4566-9390-945b269cbba1/sm/2424803-1472257422874-overcookedep4.jpg","duration":725,"publication_date":"2016-08-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wrong-side-of-you-tube-2015-9","changefreq":"weekly","video":[{"title":"2016:E67 - DEEP INTO JOKER'S MOM • WRONG SIDE OF YOUTUBE","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nYoutube has such a vast variety of great content! Why make youtube great again when youtube is already great?! See this video as an example. Where else can you go on an adventure through the deepest darkest weirdest side of video making and sharing, only here on this wonderful site will you get that experience, and now you can come along for the ride with us as we take you there!\n\n\n\nThe following is for those multicultural\n\nJoker haurra naiz. Eztabaida zikin zidan eta deitu dit zure jokester. Esadazu duzu zakarra kudeatzeko me eta zure ukondoetan eta zure zure oinak off gazta miazkatzeko nahi. edozein dela ere, betiere me deitu Joker haurra mesedez egingo dut . Oh bai oi bai!\n\nHusker da min mor hadde sin egen YouTube-kanal, og ville gjøre vlogger? Ja det var super vanskelig. Jeg tror det er en grunn mest mors ikke vlog . Eller hvis de gjør jeg tror de kan gjøre det en merkelig profilnavn, noe som sexy ass mamma booty... eg mener mamma vlogger. Den ene gangen jeg gikk inn i skolen og min venn kom bort til meg og sa at han var å se på denne nye kanalen. Hun var varm og gjorde twerking tutorials. Jeg sa herregud du må vise meg. Så han gjorde...det var min mor. Faen!\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/wrong-side-of-you-tube-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a598e128-bee2-45c0-afd1-3375d4261306/sm/2516933-1472152154390-YoutubeJoker.jpg","duration":982,"publication_date":"2016-08-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-106","changefreq":"weekly","video":[{"title":"2016:E66 - THAT MINE PLACEMENT • Death Stair ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nAleks, James, Joe and Trevor try out a new competitive early access game featuring balls and rag-dolls.\n\n\n\nThe following is for those multicultural.\n\n\n\nVill du veta vad suger ? Redigering 4 separata POVs och ansikts kammar medan alla pratar över varandra . Och alla jag menar James .\n\n\n\nSebuah benda bergerak akan tetap bergerak kecuali sesuatu yang mendorong atau menarik di atasnya . Pernyataan ini disebut hukum pertama Newton tentang gerak . Tanpa gravitasi , satelit yang mengorbit Bumi akan pergi ke luar angkasa sepanjang garis lurus . Dengan gravitasi , itu ditarik kembali ke bumi .\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f49094-c57c-4793-bfe2-18da938056a2/sm/2516933-1472151659738-deathstairsep2.jpg","duration":605,"publication_date":"2016-08-25T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-107","changefreq":"weekly","video":[{"title":"2016:E65 - HUMAN INGENUITY • Human: Fall Flat","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: https://twitter.com/CowChop\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nHuman: Fall Flat is the latest artistic video gaming experience which seeks to immerse the player in a world of rag-doll puzzle solving and dick jokes. \n\n\n\nThe following is for those multicultural.\n\n\n\nGodzilla té un rugit distintiu , el qual va ser creat pel compositor Akira Ifukube , que el so produït pel frec d'un guant recobert de resina al llarg de la cadena d'un contrabaix i després alentir la reproducció.\n\n\n\n生殖クローニングでは、研究者は、彼らがコピーしたい動物から、このような皮膚細胞として、成熟した体細胞を除去します。そして、彼らは独自のDNA含有核を取り除いてきた卵細胞、または卵母細胞へドナー動物の体細胞のDNAを移します。\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4016b691-17af-443f-b015-f32e751382f9/sm/2516933-1472004707444-humanfallflatep3.jpg","duration":616,"publication_date":"2016-08-24T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-109","changefreq":"weekly","video":[{"title":"2016:E62 - MEALS ON WHEELS","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\nThe following is for those multicultural.\n\nChefs de todo el mundo están en el temor sobre la capacidad de este equipo para cocinar . Ellos son realmente sorprendentes para las hazañas que han acomplished . Estos tipos pueden cocinar para mis hijas en cualquier momento si usted sabe lo que quiero decir\n\n\n\nAna m echeta ụbọchị mgbe m na-eji na-enwe ike iri ihe ọ bụla m chọrọ. My mmasị nri iri ihe bụ achicha. Nice chunky chocolate achicha jupụtara na topped na icing . Nanị iche banyere ya na-eme m super agbanwuru. Na na ya , m na-aga na-eri achicha ọ dịghịkwa onye nwere ike ịgwa m ka m n'ụzọ ndị ọzọ . M hụrụ n'anya achicha! Gịnị ka ị hụrụ n'anya na- eri?Thank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10c29b42-8e0d-4b98-8214-a03e11b5d015/sm/2424803-1471659174899-overcookedep3.jpg","duration":656,"publication_date":"2016-08-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-prime-time-2015-4","changefreq":"weekly","video":[{"title":"2016:E64 - FIRE IN THE PEE HOLE • AMAZON PRIME TIME","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: http://bit.ly/1XU3JgS\n\nDiscuss: http://bit.ly/1qvrlLD \n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nIt's PRIME TIME. AMAZON PRIME TIME. Amazon is well known for being a great service to obtain items in a quick and timely manner. With this new show not only do we put that to the test, but we venture into what Amazon is all about, the weird shit. \n\n\n\nThe rules are simple, using our collective funds we buy a few items for each other and not knowing what they are, we share them with one another on the couch. We could very well go poor doing this, we just want you to know this. \n\n\n\nThe following is for those multicultural.\n\n\n\nJugamos con la cabeza doody todo el tiempo en nuestra escuela cristiana , mi maestro, el Sr. Gasglinger es siempre el mejor jugador. Siempre hacemos apuestas con él con la esperanza de que cuando ganamos podemos obtener un premio , si ganamos , nosotros no tenemos que hacer los deberes de días , pero si gana tenemos que darle un beso , que por lo general nos da una beber demasiado para relajarse , a veces me relaja mucho y aunque me quede dormido .\n\n\n\nلقد جمعت طن من تلك الدمى ملاك قليلا ، وأنا أحب أن أجوف بها حتى أتمكن من نقل المخدرات فيها. لا أحد من أي وقت مضى يشك أي شيء.\n\n\n\nThank you","player_loc":"https://roosterteeth.com/embed/amazon-prime-time-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d742069-155c-4178-a616-f3f16d450c68/sm/2516933-1471887917017-AmazonSexToy.jpg","duration":902,"publication_date":"2016-08-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-110","changefreq":"weekly","video":[{"title":"2016:E61 - YHORM THE GIANT • Dark Souls 3 • Ep 29","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!? \n\n\n\nThe following is for those multicultural.\n\n\n\nPo wejściu do pokoju , biegać do tronu i zgarnij Storm Linijka (chyba, że zabił niewinnego RPP i już masz go ) . Broń ta jest niezbędna , aby zrobić sensowne uszkodzenia Yhorm . Z Storm Linijka wyposażony, walka jest zasadniczo tylko uniku , co jest bardzo łatwe.\n\n\n\nЧирак волшебникот потона во близина на каучот и магично се претвори во свој свет. Тој ни ја водеше низ сцили и ќе се пропушти. До следниот пат, Чирак волшебникот.\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b51d826-061b-4cab-a16b-8fb47c8c0ec9/sm/2516933-1471653905152-darksouls26.jpg","duration":897,"publication_date":"2016-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/retroactive-2016","changefreq":"weekly","video":[{"title":"2016:E63 - BOOGERMAN VS BOOGERMEISTER • Retroactive","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nTwitter: https://twitter.com/CowChop\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nWe start a new series where we play retro games from our childhood. Aleks surprises James with one of the first games he's ever played when living in a Russian Prison Camp called Boogerman. Janitor by day Boogerman by night, he pretty much saves the world from evil with his super boogers and burps.","player_loc":"https://roosterteeth.com/embed/retroactive-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a7fa8b5-f2b8-4f00-ac1e-cd253afb4b8d/sm/2516933-1471665408314-Retroactive.jpg","duration":970,"publication_date":"2016-08-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-18","changefreq":"weekly","video":[{"title":"2016:E60 - GOING BALD • Behind the Cow Chop ","description":"Twitter: https://twitter.com/CowChop\n\nSubscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nJoe learns that the eating challenge was sabotaged, but cuts his hair anyway while Aleks shares his new gift with the guys. \n\n\n\nThe following is for those multicultural.\n\n\n\nНе брини , Јое коса је поклонила неког странца коју је упознао у слабо осветљеном бар касно ноћу .\n\n\n\nBibby Bobs மனிதகுலத்திற்கு தெரியவில்லை கருவிகள் , 2016 இல் ட்ரெவர் மூலம் கண்டுபிடிக்கப்பட்டது உள்ளன.\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1733121a-e819-4a6d-88e9-85a87429a46d/sm/2516933-1471648182047-8-21.jpg","duration":768,"publication_date":"2016-08-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-29","changefreq":"weekly","video":[{"title":"2016:E59 - TOO MANY BALLS • Death Stair ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxDRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLDBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nAleks, James, Joe and Trevor try out a new competitive early access game featuring balls and rag-dolls.\n\nThe following is for those multicultural.\n\nIngabe bewazi ukuthi pizza yaqale owenziwa nombhaki Raffaele Esposito eNaples ? Indalo yakhe masinyane intandokazi , futhi Esposito wabizwa ngokuthi ukwenza pizza ukuvakashelwa iNkosi Umberto neNdlovukazi Margherita -Italy ngo- 1889 .\n\nDeath Star átt við eitthvað af nokkrum skáldskapar hreyfanlegur rúm stöðvar og vetrarbrauta superweapons birtast í Star Wars vísindi-skáldskapur sería búin af George Lucas . The First Death Star kom fram að 87 mílur ( 140 km ) í þvermál , eða (til að gefa yfirsýn ) svunta . 1/25 stærð tunglsins okkar og var áhöfn af áætlaðri 1,7 milljónir hermanna og 400.000 Droids. The Second Death Star var marktækt stærri og betri en forveri hans . Báðar útgáfur af þessum dvergreikistjörnunni stærð virkjum voru hannaðar fyrir stórfellda getu máttur vörpun , fær um að eyðileggja heilt plánetu með einu vindhviða frá superlasers sínum .\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3210d893-1aa8-4367-a7ff-a31d78201957/sm/2516933-1471633343489-deathstairsep1.jpg","duration":610,"publication_date":"2016-08-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-vr-2016-3","changefreq":"weekly","video":[{"title":"2016:E57 - SEX PALACE • DRAW WHAT?! Virtual Reality Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: http://bit.ly/1XU3JgS\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nWe are back with the Vive playing more Draw What. We continue the team situation, this time it's James and Brett Vs. Aleks and Aron. Which team will make it to 3 points first? \n\n\n\nThe following is for those multicultural.\n\n\n\n¿Cuál sería la mejor manera de dibujar un hijo de puta en el lapso de un minuto, mientras que no tiene habilidades artísticas ? ¿Cómo se puede transmitir ese tipo de relación con las figuras del palillo\n\n\n\nBrett ist ein Gott zu erraten , wer weiß, vielleicht tut er dies in seiner Freizeit , vielleicht er hat sein ganzes Leben zu erraten , und er wurde nur zu mächtig. Ich bin sicher, dass niemand ihn an dieser Stelle schlagen kann.\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-vr-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e14246e8-013f-47b7-a30d-7897ffda5306/sm/2516933-1471483663932-drawwhatwithbrettaron.jpg","duration":916,"publication_date":"2016-08-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-28","changefreq":"weekly","video":[{"title":"2016:E58 - THE POOP THROWERS • Dark Souls 3 • Ep 28","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!? \n\n\n\nThe following is for those multicultural.\n\n\n\nMae gan Pontiff nifer o wahanol ymosodiadau sy'n amrywio o ran hyd a chyflymder . Mae'n anodd dod o hyd i batrwm ; y gofrestr a bloc nes Pontiff seibiau yr ymosodiadau . Pan fydd hyn yn digwydd, taro gymaint o weithiau ag y gallwch. Yng ngham dau yw y bydd Pontiff galw clôn bod copďau ei holl ymosodiadau . Os ydych yn gweld y cleddyf tywyll sylw at y ffaith yn syth i fyny , Pontiff ar fin i alw ei clone . Gallwch ymosod arno tra bod hyn yn digwydd , ond cyn gynted ag y clôn yn weladwy, mae angen i chi ei ladd .\n\n\n\nI det här episod vi reda Rick , krigaren som en dag kommer att besegra en mäktigaste fiende , älskar master guiden som gör bonefires . Alla av oss älskar master guiden för att göra bonefires ; vi behöver dem för att gå vidare i spelet .\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/665b655f-229d-47e2-9baa-ca1f36824433/sm/2516933-1471543370708-darksouls27.jpg","duration":646,"publication_date":"2016-08-18T09:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-the-rock-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E56 - THE ROCK DIET CHALLENGE","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nJames wants to Cow Chop team to be like his hero, The Rock. One of our lucky members are chosen out of a raffle to eat as much as The Rock does. 7 Meals in one day. CAN WE HANDLE THE ROCK'S DIET?\n\nIt's free food!\n\nThe following is for those multicultural.\n\nE mafai ona e sogisogi mea le Rock ua kuka ? Ou te le mafaia. Ou allergies leaga ma e le mafai ona sogisogi se mea mo masina i se taimi . E mafai ona moni shit i loʻu isu ma le a ou le iloa\n\nԴուեյն 'The Rock' Johnson է ոչ միայն սոսկ որպես աշխարհահռչակ ըմբիշ : Նա հանդիսանում է նաեւ սուպեր ֆիլմի աստղ. Նա կարող է անել բառացիորեն ամեն ինչ! Ես չեմ կարող նույնիսկ կապել իմ shoelaces by myself.\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-the-rock-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77e47c96-0674-4749-884b-5234a063ff6f/sm/2424803-1471489634825-DDA66572C5A292C604FBE8F2211BB2EABEA5F582636372C378pimgpsh_fullsize_distr.jpg","duration":936,"publication_date":"2016-08-18T03:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-27","changefreq":"weekly","video":[{"title":"2016:E55 - ORDER UP CHEF • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nAleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\nThe following is for those multicultural.\n\n\n\nJednog dana sam otišao na mjesto koje je poznato po tome što ima najbolje pržene žaba oko . U restoranu dobitnik mnogih nagrada za što i jedinstven i ukusan u časopisima i emisije na TV-u. Otišao sam tamo i naredio žaba . Bilo je super gumene i teško žvakati . Kao što sam pojeo sam sve više i više muka od ukusa . Kako može neko ovako ? Sve što sam mogao vidjeti je žabac Kermit u mislima vrišteći mi govori da oslobodi žabe . Ja brzo otrčala u kuhinju i vidjela tenk ispunjen sa stotinama žaba . Zgrabio sam rezervoar i sa svom snagom je pokupio i doveo ga iz kuhinje i nazad . Pustio sam žabe besplatno . Jebi se frog restoran, niko ne jede više žabe. #freeŽaba\n\n\n\nAna m echeta ụbọchị mgbe m na-eji na-enwe ike iri ihe ọ bụla m chọrọ. My mmasị nri iri ihe bụ achicha. Nice chunky chocolate achicha jupụtara na topped na icing . Nanị iche banyere ya na-eme m super agbanwuru. Na na ya , m na-aga na-eri achicha ọ dịghịkwa onye nwere ike ịgwa m ka m n'ụzọ ndị ọzọ . M hụrụ n'anya achicha! Gịnị ka ị hụrụ n'anya na- eri?\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95dd65d0-1c84-4186-a0c8-f491e6f91210/sm/2516933-1471387693625-overcookedep2.jpg","duration":936,"publication_date":"2016-08-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-26","changefreq":"weekly","video":[{"title":"2016:E54 - DISNEY WORLD FROM HELL • Dark Souls 3 • Ep 27 ","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nOh shit. Dark Souls 3 is going up and I don't have a description yet. Maybe we can pretend that we actually did it and never tell James.\n\nLet's keep Shovel Knight in the description just to keep it long. Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3 Dark Souls 3. Coming out with the Amiibo for Shovel Knight introduced a brand new element to the game, couch co-op. Making it the perfect game to start with! Will we fall back into our ways of old and attempt to destroy each other or will we combine talents to take us to victory!? \n\n\n\nThe following is for those multicultural\n\n.\n\nQuando você chegar ao Irithyll do Vale do Boreal , atravesse a ponte. Sobre a meio caminho uma grande criatura reptiliana / lobo (Plutão ) vão aparecer . Este inimigo é intimidante , mas defeatable cronometrando seus ataques e bateu quando expostos . Outra maneira de derrotá-lo é correr de volta para a entrada da ponte e terrestres vários hits antes que despawns . Quando ele gera novamente ele ainda será danificado. Quando derrotado ele vai cair Olho Direito do Pontífice . Se você cruzar o selo sem derrotar Plutão, vai atacar de novo perto do rio. \n\n\n\nчирак магьосник идва отново . С неговото насърчение и чувство за ориентация , ние получаваме по-далеч , отколкото ние някога може да imagaine с негова помощ .\n\n\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a2c7d0e-6cff-47a3-ab1c-3f77f8a7c206/sm/2516933-1471051785478-darksouls29.jpg","duration":782,"publication_date":"2016-08-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-19","changefreq":"weekly","video":[{"title":"2016:E56 - ORLANDO BLOOM'S PENIS • Behind the Cow Chop","description":"Twitter: https://twitter.com/CowChop\n\nSubscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nIn this exciting edition of Behind the Cow Chop, the guys explore downtown Denver in search of Pokemon and get their first look at the brand new Cow Chop squiggly cup with an exclusive cameo from Orlando Bloom.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b99dc50-cfa7-4583-b3f6-09399fdb771c/sm/2516933-1471115995189-BTSdick2.jpg","duration":660,"publication_date":"2016-08-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foreign-import-2016-3","changefreq":"weekly","video":[{"title":"2016:E3 - HENTAI PHOTOGRAPHER • Foreign Import Gameplay","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nRT First: http://bit.ly/2b4bWuW\n\nTwitter: http://bit.ly/1XU3JgS\n\nDiscuss: http://bit.ly/1qvrlLD\n\n\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nSometimes the best things are found overseas and so we would like to explore that concept with Foreign Import. We will find the most random games from the distant lands and try our best to not be ignorant while we play them (no guarantees tho). \n\n\n\nThe following is for those multicultural.\n\n\n\nВы знаете, что , на самом деле Хентай не так уж плохо . Зачем вам нужна реальная девушка , когда вы можете получить себе один из них хентай девушки . Они всегда будут любить вас ни на что .\n\n\n\nDe hecho, tengo una colección cuerpo de mi los anteriores . Todos ellos eran la mejor Waifus hasta que envejecían , y correosos , y algo crujiente. Siempre que la última de anime salió que tenía que hacer el más caliente que mi Waifu .\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/foreign-import-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b409f0d5-9163-4370-8118-a3d0d37af7cb/sm/2424803-1471035919444-ForeignImportPhotograph.jpg","duration":966,"publication_date":"2016-08-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-25","changefreq":"weekly","video":[{"title":"2016:E51 - CAN'T WAKE UP • Human: Fall Flat","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nTwitter: https://twitter.com/CowChop\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\nGoofy sings bring me to life\n\n\n\nHuman: Fall Flat is the latest artistic video gaming experience which seeks to immerse the player in a world of ragdoll puzzle solving and dick jokes.\n\nThe following is for those multicultural.\n\nযখন জেমস এবং Aleks একসঙ্গে সমবায় গেম খেলা , তারা সবসময় সেরা সিদ্ধান্ত. তারা আমাদের সময় সর্বশ্রেষ্ঠ প্রতিভাবন্ হয় . তারা পাজল সমাধান কীভাবে এবং যেমন আরাম এবং চাতুরতা সঙ্গে অবমুক্ত চারপাশে পেতে পারি? এটা একে অপরের জন্য তাদের প্রেম হবে . এই বন্ড কি নষ্ট করা যাবে না . আমি চমত্কার নিশ্চিত আমি দেখেছি তাদের সামনে চুমু আছি .\n\nClone Trevor é quase exatamente como Trevor regular, exceto clone Trevor é um supremacista branco. Isso não quer dizer que regularmente Trevor não é também um supremacista branco. Mas isso não é da minha conta. Na verdade, ele provavelmente não tem nenhum problema com quaisquer corridas e os ama a todos igualmente. Outros que os chineses , é claro.\n\nThank you.","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f053c8f6-2ba7-4c4f-b178-7ac04bd62256/sm/2424803-1470960795015-humanfallflatep2.jpg","duration":605,"publication_date":"2016-08-12T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-pokemon-turf-war-pokemon-go","changefreq":"weekly","video":[{"title":"S1:E50 - POKEMON TURF WAR • Pokemon Go","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nTwitter: http://bit.ly/1XU3JgS\n\nDiscuss: http://bit.ly/1qvrlLD \n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nPokemon OST Ecruteak City Remix: https://www.youtube.com/watch?v=jghPanC-PH4\n\n\n\n16th Street Mall in Denver is one of the hottest spots for Pokemon in the entire state. Watch as James, Aleks and Brock attempt to make friends, make peace, and throw their balls..","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-pokemon-turf-war-pokemon-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37591270-f53b-4e90-8562-adf1fa09b99c/sm/2424803-1470941095655-pokemongodenver.jpg","duration":780,"publication_date":"2016-08-11T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-24","changefreq":"weekly","video":[{"title":"2016:E50 - KITCHEN NIGHTMARES • Overcooked","description":"Subscribe: http://bit.ly/1RQtfNf\n\nCow Chop Merch: http://bit.ly/1U8HCxD\n\nDiscuss: http://bit.ly/1qvrlLD\n\nBeat Boxing Pro: http://bit.ly/1NdSvRO\n\n\n\nTogether Aleks, James, and Trevor must all cook together and create the best dishes for the world to eat. \n\n\n\nThe following is for those multicultural.\n\n\n\nMi ricordo che un giorno sono andato a fare la spesa e comprato e tutto il carrello pieno di burro e sciroppo d'acero , i miei preferiti . Tornai a casa e impostare il tutto sul bancone della cucina . Ho spogliato e salì . Ho iniziato l'estrazione, tutto il burro e lo sciroppo e ha iniziato dumping e lo sfregamento tutto sulla mia pelle . Giù il mio corpo sopra i capezzoli , e nel mio Gooch . E 'stato uno dei più divertenti giornate sexy della mia vita.\n\n\n\nBen hepsini en iyi şef olmak istiyorum. Ben, bir plaka üzerinde bok fırında koymak ve şimdiye kadar yapılmış en iyi yemekleri oluşturmak mümkün olmak istiyorum . Bir keresinde bazı kokmuş fasulye vardı ve büyük bir bok vardı. Ben pişmiş ve o yemek yedik . Tekrar bok ve o boku pişirilir. Bu harika kokulu fırın dışında geldi . Bu şimdiye kadar yapılmış en iyi yemek oldu.\n\n\n\nThank You","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56b1612e-0175-4ec4-988d-a3c6fe56562b/sm/2424803-1470856843394-overcookedep1.jpg","duration":855,"publication_date":"2016-08-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-season-1-squiggly-cup","changefreq":"weekly","video":[{"title":"S1:E48 - SQUIGGLY CUP","description":"https://store.roosterteeth.com/products/cow-chop-s...https://store.roosterteeth.com/products/cow-chop-s...https://store.roosterteeth.com/products/cow-chop-s...https://store.roosterteeth.com/products/cow-chop-s...","player_loc":"https://roosterteeth.com/embed/cow-chop-season-1-squiggly-cup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a126a7dd-6331-4f07-a507-8b9f639817e2/sm/2424803-1470854159625-SquigglyCup.jpg","duration":308,"publication_date":"2016-08-10T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cow-chop-gaming-2015-23","changefreq":"weekly","video":[{"title":"2016:E47 - ONE MORE SOLID HIT • Dark Souls 3 • Ep 26","description":"Dark Souls Description. Don't look at this.Reading this will cause one of us to get fired. Don't even read the first letter.Please stop","player_loc":"https://roosterteeth.com/embed/cow-chop-gaming-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8a778d0-f145-4071-b896-2e46526044bc/sm/2424803-1470548353635-49D4C523CC0DE789AB064C62C225319FE887B43ED7600BD09Epimgpsh_fullsize_distr.jpg","duration":737,"publication_date":"2016-08-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-cow-chop-2015-20","changefreq":"weekly","video":[{"title":"2016:E46 - DENVER ZOO CRINGE • Behind the Cow Chop","description":"Pikachu makes his debut at the zoo while Jeff Goldblum is harassed by Trevor. Get it? Cause it's a fly, and Jeff Goldblum starred in\n\nThe Fly.","player_loc":"https://roosterteeth.com/embed/behind-the-cow-chop-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21e727c5-3866-4634-8a83-649bf8605fc0/sm/2424803-1470520851778-7623795E95D91F7E1AF6A40460F71955966C9A0FA844C22AD7pimgpsh_fullsize_distr.jpg","duration":605,"publication_date":"2016-08-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gmod-deep-presentationanimated-classics","changefreq":"weekly","video":[{"title":"S1:E212 - GMOD DEEP PRESENTATION - Animated Classics","description":"GMOD DEEP PRESENTATION - Animated Classics","player_loc":"https://roosterteeth.com/embed/gmod-deep-presentationanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8f8d6e1-389d-4c6e-925c-dd4fdd33dd72/sm/hqdefault.jpg","duration":130,"publication_date":"2016-05-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/exposing-hidden-blockssuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E211 - EXPOSING HIDDEN BLOCKS - SUPER MARIO MAKER","description":"EXPOSING HIDDEN BLOCKS - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/exposing-hidden-blockssuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/757ff804-1b58-4a36-9f76-8503103f1512/sm/hqdefault.jpg","duration":830,"publication_date":"2016-05-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/when-yellows-attackthe-hat-random-gameplay","changefreq":"weekly","video":[{"title":"S1:E209 - WHEN YELLOWS ATTACK - THE HAT Random Gameplay","description":"WHEN YELLOWS ATTACK - THE HAT Random Gameplay","player_loc":"https://roosterteeth.com/embed/when-yellows-attackthe-hat-random-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee71168b-e91c-4193-bb87-be511c50023b/sm/hqdefault.jpg","duration":899,"publication_date":"2016-05-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/no-flask-troubledark-souls-3til-i-rage-part-4","changefreq":"weekly","video":[{"title":"S1:E208 - NO FLASK TROUBLE - Dark Souls 3 : Til I Rage Part 4","description":"NO FLASK TROUBLE - Dark Souls 3 : Til I Rage Part 4","player_loc":"https://roosterteeth.com/embed/no-flask-troubledark-souls-3til-i-rage-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2925bcda-4d7e-4717-9a9e-cde0a9cef978/sm/hqdefault.jpg","duration":927,"publication_date":"2016-05-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lorenzothe-artifactfallout-4-part-44","changefreq":"weekly","video":[{"title":"S1:E207 - LORENZO & THE ARTIFACT - Fallout 4 Part 44","description":"LORENZO & THE ARTIFACT - Fallout 4 Part 44","player_loc":"https://roosterteeth.com/embed/lorenzothe-artifactfallout-4-part-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ffbc708-53f6-4dbb-9259-e648873b1d04/sm/hqdefault.jpg","duration":1791,"publication_date":"2016-05-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-cult-returnsfallout-4-part-43","changefreq":"weekly","video":[{"title":"S1:E206 - THE CULT RETURNS - Fallout 4 Part 43","description":"THE CULT RETURNS - Fallout 4 Part 43","player_loc":"https://roosterteeth.com/embed/the-cult-returnsfallout-4-part-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b906388-fe37-44e3-82c4-213d02fdfe7d/sm/hqdefault.jpg","duration":1634,"publication_date":"2016-05-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sanic-ballanimated-classics","changefreq":"weekly","video":[{"title":"S1:E205 - SANIC BALL - Animated Classics","description":"SANIC BALL - Animated Classics","player_loc":"https://roosterteeth.com/embed/sanic-ballanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2601ea0e-6d2f-4e84-a9b0-4088608c7ef9/sm/hqdefault.jpg","duration":84,"publication_date":"2016-05-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-spikeseverything-icesuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E204 - RAGE SPIKES & EVERYTHING ICE - SUPER MARIO MAKER","description":"RAGE SPIKES & EVERYTHING ICE - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/rage-spikeseverything-icesuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84c63a49-3f30-41cb-9269-e905a80ec650/sm/hqdefault.jpg","duration":981,"publication_date":"2016-05-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wind-riding-pow-surfingsuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E203 - WIND RIDING POW SURFING - SUPER MARIO MAKER","description":"WIND RIDING POW SURFING - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/wind-riding-pow-surfingsuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4ebf64a-f832-48a8-9f00-147cb7f31637/sm/hqdefault.jpg","duration":845,"publication_date":"2016-05-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/oh-my-godis-this-real-super-mario-maker","changefreq":"weekly","video":[{"title":"S1:E202 - OH MY GOD !!! IS THIS REAL ?? - SUPER MARIO MAKER","description":"OH MY GOD !!! IS THIS REAL ?? - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/oh-my-godis-this-real-super-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0532083-abe5-4727-84b6-9c229879057e/sm/hqdefault.jpg","duration":966,"publication_date":"2016-04-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-finalethe-walking-dead-michonnewhat-we-deserve-part-3","changefreq":"weekly","video":[{"title":"S1:E201 - THE FINALE - The Walking Dead Michonne - What We Deserve Part 3","description":"THE FINALE - The Walking Dead Michonne - What We Deserve Part 3","player_loc":"https://roosterteeth.com/embed/the-finalethe-walking-dead-michonnewhat-we-deserve-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9afee9b7-6e95-4ee4-a255-ce11d7b74280/sm/hqdefault.jpg","duration":1127,"publication_date":"2016-04-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sexual-pokemonthe-hat-random-gameplay","changefreq":"weekly","video":[{"title":"S1:E200 - SEXUAL POKEMON - THE HAT Random Gameplay","description":"SEXUAL POKEMON - THE HAT Random Gameplay","player_loc":"https://roosterteeth.com/embed/sexual-pokemonthe-hat-random-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/742b0b23-3049-473c-a765-3a5cbc38d16d/sm/hqdefault.jpg","duration":850,"publication_date":"2016-04-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/friend-or-foe-dark-souls-3til-i-rage-part-2","changefreq":"weekly","video":[{"title":"S1:E199 - FRIEND OR FOE ? - Dark Souls 3 : Til I Rage Part 2","description":"FRIEND OR FOE ? - Dark Souls 3 : Til I Rage Part 2","player_loc":"https://roosterteeth.com/embed/friend-or-foe-dark-souls-3til-i-rage-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51b90ccf-1377-4c76-ae53-5a137ea37448/sm/hqdefault.jpg","duration":909,"publication_date":"2016-04-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drunk-pillar-jumpssuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E198 - DRUNK PILLAR JUMPS - SUPER MARIO MAKER","description":"DRUNK PILLAR JUMPS - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/drunk-pillar-jumpssuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6c21bed-0f37-434d-86b3-1cac9f90f636/sm/hqdefault.jpg","duration":856,"publication_date":"2016-04-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooftop-mutationsdark-souls-3til-i-rage-part-3","changefreq":"weekly","video":[{"title":"S1:E197 - ROOFTOP MUTATIONS - Dark Souls 3 : Til I Rage Part 3","description":"ROOFTOP MUTATIONS - Dark Souls 3 : Til I Rage Part 3","player_loc":"https://roosterteeth.com/embed/rooftop-mutationsdark-souls-3til-i-rage-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/792eddb0-cdbc-41cc-a6be-ba833c3e2674/sm/hqdefault.jpg","duration":684,"publication_date":"2016-04-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-of-trollssuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E196 - GAME OF TROLLS - SUPER MARIO MAKER","description":"GAME OF TROLLS - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/game-of-trollssuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b24f86b9-826f-48f5-86c9-343bd1746c25/sm/hqdefault.jpg","duration":721,"publication_date":"2016-04-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-rank-heroesthe-culling-highlights","changefreq":"weekly","video":[{"title":"S1:E195 - A RANK HEROES - THE CULLING Highlights","description":"A RANK HEROES - THE CULLING Highlights","player_loc":"https://roosterteeth.com/embed/a-rank-heroesthe-culling-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e889f10-a4cb-41cf-b0f7-ac1c4169b771/sm/hqdefault.jpg","duration":665,"publication_date":"2016-04-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iudex-gundyrdark-souls-3til-i-rage-part-1","changefreq":"weekly","video":[{"title":"S1:E194 - IUDEX GUNDYR - Dark Souls 3 : Til I Rage Part 1","description":"IUDEX GUNDYR - Dark Souls 3 : Til I Rage Part 1","player_loc":"https://roosterteeth.com/embed/iudex-gundyrdark-souls-3til-i-rage-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22db2140-076c-48fc-bc7a-aaadb2956df5/sm/hqdefault.jpg","duration":905,"publication_date":"2016-04-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hide-and-seekgrand-theft-auto-5-slasher-moments","changefreq":"weekly","video":[{"title":"S1:E192 - HIDE AND SEEK - Grand Theft Auto 5 SLASHER Moments","description":"HIDE AND SEEK - Grand Theft Auto 5 SLASHER Moments","player_loc":"https://roosterteeth.com/embed/hide-and-seekgrand-theft-auto-5-slasher-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f92d6966-8262-4d3f-8f0d-c3806dff14be/sm/hqdefault.jpg","duration":836,"publication_date":"2016-04-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/external-strugglesuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E191 - EXTERNAL STRUGGLE - SUPER MARIO MAKER","description":"EXTERNAL STRUGGLE - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/external-strugglesuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85518fd9-9577-4c73-bf25-2bfc0b091192/sm/hqdefault.jpg","duration":969,"publication_date":"2016-04-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/present-deliverysuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E190 - PRESENT DELIVERY - SUPER MARIO MAKER","description":"PRESENT DELIVERY - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/present-deliverysuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce0fc4c-9c9f-4905-9749-16f7f8386cb3/sm/hqdefault.jpg","duration":790,"publication_date":"2016-04-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cabot-house-glitchfestfallout-4-part-42","changefreq":"weekly","video":[{"title":"S1:E189 - CABOT HOUSE GLITCHFEST - Fallout 4 Part 42","description":"CABOT HOUSE GLITCHFEST - Fallout 4 Part 42","player_loc":"https://roosterteeth.com/embed/cabot-house-glitchfestfallout-4-part-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e46756-3cf4-4c45-9c41-6de042bef808/sm/hqdefault.jpg","duration":1563,"publication_date":"2016-04-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/final-attempt","changefreq":"weekly","video":[{"title":"S1:E188 - FINAL ATTEMPT???","description":"FINAL ATTEMPT???","player_loc":"https://roosterteeth.com/embed/final-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed6bc259-b1f0-407f-94e9-6dd47a550f8d/sm/hqdefault.jpg","duration":933,"publication_date":"2016-04-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lava-fish-fumblessuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E187 - LAVA FISH FUMBLES - SUPER MARIO MAKER","description":"LAVA FISH FUMBLES - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/lava-fish-fumblessuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33e24128-6897-4b35-8dd1-e36f895b8b4c/sm/hqdefault.jpg","duration":982,"publication_date":"2016-04-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/headbutt-haven-gang-beastsanimated-classics","changefreq":"weekly","video":[{"title":"S1:E186 - HEADBUTT HAVEN Gang Beasts - Animated Classics","description":"HEADBUTT HAVEN Gang Beasts - Animated Classics","player_loc":"https://roosterteeth.com/embed/headbutt-haven-gang-beastsanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f9bc74a-53fd-4774-97e6-94a486269120/sm/hqdefault.jpg","duration":110,"publication_date":"2016-04-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hand-sweat-insecuritiessuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E185 - HAND SWEAT INSECURITIES - SUPER MARIO MAKER","description":"HAND SWEAT INSECURITIES - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/hand-sweat-insecuritiessuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b03daef-13c9-436a-99d7-098dae3aad45/sm/hqdefault.jpg","duration":963,"publication_date":"2016-04-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/batman-v-supermangrudge-match","changefreq":"weekly","video":[{"title":"S1:E183 - BATMAN V SUPERMAN : GRUDGE MATCH","description":"BATMAN V SUPERMAN : GRUDGE MATCH","player_loc":"https://roosterteeth.com/embed/batman-v-supermangrudge-match","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29882c4d-843d-4352-8d2c-217708c40b04/sm/hqdefault.jpg","duration":671,"publication_date":"2016-04-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/remove-the-bulletthe-walking-dead-michonnegive-no-shelter-part-2","changefreq":"weekly","video":[{"title":"S1:E182 - REMOVE THE BULLET - The Walking Dead Michonne - Give No Shelter Part 2","description":"REMOVE THE BULLET - The Walking Dead Michonne - Give No Shelter Part 2","player_loc":"https://roosterteeth.com/embed/remove-the-bulletthe-walking-dead-michonnegive-no-shelter-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5ccaff2-149e-46fb-a525-f6b8d91918ce/sm/hqdefault.jpg","duration":1470,"publication_date":"2016-04-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/great-escapethe-walking-dead-michonnegive-no-shelter-part-1","changefreq":"weekly","video":[{"title":"S1:E181 - GREAT ESCAPE - The Walking Dead Michonne - Give No Shelter Part 1","description":"GREAT ESCAPE - The Walking Dead Michonne - Give No Shelter Part 1","player_loc":"https://roosterteeth.com/embed/great-escapethe-walking-dead-michonnegive-no-shelter-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78e6b053-44d7-4b53-a64c-9f41aa7f1d98/sm/hqdefault.jpg","duration":1084,"publication_date":"2016-03-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bobbis-final-farewellfallout-4-part-41","changefreq":"weekly","video":[{"title":"S1:E179 - BOBBIS FINAL FAREWELL - Fallout 4 Part 41","description":"BOBBIS FINAL FAREWELL - Fallout 4 Part 41","player_loc":"https://roosterteeth.com/embed/bobbis-final-farewellfallout-4-part-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2fff43b-4d31-498f-b698-6e0db638c1c0/sm/hqdefault.jpg","duration":1692,"publication_date":"2016-03-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/torture-killboxsuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E178 - TORTURE KILLBOX - SUPER MARIO MAKER","description":"TORTURE KILLBOX - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/torture-killboxsuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eed1fbd-331f-43c0-8255-32ee3a70235f/sm/hqdefault.jpg","duration":483,"publication_date":"2016-03-21T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/kill-the-panga-levelsuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E177 - KILL THE PANGA LEVEL - SUPER MARIO MAKER","description":"KILL THE PANGA LEVEL - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/kill-the-panga-levelsuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef1658dd-2d18-46ce-b473-d4dc778267d4/sm/hqdefault.jpg","duration":699,"publication_date":"2016-03-21T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gun-r-kleptastrophesuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E176 - GUN-R KLEPTASTROPHE - SUPER MARIO MAKER","description":"GUN-R KLEPTASTROPHE - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/gun-r-kleptastrophesuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8315fe7a-c640-4cf0-b3e1-1e02b54cb0d3/sm/hqdefault.jpg","duration":831,"publication_date":"2016-03-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/swift-kick-in-my-sanitysuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E175 - SWIFT KICK IN MY SANITY - SUPER MARIO MAKER","description":"SWIFT KICK IN MY SANITY - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/swift-kick-in-my-sanitysuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c874ef7f-46bc-46e0-8ae2-d3f229f3981d/sm/hqdefault.jpg","duration":825,"publication_date":"2016-03-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-gon-give-it-to-yathe-hat-random-gameplay","changefreq":"weekly","video":[{"title":"S1:E174 - X GON GIVE IT TO YA - THE HAT Random Gameplay","description":"X GON GIVE IT TO YA - THE HAT Random Gameplay","player_loc":"https://roosterteeth.com/embed/x-gon-give-it-to-yathe-hat-random-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9ff320d-e1fd-4ef0-a6dd-535af2d9170c/sm/hqdefault.jpg","duration":826,"publication_date":"2016-03-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ejection-executionhitman-beta-random-moments","changefreq":"weekly","video":[{"title":"S1:E170 - EJECTION EXECUTION - HITMAN Beta Random Moments","description":"EJECTION EXECUTION - HITMAN Beta Random Moments","player_loc":"https://roosterteeth.com/embed/ejection-executionhitman-beta-random-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/320ae033-7265-44a2-91ad-f321d8efa763/sm/hqdefault.jpg","duration":1049,"publication_date":"2016-03-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bowser-body-blocksuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E169 - BOWSER BODY BLOCK - SUPER MARIO MAKER","description":"BOWSER BODY BLOCK - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/bowser-body-blocksuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e308060d-4775-4c93-bcb3-06acde29b1e0/sm/hqdefault.jpg","duration":793,"publication_date":"2016-03-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/not-another-supermanthe-hat-random-gameplay","changefreq":"weekly","video":[{"title":"S1:E168 - NOT ANOTHER SUPERMAN - THE HAT Random Gameplay","description":"NOT ANOTHER SUPERMAN - THE HAT Random Gameplay","player_loc":"https://roosterteeth.com/embed/not-another-supermanthe-hat-random-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a39adfb-550f-45b4-b6de-185b0015056c/sm/hqdefault.jpg","duration":820,"publication_date":"2016-03-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cait-romancebobbi-returnsfallout-4-part-39","changefreq":"weekly","video":[{"title":"S1:E164 - CAIT ROMANCE & BOBBI RETURNS - Fallout 4 Part 39","description":"CAIT ROMANCE & BOBBI RETURNS - Fallout 4 Part 39","player_loc":"https://roosterteeth.com/embed/cait-romancebobbi-returnsfallout-4-part-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb1d76b8-ad5b-4990-9e7a-3823f9c0990e/sm/hqdefault.jpg","duration":1851,"publication_date":"2016-02-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-endresultsthe-walking-dead-michonnein-too-deep-part-4","changefreq":"weekly","video":[{"title":"S1:E163 - THE END & RESULTS - The Walking Dead Michonne - In Too Deep Part 4","description":"THE END & RESULTS - The Walking Dead Michonne - In Too Deep Part 4","player_loc":"https://roosterteeth.com/embed/the-endresultsthe-walking-dead-michonnein-too-deep-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59901cd6-fb6e-4fb4-8662-b81250edc87b/sm/hqdefault.jpg","duration":1268,"publication_date":"2016-02-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/time-jerking-battleblock-theateranimated-classics","changefreq":"weekly","video":[{"title":"S1:E162 - TIME JERKING Battleblock Theater - Animated Classics","description":"TIME JERKING Battleblock Theater - Animated Classics","player_loc":"https://roosterteeth.com/embed/time-jerking-battleblock-theateranimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e109438d-f24c-455b-94f4-b417901e6e24/sm/hqdefault.jpg","duration":115,"publication_date":"2016-02-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mobjackthe-walking-dead-michonnein-too-deep-part-2","changefreq":"weekly","video":[{"title":"S1:E161 - MOBJACK - The Walking Dead Michonne - In Too Deep Part 2","description":"MOBJACK - The Walking Dead Michonne - In Too Deep Part 2","player_loc":"https://roosterteeth.com/embed/mobjackthe-walking-dead-michonnein-too-deep-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dec0ce25-41fc-4eca-80eb-986b57032aeb/sm/hqdefault.jpg","duration":1330,"publication_date":"2016-02-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/capturedthe-walking-dead-michonnein-too-deep-part-3","changefreq":"weekly","video":[{"title":"S1:E160 - CAPTURED - The Walking Dead Michonne - In Too Deep Part 3","description":"CAPTURED - The Walking Dead Michonne - In Too Deep Part 3","player_loc":"https://roosterteeth.com/embed/capturedthe-walking-dead-michonnein-too-deep-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d8a5778-5e77-4933-8023-5854bbeef01f/sm/hqdefault.jpg","duration":1125,"publication_date":"2016-02-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/boat-troublesthe-walking-dead-michonnein-too-deep-part-1","changefreq":"weekly","video":[{"title":"S1:E159 - BOAT TROUBLES - The Walking Dead Michonne - In Too Deep Part 1","description":"BOAT TROUBLES - The Walking Dead Michonne - In Too Deep Part 1","player_loc":"https://roosterteeth.com/embed/boat-troublesthe-walking-dead-michonnein-too-deep-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10ce4862-4425-4b38-9390-b868906b013e/sm/hqdefault.jpg","duration":1361,"publication_date":"2016-02-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/yellow-block-feversuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E155 - YELLOW BLOCK FEVER - SUPER MARIO MAKER","description":"YELLOW BLOCK FEVER - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/yellow-block-feversuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0486119-811b-471f-9e49-29ff06f5a532/sm/hqdefault.jpg","duration":972,"publication_date":"2016-02-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-institutefatherfallout-4-part-37","changefreq":"weekly","video":[{"title":"S1:E153 - THE INSTITUTE & FATHER - Fallout 4 Part 37","description":"THE INSTITUTE & FATHER - Fallout 4 Part 37","player_loc":"https://roosterteeth.com/embed/the-institutefatherfallout-4-part-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5efa291-85b7-459d-a01c-df643237f94a/sm/hqdefault.jpg","duration":1916,"publication_date":"2016-02-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/professional-builderfallout-4-part-36","changefreq":"weekly","video":[{"title":"S1:E152 - PROFESSIONAL BUILDER - Fallout 4 Part 36","description":"PROFESSIONAL BUILDER - Fallout 4 Part 36","player_loc":"https://roosterteeth.com/embed/professional-builderfallout-4-part-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a109c362-81cb-4436-b131-258825ca5768/sm/hqdefault.jpg","duration":1461,"publication_date":"2016-02-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/freedom-trailthe-railroadfallout-4-part-35","changefreq":"weekly","video":[{"title":"S1:E151 - FREEDOM TRAIL & THE RAILROAD - Fallout 4 Part 35","description":"FREEDOM TRAIL & THE RAILROAD - Fallout 4 Part 35","player_loc":"https://roosterteeth.com/embed/freedom-trailthe-railroadfallout-4-part-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81bc7a50-a87b-4b52-a3be-d062507adc8c/sm/hqdefault.jpg","duration":1944,"publication_date":"2016-02-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bob-bob-bob-bob-bobthe-hat-random-gameplay","changefreq":"weekly","video":[{"title":"S1:E150 - BOB BOB BOB BOB BOB - THE HAT Random Gameplay","description":"BOB BOB BOB BOB BOB - THE HAT Random Gameplay","player_loc":"https://roosterteeth.com/embed/bob-bob-bob-bob-bobthe-hat-random-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf7571e5-a4ce-4c4d-b983-c6da23df1584/sm/hqdefault.jpg","duration":972,"publication_date":"2016-02-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/caits-interventionvirgilfallout-4-part-33","changefreq":"weekly","video":[{"title":"S1:E149 - CAITS INTERVENTION & VIRGIL - Fallout 4 Part 33","description":"CAITS INTERVENTION & VIRGIL - Fallout 4 Part 33","player_loc":"https://roosterteeth.com/embed/caits-interventionvirgilfallout-4-part-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06de9e40-10e9-4da5-9a4c-212454220165/sm/hqdefault.jpg","duration":1508,"publication_date":"2016-02-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bully-the-bulletssuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E147 - BULLY THE BULLETS - SUPER MARIO MAKER","description":"BULLY THE BULLETS - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/bully-the-bulletssuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d881bfc4-ec01-4dc7-8b93-f472b3e44d20/sm/hqdefault.jpg","duration":877,"publication_date":"2016-02-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gmod-2-guys-1-elevatoranimated-classics","changefreq":"weekly","video":[{"title":"S1:E146 - GMOD 2 GUYS 1 ELEVATOR - Animated Classics","description":"GMOD 2 GUYS 1 ELEVATOR - Animated Classics","player_loc":"https://roosterteeth.com/embed/gmod-2-guys-1-elevatoranimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3bdf7dc-ab93-4795-a688-18cbe34a68be/sm/hqdefault.jpg","duration":76,"publication_date":"2016-02-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/agdq-showcasesuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E145 - AGDQ SHOWCASE - SUPER MARIO MAKER","description":"AGDQ SHOWCASE - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/agdq-showcasesuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8c3fef0-ea1e-4487-a318-9c890b429cc6/sm/hqdefault.jpg","duration":662,"publication_date":"2016-02-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wall-of-firesuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E144 - WALL OF FIRE - SUPER MARIO MAKER","description":"WALL OF FIRE - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/wall-of-firesuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a15f43a1-da52-4cfd-816d-69bd7f3285c2/sm/hqdefault.jpg","duration":754,"publication_date":"2016-02-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amiibo-challenge-mactar-jr-aron","changefreq":"weekly","video":[{"title":"S1:E142 - AMIIBO CHALLENGE MACTAR JR. ARON","description":"AMIIBO CHALLENGE MACTAR JR. ARON","player_loc":"https://roosterteeth.com/embed/amiibo-challenge-mactar-jr-aron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11923ef3-0066-4fe4-8bc4-c6f54dac1cfb/sm/hqdefault.jpg","duration":739,"publication_date":"2016-01-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/silver-shroud-alien-blasterfallout-4-part-28","changefreq":"weekly","video":[{"title":"S1:E141 - SILVER SHROUD + ALIEN BLASTER - Fallout 4 Part 28","description":"SILVER SHROUD + ALIEN BLASTER - Fallout 4 Part 28","player_loc":"https://roosterteeth.com/embed/silver-shroud-alien-blasterfallout-4-part-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d2f7093-2ba1-49e3-8925-4410a66dc592/sm/hqdefault.jpg","duration":1723,"publication_date":"2016-01-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evilest-map-eversuper-mario-maker","changefreq":"weekly","video":[{"title":"S1:E140 - EVILEST MAP EVER? - SUPER MARIO MAKER","description":"EVILEST MAP EVER? - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/evilest-map-eversuper-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/774c99dc-5353-4a44-876c-74f65490f875/sm/hqdefault.jpg","duration":609,"publication_date":"2016-01-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-maker-rage-quitanimated-classics","changefreq":"weekly","video":[{"title":"S1:E139 - MARIO MAKER RAGE QUIT - Animated Classics","description":"MARIO MAKER RAGE QUIT - Animated Classics","player_loc":"https://roosterteeth.com/embed/mario-maker-rage-quitanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fe30983-bdd5-474b-ae72-c074f0a118c3/sm/hqdefault.jpg","duration":98,"publication_date":"2016-01-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-27-sh8y4h","changefreq":"weekly","video":[{"title":"2017:E27 - Hot For Teacher - #27","description":"Join Barbara Dunkelman, Mariel Salcedo, and special guests Nick Scarpino and Tim Gettys as they discuss a viewer's confessional, what they would change about themselves, and a user submitted question about cheating on this week’s Always Open. This episode is sponsored by Boll & Branch (http://bit.ly/2qasJo9) and Casper (http://bit.ly/2d4iXlI)","player_loc":"https://roosterteeth.com/embed/always-open-2017-27-sh8y4h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c91c93a7-68aa-4abb-b361-d94726526674/sm/2013912-1493306406828-AO27_-_THUMB_1.png","duration":4221,"publication_date":"2017-04-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-frog-funeral","changefreq":"weekly","video":[{"title":"2017:E49 - Frog Funeral","description":"The Live Action department continues their history of finding dead animals in their offices, and this time the unfortunate casualty is a frog (or more likely toad) named George. Max decides to send George off in style with a memorial and song.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-frog-funeral","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ce97f4b-57d4-43c5-ad4b-9fa36313f00a/sm/2267352-1492815685409-Frog_Funeral_02.png","duration":189,"publication_date":"2017-04-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-426-post-show","changefreq":"weekly","video":[{"title":"2017:E17 - EZ-D - Post Show #426","description":"Join Gus Sorola, Miles Luna, Chris Demarais, and Burnie Burns as they discuss yooka laylee, RT Podcast Let’s Plays, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-426-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41339fb1-af26-4659-b0aa-4ca036e040b7/sm/690915-1493132808854-rtp426_-_PS_-_THUMB.jpg","duration":1443,"publication_date":"2017-04-26T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-doggy-paddle-race","changefreq":"weekly","video":[{"title":"2017:E48 - Doggy Paddle Race","description":"Miles and Dan lead the gang in what will clearly become the next big sport at the Summer Olympic Games: Doggy Paddle Racing. When Gavin decides to break the rules, Miles must declare a winner.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-doggy-paddle-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c81f030-8927-44e2-a150-caa9d603fb8b/sm/2267352-1492814598634-doggypaddlethumb.png","duration":94,"publication_date":"2017-04-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-426-ja7fhi3","changefreq":"weekly","video":[{"title":"2017:E426 - Social Media is a Flat Circle - #426","description":"Join Gus Sorola, Miles Luna, Chris Demarais, and Burnie Burns as they discuss the earliest community sites, pig ownership, dominoes of life, and more on this week's RT Podcast! This episode originally aired on April 24, 2017, sponsored by The Black Tux (http://bit.ly/2op5lpS), Blue Apron (http://cook.ba/29J4MMj)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-426-ja7fhi3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a61bf0d-649c-4fb5-b0f7-cd934e4b6011/sm/690915-1493134830923-rtp426_-_THUMB.jpg","duration":5811,"publication_date":"2017-04-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-4-ah8gh4k","changefreq":"weekly","video":[{"title":"S4:E4 - All You Can Eat - ft. Grace Helbig","description":"Join Gavin Free, Burnie Burns, and special guest Grace Helbig as they profess their undying love for strangers and eat cheddar biscuits, tacos, and dog poop.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-4-ah8gh4k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/807ec5f0-9dd1-49be-b558-4a5aa1de9d7b/sm/2267352-1492817562230-MDB_04_Helbig_7.png","duration":315,"publication_date":"2017-04-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/barbara-vlogs-2017-1","changefreq":"weekly","video":[{"title":"2017:E1 - Barbara's first FIRST Vlog","description":"Rooster Teeth made the mistake of letting me (Barbara) make a vlog. They also made the mistake of letting me write the description. Are you reading this? Sup, bb. Butts. Hehehehehhehe. ANYWAY, join me as I vlog from places I shouldn't, like Lazer Team 2, Million Dollars But, Always Open, and at a convention with the RWBY crew! I hope you enjoy these next few minutes of your life with me. ","player_loc":"https://roosterteeth.com/embed/barbara-vlogs-2017-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a2ef274-8b15-48dc-9f04-9ee4deeceed1/sm/47871-1492645530165-thumb1.png","duration":469,"publication_date":"2017-04-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-274-r73vh84","changefreq":"weekly","video":[{"title":"2017:E274 - Stinky Ride-Share Farts","description":"Gavin finds himself in a stinky situation when his uber driver farts and he doesn't know the proper etiquette of how to deal with it.\n\nAudio from Rooster Teeth Podcast #392\n\n\n\n\n\nDirected by Jordan CwierzAnimated by William Ball","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-274-r73vh84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f60d9e5d-3890-4b59-8c37-45936149f22f/sm/2013912-1492461315799-rtaa274tn.jpg","duration":48,"publication_date":"2017-04-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-94-ahuftg3","changefreq":"weekly","video":[{"title":"S8:E14 - For the Win #94","description":"Jeremy is still drunk and Tim & Nick from Kinda Funny get dark during some Quick Thinking. But there is a happy ending...for some.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-94-ahuftg3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2db3acf4-f2eb-4357-afaf-c2146ba141a0/sm/690915-1492874586875-ots_94ps_thumb.jpg","duration":505,"publication_date":"2017-04-23T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-4-49-hj0m","changefreq":"weekly","video":[{"title":"S15:E4 - Episode 4: Chorus Lessons","description":"Dylan’s search concludes on the Planet Chorus, the last known hang out of the Reds and Blues before they vanished and embarked on a galactic crime spree. Stonewalled by an administration that doesn't trust the press, Dylan finds herself going to extreme measures to gain access to Chorus’ important figures.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-4-49-hj0m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8700fa4e-b59d-4863-a3e3-94dfd126fa8f/sm/2013912-1492461806454-RvB15Ep04Thumbnail.jpg","duration":720,"publication_date":"2017-04-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-94-ah8f6g4","changefreq":"weekly","video":[{"title":"S8:E94 - SMASHMOUTH ALLSTARS - #94","description":"Is Smashmouth looking for a new lead singer for the band because we know a certain drunk New Englander named Jeremy Dooley who is ready for the audition of his life.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-94-ah8f6g4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59e064dc-f6fa-415e-bfc5-a5ec4e80ae03/sm/690915-1492873940200-ots_94_thumb.jpg","duration":3167,"publication_date":"2017-04-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-23-4-hodgk","changefreq":"weekly","video":[{"title":"2017:E23 - Fast & Furious Is My Favorite Anime! - #23","description":"Join Miles, Cole, Austin, Yssa, and special guests Tim Gettys (@TimGettys) and Nick Scarpino (@Nick_Scarpino) from Kinda Funny (http://bit.ly/2o9B0eJ) as they discuss anime news, Love Tyrant, Attack on Titan, Shirobako, and more this week on Fan Service!\n\n\n\n\n\n\n\nSubmit your questions for Fan Service at http://bit.ly/2nJ61Ba","player_loc":"https://roosterteeth.com/embed/fan-service-2017-23-4-hodgk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5145261b-2708-4e5f-be8a-b352169352e7/sm/2037887-1492806146341-fanservice_023.png","duration":5914,"publication_date":"2017-04-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-adventure-2-3","changefreq":"weekly","video":[{"title":"2017:E14 - Sonic Adventure 2, #3 - #Eyebrows4Cheng","description":"3D Animator Melanie Stern joins Kyle in berating and ridiculing Miles parenting methods. Will she be able to enlighten Miles and change his ways or will he forever be just a monster of a parent? Tune in to find out in this episode of Backwardz Compatible! ","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-adventure-2-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f0ed0b5-ab07-40ed-8489-59e9928f5dfb/sm/1030918-1492799150138-BC_SANIC_THUMB_PT3.png","duration":4494,"publication_date":"2017-04-21T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-26-a8fh3fv","changefreq":"weekly","video":[{"title":"2017:E14 - Still Open #26","description":"Join Barbara Dunkelman, Jon Risinger, Lindsay Jones, and Maggie Tominey as they discuss their first time falling in love with a book.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-26-a8fh3fv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6282550b-abe5-4e8f-8a50-0c5b1a18a4a9/sm/690915-1492789276426-AO26_-_PS_-_THUMB.jpg","duration":863,"publication_date":"2017-04-21T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-13","changefreq":"weekly","video":[{"title":"2017:E13 - Gavin's British Cowboy Makeover","description":"Burnie takes Gavin to buy a cowboy hat and boots to celebrate his fifth year of living in Texas...but, of course, Gavin gets a little carried away!","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eee84dc-f17f-449d-a110-21c10f7471d8/sm/2307869-1492715507172-Burnie_Vlog_13_Cowboy.png","duration":474,"publication_date":"2017-04-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-mass-effect-costumes","changefreq":"weekly","video":[{"title":"2017:E45 - Mass Effect Costumes","description":"Tyler, Jon, and Patrick realize that their tight-fitting Mass Effect Immersion costumes make tasks like checking social media and playing basketball a little trickier than usual. Thanks to EA for sponsoring this episode of Immersion!","player_loc":"https://roosterteeth.com/embed/rt-life-2017-mass-effect-costumes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd1c19c8-dc4b-4832-b2ed-af8ea7526c15/sm/2013912-1492528812893-mass_effect_rtlifeTHUMB.png","duration":120,"publication_date":"2017-04-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-26-hs76guf","changefreq":"weekly","video":[{"title":"2017:E26 - How to be Courageous - #26","description":"Join Barbara Dunkelman, Jon Risinger, Lindsay Jones, and Maggie Tominey as they discuss the courage to do something scary, losing something extremely important, and how to ask your crush out on this week’s Always Open. This episode is sponsored by Lyft (http://lft.to/2k09gCG) and MeUndies (http://bit.ly/2oqytsJ)","player_loc":"https://roosterteeth.com/embed/always-open-2017-26-hs76guf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ae7f7e1-2860-49db-9732-d6c987e433f8/sm/2013912-1492641637734-AO26_-_THUMB.jpg","duration":3184,"publication_date":"2017-04-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-miles-the-virgin-killer","changefreq":"weekly","video":[{"title":"2017:E46 - Miles the Virgin Killer","description":"After taping an episode of Fan Service featuring the infamous Virgin Killer sweater, Miles takes a quick spin around the office in his scant outfit to check on his coworkers.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-miles-the-virgin-killer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f1d4569-06fa-4fe9-98e1-df6ee29fda4d/sm/2013912-1492614742411-miles_sweater_THUMB.png","duration":134,"publication_date":"2017-04-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-425-post-show","changefreq":"weekly","video":[{"title":"2017:E16 - That's What Planes Are For - Podcast #425 Post Show","description":"Join Gus Sorola, Barbara Dunkelman, and special guests Nick Scarpino and Tim Gettys as they discuss weird sodas, the fast and the furious universe, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-425-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67cebc39-9de8-4186-93ac-2749c355446e/sm/2013912-1492543862970-rtp425_-_PS_-_THUMB.jpg","duration":1179,"publication_date":"2017-04-19T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-425-sh8963g","changefreq":"weekly","video":[{"title":"2017:E425 - Gus Does What Gus Wants - #425","description":"Join Gus Sorola, Barbara Dunkelman, and special guests Nick Scarpino and Tim Gettys as they discuss animal intelligence, sandwiches, weight gain, and more on this week's RT Podcast! This episode originally aired on April 17, 2017, sponsored by ProFlowers (http://bit.ly/2kI2inb), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-425-sh8963g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1383e439-7cd5-40f1-8c59-c53d190d44bf/sm/2013912-1492529558306-rtp425_-_THUMB.jpg","duration":5720,"publication_date":"2017-04-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-3-98-gh3o","changefreq":"weekly","video":[{"title":"S4:E3 - Tweeting for Trump","description":"Barbara, Elyse, and Ashley transcribe tweets for Donald Trump and have their own personal mariachi band follow them 24/7 in this episode of Million Dollars, But...","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-3-98-gh3o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa77e64b-1324-4903-93e3-0bf7a4dbb8a1/sm/2013912-1492446877618-MDBLadies_01.png","duration":254,"publication_date":"2017-04-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-3-ao8fbal","changefreq":"weekly","video":[{"title":"2017:E3 - Raw Dogging at First Sight - #3","description":"On this month's Relationship Goals, Griffon and Geoff dive into the intricacies of Bethany and Bruce's beautiful long-distance love affair.","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-3-ao8fbal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/792c9476-3c96-42bc-8164-0bbff420fa2a/sm/2013912-1492468584757-RG03_-_THUMB.jpg","duration":3372,"publication_date":"2017-04-18T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-12","changefreq":"weekly","video":[{"title":"2017:E12 - A Day On A Film Set","description":"Burnie takes us behind the scenes of a movie production, and shows us a what a typical day on a film set looks like, and how many people it takes to make a movie!","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1da3a6db-fc69-46c4-8530-8bdb1698d4a4/sm/2013912-1492463126928-Vlog_0417_Thumbnail.png","duration":725,"publication_date":"2017-04-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-5-mass-effect-in-real-life","changefreq":"weekly","video":[{"title":"S5:E3 - Mass Effect in Real Life","description":"In this episode, we test whether or not biotic abilities like \"Charge\" are practical in a real life combat simulation. Will the Lab Rats succeed or will they be Charging towards their doom? Find out! Thanks to EA for sponsoring this special episode of Immersion - check out Mass Effect at the link below. https://www.masseffect.com/","player_loc":"https://roosterteeth.com/embed/immersion-season-5-mass-effect-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d40ad1b-01fe-4f65-ae46-709e58804414/sm/2013912-1492455424591-ImmersionMassEffect_01.png","duration":499,"publication_date":"2017-04-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-273-sng7qns","changefreq":"weekly","video":[{"title":"2017:E273 - Jeremy & Michael Get Hurt","description":"Assuming the title wasn't descriptive enough, in this episode of RTAA, Jeremy and Michael each regale us of times from their childhood in which they sustained some crazy injuries.\n\n\n\nAudio from Off Topic Podcast #37\n\n\n\nDirected by Jordan CwierzAnimated by Andrew Lhostky & Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-273-sng7qns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e1fe4ce-acfc-4857-acb4-a81645c8f8ec/sm/2013912-1492207911584-rtaa273tn.jpg","duration":153,"publication_date":"2017-04-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-93-shiugy4","changefreq":"weekly","video":[{"title":"S8:E13 - For the Win #93","description":"Is James from Cow Chop banned from the show? Did Lawrence survive? Where did Bruce come from? So many questions, so little time.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-93-shiugy4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d28b4919-3e92-41d9-8dea-1df0147c95ac/sm/2013912-1492318485411-ots_93ps_thumb.jpg","duration":504,"publication_date":"2017-04-16T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-12","changefreq":"weekly","video":[{"title":"2017:E12 - Reproductive Systems, Who does it best? Humans or Animals? - #12 ","description":"Any advantages to having a period vs what other Animals do? And, are there any animals that can resist tooth decay? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. This week's episode is sponsored by MVMTwatches.com/Science (http://bit.ly/2n1fu6x)","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d701e5b6-c18e-4690-810a-2df48a13bac7/sm/2013912-1492200365316-SOS12_-_THUMB.jpg","duration":976,"publication_date":"2017-04-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-3-s73bhh","changefreq":"weekly","video":[{"title":"S15:E3 - Episode 3: The Mother of Destruction","description":"The search for the Reds and Blues takes Dylan and Jax to the crashed remains of Project Freelancer. While Dylan struggles to justify her continuing search against a lack of progress, a break in the story finally comes in unexpected visitors.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-3-s73bhh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7de9e369-28db-4b04-9ee7-804ad442e0fe/sm/2013912-1492206496518-RvB15Ep03Thumbnail.jpg","duration":553,"publication_date":"2017-04-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-slow-mo-pellet-penetration","changefreq":"weekly","video":[{"title":"S1:E76 - Slow Mo Pellet Penetration","description":"Gav and Dan whip out the air pistol and watch pellets travel majestically through the medium of... dude's deodorant. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-slow-mo-pellet-penetration","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad39d430-f009-4f57-adbc-5d74440cb9c0/sm/82-1492357381189-Screen_Shot_2017-04-16_at_09.58.08.jpg","duration":510,"publication_date":"2017-04-16T08:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-93-a8fhjay","changefreq":"weekly","video":[{"title":"S8:E93 - UNITED AIRLINES: RAGNAROK - #93","description":"What does United Airlines, an anime body pillow, bath salts, blue waffle and the end of times have in common? Why, this episode of course. Buckle up. This ones got some kick to it.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-93-a8fhjay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc93eb38-b982-4890-af5d-7018eacd0e6f/sm/2369885-1492274322734-ots_93_thumb.jpg","duration":3413,"publication_date":"2017-04-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-let-s-play-2017-use-your-words","changefreq":"weekly","video":[{"title":"2017:E1 - Use Your Words","description":"Barbara, Bethany, Blaine and Gus all sit down to play Use Your Words. Who will be the funniest off the cuff person? Surely Gus won't come in last both times....will he???","player_loc":"https://roosterteeth.com/embed/rt-podcast-let-s-play-2017-use-your-words","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2c1f22a-04fb-4b13-a235-3d45bc80eb4b/sm/2013912-1492197019547-thumb.jpg","duration":2373,"publication_date":"2017-04-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-22-9-gh3kf9","changefreq":"weekly","video":[{"title":"2017:E22 - Art Imitates Life - #22","description":"Join Kerry, Gray, Miles, Cole, and Yssa as they discuss Yuri!!! On Ice extra features, Your Name, Shirobako, and more this week on Fan Service!Submit your questions for Fan Service at http://bit.ly/2nJ61Ba","player_loc":"https://roosterteeth.com/embed/fan-service-2017-22-9-gh3kf9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1faa597f-0bdc-41b0-ba50-6261103a1641/sm/2013912-1492220826680-fanservice_022.png","duration":4430,"publication_date":"2017-04-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sonic-2","changefreq":"weekly","video":[{"title":"2017:E13 - Sonic Adventure 2, #2 - Parenting 101","description":"Kyle and Miles ponder one of life's great mysteries. \"Is that Knuckles hand or is it a glove?\" and \"If it's a glove, what does his hand look like?!\" They then show why Knuckles should win Father of the year.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sonic-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecabd177-c386-4a54-b696-f11dd172b682/sm/2013912-1492196172818-BC_SANIC_THUMB_PT2.png","duration":3303,"publication_date":"2017-04-14T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-25-ahiayfg","changefreq":"weekly","video":[{"title":"2017:E13 - Still Open #25","description":"Join Barbara Dunkelman, Ashley Jenkins, Mariel Salcedo, and special guest Kirk Johnson as they discuss their first time having sex in a vehicle.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-25-ahiayfg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d18fa6b7-6c17-4a72-b8a4-9f192ee85f5f/sm/2013912-1492122645259-AO25_-_PS_-_THUMB.jpg","duration":798,"publication_date":"2017-04-14T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-25-7-fg397t","changefreq":"weekly","video":[{"title":"2017:E25 - Do We Believe in Aliens? - #25","description":"Join Barbara Dunkelman, Ashley Jenkins, Mariel Salcedo, and special guest Kirk Johnson as they discuss getting turned on by farting, what makes them nervous, thoughts on the ghosts and aliens, and foot fetishes on this week's Always Open. This episode is sponsored by MVMT Watches (http://bit.ly/2g6rLUx) and Squarespace (http://bit.ly/2ktKvz4)","player_loc":"https://roosterteeth.com/embed/always-open-2017-25-7-fg397t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7447713f-be0d-41d8-bd6b-fe10c5531bd7/sm/2013912-1492096782483-AO25_-_THUMB.jpg","duration":3597,"publication_date":"2017-04-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-if-fast-furious-used-uber","changefreq":"weekly","video":[{"title":"S7:E43 - If Fast & Furious Used Uber","description":"Dom turns his back on his family... to drive for Uber.\n\n\n\n\n\n\n\n\n\nCASTDom - John ErlerBadass Chick - Jessica VasamiDitzy Girl - Ellie MainDrunk Dude - Devin FinnSnazzy Man - Blaine Gibson\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCREWWriter/Director - Marshall RimmerAdditional Writing - Kirk JohnsonSupervising Producer - Will HydeExecutive Producer - Matt HullumProduction Coordinator - Javier A. Avellan1st AD - Drew Saplin2nd AD - Brian MurphyDirector of Photography - David Blue GarciaAssistant Camera - Colton ClementsAssistant Camera - John WedlockAudio - Damion HauxGaffer - BJ LewellanKey Grip - Jason McKnightGrip - Amy SmithProduction Designer - Dustin ShroffCostume Designer - Eryn BrookeMakeup - Anna FugateMedic - Micah RimmerProduction Assistant - Zach RothProduction Assistant - Justin PackPost-Production Producer - Allison FeldsteinEditor - Dan HironsVisual Effects & Graphics - André OuelletteAssistant Editor - David Nguyen","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-if-fast-furious-used-uber","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61bb16a1-400c-44e6-990b-f76d04577ffc/sm/2013912-1492009330512-FastFurious_03_1.png","duration":168,"publication_date":"2017-04-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-424-post-show","changefreq":"weekly","video":[{"title":"2017:E15 - Hillbilly Name - Podcast #424 Post Show","description":"Join Gus Sorola, Blaine Gibson, Barbara Dunkelman, and Bethany Feinstein as they discuss names and nicknames, on-set stories, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-424-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7767de0-acc5-41bf-8d96-daf508d3f42a/sm/2013912-1492012332402-rtp424_-_PS_-_THUMB.jpg","duration":1363,"publication_date":"2017-04-12T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-chairball-tournament","changefreq":"weekly","video":[{"title":"2017:E43 - Chairball Tournament","description":"The Animation and Games teams spend their lunch break competing in a sport of their own creation: Chairball. Though many enter the contest, there can be only one winner.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-chairball-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aca7caa-bc41-4c2f-98bb-1eba920cd1e7/sm/2013912-1491863538940-chairball_tournament_THUMB.png","duration":228,"publication_date":"2017-04-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-424-h74gjaf","changefreq":"weekly","video":[{"title":"2017:E424 - Batman’s Phone - #424","description":"Join Gus Sorola, Blaine Gibson, Barbara Dunkelman, and Bethany Feinstein as they discuss United’s bad year, awkward interactions, old school games, and more on this week's RT Podcast! This episode originally aired on April 10, 2017, sponsored by MeUndies (http://bit.ly/2aGm9yg), MVMT Watches (http://bit.ly/2n2cNFN), NatureBox (http://bit.ly/2n25cac)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-424-h74gjaf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e0c7c01-c234-4fc6-91f6-6e69ca95ffee/sm/2013912-1491924265416-rtp424_-_THUMB.jpg","duration":5908,"publication_date":"2017-04-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-2-sjghiru","changefreq":"weekly","video":[{"title":"S4:E2 - Wayward Wiener","description":"Join Gavin, Burnie, and Blaine at RTX Sydney as they take scenarios from the Rooster Teeth community. Can they find their genitals in a dark room filled with sausages? Will they take velociraptor legs? Find out!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-2-sjghiru","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a58813f9-20ac-442f-9ac2-5b80c21dca6c/sm/2013912-1491839852440-Australia_09_1_1.png","duration":387,"publication_date":"2017-04-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-272","changefreq":"weekly","video":[{"title":"2017:E272 - Forgetful Pills, Automatic Recovery","description":"In an attempt to make his life easier, Miles does something really complicated to help him remember to take his medicine. Burnie's older brother does something mean (surprising), and Gavin witnesses a person save himself from injury automatically. \n\nFrom Rooster Teeth Podcasts\n\n\n\n\n\n#322\n\n\n\n\n\n#368\n\n\n\n\n\n#374\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan Battle, Beth Mackenzie, & Quinn Weston","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-272","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/090397c0-e29c-4db3-9d42-cd2ecad6b04b/sm/2013912-1491596093341-rtaa272tn.jpg","duration":98,"publication_date":"2017-04-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-92-jag4o7","changefreq":"weekly","video":[{"title":"S8:E12 - For the Win #92","description":"Ever needed to know how to explain you are having period pains while on vacation in Paris? We can help","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-92-jag4o7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f270bd8-3ec8-493d-bd5f-d4e160a110ea/sm/690915-1491665303499-ots_92ps_thumb.jpg","duration":1058,"publication_date":"2017-04-09T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-11","changefreq":"weekly","video":[{"title":"2017:E11 - Crazy Cat Ladies - #11","description":"Do cats love humans? And, parasites that affect animal behavior. Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers.","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a86fff2a-24af-461b-a630-cbb0c712a954/sm/2013912-1491590486223-SOS11_-_THUMB.jpg","duration":739,"publication_date":"2017-04-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-2-ba85h9h","changefreq":"weekly","video":[{"title":"S15:E2 - Episode 2: The Chronicle","description":"IDA Reporter Dylan Andrews begins her search for the Reds and Blues in Blood Gulch Canyon with the help of a new cameraman.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-2-ba85h9h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b648fbc-52e5-45b8-a10b-0e100b987b66/sm/2013912-1491504422416-RvB15Ep02Thumbnail_1.jpg","duration":597,"publication_date":"2017-04-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-92-f7ahyg","changefreq":"weekly","video":[{"title":"S8:E92 - 2 DOGS, 1 RABBIT - #92","description":"A shiba, a pug, a rabbit and Jesus walk into a bar","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-92-f7ahyg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa956aba-8ccd-43ea-a047-f5f4f93b5fc8/sm/690915-1491665181438-ots_92_thumb.jpg","duration":2748,"publication_date":"2017-04-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-21-oi744hk","changefreq":"weekly","video":[{"title":"2017:E21 - All the Cute Boys and Girls - #21","description":"Join Kerry, Gray, Miles, Austin, Cole, Yssa, and special guest Patrick Rodriguez as they discuss Persona 5, Miss Kobayashi’s Dragon Maid, Saga of Tanya the Evil, the next anime for Shot of the Week, and more this week on Fan Service!Submit your questions for Fan Service at http://bit.ly/2nJ61Ba","player_loc":"https://roosterteeth.com/embed/fan-service-2017-21-oi744hk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43f17fb3-0c33-4083-84b8-1b48a45e3290/sm/671784-1491642038142-unnamed.png","duration":5817,"publication_date":"2017-04-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-sa2-1","changefreq":"weekly","video":[{"title":"2017:E12 - Sonic Adventure 2, #1 - Gotta Go Fast!","description":"Could it be? Has it finally happened? Are Miles and Kyle going to play THE greatest Sonic game ever made? That's right Backwardz Compatible will be bringing you the blistering speed of Sonic and Shadow, the hard hitting mech action of Tails and Dr. Eggman, plus all of the high flying, treasure hunting action of Knuckles and Rouge. Did I mention Chaos? Cause there is gonna be plenty of Chaos. Strap yourselves in because it's Sonic Adventure 2 on Backwardz Compatible.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-sa2-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4aa1880-5d31-4b7d-8d0b-4c078832f112/sm/2013912-1491594854953-BC_SANIC_THUMB_PT1.png","duration":3500,"publication_date":"2017-04-07T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-24-au6fhjr","changefreq":"weekly","video":[{"title":"2017:E12 - Still Open #24","description":"Join Barbara Dunkelman, Miles Luna, Mica Burton, and Mariel Salcedo as they discuss their earliest memories of having a computer.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-24-au6fhjr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83f8f43c-980b-45a4-9305-636eca6d813c/sm/2013912-1491507401350-AO24_-_PS_-_THUMB.jpg","duration":1282,"publication_date":"2017-04-07T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-11","changefreq":"weekly","video":[{"title":"2017:E11 - Lockhart BBQ Tour","description":"On a day off from shooting Lazer Team 2, Burnie takes the cast on a tour of Lockhart's famous BBQ spots","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0e353bd-5466-4959-9cd4-edd20f2cba17/sm/2013912-1491512707417-VLOG11_Thumbnail.png","duration":457,"publication_date":"2017-04-06T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-24-ah86fkj","changefreq":"weekly","video":[{"title":"2017:E24 - The Girls Bathroom Experience - #24","description":"Join Barbara Dunkelman, Miles Luna, Mica Burton, and Mariel Salcedo as they discuss being kicked out of a bar, how to tell someone you like them, and their experience with friends with benefits on this week’s Always Open. This episode is sponsored by Boll & Branch (http://bit.ly/2nJJfg8) and HelloFresh (http://bit.ly/2nK1qCb)","player_loc":"https://roosterteeth.com/embed/always-open-2017-24-ah86fkj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8040015-b18d-44b2-8b30-cee8b00efe3a/sm/2013912-1491492631435-AO24_-_THUMB.jpg","duration":4063,"publication_date":"2017-04-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-jessica-nigri-turns-barb-into-a-faerie","changefreq":"weekly","video":[{"title":"2017:E41 - Jessica Nigri turns Barb into a Faerie","description":"Barbara wears a custom faerie costume during a photoshoot with Jessica Nigri, and Jessica realizes she forgot a key feature of her own costume.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-jessica-nigri-turns-barb-into-a-faerie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf1eff8-7090-4300-ab7d-c897c382a68c/sm/2013912-1491331658104-barb_faerie.png","duration":131,"publication_date":"2017-04-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-423-post-show","changefreq":"weekly","video":[{"title":"2017:E14 - Sexy Donkey - Podcast #423 Post Show","description":"Join Gus Sorola, Jon Risinger, Barbara Dunkelman, and Becca Frasier as they discuss movie sequel titles, disturbing internet videos, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-423-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b23d7831-f4ca-4772-bc04-cc278ad1ba27/sm/2013912-1491324440862-rtp423_-_PS_-_THUMB.jpg","duration":1405,"publication_date":"2017-04-05T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-michael-gus-experience-zero-g-vr","changefreq":"weekly","video":[{"title":"2017:E40 - Michael & Gus experience Zero G VR","description":"During SXSW Interactive Michael & Gus experience Zero G from the comfort of a giant egg chair thanks to the wonders of VR and The Mummy. The Mummy is in theaters June 9! Sponsored by Universal. See The Mummy trailer  at this link.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-michael-gus-experience-zero-g-vr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e699f7a-be90-4640-94dd-ae2c1a593fb3/sm/2013912-1491319381242-GusVR_01.png","duration":142,"publication_date":"2017-04-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-423-an97fh2","changefreq":"weekly","video":[{"title":"2017:E423 - Once You Get the Boner - #423","description":"Join Gus Sorola, Barbara Dunkelman, Becca Frasier, and Jon Risinger (eventually) as they discuss rideshare and cab stories, the mile high club, movie ratings, and more on this week's RT Podcast! This episode originally aired on April 3, 2017, sponsored by Audible (http://adbl.co/2bgBJkt), Casper (http://bit.ly/2bgC0nt), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-423-an97fh2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79d7887b-de1a-4d16-803a-043fdc553cdf/sm/2013912-1491319236545-rtp423_-_THUMB.jpg","duration":5380,"publication_date":"2017-04-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-4-founding-fathers","changefreq":"weekly","video":[{"title":"S4:E1 - Founding Fathers","description":"Join Burnie, Matt, and Gus as they punch random bystanders and float away from Earth.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-4-founding-fathers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aeccce4-a246-4bb4-b6d5-e77d2431003b/sm/2013912-1491252848055-Founders_05d.png","duration":264,"publication_date":"2017-04-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-10","changefreq":"weekly","video":[{"title":"2017:E10 - Q&A","description":"Burnie takes a moment from filming LT2 to answer some questions from the RT community.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90b01004-b0a0-41fb-890b-f35a16808752/sm/2013912-1491246919670-Burnie_Vlog_0403.png","duration":866,"publication_date":"2017-04-03T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-271-j9a7jmg","changefreq":"weekly","video":[{"title":"2017:E14 - Don't Talk at the Gym","description":"Michael tries to avoid a dude at the gym who likes talking and being punched, but can't seem to shake him no matter where he goes.\n\nAudio from Off Topic #2\n\n\n\n\n\nDirected by Jordan CwierzAnimated by William Ball & Gil Calceta","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-271-j9a7jmg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7aff1b5-47da-4d69-b6f6-efbdf8ea693d/sm/2013912-1490986443157-rtaa271tn.jpg","duration":98,"publication_date":"2017-04-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8","changefreq":"weekly","video":[{"title":"S8:E11 - For the Win #91","description":"Greasy boys come back for one more game to defend the coveted Golden Hunny!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ea45775-27a7-4834-b993-fd6f054fba56/sm/2369885-1491070149067-IMG_2012.JPG","duration":1005,"publication_date":"2017-04-02T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-10","changefreq":"weekly","video":[{"title":"2017:E10 - Scorpion Killers in the Wild - #10","description":"How meerkats teach their young to be scorpion killers. And, can you really catch a cold in the rain? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by audible.com/letme ( http://adbl.co/2nop9UP )","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/bc7b89ee-45e1-45ff-8ee4-fac2668b5f0b.jpg/sm/ASOSTHUMB.jpg","duration":958,"publication_date":"2017-04-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-15-1-83-bfog7","changefreq":"weekly","video":[{"title":"S15:E1 - Episode 1: Prologue","description":"Season 15 of Red vs. Blue kicks off with a bang. In the wake of a violent assault on a UNSC supply depot, one reporter (Dylan Andrews) is determined to find out the true motivations of its colorful attackers: a villainous gang known as the Reds and Blues.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-15-1-83-bfog7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee9753be-61e4-46c9-9775-4ed0a9477943/sm/2013912-1490993276746-RvB15Ep01Thumbnail_1.jpg","duration":487,"publication_date":"2017-04-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-91-sji7gbs","changefreq":"weekly","video":[{"title":"S8:E91 - MOTHER LOVERS! - #91","description":"Moms and On The Spot go together like fried chicken and online dating profiles.\n\n\n\n\n\n\n\n\n\n\n\n\n\nBrought to you by Blue Apron (http://cook.ba/29yXWg2) and The Black Tux (http://bit.ly/2nnWW0o)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-91-sji7gbs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0545fe6e-46ca-4816-8b59-737ae853a9a5/sm/2369885-1491069198832-IMG_2011.JPG","duration":2936,"publication_date":"2017-04-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-20-a82g7","changefreq":"weekly","video":[{"title":"2017:E20 - The Bamboo Butthole! - #20","description":"Join Kerry, Gray, Miles, Austin, Cole, Yssa, and special guest Barbara Dunkelman as they discuss the 25th Anniversary of Sailor Moon and Yu Yu Hakusho, Attack on Titan, the Shot of the Week’s Tournament Arc finale, and more this week on the season finale of Fan Service!\n\n\n\n\n\n\n\n\n\nSubmit your questions for Fan Service at http://bit.ly/2nJ61Ba","player_loc":"https://roosterteeth.com/embed/fan-service-2017-20-a82g7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aa1eac4-3ae5-41cf-8fbf-27bee7b0ba85/sm/2013912-1490908084558-fanservice_020.png","duration":4465,"publication_date":"2017-04-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-10","changefreq":"weekly","video":[{"title":"2017:E10 - RE7 #10 - E-001","description":"Kyle and Miles have fought their way through the ship and now stand at the entrance to the salt mines. The secrets to Eveline, Mia, and the Baker's are hidden somewhere down there and if they find them then hopefully they will discover a way to stop Evie. One thing is for sure, it ends tonight. Join our hapless duo as they make their way through the last episode of the RE7 campaign","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc598779-f506-4417-a5b9-4efb4ecc67fd/sm/2013912-1490988532804-BC_RTTHUMB_RE7_PT10.png","duration":3937,"publication_date":"2017-03-31T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-23-s7ghk7","changefreq":"weekly","video":[{"title":"2017:E11 - Still Open #23","description":"Join Barbara Dunkelman, Max Kruemcke, Tyler Coe, and Mariel Salcedo as they discuss the worst hairstyles they've had.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-23-s7ghk7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6ed78c8-131a-4e7c-94bb-9a3a9d86e1a1/sm/2013912-1490974946889-AO23_-_PS_-_THUMB.jpg","duration":741,"publication_date":"2017-03-31T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-post-show-6-ah8ftj","changefreq":"weekly","video":[{"title":"2017:E6 - After the Credits #6","description":"Tyler is still watching Santa Clarita Diet.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-post-show-6-ah8ftj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7635a864-37ab-4309-86b4-a91fd74e11bd/sm/2013912-1490888163074-ets_s01e06_ps.jpg","duration":1037,"publication_date":"2017-03-30T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-go-pro-office-dogs","changefreq":"weekly","video":[{"title":"2017:E38 - GoPro Office Dogs","description":"What better way to get a new perspective of the offices than to strap a GoPro to some of our beloved office dogs?","player_loc":"https://roosterteeth.com/embed/rt-life-2017-go-pro-office-dogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/568801a5-e9f3-4996-9fc3-c0613fefd121/sm/2013912-1490733776702-RTDogs_03.png","duration":197,"publication_date":"2017-03-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-6-ak7gh3","changefreq":"weekly","video":[{"title":"2017:E6 - HORROR MOVIES - #6","description":"Blumhouse Productions plants $5 million in the ground, waits a few months until a scary movie like Get Out blooms from the earth and then they pick their tens of millions of dollars in profit. Simple agricultural science. This episode is sponsored by Blue Apron (http://cook.ba/2l0izCT)","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-6-ak7gh3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a24cfb5e-b2e3-416a-bcef-ade3f3fbfbd8/sm/2013912-1490822381854-ets_s01e06.jpg","duration":2382,"publication_date":"2017-03-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-422-post-show-ai7fhjg","changefreq":"weekly","video":[{"title":"2017:E13 - Switch and Swap - Podcast #422 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss control schemes, favorite multiplayer maps, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-422-post-show-ai7fhjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a803c08-79ac-4c1d-a6cd-e8bc6c6c2609/sm/2013912-1490734438980-rtp422_-_PS_-_THUMB.jpg","duration":1724,"publication_date":"2017-03-29T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-bubble-blaine","changefreq":"weekly","video":[{"title":"2017:E37 - Bubble Blaine","description":"Blaine dons a giant bubble suit to try to win a bet with Will, but quickly realizes he's made a huge mistake.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-bubble-blaine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/782b1475-14f2-437e-884f-7285a2aa1f1f/sm/2013912-1490636294556-bubble_blaine.png","duration":203,"publication_date":"2017-03-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-422-j7aj7g","changefreq":"weekly","video":[{"title":"2017:E422 - Burnie’s Sunset Party Hangover - #422","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss Burnie’s party, buggy Microsoft tech, weird plane crashes, and more on this week's RT Podcast! This episode originally aired on March 27, 2017, sponsored by The Black Tux (http://bit.ly/2o3woX0), Blue Apron (http://cook.ba/2o3JxiK), Casper (http://bit.ly/2o3Fkvm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-422-j7aj7g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc70e59b-4e9a-4280-b00d-808e215088a5/sm/2013912-1490717786423-rtp422_-_THUMB.jpg","duration":5790,"publication_date":"2017-03-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-animation-blackout","changefreq":"weekly","video":[{"title":"2017:E36 - Animation Blackout","description":"A mysterious power outage affects the computers of the animation department, leaving them (somewhat) in the dark before an important deadline.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-animation-blackout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dbe2160-78a7-428e-bf1b-eed175b19f30/sm/2013912-1490394214308-animation_blackout_thumb.png","duration":147,"publication_date":"2017-03-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-270-abu6fj","changefreq":"weekly","video":[{"title":"2017:E13 - Bikes, Food, & Farts","description":"A plethora of tales ranging from stole bikes turned into unicycles, mysterious food items left on the ground, and Gavin's fart-riddled life. Fun times ahead!\n\n\n\n\n\nAudio from Off Topic #18 and RT Podcast #382\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Johnathan Floyd, Jordan Battle, and Quinn Weston","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-270-abu6fj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ae15be7-8ff8-4d07-9a99-4ba046886e1d/sm/2013912-1490373713056-rtaa270tn.jpg","duration":144,"publication_date":"2017-03-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-90-a7fh3o","changefreq":"weekly","video":[{"title":"S8:E10 - For the Win #90","description":"Barbara and Elyse learn what Pokemon are while Lindsay and Maggie tell the frightening story of zombie Colonel Sanders.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-90-a7fh3o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2f56477-6f7c-45b2-a317-d8164cc2de32/sm/2013912-1490512814617-ots_90ps_thumb.jpg","duration":544,"publication_date":"2017-03-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-9","changefreq":"weekly","video":[{"title":"2017:E9 - Outer Space Does Your Body Bad - #9","description":"How do birds sit on live wires and not get electrocuted? And, the damage outer space does to your body. Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by MVMTWatches.com/SCIENCE ( http://bit.ly/2mB6GsK )","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/380f22ae-e567-436d-9121-f9dc6f8d6187/sm/2013912-1490376059091-SOS09_-_THUMB.jpg","duration":680,"publication_date":"2017-03-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-90-a6fhk8","changefreq":"weekly","video":[{"title":"S8:E90 - HOT PUPPET LOVE - #90","description":"No puppet was harmed in the making of this internet production","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-90-a6fhk8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e44e6a8-1dc1-4753-bd33-f1a6345b3492/sm/690915-1490498156516-OTS90_-_Site.mp4.00_00_37_14.Still003.jpg","duration":2183,"publication_date":"2017-03-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-421-post-show-08-agj76","changefreq":"weekly","video":[{"title":"2017:E12 - The Quest to Make Things Easier - Podcast #421 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss wheelchair accessibility, the lack of on/off switches, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-421-post-show-08-agj76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f118b069-6c4d-48bf-b833-5738e4c70b68/sm/2013912-1490375673583-rtp421_-_PS_-_THUMB.jpg","duration":809,"publication_date":"2017-03-25T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sex-swing-season-1-6-a86fhh","changefreq":"weekly","video":[{"title":"S1:E6 - Billy Zane's Phantom Pain - Episode 6","description":"In the season one finale, Sex Swing find themselves stranded in the desert with no ride home. Things take a turn when they come across an abandoned car dealership and have to help Billy Zane, star of Titantic and The Phantom, save it.","player_loc":"https://roosterteeth.com/embed/sex-swing-season-1-6-a86fhh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30809e62-9ef8-4269-9d61-ae83090dd58e/sm/2013912-1490373502284-SS_episode06_tn.jpg","duration":681,"publication_date":"2017-03-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-19-ani7d28a","changefreq":"weekly","video":[{"title":"2017:E19 - Virgin Killers - #19","description":"Join Kerry, Gray, Miles, Austin, Cole,Yssa, and special guest Jessica Nigri as they discuss Free!, Haikyu, cosplay, the Shot of the Week Tournament Arc, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-19-ani7d28a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5579b4b-e052-4a88-bdd3-d4ef05fd4f11/sm/2013912-1490372357590-fanservice_019.png","duration":5169,"publication_date":"2017-03-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-6-ft-rockets","changefreq":"weekly","video":[{"title":"S1:E75 - 6ft Rockets","description":"Gav and Dan send some rockets up into the Indiana sky with the help of Purdue students. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-6-ft-rockets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8536c59-dc9e-4aa2-9197-cab7fb6f8e92/sm/82-1490469196431-Screen_Shot_2017-03-25_at_13.40.17.jpg","duration":527,"publication_date":"2017-03-25T11:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-9-what-are-what-is","changefreq":"weekly","video":[{"title":"2017:E9 - RE7 #9 - What Are? What is?","description":"Kyle and Miles make their way through the derelict ship that brought Mia and Eveline to the Baker's back door. What secrets will they find? How many Larry's will they peg? What's it like to have a homeless guy yell at you in the middle of a laundromat? All of this and more will be answered on this episode of Backwardz Compatible!","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-9-what-are-what-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1842a78c-6e93-4578-9b05-dd57bd0f4ba1/sm/2013912-1490382035993-BC_RTTHUMB_RE7_PT9.png","duration":3822,"publication_date":"2017-03-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-9","changefreq":"weekly","video":[{"title":"2017:E9 - At the Special Olympics","description":"Burnie and Gavin travel to Austria for the Special Olympics Winter Games. From riding gondolas to absurd heights to testing their marksmanship, their time at the games culminates in an amazing opening ceremony.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e1b1d8d-44fc-4b41-ac73-1e348b53bb3b/sm/2013912-1490387930135-burnie_specialolympics_thumbnail.png","duration":1085,"publication_date":"2017-03-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-22-ag-9-hf2","changefreq":"weekly","video":[{"title":"2017:E10 - Still Open #22","description":"Join Barbara Dunkelman, Kerry Shawcross, Mariel Salcedo, and special guest Jessica Nigri as they discuss marriage.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-22-ag-9-hf2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a8b0677-f526-4fa8-98bd-e48fd2a47fe1/sm/2013912-1490286778352-AO22_-_PS_-_THUMB.jpg","duration":606,"publication_date":"2017-03-24T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-421-jai7hjg","changefreq":"weekly","video":[{"title":"2017:E421 - She Wants the Tea - #421","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss calendar invites, regional slang, showers, and more on this week's RT Podcast! This episode originally aired on March 23, 2017, sponsored by MVMT Watches (http://bit.ly/2n2cNFN)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-421-jai7hjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51816e57-a505-447d-8585-4f08f0de3938/sm/2013912-1490375262122-rtp421_-_THUMB.jpg","duration":4061,"publication_date":"2017-03-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-docs-the-tattooist-the-tattooist-ja73h6","changefreq":"weekly","video":[{"title":"TT:E1 - The Tattooist","description":"In “The Tattooist,” Rooster Teeth’s Geoff Ramsey explores the subculture of tattoos and takes a crash course from a master tattoo artist. Geoff’s tattoos are a roadmap, drawing paths between different moments in his life. He and his wife Griffon share these stories with their 12-year old daughter Millie, who struggles to understand why they want tattoos.","player_loc":"https://roosterteeth.com/embed/rt-docs-the-tattooist-the-tattooist-ja73h6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a6edaaf-48a9-4716-a32c-cd7c6470d37f/sm/2013912-1490297973947-Tattooist_06.png","duration":2794,"publication_date":"2017-03-24T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-22-k7ag6g","changefreq":"weekly","video":[{"title":"2017:E22 - Jessica Nigri and the Steamed Panties - #22","description":"Join Barbara Dunkelman, Kerry Shawcross, Mariel Salcedo, and special guest Jessica Nigri as they discuss the common misconceptions people have, sex injuries, and their parents views on pursuing a career in entertainment on this week's Always Open. This episode is sponsored by Legacybox (http://bit.ly/2nk0015) and Lyft (http://lft.to/2k09gCG)","player_loc":"https://roosterteeth.com/embed/always-open-2017-22-k7ag6g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72c93951-8c88-4800-80c6-77dcc691853b/sm/2013912-1490284189220-AO22_-_THUMB.jpg","duration":3603,"publication_date":"2017-03-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-post-show-5-ani7gh","changefreq":"weekly","video":[{"title":"2017:E5 - After the Credits #5","description":"Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan. Jon is not a Minions fan.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-post-show-5-ani7gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1419a7d5-0888-4462-a2e1-d5ea14942fec/sm/2013912-1490283943886-ets_s01e05_ps.jpg","duration":840,"publication_date":"2017-03-23T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-dirty-dodgeball","changefreq":"weekly","video":[{"title":"2017:E34 - Dirty Dodgeball","description":"You know, just covering Blaine, Tyler, and Joel in filth. Your typical Friday afternoon. Thanks to Old Spice for sponsoring, and remember to check out DUOs at this link: http://bit.ly/2mMQdhb","player_loc":"https://roosterteeth.com/embed/rt-life-2017-dirty-dodgeball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6708dcd1-037d-40ba-929f-28051bedf5d4/sm/2013912-1490215607636-Duos_07.png","duration":361,"publication_date":"2017-03-22T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-5-a7gh3i","changefreq":"weekly","video":[{"title":"2017:E5 - KING OF THE MONSTERS? - #5","description":"Kong Skull Island is supposed to be the return of the great monster movies. But did they ever leave? Jon, Tyler & Andy debate over the top 10 monster films of all time and reminisce over some of the weirdest monsters ever. This episode is sponsored by Dollar Shave Club (http://bit.ly/2mK6d3F)","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-5-a7gh3i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb3402eb-ceb5-45d1-a6bb-541ca4bd186c/sm/2013912-1490197640364-ets_s01e05.jpg","duration":3181,"publication_date":"2017-03-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-420-post-show-niaq69","changefreq":"weekly","video":[{"title":"2017:E11 - Gus’s Emergency - Podcast #420 Post Show","description":"Join Gus Sorola, Gavin Free, Burnie Burns, Ashley Jenkins, and special guest Jessica Nigri as they discuss food poisoning, picking up grapes with your butt, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-420-post-show-niaq69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a560baf-4491-4c59-8845-4bed85ce73a4/sm/2013912-1490115308357-rtp420_-_PS_-_THUMB.jpg","duration":1021,"publication_date":"2017-03-22T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-becoming-sex-swing","changefreq":"weekly","video":[{"title":"2017:E33 - Becoming Sex Swing","description":"This is what happens when Funhaus becomes their Sex Swing characters. Bad wigs and vibrant costumes abound. Watch Sex Swing here!","player_loc":"https://roosterteeth.com/embed/rt-life-2017-becoming-sex-swing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/645c12bd-04d9-412c-8276-f935c8075adc/sm/2013912-1490043611568-SexSwing_03.png","duration":130,"publication_date":"2017-03-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-420-nia087","changefreq":"weekly","video":[{"title":"2017:E420 - Girls Don’t… Have… Wet... Dreams - #420","description":"Join Gus Sorola, Gavin Free, Burnie Burns, and special guest Jessica Nigri as they discuss Burnie and Gavin the couple, YouTube’s restricted mode, cosplaying, and more on this week's RT Podcast! This episode originally aired on March 20, 2017, sponsored by Dollar Shave Club (http://bit.ly/2mNgPlK), MeUndies (http://bit.ly/2aGm9yg), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-420-nia087","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faf4c189-42d7-495c-8eec-120c2b2b6063/sm/2013912-1490111105092-rtp420_-_THUMB.jpg","duration":5795,"publication_date":"2017-03-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-5-q983b92","changefreq":"weekly","video":[{"title":"S5:E2 - Last of Us in Real Life Featuring Funhaus","description":"Can James and Adam fight off waves of zombies while hung upside down or will they become hanging meat piñatas? Find out in this very special First Member's episode of Immersion!","player_loc":"https://roosterteeth.com/embed/immersion-season-5-q983b92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19f6cfab-59d7-442c-9fa6-3b1f310cf2af/sm/2013912-1490026107136-LastOfUsFIRST_01.png","duration":483,"publication_date":"2017-03-21T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-5-8-wvlh93f","changefreq":"weekly","video":[{"title":"S5:E1 - Last of Us in Real Life","description":"Things get topsy-turvy when our Lab Rats are hung upside down and have to fight off a horde of zombies. Will Michael and Gavin be able to work together and keep the undead at bay? Find out! \n\n                       Executive Producer        Matt HullumExecutive Producer        Burnie BurnsWriter/ Director        Blaine GibsonSupervising Producer        Will HydeHost        Burnie BurnsLab Rat        Michael JonesLab Rat        Gavin FreeProduction Coordinator        Patrick MatthewsEditor        Sarah DeuelEditor        Kody GibsonAssistant Editor        David NguyenVFX/Motion Graphics Designer        André OuellettePost-Production Producer        Allison FeldsteinSpecial Thanks     Daniel Fabelo\n\n\n\n\n\n\n\n\n\nSydney Production Crew        Producer        Lauren SimpsonCreative Director / Camera Operator        Richard de CarvalhoProduction Manager / BTS Photography        Carol JovicicDOP        Robert MortonCamera Operator / Assist.        Zac HardakerGo Pro/Camera Assist.        Louis LauData Wrangler (incl. Data Kit) / Assist.        Samuel ConnellyBTS Video        Erik MagnussonGaffer (incl. equipment)        Storm AshwoodBest Boy        Jono VoyceGrip        Kristian Bruneteau3rd Electric / Grip Assist.        Aaron AshwoodSound Recordist        Nathaniel Watkins1st AD        Pablo ZubietaMake-up Artist        Jess ZigmantasMake-up Assist.        Marie DiamanteMake-up Assist.        Stephanie LuimiereMake-up Assist.        Rebecca EnglishCostumes        Jesse LoveProduction Designer        Maryann Jacimovic (Yellow Teacup Events)\n\nArt Dept. / Production Assist.        Victor JovicicArt Dept. / Production Assist.        Chris JovicicStunt Coordinator / Safety Officer        Igor BreakenbackStunt Assistant        Warren CoultonStunt Assistant        Jesse RowlesStunt Assistant        Mike DuncanOn-Set Medics        Pink First Aid Pty LtdProduction Assist.        Nicole LouiseProduction Assist.        Charlie SomesProduction Assist.        Christopher KakolirisProduction Assist.        Harry RossProduction Assist. ","player_loc":"https://roosterteeth.com/embed/immersion-season-5-8-wvlh93f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48e452e1-b71e-4895-9589-5935cb8dda6e/sm/2267352-1489964129037-LastOfUsMain_03c.png","duration":622,"publication_date":"2017-03-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-269-a7ftj73","changefreq":"weekly","video":[{"title":"2017:E12 - Geoff Ramsey: Best Dad Ever?","description":"Geoff tells a couple stories about how it's hard to be a parent when you know you're really good at it, but aren't appreciated by your kid.\n\n\n\n\n\n\n\n\n\nAudio from Off Topic Podcast #24\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Johnathan Floyd","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-269-a7ftj73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b06e7eb3-5e05-41fe-a4ed-2233a5f97bbb/sm/2013912-1489770818961-rtaa269tn.jpg","duration":118,"publication_date":"2017-03-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-89-a7fjpg","changefreq":"weekly","video":[{"title":"S8:E9 - For the Win #89","description":"S8:E9 - For the Win #89","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-89-a7fjpg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62cc559c-e77a-4d1f-afa7-2db7753a2acb/sm/2013912-1489862671285-ots_89ps_thumb.jpg","duration":515,"publication_date":"2017-03-19T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-8","changefreq":"weekly","video":[{"title":"2017:E8 - Spicy Food Euphoria and Animal Accents - #8","description":"People have accents, do animals? And, why do we enjoy the pain of spicy foods? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by Blue Apron ( http://cook.ba/1pkkO63 )","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f92744b5-845a-4632-8b9a-c5d3387c54f9/sm/2013912-1489778814063-SOS08_-_THUMB.jpg","duration":824,"publication_date":"2017-03-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-89-fh76akg","changefreq":"weekly","video":[{"title":"S8:E89 - IS GREEN FACE RACIST? - #89","description":"On The Spot is a place for all races, religions, sexes and creeds to come together and make jokes about how to have sex like an alligator.\n\n\n\n\n\n\n\n\n\n\n\n\n\nBrought to you by MVMT Watches (http://bit.ly/2fN1Otc)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-89-fh76akg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d94800d-9b26-4e31-8535-685422515b24/sm/2013912-1489862663392-ots_89_thumb.jpg","duration":2467,"publication_date":"2017-03-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sex-swing-season-1-5-fg76jf","changefreq":"weekly","video":[{"title":"S1:E5 - Welcome to the Clam Jam - Episode 5","description":"In order to branch out to a new demographic, Max forces Sex Swing into performing at a lady's only music festival -- the aptly named \"Coochella.\" Can the boys get through the show without blowing their cover?","player_loc":"https://roosterteeth.com/embed/sex-swing-season-1-5-fg76jf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d4c609f-8999-4469-94bc-c075502f36bb/sm/2013912-1489770201512-SS_episode05_tn.jpg","duration":600,"publication_date":"2017-03-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-18-aniglk","changefreq":"weekly","video":[{"title":"2017:E18 - That's Not Anime! - #18","description":"Join Kerry, Gray, Miles, Austin, Cole, and special guest Blaine Gibson as they discuss Samurai Jack, Ghost in the Shell, the Shot of the Week Tournament Arc, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-18-aniglk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2819e8ac-37a9-4573-9ac9-10ebc4657b64/sm/2013912-1489766762905-fanservice_018.png","duration":3910,"publication_date":"2017-03-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-8","changefreq":"weekly","video":[{"title":"2017:E8 - RE7 #8 - I'm on a boat and it's 107 proof","description":"What was supposed to be a V.R. fueled scream fest has turned into a drunken rage as Kyle and Miles fight, shoot, and peg their way through the wreckage that brought Mia and Eveline to the Baker's back yard. What secrets will they find? How many shots will they take? What does it feel like to have whiskey that's 54% alcohol burn your lungs? All of that and more will be answered on this episode of Backwardz Compatible.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecbf24c5-c23e-4d79-bb65-9d8f1a8d47c1/sm/2013912-1489765801703-BC_RTTHUMB_RE7_PT8.png","duration":3862,"publication_date":"2017-03-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments66","changefreq":"weekly","video":[{"title":"2017:E66 - WE HATE MILLENNIALS? - Funhaus Comments #66","description":"When I was your age we only worried about one millennial. The millennial computer virus! Y2K! Ever heard of it?! It was gonna ruin the world! All records were going to be erased and the machines were supposed to take over! I stored a giant tub of food in my closet and everything. All you kids have to worry about is terrorism, escalating gun violence, global destabilization, and the deconstruction of western democracy.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/stevensuptic\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0bcf25c-9101-43dc-bb5e-bbb424128398/sm/2371242-1492047002899-FH_Thumb_Templatecomments66.png","duration":548,"publication_date":"2017-04-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-dnd24","changefreq":"weekly","video":[{"title":"S3:E24 - Funhaus Dungeons and Dragons - Episode 24","description":"In which Horse Lords are summoned, an inconsequential kingdom falls, a bevy of horrible puns are spoken, and old enemies return seeking help.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-dnd24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ad43dc-0d1f-4a0b-926e-b47b00bbc0ed/sm/2371242-1492039868377-Twits_and_Crits_Logo24.png","duration":3994,"publication_date":"2017-04-13T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ghost-recon-no-hud","changefreq":"weekly","video":[{"title":"2017:E95 - NO HUD, NO PROBLEM - Ghost Recon Wildlands Gameplay","description":"Thank you Ubisoft for sponsoring this video! Click the link below to check out the game for yourself:\n\nhttp://ubi.li/f8k7v\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYou know that song that was jammed into the special editions of Return of the Jedi? The one with the crappy new CG dance number? Do you know what it was called? \"Jedi Rocks\". Jedi. Rocks. God, I hate you, George Lucas.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ghost-recon-no-hud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f86e117-3d11-41df-be91-5fda02af7e83/sm/2371242-1492042248076-FH_Thumb_15_copy_10.jpg","duration":921,"publication_date":"2017-04-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-buf-too","changefreq":"weekly","video":[{"title":"2017:E92 - SMOOTH CRIMINALS - GTA 5 Gameplay","description":"\"Ahm puttin' this whole town in my reah-view!\"\"Lawrence, why are you talking like that?\"\"Tawkin' like whut? Hee-hee.\"\"Did you bite your tongue or something?\"\"Heh, yah know, like 'The Town'? Cuzza thuh ahmud khaz in the game?\"\"The what? Are we gonna play GTA or-\"\"Yaw wickid queah. Go Sawx!\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-buf-too","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae740b46-248b-43b9-b037-a36fad65d3e6/sm/2371242-1491937897723-FH_Thumb_15_copy_28.jpg","duration":845,"publication_date":"2017-04-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-old-stupid","changefreq":"weekly","video":[{"title":"2017:E91 - OLD AND STUPID AND SAD - GTA 5 Gameplay","description":"This week on \"Funhaus: The College Years\", The jocks over at Sigma Theta Phi fill the Funhaus boys dorm room with dirty jock straps and old Playgirls, so Lawrence devises an ingenious prank to get them back, then cries a lot, turns on Robotech, forgets the plan, and falls asleep with his hand inside a bag of off-brand Doritos.\n\n\n\n\n\n\n\n\n\n\n\n\n\nSPAGHETTI JUNCTION (r3.0) - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/2vyzyYh_j0qaz6QunxiwXg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-old-stupid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4e6a27a-9840-4a61-9154-e2ffa909bbfd/sm/2371242-1491935474804-FH_Thumb_15_copy_27.jpg","duration":590,"publication_date":"2017-04-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow117","changefreq":"weekly","video":[{"title":"2017:E117 - WE ARE JOBBERS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd43e3d2-d72a-4f97-ae28-683d62b16ced/sm/2371242-1491870492116-DS_PostShow_Template_117.png","duration":3798,"publication_date":"2017-04-11T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude-soup-podcast-117","changefreq":"weekly","video":[{"title":"2017:E117 - FUNHAUS GOING BROKE? no. - Dude Soup Podcast #117","description":"Get $20 off your Black Tux purchase by going to http://www.theblacktux.com/soup.And get your first three meals free, with free shipping, by going to http://www.blueapron.com/soup.\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the gang chats about the recent changes to YouTube and how it could impact online content as well as:24:50 - The upcoming Let's Play Live Tour32:00 - Morrissey (for some reason)44:30 - Our newest feature: \"The Comment Hole\"50:15 - Hard Nettin'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGet tickets for Let's Play Live at http://www.roosterteethlive.com.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude-soup-podcast-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2553750-6195-4a9d-b285-17e4abb1adbc/sm/2371242-1491933642789-FH_Thumb_15_copy_31.jpg","duration":3641,"publication_date":"2017-04-11T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh112","changefreq":"weekly","video":[{"title":"2017:E112 - ROOSTER TEETH WRESTLEMANIA? - Open Haus #112","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nI used to spend my spring breaks babysitting my younger cousins for almost no money. Their friends would bully me about my ponytail and man-boobs before riding off on their roller-blades to smoke spent cigarette butts behind the Circle-K. But I guess Cancun is cool too.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f70a77a-e343-407c-872b-ce06aaf03cbb/sm/2371242-1491615645396-Openhaus_Thumbnail112_1.jpg","duration":769,"publication_date":"2017-04-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-episode","changefreq":"weekly","video":[{"title":"2017:E111 - BLUE DRAGONBALL - Demo Disk Gameplay","description":"Piercing the shining clouds, I fly away (fly away),\n\nWhile a panorama spreads through my body.Kicked in the face, the Earth gets angry (gets angry),And makes a volcano explode!\n\n\n\n\n\nWithin the melted polar ice, If there’s a dinosaur, I want to train it to balance on a ball!\n\n\n\n\n\nCHA-LA HEAD-CHA-LANo matter what happens, I feel like it’s no big deal!CHA-LA HEAD CHA-LAJust as loudly as my heart pounds,The Genki-Dama roars...Sparking!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/stevensuptic\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe8f3e7-21b6-48ff-af86-806f9f7807b5/sm/2371242-1491616908781-FH_Thumb_15_copy_29.jpg","duration":958,"publication_date":"2017-04-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-gta-5-boy-kissers-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E14 - GTA 5 Boy Kissers Gameplay","description":"If you've ever wanted to spend an hour learning about poor Jacob's personal life, look no further than this extra revealing Fullhaus episode.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-gta-5-boy-kissers-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7988db5-cd8e-42d8-9ff8-5fd350175e81/sm/1533704-1491521387854-Fullhaus_Thumbnail_Boy_Kissers.jpg","duration":4213,"publication_date":"2017-04-08T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ga-battle","changefreq":"weekly","video":[{"title":"2017:E89 - NEVER STOP RUNNING - Battlegrounds Gameplay","description":"salty (adj)[sawl-tee]The act of being upset, angry, or bitter as result of being made fun of or embarrassed. Also a characteristic of a person who feels out of place or is feeling attacked.(e.g.) Every damn minute of this video.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/craigskitzhttp://twitter.com/shaunbolen\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ga-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bacc1d3-a9a1-46a5-96f7-11805d896627/sm/2371242-1491582167106-FH_Thumb_15_copy_22.jpg","duration":807,"publication_date":"2017-04-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-deeper-2","changefreq":"weekly","video":[{"title":"2017:E90 - IN TOO DEEP - We Need to Go Deeper Gameplay Part 2","description":"Trust me, you haven't lived until you've seen cartoon cut-outs of Black Mark Twain and White Captain Nemo have a make-up cuddle session on a twin bed in a submarine being attacked by eldritch horrors.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-deeper-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/713e6df0-be48-4d32-9c21-3635aa73506d/sm/2371242-1491581662157-FH_Thumb_15_copy_23.jpg","duration":799,"publication_date":"2017-04-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sword-w-sauce","changefreq":"weekly","video":[{"title":"2017:E86 - ANIME IRL - Sword With Sauce Gameplay","description":"\"You should be proud. You have spent the past seven years honing your body and mind to near perfection. You have found peace through meditation and learned the ancient arts of your ninja ancestors. Go forth. Bring justice and wisdom to this world. Oh, and don't forget to grab a machine gun and Captain america shield on the way out.\"\n\n\n\n\n\n\n\nThumbnail photo by:>http://johawna.deviantart.com/art/Ninja-III-179215197\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sword-w-sauce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd45889b-5a72-40d9-9b92-37c1ba13b4e7/sm/2371242-1491501946163-FH_Thumb_15_copy_13.jpg","duration":1260,"publication_date":"2017-04-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwe5","changefreq":"weekly","video":[{"title":"2017:E87 - MAN VS GOD - WWE 2k17 Gameplay","description":"Rest in peace Randy Mario Poffo, AKA Randy \"Macho Man\" Savage. World Champion wrestler, processed meat salesman, and tassel aficionado. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwe5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2cae2a8-cf01-4e21-af33-cfda5aea298f/sm/2371242-1491500159358-FH_Thumb_15_copy_20.jpg","duration":1175,"publication_date":"2017-04-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017","changefreq":"weekly","video":[{"title":"2017:E65 - WE NEED A PATREON? - Funhaus Comments #65","description":"Even if you bought Peake a mansion in the hills and stocked his closet full of tuxedos, he'd still spend every day in his old flannel jacket, eating beans out of a can in front of a tire fire in his exquisitely manicured backyard.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05ada355-9626-4e43-85b1-831605c9a5cb/sm/2371242-1491437499720-comments65thumb.png","duration":603,"publication_date":"2017-04-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-tnt-23","changefreq":"weekly","video":[{"title":"S3:E23 - Funhaus Dungeons and Dragons - Episode 23","description":"In which Racsan makes a new friend, Chauncy reveals many secrets, a new darkness arises, and Decker struggles with his bluest of balls.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\nBuy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-tnt-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d814e0d0-9746-407c-809c-9451d263f848/sm/2371242-1491440894530-Twits_and_Crits_Logo23.png","duration":3169,"publication_date":"2017-04-06T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-guts-n-glory","changefreq":"weekly","video":[{"title":"2017:E83 - DEAD END - Guts and Glory Gameplay","description":"Who among us doesn't have a story about a youth pastor who lied to a Hot Topic clerk to help us get our ears pierced then had to be transferred to a new parish under mysterious circumstances? Right? Will you excuse me, I'm gonna go take a shower for the next three hours.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-guts-n-glory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13cf4dca-d0ca-4604-a0a4-ef4039978a4b/sm/2371242-1491435054147-FH_Thumb_15_copy_11.jpg","duration":965,"publication_date":"2017-04-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-buff-is-back","changefreq":"weekly","video":[{"title":"2017:E84 - SALTY SEAMAN - GTA 5 Gameplay","description":"Please don't fight, boys. You know how it upsets your editors when you fight. Omar won't stop crying and poor little Jacob has wedged himself under the couch again. I had to push his dinner under there with a broom handle.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-buff-is-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75b92e3f-9e36-4d7f-91cb-d06f57bf9574/sm/2371242-1491350265244-FH_Thumb_15_copy_16.jpg","duration":1046,"publication_date":"2017-04-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtadragon","changefreq":"weekly","video":[{"title":"2017:E88 - KUNG FOOLS - GTA 5 Gameplay","description":"We'll be right back with the stunning conclusion of \"Legend of the Shadow Master's Dragon Blade\"! Coming up next: \"Fist of the Legendary Dragon Master\" followed by \"Master Fister's Shadowy Ninja Dragon Legend\"!\n\n\n\n\n\n\n\n\n\nStunt - Gauntlet - https://socialclub.rockstargames.com/games/gtav/jobs/job/-DkdoRcQK0SZ04rrxvOjlA#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtadragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99d3d501-511a-46f6-a14a-694dd6a8690d/sm/2371242-1491355476805-FH_Thumb_15_copy_21.jpg","duration":608,"publication_date":"2017-04-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow116","changefreq":"weekly","video":[{"title":"2017:E116 - WE ARE... UH... I HAVE NO IDEA.","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e1951d6-0b3e-4387-aa79-720088e1c02a/sm/2371242-1491266417978-postshow116.png","duration":3901,"publication_date":"2017-04-04T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup116","changefreq":"weekly","video":[{"title":"2017:E116 - H3H3 SCREWED UP? - Dude Soup Podcast #116","description":"Get a free 30 day Beach Body membership by texting \"Dude\" to 303030!And get 15% off your MVMT watch order with free shipping and free returns by going to http://www.mvmtwatches.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday Steven Suptic joins the boys to tackle the H3H3 controversy as well as:38:30 - A world without SourceFed53:00 - An all new round of Hard Nettin'58:00 - Funhaus Wrestling!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThanks to Steven Suptic for joining us! Check his channel out: https://www.youtube.com/user/mlgHwnT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/stevensuptic\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea811e03-1071-4e1f-a460-4f823febfed7/sm/2371242-1491326758589-FH_Thumb_15_copy_18.jpg","duration":4122,"publication_date":"2017-04-04T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh111","changefreq":"weekly","video":[{"title":"2017:E111 - WE SEX ALIENS? - Open Haus #111","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nDear Mr. Sonntag,While we appreciate your continued interest in joining our development team, we must remind you, once again, that our company has a strict No Inter-species Full Penetration policy for all of our games. Also, one of our executives was fired by HR after unknowingly opening the envelope containing your crudely drawn, yet highly graphic, storyboards in front of her staff. Any future submissions will be turned over, unopened, to the proper authorities.Sincerely, Electronic Arts Inc. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttps://twitter.com/burnie\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71596b0-5973-4083-b7eb-ea7c546758b4/sm/2371242-1491005699641-Openhaus_Thumbnail111.jpg","duration":688,"publication_date":"2017-04-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-dd110","changefreq":"weekly","video":[{"title":"2017:E110 - THE DEEP WEB - Demo Disk Gameplay","description":"Sick flow, Elyse! Not since Len conquered the summer of 1999 with their infectious hit \"Steal My Sunshine\" has a white, middle-class, Canadian rapper appropriated African-American culture so shamelessly.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-dd110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47d51ef6-5835-459d-a759-72c3719d7e77/sm/2371242-1491011594512-FH_Thumb_15_copy_17.jpg","duration":851,"publication_date":"2017-04-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-mass-effect-andromeda-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E13 - Mass Effect Andromeda Gameplay","description":"Trust me when I say that watching an unedited hour of Mass Effect: Andromeda gameplay feels like a 600 year journey in to another galaxy.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-mass-effect-andromeda-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35cc9b2c-bed0-4ad9-9144-91992a531f83/sm/1533704-1491002338968-Fullhaus_Thumbnail_Mass_Effect.jpg","duration":4377,"publication_date":"2017-04-01T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-deeper-pt1","changefreq":"weekly","video":[{"title":"2017:E81 - GIANT ENEMY CRAB - We Need to Go Deeper Gameplay Part 1","description":"\"Excuse me, Mr. Cameron, if you're ready we're all set to start shooting Avatar 2 today.\"\"Cool! Let's do it!\"\"Uh.. we kinda need you to hop out of that miniature submarine first.\"\"Never! I have to find Rose's treasured necklace before Bill Paxton gets to it first! Beep-boop-boop! Wooosh! Pew-pew!\"\"I wouldn't worry about that sir.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-deeper-pt1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16261808-1f25-455c-a747-c72d64961538/sm/2371242-1490919060273-FH_Thumb_15_copy_5.jpg","duration":834,"publication_date":"2017-04-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-3","changefreq":"weekly","video":[{"title":"2017:E80 - THE LION KING in GTA 5! Mod Gameplay!","description":"Being the two kids who weren't Jonathan Taylor Thomas on \"Home Improvement\" must have been pretty rough. Just sitting there, dutifully learning their lines and combing their middle parts. Meanwhile JTT is blasting PAs two at a time and snorting blow off of Heidi the Tool Girl's thigh.    \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6feee145-5992-4243-8c94-0a68547eccf2/sm/2371242-1490912257437-FH_Thumb_15_copy_9.jpg","duration":618,"publication_date":"2017-04-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-trailer-2","changefreq":"weekly","video":[{"title":"2017:E79 - PAUL WALKERSAURUS - Trailer Show","description":"Denise Richards met and fell in love with Charlie Sheen on the set of the film \"Good Advice\". Seems like she could have used a little of that before she decided to date Charlie, right guys? Boom! Get it? It's funny because he emotionally abused her.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/burnie\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-trailer-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fe0ce05-9504-4b0a-bbc3-3eb22304da73/sm/2371242-1490897626660-Trailer_Show_Thumbv5.png","duration":963,"publication_date":"2017-03-31T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-racist","changefreq":"weekly","video":[{"title":"2017:E9 - WHY IS HOLLYWOOD RACIST? - Movie Podcast","description":"This movie podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com and get 20% off using promo code “filmhaus”.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFriend of the show and actual real-life minority Rahul Kohli drops by to talk about Ghost in the Shell, white-washing in Hollywood, and his hopeful vision for the future of diversity in entertainment. Also, Elyse says some stuff about women or whatever.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n>https://itunes.apple.com/us/podcast/filmhaus-podcast/id1195978256?mt=2\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhttps://play.google.com/music/listen?u=1&pageId=102780502325951638702#/ps/Ic24v4be3tpgwqfd6hbrdxji4ty\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/rahulkohli13\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-racist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cbfd3af-ede1-4d8b-849e-a1b2160f2a6e/sm/2371242-1490834866775-FH_Thumb_15_copy_7.jpg","duration":2349,"publication_date":"2017-03-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-64","changefreq":"weekly","video":[{"title":"2017:E64 - FUNHAUS STUNT SHOW?! - Funhaus Comments #64","description":"Don't worry everybody. We'll never again try to burden you with quality animated entertainment delivered free of charge to your YouTube feeds for you to choose to enjoy or not at your convenience. We apologize.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4df864f-d498-4b4a-b140-50fa0f4940ce/sm/2371242-1490828439639-FH_Thumb_Template64_1.jpg","duration":460,"publication_date":"2017-03-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-funhaus-dungeons-and-dragons-episode-22","changefreq":"weekly","video":[{"title":"S3:E22 - Funhaus Dungeons and Dragons - Episode 22","description":"In which the newly formed orc alliance finds itself on shaky ground, pretty much everybody gets drunk, Dirik fights for control of his army, and Miri gets oddly racist.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-funhaus-dungeons-and-dragons-episode-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68367d8a-8adf-4a18-8b6e-1637a7a25ddc/sm/2371242-1490836700390-Twits_and_Crits_Logo22.png","duration":3920,"publication_date":"2017-03-30T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-andro","changefreq":"weekly","video":[{"title":"2017:E78 - MOST REALISTIC GAME EVER - Mass Effect: Andromeda Gameplay","description":"You guys know that porn still exists, right? It's right there on the internet. Like, a lot of it. You all don't have to play through 3 hours of space opera to just see some poorly rendered aliens dry hump.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-andro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b789ad9-12c6-488d-a145-cbf250ec70b9/sm/2371242-1490718721033-FH_Thumb_15_copy_1.jpg","duration":1007,"publication_date":"2017-03-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaend","changefreq":"weekly","video":[{"title":"2017:E77 - DROP IT LIKE IT'S HOT - GTA 5 Gameplay","description":"\"Mr Myers, we're in serious trouble! The movie is twenty minutes too short and writers have stormed off the set!\"Writers. Feh! Do you still have that fart noise tape I made you?\"\"Yes but-\"\"Good. Now fetch me a fat-suit and a kilt and get the f**k out of my way.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/600b8105-8ab4-495e-84f3-722b7b525858/sm/2371242-1490653270722-FH_Thumb_15_copy.jpg","duration":800,"publication_date":"2017-03-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtasky","changefreq":"weekly","video":[{"title":"2017:E82 - SUICIDE BOMBERS - GTA 5 Gameplay","description":"We've all been bullied, right guys? I mean, I'm sure that as a high school sophomore each and every one of us fellas almost had their ponytail cut off by a freshman in the middle of class. And then that same freshman pimp-slapped us all across the face when we attempted to fight back. It's such a cliche. Right? Don't look at me. \n\n\n\n\n\n\n\n\n\nSky Bash: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/jkFS95OLtkqrd7VydTpcew#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/_JacobFullerton\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtasky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/484cf8fe-9bef-4cbf-b545-e95232e6bc93/sm/2371242-1490737094830-FH_Thumb_Template_Skybash_1.jpg","duration":594,"publication_date":"2017-03-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow115","changefreq":"weekly","video":[{"title":"2017:E115 - WE ARE CONSENTING ADULTS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ebf233f-cab1-46a8-b177-b0fa23e6a965/sm/2371242-1490656269276-DS_PostShow_Template115.png","duration":3797,"publication_date":"2017-03-28T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup115","changefreq":"weekly","video":[{"title":"2017:E115 - YOUTUBE FUNDING TERRORISM? - Dude Soup Podcast #115","description":"Check out this week’s Blue Apron menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/soup \n\nAnd to get $20 off your Black Tux purchase, visit http://www.theblacktux.com/soup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the fellas and Elyse tackle YouTube's new restricted mode as well as:18:20 - YouTube advertisers potentially fleeing.48:35 - Destiny 2 announcement.50:00 - Larr in stunt school!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/892f29ae-4f76-4c28-867d-42a4cdc26b2e/sm/2371242-1490728506532-FH_Thumb_15_copy_4.jpg","duration":3949,"publication_date":"2017-03-28T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh110","changefreq":"weekly","video":[{"title":"2017:E110 - WE SWEAR OFF SEX? - Open Haus #110","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWishing Lawrence a fun and safe spring break at stunt school, where he is no doubt currently lying unconscious covered in Jäger puke on a pile of shattered breakaway chairs.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5b40810-5a18-4701-8f27-d9eafe66cc83/sm/2371242-1490399916519-Openhaus_Thumbnail110.jpg","duration":582,"publication_date":"2017-03-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo-109","changefreq":"weekly","video":[{"title":"2017:E109 - METAL SLUT - Demo Disk Gameplay","description":"\"Okay Bing... where is the nearest pizza place?... Bing?... Bing, where is the nearest pizza place? Bing?! Bing, are you alright?! Bing! Why won't you answer me? Everybody, please, there's something wrong with Bing! Honey, quick, check on all of our Zunes!\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58879401-5e31-4d3f-b223-0e200f28efad/sm/2371242-1490414174586-FH_Thumb_Template6.jpg","duration":1085,"publication_date":"2017-03-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-fast-rmx-bomberman-r-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E12 - Fast RMX & Bomberman R Gameplay","description":"I'm gonna be honest, \"and 10 minutes of Switch setup\" made the title a bit too long, so I'm just letting you know right here.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-fast-rmx-bomberman-r-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a397c23-7a91-4ab5-bd33-2c216192bbd4/sm/1533704-1490387391391-Fullhaus_Thumbnail_Switch.jpg","duration":2609,"publication_date":"2017-03-25T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-fur-fun","changefreq":"weekly","video":[{"title":"2017:E75 - DROWNING IN PUSS - Fur Fun Gameplay","description":"For all you people out there who think that cats are better than dogs, I have two questions for you: How does it feel to be so completely wrong about this and when did you stop appreciating the good in this world? Have fun with your toxoplasmosis!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/sirlarrhttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-fur-fun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c4a5df3-204b-4728-9942-d3b8c8ccee53/sm/2371242-1490299825225-FH_Thumb_15_copy_45.jpg","duration":976,"publication_date":"2017-03-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-google-burn","changefreq":"weekly","video":[{"title":"2017:E76 - RACISM VS JONTRON - Google Trends Show","description":"The big man himself, Burnie Burns drops by for a racism themed episode of the Google Trends Show! We originally had a different topic picked out but we just could not get Burnie to stop screaming the N-word around the office so we figured it would save us some time.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/burnie\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-google-burn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60cc3d41-ff38-4da8-869f-c41c91506277/sm/2371242-1490292860374-FH_Thumb_15_copy_48.jpg","duration":1544,"publication_date":"2017-03-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bigfoot","changefreq":"weekly","video":[{"title":"2017:E74 - FOOT FETISH - Finding Bigfoot Gameplay","description":"You couldn't just be satisfied with the movie, could you?! You really needed that \"Harry and the Hendersons\" syndicated TV series! Fine! I hope you're happy because the strain of climbing into that suit every day for your amusement killed the man who played Harry by the end of the first season. Well... that and AIDS. But still!  \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bigfoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d2e6af5-bf5d-4ee9-9629-716da8fdc6f9/sm/2371242-1490226195364-FH_Thumb_15_copy_46.jpg","duration":996,"publication_date":"2017-03-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-63","changefreq":"weekly","video":[{"title":"2017:E63 - WE LOVE NIPPLES? - Funhaus Comments #63","description":"Did you know that the small bumps on areolae are called Montgomery glands, and that they produce a natural oil that cleans, lubricates, and protects the nipple during pregnancy and breastfeeding? This oil also contains an enzyme that kills bacteria and makes breast creams unnecessary. Huh.Breasts: Not just for masturbating to anymore.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03d88947-9111-4c68-b95a-36377e637c97/sm/2371242-1490213886483-FH_Thumb_Template63.jpg","duration":587,"publication_date":"2017-03-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-3-tnc-dnd-31","changefreq":"weekly","video":[{"title":"S3:E21 - Funhaus Dungeons and Dragons - Episode 21","description":"Last time, on Twits & Crits, our noble band of adventurers made their way to the western holdfast to rendezvous with Captain Aegis Sniller and collect the reward bounty placed upon the hideous heads of the fugitive Moondog Brothers. Sniller offered the group additional payment to stay and fight the approaching orc army.\n\nTwo hundred and fifty gold pieces proved a convincing sum, and the group agreed to extend the contract, as willing mercenaries. All relished in their newfound wealth, except for Miri, who received a considerably lesser sum of one hundred and fifty gold pieces, much to his chagrin. For the young halfling Grimo, the companionship of brave war horse Chauncey was payment enough.\n\n\n\n\n\n\n\n\n\n\n\nAs the army advanced and the sun set upon our heroes, the very cool Decker procured his metallic wizardry tablet and soothed the tired warriors with a “sweet midi tune.”\n\n\n\n\n\n\n\n\n\n\n\nNow the army approaches and our heroes prepare for one of the most dangerous encounters of their lives...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttps://twitter.com/filmDstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-3-tnc-dnd-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dce55cbe-46e1-46d2-919b-7fb7f204cefd/sm/2371242-1490207529319-Twits_and_Crits_Logo21.png","duration":3727,"publication_date":"2017-03-23T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-drunk-bomber","changefreq":"weekly","video":[{"title":"2017:E72 - GETTIN' BOMBED - Drunk Super Bomberman R Gameplay","description":"This is us right in that sweet spot. Just tipsy enough to be silly and a little cranky, but well before the rambling drunken insanity of Talkin' Stalkins. Watch this space. It's coming.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/_jacobfullertonhttp://twitter.com/omarcitohttps://twitter.com/real_rtboneshttps://twitter.com/jonsmiff\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-drunk-bomber","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c1602c6-7d45-4388-a081-6f208765493f/sm/2371242-1490211008373-FH_Thumb_15_copy_47.jpg","duration":561,"publication_date":"2017-03-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaheli","changefreq":"weekly","video":[{"title":"2017:E71 - LIVE DIE REPEAT - GTA 5 Gameplay","description":"It finally happened. The guys have simply gotten TOO good at GTA. They'll be off to the pro circuit any time now. So long Funhaus channel. Sh*t. I gotta go type up my resume. Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaheli","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0387e800-4c64-4f79-956f-feba713221ee/sm/2371242-1490129351859-FH_Thumb_15_copy_42.jpg","duration":872,"publication_date":"2017-03-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaboykiss","changefreq":"weekly","video":[{"title":"2017:E73 - HOW TO KISS BOYS - GTA 5 Gameplay","description":"Have you ever wished that you could just sit back, relax, and learn all about the silly, mixed up, sometimes heartbreaking life of Funhaus' own Jacob Fullerton? Me neither, but here you go anyway.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRuiner 2000 - Night Ride: https://socialclub.rockstargames.com/games/gtav/jobs/job/kyMIMs7vykO8A4W5eFlqGg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/_JacobFullerton\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaboykiss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c68b6b93-cfa1-45ed-8b94-31ec4938c4c1/sm/2371242-1490142548955-FH_Thumb_15_copy_43.jpg","duration":690,"publication_date":"2017-03-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow114","changefreq":"weekly","video":[{"title":"2017:E114 - WE ARE NAUGHTY BOYS","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n>;https://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f46d02b7-9806-467d-848e-1615b6c1ae99/sm/2371242-1490050437777-ps114thumb.png","duration":3587,"publication_date":"2017-03-21T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup114","changefreq":"weekly","video":[{"title":"2017:E114 - JONTRON VS THE WORLD - Dude Soup Podcast #114","description":"Dude Soup is sponsored by Mack Weldon and Dollar Shave Club. Get 20% off Mack Weldon by going to http://www.mackweldon.com and using promo code \"soup\".\n\nFor Dollar Shave Club, start your $1 trial at http://www.dollarshaveclub.com/dude. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhile Lawrence is busy getting tossed out of windows or something, the rest of the boys and Elyse tackle Jontron's little dip into the world of political commentary. Also, we have a new, extra creepy installment of Hard Nettin'! Seriously, put that hoagie down. This one gets real weird.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc044f7f-34f9-40d7-995d-c931d4cbbdba/sm/2371242-1490050822729-FH_Thumb_15_copy_41.jpg","duration":3784,"publication_date":"2017-03-21T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh109","changefreq":"weekly","video":[{"title":"2017:E109 - FUNHAUS PYRAMID SCHEME? - Open Haus #109","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nGosh, Burnie sure is funny, right guys? Man oh man. Pretty easy on the eyes, too! Boy, I bet he's hung like a god-damn rhino! But, you know, like a really gentle and considerate lover too. Yup. Sure is nice having him out here in LA. Yessiree.... Is he gone?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttps://twitter.com/burnie\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88724ab3-6d37-4abf-90cc-43bd48b4f6dc/sm/2371242-1489798816527-Openhaus_Thumbnail109.jpg","duration":636,"publication_date":"2017-03-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo-108","changefreq":"weekly","video":[{"title":"2017:E108 - ADAM'S MAGIC WAND - Demo Disk Gameplay","description":"There's a certain Rule 34 artist out there. You know who you are. You have simultaneously sickened, delighted, and impressed all of us this week. Hats off to you and your unnerving attention to detail. You are truly gifted. Now knock it the f**k off.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb4d1737-4e91-426a-9509-3416afffaf52/sm/2371242-1489801311849-FH_Thumb_15_copy_40.jpg","duration":997,"publication_date":"2017-03-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-grand-theft-auto-v-bones-throne-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E11 - GTA 5 BonesThrone Gameplay","description":"All kneel before King Bones upon his Bones Throne. You shall continue to genuflect for the next hour and narry a minute less!","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-grand-theft-auto-v-bones-throne-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df1958d5-83d8-426f-adf0-f546a35ece49/sm/1533704-1489799171710-Fullhaus_Thumbnail_Bonesthrone.jpg","duration":4095,"publication_date":"2017-03-18T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-orcs","changefreq":"weekly","video":[{"title":"2017:E70 - SEXY SLAUGHTER - Orcs Must Die! Unchained Gameplay","description":">https://roosterteeth.com/first/double-goldClick the link above to get the game AND exclusive Sex Swing skins in this month's Rooster Teeth First Double Gold Box! Jeez, with a name that long it's GOTTA be full of good stuff!\n\n\n\nEXT. MIDDLE EARTH - DAY\n\nTOM: \"Hey dol! merry dol! ring a dong dillo!Ring a dong! hop along! Fal lal the willow!Tom Bom, jolly Tom, Tom Bombadillo!\"\n\n\n\nFRODO(shrugging, speaking to camera):\"For this I went to Mordor?\"\n\n\n\nFREEZE FRAME, ROLL CREDITS\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-orcs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daa3e815-5513-45ce-8bda-1d9fab43ad0e/sm/2371242-1489620668467-FH_Thumb_15_copy_27.jpg","duration":606,"publication_date":"2017-03-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-akg3","changefreq":"weekly","video":[{"title":"2017:E69 - DEEP IN A NAZI HOLE - Alekhine's Gun Gameplay Part 2","description":"*(sits down at computer, cracks knuckles, tries to think of something cute and funny about Nazi scientists, only thing that comes to mind is something vague about Bruce and \"gas\", throws computer out of window, stares in silence at nothing in particular for rest of shift)*\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-akg3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ae64472-9be4-4ca9-9ff5-eab1120ba93a/sm/2371242-1489618496598-FH_Thumb_15_copy_30.jpg","duration":817,"publication_date":"2017-03-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhaus-logan","changefreq":"weekly","video":[{"title":"2017:E8 - LOGAN REVIEW - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nToday, the fellas and Elyse tackle this neat little indie flick called Logan. It's some kind of heartwarming journey into the heart of the American soul or the power of love or something. I don't know. I never heard of it.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhaus-logan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6fc6b9d-e1b2-462e-9934-990ea907d703/sm/2371242-1489697153310-FH_Thumb_15_copy_34.jpg","duration":1881,"publication_date":"2017-03-17T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-bestoffeb","changefreq":"weekly","video":[{"title":"2017:E66 - BEST OF JUMP SCARES - Best of Funhaus February 2017","description":"By reading this description you are hereby legally obligated to watch each of the videos listed below in their entirety as well as clicking on all attached  links and advertisements. In addition, you are now bound by CA Consumption Code 3481D to purchase any and all products shown or spoken about within said advertisements, regardless of cost, local ordinances, or lack of interest. Enjoy the hilarity. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattpeake\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-bestoffeb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ffedbc6-ab6f-478f-a4a0-314cf6b532ab/sm/2371242-1489611550361-February.jpg","duration":795,"publication_date":"2017-03-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-62","changefreq":"weekly","video":[{"title":"2017:E11 - WE HIRED WHO?! - Funhaus Comments #62","description":"The hardest part of editing this video was finding an image of Blaine online where he wasn't either flexing, shirtless, or both. The second hardest part? Trying not to fall in love.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3e75b5c-4e5c-456b-a312-2df9ac2e59b4/sm/2371242-1489601179680-FH_Thumb_Template62.jpg","duration":495,"publication_date":"2017-03-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-jalopy","changefreq":"weekly","video":[{"title":"2017:E67 - MY RUSSIAN CAR - Jalopy Gameplay","description":"Did you know that in Russia it is legal to keep a properly embalmed deceased relative propped up in your house for up to one year? During this time, friends and family typically lay gifts of vodka and dried deer meat at the body's feet. This practice is traditionally thought to help grieving family members work through the loss of their loved one. The strangest part of this tradition is that none of it is true but most of you probably believed it anyway because that's how f*cked up Russia is.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-jalopy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e90de70c-b430-4e10-8765-fe88326ec0f6/sm/2371242-1489600101171-FH_Thumb_15_copy_26.jpg","duration":937,"publication_date":"2017-03-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-yaght","changefreq":"weekly","video":[{"title":"2017:E68 - BOATS 'N HOES - GTA 5 Gameplay","description":"I don't care what all those old rap videos told you. Only sixty percent of women out there will let you randomly pour champagne on their breasts in public. Sixty-five, tops.  Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-yaght","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04212020-8e33-4a51-acc4-e3b9703f930c/sm/2371242-1489598138729-FH_Thumb_15_copy_33.jpg","duration":833,"publication_date":"2017-03-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-bonesthrone","changefreq":"weekly","video":[{"title":"2017:E65 - RACE TO DIE - GTA 5 Gameplay","description":"It is wise to watch many seed collections by experienced handlers before you attempt it on your own. Note carefully how the handlers move around the stallion to prevent injury to him and to themselves. A stallion in the throes of passion is even more dangerous than usual. If he's injured in any way, he may refuse to mate again.Seed is often collected from stallions using an estrous or ovariectomized teaser mare. The disadvantages of this practice are that it can be dangerous for the collection team, the mare and the stallion. To protect the stallion, the mare should be hobbled to prevent kicking. An alternative to use teaser mare is to use a \"phantom\" mount - an inanimate mare look-a-like. Roughly 2 of 3 stallions can be trained to mount and be collected using a phantom. \n\n\n\n\n\n\n\n\n\nNon-Stop Avalanche V1 - https://socialclub.rockstargames.com/games/gtav/pc/jobs/?publisher=bookmarked&typeId=4#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-bonesthrone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe2d1ff3-a3a1-4eb8-8c95-8536f4afedac/sm/2371242-1489538817168-FH_Thumb_15_copy_32.jpg","duration":609,"publication_date":"2017-03-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow113","changefreq":"weekly","video":[{"title":"2017:E113 - WE ARE FRAGILE","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\n\n\n\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n>;https://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c98afa61-cc55-408d-8176-2f88a9198d38/sm/2371242-1489445639839-wea_are_fragile.png","duration":3150,"publication_date":"2017-03-14T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup113","changefreq":"weekly","video":[{"title":"2017:E113 - BURNIE JOINS FUNHAUS? - Dude Soup Podcast #113","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/soup\n\n\n\nGet your $1 trial at   http://www.dollarshaveclub.com/dude     Get a close, smooth shave every time! And you can't beat the convenience or the price of the Club!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRooster Teeth co-founder and tech enthusiast Burnie Burns joins the gang as they discuss the evolution of Funhaus, Burnie's tricked-out Tesla, and Jim Sterling's controversial 'The Legend of Zelda: Breath of the Wild' review score. Plus, sit back and enjoy a radio play worthy of an Academy Award. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/burniehttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/057042b8-b587-4ebf-9314-3734b276fb0f/sm/2371242-1489452027087-FH_Thumb_15_copy_25.jpg","duration":3756,"publication_date":"2017-03-14T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh108","changefreq":"weekly","video":[{"title":"2017:E108 - ZELDA SMELLS LIKE WHAT?! - Open Haus #108","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\"In every job that must be done, there is an element of fun. You find the fun, and - SNAP - the job's a game!\"\"But Mary Poppins, we don't want to go pick up hash from your bloody dealer again!\"\"Spit-spot, children!\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90c18456-e9d2-45fe-a79a-1b7e44cdffe0/sm/2371242-1489198535936-Openhaus_Thumbnail108.jpg","duration":691,"publication_date":"2017-03-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-ghost-recon","changefreq":"weekly","video":[{"title":"2017:E63 - BRO SQUAD - Ghost Recon Wildlands Gameplay","description":"Thank you to Ubisoft for sponsoring this video! Click on the link below to play Ghost Recon Wildlands today! \n\nhttp://ubi.li/zb7av\n\n\n\n\n\n\n\nGet ready for excitement as The Hard Twins, La Diabla and... uh Max-X mostly kill themselves and crash helicopters into things. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-ghost-recon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67051cb6-27d7-4e2b-bf7a-d67b354d7683/sm/2371242-1489109599570-FH_Thumb_15_copy_23.jpg","duration":1027,"publication_date":"2017-03-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo107","changefreq":"weekly","video":[{"title":"2017:E10 - WORLD WAR WANK - Demo Disk Gameplay","description":"Michael Ironside has beat two different types of cancer on two non-consecutive occasions. I guess we can give him a pass on Lake Placid 3 and Jett Jackson: The Movie. But that's it.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8b55174-a282-47e9-a392-c6bae6dc3c88/sm/2371242-1489197482365-FH_Thumb_15_copy_24.jpg","duration":892,"publication_date":"2017-03-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-for-honor-bot-2","changefreq":"weekly","video":[{"title":"2017:E61 - DISHONORABLE DISCHARGE - For Honor Gameplay","description":"Sorry to any of you tube-lordz out there who hoped to be the next member of Funhaus. That position has officially been filled by a bot from this gameplay. Better luck next time. We'll keep your resume on file.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-for-honor-bot-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/405a0207-c615-4ea9-9f01-118dff714292/sm/2371242-1488998141121-FH_Thumb_15_copy_20.jpg","duration":694,"publication_date":"2017-03-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-back-in-1995-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E10 - Back in 1995 Gameplay","description":"Pull your peener out of that bag of banana peels and point your peepers hither for a while, m'lady.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-back-in-1995-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c33b4d38-9652-4db5-8b4d-067a7f487ba3/sm/1533704-1489171527315-Fullhaus_Thumbnail_1995.jpg","duration":2819,"publication_date":"2017-03-11T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-1-2-drunk-drunk-nintendo-switch-gameplay","changefreq":"weekly","video":[{"title":"2017:E64 - 1-2-DRUNK - Drunk Nintendo Switch Gameplay","description":"Nobody threw up in the street. Nobody ran into a tree. Nobody got a DUI or ended up in a hearse. Weakest drunk-stream ever.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-1-2-drunk-drunk-nintendo-switch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4304461e-b27a-43e1-b8a1-79e194b54847/sm/2371242-1489112371817-FH_Thumb_15_copy_15.jpg","duration":2170,"publication_date":"2017-03-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-61","changefreq":"weekly","video":[{"title":"2017:E10 - WE LOVE FURRIES? - Funhaus Comments #61","description":"Whatever, Canada. You think you're so great with your handsome, charismatic leader and your precious heath care. Get back to us when you're a true independent state and no longer under the tyrannical thumb of the British Commonwealth of Nations! Daaaammmnnnn! Colonialism burn!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbf6a88d-0861-4eb7-a8eb-46220a06bd1c/sm/2371242-1489019889921-FH_Thumb_Template61.jpg","duration":521,"publication_date":"2017-03-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-conan","changefreq":"weekly","video":[{"title":"2017:E59 - BARBARIAN BALLS OUT - Conan Exiles Gameplay","description":"You pervos have no idea how many man-hours were spent editing, blurring, watching, re-editing, and masturbating to this work of art. You'd better god-damn enjoy it!(Potentially NSFW)\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-conan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7abb64e9-4967-419c-b256-e3f760cdf6ac/sm/2371242-1488911968318-FH_Thumb_15_copy_14.jpg","duration":1051,"publication_date":"2017-03-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-rocket","changefreq":"weekly","video":[{"title":"2017:E62 - POCKET ROCKETS - GTA 5 Gameplay","description":"\"Marty! Quick, we've got to save the future! My plan involves incest, attempted rape, and stealing credit for Rock n' Roll from the black community!\"\"... Get me my puffy vest.\" Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-rocket","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a9d2b5f-0994-49dd-b304-49e4ad966a66/sm/2371242-1488997584225-FH_Thumb_15_copy_21.jpg","duration":870,"publication_date":"2017-03-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaids","changefreq":"weekly","video":[{"title":"2017:E60 - RACE FOR AIDS - GTA 5 Gameplay","description":"\"Nick, I've tried everything: the embassy, the German government, the consulate. I even talked to the U.N. ambassador. It's no use, I just can't bring my wife to orgasm.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nRace: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/kfg2Cp2-gkiSsZ6aYXTlng#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36a16780-0427-4325-aebf-b59faf80950b/sm/2371242-1488910242972-FH_Thumb_15_copy_16.jpg","duration":690,"publication_date":"2017-03-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup112","changefreq":"weekly","video":[{"title":"2017:E112 - ZELDA: BEST GAME EVER? - Dude Soup Podcast #112","description":"This week the boys and Elyse tell lone Switch holdout Bruce all about their Zelda-filled weekends as well as details about other Switch releases and the future potential of the console! Also there's a video of a seal with a bite taken out of it.\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0dd10b2e-ad23-4c86-a2e7-c1ecd20fb8a1/sm/2371242-1488907844440-FH_Thumb_15_copy_13.jpg","duration":3854,"publication_date":"2017-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow112","changefreq":"weekly","video":[{"title":"2017:E112 - WE ARE THE BEST THERE IS","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n>;https://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8af303f1-c160-46b0-b024-0dec84e8b335/sm/2371242-1488844080623-postshow112.png","duration":2164,"publication_date":"2017-03-07T04:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-sniper-elite-4-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E9 - Sniper Elite 4 Gameplay","description":"Balls, balls, balls, a whole hour of balls!","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-sniper-elite-4-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/510c85c4-3f8f-43d5-9864-76bfa65e172b/sm/1533704-1488822995885-Fullhaus_Thumbnail_Sniper_Elite.jpg","duration":3351,"publication_date":"2017-03-06T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-open107","changefreq":"weekly","video":[{"title":"2017:E9 - WE SHOOT A PORNO? - Open Haus #107","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\nSo it's called \"porn-oh? Am I pronouncing that properly? And you say it's movies on the internet of people engaging in various sexual acts? Hmm. Someday I will have to seek out one of these films. They sound fascinating. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-open107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0d919a1-3b32-47cc-94bc-1168490fbd8f/sm/2371242-1488672961975-Openhaus_Thumbnail107.jpg","duration":726,"publication_date":"2017-03-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo106","changefreq":"weekly","video":[{"title":"2017:E9 - SLOW MO GIRLS - Demo Disk Gameplay","description":"Please send all of your XBox 360 OXM points to Funhaus, c/o bones_is_the_coolest@fh.aol.biz \n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f845117-db31-4e61-9209-653b107b1ddb/sm/2371242-1488598712806-FH_Thumb_15_copy_10.jpg","duration":894,"publication_date":"2017-03-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-forhonorbots1","changefreq":"weekly","video":[{"title":"2017:E56 - HONOR AMONG PLEBS - For Honor Gameplay","description":"Knights, Samurai, and Vikings used to fight against A.I. bots too, right? They didn't? Oh. Who cares. What am I, a historian? On to Velharlla or whatever!\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-forhonorbots1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c86eaeb-b0d8-4695-9fac-eb0ca41660e2/sm/2371242-1488476615709-FH_Thumb_15_copy_7.jpg","duration":825,"publication_date":"2017-03-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-trailertrash","changefreq":"weekly","video":[{"title":"2017:E55 - NEEDS MORE NIPPLE - Trailer Show","description":"Actually, Swamp Thing is a emotionally complex character who discards the last vestiges of his former humanity to become the earthly avatar of all plant life while fighti---aaagghh whoa jeez! Someone get all of these women off of my penis! Go bug Jacob with that sh*t. I'm working.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/bgibbles\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-trailertrash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/661f2027-708e-4e0a-9bc5-1458f89eca8a/sm/2371242-1488407129986-FH_Thumb_15_copy_2.jpg","duration":617,"publication_date":"2017-03-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-getoutoscars","changefreq":"weekly","video":[{"title":"2017:E7 - OSCARS AND RACISM - Movie Podcast","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/filmhaus\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJoin Adam and the gang as they tackle the new hit film \"Get Out\" as well as racism and sexism in cinema, this year's Oscars, and separating scummy artists from their work.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-getoutoscars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c916bb85-9724-4c78-a362-de340dc05ef7/sm/2371242-1488480219793-FH_Thumb_15_copy_9.jpg","duration":1962,"publication_date":"2017-03-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwetwin","changefreq":"weekly","video":[{"title":"2017:E54 - TWIN TOWERS RISE - WWE 2k17 Gameplay","description":"This game really makes you go out of your way to be able to beat up a woman, but don't worry, we persevered and created not one but two more dead-eyed monstrosities for you.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwetwin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6199331d-79c9-492d-812d-f64101652cf3/sm/2371242-1488404401948-FH_Thumb_15_copy_1.jpg","duration":1399,"publication_date":"2017-03-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-60","changefreq":"weekly","video":[{"title":"2017:E9 - WE INVADE YOUR DREAMS? - Funhaus Comments #60","description":"The more I get of you,The stranger it feels, yeah.And now that your rose is in bloom.A light hits the gloom on the gray.There is so much a man can tell you,So much he can say.You remain,My power, my pleasure, my pain!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4383bc6d-cb13-45a1-9ad0-caf6eee9a0e3/sm/2371242-1488398816958-FH_Thumb_Template60.jpg","duration":504,"publication_date":"2017-03-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-flash","changefreq":"weekly","video":[{"title":"2017:E58 - NINTENDO SWITCH SUCKS - Flash Games Gameplay","description":"I'm no expert, but I gotta say that with this much graphic sexual content in its game franchises, this whole Nintendo thing might just take off. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-flash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b085641-f72c-4754-85ca-f50b6ac5154b/sm/2371242-1488478446499-FH_Thumb_15_copy_8.jpg","duration":978,"publication_date":"2017-03-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtawedge","changefreq":"weekly","video":[{"title":"2017:E57 - WEDGE IT IN - GTA 5 Gameplay","description":"One of these days the boys will complete a mission without first flinging themselves to their deaths five or six times. Promise.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtawedge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08a2cb29-676b-4f6f-8c74-10ace7257035/sm/2371242-1488407886974-FH_Thumb_15_copy_6.jpg","duration":788,"publication_date":"2017-03-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-drugs","changefreq":"weekly","video":[{"title":"2017:E53 - GTA 5: THE SHOW - GTA 5 Gameplay","description":"This is the crazy sh*t that happens when you pump your editors full of DayQuil and force them to work through their illnesses.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n天長地久死斗第一章空中迷宮 - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/F-CDdwCGb0We_bu9iM3YHQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-drugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b7ae83e-44ba-4de9-84ab-39c3b68da972/sm/2371242-1488244425376-FH_Thumb_15_copy_18.jpg","duration":624,"publication_date":"2017-03-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow111","changefreq":"weekly","video":[{"title":"2017:E111 - WE ARE MEAN","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n\n\n\n\n\n\n>;https://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ff8a59b-032a-4350-8f93-313ef4fcb4e4/sm/2371242-1488242325974-mean.png","duration":3987,"publication_date":"2017-02-28T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup111","changefreq":"weekly","video":[{"title":"2017:E111 - STREAMERS SELL OUT? - Dude Soup Podcast #111","description":"Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/soup\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the gang talks about 00:00 - Twitch selling games and possible corruption in games media.35:00 - Game mods and whether their creators should be paid.47:00 - \"Hard Nettin\": Russian Gadget Cult vs Suicide Threats for Nudes \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[GI.biz] Twitch will take on Steam by selling PC games: http://www.gamesindustry.biz/articles/2017-02-27-twitch-takes-on-steam-and-enters-games-retail[PCGamer] Ark: Survival Evolved developer will pay modders $4,000 per month to complete their mods: http://www.pcgamer.com/ark-survival-evolved-developer-will-pay-modders-4000-per-month-to-complete-their-mods/[HARD NETTIN'] Dude Threatens Suicide to Extort Nudes: http://imgur.com/a/tfV4o\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddc1f1ab-2a92-4958-bb1c-623801555703/sm/2371242-1488241007899-FH_Thumb_15_copy_17.jpg","duration":3731,"publication_date":"2017-02-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-open-106","changefreq":"weekly","video":[{"title":"2017:E8 - OUR WORST INJURIES? - Open Haus #106","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\nAs a true fan of the art of puppetry, I find the sexualization of The Muppets in this week's episode very offensive. But if I had to bang one of them it would probably be that new lazy-eyed pig. Or Gonzo's chicken.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-open-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54b8c943-ec3e-4036-86f6-b49d03a7fe06/sm/2371242-1487989809954-Openhaus_Thumbnail106_2.jpg","duration":630,"publication_date":"2017-02-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo-105","changefreq":"weekly","video":[{"title":"2017:E8 - THE GOOD, THE BAD, AND THE HORNY - Demo Disk Gameplay","description":"With a very sharp knife, split the tough skin-like muscle that surrounds each testicle.  Remove the skin (you can remove the skin easily if the testicles are frozen, then peel while thawing).  Either leave whole or slice each testicle into approximately 1/4- to 1/2-inch-thick ovals.  Place slices in a large pan or blow with enough beer to cover them; cover and let sit 2 hours.In a shallow bowl, combine eggs, flour, cornmeal, salt, and pepper.Remove testicles from beer; drain and dredge thoroughly in the flour mixture.In a large, deep pot, heat oil to 375 degrees F.  Deep fry 3 minutes or until golden brown (will rise to the surface when done).  Drain on paper towels.Serve warm with your favorite hot pepper sauce.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/462dbe59-bebc-4951-aceb-ae6c1e381ea6/sm/2371242-1487992033980-FH_Thumb_15_copy_1.jpg","duration":852,"publication_date":"2017-02-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-alekhine-s-gun-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E8 - Alekhine's Gun Gameplay","description":"How many of history's big baddies can Alekhine take out in 45 minutes? Answer: One... maybe one....","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-alekhine-s-gun-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9b375d5-afb0-4321-b229-7e372d69f32b/sm/1533704-1487894846640-Alekhine_Fullhaus_Thumbnail.jpg","duration":2735,"publication_date":"2017-02-25T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-edf2","changefreq":"weekly","video":[{"title":"2017:E52 - MECH MASSACRE - Earth Defense Force 4.1 Gameplay","description":"Easter Egg Alert!: If you listen real closely, at around 21:30 as the mech suit descends from the sky, you can hear Lawrence have about 17 simultaneous orgasms.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-edf2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2c9f46e-f52e-46ae-9504-d4f1a9dd50a8/sm/2371242-1487803846940-FH_Thumb_15_copy_11.jpg","duration":1426,"publication_date":"2017-02-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-sniperballs","changefreq":"weekly","video":[{"title":"2017:E51 - BACK TO BALLS - Sniper Elite 4 Gameplay","description":"Testicular rupture is a rip or tear in the tunica albuginea resulting in extrusion of the testicular contents, including the seminiferous tubules. The main symptoms of testicular rupture are scrotal swelling and severe pain, which can make diagnosis difficult. Testicular rupture should be suspected whenever blunt trauma to the scrotum has been sustained.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-sniperballs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7401dcb1-c2b7-4c6b-a4bf-94a8775f2790/sm/2371242-1487801321796-FH_Thumb_15_copy_12.jpg","duration":1096,"publication_date":"2017-02-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-1995","changefreq":"weekly","video":[{"title":"2017:E49 - J*ZZ FROM A ROSE - Back in 1995 Gameplay","description":"Aaah 1995. That was the year I got my very first girlfriend. So what if my boobs were way bigger than hers and she cheated on me with another guy before coming out as a lesbian. It still counts.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-1995","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6579ce80-1630-4b2f-805d-a240d4fc0215/sm/2371242-1487724263307-FH_Thumb_15_copy_10.jpg","duration":699,"publication_date":"2017-02-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments59","changefreq":"weekly","video":[{"title":"2017:E8 - WE GET HARD? - Funhaus Comments #59","description":"Why do we always come hereI guess we'll never knowIt's like a kind of tortureTo have to watch the showBut now let's get things startedWhy don't you get things startedIt's time to get things startedOn the most sensational, inspirational, celebrational, commentationalThis is what we call the Comments Shoooooooowwww!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aa3d3d9-c465-4bc9-9c19-280c3e846a03/sm/1533704-1487877270453-FH_Thumb_Template59.jpg","duration":513,"publication_date":"2017-02-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astro4","changefreq":"weekly","video":[{"title":"2017:E48 - THE FINAL FRONTIER - Astroneer Gameplay Part 4","description":"Next time you want to piss all over \"Star Trek Beyond\" just remember that \"The Final Frontier\" had a hippie Vulcan cult leader, a 57 year old Uhura fan-dancing with a cat-woman, and Spock neck-pinching a horse.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astro4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d80afb8a-7ca8-42d7-baa0-c2dd607d029e/sm/2371242-1487713241820-FH_Thumb_15_copy_8.jpg","duration":662,"publication_date":"2017-02-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaxxx","changefreq":"weekly","video":[{"title":"2017:E47 - XXX STUNT SHOW - GTA 5 Gameplay","description":"A stuntman zip-lined into the side of a bridge and died during the filming of the original \"xXx\". No don't be sad, it's totally cool. They commemorate his sacrifice in the new movie in the form of a shitty tattoo on Vin's leg. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaxxx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3cba004-1f85-4c64-9950-3e5db3b3cbc1/sm/2371242-1487705639294-FH_Thumb_15_copy_7.jpg","duration":919,"publication_date":"2017-02-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-russia","changefreq":"weekly","video":[{"title":"2017:E50 - RUSSIAN TO THE FINISH - GTA 5 Gameplay","description":"And I, for one, welcome our new Russian overlords. I'd like to remind them that as a trusted internet personality I can be helpful in rounding up others to toil in their underground sugar caves.\n\n\n\n\n\n\n\n( #blick ) Головокружение - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/nUglOzCM9UKinD8Okd8-Mw#\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-russia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28600734-924a-4dfa-94f4-2c58b9286137/sm/2371242-1487784699032-FH_Thumb_15_copy_13.jpg","duration":726,"publication_date":"2017-02-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-pew-die-pie-attacked-by-m-e-d-i-a-dude-soup-podcast-110","changefreq":"weekly","video":[{"title":"2017:E110 - PewDiePie ATTACKED BY MEDIA? - Dude Soup Podcast #110","description":"Dude Soup is sponsored by Audible! Get a free audiobook with a 30 day free trial at http://www.audible.com/dudesoup.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOh boy. We gotta tackle this PewDiePie business. If you're all real nice and don't call us libtards we'll also play another round of Hard Nettin' with you! Promise.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:[Tumblr] just to clear some things up…: http://pewdie.tumblr.com/post/157160889655/just-to-clear-some-things-up#notes[YouTube] My Response: \n\n\n\n\n\n\n\n\n\n\n\n\n\n[Twitter] Pewdiepie WSJ Contact Tweet: https://twitter.com/pewdiepie/status/832655236498022401[WSJ] Disney Severs Ties With YouTube Star PewDiePie After Anti-Semitic Posts: https://www.wsj.com/articles/disney-severs-ties-with-youtube-star-pewdiepie-after-anti-semitic-posts-1487034533[Variety] Playing the Pawn in PewDiePie’s Blame Game: http://variety.com/2017/digital/opinion/playing-the-pawn-in-pewdiepies-blame-game-1201990190/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-pew-die-pie-attacked-by-m-e-d-i-a-dude-soup-podcast-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ee2102f-c749-4331-806a-d3a512865735/sm/2371242-1487383336605-FH_Thumb_15_copy.jpg","duration":4850,"publication_date":"2017-02-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-open105","changefreq":"weekly","video":[{"title":"2017:E7 - HOW TO CHEAT? - Open Haus #105","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIn honor of Black History Month, we have decided to allow Jacob, our tannest staffer, to pick any one item from the box of outdated merch collecting dust in the corner of our office.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-open105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a145644-b36d-4c08-9826-32a72e40e307/sm/2371242-1487367940947-Openhaus_Thumbnail105.jpg","duration":621,"publication_date":"2017-02-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo104","changefreq":"weekly","video":[{"title":"2017:E7 - SEXY SAFARI - Demo Disk Gameplay","description":"Y'know, it's funny. I always thought that by this age I would own a house, have a few little ones running around, and maybe a have job that didn't involve looking at cartoons of anthropomorphized animals banging each other. Study hard, kids. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35656ceb-cf23-45d2-983d-223a3feb4a6e/sm/2371242-1487384275097-FH_Thumb_15_copy_5.jpg","duration":718,"publication_date":"2017-02-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-of-misogyny-best-of-funhaus-january-2017","changefreq":"weekly","video":[{"title":"2017:E45 - BEST OF MISOGYNY - Best Of Funhaus January 2017","description":"We get it. You're busy. Whatever. Fine. Just watch these clips. We don't care. Who needs you. Jerks. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattpeake\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-of-misogyny-best-of-funhaus-january-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e2de3a9-125f-4ea6-9b24-7612ce58d8b7/sm/2371242-1487295804825-January.jpg","duration":1010,"publication_date":"2017-02-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-scorpio-held-back-by-xbox-one","changefreq":"weekly","video":[{"title":"2017:E178 - Project Scorpio HELD BACK by Xbox One?! and other conspiracies","description":"Bungie's not talking Xbox Scorpio yet, but it looks like the consoles will all be locked to 30FPS for Destiny 2, even though Scorpio should be able to handle more. Is Microsoft hamstringing their own console? Is Sony paying Bungie to make it suck on Xbox? Or is it because they're releasing a game before a platform is out? Hmmmmmmmmmm","player_loc":"https://roosterteeth.com/embed/game-news-2017-scorpio-held-back-by-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0279cc0-638b-4087-b3ba-95df71f9f9ab/sm/24363-1495493567218-thumbnail.jpg","duration":464,"publication_date":"2017-05-22T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-world-of-tanks-vs-youtubers","changefreq":"weekly","video":[{"title":"2017:E177 - Critical YouTuber THREATENED by Game Publisher","description":"A popular World of Tanks YouTuber has been threatened by the game's publisher over critical comments he made in a video about an update to the game. The publisher has threatened to issue a copyright strike against his video for... uh... swearing. Has anyone told them that's not how copyright strikes work?","player_loc":"https://roosterteeth.com/embed/game-news-2017-world-of-tanks-vs-youtubers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/236072ec-3c4d-4331-97a3-8f8bdaf2df2f/sm/24363-1495492379364-thumbnail.jpg","duration":491,"publication_date":"2017-05-22T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-round-up","changefreq":"weekly","video":[{"title":"2017:E100 - Red Dead Redemption 2 DELAYED + The Next Dragon Age + Spidey Takes on Uncharted","description":"Red Dead Redemption 2 has been delayed, surprising no one. We're hearing rumbling about the next Dragon Age game. Spider-Man actor Tom Holland has been picked up for the Uncharted movie... and the movie's now super different. Plus, Far Cry 5's got its first teasers out, Call of Duty: World War 2 has new details and a livestream this week, Days Gone will be back at E3, work might be starting on Final Fantasy XVI, Bayonetta developer Platinum Games is teasing an original IP, From Software is hiring for a new dark RPG project, Nintendo games may be coming to Nvidia shield... in China,  Tom Hardy's hooked to play Venom, and we've got more news about future Terminator movies like... that there will be future Terminator movies.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/895a9272-34e0-4de7-8c04-e7fa7079f237/sm/24363-1495487727573-thumbnail.jpg","duration":631,"publication_date":"2017-05-22T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-where-did-microtransactions-come-from","changefreq":"weekly","video":[{"title":"2017:E176 - Where Did Microtransactions Come From?","description":"2017:E176 - Where Did Microtransactions Come From?","player_loc":"https://roosterteeth.com/embed/game-news-2017-where-did-microtransactions-come-from","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43e7a8af-1036-4e9e-b5c2-0f9a0bb7f4b7/sm/710924-1495342843327-thumbnail.jpg","duration":549,"publication_date":"2017-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-first-pilot-run-0-6-the-final-countdown","changefreq":"weekly","video":[{"title":"FPE:E6 - 0.6 - The Final Countdown","description":"In our last pilot episode Ashley, Gus, Ryan, and Adam speedrun all the Destiny 2 news and more (19:38) Discuss dead malls in Night in the Woods (52:40) and take stock of crowdfunding's current health (1:03:18) \n\nJoin the official Glitch Please group!","player_loc":"https://roosterteeth.com/embed/glitch-please-first-pilot-run-0-6-the-final-countdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08f96180-d878-4a1e-b878-ce9efd056e7d/sm/2411188-1495233841358-GP06_-_THUMB.jpg","duration":5143,"publication_date":"2017-05-20T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-how-e3-became-gaming-s-biggest-event","changefreq":"weekly","video":[{"title":"2017:E175 - How E3 Became Gaming's Biggest Event!","description":"2017:E175 - How E3 Became Gaming's Biggest Event!","player_loc":"https://roosterteeth.com/embed/game-news-2017-how-e3-became-gaming-s-biggest-event","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcd26517-8734-493e-8aaa-0cf8f0830b37/sm/710924-1495251177001-thumbnail.jpg","duration":497,"publication_date":"2017-05-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-activision-taking-on-steam","changefreq":"weekly","video":[{"title":"2017:E174 - Is Activision Taking on Steam?","description":"2017:E174 - Is Activision Taking on Steam?","player_loc":"https://roosterteeth.com/embed/game-news-2017-activision-taking-on-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b570ea6-61d8-45a9-9f49-52900682d6fe/sm/710924-1495231035417-thumbnail.jpg","duration":292,"publication_date":"2017-05-20T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-wonder-woman-the-best-dc-movie-yet","changefreq":"weekly","video":[{"title":"2017:E21 - Wonder Woman the best DC movie yet? ","description":"2017:E21 - Wonder Woman the best DC movie yet? ","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-wonder-woman-the-best-dc-movie-yet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/012d5b69-7071-4efe-87a8-29d777339d5a/sm/710924-1495228774273-thumbnail.jpg","duration":298,"publication_date":"2017-05-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-pc-cross-save-for-destiny-2-call-of-duty-ww2-on-switch-astronaut-fired-for-stealing-from-nasa","changefreq":"weekly","video":[{"title":"2017:E99 - No PC Cross Save for Destiny 2 + Call of Duty WW2 on Switch? + Astronaut FIRED for Stealing from NASA","description":"2017:E99 - No PC Cross Save for Destiny 2 + Call of Duty WW2 on Switch? + Astronaut FIRED for Stealing from NASA","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-pc-cross-save-for-destiny-2-call-of-duty-ww2-on-switch-astronaut-fired-for-stealing-from-nasa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8587aa76-f1ab-45e6-8b22-c983a7fdea38/sm/710924-1495226293474-destinypc_roundup.jpg","duration":491,"publication_date":"2017-05-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-revealed-2","changefreq":"weekly","video":[{"title":"2017:E173 - Destiny 2 GAMEPLAY Reveal! Everything You Need to Know","description":"Destiny 2 got its big coming out party with a reveal of the gameplay and tons of changes coming to Bungie's big sequel to Destiny. We've got details on dates, platforms, specs, matchmaking, pvp, maps, orbits, travellers... Let's run through everything they said, some things they didn't say, and what it all means.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-revealed-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d37df3ce-6f3c-46f6-b588-38d8a3308c35/sm/24363-1495147601640-thumbnail.jpg","duration":526,"publication_date":"2017-05-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-team-ico-s-next-game-offensive-mario-kart-gesures-e-sports-theme-park","changefreq":"weekly","video":[{"title":"2017:E98 - Team Ico's Next Game? + Mario Kart TOO OFFENSIVE? + ESports Theme Park","description":"Team ICO is dropping hints about their next project after The Last Guardian. Mario Kart is getting an update to remove offensive gestures from the game. Tencent is building a city dedicated to esports.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-team-ico-s-next-game-offensive-mario-kart-gesures-e-sports-theme-park","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f785c02d-3f35-498d-8336-f606de4d5cd5/sm/24363-1495140624902-thumbnail.jpg","duration":454,"publication_date":"2017-05-18T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ubisoft-killing-new-releases","changefreq":"weekly","video":[{"title":"2017:E171 - FEWER GAMES for Ubisoft! All in on Microtransactions!","description":"According to a new investor briefing, Ubisoft is going to start releasing fewer games and capitalizing on post-launch monetization of consumers. That's an investor-friendly way of saying \"we're going to chuck tons of microtransactions in these games because they make us SO MUCH MONEY.\" So... RIP Beyond Good & Evil 2 and UbiArt games, apparently.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ubisoft-killing-new-releases","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df7f4e52-2731-4f9f-a0e1-10d8299eed84/sm/24363-1495064117597-thumbnail.jpg","duration":509,"publication_date":"2017-05-17T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-nintendo-creating-another-console-shortage","changefreq":"weekly","video":[{"title":"2017:E170 - Nintendo Switch TOO SUCCESSFUL for Nintendo to Handle?","description":"Nintendo Switch launched strong, but sales numbers have dropped pretty hard, and it's not because people aren't trying to buy it. Nintendo just can't seem to keep up. Is this NES Classic all over again with artificial shortages or is Nintendo just not able to build enough new consoles?","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-nintendo-creating-another-console-shortage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f04ffbb-4118-4eb1-8b71-ee988c59784c/sm/24363-1495064015687-thumbnail.jpg","duration":460,"publication_date":"2017-05-17T23:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-final-fantasy-remakes-netflix-witcher-show-woman-sued-for-movie-texting","changefreq":"weekly","video":[{"title":"2017:E97 - MORE PS1 Final Fantasy Remakes? + The Witcher Goes to Netflix + GotG2 Texting Lawsuit","description":"Looks like we might get more remakes from PlayStation 1 era Final Fantasy (assuming they get 7 out). The Witcher has a TV series in production with Netflix. A man is suing a woman for texting in the theater during a Guardians of the Galaxy 2 screening. Plus, E3 is sold out, Devolver is doing a press conference, Nintendo has more to announce about ARMS, South Park The Fractured But Whole gets a new release date, Minecraft is changing their parrot taming to avoid killing real parrots, Wild West Online skips crowdfunding, we've got a glimpse at the Prey sequel that got cancelled, apparently Star Wars: The Last Jedi has some HUGE surprise in store, and the Flash movie is eyeing new directors.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-final-fantasy-remakes-netflix-witcher-show-woman-sued-for-movie-texting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10c7fa45-1051-49d1-8c03-a61b266236e8/sm/24363-1495063926945-thu.jpg","duration":689,"publication_date":"2017-05-17T23:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-is-bad-for-pc-gaming","changefreq":"weekly","video":[{"title":"2017:E169 - Good Guy Valve is BAD FOR GAMES? oh boy","description":"A new editorial accuses \"good guy Valve\" of being nothing more than a cynical mask worn to get into the wallets of gamers. Here's the thing. HERE'S THE THING... there are some interesting points hidden inside the incendiary language.","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-is-bad-for-pc-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/273e6e8b-122b-48da-8019-6f76260c1bbe/sm/24363-1494978228456-thumbnail.jpg","duration":617,"publication_date":"2017-05-16T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-hackers-snatch-pirates-of-the-caribbean-movie-demand-ransom-from-disney","changefreq":"weekly","video":[{"title":"2017:E20 - Hacker Holds Pirates for RANSOM","description":"Is this the new pirates vs ninjas? A hacker (or hackers) have taken a major movie hostage: Pirates of the Caribbean. They're going to send a finger--err.... release a few minutes at a time... until Disney pays them. But Disney's not budging.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-hackers-snatch-pirates-of-the-caribbean-movie-demand-ransom-from-disney","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c469f21-eb38-4a09-b8b0-ebe013a779d2/sm/24363-1494978108867-thumbnail.jpg","duration":465,"publication_date":"2017-05-16T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-who-takes-longest-to-make-games-injustice-2-reviews-microsoft-vr-m-m-o","changefreq":"weekly","video":[{"title":"2017:E96 - Who Takes Longest to Make Games? + Injustice 2 Reviews + Microsoft VR MMO?","description":"Ubisoft confirms Assassin's Creed, Far Cry 5, and The Crew 2. Microsoft has surprise-released Phantom Dust FREE. The company may also be working on a VR MMO so get ready for The Oasis IRL. Plus, we've got math on who announces their games furthest from release, accusations that the Assassin's Creed leaks are intentional moves by Ubisoft, the ability to insert your OC into Sonic Forces, positive reviews for Injustice 2, a new Harvest Moon game, reviews for The Surge and Farpoint, Zenimax going after Samsung Gear VR next, and a totally separate lawsuit against Upload VR.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-who-takes-longest-to-make-games-injustice-2-reviews-microsoft-vr-m-m-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0342ea91-b1a2-441a-b093-37381ce5f0a6/sm/24363-1494965428895-thumbnail.jpg","duration":648,"publication_date":"2017-05-16T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pc-game-streaming-for-switch-bad-news-for-halo-fans-massive-ransomware-attack","changefreq":"weekly","video":[{"title":"2017:E95 - PC Game Streaming to Nintendo Switch? + Bad News for Halo Fans + NSA-created Ransomware ATTACK","description":"PC game streaming could see life on Nintendo Switch. Bad news for Halo fans hoping for a big game reveal at E3 this year. A ransomware attack using vulnerabilities hoarded by the NSA is locking computers around the world. Plus, Sega is looking to revive major IPs, more E3 game reveals are being teased, Eidos squashes the Thief game rumor, Microsoft has addressed the Minecraft 720p resolution issue for Nintendo Switch, this could be the worst summer for Hollywood in years, Game of Thrones gets a FIFTH spin-off project, and FCC chairman Ajit Pai mocks net neutrality.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pc-game-streaming-for-switch-bad-news-for-halo-fans-massive-ransomware-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be147947-cea2-4a61-8b16-b16799f00b66/sm/24363-1494886869662-thumbnail.jpg","duration":565,"publication_date":"2017-05-15T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-zelda-heading-to-mobile-another-pokemon-game-announced","changefreq":"weekly","video":[{"title":"2017:E167 - ZELDA & ANIMAL CROSSING Coming to Mobile!","description":"Last year it was Pokemon and Mario. Now it's time for Zelda and Animal Crossing to get the mobile game treatment. Are they going paid or freemium? What can you expect from these new games?","player_loc":"https://roosterteeth.com/embed/game-news-2017-zelda-heading-to-mobile-another-pokemon-game-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0110f67c-ac6f-4f6e-adfa-7ec8f31fbbb9/sm/24363-1494898965064-thumbnail.jpg","duration":516,"publication_date":"2017-05-15T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-first-pilot-run-0-5-prey-for-a-comeback","changefreq":"weekly","video":[{"title":"FPE:E5 - 0.5 - Prey for a Comeback","description":"Question the very coffee cup in your hand as Ashley, Gus, Ryan, and Mica speedrun the news (2:34) are joined by Miles to discuss Prey (34:10) wish for old franchises to be brought back (1:02:09) and answer your emails (1:17:15)\n\n\n\nJoin the official Glitch Please group!","player_loc":"https://roosterteeth.com/embed/glitch-please-first-pilot-run-0-5-prey-for-a-comeback","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/121e199a-0e77-45b2-a98d-99aeba076301/sm/24363-1494692083151-GP05_-_THUMB.jpg","duration":6083,"publication_date":"2017-05-13T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-why-do-consoles-cost-so-much","changefreq":"weekly","video":[{"title":"2017:E166 - Why Do Consoles Cost Hundreds of Dollars?","description":"Have you ever wondered why a game console costs hundreds of dollars, when the same hardware in a PC can be bought cheaper? Wonder no more.","player_loc":"https://roosterteeth.com/embed/game-news-2017-why-do-consoles-cost-so-much","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5e571fb-79ec-4217-b822-93b6e8949f55/sm/24363-1494898838064-maxresdefault_5.jpg","duration":521,"publication_date":"2017-05-13T07:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017","changefreq":"weekly","video":[{"title":"2017:E165 - Hitman SAVED? Season 2 Coming! ","description":"2017:E165 - Hitman SAVED? Season 2 Coming! ","player_loc":"https://roosterteeth.com/embed/game-news-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db89b342-9482-4e94-8354-f6083eadc2e0/sm/24363-1494898750678-maxresdefault_4.jpg","duration":400,"publication_date":"2017-05-13T00:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-s-e3-comeback","changefreq":"weekly","video":[{"title":"2017:E164 - Xbox's BIG COMEBACK","description":"Is Xbox poised for a big comeback at E3? They're teasing games, Scorpio hardware, and now they've announced a new mixed reality project.","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-s-e3-comeback","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c350b7e-b3fa-4c96-b969-9f66fecddc8b/sm/24363-1494898680060-maxresdefault_3.jpg","duration":416,"publication_date":"2017-05-13T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-a-history-of-minecraft","changefreq":"weekly","video":[{"title":"2017:E163 - MINECRAFT: A History Speedrun","description":"Minecraft has just released on Nintendo Switch. You've heard it before. You've seen it before. It's virtually impossible to escape. Well, here's a speedrun of the game's history--how it was made and where it is now.","player_loc":"https://roosterteeth.com/embed/game-news-2017-a-history-of-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c6ec389-050c-4976-b160-db9d6f11ab69/sm/24363-1494898588842-maxresdefault_2.jpg","duration":473,"publication_date":"2017-05-12T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-fan-made-games-will-ruin-your-life-you-tuber-gives-legal-advice-lawyer-shoots-him-down","changefreq":"weekly","video":[{"title":"2017:E162 - Fan Games Will RUIN YOUR LIFE?","description":"The only thing more reliable than fans creating games based on their favorite properties is game companies sending out cease and desist letters to fans creating games based on their favorite properties. This has been a hot topic lately, as to who's in the wrong. An attorney has weighed in and... well, you probably won't like the answer, but that doesn't make it less true.","player_loc":"https://roosterteeth.com/embed/game-news-2017-fan-made-games-will-ruin-your-life-you-tuber-gives-legal-advice-lawyer-shoots-him-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/848a4fc0-f007-412c-9e47-fd2d5796d26e/sm/24363-1494604569715-fan_games_illegal_thumbnail.jpg","duration":502,"publication_date":"2017-05-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-most-gamers-haven-t-heard-of-scorpio-or-ps4-pro","changefreq":"weekly","video":[{"title":"2017:E161 - NO ONE'S HEARD of Xbox Scorpio or PS4 Pro!?","description":"A new survey out of Nielson claims that very few gamers are aware that Xbox's Project Scorpio is a thing, and many don't even know what the PS4 Pro is. Not you guys. If you're watching game news you're good. But who are all these other people?","player_loc":"https://roosterteeth.com/embed/game-news-2017-most-gamers-haven-t-heard-of-scorpio-or-ps4-pro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1176139c-91bc-41d8-ad0e-6e3dba661c88/sm/24363-1494604475180-maxresdefault_1.jpg","duration":410,"publication_date":"2017-05-11T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-hitman-c-a-n-c-e-l-l-e-d-headline-2-pokemon-go-you-tuber-guilty","changefreq":"weekly","video":[{"title":"2017:E93 - Square-Enix DROPS Hitman + Gamers WANT Paid DLC + Laptops BANNED on Airplanes","description":"Square-Enix is dropping Hitman developer IO Interactive and wants someone to take it off their hands. Gamers report WANTING paid content in games. Laptops are being banned from some flights from Europe to the US. Plus, Nintendo announces E3 plans, Star Citizen is approaching $150 million in fan funding, The Surge 2 prioritizes streamers over reviewers, Digital Foundry thinks Prey is a subpar experience on console, an Overwatch data mine reveals an upcoming anniversary event, Judge Dredd is getting a TV show, Police in the UK are using AI to decide what to do with suspects, and a Russian Pokemon Go player has been sentenced after playing the game in church.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-hitman-c-a-n-c-e-l-l-e-d-headline-2-pokemon-go-you-tuber-guilty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ceb64f3-3c5a-497b-ad1a-9f6b5016ffc8/sm/24363-1494537194988-Roundup_Thumbnail_Template.jpg","duration":534,"publication_date":"2017-05-11T21:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-two-metroid-games-coming-is-one-of-them-2-d-well","changefreq":"weekly","video":[{"title":"2017:E160 - TWO New METROID Games? Wait...","description":"We've been hearing rumblings that a new Metroid game will be unveiled at E3 this year, but now a leaker claims that not one, but TWO new games are coming. How credible is that though? Well...","player_loc":"https://roosterteeth.com/embed/game-news-2017-two-metroid-games-coming-is-one-of-them-2-d-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/088aa3ce-f3e2-4e0e-93cb-2d36f670f041/sm/24363-1494464055450-metroid_thumb.jpg","duration":475,"publication_date":"2017-05-11T00:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-headline-1-switch-tax-f-i-x-e-d-gta-v-meth-bundle","changefreq":"weekly","video":[{"title":"2017:E92 - Red Dead Redemption 2 First Glimpse? + Rime Switch Tax Fixed + GTA V Meth Bundle","description":"We might have our first illicit screenshot of Red Dead Redemption 2. Rime has rolled back the Switch Tax price... sort of. GTA V came with surprise meth for one suddenly energetic 11-year-old. Plus, Battlefront 2 will have 3x the content of the first game, a screenshot for Assassin's Creed Origins offers new details, expect more surprises for Zelda, EA is pretty happy with the Switch, don't expect Persona 5 to ditch its streaming restrictions... ever, Fox is ordering another X-men spin-off show, the MGS movie director put potential writers through a gauntlet, and Donald Glover is working on a Deadpool animated series.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-headline-1-switch-tax-f-i-x-e-d-gta-v-meth-bundle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67169466-fccc-4062-9944-d2dfe33142d9/sm/24363-1494444237412-thumbnail.jpg","duration":636,"publication_date":"2017-05-10T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-new-bio-ware-ip-delayed","changefreq":"weekly","video":[{"title":"2017:E159 - MASS EFFECT Franchise on Ice, BioWare New IP Delayed","description":"The Mass Effect franchise has suffered the worst possible setback--being put on ice. That means no more Mass Effect games in the near future, following the backlash against the recently released Mass Effect: Andromeda. Plus, BioWare's new IP looks like it's being delayed to avoid a similar response.","player_loc":"https://roosterteeth.com/embed/game-news-2017-new-bio-ware-ip-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffc0b337-0021-4d89-9f75-5342141be97d/sm/24363-1494454187956-thumbnail.jpg","duration":529,"publication_date":"2017-05-10T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-modder-adds-drm-to-popular-mod-gamers-mad","changefreq":"weekly","video":[{"title":"2017:E158 - Modder HIJACKS Pirated Games","description":"A popular modder who fixes PC games because the developers didn't has taken a stand against piracy by adding DRM back into a game after pirates cracked it and locking pirates back out. This has the PC gaming up in arms over what modders are allowed to do and whether pirates should be entitled to those mods. Strap in. This is a fun one. But also messy.","player_loc":"https://roosterteeth.com/embed/game-news-2017-modder-adds-drm-to-popular-mod-gamers-mad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eda3cb0f-3514-4166-9b92-bec5c854fac5/sm/24363-1494376192542-thumbnail.jpg","duration":410,"publication_date":"2017-05-10T00:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-kingdom-hearts-3-will-finally-arrive-next-year","changefreq":"weekly","video":[{"title":"2017:E157 - Kingdom Hearts 3 ACTUALLY COMING When!?","description":"Kingdom Hearts fans have been waiting more than 10 years for the 3rd numbered entry in the franchise and now... it might actually be coming out, now that reports claim Square Enix has put their foot down on the release date.","player_loc":"https://roosterteeth.com/embed/game-news-2017-kingdom-hearts-3-will-finally-arrive-next-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69686da6-c26e-436c-ac50-1afe07d5d705/sm/24363-1494376091912-thumbnail.jpg","duration":483,"publication_date":"2017-05-10T00:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-far-cry-5-details-no-man-s-sky-dev-talks-backlash-rated-r-hellboy-reboot","changefreq":"weekly","video":[{"title":"2017:E91 - Far Cry 5 UPDATE + No Man's Sky Dev Talks Backlash + Hellboy Returns","description":"One source that hinted Far Cry 5 might be a western is walking his claims back. One No Man's Sky dev talks backlash and how the studio handled it. Hellboy is returning and will be rated R, but not with its old team. Plus, Assassin's Creed Origins may skip Switch (at least at launch), Marvel's got big plans for video games, God of War's voice actor now says 2018 for the game, Dynasty Warriors 9 goes open world, The Elder Scrolls could save your life, Blade Runner 2049's trailer is pretty dope, China is getting a live action Contra movie, and one happy Twitter user gets his not-so-free chicken nuggets after all.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-far-cry-5-details-no-man-s-sky-dev-talks-backlash-rated-r-hellboy-reboot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03ee6725-2c93-4ab7-80b7-62991f063117/sm/24363-1494376013309-thumbnail.jpg","duration":610,"publication_date":"2017-05-10T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-far-cry-5-versus-red-dead-redemption-2","changefreq":"weekly","video":[{"title":"2017:E156 - Far Cry 5 STEALS Red Dead Redemption 2's Western Spotlight?","description":"Remember that live action promo being filmed in Montana that sounded an awful lot like Red Dead Redemption 2? Turns out it might actually be for Far Cry 5, which could be a spaghetti western.","player_loc":"https://roosterteeth.com/embed/game-news-2017-far-cry-5-versus-red-dead-redemption-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e97172e8-40cb-4130-a779-f7e6e6edf47b/sm/24363-1494281248691-thumbnail.jpg","duration":300,"publication_date":"2017-05-08T22:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-assassin-s-creed-reboot","changefreq":"weekly","video":[{"title":"2017:E155 - Assassin's Creed ORIGINS New Details Leak","description":"Assassin's Creed Empire may now be Assassin's Creed Origins and a new leak reveals how the series may have used its break to significantly change the formula for the series.","player_loc":"https://roosterteeth.com/embed/game-news-2017-assassin-s-creed-reboot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3dd7f63-601a-467b-b06a-cc3b05ff9ef3/sm/24363-1494280160833-thumbnail.jpg","duration":414,"publication_date":"2017-05-08T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-metroid-prime-4-incoming-mario-kart-defeats-prey-overwatch-you-tuber-scandal","changefreq":"weekly","video":[{"title":"2017:E90 - Metroid Prime 4 SURPRISE? + Mario Kart Beats Prey + Overwatch YouTube HOAX","description":"Is Nintendo gearing up to FINALLY give fans Metroid Prime 4 (let's not talk about that 3DS game).  Mario Kart managed to beat out Prey for the weekend, despite the difference in platforms. An Overwatch YouTuber got caught up in a big identity hoax . Plus, Xbox Scorpio is right on schedule, Battlefront 2 is getting VR content, reviews are still coming in for Prey, Maradona has dropped his suit against Konami, Dead Island 2 and The Walking Dead are still zombieing along, a hardware modder got the Nintendo PlayStation prototype working, Alien Covenant is sounding pretty good, and Guardians definitely saved the galaxy... if \"saved the galaxy\" means \"made a ton of money.\"","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-metroid-prime-4-incoming-mario-kart-defeats-prey-overwatch-you-tuber-scandal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0c34efd-8003-46fb-8979-8ef76ac53226/sm/710924-1494276350848-thumbnail.jpg","duration":651,"publication_date":"2017-05-08T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-brief-history-of-video-game-speedrun","changefreq":"weekly","video":[{"title":"2017:E154 - Video Game Speedruns: A Quick History","description":"Speedrun culture has been building for decades into what it's become, but how did it get started? Let's take a walk down memory lane.","player_loc":"https://roosterteeth.com/embed/game-news-2017-brief-history-of-video-game-speedrun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70ac3efd-0206-4507-a3af-7064cd839763/sm/24363-1494280078792-maxresdefault.jpg","duration":511,"publication_date":"2017-05-07T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-the-history-of-batman-in-film","changefreq":"weekly","video":[{"title":"2017:E19 - BATMAN: A History in Film","description":"The Caped Crusader has a long history on the screen. Longer than many realize. Let's trace the ups and downs of The Batman in all his iterations through film and live action television.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-the-history-of-batman-in-film","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef11a5b3-b3c3-4732-bd46-0ceeea81568d/sm/24363-1494097058125-batman_thumbnail.jpg","duration":552,"publication_date":"2017-05-06T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-first-pilot-run-0-4-dat-blue-shell","changefreq":"weekly","video":[{"title":"FPE:E4 - 0.4 - The Definitive Blue Shell","description":"Take a 200cc ride with Ashley, Gus, Ryan, and Adam as they Speedrun the News (2:25) have a deluxe discussion about Mario Kart (33:00) weigh the value of remakes and remasters (58:25) and highlight their favorite Switch accessories (1:16:10)","player_loc":"https://roosterteeth.com/embed/glitch-please-first-pilot-run-0-4-dat-blue-shell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a99d7985-f453-49fa-8f7f-ef93428bcdfe/sm/24363-1494043438268-GP04_-_THUMB.jpg","duration":5546,"publication_date":"2017-05-06T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-apple-may-buy-e-a-take-two-or-rockstar","changefreq":"weekly","video":[{"title":"2017:E153 - Apple BUYS The Video Game Industry?","description":"Apple has an awful lot of extra cash lying around. Usually that means they plan on doing something with it, like buying something BIG. Something like a huge company. While entertainment giants like Disney and Netflix have been thrown around, analysts now predict Apple could decide to buy its way into gaming by taking over the industry's biggest companies.","player_loc":"https://roosterteeth.com/embed/game-news-2017-apple-may-buy-e-a-take-two-or-rockstar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9275cb23-058b-4727-85f3-ca249ec1f9cb/sm/24363-1494019264991-thumbnail.jpg","duration":455,"publication_date":"2017-05-05T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-red-dead-2-trailer-incoming-call-of-duty-hate-is-over-four-game-of-thrones-spin-offs","changefreq":"weekly","video":[{"title":"2017:E89 - Red Dead Redemption LIVE ACTION? + Call of Duty Hate Train OVER + Uber are Criminal?","description":"Red Dead Redemption 2 may be filming some live-action stuff... potentially a promo? Activision says there's no sign of last year's Call of Duty: Infinite Warfare hate train for World War 2. Uber is under investigation for using secret software to bypass regulators. Plus, Desiny 2 promises more frequent content updates and PC features, Prey reviews are trickling in slowly, Bethesda insists they didn't have much choice in enforcing their Prey trademark, Persona 5 is king of the PlayStation Store, Overwatch made over $1 billion, more than a dozen secret Unreal Engine 4 games are in development for Nintendo Switch, and Game of Thrones could see as many as four spin-off series.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-red-dead-2-trailer-incoming-call-of-duty-hate-is-over-four-game-of-thrones-spin-offs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e6315ae-fd7f-4452-878f-dd4512228ac4/sm/24363-1494013057372-thumbnail.jpg","duration":667,"publication_date":"2017-05-05T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-adpocalypse-hits-call-of-duty","changefreq":"weekly","video":[{"title":"2017:E152 - Call of Duty WWII TOO VIOLENT for YouTube?","description":"The Adpocalypse has hit a lot of YouTubers pretty hard. Now it's come for the Call of Duty players. Several popular Call of Duty channels are reporting demonetization of videos depicting Call of Duty: World War II or even using the name in their titles. This could have a dramatic impact on channels built around specific games and genres. Are other shooter games next on the chopping block?","player_loc":"https://roosterteeth.com/embed/game-news-2017-adpocalypse-hits-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5da6fbbf-c28b-4695-ab50-7e058532de7d/sm/24363-1493940389953-thumbnail.jpg","duration":460,"publication_date":"2017-05-04T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bethesda-goes-after-its-own-prey","changefreq":"weekly","video":[{"title":"2017:E151 - Prey vs Prey For The Gods TRADEMARK BATTLE","description":"Prey publisher Bethesda has a history of getting litigious over trademarks over other games. To celebrate the release of Prey they're going after the Kickstarter game Prey For The Gods with a pack of lawyers because gosh those games could be confused.","player_loc":"https://roosterteeth.com/embed/game-news-2017-bethesda-goes-after-its-own-prey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9ad5419-487c-4636-8993-034741471ab0/sm/24363-1493938971813-thumbnail.jpg","duration":479,"publication_date":"2017-05-04T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-big-e3-announcements-call-of-duty-you-tubers-in-trouble-you-tube-prankster-arrested","changefreq":"weekly","video":[{"title":"2017:E88 - New E3 Coliseum + Fans Demand Xbox FPS Counter + YouTube Prankster Facing Jail","description":"Geoff Keighley's announced a 2 day E3 Coliseum event. Xbox Scorpio's dev kit has an FPS counter and fans really want to see it in the final console (but it may be too late to make changes). A YouTube prankster is facing up to 5 years in prison for taking down stop signs. Plus, PC Gamer is bringing their PC showcase back to E3, Sony's announced the timing for their E3 conference, Nintendo may be planning a surprise Direct, one retailer has published a release date for God of War, Steam is making changes to gifting, Ubisoft is teasing fans with Far Cry 3, the Gears of War movie gets a writer, The Defenders series gets a trailer, and beware of a Google Docs phishing scam.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-big-e3-announcements-call-of-duty-you-tubers-in-trouble-you-tube-prankster-arrested","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cadb9b7-73e6-4698-8817-119b13ac4529/sm/24363-1493938406973-thumbnail.jpg","duration":587,"publication_date":"2017-05-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-first-party-fail","changefreq":"weekly","video":[{"title":"2017:E150 - MORE TROUBLE for Xbox Exclusives?","description":"Another of Microsoft's anticipated exclusives is having issues. In this case? That it's an original Xbox game that's not being \"remastered\" so much as \"re-released as-is.\"","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-first-party-fail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5094102a-1fee-4faa-86ca-befcef780fb0/sm/24363-1493914456043-thumbnail.jpg","duration":550,"publication_date":"2017-05-04T01:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-will-prey-also-be-a-buggy-mess","changefreq":"weekly","video":[{"title":"2017:E149 - Prey: Should You Be WORRIED?","description":"Prey is coming out soon! Unfortunately for PC gamers, Arkane doesn't have the strongest track record with PC releases and they decided not to release a demo for PC... time to get worried?","player_loc":"https://roosterteeth.com/embed/game-news-2017-will-prey-also-be-a-buggy-mess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f51e8ac6-0d52-46c9-8bc8-3189a65dd362/sm/24363-1493914329367-thumbnail.jpg","duration":448,"publication_date":"2017-05-03T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-headline-1-modern-warfare-remastered-standalone-you-tube-prank-family-punished","changefreq":"weekly","video":[{"title":"2017:E87 - 100 MILLION Switches? + Modern Warfare Remastered STANDALONE + SWATTED at Airport","description":"Nintendo's revised their estimates for Nintendo Switch. They now think it will do Wii numbers! Modern Warfare Remastered was held hostage by Infinite Warfare, but may get a standalone release after all. A Twitch streamer was swatted at the airport.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-headline-1-modern-warfare-remastered-standalone-you-tube-prank-family-punished","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2713def9-e315-4052-b861-8223516cf451/sm/24363-1493914540670-thumbnail.jpg","duration":699,"publication_date":"2017-05-03T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-darksiders-iii-leaked","changefreq":"weekly","video":[{"title":"2017:E148 - Darksiders 3 LEAKED! FIRST LOOK!","description":"When the lights at THQ went out it looked like the end of the Darksiders franchise, but no! After leaking via Amazon we've got official confirmation and a first look at what this game has to offer, plus some very very good news for fans of the franchise.","player_loc":"https://roosterteeth.com/embed/game-news-2017-darksiders-iii-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c01a549e-1586-4453-828a-00d88feaffd5/sm/24363-1493766004971-thumbnail.jpg","duration":326,"publication_date":"2017-05-02T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-some-hackers-are-trying-to-hold-hollywood-hostage","changefreq":"weekly","video":[{"title":"2017:E18 - Hackers Hold Hollywood HOSTAGE","description":"Hacker(s) have got early copies of dozens of TV shows and are threatening to release them if networks don't pay ransom. Netflix is already feeling the heat over 10 leaked episodes of Orange is the New Black... just when you thought it was safe with the writer's strike averted.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-some-hackers-are-trying-to-hold-hollywood-hostage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d747d845-dee4-4263-ba03-95a7f0c5c1bb/sm/24363-1493762506107-thumbnail.jpg","duration":438,"publication_date":"2017-05-02T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-roundup-2","changefreq":"weekly","video":[{"title":"2017:E86 - Zelda BOTW NEW CONTENT Details + Valve Writer Quits + Philip DeFranco News Network","description":"The first DLC content for The Legend of Zelda: Breath of the Wild has been detailed. The writer behind a bunch of Half-Life, Portal, and Left 4 Dead has left the studio. YouTube star Philip DeFranco is launching a news network. Plus, Mario Kart 8 Deluxe has fixed bugs from its initial release, League of Legends drop chances have been detailed, the weirdest Top Gun collection finds a new home, and the Hollywood Writers Strike has been averted.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-roundup-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a74d31c6-fbd5-49ce-b527-fcdd18487a6e/sm/24363-1493759609470-thumbnail.jpg","duration":509,"publication_date":"2017-05-02T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-playstation-5-next-year","changefreq":"weekly","video":[{"title":"2017:E147 - Is the Playstation 5 Coming Next Year?","description":"2017:E147 - Is the Playstation 5 Coming Next Year?","player_loc":"https://roosterteeth.com/embed/game-news-2017-playstation-5-next-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faad0df8-2846-4665-b2c4-e7ba555ac6a8/sm/710924-1493672284230-thumbnail.jpg","duration":289,"publication_date":"2017-05-02T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-switch-is-more-popular-than-you-were-in-high-school-a-lot-more","changefreq":"weekly","video":[{"title":"2017:E146 - Is the Switch Unstoppable?","description":"2017:E146 - Is the Switch Unstoppable?","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-switch-is-more-popular-than-you-were-in-high-school-a-lot-more","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/396a3725-54dd-4f85-9fc3-cdbcd18e437b/sm/710924-1493672298101-thumbnail.jpg","duration":326,"publication_date":"2017-05-01T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-roundup-2","changefreq":"weekly","video":[{"title":"2017:E85 - Assassin’s Creed Creator Rips Ubisoft + Fate of the Furious Passes $1 Billion! + Saturn’s Moon Is HABITABLE?","description":"2017:E85 - Assassin’s Creed Creator Rips Ubisoft + Fate of the Furious Passes $1 Billion! + Saturn’s Moon Is HABITABLE?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-roundup-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82ac6db5-7f8e-4d5c-b23b-21afe3378b8d/sm/710924-1493671067739-eziotherock_roundup.jpg","duration":432,"publication_date":"2017-05-01T20:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-first-pilot-run-0-3-enter-the-dragon","changefreq":"weekly","video":[{"title":"FPE:E3 - 0.3 - Enter the Dragon","description":"Join Ashley, Gus, and special guest Reina Scully this week as they pitch their ideas for games based on your submissions (4:24) cast a movie version of The Witcher (18:38) spotlight indie games they love (44:22) and speedrun the news! (57:51)","player_loc":"https://roosterteeth.com/embed/glitch-please-first-pilot-run-0-3-enter-the-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b0e7f6f-0983-4591-a39e-e90620499c0c/sm/24363-1493407728496-GP03_-_THUMB.jpg","duration":4653,"publication_date":"2017-04-29T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mario-kart-8-deluxe-k-b-y-g-is-it-good","changefreq":"weekly","video":[{"title":"2017:E144 - Mario Kart 8 Deluxe - Is It Good?","description":"2017:E144 - Mario Kart 8 Deluxe - Is It Good?","player_loc":"https://roosterteeth.com/embed/game-news-2017-mario-kart-8-deluxe-k-b-y-g-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/055c1f8c-fc54-483a-b917-c8799220cc25/sm/710924-1493416377112-thumbnail.jpg","duration":311,"publication_date":"2017-04-29T02:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-what-the","changefreq":"weekly","video":[{"title":"2017:E143 - Nintendo Announces NEW 2DS XL... But Why?","description":"2017:E143 - Nintendo Announces NEW 2DS XL... But Why?","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-what-the","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c785c88e-28d6-4edf-853d-28bf4cb22515/sm/710924-1493415084132-thumbnail.jpg","duration":499,"publication_date":"2017-04-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-friday-roundup-2","changefreq":"weekly","video":[{"title":"2017:E84 - 60 MILLION PS4s? + Call of Duty WW2 Gameplay Changes + Bayonetta 3 Teased?","description":"PS4 hits a new console milestone. Call of Duty: World War 2 will make some pretty significant changes to gameplay. Is Platinum teasing Bayonetta 3? Plus, Nintendo is adjusting Switch sales expectations way up, Xbox sales are up, Capcom is teasing some kind of major game, Samurai Jack is returning... kinda, and it turns out NFL players can also be giant gamer nerds.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-friday-roundup-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3576b446-7ef2-422f-9c98-e6446ce226c4/sm/24363-1493406639239-thumbnail.jpg","duration":459,"publication_date":"2017-04-28T19:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-rockstar-working-on-a-bully-sequel","changefreq":"weekly","video":[{"title":"2017:E142 - Rockstar's BULLY 2 Up Next?","description":"Rumors of a sequel to the hit game Bully have been flying for years. Now, a leaker with a strong track record of sharing accurate Rockstar info early says Bully's the next project after the release of Red Dead Redemption 2.","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-rockstar-working-on-a-bully-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86eac6a5-139c-41fe-97f8-dbcb45816dcf/sm/24363-1493327145350-thumbnail.jpg","duration":332,"publication_date":"2017-04-27T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-life-is-good-at-nintendo","changefreq":"weekly","video":[{"title":"2017:E141 - Did the Switch SAVE Nintendo?","description":"We've seen a lot of estimates about how Nintendo Switch is selling and speculation about whether it can help Nintendo turn a profit again. Thanks to Nintendo's investor call we now know how many it sold and what effect it's having.","player_loc":"https://roosterteeth.com/embed/game-news-2017-life-is-good-at-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ee3e0e5-3543-43a7-b660-983aea6e5978/sm/24363-1493326308065-thumbnail.jpg","duration":527,"publication_date":"2017-04-27T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-roundup","changefreq":"weekly","video":[{"title":"2017:E83 - What's at E3 + Street Fighter 5 Stage Controversy + FCC Reversing Net Neutrality","description":"All the games we know will be at E3 and playable to the public. a Street Fighter V stage has been pulled over unintentional religious references. The FCC plans to roll back net neutrality requirements. Plus, Atlus apologizes for Persona 5 streaming limitations and.... implements different streaming limitations, a Nintendo veteran rides off into the sunset, Dead Rising 4 didn't well very well, Unbreakable is getting a sequel, The Last Jedi director Rian Johnson says he's not involved with Episode 9, and you can buy an entire town in Oregon if you've got a few million dollars you don't need.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8e57683-4797-4369-8a51-02fed5026e1e/sm/24363-1493325503260-thumbnail.jpg","duration":477,"publication_date":"2017-04-27T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-hacker-gets-2-years-for-ruining-games","changefreq":"weekly","video":[{"title":"2017:E21 - JAIL TIME for DDoS Mastermind","description":"a \"hacker\" or rather a script kiddie who created and sold DDoS software responsible for millions of DDoS attacks on gaming networks like Xbox Live has received a jail sentence to (hopefully) send a message.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-hacker-gets-2-years-for-ruining-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a199c22a-aeec-47e1-93c1-e45cd9acafba/sm/24363-1493243854839-thumbnail.jpg","duration":367,"publication_date":"2017-04-26T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ubisoft-again-a-hostile-takeover-target","changefreq":"weekly","video":[{"title":"2017:E140 - HOSTILE TAKEOVER for Ubisoft AGAIN?","description":"Last year it looked like Ubisoft had survived Vivendi's attempts at a hostile takeover. But that was last year. Now it's this year and it looks like the war's back on.","player_loc":"https://roosterteeth.com/embed/game-news-2017-ubisoft-again-a-hostile-takeover-target","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ace18dd5-324a-42c2-8fcd-9b73dc679e67/sm/24363-1493241496575-thumbnail.jpg","duration":419,"publication_date":"2017-04-26T21:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-roundup","changefreq":"weekly","video":[{"title":"2017:E82 - Call of Duty WW2 DETAILS + Most Controversial Game Returns + Halo 5 Admits Mess Up","description":"Activision has revealed all the details for Call of Duty: World War II. A game so controversial it led to the formation of the ESRB is returning even though no one asked it to. Halo dev Frank O'Connor admits Halo 5 messed up. Plus, there's a new mystery in Elite Dangerous, a modder is bringing Fallout New Vegas into Fallout 4, Breath of the Wild fans learn what's in the impossible chest, release dates for Frozen 2/Lion King/Star Wars 9/Indiana Jones, and director Jonathan Demme has passed away.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dea02a55-d754-4f80-9372-65c19b006f8a/sm/24363-1493237722498-thumbnail.jpg","duration":545,"publication_date":"2017-04-26T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-how-big-are-digital-games-these-days-4","changefreq":"weekly","video":[{"title":"2017:E139 - Digital vs Physical Games: Who's Winning?","description":"Despair, ye physical game faithful. US game sales tracker NPD has finally updated their numbers to account for (most) digital game sales over the last few years, and it looks like physical gaming has lost ground faster than anyone realized.","player_loc":"https://roosterteeth.com/embed/game-news-2017-how-big-are-digital-games-these-days-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8b7b41e-ee53-46fd-b698-bf48d97b26a8/sm/24363-1493151207168-thumbnail.jpg","duration":399,"publication_date":"2017-04-25T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-youtubers-say-ad-changes-are-costing-them-big-money","changefreq":"weekly","video":[{"title":"2017:E20 - Money GONE for YouTube Content Creators?","description":"YouTube creators are reporting that YouTube's new ad policies have hit them even harder than expected, and that they won't be able to keep making content the way they were before if this continues.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-youtubers-say-ad-changes-are-costing-them-big-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d97bd82-dc46-48ae-82a5-59f7bf4c2e6d/sm/24363-1493150660597-thumbnail.jpg","duration":471,"publication_date":"2017-04-25T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-roundup","changefreq":"weekly","video":[{"title":"2017:E81 - Kingdom Hearts 3 WHEN? + Battlefield 1 Gets Private + Rhino Turns to Tinder","description":"We have a new un-window on when to expect Kingdom Hearts III and the Final Fantasy VII Remake. Battlefield 1 is getting platoons and private servers. The last male white rhino has turned to Tinder for help. Plus, Resident Evil 7's Not a Hero DLC has been delayed, Twitch is rolling out new features for small streamers, the writers guild moves closer to a strike, Kingsman 2 has its full trailer, and the official name for the fourth Avengers movie hasn't been shared because it's a spoiler.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4377b62-bfb7-4658-952c-5915e976d8a8/sm/24363-1493146700249-apr25roundup_thumbnail.jpg","duration":443,"publication_date":"2017-04-25T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-has-game-development-gotten-too-expensive-what-s-the-future-of-console-gaming","changefreq":"weekly","video":[{"title":"2017:E138 - Games TOO EXPENSIVE to Succeed?","description":"In an age where selling millions of copies isn't good enough, some are asking if games are becoming too expensive to make, so failures can't be tolerated and no one is willing to take risks. Is this the age where indies and AA developers will rise while the behemoths will fall?","player_loc":"https://roosterteeth.com/embed/game-news-2017-has-game-development-gotten-too-expensive-what-s-the-future-of-console-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1e3ed9d-a793-48a5-955b-8630c2f1c861/sm/24363-1493075916830-thumbnail.jpg","duration":454,"publication_date":"2017-04-24T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-guardians-of-the-galaxy-vol-2-is-it-good","changefreq":"weekly","video":[{"title":"2017:E17 - Guardians of the Galaxy vol. 2: IS IT GOOD?","description":"Guardians of the Galaxy vol. 2 hits theaters next week, but reviews are already flooding in with opinions on whether this movie lives up to the promise of the first. LET'S JUDGE--IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-guardians-of-the-galaxy-vol-2-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37be908c-62cc-42e1-bf1f-f4b32d067ba0/sm/24363-1493074171614-thumbnail.jpg","duration":349,"publication_date":"2017-04-24T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-monday-roundup","changefreq":"weekly","video":[{"title":"2017:E80 - Xbox Scorpio \"No Technical Limit\" + Zelda: Breath of the NES + Marvel MCU Ending?","description":"Xbox Scorpio has no technical limit, according to Stardock. A fan has 2D-ized Zelda: Breath of the Wold. Marvel's MCU may be ending or at least becoming a very different thing. Plus, more details leak about Call of Duty: World War 2, Best Buy is getting the last NES Classics in, Rockstar has shut down a fan project to build Red Dead Redemption in GTA V, YouTube has updated Restricted Mode, Fox is working on several new X-Men projects for 2018, we've got release dates for all the Avatar sequels you've been waiting for, and an astronaut has broken the record for most days in space.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-monday-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/416baad2-4ed8-4407-a4b0-269d08936897/sm/24363-1493064382322-thumbnail.jpg","duration":577,"publication_date":"2017-04-24T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-does-kick-starter-create-bad-g-a-m-e-s","changefreq":"weekly","video":[{"title":"2017:E137 - Does KickStarter Create BAD GAMES?","description":"Recently, KickStarter's lost favor with gamers, who are using the platform to fund games less than they used to. Part of this is because a lot of recent crowdfunded games haven't been great, but just how true is that? Does KickStarter lead to bad games?","player_loc":"https://roosterteeth.com/embed/game-news-2017-does-kick-starter-create-bad-g-a-m-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce251c94-fff4-4801-9e4a-50ca8290d618/sm/24363-1492815443626-thumbnail.jpg","duration":425,"publication_date":"2017-04-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-first-pilot-run-0-2-cashing-in-on-nostalgia","changefreq":"weekly","video":[{"title":"FPE:E2 - 0.2 - Nostalgia Money","description":"Ashley, Ryan, and Miles talk about the latest happenings in video games (7:55) their thoughts on Yooka-Laylee (33:23) cashing in on nostalgia with Tim Gettys (48:08) and early hands-on impressions of Prey (1:09:48)","player_loc":"https://roosterteeth.com/embed/glitch-please-first-pilot-run-0-2-cashing-in-on-nostalgia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/624b5265-2c8c-485a-92a8-0553daaefdc2/sm/24363-1492817100276-GP01_-_THUMB3.jpg","duration":4909,"publication_date":"2017-04-22T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-history-of-the-guardians-of-the-galaxy","changefreq":"weekly","video":[{"title":"2017:E16 - GUARDIANS OF THE GALAXY: A Brief History","description":"Guardians of the Galaxy vol 2 hits theaters in just a few weeks. But the team's history actually goes all the way back to the 1960s. Want to know where they came from without diving into decades of comics? We've got you covered.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-history-of-the-guardians-of-the-galaxy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec79fd9-8fa3-4998-9c76-76341acc8a24/sm/24363-1492812853795-thumbnail.jpg","duration":395,"publication_date":"2017-04-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-2017-belongs-to-ubisoft-so-far","changefreq":"weekly","video":[{"title":"2017:E135 - Ubisoft #1 in 2017!","description":"Despite the boycotts and the quietish launches, it looks like the #1 game publisher for 2017 so far is Ubisoft! So there's a surprise. While they're not generating the most noise they ARE generating the most money, with the 2 top grossing games of the year up to this point.","player_loc":"https://roosterteeth.com/embed/game-news-2017-2017-belongs-to-ubisoft-so-far","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1842b6ee-d284-499e-aa3f-29028011c774/sm/24363-1492814229698-thumbnail.jpg","duration":384,"publication_date":"2017-04-21T22:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-world-war-ii-confirmed-what-we-know-so-far","changefreq":"weekly","video":[{"title":"2017:E136 - Call of Duty: World War II CONFIRMED!","description":"Remember all those marketing material leaks that said Call of Duty was returning to World War 2? They were right on the money. Logo and everything. Activision has now confirmed the game with more details to come.","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-world-war-ii-confirmed-what-we-know-so-far","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f67a690c-143f-4064-b680-7a314aa00cc3/sm/24363-1492812152865-thumbnail.jpg","duration":327,"publication_date":"2017-04-21T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-what-can-microsoft-learn-from-the-switch","changefreq":"weekly","video":[{"title":"2017:E133 - What Can Xbox Scorpio Learn from the Nintendo Switch Launch?","description":"Nintendo Switch has been a huge success so far, turning around the company's financials and leaving the troubles of Wii U in the dust. Xbox has been having its own troubles this generation too. What can Microsoft learn from Nintendo's 180 to make Scorpio equally successful?","player_loc":"https://roosterteeth.com/embed/game-news-2017-what-can-microsoft-learn-from-the-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88911deb-5f56-42be-9b66-315171ac6c8b/sm/24363-1492811268110-thumbnail.jpg","duration":584,"publication_date":"2017-04-21T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-friday-roundup","changefreq":"weekly","video":[{"title":"2017:E79 - Battlefront 2 News Details + X-Files Returns (Again) + Elon Musk Making Us Androids","description":"More details about Star Wars Battlefront 2 are trickling out. X-Files was so successful the first time it returned that it's returning again. Elon Musk wants to turn us into androids so we can fight the future of AI dominance. Plus, DOTA 2 requires your phone number for ranked matches, Final Fantasy XV fixes things for PS4 Pro, a Japanese gaming legend almost threw out history, The Last Jedi director defends Kylo Ren's moving scar, Fast 10 will (probably) be the final Fast & Furious movie, and a new NASA picture shows us how tiny and insignificant we are.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-friday-roundup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61ceb24c-5d8f-4456-9b89-a5384cfb57f8/sm/24363-1492804968937-thumbnail.jpg","duration":544,"publication_date":"2017-04-21T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-g2a-grilled-by-developers","changefreq":"weekly","video":[{"title":"2017:E134 - G2A UNDER FIRE from Developers","description":"G2A's been in hot water with developers recently. Since their deal with Gearbox to distribute Bulletstorm: Full Clip fell apart over accusations that the Steam key reseller operates a grey marketplace, they've been struggling to get their message across. Which is why a G2A rep decided to present at a developers conference. What could go wrong?","player_loc":"https://roosterteeth.com/embed/game-news-2017-g2a-grilled-by-developers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7edf6ed8-ce85-45e5-b6db-a75be1ee4335/sm/24363-1492730087881-thumbnail.jpg","duration":557,"publication_date":"2017-04-21T00:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-2","changefreq":"weekly","video":[{"title":"2017:E78 - Battlefront 2 Secret Demo Details + Digital Games up to 74% + Wheel of Time TV Series","description":"Star Wars Battlefront 2 has been shown in behind-closed-doors demos and the details are getting out about other fixes they've made. Digital games now account r\\for 74% of games revenue in the US. A TV series based on The Wheel of Time books is officially in the works.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db7d66a9-479e-48f5-b806-7d6027822433/sm/24363-1492721304121-thumbnail.jpg","duration":537,"publication_date":"2017-04-20T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-witcher-author-blasts-video-games","changefreq":"weekly","video":[{"title":"2017:E132 - The Witcher Creator BLASTS Video Games","description":"The original creator of The Witcher has... some thoughts about video games as a medium and who made who a success. And he's not happy about all the punk kids who think his books are adaptations of the game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-witcher-author-blasts-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2780f752-6cf5-405a-b015-aba3a1ef3e7b/sm/24363-1492643382378-thumbnail.jpg","duration":527,"publication_date":"2017-04-20T00:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-an-snes-mini-coming","changefreq":"weekly","video":[{"title":"2017:E131 - Nintendo SNES Classic Mini THIS YEAR?","description":"A new report claims the reason Nintendo discontinued the NES Classic Edition is because they're hard at work on their next project for this year: an SNES Classic Edition. If so, Nintendo is crazy, but with their track record we can't really rule it out.","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-an-snes-mini-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff71bbdb-a31e-4375-8f9d-aef16facca35/sm/24363-1492641031338-thumbnail.jpg","duration":457,"publication_date":"2017-04-19T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cyberpunk-2077-delay-headline-2-writer-s-strike-getting-closer","changefreq":"weekly","video":[{"title":"2017:E77 - Cyberpunk 2077 Work SCRAPPED? + Pac-Man Maker Coming? + Spider-Man in More Marvel Films","description":"CD Projekt RED may have scrapped early pre-production work on Cyberpunk 2077. Bandai Namco has trademarked Pac-Man Maker, perhaps to follow in Mario Maker's footsteps. Spider-Man has been confirmed for a few more Marvel appearances. Plus, Ubisoft is expanding their studios, Telltale Guardians of the Galaxy reviews are in, StarCraft is now free, eSports will be a medal event at the Asian Games, a CSGO player's overcome adversity to nab a pro streaming contract, the writers strike is getting closer, and way too many people still use their phones while driving.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cyberpunk-2077-delay-headline-2-writer-s-strike-getting-closer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3defe836-8da1-456b-baed-deda45463af6/sm/24363-1492633830204-thumbnail.jpg","duration":663,"publication_date":"2017-04-19T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-media-versus-developers-the-culling","changefreq":"weekly","video":[{"title":"2017:E130 - Game Devs vs Media \"Frustum Culling\" Uproar EXPLAINED","description":"Have you ever heard of frustum culling? If you're a game developer, you probably have. Otherwise, maybe not? But either way, this development technique has accidentally set off a dispute between some indie developers and games media publications like Polygon and Kotaku, who are also at odds. And frankly, the whole thing is a bit silly.","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-media-versus-developers-the-culling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50d717fc-ea99-40b9-9596-605cb00f08be/sm/24363-1492560150499-thumbnail.jpg","duration":548,"publication_date":"2017-04-19T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-killer-incoming","changefreq":"weekly","video":[{"title":"2017:E129 - The New STEAM KILLER?","description":"A lot of companies have tried to take aim at Steam in the last few years. EA, Ubisoft, GOG, Facebook... so far none of them have made a dent. But could WeGame be the one to take them down?","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-killer-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5a9ac8b-a81e-426e-b86a-753a833cfee1/sm/24363-1492553290333-thumbnail.jpg","duration":416,"publication_date":"2017-04-18T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-3","changefreq":"weekly","video":[{"title":"2017:E76 - Hands-on for Xbox Scorpio + is GotG2 Good? + Cockroaches Invade PS4s","description":"Xbox will have hands-on demos of Xbox Scorpio for E3 attendees. Early impressions are rolling in for Guardians of the Galaxy vol 2 and they're pretty good. Cockroaches are invading PS4s and Sony won't repair infested consoles. Plus, Battlefront 2 will have split-screen on console, we've got some idea how long the Nintendo Switch battery will last playing Mario Kart, Quantic Dream is working on multiple unannounced games, we don't get a new Soulsborne game after all but a Souls-like game called Code Vein, Marvel has no plans for R-rated movies, Disney is creating a Star Wars starship hotel, and Twich is adding new subscription tiers.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d77b317e-8f0f-4031-8217-5da967b92e08/sm/24363-1492544391361-thumbnail.jpg","duration":484,"publication_date":"2017-04-18T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-mini-coming-well","changefreq":"weekly","video":[{"title":"2017:E128 - Nintendo Switch MINI? Um...","description":"Nintendo Switch has been a hit so far, leading analysts to gaze deep into their psychedelic crystal balls and make predictions about what's next. Following in the wisdom of internet comments everywhere, one analyst thinks we'll see a mini version of the console in 2 years. But before we throw out our giant Switch consoles, let's take a look at Nintendo's history of hardware revisions to see how likely that is.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-mini-coming-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35e48c31-d9cc-4edb-aee9-89f65d6514fe/sm/24363-1492473806910-thumbnail.jpg","duration":561,"publication_date":"2017-04-18T00:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-mini-coming-bioware-talks-mass-effect-criticism-fate-of-the-furious-beats-star-wars","changefreq":"weekly","video":[{"title":"2017:E75 - Xbox Scorpio \"Surprises\" + Bioware on Mass Effect Hate + Fate of the Furious Outsells Star Wars","description":"Expect pleasant surprises from Xbox Scorpio at E3, according to those who've seen it. Bioware responds to the criticisms about Mass Effect Andromeda. Fate of the Furious has broken the Star Wars: The Force Awakens box office record. Plus, Nintendo Switch worldwide sales surpass Nintendo's optimistic projections, Nier Automata challenges fans to fight Square-Enix CEO for butt costumes, NES Classic prices are skyrocketing thanks to scalpers, Carrie Fisher won't appear in Star Wars Episode IX after all but we will learn about Rey's parents, Star Wars is getting its own worlds at Disneyland and Disney World, the EFF is suing patent trolls who sued them for calling them patent trolls, and Peter Moore's exited the games industry.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-mini-coming-bioware-talks-mass-effect-criticism-fate-of-the-furious-beats-star-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc4f5cdd-6445-44be-a43e-64b6a8b2b145/sm/24363-1492466397755-thumbnail.jpg","duration":614,"publication_date":"2017-04-17T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-tons-more-detail-on-battlefront-2","changefreq":"weekly","video":[{"title":"2017:E127 - Star Wars Battlefront 2 FIXES EVERYTHING?","description":"We've got more details on Star Wars Battlefront 2, which is due out later this year. And it looks like all those online petitions and boycotts and reddit threads may have had an impact, because this game seems set to fix a lot of the issues players had the first time around. And also EA really wants players to stick around longer than a week or two this time.","player_loc":"https://roosterteeth.com/embed/game-news-2017-tons-more-detail-on-battlefront-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf9eb787-b565-4640-b8fc-1263f1c4a100/sm/24363-1492460077681-thumbnail.jpg","duration":394,"publication_date":"2017-04-17T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-big-games-for-2017","changefreq":"weekly","video":[{"title":"2017:E126 - 2017 the Best Year for Games EVER? What's STILL COMING","description":"2017 has already been a strong year for big games--Resident Evil VII, Horizon: Zero Dawn, The Legend of Zelda: Breath of the Wild... here's the thing. There's SO MUCH MORE still coming. Let's run down all the biggest games still set to release this year so you can start crying into your wallet.","player_loc":"https://roosterteeth.com/embed/game-news-2017-big-games-for-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8915cc90-dbc4-4d5d-935e-a515bc909c93/sm/24363-1492281968378-2017_games_still_coming.jpg","duration":595,"publication_date":"2017-04-15T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/glitch-please-first-pilot-run","changefreq":"weekly","video":[{"title":"FPE:E1 - 0.1 - The Pilot","description":"Join Ashley, Gus, and Ryan as they discuss the value of streaming games (11:54), Persona 5 (23:22), this week's news (45:35), and Ryan explains what the Xbox Scorpio's hardware stats really mean! (1:14:47)","player_loc":"https://roosterteeth.com/embed/glitch-please-first-pilot-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/455a0012-e7e2-4943-aa73-1dd3b950c585/sm/24363-1492211831400-GP01_-_THUMB2.jpg","duration":5542,"publication_date":"2017-04-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-officially-best-launch-ever-the-know-game-news","changefreq":"weekly","video":[{"title":"2017:E125 - Nintendo Switch OFFICIALLY Best Launch Ever! - The Know Game News","description":"Nintendo Switch is officially Nintendo's biggest hardware launch of all time, even outpacing launches like the Game Boy. There's also a truly puzzling statistic that shows more people bought copies of The Legend of Zelda: Breath of the Wild for Nintendo Switch than the actual Nintendo Switch. Have fun with that one, statistics nerds!","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-officially-best-launch-ever-the-know-game-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aea2a7f4-90e9-48e8-a09f-c0e54698380a/sm/24363-1492214382279-thumbnail2.jpg","duration":546,"publication_date":"2017-04-15T01:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-star-wars-the-last-jedi-trailer-b-r-e-a-k-d-o-w-n-everything-you-need-to-know","changefreq":"weekly","video":[{"title":"2017:E15 - Star Wars: The Last Jedi THEORIES and Trailer Breakdown!","description":"Star Wars: The Last Jedi finally has a teaser trailer so we can get a glimpse at the movie and start overthinking absolutely everything well in advance. Let's break down what we're shown and see how it might all fit together.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-star-wars-the-last-jedi-trailer-b-r-e-a-k-d-o-w-n-everything-you-need-to-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26edaec8-1eb4-4da0-baa1-ebe82535b304/sm/24363-1492210959765-thumbnail.jpg","duration":689,"publication_date":"2017-04-15T01:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nes-classic-dead-xbox-refunds-are-b-o-l-l-o-c-k-s-robots-are-r-a-c-i-s-t","changefreq":"weekly","video":[{"title":"2017:E74 - NES Classic DEAD + Xbox Refunds Are \"BOLLOCKS\" + Robots Are RACIST?","description":"NES Classic is so successful Nintendo's killing it off. A developer is already speaking out--loudly--against Xbox's upcoming refund feature. Robots are already turning out racists so the future is pretty dark. Plus, Naughty Dog wants The Last of Us 2 to beat Horizon: Zero Dawn, the guy who invented Cyberpunk is iffy on CD Projekt's trademark, LEGO City Undercover is performing better than expected on Nintendo Switch, big surprise--Pokemon makes billions and made extra billions last year, a new study says video games are why people are unemployed, and Beauty and the Beast has trampled all over Batman v Superman's box office record.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nes-classic-dead-xbox-refunds-are-b-o-l-l-o-c-k-s-robots-are-r-a-c-i-s-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f6b2195-4913-4bb2-ba91-e825057a97fe/sm/24363-1492204011800-thumbnail.jpg","duration":597,"publication_date":"2017-04-14T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-new-games-for-2017-is-it-enough","changefreq":"weekly","video":[{"title":"2017:E124 - Nintendo Switch NEW GAMES for 2017! Is It Enough?","description":"Nintendo Switch has announced a bunch of new games and set some game release dates for 2017. There aren't enough to really fill out the year yet, and a lot of the games coming to the system are old ports, so there are still some issues to overcome, but all the first party efforts are looking pretty solid.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-new-games-for-2017-is-it-enough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/417c70c3-72ac-4c03-8e69-aadcebf3d1cd/sm/24363-1492127301859-thumbnail.jpg","duration":427,"publication_date":"2017-04-13T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-one-to-offer-refunds","changefreq":"weekly","video":[{"title":"2017:E123 - Xbox One to Offer REFUNDS","description":"Xbox is taking another page out of Steam's book. Microsoft is set to begin offering refunds for digital games under certain conditions, which may put a dent in the sales of games that release with glaring issues.","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-one-to-offer-refunds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d91a438c-68eb-4c67-8d5c-38eaab5cc7f1/sm/24363-1492121847555-thumbnail.jpg","duration":558,"publication_date":"2017-04-13T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-scorpio-confirmed-for-e3-halo-3-leaked-for-p-c-more-battlefront-2-coming","changefreq":"weekly","video":[{"title":"2017:E73 - Scorpio CONFIRMED for E3 + New Bloodborne/Dark Souls Game Teased? + Apple to Buy Disney?","description":"Xbox has confirmed that we'll have to wait for E3 to see Xbox Scorpio. More hints that Halo 3 could be getting a release on PC 10 years later. Apple is reportedly in the market to acquire Disney. Plus, Bandai Namco is teasing what could be a new game in the vein of Bloodborne or Dark Souls, Jude Law is the new Dumbledore, are we in for an R-Rated Mega Man, Burger King tried to hijack Google home devices, League of Legends fans are disappointed over Riot's ruling against an esports team, and more Battlefront 2 details are coming.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-scorpio-confirmed-for-e3-halo-3-leaked-for-p-c-more-battlefront-2-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/189bdfb0-87a3-4888-9cd9-b9b546afca1d/sm/24363-1492119541255-thumbnail.jpg","duration":616,"publication_date":"2017-04-13T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-new-scorpio-details-what-s-microsoft-s-plan","changefreq":"weekly","video":[{"title":"2017:E122 - The Plan for XBOX SCORPIO","description":"Xbox has revealed the dev kit for Xbox Scorpio, which may hint at what to expect for the console itself. Plus, they're teasing the future of games and how they want to break free of console generations.","player_loc":"https://roosterteeth.com/embed/game-news-2017-new-scorpio-details-what-s-microsoft-s-plan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b074064-ccb3-4912-99ca-cdb5884c40a2/sm/24363-1492040631476-thumbnail.jpg","duration":592,"publication_date":"2017-04-13T00:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-call-of-duty-release-date-g2a-defends-email-scams-oculus-wants-a-re-trial","changefreq":"weekly","video":[{"title":"2017:E72 - Get PAID for Nintendo Switch Bugs + G2A Defends Email Scams + Oculus Wants a Re-Trial","description":"Nintendo is offering a bounty for Nintendo Switch bug hunters. G2A defends the legitimacy of Steam keys obtained via email scams. Oculus wants a re-trial in the Zenimax lawsuit. Plus, Call of Duty's release date may have leaked, Microsoft hints at games to come for Xbox Scorpio, Prey gets a demo, Peter Molyneux slams Xbox Kinect, Dragon Quest XI's Switch release is up in the air right now, Gears of War 4 is getting ranked crossplay, Guillermo Del Toro is interested in making a Star Wars movie, and Apple is discontinuing support for iPhone 5. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-call-of-duty-release-date-g2a-defends-email-scams-oculus-wants-a-re-trial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/448d962f-4dad-4d5b-85f4-135d0fa213d4/sm/24363-1492039063381-thumbnail.jpg","duration":739,"publication_date":"2017-04-12T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-star-wars-battlefront-ii-trailer-l-e-a-k-e-d","changefreq":"weekly","video":[{"title":"2017:E121 - Star Wars Battlefront 2 LEAK! Campaign First Details","description":"Plan on a very Star Wars kind of week thanks to Star Wars Celebration happening in Florida. To kick it off early, the teaser for Star Wars Battlefront 2 has leaked ahead of the event, revealing details about the campaign, plus a bunch of the different Star Wars characters you'll see in the game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-star-wars-battlefront-ii-trailer-l-e-a-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3016819-bf99-4552-b62c-608c4669e731/sm/24363-1492025459658-thumbnail.jpg","duration":484,"publication_date":"2017-04-12T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-g2a-fights-back","changefreq":"weekly","video":[{"title":"2017:E120 - G2A Fights Back","description":"Steam key reseller G2A has been in more trouble than usual with the gaming community after a partnership with Gearbox went south over demands about changes to the platform. But G2A's not going to take the criticism lying down. OH NO. They're going to stand up for it!","player_loc":"https://roosterteeth.com/embed/game-news-2017-g2a-fights-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acbb43a9-ef8a-4b5f-bf39-6562dca31da9/sm/24363-1491965806864-g2a_fights_back_thumb.jpg","duration":562,"publication_date":"2017-04-12T02:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-twitch-to-get-banned-in-germany","changefreq":"weekly","video":[{"title":"2017:E18 - Required Streaming License Costs THOUSANDS of Dollars!?","description":"Another government is requiring game streamers to pay thousands of dollars for a radio broadcasting license. What does this mean for streamers around the world?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-twitch-to-get-banned-in-germany","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cebc0a36-faa6-4243-8bc7-e3b3b4b17169/sm/24363-1491951573901-twitch_license_required.jpg","duration":503,"publication_date":"2017-04-11T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-super-mario-maker-good","changefreq":"weekly","video":[{"title":"S1:E33 - Is Super Mario Maker Good?","description":"Super Mario Maker has been officially released, BUT! Is it good?","player_loc":"https://roosterteeth.com/embed/is-super-mario-maker-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aad8519e-721f-4c38-ab13-8a562eff60d4/sm/video_thumbnail_12888014-1450201285.PNG","duration":113,"publication_date":"2015-12-15T09:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-mega-man-legacy-collection-good","changefreq":"weekly","video":[{"title":"S1:E32 - Is Mega Man Legacy Collection Good?","description":"Is the Mega Man Legacy collection good???","player_loc":"https://roosterteeth.com/embed/is-mega-man-legacy-collection-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45c137ac-0bdd-4a8a-afa2-38fce9df45df/sm/video_thumbnail_12888013-1450201068.PNG","duration":114,"publication_date":"2015-12-15T09:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-the-black-ops-iii-beta-good","changefreq":"weekly","video":[{"title":"S1:E31 - Is the Black Ops III Beta Good?","description":"S1:E31 - Is the Black Ops III Beta Good?","player_loc":"https://roosterteeth.com/embed/is-the-black-ops-iii-beta-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17de2f7e-bec5-4d00-a70b-c2de4b01c775/sm/video_thumbnail_12888012-1450200849.PNG","duration":125,"publication_date":"2015-12-15T09:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-the-street-fighter-v-beta-good","changefreq":"weekly","video":[{"title":"S1:E30 - Is the Street Fighter V Beta Good?","description":"S1:E30 - Is the Street Fighter V Beta Good?","player_loc":"https://roosterteeth.com/embed/is-the-street-fighter-v-beta-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80fee862-2cae-4fa4-821b-09845e02a810/sm/video_thumbnail_12888011-1450200555.PNG","duration":77,"publication_date":"2015-12-15T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-playstation-role-playing-games","changefreq":"weekly","video":[{"title":"S1:E158 - Top 10 PlayStation Role Playing Games","description":"Tell us your favorite RPG in the comments below!","player_loc":"https://roosterteeth.com/embed/top-10-playstation-role-playing-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a66b424a-0ce9-45ae-a512-b8500915db58/sm/video_thumbnail_12888010-1450199813.PNG","duration":397,"publication_date":"2015-12-15T09:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-scariest-games-happy-halloween-2015","changefreq":"weekly","video":[{"title":"S1:E157 - Top 10 Scariest Games (HAPPY HALLOWEEN 2015!)","description":"Tell us what your scariest game is in the comments below!","player_loc":"https://roosterteeth.com/embed/top-10-scariest-games-happy-halloween-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9784013b-0362-44cf-91a5-f7643752ff09/sm/video_thumbnail_12888009-1450199589.PNG","duration":430,"publication_date":"2015-12-15T09:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-metal-gear-moment-ever","changefreq":"weekly","video":[{"title":"S1:E76 - The Best Metal Gear Moment EVER","description":"Tell us your best Metal Gear moment in the comments below!","player_loc":"https://roosterteeth.com/embed/the-best-metal-gear-moment-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5c7ca57-f66a-4ae0-bc4b-5c02673a9dad/sm/video_thumbnail_12888008-1450199262.PNG","duration":377,"publication_date":"2015-12-15T09:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-e3-2015-game-ever-e3-2015","changefreq":"weekly","video":[{"title":"S1:E75 - The BEST E3 2015 Game EVER! | E3 2015","description":"Tell us which game you're most excited for from this year's E3!","player_loc":"https://roosterteeth.com/embed/the-best-e3-2015-game-ever-e3-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b96ada0f-2163-4b72-97d8-6da134bc00ac/sm/video_thumbnail_12888007-1450199029.PNG","duration":388,"publication_date":"2015-12-15T09:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**bonus**-the-best-e3-2015-moment-ever","changefreq":"weekly","video":[{"title":"S1:E74 - **BONUS** The Best E3 2015 Moment EVER!","description":"Tell us what you liked about e# 2015 in the comments below!","player_loc":"https://roosterteeth.com/embed/**bonus**-the-best-e3-2015-moment-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24cc5a87-adec-4e8c-8332-c5b86ecc821d/sm/video_thumbnail_12888006-1450198625.PNG","duration":418,"publication_date":"2015-12-15T08:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-snes-game-ever","changefreq":"weekly","video":[{"title":"S1:E73 - The Best SNES Game Ever!","description":"Tell us your best ever SNES game in the comments below!","player_loc":"https://roosterteeth.com/embed/the-best-snes-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/501f8356-ad23-4766-adaf-ddd88994abaf/sm/video_thumbnail_12888005-1450198278.PNG","duration":376,"publication_date":"2015-12-15T08:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-star-wars-games","changefreq":"weekly","video":[{"title":"S1:E156 - Top 10 Star Wars Games","description":"With the upcoming Star Wars movie, we were so excited that we decided to countdown the best Star Wars Games. Is your favorite on the list? Let's find out!\r\n\r\n\r\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! \r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-star-wars-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89036ca7-c70e-4762-9d41-a468efc9264b/sm/video_thumbnail_12887829-1449863739.jpg","duration":504,"publication_date":"2015-12-11T11:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/community-project-the-games-that-defined-2015","changefreq":"weekly","video":[{"title":"S1:E912 - Community Project: The Games that Defined 2015","description":"Hey g1’s, Madhero of g1 Features here and uhhh…. Hey wait a minute? This isn’t the g1 Features \r\n\r\npage? Nor is it my own page. WHAT IS GOING ON?! PURE CHAOS! DOGS AND CATS LIVING TOGETHER?! \r\n\r\nMASS HYSTERIA!!!\r\n\r\n \r\n\r\nAlright, alright, enough goofing around here. I’m here to talk about something really really cool and \r\n\r\nexciting to talk about. Some of you may remember last year, where I did a little community event called \r\n\r\nThe Games The Defined 2014, which I also did last year still on my old blog. What started as a response \r\n\r\nto a lame Cracked article has turned into something I look forward to doing every year. Last year \r\n\r\nespecially, after having some doubts, blew me completely out of the water, with over 30 responses of \r\n\r\nwhich most were very well written with some great stories to tell about the games released that year. \r\n\r\nAnd now. ITS BACK! AND BETTER THAN EVER.\r\n\r\n \r\n\r\nScrewattack’s pushing and support of the project helped it become a far bigger thing than I thought it \r\n\r\nwould be, and since contacting them, they’ve been really supportive, hence this cool video that you are \r\n\r\nseeing now explaining everything (big shoutout to Shaun Bolen),  but in case if you need a reminder (or \r\n\r\ny’know, just read the blog again), here’s how it goes.\r\n\r\n \r\n\r\nGames That DEFINED 2015 is not GOTY 2015. Basically what it means is a game that either you feel \r\n\r\nmeant something to the year that it came out in (for example, Fallout 4’s bugs being far less forgivable \r\n\r\nnow in a world where every AAA game is a open world, or Splatoon being the wake up call of Nintendo \r\n\r\nfinally entering modern gaming and in the best way possible) or something that made you discover \r\n\r\nsomething about yourself in a way that defined the year for you personally. This can be good, or bad \r\n\r\n(there used to be a For Better or Worse tagline). It does not just mean “hey this game was really \r\n\r\ngood/bad”\r\n\r\n \r\n\r\nNow for some other rules.\r\n\r\n \r\n\r\n\r\n\r\n\t\r\n\tIt has to be a game released in 2015. If it came out last year, but you only","player_loc":"https://roosterteeth.com/embed/community-project-the-games-that-defined-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6adc9b6d-dc88-41d5-b8fa-4b1d37401f28/sm/video_thumbnail_12887827-1449856811.jpg","duration":105,"publication_date":"2015-12-11T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-contra-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E56 - Reasons We HATE Contra w/ Evil Craig","description":"Tell me why YOU HATE Contra in the comments! and follow me on Twitter you sheep - @XxEVILCRAIGxX","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-contra-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a341403a-dea2-4ff2-aeb6-8559d8586831/sm/video_thumbnail_12887654-1449516028.png","duration":78,"publication_date":"2015-12-10T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-love-contra","changefreq":"weekly","video":[{"title":"S1:E8 - 19 Reasons We LOVE Contra","description":"Tell us why you LOVE Contra in the comments below!","player_loc":"https://roosterteeth.com/embed/19-reasons-we-love-contra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/280fad85-a08d-4e1d-8743-0a5ce9f319f1/sm/video_thumbnail_12887655-1449516036.png","duration":63,"publication_date":"2015-12-10T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sam-has-more-victims-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E911 - Sam Has More Victims! | SideScrollers Extended Cut","description":"S1:E911 - Sam Has More Victims! | SideScrollers Extended Cut","player_loc":"https://roosterteeth.com/embed/sam-has-more-victims-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfafc4e6-7645-4a53-af5c-5aacb6002905/sm/video_thumbnail_12887761-1449721242.jpg","duration":496,"publication_date":"2015-12-09T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/taste-test-of-horrors-sidescrollers-12915","changefreq":"weekly","video":[{"title":"S1:E208 - Taste Test of Horrors | SideScrollers 12/9/15","description":"This episode of SideScrollers is brought to you by 1UP Box! Use coupon code \"ScrewAttack\" and get your first month for less than ten dollars! Just click the link below to order yours today!\r\nhttp://1upbox.co/1SvHAAN\r\n\r\nSam is clearly on Team Chaos as he brings in an assortment of bizarre drinks he found at the nearby asian grocery store! What could they possibly taste like?!?\r\n\r\nGet ScrewAttack podcasts on iTunes!","player_loc":"https://roosterteeth.com/embed/taste-test-of-horrors-sidescrollers-12915","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0ba4cbf-b036-45ff-99bb-019de90c1156/sm/video_thumbnail_12888221-1450384640.jpg","duration":3266,"publication_date":"2015-12-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-nes-games-with-the-angry-video-game-nerd","changefreq":"weekly","video":[{"title":"S1:E155 - Top 10 WORST NES Games with the Angry Video Game Nerd","description":"If we're counting down the worst of the NES we HAD to turn to our buddy The Nerd to count them down.\r\n\r\nWe're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! \r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\r\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\r\nWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylist\r\nWatch SideScrollers - http://bit.ly/SideScrollersPlaylist\r\nWatch The Industry - http://bit.ly/IndustryPL\r\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\r\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\r\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\r\nWatch The Best Ever - http://bit.ly/BestEverPlaylist\r\nWatch The Game OverThinker - http://bit.ly/OverThinkerPL\r\nWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/top-10-worst-nes-games-with-the-angry-video-game-nerd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6405b521-81c5-42a5-8e39-d23bd849be2e/sm/video_thumbnail_12887514-1449243609.jpg","duration":414,"publication_date":"2015-12-04T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-super-mario-world-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E55 - Reasons We HATE Super Mario World w/ EVIL CRAIG","description":"Tell me why you HATE Super Mario World in the comments! and follow me on twitter - @XxEVILCRAIGxX","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-super-mario-world-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1656c3fb-9474-424a-a95d-0d2294876fc0/sm/video_thumbnail_12887285-1448900904.png","duration":99,"publication_date":"2015-12-03T06:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/23-reasons-we-love-super-mario-world","changefreq":"weekly","video":[{"title":"S1:E9 - 23 Reasons We LOVE Super Mario World","description":"Tell us why you LOVE Super Mario World in the comments!","player_loc":"https://roosterteeth.com/embed/23-reasons-we-love-super-mario-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27ac4238-5fb4-409f-934c-d3ba8ac9cfdd/sm/video_thumbnail_12887286-1448900915.png","duration":84,"publication_date":"2015-12-03T06:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-31","changefreq":"weekly","video":[{"title":"S2:E31 - Green Arrow VS Hawkeye","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b87c1336-2819-4bb8-9dbb-a89bf00f2d5e/sm/video_thumbnail_12887368-1449036572.jpg","duration":1149,"publication_date":"2015-12-01T22:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-star-wars-battlefront-good","changefreq":"weekly","video":[{"title":"S1:E29 - Is Star Wars: Battlefront Good?","description":"Fans have waited a long time for a new Battlefront game, BUT is it good?","player_loc":"https://roosterteeth.com/embed/is-star-wars-battlefront-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5a5f8dd-8e01-47d1-a4c4-90ba99cac8ef/sm/video_thumbnail_12887053-1448489868.png","duration":118,"publication_date":"2015-11-29T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/batman-dual-wielded-guns","changefreq":"weekly","video":[{"title":"S1:E13 - Batman Dual Wielded Guns??","description":"We're on our way to THREE MILLION SUBS! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! \r\n\r\nFrom the annotations:\r\nMore Desk of DEATH BATTLE - https://www.youtube.com/playlist?list=PLY_6uAtgkYXkVavJkLoRTLpf505GTqWv2\r\n\r\nMore DEATH BATTLE - https://www.youtube.com/playlist?list=PLB833073B659FD65A\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\r\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\r\nWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylist\r\nWatch SideScrollers - http://bit.ly/SideScrollersPlaylist\r\nWatch The Industry - http://bit.ly/IndustryPL\r\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\r\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\r\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\r\nWatch The Best Ever - http://bit.ly/BestEverPlaylist\r\nWatch The Game OverThinker - http://bit.ly/OverThinkerPL\r\nWatch Is It Good - http://bit.ly/IsItGoodPlaylist\r\n\r\n ","player_loc":"https://roosterteeth.com/embed/batman-dual-wielded-guns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f0fc709-7fe4-42ed-b9f0-8a0ec64c38c3/sm/video_thumbnail_12887184-1448728288.jpg","duration":365,"publication_date":"2015-11-29T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-castlevania-w-evil-craig","changefreq":"weekly","video":[{"title":"S1:E54 - Reasons We HATE Castlevania w/ Evil Craig","description":"Tell me why you HATE Castlevania! And go follow me on twitter you sheep - @XxEVILCRAIGxX\r\n~Evil Craig","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-castlevania-w-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8338402-72bc-44ea-a390-675974307407/sm/video_thumbnail_12887051-1448489655.png","duration":73,"publication_date":"2015-11-26T06:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-castlevania","changefreq":"weekly","video":[{"title":"S1:E10 - 16 Reasons We LOVE Castlevania","description":"Tell us why you LOVE Castlevania in the comments below!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-castlevania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b86eb2-6bb0-467a-9eeb-12539241195a/sm/video_thumbnail_12887050-1448489652.png","duration":56,"publication_date":"2015-11-26T06:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-the-top-3-worst-thanksgiving-foods","changefreq":"weekly","video":[{"title":"S1:E207 - SideScrollers - The Top 3 WORST Thanksgiving Foods","description":"S1:E207 - SideScrollers - The Top 3 WORST Thanksgiving Foods","player_loc":"https://roosterteeth.com/embed/sidescrollers-the-top-3-worst-thanksgiving-foods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c84c5ae2-9121-4d91-bd47-0a5b0396f768/sm/video_thumbnail_12887037-1448481202.jpg","duration":3554,"publication_date":"2015-11-25T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-case-for-top-10-slides-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E910 - A Case For Top 10 Slides | SideScrollers Extended Cut","description":"Shaun Bolen makes his case for doing Top 10 Slides","player_loc":"https://roosterteeth.com/embed/a-case-for-top-10-slides-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1c3617f-7882-4331-a64d-9d827abab672/sm/video_thumbnail_12887042-1448485320.jpg","duration":569,"publication_date":"2015-11-25T13:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hawkeye-lines-up-his-shot-for-a-death-battle","changefreq":"weekly","video":[{"title":"S1:E6 - Hawkeye lines up his shot for a DEATH BATTLE!","description":"From the circus to the Avengers, Hawkeye is ready to take on the Green Arrow!","player_loc":"https://roosterteeth.com/embed/hawkeye-lines-up-his-shot-for-a-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53467cd-5fb7-4200-8b0c-f940d9a33da9/sm/video_thumbnail_12887016-1448423141.jpg","duration":169,"publication_date":"2015-11-25T07:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sams-top-5-best-way-to-die","changefreq":"weekly","video":[{"title":"S1:E206 - Sam's Top 5 Best Way To Die","description":"What the hell is this? Watch the full SideScrollers podcast and see where this craziness comes from: https://www.youtube.com/watch?v=u_B-kp7ffuE","player_loc":"https://roosterteeth.com/embed/sams-top-5-best-way-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bd0506a-b42d-4c10-9550-277e994acf3e/sm/video_thumbnail_12886872-1448160488.jpg","duration":153,"publication_date":"2015-11-21T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-things-we-want-in-zelda-wii-unx","changefreq":"weekly","video":[{"title":"S1:E154 - Top 10 Things We Want in Zelda Wii U/NX","description":"The next big Zelda is coming... Let's countdown what we want to see on this new game!\r\n\r\nIn the annotations: \r\nWatch more Top 10s - http://www.youtube.com/watch?v=qxC_PlPT37U&list=PL093A0D4B558C61E5&index=1\r\nOur Podcast SideScrollers - http://www.youtube.com/watch?v=u_B-kp7ffuE&list=PLC379E63DCC7534F6&index=1\r\nPick up ScrewAttack Merch - http://store.roosterteeth.com/collections/screwattack\r\n\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-things-we-want-in-zelda-wii-unx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/221e8ded-218a-4686-a3ec-d97e91046872/sm/video_thumbnail_12886807-1448038531.jpg","duration":390,"publication_date":"2015-11-20T08:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-what-is-the-best-way-to-die","changefreq":"weekly","video":[{"title":"S1:E205 - SideScrollers - What is the BEST Way to Die???","description":"S1:E205 - SideScrollers - What is the BEST Way to Die???","player_loc":"https://roosterteeth.com/embed/sidescrollers-what-is-the-best-way-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11313043-49fb-4769-93c4-d2d4fc4bc8e5/sm/video_thumbnail_12886757-1447906013.jpg","duration":3384,"publication_date":"2015-11-18T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/here-comes-the-money-sidescrollers-extended-cut-111815","changefreq":"weekly","video":[{"title":"S1:E909 - Here Comes The Money | SideScrollers Extended Cut 11/18/15","description":"S1:E909 - Here Comes The Money | SideScrollers Extended Cut 11/18/15","player_loc":"https://roosterteeth.com/embed/here-comes-the-money-sidescrollers-extended-cut-111815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b375120-4cde-4079-814c-73590f94c91c/sm/video_thumbnail_12886741-1447888861.jpg","duration":509,"publication_date":"2015-11-18T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-30","changefreq":"weekly","video":[{"title":"S2:E30 - Mega Man VS Astro Boy","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63199ee6-9228-4584-a89a-ef55d9979c40/sm/video_thumbnail_12886726-1447870892.jpg","duration":1011,"publication_date":"2015-11-18T10:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/green-arrow-draws-his-bow-for-a-death-battle","changefreq":"weekly","video":[{"title":"S1:E5 - Green Arrow draws his bow for a DEATH BATTLE!","description":"The Emerald Archer is going to take on Marvel's own Hawkeye soon. Get to know the one and only Oliver Queen before the big showdown!","player_loc":"https://roosterteeth.com/embed/green-arrow-draws-his-bow-for-a-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35133a85-6586-4ddb-9126-1cf16391deb4/sm/video_thumbnail_12886723-1447870583.jpg","duration":143,"publication_date":"2015-11-18T10:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-sonic-games","changefreq":"weekly","video":[{"title":"S1:E153 - Top 10 Worst Sonic Games","description":"Not every game is good... But that doesn't mean we can't countdown the worst the blue blur can offer.\r\n\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-worst-sonic-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/912fe62a-6240-4dc0-a187-8760f58408e8/sm/video_thumbnail_12886662-1447717581.jpg","duration":611,"publication_date":"2015-11-16T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-the-legend-of-zelda-tri-force-heroes-good","changefreq":"weekly","video":[{"title":"S1:E28 - Is The Legend of Zelda: Tri Force Heroes Good?","description":"The new addition to the Zelda timeline has been released, BUT! is it good?","player_loc":"https://roosterteeth.com/embed/is-the-legend-of-zelda-tri-force-heroes-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/821ce312-6c40-4b75-95c4-0cd3a99d11d0/sm/video_thumbnail_12886416-1447282429.png","duration":113,"publication_date":"2015-11-15T07:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-is-a-gelmez-sidescrollers-111315","changefreq":"weekly","video":[{"title":"S1:E204 - What Is A Gelmez? | SideScrollers 11/13/15","description":"An absolutely delirious Sam is coming from the 72 Hour Fallout 4 Stream to join us on SideScrollers. Only good things will come of this!\r\n\r\nSend Sam your Newsdesk stories! Sam@ScrewAttack.com\r\n\r\nSend your QotW answers here! Live@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/s...","player_loc":"https://roosterteeth.com/embed/what-is-a-gelmez-sidescrollers-111315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e77cb267-7a7b-44a8-a4e7-c53adfb5d91c/sm/video_thumbnail_12886650-1447696862.jpg","duration":3040,"publication_date":"2015-11-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-yo-kai-watch-good","changefreq":"weekly","video":[{"title":"S1:E27 - Is Yo-Kai Watch Good?","description":"The Japanese sensation, Yo-Kai Watch, has finally come over to America, BUT is it good?","player_loc":"https://roosterteeth.com/embed/is-yo-kai-watch-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe8a7857-c688-4234-9ec7-a60bdbe8014d/sm/video_thumbnail_12886414-1447282203.png","duration":108,"publication_date":"2015-11-12T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-much-would-it-cost","changefreq":"weekly","video":[{"title":"S1:E908 - How Much Would It Cost...","description":"Craig has a simple question.","player_loc":"https://roosterteeth.com/embed/how-much-would-it-cost","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/533e7949-4bdf-4905-a031-f8e0c7f7995f/sm/video_thumbnail_12886418-1447284199.jpg","duration":486,"publication_date":"2015-11-11T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-fallout-4-good","changefreq":"weekly","video":[{"title":"S1:E26 - Is Fallout 4 Good?","description":"Fans sure have waited a long time for Fallout 4, BUT Is it good?","player_loc":"https://roosterteeth.com/embed/is-fallout-4-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56ee8237-1061-46b3-8d8d-9f8e0a785c6a/sm/video_thumbnail_12886027-1446672767.png","duration":100,"publication_date":"2015-11-08T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-xmen","changefreq":"weekly","video":[{"title":"S1:E152 - Top 10 Xmen","description":"We're on our way to 2.5 Million Subs! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! \r\n\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-xmen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3df72737-fed8-4b72-a5ab-989e153172df/sm/video_thumbnail_12886160-1446833162.jpg","duration":419,"publication_date":"2015-11-06T10:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-kept-secret","changefreq":"weekly","video":[{"title":"S1:E203 - The Worst Kept Secret","description":"The most obvious thing we could announce right now....has been announced! Let's talk about it a bit.\r\n\r\nSend us your questions! Use #SideScrollers on Twitter!\r\nSend Sam your Newsdesk stories!\r\nSam@ScrewAttack.com\r\nSend us your QotW answers!\r\nLive@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/the-worst-kept-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f10db94-18f1-4453-b7d0-9bb8753a1e0a/sm/video_thumbnail_12886649-1447696708.jpg","duration":3179,"publication_date":"2015-11-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-extended-cut-about-nothing-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E907 - The Extended Cut About Nothing | SideScrollers Extended Cut","description":"Hello...Newman.","player_loc":"https://roosterteeth.com/embed/the-extended-cut-about-nothing-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/176ce129-5ad1-4469-be1e-cb5df8dfa013/sm/video_thumbnail_12886072-1446740910.jpg","duration":584,"publication_date":"2015-11-05T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-assassins-creed-syndicate-good","changefreq":"weekly","video":[{"title":"S1:E25 - Is Assassin's Creed Syndicate Good?","description":"Assassin's Creed Syndicate brings a ton of new features to the franchise, BUT Is it good?","player_loc":"https://roosterteeth.com/embed/is-assassins-creed-syndicate-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/336ea413-283d-47bd-b72f-87809d769514/sm/video_thumbnail_12886009-1446655079.png","duration":103,"publication_date":"2015-11-05T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mega-man-gets-equipped-for-a-death-battle","changefreq":"weekly","video":[{"title":"S1:E4 - Mega Man gets equipped for a DEATH BATTLE!","description":"What will the Blue Bomber be packing for his fight against Astro Boy?","player_loc":"https://roosterteeth.com/embed/mega-man-gets-equipped-for-a-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/463514ea-8418-46bf-8058-019754da43ec/sm/video_thumbnail_12885702-1446245214.jpg","duration":137,"publication_date":"2015-10-30T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chad-and-hip-hop-dont-mix-extended-cut","changefreq":"weekly","video":[{"title":"S1:E906 - Chad And Hip-Hop Don't Mix | Extended Cut","description":"S1:E906 - Chad And Hip-Hop Don't Mix | Extended Cut","player_loc":"https://roosterteeth.com/embed/chad-and-hip-hop-dont-mix-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe04746b-9f88-4e3e-bcc4-0117c8ad7445/sm/video_thumbnail_12885647-1446159137.jpg","duration":690,"publication_date":"2015-10-29T15:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-minecraft","changefreq":"weekly","video":[{"title":"S1:E53 - Reasons We HATE Minecraft","description":"Tell me why you HATE Minecraft in the comments, and follow me on twitter - @XxEvilCraigxX","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14e059bf-cda8-476a-bc4a-ae3be06309d9/sm/video_thumbnail_12885565-1446052380.png","duration":91,"publication_date":"2015-10-29T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-minecraft","changefreq":"weekly","video":[{"title":"S1:E11 - 18 Reasons We LOVE Minecraft","description":"Tell us why you LOVE Minecraft in the comments below!","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cfe6b6a-c0b6-42d0-aa44-fd7b37180ca3/sm/video_thumbnail_12885566-1446052397.png","duration":66,"publication_date":"2015-10-29T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chewbacca-was-arrested-sidescrollers-102815","changefreq":"weekly","video":[{"title":"S1:E202 - Chewbacca Was Arrested? | SideScrollers 10/28/15","description":"S1:E202 - Chewbacca Was Arrested? | SideScrollers 10/28/15","player_loc":"https://roosterteeth.com/embed/chewbacca-was-arrested-sidescrollers-102815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02859da0-c9a7-4808-9350-75a7d7767d7a/sm/video_thumbnail_12886648-1447696509.jpg","duration":4221,"publication_date":"2015-10-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-29","changefreq":"weekly","video":[{"title":"S2:E29 - Yang VS Tifa","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/033d74b3-9b3a-4aa8-9700-fc8ecd062afc/sm/video_thumbnail_12885454-1445893431.jpg","duration":908,"publication_date":"2015-10-26T14:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battles-hard-drive-is-gone","changefreq":"weekly","video":[{"title":"S1:E6 - DEATH BATTLE's Hard Drive is GONE!","description":"Had So much fun making the series! Hopefully we'll see you in Season 2 next year! Thanks for all of your support with the new show. Means the world.","player_loc":"https://roosterteeth.com/embed/death-battles-hard-drive-is-gone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88f72786-ebed-445f-8591-1a5e0ec9894d/sm/video_thumbnail_12885446-1445878881.JPG","duration":719,"publication_date":"2015-10-26T10:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-chibi-robo-zip-lash-good","changefreq":"weekly","video":[{"title":"S1:E24 - Is Chibi-Robo! Zip Lash Good?","description":"The new Chibi-Robo game sure is adorable, BUT Is It Good?","player_loc":"https://roosterteeth.com/embed/is-chibi-robo-zip-lash-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda5d06f-edfa-4dd0-8558-6c1d3fa2bd8f/sm/video_thumbnail_12885132-1445454903.png","duration":127,"publication_date":"2015-10-22T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/carving-pumpkins-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E905 - Carving Pumpkins! | SideScrollers Extended Cut","description":"S1:E905 - Carving Pumpkins! | SideScrollers Extended Cut","player_loc":"https://roosterteeth.com/embed/carving-pumpkins-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a60c5028-8001-4db5-b190-03cc00302989/sm/video_thumbnail_12885148-1445473995.jpg","duration":355,"publication_date":"2015-10-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sean-connery-did-what-sidescrollers-102115","changefreq":"weekly","video":[{"title":"S1:E201 - Sean Connery Did WHAT?!? | SideScrollers 10/21/15","description":"We're changing things up! Segments coming and going!\r\n\r\nSend Sam your Newsdesk stories!\r\nSam@ScrewAttack.com\r\n\r\nSend QotW answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/sean-connery-did-what-sidescrollers-102115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaadaf93-80d0-4297-a61e-1e59738de571/sm/video_thumbnail_12885181-1445526290.jpg","duration":4264,"publication_date":"2015-10-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sephiroth-vs-vergil-one-minute-melee","changefreq":"weekly","video":[{"title":"S1:E19 - Sephiroth Vs. Vergil | One Minute Melee","description":"S1:E19 - Sephiroth Vs. Vergil | One Minute Melee","player_loc":"https://roosterteeth.com/embed/sephiroth-vs-vergil-one-minute-melee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b2692cc-8dde-478e-bf75-2eb3877ac318/sm/video_thumbnail_12885092-1445439086.jpg","duration":167,"publication_date":"2015-10-19T09:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-superhero-games","changefreq":"weekly","video":[{"title":"S1:E151 - Top 10 Superhero Games","description":"Heroes, ASSEMBLE!!! The best Superherogames of all time! Excelsior!","player_loc":"https://roosterteeth.com/embed/top-10-superhero-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/854d2cd1-72cf-467c-bda1-a72efb944e80/sm/video_thumbnail_12884898-1445268489.jpg","duration":564,"publication_date":"2015-10-19T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-yoshis-woolly-world-good","changefreq":"weekly","video":[{"title":"S1:E23 - Is Yoshi's Woolly World Good?","description":"Yoshi's Wooly World is pretty darn adorable...BUT Is It Good?","player_loc":"https://roosterteeth.com/embed/is-yoshis-woolly-world-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ddcdb83-8674-4b25-ad3a-44a1d518a54b/sm/video_thumbnail_12884413-1444855696.png","duration":120,"publication_date":"2015-10-18T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-101415","changefreq":"weekly","video":[{"title":"S1:E904 - SideScrollers Extended Cut 10/14/15","description":"Craig's still angry and Sam is still inconsistent and fidgety.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-101415","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1973e08-2def-4d6a-b5da-42004e011c4f/sm/video_thumbnail_12884431-1444870304.jpg","duration":545,"publication_date":"2015-10-14T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-transformers-devastation-good","changefreq":"weekly","video":[{"title":"S1:E22 - Is Transformers Devastation Good?","description":"The latest Transformers game may be one of a kind, BUT Is It Good?","player_loc":"https://roosterteeth.com/embed/is-transformers-devastation-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9ccf323-ad4d-4507-8c9f-198e3ddc2201/sm/video_thumbnail_12883654-1444254819.png","duration":132,"publication_date":"2015-10-11T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/so-many-cameras-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E903 - So Many Cameras | SideScrollers Extended Cut","description":"What could we do with a 360 degree camera?","player_loc":"https://roosterteeth.com/embed/so-many-cameras-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/125fe60f-4357-4998-9c30-c8a5b52c8064/sm/video_thumbnail_12883845-1444429788.jpg","duration":378,"publication_date":"2015-10-10T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-will-the-future-be-like-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E200 - What Will The Future Be Like? | SideScrollers","description":"The \"future\" from Back to the Future 2 is almost here, but has our own imagination of the future died?\r\n\r\nSend your Newsdesk suggestions to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend your Question of the Week answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/what-will-the-future-be-like-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24833cae-30ce-4b37-aadb-c012d5e4dcb7/sm/video_thumbnail_12883843-1444428268.jpg","duration":4361,"publication_date":"2015-10-10T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jocelyn-the-intern-the-industry-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Jocelyn the Intern | The Industry Episode 5","description":"S1:E5 - Jocelyn the Intern | The Industry Episode 5","player_loc":"https://roosterteeth.com/embed/jocelyn-the-intern-the-industry-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05ff8003-159d-44f7-8445-8bf34c79fd35/sm/video_thumbnail_12883837-1444417667.jpg","duration":291,"publication_date":"2015-10-09T12:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/20-reasons-we-love-destiny-year-one","changefreq":"weekly","video":[{"title":"S1:E12 - 20 Reasons We LOVE Destiny: Year One","description":"Tell us why you LOVE Destiny in the comments below!","player_loc":"https://roosterteeth.com/embed/20-reasons-we-love-destiny-year-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c123789f-32e9-46c1-bc05-348199cb0676/sm/video_thumbnail_12883653-1444254569.png","duration":62,"publication_date":"2015-10-08T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-10215","changefreq":"weekly","video":[{"title":"S1:E902 - SideScrollers Extended Cut 10/2/15","description":"S1:E902 - SideScrollers Extended Cut 10/2/15","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-10215","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a459b7e-ecb0-4e03-83c0-764663534b63/sm/video_thumbnail_12883191-1443824714.jpg","duration":370,"publication_date":"2015-10-03T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/yaoi-hitler-greater-than-amiibo-scalpers","changefreq":"weekly","video":[{"title":"S1:E199 - Yaoi Hitler Greater Than Amiibo Scalpers","description":"Ride the rollercoaster of emotions that is the this week's SideScrollers!\r\n\r\nSend Newsdesk stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend QotW answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/yaoi-hitler-greater-than-amiibo-scalpers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95c9085f-55d7-4d16-b96f-4822e4f99c01/sm/video_thumbnail_12883190-1443823692.jpg","duration":4260,"publication_date":"2015-10-03T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-dildo-episode-the-industry-ep-4","changefreq":"weekly","video":[{"title":"S1:E4 - The Dildo Episode | The Industry Ep. 4","description":"Hello g1's! \r\n\r\nHope you like the latest episode of The Industry! We appreciate all of the help spreading the word about the show so far, and we're very excited for how successful each episode has been! Really, it means a lot. Anyways this episode IS in fact based on Shaun's efforts to get Craig to let him make a video with a Dildo in it, using his real pitches for pranking people with it.\r\n\r\nHope you liked it, and we look forward to what you have to say about it . . . and the prospect of next week's cliffhanger!\r\n\r\nThank you g1's, and please remember to share this tomorrow when it's available for all!","player_loc":"https://roosterteeth.com/embed/the-dildo-episode-the-industry-ep-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ddaac42-6681-4eb5-9001-fd804e8768e7/sm/video_thumbnail_12883172-1443804113.jpg","duration":306,"publication_date":"2015-10-02T09:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/*nsfw*-top-10-sex-scenes-in-video-games","changefreq":"weekly","video":[{"title":"S1:E150 - *NSFW* Top 10 Sex Scenes in Video Games","description":"S1:E150 - *NSFW* Top 10 Sex Scenes in Video Games","player_loc":"https://roosterteeth.com/embed/*nsfw*-top-10-sex-scenes-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a93afdf9-4165-4b02-b580-2ef58189d8fa/sm/video_thumbnail_12883168-1443801456.jpg","duration":501,"publication_date":"2015-10-02T08:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-28","changefreq":"weekly","video":[{"title":"S2:E28 - Hercule VS Dan Hibiki","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e822301e-e40e-4597-835b-a51870adb7c6/sm/video_thumbnail_12882923-1443572342.jpg","duration":1238,"publication_date":"2015-09-29T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-092515","changefreq":"weekly","video":[{"title":"S1:E901 - SideScrollers Extended Cut 09/25/15","description":"S1:E901 - SideScrollers Extended Cut 09/25/15","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-092515","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3868ef37-4b8b-409d-a730-51212c5706a2/sm/video_thumbnail_12882618-1443211408.jpg","duration":592,"publication_date":"2015-09-26T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwed-the-pooch-sidescrollers-092515","changefreq":"weekly","video":[{"title":"S1:E198 - Screwed The Pooch | SideScrollers 09/25/15","description":"Craig and Chad are gone! Shaun and Sean are joining Sam to dig into voice actors striking, procedurally generated farming sims, and what clowns do to dogs when you're not looking.\r\n\r\nSend Newsdesk stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend QotW answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/screwed-the-pooch-sidescrollers-092515","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae47dcf2-1840-46b1-a196-425525eaeb69/sm/video_thumbnail_12882622-1443222771.jpg","duration":4146,"publication_date":"2015-09-26T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-is-a-py-the-industry-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Craig is a P&$%!Y | The Industry Episode 3","description":"Hey g1's! Believe it or not, this ACTUALLY happened EXACTLY like this. We're not kidding. That's one of the reasons we love this show so much. Although our episodes will continue to get even more ridiculous as the season goes, this episode is definitely the closest one to reality. Hope you enjoy, and please feel free to grow the show! It's doing GREAT so far and we appreciate all of the love!\r\n\r\n- Shaun & John Francis McCullagh","player_loc":"https://roosterteeth.com/embed/craig-is-a-py-the-industry-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd880962-27b9-4ccd-8412-eadf56e6c460/sm/video_thumbnail_12882623-1443223385.jpg","duration":264,"publication_date":"2015-09-25T16:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-super-nintendo-rpgs","changefreq":"weekly","video":[{"title":"S1:E149 - Top 10 SUper Nintendo RPGS","description":"A console with amazing stories to tell, this is the best RPGs in the Super Nintendo!\r\n\r\nCHECK OUT OUR NEW SERIES \"The Industry\": http://bit.ly/IndustryPL\r\n\r\nHey! Wanna save some money? Go to https://lootcrate.com/screwattackpodcast, use coupon code \"screwattackpodcast\" and save $3 on your next crate full of collectibles!\r\n\r\nWe're on our way to 2.5 Million Subs! Subscribe here (http://bit.ly/SubtoScrewAttack)f or daily videos and live streams and be a part of the fun! \r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-super-nintendo-rpgs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/016ed326-630e-4394-9d9c-b524f7f67492/sm/video_thumbnail_12882615-1443210513.jpg","duration":694,"publication_date":"2015-09-25T12:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-animal-crossing-happy-home-designer-good","changefreq":"weekly","video":[{"title":"S1:E21 - Is Animal Crossing: Happy Home Designer Good?","description":"The newest installment in the Animal Crossing series may not have a purpose, BUT! Is It Good?","player_loc":"https://roosterteeth.com/embed/is-animal-crossing-happy-home-designer-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57efef26-ac94-45d8-b5dd-ba02c0d42dcf/sm/video_thumbnail_12882502-1443035283.png","duration":112,"publication_date":"2015-09-24T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-091915","changefreq":"weekly","video":[{"title":"S1:E900 - SideScrollers Extended Cut 09/19/15","description":"It's bad first date story time!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-091915","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb133034-93d9-47f7-aa00-65c341d81f50/sm/video_thumbnail_12882249-1442634948.JPG","duration":696,"publication_date":"2015-09-19T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/double-hitler-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E197 - Double Hitler | SideScrollers","description":"When you're on the road as much as we are, some things are bound to happen, and oh does Craig have a story to share.\r\n\r\nSend Newsdesk stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend QotW answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/double-hitler-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac7fd23b-8f95-4504-8633-6710ae148ab7/sm/video_thumbnail_12882251-1442635673.jpg","duration":2921,"publication_date":"2015-09-19T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-the-f-works-at-screwattack-the-industry-ep-1","changefreq":"weekly","video":[{"title":"S1:E2 - Who the F%&$ Works at ScrewAttack? | The Industry Ep. 1","description":"You guys have been asking us to return to Live action for years, so SHARE this video TOMORROW when it goes live for the rest of the world! If you like content like this, we've got to get eyes on it! Spread the word, and I greatly hope you enjoy!","player_loc":"https://roosterteeth.com/embed/who-the-f-works-at-screwattack-the-industry-ep-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad1ce26d-b982-44ea-9dea-905eaeb1e85a/sm/video_thumbnail_12882229-1442618354.jpg","duration":318,"publication_date":"2015-09-18T13:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-has-too-many-flips-the-industry-ep-2","changefreq":"weekly","video":[{"title":"S1:E1 - DEATH BATTLE! Has Too Many Flips! | The Industry Ep. 2","description":"You guys have been asking us to return to Live action for years, so SHARE this video TOMORROW when it goes live for the rest of the world. If you like content like this, we've got to get eyes on it! Spread the word, and I greatly hope you enjoy!","player_loc":"https://roosterteeth.com/embed/death-battle-has-too-many-flips-the-industry-ep-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78605e27-3e2d-4563-b308-250a4b99ec24/sm/video_thumbnail_12882230-1442618519.jpg","duration":283,"publication_date":"2015-09-18T13:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evil-craigs-top-10-franchises-that-should-die","changefreq":"weekly","video":[{"title":"S1:E148 - Evil Craig's Top 10 Franchises That Should DIE","description":"\"THESE SHOULD BE PUT DOWN FOR GOOD!\" - Evil Craig\r\n\r\nCheck out the previous list we did back in 2012! https://www.youtube.com/watch?v=jLs0xXbQeU0\r\n\r\nWe're on our way to 2.5 Million Subs! Subscribe here (http://bit.ly/SubtoScrewAttack)f or daily videos and live streams and be a part of the fun! \r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/evil-craigs-top-10-franchises-that-should-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf144174-608f-4c96-9d5a-1738ab726907/sm/video_thumbnail_12882227-1442607600.jpg","duration":254,"publication_date":"2015-09-18T13:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-open-world-game-ever","changefreq":"weekly","video":[{"title":"S1:E72 - The Best Open World Game EVER!","description":"We're on our way to 3 Million Subs! Subscribe here (http://bit.ly/SubtoScrewAttack)f or daily videos and live streams and be a part of the fun! \r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\r\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\r\nWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylist\r\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\r\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\r\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\r\nWatch The Best Ever - http://bit.ly/BestEverPlaylist\r\nWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/the-best-open-world-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d3397ea-967a-46b6-ac68-46a2a7a19a9f/sm/video_thumbnail_12881931-1442242892.jpg","duration":392,"publication_date":"2015-09-14T08:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-091115","changefreq":"weekly","video":[{"title":"S1:E899 - SideScrollers Extended Cut 09/11/15","description":"What are the guys talking about this time?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-091115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77175be4-8faa-4a14-a371-c5686b2a9509/sm/video_thumbnail_12881752-1442007336.JPG","duration":590,"publication_date":"2015-09-12T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/horsing-around-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E196 - Horsing Around | SideScrollers","description":"Remember that My Little Pony fighting game? It's got a new look and a new trailer! Remember how Nintendo messes with YouTubers? They're doing it again!\r\n\r\nSend Newsdesk stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend QotW answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/horsing-around-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/128f7215-2b33-4c67-b2e1-8e3db9d88de9/sm/video_thumbnail_12881751-1442007148.jpg","duration":3514,"publication_date":"2015-09-12T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dicks","changefreq":"weekly","video":[{"title":"S1:E898 - DICKS","description":"S1:E898 - DICKS","player_loc":"https://roosterteeth.com/embed/dicks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cfa73b8-89fa-4d03-995f-2ef5a030b0ef/sm/video_thumbnail_12881749-1442006234.jpg","duration":366,"publication_date":"2015-09-11T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-worst-wii-u-games","changefreq":"weekly","video":[{"title":"S1:E147 - Top Ten Worst Wii U Games","description":"We already showed you the best... now we show you the worst the Wii u can offer. Oh lord, have mercy.\r\n\r\nHey! Wanna save some money? Go https://lootcrate.com/screwattack, use cupon code \"screwattack\" and save $3 on your next crate full of collectibles!\r\n\r\nIs your best favorite Gen 1 Pokemon on the list? Let us know in the comments. And if you are curious, we also made a Top 10 Worst Gen 1 Pokemon list:\r\n\r\nhttps://www.youtube.com/watch?v=hCDlz1ZTGe4\r\n\r\nWe're on our way to 3 Million Subs! Subscribe here (http://bit.ly/SubtoScrewAttack)f or daily videos and live streams and be a part of the fun! \r\n\r\nWatch more Top 10's here: http://bit.ly/SATop10Playlist\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-ten-worst-wii-u-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67f89bdc-3aa5-4b06-a9f0-8b3be060dd7d/sm/video_thumbnail_12881690-1441912574.jpg","duration":507,"publication_date":"2015-09-10T12:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/12-reasons-we-hate-kratos","changefreq":"weekly","video":[{"title":"S1:E52 - 12 Reasons We HATE Kratos","description":"Tell me why YOU HATE Kratos in the comments below!\r\n\r\nAnd follow me on twitter you sheep! - XxEvilCraigxX","player_loc":"https://roosterteeth.com/embed/12-reasons-we-hate-kratos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbbb5e87-8e30-4518-b634-52d1beed1831/sm/video_thumbnail_12881653-1441859598.png","duration":84,"publication_date":"2015-09-10T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-love-kratos","changefreq":"weekly","video":[{"title":"S1:E13 - 14 Reasons We LOVE Kratos","description":"Tell us why you LOVE Kratos in the comments below!","player_loc":"https://roosterteeth.com/embed/14-reasons-we-love-kratos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/665dce39-97d3-48cd-9ead-f64c29cd213f/sm/video_thumbnail_12881652-1441859589.png","duration":49,"publication_date":"2015-09-10T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-27","changefreq":"weekly","video":[{"title":"S2:E27 - Wolverine VS Raiden","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d2f9a73-229f-4409-8e7f-017f28c10eac/sm/video_thumbnail_12881597-1441767630.jpg","duration":1093,"publication_date":"2015-09-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-industry-debut-trailer","changefreq":"weekly","video":[{"title":"S1:E897 - \"The Industry\" Debut Trailer","description":"Trailer releases on YouTube VERY SOON!\r\n\r\nA lot of old-school g1's miss the days of Live Action. The zaniness was something that you guys identified with. Since the days of \"The Clip,\" ScrewAttack has grown exponentially - and many new g1's don't know the people behind the content they see on YouTube or ScrewAttack.com. Some may not even know that SA has EVER done a live action show before. John Francis McCullagh and I had an idea for a show based on real stuff that happens in our office (slightly exaggerated of course). The script for each episode of the Industry is almost an exact transcription of something that was said or talked about in the office. ScrewAttack has never done a show quite like this. I have so much to say about what thie show means to John and I from a personal/ creative level. This first season was fun, and challenging, and stuff that I daydreamed about making when I first started working here. I hope you guys enjoy when it premieres this September!","player_loc":"https://roosterteeth.com/embed/the-industry-debut-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96c8c658-8847-4ddd-94e3-e60882228eb4/sm/video_thumbnail_12880949-1440778967.jpg","duration":44,"publication_date":"2015-09-08T09:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-090415","changefreq":"weekly","video":[{"title":"S1:E896 - SideScrollers Extended Cut 09/04/15","description":"S1:E896 - SideScrollers Extended Cut 09/04/15","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-090415","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df094c47-1f23-4ab0-97c9-7226f3fab03c/sm/video_thumbnail_12881345-1441402728.JPG","duration":370,"publication_date":"2015-09-04T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-hate-toad","changefreq":"weekly","video":[{"title":"S1:E51 - 16 Reasons We HATE Toad","description":"Tell us why you HATE Toad in the comments below!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-hate-toad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc23008a-e267-4f38-b5f3-30a5fc7589b2/sm/video_thumbnail_12881221-1441232876.png","duration":92,"publication_date":"2015-09-03T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-toad","changefreq":"weekly","video":[{"title":"S1:E14 - 16 Reasons We LOVE Toad","description":"Tell us why you LOVE Toad in the comments below!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-toad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9eff9194-cf3e-42da-be5e-63fbb6dd52d9/sm/video_thumbnail_12881222-1441232899.png","duration":55,"publication_date":"2015-09-03T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/raiden-rips-into-death-battle","changefreq":"weekly","video":[{"title":"S1:E3 - Raiden rips into DEATH BATTLE!","description":"S1:E3 - Raiden rips into DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/raiden-rips-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/708dbae9-e71b-4796-8831-73c09fc4290b/sm/video_thumbnail_12881201-1441209738.jpg","duration":193,"publication_date":"2015-09-02T09:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-082815","changefreq":"weekly","video":[{"title":"S1:E895 - SideScrollers Extended Cut 08/28/15","description":"S1:E895 - SideScrollers Extended Cut 08/28/15","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-082815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/620f4503-c2fc-4171-bf14-fa076b4ce233/sm/video_thumbnail_12880967-1440801413.JPG","duration":596,"publication_date":"2015-08-28T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/living-on-the-edge-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E195 - Living on the Edge | SideScrollers","description":"S1:E195 - Living on the Edge | SideScrollers","player_loc":"https://roosterteeth.com/embed/living-on-the-edge-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db11f497-cf2d-4693-8830-2cc7794b3274/sm/video_thumbnail_12880944-1440772433.jpg","duration":3626,"publication_date":"2015-08-28T13:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jackie-chan-hates-his-son","changefreq":"weekly","video":[{"title":"S1:E894 - Jackie Chan Hates his Son!?","description":"The crew talks about some weird stories that happened to Rosie o' Donnell... and some Baby talk.","player_loc":"https://roosterteeth.com/embed/jackie-chan-hates-his-son","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/769d87c3-5024-443b-a33d-0642717046de/sm/video_thumbnail_12880946-1440775691.jpg","duration":533,"publication_date":"2015-08-28T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-best-gen-1-pokemon","changefreq":"weekly","video":[{"title":"S1:E146 - Top 10 Best Gen 1 Pokemon","description":"Hey! Wanna save some money? Use lootcrate.com/screwattack and save $3 on your next crate full of collectibles!\r\n\r\nIs your best favorite Gen 1 Pokemon on the list? Let us know in the comments. And if you are curious, we also made a Top 10 Worst Gen 1 Pokemon list:\r\n\r\nhttps://www.youtube.com/watch?v=hCDlz1ZTGe4\r\n\r\nWe're on our way to 3 Million Subs! Subscribe here (http://bit.ly/SubtoScrewAttack) for daily videos and live streams and be a part of the fun! \r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter","player_loc":"https://roosterteeth.com/embed/top-10-best-gen-1-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38b5f40c-6513-4b43-818e-92c2340c38a2/sm/video_thumbnail_12880943-1440771414.jpg","duration":489,"publication_date":"2015-08-28T07:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-amiibo","changefreq":"weekly","video":[{"title":"S1:E50 - 13 Reasons We HATE Amiibo","description":"Go follow me on twitter, you sheep: @XxEVILCRAIGxX","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-amiibo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cccd1d0-9f68-45a0-8928-4335f5d0c0a8/sm/video_thumbnail_12880865-1440625773.png","duration":84,"publication_date":"2015-08-27T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/11-reasons-we-love-amiibo","changefreq":"weekly","video":[{"title":"S1:E15 - 11 Reasons We LOVE Amiibo","description":"Tell us why YOU love Amiibo in the comments, below!","player_loc":"https://roosterteeth.com/embed/11-reasons-we-love-amiibo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b638b54-8e64-458a-93d6-f873aaec6adb/sm/video_thumbnail_12880864-1440625525.png","duration":49,"publication_date":"2015-08-27T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wolverine-claws-into-death-battle","changefreq":"weekly","video":[{"title":"S1:E2 - Wolverine claws into DEATH BATTLE!","description":"S1:E2 - Wolverine claws into DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/wolverine-claws-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/517e8401-b9e4-4f24-bd4b-6791bcc0524b/sm/video_thumbnail_12880847-1440607357.jpg","duration":130,"publication_date":"2015-08-26T09:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-until-dawn-good","changefreq":"weekly","video":[{"title":"S1:E20 - Is Until Dawn Good?","description":"Until Dawn sure covers all the basics of a \"classic horror\" BUT! Is It Good?","player_loc":"https://roosterteeth.com/embed/is-until-dawn-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a75ba348-1d10-48cb-8d27-099146508a8b/sm/video_thumbnail_12880759-1440453522.png","duration":108,"publication_date":"2015-08-25T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-drunks-in-video-games","changefreq":"weekly","video":[{"title":"S1:E145 - Top 10 Drunks in Video Games","description":"The biggest drunks in video games? We have them!","player_loc":"https://roosterteeth.com/embed/top-10-drunks-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e2b0aaa-d656-4493-b1de-69d455bdde03/sm/video_thumbnail_12880748-1440440151.jpg","duration":393,"publication_date":"2015-08-24T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-sequel-ever","changefreq":"weekly","video":[{"title":"S1:E71 - The WORST Sequel EVER!","description":"John, Torrian, and Shaun talk about their worst sequels EVER!\r\n\r\nStarring\r\nJohn Francis McCullagh - @JohnFMFilms\r\nTorrian Crawford - @AnimatedTorrii\r\nShaun Bolen - @ShaunBolen\r\n\r\nEdited by John Francis McCullagh\r\n\r\nNew to ScrewAttack? Subscribe for daily videos: http://bit.ly/SubtoScrewAttack\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\r\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\r\nWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylist\r\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\r\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\r\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\r\nWatch The Best Ever - http://bit.ly/BestEverPlaylist\r\nWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/the-worst-sequel-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23ade891-0e7a-415d-8e6d-364af25dbee0/sm/video_thumbnail_12880737-1440430460.jpg","duration":442,"publication_date":"2015-08-24T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-267-sky-factory-part-9","changefreq":"weekly","video":[{"title":"2017:E231 - Minecraft - Episode 267 - Sky Factory Part 9","description":"To nobody's surprise, Achievement Hunter's back playing their favorite mod ever, Sky Factory. Sure, there's a difference between a mod and a mod pack, but we're going to continue calling it a mod anyway. \n\nOn today's episode, Ryan gets overwhelmed, Geoff's in the hen house, Jack's farm gets mystical, Gavin starts a solar farm, and Lindsay becomes the new dirt king.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-267-sky-factory-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/769b7482-c6d8-421b-a8a0-5f5f3cf13667/sm/3014926-1499107839562-HorseButtThumb.jpg","duration":3448,"publication_date":"2017-07-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-motosphere","changefreq":"weekly","video":[{"title":"2017:E28 - GTA V - Motosphere","description":" Geoff, Ryan, Jack, Michael, and Jeremy get to explore Matt's game mode: Motosphere. There are two teams, motorcycles, a giant circular metal cage, and grenades. What could go wrong? ","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-motosphere","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6ee1176-b7fc-4b13-9ed5-23630ee03f40/sm/3014926-1499126177512-TTD_GTAV-Motosphere_THUMB1.png","duration":927,"publication_date":"2017-07-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-zombie-mode","changefreq":"weekly","video":[{"title":"2017:E232 - PlayerUnknown's Battlegrounds: Zombie Mode","description":"Unleash the horde! Gus Sorola lent Achievement Hunter his private PUBG server to test out the new Zombie Mode, and he's coming along for the ride.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-zombie-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52963efc-6bff-42e4-babf-656b04d598ef/sm/3014926-1499122175271-PUBG_Thumb_zombiemode.jpg","duration":2274,"publication_date":"2017-07-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-11","changefreq":"weekly","video":[{"title":"2017:E7 - Between the Games - How to Escape Zip Ties","description":"Trevor, Ryan, and Gavin do some experimenting with zip ties.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fa400ae-db77-4271-9df5-833e36999100/sm/3014926-1498858492360-zip1.jpg","duration":731,"publication_date":"2017-07-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ultimate-chicken-horse-surf-s-up-part-3","changefreq":"weekly","video":[{"title":"2017:E230 - Ultimate Chicken Horse - Surf's Up (Part 3) ","description":"Achievement Hunter tries out the \"newish\" DLC for Ultimate Chicken Horse. Watch as they dodge icebergs, endure strobe lights, and ride the wave to victory.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ultimate-chicken-horse-surf-s-up-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/290e6ba9-5c9f-498d-b9a4-a41b91b1e4f8/sm/3014926-1499096767636-LP_UltimateChickenHorse.png","duration":2365,"publication_date":"2017-07-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-battle-buddies-keep-talking-and-nobody-explodes","changefreq":"weekly","video":[{"title":"2017:E228 - Battle Buddies - Keep Talking and Nobody Explodes","description":"The Battle Buddies have been sent on bomb defusal duty. Jeremy must keep talking so Ryan doesn't explode.\n\nIt's time again for the Battle Buddies to save the planet (or at least the Diet Coke factory). Ryan has entered the factory, ready to defuse the bombs. Jeremy is on walkie-talkie with the bomb defusal manual. The mission is simple: Keep talking and nobody explodes. Good luck.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-battle-buddies-keep-talking-and-nobody-explodes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c142dda6-a7e5-4093-8da3-3d8192c50c33/sm/3014926-1498856912967-BB_KeepTalking.png","duration":1063,"publication_date":"2017-07-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-trivial-pursuit-with-alfredo","changefreq":"weekly","video":[{"title":"2017:E227 - Trivial Pursuit with Alfredo","description":"It's Jack, Geoff, Jeremy, and Alfredo in this battle of wits. Will the gents be able to keep Alfredo and Jeremy's extreme intelligence at bay?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-trivial-pursuit-with-alfredo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cfd08b0-fb49-42c6-988e-78ad13a65c9c/sm/3014926-1498851141869-LP_TrivialPursuit-wAlfredo_THUMB3.png","duration":2820,"publication_date":"2017-07-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-how-not-to-be-a-dick-ahwu-for-july-3-rd-2017-376","changefreq":"weekly","video":[{"title":"2017:E27 - How Not to be a Dick - AHWU for July 3rd, 2017 (#376)","description":"Achievement Hunter's brushing up on their pre-RTX etiquette and learning how not to be a dick!\n\nHoly dicks! RTX is just days away, and we're busy prepping to see you guys this weekend. When we meet you, should we shake hands and say hello, or punch you square in the groin? Fortunately, we have a copy of \"How Not to Be a Dick: An Everyday Etiquette Guide\" to tell us the right answer. No dick and/or vag punching for us this weekend. Probably.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-how-not-to-be-a-dick-ahwu-for-july-3-rd-2017-376","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28375066-aaa3-4708-8b28-9d5df05ca56c/sm/3014926-1498845562102-ahwubase1.jpg","duration":784,"publication_date":"2017-07-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-83-doifg7","changefreq":"weekly","video":[{"title":"2017:E25 - It's Hard Being Us - Last Call #83","description":"The AH Crew stand up to talk about Elon Musk, PlayerUnknown’s Battlegrounds, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-83-doifg7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f983722b-663f-4bea-ad47-ee4987513d42/sm/3014926-1498862224292-OFF83_-_PS_-_THUMB.jpg","duration":775,"publication_date":"2017-07-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-criminal-masterminds-part-10","changefreq":"weekly","video":[{"title":"2017:E226 - GTA V - Pacific Standard: Setup - Criminal Masterminds (Part 10)","description":"The greatest minds in Achievement Hunter spring into action as they set up the final heist in the Criminal Masterminds series.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-criminal-masterminds-part-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1226aab7-2267-4408-baee-807192285b79/sm/3014926-1498849594173-GTA_Thumb_CM_10_b.jpg","duration":2490,"publication_date":"2017-07-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-83-sgi74i","changefreq":"weekly","video":[{"title":"2017:E83 - The Gang Fixes the Internet - Off Topic #83","description":"The AH Crew sit down to talk about shot roulette, air conditioners, Michael’s Twitter fight, and more on this week's Off Topic!This episode originally aired June 30, 2017 and is sponsored by Seeso (http://bit.ly/2iXI3mZ)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-83-sgi74i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/701996af-bc42-4895-90d1-67279bf55be4/sm/3014926-1498862291784-OFF83_-_THUMB.jpg","duration":7430,"publication_date":"2017-07-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-star-wars-battlefront-ii-e3-2017","changefreq":"weekly","video":[{"title":"2017:E224 - Star Wars Battlefront II - E3 2017","description":"Thanks to EA for sponsoring this video. At E3 2017, Geoff, Jack, Jeremy, and Ryan got early access to Star Wars Battlefront II. Check out the highlights of that match.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-star-wars-battlefront-ii-e3-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8386e11d-94f6-4189-ba0a-fe9d08d33631/sm/3014926-1498775751826-AH_Battlefront_E32017_Thumb.png","duration":259,"publication_date":"2017-06-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-it-back-in-the-hole","changefreq":"weekly","video":[{"title":"2017:E223 - Golf It! - Back in the Hole","description":"Achievement Hunter is back on the green for some Golf It! minigolf goodness because they just loves shoving their balls into huge, gaping holes.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-it-back-in-the-hole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95b6a53e-bbe2-4617-bd4d-1d44f68f7835/sm/3014926-1498748787278-AH_Golf_It_Pt3_1.png","duration":2201,"publication_date":"2017-06-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-friday-the-13-th-with-everyone","changefreq":"weekly","video":[{"title":"2017:E225 - Friday the 13th with Everyone","description":"Ryan Haywood of Achievement Hunter dons the mask of Jason Vorhees as he hunts down various members of the Let's Play Network.\n\n\n\n\n\n\n\n\n\n\n\nSTARRING\n\n\n\n\n\n\n\n\n\nRYAN HAYWOOD as Jason VoorheesJames Willems (http://YouTube.com/funhaus)NoahJ456 (http://YouTube.com/NoahJ456)Shaun Bolen (http://YouTube.com/GameAttack)Steven Suptic (http://YouTube.com/mlghwnt)Jordan Kootra (http://YouTube.com/thecreaturehub)Alfredo Diaz (http://twitch.tv/alfredoplays)Criken (http://YouTube.com/Criken2)","player_loc":"https://roosterteeth.com/embed/lets-play-2017-friday-the-13-th-with-everyone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0b3b737-25e4-4187-9b6c-3055f70f216b/sm/1104396-1498838443565-friday2.jpg","duration":1764,"publication_date":"2017-06-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-june-2017","changefreq":"weekly","video":[{"title":"2017:E20 - Best of Achievement Hunter - June 2017","description":"From Bigfoot to Gmod Prop Hunt, this is the best of Achievement Hunter for June 2017!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-june-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f11634e1-b1e2-4d08-8a97-e8c52b9b173e/sm/3014926-1498680235625-Best_of_AH_June_2017_Thumbnail_3.jpg","duration":1451,"publication_date":"2017-06-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-minecraft-episode-266-sky-factory-part-8","changefreq":"weekly","video":[{"title":"2017:E222 - Minecraft - Episode 266 - Sky Factory Part 8","description":"The Achievement Hunter boys are continuing to build the world of their dreams in their favorite new way to play Minecraft: Sky Factory!\n\nOn today's episode, Geoff makes progress on his ender quest, Jeremy is late for On the Spot, Jack leaves the farm to build a death house, Gavin finds (and loses) a cool new shirt, and Ryan takes the first step in pleasing Elon Musk.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-minecraft-episode-266-sky-factory-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d29da437-094b-4fd3-9ecb-9a26076a8c14/sm/3014926-1498578231220-mc_Skyfac8.jpg","duration":2404,"publication_date":"2017-06-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-garbo-man","changefreq":"weekly","video":[{"title":"2017:E27 - Halo 5 - GarboMan","description":"Thanks to Halo 5, the Achievement Hunter crew get to fulfill their lifelong dream of garbage collecting. They have become GarboMan! The mission is simple: take out the TRASH!\n\nMap - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=OPG%20StingRay17#ugc_halo-5-guardians_xbox-one_mapvariant_OPG%20StingRay17_18692f41-b12e-4179-89b5-144b6626931a\n\n\n\n\n\nGame Type - https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=OPG%20StingRay17#ugc_halo-5-guardians_xbox-one_gamevariant_OPG%20StingRay17_188cfc05-13d6-499a-aee1-033b2f5913b1","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-garbo-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc7f6ccf-c25c-433f-8473-862bd1134f60/sm/3014926-1497995316220-TTD_GarbageChute2Point0.png","duration":779,"publication_date":"2017-06-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-with-alfredo","changefreq":"weekly","video":[{"title":"2017:E221 - PlayerUnknown's Battlegrounds with Alfredo","description":"Achievement Hunter has conscripted Alfredo to help them survive in the kill-or-be-killed world of PUBattlegrounds.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-with-alfredo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b65edc-824e-49cc-bb9e-0234f1a468c9/sm/3014926-1498576659123-thumbnail_alfredo_3.jpg","duration":2115,"publication_date":"2017-06-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-12","changefreq":"weekly","video":[{"title":"2017:E6 - Between the Games - The Grappling Hook","description":"Achievement Hunter received a grappling hook in the mail, and now they can't stop playing with it in the office. You could say they're hooked.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f144086e-8735-4301-b753-70801beef928/sm/3014926-1498515541195-grap_thumb.jpg","duration":819,"publication_date":"2017-06-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-jackbag-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E220 - GTA V Jackbag: AH Live Stream","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get your first month free!Jack, Michael, Ryan, Geoff, and Matt as they take on The AH Audience in some GTAV races.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-jackbag-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4364ea1-f1bc-4af0-a111-ae9dc4ab67b8/sm/3014926-1498517294820-LP_GTAV-Stream_THUMB.jpg","duration":3370,"publication_date":"2017-06-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-human-fall-flat","changefreq":"weekly","video":[{"title":"2017:E10 - Human Fall Flat ","description":"Michael and Gavin are Play Pals-ing it up in the totally-not-Gang-Beasts puzzle game, Human: Fall Flat.\n\nPlay Pals is all about team work, which Michael and Gavin can do when they're not busy throwing each other off the world! Or when they're not busy leaving mid-recording for the RT Podcast. Sometimes Play Pals just has to become Play Pal.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-human-fall-flat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/180edd5d-91d5-4a26-bb9c-8c7df8e81a0d/sm/3014926-1497995811646-PP_HumanFallFlat1.png","duration":2097,"publication_date":"2017-06-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-wheel-of-fortune-what-is-r-a-part-7","changefreq":"weekly","video":[{"title":"2017:E217 - Wheel of Fortune: What is _RA_?! (Part 7)","description":"Jack, Jeremy, and Gavin are back as Team Trivia in another installment of Wheel of Fortune. Who will win it all and who will go bankrupt? There's also half a car and a trip to Philadelphia on the line! (edited)","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-wheel-of-fortune-what-is-r-a-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68c98d4e-c9af-4670-b4b6-d218086562a1/sm/3014926-1498241227983-LP_WheelofFortune.png","duration":2026,"publication_date":"2017-06-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-big-j-and-the-edm-festivities-ahwu-for-june-26-th-2017-375","changefreq":"weekly","video":[{"title":"2017:E26 - Big J and the EDM Festivities - AHWU for June 26th, 2017 (#375)","description":"Thanks to Wargaming for sponsoring this video. To check out the game, click here: http://console.worldoftanks.com/promos/TANKHUNTERAchievement Hunter receives raver gear from China.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-big-j-and-the-edm-festivities-ahwu-for-june-26-th-2017-375","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd9137ca-c208-4701-a5c1-6772eced2ee6/sm/3014926-1498254165395-ahwu_375.jpg","duration":1012,"publication_date":"2017-06-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-82-gd47hjg","changefreq":"weekly","video":[{"title":"2017:E24 - How Convenient - Last Call #82","description":"The AH Crew stand up to talk about the SpaceX launch, starting beef, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-82-gd47hjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/825de590-5f6d-45bd-9cdc-21b6c81d92cc/sm/3014926-1498254501976-OFF82_-_PS_-_THUMB.jpg","duration":611,"publication_date":"2017-06-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-rocket-bikes","changefreq":"weekly","video":[{"title":"2017:E218 - GTA V - Rocket Bikes","description":"Rocket Bikes! Burning up our 'chutes when they explode.\n\nThe Fake AH Crew check out some new toys in their first foray into the Gunrunning DLC.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-rocket-bikes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a524dcc0-8e25-4512-aa5b-7b87430c799e/sm/3014926-1498248583942-RocketBike_Thumb3.jpg","duration":3261,"publication_date":"2017-06-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-82-fn83go9","changefreq":"weekly","video":[{"title":"2017:E82 - It’s a War Out There - Off Topic #82","description":"The AH Crew sit down to talk about Geoff’s rough day, CW shows, the SpaceX launch, and more on this week's Off Topic!This episode originally aired June 23, 2017 and is sponsored by World of Tanks (http://bit.ly/2rK5GB7). Check out the latest Let's Play Presents at youtube.com/ubisoftus.\n\n SPOILERS for The New Barbarians at 25:36","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-82-fn83go9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faf6cf21-5d60-4262-b7a1-ec9b2be0e523/sm/3014926-1498257583688-OFF82_-_THUMB.jpg","duration":8022,"publication_date":"2017-06-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-fortnite","changefreq":"weekly","video":[{"title":"2017:E219 - Fortnite","description":"Thanks to EPIC for sponsoring this video. To pre-order the game, click here: www.fortnite.com.Jack, Jeremy, Ryan, and Geoff kill zombies and build bases in Epic Games's Fortnite. There may even be a dance-off or two.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-fortnite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/396d541d-8d22-488c-9715-2be37bf0de31/sm/3014926-1498259314894-LP_Fortnight_THUMB1.png","duration":2140,"publication_date":"2017-06-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-rou-lets-play-gmod-prop-hunt","changefreq":"weekly","video":[{"title":"2017:E10 - Gmod: Prop Hunt","description":"Achievement Hunter really felt like being bananas, turtles, and giant carts today, so they're jumping into a few rounds of Prop Hunt. Unless, of course, they'd rather stick to being Old Man T-Pose. ","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-rou-lets-play-gmod-prop-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e9c9aec-a73e-4e68-be16-de1d4557b1e2/sm/1104396-1498234986738-PropHuntThumb_v002.png","duration":2104,"publication_date":"2017-06-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-jackbox-trivia-murder-party-with-lannan","changefreq":"weekly","video":[{"title":"2017:E216 - Jackbox: Trivia Murder Party with Lannan","description":"Achievement Hunter and Lannan \"Lazer Beam\" Eacott are trapped in some murder party. The only way to escape with their lives is with rounds of trivia. Who is smart enough to stay alive?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-jackbox-trivia-murder-party-with-lannan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03c63902-d251-48e1-95de-b24885a33de8/sm/3014926-1498167173213-LP_Jackbox_TriviaMurderParty_Lannan.png","duration":2061,"publication_date":"2017-06-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-aladdin-cuts-wood","changefreq":"weekly","video":[{"title":"2017:E7 - Aladdin's Chopping Wood","description":"Gavin describes his favorite piece of animation from Aladdin.\n\nThe opening scene to Aladdin shows a man chopping wood, and that get's Gavin excited. Is there evidence? Who knows, but he slices lumber like butter!","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-aladdin-cuts-wood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37ff9e3b-99d5-49f7-9ed7-f26e31e40721/sm/3014926-1498084488593-AHAnimatedThumb.jpg","duration":97,"publication_date":"2017-06-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-265-sky-factory-part-7","changefreq":"weekly","video":[{"title":"2017:E215 - Minecraft - Episode 265 - Sky Factory Part 7","description":"Fortunately, Take-Two Interactive doesn't own Minecraft, so Achievement Hunter can continue playing their favorite mod ever, Sky Factory!\n\nOn today's episode, Geoff searches for ender pearls, Ryan makes an automated monstrocity, Jeremy gets bev'd up, Jack continues being everyone's favorite farm boy, and Gavin gets goog'd.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-265-sky-factory-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a60f85b7-fea9-4cd7-b6aa-e7930a105d90/sm/3014926-1498085251355-SkyFac7Thumb.jpg","duration":2061,"publication_date":"2017-06-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-don-t-breathe","changefreq":"weekly","video":[{"title":"2017:E26 - Halo 5 - Don't Breathe","description":"This house looked like an easy target. Until they found what was inside. It's old man Master Chief, and since even Forge mode has its limitations, he's not blind like that guy in the movie. Don't. Breathe. Or do. Your choice. Either way, Master Chief's gonna fire a shotgun through your chest.\n\nMap : https://www.halowaypoint.com/fr-fr/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=leviatan094#ugc_halo-5-guardians_xbox-one_mapvariant_leviatan094_6d453ba9-3a40-4aa1-aee7-cd938ae5384f\n\n\n\n\n\nGame : https://www.halowaypoint.com/fr-fr/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=leviatan094#ugc_halo-5-guardians_xbox-one_gamevariant_leviatan094_131ad434-2887-4a35-be5d-955f58ad2fcf","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-don-t-breathe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbe4ae4f-f27a-4975-ae2a-da006dba9fef/sm/3014926-1497889053837-halo.jpg","duration":1148,"publication_date":"2017-06-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-catch-a-lover-part-2","changefreq":"weekly","video":[{"title":"2017:E214 - Catch a Lover - Part 2","description":"Once more, Achievement Hunter roleplay as a husband, a wife, and wife's lover, as they all scramble after each other in a mad house of drama.\n\nJeremy's been hard at work at the police station, and has decided to come home early to the loving embrace of his wife, Michael. Little does he know that their pool boy, Ryan, is at his home right now, having an extra-marital affair with his precious Michael. Now Jeremy is home, and he notices that their dog, Gavin, is outside, trying to alert his master to the shenanigans taking place inside...","player_loc":"https://roosterteeth.com/embed/lets-play-2017-catch-a-lover-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2105790d-b1b4-42ba-bd2f-858c32b08246/sm/3014926-1497899729405-CatchALover_Pt_2_Thumb.jpg","duration":1348,"publication_date":"2017-06-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-13","changefreq":"weekly","video":[{"title":"2017:E5 - Between the Games - A Sticky Situation","description":"What happens when you microwave a dozen bags of marshmallows? Jeremy's about to find out.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/440c0f25-2c96-4523-9183-917fc90a0645/sm/3014926-1497836886484-btg_marshmallow_2.jpg","duration":868,"publication_date":"2017-06-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-we-need-to-go-more-deeper","changefreq":"weekly","video":[{"title":"2017:E213 - We Need to go MORE Deeper","description":"We'll all die in this yellow submarine!\n\n\n\nThis yellow submarine!\n\nYellow submarine.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-we-need-to-go-more-deeper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e5c69a4-e2aa-42ea-a74e-03ea0a49e5f5/sm/3014926-1497894646157-LP_WeNeedToGoMoreDeeper.jpg","duration":1348,"publication_date":"2017-06-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-5","changefreq":"weekly","video":[{"title":"2017:E10 - Battle Buddies - Farcry 4","description":"After a \"successful\" mission in the battlegrounds simulation, the Battle Buddies have been sent off yet again to prove their worth. Kryat is a dangerous place, full of all sorts of aggressive animals and army rebels. It's important to take control of the aggressive situations. There's plenty of fortresses to take and plenty commanders to decimate. Agent Ryan, Agent Jeremy, it's simple. Infiltrate, get information, and kill.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/617cd6ce-ecaa-4628-b520-d01b02d9edeb/sm/3014926-1497829012861-BB_FarCry4.png","duration":943,"publication_date":"2017-06-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-genital-jousting-back-for-more-with-dante-basco","changefreq":"weekly","video":[{"title":"2017:E211 - Genital Jousting - Back for More (With Dante Basco)","description":"Achievement Hunter and special guest Dante Basco flick their sticks to move their dicks in Genital Jousting. Gawk at the cocks as they mock while they talk. Penis. Nothing really rhymes with penis.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-genital-jousting-back-for-more-with-dante-basco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8e53bb7-b26a-45c6-bb24-2a3a17c5547c/sm/3014926-1497651782797-LP_GenitalJoustingWithDante.png","duration":1328,"publication_date":"2017-06-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-ryan-the-dick-chopper-ahwu-for-june-19-th-2017-374","changefreq":"weekly","video":[{"title":"2017:E25 - Ryan the Dick Chopper - AHWU for June 19th, 2017 (#374)","description":"Achievement Hunter got a big, floppy rubber dick in the mail this week. They also got a meat cleaver. Now it's time to see if Ryan can give that rubber dong a healthy circumcision.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-ryan-the-dick-chopper-ahwu-for-june-19-th-2017-374","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a836d13-5dd6-46dd-b522-7aab8facd2c8/sm/3014926-1497659311606-AHWU_374.jpg","duration":925,"publication_date":"2017-06-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-81-f7g48g","changefreq":"weekly","video":[{"title":"2017:E23 - Ryan the Cake Guy - Last Call #81","description":"The AH Crew stand up to talk about cake, fun with lights, streaming 4K, and more on this week's Last Call! ","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-81-f7g48g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54ccfc37-2d14-48f8-8381-c3f651e2c067/sm/3014926-1497645779588-OFF81_-_PS_-_THUMB.jpeg","duration":594,"publication_date":"2017-06-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-series-a-heist-criminal-masterminds-part-9","changefreq":"weekly","video":[{"title":"2017:E210 - GTA V - Series A: Heist - Criminal Masterminds (Part 9)","description":"Yee-haw, boys! We got ourselves one of them G-T-A criminal masterminds heists. Them there O'Neil fellers got themselves a meth lab, and I reckon them redneck basterds gon' wanna keep that meth all to their lonesome. But Cletus and his honkies got nothin' on our B-A badass muthers, you know what I'm sayin'? Whaddaya say we start this hootenannie and end this Series A Heist for good? Git 'r done, boys!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-series-a-heist-criminal-masterminds-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0715e84b-daf9-41e1-bb2e-1c9215e16ff7/sm/3014926-1497643288647-GTA_Thumb.jpg","duration":2086,"publication_date":"2017-06-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-81-kgyrki74","changefreq":"weekly","video":[{"title":"2017:E81 - A Waste of Words - Off Topic #81","description":"The AH Crew sit down to talk about E3, this week vs last week, times they cried, and more on this week's Off Topic!This episode originally aired June 16, 2017 and is sponsored by MeUndies (http://bit.ly/1RJ6Q8N)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-81-kgyrki74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bb33abf-5bc5-4d38-8b3f-eead1715ea78/sm/3014926-1497648797294-OFF81_-_THUMB.jpg","duration":5511,"publication_date":"2017-06-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-61","changefreq":"weekly","video":[{"title":"2017:E209 - Let's Watch - Outlast 2 - PART 12 (Finale)","description":"This is it. The end is upon us. Will every question finally be solved? Will Michael and Gavin finally understand what the fuck is happening? Find out now! But the answer is no.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e406ef7-4f50-4921-becc-853921e392f3/sm/3014926-1497635975319-LW_Outlast2_PART12.png","duration":1939,"publication_date":"2017-06-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-59","changefreq":"weekly","video":[{"title":"2017:E206 - Let's Watch - Outlast 2 - PART 12 (Finale)","description":"This is it. The end is upon us. Will every question finally be solved? Will Michael and Gavin finally understand what the fuck is happening? Find out now! But the answer is no.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d5eeeb7-6f11-40af-9d4b-4718afbf4b62/sm/3014926-1497563752046-LW_Outlast2_PART12.png","duration":1939,"publication_date":"2017-06-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-league-team-achievement-hunter","changefreq":"weekly","video":[{"title":"2017:E208 - Let's Play League - Team Achievement Hunter","description":"Join Team AH, get that HAT: http://goo.gl/Uh6TAo // Geoff's roped in 8 unsuspecting boys and Gus into the Let's Play League. Presenting MLB's finest: Team Achievement Hunter! How will they fare against the Houston Astros? Who actually knows how to play baseball? Watch to find out!  ","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-league-team-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7aa661f8-bcf7-43a9-9f5e-fbe2420e8f13/sm/1104396-1497630727519-TeamAH_THUMB1.png","duration":5108,"publication_date":"2017-06-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-it-with-bruce-greene","changefreq":"weekly","video":[{"title":"2017:E207 - Golf It! With Bruce Greene","description":"Tweet tweet! Ca-CAW! ALBATROOOOOSS! Achievement Hunter takes their buddy Bruce out to the green to play some mini golf and teach him about the art of bird noise scoring. They also learn a lot about Bruce's dad.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-it-with-bruce-greene","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7701d87e-fb58-498d-959c-bea603cfefd4/sm/3014926-1497564532582-GolfBruceDuoThumb.png","duration":2268,"publication_date":"2017-06-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-60","changefreq":"weekly","video":[{"title":"2017:E205 - Let's Watch - Outlast 2 - Part 11","description":"You can just see the joy in their eyes as Michael and Gavin return for part 11 of their Outlast 2 play-through. Surely they must be almost done, right? RIGHT?!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4f4e8d4-75dc-492e-897d-b7a4b37f723a/sm/3014926-1497540468197-LW_Outlast2_PART11.png","duration":3637,"publication_date":"2017-06-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-fifteenth-day","changefreq":"weekly","video":[{"title":"2017:E203 - 7 Days to Die - Fifteenth Day","description":"The birds are singing, the pigs are squelching, and the zombies hordes are moaning. It's another beautiful day in 7 Days to Die!In this episode: Ryan learns the true meaning of freedom, Jeremy infests their domicile with wall chairs, Michael finds a new hat, Jack fights a zombie with a neck made of taffy, and Geoff is the master of spikes.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-fifteenth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3deee52-bc6e-422b-a43c-6ca37bc3e295/sm/3014926-1497464677955-AH_7Days_Day15_THUMB.jpg","duration":3540,"publication_date":"2017-06-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-episode-263-sky-factory-part-5","changefreq":"weekly","video":[{"title":"2017:E204 - Minecraft - Episode 264 - Sky Factory Part 6","description":"Now that Achievement Hunter is progressing at a pace that is faster than \"embarrassingly slow,\" they are more ready than ever to continue building their Minecrafty world in Sky Factory. In this episode: Jack builds a better farm, Geoff makes a horrible death machine, Ryan makes things do things without having to do things himself, Gavin continues to be the dirt king, Jeremy makes metals in a bloodproof smelter, and Michael arrives lat","player_loc":"https://roosterteeth.com/embed/lets-play-2017-episode-263-sky-factory-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce87b43-6a67-461a-be21-e023c4bc8c30/sm/3014926-1497492353130-SkyFacotry6_Thumb.jpg","duration":3466,"publication_date":"2017-06-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-friday-the-13-th-the-game-demolition-derby","changefreq":"weekly","video":[{"title":"2017:E25 - Friday the 13th: The Game - Demolition Derby","description":"When there's a crazed killer about, ignore the fact that he can just kill you. Instead challenge him to a demolition derby! As long as you can beat him in the joust surely he'll leave you alone...right?","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-friday-the-13-th-the-game-demolition-derby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcaf30c4-4820-4f10-99d8-e0ad45e57598/sm/3014926-1497464949470-dd.jpg","duration":133,"publication_date":"2017-06-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-58","changefreq":"weekly","video":[{"title":"2017:E201 - Let's Watch - Outlast 2 - Part 10","description":"Outlast 2's perverse story became too much for Michael Jones to handle, so he decided to have a baby to get out of playing it. Now he's back and immediately feels like he needs a cold shower. But this is Outlast, so that shower only spurts blood.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c221dc40-f4ae-4bd7-9fd5-cf164d184b85/sm/3014926-1497390751032-LW_Outlast2_PART10.png","duration":1957,"publication_date":"2017-06-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-57","changefreq":"weekly","video":[{"title":"2017:E202 - Let's Watch - Assassin's Creed: Origins ","description":"Jack and Jeremy get an exclusive hands on playthrough of Assassin's Creed: Origins at E3 2017. Jeremy is in control, and that means someone is going to get fed to the crocodiles.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9de20ac8-0a12-479d-95e1-52438abaa4e4/sm/3014926-1497457724071-LW_AssassinsCreedOrigins.png","duration":2554,"publication_date":"2017-06-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-part-2","changefreq":"weekly","video":[{"title":"2017:E198 - PlayerUnknown's Battlegrounds - Part 2","description":"In a dystopian universe, Michael and Geoff find themselves drawing the losing lottery numbers, and are forced to participate in the daily Battlegrounds contest. Knowing they are in over their heads, they've enlisted veteran Battleground warriors Ryan and Jeremy to guide them as they fight to survive the battle royale. Little do they realize, their trusted guides are about as clueless as themselves...","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/702123d5-9db9-4864-9ce8-e96c3c6efce2/sm/3014926-1497281653476-Battlegrounds2_THUMB.jpg","duration":2187,"publication_date":"2017-06-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-14","changefreq":"weekly","video":[{"title":"2017:E4 - Between the Games - Keepie Uppie","description":"Unlike that super fake Flinchless Kickie-Doo, Gavin has brought an actual, real game from The England that actual, real footie kids actually, really play. In Keepie Uppie, it's up to everyone to keep the ball (or Sock'em Bopper) up in the air. But this is Achievement Hunter's version of Keepie Uppie, and it wouldn't be Achievement Hunter's version unless they're trying to break everything in the office.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ce920e1-778c-4fd6-9264-c8296a32dd64/sm/3014926-1497295942295-kicky4.jpg","duration":778,"publication_date":"2017-06-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-6-siege-multiplayer","changefreq":"weekly","video":[{"title":"2017:E199 - Rainbow 6 Siege: Multiplayer","description":"Special thanks to Blue Apron for sponsoring today's video. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT\n\n\n\nSometimes Rainbow 6 is more than about winning. Sometimes it's about losing. Today is a fine example of that. Multiplayer is hard.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-6-siege-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93e9b024-fbcb-4aef-a7b1-4f6101fa322a/sm/3014926-1497305598718-LP_Seige_Stream.png","duration":1934,"publication_date":"2017-06-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-guts-and-glory-part-3","changefreq":"weekly","video":[{"title":"2017:E9 - Guts and Glory #3 - The Yang Family","description":"Michael and Gavin continue the Guts adventures with the Yang Family in their top down, yellow convertible. The family drives to the theme park on a beautiful country road complete with cannon balls, hammers, wooden logs, ramps, spikes, and more. Warning: Watching this video may encourage viewers to wear seat belts.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-guts-and-glory-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26b6b93e-5736-42db-af60-52512e5ca36d/sm/3014926-1497034234601-PP_Guts_YangFamily_THUMB3.png","duration":1913,"publication_date":"2017-06-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-fakin-it-with-alfredo","changefreq":"weekly","video":[{"title":"2017:E197 - Fakin' It with Alfredo","description":"The Achievement Hunters and special guest Alfredo fake each other out in Fakin' It. Find out how many drinks it takes for each to get drunk, who hasn't seen Game of Thrones and of course, who looks at their own poops.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-fakin-it-with-alfredo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/862e70ef-9ab1-4e19-a892-9fdff1d433c2/sm/3014926-1497042369453-LP_FakinItWithAlfredo.png","duration":2091,"publication_date":"2017-06-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-80-fh83hks","changefreq":"weekly","video":[{"title":"2017:E22 - The Pre-Post Show - Last Call #80","description":"The AH Crew stand up to talk about shooting early, taking shoes off, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-80-fh83hks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8654330-9454-4ffc-b2c5-4df1dd1bce43/sm/2013912-1497043191747-OFF80_-_PS_-_THUMB.jpg","duration":601,"publication_date":"2017-06-11T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-mummy-not-the-tom-cruise-one-ahwu-for-june-12-th-2017-373","changefreq":"weekly","video":[{"title":"2017:E24 - The Mummy (Not the Tom Cruise One) - AHWU for June 12th, 2017 (#373)","description":"Thanks to MVMT for sponsoring this week's AHWU. You can get an awesome, affordable pair of sunglasses with an additional 15% off if you visit the following link: http://www.mvmt.com/AHWU\n\n\n\nHundreds of thousands of years ago, in the year 2017, there was a great pharaoh named Jeremy. Though his stature was that of a prepubescent boy, his mightiness towered over all other men. Every Monday (or Sunday for First members), he would declare it AHWU day - the day to display the lovely items he and his pals at the office were sent by the fans.\n\n\n\nUnbeknownst to Jeremy, the royal vizier, Gavin the Free, had other plans for Achievement Hunter. Feeling it was in need of a new ruler, he buried the pharaoh alive, unceremoniously wrapping him in toilet paper that a fan sent to the office.\n\n\n\nToday, the pharaoh lives, and he is piiiiiiiiiiissed. Jeremy is ready to rampage against any man who dares stand up to his wrath. The people of Earth know their only hope to stopping the evil mummy is Tom Cruise. Unfortunately, we only have Andy in a ninja mask. Hopefully that will do.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-mummy-not-the-tom-cruise-one-ahwu-for-june-12-th-2017-373","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a82cff2-e3d4-4557-99ae-500da3dc36a1/sm/3014926-1497041306232-ahwu_thumb.jpg","duration":1023,"publication_date":"2017-06-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-series-a-setup-criminal-masterminds-part-8","changefreq":"weekly","video":[{"title":"2017:E195 - GTA V - Series A: Setup - Criminal Masterminds (Part 8)","description":"Tensions have never been higher between our criminal masterminds as Ryan, Gavin, Michael, and Jeremy take on the legendarily difficult Trash Truck mission.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-series-a-setup-criminal-masterminds-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95b57f19-adc2-46e2-a34f-41a36c2d1313/sm/3014926-1497030489072-Thumb_CM_Part8.jpg","duration":2040,"publication_date":"2017-06-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-friday-the-13-th-the-game-all-jason-weapon-executions","changefreq":"weekly","video":[{"title":"2017:E16 - Friday the 13th: The Game - All Jason Weapon Executions","description":"Dude, Friday the 13th: The Game has no chill. These weapon executions are insane. Seriously, Jason could stop half way through on most of them. They're already dead, just chill.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-friday-the-13-th-the-game-all-jason-weapon-executions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37a27a10-d77a-4b0a-8ad1-09d040d50e3c/sm/3014926-1497049839361-friday_thumb1.jpg","duration":279,"publication_date":"2017-06-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-80-fh83hg","changefreq":"weekly","video":[{"title":"2017:E80 - The Gang Solves America’s Gun Problem - #80","description":"The AH Crew and special guests Elyse and James Willems sit down to talk about guns, hypothetical YouTube channels, movies on planes, and more on this week's Off Topic!This episode originally aired June 9, 2017 and is sponsored by Blue Apron (http://cook.ba/1RxiGhC) and MVMT (http://bit.ly/2smmktS)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-80-fh83hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec6baad1-96e2-4f66-8ca8-caf5fd06e23c/sm/2013912-1497047375932-OFF80_-_THUMB.jpg","duration":7622,"publication_date":"2017-06-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-portal-knights-new-day-new-knights","changefreq":"weekly","video":[{"title":"2017:E193 - Portal Knights: New Day, New Knights","description":"Thanks to 505 Games for sponsoring this video. To check out the game on PS4 and XB1, click here: http://www.portalknights.com/trial.Join Geoff, Ryan, Jack, and Jeremy as they play in the sandbox, portal game, Portal Knights.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-portal-knights-new-day-new-knights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a88176b9-e7bd-4cdb-ae94-21e07d064273/sm/3014926-1496938923285-LP_PortalKnights_THUMB3.png","duration":2295,"publication_date":"2017-06-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-3","changefreq":"weekly","video":[{"title":"2017:E16 - Golf It! - The Custom Maps","description":"The Achievement Hunter crew's gettng their hard woods ready for some intense strokin' in another Golf-It! golf outing. It's like Tiger Woods times five. Just with less DUIs.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7aab59f-64a2-4902-b617-e784dbe4f293/sm/3014926-1497030894838-AH_Golf_It_Custom_Maps.png","duration":2608,"publication_date":"2017-06-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-friday-the-13-th-the-game-achievement-hunter-easter-egg","changefreq":"weekly","video":[{"title":"2016:E18 - Friday the 13th: The Game - Achievement Hunter Easter Egg","description":"Friday the 13th: The Game has an easter egg about your favorite hopeless survivers, Achievement Hunter! Thanks so much to Chuck Parente for donating enough to put us in the game! Sorry again about Gavin.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-friday-the-13-th-the-game-achievement-hunter-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/217f4b54-0f7d-4afc-9ec2-083c7fefa2c0/sm/3014926-1497025370825-AH_Easter_Egg.jpg","duration":86,"publication_date":"2017-06-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-1-2-switch-with-game-attack","changefreq":"weekly","video":[{"title":"2017:E194 - 1-2-Switch With Game Attack","description":"It's the showdown of the century! Game Attack vs. Achievement Hunter. And even though this gorilla-slamming, wizard-wiggling, sammy-chewing competition is the most intense thing you'll ever see, it's only just the warm up. Be sure to check out the \"real\" round over at Game Attack's channel.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-1-2-switch-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e18fead8-bd9d-4888-ba8b-e24eea492642/sm/3014926-1496960984949-LP_12Switch_GameAttack.png","duration":1716,"publication_date":"2017-06-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-battlesloths-2025-the-great-pizza-wars","changefreq":"weekly","video":[{"title":"2017:E191 - Battlesloths 2025: The Great Pizza Wars","description":"It's the year 2025. The Achievement Hunter boys have died, and sloths have stolen their faces to wear as cool hats. The new, slothy versions of Geoff, Jack, Ryan, and Lil J duke it out in a post-apocalyptic pizza sloth battle.This game was published by RT games. Check it out here.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-battlesloths-2025-the-great-pizza-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11c4794a-86a8-4c54-b609-48ff421810e6/sm/3014926-1496870627442-Battlesloths_Thumb_v001.png","duration":1097,"publication_date":"2017-06-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-compass-problems","changefreq":"weekly","video":[{"title":"2017:E6 - Compass Problems","description":"The Achievement Hunter boys have voyaged far out to sea and have gotten very, very lost. Their only hope of finding dry land is following the compass back to shore. Too bad none of them know how to use a compass.Animation audio from here.","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-compass-problems","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/104c5973-73f7-4457-9399-1c2f47e0d7c7/sm/3014926-1496774984264-AH_Animated_Compass_Thumbnail.jpg","duration":107,"publication_date":"2017-06-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-263-sky-factory-part-5","changefreq":"weekly","video":[{"title":"2017:E192 - Minecraft - Episode 263 - Sky Factory Part 5","description":"The Achievement Hunter boys were so excited to play Sky Factory again that they decided to play it again again! In this episode: Jack builds a farm, Geoff makes a friend, Ryan fails to outsource his work to the automatons, Gavin donates blood, and Jeremy experiments with that blood.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-263-sky-factory-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5647af7e-76f6-4b5d-89ba-c59303554b88/sm/3014926-1496936119871-mc_2.jpg","duration":3297,"publication_date":"2017-06-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-friday-the-13-th-the-game-vehicle-surfing","changefreq":"weekly","video":[{"title":"2017:E24 - Friday the 13th: The Game - Vehicle Surfing","description":"The world of Friday the 13th is all about survival by any means necessary. Any way you can get away from Jason is a good way right? How about riding on top of the car instead of in it? Or maybe you still want to be in the car, but escape by water? Well if you're a modern day survivor that likes to think outside of the box, then this is the video for you.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-friday-the-13-th-the-game-vehicle-surfing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b600fd04-092b-4d2a-b2db-371ee343c4ad/sm/3014926-1496787655074-TTD_Friday13_IDontKnowTheNameForTheVideoButItsLikeACarOnABoatOrSomething.png","duration":184,"publication_date":"2017-06-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-6-siege-with-alfredo","changefreq":"weekly","video":[{"title":"2017:E190 - Rainbow 6 Siege with Alfredo","description":"Forget realistic, these enemies are real players! Alfredo shows our boys the ropes in multiplayer Rainbow Six Siege.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-6-siege-with-alfredo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fb27095-815a-41af-a293-bbebb4e852ed/sm/3014926-1496767955855-THUMB_SiegeWithAlfredo_v2.jpg","duration":1337,"publication_date":"2017-06-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-15","changefreq":"weekly","video":[{"title":"2017:E3 - Between the Games - Smoked Out","description":"There's nothing better than a good ol' fashion smoke out. I'm not referring to Bar-B-Que...","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d208e0d-002b-428c-bf7d-57c18d09bd17/sm/2013912-1496689042235-SmokeGrenadeThumb.png","duration":268,"publication_date":"2017-06-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-friday-the-13-th","changefreq":"weekly","video":[{"title":"2017:E189 - Friday the 13th","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get your first month free!\n\nIt's Friday the 13th and the hot, nubile teens of Achievement Hunter have planned a weekend of skinny dipping and romping in the forests of Camp Crystal Lake. Little did they know, Shifty Larry had other plans. Dawning his Jason mask and axe, Shifty sets out to rid his office of co-workers. The game is over. This is for real.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-friday-the-13-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6871fd01-6390-4617-9428-c56a27760308/sm/2013912-1496697600267-THUMB_060617_LP_Friday_The_13th.jpg","duration":2181,"publication_date":"2017-06-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-ah-rap-battle-rooster-teeth-throwdown","changefreq":"weekly","video":[{"title":"2017:E14 - AH Rap Battle: Rooster Teeth Throwdown","description":"The time is finally here. Geoff, Jack, Michael, Ryan, Gavin, and Jeremy go head-to-head in a battle of lyrics and rhymes. Who will leave as the champion? \n\nDownload links: Coming soon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-ah-rap-battle-rooster-teeth-throwdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/369ac327-412e-4a44-8143-b9595bd8a880/sm/2013912-1496677033968-YT_Thumb.jpg","duration":391,"publication_date":"2017-06-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-player-unknown-battlegrounds","changefreq":"weekly","video":[{"title":"2017:E13 - Battle Buddies - PlayerUnknown's Battlegrounds","description":"The Battle Buddies may have had a ball in Germany, but not everyone was pleased with their testicular bloodlust. Now they're on another mission in hopes of redemption. Inside the Battlegrounds simulation, they must achieve the ranking of \"TOP 10\" in order to impress their future clients. Will the Battle Buddies prevail, or has their lack of strategy and stealth doomed their future?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-player-unknown-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bab1f064-9f34-4947-93cd-18f8fadede26/sm/2013912-1496424867585-BattleBuddies_Battlegrounds.png","duration":1406,"publication_date":"2017-06-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-by-daylight-spark-of-madness","changefreq":"weekly","video":[{"title":"2017:E188 - Dead by Daylight: Spark of Madness ","description":"Have you ever been to the dentist and wondered if it could get any worse? Then Dead By Daylight's Spark of Madness DLC is just for you! The new doctor has an overpowering electrical charm, and his office is a bigger maze than anything we've seen yet. Join Geoff, Jack, Michael, Jeremy, and Andy as they try to escape.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-by-daylight-spark-of-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/972a3b5e-ea22-450c-800a-e8a9001afa06/sm/2013912-1496427059333-LP_DeadByDaylightSparky.png","duration":2685,"publication_date":"2017-06-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-79-fjoi3u","changefreq":"weekly","video":[{"title":"2017:E21 - Please Fix Our Damage - Last Call #79","description":"The AH Crew and special guest Chad James stand up to talk about office mishaps, Screw Attack’s move, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-79-fjoi3u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/919111f5-b680-4389-9e20-a271759bc4e8/sm/2013912-1496444808919-OFF79_-_PS_-_THUMB.jpg","duration":970,"publication_date":"2017-06-04T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-blowin-glass-ahwu-for-june-5-th-2017-372","changefreq":"weekly","video":[{"title":"2017:E23 - Blowin' Glass - AHWU for June 5th, 2017 (#372)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.\n\n\n\nAHWU Shirt available now! http://store.roosterteeth.com\n\n\n\n\n\nWe get tons of gifts here at the Achievement Hunter office. Many talented fans like to send us their awesome, way-more-talented-than-us, pieces of art. You know, the usual stuff. Posters, drawings, figures, stuffed animals, blown-glass dildos. The usual stuff.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-blowin-glass-ahwu-for-june-5-th-2017-372","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbd11299-2900-4801-9873-7bf50999cc07/sm/2013912-1496444730238-ahwu_thimb.jpg","duration":673,"publication_date":"2017-06-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-series-a-setup-criminal-masterminds-part-7","changefreq":"weekly","video":[{"title":"2017:E187 - GTA V - Series A: Setup - Criminal Masterminds (Part 7)","description":"The AH boys use a helicopter to board a party yacht, kill some frat brothers, and steal their cocaine. Will they soar through this Criminal Masterminds challenge... or will they crash and burn?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-series-a-setup-criminal-masterminds-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/476478a7-7e1e-4c82-a5f6-f2017afad8a5/sm/2013912-1496426569852-Thumb_CM_Part7_v3.jpg","duration":3392,"publication_date":"2017-06-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-79-fji3hjg","changefreq":"weekly","video":[{"title":"2017:E79 - Giving Up Fun - #79","description":"The AH Crew sit down to talk about baby Iris, video planning, YouTube subscriptions, and more on this week's Off Topic!\n\nThis episode originally aired June 2, 2017 and is sponsored by Dollar Shave Club (http://bit.ly/2cujr4z) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-79-fji3hjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8815711e-bb6d-4b06-b261-6c0042aefa0c/sm/2013912-1496444696697-OFF79_-_THUMB.jpg","duration":8121,"publication_date":"2017-06-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2017-2-friday-the-13-th-game-how-to-kill-jason","changefreq":"weekly","video":[{"title":"2017:E2 - Friday the 13th Game - How to Kill Jason","description":"Is a murderer terrorizing your local summer camp? Don't worry we know just the way to get rid of him, and get 3 achievements in the process!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2017-2-friday-the-13-th-game-how-to-kill-jason","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ed714c2-7859-4404-8b3f-05316fa088d3/sm/2013912-1496432429281-TTD_KillingJason.png","duration":146,"publication_date":"2017-06-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-40","changefreq":"weekly","video":[{"title":"2017:E40 - Episode #40: The Slashening","description":"What happens when 5 teenage girls have a sleepover with a few boys, a mountain of cocaine, and a serial killer? Turns out: a lot of dicks.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa1d3660-e23d-431e-b5b6-cb65252383a7/sm/2013912-1496345241337-TM_-_Slashening_-_THUMB.jpg","duration":5312,"publication_date":"2017-06-02T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-rocket-league","changefreq":"weekly","video":[{"title":"2017:E9 - Rocket League","description":"The RouLetsPlay wheel has spoken! It's Gents VS Lads in a supersonic acrobatic rocket-powered battle-car battle! In Rocket League's Drop Shot mode, there are no goals until they start making holes. Will the Gents steamroll as they stroll to the goal, or will the Lads patrol keep whole control?","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-rocket-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/683aac4e-f22c-46a1-a978-624986f0cf8f/sm/2013912-1496354482885-RouLetsPlay_RocketLeague.png","duration":1191,"publication_date":"2017-06-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-and-noah-j","changefreq":"weekly","video":[{"title":"2017:E186 - Golf With Your Friends and NoahJ ","description":"NoahJ456 is in the Achievement Hunter office, but instead of playing anything with zombies, they play Golf With Your Friends. Seems Geoff pulled the old bait and switch.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-and-noah-j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87ca690b-e425-4b3f-a818-9346965e3590/sm/2013912-1496354700317-LP_GolfwFriends-wNoahJ_THUMB2.png","duration":2913,"publication_date":"2017-06-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-tekken-7","changefreq":"weekly","video":[{"title":"2017:E184 - Tekken 7","description":"Thanks again to Bandai Namco Tekken 7 for partnering with us for this video. Check out the link for more - http://bit.ly/2qsvBgy. It's a Tekken 7 tournament in the Achievement Hunter office. Who will last the longest?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-tekken-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b309f087-1b3d-497b-80cd-9e5c38c648cc/sm/2013912-1496176941706-LP_Tekken7_THUMB2.png","duration":1431,"publication_date":"2017-06-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-may-2017","changefreq":"weekly","video":[{"title":"2017:E12 - Best of Achievement Hunter - May 2017","description":"From Outlast 2 to Cloudberry Kingdom to Finding Bigfoot, these are Achievement Hunter's premiere highlights for the month of May 2017.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-may-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47e3a2fc-8b35-4726-a939-dd40f976df85/sm/2013912-1496330795239-unnamed.jpg","duration":3214,"publication_date":"2017-06-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-262-sky-factory-part-4","changefreq":"weekly","video":[{"title":"2017:E185 - Minecraft - Episode 262 - Sky Factory Part 4","description":"The Achievement Hunter boys have gone back to the skies and back to their sky factory. Today, they're fighting monsters, making actual genuine cobblestone generators, and taking a dip in the blood pool. Most importantly, they're celebrating Gavin's birthday.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-262-sky-factory-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d7cafc-bfee-4e6e-94a9-50cb2ccc8774/sm/2013912-1496336183349-Skyfactory4_Thumb_v002.png","duration":3638,"publication_date":"2017-06-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-56","changefreq":"weekly","video":[{"title":"2017:E183 - Let's Watch - Prey - Part 6","description":"Jeremy makes a tough moral decision regarding an inmate trapped aboard the space station Kletka.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a70ad15-4dbe-4b73-92b8-df9661b556df/sm/2013912-1496167929164-LW_Prey_Part_6_THUMB.jpg","duration":2401,"publication_date":"2017-05-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-overwatch-hide-and-seek","changefreq":"weekly","video":[{"title":"2017:E23 - Overwatch - Hide and Seek","description":"The Achievement Hunter gang is headed off to the Overwatch playground to play a game of hide and seek. It's just like when they were children, except for the guns and swords and knives and horrifying death pits. Maybe it's not like their childhoods at all, just Ryan's specifically.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-overwatch-hide-and-seek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85ba3006-3e91-4d77-8bf7-ed41d72514a9/sm/2013912-1496171449545-ow_thumb.jpg","duration":907,"publication_date":"2017-05-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-star-trek-bridge-crew","changefreq":"weekly","video":[{"title":"2017:E182 - Star Trek: Bridge Crew","description":"Commander Darby, the fearless and competent leader of the USS Aegis, acquires a mission to save some people on a ship that's in trouble or something. Geoff - I mean Darby and his talented crew members, Ensign Sanchez, Lieutenant Gill, and Ensign Lee, will all be heroes if they leave no man behind.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-star-trek-bridge-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36f87874-d584-4078-accf-65e714e81800/sm/2013912-1496166204620-LP_StarTrekBridgeCrew.png","duration":1960,"publication_date":"2017-05-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-54","changefreq":"weekly","video":[{"title":"2017:E178 - Let's Watch - Outlast 2 - Part 9","description":"Row, row, row your boat across the creepy lake. When the monster grabs your legs, you will likely break.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ebe37fc-1e13-4b21-9f22-3ffa1a923fac/sm/2013912-1495819023768-LW_Outlast2_PART9.png","duration":1978,"publication_date":"2017-05-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-16","changefreq":"weekly","video":[{"title":"2017:E2 - Between the Games - Fruit Massacre","description":"Achievement Hunter and a battle axe. That's it. That's all the explanation you need.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf599760-42fa-4d64-bb37-bbefc434e991/sm/2013912-1495839812715-fruity_thumb.jpg","duration":278,"publication_date":"2017-05-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-the-legend-of-bigfoot-the-plot-thickens","changefreq":"weekly","video":[{"title":"2017:E181 - The Legend of Bigfoot: The Plot Thickens","description":"It's been two weeks since Terry \"Trigger\" Rigger, Francis \"Z Bo\" Zwieler, and Dub went missing in the woods. Their brothers, Cleetus \"Big Cleet\" Rigger, Randy Zwieler, and Billy-Tim Dub, have joined together to find these missing boys. Completely unbeknownst to them, the biggest, nastiest, meanest squatch of them all roams these woods: Bigfoot. ","player_loc":"https://roosterteeth.com/embed/lets-play-2017-the-legend-of-bigfoot-the-plot-thickens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6bfc373-2083-4e41-bd50-4f0bc83a524a/sm/1104396-1495840158687-BigfootThumbnailPart2_v2.jpg","duration":1979,"publication_date":"2017-05-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-55","changefreq":"weekly","video":[{"title":"2017:E179 - Let's Watch - Prey - Part 5","description":"Ryan fills in for Geoff as Jeremy continues his journey aboard the space station Kletka.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c007a808-a746-4c0d-9eee-24c0e8c09d7e/sm/2013912-1495827460306-LW_PreySPONSOR_Part5.jpg","duration":2860,"publication_date":"2017-05-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-ultimate-epic-battle-sim","changefreq":"weekly","video":[{"title":"2017:E8 - Ultimate Epic Battle Simulator","description":"Gavin and Michael explore the endless battle possibilities in Ultimate Epic Battle Simulator. Chickens vs a T-rex? Ogers vs 1000 zombies? Genetic mutations? The answer to these important questions are yes, yes and definitely yes.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-ultimate-epic-battle-sim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e21bed39-4ca3-4808-9b12-bda0fc30cb69/sm/2013912-1495839357031-PP_UltimateBattleSim_THUMB2.png","duration":1264,"publication_date":"2017-05-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-the-legend-of-bigfoot-the-adventure-begins","changefreq":"weekly","video":[{"title":"2017:E180 - The Legend of Bigfoot: The Adventure Begins","description":"Trigger, Z Bo, and Dub have gone squatchin'. They gonna find that nasty sonuvabich, Bigfoot, they gonna fill his hairy body fulla lead, and they gon' bring his body back home to show everyone they weren't no crazies for believing in the God-forsaken demon beast himself, Bigfoot.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-the-legend-of-bigfoot-the-adventure-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1526ea0-c96c-4ccf-969d-57a498d37b6d/sm/2013912-1495838108532-BigfootThumbnailPart1_v3.jpg","duration":1700,"publication_date":"2017-05-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-53","changefreq":"weekly","video":[{"title":"2017:E177 - Let's Watch - Outlast 2 - Part 8","description":"Laird is after the boys in the deep, dark forest. Not to worry, he shoots flaming arrows to help light the way!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dad04af-901d-4b29-8a5d-0fcba10c427d/sm/2013912-1495815034214-LW_Outlast2_PART8.png","duration":1850,"publication_date":"2017-05-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-78-fh38gj","changefreq":"weekly","video":[{"title":"2017:E20 - The Pizza Post Show - Last Call #78","description":"The AH Crew sit down to talk about first drinks, Destiny 2 preferences, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-78-fh38gj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/550c9f0e-f95b-4291-b074-8a2eacff10ff/sm/2013912-1495832743916-OFF78_-_PS_-_THUMB.jpg","duration":1374,"publication_date":"2017-05-28T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-dick-nose-ahwu-for-may-28-th-2017-371","changefreq":"weekly","video":[{"title":"2017:E371 - Dick Nose - AHWU for May 28th, 2017 (#371) ","description":"Do you love AHWU so much that you want to get it tattoo'd all over your face, but realize that would make you look like a freak? How about an AHWU shirt instead? Available June 2nd at store.roosterteeth.com\n\n\n\n It's Memorial Day, the day where people either memorialize the memorials or forgot about all that memorialization and just cook up some hot dogs like some sort of gosh darn, unpatriotic dick nose. If you're out grilling with family and friends today, gonna need something nice and refreshing to wash all those weenies down with. We suggest a good ol' barf soda or maybe a ranch soda to get them dogs down your gullet.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-dick-nose-ahwu-for-may-28-th-2017-371","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ba35353-d9cb-47ee-aa7f-d4f1a8dde307/sm/2013912-1495819703081-ahwu.jpg","duration":1116,"publication_date":"2017-05-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-tiny-racers","changefreq":"weekly","video":[{"title":"2017:E176 - GTA V - Tiny Racers","description":"Geoff, Jack, Jeremy, and Michael try out the newest and cutest racing mode in GTA Online!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-tiny-racers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18903a27-bbd4-4816-96e6-bebfb84a0386/sm/2013912-1495746941078-TinyRacersThumb.jpg","duration":1878,"publication_date":"2017-05-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-78-sfyjgb2","changefreq":"weekly","video":[{"title":"2017:E78 - I’m An Adult That Has A Lot of Knives - #78","description":"The AH Crew sit down to talk about Lasik surgery, breaking stuff in the office, Friday the 13th game, and more on this week's Off Topic!\n\nThis episode originally aired May 26, 2017 and is sponsored by Seeso (http://bit.ly/2iXI3mZ)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-78-sfyjgb2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4dc8983-14c5-4282-9ac9-acd5567f9d0e/sm/2013912-1495839978431-OFF78_-_THUMB.jpg","duration":6763,"publication_date":"2017-05-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/companion-spring-2super-mario-maker","changefreq":"weekly","video":[{"title":"S1:E138 - COMPANION SPRING 2 - SUPER MARIO MAKER","description":"COMPANION SPRING 2 - SUPER MARIO MAKER","player_loc":"https://roosterteeth.com/embed/companion-spring-2super-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b874d97-706b-4c07-9e39-625003ee240c/sm/hqdefault.jpg","duration":1051,"publication_date":"2016-01-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/headbutt-havennonsensical-gang-beasts","changefreq":"weekly","video":[{"title":"S1:E137 - HEADBUTT HAVEN - NONSENSICAL Gang Beasts","description":"HEADBUTT HAVEN - NONSENSICAL Gang Beasts","player_loc":"https://roosterteeth.com/embed/headbutt-havennonsensical-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1309fc0a-0ee2-4b07-ab09-c4fb0d0ef73e/sm/hqdefault.jpg","duration":811,"publication_date":"2016-01-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/goodneighborfallout-4-part-26","changefreq":"weekly","video":[{"title":"S1:E136 - GOODNEIGHBOR - Fallout 4 Part 26","description":"GOODNEIGHBOR - Fallout 4 Part 26","player_loc":"https://roosterteeth.com/embed/goodneighborfallout-4-part-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/877c07b7-b586-4828-b09e-2d872de217f7/sm/hqdefault.jpg","duration":1539,"publication_date":"2016-01-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/deliver-deathclaw-eggfallout-4-part-25","changefreq":"weekly","video":[{"title":"S1:E135 - DELIVER DEATHCLAW EGG - Fallout 4 Part 25","description":"DELIVER DEATHCLAW EGG - Fallout 4 Part 25","player_loc":"https://roosterteeth.com/embed/deliver-deathclaw-eggfallout-4-part-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40b02760-b5eb-44de-b558-07baa4b034fc/sm/hqdefault.jpg","duration":1274,"publication_date":"2016-01-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ghoul-territoryfallout-4-part-23","changefreq":"weekly","video":[{"title":"S1:E134 - GHOUL TERRITORY - Fallout 4 Part 23","description":"GHOUL TERRITORY - Fallout 4 Part 23","player_loc":"https://roosterteeth.com/embed/ghoul-territoryfallout-4-part-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccb4726f-8896-47c1-901b-eac41487829f/sm/hqdefault.jpg","duration":1404,"publication_date":"2016-01-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gmod-alcoholic-confessionanimated-classics","changefreq":"weekly","video":[{"title":"S1:E133 - GMOD ALCOHOLIC CONFESSION - Animated Classics","description":"GMOD ALCOHOLIC CONFESSION - Animated Classics","player_loc":"https://roosterteeth.com/embed/gmod-alcoholic-confessionanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df270093-07ae-480f-abd3-9dc969477eda/sm/hqdefault.jpg","duration":110,"publication_date":"2015-08-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gmod-mothers-protectionanimated-classics","changefreq":"weekly","video":[{"title":"S1:E132 - GMOD MOTHERS PROTECTION - Animated Classics","description":"GMOD MOTHERS PROTECTION - Animated Classics","player_loc":"https://roosterteeth.com/embed/gmod-mothers-protectionanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e950d840-afe5-4ecb-916e-78a795886551/sm/hqdefault.jpg","duration":106,"publication_date":"2015-07-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gmod-basement-trollanimated-classics","changefreq":"weekly","video":[{"title":"S1:E131 - GMOD BASEMENT TROLL - Animated Classics","description":"GMOD BASEMENT TROLL - Animated Classics","player_loc":"https://roosterteeth.com/embed/gmod-basement-trollanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc7ce757-6369-4f59-b86f-609f1004d666/sm/hqdefault.jpg","duration":96,"publication_date":"2015-06-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/world-staranimated-classics","changefreq":"weekly","video":[{"title":"S1:E130 - WORLD STAR - Animated Classics","description":"WORLD STAR - Animated Classics","player_loc":"https://roosterteeth.com/embed/world-staranimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/706c3ac8-5060-4a11-b006-5013ea9be0c1/sm/hqdefault.jpg","duration":112,"publication_date":"2015-05-01T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazing-froganimated-classics","changefreq":"weekly","video":[{"title":"S1:E129 - AMAZING FROG - Animated Classics","description":"AMAZING FROG - Animated Classics","player_loc":"https://roosterteeth.com/embed/amazing-froganimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38a4da28-9057-4fe3-8d2a-dd239433b1f1/sm/hqdefault.jpg","duration":92,"publication_date":"2015-04-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-nights-at-freddys-2animated-classics","changefreq":"weekly","video":[{"title":"S1:E128 - FIVE NIGHTS AT FREDDYS 2 - Animated Classics","description":"FIVE NIGHTS AT FREDDY'S 2 - Animated Classics","player_loc":"https://roosterteeth.com/embed/five-nights-at-freddys-2animated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05d8797e-0b14-49e7-9036-65fedef7d011/sm/hqdefault.jpg","duration":111,"publication_date":"2015-03-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/stopping-a-cult-2animated-classics","changefreq":"weekly","video":[{"title":"S1:E127 - STOPPING A CULT 2 - Animated Classics","description":"STOPPING A CULT 2 - Animated Classics","player_loc":"https://roosterteeth.com/embed/stopping-a-cult-2animated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1115f08f-ccdd-44bd-a868-00b3eb45157c/sm/hqdefault.jpg","duration":73,"publication_date":"2015-02-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/knife-trifecta","changefreq":"weekly","video":[{"title":"S1:E126 - KNIFE TRIFECTA","description":"KNIFE TRIFECTA","player_loc":"https://roosterteeth.com/embed/knife-trifecta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7cc865d-1d64-4df3-a24b-923e854de947/sm/hqdefault.jpg","duration":262,"publication_date":"2015-01-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/taking-down-a-cultanimated-classics-first-of-2015-","changefreq":"weekly","video":[{"title":"S1:E125 - TAKING DOWN A CULT - Animated Classics FIRST OF 2015 !","description":"TAKING DOWN A CULT - Animated Classics FIRST OF 2015 !","player_loc":"https://roosterteeth.com/embed/taking-down-a-cultanimated-classics-first-of-2015-","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa8ea23f-336e-4fd8-8bcf-486ad28fdd2d/sm/hqdefault.jpg","duration":78,"publication_date":"2015-01-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/my-first-knife","changefreq":"weekly","video":[{"title":"S1:E124 - MY FIRST KNIFE","description":"MY FIRST KNIFE","player_loc":"https://roosterteeth.com/embed/my-first-knife","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d88ff89-a202-425a-979d-44fd0544868b/sm/hqdefault.jpg","duration":260,"publication_date":"2015-01-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/another-knife","changefreq":"weekly","video":[{"title":"S1:E123 - ANOTHER KNIFE","description":"ANOTHER KNIFE","player_loc":"https://roosterteeth.com/embed/another-knife","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b2d67b7-7384-4767-86c9-5fba47c2923a/sm/hqdefault.jpg","duration":366,"publication_date":"2015-01-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-jump-scare-ladyanimated-classics","changefreq":"weekly","video":[{"title":"S1:E122 - THE JUMP SCARE LADY - Animated Classics","description":"THE JUMP SCARE LADY - Animated Classics","player_loc":"https://roosterteeth.com/embed/the-jump-scare-ladyanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d701474-6e14-45f5-a464-ead1ca52ed1d/sm/hqdefault.jpg","duration":91,"publication_date":"2014-12-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fox-scares-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E121 - FOX SCARES NOVA - Animated Classics","description":"FOX SCARES NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/fox-scares-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03f29b53-8b9e-4fae-b9d3-279cd08b63d6/sm/hqdefault.jpg","duration":96,"publication_date":"2014-11-21T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-finds-loveanimated-classics","changefreq":"weekly","video":[{"title":"S1:E120 - NOVA FINDS LOVE - Animated Classics","description":"NOVA FINDS LOVE - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-finds-loveanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b632b5ae-76c1-4dc6-b5de-d11cdf60a98a/sm/hqdefault.jpg","duration":123,"publication_date":"2014-11-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gotta-go-fastsanic-ball","changefreq":"weekly","video":[{"title":"S1:E119 - GOTTA GO FAST - SANIC BALL","description":"GOTTA GO FAST - SANIC BALL","player_loc":"https://roosterteeth.com/embed/gotta-go-fastsanic-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71e7e7f0-179d-4518-bde0-4cae7d9421db/sm/hqdefault.jpg","duration":555,"publication_date":"2014-09-21T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hey-you-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E118 - HEY YOU NOVA - Animated Classics","description":"HEY YOU NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/hey-you-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82e30776-2916-44c5-b31e-cc6f45d27aff/sm/hqdefault.jpg","duration":107,"publication_date":"2014-09-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/storm-chaser-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E117 - STORM CHASER NOVA - Animated Classics","description":"STORM CHASER NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/storm-chaser-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a8bb9a9-e739-47f7-9c9a-7fb740ba4873/sm/hqdefault.jpg","duration":87,"publication_date":"2014-08-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-and-the-little-bulgeanimated-classics","changefreq":"weekly","video":[{"title":"S1:E116 - NOVA AND THE LITTLE BULGE - Animated Classics","description":"NOVA AND THE LITTLE BULGE - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-and-the-little-bulgeanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c045dfe8-67d1-4780-987a-94b12952a99f/sm/hqdefault.jpg","duration":88,"publication_date":"2014-07-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smoking-simulator","changefreq":"weekly","video":[{"title":"S1:E115 - SMOKING SIMULATOR","description":"SMOKING SIMULATOR","player_loc":"https://roosterteeth.com/embed/smoking-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f831ba8d-1fec-48cd-b691-a04f0a480e73/sm/hqdefault.jpg","duration":758,"publication_date":"2014-07-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-gets-a-berryanimated-classics","changefreq":"weekly","video":[{"title":"S1:E114 - NOVA GETS A BERRY - Animated Classics","description":"NOVA GETS A BERRY - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-gets-a-berryanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f830fc0-ac39-47d9-8195-aa77e6a4df0e/sm/hqdefault.jpg","duration":87,"publication_date":"2014-07-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/purposely-dying","changefreq":"weekly","video":[{"title":"S1:E113 - PURPOSELY DYING","description":"PURPOSELY DYING","player_loc":"https://roosterteeth.com/embed/purposely-dying","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a27d87d6-1af0-490b-8961-4975536c32d2/sm/hqdefault.jpg","duration":190,"publication_date":"2014-06-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-saw-everythinganimated-classics","changefreq":"weekly","video":[{"title":"S1:E112 - NOVA SAW EVERYTHING - Animated Classics","description":"NOVA SAW EVERYTHING - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-saw-everythinganimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7424a99-6016-4ecf-9c37-94f06a93bce9/sm/hqdefault.jpg","duration":84,"publication_date":"2014-06-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/novas-family-reunionanimated-classics","changefreq":"weekly","video":[{"title":"S1:E111 - NOVAS FAMILY REUNION - Animated Classics","description":"NOVAS FAMILY REUNION - Animated Classics","player_loc":"https://roosterteeth.com/embed/novas-family-reunionanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7415b247-3e8a-43b8-a243-cbc06debdcaf/sm/hqdefault.jpg","duration":96,"publication_date":"2014-05-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-storms-the-toweranimated-classics","changefreq":"weekly","video":[{"title":"S1:E110 - NOVA STORMS THE TOWER - Animated Classics","description":"NOVA STORMS THE TOWER - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-storms-the-toweranimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c55fe9d9-22ec-4549-9d4b-8b25d9f22fdb/sm/hqdefault.jpg","duration":121,"publication_date":"2014-05-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sandboxnonsensical-gang-beasts-wnovaimmortal-ep4","changefreq":"weekly","video":[{"title":"S1:E109 - SANDBOX - Nonsensical Gang Beasts w/Nova & Immortal Ep.4","description":"SANDBOX - Nonsensical Gang Beasts w/Nova & Immortal Ep.4","player_loc":"https://roosterteeth.com/embed/sandboxnonsensical-gang-beasts-wnovaimmortal-ep4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c8a203d-17c2-4265-99d1-ea9bc99292b9/sm/hqdefault.jpg","duration":717,"publication_date":"2014-05-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/best-game-evernonsensical-gang-beasts-wnovaimmortal-ep1","changefreq":"weekly","video":[{"title":"S1:E108 - BEST. GAME. EVER. - Nonsensical Gang Beasts w/Nova & Immortal Ep.1","description":"BEST. GAME. EVER. - Nonsensical Gang Beasts w/Nova & Immortal Ep.1","player_loc":"https://roosterteeth.com/embed/best-game-evernonsensical-gang-beasts-wnovaimmortal-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56557891-c05a-4f62-a3a8-fbf3803075ff/sm/hqdefault.jpg","duration":400,"publication_date":"2014-05-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-stops-a-murdereranimated-classics","changefreq":"weekly","video":[{"title":"S1:E107 - NOVA STOPS A MURDERER - Animated Classics","description":"NOVA STOPS A MURDERER - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-stops-a-murdereranimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f58c18f1-d8ed-47a1-a794-1c34cf64fe79/sm/hqdefault.jpg","duration":102,"publication_date":"2014-04-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/taxi-driver-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E106 - TAXI DRIVER NOVA - Animated Classics","description":"TAXI DRIVER NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/taxi-driver-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3775da70-b557-4675-9c4b-0d451bf6039a/sm/hqdefault.jpg","duration":87,"publication_date":"2014-03-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-gets-followedanimated-classics","changefreq":"weekly","video":[{"title":"S1:E105 - NOVA GETS FOLLOWED - Animated Classics","description":"NOVA GETS FOLLOWED - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-gets-followedanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35dd7d3c-4af2-4a6c-8899-9008dba8a188/sm/hqdefault.jpg","duration":68,"publication_date":"2014-02-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-is-a-cannibalanimated-classics","changefreq":"weekly","video":[{"title":"S1:E104 - NOVA IS A CANNIBAL - Animated Classics","description":"NOVA IS A CANNIBAL - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-is-a-cannibalanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e43e82a5-180f-4640-ac38-75591e99f665/sm/hqdefault.jpg","duration":76,"publication_date":"2014-01-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-saves-a-babyanimated-classics","changefreq":"weekly","video":[{"title":"S1:E103 - NOVA SAVES A BABY - Animated Classics","description":"NOVA SAVES A BABY - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-saves-a-babyanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac55c146-3347-4021-b35c-49496f2717bb/sm/hqdefault.jpg","duration":91,"publication_date":"2013-12-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-gets-a-hotdoganimated-classics","changefreq":"weekly","video":[{"title":"S1:E102 - NOVA GETS A HOTDOG - Animated Classics","description":"NOVA GETS A HOTDOG - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-gets-a-hotdoganimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83e9249f-e974-4b63-967f-8b8bf9412c32/sm/hqdefault.jpg","duration":111,"publication_date":"2013-10-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/5k-bounty-apartment-tourgrand-theft-auto-5-online-w-nova-kevinimmortal-ep1","changefreq":"weekly","video":[{"title":"S1:E101 - 5K BOUNTY, APARTMENT TOUR - Grand Theft Auto 5 ONLINE w/ Nova, Kevin & Immortal Ep.1","description":"5K BOUNTY, APARTMENT TOUR - Grand Theft Auto 5 ONLINE w/ Nova, Kevin & Immortal Ep.1","player_loc":"https://roosterteeth.com/embed/5k-bounty-apartment-tourgrand-theft-auto-5-online-w-nova-kevinimmortal-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4710c19e-dc69-4abe-b920-e57fb21b5d4d/sm/hqdefault.jpg","duration":771,"publication_date":"2013-10-27T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/return-of-slender-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E100 - RETURN OF SLENDER NOVA - Animated Classics","description":"RETURN OF SLENDER NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/return-of-slender-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dc99b90-036e-42c7-bf00-56b39ac40d44/sm/hqdefault.jpg","duration":79,"publication_date":"2013-10-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/slender-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E99 - SLENDER NOVA - Animated Classics","description":"SLENDER NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/slender-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcc58211-834b-48ed-beb4-f0d6ec93d2be/sm/hqdefault.jpg","duration":107,"publication_date":"2013-09-27T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/barrel-life-is-hardgmod-suicide-barrels-wnova-immortalkevin-ep1","changefreq":"weekly","video":[{"title":"S1:E98 - BARREL LIFE IS HARD - Gmod Suicide Barrels w/Nova, Immortal & Kevin Ep.1","description":"BARREL LIFE IS HARD - Gmod Suicide Barrels w/Nova, Immortal & Kevin Ep.1","player_loc":"https://roosterteeth.com/embed/barrel-life-is-hardgmod-suicide-barrels-wnova-immortalkevin-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda614fd-fcb5-43d2-97a6-778f63e22cf4/sm/hqdefault.jpg","duration":645,"publication_date":"2013-09-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/natural-disastergmod-storm-chasers-wnova-immortalkevin-ep1","changefreq":"weekly","video":[{"title":"S1:E97 - NATURAL DISASTER - Gmod Storm Chasers w/Nova, Immortal & Kevin Ep.1","description":"NATURAL DISASTER - Gmod Storm Chasers w/Nova, Immortal & Kevin Ep.1","player_loc":"https://roosterteeth.com/embed/natural-disastergmod-storm-chasers-wnova-immortalkevin-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b271c12a-e526-45eb-90c4-3d0c81806d88/sm/hqdefault.jpg","duration":830,"publication_date":"2013-08-21T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/girl-troublesanimated-classics","changefreq":"weekly","video":[{"title":"S1:E96 - GIRL TROUBLES - Animated Classics","description":"GIRL TROUBLES - Animated Classics","player_loc":"https://roosterteeth.com/embed/girl-troublesanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/089bed8b-bfd4-4596-9641-57c0887eb995/sm/hqdefault.jpg","duration":76,"publication_date":"2013-08-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/revenge-is-sweetgmod-slender-multiplayer-wnovaimmortal-ep5","changefreq":"weekly","video":[{"title":"S1:E95 - REVENGE IS SWEET - Gmod SLENDER (Multiplayer) w/Nova & Immortal Ep.5","description":"REVENGE IS SWEET - Gmod SLENDER (Multiplayer) w/Nova & Immortal Ep.5","player_loc":"https://roosterteeth.com/embed/revenge-is-sweetgmod-slender-multiplayer-wnovaimmortal-ep5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb28d645-0f74-4366-afcd-d3a234bce9af/sm/hqdefault.jpg","duration":841,"publication_date":"2013-08-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/i-am-slender-mangmod-slender-multiplayer-wnovaimmortal-ep2","changefreq":"weekly","video":[{"title":"S1:E94 - I AM SLENDER MAN - Gmod SLENDER (Multiplayer) w/Nova & Immortal Ep.2","description":"I AM SLENDER MAN - Gmod SLENDER (Multiplayer) w/Nova & Immortal Ep.2","player_loc":"https://roosterteeth.com/embed/i-am-slender-mangmod-slender-multiplayer-wnovaimmortal-ep2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42479c69-f0e8-4f6d-bc16-fb5982d693bd/sm/hqdefault.jpg","duration":629,"publication_date":"2013-07-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/slender-man-arrivesgmod-slender-multiplayer-wnovaimmortal-ep1","changefreq":"weekly","video":[{"title":"S1:E93 - SLENDER MAN ARRIVES - Gmod SLENDER (Multiplayer) w/Nova & Immortal Ep.1","description":"SLENDER MAN ARRIVES - Gmod SLENDER (Multiplayer) w/Nova & Immortal Ep.1","player_loc":"https://roosterteeth.com/embed/slender-man-arrivesgmod-slender-multiplayer-wnovaimmortal-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f324ff0-4509-4a79-8f66-227e6291aa44/sm/hqdefault.jpg","duration":584,"publication_date":"2013-07-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/four-storespayday-2-beta-wnova-sp00nimmortal-ep2","changefreq":"weekly","video":[{"title":"S1:E92 - FOUR STORES - PAYDAY 2 Beta w/Nova, Sp00n & Immortal Ep.2","description":"FOUR STORES - PAYDAY 2 Beta w/Nova, Sp00n & Immortal Ep.2","player_loc":"https://roosterteeth.com/embed/four-storespayday-2-beta-wnova-sp00nimmortal-ep2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fab2ffe6-9a31-439f-86b9-c528715f106c/sm/hqdefault.jpg","duration":731,"publication_date":"2013-07-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screaming-like-a-girlanimated-classics","changefreq":"weekly","video":[{"title":"S1:E91 - SCREAMING LIKE A GIRL - Animated Classics","description":"SCREAMING LIKE A GIRL - Animated Classics","player_loc":"https://roosterteeth.com/embed/screaming-like-a-girlanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e989da1-42cc-465f-9058-6e1b3a749360/sm/hqdefault.jpg","duration":65,"publication_date":"2013-07-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/carley","changefreq":"weekly","video":[{"title":"S1:E90 - CARLEY","description":"CARLEY","player_loc":"https://roosterteeth.com/embed/carley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f0d1e2d-df06-4d4f-89d1-cf31c618fe3a/sm/hqdefault.jpg","duration":277,"publication_date":"2013-07-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hands-in-yo-faceanimated-classics","changefreq":"weekly","video":[{"title":"S1:E89 - HANDS IN YO FACE - Animated Classics","description":"HANDS IN YO FACE - Animated Classics","player_loc":"https://roosterteeth.com/embed/hands-in-yo-faceanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/475d47d1-e41a-45d8-9684-7d33c02254a5/sm/hqdefault.jpg","duration":75,"publication_date":"2013-07-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/charlie-sheen-smokersleft-4-dead-2-mods-questionable-ethics-wnova-sp00nkootra-ep7","changefreq":"weekly","video":[{"title":"S1:E88 - CHARLIE SHEEN SMOKERS - Left 4 Dead 2 Mods Questionable Ethics w/Nova Sp00n & Kootra Ep.7","description":"CHARLIE SHEEN SMOKERS - Left 4 Dead 2 Mods Questionable Ethics w/Nova Sp00n & Kootra Ep.7","player_loc":"https://roosterteeth.com/embed/charlie-sheen-smokersleft-4-dead-2-mods-questionable-ethics-wnova-sp00nkootra-ep7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b5ca718-65ae-4a1b-988b-c60db823a429/sm/hqdefault.jpg","duration":758,"publication_date":"2013-06-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cat-infectedleft-4-dead-2-mods-questionable-ethics-wnova-sp00nkootra-ep6","changefreq":"weekly","video":[{"title":"S1:E87 - CAT INFECTED - Left 4 Dead 2 Mods Questionable Ethics w/Nova Sp00n & Kootra Ep.6","description":"CAT INFECTED - Left 4 Dead 2 Mods Questionable Ethics w/Nova Sp00n & Kootra Ep.6","player_loc":"https://roosterteeth.com/embed/cat-infectedleft-4-dead-2-mods-questionable-ethics-wnova-sp00nkootra-ep6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ff039d5-852c-4963-82b6-5348ef1fcb00/sm/hqdefault.jpg","duration":920,"publication_date":"2013-06-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/stealing-thors-womananimated-classics","changefreq":"weekly","video":[{"title":"S1:E86 - STEALING THORS WOMAN - Animated Classics","description":"STEALING THORS WOMAN - Animated Classics","player_loc":"https://roosterteeth.com/embed/stealing-thors-womananimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85f69539-83fc-4fd6-bc20-17e5fef47bc2/sm/hqdefault.jpg","duration":71,"publication_date":"2013-05-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ultimate-sacrificeleft-4-dead-2-mods-wnova-sp00nkootra-ep5","changefreq":"weekly","video":[{"title":"S1:E85 - ULTIMATE SACRIFICE - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.5","description":"ULTIMATE SACRIFICE - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.5","player_loc":"https://roosterteeth.com/embed/ultimate-sacrificeleft-4-dead-2-mods-wnova-sp00nkootra-ep5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57a3b24a-92a9-4c99-8689-9048030f62dc/sm/hqdefault.jpg","duration":1247,"publication_date":"2013-05-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hank-hill-tankleft-4-dead-2-mods-wnova-sp00nkootra-ep3","changefreq":"weekly","video":[{"title":"S1:E84 - HANK HILL TANK - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.3","description":"HANK HILL TANK - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.3","player_loc":"https://roosterteeth.com/embed/hank-hill-tankleft-4-dead-2-mods-wnova-sp00nkootra-ep3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0cced3a-817f-4a0c-b5e3-3253c4aced86/sm/hqdefault.jpg","duration":769,"publication_date":"2013-05-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/osama-bin-witchleft-4-dead-2-mods-wnova-sp00nkootra-ep2","changefreq":"weekly","video":[{"title":"S1:E83 - OSAMA BIN WITCH - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.2","description":"OSAMA BIN WITCH - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.2","player_loc":"https://roosterteeth.com/embed/osama-bin-witchleft-4-dead-2-mods-wnova-sp00nkootra-ep2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca13f210-5fdc-4814-af4a-9be5bd0f6ac5/sm/hqdefault.jpg","duration":708,"publication_date":"2013-05-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zombie-teletubbiesleft-4-dead-2-mods-wnova-sp00nkootra-ep1","changefreq":"weekly","video":[{"title":"S1:E82 - ZOMBIE TELETUBBIES - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.1","description":"ZOMBIE TELETUBBIES - Left 4 Dead 2 Mods w/Nova Sp00n & Kootra Ep.1","player_loc":"https://roosterteeth.com/embed/zombie-teletubbiesleft-4-dead-2-mods-wnova-sp00nkootra-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01be4b5c-66d7-4d60-aa3f-d23947085fd6/sm/hqdefault.jpg","duration":851,"publication_date":"2013-05-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-block-theateranimated-classics","changefreq":"weekly","video":[{"title":"S1:E81 - NOVA BLOCK THEATER - Animated Classics","description":"NOVA BLOCK THEATER - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-block-theateranimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cac54c80-8383-4f0b-b3ec-fdbd357fc051/sm/hqdefault.jpg","duration":73,"publication_date":"2013-05-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ruining-friendshipsbattleblock-theater-wnovaimmortal-ep1","changefreq":"weekly","video":[{"title":"S1:E80 - RUINING FRIENDSHIPS - Battleblock Theater w/Nova & Immortal Ep.1","description":"RUINING FRIENDSHIPS - Battleblock Theater w/Nova & Immortal Ep.1","player_loc":"https://roosterteeth.com/embed/ruining-friendshipsbattleblock-theater-wnovaimmortal-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dfcdd3b-5b39-499e-957c-0a03ac51241f/sm/hqdefault.jpg","duration":763,"publication_date":"2013-04-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-attacks-novaanimated-classics","changefreq":"weekly","video":[{"title":"S1:E79 - NATURE ATTACKS NOVA - Animated Classics","description":"NATURE ATTACKS NOVA - Animated Classics","player_loc":"https://roosterteeth.com/embed/nature-attacks-novaanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/071c487e-c734-476f-a32d-ac72bbe96ef4/sm/hqdefault.jpg","duration":84,"publication_date":"2013-03-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ambulance-adventuregta-ballad-of-gay-tony-free-roam-wnovacreatures-ep6","changefreq":"weekly","video":[{"title":"S1:E78 - AMBULANCE ADVENTURE - GTA: Ballad of Gay Tony FREE ROAM w/Nova & Creatures Ep.6","description":"AMBULANCE ADVENTURE - GTA: Ballad of Gay Tony FREE ROAM w/Nova & Creatures Ep.6","player_loc":"https://roosterteeth.com/embed/ambulance-adventuregta-ballad-of-gay-tony-free-roam-wnovacreatures-ep6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/496fa15a-083f-4f05-b474-1d0ad6a3262f/sm/hqdefault.jpg","duration":1163,"publication_date":"2013-03-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-asgard-adventures-wnovakootra-ep52herobrine-cometh","changefreq":"weekly","video":[{"title":"S1:E77 - Minecraft: Asgard Adventures w/Nova & Kootra Ep.52 - HEROBRINE COMETH","description":"Minecraft: Asgard Adventures w/Nova & Kootra Ep.52 - HEROBRINE COMETH","player_loc":"https://roosterteeth.com/embed/minecraft-asgard-adventures-wnovakootra-ep52herobrine-cometh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b19b0a5-724b-4b23-a068-3d1eafdfd593/sm/hqdefault.jpg","duration":857,"publication_date":"2013-03-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dont-look-at-mejailbreak-wnova-immortalkevin-ep3","changefreq":"weekly","video":[{"title":"S1:E76 - DONT LOOK AT ME - Jailbreak w/Nova, Immortal & Kevin Ep.3","description":"DON'T LOOK AT ME - Jailbreak w/Nova, Immortal & Kevin Ep.3","player_loc":"https://roosterteeth.com/embed/dont-look-at-mejailbreak-wnova-immortalkevin-ep3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de63a592-81a8-4118-a4c1-a7f2ecba85be/sm/hqdefault.jpg","duration":599,"publication_date":"2013-03-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/door-troublesanimated-classics","changefreq":"weekly","video":[{"title":"S1:E75 - DOOR TROUBLES - Animated Classics","description":"DOOR TROUBLES - Animated Classics","player_loc":"https://roosterteeth.com/embed/door-troublesanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4102c381-6527-4fca-b2b9-3c7a6fe80b82/sm/hqdefault.jpg","duration":69,"publication_date":"2013-03-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/to-the-cafeteriajailbreak-wnova-immortalkevin-kinda-ep2","changefreq":"weekly","video":[{"title":"S1:E74 - TO THE CAFETERIA - Jailbreak w/Nova, Immortal & Kevin (kinda) Ep.2","description":"TO THE CAFETERIA - Jailbreak w/Nova, Immortal & Kevin (kinda) Ep.2","player_loc":"https://roosterteeth.com/embed/to-the-cafeteriajailbreak-wnova-immortalkevin-kinda-ep2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71ebd47d-9582-424a-ad23-9b04c431e8c4/sm/hqdefault.jpg","duration":617,"publication_date":"2013-03-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-youngest-wardenjailbreak-wnova-immortalkevin-kinda-ep1","changefreq":"weekly","video":[{"title":"S1:E73 - THE YOUNGEST WARDEN - Jailbreak w/Nova, Immortal & Kevin (kinda) Ep.1","description":"THE YOUNGEST WARDEN - Jailbreak w/Nova, Immortal & Kevin (kinda) Ep.1","player_loc":"https://roosterteeth.com/embed/the-youngest-wardenjailbreak-wnova-immortalkevin-kinda-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0551444-61b2-4bc1-b9ce-6d5f014a2b59/sm/hqdefault.jpg","duration":593,"publication_date":"2013-03-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nova-goes-to-the-moviesanimated-classics","changefreq":"weekly","video":[{"title":"S1:E72 - NOVA GOES TO THE MOVIES - Animated Classics","description":"NOVA GOES TO THE MOVIES - Animated Classics","player_loc":"https://roosterteeth.com/embed/nova-goes-to-the-moviesanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1cfc984-407c-4ccd-9707-2737e05c6a4f/sm/hqdefault.jpg","duration":65,"publication_date":"2013-02-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/horse-orgyanimated-classics","changefreq":"weekly","video":[{"title":"S1:E71 - HORSE ORGY! - Animated Classics","description":"HORSE ORGY! - Animated Classics","player_loc":"https://roosterteeth.com/embed/horse-orgyanimated-classics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30140394-9f28-4c62-a9d0-0550953a877e/sm/hqdefault.jpg","duration":73,"publication_date":"2013-02-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/watch-the-movieultimate-chimera-hunt-wnova-immortalkevin-ep8","changefreq":"weekly","video":[{"title":"S1:E70 - WATCH THE MOVIE - Ultimate Chimera HUNT w/Nova, Immortal & Kevin Ep.8","description":"WATCH THE MOVIE - Ultimate Chimera HUNT w/Nova, Immortal & Kevin Ep.8","player_loc":"https://roosterteeth.com/embed/watch-the-movieultimate-chimera-hunt-wnova-immortalkevin-ep8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09af4f9e-a1b8-4391-91e4-48629ff7288f/sm/hqdefault.jpg","duration":657,"publication_date":"2013-01-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ein-the-puppy-corgi-ft-going-up-the-steps-attempt","changefreq":"weekly","video":[{"title":"S1:E69 - Ein The Puppy CORGI ft. Going up the steps attempt","description":"Ein The Puppy CORGI ft. Going up the steps attempt","player_loc":"https://roosterteeth.com/embed/ein-the-puppy-corgi-ft-going-up-the-steps-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/863803a5-3531-4b10-9f1e-eced2d23b32c/sm/hqdefault.jpg","duration":408,"publication_date":"2012-12-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wii-u-unboxing-wut","changefreq":"weekly","video":[{"title":"S1:E68 - Wii U Unboxing Wut","description":"Wii U Unboxing Wut","player_loc":"https://roosterteeth.com/embed/wii-u-unboxing-wut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f57e18ca-95ca-4872-9592-8b536f730662/sm/hqdefault.jpg","duration":166,"publication_date":"2012-11-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zombie-escape-zombies-counter-strike-go-mod-wnovasp00n-ep2-i-scream-a-girly-scream","changefreq":"weekly","video":[{"title":"S1:E67 - Zombie Escape / Zombies (Counter-Strike GO Mod) w/Nova & Sp00n Ep.2: I SCREAM A GIRLY SCREAM","description":"Zombie Escape / Zombies (Counter-Strike GO Mod) w/Nova & Sp00n Ep.2: I SCREAM A GIRLY SCREAM","player_loc":"https://roosterteeth.com/embed/zombie-escape-zombies-counter-strike-go-mod-wnovasp00n-ep2-i-scream-a-girly-scream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2b81c3f-a21a-4fc3-ab10-ff8278014895/sm/hqdefault.jpg","duration":731,"publication_date":"2012-09-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zombie-escape-zombies-counter-strike-go-mod-wnovasp00n-ep1-hide-and-seek","changefreq":"weekly","video":[{"title":"S1:E66 - Zombie Escape / Zombies (Counter-Strike GO Mod) w/Nova & Sp00n Ep.1: HIDE AND SEEK","description":"Zombie Escape / Zombies (Counter-Strike GO Mod) w/Nova & Sp00n Ep.1: HIDE AND SEEK","player_loc":"https://roosterteeth.com/embed/zombie-escape-zombies-counter-strike-go-mod-wnovasp00n-ep1-hide-and-seek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33c71fcf-8290-4d91-9631-e49d0a88ab70/sm/hqdefault.jpg","duration":747,"publication_date":"2012-09-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/garrys-mod-13-beta-wnovasp00n-ep1we-make-faces-at-each-other","changefreq":"weekly","video":[{"title":"S1:E65 - Garrys Mod 13 Beta w/Nova & Sp00n Ep.1 - WE MAKE FACES AT EACH OTHER","description":"Garry's Mod 13 Beta w/Nova & Sp00n Ep.1 - WE MAKE FACES AT EACH OTHER","player_loc":"https://roosterteeth.com/embed/garrys-mod-13-beta-wnovasp00n-ep1we-make-faces-at-each-other","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/707baa2a-cb0d-4a7e-a55d-3c13b55af710/sm/hqdefault.jpg","duration":679,"publication_date":"2012-08-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sumotori-dreams-mods-wnova-ep16running-out-of-maps","changefreq":"weekly","video":[{"title":"S1:E64 - Sumotori Dreams MODS w/Nova Ep.16 - RUNNING OUT OF MAPS","description":"Sumotori Dreams MODS w/Nova Ep.16 - RUNNING OUT OF MAPS","player_loc":"https://roosterteeth.com/embed/sumotori-dreams-mods-wnova-ep16running-out-of-maps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3855bf3-9d81-482c-a2c4-7f60ea8d0acb/sm/hqdefault.jpg","duration":613,"publication_date":"2012-08-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/1-million-subscribers","changefreq":"weekly","video":[{"title":"S1:E63 - 1 MILLION SUBSCRIBERS","description":"1 MILLION SUBSCRIBERS","player_loc":"https://roosterteeth.com/embed/1-million-subscribers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07485b30-048e-415a-abc4-6369a511ebbf/sm/hqdefault.jpg","duration":229,"publication_date":"2012-08-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/slender-attempt-1-wnovathe-window-man","changefreq":"weekly","video":[{"title":"S1:E62 - SLENDER: Attempt 1 w/Nova - THE WINDOW MAN","description":"SLENDER: Attempt 1 w/Nova - THE WINDOW MAN","player_loc":"https://roosterteeth.com/embed/slender-attempt-1-wnovathe-window-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89b63b4d-b755-4203-9236-f77d9630bbea/sm/hqdefault.jpg","duration":341,"publication_date":"2012-08-01T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep181-facecamsplat-on-the-ceiling","changefreq":"weekly","video":[{"title":"S1:E61 - Happy Wheels w/Nova Ep.181 FACECAM - SPLAT ON THE CEILING","description":"Happy Wheels w/Nova Ep.181 FACECAM - SPLAT ON THE CEILING","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep181-facecamsplat-on-the-ceiling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9f1f71c-c9ab-41a6-9845-a59f0ba428f5/sm/hqdefault.jpg","duration":802,"publication_date":"2012-07-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-kart-wii-wcar-controller-full-cam-wnova-ep1the-things-i-do","changefreq":"weekly","video":[{"title":"S1:E60 - Mario Kart Wii w/Car Controller FULL CAM w/Nova Ep.1 - THE THINGS I DO...","description":"Mario Kart Wii w/Car Controller FULL CAM w/Nova Ep.1 - THE THINGS I DO...","player_loc":"https://roosterteeth.com/embed/mario-kart-wii-wcar-controller-full-cam-wnova-ep1the-things-i-do","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b576a853-5626-4ac3-bc1c-ed188bd6c657/sm/hqdefault.jpg","duration":564,"publication_date":"2012-07-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep170-facecamthe-bmx-pro-who-wasnt-pro","changefreq":"weekly","video":[{"title":"S1:E59 - Happy Wheels w/Nova Ep.170 FACECAM - THE BMX PRO WHO WASNT PRO","description":"Happy Wheels w/Nova Ep.170 FACECAM - THE BMX PRO WHO WASNT PRO","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep170-facecamthe-bmx-pro-who-wasnt-pro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0841e97-3d01-4ede-b0dc-6f0257e74bf9/sm/hqdefault.jpg","duration":556,"publication_date":"2012-07-07T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep169-facecamworst-robbery-ever","changefreq":"weekly","video":[{"title":"S1:E58 - Happy Wheels w/Nova Ep.169 FACECAM - WORST ROBBERY EVER!","description":"Happy Wheels w/Nova Ep.169 FACECAM - WORST ROBBERY EVER!","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep169-facecamworst-robbery-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67827aef-6f44-4fc5-b0af-9d3e7f49d181/sm/hqdefault.jpg","duration":845,"publication_date":"2012-07-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/slabs","changefreq":"weekly","video":[{"title":"S1:E57 - SLABS","description":"SLABS","player_loc":"https://roosterteeth.com/embed/slabs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a156cbe-bad6-4f6a-806a-ef4652fb8e66/sm/hqdefault.jpg","duration":361,"publication_date":"2012-06-27T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-amazing-spider-man-walkthrough-wnova-ep1long-prologue-is-long","changefreq":"weekly","video":[{"title":"S1:E56 - The Amazing Spider-Man Walkthrough w/Nova Ep.1 - LONG PROLOGUE IS LONG","description":"The Amazing Spider-Man Walkthrough w/Nova Ep.1 - LONG PROLOGUE IS LONG","player_loc":"https://roosterteeth.com/embed/the-amazing-spider-man-walkthrough-wnova-ep1long-prologue-is-long","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/595a8c9b-a816-4e56-9486-6b7ffc8aa8cc/sm/hqdefault.jpg","duration":1083,"publication_date":"2012-06-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sumotori-dreams-mods-wnova-ep13the-obstacle-course","changefreq":"weekly","video":[{"title":"S1:E55 - Sumotori Dreams MODS w/Nova Ep.13 - THE OBSTACLE COURSE","description":"Sumotori Dreams MODS w/Nova Ep.13 - THE OBSTACLE COURSE","player_loc":"https://roosterteeth.com/embed/sumotori-dreams-mods-wnova-ep13the-obstacle-course","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d5ae3ff-7540-461d-9997-c65bd2b58b54/sm/hqdefault.jpg","duration":779,"publication_date":"2012-06-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep163licorice-leg","changefreq":"weekly","video":[{"title":"S1:E54 - Happy Wheels w/Nova Ep.163 - LICORICE LEG","description":"Happy Wheels w/Nova Ep.163 - LICORICE LEG","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep163licorice-leg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f3efe57-708f-4b15-9364-aa32c0de47f3/sm/hqdefault.jpg","duration":592,"publication_date":"2012-06-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep161fresh-poop-in-the-stalls","changefreq":"weekly","video":[{"title":"S1:E53 - Happy Wheels w/Nova Ep.161 - FRESH POOP IN THE STALLS","description":"Happy Wheels w/Nova Ep.161 - FRESH POOP IN THE STALLS","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep161fresh-poop-in-the-stalls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a865713-5e1a-4e76-bc3c-7484bb1d7fdf/sm/hqdefault.jpg","duration":667,"publication_date":"2012-06-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep158katana-up-the-butt","changefreq":"weekly","video":[{"title":"S1:E52 - Happy Wheels w/Nova Ep.158 - KATANA UP THE BUTT","description":"Happy Wheels w/Nova Ep.158 - KATANA UP THE BUTT","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep158katana-up-the-butt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36ebcebe-8bb7-48b6-b27c-b9ac57e4f708/sm/hqdefault.jpg","duration":593,"publication_date":"2012-06-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep157old-man-and-his-damn-leg","changefreq":"weekly","video":[{"title":"S1:E51 - Happy Wheels w/Nova Ep.157 - OLD MAN AND HIS DAMN LEG","description":"Happy Wheels w/Nova Ep.157 - OLD MAN AND HIS DAMN LEG","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep157old-man-and-his-damn-leg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f07e99ab-7609-417d-a7a4-ff292fbcd3b3/sm/hqdefault.jpg","duration":737,"publication_date":"2012-05-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep153no-one-steals-my-little-boy","changefreq":"weekly","video":[{"title":"S1:E50 - Happy Wheels w/Nova Ep.153 - NO ONE STEALS MY LITTLE BOY","description":"Happy Wheels w/Nova Ep.153 - NO ONE STEALS MY LITTLE BOY","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep153no-one-steals-my-little-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc520b9c-a26c-4112-9c01-ea40e9a7f4c6/sm/hqdefault.jpg","duration":844,"publication_date":"2012-05-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep14974th-hunger-games-edition","changefreq":"weekly","video":[{"title":"S1:E48 - Happy Wheels w/Nova Ep.149 - 74TH HUNGER GAMES EDITION","description":"Happy Wheels w/Nova Ep.149 - 74TH HUNGER GAMES EDITION","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep14974th-hunger-games-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22c1c154-4fe5-471d-99ea-7664c1cbe8a4/sm/hqdefault.jpg","duration":697,"publication_date":"2012-05-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sumotori-dreams-wnova-ep24-man-hot-steamy-sumo-wrestling","changefreq":"weekly","video":[{"title":"S1:E49 - Sumotori Dreams w/Nova Ep.2 - 4-MAN HOT STEAMY SUMO WRESTLING","description":"Sumotori Dreams w/Nova Ep.2 - 4-MAN HOT STEAMY SUMO WRESTLING","player_loc":"https://roosterteeth.com/embed/sumotori-dreams-wnova-ep24-man-hot-steamy-sumo-wrestling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29c74844-9c1d-4fdd-baf1-cd3eb2e9bac0/sm/hqdefault.jpg","duration":598,"publication_date":"2012-05-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep140eff-the-little-boydeath-by-giant-ball","changefreq":"weekly","video":[{"title":"S1:E47 - Happy Wheels w/Nova Ep.140 - EFF THE LITTLE BOY! & DEATH BY GIANT BALL","description":"Happy Wheels w/Nova Ep.140 - EFF THE LITTLE BOY! & DEATH BY GIANT BALL","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep140eff-the-little-boydeath-by-giant-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/795c0939-e222-47c4-b686-b575ae3266b1/sm/hqdefault.jpg","duration":845,"publication_date":"2012-04-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep136listen-to-my-death-cries-nova-in-happy-wheels","changefreq":"weekly","video":[{"title":"S1:E46 - Happy Wheels w/Nova Ep.136 - LISTEN TO MY DEATH CRIES (Nova In Happy Wheels!)","description":"Happy Wheels w/Nova Ep.136 - LISTEN TO MY DEATH CRIES (Nova In Happy Wheels!)","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep136listen-to-my-death-cries-nova-in-happy-wheels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85aca472-0d2a-4fa5-8194-ee2de2aadc4f/sm/hqdefault.jpg","duration":816,"publication_date":"2012-04-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep135i-am-pogostick-man-nova-in-happy-wheels","changefreq":"weekly","video":[{"title":"S1:E45 - Happy Wheels w/Nova Ep.135 - I AM POGOSTICK MAN (Nova In Happy Wheels!)","description":"Happy Wheels w/Nova Ep.135 - I AM POGOSTICK MAN (Nova In Happy Wheels!)","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep135i-am-pogostick-man-nova-in-happy-wheels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ace9420-7d64-49d3-8b4f-65ce8cd2a811/sm/hqdefault.jpg","duration":663,"publication_date":"2012-04-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-quad-mountain-survival-wnova-ep1and-so-it-begins","changefreq":"weekly","video":[{"title":"S1:E44 - Minecraft: Quad Mountain Survival w/Nova Ep.1 - And So It Begins..","description":"Minecraft: Quad Mountain Survival w/Nova Ep.1 - And So It Begins..","player_loc":"https://roosterteeth.com/embed/minecraft-quad-mountain-survival-wnova-ep1and-so-it-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc6fb436-313a-426f-85ed-851d20425b5b/sm/hqdefault.jpg","duration":628,"publication_date":"2012-04-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep126super-mario-64-edition-pt4-yes-yes-yes","changefreq":"weekly","video":[{"title":"S1:E43 - Happy Wheels w/Nova Ep.126 - SUPER MARIO 64 EDITION Pt.4 YES! YES! YES!","description":"Happy Wheels w/Nova Ep.126 - SUPER MARIO 64 EDITION Pt.4 YES! YES! YES!","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep126super-mario-64-edition-pt4-yes-yes-yes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfa5243c-5486-4688-b335-1a51715cb400/sm/hqdefault.jpg","duration":1282,"publication_date":"2012-03-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-hershels-land-wnovadan-ep1rickshane-build-a-home","changefreq":"weekly","video":[{"title":"S1:E42 - Minecraft: Hershels Land w/Nova & Dan Ep.1 - Rick & Shane Build A Home","description":"Minecraft: Hershels Land w/Nova & Dan Ep.1 - Rick & Shane Build A Home","player_loc":"https://roosterteeth.com/embed/minecraft-hershels-land-wnovadan-ep1rickshane-build-a-home","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c9dba50-dfd3-4c36-bc8b-f4e9ecca57c4/sm/hqdefault.jpg","duration":782,"publication_date":"2012-03-21T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep100-marathonit-keeps-happening-brad-phusion","changefreq":"weekly","video":[{"title":"S1:E41 - Happy Wheels w/Nova Ep.100 MARATHON - It Keeps Happening + Brad Phusion","description":"Happy Wheels w/Nova Ep.100 MARATHON - It Keeps Happening + Brad Phusion","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep100-marathonit-keeps-happening-brad-phusion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa166f1f-88f5-4412-ab65-6fe055c1af77/sm/hqdefault.jpg","duration":871,"publication_date":"2012-02-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep95legend-of-zelda-ocarina-of-time-hd-edition-pt1","changefreq":"weekly","video":[{"title":"S1:E40 - Happy Wheels w/Nova Ep.95 - Legend of Zelda: Ocarina Of Time HD Edition Pt.1","description":"Happy Wheels w/Nova Ep.95 - Legend of Zelda: Ocarina Of Time HD Edition Pt.1","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep95legend-of-zelda-ocarina-of-time-hd-edition-pt1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ecb82d4-6378-48c4-84d7-ffa7c17c4cac/sm/hqdefault.jpg","duration":786,"publication_date":"2012-02-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep79bradphusion-returns","changefreq":"weekly","video":[{"title":"S1:E39 - Happy Wheels w/Nova Ep.79 - BradPhusion Returns","description":"Happy Wheels w/Nova Ep.79 - BradPhusion Returns","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep79bradphusion-returns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda3cced-3daa-490a-9a5b-1d60f2b7df38/sm/hqdefault.jpg","duration":673,"publication_date":"2012-01-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-8","changefreq":"weekly","video":[{"title":"2017:E8 - Los Angeles","description":"Burnie bumps into Zach Anner on the streets of Austin while attending SXSW, then takes a trip to LA to visit Funhaus.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da9b7806-aab1-43c6-a496-af3f7c6d479a/sm/2013912-1489768817063-burnie_vlog_8_THUMB.png","duration":412,"publication_date":"2017-03-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-21-hs86ksf","changefreq":"weekly","video":[{"title":"2017:E9 - Still Open #21","description":"Join Barbara Dunkelman, Ryan Haywood, Lindsay Jones, and Mariel Salcedo as they discuss their first time realizing they weren't kids anymore.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-21-hs86ksf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58920daf-cc57-469b-854d-b6bf931840f3/sm/2013912-1489765827508-AO21_-_PS_-_THUMB.jpg","duration":523,"publication_date":"2017-03-17T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-post-show-4-ka7fh","changefreq":"weekly","video":[{"title":"2017:E4 - After the Credits #4","description":"Marcus explains how Independence Day: Resurgence was a near perfect film if not for one simple prop failure.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-post-show-4-ka7fh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/330da4ef-360c-4f7e-a715-9972a2329ca0/sm/2013912-1489678491778-ets_s01e04_ps.jpg","duration":980,"publication_date":"2017-03-16T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-21-naiufja","changefreq":"weekly","video":[{"title":"2017:E21 - Ryan's Morning Haywood - #21","description":"Join Barbara Dunkelman, Ryan Haywood, Lindsay Jones, and Mariel Salcedo as they discuss going commando, super powers, and what makes a positive male role model on this week’s Always Open. This episode is sponsored by BuzzFeed Video (http://bit.ly/2nGqzKT) and MVMT Watches (http://bit.ly/2g6rLUx)","player_loc":"https://roosterteeth.com/embed/always-open-2017-21-naiufja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c85b9d4-ef2d-4086-b1c9-3b1011eac4ba/sm/2013912-1489681978412-AO21_-_THUMB.jpg","duration":3080,"publication_date":"2017-03-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-buying-a-cop-car","changefreq":"weekly","video":[{"title":"2017:E31 - Buying a Cop Car","description":"The art department has had enough of renting cop cars, so Max decides to buy one of their own, but finds one in a surprising place.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-buying-a-cop-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19caa90b-7b2a-43cf-99aa-c9d6c632281e/sm/2013912-1489526182745-CopCar_01.png","duration":130,"publication_date":"2017-03-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-419-post-show-na7gfj","changefreq":"weekly","video":[{"title":"2017:E10 - Anal Bleach Shade - Podcast #419 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Blaine Gibson as they discuss chest waxing, bleaching assholes, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-419-post-show-na7gfj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5e33555-d5fc-46f8-9357-c1a9eaa9db80/sm/2013912-1489528015412-rtp419_-_PS_-_THUMB.jpg","duration":1070,"publication_date":"2017-03-15T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-4-alf7g2l","changefreq":"weekly","video":[{"title":"2017:E4 - LOGAN: The Greatest Western Ever - #4","description":"We always knew we needed an R-Rated Wolverine film someday. Thank the gods, old and new, that when they finally did it they did it right. This episode is sponsored by Dollar Shave Club (http://bit.ly/2mK6d3F)","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-4-alf7g2l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f34c8d20-2462-460b-a0f4-a9bcf13a6dba/sm/2013912-1489592059295-ets_s01e04.jpg","duration":2826,"publication_date":"2017-03-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-petting-zoo","changefreq":"weekly","video":[{"title":"2017:E30 - Petting Zoo","description":"In honor of Employee Appreciation Day, Rooster Teeth hosts an adorable petting zoo filled with fluffy (and scaly) animals.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-petting-zoo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5682785-7964-40a2-8a49-7060c70df4f8/sm/2013912-1489506254239-PettingZoo_01.png","duration":157,"publication_date":"2017-03-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-419-ba6fk8","changefreq":"weekly","video":[{"title":"2017:E419 - When the Ball Drops - #419","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Blaine Gibson as they discuss balls dropping, Brandon’s wedding, friendship, and more on this week's RT Podcast! Also, be sure to stick around for a special interview with Ela Darling discussing the future of VR adult entertainment. This episode originally aired on March 14, 2017, sponsored by MVMT Watches (http://bit.ly/2n2cNFN), NatureBox (http://bit.ly/2n25cac), Seeso (http://bit.ly/2iXI3mZ)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-419-ba6fk8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2f9d5bf-2064-4df5-87f1-2e8bffae700d/sm/2013912-1489505716345-rtp419_-_THUMB.jpg","duration":7069,"publication_date":"2017-03-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-2-sb7a5f","changefreq":"weekly","video":[{"title":"2017:E2 - The Power of Turnfree - #2","description":"Meg Turney and Gavin Free talk travel, competitiveness, balancing schedules, and what it takes to be everyone's second-favorite power couple.","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-2-sb7a5f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/275ff11a-5666-464c-99aa-addda1f8a760/sm/2013912-1489451289402-RG02_-_THUMB.jpg","duration":5423,"publication_date":"2017-03-14T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-march-madness","changefreq":"weekly","video":[{"title":"S7:E42 - March Madness","description":"With the NCAA tournament underway, it's almost like basketball fans have turned into zombies....\n\nAn extra special thanks to Robert Tamble and the generous people of Smithville, TX for making this production possible.\n\n\n\n\n\n\n\n\n\n\n\nCASTSoothsaying Farmer - Richard Dodwell\n\nLonely Boy - Jon RisingerSheriff - Josh FlanaganCarol - Jessica VasamiZombie 1 - Robert TambleZombie 2 - Mark TambleScience Person - Burnie BurnsSuperstitious Zombie - Barbara DunkelmanNerd - Marshall RimmerScience Assistant - Tyler Coe\n\n\n\n\n\n\n\n\n\n\n\nCREWWriter/Director - Marshall RimmerSupervising Producer - Will HydeExecutive Producer - Matt HullumProduction Coordinator - Ellie Main1st Assistant Director - Drew Saplin2nd Assistant Director - Kelly RobertsonDirector of Photography - David Blue Garcia2nd Unit DP - Jason HarterEquipment Manager - Colton ClementsAssistant Camera - John SedlackAudio - Bradley MurphyAudio - Erik DuemigGaffer - BJ LewellynKey Grip - Chris SynogroundSwing Grip - Amy SmithArt Director - Max KruemckeSet Dresser - Peder GilhamArt PA - Savannah ShanksCostume Designer - Erika SlayCostume Designer - Eryn BrookeKey FX/HMU - Meredith JohnsAssistant FX/HMU - Anna Fugate-DownsAssistant HMU - Sylvia RamosKey PA - Jacob MiguelPA - Rebecca DungeonPA - Erik GatlingPost-Production Coordinator - Allison FeldsteinEditor - Dan HironsEditor - Adam BaileyVisual Effects & Graphics - Andre OuelletteAssistant Editor - David Nguyen","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-march-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8db0f02f-97bb-4e5c-923c-ba8e3f7f37d9/sm/2013912-1489169594748-MarchMadness_11b.png","duration":182,"publication_date":"2017-03-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-268-jao7sfj","changefreq":"weekly","video":[{"title":"2017:E11 - Breaking Conventions, Touching Glass","description":"Back when Halo 3 was released, Gus and Burnie go to a convention that had more people working there than people attending. So they played Halo. Burnie also talks about not touching any fucking glass.\n\n\n\n\n\n\n\nAudio from RT Podcast #374\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan Battle & Tanya Fetzer","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-268-jao7sfj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1e67190-a9c5-4fad-9000-5cb201a4b628/sm/2013912-1489169937842-rtaa268_tn.jpg","duration":131,"publication_date":"2017-03-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-88-f8wkh7","changefreq":"weekly","video":[{"title":"S8:E8 - For the Win #88","description":"Brandon doesn't nee a man. He's a strong, independent sociopath who can do it all on his own.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-88-f8wkh7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c9afbae-48d6-4772-adfa-5f1da15192bd/sm/2369885-1489263048956-ots_88ps_thumb.jpg","duration":1180,"publication_date":"2017-03-12T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-7","changefreq":"weekly","video":[{"title":"2017:E7 - Does Shaving Really Make Your Hair Grow Faster? - #7","description":"Why is hair darker after you shave it? Can you train grass? And, How do dogs choose where to poop? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by MVMT Watches ( http://bit.ly/2lt7XkF )","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d15c7cd7-a6eb-451e-9717-f2f69dc78f69/sm/2013912-1489171242670-SOS07_-_THUMB.jpg","duration":717,"publication_date":"2017-03-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-88-sfi73h","changefreq":"weekly","video":[{"title":"S8:E88 - DEAD INSIDE, YEEEAHH! - #88","description":"Tyler can't afford therapy so instead he does On The Spot. Thanks, Obama.\n\n\n\n\n\n\n\n\n\n\n\n\n\nBrought to you by Blue Apron (http://cook.ba/29yXWg2) and Dollar Shave Club (http://bit.ly/2ermjer)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-88-sfi73h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68ff17a1-6dcf-47c3-ae8f-18841257a559/sm/2369885-1489261977908-ots_88_thumb.jpg","duration":2612,"publication_date":"2017-03-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sex-swing-season-1-4-h8a6fj","changefreq":"weekly","video":[{"title":"S1:E4 - Save The Princess - Episode 4","description":"Tha Schling's world is turned upside down when he discovers that Princess Diana died twenty years ago. To help him get back to normal, the rest of the band have to send him back in time to stop the horrible tragedy from ever happening. Sort of.","player_loc":"https://roosterteeth.com/embed/sex-swing-season-1-4-h8a6fj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cede58f-c9db-4356-97d7-f8735b92487f/sm/2013912-1489170391540-SS_episode04_tn.jpg","duration":522,"publication_date":"2017-03-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-17-a87gjs","changefreq":"weekly","video":[{"title":"2017:E17 - That's So Bones - #17","description":"Join Kerry, Gray, Miles, Yssa, Austin, and Cole as they discuss anime news, the next episodes of Saga of Tanya the Evil, continue the Shot of the Week Tournament Arc, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-17-a87gjs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b7ee004-495f-4563-aed0-b962b8dc4ef2/sm/2013912-1489171281313-fanservice_017.png","duration":4259,"publication_date":"2017-03-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-7","changefreq":"weekly","video":[{"title":"2017:E7 - RE7 #7 - Brawl in the Bayou","description":"Kyle and Miles find themselves stuck in Lucas' puzzle room but this time as Ethan. Luckily the duo have read Clancy's Pro Strategy Guide and know all the tips and tricks to help get them out. However the prize for solving this puzzle might not be something they want; the return of an old friend who's lookin' for a rematch.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a916172-6495-477b-b017-0e1f9b0115bd/sm/2013912-1489179777465-BC_RTTHUMB_RE7_PT7.png","duration":3368,"publication_date":"2017-03-10T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-7","changefreq":"weekly","video":[{"title":"2017:E7 - Cartoon Tesla","description":"Burnie transforms his Tesla through the magic of cel shading into an incredible vehicle reminiscent of something out of a cartoon or video game.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46100070-9e9a-4f0c-8bc0-a07cc75dbf7f/sm/2013912-1489165628433-cartoon_tesla.png","duration":536,"publication_date":"2017-03-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-20-n8agja","changefreq":"weekly","video":[{"title":"2017:E8 - Still Open #20","description":"Join Barbara Dunkelman, Gus Sorola, Bethany Feinstein, and Mariel Salcedo as they discuss the worst jobs they had as a teen.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-20-n8agja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d5d5b11-a6ca-4b8f-b732-b1f35fef968d/sm/2013912-1489101748864-AO20_-_PS_-_THUMB.jpg","duration":693,"publication_date":"2017-03-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-post-show-3-snj86g","changefreq":"weekly","video":[{"title":"2017:E3 - After the Credits #3","description":"Tyler watched The Cobbler and has to live with the consequences of his actions. Please don't be like him.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-post-show-3-snj86g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8e637ae-f8c5-4ceb-b2ac-7d20ae64c0f4/sm/2013912-1489076341471-ets_s01e03_ps.jpg","duration":1161,"publication_date":"2017-03-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-20-h8shjs","changefreq":"weekly","video":[{"title":"2017:E20 - Gus and His Secret Admirer - #20","description":"Join Barbara Dunkelman, Gus Sorola, Bethany Feinstein, and Mariel Salcedo as they discuss secret admirers, being introverted or extroverted, and femininity in this week’s Always Open. This episode is sponsored by DSTLD (http://bit.ly/2mZZeXS) and Squarespace (http://bit.ly/2ktKvz4)","player_loc":"https://roosterteeth.com/embed/always-open-2017-20-h8shjs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a97ac38-694c-4088-a1f4-9ea417bf7d25/sm/2013912-1489077187135-AO20_-_THUMB.jpg","duration":3215,"publication_date":"2017-03-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-shaving-josh-s-chest","changefreq":"weekly","video":[{"title":"2017:E28 - Shaving Josh's Chest","description":"After watching Blaine suffer through a thorough chest-waxing, Josh faces off against two razors to craft an iconic Rooster on his chest.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-shaving-josh-s-chest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c7a7c75-cd5e-4d82-a5d2-88119bcd76ce/sm/2013912-1488990269461-JoshShave_04.png","duration":165,"publication_date":"2017-03-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-418-post-show-866-fhi","changefreq":"weekly","video":[{"title":"2017:E9 - Darth Lama - Podcast #418 Post Show","description":"Join Gus Sorola, Gavin Free, Miles Luna, and Burnie Burns as they discuss the Dalai Lama, sequels, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-418-post-show-866-fhi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecafb265-fb33-4fee-9581-710724279171/sm/2013912-1488990375154-rtp418_-_PS_-_THUMB.jpg","duration":1069,"publication_date":"2017-03-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-3-s76sbjy","changefreq":"weekly","video":[{"title":"2017:E3 - LEGION: X-Men Upgraded - #3","description":"Is the best comic book super hero TV series ever made not really a comic book super hero TV series? This episode is sponsored by Dollar Shave Club (http://bit.ly/2mK6d3F)","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-3-s76sbjy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59b19478-3640-4751-9636-5eed73bb51ee/sm/2013912-1488991724618-ets_s01e03.jpg","duration":2340,"publication_date":"2017-03-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-behind-the-scenes","changefreq":"weekly","video":[{"title":"2017:E10 - Behind the Scenes ","description":"Get a behind the scenes look at Rooster Teeth's interactive spy thriller Eleven Little Roosters!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e9fbd0e-1cd3-4276-b4f0-4f43aa9635bc/sm/2013912-1488585194894-ELRBTS_03b.png","duration":557,"publication_date":"2017-03-07T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-chest-waxing","changefreq":"weekly","video":[{"title":"2017:E27 - Waxing Blaine's Chest ","description":"Blaine is reminded that beauty is pain as he gets his chest waxed in preparation for his \"sexy fighting\" scene in ELR.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-chest-waxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea9d40e9-1e46-4f6e-a23b-976eda062495/sm/2013912-1488904902616-BlaineWax_03.png","duration":193,"publication_date":"2017-03-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-418-dfh57h","changefreq":"weekly","video":[{"title":"2017:E418 - Burnie The Paranoid - #418","description":"Join Gus Sorola, Gavin Free, Miles Luna, and Burnie Burns as they discuss the Nintendo Switch, Apple AirPods, Burnie’s prank paranoia, and more on this week's RT Podcast! This episode originally aired on March 6, 2017, sponsored by Casper (http://bit.ly/2bgC0nt), Dollar Shave Club (http://bit.ly/2mNgPlK), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-418-dfh57h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e71ae89-1f30-49a8-aaec-f9c513d55216/sm/2013912-1488902872682-rtp418_-_THUMB.jpg","duration":5485,"publication_date":"2017-03-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-1200-c-molten-copper-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E74 - 1200°C Molten Copper in Slow Motion","description":"Gav and Dan know that liquids always look mesmerising in slow motion. Liquids that are self illuminating, though? Even better. This was filmed in a room full of loud high frequency noise, so audio has been crushed slightly so your ear holes don't fall out.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-1200-c-molten-copper-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8e689a3-c617-4fec-b762-d7c76d68ed28/sm/82-1488914443545-Screen_Shot_2017-03-07_at_12.38.47.jpg","duration":364,"publication_date":"2017-03-07T13:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-episode-8-mission-critical","changefreq":"weekly","video":[{"title":"2017:E9 - Episode 8: Mission Critical","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! All bets are off as the mole's identity is revealed -- and their masterplan comes to fruition. But can the surviving Roosters prevail without someone dying? Probably not.\n\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-episode-8-mission-critical","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50d623cb-91d4-42c4-83d4-7b4b6477fd65/sm/2013912-1488586893218-ELR_08_01.png","duration":828,"publication_date":"2017-03-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-ghost-recon-wildlands-prank-behind-the-scenes","changefreq":"weekly","video":[{"title":"S7:E41 - Behind the Scenes: Ghost Recon Wildlands Prank","description":"A very special thanks to Ubisoft for making this video possible and 5.11 Tactical for finding and outfitting our Ghosts! Check out more about 5.11 Tactical here: http://www.511tactical.com/GRW.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-ghost-recon-wildlands-prank-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1067e513-946e-4cfd-b1b8-1184544d14a0/sm/2013912-1488817099505-GhostsBTS_Thumb01b.png","duration":300,"publication_date":"2017-03-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-ghost-recon-wildlands-prank","changefreq":"weekly","video":[{"title":"S7:E40 - Ghost Recon Wildlands Prank","description":"After a year of planning his revenge, Blaine performs the ultimate prank on Chris with the help of the Ghost Recon Wildlands team. Learn more about Ghost Recon Wildlands here: www.ghostreconwildlands.com \n\nA very special thanks to Ubisoft for making this video possible and 5.11 Tactical for finding and outfitting our Ghosts! Check out more about 5.11 Tactical here: http://www.511tactical.com/GRW.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-ghost-recon-wildlands-prank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e890071f-9f0b-40d0-8f6a-3e41cf5a638b/sm/2013912-1488584770016-Ghosts_Thumb04.png","duration":300,"publication_date":"2017-03-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-267-j9a8ad","changefreq":"weekly","video":[{"title":"2017:E10 - Chris' Love Delivery","description":"Chris uses a grocery delivery service but finds himself attracted to the delivery girl, so he keeps ordering groceries in order to ask her out.\n\n\n\n\n\n\n\n\n\nAudio from RT Podcast #396\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Quinn Weston & William Ball","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-267-j9a8ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bde59a00-0df9-4305-93d3-e7eeeeb9c813/sm/2013912-1488491740223-rtaa267tn.jpg","duration":100,"publication_date":"2017-03-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-87-ani7fna","changefreq":"weekly","video":[{"title":"S8:E7 - For the Win #87","description":"Do you have a bitch chin and/or are you cleaning your genitalia correctly? Both good questions that were definitely answered this episode.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-87-ani7fna","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4c2cb1a-fdb6-422c-becb-cae52798b31c/sm/2013912-1488652845387-ots_87ps_thumb.jpg","duration":811,"publication_date":"2017-03-05T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-human-mad-cow-disease-6","changefreq":"weekly","video":[{"title":"2017:E6 - Human Mad Cow Disease - #6","description":"The wild effects of eating brains, \"Why is terminal velocity a thing?\" and more. Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by Blue Apron ( http://cook.ba/1pkkO63 )Sally Le Page's YouTube Channel: http://youtube.com/shedscience","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-human-mad-cow-disease-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7cee8d0-0114-4952-bd54-30cf0ef7b5e0/sm/2013912-1488576667106-SOS06_-_THUMB.jpg","duration":1153,"publication_date":"2017-03-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-6-happy-birthday","changefreq":"weekly","video":[{"title":"2017:E7 - RE7 #6 - Happy Birthday!","description":"Kyle and Miles have cut down Jack and killed Marguerite so now it's Lucas' turn. Before that can happen the duo must find two key cards, navigate a house full of new booby traps and watch dear old Clancy struggle with one of Lucas' more sinister puzzles. (Miles would just like to point out that HE was the one who killed Jack and Marguerite, not Kyle)","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-6-happy-birthday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d5e605e-bd73-4815-ad21-82383f6160ee/sm/2013912-1488656924153-BC_RTTHUMB_RE7_PT6.png","duration":4034,"publication_date":"2017-03-04T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-87-ab8nad","changefreq":"weekly","video":[{"title":"S8:E87 - ALRIGHT, ALRIGHT, ALRIGHT - #87","description":"On this day it was declared across the lands that there had never been two people who better embodied the title of best friends than Blaine Gibson & Patrick Matthews. Also, Lindsay & Maggie were there.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-87-ab8nad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d557462d-7e63-4b50-ba20-dea3e98ff021/sm/690915-1488649787083-ots_87_thumb.jpg","duration":2632,"publication_date":"2017-03-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sex-swing-season-1-3-ba86ab","changefreq":"weekly","video":[{"title":"S1:E3 - Make Them Wet - Episode 3","description":"Sex Swing are put in charge of a terrible water park for a day. Can they turn around this failing business, or will they leave the park in ruins? I bet you know.","player_loc":"https://roosterteeth.com/embed/sex-swing-season-1-3-ba86ab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21bfb828-997d-457d-923f-9058bbb9ddd2/sm/2013912-1488566165763-TN2.jpg","duration":561,"publication_date":"2017-03-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-204-fah93f","changefreq":"weekly","video":[{"title":"2017:E16 - The Juicy Dabbing Maid - #16","description":"Join Kerry, Gray, Miles, Yssa, Austin, and Cole as they discuss Konosuba, Miss Kobayashi’s Dragon Maid, continue the Shot of the Week’s Tournament Arc, and more this week on Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-204-fah93f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33bdb20e-41d2-4179-8953-f292710b1338/sm/2013912-1488570015301-fanservice_016.png","duration":3967,"publication_date":"2017-03-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-19-na8yba","changefreq":"weekly","video":[{"title":"2017:E7 - Still Open #19","description":"Join Barbara Dunkelman, Lindsay Jones, Ashley Jenkins, and Becca Frasier as they discuss their biggest pet peeves.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-19-na8yba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d374b2ca-15b4-43cd-9ed2-ee522fa06afc/sm/2013912-1488496427144-AO19_-_PS_-_THUMB.jpg","duration":932,"publication_date":"2017-03-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-6","changefreq":"weekly","video":[{"title":"2017:E6 - Grocery Store","description":"Burnie muses about the past, present, and future while touring the lanes of a local grocery store during filming for Million Dollars But. Also Gavin wears a suit of armor.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36da36d8-20b5-41ce-a918-447788a539c5/sm/2013912-1488491203096-unnamed.png","duration":471,"publication_date":"2017-03-02T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-post-show-2-shisyh","changefreq":"weekly","video":[{"title":"2017:E2 - After the Credits #2","description":"Is The Young Pope entertaining or just catholic click bait? Where does the good stuff on Netflix end and the growing pile of trash they are making start? And is Jon Eskimo brothers with Ewan McGregor?","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-post-show-2-shisyh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb414dd3-341c-4b5b-825a-5b776fd7dde4/sm/2013912-1488409392844-ets_s01e02_ps.jpg","duration":822,"publication_date":"2017-03-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-19-hfs897s","changefreq":"weekly","video":[{"title":"2017:E19 - Who Is In My Mouth - #19","description":"Join Barbara Dunkelman, Lindsay Jones, Ashley Jenkins, and Becca Frasier as they discuss TV shows they have been hooked on, the worst thing about being a woman, and finding the right career.\n\nThis episode is sponsored by HelloFresh (http://bit.ly/2dpEq8M) and Lyft (http://lft.to/2k09gCG)","player_loc":"https://roosterteeth.com/embed/always-open-2017-19-hfs897s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81bacbc6-683e-4608-b7a5-9794b8edd68c/sm/690915-1488474805240-AO19_-_THUMB.jpg","duration":3476,"publication_date":"2017-03-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-gus-rtx-sydney-tour","changefreq":"weekly","video":[{"title":"2017:E25 - Gus' RTX Sydney Tour","description":"Gus gives us a behind-the-scenes look at some of his experiences during RTX Sydney, from testing the Nintendo switch to attending panels.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-gus-rtx-sydney-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f05c67b-7bfa-425f-809b-af25d7263ef1/sm/2013912-1488323255708-GusVlog_01.png","duration":249,"publication_date":"2017-03-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-417-post-show-8-fguyf","changefreq":"weekly","video":[{"title":"2017:E8 - The Inner Dick-Bit - Podcast #417 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Becca Frasier as they discuss Gavin’s pancake competition, penis sizes, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-417-post-show-8-fguyf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db324f71-fe89-4abb-b839-da198f944058/sm/2013912-1488301601594-rtp417_-_PS_-_THUMB.jpg","duration":963,"publication_date":"2017-03-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-2-b8a6ag","changefreq":"weekly","video":[{"title":"2017:E2 - SPLIT: Shyamalan's Second Coming - #2","description":"Raise your hand if you never lost faith in Shyamalan? PUT YOUR HANDS DOWN RIGHT NOW! Everyone lost faith after The Last Airbender. EVERYONE!\n\n\n\n\n\n\n\nSponsored by Blue Apron (http://cook.ba/2l0izCT)","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-2-b8a6ag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b7fca4f-4bd8-4dea-a136-3b21fd1f6edc/sm/2013912-1488385455573-ets_s01e02.jpg","duration":2700,"publication_date":"2017-03-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-bruce-s-special-shirt","changefreq":"weekly","video":[{"title":"2017:E24 - Bruce's Special Shirt","description":"Bruce and Will decide to gift Bethany with a shirt bearing the phrases she hates most in the world.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-bruce-s-special-shirt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35a4bcd1-e8ff-48fc-a3b6-49d242bb5079/sm/2013912-1488234230876-RTXSydney_Yolo_01.png","duration":68,"publication_date":"2017-02-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-417-jo8adf","changefreq":"weekly","video":[{"title":"2017:E417 - Puppies Like Pancakes - #417","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Becca Frasier, and Burnie Burns as they discuss pancakes, morning vs evening showers, Burnie getting left behind, and more on this week's RT Podcast! This episode originally aired on February 27, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj), MeUndies (http://bit.ly/2aGm9yg), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-417-jo8adf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12417fcd-cb15-441a-b844-4f7a1d3a0aaf/sm/2013912-1488299440468-rtp417_-_THUMB.jpg","duration":5585,"publication_date":"2017-02-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-episode-7-double-dead-agents","changefreq":"weekly","video":[{"title":"2017:E8 - Episode 7: Double Triple Cross","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! The survivors make a last-ditch attempt to dismantle the super weapon altogether, as the mole doubles their power with the help of a new ally -- and eliminates TWO agencies.\n\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-episode-7-double-dead-agents","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09cc4097-d767-480d-87fa-12e3e7d9386f/sm/2013912-1487956140188-ELR_07_01.png","duration":552,"publication_date":"2017-02-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-266-j9ahao","changefreq":"weekly","video":[{"title":"2017:E9 - Gavin or Gaggle","description":"It's a new twist on a classic! Gavin and Burnie play the most disgusting game ever imagined: Gavin or Gaggle! Not safe for lunch.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAudio from RT Podcast #383\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-266-j9ahao","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecf830dd-e110-4556-a5dc-a9ed27470ad9/sm/2013912-1487873187114-rtaa266tn.jpg","duration":97,"publication_date":"2017-02-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-86-ha87bnm","changefreq":"weekly","video":[{"title":"S8:E6 - For the Win #86","description":"The episode brought to you by the rejected characters of Game of Thrones that not even George himself would want to deal with.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-86-ha87bnm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7425d8c0-27b8-4949-9415-ff2a3b438f0c/sm/2013912-1488066387850-ots_86ps_thumb.jpg","duration":440,"publication_date":"2017-02-26T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-5","changefreq":"weekly","video":[{"title":"2017:E5 - The Second Brain in Your Body - #5","description":"The amazing body functions you can control with your mind. And the organ that acts like your second brain. Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by MVMT Watches ( http://bit.ly/2lt7XkF )","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bae65e9-6996-4028-8f23-336b9abe91a6/sm/2013912-1487977740309-SOS05_-_THUMB.jpg","duration":777,"publication_date":"2017-02-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-86-ag8nns","changefreq":"weekly","video":[{"title":"S8:E86 - THE DUNKELMANS - #86","description":"Barbara's dad joins On The Spot this week to help his little maple syrup angel make some jokes about unprotected sleep, talk about Keanu's next movie and watch her slap Tyler's firm ass.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-86-ag8nns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afc6a822-36fb-4c07-8591-73698ed00b78/sm/2369885-1488046484729-ots_86_thumb.jpg","duration":2670,"publication_date":"2017-02-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sex-swing-season-1-2-na6avl","changefreq":"weekly","video":[{"title":"S1:E2 - Robot Rock - Episode 2","description":"Max tries to revamp the Sex Swing boys as a robot band, but Tommy has some problems with their rock n' roll credentials. You know, mostly because they are robots and have none.","player_loc":"https://roosterteeth.com/embed/sex-swing-season-1-2-na6avl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/036a9045-d3f5-4003-b2e3-cd126df47b25/sm/2013912-1487976299790-SS_episode02_tn.jpg","duration":587,"publication_date":"2017-02-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-203-a87fbm","changefreq":"weekly","video":[{"title":"2017:E15 - The Secrets of the Wind Blood - #15","description":"Join Kerry, Gray, Miles, Yssa, Austin, Cole, and special guest Elizabeth Maxwell as they discuss the new Nendoroids release, dive into the first five episodes of Saga of Tanya the Evil, and continue the Shot of the Week’s Tournament Arc.","player_loc":"https://roosterteeth.com/embed/fan-service-2017-203-a87fbm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f54da720-283a-46c6-968e-70f98904f710/sm/2013912-1487956775975-fan_service_015.png","duration":5162,"publication_date":"2017-02-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-r-e-5-the-spider-lady","changefreq":"weekly","video":[{"title":"2017:E6 - RE7 #5 - The Spider Lady","description":"The miracle of child birth, some say it's beautiful. They're wrong. It's an awful, disgusting, terrible, nauseating, gag inducing event and that's just for normal human birth. Oh and that's not counting the gynecological disaster that is Margaret's wasp infested uterus. Are you ready for this? Good cause Kyle and Miles are not.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-r-e-5-the-spider-lady","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bb802d4-4284-455a-be06-b2a8e4acf741/sm/2013912-1487953489225-BC_RTTHUMB_RE7_PT5.png","duration":3501,"publication_date":"2017-02-24T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-5","changefreq":"weekly","video":[{"title":"2017:E5 - Broken Nintendo Switch","description":"Ashley made the mistake of asking Burnie to help unbox her new Nintendo Switch, but Burnie redeems himself by showing us around Austin, including a sneak peek at the newest Alamo Drafthouse right by the Rooster Teeth office.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5966b49b-a49e-4472-b413-ce3dd1793e1e/sm/2013912-1487953785152-BurnieVlog_05_01.png","duration":505,"publication_date":"2017-02-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-18-ns8sgd","changefreq":"weekly","video":[{"title":"2017:E6 - Still Open #18","description":"Join Barbara Dunkelman, Mica Burton, Samantha Ireland, and Mariel Salcedo as they discuss reality TV shows.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-18-ns8sgd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aedd115-d8fc-4aeb-890e-f9f303b42c1a/sm/2013912-1487952969395-AO18_-_PS_-_THUMB.jpg","duration":1079,"publication_date":"2017-02-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-post-show-1-ao8fnk","changefreq":"weekly","video":[{"title":"2017:E1 - After the Credits #1","description":"The cast of Enjoy the Show hang out in the theater after the show to talk about Helen Mirren's future with the Fast & Furious, Ashley's obsession with Charmed and when was the last time they saw a good Jim Carrey film.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-post-show-1-ao8fnk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13b4ae2f-e091-422e-9a16-a73d19f994ae/sm/2013912-1487878649326-ets_s01e01_ps.jpg","duration":955,"publication_date":"2017-02-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-18-ha8yhf","changefreq":"weekly","video":[{"title":"2017:E18 - Ghosting and Gynecologists - #18","description":"Join Barbara Dunkelman, Mica Burton, Mariel Salcedo, and special guest Samantha Ireland as they discuss their first time at the gynecologist, ghosting, and how to get over a breakup.","player_loc":"https://roosterteeth.com/embed/always-open-2017-18-ha8yhf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70b3d57e-0ee2-4d5e-b63c-dc4750fc7254/sm/2013912-1487868192339-AO18_-_THUMB.jpg","duration":4462,"publication_date":"2017-02-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-1","changefreq":"weekly","video":[{"title":"2017:E1 - The Oscars Opposition - #1","description":"Spoiler alert: no one cares who wins The Oscars. Most people don't even see the majority of the movies nominated. Instead, let's start \"Enjoy the Show\" off with a tradition that looks to celebrate movies we enjoyed this past year even if they weren't given a golden statue by people in tuxedos on a red carpet. Sit back, relax and enjoy the show.\n\n\n\n\n\nSponsored by Blue Apron (http://cook.ba/2l0izCT)","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01da64fe-7f13-4713-827d-2c29c5076ad9/sm/2013912-1487797990008-ets_s01e01_oscars.jpg","duration":2688,"publication_date":"2017-02-22T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-marketing-vs-burnie","changefreq":"weekly","video":[{"title":"2017:E22 - Marketing vs. Burnie","description":"When Burnie threatened to steal Marketing's fancy new offices, the Marketing team mobilized to tell Burnie they will not be bullied. Lines were drawn, and pictures may have been set on fire.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-marketing-vs-burnie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffcf8ed2-e0e6-4232-b527-88aeab7afec6/sm/2013912-1487781041573-BurnieVsMarketing_01.png","duration":223,"publication_date":"2017-02-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-416-post-show-h76g4s","changefreq":"weekly","video":[{"title":"2017:E7 - Google Girls - RT Podcast #416 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Chris Demarais as they discuss strip clubs, googling girls, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-416-post-show-h76g4s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70863a0f-db38-430d-a9cd-9123638a1526/sm/2013912-1487711262861-rtp416_-_PS_-_THUMB.jpg","duration":994,"publication_date":"2017-02-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-rwby-plays-rwby","changefreq":"weekly","video":[{"title":"2017:E21 - RWBY Plays RWBY ","description":"After taping a special RWBY episode of Always Open, the RWBY girls went backstage to see if they could match their characters' skills while playing RWBY: Grimm Eclipse.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-rwby-plays-rwby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5b54886-c561-4f5d-9690-a19aa19233de/sm/2013912-1487367266358-RWBYPlaysRWBY_01.png","duration":198,"publication_date":"2017-02-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-416-j98ads","changefreq":"weekly","video":[{"title":"2017:E416 - People Poison Cats - #416","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Chris Demarais as they discuss shipped grass, dog professions, Gavin's cat poop story, and more on this week's RT Podcast! This episode originally aired February 20, 2017, sponsored by Audible (http://adbl.co/2lT394Y) and Casper (http://bit.ly/2lTcklN)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-416-j98ads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0113f8-d03e-45c3-92f0-771b11d586c9/sm/2013912-1487694397494-rtp416_-_THUMB.jpg","duration":5318,"publication_date":"2017-02-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-6","changefreq":"weekly","video":[{"title":"2017:E7 - Episode 6: Born Identities","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! Secret identities and ulterior motives abound as the Rooster Corps falls to infighting -- and yet another Rooster is eliminated.\n\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/573c9c26-1c3d-4276-949e-7c8abc73df8f/sm/2267352-1487963422538-ELR_06_01_1.png","duration":564,"publication_date":"2017-02-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-265-ma8uad","changefreq":"weekly","video":[{"title":"2017:E8 - Geoff's Burger Discount","description":"Geoff accidentally gets a discount at a divey burger joint for several months, and makes the mistake of asking why.\n\n\n\n\n\n\n\n\n\n\n\n\n\nAudio from Off Topic Podcast #2\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Tanya Fetzer & Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-265-ma8uad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2db9a08e-423b-45d3-934e-d92c78f15fd9/sm/2013912-1487266755038-rtaa265tn.jpg","duration":112,"publication_date":"2017-02-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-85-sh8yan","changefreq":"weekly","video":[{"title":"S8:E5 - For the Win #85","description":"Jon talks too fast. Everyone knows it. Everyone hates it. Tonight, we fixed that.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-85-sh8yan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0bfbd0c-6236-40c7-9d76-f114216749c8/sm/2013912-1487444435668-ots_85ps_thumb.jpg","duration":649,"publication_date":"2017-02-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-why-your-body-jerks-when-falling-asleep-4","changefreq":"weekly","video":[{"title":"2017:E4 - Why Your Body Jerks When Falling Asleep - #4","description":"Why does your body jerk when you're just about to fall asleep? And the beetle that shoots it's enemies with acid from its butt. How does it not blow its own legs off? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by Blue Apron ( http://cook.ba/1pkkO63)","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-why-your-body-jerks-when-falling-asleep-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1393df0e-382b-4b2b-89b1-7acb2ca95953/sm/2013912-1487371468362-SOS04_-_THUMB.jpg","duration":823,"publication_date":"2017-02-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-85-bauujfn","changefreq":"weekly","video":[{"title":"S8:E85 - NO SWEAR WORDS - #85","description":"You don't have to use naughty no-no words to be funny. Not everything has to be toilet humor and sex jokes all the time, you know? On The Spot is your one stop for clean humor and guilt-free fun. Join us, won't you?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-85-bauujfn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f2d80fe-a70e-48fe-a638-a2421acaedec/sm/690915-1487436190108-ots_85_thumb.jpg","duration":2559,"publication_date":"2017-02-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sex-swing-season-1-1-97-abl9","changefreq":"weekly","video":[{"title":"S1:E1 - Can You Dig It - Episode 1","description":"Sex Swing are in need of a gig, so Max books them a show at a bar/bowling alley/gold mine. However, things go south when the venue gets ambushed by bandits.","player_loc":"https://roosterteeth.com/embed/sex-swing-season-1-1-97-abl9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43b4f746-f33a-4421-b567-84103e6011a0/sm/2013912-1487372975397-SS_episode01_tn.jpg","duration":596,"publication_date":"2017-02-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-202-naa6ab","changefreq":"weekly","video":[{"title":"2017:E14 - You's A Good Girl, But You's A Stupid B*tch Too - #14","description":"Join Gray Haddock, Yssa Badiola, Kerry Shawcross, Miles Luna, Austin Hardwicke, and Cole Gallian as they discuss Gundam Thunderbolt, Mitsuo Iso and Sakuga animation, make the final decisions for Anime Club, and begin the intense battle for Shot of The Week’s Tournament Arc. All this and more on the 14th episode of Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-202-naa6ab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fa86191-ef1c-49b1-bbe4-c3c805d1a309/sm/2013912-1487351025546-fan_service_014.png","duration":4120,"publication_date":"2017-02-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-4","changefreq":"weekly","video":[{"title":"2017:E4 - RE7 #4 - Mama's Babies","description":"Gray Haddock joins Kyle and Miles as they try to fumigate the old house of Marguerite's \"babies\". Things go sideways almost immediately when the guys realize they just brought a knife to a wasp fight. However with some red neck engineering and a page ripped from Ellen Ripley's Big Book of Bug Extermination Techniques, the gang find a way to even the playing field.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0da5c72f-a933-4a62-91b9-b66fac5b0be5/sm/2013912-1487361055859-BC_RTTHUMB_RE7_PT4.png","duration":3481,"publication_date":"2017-02-17T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-17-na8yfnka","changefreq":"weekly","video":[{"title":"2017:E5 - Still Open #17","description":"Join the cast of RWBY as they discuss the Volume 4 finale!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-17-na8yfnka","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f6f0497-85db-4e22-9d60-091e3a6c9da2/sm/2013912-1487271849206-AO17_-_PS_-_THUMB.jpg","duration":1091,"publication_date":"2017-02-17T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-4","changefreq":"weekly","video":[{"title":"2017:E4 - New Zealand","description":"Burnie and Ashley encounter all number of travel problems, hang out with Hideo Kojima, explore a spooky former nunnery, and enjoy some truly stunning scenery.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b68dc11-b11b-453c-8926-d210d0ed6ed8/sm/2013912-1487283543084-BurnieVlog04_01.png","duration":567,"publication_date":"2017-02-16T22:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-17-n7gu7f","changefreq":"weekly","video":[{"title":"2017:E17 - The RWBY Cast - #17","description":"Join the cast of RWBY - Barbara Dunkelman, Lindsay Jones, Kara Eberle, and Arryn Zech for Always Open, as they discuss anime conventions, irrational fears, and being recognized as RWBY voice actressses. \n\nThis episode is sponsored by MVMT Watches (http://bit.ly/2mFRYgs). Be sure to tune in to this week's Always Open post show, where the girls talk all about RWBY Volume 4's finale!","player_loc":"https://roosterteeth.com/embed/always-open-2017-17-n7gu7f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82a2adc-0011-4f2a-b17d-cb75f04cb1e4/sm/2013912-1487262010528-AO17_-_THUMB.jpg","duration":3047,"publication_date":"2017-02-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-trying-vegemite-at-rtx-sydney","changefreq":"weekly","video":[{"title":"2017:E19 - Trying Vegemite at RTX Sydney","description":"After trying Vegemite the \"American\" way in Austin (in large, unforgiving globs), Caiti teaches Blaine and Josh how to eat Vegemite the proper way while in Sydney for RTX.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-trying-vegemite-at-rtx-sydney","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/878d84f8-5e29-4434-a427-fb8e7423dc46/sm/2013912-1487175579282-Vegemite_V2_01.png","duration":128,"publication_date":"2017-02-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-415-post-show-b86dfg","changefreq":"weekly","video":[{"title":"2017:E6 - Burnie Takes Barbara's Office - Podcast #415 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss who has the best office in the company.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-415-post-show-b86dfg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7217f6a1-65bd-471b-b5f7-f6386e1219c5/sm/2013912-1487091418709-rtp415_-_PS_-_THUMB.jpg","duration":928,"publication_date":"2017-02-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-wigs-pleather-and-sax","changefreq":"weekly","video":[{"title":"2017:E18 - Wigs, Pleather, and Sax","description":"Introducing Rooster Teeth's first house band, RSTR (alternatively known by the many different names Geoff supplies during Relationship Goals tapings). Watch Relationship Goals only on FIRST!","player_loc":"https://roosterteeth.com/embed/rt-life-2017-wigs-pleather-and-sax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3433ece6-e644-4e94-9263-39ebb40ba7a6/sm/2013912-1487023229934-RelationshipGoalsBand_01.png","duration":149,"publication_date":"2017-02-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-415-na97ah","changefreq":"weekly","video":[{"title":"2017:E415 - Gavin Forgot The Podcast - #415","description":"Join Gus Sorola, Barbara Dunkelman, Burnie Burns and (eventually) Gavin Free as they discuss disgruntled airline pilots, Beyonce, and Donald Trump's handshakes.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-415-na97ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84a5913d-952f-4a69-86a9-26d1c1f0f02c/sm/2013912-1487089369337-rtp415_-_THUMB.jpg","duration":5798,"publication_date":"2017-02-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/relationship-goals-2017-1","changefreq":"weekly","video":[{"title":"2017:E1 - The Joneses - #1","description":"Expecting parents Michael and Lindsay talk first times, letting go and paternity tests.  It's his. 99% sure of it. ","player_loc":"https://roosterteeth.com/embed/relationship-goals-2017-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa0a23fa-bfe0-4b86-8824-d9a3400e7890/sm/2369885-1487085126968-RG01_-_THUMB.jpg","duration":4215,"publication_date":"2017-02-14T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-episode-5-rogue-nation","changefreq":"weekly","video":[{"title":"2017:E6 - Episode 5: Rogue Nation","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! It's a scramble to stop a suspected Rooster from murdering an ally, but all may not be what it seems as the mole claims another victim.\n\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-episode-5-rogue-nation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23ba19d0-4d49-4396-bb25-6fc8cc784996/sm/2267352-1487963452163-ELR_05_01_1.png","duration":552,"publication_date":"2017-02-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-264-bai7ah","changefreq":"weekly","video":[{"title":"2017:E7 - Miles' Counselor Story","description":"Miles has some embarrassing moments while doing some team building exercises.\n\n\n\n\n\n\n\nAudio from RT Podcast #322\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-264-bai7ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57cf1c09-2955-43be-adce-5467e560e479/sm/2013912-1486764074758-rtaa264tn.jpg","duration":109,"publication_date":"2017-02-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-84-aiuabfm","changefreq":"weekly","video":[{"title":"S8:E4 - For the Win #84","description":"Don't google \"vagina-seals.\" Seriously.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-84-aiuabfm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b94d44-82ff-4e00-9255-e9206a705029/sm/2013912-1486835909820-ots_84ps_thumb.jpg","duration":639,"publication_date":"2017-02-12T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-life-according-to-a-fly-a-spot-of-science-3","changefreq":"weekly","video":[{"title":"2017:E3 - Life According to a Fly - #3","description":"Do flies see life in slow motion? and, How do animals tell time? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by MVMT Watches (http://bit.ly/2lt7XkF)","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-life-according-to-a-fly-a-spot-of-science-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be9cce3a-3758-4155-856e-c7d4c478682e/sm/2013912-1486766001597-SOS03_-_THUMB.jpg","duration":950,"publication_date":"2017-02-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-84-aniagd","changefreq":"weekly","video":[{"title":"S8:E84 - PATRICK SWAYZE FLAVOR - #84","description":" In all seriousness, if ghosts actually existed wouldn't you want to know what they taste like? And to be clear, all of you saying no right now are lying to yourself.\n\n1-800-Flowers (http://bit.ly/2khmYAM)\n\n\n\n\n\n\n\n\n\nJackThreads (http://bit.ly/1wG0LAF) ","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-84-aniagd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dd5499d-51cf-4e77-a02c-6e4c047c2f47/sm/2369885-1486832975144-ots_84_thumb.jpg","duration":2399,"publication_date":"2017-02-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-service-2017-201","changefreq":"weekly","video":[{"title":"2017:E13 - #StillNotCancelled - #13","description":"Join Gray Haddock, Kerry Shawcross, Yssa Badiola, Cole Gallian, and Austin Hardwicke as they discuss Attack on Titan Season 2, Miss Kobayashi's Dragon Maid, Gundam Iron Blooded Orphans and more on this week's Fan Service!","player_loc":"https://roosterteeth.com/embed/fan-service-2017-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13689ccd-3079-4026-a5ef-14c1e428b65e/sm/2013912-1486772408500-thumbnail_01.png","duration":5015,"publication_date":"2017-02-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-3","changefreq":"weekly","video":[{"title":"2017:E3 - RE7 #3 - Poor Deputy","description":"Kyle and Miles head into the basement and meet up with their old friend Larry...and his friend...and his several other friends. It's ok though because Larry got Kyle and Miles front row tickets to a steel cage match. He just forgot to tell them that the front row is in the cage.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/180e61d6-792c-4c18-ae79-ea6da869f99f/sm/2013912-1486760495001-BC_RTTHUMB_RE7_PT3.png","duration":3238,"publication_date":"2017-02-10T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-16-na8yfbs","changefreq":"weekly","video":[{"title":"2017:E4 - Still Open #16","description":"Join Barbara Dunkelman, Patrick Matthews, Jessica Vasami, and Mariel Salcedo as they discuss how they spend Valentine's Day when they're single!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-16-na8yfbs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de752f0e-8d44-4ba5-b80c-4590890561fe/sm/2013912-1486672362605-AO16_-_PS_-_THUMB.jpg","duration":366,"publication_date":"2017-02-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-25-airbag-rainbow-explosion-in-4-k","changefreq":"weekly","video":[{"title":"S1:E73 - 25 Airbag Rainbow Explosion in 4K","description":"S1:E73 - 25 Airbag Rainbow Explosion in 4K","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-25-airbag-rainbow-explosion-in-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f3a32e2-947e-4f84-b2ef-58309dff80e4/sm/82-1486751881174-RainbowExplosion.jpg","duration":630,"publication_date":"2017-02-10T12:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-3","changefreq":"weekly","video":[{"title":"2017:E3 - RTX Sydney","description":"Burnie documents the fun and mayhem of RTX Sydney, from live action production shoots to panel after panel.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf2e72db-de77-4a22-8f48-314779fed8a7/sm/2013912-1486598451993-BurnieVlog03_02.png","duration":490,"publication_date":"2017-02-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-16-ni7fgh","changefreq":"weekly","video":[{"title":"2017:E16 - Valentine's Day Sucks - #16","description":"Join Barbara Dunkelman, Patrick Matthews, Jessica Vasami, and Mariel Salcedo as they discuss their Best and Worst Valentine's Dates, the first impressions, and if size really matters. Sponsored by 1-800-Flowers (http://bit.ly/2jwIWEx) and Casper (http://bit.ly/2d4iXlI)","player_loc":"https://roosterteeth.com/embed/always-open-2017-16-ni7fgh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84de7350-aafa-4bce-b040-d1d3d6efbadc/sm/2013912-1486659456926-AO16_-_THUMB.jpg","duration":3040,"publication_date":"2017-02-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-pie-face-showdown","changefreq":"weekly","video":[{"title":"2017:E12 - Pie-Face Showdown","description":"Barbara and Mariel challenge each other and their friends to a pie-face (or in their case, shaving cream) showdown. Mariel is surprised by her own abilities, but not necessarily in a good way.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-pie-face-showdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d06657eb-8410-4ea3-899c-93150219f1d7/sm/2013912-1485798916255-PieFace_01b_1.png","duration":177,"publication_date":"2017-02-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-podcast-414-post-show-ha87gf","changefreq":"weekly","video":[{"title":"2017:E5 - Sex in the Eye - Podcast #414 Post Show","description":"Join Brandon Farmahini, Chris Demarais, Jon Risinger, and Todd Womack as they discuss long distance relationships, the London Eye, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-podcast-414-post-show-ha87gf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91421074-239d-459e-a8c8-2174b25bba96/sm/2013912-1486571783958-rtp414_-_PS_-_THUMB.jpg","duration":1126,"publication_date":"2017-02-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-company-photo","changefreq":"weekly","video":[{"title":"2017:E16 - Company Photo","description":"During a rare moment when the entire company was together, Burnie, Matt, and Barb attempt to take the new company photo using Burnie's drone.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-company-photo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72fbbe91-8c12-47eb-83a9-587026af3401/sm/2013912-1486402570266-CompanyPhoto_03.png","duration":123,"publication_date":"2017-02-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-414-nao8fh","changefreq":"weekly","video":[{"title":"2017:E414 - The Just Had Sex Look - #414","description":"Join Brandon Farmahini, Chris Demarais, Jon Risinger, and Todd Womack as they discuss flushing condoms, Super Bowl commercials, things that can’t be unseen,and more on this week's RT Podcast! This episode originally aired on February 6, 2017, sponsored by MeUndies (http://bit.ly/2lcIziQ), ProFlowers (http://bit.ly/2kI2inb), Shari’s Berries (http://bit.ly/2gjcsXO)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-414-nao8fh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7df3f91f-a169-4a65-9440-19b4e467e8b6/sm/2013912-1486485548223-rtp414_-_THUMB.jpg","duration":6652,"publication_date":"2017-02-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-episode-4","changefreq":"weekly","video":[{"title":"2017:E4 - Episode 4: The Most Dangerous Game","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! One of the Roosters must choose between love of country and love of... love, as a large sporting match puts everyone in jeopardy.\n\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e303a11c-a8a8-4842-99ef-85326480eb43/sm/2013912-1486161120527-ELR_04_01.png","duration":610,"publication_date":"2017-02-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-263-h8avia","changefreq":"weekly","video":[{"title":"2017:E6 - Burnie's Got Jokes","description":"Burnie tells a couple of his favorite jokes from when he was little. Whether they're good or not is up to you.\n\n\n\n\n\n\n\n\n\nAudio from RT Podcast #395 - Post Show\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Johnathan Floyd & Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-263-h8avia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3a1b960-26be-43fd-8554-b2bedc376b6c/sm/2013912-1486140583445-rtaa263tn.jpg","duration":146,"publication_date":"2017-02-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-83-koa8an","changefreq":"weekly","video":[{"title":"S8:E3 - For the Win #83","description":"Don't steal pizza. Unless you have to. Then it's alright. Glad we could clear that up.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-83-koa8an","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4066c156-8d56-40e3-83c9-7e4273a384ed/sm/2013912-1486236563590-ots_83ps_thumb.jpg","duration":894,"publication_date":"2017-02-05T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-2","changefreq":"weekly","video":[{"title":"2017:E2 - Planet of the Apes Isn't Fiction - #2","description":"Can animals teach their offspring a language? And what other amazing things are animals picking up from humans? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by Blue Apron (http://cook.ba/2kcG5A1)","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a42656e5-8a31-446d-806b-4c81a6fbfafd/sm/2013912-1486160328286-SOS02_-_THUMB.jpg","duration":877,"publication_date":"2017-02-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-new-bioware-ip-at-e3-headline-2-swatter-charged","changefreq":"weekly","video":[{"title":"2017:E71 - Bioware New IP WHEN? + Man of Steel vs Black Adam + SWATTER for Prison","description":"Bioware's been pretty secretive about their new IP, but now we've got rumbling that it might be an MMO-light a la Destiny or The Division, and we know when we might see it. More leaks peg Black Adam as not just an appearance in the new Man of Steel movie, but as the main antagonist. A SWATTER in the UK is facing 20 years in prison for an attack on a US-based streamer who suffered broken bones in his face and damage to his lungs.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-new-bioware-ip-at-e3-headline-2-swatter-charged","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e4e0cbf-ecd3-4194-aca0-a4ff98a99bc2/sm/24363-1491942675039-thumbnail.jpg","duration":697,"publication_date":"2017-04-11T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-new-kotor-game-l-e-a-k-e-d","changefreq":"weekly","video":[{"title":"2017:E119 - KOTOR Getting a REBOOT? New Leak!","description":"Knights of the Old Republic is one of the franchises that put Bioware on the map. Now EA's got the Star Wars license for video games and a new leak says Bioware is hard at work on a KOTOR reboot for the new canon.","player_loc":"https://roosterteeth.com/embed/game-news-2017-new-kotor-game-l-e-a-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1d25f46-738f-4048-bd18-b89e7c18fac5/sm/24363-1491865008386-thumbnail.jpg","duration":397,"publication_date":"2017-04-10T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-leaks-spell-out-future-of-dc-extended-universe-will-wonder-woman-underperform","changefreq":"weekly","video":[{"title":"2017:E14 - SIX Batman Movies in ONE YEAR? DC, What Are You Doing?!","description":"New leaks claim that we could be seeing as many as six movies in 2019 to celebrate 8 years of Batman. Gotham City Sirens? Nightwing? Animated movies? The Batman? WHY NOT ALL THESE THINGS? Apparently. Plus, there are some other rumors running around, like that Wonder Woman is expected to perform below DC's other superhero flicks, directors continue the DC movie carousel, and Suicide Squad 2 might get a new leading lady to replace Harley Quinn.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-leaks-spell-out-future-of-dc-extended-universe-will-wonder-woman-underperform","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ed7216a-afb6-4ada-9797-045e626bd3ac/sm/24363-1491862438709-thumbnail.jpg","duration":525,"publication_date":"2017-04-10T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-game-stop-hacked-mass-effect-blocks-pirates-carrie-fisher-in-episode-ix","changefreq":"weekly","video":[{"title":"2017:E70 - GameStop Hacked? + Mass Effect Pirates Get Crazy Eyes + Carrie Fisher in Star Wars Ep 9","description":"Buy anything from GameStop recently? That could be bad. Mass Effect: Andromeda pirates may be stuck with the crazy eyes version of the game. The late Carrie Fisher may be appearing not just in Star Wars Episode VIII, but IX as well. Plus, a key dev for Far Cry and Assassin's Creed has left Ubisoft, Nintendo's ready to talk more about upcoming Switch games, Persona 5's getting a huge reception in the UK, Guerrilla Games is talking possibilities for a Horizon: Zero Dawn sequel, Blizzard hasn't ruled out Overwatch on the Switch, more Blizzard devs are moving to a secret project, The Fast and Furious could end up in space, the Thor Ragnarok teaser is here, and the world's meanest anime malware makes you beat a high score to get your data back.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-game-stop-hacked-mass-effect-blocks-pirates-carrie-fisher-in-episode-ix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de5e97fc-c1b9-4903-acf5-d47e6f50b8fa/sm/24363-1491858738727-thumbnail.jpg","duration":638,"publication_date":"2017-04-10T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-m-a-r-v-e-l-a-guide-to-who-owns-what","changefreq":"weekly","video":[{"title":"2017:E13 - MARVEL: A Guide to Who Owns What (and why)","description":"Marvel is a huge success now and practically prints money at the box office, but for anyone who gets confused about why certain heroes never appear together, here's a guide to which licenses Marvel sold away to save their company, and who owns what now.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-m-a-r-v-e-l-a-guide-to-who-owns-what","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53e5f688-ac44-416e-8e87-d93d55de14d5/sm/24363-1491610213475-thumbnail.jpg","duration":649,"publication_date":"2017-04-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-g2a-versus-gearbox","changefreq":"weekly","video":[{"title":"2017:E118 - G2A Gearbox Deal MELTDOWN","description":"Earlier this week Gearbox Software announced a partnership with controversial steam key reseller G2A to distribute the collector's edition of Bulletstorm: Full Clip on PC. Since then it's been a real rollercoaster of calls for boycotts, demands, and now a meltdown of the whole thing. Here's what you need to know.","player_loc":"https://roosterteeth.com/embed/game-news-2017-g2a-versus-gearbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98bcf836-1619-4408-8338-ef29fc0fabd5/sm/24363-1491604895807-thumbnail.jpg","duration":541,"publication_date":"2017-04-07T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-scorpio-price-700-will-it-beat-play-station","changefreq":"weekly","video":[{"title":"2017:E117 - Xbox Scorpio Will Be $700? Outsell PS4? ANALYSTS GO WILD!","description":"Xbox's Project Scorpio got a hardware reveal yesterday and there's a lot of power under that hood. Now, analysts are going nuts making predictions. WHAT DOES IT ALL MEAN? WILL IT SAVE XBOX? Let's break it down.","player_loc":"https://roosterteeth.com/embed/game-news-2017-scorpio-price-700-will-it-beat-play-station","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e1e8d41-49e9-43e2-9290-5ad1e056eb03/sm/24363-1491601442201-thumbnail.jpg","duration":514,"publication_date":"2017-04-07T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cd-projekt-defends-trademark-castlevania-pachinko-you-tube-changes-monetization","changefreq":"weekly","video":[{"title":"2017:E69 - Switch Confidence Higher Than Wii! + Konami Does a Konami + New Ghost in the Shell Anime","description":"Investors are more confident in Nintendo Switch than they were in the Wii. Konami is being Konami again--they announced a new Lords of Shadow pachinko machine. Ghost in the Shell is getting a new anime treatment to wash the taste of the movie out of your mouth. Plus, CD Projekt RED defends their Cyberpunk trademark, Guerrilla Games is rewarding a Horizon GIF maker, Puyo Puyo Tetris is dropping its streaming restrictions in the west, Nvidia's just announced a 12 teraflop video card, EA is investing in their Montreal game development, YouTube is adding minimum view requirements for monetizing videos, and chicken nuggets might be the most retweeted tweet ever because that's the timeline we live in.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cd-projekt-defends-trademark-castlevania-pachinko-you-tube-changes-monetization","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad6adf45-5f9e-4563-9829-1f4f89325e16/sm/24363-1491594889245-thumbnail.jpg","duration":541,"publication_date":"2017-04-07T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-marvel-blames-diversity-for-bad-comics-sales","changefreq":"weekly","video":[{"title":"2017:E11 - Diversity KILLING MARVEL? Not so fast","description":"Headlines are flying around everywhere claiming that Marvel blames its recent forays into diverse characters for plummeting comic book sales. Here's the thing... was it said? Yes. But the context changes a lot about what it means.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-marvel-blames-diversity-for-bad-comics-sales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2070e343-d74b-4398-afca-614f35be5268/sm/24363-1491522637393-thumbnail.jpg","duration":372,"publication_date":"2017-04-06T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-scorpio-reveal-disappointing-or","changefreq":"weekly","video":[{"title":"2017:E116 - Xbox Scorpio Reveal DISAPPOINTING or SAVING XBOX","description":"As promised, Microsoft has revealed Xbox's Project Scorpio this week! Sort of. You can't see it. It doesn't have a name. Or a date. Or a price. But there are a lot of tech specs so that's something.","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-scorpio-reveal-disappointing-or","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47dca57b-fa08-43c9-be1e-7462bea6d12a/sm/24363-1491520288123-thumbnail.jpg","duration":650,"publication_date":"2017-04-06T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-e3-details-gearbox-and-g2a-backlash-candy-crush-call-of-duty","changefreq":"weekly","video":[{"title":"2017:E68 - Nintendo Switch Snags Square-Enix + MORE Streaming Restrictions + Call of Duty Gets CANDY CRUSHED","description":"Nintendo Switch has a new third-party BFF that will be supporting the platform. Get ready for even more streaming restrictions on games that make no sense. Call of Duty is getting the mobile game treatment from Candy Crush developer King. Plus, E3 conference times are being announced, Mass Effect Andromeda's new patch fixes dead eyes and some other stuff, Persona 5's already surpassed Persona 4's lifetime numbers, Gearbox and G2A aren't getting along so well, Overwatch isn't so hot on some fan requests, Shia Lebouf's having a bit of trouble in the UK, Paramount blames the whitewashing controversy on poor reviews and box office sales, and TeamFourStar's having DMCA issues with their DBZ Abridged series (again).","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-e3-details-gearbox-and-g2a-backlash-candy-crush-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3855495f-a204-4c8e-84b6-9d870f0b9c89/sm/24363-1491520195125-thumbnail.jpg","duration":635,"publication_date":"2017-04-06T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-call-of-duty-cinematic-universe","changefreq":"weekly","video":[{"title":"2017:E10 - Call of Duty CINEMATIC UNIVERSE! What","description":"Marvel's doing it. Spider-man's doing it. DC's doing it. Everyone's doing the cinematic universe thing! Including the new guy: ...Call of Duty. Ok, why? Who thought this was a good idea? Well, as it turns out...","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-call-of-duty-cinematic-universe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c44226c-3f24-4370-9f90-628b5d691aeb/sm/24363-1491434102943-thumbnail.jpg","duration":570,"publication_date":"2017-04-05T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-be-careful-how-much-you-stream-persona-5","changefreq":"weekly","video":[{"title":"2017:E115 - Streamers RUINING Games?","description":"Are streamers and let's players RUINING games? One publisher is taking a stand and it's... Atlus? Yep. In a very Japanese move, the Persona 5 publisher is putting restrictions on what can be streamed, and they're threatening copyright strikes against anyone who doesn't comply.","player_loc":"https://roosterteeth.com/embed/game-news-2017-be-careful-how-much-you-stream-persona-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9351689-70cc-4392-bbc0-da22c69542fd/sm/24363-1491429072016-thumbnail.jpg","duration":586,"publication_date":"2017-04-05T22:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-scorpio-rumors-mass-effect-drm-cracked-headline-3","changefreq":"weekly","video":[{"title":"2017:E67 - Xbox Scorpio: What to expect + Mass Effect Andromeda CRACKED + Gamers STILL Not Violent (Again)","description":"Here's what you can expect from the Xbox Scorpio reveal tomorrow. Mass Effect Andromeda has already been cracked by pirates on PC. ANOTHER study claiming games make people violent has been debunked. Plus, how much does Nintendo Switch cost to make, which age groups love which consoles the most, expect a new Sucker Punch game at E3, Warner Bros may be working on a Harry Potter game, HTC's launching a subscription service for Vive games, Defenders has a release date and Squirrel Girl is coming to TV, Amazon owes parents $70 million, and Android hardware maker are teaming up against patent trolls.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-scorpio-rumors-mass-effect-drm-cracked-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db13f4db-eb5a-4e26-8bcd-848d72277e01/sm/24363-1491424764876-thumbnail.jpg","duration":708,"publication_date":"2017-04-05T21:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-cracking-down-on-fake-g-a-m-e-s","changefreq":"weekly","video":[{"title":"2017:E113 - Steam cracking down on FAKE GAMES?","description":"2017:E113 - Steam cracking down on FAKE GAMES?","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-cracking-down-on-fake-g-a-m-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d741b0d-9c2a-4e9c-b11f-cfa3bc4b9df6/sm/710924-1491338799846-thumbnail.jpg","duration":407,"publication_date":"2017-04-04T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cyberpunk-trademarked-rip-for-honor-peta-vs-nintendo-switch","changefreq":"weekly","video":[{"title":"2017:E66 - Cyberpunk Trademarked + RIP For Honor + PETA Vs Nintendo Switch","description":"2017:E66 - Cyberpunk Trademarked + RIP For Honor + PETA Vs Nintendo Switch","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cyberpunk-trademarked-rip-for-honor-peta-vs-nintendo-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf030b4-3eea-4a9a-86d6-2f360a8f01aa/sm/710924-1491335593683-thumbnail.jpg","duration":615,"publication_date":"2017-04-04T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-what-went-wrong-mass-effect-andromeda","changefreq":"weekly","video":[{"title":"2017:E112 - Mass Effect Andromeda... WHAT WENT WRONG","description":"Were Mass Effect Andromeda's worst parts outsourced? One report says that's the case, so now you know who to get mad at about everything that went wrong with Andromeda.","player_loc":"https://roosterteeth.com/embed/game-news-2017-what-went-wrong-mass-effect-andromeda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a162d79-4421-437a-8f79-fa6cc5dc64e2/sm/710924-1491258494923-thumbnail.jpg","duration":450,"publication_date":"2017-04-04T00:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-scorpio-reveal-coming-soon-and-will-red-dead-redemption-2-be-involved","changefreq":"weekly","video":[{"title":"2017:E111 - Project Scorpio To Be Revealed THIS WEEK?","description":"Looks like we won't have to wait long to hear more about Project Scorpio. The rumor mill is buzzing, and it looks like we may get to hear more about Microsoft's next console as soon as this week.","player_loc":"https://roosterteeth.com/embed/game-news-2017-scorpio-reveal-coming-soon-and-will-red-dead-redemption-2-be-involved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f83eff3-30aa-4eb1-a697-a1207131844d/sm/710924-1491255492646-thumbnail.jpg","duration":378,"publication_date":"2017-04-03T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-switch-w-a-r-p-i-n-g-konami-sued-headline-3","changefreq":"weekly","video":[{"title":"2017:E65 - Nintendo Switch WARPING? + Konami LAWSUIT + Ghost in the Shell BOMBS","description":"Welcome to a new week. New week means new news. Like the Nintendo Switch warping in docked mode. Konami getting sued. and Ghost in the Shell bombing at theaters. Plus, Spider-Man game hitting PS4 this year, Destiny 2's DLC schedule leaked, Agents of Mayhem looking pretty sweet, Iron Fist doing big numbers for Netflix, Get Out and IT break records, a speedrunner got sabotaged by his own Twitch chat, and we've got mysterious x-rays from space.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-switch-w-a-r-p-i-n-g-konami-sued-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e62cc907-42de-40bc-a5e2-d8e6cde87dd4/sm/24363-1491250943545-thumbnail.jpg","duration":619,"publication_date":"2017-04-03T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-april-fool-s-round-up","changefreq":"weekly","video":[{"title":"2017:E64 - The Best & Weirdest of APRIL FOOLS 2017","description":"We don't do April Fools ourselves since then no one would take our awesome company anniversary announcements seriously. But we DO report on the fun stuff everyone else is doing. It's like being the kid who's doing homework while there's a paper airplane fight going on... very mature for our age, really.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-april-fool-s-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/208edffa-b026-4755-a726-f71320188cac/sm/24363-1491062436962-april_fools_thumb.jpg","duration":480,"publication_date":"2017-04-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-cd-projekt-red-trademarks-cyberpunk","changefreq":"weekly","video":[{"title":"2017:E109 - Cyberpunk TRADEMARKED! Has CD Projekt RED Gone Too Far?","description":"No, it's not King going nuts with the trademarks... not this time. It's actually beloved Witcher developer CD Projekt RED. The company is attempting to copyright the word Cyberpunk so no one can use that word in a video game name. Thing is... they didn't invent that word and it refers to a whole genre, so...","player_loc":"https://roosterteeth.com/embed/game-news-2017-cd-projekt-red-trademarks-cyberpunk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d62a3534-37fa-4802-8715-8293ea782f67/sm/24363-1491006007480-thumbnail.jpg","duration":461,"publication_date":"2017-04-01T01:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-oculus-rift-founder-fired-from-facebook","changefreq":"weekly","video":[{"title":"2017:E16 - GOODBYE OCULUS! Rift Creator's Big Exit","description":"Oculus creator Palmer Luckey has been a touchy subject for a while now--first there was the lawsuit alleging that he and John Carmack stole technology from ZeniMax. Then there was that whole thing with funding shitposting groups during the US election that had game developers pulling support for Oculus. Well, it's reached its end game because now he and his hundreds of millions of dollars are parting ways with Oculus.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-oculus-rift-founder-fired-from-facebook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e97483d-6713-4f1b-91f2-54c89f204e10/sm/24363-1491004683200-thumbnail.jpg","duration":605,"publication_date":"2017-04-01T00:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-for-honor-boycott-worked-no-man-s-sky-hiring-headline-3","changefreq":"weekly","video":[{"title":"2017:E63 - For Honor Boycott Worked? + No Man's Sky Hiring + Congress TROLLED","description":"2017:E63 - For Honor Boycott Worked? + No Man's Sky Hiring + Congress TROLLED","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-for-honor-boycott-worked-no-man-s-sky-hiring-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/699d4267-10e9-4e7c-a7e8-f65b287faa9b/sm/710924-1490997410527-forhonor_round_up.jpg","duration":557,"publication_date":"2017-03-31T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-for-honor-boycott-battlefront-2-reveal-trailer-get-out-director-for-akira","changefreq":"weekly","video":[{"title":"2017:E62 - For Honor BOYCOTT + Battlefront 2 Revealed + Avengers Director Joins Batgirl","description":"Players are boycotting For Honor... even though they already dropped $60+ on it. Star Wars: Battlefront 2 is officially announced (surprise?). Marvel superstar Joss Whedon has defected to DC to direct a new Batgirl movie. Plus, early Switch numbers are surpassing early PS4 numbers in Japan, Persona 5 doesn't want you streaming, Nier Automata has set a PC sales record for Square-Enix, fans have been invited to preview early footage for Star Wars Episode 8, Justice League might be a loooonnngg movie, Jordan Peele is being eyed as another director candidate for a live action Akira movie, and Twitch is kicking off 1080p/60fps streaming support.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-for-honor-boycott-battlefront-2-reveal-trailer-get-out-director-for-akira","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8915dd0c-aee8-4ef2-831b-8495fcfbc277/sm/24363-1490902787784-thumbnail.jpg","duration":439,"publication_date":"2017-03-30T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-persona-5-is-it-good","changefreq":"weekly","video":[{"title":"2017:E106 - Persona 5... IS IT GOOD?","description":"Reviews are in for upcoming JRPG Persona 5, the (you guessed it) fifth entry in the popular franchise from Atlus. Now that the critics are weighing in, we can take a look at what they're saying, how they're stacking it against previous entries, and answer the big question... IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/game-news-2017-persona-5-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa4c4feb-28ee-4cae-9b21-368311f5f39d/sm/24363-1490830498563-thumbnail.jpg","duration":619,"publication_date":"2017-03-29T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-sony-may-pull-spider-man-from-m-c-u","changefreq":"weekly","video":[{"title":"2017:E9 - Sony PULLING Spider-Man from Marvel ALREADY?","description":"Spider-man is making a comeback in a big way now that Sony has agreed to collaborate with Marvel on the web-slinger's new film and sequel. But now that Marvel's fixing Spidey's image up, Sony kinda wants to take the character back and do their own thing again.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-sony-may-pull-spider-man-from-m-c-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b84403-63ec-4919-8e0c-b0d6974b6e28/sm/24363-1490828030596-thumbnail.jpg","duration":394,"publication_date":"2017-03-29T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-red-dead-redemption-2-date-destiny-2-trailer-incoming-goodbye-privacy","changefreq":"weekly","video":[{"title":"2017:E61 - Red Dead Redemption 2 Date Leak + Destiny 2 Reveal + Anti-Privacy Law Passed","description":"Read Dead Redemption 2's release date may have leaked (again) but the retailer response could be telling. Destiny 2 has been announced and teased with more details coming up. An anti-privacy law allowing ISPs to sell your data has passed so be careful with your porn. Plus, Battlefield 1 introduces premium friends, Nintendo speaks on graphics vs gameplay in Zelda, PSN is cancelling pre-orders for South Park: The Fractured But Whole, Watch Dogs 2 is changing its DLC structure, Telltale confirms the release date for their Guardians of the Galaxy game, apparently the packaging for Lego City Undercover is incorrect about download requirements, Venom's definitely not turning up in the MCU, and Ghost in the Shell reviews are coming in.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-red-dead-redemption-2-date-destiny-2-trailer-incoming-goodbye-privacy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e68c58b9-e60e-4544-b7e7-8a14902648c8/sm/24363-1490819707497-thumbnail.jpg","duration":639,"publication_date":"2017-03-29T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-microsoft-talks-xbox-one-s-big-mistake","changefreq":"weekly","video":[{"title":"2017:E105 - Microsoft Talks Xbox One's BIG MISTAKE","description":"Xbox One has made some missteps with gamers over the last few years, but the most notable one was the announcement of their new console, which immediately turned gamers against them. Fortunately, Microsoft seems to be taking the feedback onboard and acknowledging that... yeah, they messed up. Hopefully this is a good sign for what's next?","player_loc":"https://roosterteeth.com/embed/game-news-2017-microsoft-talks-xbox-one-s-big-mistake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b77ae40-7ad2-4bb1-9eb7-63162e6867ec/sm/24363-1490746652207-thumbnail.jpg","duration":554,"publication_date":"2017-03-29T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-which-console-does-the-media-love-the-most","changefreq":"weekly","video":[{"title":"2017:E104 - Which Console Gets MOST LOVE From Media?","description":"A new study breaks down the amount of coverage different consoles get. How does that relate to which consoles are selling best? Let's take a look.","player_loc":"https://roosterteeth.com/embed/game-news-2017-which-console-does-the-media-love-the-most","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7be67d89-b455-4b08-97e8-1d0ebce89242/sm/24363-1490740255629-thumbnail.jpg","duration":421,"publication_date":"2017-03-28T22:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-man-s-mass-effect-more-nintendo-cart-problems-spider-man-trailer-spoils-everything","changefreq":"weekly","video":[{"title":"2017:E60 - Mass Effect Almost No Man's Sky + More Switch Cartridge Woes + Spoilerific Spider-Man","description":"Mass Effect Andromeda was nearly a LOT more similar to No Man's Sky. More games are having issues with Nintendo Switch cartridges, leading to concerns that game makers are cheaping out on cartridge storage and requiring large downloads. The Spider-man: Homecoming trailer is pretty awesome... and basically spoils the entire movie. Plus, Eurogamer confirms Call of Duty: World War 2, Rocket League admits unacceptable game issues and is still considering a Switch port, Halo Wars 2 may come to Steam, Overwatch pros can make a lot of money, the whole censorship thing over Outlast 2 is getting even more confusing, there may still be a live-action Akira movie, and a class-action lawsuit against Microsoft accuses the company of ruining PCs.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-man-s-mass-effect-more-nintendo-cart-problems-spider-man-trailer-spoils-everything","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abf8e8e4-1517-4df2-ae4b-1d1eb2632c82/sm/24363-1490734227493-thumbnail.jpg","duration":684,"publication_date":"2017-03-28T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-world-war-ii","changefreq":"weekly","video":[{"title":"2017:E102 - Call of Duty: World War II LEAKS","description":"Those earlier rumors that Call of Duty is returning to World War 2 seem to have merit! New marketing materials have leaked ahead of the game's announcement.","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-world-war-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc82867a-5a33-42b8-969d-9287beb9c48f/sm/24363-1490655565123-thumbnail.jpg","duration":426,"publication_date":"2017-03-27T23:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-stop-to-close-hundreds-of-stores-spoiler-yes","changefreq":"weekly","video":[{"title":"2017:E103 - GameStop CLOSING STORES!","description":"GameStop is closing hundreds of stores as a down year for physical game sales puts more pressure on the giant retailer.","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-stop-to-close-hundreds-of-stores-spoiler-yes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8738e6cd-c00c-42bf-bdfe-b1f2eada4c16/sm/24363-1490654205749-thumbnail.jpg","duration":414,"publication_date":"2017-03-27T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-has-big-e3-plans-mass-effect-andromeda-falls-short-power-rangers-too-gay-for-russia","changefreq":"weekly","video":[{"title":"2017:E59 - Nintendo's Big Plans + Mass Effect Andromeda Falls Short + Power Rangers vs Russia","description":"Nintendo's got big plans for gamers this year at E3. Mass Effect Andromeda sales have fallen short of its predecessors. Power Rangers has been restricted in Russia because of homosexual characters. Plus, Destiny 2 is officially announced with some interesting implications, StarCraft Remastered is confirmed, Battlegrounds is taking over Steam's top charts, we got the full Justice League trailer, Brad Pitt may be in talks for Cable in Deadpool 2, Venom will be a sci-fi horror film, and Uber has put autonomous driving tests on hold after a collision.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-has-big-e3-plans-mass-effect-andromeda-falls-short-power-rangers-too-gay-for-russia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06fb35ca-8e8e-44d8-8a39-6f20cf41f29c/sm/24363-1490646320013-thumbnail.jpg","duration":587,"publication_date":"2017-03-27T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-life-and-death-of-the-virtual-boy","changefreq":"weekly","video":[{"title":"2017:E101 - The Life and Death of Nintendo VIRTUAL BOY","description":"Nintendo was accustomed to runaway successes in the '80s and '90s--NES, SNES, Game Boy... and then there was the Virtual Boy. It was the company's first attempt at VR, and one that still influences VR work today.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-life-and-death-of-the-virtual-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d2f42b5-b5c3-486c-8694-b884c2e0cd01/sm/24363-1490545398159-virtual_boy_thumbnail.jpg","duration":715,"publication_date":"2017-03-26T16:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-rotten-tomatoes-ruining-movies","changefreq":"weekly","video":[{"title":"2017:E8 - Rotten Tomatoes RUINING Movies?","description":"According to Hollywood bigwigs it's not all the sequels and requels and reboots that are ruining movie. Oh no. It's reviewers and sites like Rotten Tomatoes that share all those reviews. ","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-rotten-tomatoes-ruining-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e97ce01-0e08-42f0-ab1e-ab903dcf823c/sm/710924-1490402695099-thumbnail.jpg","duration":559,"publication_date":"2017-03-25T17:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-you-tube-losing-advertisers-you-tube-boycott","changefreq":"weekly","video":[{"title":"2017:E15 - YouTube BOYCOTT By Advertisers! Break out #YouTubeIsOverParty","description":"YouTube's having a rough time. In addition to backlash from creators over things like restricted mode, now advertisers are boycotting the platform because it doesn't do ENOUGH to protect brands from accidental advertisement on content they find objectionable.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-you-tube-losing-advertisers-you-tube-boycott","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f45a0b2-d9af-420b-bf56-bf479479a580/sm/24363-1490400847570-thumbnail.jpg","duration":421,"publication_date":"2017-03-25T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-why-do-switch-games-cost-more","changefreq":"weekly","video":[{"title":"2017:E100 - Nintendo Switch Tax STRIKES AGAIN! Why Are Games $10 More?","description":"More games for Nintendo Switch are being priced at $10 extra. Where's this tax coming from? Cartridge production costs? Then why does it affect digital versions too? Let's discuss.","player_loc":"https://roosterteeth.com/embed/game-news-2017-why-do-switch-games-cost-more","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac43a2d0-878b-4a81-b1ac-eb780ed9b79a/sm/710924-1490395496384-thumbnail.jpg","duration":410,"publication_date":"2017-03-24T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-outlast-2-unbanned-jon-tron-booted-from-yooka-laylee-is-ps-can-sell-your-history","changefreq":"weekly","video":[{"title":"2017:E58 - Outlast 2 CENSORED Everywhere? + JonTron Booted from Yooka-Laylee + ISPs Can Sell Your History","description":"Outlast is now rated in Australia, but it sounds like it's just getting censored everywhere now. Popular YouTuber JonTron has been cut from the game Yooka-Laylee following controversial remarks. Details have spilled about when the Han Solo movie will take place and what it will be about.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-outlast-2-unbanned-jon-tron-booted-from-yooka-laylee-is-ps-can-sell-your-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6ee2ab8-4550-4c1c-9043-81f60cb70b52/sm/24363-1490387858385-thumbnail.jpg","duration":544,"publication_date":"2017-03-24T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-destiny-2-release-date-l-e-a-k-e-d-announcement-incoming","changefreq":"weekly","video":[{"title":"2017:E99 - Destiny 2 LEAKS! Release Date! Beta! Platforms!","description":"Destiny 2 may be the worst kept secret in the gaming industry, but that won't stop it from springing a leak! New marketing materials have outed the game's release date, beta details, and even platform details before the game is officially announced.","player_loc":"https://roosterteeth.com/embed/game-news-2017-destiny-2-release-date-l-e-a-k-e-d-announcement-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a6cb607-9e28-4b65-872a-b85be3a73993/sm/24363-1490309150203-thumbnail.jpg","duration":404,"publication_date":"2017-03-23T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-finally-admits-the-left-joy-con-is-messed-up","changefreq":"weekly","video":[{"title":"2017:E98 - Nintendo ADMITS to Nintendo Switch Joy Con DEFECT","description":"Even before Nintendo switch launched, people who got hands on the console reported issues with joy cons desyncing from the console unexpectedly. Even after launch Nintendo downplayed the issue, but now admit that some of the joy cons suffered a manufacturing issue that require you to send your joy con in for repair.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-finally-admits-the-left-joy-con-is-messed-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cfa4513-a5d0-453a-b9f0-a628d35b6ff2/sm/24363-1490307098269-thumbnail.jpg","duration":370,"publication_date":"2017-03-23T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ubisoft-responds-to-for-honor-dlc-don-t-blame-animators-for-andromeda-i-cloud-held-ransom","changefreq":"weekly","video":[{"title":"2017:E57 - Xbox Admits Exclusive Problem + Andromeda NOT ANIMATOR'S FAULT? + iCloud Held Ransom","description":"Xbox boss Phil Spencer admits Xbox One needs to do better with exclusive games. Professional animators weigh in on Mass Effect: Andromeda and think it's not necessarily the fault of animators working on the game. Hackers are  holding iCloud accounts hostage. Plus, Ubisoft responds to the For Honor microtransaction outrage, we have a potential date for the Guardians of the Galaxy game, shinies are appearing in Pokemon Go, Ubisoft is working on the Assassin's Creed TV series, there's a new frontrunner for Cable in Deadpool 2, more Spider-man movies, and farmers get help from hackers for their equipment.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ubisoft-responds-to-for-honor-dlc-don-t-blame-animators-for-andromeda-i-cloud-held-ransom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45fa2570-95c0-4b9a-b0b6-870a1edec3e6/sm/24363-1490301024925-thumbnail.jpg","duration":581,"publication_date":"2017-03-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bioware-says-it-will-fix-all-the-shit-wrong-with-andromeda","changefreq":"weekly","video":[{"title":"2017:E97 - Mass Effect Andromeda FIXABLE? What's Bioware Doing About It?","description":"Mass Effect Andromeda wasn't even out before it started taking the punches for wonky animations, glitches, and impossibly weird character faces. By the way, none of that stuff is minor in development terms. So is it even fixable? And what's Bioware doing to address the complaints? Can Mass Effect still be saved?","player_loc":"https://roosterteeth.com/embed/game-news-2017-bioware-says-it-will-fix-all-the-shit-wrong-with-andromeda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8972b013-890b-4a63-b227-8ef7d29af054/sm/24363-1490223137249-thumbnail.jpg","duration":374,"publication_date":"2017-03-22T23:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-360-versus-the-supreme-court","changefreq":"weekly","video":[{"title":"2017:E96 - Xbox vs the SUPREME COURT","description":"Xbox has been fighting gamers in court for years now over accusations the company knowingly shipped defective consoles, and it's finally reached the highest court in America: The Supreme Court.","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-360-versus-the-supreme-court","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dddfaa7-369e-4938-b3c0-f017b6e424ff/sm/24363-1490220690839-thumbnail.jpg","duration":523,"publication_date":"2017-03-22T22:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-youtube-flagging-more-videos-as-restricted","changefreq":"weekly","video":[{"title":"2017:E14 - YouTube HIDING Gaming Videos!","description":"YouTube is in hot water with creators and users again over accusations the platform is automatically hiding videos from restricted users for containing objectionable content.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-youtube-flagging-more-videos-as-restricted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d1757d9-0025-4ab5-9826-2d3437691b55/sm/24363-1490140537545-thumbnail.jpg","duration":552,"publication_date":"2017-03-22T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-big-andromeda-patch-coming-modder-fixes-nier-on-pc-psyonix-versus-rocket-league-betting","changefreq":"weekly","video":[{"title":"2017:E56 - Xbox Game Pass vs Pachter + Nier Automata FIXED? + $100 Million SCAM","description":"Michael Pachter's taking aim at Xbox Game Pass over how successful it could be. Since Nier Automata isn't great on PC a fan's gone ahead and fixed it. A scammer managed to talk not one, but TWO companies out of $100 million. Plus, dates are popping up for Gran Turismo Sport and ARMS, Fallout 4 in VR will apparently blow our minds, Cyanogen told Nintendo to \"stick it,\" don't look for a new Terminator anytime soon, or Ghostbusters, and betting is open for Rocket League but Psyonix isn't happy about it.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-big-andromeda-patch-coming-modder-fixes-nier-on-pc-psyonix-versus-rocket-league-betting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4af1bee8-428e-4345-941d-41e8733d803d/sm/710924-1490212030896-thumbnail.jpg","duration":551,"publication_date":"2017-03-22T20:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-were-critics-wrong-about-iron-fist","changefreq":"weekly","video":[{"title":"2017:E7 - Critics WRONG About Marvel's Iron Fist?","description":"Marvel's Iron Fist has been no stranger to controversy since it was announced. First with fans up in arms over accusations of whitewashing, then with critics universally panning the series for being unwatchable... now that the show is out, fans strongly disagree with the critical response, with one of the widest gaps in critic/audience scores we've seen yet.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-were-critics-wrong-about-iron-fist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81cb8f5e-69b5-4979-8ebe-4e6593ae219f/sm/24363-1490136808746-thumbnail.jpg","duration":529,"publication_date":"2017-03-21T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-outpacing-wii-no-witcher-4-more-suicide-squad-2-rumors","changefreq":"weekly","video":[{"title":"2017:E55 - Switch More Successful than Wii? + No Witcher 4. Sorry + Suicide Squad 2 Rumors","description":"GameStop thinks Nintendo Switch could sell more than the Wii. A rumor's been circulating about The Witcher 4, but it's not true. Sorry. We wish it were. Suicide Squad 2 is still in the middle of its director woes. Plus, Xbox Live is down, Ghost Recon Wildlands is selling huge numbers, Overwatch wants to add a map editor, Secret of Mana Collection for Switch is official, Assassin's Creed Empire gets a retail listing, a new movie might be part of the Cloverfield universe, YouTube is being invaded by anime girls, and Stephen Hawking is going to space!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-outpacing-wii-no-witcher-4-more-suicide-squad-2-rumors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/424e2f83-b2bd-4746-a75a-0b79cc4cae52/sm/24363-1490130502429-thumbnail.jpg","duration":583,"publication_date":"2017-03-21T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pokemon-confirmed-for-switch","changefreq":"weekly","video":[{"title":"2017:E95 - Pokémon for Nintendo Switch Listing!","description":"Rumors of Pokémon for Nintendo Switch have been floating around for a while. New job postings for developer Game Freak reveal more, like when we might see the the game (or games)!","player_loc":"https://roosterteeth.com/embed/game-news-2017-pokemon-confirmed-for-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e477f2e-188b-432e-a1fd-0aca0b43bb35/sm/24363-1490053414645-thumbnail.jpg","duration":421,"publication_date":"2017-03-21T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-cyberpunk-2077-release-date-headline-2-new-matrix-not-a-reboot","changefreq":"weekly","video":[{"title":"2017:E54 - Cyberpunk 2077 WHEN? + More Classic Games for Switch + New Matrix NOT a Reboot","description":"Don't get your hopes up for Cyberpunk 2077 anytime soon, if new info from CD Projekt's grants is any indication. More classic franchises may be making the jump to Switch, including Monster Hunter and the sequel to Secret of Mana. The new Matrix writer is already spilling details on Twitter, like that the movie's not a reboot or a sequel, exactly. Plus, the ending of Mass Effect Andromeda is already out there so be careful with your interneting, we've got details on the Nintendo Switch's hardware (finally), more Assassin's Creed Empire leaks, Super Mario Run is finally making its way to Android, Beauty and the Beast crushed Batman v Superman's March opening record, Deathstroke is having second thoughts about The Batman movie, and the Overwatch community gets together to build a new PC for one of their own.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-cyberpunk-2077-release-date-headline-2-new-matrix-not-a-reboot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eae70806-9a28-4da4-8801-f991241aa1e8/sm/24363-1490053133945-thumbnail.jpg","duration":614,"publication_date":"2017-03-20T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mass-effect-andromeda-does-it-suck","changefreq":"weekly","video":[{"title":"2017:E94 - Mass Effect Andromeda: DOES IT SUCK?","description":"Reviews are in for Mass Effect Andromeda, following early impressions over the last week that have revealed all kinds of glitches and bugs. Are the gameplay and story enough to counteract the rough edges or DOES IT SUCK?","player_loc":"https://roosterteeth.com/embed/game-news-2017-mass-effect-andromeda-does-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/665830c3-33e7-412c-a3d9-873e5248227c/sm/24363-1490043407218-thumbnail.jpg","duration":670,"publication_date":"2017-03-20T21:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-why-do-games-cost-60","changefreq":"weekly","video":[{"title":"2017:E93 - Why Do Games Cost $60?","description":"Games cost $60 and have for a long time. Why? And how does paid DLC fit into all this? Let's take a look at how the revenue from buying games splits out so you know where your money goes when you buy a game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-why-do-games-cost-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d1f1c19-2462-4261-a1f6-6a327f13dafa/sm/24363-1489792982838-thumbnail.jpg","duration":704,"publication_date":"2017-03-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-mass-effect-andromeda","changefreq":"weekly","video":[{"title":"2017:E92 - Know Before You Go... MASS EFFECT ANDROMEDA","description":"Mass Effect Andromeda is the fourth game in the popular space-based action RPG series, Mass Effect. Andromeda is the first entry following the trilogy and stars new characters, a new galaxy, and a new story. Here's a quick summary of everything you need to know before you go.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-mass-effect-andromeda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc215627-5632-493e-a018-3f19c51bf6d3/sm/24363-1489792897489-thumbnail.jpg","duration":381,"publication_date":"2017-03-19T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-for-honor-s-new-content-r-i-p-o-f-f","changefreq":"weekly","video":[{"title":"2017:E91 - For Honor's New Content RIP-OFF?","description":"For Honor has introduced some cheeky, fun, totally optional new cosmetic emotes for characters. Sounds good so far, right? Here's the catch: you can either shell out real money or plan on spending the next few years grinding to get them. That's pretty reminiscent of the Free to Play model except... For Honor costs $60!","player_loc":"https://roosterteeth.com/embed/game-news-2017-for-honor-s-new-content-r-i-p-o-f-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62b839a7-e3ba-4f92-a9f6-2ccbfd7e7b98/sm/24363-1489790000759-thumbnail.jpg","duration":475,"publication_date":"2017-03-17T22:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-doubling-output","changefreq":"weekly","video":[{"title":"2017:E90 - Nintendo Switch DOUBLING Output!","description":"Breaking News: Nintendo Switch is selling pretty well. Better than expected, apparently, because Nintendo is doubling their output of hardware over the next year to try to meet demand.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-doubling-output","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56210a66-cdc2-4925-b2b5-c5a83117a76d/sm/24363-1489785696377-thumbnail.jpg","duration":410,"publication_date":"2017-03-17T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-fix-for-mass-effect-faces-new-sonic-game-power-ranger-guilty-of-murder","changefreq":"weekly","video":[{"title":"2017:E53 - No Fix for Mass Effect Faces + New Sonic Game! + Power Ranger GUILTY of Murder","description":"Get used to weird faces in Mass Effect Andromeda. They're not going away in a day 1 patch. Sonic Mania is delayed but Sonic Forces is revealed. A former Power Ranger has pled guilty to killing a room mate with a sword. Plus, Metal Gear may be coming to Nintendo Switch, console sales are down, PlayStation 3 may end production soon, Aquaman's delayed, the Venom movie has a release date, and just for funsies--a Russian petting zoo's racoon has been traumatized by an erotic video shoot.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-fix-for-mass-effect-faces-new-sonic-game-power-ranger-guilty-of-murder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9445d4a2-1757-4744-94eb-e5b0eeb4577c/sm/24363-1489778673672-thumbnail.jpg","duration":558,"publication_date":"2017-03-17T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-australia-banning-games","changefreq":"weekly","video":[{"title":"2017:E89 - Outlast 2 BANNED","description":"Australia, you've done it again. You added an R18+ rating to encompass the really mature games... and you're still banning the really mature games! This time it's Outlast 2's turn.","player_loc":"https://roosterteeth.com/embed/game-news-2017-australia-banning-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32e1ad1a-afb6-4202-9b94-b37a6c82efbf/sm/24363-1489706627575-thumbnail.jpg","duration":429,"publication_date":"2017-03-16T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mass-effect-andromeda-goes-from-bad-to-worse","changefreq":"weekly","video":[{"title":"2017:E88 - Mass Effect Andromeda ALREADY A MEME","description":"The trickle of warning about Mass Effect Andromeda is becoming a roar now that the game is out on EA Access to offer a timed demo for subscribers. So much so that it's getting memed all over the place thanks to plastic humans, clunky animations, and a general inability to walk (which we still think could be caused by cryosleep... WE JUST WANT IT TO BE GOOD, OK?).","player_loc":"https://roosterteeth.com/embed/game-news-2017-mass-effect-andromeda-goes-from-bad-to-worse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b65641cc-3ee9-4088-8c83-518de4935073/sm/24363-1489706277368-thumbnail.jpg","duration":435,"publication_date":"2017-03-16T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-back-in-stock-w-h-e-n-telltale-ceo-quits-gal-gun-boob-dlc-huge-s-u-c-c-e-s-s","changefreq":"weekly","video":[{"title":"2017:E52 - Switch Back in Stock WHEN? + Telltale CEO Quits + Gal Gun Boob DLC = HUGE SUCCESS?","description":"Looks like more Nintendo Switches are coming. Telltale's CEO is stepping down. Gal Gun Double Peace is enjoying 4x the success the creators were expecting. Plus, no South Park for the Switch, we've got sales numbers for Horizon: Zero Dawn, AMD is launching new chips, Legion's been renewed, and get ready for more Guardians of the Galaxy movies.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-back-in-stock-w-h-e-n-telltale-ceo-quits-gal-gun-boob-dlc-huge-s-u-c-c-e-s-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e36ea7b-f200-469e-8822-83551f22419c/sm/24363-1489705159812-thumbnail.jpg","duration":520,"publication_date":"2017-03-16T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-most-rumored-switch-ports","changefreq":"weekly","video":[{"title":"2017:E87 - Where are the MOST WANTED Games for Nintendo Switch?","description":"Nintendo Switch has launched strong with help from Zelda: Breath of the Wild, but now Switch owners are starting to finish it and look for more games. Let's take a look at some of the most wanted and rumored games for the platform and see where those are at, and how likely they are to make an appearance.","player_loc":"https://roosterteeth.com/embed/game-news-2017-most-rumored-switch-ports","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0ce2424-17d0-430a-8975-56a19e0c5e13/sm/24363-1489618097534-thumbnail.jpg","duration":526,"publication_date":"2017-03-15T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-should-mass-effect-andromeda-fans-be-nervous","changefreq":"weekly","video":[{"title":"2017:E86 - Should You be WORRIED About Mass Effect: Andromeda?","description":"Reviews won't hit for a few days still, but early reports of Mass Effect: Andromeda are pretty polarizing. While some are happy with where the game is at, others have nothing good to say about Bioware's follow-up to the Mass Effect trilogy.","player_loc":"https://roosterteeth.com/embed/game-news-2017-should-mass-effect-andromeda-fans-be-nervous","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88d94ac7-da97-43c8-9f23-e5717a917073/sm/24363-1489609941132-thumbnail.jpg","duration":415,"publication_date":"2017-03-15T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up-2","changefreq":"weekly","video":[{"title":"2017:E51 - Nintendo Switch Framerate FIX + Xbox One Accessory Recall + Working Hoverboard BANNED","description":"There may be a temporary fix for Nintendo Switch frame drops, with a permanent solution coming soon. A popular third party charging accessory for Xbox One is under recall. A working hoverboard has been banned in France over safety concerns. Plus, Blizzard's going after a cheat maker for millions, Starbreeze is publishing System Shock 3 and bringing it to consoles, Disney Afternoon Collection is announced, an unreleased Dreamcast has been found and made playable, Beauty and the Beast is expected to do well, The Matrix is getting a reboot no one asked for, and a Vibrator manufacturer owes millions after invading customers' privacy.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71739b00-3010-467e-b400-c869443fa33a/sm/24363-1489606176905-thumbnail.jpg","duration":623,"publication_date":"2017-03-15T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-doing-as-well-as-ps4-xbox-one-switch-launch-competing-with-ps4-and-xbox","changefreq":"weekly","video":[{"title":"2017:E85 - Switch Sales Revealed! NINTENDO IS BACK?","description":"Nintendo Switch has been highly anticipated and early buzz pointed to it doing well, but now data firms are weighing in with hardware sales numbers that indicate Nintendo is back in a big way... if they can keep the games coming.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-doing-as-well-as-ps4-xbox-one-switch-launch-competing-with-ps4-and-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b00fe91-0ddc-46b4-a235-24f4793748e4/sm/24363-1489532492758-thumbnail.jpg","duration":556,"publication_date":"2017-03-14T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-mass-effect-first-impressions-leak-no-man-s-sky-updated-again-kingsmen-director-for-superman-2","changefreq":"weekly","video":[{"title":"2017:E50 - Mass Effect Andromeda Review LEAK + No Man's Sky Updated AGAIN + Kingsmen Director to Save Superman?","description":"Happy Pi Day! Review impressions are leaking out early for Mass Effect: Andromeda. No Man's Sky's update has received an update. Matthew Vaughn, who directed Kingsmen, may be called upon to save DC's Man of Steal 2. Plus, more hints about Smash Bros for Nintendo Switch, Blizzard speaks on bringing Overwatch to Switch, we may be getting a remastered StarCraft this year, reviews are in for Nvidia's GTX 1080 TI, Twitch is streaming every episode of Power Rangers, and Boaty McBoatface begins its maiden voyage.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-mass-effect-first-impressions-leak-no-man-s-sky-updated-again-kingsmen-director-for-superman-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e522c533-3674-48ce-a44a-7d0538c68bc3/sm/24363-1489528542553-thumbnail.jpg","duration":568,"publication_date":"2017-03-14T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gamers-predict-the-end-of-the-world","changefreq":"weekly","video":[{"title":"2017:E84 - Gamers vs THE APOCALYPSE","description":"There are a lot of movies predicting the end of the world: from Armageddon to This Is The End to Interstellar to Seeking a Friend for the End of the World. And they all predict how humans would handle it differently. To get a more accurate picture, scientists have turned to a new source for end-of-days simulation... MMOs.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gamers-predict-the-end-of-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ace0b94-4b4d-4065-b398-a86fb9d09510/sm/24363-1489520500212-thumbnail.jpg","duration":390,"publication_date":"2017-03-14T20:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-there-s-nothing-wrong-with-the-switch","changefreq":"weekly","video":[{"title":"2017:E83 - Nintendo: There's Nothing Wrong with the Switch","description":"2017:E83 - Nintendo: There's Nothing Wrong with the Switch","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-there-s-nothing-wrong-with-the-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf33745f-141a-4da9-bcfb-734806976395/sm/710924-1489439664875-broken_thumbnail.jpg","duration":321,"publication_date":"2017-03-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-zelda-fans-declare-war-on-criticism","changefreq":"weekly","video":[{"title":"2017:E82 - Game Critic DDOSed By Zelda Fans","description":"2017:E82 - Game Critic DDOSed By Zelda Fans","player_loc":"https://roosterteeth.com/embed/game-news-2017-zelda-fans-declare-war-on-criticism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebe34f2a-6013-42bc-97ce-c2bf6cbda5f5/sm/710924-1489439179818-jim_sterling_thumb.jpg","duration":358,"publication_date":"2017-03-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-scorpio-leaks-ghost-recon-beats-horizon-avatar-delayed-again","changefreq":"weekly","video":[{"title":"2017:E49 - MORE Scorpio Leaks + Ghost Recon BEATS Horizon + Avatar Delayed AGAIN","description":"2017:E49 - MORE Scorpio Leaks + Ghost Recon BEATS Horizon + Avatar Delayed AGAIN","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-scorpio-leaks-ghost-recon-beats-horizon-avatar-delayed-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/116fbf46-dee6-4c27-aa17-d7cbe74463cf/sm/710924-1489434014760-avatar_roundup.jpg","duration":462,"publication_date":"2017-03-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-what-amiibo-do-in-breath-of-the-wild","changefreq":"weekly","video":[{"title":"2017:E81 - What Amiibo do in Breath of the Wild!","description":"2017:E81 - What Amiibo do in Breath of the Wild!","player_loc":"https://roosterteeth.com/embed/game-news-2017-what-amiibo-do-in-breath-of-the-wild","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa062ddc-3c8a-4683-933e-16eb2b44695c/sm/710924-1489186569209-amiibo_thumb.jpg","duration":379,"publication_date":"2017-03-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-what-killed-the-sega-dreamcast","changefreq":"weekly","video":[{"title":"2017:E80 - What killed the Sega Dreamcast?","description":"2017:E80 - What killed the Sega Dreamcast?","player_loc":"https://roosterteeth.com/embed/game-news-2017-what-killed-the-sega-dreamcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b39965ac-2f8c-49c3-952a-c2a997bdd712/sm/710924-1489186576049-dreamcast_template.jpg","duration":949,"publication_date":"2017-03-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-project-scorpio-improvements-leaked","changefreq":"weekly","video":[{"title":"2017:E13 - Project Scorpio Improvements LEAKED","description":"2017:E13 - Project Scorpio Improvements LEAKED","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-project-scorpio-improvements-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ecb0462-7192-4030-9a13-842a2ba4a548/sm/710924-1489180948210-thumbnail.jpg","duration":408,"publication_date":"2017-03-10T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-smash-bros-for-switch-horizon-not-maxing-ps4-pro-video-games-d-o-n-t-cause-violence","changefreq":"weekly","video":[{"title":"2017:E48 - Smash Bros for Switch? + Horizon NOT Maxing PS4 Pro + Video Games DON'T Cause Violence","description":"2017:E48 - Smash Bros for Switch? + Horizon NOT Maxing PS4 Pro + Video Games DON'T Cause Violence","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-smash-bros-for-switch-horizon-not-maxing-ps4-pro-video-games-d-o-n-t-cause-violence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9a47749-5554-4395-b567-497e0fe3362c/sm/710924-1489173958116-super_smash_roundup.jpg","duration":514,"publication_date":"2017-03-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-conan-exiles-censored-on-console","changefreq":"weekly","video":[{"title":"2017:E78 - Conan Exiles CENSORED on Console!","description":"Conan Exiles is known for, well... dong sliders. It's one of the features that set the game apart when it released on PC via Steam Early Access. But the game's headed for consoles and now it's ditching the dongs in favor of family friendliness.","player_loc":"https://roosterteeth.com/embed/game-news-2017-conan-exiles-censored-on-console","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48cdd4a3-6e6a-4e02-b6b2-dcd9afa8b989/sm/24363-1489101944333-thumbnail.jpg","duration":354,"publication_date":"2017-03-09T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-games-cost-m-o-r-e-no-dong-sliders-for-console-rated-r-dc-movies","changefreq":"weekly","video":[{"title":"2017:E47 - Switch Games Cost MORE? + Mass Effect Spoilers in the Wild + DC Movies Going MORE MATURE","description":"Nintendo Switch games costing more than other platforms? Major spoilers for Mass Effect: Andromeda are out in the wild thanks the the achievement/trophy lists, so beware. Warner Bros. likes the success of Deadpool and Logan so much they want DC movies to be even more mature and dark and stuff! Plus, Ghost Recon Wildlands is doing great (on pc, at least), Shadow of War might bring your Shadow of Mordor nemesis into the new game, Destiny's last major live event has been detailed, Disney shareholders got to see sneak peeks of The Last Jedi, and Wikileaks has exposed just  how vulnerable your electronics are to the CIA.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-games-cost-m-o-r-e-no-dong-sliders-for-console-rated-r-dc-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/736f1573-5fbf-4d4c-bb48-3f2272285c8e/sm/24363-1489095535729-thumbnail.jpg","duration":620,"publication_date":"2017-03-09T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-have-they-finally-fixed-no-man-s-sky","changefreq":"weekly","video":[{"title":"2017:E77 - No Man's Sky HUGE UPDATE! Does it Deliver?","description":"Another huge update is out for No Man's Sky, adding new modes and new features. This is the second major update for the game since its launch, and indicates that the developers are still working and adding promised features.","player_loc":"https://roosterteeth.com/embed/game-news-2017-have-they-finally-fixed-no-man-s-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ed6fda5-5151-49e3-96da-014da58fa99d/sm/24363-1489092881002-thumbnail.jpg","duration":372,"publication_date":"2017-03-09T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-rips-players-off-again","changefreq":"weekly","video":[{"title":"2017:E75 - Modern Warfare Remastered RIP-OFF!","description":"Last year Call of Duty: Infinite Warfare bolstered its sales by making itself a required purchase to access Call of Duty: Modern Warfare Remastered. Now Activision is doubling down by charging fans of the popular game MORE for additional content than it cost in the original game.","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-rips-players-off-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ece8e29b-59e0-4a09-8b73-8a438200e1b7/sm/24363-1489019809318-thumbnail.jpg","duration":405,"publication_date":"2017-03-09T03:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-surprise-king-is-being-a-trademark-troll-again","changefreq":"weekly","video":[{"title":"2017:E76 - SUPER TRADEMARK TROLLS! Candy Crush Dev Strikes Again","description":"Well this is just, uh... a word no one can use anymore. The makers of Candy Crush Saga, who have famously pursued trademarks for the words Candy and Saga in the past, are stepping it up once again by registering a trademark for the word SUPER in video games. This is going to end well.","player_loc":"https://roosterteeth.com/embed/game-news-2017-surprise-king-is-being-a-trademark-troll-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f62f2fd2-83cc-409f-a350-63844488f4df/sm/24363-1489014219248-thumbnail.jpg","duration":308,"publication_date":"2017-03-09T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ghost-recon-b-r-o-k-e-n-khal-drogo-in-just-cause-movie-americans-don-t-bang-enough","changefreq":"weekly","video":[{"title":"2017:E46 - Ghost Recon BROKEN? + Khal Drogo Joins Just Cause Movie + Americans Don't Bang Enough","description":"Ghost Recon: Wildlands is out and Ubisoft's list of issues to fix is already pretty long. Khal Drogo actor Jason Momoa has signed on to star in a movie adaptation of the Just Cause video game. Survey says Americans are having sex less than they used to. This is a disaster. Plus, Naughty Dog really is done with Uncharted, Nintendo says streaming video will come to Switch, the Switch has one of the best reviewed (on average) launch lineups ever, indie developers are happy with Nintendo, the Metal Gear Solid movie ponders breaking the fourth wall, new Marvel Netflix series Iron Fist might be a dud, Nintendo's won a lawsuit against flash cart distributors, and that Batman Arkham Insurgency game is 100% officially fake.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ghost-recon-b-r-o-k-e-n-khal-drogo-in-just-cause-movie-americans-don-t-bang-enough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c037540-fd94-453e-b0b5-9b219517f470/sm/24363-1489004073139-thumbnail.jpg","duration":605,"publication_date":"2017-03-08T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-user-review-backlash","changefreq":"weekly","video":[{"title":"2017:E74 - Zelda: Breath of the Wild Accused of PAID REVIEWS and Brigaded","description":"The Legend of Zelda: Breath of the Wild has received unprecedented acclaim from video game critics, with an aggregate score that puts it as one of the best games ever made. Gamers who disagree are now brigading review sites like Metacritic with accusations that the reviews are paid for by Nintendo.","player_loc":"https://roosterteeth.com/embed/game-news-2017-user-review-backlash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a435fc3-8a9b-457d-a819-cf7acb93dec8/sm/24363-1488932196930-thumbnail.jpg","duration":525,"publication_date":"2017-03-08T00:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-the-switch-beating-the-wii","changefreq":"weekly","video":[{"title":"2017:E73 - Nintendo Switch MOST SUCCESSFUL LAUNCH EVER for Nintendo?","description":"Nintendo Switch hasn't even been out a week, but numbers coming in look pretty promising for Nintendo's new hybrid console. It's on track to leave Wii U in the dust, thankfully, and is even outperforming Wii launch numbers in most regions.","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-the-switch-beating-the-wii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77fb3235-a44c-4205-8fd0-cdfc3d24e98c/sm/24363-1488928587367-thumbnail.jpg","duration":413,"publication_date":"2017-03-07T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ps5-next-y-e-a-r-no-man-s-sky-update-this-week-for-honor-loses-half-its-players","changefreq":"weekly","video":[{"title":"2017:E45 - Analyst Predicts PS5 NEXT YEAR + No Man's Sky Update Incoming + For Honor Players MISSING","description":"Analysts predict Sony's PlayStation 5 could arrive as early as next year, even though the PS4 is still selling like crazy. Another update is coming for No Man's Sky to improve planetory exploration. For Honor is already missing half its players thanks to server downtime. Plus, Mass Effect Andromeda is getting free multiplayer content post-launch, Nier Automata is getting rave reviews, Dean Hall's Ion MMO is cancelled-ish, Final Fantasy VII is dramatically changing combat in the remake, Destiny's teasing its final content update, Overwatch will be getting more story, and the parking ticket chatbot has moved on to assisting refugees.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ps5-next-y-e-a-r-no-man-s-sky-update-this-week-for-honor-loses-half-its-players","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c114e185-8af2-4767-8f66-ba8403278d59/sm/24363-1488917492769-thumbnail.jpg","duration":545,"publication_date":"2017-03-07T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-ghost-recon-wildlands-is-it-good","changefreq":"weekly","video":[{"title":"2017:E72 - Ghost Recon Wildlands: IS IT GOOD?","description":"Ghost Recon: Wildlands is here tomorrow. Reviews are trickling in, so we can finally answer the biggest question: IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/game-news-2017-ghost-recon-wildlands-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8755e8b-4b9f-488d-8648-03515d56b474/sm/24363-1488845516737-thumbnail.jpg","duration":456,"publication_date":"2017-03-07T02:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-retailers-are-happy-with-switch-but-some-people-are-having-hardware-probs","changefreq":"weekly","video":[{"title":"2017:E71 - Nintendo Switch Launch: SUCCESS OR FAILURE?","description":"Nintendo Switch is officially out and we're starting to get sales numbers... and reports of hardware problems. Let's check out the best and worst of the system's launch.","player_loc":"https://roosterteeth.com/embed/game-news-2017-retailers-are-happy-with-switch-but-some-people-are-having-hardware-probs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3820cdcc-bbed-4db8-aeb0-cd3ff9a8fb64/sm/24363-1488845365831-thumbnail.jpg","duration":405,"publication_date":"2017-03-07T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-horizon-beats-zelda-logan-breaking-records-lo-l-wins-lawsuit","changefreq":"weekly","video":[{"title":"2017:E43 - Horizon BEATS Zelda + Give Hamill an Oscar! + LoL Wins $10 Million Lawsuit ","description":"Horizon: Zero Dawn has taken the top slot in sales over The Legend of Zelda: Breath of the Wild. JJ Abrams will be mad if Mark Hamill doesn't get an Oscar for Star Wars: Episode 8. Riot Games wins a $10 million lawsuit against a botting website. Plus, Xbox Game Pass might get games on launch, PS4 Pro's Boost Mode might be coming tomorrow, Conan Exiles has saved its developer, what you get early with EA Access for Mass Effect Andromeda has been detailed, Logan set records over the weekend, Deadpool 2 has its first teaser, and Beauty and the Beast reviews are in.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-horizon-beats-zelda-logan-breaking-records-lo-l-wins-lawsuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e1e172e-c9ae-4cf3-a3b5-ed038eb6a093/sm/24363-1488841350609-thumbnail.jpg","duration":605,"publication_date":"2017-03-06T23:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-joy-cons-f-i-x-e-d-bastion-nerfed-ghost-recon-international-incident","changefreq":"weekly","video":[{"title":"2017:E42 - Switch Joy Cons FIXED? + Pokemon Go Trading Teased + Ghost Recon International Incident","description":"Happy Switchmas! So let's start with Switch news. An update has improved the joy con sync issued. Niantic has teased trading for Pokemon Go. Bolivia has lodged a complain with France over the depiction of the country in Ghost Recon: Wildlands. Plus, reviews for Switch launch titles, a PS4 price drop in Europe, Hello Games wants to help indies, Rogue One star Donnie Yen has joined the Sleeping Dogs movie, Bastion's getting nerfed already, Logan is expected to do well in theaters, and AMD's announced Ryzen to take on Intel.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-joy-cons-f-i-x-e-d-bastion-nerfed-ghost-recon-international-incident","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6d5b2d2-ae17-4a8f-9b6a-43d32ed1f0eb/sm/24363-1488590532193-thumbnail.jpg","duration":592,"publication_date":"2017-03-04T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-is-it-good","changefreq":"weekly","video":[{"title":"2017:E70 - Nintendo Switch: IS IT GOOD?","description":"You've heard what WE have to say (hopefully), but let's see what professional critics think of the Nintendo Switch hardware as they answer the question... IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0df29ce-22b4-496e-9b53-0b953b324701/sm/24363-1488569781086-thumbnail.jpg","duration":565,"publication_date":"2017-03-03T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-gets-friend-codes-mass-effect-beta-canceled-no-man-s-sky-wins-award","changefreq":"weekly","video":[{"title":"2017:E41 - 5 Million Switches This Year? + Mass Effect Beta Canceled + No Man's Sky Wins Innovation Award","description":"Analysts expect Nintendo Switch to sell 5 million units in 2017. Bioware has canceled the Mass Effect multiplayer \"tech test\" beta without explanation. No Man's Sky won an award at GDC. Plus, Square-Enix teases Final Fantasy XV for PC (again), we may see Xbox Scorpio revealed before E3, a new hero joins Overwatch, Oculus gets a price drop, and people are licking Nintendo Switch cartridges.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-gets-friend-codes-mass-effect-beta-canceled-no-man-s-sky-wins-award","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e89a56-0edb-4f40-b50f-0bc18e6255f5/sm/710924-1488511863610-thumbnail.jpg","duration":543,"publication_date":"2017-03-03T01:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-zelda-breath-of-the-wild-best-reviewed-game-ever","changefreq":"weekly","video":[{"title":"2017:E69 - Zelda: Breath of the Wild is the BEST GAME EVER?","description":"The Legend of Zelda: Breath of the Wild is Nintendo Switch's pillar launch title. It's also in the running for one of the best games of all time. Period. That's it. That's what the reviews say.","player_loc":"https://roosterteeth.com/embed/game-news-2017-zelda-breath-of-the-wild-best-reviewed-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67edd7d6-b059-4a2f-a706-2f293cd31b34/sm/24363-1488493138840-thumbnail.jpg","duration":695,"publication_date":"2017-03-02T22:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-battlefront-2-turning-into-ultimate-team","changefreq":"weekly","video":[{"title":"2017:E67 - Star Wars BATTLEFRONT 2 Adding Ultimate Team Microtransactions?","description":"Let's be real. FIFA Ultimate Team micro-transactions make a LOT of money for EA. So now they want to add their money-making machine to titles like Battlefield and even Star Wars: Battlefront.","player_loc":"https://roosterteeth.com/embed/game-news-2017-battlefront-2-turning-into-ultimate-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c25b59-4925-4aab-8824-9948c5fec275/sm/24363-1488484698893-bf2_microtransactions.jpg","duration":475,"publication_date":"2017-03-02T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-more-perfect-zelda-reviews-gtx-1080-ti-announced-yandere-dev-gets-help","changefreq":"weekly","video":[{"title":"2017:E40 - Zelda: Breath of the Wild NEAR PERFECT? + GTX 1080TI Revealed + YouTube TV Takes on Cable","description":"Early reviews all peg The Legend of Zelda: Breath of the Wild as being a near-perfect game. Nvidia has unveiled their new monster of a graphics card. YouTube is taking on cable television with their own service. Plus, Nintendo Switch's eShop detailed, Ubisoft working on a new Avatar game, Pokemon Go's hit another insane milestone of success, Amazon broke the internet, Lucasfilm has shut down a fan remake of a classic Indiana Jones game, Guardians of the Galaxy Vol 2 and Alien: Covenant both have crazy new trailers, and the Yandere Simulator developer's got some new help to finish the game.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-more-perfect-zelda-reviews-gtx-1080-ti-announced-yandere-dev-gets-help","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0c5da34-dc5a-4c8b-80f3-b9cc01ed9f00/sm/24363-1488416388847-mar_1_roundup.jpg","duration":615,"publication_date":"2017-03-02T00:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-will-xbox-game-pass-kill-gamestop","changefreq":"weekly","video":[{"title":"2017:E65 - GameStop CRASHING Over Subscriptions?","description":"GameStop's stock is crashing in the wake of Xbox's Game Pass announcement, with investors worried that the growth of subscription services will hit the brick-and-mortar retailer where it counts: in their used game sales.","player_loc":"https://roosterteeth.com/embed/game-news-2017-will-xbox-game-pass-kill-gamestop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecada424-a66c-45ed-98ee-15740781a0c5/sm/24363-1488402861917-thumbnail.jpg","duration":450,"publication_date":"2017-03-01T21:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-switch-buy-wait-or-skip","changefreq":"weekly","video":[{"title":"2017:E64 - Nintendo Switch: BUY? WAIT? SKIP? OUR VERDICTS (Couch Chat)","description":"No, this isn't The Patch, but we wanted to talk anyway.Nintendo Switch arrives on Friday. Since Nintendo sent The Know an early console to test, we've had a week to put the hardware through its paces and see if we like what it has to offer.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-switch-buy-wait-or-skip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9735b207-f36e-4118-b5bc-5c6d395c9bcc/sm/24363-1488348181183-switch_review_thumb.jpg","duration":1409,"publication_date":"2017-03-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-would-you-pay-10-a-month-for-all-the-xbox-games-you-want","changefreq":"weekly","video":[{"title":"2017:E62 - Xbox Game Pass Destroys USED GAMES? New Subscription Service!","description":"Microsoft is taking on the used games business and trying to convince gamers that Xbox One is worth the investment! How? By launching their own Netflix-style subscription service offering 100+ games for $10 per month!","player_loc":"https://roosterteeth.com/embed/game-news-2017-would-you-pay-10-a-month-for-all-the-xbox-games-you-want","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/920c7cef-2b4b-4716-942f-86fe8f104be7/sm/24363-1488329398289-thumbnail.jpg","duration":458,"publication_date":"2017-03-01T00:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-breath-of-the-wild-pirated-already","changefreq":"weekly","video":[{"title":"2017:E63 - Zelda: Breath of the Wild ALREADY PIRATED!","description":"The Legend of Zelda: Breath of the Wild comes out this week, but pirates have it way ahead of its release, thanks to broken street dates and sneaky game crackers.","player_loc":"https://roosterteeth.com/embed/game-news-2017-breath-of-the-wild-pirated-already","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/431e5870-5366-4498-9181-97040cf8abe0/sm/24363-1488328659714-thumbnail.jpg","duration":414,"publication_date":"2017-03-01T00:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-death-stranding-confusing-ark-modders-paid-4-k-per-month-switch-kickstand-fail","changefreq":"weekly","video":[{"title":"2017:E39 - No One Gets Death Stranding! + Modders Make $4K/Month + Moon Tourism Kicks Off","description":"Confused by Death Stranding? Don't worry, not even the actors understand it. Modders for Ark: Survival Evolved are now making $4K/month from the developers, if they can earn it. And tourists can now take space ships around the moon. That's a thing. Plus, it turns out Mass Effect: Andromeda ISN'T porn after all (sadly), Nintendo Switch has announced 60+ indie games for release on Nintendo Switch in 2017, Torment: Tides of Numenera is out and receiving critical acclaim, Epic wants to become its own publisher again, it turns out the Mario theme actually has official lyrics, YouTuber viewers watch 1 billion hours of content every day, and CNET's getting some backlash over a Nintendo Switch video about its kickstand.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-death-stranding-confusing-ark-modders-paid-4-k-per-month-switch-kickstand-fail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3195b9ba-a0a4-47b6-a37d-8eb4de0a1e73/sm/24363-1488325771009-thumbnail.jpg","duration":600,"publication_date":"2017-02-28T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-console-makers-fighting-repair-laws","changefreq":"weekly","video":[{"title":"2017:E61 - Console Makers FIGHTING Repair Laws","description":"Lawmakers are introducing legislation that would require hardware manufacturers to not only ALLOW self-repair of electronics, but to provide hardware and manuals. And console manufacturers are fighting it tooth and nail.","player_loc":"https://roosterteeth.com/embed/game-news-2017-console-makers-fighting-repair-laws","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c4771fb-a3c9-4c16-b88b-592327eeea31/sm/24363-1488252391425-repair_laws_thumbnail.jpg","duration":408,"publication_date":"2017-02-28T03:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-truth-about-nintendo-switch-battery-life-and-how-to-get-the-most-out-of-it","changefreq":"weekly","video":[{"title":"2017:E60 - Nintendo Switch BATTERY LIFE TESTED (and how to get the most out of it)!","description":"One of the biggest worries about Nintendo Switch is whether the battery life will last long enough for proper play sessions. We give it a thorough test to see how long Zelda can last, how long it takes to charge, and how you can extend its life while you're on the go.","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-truth-about-nintendo-switch-battery-life-and-how-to-get-the-most-out-of-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caadc2ed-cff5-4dff-953f-dee70649bc65/sm/24363-1488243938538-thumbnail.jpg","duration":584,"publication_date":"2017-02-28T00:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2017-halo-wars-2","changefreq":"weekly","video":[{"title":"2017:E8 - Get to Know... HALO WARS 2 Full Gameplay Stream","description":"Halo Wars 2 is out! Want to get a look at the gameplay and modes before you decide whether it's for you? We've got you covered.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2017-halo-wars-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a943942-10f5-4726-92d7-1e6685fce209/sm/24363-1488137938999-gtk_halo_wars_2.jpg","duration":5878,"publication_date":"2017-02-26T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-horizon-zero-dawn","changefreq":"weekly","video":[{"title":"2017:E59 - Know Before You Go... HORIZON: ZERO DAWN","description":"Horizon: Zero Dawn is the ambitious new title from Guerrilla Games, and it launches on PS4 this week. Curious to know how giant robots mix with bow and arrow? Here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-horizon-zero-dawn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed69ce50-c48c-4298-bfdc-0d5e3f558528/sm/24363-1488067175313-kbyg_horizon_zero_dawn_thumbnail.jpg","duration":330,"publication_date":"2017-02-25T23:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-does-the-switch-have-a-big-joycon-problem","changefreq":"weekly","video":[{"title":"2017:E57 - Nintendo Switch Has a HARDWARE PROBLEM?","description":"Now that critic has their hands on Nintendo Switch, some are reporting a hardware issue with the left joy-con desyncing. How serious is it? Let's have a look.\n\nUPDATE: It appears the desync issue is specifically related to water (and fleshbags made mostly of water) hindering the signal from the joy-con to the TV. Still an issue, but if you work around it by being careful, you can.","player_loc":"https://roosterteeth.com/embed/game-news-2017-does-the-switch-have-a-big-joycon-problem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ab7f0a5-dda8-4418-801e-f06727c901ad/sm/24363-1488047049854-switch_joycon_issue_thumb.jpg","duration":315,"publication_date":"2017-02-25T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-next-arkham-game-l-e-a-k-e-d-well","changefreq":"weekly","video":[{"title":"2017:E58 - BATMAN: ARKHAM INSURGENCY Leaked?! slow down there","description":"A firehose-sized leak has erupted, with tons of details about an unannounced Batman Arkham game called Insurgency. The leak makes some compelling points, but slow down before you go all in on this one. There are plenty of reasons to be skeptical.","player_loc":"https://roosterteeth.com/embed/game-news-2017-next-arkham-game-l-e-a-k-e-d-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caa131b9-54a9-49ae-92b2-53f88c73eec8/sm/24363-1487991030951-batman_arkham_insurgeny_thumbnail.jpg","duration":343,"publication_date":"2017-02-25T02:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-s-e-u-m-speedrunners-from-hell-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E7 - SEUM: Speedrunners from Hell Gameplay","description":"I brought you a treat. It's 45 minutes of Craig lamenting the death of Nintendo Power on December 11th, 2012.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-s-e-u-m-speedrunners-from-hell-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9a6756b-4aed-4fb4-81d1-f264aa1f7c1a/sm/1533704-1487288108282-Speedrunner_Fullhaus_Thumbnail.jpg","duration":2692,"publication_date":"2017-02-18T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-agun2","changefreq":"weekly","video":[{"title":"2017:E46 - THE SPY WHO PRANKED ME - Alekhine's Gun Gameplay","description":"Ashton Kutcher, the manic, crooked-ass hat wearing host of \"Punk'd\" recently spoke before congress to address the horrors of modern slavery. Ashton Kutcher. Yeah, the guy from that \"Ranch\" show nobody is watching. Of course Wilmer was there. Somebody has to sweep up at the end of the night.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-agun2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/292442a7-b392-4dac-916f-cdeb4537f87f/sm/2371242-1487270041957-FH_Thumb_14_copy_30.jpg","duration":920,"publication_date":"2017-02-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmwick","changefreq":"weekly","video":[{"title":"2017:E6 - JOHN WICK 2 is a FAILURE? (spoilers) - Movie Podcast","description":"This movie podcast is sponsored by Mack Weldon. Go to https://www.mackweldon.com  and get 20% off using promo code “filmhaus”.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdam and the gang break down John Wick:Chapter 2, the difficulties of separating horrible people from their art, and the smoldering sh*t-pile that is the DC cinematic universe.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmwick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0018ef8d-8e6b-43e2-bc12-53a308461a5f/sm/2371242-1487366034059-FH_Thumb_14_copy_33.jpg","duration":2184,"publication_date":"2017-02-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-speedhell","changefreq":"weekly","video":[{"title":"2017:E44 - COWORKERS FROM HELL - SEUM: Speedrunners from Hell Gameplay","description":"\"Hey, Bro! You gotta go to Ozzfest this year! I hear C'thulu's Ichor is getting back together and opening for Shallow Throat!\"\"F*ck that, dude! Pubik's Cube and Climax Factory are gonna form a super group and jam with the bassist from Toddler Tribunal!\"\"Nice! It's too bad Milked Mothers are in rehab but I heard that Untidy Sepulcher grabbed their spot!\"\"Brutal!\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/craigskitz\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-speedhell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efafd7fc-ece8-466b-8bec-a367985763fe/sm/2371242-1487181496495-FH_Thumb_14_copy_27.jpg","duration":1127,"publication_date":"2017-02-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-58","changefreq":"weekly","video":[{"title":"2017:E7 - WE ARE CUCKLORDS? - Funhaus Comments #58","description":"The good news: Elyse's impressions are back!The bad news: She may be dead from whooping cough by the time you read this.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70ed808f-356e-4045-b981-c523cc68e16d/sm/2371242-1487266715609-FH_Thumb_Template58.jpg","duration":555,"publication_date":"2017-02-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astro3","changefreq":"weekly","video":[{"title":"2017:E43 - SPACE MADNESS! - Astroneer Gameplay Part 3","description":"Even Stanley Kubrick couldn't have envisioned worlds this beautiful and complex when he helped the Illuminati and the Bilderberg Group fake the moon landings back in the 60's. Bravo, Astroneer developers!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astro3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6daf609-525a-4f2a-9f5e-889c9e547899/sm/2371242-1487180656255-FH_Thumb_14_copy_26.jpg","duration":1431,"publication_date":"2017-02-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaslowderp","changefreq":"weekly","video":[{"title":"2017:E42 - THE SLOW AND THE DERPY - GTA 5 Gameplay","description":"Thank you, \"Man With Giant Spoiler on the Back of his Pickup Truck\" for saving me the trouble of having to actually meet you before I start hating you.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaslowderp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5ca37d1-95cc-44ce-bfeb-d89f308e48d9/sm/2371242-1487117272788-FH_Thumb_14_copy_23.jpg","duration":851,"publication_date":"2017-02-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtahigh","changefreq":"weekly","video":[{"title":"2017:E41 - DRIVING HIGH - GTA 5 Gameplay","description":"Until I was about fourteen, I thought that the only use for surgical clamps was to hold the last little soggy bit of a joint while you were driving. Thanks again, Mom and Dad!\n\n\n\n\n\n\n\n\n\n\n\n\n\nBill & Ted's Excellent Race:>https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/j00lG_RMUkCtxrAZbHrfTg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtahigh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57c40b99-fa77-49f5-bd97-4c3c58c67f25/sm/2371242-1487100357274-FH_Thumb_14_copy_24.jpg","duration":715,"publication_date":"2017-02-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-episode","changefreq":"weekly","video":[{"title":"2017:E109 - MADDEN CHAMPION RACIST? - Dude Soup Podcast #109","description":"Check out this week’s menu and get your first three meals free — with free shipping —by going to http://www.blueapron.com/soup\n\nAnd get 20% off your Mack Weldon order by going to http://www.mackweldon.com and use promo code \"soup\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis week the boys and Elyse catch us up on their trip to RTX Australia as well as:13:55 - Madden Bowl racism controversy24:25 - Video game money matches30:40 - Trash-talking in gaming36:35 - Trash-talking in sports46:26 - \"Hard Nettin'\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHard Nettin' Poll: http://www.strawpoll.me/12338460\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEA fines Madden Bowl Winner: http://www.polygon.com/2017/2/11/14582042/madden-bowl-chris-mcfarland-tweets-ea-sports\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf8114fe-2293-4d6b-b7b9-a3b134e558ec/sm/2371242-1487114010018-FH_Thumb_14_copy_25.jpg","duration":3315,"publication_date":"2017-02-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-dude-soup-post-show-109","changefreq":"weekly","video":[{"title":"2017:E109 - WE ARE A PROUD PEOPLE","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n>;https://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-dude-soup-post-show-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fd75235-5e08-4321-9fc7-dff62f2fc8ac/sm/2371242-1487035123609-postnoble.png","duration":3313,"publication_date":"2017-02-14T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh104","changefreq":"weekly","video":[{"title":"2017:E6 - WE MAKE A SITCOM? - Open Haus #104","description":"Open Haus is sponsored by Mack Weldon. If you're looking for smart design, premium fabrics and simple shopping, go to https://www.mackweldon.com/ and use code \"openhaus\" to get 20% off!\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDon't you all miss the glory days of sitcoms? With their laugh-tracks and wacky misunderstandings and people dating within their own race and women being hilariously threatened with physical violence. Simpler times.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90d479e0-b621-406b-b4c7-2b3a98215f15/sm/2371242-1486684269870-Openhaus_Thumbnail104.jpg","duration":646,"publication_date":"2017-02-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demonew-2","changefreq":"weekly","video":[{"title":"2017:E6 - C*CK BLOCKS - Demo Disk Gameplay","description":"In the gameplay video system, the people are represented by two separate yet equally important groups -- the personalities who play the games, and the incredibly hard-working, kind, handsome, surprisingly well-endowed, and sexually attentive production staff who edit the content. These are their stories.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demonew-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/441a9420-bd75-46ea-a5d5-9375fdce851d/sm/2371242-1486763979996-demothumb2.png","duration":1010,"publication_date":"2017-02-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-helloalpha3pt2","changefreq":"weekly","video":[{"title":"2017:E30 - JUMP SCARES - Hello Neighbor Gameplay","description":"Châu Belle explained that parkour is a \"type of freedom\" or \"kind of expression\"; that parkour is \"only a state of mind\" rather than a set of actions, and that it is about overcoming and adapting to mental and emotional obstacles as well as physical barriers. When asked if it was also a great way to crush French puss, he tilted his beret, twirled the ends of his mustache, and exclaimed: \"But of course!\" before speeding away on the back of his mistress' Vespa.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-helloalpha3pt2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fafd873-2f17-4386-8ff9-473d7bbe770e/sm/2371242-1486669111198-FH_Thumb_HelloNeighbor2_2.png","duration":865,"publication_date":"2017-02-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gmodspidey","changefreq":"weekly","video":[{"title":"2017:E40 - GREEN GOBLIN vs SPIDERMAN in GTA 5! Mod Gameplay!","description":"\"Alright boys, we've been charged with writing a real whiz-bang script for \"The Amazing Spider-Man 2\" but we need to avoid all the silliness of those Raimi movies.\"\"The villain can still get his powers from electric eels though, right Boss?\"\"Of course he can. Don't waste my time with stupid questions. Now, how's the giant robot rhinoceros suit scene coming?\"  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nScript Hook V & Native Trainer>https://www.gta5-mods.com/tools/script-hook-vScript Hook V Dot Net >https://www.gta5-mods.com/tools/scripthookv-netSimple Trainer>https://www.gta5-mods.com/scripts/simple-trainer-for-gtaGTA V Super Man Script Mod by JulioNIB: >http://gtaxscripting.blogspot.com/2016/10/wip-superman-script.htmlSuperman (Man of Steel) by Quechus13:>https://www.gta5-mods.com/player/superman-man-of-steelGeneral Zod from Man of Steel [Add-On Ped] by Meth0d:>https://www.gta5-mods.com/player/general-zod-from-man-of-steelHulk Script Mod>http://gtaxscripting.blogspot.com/2015/10/gta-v-pc-hulk-script-mod.html?utm_source=BP_recentGTA V - Ghost Rider mod by JulioNIB>http://gtaxscripting.blogspot.com/2016/08/gta-v-ghost-rider-mod-by-julionib.htmlIronmanV - Download and installation guide - Armors and script>http://gtaxscripting.blogspot.com/2015/08/ironmanv-installation-guide-armors-and.htmlGreen Goblin Mod by JulioNIB>http://gtaxscripting.blogspot.com/2015/04/green-goblin-mod.htmlJust Cause 2 Grappling Hook Mod by JulioNIB>http://gtaxscripting.blogspot.com/2015/05/gta-v-just-cause-2-grappling-hook-mod.htmlSpiderman Civil War [Add-On Ped] by Jbatez>https://www.gta5-mods.com/player/spiderman-civil-war-ped-add-on-jbatez\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gmodspidey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab17cd83-97d6-4124-986d-bac61640f38b/sm/2371242-1486665925219-FH_Thumb_GTA-Mod_GreenGoblin_Vs_Spider-Man.png","duration":584,"publication_date":"2017-02-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-battle-craig","changefreq":"weekly","video":[{"title":"2017:E39 - BUNKER? I HARDLY KNOW HER - Battlefield 1 Gameplay","description":"Dear Mrs. Skistimas,We regret to inform you that your son, Craig, recently perished during his tour on the Eastern Front. After ingesting a number of mushrooms off of the ground, he then proceeded to jump on several turtles before finally attempting to smash a brick overhang from beneath with his head.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/craigskitz\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-battle-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e22acc15-692c-4ef6-9c43-99dde35d44bb/sm/2371242-1486586887353-FH_Thumb_Battlefield_wGameAttack.png","duration":1195,"publication_date":"2017-02-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwe3","changefreq":"weekly","video":[{"title":"2017:E29 - ORGY OF VIOLENCE - WWE 2k17 Gameplay","description":"\"When it comes crashing down and it hurts insideYou gotta take a standIt don't hurt to hideIf you hurt my friends then you hurt my pride I gotta be a man I can't let it slide\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwe3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5559ca18-1c8d-47b1-862e-29bfb53a5d73/sm/2371242-1486585270696-FH_Thumb_14_copy_20.jpg","duration":1005,"publication_date":"2017-02-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-57","changefreq":"weekly","video":[{"title":"2017:E6 - WE PUNISH EACH OTHER? - Funhaus Comments #57","description":"Some pilots never learn to use the cyclic to counter pitch and roll during the transition onto the skids. The result is sliding around on the parking space, which is dangerous. Go out and practice your slope landings, both parallel to the hill, and facing uphill (watch your tailrotor!) and you'll be practicing the same elements required for landing on level ground.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eda5ba1c-d676-4d63-aa73-30b277e70005/sm/1533704-1486581366375-FH_Thumb_Template57.jpg","duration":557,"publication_date":"2017-02-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astro2","changefreq":"weekly","video":[{"title":"2017:E37 - DORK SIDE OF THE MOON - Astroneer Gameplay Part 2","description":"Hey stoners: Did you know that if you get really high and watch this video on mute with \"Dark Side of the Moon\" playing in the background absolutely nothing will match up in any interesting way? \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astro2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3dc5701-4487-418f-816f-4135c2357ef1/sm/2371242-1486580478373-Astroneer_2.png","duration":1508,"publication_date":"2017-02-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaupside","changefreq":"weekly","video":[{"title":"2017:E35 - FAIL A 1/4 MILE AT A TIME - GTA 5 Gameplay","description":"Apparently, during the filming of \"Fate of the Furious\" a piece of a plastic iceberg was dislodged by the wind and landed on a horse, leading it to be euthanized a short time later. When asked about the incident, Vin Diesel mumbled something about \"family\", chugged a NOS, then fled via one of those metal ball things from American Gladiators.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaupside","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/718347bf-8b48-4e33-8e17-1950c4e12676/sm/2371242-1486508959895-FH_Thumb_14_copy_19.jpg","duration":769,"publication_date":"2017-02-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-axis-football-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E6 - Axis Football Gameplay","description":"I was thinking of the description for this video while having a super bowel movement. Anyway, enjoy your uncut football good-times.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-axis-football-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b97194ba-3fab-42c8-a388-7e6dcf99bf54/sm/1533704-1486578323547-Axis_Football_Fullhaus_Thumbnail.jpg","duration":3470,"publication_date":"2017-02-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtamolotov","changefreq":"weekly","video":[{"title":"2017:E34 - QUADS AND COCKTAILS - GTA 5 Gameplay","description":"I'm not saying that everyone who owns a quad bike is a redneck who is secretly racist. Some of them are openly racist.JustkiddingpleasedontshootmehashtagMAGA!\n\n\n\n\n\n\n\n\n\nQuad Pompe: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/DrvbwAzQxkW4JIfoAdm7HQ#\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtamolotov","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0815253-a7f2-4344-b0ff-3f02f743a0a1/sm/2371242-1486505875736-FH_Thumb_14_copy_18.jpg","duration":658,"publication_date":"2017-02-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-forhonor2","changefreq":"weekly","video":[{"title":"2017:E38 - CHOPPING SPREE - For Honor Gameplay","description":"Click here to sign up for the For Honor Open Beta:>http://ubi.li/uzgbg\n\nThanks to Ubisoft for sponsoring this video!For Honor ESRB Rating: M for Mature\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJoin us, won't you? These multicultural hordes wont hack themselves to little sticky bits.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/brucegreene\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-forhonor2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64426cc1-2ca4-4c6c-9a9f-d38491aa847d/sm/2371242-1486494554250-FH_Thumb_ForHonor_Sponsor3.png","duration":1103,"publication_date":"2017-02-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup108","changefreq":"weekly","video":[{"title":"2017:E108 - Video Games: TOO SKINNY? - Dude Soup Podcast #108","description":"The gang is in Sydney this week but they filmed a special Dude Soup before they left in which they discuss:\n\n02:00 - Game Characters, representation, and body image.28:15 - Kojima's Death Stranding interview.48:10 - Meeting/banging your heroes. 1:00:30 - Nintendo Switch news\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: \n\n\n\n\n\n\n\n\n\n\n\nhttp://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5254a1e-3abc-41c1-b3a9-e3a318003135/sm/1533704-1486403165119-FH_Thumb_DudeSoup108_TooSkinny2.png","duration":4326,"publication_date":"2017-02-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow108","changefreq":"weekly","video":[{"title":"2017:E108 - WE ARE WEEABOOS","description":"Since we're all in Sydney, we spend this Post Show figuring out why anime make y'all crazy.","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b76bcc9-29e7-4925-806a-b43a0c279f46/sm/1533704-1486406260327-DS_PostShow_Template2717.jpg","duration":1905,"publication_date":"2017-02-07T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-oh103","changefreq":"weekly","video":[{"title":"2017:E5 - WE GET SUPERPOWERS? - Open Haus #103","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nI had Pogs. I played with Pogs. I still don't understand. What the hell was the point of Pogs?  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-oh103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2963c444-1b20-4a85-b75b-189dc60f71eb/sm/2371242-1486178227047-Openhaus_Thumbnail103_1.jpg","duration":743,"publication_date":"2017-02-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-f-ing-dory-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2017:E5 - F#@&ING DORY - Demo Disk Gameplay","description":"Rest assured, I'd give Dory a night she'd never forget.Will you excuse me for a moment?*(stands up, calmly pushes in chair, walks out of production trailer, pays homeless man to bludgeon him with a rusted pipe)*\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-f-ing-dory-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e58b393d-a387-4b9c-91d8-ad03c767c2d8/sm/2371242-1486177822180-FH_Thumb_Template5-1.jpg","duration":861,"publication_date":"2017-02-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-overblizz","changefreq":"weekly","video":[{"title":"2017:E33 - COCKS OF THE WALK - Overwatch Year of the Rooster Gameplay","description":"Watching grown men squeal while opening virtual boxes full of girl clothes is truly hilarious. That being said, I would pleasure half of you reading this for that new D.Va skin. Single file everybody! No need to push.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-overblizz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b52cb97-dd02-41c2-9a6b-c3a37c57c225/sm/2371242-1486147397455-FH_Thumb_14_copy_13.jpg","duration":830,"publication_date":"2017-02-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-superbowel","changefreq":"weekly","video":[{"title":"2017:E36 - SUPER BOWEL 51 - Axis Football Gameplay","description":"Oh boy, it's the big day! Can't wait to watch the Whositz Whatevers take on their bitter rivals the Irrelevant Whogivesashits on the frozen tundra of Some F*@#ing Place! \n\n>http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-superbowel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb59f168-5455-4402-8796-1d634103e2ca/sm/2371242-1486144228117-FH_Thumb_Axis_Football_LI.png","duration":912,"publication_date":"2017-02-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-resident-evil-7-vr-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E5 - Resident Evil 7 VR Gameplay","description":"Not every Spooky McSpookerton can make it into the final product, so enjoy this 90-minute romp through downtown Spooksville and maybe even West Spooksville.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-resident-evil-7-vr-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/950f9cd7-1016-4d60-9a55-b72476d281b3/sm/1533704-1486065428470-Fullhaus_Thumbnail_Resident_Evil_7.jpg","duration":5044,"publication_date":"2017-02-03T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-filmhausxxx","changefreq":"weekly","video":[{"title":"2017:E5 - BEST XXX EVER? - Movie Podcast","description":"This week the boys sit down to talk about \"XXX: Return of Xander Cage\" as well as the larger XXX-iverse, which is a thing apparently. Adam also plops down some IMDB trivia and brings us up to speed on the ever-worsening production of \"The Batman\".\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-filmhausxxx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb471ae3-24c9-483c-96e8-d77f6ef0ce17/sm/2371242-1486060870031-FH_Thumb_14_copy_17.jpg","duration":2039,"publication_date":"2017-02-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-residentvr1","changefreq":"weekly","video":[{"title":"2017:E32 - HILLBILLY HORROR! - Resident Evil 7 VR Gameplay","description":"To date, humanity has spent nearly $300,000,000 making live action \"Resident Evil\" movies. On purpose. Willingly.We suck.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/CraigSkitz\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-residentvr1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20e85957-19bf-467e-a3c7-c62ae7176242/sm/2371242-1486059621860-FH_Thumb_14_copy_15.jpg","duration":2743,"publication_date":"2017-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments56","changefreq":"weekly","video":[{"title":"2017:E5 - WE CAN'T FIND THE HOLE? - Funhaus Comments #56","description":"\"Alright, let's pop those pant off and kick this into gear!\"\"Wait. Did you file the RC-215 Pre-Coital Petition?\"\"No. I thought you said I needed a QT-301 with a Reverse Cowgirl Addendum!\"\"Uugghhh! That's your problem. you never listen to me.\"\"Fine, fine. I'll go to the notary and pick one up. Don't wriggle out of those ropes.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38e94669-58d9-4539-b3e0-2c2d77cd3697/sm/2371242-1485973192790-FH_Thumb_Template56_1.jpg","duration":600,"publication_date":"2017-02-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-emily2","changefreq":"weekly","video":[{"title":"2017:E28 - SKELETON CREW - Emily Wants to Play Gameplay Part 2","description":"\"I love Funhaus and all but I wish that they had more than one skeleton character that made horrible body part puns.\"Oh boy, have we got a treat for you!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-emily2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f737ed5-aefb-4133-b27f-7ffe866bc7d1/sm/2371242-1485971619264-FH_Thumb_14_copy_12.jpg","duration":1086,"publication_date":"2017-02-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaramps","changefreq":"weekly","video":[{"title":"2017:E27 - RAMP IT UP - GTA 5 Gameplay","description":"TruckNutz Inc. business plan: Steal cars, damage cars, fix cars, damage cars again, murder countless innocents, sell cars for meager profit, buy other cars.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaramps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97a95512-9de8-401f-9bcf-0d59d6eb1e6f/sm/2371242-1485811743806-FH_Thumb_14_copy_10.jpg","duration":1036,"publication_date":"2017-02-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta-sperm","changefreq":"weekly","video":[{"title":"2017:E31 - NEED FOR SEED - GTA 5 Gameplay","description":"I know we're not supposed to get political here, but personally I believe that each and every one of the tiny people crouching inside the heads of my sperm deserve a chance at a happy life.  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta-sperm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fedb1b9b-3c27-4c50-9b6f-cf9acfb01996/sm/2371242-1485908204769-FH_Thumb_14_copy_11.jpg","duration":705,"publication_date":"2017-02-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoup107","changefreq":"weekly","video":[{"title":"2017:E107 - Resident Evil 7: TOO SCARY? - Dude Soup Podcast #107","description":"To order 18 red roses for only $29.99, or upgrade to 24 red roses for just $10 more, go to http://www.1800Flowers.com/dudesoup And you can get Shari’s Berries starting at $19.99. Go to http://www.berries.com/ click on the microphone in the top right hand corner and type in “Dude Soup” \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe gang get a call from game designer Tim Schafer and discuss:6:00 - Pyschonauts and VR in gaming25:40 - Dude Soup Battle: Maskers vs Quicksanding 40:00 Resident Evil 7 and horror games \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoup107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b30fd2df-520c-4b68-979a-5b9b1627c7bd/sm/2371242-1485886730758-FH_Thumb_14_copy_14.jpg","duration":3638,"publication_date":"2017-01-31T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshow107","changefreq":"weekly","video":[{"title":"2017:E107 - WE ARE ALL NATURAL","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\n\n\n\n\n\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n\n\n>https://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshow107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c54999da-2c2a-46b5-a9b5-c6bd354ec072/sm/2371242-1485888607664-we_aere_perfect.png","duration":3177,"publication_date":"2017-01-31T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-open-haus","changefreq":"weekly","video":[{"title":"2017:E4 - WE DESTROY THE WORLD? - Open Haus #102","description":"Open Haus is sponsored by Shari's Berries! Just go to http://www.berries.com/ and use code \"Openhaus\" to get freshly dipped strawberries for ONLY $19.99!\n\n\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe state of our crumbling society reminds of a tale that ends with the destruction of the modern world. After he ate one too many Japanese-American fusion hot doggus, there was a poop explosion so intense that beings on worlds quadrillions of light years away could see and smell the destruction. Utter catastrophe, I say.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-open-haus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aa90cf4-85fa-4033-af14-b2ce64bcad92/sm/2371242-1485565026810-Openhaus_Thumbnail102.jpg","duration":687,"publication_date":"2017-01-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo-disk","changefreq":"weekly","video":[{"title":"2017:E4 - MONSTER TRUMP - Demo Disk Gameplay","description":"If Trump could get his handsies on some of this Rule 34, perhaps he'd open his eyes to the artistic talents that populate this country. Imagine the points he could score with the artsie folks if he plopped a saucy fellatio scene on the Oval Office wall.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo-disk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57d4b1bf-0b08-487b-bcc7-40ef34f783db/sm/2371242-1485570473932-FH_Thumb_14_copy_8.jpg","duration":866,"publication_date":"2017-01-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-worst-games-of-2016-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E4 - Worst Games of 2016 Gameplay","description":"Worf borf, I hope you don't expect Adam to be able change professions to something in the industrial sector. Here's an hour of him trying anyways, borf borf.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-worst-games-of-2016-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d42f223-99e0-4aa3-931c-c0ab8904c54e/sm/2371242-1485555771718-Worst_Games_Fullhaus_Thumbnail.jpg","duration":3934,"publication_date":"2017-01-29T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hello3-part1","changefreq":"weekly","video":[{"title":"2017:E26 - DING DONG DIE! - Hello Neighbor Gameplay","description":"Next week on \"The Young Lawrence Sonntag Chronicles\": Larr loses his key to the toner cage while a group of 8 year olds knock over a \"Wild Wild West\" DVD display and call him a queer.  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hello3-part1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c22ed224-70b1-4475-9f8d-eeb2354606f2/sm/1533704-1485544217060-FH_Thumb_14-Recovered_copy.jpg","duration":879,"publication_date":"2017-01-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-worst2","changefreq":"weekly","video":[{"title":"2017:E25 - WORST GAMES of 2016 Gameplay! Part 2!","description":"Bus Simulator 16! From the makers of Taxi Sim, School Driving 3D, American Truck Parking, AND Euro Truck Parking! God, I wish I was joking.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-worst2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99f84d27-274d-49c6-a1bd-e790f4a931a4/sm/2371242-1485465087735-FH_Thumb_14_copy_7.jpg","duration":992,"publication_date":"2017-01-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-best-of-december","changefreq":"weekly","video":[{"title":"2017:E21 - BEST OF STRIPPERS AND CELEBS - Best of Funhaus December 2016","description":"December of 2016 will forever be known as the month Funhaus invited an actual brown person to sit down and play with them. Put those medals away! We're just trying to be the change we want to see in the world.  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattpeake\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-best-of-december","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d5b6b6f-aa7a-415e-a063-c3ab374974b8/sm/2371242-1485461785417-December.jpg","duration":975,"publication_date":"2017-01-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtaharry","changefreq":"weekly","video":[{"title":"2017:E22 - HARRY POTTER vs HULK in GTA 5! Mod Gameplay!","description":"I imagine that every time Danielle Radcliffe climaxes he screams \"Engorgio expulso!\" then laughs for six straight minutes while his \"date\" collects her things. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nScript Hook V & Native Trainer>https://www.gta5-mods.com/tools/script-hook-vScript Hook V Dot Net >https://www.gta5-mods.com/tools/scripthookv-netSimple Trainer>https://www.gta5-mods.com/scripts/simple-trainer-for-gtaHulk Script Mod>http://gtaxscripting.blogspot.com/2015/10/gta-v-pc-hulk-script-mod.html?utm_source=BP_recentGTA V - Ghost Rider mod by JulioNIB>http://gtaxscripting.blogspot.com/2016/08/gta-v-ghost-rider-mod-by-julionib.htmlIronmanV - Download and installation guide - Armors and script>http://gtaxscripting.blogspot.com/2015/08/ironmanv-installation-guide-armors-and.htmlHarry Potter Character Package [Add-On Ped] by Z@gor>https://www.gta5-mods.com/player/harry-potter-add-on-pedNimbus 2016 (Harry Potter Broomstick) [Add-On / Replace] by Sg_Mods>https://www.gta5-mods.com/vehicles/nimbus-2016-harry-potter-broomstick-mod-by-sg_mods-add-on-replaceHarry Potter Wand by Meth0d >https://www.gta5-mods.com/weapons/harry-potter-wand\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtaharry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e44d293-2cc4-4326-8080-c42b4f19a737/sm/2371242-1485471003093-FH_Thumb_14_copy_4.jpg","duration":601,"publication_date":"2017-01-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments55","changefreq":"weekly","video":[{"title":"2017:E4 - WE LOVE PUNANI? - Funhaus Comments #55","description":"I just spent more time looking up how to properly spell \"punani\" than I ever spent actually touching it in high school.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05dcf348-7d83-48ce-a27a-601a4478a313/sm/2371242-1485456247548-FH_Thumb_Template55.jpg","duration":556,"publication_date":"2017-01-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-astroneer","changefreq":"weekly","video":[{"title":"2017:E20 - LOST IN SPACE - Astroneer Gameplay","description":"If someone ever pulls a gun on you and demands that you watch either \"Mission to Mars\" or \"Red Planet\" or they'll shoot you in the head, keep in mind that while your family will miss you terribly, they will be happy that you died with dignity.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-astroneer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e83e0e6d-43f7-4feb-866a-2e98fdb93f33/sm/2371242-1485394779557-FH_Thumb_14_copy_6.jpg","duration":1431,"publication_date":"2017-01-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gta2fun2haus","changefreq":"weekly","video":[{"title":"2017:E23 - PAUL WALKER SHOCKER - GTA 5 Gameplay","description":"Why did Paul Walker have to die so young when other, more egregious statutory rapists like Roman Polanski and Woody Allen get to live on?\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gta2fun2haus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cf01a62-dac7-46ad-9d7b-95e82d0617c0/sm/2371242-1485208032331-FH_Thumb_14_copy_2.jpg","duration":916,"publication_date":"2017-01-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabonk","changefreq":"weekly","video":[{"title":"2017:E24 - NEW BONK CITY - GTA 5 Gameplay","description":"I don't get this whole Vin Diesel thing. I can shave my head and strap on lifts and wear big furry jackets and mumble about family and randomly combine extreme sports and stuff too. Where are my movie franchises?\n\n\n\n\n\n\n\n\n\nDeath Match Arena -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/pDT6LVxXq0OPPmGqZaPx7Q#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabonk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daeb31d0-c58b-4fee-9868-c9df8ab3b624/sm/2371242-1485200408691-FH_Thumb_14_copy_3.jpg","duration":615,"publication_date":"2017-01-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude-soup-podcast-106","changefreq":"weekly","video":[{"title":"2017:E106 - Will ONLINE VIDEO Be CENSORED? - Dude Soup Podcast #106","description":"Check out this week’s menu and get your first three meals free — with free shipping —by going to http://www.blueapron.com/soup.\n\nOur sponsors at MVMT are going to give you 15% off your entire purchase. Go to http://www.mvmtwatches.com/dudesoup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday the gang veers briefly into the world of politics before discussing:08:30 - Censorship on online platforms34:00 - Sexual fetishes 42:30 - Horror movies and games51:50 - Final Fantasy and narratives in games\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude-soup-podcast-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91b5a479-4490-47a4-9b0a-b1aa8e4ab542/sm/2371242-1485301390597-FH_Thumb_14_copy_5.jpg","duration":3827,"publication_date":"2017-01-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-dude-soup-post-show-106","changefreq":"weekly","video":[{"title":"2017:E106 - WE ARE RESPECTFUL","description":"All the latest art and comments. Only for you super cool First Members!\n\n\n\n\n\n\n\n\n\nCheck out the Funhaus FanArt Book!\n\n\n\n\n\n\n\nhttps://issuu.com/fanhaus_book/docs/fanhausbookfinalissuu","player_loc":"https://roosterteeth.com/embed/fan-show-2017-dude-soup-post-show-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d886d28-bb6a-4a2d-b3fb-7faa94d6093c/sm/2371242-1485279480274-post106thumb.png","duration":3547,"publication_date":"2017-01-24T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-open101","changefreq":"weekly","video":[{"title":"2017:E3 - WE SURVIVE PRISON? - Open Haus #101","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nIf I ever get sent to prison I'm just gonna save everybody a lot of time and effort and knock out all of my teeth before I go in. First impressions are important.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-open101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d692343-a9df-49da-88eb-a83733b37515/sm/2371242-1484964492232-Openhaus_Thumbnail101.jpg","duration":604,"publication_date":"2017-01-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo100","changefreq":"weekly","video":[{"title":"2017:E3 - STAR WHORES - Demo Disk Gameplay","description":"Has anyone else noticed that in \"A New Hope\" everyone on Tatooine wears some kind of weird tribal desert karate robe but Aunt Beru is just dressed like a 1970's bank teller?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cea9e5dd-40c2-4869-af27-0ef59afe4dfc/sm/2371242-1484963854764-FH_Thumb_14_copy_1.jpg","duration":993,"publication_date":"2017-01-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-golfhaunted","changefreq":"weekly","video":[{"title":"2017:E19 - HAUNTED HOLES - Golf With Your Friends Gameplay","description":"I tried to find some amusing golf anecdotes for this but apparently I'm neither rich enough nor white enough to understand them. And I'm reeaaallly white. \n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-golfhaunted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8d22f1a-b466-4d27-bd8e-d81569439d5d/sm/2371242-1484866131323-FH_Thumb_14_copy_31.jpg","duration":970,"publication_date":"2017-01-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-summercar2","changefreq":"weekly","video":[{"title":"2017:E18 - DON'T DRINK AND DRIVE - My Summer Car Gameplay Part 2","description":"I'm not proud of this, but once I got caught kinda buzzed in a police checkpoint while driving my friends home after a night out. The only reason I was waved through is because the cop was repulsed by the sight of my brother getting a really aggressive over-the-pants handie in the backseat.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-summercar2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41e2a1e3-5e34-4918-a06d-28ca9e367e45/sm/2371242-1484862200331-FH_Thumb_14_copy_30.jpg","duration":1006,"publication_date":"2017-01-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode-2","changefreq":"weekly","video":[{"title":"2017:E17 - OVERWATCH VS THE CREATURES - Overwatch Gameplay","description":"No grudges. No cheating. No pro E-Sports team. No foolin' this time. Honest. Super-swear. We promise. It's really us playing them... or is it?!(hint: it is.)\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5625ce8-2e49-4679-a67f-c617922c57ea/sm/2371242-1484854154652-FH_Thumb_14_copy_15.jpg","duration":1209,"publication_date":"2017-01-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-wwe2","changefreq":"weekly","video":[{"title":"2017:E16 - REAL AMERICAN HEROES - WWE 2k17 Gameplay","description":"Fun Pro Wrestling Fact: It turns out you don't actually have to agree to eventually murder your entire family then off yourself in order to wrestle in the WWE. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-wwe2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd379d1c-ec58-4f6c-83e0-d6e819002886/sm/2371242-1484853567705-FH_Thumb_14_copy_28.jpg","duration":1058,"publication_date":"2017-01-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-emily-wants-to-play-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E3 - Emily Wants to Play Gameplay","description":"It's almost an hour of pizza-delivery-turned-spooksville, so you may need to microwave your slice.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-emily-wants-to-play-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e99bb301-6217-4607-a50f-fd415e538ea6/sm/1533704-1484790721205-Emily_Wants_to_Play_Fullhaus_Thumbnail.jpg","duration":3097,"publication_date":"2017-01-20T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments-54","changefreq":"weekly","video":[{"title":"2017:E3 - WE GET OUR PUMP ON? - Funhaus Comments #54","description":"Guys, please. Let's all just enjoy this new calm Lawrence. No need to pick it apart. Or wonder why. Or even talk about it at all. Ever again.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b09de720-2fdd-4fa1-9525-f4ad53b0785a/sm/2371242-1484851598507-FH_Thumb_Template54.jpg","duration":432,"publication_date":"2017-01-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-emily","changefreq":"weekly","video":[{"title":"2017:E20 - GHOST BLOWERS - Emily Wants to Play Gameplay","description":"Hey, have you all seen Haley Joel Osment lately? More like \"I EAT dead people\", right guys? Guys? No, wait! Come back! I'll do better, I promise!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-emily","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e32561a5-011b-4056-9765-f3abc5197e83/sm/2371242-1484789546995-FH_Thumb_14_copy_27.jpg","duration":822,"publication_date":"2017-01-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-rim-job-gta","changefreq":"weekly","video":[{"title":"2017:E15 - RIM JOBS - GTA 5 Gameplay","description":"\"He's been dead over three years!\", you said.\"There's no way Funhaus'll still be making fun of him!\", you said.Well, I guess we showed you.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-rim-job-gta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9da158b-2085-425f-8d0d-68f4adcfca86/sm/2371242-1484695674209-FH_Thumb_Template2.jpg","duration":1062,"publication_date":"2017-01-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtabowl","changefreq":"weekly","video":[{"title":"2017:E14 - WIN A (crappy) PRIZE - GTA 5 Gameplay","description":"Sadly, that vicious rumor you've heard about Jamie Lee Curtis is true. She did in fact appear in \"Beverly Hills Chihuahua\". Boom!*(high-fives self. goes back to uploading videos on YouTube for a living)* \n\n\n\n\n\n\n\n\n\nSky City Hot Wheels -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/PZRknZzRYUimQg6b-AfyOg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtabowl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f1cec48-49c2-413b-a8f3-5a6bc037bc73/sm/2371242-1484679910132-FH_Thumb_14_copy_26.jpg","duration":692,"publication_date":"2017-01-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dude-soup-podcast-105","changefreq":"weekly","video":[{"title":"2017:E105 - Nintendo Switch: TOO EXPENSIVE? - Dude Soup Podcast #105","description":"Check out this week’s menu and get your first three meals free — with free shipping —by going to http://www.blueapron.com/soup\n\nAnd go to http://www.mackweldon.com/ and get 20% off using promo code “soup”\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's all Switch all the time this week! Find out what the boys and Elyse think of it and why they're going to buy it anyway.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dude-soup-podcast-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40f1358e-5c00-4e3c-9f25-01466b1e5e9e/sm/2371242-1484359748651-FH_Thumb_14_copy_24.jpg","duration":3999,"publication_date":"2017-01-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-open100","changefreq":"weekly","video":[{"title":"2017:E2 - HOW TO GYM? - Open Haus #100","description":"Open Haus is sponsored by Blue Apron! Go to http://www.blueapron.com/openhaus and get your first 3 meals free with free shipping.\n\n\n\n\n\n\n\n\n\nAsk us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe medical advice given during this program is for informational purposes only. It is not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of your physician or other qualified health care provider with any questions you may have regarding a medical condition or treatment and before undertaking a new health care regimen, and never disregard professional medical advice or delay in seeking it because of something you heard these idiots say on an internet comedy show.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-open100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81735c15-1c3f-44c6-a4a3-c9b7dd01b58a/sm/2371242-1484359293837-Openhaus_Thumbnail100.jpg","duration":580,"publication_date":"2017-01-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demo99","changefreq":"weekly","video":[{"title":"2017:E2 - BORG BITS - Demo Disk Gameplay","description":"A cold, emotionless women who demands obedience and obliterates any shred of will and individuality? Sounds like my wife. Aaghaaahahahahahahahaaaaa! Oh man, that's good. Hit it out of the god-damn park that time. Wait'll I tell the fellas down at the lodge.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demo99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc4db824-3e3c-4c68-9a01-7c9de5cfad8f/sm/2371242-1484365444707-FH_Thumb_14_copy_25.jpg","duration":837,"publication_date":"2017-01-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-edf4","changefreq":"weekly","video":[{"title":"2017:E11 - ATTACK OF THE ANTS - Earth Defense Force 4.1 Gameplay","description":"\"Alright so our female character is a top-heavy, dainty, half-naked, flying anime cyborg. Hmmm... not quite Japanese enough.\"\"We could give her laser-pigtails.\"\"Perfect! Quick, send it to the art department. I have to go get belittled by a woman in a bear costume until I climax.\"   Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-edf4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf85d6f2-e434-4a78-9c58-78c012105408/sm/2371242-1484334144355-FH_Thumb_14_copy_14.jpg","duration":1020,"publication_date":"2017-01-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-worst2016","changefreq":"weekly","video":[{"title":"2017:E13 - WORST GAMES of 2016 Gameplay!","description":"\"Hey boss, you know how you said you wanted me to make a game as close to Hitman as possible without getting sued?\"\"Yeah. How's it coming?\"\"That depends. How good are our lawyers?\"\n\n(cue laugh-track)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-worst2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2107bdcc-d37f-42b0-90a1-26df4570452f/sm/2371242-1484327388201-FH_Thumb_14_copy_20.jpg","duration":1092,"publication_date":"2017-01-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-wwe-2-k17-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E2 - WWE 2K17 Gameplay","description":"I hope you have enough creamer cups crammed in your pockets to last through a full hour of sweaty man-on-man action.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-wwe-2-k17-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39d3ade5-7cfb-419d-8e94-6a0c4052c881/sm/1533704-1484246384431-WWE_2K17_Fullhaus_Thumbnail.jpg","duration":3872,"publication_date":"2017-01-14T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2017-assasin","changefreq":"weekly","video":[{"title":"2017:E4 - ASSASSIN'S CREED is a DISASTER? - Movie Podcast","description":"How do you spend over a half hour talking about a Michael Fassbender movie and not mention his glorious wiener even once? Answer me, dammit!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2017-assasin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b02d482-9fe5-46dd-b783-99ce7c13e2b7/sm/2371242-1484261713566-FH_Thumb_14_copy_21.jpg","duration":1971,"publication_date":"2017-01-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-camper","changefreq":"weekly","video":[{"title":"2017:E9 - TRAILER TRASH - Camper Jumper Simulator Gameplay","description":"As someone who spent much of his childhood living in a trailer park, I take offense at the title of this video that I came up with.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-camper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/491ffa25-260b-4265-9668-309faad5b52b/sm/2371242-1484264452932-FH_Thumb_14_copy_22.jpg","duration":646,"publication_date":"2017-01-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments53","changefreq":"weekly","video":[{"title":"2017:E2 - WELCOME TO BATTLEFIELD - Funhaus Comments #53","description":"Ugh boy. The \"Hard Elyse\" bit is getting more racist by the week. On the bright side, it has allowed Funhaus to exploit that new and exiting \"Alt-Right\" audience that everyone seems to be talking about.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea5403f7-1277-40ae-88a6-8ddbcddaf362/sm/2371242-1484257403615-FH_Thumb_Template53.jpg","duration":657,"publication_date":"2017-01-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-tattle","changefreq":"weekly","video":[{"title":"2017:E8 - FURRY NIGHTMARE - Tattletail Full Play Through","description":"Hey \"Furries\" out there, serious questions: How does one join your little movement? Can you buy a costume or do you have to make your own? How do you scrub out the stains?  I'm asking for a friend. You don't know him. Don't worry about his name. Never mind. I should just go.  \n\n\n\n\n\n\n\n\n\n\n\n\n\nThumbnail art courtesy of:>http://twitter.com/keltbhhttp://thestupidbutterfly.deviantart.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-tattle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d486ca10-effd-4ebe-a11a-7c2553ddb01a/sm/2371242-1484189213448-FH_Thumb_14_copy_19.jpg","duration":2272,"publication_date":"2017-01-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtalostbike","changefreq":"weekly","video":[{"title":"2017:E7 - FUNHAUS VS EVERYONE - GTA 5 Gameplay","description":"Thank you GTA 5 community for doing what you do best: consistently effing up our attempts to play GTA 5. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtalostbike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f06bf68d-cb1e-4faf-a68e-f2692947ba39/sm/2371242-1484091019725-FH_Thumb_14_copy_13.jpg","duration":654,"publication_date":"2017-01-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtapenis","changefreq":"weekly","video":[{"title":"2017:E12 - PENIS VS TONGUE - GTA 5 Gameplay","description":"To the few of you out there who are unfamiliar with this sport, rest assured, Bruce is about to explain it to you in graphic detail.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtapenis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60b02b18-1074-4a2d-b4d9-217872025cfb/sm/2371242-1484100379616-FH_Thumb_TemplatePenisVsTongue.jpg","duration":670,"publication_date":"2017-01-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2017-dudesoupnew","changefreq":"weekly","video":[{"title":"2017:E104 - MOST POPULAR PORN? - Dude Soup Podcast #104","description":"Thanks to Casper for supporting our channel.  Save $50 on a mattress at http://www.casper.com/dudesoup and enter \"dudesoup.\"And our sponsors at MVMT are going to give you 15% off your entire purchase. Go to http://www.mvmtwatches.com/dudesoup.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe boys and Elyse are back in the main studio this week discussing:02:00 - Popular porn search terms16:20 - Japanese sexuality28:45 - Carrie Fisher34:10 - Logistic of Overwatch sex36:30 - Gaming news48:40 - Nintendo Switch54:40 - Dude Soup Theater\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2017-dudesoupnew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1d77382-1cab-4401-ba68-02891bf83a8d/sm/2371242-1484013861945-FH_Thumb_14_copy_12.jpg","duration":3961,"publication_date":"2017-01-10T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2017-postshownew","changefreq":"weekly","video":[{"title":"2017:E1 - WE ARE HOLLOW","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2017-postshownew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b99a135b-51ec-4f93-8054-d119b409e8b2/sm/2371242-1484013799221-wearehollow.png","duration":3451,"publication_date":"2017-01-10T03:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2017-opennew","changefreq":"weekly","video":[{"title":"2017:E1 - WILL YOU MARRY ME? - Open Haus #99","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nWhen I first told my wife that I loved her she replied: \"... Really?\"When I asked her to marry me she replied: \"What is this? What's happening?\"It's been a magical nine years.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2017-opennew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0f4f72b-9c8b-4f6e-8f60-995dc2d7d9dc/sm/2371242-1483757924052-Openhaus99.jpg","duration":641,"publication_date":"2017-01-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2017-demonew","changefreq":"weekly","video":[{"title":"2017:E1 - VAMPIRES vs JETS - Demo Disk Gameplay","description":"Y'know, I've been silent long enough. Some things simply need to be said and so be it if I'm the only one with the balls to step up: That Kate Beckinsale is quite pretty.BOOM! Come at me, Internet!\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2017-demonew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b54c6a7d-c1c2-4aa4-8840-0781a4e5173b/sm/2371242-1483759257424-FH_Thumb_14_copy_9.jpg","duration":974,"publication_date":"2017-01-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-battlept2","changefreq":"weekly","video":[{"title":"2017:E5 - SALT SQUADRON - Battlefield 1 Gameplay","description":"\"Alright boys, I know it's been a rough, bloody campaign but we can do this! Jerry is holed up in that collapsed church and all we need to do is... wait. Where's Private Willems?\"\"Rage quit, Sir!\"\"... Again? And Corporal Sonntag?\"\"Angrily smashing his gun against that rock.\"\"Greene?\"\"In the latrine, Sir.\"\"... God, I hate this unit.\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-battlept2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67a74679-1b3e-4822-8107-498f40b3a407/sm/2371242-1483579519203-FH_Thumb_14_copy_5.jpg","duration":808,"publication_date":"2017-01-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-episode","changefreq":"weekly","video":[{"title":"2017:E6 - SUPERMAN vs HULK in GTA 5! Mod Gameplay!","description":"This entire video is like a package of those off-brand swap meet action figures come to life. All we need is is \"Robert Cop\" and \"Spader-Man\" to complete the set.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4df562-c9f2-4544-9058-7b8cb6ef174a/sm/2371242-1483730866678-FH_Thumb_14_copy_6.jpg","duration":787,"publication_date":"2017-01-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-battlept1","changefreq":"weekly","video":[{"title":"2017:E4 - HOW TO LOSE A WAR - Battlefield 1 Gameplay","description":"Feeling a little out of sorts, chum? Try a bit of Bayer Brand Heroin, soothing your cough and... uh... other stuff since World War 1!\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-battlept1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c40bc2f0-230b-4453-b2d0-a2b419774a32/sm/2371242-1483570702803-FH_Thumb_14_copy_4.jpg","duration":862,"publication_date":"2017-01-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-stayclosejacob","changefreq":"weekly","video":[{"title":"2017:E3 - WORST FRIENDS FOREVER - Stay Close Gameplay with Adam & Jacob","description":"Uh oh. Hope you all didn't grow too attached to our resident beautiful baby boy Jacob. After this his days might be numbered. Things got a little... tense.  Follow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/_jacobfullertonhttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-stayclosejacob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/645af23c-99a7-460b-a4dc-c922b4f94d02/sm/2371242-1483564648509-FH_Thumb_14_copy_2.jpg","duration":1632,"publication_date":"2017-01-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2017-gta-5-misogyny-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2017:E1 - GTA 5 Misogyny Gameplay","description":"Having realized we haven't yet alienated all of our viewers, here's a full hour of some stuff for the ladies.","player_loc":"https://roosterteeth.com/embed/fullhaus-2017-gta-5-misogyny-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00ac0d89-7c98-4109-a3ab-2413eb3d0963/sm/1533704-1483644425108-GTA_Misogyny_Fullhaus_Thumbnail.jpg","duration":4273,"publication_date":"2017-01-06T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/your-comments-2017-comments52","changefreq":"weekly","video":[{"title":"2017:E1 - WE SAY $%&#!@? - Funhaus Comments #52","description":"Well, we finally did it. After almost two years of making content we've finally offended ourselves. I'm surprised it took this long, really.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/your-comments-2017-comments52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/187b442a-0273-493b-b6d9-913b7b1abeb5/sm/2371242-1483652957230-FH_Thumb_Template52.jpg","duration":739,"publication_date":"2017-01-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-hellonew2","changefreq":"weekly","video":[{"title":"2017:E2 - SCREW YOU! - Hello Neighbor Gameplay","description":"True story: As a kid, I had a neighbor who hired a guy to kill her husband on a nude beach. The dude that moved in next was a creepy single middle-aged man with a giant old-timey satellite dish who was constantly inviting my brother and I over to \"watch movies\". Don't ever let anyone tell you that trailer park life isn't exciting.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-hellonew2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14fca4dd-b3d6-4ee2-9e0d-79e19c420b95/sm/2371242-1483552589394-FH_Thumb_14_copy_3.jpg","duration":883,"publication_date":"2017-01-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-reup","changefreq":"weekly","video":[{"title":"2016:E294 - COPS, CRIMES, AND COCAINE - GTA 5 Gameplay","description":"Recently cocaine has seen a spike in popularity and you know what that means: The 80's are coming back y'all! So grab your Rubik's Cube, slap on your red leather jacket, slaughter some nuns in El Salvador, slip into your leg-warmers, topple a few democratically elected left-leaning foreign governments, and walk like an Egyptian right into your DeLorean!  AIDS.  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-reup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cacbbe78-78cc-41be-932c-9321eeee13b9/sm/2371242-1483490883107-FH_Thumb_14_copy.jpg","duration":959,"publication_date":"2017-01-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2017-gtawomen","changefreq":"weekly","video":[{"title":"2017:E1 - FAT DISNEY PRINCESS DASH - GTA 5 Gameplay","description":"Belly Grinding - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/40AFJAoBukSZCMGRRPPQHA#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"To all your friends you're delirious,So consumed in all your doom.Trying hard to fill the emptiness.The pieces gone, left the puzzle undone.Is that the way it is?\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2017-gtawomen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8a7b04b-d2c1-4ddb-9c75-5849023e8b47/sm/2371242-1483487544890-FH_Thumb_14_copy_1.jpg","duration":733,"publication_date":"2017-01-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow103","changefreq":"weekly","video":[{"title":"2016:E103 - WE ARE HOPEFUL","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/623345f1-a5f3-4bdc-9de3-b1b7fbaa65aa/sm/2371242-1482429077297-DS_PostShow_Template103.png","duration":1796,"publication_date":"2017-01-03T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-20","changefreq":"weekly","video":[{"title":"S2:E20 - Funhaus Dungeons and Dragons - Episode 20","description":"In which our adventurers prepare to meet their uncertain future, head on. And Chauncey takes a dump. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da14d99d-7612-4e4a-b8aa-46f1bc596618/sm/2371242-1482373809269-dnd20.png","duration":3851,"publication_date":"2017-01-02T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-oh98","changefreq":"weekly","video":[{"title":"2016:E98 - BIGGEST DISAPPOINTMENT of 2016? - Open Haus #98","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nHey millennials! Oh so you really prefer the new Ewok song from the end of Jedi more than the original. Is that so? Well... I hope you also prefer... my fists! *(springs to attack, trips, impales self on unfinished B-Wing model)* \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-oh98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee65ee2-4a62-4329-8f4e-e94799eb1e1b/sm/2371242-1482274068113-Openhaus97.jpg","duration":610,"publication_date":"2017-01-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-dick-hard-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E105 - MEDIEVAL LESBIAN - Demo Disk Gameplay","description":"Immediately after watching \"Queen of the Damned\" back in '02 I rushed to the Circuit City to buy the alt-goth soundtrack. I listened to it for days. What I'm trying to say is that I was really cool, and had a ton of friends, and girls for sure let me touch their boobs like all the time.  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-dick-hard-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca6a1a9f-ec58-4889-afd0-abaf4af848bb/sm/2371242-1482459875926-FH_Thumb_14_copy_20.jpg","duration":1030,"publication_date":"2017-01-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-overcooked-3","changefreq":"weekly","video":[{"title":"2016:E285 - BURNED OUT - Overcooked Gameplay","description":"\"Adam, what are you doing in the kitchen. It's three in the morning?\"\"Tomato. Rice. Mushroom...\"\"Adam, why are all the burners on?\"\"Tortilla. Bun, Beef...\"\"Where did all these knives come from? You're scaring me.\"\"Chicken. Cheese. Lettuce... (turns slowly) ... Order up.\"\"Adam, I th-\"\"ORDER UP!!!\"\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-overcooked-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9b537e4-6a98-4daf-8e2e-28d78491a65c/sm/2371242-1481914409196-FH_Thumb_14_copy_7.jpg","duration":916,"publication_date":"2016-12-31T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hitman-final","changefreq":"weekly","video":[{"title":"2016:E290 - CRIPPLING CLIMAX - Hitman Blood Money Gameplay Part 11","description":"Alright, for those of you keeping track at home, you can add paraplegics to the list of things we here at Funhaus don't mind making fun of.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hitman-final","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea24a215-6b3d-4ad5-9059-5cf40fdd1d67/sm/2371242-1482347798948-FH_Thumb_14_copy_17.jpg","duration":791,"publication_date":"2016-12-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-civ6long","changefreq":"weekly","video":[{"title":"2016:E291 - CIVILIZATION: THE MOVIE - Civilization VI Gameplay","description":"Alright. Which one of you heroes out there is going to make the super-cut of each time James tries to reassure everybody that \"This is going really well\"?\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-civ6long","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcbcc912-2090-4bdb-836b-30f262181e62/sm/2371242-1482348396062-FH_Thumb_14_copy_18.jpg","duration":599,"publication_date":"2016-12-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-wwe","changefreq":"weekly","video":[{"title":"2016:E286 - RAW AND UNCUT - WWE 2K17 Gameplay","description":"What are you gonna do, brother, when Lawrence and James dive head first into the uncanny valley, strap on their singlets, grease themselves up real good, talk a little too much about men's physiques, and come for yoooouuu?!\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-wwe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a22c820-f605-40bf-b0d1-b898dcf011ad/sm/2371242-1482282625548-FH_Thumb_14_copy_16.jpg","duration":875,"publication_date":"2016-12-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments51","changefreq":"weekly","video":[{"title":"2015:E53 - WE FIST OUR MOUTHS? - Funhaus Comments #51","description":"I don't know about the rest of you, but \"Cold-blooded Hard Elyse\" just passed \"Heel-turn Larr\" and \"Mattitude\" for my favorite new Funhaus character.  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8b1b2e8-8561-4f90-8db3-d0d4322af161/sm/2371242-1482435730426-FH_Thumb_Template51.jpg","duration":535,"publication_date":"2016-12-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-mass-effect-sucks-push-for-emor-gameplay","changefreq":"weekly","video":[{"title":"2016:E292 - WHO NEEDS MASS EFFECT? - Push for Emor Gameplay","description":"\"Ok so did we include hover-cars?\"\"Check.\"\"Open world space battles?\"\"Check.\"\"Really phallic guns?\"\"Check.\"\"Enemies that look like stormtroopers but won't get us sued?\"\"Check?\"\"Kovic-level glitch-proofing?\"\"... shit.\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-mass-effect-sucks-push-for-emor-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cff793b-2ade-4cc5-8ba2-b8764746f0e8/sm/2371242-1482360772454-FH_Thumb_14_copy_19.jpg","duration":813,"publication_date":"2016-12-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-episode-5","changefreq":"weekly","video":[{"title":"2016:E289 - FLAMING FIREFIGHTERS - GTA 5 Gameplay","description":"I super swear we really do respect and appreciate women. Promise. We even keep one around the office just in case something womanly need tending to. We pay her and everything. Well, technically the checks are made out to James, but still.\n\n\n\n\n\n\n\n\n\nWater vs Bikers Basket - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/i1bT6SyN-0-0gYidJy8WCg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/261264fc-bcb1-401a-98b0-eec3741cd974/sm/2371242-1482186364025-FH_Thumb_14_copy_9.jpg","duration":627,"publication_date":"2016-12-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup102","changefreq":"weekly","video":[{"title":"2016:E102 - 2016: GTFO - Dude Soup Podcast #102","description":"Check out this week's Blue Apron menu and get your first three meals FREE by going to http://www.blueapron.com/soup\n\nAnd check out the OWC Thunderbolt 3 Dock at http://www.owcdigital.com, now available for pre-order\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt's the last Dude Soup of the year so the boys and Elyse take a look back on the best of games, films, TV, tech, foods, memes, pets, chandeliers, scenic backwoods drives, ointments, salves, tinctures, and designer footwear of 2016.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f3292a2-14c4-4861-b908-2e0448cab778/sm/2371242-1482442752475-DudeSoup102.png","duration":3905,"publication_date":"2016-12-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow102","changefreq":"weekly","video":[{"title":"2016:E102 - WE ARE THANKFUL","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c805f3b-2bbc-4811-8ba6-d694a83489fc/sm/2371242-1482428944367-DS_PostShow_Template102.png","duration":1725,"publication_date":"2016-12-27T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-19","changefreq":"weekly","video":[{"title":"S2:E19 - Funhaus Dungeons and Dragons - Episode 19","description":"In which our adventurers embark on a journey to the citadel to claim their reward, and Grimo makes a horse friend. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd31eb76-8046-45f5-a632-03af4f301437/sm/2371242-1482342511959-dnd19.png","duration":3030,"publication_date":"2016-12-26T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/mario-maker-hype-sidescrollers-082115","changefreq":"weekly","video":[{"title":"S1:E194 - Mario Maker HYPE! | SideScrollers 08/21/15","description":"S1:E194 - Mario Maker HYPE! | SideScrollers 08/21/15","player_loc":"https://roosterteeth.com/embed/mario-maker-hype-sidescrollers-082115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eba54ee7-470e-4f8f-b7a8-6c73378f2586/sm/video_thumbnail_12888227-1450390998.jpg","duration":4055,"publication_date":"2015-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-the-nintendo-64-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E49 - Reasons we HATE the Nintendo 64 with Evil Craig","description":"These are the reasons Evil Craig HATES the Nintendo 64! What are yours?!?","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-the-nintendo-64-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1684b3a-9e82-419d-932d-03963945fe81/sm/video_thumbnail_12880487-1440081430.png","duration":96,"publication_date":"2015-08-20T07:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-the-nintendo-64","changefreq":"weekly","video":[{"title":"S1:E16 - Reasons we LOVE The Nintendo 64!","description":"These are the reasons we LOVE the Nintendo 64! What are yours?","player_loc":"https://roosterteeth.com/embed/reasons-we-love-the-nintendo-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f569faa-938a-4e1c-81ff-8176d4cf959f/sm/video_thumbnail_12880486-1440081294.jpg","duration":59,"publication_date":"2015-08-20T07:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-081415","changefreq":"weekly","video":[{"title":"S1:E893 - SideScrollers Extended Cut 08/14/15","description":"S1:E893 - SideScrollers Extended Cut 08/14/15","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-081415","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6174e7b3-60d1-4d04-acfd-4e2c99eff35a/sm/video_thumbnail_12880152-1439591011.JPG","duration":517,"publication_date":"2015-08-15T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-dinosaurs-in-video-games","changefreq":"weekly","video":[{"title":"S1:E144 - Top 10 Dinosaurs in Video Games","description":"The best dinosaurs in video games? we have them!\r\n\r\nhttp://lootcrate.com/screwattack\r\n\r\nNew to ScrewAttack? Subscribe for daily videos: http://bit.ly/SubtoScrewAttack\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\n ","player_loc":"https://roosterteeth.com/embed/top-10-dinosaurs-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f18d2024-fb18-44f8-9fa3-0f9ce909526f/sm/video_thumbnail_12879879-1439568561.jpg","duration":484,"publication_date":"2015-08-14T09:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-around-sidescrollers-081415","changefreq":"weekly","video":[{"title":"S1:E193 - The Best Around | SideScrollers 08/14/15","description":"The guys are back from RTX and ready to do SideScrollers! They've got big stuff to discuss and find out how natural selection almost worked.\r\n\r\nSend your Question of the Week answers here!\r\nLive@ScrewAttack.com\r\n\r\nSend Newsdesk suggestions to Sam!\r\nSam@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327","player_loc":"https://roosterteeth.com/embed/the-best-around-sidescrollers-081415","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afb8354e-a08a-49d5-8e03-a66097d97027/sm/video_thumbnail_12879869-1439563337.jpg","duration":4651,"publication_date":"2015-08-14T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-battletoads-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E48 - 15 Reasons We HATE Battletoads with Evil Craig","description":"Tell us why YOU think Battletoads SUCKS!","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-battletoads-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1b4e2c6-8c03-4485-a4f6-0ea104d1918d/sm/video_thumbnail_12879636-1439417498.png","duration":83,"publication_date":"2015-08-13T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-love-battletoads","changefreq":"weekly","video":[{"title":"S1:E17 - 19 Reasons We LOVE Battletoads","description":"Tell us why YOU love Battletoads in the comments below!","player_loc":"https://roosterteeth.com/embed/19-reasons-we-love-battletoads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/143105d5-d777-4a59-addf-151c0f1d1601/sm/video_thumbnail_12879635-1439417507.png","duration":82,"publication_date":"2015-08-13T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-26","changefreq":"weekly","video":[{"title":"S2:E26 - Donkey Kong VS Knuckles","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cbd2864-3427-43f2-ba36-41cec126ef81/sm/video_thumbnail_12879472-1439346233.jpg","duration":1109,"publication_date":"2015-08-11T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-playstation-games-10-1","changefreq":"weekly","video":[{"title":"S1:E143 - Top 20 PlayStation Games (10-1)","description":"Part 2 of the Top 20 Playstation 1 games 10-1, will your favorite be on the list? Let's find out!","player_loc":"https://roosterteeth.com/embed/top-20-playstation-games-10-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebd2315c-0240-43a2-980f-d6598d6dc9b0/sm/video_thumbnail_12879376-1439223337.jpg","duration":466,"publication_date":"2015-08-10T09:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/goku-vs-vegeta-for-worlds-greatest-dad-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E12 - Goku vs Vegeta for World's Greatest... Dad? | The Desk of DEATH BATTLE","description":"Goku may be stronger than Vegeta, but is he a better father?\r\n\r\nWritten by Sam Mitchell - @ScrewAttackSam\r\nVoiced by Lisa Foiles - @LisaFoiles\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\n\r\nNew to ScrewAttack? Subscribe for daily videos: http://bit.ly/SubtoScrewAttack\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\r\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\r\nWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylist\r\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\r\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\r\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\r\nWatch The Best Ever - http://bit.ly/BestEverPlaylist\r\nWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/goku-vs-vegeta-for-worlds-greatest-dad-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/605cdffc-8b25-4f02-b9ee-364fc362f852/sm/video_thumbnail_12879370-1439219125.jpg","duration":212,"publication_date":"2015-08-10T08:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-rare-replay-good","changefreq":"weekly","video":[{"title":"S1:E19 - Is Rare Replay Good?","description":"Rare Replay is a heck of a deal, BUT Is It Good?","player_loc":"https://roosterteeth.com/embed/is-rare-replay-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28b0fca2-389c-482a-97f6-19059a09f536/sm/video_thumbnail_12878961-1438891093.png","duration":78,"publication_date":"2015-08-09T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-sidescrollers-sidescrollers-080815","changefreq":"weekly","video":[{"title":"S1:E192 - DEATH BATTLE SIDESCROLLERS! | SideScrollers 08/08/15","description":"The DEATH BATTLE Team joins us this week with crazy stories, behind the scenes and more!","player_loc":"https://roosterteeth.com/embed/death-battle-sidescrollers-sidescrollers-080815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d19e19b8-34b0-4a82-b616-3d330b14c5ea/sm/video_thumbnail_12888226-1450390728.jpg","duration":3533,"publication_date":"2015-08-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-hate-kirby","changefreq":"weekly","video":[{"title":"S1:E47 - 16 Reasons We HATE Kirby!","description":"Let us know why you HATE Kirby!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-hate-kirby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2020861-66e1-4b96-aac0-b230abdc6590/sm/video_thumbnail_12878946-1438875770.png","duration":85,"publication_date":"2015-08-06T08:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-kirby","changefreq":"weekly","video":[{"title":"S1:E18 - 16 Reasons We LOVE Kirby!","description":"It's the 16 reasons we LOVE this little monster of destruction.","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-kirby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef33eb8f-08c3-43fb-945b-833184f5033a/sm/video_thumbnail_12878947-1438875777.png","duration":58,"publication_date":"2015-08-06T08:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/knuckles-punches-into-death-battle","changefreq":"weekly","video":[{"title":"S1:E1 - Knuckles punches into Death Battle!","description":"S1:E1 - Knuckles punches into Death Battle!","player_loc":"https://roosterteeth.com/embed/knuckles-punches-into-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/877d40c2-e27f-43e1-a776-458562489d43/sm/video_thumbnail_12878896-1438798927.jpg","duration":212,"publication_date":"2015-08-05T11:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-dead-rising","changefreq":"weekly","video":[{"title":"S1:E29 - Five Fun Facts - Dead Rising","description":"S1:E29 - Five Fun Facts - Dead Rising","player_loc":"https://roosterteeth.com/embed/five-fun-facts-dead-rising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17776eb5-294d-4f0f-b341-05c072590593/sm/video_thumbnail_12878893-1438791890.jpg","duration":223,"publication_date":"2015-08-05T09:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-new-shows-are-coming-to-screwattack","changefreq":"weekly","video":[{"title":"S1:E892 - What new shows are coming to ScrewAttack?","description":"Upcoming show talk!","player_loc":"https://roosterteeth.com/embed/what-new-shows-are-coming-to-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69447db0-7df0-42ee-9022-25343980a0b8/sm/video_thumbnail_12878627-1438441480.PNG","duration":663,"publication_date":"2015-08-01T08:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-playstation-games-20-11","changefreq":"weekly","video":[{"title":"S1:E142 - Top 20 PlayStation Games (20-11)","description":"So much good stuff on this legendary console that we couldn't just just a Top 10! What are your favorites??\r\n\r\nNew to ScrewAttack? Subscribe for daily videos: http://bit.ly/SubtoScrewAttack\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://bit.ly/ScrewAttackWebsite\r\nLike ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook \r\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\r\n\r\nWatch DEATH BATTLE! - http://bit.ly/DEATHBATTLEPlaylist\r\nWatch ScrewAttack Top 10's - http://bit.ly/SATop10Playlist\r\nWatch Reasons We Love and Hate (with Evil Craig) - http://bit.ly/LoveandHatePlaylist\r\nWatch Five Fun Facts - http://bit.ly/FFFPlaylist\r\nWatch One Minute Melee - http://bit.ly/OMMPlaylist\r\nWatch The Desk of DEATH BATTLE - http://bit.ly/DeskofDBPlaylist\r\nWatch Is It Good - http://bit.ly/IsItGoodPlaylist","player_loc":"https://roosterteeth.com/embed/top-20-playstation-games-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8974edaf-c0b2-4124-a26e-f656212f810f/sm/video_thumbnail_12878571-1438362056.jpg","duration":511,"publication_date":"2015-07-31T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/were-here-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E191 - We're Here! - SideScrollers","description":"SideScrollers has returned after a three week absence! We've lived to tell the tale of SGC! Plus whatever wacky stuff Sam has found for Newsdesk!\r\n\r\nSo our internet went to hell towards the end. Winner of Question of the Week was Brenden Dousi!\r\n\r\nTHIS WEEK'S QUESTION: What is the strangest fast food item/promotional thing you can think of?\r\n\r\nSend your Question of the Week answers to Live@ScrewAttack.com \r\n\r\nSend Newsdesk suggestions to Sam at Sam@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327?mt=2\r\n\r\nCheck out our Community Video! http://www.screwattack.com/video/The-g1-Best-Ever-Minigame-12878098","player_loc":"https://roosterteeth.com/embed/were-here-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e84626d7-be6f-49c4-ad9c-d40f5810451a/sm/video_thumbnail_12878562-1438352037.jpg","duration":3951,"publication_date":"2015-07-31T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-legend-of-zelda-ocarina-of-time","changefreq":"weekly","video":[{"title":"S1:E28 - Five Fun Facts - Legend of Zelda: Ocarina of Time","description":"S1:E28 - Five Fun Facts - Legend of Zelda: Ocarina of Time","player_loc":"https://roosterteeth.com/embed/five-fun-facts-legend-of-zelda-ocarina-of-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b25ef389-71e3-4275-aa2a-41bbb8b3cffa/sm/video_thumbnail_12878400-1438184584.jpg","duration":292,"publication_date":"2015-07-29T08:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/superman-dies","changefreq":"weekly","video":[{"title":"S1:E891 - SUPERMAN DIES","description":"S1:E891 - SUPERMAN DIES","player_loc":"https://roosterteeth.com/embed/superman-dies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff2f191c-b0af-4357-836a-88d19668db9e/sm/video_thumbnail_12878346-1438116507.JPG","duration":246,"publication_date":"2015-07-28T13:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-lightning-vs-wonder-woman","changefreq":"weekly","video":[{"title":"S1:E18 - One Minute Melee | Lightning Vs. Wonder Woman","description":"S1:E18 - One Minute Melee | Lightning Vs. Wonder Woman","player_loc":"https://roosterteeth.com/embed/one-minute-melee-lightning-vs-wonder-woman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890e449e-5da3-422e-a6c5-9a48583121ac/sm/video_thumbnail_12878326-1438098246.jpg","duration":155,"publication_date":"2015-07-28T08:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-25","changefreq":"weekly","video":[{"title":"S2:E25 - Goku VS Superman 2","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4840e8e1-5db9-47d2-9c83-f2f672bf0066/sm/video_thumbnail_12877785-1437515149.jpg","duration":1224,"publication_date":"2015-07-21T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-video-game-remake-ever","changefreq":"weekly","video":[{"title":"S1:E70 - The Best Video Game Remake EVER!","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nStarring\r\nShaun Bolen - @ShaunBolen\r\nGaijinGoombah - @GaijinGoombah\r\nBryan Baker - @tehrealbryan\r\n\r\nEdited by\r\nJohn Francis McCullagh - @JohnFMFilms\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-video-game-remake-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66cf57a5-ea33-4e5a-9e7b-e2b9716fc6cd/sm/video_thumbnail_12877194-1436800362.jpg","duration":356,"publication_date":"2015-07-13T08:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-rareware-games-of-all-time","changefreq":"weekly","video":[{"title":"S1:E141 - Top 10 Rareware Games of All-Time","description":"What's the best Rare game of all-time? We'll tell you.","player_loc":"https://roosterteeth.com/embed/top-10-rareware-games-of-all-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/384b5738-0ae1-4300-aef3-936cf552abe4/sm/video_thumbnail_12877002-1436544563.jpg","duration":398,"publication_date":"2015-07-10T09:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-oni-vs-kenpachi","changefreq":"weekly","video":[{"title":"S1:E17 - One Minute Melee | Oni Vs. Kenpachi","description":"S1:E17 - One Minute Melee | Oni Vs. Kenpachi","player_loc":"https://roosterteeth.com/embed/one-minute-melee-oni-vs-kenpachi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dddbd9c-24d6-46a4-aec9-4652ea367784/sm/video_thumbnail_12876753-1436203494.jpg","duration":185,"publication_date":"2015-07-06T10:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-24","changefreq":"weekly","video":[{"title":"S2:E24 - Darth Vader VS Doctor Doom","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4fb6464-d433-47a1-966b-4bb737808282/sm/video_thumbnail_12876390-1435769990.jpg","duration":1078,"publication_date":"2015-07-01T09:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-batman-arkham-knight-good","changefreq":"weekly","video":[{"title":"S1:E18 - Is Batman: Arkham Knight Good?","description":"Bruce is ready to take out the all-new, nipple-less batsuit for a test drive in Arkham Knight, BUT Is it good? ","player_loc":"https://roosterteeth.com/embed/is-batman-arkham-knight-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6443ffec-23a4-42f0-9ee8-82453fef000e/sm/video_thumbnail_12876079-1435352466.png","duration":114,"publication_date":"2015-06-30T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-advantage-06192015","changefreq":"weekly","video":[{"title":"S1:E890 - ScrewAttack Advantage - 06/19/2015","description":"What are we doing at the office when Craig is gone?","player_loc":"https://roosterteeth.com/embed/screwattack-advantage-06192015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7cb1485-b618-45db-8149-860ae8156c58/sm/video_thumbnail_12876269-1435616530.jpg","duration":527,"publication_date":"2015-06-29T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-sonic-got-to-suck-so-bad-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E11 - How Sonic Got to Suck So Bad | The Desk of DEATH BATTLE","description":"http://www.podsurvey.com/deskof\r\n\r\nWhat the hell happened to Sonic? Jocelyn has researched and found the answer.\r\n\r\nVoiced by Lisa Foiles - @LisaFoiles\r\nWritten by Sam Mitchell - @ScrewAttackSam\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/how-sonic-got-to-suck-so-bad-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7be5ba61-ce9b-4e9f-97a4-f776dedb5f87/sm/video_thumbnail_12876262-1435606600.jpg","duration":425,"publication_date":"2015-06-29T12:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-062615","changefreq":"weekly","video":[{"title":"S1:E889 - SideScrollers Extended Cut 06/26/15","description":"Social Media is a wonderful thing.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-062615","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aeb2a45-079f-438b-a6c2-91184b5b5b65/sm/video_thumbnail_12876254-1435591915.JPG","duration":927,"publication_date":"2015-06-29T08:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-devil-may-cry-4-special-edition-good","changefreq":"weekly","video":[{"title":"S1:E17 - Is Devil May Cry 4: Special Edition Good?","description":"The new special edition for Devil May Cry 4 is finally out, BUT! Is it good?","player_loc":"https://roosterteeth.com/embed/is-devil-may-cry-4-special-edition-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1307a447-7f52-4659-afae-183ad00fbe7c/sm/video_thumbnail_12875948-1435181674.png","duration":99,"publication_date":"2015-06-28T07:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-video-game-villain-ever","changefreq":"weekly","video":[{"title":"S1:E69 - The Best Video Game Villain EVER!","description":"Fill out this survey for a chance to win 1 $100 Amazon gift card!\r\nhttp://www.podsurvey.com/ever\r\n\r\nStarring\r\nShaun Bolen - @ShaunBolen\r\nSam Mitchell - @ScrewAttackSam\r\nBryan Baker - @tehrealbryan\r\n\r\nEdited by\r\nJohn Francis McCullagh - @JohnFMFilms\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-video-game-villain-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/327fd2f5-2991-45eb-b77d-d642b1f7abd8/sm/video_thumbnail_12876153-1435441201.jpg","duration":350,"publication_date":"2015-06-27T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/you-are-not-ready-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E190 - You Are Not Ready | SideScrollers","description":"Playstation is turning 20 so we wanted to look back to the time when Sony first came to play.\r\n\r\nSend Newsdesk Stories to Sam!  Sam@ScrewAttack.com \r\n\r\nSend Question of the Week answers here! Live@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327?mt=2 \r\n\r\nCheck out our g1 video of the week! http://www.screwattack.com/shows/guardiangamers/top-5-characters-be-expanded-upon-guardiangamers\r\n\r\n?","player_loc":"https://roosterteeth.com/embed/you-are-not-ready-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77fa86ba-09a0-44fc-86b8-163f7c83a571/sm/video_thumbnail_12876057-1435328935.jpg","duration":4843,"publication_date":"2015-06-26T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-futuristic-weapons-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E140 - Top 10 Futuristic Weapons with Boomstick","description":"The warfare future... is here! This are the best weapons from the future in video games. Is your favorite on this list?\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA\r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/top-10-futuristic-weapons-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/317ae44a-5f5c-4bdb-a557-bb0ceeec2370/sm/video_thumbnail_12876065-1435335244.jpg","duration":444,"publication_date":"2015-06-26T09:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-lego-jurassic-world-good","changefreq":"weekly","video":[{"title":"S1:E16 - Is LEGO Jurassic World Good?","description":"LEGO Jurassic World definitely takes a wacky spin on the franchise, BUT Is it good?","player_loc":"https://roosterteeth.com/embed/is-lego-jurassic-world-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ada4bfae-6d84-4f9e-b4a1-ee856d397bf0/sm/video_thumbnail_12875663-1434733578.png","duration":108,"publication_date":"2015-06-21T07:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-e3-2015-moments","changefreq":"weekly","video":[{"title":"S1:E139 - Top 10 E3 2015 Moments","description":"E3 2015 brought something awesome for every kind of gaming fan. These are the ten greatest moments from the show this year!","player_loc":"https://roosterteeth.com/embed/top-10-e3-2015-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/795296c6-5a2f-4ec6-8a1e-e64584c9ab43/sm/video_thumbnail_12875691-1434757527.jpg","duration":514,"publication_date":"2015-06-19T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-other-crazy-s-did-we-do-at-e3-outtakes","changefreq":"weekly","video":[{"title":"S1:E888 - What other crazy S&#@ did we do at E3? | Outtakes","description":"S1:E888 - What other crazy S&#@ did we do at E3? | Outtakes","player_loc":"https://roosterteeth.com/embed/what-other-crazy-s-did-we-do-at-e3-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/061d5800-2ad4-4f96-9935-77ad6f03058f/sm/video_thumbnail_12875689-1434753382.jpg","duration":246,"publication_date":"2015-06-19T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/25-reasons-we-love-e3-2015","changefreq":"weekly","video":[{"title":"S1:E19 - 25 Reasons We LOVE E3 2015!","description":"S1:E19 - 25 Reasons We LOVE E3 2015!","player_loc":"https://roosterteeth.com/embed/25-reasons-we-love-e3-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c4c2291-efc3-4f2d-89d4-db83e9894175/sm/video_thumbnail_12875629-1434677509.jpg","duration":173,"publication_date":"2015-06-18T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-hate-e3-2015","changefreq":"weekly","video":[{"title":"S1:E46 - 16 Reasons We HATE E3 2015!","description":"S1:E46 - 16 Reasons We HATE E3 2015!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-hate-e3-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8be30d9-a895-4103-ad05-f0b1063ae3ff/sm/video_thumbnail_12875628-1434677208.png","duration":121,"publication_date":"2015-06-18T18:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/marios-derpy-adventure-you-never-knew-about-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E10 - Mario's Derpy Adventure You Never Knew About | The Desk of DEATH BATTLE","description":"Can you guys get Jocelyn to 25k likes this episode??SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nVoiced by Lisa Foiles - @LisaFoiles\r\nWritten by Sam Mitchell - @ScrewAttackSam\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/marios-derpy-adventure-you-never-knew-about-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d45b5697-c9ae-4558-b27c-568a5b0dd795/sm/video_thumbnail_12875309-1434386469.JPG","duration":318,"publication_date":"2015-06-15T09:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-061315","changefreq":"weekly","video":[{"title":"S1:E887 - SideScrollers Extended Cut 06/13/15","description":"We've kind of shot a pilot for HGTV.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-061315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deeb2c00-bfc7-452f-b09a-110f29661856/sm/video_thumbnail_12875181-1434214967.JPG","duration":981,"publication_date":"2015-06-13T10:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-time-sidescrollers-061315","changefreq":"weekly","video":[{"title":"S1:E189 - E3 Time! | SideScrollers 06/13/15","description":"E3 is just around the corner! Plus Pornhub is trying to crowdfund a space expedition? What is going on in the world?\r\n\r\nSend Newsdesk Stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend Question of the Week answers here!\r\nLive@ScrewAttack.com\r\n\r\nGet ScrewAttack podcasts on iTunes!\r\nhttps://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327?mt=2","player_loc":"https://roosterteeth.com/embed/e3-time-sidescrollers-061315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c4bfe40-3e50-4833-a618-8e66dab41d0c/sm/video_thumbnail_12875147-1434165427.jpg","duration":3803,"publication_date":"2015-06-13T08:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-generation-1-pokemon","changefreq":"weekly","video":[{"title":"S1:E138 - Top 10 Worst Generation 1 Pokemon","description":"Help us better our advertising for you so we can keep our programming free and you could win a $100 gift card: http://www.podsurvey.com/10s\r\n\r\nGeneration 1 of Pokemon... is not that perfect. Here is our Top 10 List with the WORST Gen 1 Pokemon.\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/top-10-worst-generation-1-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96453ba0-5bec-4d40-aeac-e0bc9894e3c5/sm/video_thumbnail_12875131-1434138987.jpg","duration":510,"publication_date":"2015-06-12T12:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-hate-fallout-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E45 - 16 Reasons We HATE Fallout with Evil Craig","description":"S1:E45 - 16 Reasons We HATE Fallout with Evil Craig","player_loc":"https://roosterteeth.com/embed/16-reasons-we-hate-fallout-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09db74e8-9be8-4a06-87ef-73df153d9d42/sm/video_thumbnail_12875045-1434041343.png","duration":95,"publication_date":"2015-06-11T09:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-fallout","changefreq":"weekly","video":[{"title":"S1:E20 - 18 Reasons We LOVE Fallout!","description":"These are the reasons we LOVE Fallout! Why do you?","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-fallout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a4aaf0-ba29-41c1-8eda-19a4620b72c0/sm/video_thumbnail_12875044-1434041100.jpg","duration":89,"publication_date":"2015-06-11T09:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-hatred-good","changefreq":"weekly","video":[{"title":"S1:E15 - Is Hatred Good?","description":"Hatred has finally launched after countless attacks from media sites, BUT Is it good?","player_loc":"https://roosterteeth.com/embed/is-hatred-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffbde58b-02e4-4c1c-9934-72a8c54abbc3/sm/video_thumbnail_12875038-1434040070.png","duration":115,"publication_date":"2015-06-11T09:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-luigis-mansion","changefreq":"weekly","video":[{"title":"S1:E27 - Five Fun Facts - Luigi's Mansion","description":"S1:E27 - Five Fun Facts - Luigi's Mansion","player_loc":"https://roosterteeth.com/embed/five-fun-facts-luigis-mansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fc487b1-5fd6-4459-9ac3-1143179320b2/sm/video_thumbnail_12874903-1433883482.jpg","duration":252,"publication_date":"2015-06-09T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-puzzle-dragons-super-mario-bros-edition-good","changefreq":"weekly","video":[{"title":"S1:E14 - Is Puzzle + Dragons: Super Mario Bros. Edition Good?","description":"A widely-popular Japanese puzzle franchise brings a new spin on the Mushroom Kingdom, BUT! Is it good?","player_loc":"https://roosterteeth.com/embed/is-puzzle-dragons-super-mario-bros-edition-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac0e4bbb-514f-460b-bf20-5e3509393f9b/sm/video_thumbnail_12874622-1433537322.png","duration":112,"publication_date":"2015-06-07T07:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-call-of-duty-game-ever","changefreq":"weekly","video":[{"title":"S1:E68 - The Worst Call of Duty Game EVER!","description":"Sure it's the most popular franchise in gaming but not all the games are good...\r\n\r\nSean Hinz - @SeanHinz\r\nParker Bohon - @ParkerBohon\r\nGerardo Mejia - @HybridRain\r\n\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-worst-call-of-duty-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a4faf6f-2bc7-475a-944d-ed55b3836217/sm/video_thumbnail_12874688-1433618980.jpg","duration":387,"publication_date":"2015-06-06T13:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-of-writing-death-battle","changefreq":"weekly","video":[{"title":"S1:E886 - BEHIND THE SCENES OF WRITING DEATH BATTLE!","description":"Nick talks about working on Snake vs Fisher!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-of-writing-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fab48e4d-f69b-4bac-88f5-38951c4b99b0/sm/video_thumbnail_12874634-1433549883.JPG","duration":481,"publication_date":"2015-06-06T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-dumbasses-in-video-games","changefreq":"weekly","video":[{"title":"S1:E137 - Top 10 Dumbasses in Video Games","description":"Some of these characters... are pretty dumb. Just dumb. Did we miss one? Comment down below and let us know which character you think is the dumbest of all.\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/top-10-dumbasses-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e284428-d3cf-40cb-99e8-11536ea5d6cf/sm/video_thumbnail_12874623-1433627658.jpg","duration":476,"publication_date":"2015-06-05T13:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dont-pass-go-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E188 - Don't Pass Go | SideScrollers","description":"The Available Now guys are in full force as Shawn Squared joins Sam to dig into Fallout 4, revel in Kung Fury, and find out how many years a Japanese pornstar will be a \"personal assistant.\"\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327\r\n\r\nSend a Newsdesk submission to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend your Question of the Week responses here!\r\nLive@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/dont-pass-go-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0775e9f6-58fe-4d45-8130-1d25e2cf909f/sm/video_thumbnail_12874578-1433516653.jpg","duration":3653,"publication_date":"2015-06-05T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-great-sphero-obstacle-course","changefreq":"weekly","video":[{"title":"S1:E885 - The Great Sphero Obstacle Course","description":"Not an Advantage member? No Prob! Help support the .com directly by giving it a Trial HERE! ","player_loc":"https://roosterteeth.com/embed/the-great-sphero-obstacle-course","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfc23c11-6e85-478c-bc1b-7d807a0f9919/sm/video_thumbnail_12874508-1433436704.png","duration":328,"publication_date":"2015-06-04T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-23","changefreq":"weekly","video":[{"title":"S2:E23 - Solid Snake VS Sam Fisher","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe744410-0309-4fb3-9448-9ec9a4d32197/sm/video_thumbnail_12874418-1433344423.jpg","duration":1316,"publication_date":"2015-06-03T08:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-pets-need-to-be-put-to-sleep-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E9 - Super-Pets Need to Be Put to Sleep | Desk of DEATH BATTLE!","description":"Did you know there was an entire legion of super pets with super powers? Why? Because. SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any new episodes of Desk of DEATH BATTLE every two weeks!\r\n\r\nVoiced by Lisa Foiles - @LisaFoiles\r\nWritten by Sam Mitchell - @ScrewAttackSam\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/super-pets-need-to-be-put-to-sleep-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/156ba02b-c70c-444f-a1ce-e636d8466fc5/sm/video_thumbnail_12874233-1433187094.jpg","duration":268,"publication_date":"2015-06-01T12:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-game-ending-ever","changefreq":"weekly","video":[{"title":"S1:E67 - The Best Game Ending EVER!","description":"What's YOUR best video game ending ever? Tell us in the comments. SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any new episodes!\r\n\r\nShaun Bolen - @ShaunBolen\r\nSean Hinz - @SeanHinz\r\nSam Mitchell - @ScrewAttackSam\r\n\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-game-ending-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59fd2e0f-1088-4bcd-a0f9-508a06f1358d/sm/video_thumbnail_12874227-1433182536.jpg","duration":520,"publication_date":"2015-06-01T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-f-ups-in-video-game-history","changefreq":"weekly","video":[{"title":"S1:E136 - Top 10 F*#% Ups in Video Game History","description":"S1:E136 - Top 10 F*#% Ups in Video Game History","player_loc":"https://roosterteeth.com/embed/top-10-f-ups-in-video-game-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebf4da7e-e751-437a-b309-13a8b97cb0f5/sm/video_thumbnail_12874216-1433169791.jpg","duration":545,"publication_date":"2015-06-01T07:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-052915","changefreq":"weekly","video":[{"title":"S1:E884 - SideScrollers Extended Cut 05/29/15","description":"Figuring out how the different names for various parts of your nether regions came to be!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-052915","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2248a7da-b4b5-44df-84af-4b34bec70e3b/sm/video_thumbnail_12874081-1432954658.JPG","duration":479,"publication_date":"2015-05-30T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-052915-get-on-the-bus","changefreq":"weekly","video":[{"title":"S1:E187 - SideScrollers 05/29/15 - Get on the Bus!","description":"We're pulling back the curtain on what goes into the real work of us being at an event. Plus, a very bus themed Newsdesk!\r\n\r\nGet ScrewAttack podcasts on iTunes! https://itunes.apple.com/us/podcast/screwattacks-awesome-podcasts!/id997020327\r\n\r\nGet SideScrollers on Soundcloud!\r\nhttps://soundcloud.com/screwattack/sidescrollers-052915-get-on-the-bus\r\n\r\nHave a Newsdesk suggestion? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend your Question of the Week answers here!\r\nLive@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-052915-get-on-the-bus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f692705e-495e-42ec-a386-15dd25024a79/sm/video_thumbnail_12874045-1432913539.jpg","duration":3680,"publication_date":"2015-05-30T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-hate-konami","changefreq":"weekly","video":[{"title":"S1:E44 - 17 Reasons We HATE Konami!","description":"What are the reasons you HATE Konami?!?","player_loc":"https://roosterteeth.com/embed/17-reasons-we-hate-konami","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce7d0e5-94b4-4737-b88b-fdd1bb9b2f47/sm/video_thumbnail_12873989-1432825650.png","duration":110,"publication_date":"2015-05-28T08:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-love-konami","changefreq":"weekly","video":[{"title":"S1:E21 - 17 Reasons We LOVE Konami!","description":"What are the reasons you LOVE Konami?!?","player_loc":"https://roosterteeth.com/embed/17-reasons-we-love-konami","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/217a1138-62ff-4ac1-bcbf-633251eaaa45/sm/video_thumbnail_12873988-1432825533.jpg","duration":80,"publication_date":"2015-05-28T08:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-catwoman-vs-black-widow","changefreq":"weekly","video":[{"title":"S1:E16 - One Minute Melee | Catwoman Vs. Black Widow","description":"S1:E16 - One Minute Melee | Catwoman Vs. Black Widow","player_loc":"https://roosterteeth.com/embed/one-minute-melee-catwoman-vs-black-widow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fcff447-810f-4c4f-a658-7b9bef68b043/sm/video_thumbnail_12873885-1432740332.jpg","duration":197,"publication_date":"2015-05-27T08:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-splatoon-good","changefreq":"weekly","video":[{"title":"S1:E13 - Is Splatoon Good?","description":"The long-awaited Nintendo title has finally arrived, BUT! Is it good?","player_loc":"https://roosterteeth.com/embed/is-splatoon-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85577859-bb79-4373-b76a-aff82e1c9729/sm/video_thumbnail_12874621-1433536337.png","duration":126,"publication_date":"2015-05-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-22","changefreq":"weekly","video":[{"title":"S2:E22 - Beast VS Goliath","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b177f4-20d4-4e80-a89d-b9f2f608c7e6/sm/video_thumbnail_12872339-1432166729.jpg","duration":917,"publication_date":"2015-05-20T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tony-starks-tumor-is-smarter-than-you-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E8 - Tony Stark's Tumor is Smarter Than You | The Desk of DEATH BATTLE","description":"S1:E8 - Tony Stark's Tumor is Smarter Than You | The Desk of DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/tony-starks-tumor-is-smarter-than-you-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7497c85-c2f2-42be-8437-9165452d7807/sm/video_thumbnail_12872227-1432048111.jpg","duration":357,"publication_date":"2015-05-19T08:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-make-a-nintendo-theme-park-amazing-top-15","changefreq":"weekly","video":[{"title":"S1:E135 - How to Make a Nintendo Theme Park AMAZING - Top 15","description":"We've thought long and hard about what we want in a Nintendo theme park and have come up with our definitive list. It's get us HYPED for the opportunities.\r\n\r\nSUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any other Top 10s!\r\n\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack\r\n\r\nCategory\r\n\r\nGaming","player_loc":"https://roosterteeth.com/embed/how-to-make-a-nintendo-theme-park-amazing-top-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/368a3910-9647-4219-88c2-27a81e20c4a3/sm/video_thumbnail_12872056-1431966287.jpg","duration":985,"publication_date":"2015-05-18T09:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/90s-back-for-good-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E186 - 90s Back for Good? | SideScrollers","description":"Have a Newsdesk story idea? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave a an Art Show submission or Question of the Week?\r\nSend it to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/90s-back-for-good-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/515c12a3-0c29-4577-bf09-6872f32810ef/sm/video_thumbnail_12872234-1432051775.jpg","duration":3890,"publication_date":"2015-05-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-iron-man-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E43 - Reasons We HATE Iron Man with Evil Craig!","description":"S1:E43 - Reasons We HATE Iron Man with Evil Craig!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-iron-man-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4ec1f2d-02b1-4248-9b37-6708b8e53e69/sm/video_thumbnail_12871756-1431623499.png","duration":112,"publication_date":"2015-05-14T10:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-iron-man","changefreq":"weekly","video":[{"title":"S1:E22 - Reasons We LOVE Iron Man!","description":"S1:E22 - Reasons We LOVE Iron Man!","player_loc":"https://roosterteeth.com/embed/reasons-we-love-iron-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a83b610a-2f0d-410b-aef9-458b0dea1b95/sm/video_thumbnail_12871753-1431622058.jpg","duration":66,"publication_date":"2015-05-14T09:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nicks-worst-way-to-die-ever","changefreq":"weekly","video":[{"title":"S1:E65 - Nick's WORST way to Die EVER!","description":"Not an Advantage Subscriber? NBD! Go HERE for a FREE trial! ","player_loc":"https://roosterteeth.com/embed/nicks-worst-way-to-die-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8bce8ce-a43e-4b2a-9613-19b12a78b05f/sm/video_thumbnail_12871623-1431447670.jpg","duration":177,"publication_date":"2015-05-12T09:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sonic-vs-the-flash-one-minute-melee","changefreq":"weekly","video":[{"title":"S1:E15 - Sonic Vs. The Flash! | One Minute Melee","description":"S1:E15 - Sonic Vs. The Flash! | One Minute Melee","player_loc":"https://roosterteeth.com/embed/sonic-vs-the-flash-one-minute-melee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69655dc4-2a7f-4526-8825-ca05b8747c1e/sm/video_thumbnail_12871621-1431445819.png","duration":177,"publication_date":"2015-05-12T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amiibottles","changefreq":"weekly","video":[{"title":"S1:E883 - Amiibottles!","description":"Hybrid Rain likes water. Hybrid Rain likes Amiibos. Combine them and you get Amiibottles!!!","player_loc":"https://roosterteeth.com/embed/amiibottles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95a068f7-00d5-4b09-96b7-74a65e38a7ae/sm/video_thumbnail_12871555-1431363087.jpg","duration":368,"publication_date":"2015-05-11T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-video-game-cartoon-ever","changefreq":"weekly","video":[{"title":"S1:E64 - The Best Video Game Cartoon EVER!","description":"What's YOUR favorite video game cartoon ever? Tell us in the comments! SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nEdited by John Francis McCullagh - @johnfmfilms\r\n\r\nNick Cramer - @THENervousNick\r\nParker Bohon - @parkerbohon\r\nCraig Skistimas - @StutteringCraig\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-video-game-cartoon-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/664f8579-ac7c-4c39-bbeb-d17dbb79ce96/sm/video_thumbnail_12871547-1431358038.jpg","duration":438,"publication_date":"2015-05-11T08:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-050915","changefreq":"weekly","video":[{"title":"S1:E882 - SideScrollers Extended Cut 05/09/15","description":"Shaun really wanted to talk about nipples for some reason this week.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-050915","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30da127e-7526-4753-b72c-252235bfe897/sm/video_thumbnail_12871544-1431356770.PNG","duration":606,"publication_date":"2015-05-11T08:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-extreme-sports-games","changefreq":"weekly","video":[{"title":"S1:E134 - Top 10 EXTREME Sports Games","description":"DId your favorites make the list? No? Well tell us what we did wrong! Hope you enjoyed the vid! Thanks for watching!","player_loc":"https://roosterteeth.com/embed/top-10-extreme-sports-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/370a198c-aa2c-41a9-979b-56076f46539b/sm/video_thumbnail_12871315-1431124419.jpg","duration":647,"publication_date":"2015-05-08T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/balls-out-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E185 - Balls Out | SideScrollers","description":"Lots of ball talk and Nintendo talk this week. We've got some ideas, and more testicular fortitude than the guys in the Newsdesk.\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/balls-out-sidescrollers\r\n\r\nSend a Newsdesk story to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend an Art Show submission to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/balls-out-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34fa7388-4aef-44a2-a4ae-f6f6b1a140e1/sm/video_thumbnail_12871286-1431098915.jpg","duration":4481,"publication_date":"2015-05-08T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-banjo-kazooie","changefreq":"weekly","video":[{"title":"S1:E42 - 15 Reasons We HATE Banjo-Kazooie!","description":"These are the reasons we HATE Banjo-Kazooie! What are yours?!?","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-banjo-kazooie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e23c9bf8-a5f8-4492-9f92-1c09c5a21fae/sm/video_thumbnail_12871214-1431015125.png","duration":93,"publication_date":"2015-05-07T10:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-love-banjo-kazooie","changefreq":"weekly","video":[{"title":"S1:E23 - 15 Reasons We LOVE Banjo-Kazooie!","description":"These are the reasons we LOVE Banjo-Kazooie! What are yours?","player_loc":"https://roosterteeth.com/embed/15-reasons-we-love-banjo-kazooie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9e1b299-f6a2-4f03-aa6e-ca43276b472f/sm/video_thumbnail_12871215-1431015259.jpg","duration":77,"publication_date":"2015-05-07T10:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-bioshock","changefreq":"weekly","video":[{"title":"S1:E26 - Five Fun Facts about Bioshock","description":"S1:E26 - Five Fun Facts about Bioshock","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-bioshock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a65e9cd-9b40-4686-a2b0-efa7092d4784/sm/video_thumbnail_12871141-1430928739.jpg","duration":210,"publication_date":"2015-05-06T09:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-story-time-shauns-disturbing-childhood","changefreq":"weekly","video":[{"title":"S1:E881 - ScrewAttack Story Time: Shaun's Disturbing Childhood","description":"S1:E881 - ScrewAttack Story Time: Shaun's Disturbing Childhood","player_loc":"https://roosterteeth.com/embed/screwattack-story-time-shauns-disturbing-childhood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/929021de-98b1-47f2-808d-cf87fa7080ef/sm/video_thumbnail_12871095-1430856167.jpg","duration":1187,"publication_date":"2015-05-05T13:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-050215","changefreq":"weekly","video":[{"title":"S1:E880 - SideScrollers Extended Cut 05/02/15","description":"Let's talk Korean shopping apps!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-050215","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b1892da-87fd-4495-b879-d5906d294144/sm/video_thumbnail_12870937-1430667333.PNG","duration":575,"publication_date":"2015-05-03T08:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-wolfenstein-game-ever","changefreq":"weekly","video":[{"title":"S1:E63 - The Best Wolfenstein Game EVER!","description":"Which Wolfenstein game do you think is the Best Ever? Tell us in the comments below!\r\n\r\nEdited by John Francis McCullagh - @JohnFMFilms\r\n\r\nStarring\r\nBryan Baker - @tehrealbryan\r\nSean Hinz - @SeanHinz\r\nSam Mitchell - @ScrewAttackSam\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-wolfenstein-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24217066-1b30-43a1-93ea-1c292215f38a/sm/video_thumbnail_12870859-1430586054.jpg","duration":453,"publication_date":"2015-05-02T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dildozer-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E184 - Dildozer | SideScrollers","description":"A very phallic and comic episode of SideScrollers comes your way this week!\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/dildozer-sidescrollers\r\n\r\nSend Sam a Newsdesk story!\r\nSam@ScrewAttack.com\r\n\r\nSubmit a piece for The Art Show\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/dildozer-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdce65c0-b101-4550-a7ae-b9b0424b1e17/sm/video_thumbnail_12870801-1430492046.jpg","duration":4557,"publication_date":"2015-05-02T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/22-reasons-we-love-pokemon","changefreq":"weekly","video":[{"title":"S1:E24 - 22 Reasons We LOVE Pokemon!","description":"These are the reasons we LOVE Pokemon! What are yours?","player_loc":"https://roosterteeth.com/embed/22-reasons-we-love-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68ae57c0-2004-4843-8253-a8a9c006cad2/sm/video_thumbnail_12870739-1430410980.jpg","duration":76,"publication_date":"2015-05-01T10:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-pokemon","changefreq":"weekly","video":[{"title":"S1:E41 - Reasons we HATE Pokemon!","description":"These are the reasons we HATE Pokemon!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1f3ab2b-9809-4d50-bff0-5738f57b3e25/sm/video_thumbnail_12870740-1430411136.jpg","duration":138,"publication_date":"2015-05-01T10:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-mario-kart-8-dlc-good","changefreq":"weekly","video":[{"title":"S1:E12 - Is Mario Kart 8 DLC Good?","description":"Was it good? Tell us what you thought!","player_loc":"https://roosterteeth.com/embed/is-mario-kart-8-dlc-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbb35636-d640-4ab1-a1b9-255601bffca2/sm/video_thumbnail_12870685-1430333502.jpg","duration":85,"publication_date":"2015-04-30T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-21","changefreq":"weekly","video":[{"title":"S2:E21 - Iron Man VS Lex Luthor","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26c609fb-8bcc-4ba3-8a04-0ac4ed5de54b/sm/video_thumbnail_12870519-1430277973.jpg","duration":1414,"publication_date":"2015-04-28T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-samus-aran-vs-mega-man","changefreq":"weekly","video":[{"title":"S1:E14 - One Minute Melee | Samus Aran vs Mega Man","description":"S1:E14 - One Minute Melee | Samus Aran vs Mega Man","player_loc":"https://roosterteeth.com/embed/one-minute-melee-samus-aran-vs-mega-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcc23a76-6363-440b-8a75-3f0a6af3275e/sm/video_thumbnail_12870453-1430235461.jpg","duration":224,"publication_date":"2015-04-28T08:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/spider-man-rides-out-in-the-spider-mobile-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E7 - Spider-Man rides out in the Spider-Mobile! | The Desk of DEATH BATTLE","description":"Learn AMAZING useless knowledge about pop culture icons you never thought you needed to know every two weeks (Sundays) on the Desk of DEATH BATTLE. Make sure SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss an episode!\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack\r\n\r\nSpider-Man rides out in the Spider-Mobile! | The Desk of DEATH BATTLE","player_loc":"https://roosterteeth.com/embed/spider-man-rides-out-in-the-spider-mobile-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3f844f9-2af4-44d2-a1ed-379e85f6a4ee/sm/video_thumbnail_12870236-1430054156.jpg","duration":335,"publication_date":"2015-04-26T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-assassins-creed-chronicles-china-good","changefreq":"weekly","video":[{"title":"S1:E11 - Is Assassin's Creed Chronicles: China Good?","description":"Was it good? Let us know what you think!","player_loc":"https://roosterteeth.com/embed/is-assassins-creed-chronicles-china-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37852277-8b08-4e67-8e18-dcc3c4caa4e4/sm/video_thumbnail_12870081-1429897238.jpg","duration":98,"publication_date":"2015-04-26T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-042515","changefreq":"weekly","video":[{"title":"S1:E879 - SideScrollers Extended Cut 04/25/15","description":"Let's talk about ScrewAttack TV!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-042515","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b49d98f-e06b-40d8-804c-739040f95427/sm/video_thumbnail_12870183-1429993884.PNG","duration":913,"publication_date":"2015-04-25T13:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-way-to-die-ever","changefreq":"weekly","video":[{"title":"S1:E62 - The Worst Way to Die EVER!","description":"What do you think is the Worst EVER way to die in a video game? Be sure to tell is in the comments!\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-worst-way-to-die-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/105ce882-bd6c-4746-9939-2f4ff2364684/sm/video_thumbnail_12870174-1429983083.jpg","duration":386,"publication_date":"2015-04-25T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/snored-to-death-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E183 - Snored to Death | SideScrollers","description":"This time on SideScrollers, Austin and Sean join Sam to dig into what Warner Bros may have done right, and what Microsoft and Steam are doing wrong. Plus, WTF is going on in China?\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/snored-to-death-sidescrollers\r\n\r\nHave a Newsdesk story? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend your Art Show submission to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/snored-to-death-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6766f984-a4b4-4e91-bc59-e3bb823f62f8/sm/video_thumbnail_12870118-1429927043.jpg","duration":4677,"publication_date":"2015-04-25T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-hidden-gems-of-the-last-console-generation-ps3-xbox-360-wii","changefreq":"weekly","video":[{"title":"S1:E133 - Top 10 Hidden Gems Of The Last Console Generation (PS3, Xbox 360, Wii)","description":"If you have moved to the new generation of consoles but want to at least play those games that have to be a must to experience, we have you a list of games you must play before moving to your new PS4, Xbox One and WiiU.\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/top-10-hidden-gems-of-the-last-console-generation-ps3-xbox-360-wii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd66b4c5-7864-413c-9813-38ccf9af26cf/sm/video_thumbnail_12870099-1429911543.jpg","duration":596,"publication_date":"2015-04-24T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shaun-gets-too-meta-the-best-ever-extended","changefreq":"weekly","video":[{"title":"S1:E878 - Shaun Gets Too Meta | The Best EVER! Extended","description":"S1:E878 - Shaun Gets Too Meta | The Best EVER! Extended","player_loc":"https://roosterteeth.com/embed/shaun-gets-too-meta-the-best-ever-extended","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f50e6cd-0159-4d83-adbe-87db449bdf1b/sm/video_thumbnail_12869980-1429814234.jpg","duration":336,"publication_date":"2015-04-23T11:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/24-reasons-we-love-assassins-creed","changefreq":"weekly","video":[{"title":"S1:E25 - 24 Reasons We LOVE Assassin's Creed!","description":"These are the reasons we LOVE Assasin's Creed! What are yours?","player_loc":"https://roosterteeth.com/embed/24-reasons-we-love-assassins-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5936cc28-17b2-4f82-979a-50d4e547e377/sm/video_thumbnail_12869973-1429804977.jpg","duration":105,"publication_date":"2015-04-23T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-evil-craig-hates-assassins-creed","changefreq":"weekly","video":[{"title":"S1:E40 - 14 Reasons Evil Craig HATES Assassin's Creed!","description":"These are the reasons Evil Craig HATES Assassin's Creed!","player_loc":"https://roosterteeth.com/embed/14-reasons-evil-craig-hates-assassins-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8649578-1b68-43f0-b6db-b1c7856e5538/sm/video_thumbnail_12869972-1429804835.png","duration":89,"publication_date":"2015-04-23T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-twisted-metal","changefreq":"weekly","video":[{"title":"S1:E25 - Five Fun Facts about Twisted Metal","description":"S1:E25 - Five Fun Facts about Twisted Metal","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-twisted-metal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a59b8439-21ab-499a-a150-6368ddc5dac9/sm/video_thumbnail_12869910-1429719961.jpg","duration":266,"publication_date":"2015-04-22T09:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-39-wizards-of-the-demon-sword","changefreq":"weekly","video":[{"title":"2017:E39 - Episode #39: Wizards of the Demon Sword","description":"Ay! I'm walkin' here! And by \"here\" I mean Fantasy New Jersey, where this movie is apparently set. This movie's got everything: girls, dinosaurs, and a coupla guys bein' dudes!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-39-wizards-of-the-demon-sword","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/514b9266-87d9-4f85-b5f6-7e8e3215b34d/sm/2013912-1495813643996-TM_-_Demon_Sword_-_THUMB.jpg","duration":5312,"publication_date":"2017-05-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-part-4-2","changefreq":"weekly","video":[{"title":"2017:E173 - Golf With Your Friends - Part 4","description":"Achievement Hunter tries out classic mode on the new Ancient map in this fourth installment of Golf With Your Friends.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-part-4-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/865b7c25-1c77-490b-9dce-abd215ddec82/sm/2013912-1495732669617-GWYF_Part4.jpg","duration":1822,"publication_date":"2017-05-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-drawful-2-with-kinda-funny","changefreq":"weekly","video":[{"title":"2017:E175 - Drawful 2 with Kinda Funny","description":"Nick and Tim from Kinda Funny came by to play some Drawful 2 with Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-drawful-2-with-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4b9cf4d-5a27-4643-9b24-17dce02d3dbf/sm/2013912-1495742196608-Drawful_2_With_KindaFunny_THUMB.jpg","duration":2309,"publication_date":"2017-05-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-51","changefreq":"weekly","video":[{"title":"2017:E171 - Let's Watch - Prey - Part 4","description":"Jeremy discovers a secret compartment, listens to himself talk for a bit, searches for hidden photos of Austin, and fights more mad, monstrous mimics in our fourth installment of Prey.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ee19366-0cd3-48da-a88f-d4935b0a8280/sm/2013912-1495646931831-LW_Prey_Part4_Thumb.jpg","duration":2455,"publication_date":"2017-05-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-toaster-leg","changefreq":"weekly","video":[{"title":"2017:E5 - Bread Leg Toaster","description":"Gavin poses a question for the ages: Would you pay $1,000 to have a thigh toaster? Simple answer: What?!\n\n\n\n\n\n\n\nAnimation audio from here.","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-toaster-leg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f43dbc30-8302-4c90-bcc6-f981164bcf79/sm/2013912-1495657331502-AH_Animated_Thumbnail.jpg","duration":106,"publication_date":"2017-05-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-261-achievement-highlands-grippin-and-rippin","changefreq":"weekly","video":[{"title":"2017:E172 - Minecraft - Episode 261 - Achievement Highlands: Grippin' and Rippin'","description":"Flags have been stolen! Jack has four of the six flags needed to be the ultimate flag-haver of AH Highlands and win the Tower of Pimps! Does this mean easy victory for Mr. Pattillo, or will someone come nab all his hard-earned flags? With footsteps drowned out by Geoff's tales of airplane time and Bob the Local Legend, he'll never hear them coming,","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-261-achievement-highlands-grippin-and-rippin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f01e8084-30bc-4840-a481-cd5eb799f19e/sm/2013912-1495657468553-minecraft2.jpg","duration":3072,"publication_date":"2017-05-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-52","changefreq":"weekly","video":[{"title":"2017:E170 - Let's Watch - Outlast 2 - Part 7","description":"Like a 90's comedy, Michael and Gavin are going back to school. It's more or less the same premise, but replace 90's comedy tropes with death and tongue monsters.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/868e7b21-762c-49cc-a6d0-1968858b7171/sm/2013912-1495572585738-LW_Outlast2_PART7.png","duration":2312,"publication_date":"2017-05-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-prey-messing-with-mimics","changefreq":"weekly","video":[{"title":"2017:E22 - Prey - Messing with Mimics","description":"Special thanks to Bethesda for sponsoring this video. You can follow and download Prey at https://beth.games/2qaLAQ7\n\n\n\nMimics have so many possibilities in Prey. They can become literally anything! Once you figure out what exactly they are though, it only makes sense to mess with them in as many ways as you can think of.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-prey-messing-with-mimics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdbed8c1-b789-4a28-8db3-5e628482df4c/sm/2013912-1495482622944-prey.jpg","duration":367,"publication_date":"2017-05-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-injustice-2","changefreq":"weekly","video":[{"title":"2017:E169 - Injustice 2","description":"Batman v Superman: Dawn of Justice might not have been the most well-received movie ever, so now it's up to Achievement Hunter to make better DC character v character matches in Injustice 2. Maybe something like, \"Batman v Scarecrow: Dawn of Batman Tackles Scarecrow and Then Attaches Him to a Balloon, Sending Him into the Sky, Only to be Targeted by the Batwing and Shot by Machine Gun Bullets and Also a Missile and Somehow Miraculously This Doesn't Kill Him.\" The title might be a little wordy, but at least it's really cool!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-injustice-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a393aea-341e-4188-9c43-6e3520b0cbd4/sm/1230840-1495815549860-Injustice2c.jpg","duration":1827,"publication_date":"2017-05-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/between-the-games-2017-17","changefreq":"weekly","video":[{"title":"2017:E1 - Between the Games - Flinchless Kickie-Doo","description":"Gavin introduces a new game to Trevor, Jeremy, Jack, and Matt. Flinchless Kickie-Doo is a British neo-classic created by the one and only Gavin Free in 2017. It's been cherished by all the young British bloke for the past week or so. It's rumored that flinchless kickie-doo is soon to replace keepie-uppie as the premiere football feetie-footie game across the globe.","player_loc":"https://roosterteeth.com/embed/between-the-games-2017-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3d9a509-8d63-470d-a557-17fac9e8c843/sm/2013912-1495490733703-Flinchless_Kickie-doo_2.jpg","duration":413,"publication_date":"2017-05-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-deformers","changefreq":"weekly","video":[{"title":"2017:E168 - Deformers","description":"Six squishy ball buddies went out one dayto frolic and play soccer in a squishy-ball way.Matt makes his friends play his new favorite game.Watch the video to see who's good.... and who's lame.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-deformers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ad231f4-9efb-4571-b8a6-d061e87a5d9f/sm/2013912-1495470864906-LP_Deformers_Thumb.jpg","duration":1620,"publication_date":"2017-05-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-49","changefreq":"weekly","video":[{"title":"2017:E164 - Let's Watch - Outlast 2 - Part 6","description":"The plot thickens as Michael and Gavin's mental state continues to deteriorate. Also, they play more Outlast 2.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea3bbf3a-c86f-4fb6-94fa-b15102a0406f/sm/843681-1495565688929-LW_Outlast2_PART6.png","duration":2520,"publication_date":"2017-05-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-trivial-pursuit-part-10","changefreq":"weekly","video":[{"title":"2017:E167 - Trivial Pursuit - Part 10","description":"Achievement Hunter is back showing off their brain muscles in Trivial Pursuit. Learn everything you needed to know about sports, frogs, and albatrosses.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-trivial-pursuit-part-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6d7a9e3-ed07-40bc-8141-4b05f0f86af7/sm/2013912-1495223845938-LP_TrivialPursuit7.png","duration":2952,"publication_date":"2017-05-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-50","changefreq":"weekly","video":[{"title":"2017:E166 - Let's Watch - Prey - Part 3","description":"Jeremy fights more goopy-goop mimics with his gloppy-glue gun as he gloms some globs on walls to get out of the ghastly, gorey, ghoulish Space Station. That whole alliteration thing really fell apart there at the last minute, didn't it?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a57ccae-b4f6-47b3-b445-9bdb64c9216f/sm/2013912-1495223271645-LW_PreySPONSOR.jpg","duration":2800,"publication_date":"2017-05-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-77-sg83hj","changefreq":"weekly","video":[{"title":"2017:E19 - The Rematch - Last Call #77","description":"The AH Crew stand up to talk about the mistake shot, Texas licenses, arm wrestling, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-77-sg83hj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bd9d3d9-b24a-4486-82bd-cf43cf82d7a6/sm/2013912-1495235464844-OFF77_-_PS_-_THUMB.jpg","duration":1246,"publication_date":"2017-05-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-grappling-with-mortality-ahwu-for-may-22-nd-2017-370","changefreq":"weekly","video":[{"title":"2017:E21 - Grappling With Mortality! - AHWU for May 22nd, 2017 (#370) ","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU.Achievement Hunter has more packages to unbox, even after that hour-long stream. If you missed it, you can check it out by clicking this link: https://youtu.be/fPgwO80z6I0. Today's AHWU is spent opening lots of fun toys. Some are dangerous, and others are even more dangerous. Just cross your fingers and hope no one gets maimed this time!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-grappling-with-mortality-ahwu-for-may-22-nd-2017-370","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34b3764a-d675-4729-9d19-e957034a9cf5/sm/2013912-1495233896654-ahwu1.jpg","duration":1017,"publication_date":"2017-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-the-humane-labs-raid-criminal-masterminds-part-6","changefreq":"weekly","video":[{"title":"2017:E165 - GTA V - The Humane Labs Raid - Criminal Masterminds (Part 6)","description":"It's time, ladies and gentlemen, for a Heist! You've watched them cake walk through the Fleeca Job. You saw them scramble through the Prison Break. Can these incompetent fools possibly succeed at the Humane Labs Raid? There's only way way to find out without being a cheaty-cheat and looking up spoilers in the comments, so sit back, enlarge the video, and see what's in store for the wannabe Criminal Masterminds at Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-the-humane-labs-raid-criminal-masterminds-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f10cce3-a722-4a0e-8a78-3c02f55b64bc/sm/2013912-1495213836744-HumaneLabsRaid_Finale.jpg","duration":2158,"publication_date":"2017-05-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-77-hg7hg","changefreq":"weekly","video":[{"title":"2017:E77 - Run, Jump, and Jump Really Far - #77","description":"The AH Crew sit down to talk about movie ratings, hypothetical situations, music tastes, and more on this week's Off Topic!\n\nThis episode originally aired May 19, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-77-hg7hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db496f74-280e-4c71-b793-d7ae7f70705c/sm/2013912-1495235457668-OFF77_-_THUMB.jpg","duration":8851,"publication_date":"2017-05-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-38-monster-in-the-closet","changefreq":"weekly","video":[{"title":"2017:E38 - Episode #38: Monster in the Closet","description":"No homophobic propaganda here! Clark Kent, Paul Walker, Fergie and Stan Lee star in this wacky creature feature!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-38-monster-in-the-closet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6fb2b0b-f4e2-4abb-b73f-6c623bc8c6fd/sm/2013912-1495212424677-TM_-_Monster_Closet_-_THUMB.jpg","duration":5606,"publication_date":"2017-05-19T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-it-part-1","changefreq":"weekly","video":[{"title":"2017:E163 - Golf It! - Part 1","description":"Achievement Hunter doesn't wind down from a long day of work by golfing. They turn that golfing into the work! They're reading to get golfing in Golf It! - the golf game where your swing is determined by how violently you move the mouse. Be warned though. This is golf planet, where we sort of just make up the physics as we go along.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-it-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/154c9422-a72d-42a6-aa54-539e3ad96169/sm/2013912-1495143568541-GolfIt_Thumb_v002.png","duration":2117,"publication_date":"2017-05-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-48","changefreq":"weekly","video":[{"title":"2017:E161 - Let's Watch - Outlast 2 - Part 5","description":"Just like The Last Jedi, part 5 picks up exactly where part 4 left off. Discover what horrors lie within the chapel, and be sure to sing along to the hot new single, \"Hide You in the Blood.\"","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d98024a7-3ff3-4e4b-86bd-272ff85c5f11/sm/843681-1495565820489-LW_Outlast2_PART5.png","duration":1878,"publication_date":"2017-05-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-260-achievement-highlands","changefreq":"weekly","video":[{"title":"2017:E162 - Minecraft - Episode 260 - Achievement Highlands","description":"Somewhere far north of Achievement City, six towers have dislodged themselves from the ground and are now floating in the sky. Each tower has a flag. Each tower has an Achievement Hunter. He who controls all six flags controls the towers. He who controls the towers wins the only tower that really matters - the Tower of Pimps.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-260-achievement-highlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9198b8b-5888-461b-b67a-dcb95a3954d4/sm/2013912-1495121432386-MC_260_Thumb.jpg","duration":3167,"publication_date":"2017-05-18T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-worms-battlegrounds","changefreq":"weekly","video":[{"title":"2017:E8 - Worms Battlegrounds","description":"Jeremy, Michael, Geoff, and Ryan (plus special guests *NSYNC and Funhaus) revisit the world of Worms Battlegrounds in today's RouLetsPlay.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-worms-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76e0e7a0-da2c-42ad-94bb-5d7841a3290f/sm/2013912-1495050439472-worms.jpg","duration":1259,"publication_date":"2017-05-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-10","changefreq":"weekly","video":[{"title":"S2:E10 - Episode 10: Bonus Episode","description":"School is in session for one last lesson with Professor Gus!\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished. Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T:AT&T Hello Lab Twitter: http://www.twitter.com/atthellolabAT&T Hello Lab Instagram: http://www.instagram.com/atthellolabAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam:Check out Brawlhalla on Steam: http://store.steampowered.com/app/291550/Check out Masky on Steam: http://store.steampowered.com/app/291550/Check out Speedrunners on Steam: http://store.steampowered.com/app/207140/Check out TImberman on Steam: http://store.steampowered.com/app/398710/Check out Tricky Tower on Steam: http://store.steampowered.com/app/437920/Check out Move or Die on Steam: http://store.steampowered.com/app/323850/Check out Ultimate Chicken Horse on Steam: http://store.steampowered.com/app/386940/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eef2bbb-9910-478f-91e5-967b4a64aeea/sm/2013912-1495034884656-Schooled210Thumbnail.png","duration":169,"publication_date":"2017-05-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-30-post-show-0835-hjg","changefreq":"weekly","video":[{"title":"2017:E10 - #30 Post Show","description":"A look back at Season 2 along with more Art and Animation.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-30-post-show-0835-hjg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d7a3c1b-13e5-4a4d-9872-5137dc84aa5e/sm/2369885-1494975645770-HH30_-_PS_-_THUMB.jpg","duration":795,"publication_date":"2017-05-17T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-jousting","changefreq":"weekly","video":[{"title":"2017:E21 - Halo 5 - Jousting","description":"Jousting: A martial game between two horsemen wielding weapons of joust with blunted tips, often as part of a tournament.\n\nAchievement Hunter Jousting: A Halo 5 game type between idiots on warthogs wielding poke sticks with explosive tips, often as a part of a Things to Do.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMap \n\n\n\n\n\n\n\n\n\n\n\n\n\nGametype \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMap and Game by: FRED lllll","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-jousting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/615f31c0-ac7a-4ddd-9906-2208ce130620/sm/2013912-1494968033857-TTD_HaloJousting.png","duration":610,"publication_date":"2017-05-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-gmod-trouble-in-terrorist-town-part-4","changefreq":"weekly","video":[{"title":"2017:E160 - Let's Play – Gmod: Trouble in Terrorist Town Part 4","description":"Achievement Hunter loaded up their guns and headed straight into town. Little did they know, one of them was ready to betray the other. Well, more like everyone was ready to betray everyone, whether or not they were the traitor. Except Geoff. Geoff's never the killer.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-gmod-trouble-in-terrorist-town-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23e3fc09-235d-47e8-adb7-751a19ca5aa8/sm/1104396-1495003485176-TTT_Pt4_Thumb.png","duration":2296,"publication_date":"2017-05-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-47","changefreq":"weekly","video":[{"title":"2017:E159 - Let's Watch - Outlast 2 - Part 4","description":"The boys must slip by the \"Dick Chopper\" to continue their quest to the chapel. Can they get by her, or will their collective dicks get chopped?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b184b526-5033-4b36-b50e-f69c23a3d98f/sm/2013912-1494871011510-LW_Outlast2_PART4.png","duration":1735,"publication_date":"2017-05-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-30-sf83jg","changefreq":"weekly","video":[{"title":"2017:E30 - \"Stuck In the Ribcage With You\" - #30","description":"In the season finale, our beloved halfwits split the party again because, of course they do. Bo Jingles and Bor Ealis continue to enact their plan to ambush the mayor of Ribcage. The rest of the party pose as revelers. Meanwhile, the constable's investigation into the salamander attack yields up some interesting answers.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSponsored by Blue Apron (http://cook.ba/2jeJr22) and Schooled (http://bit.ly/2ql2Nsw)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-30-sf83jg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c36be0d-4073-40b8-b950-1d054a149eb1/sm/2369885-1494947500864-HH30_-_THUMB.jpg","duration":9694,"publication_date":"2017-05-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-payday-2-round-3-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E158 - Payday 2 (Round 3): AH Live Stream","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT.\n\n\n\nMichael, Geoff, Jack, and Matt return to Payday 2 to rob more banks and steal more jewelry.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-payday-2-round-3-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ebc795d-53aa-46a4-b42d-776142dde7f4/sm/2013912-1494870786076-Payday2Round3_B.jpg","duration":2678,"publication_date":"2017-05-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-46","changefreq":"weekly","video":[{"title":"2017:E157 - Let's Watch - Hitman - Elusive Target: The Badboy","description":"Ryan and Gavin return to the streets of Sapienza as Agent 47, where film star Bartholomew Argos is shooting a movie. Will he make it on set for his director's next shot, or will Achievement Hunter shoot him first?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66cd65b4-2569-4e47-bc37-e0b05133d83b/sm/2013912-1494628653433-LW_Hitman_Thumb.jpg","duration":1417,"publication_date":"2017-05-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-cloudberry-kingdom-part-21","changefreq":"weekly","video":[{"title":"2017:E156 - Cloudberry Kingdom - Part 21","description":"Jack, Michael, Gavin, and kind of Ryan are back playing Cloudberry. This time, they're jumping over lava and dodging happy looking spike balls, because I guess that's what you do in this game.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-cloudberry-kingdom-part-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b16acba4-8044-467a-9570-f0f3db078abf/sm/2013912-1494628543171-LP_Cloudberry21.png","duration":2309,"publication_date":"2017-05-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-45","changefreq":"weekly","video":[{"title":"2017:E155 - Let's Watch - Outlast 2 - Part 3","description":"Michael and Gavin are back playing Outlast 2. For part 3, they must get the generator working to access the elevator. How hard can that be?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3577a2bc-4236-43c2-b640-c4bddb78eb58/sm/843681-1495565954601-LW_Outlast2_PART3.png","duration":1968,"publication_date":"2017-05-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-76-n30gjk","changefreq":"weekly","video":[{"title":"2017:E18 - Jack Breaks Things Part 3 - Last Call #76","description":"The AH Crew and special guest Dante Basco stand up to talk about breaking stuff, AH lore, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-76-n30gjk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcbe07fd-43d6-473a-ad21-fa571e5cf410/sm/2013912-1494633810201-Off76_PS_Thumbnail.png","duration":932,"publication_date":"2017-05-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-jazz-man-geoff-ahwu-for-may-15-th-2017-369","changefreq":"weekly","video":[{"title":"2017:E20 - Jazz Man Geoff - AHWU for May 15th, 2017 (#369)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link:\n\nhttp://www.mvmtwatches.com/AHWU\n\n\n\nNot many people know this, but Geoff has dreamed of being a world-class trumpet-playing jazz musician since he was a wee little Geoff. With the power of baby toys, he can finally do it! Most days, we unbox weapons. Some days, we unbox dreams. Thanks, AHWU contributors! Make plans to see Geoff play live in concert at the dumpster behind Carnegie Hall some time in 2018.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-jazz-man-geoff-ahwu-for-may-15-th-2017-369","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19abea2a-8f7c-4f96-858b-9d16ab59e3a5/sm/2013912-1494614839144-ahwu_1.jpg","duration":1017,"publication_date":"2017-05-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-humane-raid-setup-criminal-masterminds-part-5","changefreq":"weekly","video":[{"title":"2017:E153 - GTA V - Humane Raid: Setup - Criminal Masterminds (Part 5)","description":"Three setups down, two setups to go! The Criminal Masterminds at Achievement Hunter are so close to doing the Humane Labs Raid Heist, but first they must steal a Valkyrie helicopter and plant an EMP-laden truck at the Humane Labs. Can these weasely sneaks catch the guards with their pants down, or are they about to get seriously stomped?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-humane-raid-setup-criminal-masterminds-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c44f370-4b66-4638-b827-3a4be0570343/sm/2013912-1494538762610-HumaneLabs_CMpt5_Thumb_B.jpg","duration":3497,"publication_date":"2017-05-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-76-ahifhk","changefreq":"weekly","video":[{"title":"2017:E76 - The Geoff Experience - #76","description":"The AH Crew and special guest Dante Basco sit down to talk about Geoff’s diet tea, voice acting, spicy peppers and pain, and more on this week's Off Topic!\n\nThis episode originally aired May 12, 2017 and is sponsored by Casper (http://bit.ly/29nKmbI) and MVMT Watches (http://bit.ly/2iLo5gb)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-76-ahifhk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bd2af73-dd39-4ab7-88ba-29b206923cf3/sm/2013912-1494633823667-OFF76_thumbnail.png","duration":9550,"publication_date":"2017-05-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-37-luther-the-geek","changefreq":"weekly","video":[{"title":"2017:E37 - Episode #37: Luther The Geek","description":"*Chicken noises*","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-37-luther-the-geek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc61d8be-a4ce-45cd-b0d4-9535322a3339/sm/2013912-1494604480781-TM_-_Monster_Closet_-_THUMB.jpg","duration":5040,"publication_date":"2017-05-12T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-fourteenth-day","changefreq":"weekly","video":[{"title":"2017:E154 - 7 Days to Die - Fourteenth Day","description":"It's another adventure day for our wasteland survivors, but that doesn't mean they won't encounter hordes of zombies!In this episode: Ryan travels by night, Jeremy loses more motor functions, Michael gets cold, Jack takes his own adventure and Geoff takes care of the bunker.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-fourteenth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed669668-323f-41c6-b7e1-c219a9d54e15/sm/2013912-1494539293440-AH_7Days_Day14_THUMB2.png","duration":3663,"publication_date":"2017-05-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-44","changefreq":"weekly","video":[{"title":"2017:E152 - Let's Watch - Prey Part 2","description":"Achievement Hunter is back in spooky Prey land. Oh no! That chair's really a mimic. Shoot the chair. Shoot the table. Shoot those commemorative Disney glasses you bought at McDonalds twenty years ago! We didn't have two Goofy glasses. There was certainly only one Goofy glass. Trust nothing. Shoot it all! SHOOT IT!!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9dcc826-d914-4335-9619-a52449ea30de/sm/2013912-1494520456513-LW_Prey_PART2.png","duration":2711,"publication_date":"2017-05-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-let-s-play-presents-announcement","changefreq":"weekly","video":[{"title":"2017:E9 - Let's Play Presents - Announcement","description":"A very special announcement from Achievement Hunter. \n\nSubscribe to the Ubisoft US Channel and check out Achievement Hunter and other Let's Play guests every Thursday for the Let's Play Presents weekly series. https://www.youtube.com/channel/UCBMvc6jvuTxH6TNo9ThpYjg","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-let-s-play-presents-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/777cc2fe-701c-463a-9a38-cc414379a6d5/sm/2013912-1494442129704-Lets_Play_Presents_Thumb.png","duration":141,"publication_date":"2017-05-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-259","changefreq":"weekly","video":[{"title":"2017:E151 - Minecraft - Episode 259 - Dark Monopoly Finale","description":"Achievement Hunter tried hard to run away from Monopoly. Michael and Gavin even agreed to be in a movie so they didn't have to film it. But Monopoly keeps calling these boys back to The Nether, and they're going to finish playing whether they like it or not. There might be some portal walls and bank heists between turns, but don't worry. The sanctity of the game will not be tarnished. No Jack Pattillo cheating this time around.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-259","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b4f720f-ddb0-41fb-b3a3-5750951fd4d3/sm/2013912-1494520688564-mc_thumb_new.jpg","duration":5212,"publication_date":"2017-05-11T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-choose-your-pokemon","changefreq":"weekly","video":[{"title":"2017:E4 - Choose Your Pokemon","description":"It's time for Pokemon trainer Jeremy to choose his starter Pokemon. Will he go for the dumb one, the less dumb one, or the dumbest dumb one that literally no one has ever taken?\n\nCheck out Pocket Play - Pokemon Moon to see the whole journey\n\n\n\n\n\nAnimated by Shaun Cunningham","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-choose-your-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a588c40-619c-4e53-aa01-c6f6bc1ebe0f/sm/2013912-1494430640072-AH_Animated_Thumbnail.jpg","duration":123,"publication_date":"2017-05-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-9-hot-pepper-challenge","changefreq":"weekly","video":[{"title":"S2:E9 - Episode 9: Hot Pepper Challenge","description":"It's punishment time, and pain is on the menu with a hint of spice!\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished. Thanks to AT&T Hello Lab for sponsoring this video.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T:AT&T Hello Lab Twitter: http://www.twitter.com/atthellolabAT&T Hello Lab Instagram: http://www.instagram.com/atthellolabAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam:Check out Brawlhalla on Steam: http://store.steampowered.com/app/291550/Check out Masky on Steam: http://store.steampowered.com/app/291550/Check out Speedrunners on Steam: http://store.steampowered.com/app/207140/Check out TImberman on Steam: http://store.steampowered.com/app/398710/Check out Tricky Tower on Steam: http://store.steampowered.com/app/437920/Check out Move or Die on Steam: http://store.steampowered.com/app/323850/Check out Ultimate Chicken Horse on Steam: http://store.steampowered.com/app/386940/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-9-hot-pepper-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4781e029-b01c-40a9-b7b1-9221d8d3760c/sm/2013912-1494444373792-Schooled209ThumbnailV2.png","duration":608,"publication_date":"2017-05-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-43","changefreq":"weekly","video":[{"title":"2017:E150 - Let's Watch - Outlast 2 - Part 2","description":"After their brief encounter with the \"Dick Chopper\" the boys continue to get lost on this farm full of demonic biblical references and body parts. Also, a lot of reading. So get ready for the most disturbing episode of Reading Rainbow you've ever seen.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9abbee98-164d-47a3-a59f-d72b2976076b/sm/2013912-1494359930390-LW_Outlast2_PART2.png","duration":2238,"publication_date":"2017-05-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-prop-hunt","changefreq":"weekly","video":[{"title":"2017:E20 - Halo 5 - Prop Hunt","description":"Oh Prop Hunt. What an inventive way to play hide and seek and really piss off your friends. Today's Things to Do in Halo 5 is a fine example of this. \n\n\n\n\n\nMap: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?query=prop%20hunt&lastModifiedFilter=Everything&sortOrder=Relevence&page=3#ugc_halo-5-guardians_xbox-one_mapvariant_JoeAct20_4be11f98-99ea-4272-a2d6-ef954bd0aedc\n\n\n\nGametype: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=JoeAct20#ugc_halo-5-guardians_xbox-one_gamevariant_JoeAct20_1259a1f7-ba37-4284-b5d6-210a76ab89cd","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-prop-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/454b7dae-d534-443a-acc9-be03e81b473f/sm/2013912-1494351944844-TTD_HaloPropHunt.png","duration":1095,"publication_date":"2017-05-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-sunday-driving-in-ghost-recon-wildlands","changefreq":"weekly","video":[{"title":"2017:E149 - Sunday Driving in Ghost Recon Wildlands ","description":"Geoff gets Ryan, Jeremy and Jack to join him on a leisurely, if not somewhat artillery-heavy, drive in Ghost Recon Wildlands.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-sunday-driving-in-ghost-recon-wildlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9ae33ab-1d82-4a97-916c-ad8db9ea0242/sm/2013912-1494359842213-LP_GhostRW-SundayDriving_Thumb3-d.png","duration":3527,"publication_date":"2017-05-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2017-2-prey-4-achievements-in-the-first-hour","changefreq":"weekly","video":[{"title":"2017:E1 - Prey - 4 Achievements in the First Hour","description":"There's a ton of cool stuff in Prey, Including some easy to miss achievements. Don't worry though with this video you can get the No show, Mimic Massacre, Intrinsic Value, and Reduce, Reuse, Recycle achievements all withing you first hour of Preying. That was a pun. It's like playing but with Prey.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2017-2-prey-4-achievements-in-the-first-hour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d06cd3de-c378-4349-91fd-61f17e70bc7b/sm/1104396-1494370048557-prey2.jpg","duration":242,"publication_date":"2017-05-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-42","changefreq":"weekly","video":[{"title":"2017:E147 - Let's Watch - Prey","description":"Special thanks to Bethesda for sponsoring this video. You can follow and download Prey at https://beth.games/2qaLAQ7\n\n\n\nJack, Jeremy, and Geoff sit down to start their playthrough of Prey. You should sit down and join them. Go ahead, take a seat. Oh SHIIIII the chair just turned into a crazy tentacle doom monster! You better take care of that before it eats your face and multiplies... Nope. Never mind. Too late.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b60afb09-d4e7-4eaf-8d48-0d3441565a4f/sm/2013912-1494259906045-LW_PreySPONSOR.png","duration":3144,"publication_date":"2017-05-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2017-loot-box-looters-200-unboxing","changefreq":"weekly","video":[{"title":"2017:E5 - Loot Box Looters","description":"Sup guys. Matt Bragg here. So Overwatch has been out for about a year now. Cool game, right? You know what's not cool? Since the game came out, Larry has refused to open a single loot box. Yeah, I don't get why he is the way he is either. But hey, good day for me. The company decided to send Larry out of town for the Let's Play Live east coast tour. Now that he's gone, guess I've got some Loot Boxes to open.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2017-loot-box-looters-200-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e1b6bbf-cd0d-43d0-84ec-28ec3b767e01/sm/2013912-1494279150334-AHBehindDaScenes_LootBoxLooters_1.png","duration":617,"publication_date":"2017-05-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-paladins","changefreq":"weekly","video":[{"title":"2017:E148 - Paladins","description":"Geoff got a really cool Drogoz skin from his Double Gold box, so what better way to enjoy it than to make Achievement Hunter play Paladins together?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-paladins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/377727af-0e89-44e3-be19-6d07498e6909/sm/2013912-1494281952984-PaladinsThumb1.jpg","duration":1976,"publication_date":"2017-05-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-w-o-l-v-e-r-i-n-e-s-ahwu-for-may-8-th-2017-368","changefreq":"weekly","video":[{"title":"2017:E368 - WOLVERINES! - AHWU for May 8th, 2017 (#368)","description":"Thanks to ProFlowers for sponsoring today's video. You can get 100 Blooms for Mom with a free vase starting at 19.99 buy going to ProFlowers.com and using code JACKANDGEOFF.\n\nThanks to the never-ending stack of AHWU weapons that need unboxing, there's now three Wolverine claws sitting in the office. United by their slashy hand blades, Achievement Hunter doesn't need to be Achievement Hunter anymore. Now, they are the Wolverines! Wooooooooolverines! Right now seems like an appropriate time for this here description to parody some big speech from Red Dawn, throwing in a couple of things like, \"Hey bub,\" and, \"Yo. We're Canadian now,\" to make it a Wolverine/Wolverine mashup. Mr. Google's saying there aren't really any cool speeches from Red Dawn, so I guess never mind. It would have been cool, though. Maybe even half as cool as our weapon pile.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-w-o-l-v-e-r-i-n-e-s-ahwu-for-may-8-th-2017-368","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b49ab206-82c2-4e85-a276-6c18b6d38036/sm/2013912-1494278705079-AHWU_thumb.jpg","duration":839,"publication_date":"2017-05-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-battle-buddies-aim-for-his-ball","changefreq":"weekly","video":[{"title":"2017:E8 - Battle Buddies - Aim for His Ball","description":"In 2017, two friends joined forces to create the world's least covert covert operative team. They are the Battle Buddies. America's two favorite heroes, Ryan Haywood and Jeremy Dooley, are deployed on a top secret mission. The objective is simple: eliminate the target by shooting him in his ball. Yes, only one. According to our records, he only has one ball. The other, mysteriously, is in the Albert Hall. And upon further research, we've concluded this is because his mother, the dirty bugger, cut it off when he was small.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-battle-buddies-aim-for-his-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e272e49-696c-4f53-8d25-77c8d7bdacac/sm/2013912-1494008364774-BattleBuddies_SniperEliteHitler.png","duration":1450,"publication_date":"2017-05-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-jeopardy-part-4","changefreq":"weekly","video":[{"title":"2017:E122 - Jeopardy! Part 4","description":"Its team \"Southern Britain\" in this episode of Achievement Hunter Jeopardy! Jack, Jeremy, and Gavin answer questions about math, Samuel Jackson, and Greek mythology in this crazy game show. Who can press buttons fast enough to guess an answer?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-jeopardy-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/720bd674-3926-497e-b027-0439ff7625bc/sm/2013912-1492448070898-LP_Jeopardy_THUMB.png","duration":2157,"publication_date":"2017-05-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-75-jai7g287","changefreq":"weekly","video":[{"title":"2017:E17 - The Salt Sack - Last Call #75","description":"The AH Crew stand up to talk about passing out, Jeremy’s salt bag, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-75-jai7g287","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48bf3298-1c8e-4824-8851-dfbecccaf5a3/sm/2013912-1494021054951-OFF75_-_PS_-_THUMB.jpg","duration":1440,"publication_date":"2017-05-07T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-41","changefreq":"weekly","video":[{"title":"2017:E146 - Let's Watch - Outlast 2 - Part 1","description":"The boys may have been on the road, but they're back with the camera at the ready for Outlast 2. This time, brought to you by boring hotel decor. If the game gameplay doesn't scare you, maybe spooky scary off-camera Elyse will!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d960189-3890-43e7-9dbb-56408b8caa88/sm/2013912-1494010342361-LW_Outlast2_PART1.png","duration":3520,"publication_date":"2017-05-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-humane-raid-setup-criminal-masterminds-part-4","changefreq":"weekly","video":[{"title":"2017:E145 - GTA V - Humane Raid: Setup - Criminal Masterminds (Part 4)","description":"The tension continues as the Fake AH crew start the Humane Raid Heist in their quest for the Criminal Masterminds achievement. Will they complete the setup? Will they bum cheese it all up? The only way to know is to watch! Or, you know, read the comments. But don't do that. That would ruin the fun.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-humane-raid-setup-criminal-masterminds-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82cf389b-0f47-45c2-8182-db8b7e8a5ae2/sm/2013912-1494006268097-Thumb_CM_pt4.jpg","duration":3027,"publication_date":"2017-05-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-75-aj7bj3","changefreq":"weekly","video":[{"title":"2017:E75 - Goatbusters - #75","description":"The AH Crew sit down to talk about their favorite moments from the Let’s Play Live Tour, airline problems, animal stories, and more on this week's Off Topic!\n\nThis episode originally aired May 5, 2017 and is sponsored by 1-800-Flowers (http://bit.ly/2oBpoBf) and Shari’s Berries (http://bit.ly/2oBpoBf)\n\n\n\n\n\n\n\n\n\n\n\nOur sponsors at 1-800-Flowers have an amazing Mother’s Day bouquet deal. Get 24 Multicolored Roses for ONLY $24! For a bouquet Mom’s guaranteed to love, go to 1800Flowers.com/offtopic.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-75-aj7bj3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b120faf9-c91c-4535-9639-89d1910623a7/sm/2013912-1494021089389-OFF75_-_THUMB.jpg","duration":8010,"publication_date":"2017-05-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-36-l-a-maniac","changefreq":"weekly","video":[{"title":"2017:E36 - Episode #36: L.A. Maniac","description":"'Sup shitheads! *Heavy breathing* The AH guys sit down to watch L.A. Maniac this week. Yeah, it's pretty sick. It's a movie about a totally normal, attractive, and well adjusted guy just living life out in Hollywood. He definitely doesn't eat women's brains. *Heavy breathing*","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-36-l-a-maniac","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8646ab22-1aca-4098-b22c-6caac34cc4a2/sm/2013912-1493998871764-TM_-_LA_Maniac_-_THUMB.jpg","duration":4641,"publication_date":"2017-05-05T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-40","changefreq":"weekly","video":[{"title":"2017:E144 - Let's Watch - Zelda: Breath of the Wild - Finale","description":"All good things must come to an end... And so it was, that Ryan, the Mad Hero of Hyrule, sallied forth to vanquish the evil known as Calamity Ganon, in hopes of saving the princess and the kingdom. Had his trials honed his wits enough to cut down the beast and its blights? Could all of the weapons in the land lay low such a gargantuan scourge? Watch, my children, and ye shall learn of the fate of the Hylian Hero.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9393f9f-15ad-4539-bc36-4b2f7f7a67f2/sm/2013912-1493936729943-Thumbnail_Part7_C.jpg","duration":2425,"publication_date":"2017-05-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-splinter-cell-blacklist","changefreq":"weekly","video":[{"title":"2017:E7 - Splinter Cell: Blacklist","description":"Sam Fisher may have been blacklisted from being a spy, and Tom Clancy may have been blacklisted from being alive, but none of that matters in multiplayer mode! It's Achievement Hunter Spies vs Achievement Hunter Mercs. It's the third-person dudes vs the first-person dudes. It's hackers vs slackers. It's machine guns vs squirt guns. I think you get it by now. Two trios doing different things, facing off to be the best Splinter Cell: Blacklist team in the office. Maybe in the world! Is anyone even playing this game anymore?","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-splinter-cell-blacklist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ebb5bf5-6c7d-43e4-977f-80dd645f1a82/sm/2013912-1493921585082-RouLetsPlay_SplinterCellSpiesVMercs.png","duration":1337,"publication_date":"2017-05-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-8-the-final-challenge","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 8: The Final Challenge","description":"It's time for the final challenge! If you're not first...or second or third or fourth...you're last. \n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished.  Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n \n\n\n\n\n\nConnect with AT&T:AT&T Hello Lab Twitter: http://www.twitter.com/atthellolabAT&T Hello Lab Instagram: http://www.instagram.com/atthellolabAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam:Check out Brawlhalla on Steam: http://store.steampowered.com/app/291550/Check out Masky on Steam: http://store.steampowered.com/app/291550/Check out Speedrunners on Steam: http://store.steampowered.com/app/207140/Check out TImberman on Steam: http://store.steampowered.com/app/398710/Check out Tricky Tower on Steam: http://store.steampowered.com/app/437920/Check out Move or Die on Steam: http://store.steampowered.com/app/323850/Check out Ultimate Chicken Horse on Steam: http://store.steampowered.com/app/386940/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-8-the-final-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/753b7cbb-7a0d-4790-8910-cc500b3a8243/sm/2013912-1493912164639-SchooledEp208Thumbnail.png","duration":1310,"publication_date":"2017-05-04T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-gliders","changefreq":"weekly","video":[{"title":"2017:E143 - Let's Play Minecraft - Episode 258 - 2 Glide 2 Furious","description":"If you're not out of control, you're not in control! New maps have just been added in to Minecraft's Glide minigame, and Achievement Hunter's ready to race for some pink slips! Ask any Achievement Hunter. Any real Achievement Hunter. It don't matter if you win by an inch or a mile. Winning's winning.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-gliders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48e6b8be-c799-4f2e-b718-24ac3391ff8c/sm/2013912-1493913369917-mc4.jpg","duration":2626,"publication_date":"2017-05-04T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-best-of-achievement-hunter-april-2017","changefreq":"weekly","video":[{"title":"2017:E7 - Best of Achievement Hunter - April 2017","description":"A compilation of Achievement Hunter's highlight moments for the month of April 2017.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-best-of-achievement-hunter-april-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23810fff-588c-46df-96f4-db76f15a3eee/sm/2013912-1493850732712-Pasted_image_at_2017_05_03_05_23_PM.png","duration":2553,"publication_date":"2017-05-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-hot-seat-gta-v-featuring-james-buckley","changefreq":"weekly","video":[{"title":"2017:E142 - Hot Seat: GTA V Featuring James Buckley","description":"Hotseat returns with a special guest, YouTuber and British Actor James Buckley. Geoff and Gavin interviewed the Inbetweeners star at the Funhaus studio, with Bruce and Lawrence joining in on the fun.\n\nCheck out James' YouTube channel here: https://www.youtube.com/channel/UC88b1rl5tpgGxK5I-fL7hIw","player_loc":"https://roosterteeth.com/embed/lets-play-2017-hot-seat-gta-v-featuring-james-buckley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34ea1f46-8505-4abc-90f3-dcef61f1c5ef/sm/2013912-1493824761769-THUMB_JamesBuckley_Hotseat_FH_withFire.jpg","duration":4060,"publication_date":"2017-05-03T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-29-post-show-297-be7","changefreq":"weekly","video":[{"title":"2017:E9 - #29 Post Show","description":"Akshay, is the new BFF of the party.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-29-post-show-297-be7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b19c9a2-df5a-46d8-b0cb-1a37b3d8157d/sm/2013912-1493743980595-HH29_-_PS_-_THUMB.jpg","duration":471,"publication_date":"2017-05-03T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-the-great-trash-wall","changefreq":"weekly","video":[{"title":"2017:E19 - GTA V - The Great Trash Wall","description":"Matt introduces the Fake AH Crew to a gamemode Geoff and he have been thinking about for months, where two teams fight to the death through a wall made of derelict busses and cars.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-the-great-trash-wall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ebf5f5f-61b5-4466-8ea0-ccccb5d678c5/sm/2013912-1493753907681-TTD_TheWall_E.jpg","duration":699,"publication_date":"2017-05-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-sauce-drinkers-part-2-michael-s-three-in-one-special","changefreq":"weekly","video":[{"title":"S1:E7 - Sauce Drinkers Part 2 - Michael’s Three-In-One Special","description":"Michael, Gavin, Ryan, and Michael’s brother got some food and a few too many drinks. Before getting kicked out of the bar, Gavin sets a bounty for drinking all the sauces that came with Ryan’s dinner - ketchup, tiger sauce, and fancy gravy.","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-sauce-drinkers-part-2-michael-s-three-in-one-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d786d9ce-8500-474b-9d92-73c1ca56692d/sm/1104396-1493602939268-SauceDrinkers_MichaelThumb.png","duration":443,"publication_date":"2017-05-02T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-29-y9wn6f","changefreq":"weekly","video":[{"title":"2017:E29 - Mysterious Goings-On & How Art Can Save the Licentious - #29","description":"As we near the end of the season, the party is embroiled further in the situation at Ribcage. Stoneykill Sam reveals a wrong from the past that must be righted. And Cork's destiny is revealed. Meanwhile, Akshay is presented with an opportunity to better himself. Can he do it?\n\n\n\nSponsored by Blue Apron (http://cook.ba/2jeJr22) and MVMT Watches (http://bit.ly/2lmsOm7)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-29-y9wn6f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b8ad083-a964-46b8-8ddf-45d01dc5b980/sm/2013912-1493741160286-HH29_-_THUMB.jpg","duration":6624,"publication_date":"2017-05-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-velvet-shell","changefreq":"weekly","video":[{"title":"2017:E141 - Rainbow Six Siege: Velvet Shell","description":"Lannan joins the Achievement Hunter gang as they hunt terrorists in the new Velvet Shell DLC. As it turns out, Austrailians are no better at hunting terrorists than Americans are.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-velvet-shell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a72d51b0-ef74-4eb4-a223-fc948e754ad4/sm/2013912-1493675978711-LP_Siege_VelvetShellDLC.png","duration":2738,"publication_date":"2017-05-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-sauce-drinkers-part-1-elyse-s-garlic-sauce","changefreq":"weekly","video":[{"title":"S1:E6 - Sauce Drinkers Part 1 - Elyse’s Garlic Sauce","description":"Elyse really fuckin’ loves Papa John’s garlic sauce. Everyone else on the bus chips in some cash to see just how much garlic love there really is.","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-sauce-drinkers-part-1-elyse-s-garlic-sauce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/318d196b-a611-4ef7-96d0-e2f0bbd14e31/sm/1104396-1493602798714-SauceDrinkers_ElyseThumb.png","duration":206,"publication_date":"2017-05-01T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-back-to-the-bus-ahwu-for-may-1-st-2017-367","changefreq":"weekly","video":[{"title":"2017:E367 - Back to the Bus! - AHWU for May 1st, 2017 (#367)","description":"Thanks to ProFlowers for sponsoring today's video. You can get 100 Blooms for Mom with a free vase starting at 19.99 buy going to ProFlowers.com and using code JACKANDGEOFF.\n\nHello everyone! Descrippy Joe here...actually not really, I lied, I'm a terrible person. This is Descrippy Joe's neighbor, Descrippy Stan. Descrippy Joe left, he's out exploring the world.\n\n\n\nAnyway, I'm here to tell you about a rip-roaring fantastical episode of a little show called AHWU. The Achievement Hunter boys appear to be on a bus and they histerically do some of the show on the bus! Can you believe it! They do it on the bus, it's sooooooooooooo funny! What really puts it over the edge is that some british bloke names Gavin comes up with a crazy stunt for the end of the show. It's really spectacualar.\n\n\n\nSo pack up all your belongings and hold on tight. It's going to be a bumpy ride down the good ole' Achievment Hunter bus of pain!Descrippy Stan signing out...*Mic Drip...CRAP...*Mic Drop","player_loc":"https://roosterteeth.com/embed/ahwu-2017-back-to-the-bus-ahwu-for-may-1-st-2017-367","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e856075-6d14-43ff-b0df-9200f6e4da6d/sm/2013912-1493655680459-AHWU_367.png","duration":987,"publication_date":"2017-05-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-39","changefreq":"weekly","video":[{"title":"2017:E140 - Let's Watch - Mr. Shifty - Part 3","description":"The shiftiness continues in part 3 of Mr. Shifty! This time, they're shifting around homing rockets, explosions, and even more Patrick Warburtons.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eb70294-db29-4efe-b25e-a90b38fe1ba9/sm/2013912-1493417832150-LW_MrShiftyPt3.png","duration":2670,"publication_date":"2017-05-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-use-your-words","changefreq":"weekly","video":[{"title":"2017:E139 - Use Your Words","description":"A fill the in the blank, party game? This won't end in crude revelry, no. Achievement Hunter has always been a PC and easygoing crowd. There won't be any references to sexual acts, or body parts. None of that. Just a nice, clean party game. Right.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-use-your-words","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c8cf006-5541-471c-a8a2-8520f7a3f88a/sm/2013912-1493412278758-LP_UseYourWords_THUMB2.png","duration":1325,"publication_date":"2017-05-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-the-complete-mall-experience","changefreq":"weekly","video":[{"title":"S1:E5 - The Complete Mall Experience","description":"Between shows, Funhaus has a day to kill in South Carolina. Their choices were hang out at the local church or go to the mall. They decided to go with the one that sells cookie cakes.","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-the-complete-mall-experience","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03f9cf9d-65c3-4e30-a580-fe55f21326b1/sm/1104396-1493575808870-MallExperienceThumb.png","duration":312,"publication_date":"2017-04-30T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-74-alfwjw3","changefreq":"weekly","video":[{"title":"2017:E16 - That's Why the Way I Am - Last Call #74","description":"The AH Crew sit down to talk about their worst driving stories and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-74-alfwjw3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d655ec6-4948-4f66-b877-3b48e4c44b62/sm/2013912-1493408265261-OFF74_-_PS_-_THUMB.jpg","duration":1129,"publication_date":"2017-04-30T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-38","changefreq":"weekly","video":[{"title":"2017:E138 - Let's Watch - Sexy Brutale - Part 2","description":"Oh no! There's been another death! Was it murder, or was it suicide? I can't say for sure, but I do know that it's both sexy and brutal.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9eec5178-e056-4656-bf43-d82a0d7e9389/sm/2013912-1493408270596-LW_SexyBrutalePt2.png","duration":2715,"publication_date":"2017-04-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-special-cunning-stunts-2","changefreq":"weekly","video":[{"title":"2017:E137 - GTA V - Special Cunning Stunts 2","description":"The Fake AH Crew rocket down to the race track, get blazed, and ruin their reputations as they do their second Special Cunning Stunts episode.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-special-cunning-stunts-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95b2c2c7-0952-48e1-94b6-b184bab6d846/sm/2013912-1493406951992-LP_GTA_CunningStuntsSpecial2_Thumb.png","duration":2378,"publication_date":"2017-04-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-midnight-mc-donald-s","changefreq":"weekly","video":[{"title":"S1:E4 - Midnight McDonald's","description":"After a show, Achievement Hunter and Funhaus need a midnight snack. McDonald's is open...but only through the drive through. No way is the tour bus fitting through there!","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-midnight-mc-donald-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/098dbc62-f18d-4f55-a857-87a39f0554f3/sm/1104396-1493479546360-McDonaldsThumb.png","duration":150,"publication_date":"2017-04-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-74-ah873hjv","changefreq":"weekly","video":[{"title":"2017:E74 - Be Careful about Bears in Orlando - #74","description":"The AH Crew sit down to talk about life on the bus tour, switching consoles, self-hypnosis, and more on this week's Off Topic!\n\nThis episode originally aired April 28, 2017 and is sponsored by 1-800-Flowers (http://bit.ly/2oBpoBf) and Shari’s Berries (http://bit.ly/2gjcsXO)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOur sponsors at 1-800-Flowers have an amazing Mother’s Day bouquet deal. Get 24 Multicolored Roses for ONLY $24! For a bouquet Mom’s guaranteed to love, go to 1800Flowers.com/offtopic.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-74-ah873hjv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a820fca3-f4a5-4872-b4eb-21ad71caef18/sm/2013912-1493407996635-OFF74_-_THUMB.jpg","duration":5241,"publication_date":"2017-04-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-kickball-keepy-uppies","changefreq":"weekly","video":[{"title":"S1:E3 - Kickball Keepy-Uppies","description":"With 25 minutes until showtime, Achievement Hunter and Funhaus should be getting ready for the show. The key word here being should. Instead, the boys are busy playing their favorite sport. If you're from the Funhaus side of the globe, you'll know this game as Kickball Hacky Sack. But if you live in the Achievement Hunter hemisphere, you'll know this game better as Keepy-Uppies.","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-kickball-keepy-uppies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9b164d9-a230-4d13-8d9a-5d42b9714cd9/sm/1104396-1493348919051-KeepyUppiesThumb.png","duration":391,"publication_date":"2017-04-28T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-35","changefreq":"weekly","video":[{"title":"2017:E35 - Episode #35: Def By Temptation","description":"A seductive succubus attempts to pit two best friends against each other in this cautionary tale about always keeping your Uzi on your mantle. Join the AH crew as they watch Def By Temptation in this week's Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1562185-8dbb-4307-b191-fbb68b314ff7/sm/2013912-1493398121279-TM_-_Def_By_Temptation_-_THUMB.jpg","duration":5765,"publication_date":"2017-04-28T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-deformers-cut-voice-tracks","changefreq":"weekly","video":[{"title":"2017:E6 - Deformers - Cut Voice Tracks","description":"The unmade rumors are true! Deformers did actually at one point have full voice audio for it's game. For some reason all of it was cut. I can't imagine why.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-deformers-cut-voice-tracks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36545310-f124-4c50-b44a-1e85858275ff/sm/2013912-1493241662200-Deformers_thumbnail.jpg","duration":233,"publication_date":"2017-04-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-rick-and-morty-virtual-rick-ality-part-3","changefreq":"weekly","video":[{"title":"2017:E12 - Rick and Morty: Virtual Rick-Ality Part 3","description":"Hey hey hotdogs, kids. It's me, your best pal Goopy Gleb. Descrippy Joe's wife just left him, and he's on pretty hard times right now. I thought I'd take a crack at this whole description writing thing. Right now right here. Flying on an airplane. Writing descriptions. Saying, \"Hey hey hotdogs,\" to any kids walking by. That's, that's kind of my thing. You know, your pal Rick has a bunch of cool catchphrases too. But he, he definitely doesn't say \"Hey hey hotdogs,\" when kids pass by. That's just not his thing, man. It's mine. Hey hey now. Speaking of Rick, you wanna see more of him and Morty and clone Morty Ryan get into some virtual reality fun? Because hey hey hotdogs, that's exactly what you're about to get. Again, didn't watch the video. I'm not on a plane anymore, by the way. Just helping Descrippy Joe out. Send him your love by telling him it'll be okay. Send him your love by telling him his descriptions are great. And hey hey hotdogs, watch this video 5, 10, a billion times. That'll make Descrippy Joe really happy. We'll kids, it's been fun. But ol Goopy Gleb's gotta run.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-rick-and-morty-virtual-rick-ality-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/108fffa8-f85e-4b47-ab04-99c8aa3d2ecb/sm/2013912-1493312711829-VR_RickMortyPt3.png","duration":2066,"publication_date":"2017-04-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-the-bus-is-lava","changefreq":"weekly","video":[{"title":"S1:E2 - The Bus is Lava","description":"On this edition of Achievement Hunter and Funhaus Cribz, the crew get acquainted with their tiny bus rooms, play a little floor is lava, and deal with a deadly gas.","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-the-bus-is-lava","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36ac0fdb-0bd0-4535-8dc1-11b730a833cd/sm/1104396-1493271674049-BusisLavaThumb.png","duration":494,"publication_date":"2017-04-27T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-36","changefreq":"weekly","video":[{"title":"2017:E135 - Let's Watch - Zelda: Breath of the Wild - Part 6","description":"Ryan fights Windblight Gannon, and Jeremy goes on a drunken ramble about furry art. It's Zelda!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35be8311-0be5-448b-b4e8-de17ee0ef946/sm/2013912-1493238601885-Thumbnail_Part6.jpg","duration":1844,"publication_date":"2017-04-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-257-oceancraft","changefreq":"weekly","video":[{"title":"2017:E134 - Minecraft – Episode 257 – Oceancraft","description":"Under the sea! Under the sea! I need a turtle. You have a white pearl. Give it to me! Try to trade wit de cannibal, then do a race wit de crab people. The whales need harpoonin'. Friends need maroonin'! Under the sea.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-257-oceancraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db162895-b898-46b1-91f8-9cfa9f99f21b/sm/2013912-1493238350156-oceancraft_Thumb.jpg","duration":2672,"publication_date":"2017-04-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-37","changefreq":"weekly","video":[{"title":"2017:E136 - Let's Watch - Party Hard 2 Alpha","description":"Achievement Hunter wanted to kill some time on their bus trip from Newark to Baltimore, so they decided to fire up the alpha demo of Party Hard 2. Something about being stuck on a bus with Funhaus for hours really made them all want to stab, stab, and stab away their frustrations.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/663915c4-33ab-4fe6-9a34-e221bd9352a7/sm/1104396-1493302409990-PartyHardThumb.png","duration":1474,"publication_date":"2017-04-27T09:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-7-wall-of-punishment","changefreq":"weekly","video":[{"title":"S2:E7 - Episode 7: Wall of Punishment","description":"We're in the home stretch! There's only one thing standing in their way...the Wall of Punishment.\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished. Thanks to AT&T Hello Lab for sponsoring this video.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T:AT&T Hello Lab Twitter: http://www.twitter.com/atthellolabAT&T Hello Lab Instagram: http://www.instagram.com/atthellolabAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam:\n\n\n\n\n\n\n\nCheck out Brawlhalla on Steam: http://store.steampowered.com/app/291550/Check out Masky on Steam: http://store.steampowered.com/app/291550/Check out Speedrunners on Steam: http://store.steampowered.com/app/207140/Check out TImberman on Steam: http://store.steampowered.com/app/398710/Check out Tricky Tower on Steam: http://store.steampowered.com/app/437920/Check out Move or Die on Steam: http://store.steampowered.com/app/323850/Check out Ultimate Chicken Horse on Steam: http://store.steampowered.com/app/386940/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-7-wall-of-punishment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/421960d4-99b2-458b-80df-5836d9ff17cd/sm/2013912-1493235247847-Schooled207Thumbnail.png","duration":475,"publication_date":"2017-04-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-play-live-life-on-tour-season-seconds-to-showtime","changefreq":"weekly","video":[{"title":"S1:E1 - Seconds to Showtime","description":"Achievement Hunter and Funhaus have made it to Newark and are ready for the first show of the Let's Play Live tour. Come along as they learn some bus etiquette and get ready for their first big show. ","player_loc":"https://roosterteeth.com/embed/let-s-play-live-life-on-tour-season-seconds-to-showtime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37970865-4081-4a14-b334-abb5dfb3b2a4/sm/1104396-1493224882437-01_NewarkThumb.png","duration":176,"publication_date":"2017-04-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-part-3","changefreq":"weekly","video":[{"title":"2017:E133 - Golf With Your Friends - Part 3","description":"The golf balls return! Achievement Hunter plays Golf With Your Friends on the Candyland and Haunted House maps.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99c92736-aff0-4fca-bf59-9906dcacca98/sm/2013912-1493141714530-GWYF_Part3.jpg","duration":2919,"publication_date":"2017-04-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-catch-a-lover","changefreq":"weekly","video":[{"title":"2017:E132 - Catch a Lover","description":"I bet you all thought (husband) and (wife) were such a happy couple, but turns out (lover) is a cheating sonuvagun! (Lover) has come in to tear this once-loving family apart with his sweet, zesty lovin'. Can (wife) and (lover) get away with their spicy affair, or will (husband) and his trusty dog (dog) run and (lover) his 12-inch dong out of the house?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-catch-a-lover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e276fb1c-a7e3-4535-83da-fcf33262ebf2/sm/2013912-1493141540363-LP_CatchALover.png","duration":1289,"publication_date":"2017-04-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-rick-and-morty-virtual-rick-ality-part-2","changefreq":"weekly","video":[{"title":"2017:E11 - Rick and Morty: Virtual Rick-Ality Part 2","description":"Ooooooooohweeeee. Hey guys. It's me! Descrippy Joe. I'm the guy you call when you need a Rick and Morty-based description because boy howdy, I'll sure write you one right here right now right away. I know there's Rick. He's the scientist guy. And then there's Morty. He, he's that little nervous guy, right? I don't know. I didn't have a chance to watch the video. You wouldn't believe how many calls I've been getting to write descriptions since this Rick and Morty: Virtual Rick-ality game came out. I can barely keep up with my workload. I guess I could work late into the night, watching every single moment of virtual reality shenanigans that every Rick and every Morty in every video get up to. But Descrippy Joe has standards, and I believe in a healthy work/life balance. So here it is - my video description of this here Achievement Hunter Rick and Morty VR play time. Oooooohweeeeee. It's, it's, it's a video.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-rick-and-morty-virtual-rick-ality-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5e28651-f46e-4608-8042-71057d2ca533/sm/834020-1492811588252-VR_RickMortyPt2.png","duration":1413,"publication_date":"2017-04-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds","changefreq":"weekly","video":[{"title":"2017:E129 - PlayerUnknown's Battlegrounds: The Beginning","description":"This isn't Achievement Hunter's first rodeo in the last-man-standing shooter: PlayerUnkown's Battlegrounds. Their goal is to make it to the end. Will they?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea0cbc3d-0132-4e9b-a6e1-63b3bfebf1ad/sm/2013476-1497037839882-LP_PlayerUnknown-Battlegrounds_THUMB.jpg","duration":2931,"publication_date":"2017-04-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-blowing-it-ahwu-for-april-24-th-2017-366","changefreq":"weekly","video":[{"title":"2017:E366 - Blowing It - AHWU for April 24th, 2017 (#366)","description":"Geoff's here to get his first taste of the ever-growing AHWU weapons cache, and now he's ready to cause all sorts of havoc. What (or who) will he destroy today?","player_loc":"https://roosterteeth.com/embed/ahwu-2017-blowing-it-ahwu-for-april-24-th-2017-366","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb483b83-e6eb-4bc9-810a-4065c65b0b63/sm/834020-1492803773514-ahwu.jpg","duration":832,"publication_date":"2017-04-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-35","changefreq":"weekly","video":[{"title":"2017:E131 - Let's Watch - Mr. Shifty - Part 2","description":"Oh shift! Jeremy, Lindsay, and Jack are back in Mr. Shifty, knocking out baddies and dodging lasers. And by the way, how many Patrick Warburton's can possibly fit into one building?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b93e8fc-4967-45e0-be7f-783b8bbd8d6e/sm/1104396-1492813911246-LW_MrShiftyPt2.png","duration":2159,"publication_date":"2017-04-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-overwatch-uprising","changefreq":"weekly","video":[{"title":"2017:E128 - Let's Play - Overwatch: Uprising","description":"Join Achievement Hunter in Overwatch's newest event: Uprising. This \"amazing Overwatch team\" is going to play on legendary mode, or was that expert mode? How about hard-legendary-normal mode?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-overwatch-uprising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bc6665a-4808-4209-ac55-28f047fa8995/sm/1104396-1492790739257-LP_Overwatch_Uprising_THUMB-B_1.png","duration":2438,"publication_date":"2017-04-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-73-ajkyfg2","changefreq":"weekly","video":[{"title":"2017:E15 - The Jolly Green J's - Last Call #73","description":"The AH Crew and special guests Tim Gettys and Nick Scarpino stand up to talk about chocolate dicks, smashing glass, and more on this week's Last Call.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-73-ajkyfg2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4e6eed2-bfd6-4f5c-8d46-4d9daaccc635/sm/2369885-1492822489202-OFF73_-_PS_-_THUMB.jpg","duration":791,"publication_date":"2017-04-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-34","changefreq":"weekly","video":[{"title":"2017:E130 - Let's Watch - The Sexy Brutale","description":"Someone's been murdered! And murdered again and again because this horrible day of death keeps on repeating itself. Like a sick and twisted version of Groundhog Day, but with funnier voices and murder.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1430ee9-cb20-47ff-a165-6ac548f7c79c/sm/1104396-1492813708754-LW_SexyBrutale.png","duration":2969,"publication_date":"2017-04-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-the-prison-break-criminal-masterminds-part-3","changefreq":"weekly","video":[{"title":"2017:E127 - GTA V - The Prison Break - Criminal Masterminds (Part 3)","description":"Time for Heist no. 2 in the Criminal Masterminds series! Ryan, Gavin, Michael, and Jeremy must break into Bolingbroke Penitentiary to free Maxim Rashkovsky. It's going to be quite the show, so sit down, pop some P's & Q's in your gob, and enjoy the ride!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-the-prison-break-criminal-masterminds-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/004cdbed-5c04-4d02-8ffc-ba75abcf1604/sm/1104396-1492790451159-GTA_PrisonBreak.jpg","duration":3676,"publication_date":"2017-04-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-11-ladders-fix","changefreq":"weekly","video":[{"title":"S1:E38 - MINECRAFT 1.1 LADDERS FIX","description":"MINECRAFT 1.1 LADDERS FIX","player_loc":"https://roosterteeth.com/embed/minecraft-11-ladders-fix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d93760b-185b-453e-9430-09d197ebd62e/sm/hqdefault.jpg","duration":380,"publication_date":"2012-01-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/spam","changefreq":"weekly","video":[{"title":"S1:E37 - SPAM","description":"SPAM","player_loc":"https://roosterteeth.com/embed/spam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3426d2f5-b4b4-458e-953b-8feef241eef7/sm/hqdefault.jpg","duration":207,"publication_date":"2011-12-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnovas-mom-ep69my-mom-plays-special","changefreq":"weekly","video":[{"title":"S1:E36 - Happy Wheels w/Novas Mom Ep.69 - MY MOM PLAYS SPECIAL","description":"Happy Wheels w/Novas Mom Ep.69 - MY MOM PLAYS SPECIAL","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnovas-mom-ep69my-mom-plays-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b70aea7-19ea-48ae-8ef7-decc72a395b4/sm/hqdefault.jpg","duration":1126,"publication_date":"2011-12-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nonsensical-saints-row-the-third-wsp00n-ep1air-scissoring","changefreq":"weekly","video":[{"title":"S1:E35 - Nonsensical Saints Row The Third w/Sp00n Ep.1 - Air Scissoring","description":"Nonsensical Saints Row The Third w/Sp00n Ep.1 - Air Scissoring","player_loc":"https://roosterteeth.com/embed/nonsensical-saints-row-the-third-wsp00n-ep1air-scissoring","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2290537-55a5-4368-a2f7-5b9e75746c04/sm/hqdefault.jpg","duration":758,"publication_date":"2011-12-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep43it-keeps-happening-2-ohmahgod","changefreq":"weekly","video":[{"title":"S1:E34 - Happy Wheels w/Nova Ep.43 - IT KEEPS HAPPENING 2 OhmahGOD","description":"Happy Wheels w/Nova Ep.43 - IT KEEPS HAPPENING 2 OhmahGOD","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep43it-keeps-happening-2-ohmahgod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba7031b0-7cc4-4d5c-99b2-57360839e3e9/sm/hqdefault.jpg","duration":966,"publication_date":"2011-12-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-marathon-wnova-ep37im-poking-you","changefreq":"weekly","video":[{"title":"S1:E33 - Happy Wheels MARATHON w/Nova Ep.37 - Im Poking You","description":"Happy Wheels MARATHON w/Nova Ep.37 - Im Poking You","player_loc":"https://roosterteeth.com/embed/happy-wheels-marathon-wnova-ep37im-poking-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9082e49-4e4f-4ff8-852c-7555af265815/sm/hqdefault.jpg","duration":656,"publication_date":"2011-11-27T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gumby-dances-for-creature-carl","changefreq":"weekly","video":[{"title":"S1:E32 - Gumby Dances For Creature Carl","description":"Gumby Dances For Creature Carl","player_loc":"https://roosterteeth.com/embed/gumby-dances-for-creature-carl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83fc45a2-9c51-49ee-9363-9fae2e3f6dd6/sm/hqdefault.jpg","duration":82,"publication_date":"2011-11-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wwe-12road-to-wrestlemaniavillain-story-sheamus-ep1","changefreq":"weekly","video":[{"title":"S1:E31 - WWE 12 : Road To Wrestlemania - Villain Story Sheamus Ep.1","description":"WWE 12 : Road To Wrestlemania - Villain Story Sheamus Ep.1","player_loc":"https://roosterteeth.com/embed/wwe-12road-to-wrestlemaniavillain-story-sheamus-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7275697-9dde-4910-a4fd-9ac15751e97f/sm/hqdefault.jpg","duration":1008,"publication_date":"2011-11-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-finished-100","changefreq":"weekly","video":[{"title":"S1:E30 - MINECRAFT FINISHED 1.0.0","description":"MINECRAFT FINISHED 1.0.0","player_loc":"https://roosterteeth.com/embed/minecraft-finished-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4994eb94-2add-40fa-ab21-d67ce5bbc2d6/sm/hqdefault.jpg","duration":263,"publication_date":"2011-11-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep12piledriver-through-glasslittle-boy-gets-dunked","changefreq":"weekly","video":[{"title":"S1:E29 - Happy Wheels w/Nova Ep.12 - Piledriver Through Glass & Little Boy Gets DUNKED","description":"Happy Wheels w/Nova Ep.12 - Piledriver Through Glass & Little Boy Gets DUNKED","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep12piledriver-through-glasslittle-boy-gets-dunked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c63a5dc9-0a93-4049-9c74-acec79447f4a/sm/hqdefault.jpg","duration":749,"publication_date":"2011-10-22T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/payday-the-heist-ep1-wnova-ze-kootrassohbreaking-windows","changefreq":"weekly","video":[{"title":"S1:E28 - PayDay The Heist Ep.1 w/Nova, Ze, Kootra & SSoH - Breaking Windows","description":"PayDay The Heist Ep.1 w/Nova, Ze, Kootra & SSoH - Breaking Windows","player_loc":"https://roosterteeth.com/embed/payday-the-heist-ep1-wnova-ze-kootrassohbreaking-windows","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed6c07e4-7ac5-4a60-bc1c-bf86f3f134ba/sm/hqdefault.jpg","duration":950,"publication_date":"2011-10-22T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep8the-daddy-launcher","changefreq":"weekly","video":[{"title":"S1:E27 - Happy Wheels w/Nova Ep.8 - The Daddy Launcher","description":"Happy Wheels w/Nova Ep.8 - The Daddy Launcher","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep8the-daddy-launcher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a313b697-1147-49e4-a7a5-7b74fbf0c209/sm/hqdefault.jpg","duration":640,"publication_date":"2011-10-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep7the-elderly-olympics","changefreq":"weekly","video":[{"title":"S1:E26 - Happy Wheels w/Nova Ep.7 - The Elderly Olympics","description":"Happy Wheels w/Nova Ep.7 - The Elderly Olympics","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep7the-elderly-olympics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1361df-15d8-49cb-b2a8-87f766569b6c/sm/hqdefault.jpg","duration":601,"publication_date":"2011-10-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep6carnage-in-a-bus","changefreq":"weekly","video":[{"title":"S1:E25 - Happy Wheels w/Nova Ep.6 - Carnage In A Bus","description":"Happy Wheels w/Nova Ep.6 - Carnage In A Bus","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep6carnage-in-a-bus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a29e29d-cf59-40ba-83dd-258f586bf4c8/sm/hqdefault.jpg","duration":645,"publication_date":"2011-10-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep3i-choose-you-little-boy","changefreq":"weekly","video":[{"title":"S1:E23 - Happy Wheels w/Nova Ep.3 - I CHOOSE YOU LITTLE BOY","description":"Happy Wheels w/Nova Ep.3 - I CHOOSE YOU LITTLE BOY","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep3i-choose-you-little-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b1be3c4-7087-4499-b01c-79c070da6a8e/sm/hqdefault.jpg","duration":802,"publication_date":"2011-10-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep2little-boy-away","changefreq":"weekly","video":[{"title":"S1:E24 - Happy Wheels w/Nova Ep.2 - Little Boy AWAY!!","description":"Happy Wheels w/Nova Ep.2 - Little Boy AWAY!!","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep2little-boy-away","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b38effd9-a327-46b9-a57a-2d73d7ab9c4e/sm/hqdefault.jpg","duration":766,"publication_date":"2011-10-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-wheels-wnova-ep1i-never-asked-for-this-you-did","changefreq":"weekly","video":[{"title":"S1:E22 - Happy Wheels w/Nova Ep.1 - I Never Asked For This, You Did","description":"Happy Wheels w/Nova Ep.1 - I Never Asked For This, You Did","player_loc":"https://roosterteeth.com/embed/happy-wheels-wnova-ep1i-never-asked-for-this-you-did","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a0a4cc7-4ea8-45cc-8bd1-6d31ff528e0a/sm/hqdefault.jpg","duration":518,"publication_date":"2011-10-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/creeper","changefreq":"weekly","video":[{"title":"S1:E21 - CREEPER","description":"CREEPER","player_loc":"https://roosterteeth.com/embed/creeper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/234e4bfd-4af0-4520-887e-8dc71f65b406/sm/hqdefault.jpg","duration":237,"publication_date":"2011-09-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/repair","changefreq":"weekly","video":[{"title":"S1:E20 - REPAIR","description":"REPAIR","player_loc":"https://roosterteeth.com/embed/repair","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58997390-406f-4148-8cef-78042d3f51c6/sm/hqdefault.jpg","duration":157,"publication_date":"2011-09-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dead-islandwalkthrough-co-op-w-kootra-sp00n-ssohnova-ep1-the-prologue-soloness","changefreq":"weekly","video":[{"title":"S1:E19 - Dead Island - Walkthrough Co-Op w/ Kootra, Sp00n, SSoH & Nova Ep.1: The Prologue Soloness","description":"Dead Island - Walkthrough Co-Op w/ Kootra, Sp00n, SSoH & Nova Ep.1: The Prologue Soloness","player_loc":"https://roosterteeth.com/embed/dead-islandwalkthrough-co-op-w-kootra-sp00n-ssohnova-ep1-the-prologue-soloness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fa34a0f-3fd5-4856-a383-3e80a6719e8b/sm/hqdefault.jpg","duration":700,"publication_date":"2011-09-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-treehouse-reborn-wnovakootra-ep1its-back","changefreq":"weekly","video":[{"title":"S1:E18 - Minecraft: Treehouse REBORN w/Nova & Kootra Ep.1 - ITS BACK!!!","description":"Minecraft: Treehouse REBORN w/Nova & Kootra Ep.1 - ITS BACK!!!","player_loc":"https://roosterteeth.com/embed/minecraft-treehouse-reborn-wnovakootra-ep1its-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d19264f9-aa00-4a2e-a65c-2a9aaa281479/sm/hqdefault.jpg","duration":900,"publication_date":"2011-08-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fake-strike","changefreq":"weekly","video":[{"title":"S1:E17 - FAKE STRIKE","description":"FAKE STRIKE","player_loc":"https://roosterteeth.com/embed/fake-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a41b469c-c72c-4c16-85c9-939eea34384f/sm/hqdefault.jpg","duration":146,"publication_date":"2011-08-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gold-sword","changefreq":"weekly","video":[{"title":"S1:E16 - GOLD SWORD","description":"GOLD SWORD","player_loc":"https://roosterteeth.com/embed/gold-sword","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f41c29ff-4bf4-4b60-8cfb-0d0ce037c858/sm/hqdefault.jpg","duration":124,"publication_date":"2011-08-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-the-ex-communicated-series-wnova-ssohpkcslyfox-ep1the-castaways","changefreq":"weekly","video":[{"title":"S1:E15 - Minecraft: The Ex-Communicated Series w/Nova, SSoHPKC & Slyfox Ep.1 - The Castaways","description":"Minecraft: The Ex-Communicated Series w/Nova, SSoHPKC & Slyfox Ep.1 - The Castaways","player_loc":"https://roosterteeth.com/embed/minecraft-the-ex-communicated-series-wnova-ssohpkcslyfox-ep1the-castaways","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2924cc8-354a-4461-a9f6-635562edf286/sm/hqdefault.jpg","duration":1261,"publication_date":"2011-08-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wool","changefreq":"weekly","video":[{"title":"S1:E14 - WOOL","description":"WOOL","player_loc":"https://roosterteeth.com/embed/wool","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/688a83a7-88cd-4d3d-b53e-ab6a53329ae4/sm/hqdefault.jpg","duration":62,"publication_date":"2011-08-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pickaxe","changefreq":"weekly","video":[{"title":"S1:E13 - PICKAXE","description":"PICKAXE","player_loc":"https://roosterteeth.com/embed/pickaxe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb13b8c4-b499-4869-b3de-bf138505f214/sm/hqdefault.jpg","duration":81,"publication_date":"2011-07-27T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-the-elemental-creepers","changefreq":"weekly","video":[{"title":"S1:E12 - Minecraft: The ELEMENTAL CREEPERS","description":"Minecraft: The ELEMENTAL CREEPERS","player_loc":"https://roosterteeth.com/embed/minecraft-the-elemental-creepers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c3a14ed-0ba1-47aa-8826-0103868497d5/sm/hqdefault.jpg","duration":1062,"publication_date":"2011-07-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-aether-adventures-wnova-ep1-a-whole-new-world-d","changefreq":"weekly","video":[{"title":"S1:E11 - Minecraft: Aether Adventures w/Nova: Ep.1 A WHOLE NEW WORLD :D","description":"Minecraft: Aether Adventures w/Nova: Ep.1 A WHOLE NEW WORLD :D","player_loc":"https://roosterteeth.com/embed/minecraft-aether-adventures-wnova-ep1-a-whole-new-world-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c79c642-1dd5-4dc3-b799-f4a692771cab/sm/hqdefault.jpg","duration":1064,"publication_date":"2011-07-22T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/repeater","changefreq":"weekly","video":[{"title":"S1:E10 - REPEATER","description":"REPEATER","player_loc":"https://roosterteeth.com/embed/repeater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb68c878-0bd5-4ed9-95d4-1c793c6735bc/sm/hqdefault.jpg","duration":119,"publication_date":"2011-07-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-game-of-life-adventures-wnova-ssohsly-ep1","changefreq":"weekly","video":[{"title":"S1:E9 - The Game Of LIFE: Adventures w/Nova, SSoH & Sly Ep.1","description":"The Game Of LIFE: Adventures w/Nova, SSoH & Sly Ep.1","player_loc":"https://roosterteeth.com/embed/the-game-of-life-adventures-wnova-ssohsly-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5b0743b-e8b3-420b-a265-8737b9ec7784/sm/hqdefault.jpg","duration":1322,"publication_date":"2011-06-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/my-mom-hates-seamus","changefreq":"weekly","video":[{"title":"S1:E8 - My Mom Hates Seamus","description":"My Mom Hates Seamus","player_loc":"https://roosterteeth.com/embed/my-mom-hates-seamus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c26fd453-254f-439c-9de1-4aa2be998f44/sm/hqdefault.jpg","duration":22,"publication_date":"2011-06-17T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/techno-kitten-adventure-amazing-indie-game-wnova","changefreq":"weekly","video":[{"title":"S1:E7 - Techno Kitten Adventure: AMAZING Indie Game w/Nova","description":"Techno Kitten Adventure: AMAZING Indie Game w/Nova","player_loc":"https://roosterteeth.com/embed/techno-kitten-adventure-amazing-indie-game-wnova","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06184d7c-dfdd-4bf5-843e-e43bb2088b6d/sm/hqdefault.jpg","duration":516,"publication_date":"2011-06-08T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/draw-my-thingwnovacreatures-ep1","changefreq":"weekly","video":[{"title":"S1:E6 - Draw My Thing - w/Nova & Creatures Ep.1","description":"Draw My Thing - w/Nova & Creatures Ep.1","player_loc":"https://roosterteeth.com/embed/draw-my-thingwnovacreatures-ep1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b66cb4e-b407-49b8-9bfe-05131fea9da7/sm/hqdefault.jpg","duration":1545,"publication_date":"2011-05-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/call-of-duty-black-opsescalation-call-of-the-dead-zombies-wnova-kootraspoon-36","changefreq":"weekly","video":[{"title":"S1:E5 - Call of Duty: Black Ops - Escalation Call of the Dead Zombies w/Nova, Kootra & Spoon #36","description":"Call of Duty: Black Ops - Escalation Call of the Dead Zombies w/Nova, Kootra & Spoon #36","player_loc":"https://roosterteeth.com/embed/call-of-duty-black-opsescalation-call-of-the-dead-zombies-wnova-kootraspoon-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a84635c-7049-4fd9-b6e1-f1f9ede61f20/sm/hqdefault.jpg","duration":591,"publication_date":"2011-05-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-solo-1000-zombies-vs-200-wolves-w-nova-ep13-singleplayer-survival","changefreq":"weekly","video":[{"title":"S1:E4 - Minecraft Solo: 1000 ZOMBIES! vs 200 Wolves w/ Nova Ep.13 (Singleplayer Survival)","description":"Minecraft Solo: 1000 ZOMBIES! vs 200 Wolves w/ Nova Ep.13 (Singleplayer Survival)","player_loc":"https://roosterteeth.com/embed/minecraft-solo-1000-zombies-vs-200-wolves-w-nova-ep13-singleplayer-survival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af2d6806-084a-4cd6-9c23-ce5e6586018d/sm/hqdefault.jpg","duration":904,"publication_date":"2011-04-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-solo-100-creepers-vs-60-wolves-test-w-nova-ep12-singleplayer-survival","changefreq":"weekly","video":[{"title":"S1:E3 - Minecraft Solo: 100 Creepers vs 60 Wolves Test w/ Nova Ep.12 (Singleplayer Survival)","description":"Minecraft Solo: 100 Creepers vs 60 Wolves Test w/ Nova Ep.12 (Singleplayer Survival)","player_loc":"https://roosterteeth.com/embed/minecraft-solo-100-creepers-vs-60-wolves-test-w-nova-ep12-singleplayer-survival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41e77711-c36e-4139-b958-e0a81046f6b2/sm/hqdefault.jpg","duration":1062,"publication_date":"2011-04-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-adventures-with-pineapple-and-chuck-greene-aka-spoon-and-nova-ep1-multiplayer-survival","changefreq":"weekly","video":[{"title":"S1:E2 - Minecraft: Adventures with Pineapple and Chuck Greene aka Spoon and Nova Ep.1 (Multiplayer Survival)","description":"Minecraft: Adventures with Pineapple and Chuck Greene aka Spoon and Nova Ep.1 (Multiplayer Survival)","player_loc":"https://roosterteeth.com/embed/minecraft-adventures-with-pineapple-and-chuck-greene-aka-spoon-and-nova-ep1-multiplayer-survival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21b3be5e-9776-48ec-a094-6af9fa5ac6b6/sm/hqdefault.jpg","duration":530,"publication_date":"2010-12-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dragonball-z-burst-limit-over-9000-w-original-audio","changefreq":"weekly","video":[{"title":"S1:E1 - Dragonball Z Burst Limit: OVER 9000! w/ Original Audio","description":"Dragonball Z Burst Limit: OVER 9000! w/ Original Audio","player_loc":"https://roosterteeth.com/embed/dragonball-z-burst-limit-over-9000-w-original-audio","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78511e00-c461-4d80-bfe3-5aeee377d8bb/sm/hqdefault.jpg","duration":9,"publication_date":"2008-06-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-83-nai7ah","changefreq":"weekly","video":[{"title":"S8:E83 - GUNS & NIPS - #83","description":" Make jokes. Get jacked. Profit.\n\n\n\n\n\n\n\nThis episode originally aired February 3, 2017 and is sponsored by Shari's Berries (http://bit.ly/2gjcsXO) and Casper (http://bit.ly/2gvkvon)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-83-nai7ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd984882-d7de-4943-9610-331c2087d722/sm/2369885-1486233958315-ots_83_thumb.jpg","duration":2568,"publication_date":"2017-02-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-12-l0h5ds","changefreq":"weekly","video":[{"title":"V4:E12 - Volume 4, Chapter 12: No Safe Haven","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-12-l0h5ds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15a93ee9-2f3c-4252-a8be-c99bf5780304/sm/1769531-1486182088155-RWBYvolume4episode12Thumbnail.jpg","duration":1623,"publication_date":"2017-02-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-2","changefreq":"weekly","video":[{"title":"2017:E3 - RE7 #2 - Daddy Ain't Happy","description":"Kyle and Miles sit down to a nice, quiet, cannibalistic family dinner but when they try to leave early without helping with the dishes well... Daddy gets a little pissed off.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac6a8d5-d3fc-4097-9c2e-3b9c9aec7d63/sm/2013912-1486155614772-BC_RTTHUMB_RE7_PT2.png","duration":3673,"publication_date":"2017-02-03T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-15","changefreq":"weekly","video":[{"title":"2017:E3 - Still Open #15","description":"Join Barbara Dunkelman, Blaine Gibson, and special guest star Kati Morton as they discuss their worst date!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11d3db07-6567-44d8-a34b-3cf5d4712e8f/sm/2013912-1486057230598-AO15_-_PS_-_THUMB.jpg","duration":680,"publication_date":"2017-02-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017-2","changefreq":"weekly","video":[{"title":"2017:E2 - Burnie Vlog #2","description":"Burnie smashes a phone, completes the jigsaw puzzle of packing his suitcases, and arrives in Australia for RTX Sydney.","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65d5e56f-00fb-48d5-a02b-eb61dd73b8c5/sm/2267352-1486057936095-BurnieVlog02_01.png","duration":711,"publication_date":"2017-02-02T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-15-sn97ah","changefreq":"weekly","video":[{"title":"2017:E15 - We Need Therapy - #15","description":"Join Barbara Dunkelman, Blaine Gibson, Mariel Salcedo, and special guest Kati Morton as they answer your questions about mental illness, and discuss experiences coping with their own mental well-being. This episode is sponsored by 1-800-Flowers (http://bit.ly/2jwIWEx) and Squarespace (http://bit.ly/2ktKvz4)\n\n\n\n\n\n\n\n\n\n\n\nKati Morton's Twitter - @KatiMorton, Kati Morton's Channel - Kati Morton - YouTube, Intuitive Eating Workbook - http://bit.ly/2jBkLVz, 7 Cups of Tea - https://www.7cups.com, Suicide Prevention Hotline - 1-800-273-8255, katimorton.com, therapistfinder.com","player_loc":"https://roosterteeth.com/embed/always-open-2017-15-sn97ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ec37977-3a72-46a3-a368-36c9b0420128/sm/2013912-1486051505676-AO15_-_THUMB.jpg","duration":3397,"publication_date":"2017-02-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-rwby-japanese-actress-meets-the-crwby","changefreq":"weekly","video":[{"title":"2017:E14 - RWBY Japanese Actresses Meet The CRWBY","description":"While visiting Japan for the premiere of RWBY Vol. 3 in Tokyo, Miles, Kerry, and Gray meet the Japanese voice cast of RWBY.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-rwby-japanese-actress-meets-the-crwby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07b0fd88-3eec-42d5-a0c4-6af1957e7101/sm/2013912-1485966047706-JapanTrip02_03b.png","duration":157,"publication_date":"2017-02-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-413-post-show-a7fgai","changefreq":"weekly","video":[{"title":"2017:E4 - Podcast #413 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Jon Risinger as they discuss buying tampons, conference calls, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-413-post-show-a7fgai","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76d6b151-29a5-4609-b122-a7c68f9f9026/sm/2013912-1485968030528-rtp413_-_PS_-_THUMB.jpg","duration":968,"publication_date":"2017-02-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-putin-on-a-horse","changefreq":"weekly","video":[{"title":"2017:E13 - Putin on a Horse","description":"While on their way to shoot pickups for ELR, Josh and Blaine encounter some unexpected obstacles: horse traffic and a flat tire.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-putin-on-a-horse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ffd772b-838b-4c81-83f7-fd13ae9dce0b/sm/2013912-1485880244524-PutinHorse_01b.png","duration":152,"publication_date":"2017-01-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-413-ah8abd","changefreq":"weekly","video":[{"title":"2017:E413 - How Up Is Space? - #413","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Jon Risinger as they discuss space travel, owning cats, cringe-worthy eye stuff, and more on this week's RT Podcast! This episode originally aired on January 30, 2017, sponsored by go90 (http://go90.show/2k92iit), ProFlowers (http://bit.ly/2kI2inb), Shari’s Berries (http://bit.ly/2gjcsXO)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-413-ah8abd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a96991e0-7c2c-4db9-b6ba-f8c798d71e60/sm/690915-1485886964298-rtp413_-_THUMB.jpg","duration":5791,"publication_date":"2017-01-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-episode-3-recon-rebirth","changefreq":"weekly","video":[{"title":"2017:E3 - Episode 3: Recon Rebirth","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! There's unrest amongst the Roosters as deals are made, alliances fracture and one agent transforms altogether. Who among them will the killer mole claim next?\n\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff!","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-episode-3-recon-rebirth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fee31be3-8378-4493-971e-d70cc4c9f506/sm/2013912-1485554406767-ELR_03_01.png","duration":740,"publication_date":"2017-01-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-262-j9a7ba","changefreq":"weekly","video":[{"title":"2017:E5 - A Tale of Copper & Quartz","description":"Gus and Esther take a trip to the National History Museum, and come across someone confused about what a diamond is, and suspcious cashier who wants to horde shiny pennies.\n\n\n\n\n\n\n\nAudio from RT Podcast #393\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gabriel Silva & Quinn Weston","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-262-j9a7ba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2589542-f106-4b70-b3fe-e23b954555ef/sm/2013912-1485452851042-rtaa262tn.jpg","duration":122,"publication_date":"2017-01-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-over-inflating-footballs-in-super-slow-motion","changefreq":"weekly","video":[{"title":"S1:E72 - Over-inflating Footballs in Super Slow Motion","description":"It's usually footballs that are doing damage to Dan's head. In this episode, Dan gets revenge. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-over-inflating-footballs-in-super-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acfeaaf3-3660-436a-8039-ca2efa13d92b/sm/82-1485789008553-Screen_Shot_2017-01-29_at_23.03.22.jpg","duration":225,"publication_date":"2017-01-30T09:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-82-ha7o9a","changefreq":"weekly","video":[{"title":"S8:E2 - For the Win #82","description":"Rhyming is fun. Rhyming is cool. Remember this kids. Stay in academics","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-82-ha7o9a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e106f2b-9c22-41bf-8a7b-bca3dfc4bb54/sm/2013912-1485669909106-ots_82ftw_thumb.jpg","duration":497,"publication_date":"2017-01-29T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-spot-of-science-2017-1","changefreq":"weekly","video":[{"title":"2017:E1 - Sexy Animals and The Science of Attraction - #1","description":"What do pale people and peacocks have in common sexually? And, Why do elephants have toe nails? Gus Sorola challenges Chris Demarais and evolutionary biologist Sally Le Page with some of the quirkiest science questions submitted by viewers. Brought to you by Blue Apron (http://cook.ba/2kcG5A1)Sally's Channel - https://www.youtube.com/user/shedscience","player_loc":"https://roosterteeth.com/embed/a-spot-of-science-2017-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/840c1084-fd57-49c2-942d-1a10ca853b8c/sm/2013912-1485556721330-SOS01_-_THUMB.jpg","duration":951,"publication_date":"2017-01-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-82-s98sjl","changefreq":"weekly","video":[{"title":"S8:E82 - MUPPET HEAD - #82","description":" It's never been Jon's intention as a host to kill his contestants but in the event it organically occurs on the show you can be rest assured that we will be sure to keep the cameras rolling. This episode originally aired January 27, 2017 and is sponsored by Audible (http://adbl.co/2kcG2UV) and Blue Apron (http://cook.ba/2kcI33v)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-82-s98sjl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8941f848-ae7c-4cfd-bbc4-fb0cbc3a9b63/sm/690915-1485621214207-ots_82_thumb.jpg","duration":2549,"publication_date":"2017-01-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-11-k975fs","changefreq":"weekly","video":[{"title":"V4:E11 - Volume 4, Chapter 11: Taking Control","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-11-k975fs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/430eff46-1c3d-40f0-9604-d2cd7386210b/sm/2013912-1485553077423-RWBYvolume4episode11Thumbnail_1.jpg","duration":937,"publication_date":"2017-01-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-re7-1-welcome-to-the-family","changefreq":"weekly","video":[{"title":"2017:E2 - RE7 #1 - Welcome to the Family","description":"Resident Evil 7 is finally out! Kyle and Miles are in a search for Ethan's missing wife. Along the way they break into private property, watch someone else's home movies, order a pizza, and do everything wrong while trying to solve a domestic dispute.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-re7-1-welcome-to-the-family","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0875798-d478-4d7e-9c13-f7fce4b46f76/sm/2013912-1485558484730-BC_RTTHUMB_RE7_PT1.png","duration":3190,"publication_date":"2017-01-27T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-14","changefreq":"weekly","video":[{"title":"2017:E2 - Still Open #14","description":"Join Barbara Dunkelman, Ashley Jenkins, Chris Demarais, and Mica Burton as they discuss the first time someone saw them naked.","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f99ccb8b-5d4b-49c1-8c75-69221517b4e1/sm/2013912-1485449459735-AO14_-_PS_-_THUMB.jpg","duration":1061,"publication_date":"2017-01-27T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/burnie-vlog-2017","changefreq":"weekly","video":[{"title":"2017:E1 - Burnie Vlog #1","description":"To celebrate the Year of the Rooster, Burnie will be releasing new behind-the-scenes vlogs for RT Life. Ever wondered what a workday looks like at Rooster Teeth? Join Burnie for a peek into a typical Monday.\n\n\n\n\n\n\n\nMusic:Title: Alone by Marshmello from AloneiTunes Download LinkListen on SpotifyVideo Link","player_loc":"https://roosterteeth.com/embed/burnie-vlog-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28a65191-3152-4dec-9f1b-302494f24eb9/sm/2013912-1485453288534-BurnieVlog_01.png","duration":773,"publication_date":"2017-01-26T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-14-08-ajla","changefreq":"weekly","video":[{"title":"2017:E14 - Has Chris Faked It In Bed? - #14","description":"Join Barbara Dunkelman, Ashley Jenkins, Chris Demarais, and Mica Burton as they discuss misconceptions about life, faking it in bed, and asexuality. This episode is sponsored by HelloFresh (http://bit.ly/2dt9Db8) and Squarespace (http://bit.ly/2k4FDjw)","player_loc":"https://roosterteeth.com/embed/always-open-2017-14-08-ajla","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8792f328-5039-4cd7-834c-440d0460b3b3/sm/2013912-1485448312551-AO14_-_THUMB.jpg","duration":3565,"publication_date":"2017-01-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-412-post-show-ba76fa","changefreq":"weekly","video":[{"title":"2017:E3 - Podcast #412 Post Show","description":"Join Ashley Jenkins, Gavin Free, Chris Demarais, Burnie Burns, and special guest Sally Le Page as they discuss alphabets, The Eleven Little Roosters, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-412-post-show-ba76fa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6870559e-d96a-47b6-9eea-5cc7141708f2/sm/2013912-1485274872589-rtp412_-_PS_-_THUMB.jpg","duration":1343,"publication_date":"2017-01-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-eleven-little-screamers","changefreq":"weekly","video":[{"title":"2017:E10 - Eleven Little Screamers","description":"Just a casual day of screaming at the office. When Blaine needed to record the sounds of women screaming for a scene in Eleven Little Roosters, Patrick and Jessica got very into character.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-eleven-little-screamers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be079a26-aa67-4954-b28d-44fa16289ff5/sm/2013912-1485361485197-ELRScreams_01.png","duration":107,"publication_date":"2017-01-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-free-hugs","changefreq":"weekly","video":[{"title":"2017:E9 - Free Hugs!","description":"In honor of National Hug Day, Rooster Teeth employees took some time out of their day to give hugs to their coworkers (some more willing than others).","player_loc":"https://roosterteeth.com/embed/rt-life-2017-free-hugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e02ff38a-5f72-4884-8760-5f9cbe51de55/sm/2013912-1485194181136-RTLifeHug03b.png","duration":135,"publication_date":"2017-01-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-412-p9a7vd","changefreq":"weekly","video":[{"title":"2017:E412 - Drinking a Memory - #412","description":"Join Ashley Jenkins, Gavin Free, Chris Demarais, Burnie Burns, and special guest Sally Le Page as they discuss grape juice, Joe the Cat, weight loss, and more on this week's RT Podcast! This episode originally aired on January 23, 2017, sponsored by Harry’s (http://hrys.co/28SDlmw), JackThreads (http://bit.ly/2kle6KR), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-412-p9a7vd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c987fa5f-6b7e-4cf9-a1f2-a3e44d49af38/sm/2013912-1485274822746-rtp412_-_THUMB.jpg","duration":6212,"publication_date":"2017-01-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eleven-little-roosters-2017-episode-2-honor-among-assassins","changefreq":"weekly","video":[{"title":"2017:E2 - Episode 2: Honor Among Assassins","description":"Participate in the interactive side of the show at http://elr.roosterteeth.com! The killer mole has made their first move and will soon strike again, agents fortify their positions while one wrestles with their moral code.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe Eleven Little Roosters pits international assassins against each other in an original, interactive spy comedy. Sit back and enjoy a thriller with twists and turns... OR get in on the action, with mind-bending puzzles hidden in every episode that'll force you to rethink how you watch a web series. Search for clues, predict the targets, and win cool stuff! ","player_loc":"https://roosterteeth.com/embed/eleven-little-roosters-2017-episode-2-honor-among-assassins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbf7c9ae-6661-4cde-8f32-01793e65e212/sm/2267352-1485042207448-ELR_02_05Illu_02d.png","duration":586,"publication_date":"2017-01-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-261-pa7fba","changefreq":"weekly","video":[{"title":"2017:E4 - Strangers' Things","description":"The gang discuss awkward interactions with strangers, and their tactics for dealing with them.\n\n\n\n\n\n\n\n\n\nAudio from RT Podcast #396\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gil Calceta & Tanya Fetzer","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-261-pa7fba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/982166cf-6f95-4026-af15-d48ef80436f8/sm/2013912-1484954687474-rtaa261tn.jpg","duration":88,"publication_date":"2017-01-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-for-the-win-81-h8yal9","changefreq":"weekly","video":[{"title":"S8:E1 - For the Win #81","description":"Penises are gross. Or so I've heard.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-for-the-win-81-h8yal9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c56d87f-1e83-4196-8558-23c3e9cf9fd9/sm/2369885-1485022307129-ots_81ftw_thumb.jpg","duration":684,"publication_date":"2017-01-22T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-8-81-j9ahka","changefreq":"weekly","video":[{"title":"S8:E81 - SURGICAL LOVE - #81","description":"A lot of fertility experts get it all wrong nowadays. What you wanna do, for the best chance at conceiving, is really stick your hand as far up your husbands anus as you can. The deeper you're in there, the better chance of finding the baby making stuff he's hiding in there.\n\nMVMT Watches: http://bit.ly/2fN1Otc","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-8-81-j9ahka","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/740e09d1-57fb-4d0e-b032-ffce03eab671/sm/2369885-1485022155326-ots_81_thumb.jpg","duration":2549,"publication_date":"2017-01-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-10-ku7r4w","changefreq":"weekly","video":[{"title":"V4:E10 - Volume 4, Chapter 10: Kuroyuri","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-10-ku7r4w","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d75f85e3-fb2a-474d-9d6b-9fe8585f0b99/sm/2013912-1484933601986-RWBYvolume4episode10Thumbnail.jpg","duration":1134,"publication_date":"2017-01-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2017-resident-evil-7-episode-0","changefreq":"weekly","video":[{"title":"2017:E1 - Resident Evil 7 - Episode 0","description":"We're back and with a brand new game that's not out yet so that's why we are playing the demo! Watch Miles lose his shit as Kyle guides him through a dilapidated old house while being stalked by a homicidal old man. Unfortunately that's not the only horror this house contains. It's Backwardz Compatible and we are playing Resident Evil 7!","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2017-resident-evil-7-episode-0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a721e89-1f46-4876-a5d7-f884e1abcfdc/sm/2013912-1484953295442-BC_RTTHUMB_RE7_PT0.png","duration":5352,"publication_date":"2017-01-20T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-still-open-13","changefreq":"weekly","video":[{"title":"2017:E1 - Still Open #13","description":"Join Barbara Dunkelman, Lindsay Jones, Maggie Tominey, and Mariel Salcedo as they try out the new segment, I wish I knew!","player_loc":"https://roosterteeth.com/embed/always-open-2017-still-open-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab671934-f2bb-4ce2-bc30-01cd21e7d6e4/sm/2013912-1484783865533-AO13_-_PS_-_THUMB.jpg","duration":669,"publication_date":"2017-01-20T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2017-13","changefreq":"weekly","video":[{"title":"2017:E13 - Let Me Feel Your Nipples - #13","description":"Join Barbara Dunkelman, Lindsay Jones, Maggie Tominey, and Mariel Salcedo as they discuss their first roommates, fetishes, and experimenting in the bedroom. This episode is sponsored by Lyft (http://lft.to/2iFEl2l) and MVMT Watches (http://bit.ly/2g6rLUx)","player_loc":"https://roosterteeth.com/embed/always-open-2017-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c6851e1-a399-4463-a80a-2fab92b57eab/sm/2013912-1484783526812-AO13_-_THUMB.jpg","duration":3233,"publication_date":"2017-01-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-birthdays-on-fire","changefreq":"weekly","video":[{"title":"2017:E8 - Birthdays on Fire","description":"The RT Life team planned a special surprise for Chris and Burnie's joint birthday present. Can you handle the heat?","player_loc":"https://roosterteeth.com/embed/rt-life-2017-birthdays-on-fire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70567c65-2a28-4305-976e-45f417ee90f2/sm/2013912-1484842742673-FineArt_04c.png","duration":129,"publication_date":"2017-01-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-the-gosling-enjoy-the-show-04","changefreq":"weekly","video":[{"title":"2017:E10 - The Gosling Gravitation - #.04","description":"Jon Risinger and Tyler Coe are drawn together by their common desire to talk about Ryan Gosling. But as success mounts they are faced with decisions that begin to fray the fragile fabric of their love of Ryan Gosling. And then Andrew Blanchard flies into space with love and magic.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-the-gosling-enjoy-the-show-04","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46edc525-f928-4836-9f3f-18f6e2e5b82a/sm/2369885-1484771833023-ets_pilot04_ryangosling.jpg","duration":2090,"publication_date":"2017-01-18T21:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-411-post-show-ba7fma","changefreq":"weekly","video":[{"title":"2017:E2 - A F*cking Cornetto - Podcast #411 Post Show","description":"Join Gus Sorola, Chris Demarais, Josh Flanagan, and Jon Risinger as they discuss what determines your favorite movie, The Cornetto Trilogy, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-411-post-show-ba7fma","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efb6a5c7-9e5c-46e2-bf03-ff35f06b45cd/sm/2013912-1484687739283-rtp411_-_PS_-_THUMB.jpg","duration":1138,"publication_date":"2017-01-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-elr","changefreq":"weekly","video":[{"title":"2017:E7 - Sexy Walk Training","description":"Ashley attempts to teach Blaine how to perform a sexy walk in a skin tight suit in between takes during Eleven Little Roosters filming. Watch the first episode of ELR here.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-elr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdc2069d-80e2-4415-afe8-5256f14607bc/sm/2013912-1484680594680-BlaineAshleyWalk_03.png","duration":84,"publication_date":"2017-01-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-411-a7ga8f","changefreq":"weekly","video":[{"title":"2017:E411 - The Poop Playlist - #411","description":"Join Gus Sorola, Chris Demarais, Josh Flanagan, and Jon Risinger as they discuss movie mythologies, underwear, bathroom etiquette, and more on this week's RT Podcast! This episode originally aired on January 16, 2017, sponsored by MeUndies (http://bit.ly/2aGm9yg), NatureBox (http://bit.ly/2k1nerQ), Trunk Club (http://bit.ly/29tyrJm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-411-a7ga8f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4a8af1f-c99b-4b69-a74c-1f9aebd56878/sm/2013912-1484670340554-rtp411_-_THUMB.jpg","duration":5551,"publication_date":"2017-01-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-rt-maternity-ward","changefreq":"weekly","video":[{"title":"2017:E6 - RT Maternity Ward","description":"Art Director Max decides to prank Live Action coordinator Patrick in the most disturbing way possible, because friendship?","player_loc":"https://roosterteeth.com/embed/rt-life-2017-rt-maternity-ward","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94e6889d-97b6-414c-b229-93efe73c0d64/sm/2013912-1484341303700-PatrickPrank_02b.png","duration":225,"publication_date":"2017-01-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-260-h8a7aa","changefreq":"weekly","video":[{"title":"2017:E3 - Jeremy's Big Break","description":"Jeremy goes through a wild ride after sustaining an injury during a high school football game.\n\n\n\n\n\nFrom Off Topic Podcast #37\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Beth Mackenzie and Gil Calceta","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-260-h8a7aa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af4f26d4-2cf3-4dec-bf69-726174468feb/sm/2013912-1484356349457-rtaa260tn.jpg","duration":121,"publication_date":"2017-01-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-0-7","changefreq":"weekly","video":[{"title":"2016:E7 - The New Species of Bloodsuckers Living in Subways - #0.7","description":"Has a new species of mosquito made London's Underground its new home? And do plants grow faster with music? Gus Sorola asks and evolutionary biologist Sally Le Page clarifies crazy science questions in this special pilot episode of Let Me Clarify. Sponsored by Casper mattress (http://bit.ly/2jt8qPf)","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-0-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a2f618c-1129-45a2-884b-d710725db059/sm/2013912-1484344467441-LMC7_-_THUMB.jpg","duration":935,"publication_date":"2017-01-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-nugget-ice-maker","changefreq":"weekly","video":[{"title":"2017:E5 - Nugget Ice Maker","description":"Becca brings the nugget ice revolution to Rooster Teeth, and the lovers and critics gather to share their thoughts.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-nugget-ice-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0994b199-f5be-4bd6-bf35-c7b31a3904ca/sm/2013912-1484154349601-NuggetIce_03b.png","duration":113,"publication_date":"2017-01-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-the-stranger-things-spectacle-enjoy-the-show-03","changefreq":"weekly","video":[{"title":"2017:E9 - The Stranger Things Spectacle - #.03","description":" On January 11, 2016, in the town of Austin, TX, 12-year-old Jon Risinger vanishes mysteriously. Jon's frantic mother, Tyler Coe, searches for him with an M41A Pulse Rifle and flamethrower while Police Chief Marcus LaPorte launches his own investigation into the design of the batmobile from Batman Forever. Unfortunately Jon has no friends so no one else went looking for him.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-the-stranger-things-spectacle-enjoy-the-show-03","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/041e8ed8-7a5f-4800-ad22-57063666460b/sm/2369885-1484178137091-ets_pilot03_strangerthings_1024.jpg","duration":3352,"publication_date":"2017-01-12T00:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-go-kart-racing","changefreq":"weekly","video":[{"title":"2017:E4 - Go-Kart Racing","description":"Blaine tests his skills as a sports commentator while at the K1 speed race between the Live Action and Sales departments.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-go-kart-racing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ed47e96-5d6f-4dc5-aaec-a2428c30cd95/sm/2013912-1484088946943-KartRacing_02b.png","duration":167,"publication_date":"2017-01-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-410-post-show-na97ab","changefreq":"weekly","video":[{"title":"2017:E1 - The RT Process - Podcast Post Show #410","description":"Join Gus Sorola, Blaine Gibson, Barbara Dunkelman, and Burnie Burns as they discuss filmmaking, RT production behind the scenes, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-410-post-show-na97ab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6c93c7c-a796-4762-9c24-2b7892484bb0/sm/2013912-1484152234714-rtp410_-_PS_-_THUMB.jpg","duration":1026,"publication_date":"2017-01-11T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-410-pa08hd","changefreq":"weekly","video":[{"title":"2017:E410 - Alexa, Show Me Horsed*ck - #410","description":"Join Gus Sorola, Blaine Gibson, Barbara Dunkelman, and Burnie Burns as they discuss facial hair, Amazon Echo incidents, Twitter blocking, and more on this week's RT Podcast! This episode originally aired on January 9, 2017, sponsored by Audible (http://adbl.co/2iXAnB7), Seeso (http://bit.ly/2iXI3mZ), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-410-pa08hd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82b178e2-6ee2-495d-8063-bc1aacc8974d/sm/2013912-1484065949807-rtp410_-_THUMB.jpg","duration":5905,"publication_date":"2017-01-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-japan-trip","changefreq":"weekly","video":[{"title":"2017:E3 - Japan Trip","description":"Miles, Kerry, and Gray visit Tokyo for the release of RWBY Volume 3. Food, fun, and anime abound. Be sure to check out Fan Service for more of the guys!","player_loc":"https://roosterteeth.com/embed/rt-life-2017-japan-trip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/712024ea-baa4-449a-8b0a-fda5155696f6/sm/2013912-1484002301331-JapanTrip_02b.png","duration":172,"publication_date":"2017-01-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017-259-hapaby","changefreq":"weekly","video":[{"title":"2017:E2 - The Loud and Proud Co-Worker","description":"Burnie and Gus reminisce about a former co-worker who had some \"annoying habits.\" Apparently he was really proud of his cell phone and also about his mad pinball skills.\n\n\n\n\n\n\n\nAudio from RT Podcast #374\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan Battle and Gil Calceta","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017-259-hapaby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7c629d2-8b74-4e4d-b6ad-33f0fe90316c/sm/2013912-1483740849191-rtaa259tn.jpg","duration":113,"publication_date":"2017-01-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-9-fd5jl9","changefreq":"weekly","video":[{"title":"V4:E9 - Volume 4, Chapter 9: Two Steps Forward, Two Steps Back","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-9-fd5jl9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fd293d2-3574-4f7d-b5c3-bd533ff9959d/sm/2013912-1483660711684-RWBYvolume4episode9Thumbnail.jpg","duration":925,"publication_date":"2017-01-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-kanpai-fan-service-12","changefreq":"weekly","video":[{"title":"2016:E12 - Kanpai: I'm So F*cked Right Now - #12","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, Yssa Badiola, Austin Hardwicke, Stan Lewis, and Cole Gallian as they discuss the season in review, anime to watch in 2017, and more on this week's Fan Service!\n\n\n\nThis episode originally aired January 6, 2017","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-kanpai-fan-service-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc7b6441-c724-444a-b2d3-1c62db6c156c/sm/2369885-1483771203974-FS12_-_temp_thumb.jpg","duration":6399,"publication_date":"2017-01-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-wedding-dance-off","changefreq":"weekly","video":[{"title":"2017:E2 - Wedding Dance-Off","description":"While attending Brandon's wedding in November, the RT crew faced off against a real dance crew. The winning team is pretty obvious.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-wedding-dance-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1703ef9-e521-4ed6-bdda-6628d862bdda/sm/2013912-1483548773436-danceoff.jpg","duration":141,"publication_date":"2017-01-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-100-mph-rc-car-destruction-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E71 - 100mph RC Car Destruction in Slow Motion","description":"Gav and Dan love toys. Especially when the toys come with a warning that says \"THIS IS NOT A TOY.\"","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-100-mph-rc-car-destruction-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7a330d6-8207-4ede-9874-9bbf0939bee9/sm/82-1483645553511-Screen_Shot_2017-01-05_at_13.35.01.jpg","duration":494,"publication_date":"2017-01-05T13:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-2017-02","changefreq":"weekly","video":[{"title":"2017:E8 - The K-2SO Kink - #.02","description":" Former scientist Jon Risinger lives on a farm with his daughter, Tyler Coe. His peaceful existence comes crashing down when the evil Ashley Jenkins takes him away from his beloved family. Many years later, Jon is now the lead engineer for the most powerful weapon in the galaxy, comic relief in the form of a charming droid voiced by Alan Tudyk.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-2017-02","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5234377a-a3d6-4bfd-b8ba-78314b74a32f/sm/2369885-1483558287750-ets_pilot02_k2so.jpg","duration":1904,"publication_date":"2017-01-04T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2017-celebrity-impressions","changefreq":"weekly","video":[{"title":"2017:E1 - Celebrity Impressions","description":"Elyse practices her best celebrity impressions during some down time, and James offers his critical input.","player_loc":"https://roosterteeth.com/embed/rt-life-2017-celebrity-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/130d1416-8796-4fbf-8ea1-df9d8d9f2e54/sm/2013912-1483487111922-Elyse_4.jpg","duration":83,"publication_date":"2017-01-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-rtx-sydney-preview","changefreq":"weekly","video":[{"title":"2016:E39 - RTX Sydney Preview","description":"While Gus, Bethany and Bruce tour the new venue for RTX Sydney, Michael and Lindsay have their own fun at PAX. If you haven't already gotten your tickets for RTX Sydney, get them here: http://rtxsydney.com/","player_loc":"https://roosterteeth.com/embed/rt-life-2016-rtx-sydney-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f0a94d8-9cac-4819-8c91-4a8124923ff8/sm/2267352-1482345909038-RTLifeAustralia_01b.png","duration":107,"publication_date":"2017-01-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2017-409-oab7fa6","changefreq":"weekly","video":[{"title":"2017:E409 - The Greatest Hits - #409","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the best moments from 2016, including the apple or the egg, the Lonely Island visit, and more on this week's RT Podcast! This episode originally aired on January 2, 2017, sponsored by Blue Apron (http://cook.ba/29J4MMj) and Casper (http://bit.ly/2bgC0nt)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2017-409-oab7fa6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b0d07cb-c774-4925-83dd-b5ee357cb596/sm/2013912-1483460328645-rtp409_-_THUMB.jpg","duration":4016,"publication_date":"2017-01-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2017","changefreq":"weekly","video":[{"title":"2017:E1 - Kids Are A-Holes","description":"Kerry, Miles, and Gavin talk about the messed up things they used to do when they were little kids; everything from stripping in public to forcing their siblings into toilets. Kids really are assholes.\n\n\n\n\n\n\n\n\n\nAudio from RT Podcast #375\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gabe Silva & Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19657026-8df7-47c4-82ad-d84c1c0c3638/sm/2013912-1481750284996-rtaa258tn.jpg","duration":121,"publication_date":"2017-01-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-burnie-s-dirty-little-secret","changefreq":"weekly","video":[{"title":"S7:E38 - Burnie's Dirty Little Secret","description":"Aaron and Blaine discover Burnie's dangerous habit.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-burnie-s-dirty-little-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c48b6c2d-faf3-4bd0-ad78-b2c9e19bd920/sm/2013912-1481660602247-Hoarder_01b.png","duration":339,"publication_date":"2017-01-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-8-75-gdj6","changefreq":"weekly","video":[{"title":"V4:E8 - Volume 4, Chapter 8: A Much Needed Talk","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-8-75-gdj6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e37500e-44b0-4a15-84ab-a93712c8636d/sm/2013912-1483137484445-RWBYvolume4episode8Thumbnail.jpg","duration":1238,"publication_date":"2016-12-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-see-you-in-20-xx-11","changefreq":"weekly","video":[{"title":"2016:E11 - See You in 20XX - #11","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, Yssa Badiola, Austin Hardwicke and Cole Gallian as they discuss Attack on Titan Season 2, Yuri on Ice, Drifters, and more on this week's Fan Service!\n\n\n\nThis episode originally aired December 30, 2016","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-see-you-in-20-xx-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab94f11f-4d89-485f-8c58-c619fa822728/sm/2369885-1483166308549-FS11_Hyper.01_06_47_16.Still001.jpg","duration":4300,"publication_date":"2016-12-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-9-it-froze","changefreq":"weekly","video":[{"title":"2016:E9 - Fatal Frame #9 - It Froze","description":"It's the finale of our Fatal Frame play through! What went so wrong in the shrine maiden ceremony? What makes that camera so special? What is the three act structure and why is the W.W.E a good example of it? All these questions and more will be answered in this spectacularly spooky and ridiculous conclusion to Fatal Frame!","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-9-it-froze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e50d19d4-b086-4db0-a1ea-178a4e1bd0f9/sm/2013912-1482944748201-BC_FATALFRAMETHUMB_RTThumb_Pt9.png","duration":3423,"publication_date":"2016-12-30T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-resolutions","changefreq":"weekly","video":[{"title":"2016:E41 - Goodbye 2016","description":"Before we welcome 2017, we take one last look at some of our favorite on and off-screen moments from 2016.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-resolutions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b1475e3-00b7-446c-b8c6-0970b3a893fa/sm/2013912-1482943099535-Resolutions_01.png","duration":298,"publication_date":"2016-12-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-408-post-show-ma7fa5","changefreq":"weekly","video":[{"title":"2016:E50 - Oy Vey! - Podcast #408 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss “oy vey”, looking forward to 2017, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-408-post-show-ma7fa5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26b27ebb-974e-4b4f-93ac-1c217aaeb97d/sm/2369885-1482424399312-rtp408_-_PS_-_THUMB.jpg","duration":1067,"publication_date":"2016-12-28T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-jeremy-vs-plywood","changefreq":"weekly","video":[{"title":"2016:E38 - Jeremy vs Plywood","description":"After destroying Gavin's desk and stomping on a plastic fan during Extra Life, Jeremy's knees meet their toughest challenge yet: plywood.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-jeremy-vs-plywood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/837c1c06-0036-40e7-a208-da3eb7003a0a/sm/2267352-1482345240697-JeremyKick_01.png","duration":81,"publication_date":"2016-12-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-408-pa95af","changefreq":"weekly","video":[{"title":"2016:E408 - Has Science Gone Too Far? - #408","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the day after Christmas, bad driving, the year in review, and more on this week's RT Podcast! This episode originally aired on December 26, 2016, sponsored by Loot Crate (http://bit.ly/2f2ju6B), Mac Sales (http://bit.ly/2ibzvZW), MeUndies (http://bit.ly/2aGm9yg)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-408-pa95af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87ddfef5-c0fa-4dd6-a8a9-fd76e680318a/sm/2369885-1482423695567-rtp408_-_THUMB.jpg","duration":5327,"publication_date":"2016-12-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-chris-smoking-hot-date","changefreq":"weekly","video":[{"title":"2016:E46 - Chris' Smoking Hot Date","description":"Chris goes on a blind date with a woman who turns out to be a little older than expected. Also she doesn't know New Zealand is its own country.\n\n\n\n\n\n\n\nAudio from RT Podcast #380\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Quinn Weston","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-chris-smoking-hot-date","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cbe6a00-3528-4a6d-98b0-a6037a6702d8/sm/2013912-1481668978042-rtaa256tn.jpg","duration":107,"publication_date":"2016-12-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-shrinkin-dreamin","changefreq":"weekly","video":[{"title":"2016:E47 - Shrinkin' & Dreamin'","description":"The guys talk about the old rumor surrounding Surge and what it may or may not do to one's penis; Burnie tries to remember things about Harry Potter; Gus has a dream about Burnie trying to kill the office cleaning lady (or is it?).\n\n\n\n\n\n\n\nAudio from \n\n\n\n\n\nRT Podcast #356\n\n\n\n\n\nRT Podcast #370\n\n\n\n\n\nRT Podcast #368\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gabe Silva, Johnathan Floyd, and Beth Mackenzie","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-shrinkin-dreamin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3eddf54e-4703-4a6a-92e0-8382302040fb/sm/2013912-1481669196118-rtaa257tn.jpg","duration":108,"publication_date":"2016-12-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-rooster-teeth-2016-rewind","changefreq":"weekly","video":[{"title":"S7:E39 - Rooster Teeth 2016 Rewind!","description":"Thank you for one hell of a year! Here’s a look at some moments that made 2016 incredible. On to an even better, crazier 2017!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-rooster-teeth-2016-rewind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5ca4bc9-efe8-44c8-972c-9748c676e62a/sm/2267352-1482256641140-Sizzle2016_07c.png","duration":126,"publication_date":"2016-12-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-80-ba8ta5","changefreq":"weekly","video":[{"title":"S7:E11 - For the Win #80","description":"Closing time. One last call for alcohol. So finish your egg nog and fireball whiskey.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-80-ba8ta5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a065314-3387-4c68-918b-0e20d73ed883/sm/2369885-1482563350826-ots_80ftw_thumb.jpg","duration":492,"publication_date":"2016-12-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-chapter-7-redux","changefreq":"weekly","video":[{"title":"V4:E7 - Volume 4, Chapter 7: Punished","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-chapter-7-redux","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5054c18a-ef29-41d9-bc6e-286a9d8c12ad/sm/1769531-1482448309177-RWBYvolume4episode7Thumbnail.jpg","duration":1004,"publication_date":"2016-12-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-something-wrong-with-my-vablina-10","changefreq":"weekly","video":[{"title":"2016:E10 - Something Wrong with my Vablina - #10","description":"Join Gray Haddock, Miles Luna, Kerry Shawcross, Yssa Badiola, Austin Hardwicke and special guest Tony Salvaggio as they discuss the live action Naruto movie, Gundam, Yuri on Ice, and more on this week's Fan Service! This episode originally aired December 23, 2016","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-something-wrong-with-my-vablina-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75a59b40-ce41-4a03-b916-85b7344f86f3/sm/2037887-1482422021995-fanservive_thumb_010.png","duration":3893,"publication_date":"2016-12-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-8-from-the-top-rope","changefreq":"weekly","video":[{"title":"2016:E8 - Fatal Frame #8 - From the top rope! ","description":"It's the Shinto Priest vs Shutter Bug in a no holds barred, winner take all match. It's guaranteed to be a slobber knocker here on Japan's Finest Wrestling! ","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-8-from-the-top-rope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e042949-7b60-426f-b04d-297d374388c2/sm/1769531-1482433666848-BC_FATALFRAMETHUMB_RTThumb_Pt8.png","duration":3024,"publication_date":"2016-12-23T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-80-a86ava","changefreq":"weekly","video":[{"title":"S7:E80 - Rabbi Burnie Burns - #80","description":"When is Hanukkah? Why 8 candles and not 7? Why do the Jews keep stealing my geese? All good questions for your local rabbi.\n\nThis episode originally aired December 22, 2016 and is sponsored by Lyft (http://lft.to/2f9dGp6) and Trunk Club (http://bit.ly/2930z9x)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-80-a86ava","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b6695e7-5c58-470a-935b-4d0957b967c0/sm/2369885-1482517347010-ots_80_thumb.jpg","duration":2617,"publication_date":"2016-12-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-i-mac-annihilator","changefreq":"weekly","video":[{"title":"S1:E73 - iMac Annihilator ","description":"There are a lot of things Gav and Dan don't have access to in the back garden. This combustion tube is one of those things. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-i-mac-annihilator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bebdecae-073d-4621-b31a-ac88d8451abf/sm/82-1482449086830-Screen_Shot_2016-12-22_at_17.19.58.jpg","duration":410,"publication_date":"2016-12-22T17:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-surprise-lightsaber-fight","changefreq":"weekly","video":[{"title":"2016:E40 - Surprise Lightsaber Fight","description":"While waiting for the Rooster Teeth Rogue One screening to begin, Tyler and Kyle decide to see if the Force is strong with their coworkers by challenging them to impromptu lightsaber fights.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-surprise-lightsaber-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/577ad79d-47c5-4df9-a2df-7ca1064ced35/sm/2267352-1482347123648-LightsaberFight_02b.png","duration":221,"publication_date":"2016-12-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/enjoy-the-show-enjoy-the-show-enjoy-the-show-pilot-episode-1","changefreq":"weekly","video":[{"title":"2016:E1 - The Deadpool Defiance - #.01","description":"A failed gameshow host (Jon Risinger) teams up with a \"past his prime\" jock (Tyler Coe) to the discover the meaning behind unicorn masturbation jokes, comedically small man-child hands and ring pops hidden inside body cavities. Along the way they are joined by New England-accented, \"comic relief\" generic white guy, Andrew Blanchard, and in the end ruin some perfectly good movie quotes with swear words.Welcome to Enjoy the Show.","player_loc":"https://roosterteeth.com/embed/enjoy-the-show-enjoy-the-show-enjoy-the-show-pilot-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/971970f3-2b44-437c-ac98-c9f9b45828a3/sm/2369885-1482284211447-ETS01_-_THUMB.jpg","duration":1674,"publication_date":"2016-12-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-407-post-show-ba84af","changefreq":"weekly","video":[{"title":"2016:E49 - We Can Kick It - Podcast #407 Post Show","description":"Join Gus Sorola, Gavin Free, Craig Skistimas, and Burnie Burns as they discuss the worst movies of 2016, Craig's first time on the podcast, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-407-post-show-ba84af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9b6785a-476f-40d8-9797-32ac69efdd26/sm/2369885-1482214841202-rtp407_-_THUMB.jpg","duration":1015,"publication_date":"2016-12-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-holiday-puppies","changefreq":"weekly","video":[{"title":"2016:E37 - Holiday Puppies","description":"Say hello to Casper (blue collar) and Shadow (red collar), two adorable new additions to the Rooster Teeth family.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-holiday-puppies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdb65689-6a05-4e32-be1b-e0c8d60d3779/sm/2267352-1482193154726-RTPuppies_02b.png","duration":170,"publication_date":"2016-12-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-407-ja97af","changefreq":"weekly","video":[{"title":"2016:E407 - National Gus Day - #407","description":"Join Gus Sorola, Gavin Free, Craig Skistimas, and Burnie Burns as they discuss national “holidays,” eggnog, fahrenheit vs celsius, and more on this week's RT Podcast! This episode originally aired on December 19, 2016, sponsored by NatureBox (http://bit.ly/2gVBBYK) and Warby Parker (http://bit.ly/2fAjp7N).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-407-ja97af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f7906ff-5245-44b7-a253-8e4227c4b533/sm/2369885-1482256562134-rtp407_-_THUMB.jpg","duration":5690,"publication_date":"2016-12-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-movie-stories","changefreq":"weekly","video":[{"title":"2016:E45 - Movie Stories","description":"Gus gets hammered at a showing of Bewitched, leading him to berate other members of the audience who liked it; and our good friend Brandon tries to call out a guy for using his phone during a movie and almost gets beat up for it. \n\n\n\n\n\n\n\n\n\nAudio from Off Topic Podcast #20\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gil Calceta and Tanya Fetzer","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-movie-stories","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53a3b8b5-1e83-45c2-bb7b-906429458c2a/sm/2013912-1481668609546-rtaa255tn.jpg","duration":148,"publication_date":"2016-12-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-can-you-watch-my-stuff","changefreq":"weekly","video":[{"title":"S7:E36 - Can You Watch My Stuff?","description":"Is it really a good idea to trust a stranger to watch your stuff?","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-can-you-watch-my-stuff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9318792-5c49-4280-98bb-0d803ae6e634/sm/2013912-1480716952674-DudeDiligence_03b_1.png","duration":225,"publication_date":"2016-12-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-december-17-2016-n-y-c-l-a-e-l-r-and-more-acronyms","changefreq":"weekly","video":[{"title":"2016:E22 - December 17, 2016: NYC, LA, ELR, and More Acronyms","description":"Burnie has been busy lately. Check out his latest vlog to see exactly what he's been up to.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-december-17-2016-n-y-c-l-a-e-l-r-and-more-acronyms","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76a8a106-fecd-4942-9bd8-ba102c235ec9/sm/21-1482011309549-vlog-12-17-16.jpg","duration":584,"publication_date":"2016-12-17T21:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-79-9-a6va8","changefreq":"weekly","video":[{"title":"S7:E10 - For the Win #79","description":"This is Luke. Luke is a good boy. Look at that good boy. Good boy, Luke.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-79-9-a6va8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04b23832-e3a1-4ce7-92f2-7a3fbf96b1b8/sm/2369885-1481927550511-ots_79ftw_thumb.jpg","duration":599,"publication_date":"2016-12-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-all-these-brotherhoods-09","changefreq":"weekly","video":[{"title":"2016:E9 - All These Brotherhoods - #09","description":"Join Gray Haddock, Miles Luna, Yssa Badiola, Cole Gallian, Austin Hardwicke and special guest Elyse Willems as they discuss Gate Box, Drifters, Ghost in the Shell, and more on this week's Fan Service! This episode originally aired December 16, 2016","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-all-these-brotherhoods-09","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f424a99b-b203-40c3-b49c-7bdc78ce76e8/sm/2369885-1481963204304-FS09_Site.mp4.01_15_34_10.Still001.jpg","duration":4561,"publication_date":"2016-12-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-7-the-calamity","changefreq":"weekly","video":[{"title":"2016:E7 - Fatal Frame #7 - The Calamity","description":"Kyle and Miles wake up on night 3 and are tasked with finding the moon shrine and the maiden who lurks within.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-7-the-calamity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0823b468-d779-4e56-80a9-188e2f78661d/sm/1769531-1481928187174-BC_FATALFRAMETHUMB_RTThumb_Pt7.png","duration":2665,"publication_date":"2016-12-16T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-79-ka8avk","changefreq":"weekly","video":[{"title":"S7:E79 - How to Orgy - #79","description":"Still not sure which is better and which is worse. Being the first guy to finish at an orgy or being the last guy to finish at an orgy. Feel free to discuss amongst yourselves. \n\nThis episode originally aired December 15, 2016 and is sponsored by MVMT Watches (http://bit.ly/2gjhmEg) and Trunk Club (http://bit.ly/2930z9x)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-79-ka8avk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97c86e83-8a44-4c17-a709-c76743701f38/sm/2369885-1481915886218-ots_79_thumb.jpg","duration":3056,"publication_date":"2016-12-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-docs-the-meme-machine-the-meme-machine-what-happens-when-the-internet-chooses-you","changefreq":"weekly","video":[{"title":"TMM:E2 - The Meme Machine: What Happens When the Internet Chooses You","description":"Where did memes come from? Can you make a meme? What happens when you become a meme? In The Meme Machine, Rooster Teeth explores the origins of memes, how they spread, and digs into the stories behind some of the most popular “human memes” like Ermahgerd Girl, Overly Attached Girlfriend, and Chocolate Rain Guy.","player_loc":"https://roosterteeth.com/embed/rt-docs-the-meme-machine-the-meme-machine-what-happens-when-the-internet-chooses-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a139890-d834-41b3-ad23-1994deb3e01d/sm/2013912-1481736411874-MemeMachine_01b.png","duration":3218,"publication_date":"2016-12-16T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-bad-santas","changefreq":"weekly","video":[{"title":"2016:E36 - Bad Santas","description":"Tyler and Mariel use leftover props from the holiday short to spread some very unconventional holiday cheer.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-bad-santas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bda37a7-2fa8-4e4b-a4de-7f72a3fb169a/sm/2013912-1481753451882-BadSantas_02b.png","duration":185,"publication_date":"2016-12-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-12-o8araj","changefreq":"weekly","video":[{"title":"2016:E12 - Still Open #12","description":"Join Piñata Barbara Dunkelman, Mariel Salcedo, Elyse Willems, and Bethany Feinstein as they discuss the worst gifts they’ve ever received.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-12-o8araj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37de6b0c-04a1-411c-bec7-05430282f78f/sm/2013912-1481735350535-AO12_-_PS_-_THUMB.jpg","duration":707,"publication_date":"2016-12-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-12-i7afak","changefreq":"weekly","video":[{"title":"2016:E12 - Elyse Willems and the Shaq Attack - #12","description":"Join Barbara Dunkelman, Bethany Feinstein, Mariel Salcedo and Elyse Willems as they discuss embarrassing sex moments, naughty dreams, and what it means to be confident. This episode is sponsored by Casper (http://bit.ly/2d4iXlI) and MVMT Watches (http://bit.ly/2g6rLUx)","player_loc":"https://roosterteeth.com/embed/always-open-2016-12-i7afak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da2cb774-0685-488d-92f5-4ccf37674e9c/sm/2013912-1481734673364-AO12_-_THUMB.jpg","duration":2843,"publication_date":"2016-12-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-406-post-show-9-ag6ad","changefreq":"weekly","video":[{"title":"2016:E48 - The First Live Post Show Ever - Podcast #406 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss robots never forgetting, upcoming games, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-406-post-show-9-ag6ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e1b89a-7090-407a-b1b4-c3cc13be597e/sm/2013912-1481733635080-rtp406_-_PS_-_THUMB.jpg","duration":1646,"publication_date":"2016-12-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-rwby-at-nycc","changefreq":"weekly","video":[{"title":"2016:E35 - RWBY at NYCC","description":"During Miles' NYCC visit, he launches a search for RWBY cosplayers only to find himself a little distracted by friendly fans and video games.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-rwby-at-nycc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56504bd9-b899-40bd-be81-c343caa33b81/sm/2013912-1481649316416-MilesNYCC_04b.png","duration":128,"publication_date":"2016-12-13T17:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-406-bay8ay","changefreq":"weekly","video":[{"title":"2016:E406 - Gavin or Google 12 - #406","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Burnie Burns and special guest Geoff Keighley as they discuss eight years of podcasting, the worst drunk stories, Gavin or Google, and more on this week's RT Podcast! This episode originally aired on December 12, 2016, sponsored by Blue Apron (http://cook.ba/29J4MMj), MeUndies (http://bit.ly/2aGm9yg), Squarespace (http://bit.ly/2aGm9yg)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-406-bay8ay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0568d6b-5d16-4168-95c9-d6576fde0714/sm/2013912-1481646375103-rtp406_-_THUMB.jpg","duration":5964,"publication_date":"2016-12-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-miles-birthday-bonanza","changefreq":"weekly","video":[{"title":"2016:E44 - Miles' Birthday Bonanza","description":"On his 21st birthday, Miles dives in head first into the world of gettin' CRUNK. Which is to say his friend buys him shots. Then Kyle tries to get Miles into a car, and he is NOT having it.\n\n\n\n\n\n\n\nAudio from Sponsor Play - Alien Isloation: Part 1\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Gil Calceta and Gabe Silva","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-miles-birthday-bonanza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c36e84d-ab8b-479c-af83-28a29c13dbc9/sm/2013912-1481305684292-rtaa254tn.jpg","duration":73,"publication_date":"2016-12-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-amazon-go-just-steal-stuff","changefreq":"weekly","video":[{"title":"S7:E37 - Amazon Go: Just Steal Stuff","description":"\"Anything Goes\" is just like Amazon Go... Just not as high-tech.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-amazon-go-just-steal-stuff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54905552-25e0-4247-9750-a7d04518fcef/sm/2013912-1481326815975-Amazon_Go_-_Thumbnail.jpg","duration":97,"publication_date":"2016-12-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-football-vs-face-revisited","changefreq":"weekly","video":[{"title":"S1:E70 - Football vs Face Revisited","description":"Every 6 years, the planets align... with Dan's head. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-football-vs-face-revisited","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f644a78-7909-4632-a273-a0c9a45c3773/sm/82-1481473882652-Screen_Shot_2016-12-10_at_23.37.57.png","duration":390,"publication_date":"2016-12-11T10:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-78-ba765a","changefreq":"weekly","video":[{"title":"S7:E9 - For the Win #78","description":"S7:E9 - For the Win #78","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-78-ba765a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cdeba2e-8a6e-4ffc-9fc7-7d9eac326e25/sm/2013912-1481315790009-ots_78_ps_thumb.jpg","duration":487,"publication_date":"2016-12-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-0-6","changefreq":"weekly","video":[{"title":"2016:E6 - The Sweaty Truth About Body Hair - #0.6","description":"Why isn't body hair as long as the stuff on your head? Gus Sorola asks and Sally Le Page clarifies crazy science questions in the final pilot episode of Let Me Clarify. Sponsored by MVMT Watches (http://bit.ly/2fYsUjd0)","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-0-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0a23e2e-7b08-4de3-b9c6-3fc32a22dcab/sm/2013912-1481301849819-LMC6_-_THUMB.jpg","duration":890,"publication_date":"2016-12-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-6-lot53d","changefreq":"weekly","video":[{"title":"V4:E6 - Volume 4, Chapter 6: Tipping Point","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-6-lot53d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cc6484b-b864-4749-b07f-470e663f296a/sm/2013912-1481241764810-RWBYvolume4episode6Thumbnail.jpg","duration":983,"publication_date":"2016-12-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-back-from-japan","changefreq":"weekly","video":[{"title":"2016:E8 - Back From Japan - #08","description":"Join Gray Haddock, Miles Luna, Kerry Shawcross, Yssa Badiola, Cole Gallian, Austin Hardwicke and special guest Mica Burton as they discuss Attack On Titan Season 2, Japan, Yuri on Ice, and more on this week's Fan Service!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode originally aired December 9, 2016 ","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-back-from-japan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bfa7b1e-0a09-40e2-a7a2-1fa318f70298/sm/2369885-1481384241696-fanservice_thumb_008.png","duration":4403,"publication_date":"2016-12-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhaus-new","changefreq":"weekly","video":[{"title":"2016:E100 - QUESTIONS DONE QUICK? - Open Haus #97","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nDo you love Open Haus but just wish there were about six more substantially less funny people crammed into the shot dragging things down?  Boy are you in luck!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhaus-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bcd0125-03b6-4261-94e6-1c0b862fe897/sm/2371242-1482453033833-Openhaus98.jpg","duration":736,"publication_date":"2016-12-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-dd96","changefreq":"weekly","video":[{"title":"2016:E96 - DICK HARD - Demo Disk Gameplay","description":"I miss the good old days when all we ever had to worry about was well-dressed European criminal masterminds stealing bearer bonds from LA highrises. All you had to do was toss one grizzled shoe-less cop in there and we'd be all set. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-dd96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d94496c9-4a7e-46d9-a59b-aa6390ef40da/sm/2371242-1482259121120-Demo_Disk.png","duration":878,"publication_date":"2016-12-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-nov","changefreq":"weekly","video":[{"title":"2016:E293 - BEST OF BALLS - Best of Funhaus November 2016","description":"Relive our drunkest, ballsiest, second-spookiest month ever with choice clips from the month of November!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattpeake\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-nov","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d065ed1e-12cc-42e8-90cc-702f6e749abb/sm/2371242-1482441521893-November.jpg","duration":924,"publication_date":"2016-12-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-googlerahul","changefreq":"weekly","video":[{"title":"2016:E287 - SITH VS SEX - Google Trends Show","description":"After a few episodes in the wilderness we finally return to what Google and the internet were made for: Boobies and wieners.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/rahulkohli13\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-googlerahul","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cadd06b-e64b-4ad5-867f-11307becfcbd/sm/2371242-1482186958905-FH_Thumb_14_copy_11.jpg","duration":1189,"publication_date":"2016-12-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-episode-4","changefreq":"weekly","video":[{"title":"2016:E283 - WORKIN' THAT POLE - Club Naughty Gameplay","description":"Get ready fellas 'cuz coming to the stage now, fresh off a stint in county for vehicular assault, is \"Venus\"! How 'bout we treat her real good tonight and help her get her kids back. Whadaya say?\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7209e66c-f56d-48f5-abd2-3c086af00931/sm/2371242-1481844464681-FH_Thumb_14_copy_6.jpg","duration":691,"publication_date":"2016-12-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-stalin","changefreq":"weekly","video":[{"title":"2016:E284 - GOTTA NUKE SOMETHIN' - Calm Down, Stalin Gameplay","description":"Say what you will about Stalin and his purges and all the camps and starvation and murders and stuff, but let's be honest, that Russian 'Avengers' knock-off with the were-bear looks pretty damn sweet.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/elyse willems>http://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-stalin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06bef4f7-fb1a-4fbc-afe3-d23a8e68bcf7/sm/2371242-1481847551662-FHcalmdownstalinthumb.png","duration":975,"publication_date":"2016-12-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-50","changefreq":"weekly","video":[{"title":"2015:E52 - WE LOVE PRANKS? - Funhaus Comments #50","description":"Don't even think about messing with Elyse's bros over at Achievement Hunter. She will straight up cut a fool if they hurt her baby boys!\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6aa7beed-7895-42a7-b464-cdaeca231301/sm/2371242-1482357350690-FH_Thumb_Template50.jpg","duration":565,"publication_date":"2016-12-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-face-of-hope","changefreq":"weekly","video":[{"title":"2016:E282 - GAME OF THE YEAR? no. - The Face of Hope: Underground Gameplay","description":"We here at Hutch Labs build three things and three things only: boxed bio-waste, easily killable robots, and sweet hedge mazes.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-face-of-hope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c408941-5b96-4b9c-bac7-9fc535c4c57d/sm/2371242-1482188184664-FH_Thumb_14_copy_13.jpg","duration":585,"publication_date":"2016-12-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-rahul-2","changefreq":"weekly","video":[{"title":"2016:E288 - I WANNA BE AN ACTOR - GTA 5 Gameplay","description":"How long is this little British slice of mocha deliciousness gonna be here making us all sound dumb anyways?\n\n\n\n\n\n\n\n\n\nDangerous - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Ca0YvzN5CkeRULR9PGZicg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-rahul-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00c76d42-443b-4630-a5ff-aafceac374fa/sm/2371242-1482172576268-FH_Thumb_14_copy_8.jpg","duration":732,"publication_date":"2016-12-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup101","changefreq":"weekly","video":[{"title":"2016:E101 - Rogue One: IS IT GOOD? - Dude Soup Podcast #101","description":"Try out Crunchyroll Premium for 30 days for FREE at http://www.crunchyroll.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\nGet ready for a possibly spoiler-filled podcast where the boys talk about:00:00 Star Wars Rogue One  37:00 Shooting 11 Little Roosters and Austin trip stuff45:00 Dude Soup Theater51:45 Nintendo Switch leaked specs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e195ca5-9438-4400-b8cb-208ae2796f27/sm/2371242-1482267180622-Dude_Soup_101_1.png","duration":3753,"publication_date":"2016-12-20T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow101","changefreq":"weekly","video":[{"title":"2016:E101 - WE ARE STRONG AND SEXY","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca6cb04b-4381-48ee-b3d5-5c2296b91df5/sm/2371242-1482198573481-post101thumb.png","duration":3266,"publication_date":"2016-12-20T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-18","changefreq":"weekly","video":[{"title":"S2:E18 - Funhaus Dungeons and Dragons - Episode 18","description":"In which our adventurers battle an evil demon reverse Santa Claus, Myri strikes out, Grimo and Dirik team up, and Racsan finds his mojo. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a948a8a0-497e-4f0d-93e0-a2bee2d18a0c/sm/2371242-1481765401365-Twits_and_Crits_Logo18.png","duration":3420,"publication_date":"2016-12-19T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhaus-96","changefreq":"weekly","video":[{"title":"2016:E96 - BIGGER THAN JESUS - Open Haus #96","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nAll I want for Christmas is Rahul Kohli to speak to me for five god-damn minutes with that sweet accent of his. He could read a phone book or tell me I have cancer. I don't care.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhaus-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1df70cd1-53d0-4142-b1ed-39038efcddc0/sm/2371242-1481922522288-Openhaus96.jpg","duration":800,"publication_date":"2016-12-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-95","changefreq":"weekly","video":[{"title":"2016:E95 - BIG BALLERS - Demo Disk Gameplay","description":"My little league career consisted almost entirely of me hoping to get hit by the pitcher, apologizing to my teammates when I did not get hit by the pitcher, and avoiding the disappointed glare of my father as I waddled back to the bench. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74d0d788-ff79-4b6a-9fc2-bce72e3e958b/sm/2371242-1481825243332-castrodemo.png","duration":1049,"publication_date":"2016-12-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gears-normal","changefreq":"weekly","video":[{"title":"2016:E280 - THE WAY OF THE PUSS - Gears of War 4 Horde Mode Gameplay","description":"Why would we bother to get good when you can just switch to puss mode- I mean easy mo- I mean normal mode instead?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gears-normal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d303f34-f135-4d4d-b40a-9d9d815c484a/sm/2371242-1481740408711-FH_Thumb_14_copy_5.jpg","duration":871,"publication_date":"2016-12-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-racewar","changefreq":"weekly","video":[{"title":"2016:E279 - RACE WAR - Super Mario 64 Gameplay","description":"When we were little there was only one kid in our group who had a Nintendo 64. We would play this game at his house every damn night. One day he told me to climb into a big hole he had dug, then threw a smoke bomb in after me and covered it with a sheet of plywood.Totally worth it.  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/elysewillemshttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-racewar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd763456-bba3-4362-94b6-264bdb760ae5/sm/2371242-1481738603803-Mario_64_Race_War_v2.png","duration":1396,"publication_date":"2016-12-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-sk-bon-appetite-fullhaus","changefreq":"weekly","video":[{"title":"2016:E38 - Senran Kagura: Bon Appétit Gameplay - Fullhaus","description":"All that exposed skin is susceptible to oil burns... and not the good kind of oil.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-sk-bon-appetite-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93b2331c-e309-4a04-a2da-43963a9a5229/sm/1533704-1481927397844-SK_Fullhaus_Thumbnail.jpg","duration":2966,"publication_date":"2016-12-16T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-warhammer","changefreq":"weekly","video":[{"title":"2016:E281 - RAT TRAPPED - Warhammer Vermintide Gameplay","description":"Click here to get the game:>http://bit.ly/2gBQLT1\n\n\n\n\n\nClick here to join Rooster Teeth First as a Double Gold member and get ALL the perks:>https://roosterteeth.com/first/double-gold\n\n\n\n\n\n\n\nI bring word from the Haus of Fun. An Alliance once existed between Spoole and The Funhaus Brotherhood. Long ago they fought and died together. Today he comes to honor that allegiance. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/seanpoole\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-warhammer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94ea7277-5c01-42d6-8126-d7acedf5c392/sm/2371242-1481746590681-Warhammer_Vermintide.png","duration":858,"publication_date":"2016-12-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hello-neighbor2","changefreq":"weekly","video":[{"title":"2016:E278 - OKALY DOKELY DIE! - Hello Neighbor Gameplay","description":"I don't get it. Why can't they just leave this nice man with his surveillance crows, spoiled milk, and bear traps in peace. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hello-neighbor2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9124e17e-e250-43f7-9321-646191a48ae3/sm/2371242-1481673708856-Hello_Neighbor_1.png","duration":788,"publication_date":"2016-12-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-49","changefreq":"weekly","video":[{"title":"2015:E51 - WE ARE NOT ROLE MODELS - Funhaus Comments #49","description":"Will the success of 'Talking Stalkings' lead to renewed interest in the series and possibly a '24'/Gilmore Girls' style return to television?! No. No it won't.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d813fafb-39ba-4a9d-a168-d32555fd73be/sm/2371242-1481675214714-comments_49.png","duration":469,"publication_date":"2016-12-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dead-4","changefreq":"weekly","video":[{"title":"2016:E277 - SANTA'S SLAY - Dead Rising 4 Gameplay","description":"Game Codes for Dead Rising 4 were given to us by Microsoft.\n\n\n\n\n\n\n\n\n\nMy parents gave me the sex talk when I was 4 but let me continue to believe in Santa Claus until I was 8. Nicely done. Go take another bong rip, hippies.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dead-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73c5ff4c-b7fd-4bd8-bce7-f21a6cba167e/sm/2371242-1481667037838-FH_Thumb_14_copy_4.jpg","duration":980,"publication_date":"2016-12-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-mc-stunt","changefreq":"weekly","video":[{"title":"2016:E276 - MOTORCYCLE STUNT CLUB - GTA 5 Gameplay","description":"Somebody oughta remake \"The Fast and the Furious\" but instead of race cars it could be, like, stunt guys who surf and jump out of airplanes and rob banks in funny masks and stuff.   \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-mc-stunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ed1ce83-2280-46a1-96a4-f93c19adb15c/sm/2371242-1481656097188-FH_Thumb_14_copy_3.jpg","duration":1057,"publication_date":"2016-12-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-rahul","changefreq":"weekly","video":[{"title":"2016:E275 - TOWER OF TERROR - GTA 5 Gameplay","description":"Noted famous person Rahul Kohli stops by today to play a little GTA, sound pretty, and mostly to talk to Lawrence about loads on faces. \n\n\n\n\n\n\n\n\n\n\n\n# Dangerous - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Ca0YvzN5CkeRULR9PGZicg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/RahulKohli13\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-rahul","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b05fb8-2d7f-46f1-a279-b7dec9fa7278/sm/2371242-1481654437979-FH_Thumb_14_copy_2.jpg","duration":796,"publication_date":"2016-12-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-dudesoup100","changefreq":"weekly","video":[{"title":"2016:E100 - WE ARE DERPS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-dudesoup100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bece5012-5616-4935-8bd9-ca812b7d3ad4/sm/2371242-1481645881233-DS_PostShow_Template100.png","duration":1926,"publication_date":"2016-12-13T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-dnd-207","changefreq":"weekly","video":[{"title":"S2:E17 - Funhaus Dungeons and Dragons - Episode 17","description":"In which our adventurers return to the village of Jai-Yen and find themselves consumed by the holiday spirit. Decker and Racsan have a little shvitz, and Shattercock and Dirik eat some dope-ass muffins. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-dnd-207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec2a28f9-ce4f-482a-8ed7-e7adb758bb5d/sm/2371242-1481327642992-Twits_and_Crits_Logo17.png","duration":4013,"publication_date":"2016-12-12T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-oh-95","changefreq":"weekly","video":[{"title":"2016:E95 - WE MAKE A VR PORN GAME? - Open Haus #95","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nBy the time she won the coveted role of Dorothy in The Wizard of Oz, Judy Garland was already addicted to barbiturates and amphetamines. The Producer of the film then put Garland on a daily diet of chicken soup, black coffee, and cigarettes. Happy Holidays, everybody!\" \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-oh-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69fe8696-1f3d-4e30-ba11-f585799b7448/sm/2371242-1481338948197-Openhaus95.jpg","duration":615,"publication_date":"2016-12-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-dd-94","changefreq":"weekly","video":[{"title":"2016:E94 - MEESA HORNY - Demo Disk Gameplay","description":"Whether you're a hardcore Star Wars fan or a life-long Trekkie, we can all agree on one thing: Guy Fieri is an @$$hole.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-dd-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d07f30-0ee2-4742-8fe1-e5d75c921d4a/sm/2371242-1481339744859-FH_Thumb_14_copy.jpg","duration":1007,"publication_date":"2016-12-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-deceit","changefreq":"weekly","video":[{"title":"2016:E273 - SMELL MY FEAR - Deceit Gameplay","description":"\"In 1999, Denise Chen, a psychologist now at Rice University in Houston, Texas, asked a group of volunteers to sniff sweat from people who had watched either funny or scary film clips. More than half of the volunteers successfully identified a sample of fearful sweat despite not being able to consciously smell any difference in the samples.\"     - The American Journal of Completely Inconclusive Studies that are Dumb and also Who Gives a S#!t.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-deceit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8a5ffe7-5ec7-4b59-8a43-5a7b42633a7a/sm/2371242-1481154328221-FH_Thumb_13_copy_10.jpg","duration":776,"publication_date":"2016-12-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-bon-apetit","changefreq":"weekly","video":[{"title":"2016:E271 - PERVERT TRASH - Senran Kagura: Bon Appétit Gameplay","description":"As a former food-service worker, let me assure you that over the years someone has committed a sex act on nearly every surface of your favorite restaurant. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-bon-apetit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2fca771-977d-4fea-84c1-f0dbe2812ca3/sm/2371242-1481073519872-FH_Thumb_14_copy_5.jpg","duration":736,"publication_date":"2016-12-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-overwatch-sleep","changefreq":"weekly","video":[{"title":"2016:E272 - SLEEPY TROLLS - Overwatch Gameplay","description":"If you want the baby boy's soul, you gotta pay the troll toll. You gotta pay the troll toll to get in.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-overwatch-sleep","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5983a45e-139f-4186-bddc-397d818dfa26/sm/2371242-1481067314966-FH_Thumb_13_copy_8.jpg","duration":581,"publication_date":"2016-12-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-ow-fh-vs-ah","changefreq":"weekly","video":[{"title":"2016:E274 - OVERWATCH VS ACHIEVEMENT HUNTER - Overwatch Gameplay","description":"You all thought it would never happen. We begged. We pleaded. We nearly threatened and bribed but now, finally, it's Funhaus vs Achievement Hunter on the Overwatch field of battle. You're welcome.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/mattseditbayhttp://twitter.com/omarcitohttp://twitter.com/_jacobfullertonhttps://twitter.com/C9KyKyhttps://twitter.com/C9Surefourhttps://twitter.com/mendokusaiihttps://twitter.com/C9_Adamhttps://twitter.com/rybehhttps://twitter.com/RoolfOW\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/\n\n\n\n\n\n\n\n\n\n\n\n\n\nSmite VS Achievement Hunter:","player_loc":"https://roosterteeth.com/embed/gameplay-2016-ow-fh-vs-ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d58492e8-fa32-4fa0-b853-e469143d5336/sm/2371242-1481236843400-FH_Thumb_14_copy_7.jpg","duration":1658,"publication_date":"2016-12-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-genital-jousting-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E37 - Genital Jousting Gameplay - Fullhaus","description":"Come one, come all! Circumsised and and uncircumsised! If you enjoy floppy peeners slithering to and fro with the aim of penetrating some patoot, the next half hour will be quite fulfilling.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-genital-jousting-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e814fcf-f8aa-4b59-abe0-77183a78b99a/sm/1533704-1481221878840-Genital_Jousting_Fullhaus_Thumbnail.jpg","duration":2108,"publication_date":"2016-12-08T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-new-2","changefreq":"weekly","video":[{"title":"2015:E50 - WE MAKE GOOD STUFF? - Funhaus Comments #48","description":"What happen?Somebody set up us the bomb.We get signal.What!\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-new-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/303ca6c9-afe7-42ae-8985-a15b636309c1/sm/2371242-1481231030372-FH_Thumb_Template48.jpg","duration":563,"publication_date":"2016-12-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-toonstruck","changefreq":"weekly","video":[{"title":"2016:E270 - TERRIBLE TOONS - Toonstruck Gameplay","description":"Little known fact about the movie \"Cool World\": During filming, directer Ralph Bakshi once assaulted pruducer Frank Mancuso Jr. over creative differences.Lesser known fact: This same film spurred my very first erection.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-toonstruck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9ab6241-d9d4-4bb1-b961-cf7a32f71c54/sm/2371242-1481071750339-FH_Thumb_13_copy_9.jpg","duration":567,"publication_date":"2016-12-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gtadance","changefreq":"weekly","video":[{"title":"2016:E269 - DANCING WITH THE SCARS - GTA 5 Gameplay","description":"Only Funhaus could start a biker gang and make it all about hairstyles, outfits, dancing, and Wes Anderson movies. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gtadance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/602af0e1-b538-4c12-be4e-c2c79f1fb658/sm/2371242-1481052225979-FH_Thumb_14_copy_3.jpg","duration":1036,"publication_date":"2016-12-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gtasnipes","changefreq":"weekly","video":[{"title":"2016:E268 - GRENADE BASKETBALL - GTA 5 Gameplay","description":"Benson truly is the Spuds MacKenzie of our time. You remember Spuds, right? Y'know, that dog in the Hawaiian shirt and sunglasses that all those drunk chicks wanted to bang in the 80's. \n\n\n\n\n\n\n\n\n\n\n\nBasketball vs Snipers: http://rsg.ms/45270b9\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gtasnipes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89a673f1-ecac-4dbb-98ae-193fef4fff11/sm/2371242-1481049609085-FH_Thumb_14_copy_2.jpg","duration":479,"publication_date":"2016-12-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow99","changefreq":"weekly","video":[{"title":"2016:E99 - WE ARE BRAVE","description":"2016:E99 - WE ARE BRAVE","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83e7e0a2-e56d-48da-ab01-57e0fbe69645/sm/2371242-1481054249987-dsps99elyse.png","duration":2065,"publication_date":"2016-12-06T15:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup-new-2","changefreq":"weekly","video":[{"title":"2016:E99 - YouTube UNSUBSCRIBING YOU? - Dude Soup Podcast #99","description":"Support our sponsors! Get a Family Gift Pack from Omaha Steaks for $49.99 by entering \"DUDE\" in the search bar at http://www.omahasteaks.com/\n\nAnd Our sponsors at MVMT are going to give you 15% off your entire purchase. Go to http://www.mvmtwatches.com/DudeSoup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLarr is back to talk about his magical journey to the land of his birth plus:Current issues with YouTube/H3H3Death StrandingPSXLast of UsMass EffectSpider-ManPS4\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup-new-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e099284-66a1-4538-b9bc-b1d8523a634c/sm/2371242-1480988446010-FH_Thumb_14_copy.jpg","duration":4238,"publication_date":"2016-12-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-dnd-16","changefreq":"weekly","video":[{"title":"S2:E16 - Funhaus Dungeons and Dragons - Episode 16","description":"In which our adventurers encounter the darkest magic they've ever seen, and Mr. Skittles acts like a total dick. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Buy the Twits & Crits Poster: https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-dnd-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93264bc9-dc6d-4b06-9809-73fa05814da1/sm/2371242-1480723345527-Twits_and_Crits_Logo16.png","duration":3284,"publication_date":"2016-12-05T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-haus-new","changefreq":"weekly","video":[{"title":"2016:E94 - WE HAUNT EACH OTHER - Open Haus #94","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nToday in \"Ghost Dad\" IMDB trivia that seems creepy in retrospect:Raven-Symoné auditioned for the role of Amanda Hopper but was deemed too young for the part. However, Bill Cosby liked her so much he then cast her as Olivia Kendall on The Cosby Show (1984).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-haus-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ba215cc-798d-42f0-810e-3238379ebf95/sm/2371242-1480734958191-Openhaus94.jpg","duration":652,"publication_date":"2016-12-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-new-3","changefreq":"weekly","video":[{"title":"2016:E95 - ATTACK OF THE BONES - Demo Disk Gameplay","description":"Gene Simmons claims to have slept with over 4500 women. Is that all? What a wuss, right guys?!*(walks home, watches 'Vampire Diaries', falls asleep alone on bare twin mattress)*\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-new-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a431df9-394e-4fcb-9e2f-6a73e201f8ae/sm/2371242-1480736302947-DemoDisk93.png","duration":869,"publication_date":"2016-12-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-deadrising","changefreq":"weekly","video":[{"title":"2016:E267 - MURDER THE DEAD - Dead Rising 3 Gameplay","description":"Wait a minute! Let me wrap my head around this one. They're dead, but they're still kind of living? They're, like, walking dead people? Damn, this is gold. You'd better mail that s#!t to yourself before someone swipes it.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-deadrising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8140748-36c4-4741-8992-13416b76110d/sm/2371242-1480630351109-FH_Thumb_13_copy_7.jpg","duration":924,"publication_date":"2016-12-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-stalkins","changefreq":"weekly","video":[{"title":"2016:E266 - TALKING STALKINGS - Drunk Silk Stalkings Podcast","description":"I went to bed that night seriously wondering how many of my coworkers were coming in in the next morning and how many would wake up in hospital beds, jammed full of tubes.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcitohttp://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-stalkins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd190e2c-c00f-4fb9-8328-9c88b7faa861/sm/2371242-1480629333533-FH_Thumb_13_copy_6.jpg","duration":871,"publication_date":"2016-12-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-five-nights-at-freddy-s-sister-location-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E36 - Five Nights at Freddy's: Sister Location Gameplay - Fullhaus","description":"We finally become REAL Tubelords by playing a true Tubelord's game.\n\n\n\n\n\n\n\n\n\n\n\n...nah. It's just an hour of puckered buttholes.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-five-nights-at-freddy-s-sister-location-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37a6ba79-7b88-489b-81c0-995b80013d27/sm/1533704-1480721653624-Five_Nights_Fullhaus_Thumbnail.jpg","duration":2893,"publication_date":"2016-12-03T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-titanfall2","changefreq":"weekly","video":[{"title":"2016:E265 - ACHIEVEMENT UNLOCKED - Titanfall 2 Gameplay","description":"So we're not exactly the best at this one. Big deal whatever who cares. Like you're so great. There're more important things in life than video games. I hear. Shut up.\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n>http://twitter.com/adamkovichttp://twitter.com/brucegreene\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-titanfall2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b4ca54f-83cc-4eb5-8d3c-e46f58cf3e88/sm/2371242-1480623430554-FH_Thumb_13_copy_4.jpg","duration":1021,"publication_date":"2016-12-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-wheelhaus-new","changefreq":"weekly","video":[{"title":"2016:E264 - FREE RIDE - Wheelhaus Gameplay","description":"Honestly, I don't even remember which games they played this week. I was completely mesmerized by James' sweet pecs the entire time. We was simply poured into that 4-buttoned long sleeve whatever.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-wheelhaus-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/263b924e-a11e-41f8-b56d-cfd5b9e8e9cd/sm/2371242-1480621464031-FH_Thumb_13_copy_5.jpg","duration":889,"publication_date":"2016-12-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-your-comments-47","changefreq":"weekly","video":[{"title":"2015:E60 - ADAM SUCKS AT ANIME - Funhaus Comments #47","description":"We finally got our million sub bling! Thanks to all of you out there who watch our stuff, spread the word, and allow us to keep doing what we love! Y'all are the best!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-your-comments-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afa59b08-31a6-45b5-8f97-78d867b735c0/sm/2371242-1480638945520-FH_Thumb_Template47.jpg","duration":529,"publication_date":"2016-12-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-genitals","changefreq":"weekly","video":[{"title":"2016:E263 - ANAL RETENTIVE - Genital Jousting Gameplay","description":"There's no more need for sexual education in schools or the dreaded \"Talk\" with your kids. We here at Funhaus have taken care of all of that with this simple tutorial. You're welcome, America!\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-genitals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c04d243-2202-4e28-8202-f8c6d454e2b2/sm/2371242-1480535108929-FH_Thumb_13_copy_3.jpg","duration":1005,"publication_date":"2016-12-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-drugs","changefreq":"weekly","video":[{"title":"2016:E262 - LEGALIZE IT - GTA 5 Gameplay","description":"Those Funhaus boys, they grow the bombest, dankest, stickiest, ickiest, illest, wackiest, tabacciest, wooly, buttery, bushiest, kushiest, hazy, primo, leafiest, kiefiest, furriest, polite, unnassuming, taciturn, mercurial, marbled, hen-pecked, churlish, banal, truculent, furtive... uh... what the hell was I talking about?  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-drugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb42c299-0454-425a-a31b-ee7434a36fbe/sm/2371242-1480468480878-FH_Thumb_13_copy_2.jpg","duration":1145,"publication_date":"2016-11-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-grossout","changefreq":"weekly","video":[{"title":"2016:E261 - GAG REFLEX - GTA 5 Gameplay (barely)","description":"I didn't even think it was possible to discuss menstruation, venereal disease, AND pet care in one GTA video but what the hell do I know. Put down the Takis and Mountain Dew, kids. You've been warned\n\n\n\n\n\n\n\n\n\n\n\n\n\nBiggest Stunt Ramp GTA - http://rsg.ms/eaaa812\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-grossout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39bc46b7-79ed-4e4e-a844-a0e203e5c788/sm/2371242-1480466923494-FH_Thumb_13_copy_1.jpg","duration":460,"publication_date":"2016-11-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-s-e-n-p-a-i","changefreq":"weekly","video":[{"title":"2016:E98 - WE ARE SENPAI!","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-s-e-n-p-a-i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dbfbbc5-1abd-4aaf-9c3f-f1cb74b99c6a/sm/2371242-1480443375009-ps98larr.png","duration":3082,"publication_date":"2016-11-29T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup-new","changefreq":"weekly","video":[{"title":"2016:E98 - NUDITY CENSORED ON Consoles? - Dude Soup Podcast #98","description":"Support our sponsors! Head to http://www.omahasteaks.com, enter the code DUDE in the search bar, and add the family gift pack to your cart and get a 77% savings.And get 15% off your MVMT watch purchase today —WITH FREE SHIPPING -- by going to http://www.mvmtwatches.com/DudeSoup \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHope you all had a pleasant holiday! We're back talking about our Thanksgiving festivities along with:14:00 Nudity in games31:30 Westworld, Gilmore Girls, and other TV46:30 Alien, Moana, and other films \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/833a5ab6-239c-4e7d-b73f-efc1c8ebb1aa/sm/2371242-1480384731143-FH_Thumb_13_copy.jpg","duration":4035,"publication_date":"2016-11-29T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-15","changefreq":"weekly","video":[{"title":"S2:E15 - Funhaus Dungeons and Dragons - Episode 15","description":"A giant, fleshy monstrosity appears.... and no, it's not Shattercock! Geez. Plus, Dirick gets in touch with his avian side.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/Twits & Crits Poster! https://store.roosterteeth.com/products/funhaus-twits-crits-poster-18-x-24","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-funhaus-dungeons-and-dragons-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f851d374-cdd4-4034-acea-5975569eac65/sm/2371242-1479931114769-Twits_and_Crits_Logo15.png","duration":3332,"publication_date":"2016-11-28T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhausnew-2","changefreq":"weekly","video":[{"title":"2016:E93 - SEX WITH CARTOONS? - Open Haus #93","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\nI blame Jim Belushi for all these siblings of dead celebrities getting so much work in Hollywood. But then I blame Jim Belushi for most of the s#!t wrong with this world. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhausnew-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42e9b6fe-0202-4369-b26e-3727f2bfa004/sm/2371242-1479955079402-Openhaus93.jpg","duration":629,"publication_date":"2016-11-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-homerun-derpy-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E100 - HOMERUN DERPY - Demo Disk Gameplay","description":"Y'know that joke they make during the baseball game? The one about being at the plate and the pitch that was a ball but then it was a strike. That exact thing happened in real life to a fat little me the one year I was forced to play baseball as a kid. I made a a vow that day that MY child would NEVER exert himself. Ever. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-homerun-derpy-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f529b53-78f5-4319-ad80-29f8ad7bc7ad/sm/2371242-1479958861471-demodiskthumb1.png","duration":1068,"publication_date":"2016-11-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-game-attack-battlefield-1-gameplay","changefreq":"weekly","video":[{"title":"2016:E258 - THAT'S F**KING TEAMWORK - Battlefield 1 Gameplay","description":"I know things look bleak boys. Jerry has confounded us at every turn and the trenches flow over with the bodies of our dead. But someday this will all be worth it. Someday people will pretend to fight these selfsame battles through strange machines. And people whom they may never meet will call them a yet unknown slur for a \"sexual invert\" as they fall. Onward, for our salty progeny!  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/craigskitzhttp://twitter.com/shaunbolen\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-game-attack-battlefield-1-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e95d542-cf89-4ee7-a00a-3216c350e17b/sm/2371242-1479928465137-FH_Thumb_13_copy_23.jpg","duration":762,"publication_date":"2016-11-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-5-nites-freddys","changefreq":"weekly","video":[{"title":"2016:E257 - SCARED STUPID - Five Nights at Freddy's: Sister Location Gameplay","description":"Fun Fact: Chuck E. Cheese's was the brainchild of Atari co-founder Nolan Bushnell who dreamed of a magical place where children everywhere could enjoy their birthdays without inviting me. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-5-nites-freddys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90f7cca6-da5a-41df-9ce6-8f6e7ce3688b/sm/2371242-1479926116423-FH_Thumb_13_copy_22.jpg","duration":731,"publication_date":"2016-11-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-team-helpful-battlefield-1-gameplay","changefreq":"weekly","video":[{"title":"2016:E256 - DON'T USE GUNS - Battlefield 1 Gameplay","description":"It's nice to helpful and supportive and all but sometime you gotta neck-stab a dude when he keeps you from healing your bros.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-team-helpful-battlefield-1-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc06f394-3f71-4952-b292-b4ac3e495ae1/sm/2371242-1479936702698-FH_Thumb_13_copy_21.jpg","duration":865,"publication_date":"2016-11-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2016-filmhaus-november","changefreq":"weekly","video":[{"title":"2016:E3 - BEST MOVIES of 2016? - Movie Podcast","description":"Oh boy! Adam from Your Movie Sucks stops by to chime in with his best picks of the year! Be warned, there are potential spoilers for the following:Fantastic Beasts, Arrival, Oldboy, The Handmaiden, Split, The Visit, Zootopia, Big Hero 6, The Little Price, and The Wicker Man.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/2gay2lift\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2016-filmhaus-november","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/015c2efa-416a-40d7-8f18-21d7b1a29e3e/sm/2371242-1479935467184-FH_Thumb_MoviePodcast_112616.jpg","duration":1934,"publication_date":"2016-11-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments46","changefreq":"weekly","video":[{"title":"2015:E60 - YOU GOT TROLLED - Funhaus Comments #46","description":"When I was a kid, all you could do with VR was sit in a gyroscope and have weird melty sex with Pierce Brosnan and Jeff Fahey.It's a joke. Because of \"The Lawnmower Ma-\" y'know what never mind. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b961e0b-4c68-494b-981c-f4eaad00bd78/sm/2371242-1479950729714-FH_Thumb_Template46.jpg","duration":519,"publication_date":"2016-11-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-mario-party-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E35 - Drunk Mario Party Gameplay - Fullhaus","description":"If you've ever wanted to witness an entire hour of Lawrence failing, step right up!","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-mario-party-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bea85656-dc72-4acc-acfb-3c32fcfb35b0/sm/1533704-1479943003869-Mario_Party_Fullhaus_Thumbnail.jpg","duration":4364,"publication_date":"2016-11-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-god-awful","changefreq":"weekly","video":[{"title":"2016:E255 - GOD AWFUL GAMES - The God's Chain Gameplay","description":"The game's description on Steam sounds like your 6 year old nephew trying to tell you the plot of \"Prometheus\":  Finally the day came when we found our GOD.Human Beings are an experiment done by them.The human beings are evolving and have become one of the greatest powers in the universe which is becoming a great problem for other colonies in the universe.So our god decides to end the experiment but now human beings will fight for their existence. Will human beings exist in this space war or will become a part of history ? Will our god destroy us or will human beings will destroy other colonies ? What will be the future of Human Beings ?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-god-awful","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44e242fc-a7f1-4462-87a9-b1d4308c22c2/sm/2371242-1479510732293-FH_Thumb_13_copy_18.jpg","duration":701,"publication_date":"2016-11-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-tron","changefreq":"weekly","video":[{"title":"2016:E259 - (not) TRON BIKE BATTLE - GTA 5 Gameplay","description":"Today in real Jeff Bridges IMDB trivia clearly written by Jeff Bridges:\"Jeff Bridges produced too much of a bulge in the crotch area of his computer outfit, so he was forced to wear a dance belt to conceal it.\" \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-tron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62bbfdba-6097-42f3-ae64-5ceb28e85971/sm/2371242-1479863375747-FH_Thumb_13_copy_24.jpg","duration":770,"publication_date":"2016-11-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-tsunami","changefreq":"weekly","video":[{"title":"2016:E260 - TSUNAMI WARNING - GTA 5 Gameplay","description":"This is less a gameplay video and more of an eerie premonition of Lawrence's first days in Japan. \n\nTsunami Simulator -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/UCyD6FiLSUiaGa7vaz54bQ#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-tsunami","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c20e9f4b-01e3-4e92-b17b-862c9879a349/sm/2371242-1479860249912-FH_Thumb_13_copy_26.jpg","duration":753,"publication_date":"2016-11-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup97","changefreq":"weekly","video":[{"title":"2016:E97 - The Last Guardian: YOU HYPED, BRO?! - Dude Soup Podcast #97","description":"Support our sponsors! Get your first three meals free with free shipping by going to http://www.blueapron.com/soupAnd get 15% off of your MVMT order with free shipping by going to http://www.mvmtwatches.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLawrence is caught in the aftermath of a tsunami but we soldier on this week discussing:00:00 - Lawrence in Japan07:00 - Last Guardian16:00 - Transformers 525:00 - Disney stuff39:00 - Spooky games45:00 - Elyse's Holiday Theater52:30 - Movies\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3fff101-fe21-4c01-aff5-af5f8e7739ea/sm/2371242-1479845434696-FH_Thumb_13_copy_25.jpg","duration":3868,"publication_date":"2016-11-22T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow97","changefreq":"weekly","video":[{"title":"2016:E97 - WE ARE HOT GIRLS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2055b81-1036-4c10-9678-2dda857f6494/sm/2371242-1479779918868-postshow97.png","duration":3118,"publication_date":"2016-11-22T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-dnd14","changefreq":"weekly","video":[{"title":"S2:E14 - Funhaus Dungeons and Dragons - Episode 14","description":"In which faces are removed, confounding puzzles are solved, fantasies are explored, and, sadly, Shattercock finds cover for her bosom.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-dnd14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6494becc-3f29-4eab-a652-18b28f25bf67/sm/2371242-1479500968197-TC_Thumb_Option3.png","duration":4410,"publication_date":"2016-11-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhausnew","changefreq":"weekly","video":[{"title":"2016:E92 - WE MAKE FUNHAUS GREAT AGAIN? - Open Haus #92","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe don't really have any super brown people to denigrate and oppress but I suppose if we had to we could build a wall around Omar and Jacob.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhausnew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e35bc30-ef48-4456-b4b8-b93978f61646/sm/2371242-1479519472430-Openhaus92.jpg","duration":602,"publication_date":"2016-11-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-new-2","changefreq":"weekly","video":[{"title":"2016:E95 - LOVE IS BLIND - Demo Disk Gameplay","description":"That Ben Affleck \"Daredevil\" movie had two Evanescence songs in it. TWO! I don't even have a joke here. What the hell, 2003?! And don't blame 9/11 like last time. You had two whole years to get your s#!t together. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-new-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/742b48ad-380b-4c1d-9556-555bc0050932/sm/2371242-1479524354369-FH_Thumb_13_copy_20.jpg","duration":1059,"publication_date":"2016-11-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of","changefreq":"weekly","video":[{"title":"2016:E254 - BEST OF SPOOKUMS - Best of Funhaus October 2016","description":"Relive a month of spooks that left every chair in the Funhaus offices soaked with hot urine. Or worse.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattpeake\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bd8714c-9c44-4ef4-93d5-0c8f592e11ab/sm/2371242-1479494560742-October.jpg","duration":865,"publication_date":"2016-11-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dead-presidents-hitman-blood-money-gameplay","changefreq":"weekly","video":[{"title":"2016:E253 - DEAD PRESIDENTS - Hitman Blood Money Gameplay","description":"In these trying, divisive political times, just be glad Lawrence is there to make sense of it all by shooting a bunch of ragdolly secret service men and headbutting the fake First Lady. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dead-presidents-hitman-blood-money-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/223447e9-5b50-431a-bb42-4f5a2120bc47/sm/2371242-1479491968423-FH_Thumb_13_copy_17.jpg","duration":724,"publication_date":"2016-11-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-lost-and-afraid-stay-close-gameplay-with-james-elyse","changefreq":"weekly","video":[{"title":"2016:E252 - LOST AND AFRAID - Stay Close Gameplay with James & Elyse","description":"\"Daddy? Why did you and Mommy get divorced?\"Well, James Jr., sometimes mommies and daddies need to live apart.\"\"But why?*sigh* \"Well, it all started with a game called 'Stay Close'...\"\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-lost-and-afraid-stay-close-gameplay-with-james-elyse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0932f8a-b0af-40eb-a422-ca492ad04f03/sm/2371242-1479431827050-StayClosePt2.jpg","duration":1598,"publication_date":"2016-11-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-watchdogs2","changefreq":"weekly","video":[{"title":"2016:E250 - HACK BROS - Watch Dogs 2 Gameplay","description":"Thank you to Ubisoft for sponsoring this video. Check out the game by clicking the link below!\n\nhttp://ubi.li/thue9\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLawrence finally gets to join in on a Watch Dogs adventure full of hacks, back-hacks, side-hacks, slide-hacks, parkour, and running people over.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-watchdogs2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e654ca3c-b486-4e87-b82f-0128745ee14d/sm/2371242-1479426810897-FH_Thumb_13_copy_15.jpg","duration":959,"publication_date":"2016-11-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-night-terrors-stay-close-gameplay-with-bruce-lawrence","changefreq":"weekly","video":[{"title":"2016:E251 - NIGHT TERRORS - Stay Close Gameplay with Bruce & Lawrence","description":"Tired of gettin' spooked all last month? Too bad! Hope you like weird stretched out skin monsters and oddly saggy mannequins who sound like Predator. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/kootra\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-night-terrors-stay-close-gameplay-with-bruce-lawrence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ceeee8de-c506-4564-8e15-f9581e4dcf6b/sm/2371242-1479429379298-FH_Thumb_StayClose.jpg","duration":1887,"publication_date":"2016-11-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-wario-ware-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E34 - Drunk WarioWare Gameplay - Fullhaus","description":"Behold! 40 glorious minutes of increasingly drunk people flailing their limbs around.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-wario-ware-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1dcd384-29f1-4398-a48a-f4b3b3cc627a/sm/1533704-1479407775960-WarioWare_Fullhaus_Thumbnail.jpg","duration":2434,"publication_date":"2016-11-17T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-your-comments-45","changefreq":"weekly","video":[{"title":"2015:E50 - WE HATE ADBLOCK - Funhaus Comments #45","description":"I want to personally call out whichever one of you fans out there shook hands with Adam and gave him Tuberculous. It's really starting to affect our content. Not cool.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-your-comments-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f28ef9b0-1f6b-4089-a5e8-36369a436163/sm/2371242-1479417861357-FH_Thumb_Template45.jpg","duration":600,"publication_date":"2016-11-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-biker","changefreq":"weekly","video":[{"title":"2016:E249 - PRISON BREAK - GTA 5 Gameplay","description":"How did it come to this? All Lawrence wanted to do was settle in and pleasure himself at the Buff Huskies communal laptop and suddenly he's shooting up a precinct full of cops.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-biker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7719fcb-5a86-479b-8e9f-35f293fa6a79/sm/2371242-1479317425763-GTA_Bikers_Thumb_v1.gif","duration":734,"publication_date":"2016-11-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-r-a-c-e-or-d-i-e-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E248 - RACE... OR DIE! - GTA 5 Gameplay","description":"\"Wanna see the 'Legend of the Lost Legend'?\"\"Mr Stine, if you're not ready to order, I can come back.\"\"How about checking out 'My Hairiest Adventure'?\"This really isn't approriate...\"\"Maybe I could get 'Lost in Stinkeye Swamp'.\"\"I'm getting the manager.\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#It's Not Stunting C#nts! -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/A48pIN0bt0qipQKiWhzVbA#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-r-a-c-e-or-d-i-e-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8db96b7b-b41d-4681-8b0f-2f849e2a8593/sm/2371242-1479253026361-FH_Thumb_13_copy_13.jpg","duration":569,"publication_date":"2016-11-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup96","changefreq":"weekly","video":[{"title":"2016:E96 - Gaming Illuminati EXPOSED! - Dude Soup Podcast #96","description":"Get a month of the Dollar Shave Club for free by going to http://www.dollarshaveclub.com/dude\n\nAnd get 15% off of your MVMT order with free shipping by going to http://www.mvmtwatches.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSpecial guest Geoff Keighley stops by to talk all about the Game Awards! Don't be jelly.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/harmonygrits\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/103af945-6e7f-4bcc-9f04-8c413fd37c6d/sm/2371242-1479263731992-FH_Thumb_13_copy_12.jpg","duration":4436,"publication_date":"2016-11-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow96","changefreq":"weekly","video":[{"title":"2016:E96 - WE ARE SMASHING THE PATRIARCHY","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac4422c-27b9-47f0-96c7-dccb03374d5a/sm/2371242-1479175697483-batlyse_thumb.png","duration":3740,"publication_date":"2016-11-15T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-twits2-3","changefreq":"weekly","video":[{"title":"S2:E13 - Funhaus Dungeons and Dragons - Episode 13","description":"Prepare yourselves for the most HUMERUS episode of Twits & Crits to date! ... In which our adventurers encounter undead foe and stumble upon an ancient cryptograph. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-twits2-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca041013-61fe-45d1-97cc-ab941f7d6b6a/sm/2371242-1479010489313-tnc13.png","duration":4812,"publication_date":"2016-11-14T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open3","changefreq":"weekly","video":[{"title":"2016:E91 - BEST TORTURE EVER? - Open Haus #91","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\nTrying to wring ten minutes of comedy out of these guys guys is torture enough. Am I right? Right? I'll pack my things.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ed14091-f05d-4ae8-9f75-970cf4c82f58/sm/2371242-1479009195167-Openhaus_Thumbnail_91.png","duration":617,"publication_date":"2016-11-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-6","changefreq":"weekly","video":[{"title":"2016:E50 - SERVING BALLS - Demo Disk Gameplay","description":"The last time I was in a Radio Shack all they seemed to be selling were Stuart Little RC cars, off-brand flip phones, and robots that almost looked like Voltron. The overwhelming oppressive sense of sadness? That they gave away for free.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3ac2f2c-34ba-4ab4-8238-3b8127ee899b/sm/2371242-1479010280936-FH_Thumb_13_copy_10.jpg","duration":1080,"publication_date":"2016-11-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-mario-party","changefreq":"weekly","video":[{"title":"2016:E246 - DRUNK MARIO PARTY - Mario Party 10 Gameplay","description":"Oh man, what a day! At least nobody threw up in front of the office this time!Check out our mid-Mario drunken WarioWare shenanigans here: \n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-mario-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8db8c0c-c3c0-43d6-b6d7-097e887cfd77/sm/2371242-1478895829254-FH_Thumb_Drunk_Mario_Party.png","duration":2573,"publication_date":"2016-11-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-warioware","changefreq":"weekly","video":[{"title":"2016:E247 - DRUNK WARIO WARE - WarioWare Smooth Moves Gameplay","description":"Halfway through the stream we decided to take a little break from our Mario Party drinking to engage in a wee bit of WarioWare drinking. We didn't really think this one through.Check out our drunken Mario Party gameplay here: \n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcitohttp://twitter.com/_jacobfullertonhttp://twitter.com/real_rtboneshttp://twitter.com/drilly812\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-warioware","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccced4a3-8282-49ed-9fb7-2d403088eb74/sm/2371242-1478895956589-FH_Thumb_13_copy_7.jpg","duration":1359,"publication_date":"2016-11-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-starwars","changefreq":"weekly","video":[{"title":"2016:E245 - DEEP IN THE TRENCH - Star Wars Battlefront Death Star Gameplay","description":"Somewhere, deep inside of me, a fat little 12 year old version of myself is watching this through my eyes with a strange tightness in his pants that both scares and excites him.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-starwars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d3d2682-3d32-4154-9871-c00afd9f61ed/sm/2371242-1478812344669-FH_Thumb_13_copy_8.jpg","duration":929,"publication_date":"2016-11-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-the-perfect-woman-hatsune-miku-project-diva-x-gameplay","changefreq":"weekly","video":[{"title":"2016:E243 - THE PERFECT WOMAN - Hatsune Miku: Project DIVA X Gameplay","description":"Fun Fact: Hatsune Miku's name roughly translates to \"The First Sound from the Future\".\n\nSecond Fun Fact: She just finished a 3 city North American tour.Another Fun Fact: I don't understand this world or its people anymore.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-the-perfect-woman-hatsune-miku-project-diva-x-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50eccdaf-fb8e-482e-815a-bd851c1dc0aa/sm/2371242-1478735653669-FH_Thumb_13_copy_5.jpg","duration":743,"publication_date":"2016-11-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-commentsnew","changefreq":"weekly","video":[{"title":"2015:E46 - WE TRAPPED YOU? - Funhaus Comments #44","description":"This truly is a tumultuous time in our nation's history. All these new faces running around Funhaus, Brangelina splitting up, and... wait... didn't something else just happen?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-commentsnew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73b1f90b-108c-4986-b50e-410acbc49e5c/sm/2371242-1478804159046-FH_Thumb_Template44.jpg","duration":679,"publication_date":"2016-11-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-carbuild","changefreq":"weekly","video":[{"title":"2016:E244 - CAR TROUBLE - My Summer Car Gameplay","description":"Sure, playing GTA 5 is fun I guess, but wouldn't you rather learn the order in which the pistons are inserted into the engine block?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-carbuild","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17541a40-2713-4231-891e-a92dffa01eab/sm/2371242-1478743373503-FH_Thumb_13_copy_6.jpg","duration":1265,"publication_date":"2016-11-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-sons-gta","changefreq":"weekly","video":[{"title":"2016:E242 - SONS OF ANARCHY - GTA 5 Gameplay","description":"Things I need to acquire in order to start my own motorcycle club:1. Motorcycle. 2. Knowledge of how to ride motorcycle. 3. Non-erotic chaps. 4. Friends.  \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-sons-gta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfa9f708-7d36-467d-9a00-05af5be0c6eb/sm/2371242-1478730846345-FH_Thumb_13_copy_4.jpg","duration":868,"publication_date":"2016-11-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-episode-3","changefreq":"weekly","video":[{"title":"2016:E241 - CARS VS RUNNERS - GTA 5 Gameplay","description":"One of these days we're going to have to toss Turbid and Sandra into the Thunderdome to finally decide who is the best Funhaus fan. My money's on Master Blaster.\n\n\n\n\n\n\n\nCars vs. Runners - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Gokx-sRMd066XlVCHgGB0w#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbaed93c-b84a-4911-af63-c55213b36ed6/sm/2371242-1478714763126-FH_Thumb_13_copy_3.jpg","duration":689,"publication_date":"2016-11-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup95","changefreq":"weekly","video":[{"title":"2016:E95 - Doctor Strange: DONE WITH MARVEL? - Dude Soup Podcast #95","description":"Support our sponsors! Get your first three meals free with free shipping by going to http://www.blueapron.com/soupAnd get 50% off your first order by going to http://www.natureboxclub.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\nBeware some very real Dr. Strange spoilers and some very fake \"XXX: The Return of Whatever\" spoilers in today's episode.Topics:00:00 - Dr Strange47:35 - XXX\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16fe83b5-5528-45e1-9786-88a24aaa6324/sm/2371242-1478629495401-FH_Thumb_13_copy.jpg","duration":4039,"publication_date":"2016-11-08T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow95","changefreq":"weekly","video":[{"title":"2016:E95 - WE ARE STRANGE","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1319f2f2-4e15-4594-bd4f-66f93ee4e4c7/sm/2371242-1478570667935-postshow95thumb.png","duration":3420,"publication_date":"2016-11-08T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-episode","changefreq":"weekly","video":[{"title":"S2:E12 - Funhaus Dungeons and Dragons - Episode 12","description":"In which... well, in which our heroes fight a pretty damn intimidating giant red gorilla. Plus, Shattercock is still super topless. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da15baff-999c-41ed-9417-aa2ea4336abd/sm/2371242-1478221097577-Twits_and_Crits_rt_12.png","duration":3253,"publication_date":"2016-11-07T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-oh-new","changefreq":"weekly","video":[{"title":"2016:E90 - WE GET SPUNKED? - Open Haus #90","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nI honestly think that my very first rumblings of sexuality were brought on by watching Mo from \"GUTS\". She was just poured into that refs jersey.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/thenasacova\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-oh-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/418586a4-85ee-4f36-83a7-5cf847ab02ee/sm/2371242-1478309481948-Shadow_Don.png","duration":707,"publication_date":"2016-11-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-new","changefreq":"weekly","video":[{"title":"2016:E45 - FULL MOON COMETH - Demo Disk Gameplay","description":"Years ago we made a solemn promise to spend an entire episode making astronaut-based rape jokes. They said it couldn't be done. They laughed at us. Well, who's laughing now!\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/104a7f77-71cb-4c0a-8607-e734046c0c6d/sm/2371242-1478311611072-DemoDisk.png","duration":992,"publication_date":"2016-11-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gears4hard","changefreq":"weekly","video":[{"title":"2016:E239 - HARDCORE JUICING - Gears of War 4 Horde Mode Gameplay","description":"A \"Gears of War\" movie is currently in development! Soon the big screen will be filled with all of your favorite characters like... uh... Bandanna Man, Thick Guy, Flavor-Saver, Top Knot, and that one girl!\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gears4hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9127a9e1-b8d8-4ec6-a45d-30599034f3ee/sm/2371242-1478277452260-Gears_of_War_4.png","duration":907,"publication_date":"2016-11-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-firesim","changefreq":"weekly","video":[{"title":"2016:E240 - HOT GARBAGE - Firefighter Simulators Gameplay","description":"If all you weirdos out there don't photoshop our boys' heads onto sexy firemen and turn it into a calendar, I will be severely disappointed. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-firesim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f690f07-1ad5-4711-921f-eab27db2de29/sm/2371242-1478298151843-HotGarbage.png","duration":774,"publication_date":"2016-11-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-stop-stroking-golf-with-your-friends-gameplay","changefreq":"weekly","video":[{"title":"2016:E215 - STOP STROKING - Golf With Your Friends Gameplay","description":"Time to kick back and enjoy the staples of modern golf. Make yourself an Arnold Palmer in a cone-shaped cup, plop some marshmallows in, and take a ride in the... lazy river? Damn you, 2016.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-stop-stroking-golf-with-your-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/133343ee-e483-48ab-a261-3e7ad8b5129d/sm/1533704-1476310900470-FH_Thumb_13_copy_5.jpg","duration":836,"publication_date":"2016-11-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-unloved","changefreq":"weekly","video":[{"title":"2016:E41 - Let's Play - Unloved Starring Funhaus","description":"It's like GMOD and Doom made a hate baby in an abandoned orphanage while Dead by Daylight sipped champagne and watched from the corner.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-unloved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f294d5e-21b2-4949-b2f6-43a9630f7b16/sm/2371242-1478195130507-Duo_Thumbnail_Template_copy.jpg","duration":748,"publication_date":"2016-11-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-halo-6-split-screen-confirmed-paladins-goes-pay-to-win-oculus-sales-blocked","changefreq":"weekly","video":[{"title":"2017:E37 - Split-Screen Halo RETURNS + Paladins Pay-to-Win OUTRAGE + Oculus Rift Sales BLOCKED?","description":"Split-screen is returning to Halo games. Paladins players are upset over the introduction of new mechanics in the game that give paying players a boost. Oculus VR headset may be yanked from shelves until ZeniMax gets a cut, thanks an injunction filed after winning their lawsuit. Plus, we may see the return of Sunset Overdrive, For Honor is getting overexcited about banning players, Matt Reeves IS directing the Batman movie after all, Hayao Miyazaki is out of retirement (again) to work on a new movie, giraffes are too sexy for YouTube, and Nintendo is suing a go-karting company.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-halo-6-split-screen-confirmed-paladins-goes-pay-to-win-oculus-sales-blocked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71dd54d1-758e-4d17-994e-a6e1e81490d6/sm/24363-1487977474080-thumbnail.jpg","duration":545,"publication_date":"2017-02-24T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-real-cost-of-nintendo-switch","changefreq":"weekly","video":[{"title":"2017:E56 - The REAL COST of Nintendo Switch?","description":"We've known the official price for Nintendo Switch for a while now, but since we've spent some hands-on time we have a better idea which accessories you'll need to shell out for to use the console to its full potential. OPEN YOUR WALLETS! WE'RE GOING IN!","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-real-cost-of-nintendo-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a86bde40-f1f2-4f9c-ad15-b05300fde753/sm/24363-1487897227575-thumbnail.jpg","duration":527,"publication_date":"2017-02-24T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-more-info-on-mass-effect-andromeda-finally","changefreq":"weekly","video":[{"title":"2017:E55 - Mass Effect Andromeda: Hands-on Impressions & New Details Emerge!","description":"Bioware has finally given critics hands-on time with Mass Effect Andromeda, taking them through the game's opening mission, plus some mid-game gameplay. Preview impressions are rolling in now and offering a bunch of new details about what you can expect when the game hits shelves next month!","player_loc":"https://roosterteeth.com/embed/game-news-2017-more-info-on-mass-effect-andromeda-finally","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/032aba34-5b12-4f6b-947b-dacf1d0ca718/sm/24363-1487892963120-thumbnails.jpg","duration":451,"publication_date":"2017-02-23T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-virtual-console-at-switch-launch-ffxv-updates-leaked-7-new-earths-found","changefreq":"weekly","video":[{"title":"2017:E36 - Nintendo Switch: No Virtual Console at Launch + FFXV Updates LEAKED + 7 New Earths Found?","description":"Nintendo Switch is getting close, but not all the new details are happy ones. It looks like the Virtual Console to play older games will be coming later. New details are coming out about future content for Final Fantasy XV, including Gladio's DLC. Scientists have announced as many as 7 new Earth-like exoplanets that could support life in orbit around the star Trappist-1.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-virtual-console-at-switch-launch-ffxv-updates-leaked-7-new-earths-found","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b1083d8-5128-4101-b146-28288bed2a9d/sm/24363-1487885728507-thumbnail.jpg","duration":579,"publication_date":"2017-02-23T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-nintendo-switch-d-e-b-o-x-i-n-a-t-i-n-g","changefreq":"weekly","video":[{"title":"2015-2016:E27 - Nintendo Switch DEBOXINATING! UNBOXING! HARDWARE PREVIEW!","description":"Nintendo was kind enough to send us a Nintendo Switch review unit, so let's crack that box open and see what's inside. This is a revolutionary new form of content that we have invented that no one else has ever done! We call it... deboxinating! But a bunch of people keep calling it an unboxing for some reason...","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-nintendo-switch-d-e-b-o-x-i-n-a-t-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9b78b11-6eac-4316-9fb8-668347c27ebd/sm/710924-1487811872691-thumbnail.jpg","duration":1461,"publication_date":"2017-02-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-murder-over-graphics-cards","changefreq":"weekly","video":[{"title":"2017:E12 - Graphics Card Murderer Sentenced to Prison","description":"A few months ago, a Russian man made headlines after being charged with the murder of a friend over a disagreement about which graphics card was superior. That case has made its way through court and now the dude's headed for prison.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-murder-over-graphics-cards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db4329c3-5d2f-4bfe-86c7-4a73e2d84718/sm/710924-1487802440043-thumbnail.jpg","duration":371,"publication_date":"2017-02-22T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-is-metacritic-trying-to-stifle-competition","changefreq":"weekly","video":[{"title":"2017:E11 - Metacritic is ANTI-COMPETITIVE?","description":"Game review aggregator Metacritic has become a staple in the videogame industry for bringing together all the biggest reviews for games, doing some secret math, and handing out an aggregate score. But there's a new kid in town, OpenCritic, and they're accusing Metacritic of anti-competitive practices to keep out competition.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-is-metacritic-trying-to-stifle-competition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ec6587f-8eb9-41a5-b17e-9b9a446f6922/sm/710924-1487802395471-thumbnail.jpg","duration":374,"publication_date":"2017-02-22T23:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-jim-sterling-lawsuit-dismissed-overwatch-s-new-hero-steam-prices-going-up","changefreq":"weekly","video":[{"title":"2017:E35 - Jim Sterling Lawsuit DISMISSED + New Overwatch Hero + Steam Prices Going Up","description":"Little bit of good news. Little bit of bad news. Jim (fucking) Sterling (son)'s lawsuit has been dismissed WITH PREJUDICE. We're getting hints of ANOTHER new Overwatch hero. Steam's about to experience some pretty major price hikes in a lot of regions. Plus, news on the progress of Final Fantasy VII, Crash Bandicoot's N. Sane Trilogy isn't platform exclusive after all (well, not fully), Horizon Zero Dawn is expected to sell a lot of copies, no one knows when Nier Automata is hitting PC even though a trailer gave us a date, Dead Rising 4 is hitting Steam, and we've lost an industry legend, Alan Stone.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-jim-sterling-lawsuit-dismissed-overwatch-s-new-hero-steam-prices-going-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/623d5ef0-078f-4b18-9ae0-66e6a4875772/sm/24363-1487798545369-thumbnail.jpg","duration":548,"publication_date":"2017-02-22T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-horizon-zero-dawn-is-it-good","changefreq":"weekly","video":[{"title":"2017:E53 - Horizon Zero Dawn: IS IT GOOD?","description":"Horizon: Zero Dawn is nearly here so we'll all be able to shoot bows and arrows at giant intelligent robots. Reviews are hitting hard and fast, and there are enough to answer the big question: IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/game-news-2017-horizon-zero-dawn-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34768266-3137-423c-bbbd-d49f2fdf7ada/sm/710924-1487725248073-thumbnail.jpg","duration":447,"publication_date":"2017-02-22T01:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nintendo-fights-back-on-leaks-hl2-writer-leaves-valve-logan-best-comic-book-movie-ever","changefreq":"weekly","video":[{"title":"2017:E34 - Nintendo Fights Back On Leaks + HL2 Writer Leaves Valve + Logan Best Comic Book Movie Ever?","description":"Nintendo's striking back against leakers (and firing everybody), For Honor might have broken No Man's Sky's record, Valve is losing more people associated with Half-Life, The Batman can't keep a direct... hot dang, there was a lot of news over the three day weekend. You should catch up on it, huh?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nintendo-fights-back-on-leaks-hl2-writer-leaves-valve-logan-best-comic-book-movie-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94852950-f88c-438d-921d-5ee7cdf76f18/sm/710924-1487719928733-thumbnail.jpg","duration":557,"publication_date":"2017-02-21T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-halo-wars-2","changefreq":"weekly","video":[{"title":"2017:E52 - Know Before You Go... HALO WARS 2","description":"Ok, so Halo Wars 2 is partially out if you splurged on the ultimate edition, but for everyone else it comes out on Tuesday! Here's everything you need to know about the game when deciding if it's right for you.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-halo-wars-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54e8d0fb-24cb-4c85-9e4c-91a94b1b349f/sm/24363-1487804417460-kbyg_halo_wars_2.jpg","duration":481,"publication_date":"2017-02-20T05:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-u-n-b-o-x-i-n-g-zelda-breath-of-the-wild-footage-l-e-a-k-e-d","changefreq":"weekly","video":[{"title":"2017:E51 - Nintendo Switch Sent Out EARLY + Zelda Gameplay Details","description":"A Nintendo Switch was sent out early to a fan, who gave us the world's first unboxing video and look at the system. Plus, Zelda gameplay has leaked, showing off the early minutes of the game and more bits of gameplay, so... be wary of spoilers!","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-u-n-b-o-x-i-n-g-zelda-breath-of-the-wild-footage-l-e-a-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28ca77be-d5ec-40a4-9779-7323edfb45bd/sm/24363-1487380110540-thumbnail.jpg","duration":452,"publication_date":"2017-02-18T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-bethesda-v-microsoft-episode-viii-new-details-pewdiepie-apologizes","changefreq":"weekly","video":[{"title":"2017:E33 - Bethesda vs Xbox + Activision MOST ADMIRED Game Company + PewDiePie vs Wall St Journal","description":"Bethesda's taking on Xbox to kick of E3 2017. Activision has been voted most admired gaming company. Pewdiepie has apologized for taking recent jokes too far and called out the Wall Street Journal for taking the jokes out of context. Plus, Pokemon Go's added 80 new pokemon, we might have a new continent, we've got more hints about what's to come in Star Wars, NES Classic is selling so well we have no idea why Nintendo would halt production, details for Ghost Recon's beta, and more.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-bethesda-v-microsoft-episode-viii-new-details-pewdiepie-apologizes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31e68902-6602-45b9-b05d-ca5a8aae418a/sm/24363-1487375161086-thumbnail.jpg","duration":635,"publication_date":"2017-02-18T00:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-halo-wars-2-is-it-good","changefreq":"weekly","video":[{"title":"2017:E50 - Halo Wars 2: Is It Good? ","description":"Reviews are hitting for Halo Wars 2. Want to know the highs and lows before you drop your money on it? We've got you covered.","player_loc":"https://roosterteeth.com/embed/game-news-2017-halo-wars-2-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1e6339a-abf4-42a4-bd68-38a5bbae752f/sm/24363-1487296531009-thumbnail.jpg","duration":484,"publication_date":"2017-02-17T01:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-microsoft-s-e3-plans-prey-has-pc-problems-already-gtx-1080-ti-incoming","changefreq":"weekly","video":[{"title":"2017:E32 - Prey's PC Troubles + New Pokemon Magikarp Game + New Super Earth Discovered","description":"Microsoft has unveiled its plans for E3. Arkane promised Prey would be better than Dishonored 2 on PC but it's still having issues. There's a weird new Pokemon game announced in Japan. Nvidia's new video card looks like it's coming soon. Scientists have discovered a new Super Earth... and that's just the start.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-microsoft-s-e3-plans-prey-has-pc-problems-already-gtx-1080-ti-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ba21769-5562-4991-a3b8-05e7ed51f1b3/sm/24363-1487294538495-thumbnail.jpg","duration":577,"publication_date":"2017-02-17T01:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-is-ps-sabotaging-video-games-isp-sued-over-lag","changefreq":"weekly","video":[{"title":"2017:E8 - Time Warner Sued for SABOTAGING Gamers!","description":"People are always accusing ISPs of not living up to their advertising, but now Riot Games has supplied some proof that one provider might have been sabotaging League of Legends games on purpose with slower speeds. Now, the state of New York is stepping in and suing, because why not? ","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-is-ps-sabotaging-video-games-isp-sued-over-lag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93dedba4-ada8-4363-b4d0-fed360a0f132/sm/24363-1487042870456-lol-sabotage-th.jpg","duration":559,"publication_date":"2017-02-14T03:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-steam-killed-greenlight-but-will-the-new-one-be-worse","changefreq":"weekly","video":[{"title":"2017:E49 - Paid Mods RETURNING? + Valve Kills Steam Greenlight!","description":"Big changes are coming to Steam. Over the weekend, we got word that Valve not only wants to replace the Steam Greenlight program, but they're also thinking about dabbling in the dark arts of paid mods all over again. Didn't they learn their lesson the first time?","player_loc":"https://roosterteeth.com/embed/game-news-2017-steam-killed-greenlight-but-will-the-new-one-be-worse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96fb4d9d-3a41-4aa6-8126-c64cb4bf10d2/sm/24363-1487035289885-thumbnail.jpg","duration":497,"publication_date":"2017-02-14T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nes-mini-d-e-a-d-nier-automata-pc-mystery-twitch-responds-to-yandere","changefreq":"weekly","video":[{"title":"2017:E29 - NES Classic Mini DEAD? + Nier Automata PC Port Mystery + Twitch Responds to Yandere","description":"There's some disconcerting reports floating around about the NES Classic stock, more third party games are heading to Switch, PC gamers are getting nervous about Nier Automata's PC port, and The Batman may finally have its director. Why don't you go ahead and start your Monday with a round-up?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nes-mini-d-e-a-d-nier-automata-pc-mystery-twitch-responds-to-yandere","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db8bccab-0a86-437f-8ae0-28c076decf4a/sm/24363-1487043412222-maxresdefault.jpg","duration":577,"publication_date":"2017-02-14T00:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-for-honor-know-before-you-go","changefreq":"weekly","video":[{"title":"2017:E48 - Know Before You Go... For Honor","description":"For Honor brings its unique brand of hack and slash multiplayer to the masses. What's the game all about? Here's everything you need to know. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-for-honor-know-before-you-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c47eacba-64c9-4be8-a005-504621dc5c58/sm/710924-1486764408687-thumbnail.jpg","duration":333,"publication_date":"2017-02-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-every-game-not-coming-to-nintendo-switch","changefreq":"weekly","video":[{"title":"2017:E47 - Every Game NOT Coming to Nintendo Switch","description":"Nintendo's new system is only a few weeks away... and at this point we might know more about the games NOT coming to the system than the games that are actually coming out. We round up both for you so you know what you will and won't be playing. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-every-game-not-coming-to-nintendo-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4829b0c-ad2f-489b-b983-d64214dede8c/sm/710924-1486764416591-thumbnail.jpg","duration":484,"publication_date":"2017-02-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-valve-working-on-3-full-vr-games-activision-layoffs-gta-movie-incoming","changefreq":"weekly","video":[{"title":"2017:E28 - Valve Working on 3 FULL VR Games + Activision LAYOFFS + GTA Movie Incoming?","description":"Valve held a press conference yesterday and talked future games and their disdain for consoles, Ubisoft's earnings call featured a couple of surprises (mostly bad), Infinite Warfare's team got hit with layoffs, and Hideo Kojima's YouTube career continues. It's our last round-up of the week, so we made sure it was a good one. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-valve-working-on-3-full-vr-games-activision-layoffs-gta-movie-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a9da775-41b4-43eb-8973-ca536bb6a014/sm/710924-1486764585972-thumbnail.jpg","duration":401,"publication_date":"2017-02-10T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-call-of-duty-rebooted-destiny-2-first-details","changefreq":"weekly","video":[{"title":"2017:E46 - Call of Duty REBOOTED! Destiny 2 First Details!","description":"Looks like all those dislikes really got to Activision. They've finally acknowledged the Infinite Warfare colored elephant in the room and said they'll be taking the series back to its roots. Plus, Destiny 2 gets some of its first details... and Bungie's ","player_loc":"https://roosterteeth.com/embed/game-news-2017-call-of-duty-rebooted-destiny-2-first-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f6ba9e8-cd98-44cd-9fd4-69d529a148e6/sm/710924-1486757130143-thumbnail.jpg","duration":321,"publication_date":"2017-02-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-mass-effect-andromeda-ditching-paragon-renegade","changefreq":"weekly","video":[{"title":"2017:E45 - Mass Effect Andromeda DITCHING Paragon/Renegade!","description":"We've got some breaking news that Mass Effect Andromeda won't be including one of the series staples... because Paragon and Renegade options will be gone from the next game. What's next, they'll ditch the SPACESHIPS, too?","player_loc":"https://roosterteeth.com/embed/game-news-2017-mass-effect-andromeda-ditching-paragon-renegade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b1ecc2d-b697-4929-a1aa-caca9da13028/sm/710924-1486677630064-paragon_and_renegade_thumb.jpg","duration":367,"publication_date":"2017-02-10T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-new-you-tube-bug-wrecking-subscriber-counts","changefreq":"weekly","video":[{"title":"2017:E7 - ANOTHER YouTube Unsubscribe Bug!","description":"YouTube's got another unsubbing problem, and this time it was used to maliciously target popular channels. But on the bright side, at least YouTube acknowledged that this unsubscribe bug actually exists this time. So hey, progress!","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-new-you-tube-bug-wrecking-subscriber-counts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85c546cb-a896-42ee-b956-e57c5d02dd90/sm/710924-1486677584506-youtube_glitch_thumb.jpg","duration":389,"publication_date":"2017-02-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-nioh-demo-l-i-e-d-final-fantasy-xv-skipping-switch-r-rated-castlevania-tv-show","changefreq":"weekly","video":[{"title":"2017:E27 - Nioh Demo LIED? + Final Fantasy XV Skipping Switch + R-Rated Castlevania TV Show","description":"Team Ninja made some major changes to Nioh before release that are pissing off players, the internet gets dubious Destiny 2 rumors, Final Fantasy XV nopes out on Switch, the Galaxy Note 7 strikes again, and the Castlevania TV series is real. Try rounding all of that up in one breath (no please don't, you'll die.)","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-nioh-demo-l-i-e-d-final-fantasy-xv-skipping-switch-r-rated-castlevania-tv-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59bebe67-40d1-4b09-861a-3f90cbee5938/sm/1779-1486668702919-nioh_and_ffxv_roundup.jpg","duration":450,"publication_date":"2017-02-09T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-epic-c-e-o-windows-is-ransomware","changefreq":"weekly","video":[{"title":"2017:E6 - Windows 10 Is RANSOMWARE?","description":"Epic CEO Tim Sweeney's got a beef with Windows, and now he's stepped up his game. In his latest rants against the platform, he's saying that Windows is going to start holding your PC games hostage. Probably not with a gun, but MAYBE. ","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-epic-c-e-o-windows-is-ransomware","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/332d30b7-2fe1-4e2a-a009-c947cca78788/sm/710924-1486588675853-thumbnail.jpg","duration":409,"publication_date":"2017-02-09T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-new-red-dead-redemption-2-details","changefreq":"weekly","video":[{"title":"2017:E44 - Red Dead Redemption 2 FIRST DETAILS","description":"OK, so we didn't get a Super Bowl trailer for Red Dead Redemption 2, but we got the 32nd best alternative... investor calls! Rockstar parent company Take Two dished out the first morsels of anything related to Red Dead Redemption 2 this week, and even talked about whether or not it will kill GTA Online. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-new-red-dead-redemption-2-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28620ce9-c9aa-4990-aaf7-1c651ca79649/sm/710924-1486588669503-red_dead_thumb.jpg","duration":338,"publication_date":"2017-02-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-steam-hit-with-malicious-code-e3-opens-to-the-public-csgo-player-banned-1-000-years","changefreq":"weekly","video":[{"title":"2017:E26 - Steam Hit With Malicious Code + E3 Opens To The Public + CSGO Player Banned 1,000 Years","description":"Steam had a scary script bug, Microsoft's hinting at secret exclusives for 2017, E3 is open to EVERYBODY, and somebody out there has already seen Star Wars Episode 8. What do they think of it? Well you'll have to check out the round-up, won't you? ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-steam-hit-with-malicious-code-e3-opens-to-the-public-csgo-player-banned-1-000-years","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14fbfee6-d336-4c91-b8f1-c02ff4491b92/sm/710924-1486588153535-glitchy_steam_roundoup.jpg","duration":463,"publication_date":"2017-02-08T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-you-tubers-found-guilty-for-gambling","changefreq":"weekly","video":[{"title":"2017:E43 - YouTubers FOUND GUILTY For Gambling","description":"YouTube and video game gambling have been all the rage lately, and now two YouTubers have just been found guilty of illegal gambling by a British court. No, it's not TMartn and ProSyndicate, but it's got a lot of people wondering if they'll be next. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-you-tubers-found-guilty-for-gambling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6e7a9ae-1f0e-4e67-92d9-b697b3ee9539/sm/1779-1486499202697-youtuber_guilty_thumb.jpg","duration":301,"publication_date":"2017-02-08T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-switch-weakest-launch-e-v-e-r-by-the-numbers","changefreq":"weekly","video":[{"title":"2017:E42 - Switch: Weakest Launch EVER? By the Numbers!","description":"Lots of people are saying the Switch has a weak launch lineup, but now some of the numbers might actually back that up. One site released a study of launch lineups for the last 23 years... and the outlook isn't really in Nintendo's favor.","player_loc":"https://roosterteeth.com/embed/game-news-2017-switch-weakest-launch-e-v-e-r-by-the-numbers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c40a348-5fe2-46c8-b409-3f6bd17d4761/sm/1779-1486498514838-weak_switch_launch_thumb.jpg","duration":430,"publication_date":"2017-02-07T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-sean-murray-breaking-silence-final-fantasy-xv-pc-version-confirmed-x-men-film-reboot-a-l-r-e-a-d-y","changefreq":"weekly","video":[{"title":"2017:E25 - Sean Murray Breaking Silence + Final Fantasy XV PC CONFIRMED + X-Men Reboot ALREADY?","description":"Sean Murray may finally break his silence about No Man's Sky, a big name is writing for Crackdown 3, Breath of the Wild is finished, Final Fantasy XV's rumored PC port is up and running, and X-Men might be getting a cinematic reboot starting this year... yeah, we've got a lot of news to cover today.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-sean-murray-breaking-silence-final-fantasy-xv-pc-version-confirmed-x-men-film-reboot-a-l-r-e-a-d-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d423b44-da2a-4092-a021-f6f666920c4e/sm/710924-1486496425592-gdc_roundup.jpg","duration":446,"publication_date":"2017-02-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-denuvo-emails-leak-valve-kills-dust-2-reviewers-suck-at-nioh","changefreq":"weekly","video":[{"title":"2017:E24 - Denuvo Emails LEAK + Valve KILLS Dust 2 + Reviewers Suck at Nioh","description":"Denuvo's known for securing games but not necessarily emails, PS4 Pro gets a Boost Mode, Kojima says there won't be a Death Stranding 2, Valve shuts down De_Dust2, and we got lots of Super Bowl trailers... boy, a lot of stuff happened since Friday. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-denuvo-emails-leak-valve-kills-dust-2-reviewers-suck-at-nioh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6d2ea96-cb8e-425b-b278-53badaf45114/sm/710924-1486418638554-denuvo_roundup.jpg","duration":458,"publication_date":"2017-02-07T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-overwatch-boss-keyboard-and-mouse-c-h-e-a-t-i-n-g","changefreq":"weekly","video":[{"title":"2017:E40 - Overwatch Boss: Keyboard and Mouse CHEATING!","description":"People always love to argue about whether or not keyboard and mouse beats a controller, but now Overwatch's Jeff Kaplan has said he thinks keyboard and mouse should be banned from console play altogether. Get those flame suits on. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-overwatch-boss-keyboard-and-mouse-c-h-e-a-t-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c543f231-1fba-4d60-a675-987d5fcd5e2e/sm/1779-1486502110178-overwatch_cheating.jpg","duration":345,"publication_date":"2017-02-06T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-have-free-to-play-games-gotten-out-of-control","changefreq":"weekly","video":[{"title":"2017:E41 - EA Mobile Game Costs THOUSANDS!","description":"Whatever happened to the good old days, when \"free to play\" literally meant you could play a game for free. That's certainly not the case with Star Wars Galaxy of Heroes, which can cost you thousands in microtransactions to fully power up your characters. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-have-free-to-play-games-gotten-out-of-control","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82193a9b-534b-45f0-bdcf-a1841d534d99/sm/710924-1486414420550-darth_fat_stacks.jpg","duration":397,"publication_date":"2017-02-06T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-immigration-ban-hurting-games-industry","changefreq":"weekly","video":[{"title":"2017:E38 - Devs Forget DRM, Pirates Release FREE","description":"Oops. Conan Exile hit Steam early access this week, and developers Funcom accidentally left out one important thing -- DRM. Conan Exiles was supposed to ship with Denuvo protection, but now it and all of its floppy dongs are out in the wild, thanks to pirates. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-immigration-ban-hurting-games-industry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63d25fd3-c2d3-4e1c-b104-85ae18467791/sm/710924-1486155658110-thumbnail.jpg","duration":290,"publication_date":"2017-02-04T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-immigration-ban-hurting-games-industry-2","changefreq":"weekly","video":[{"title":"2017:E39 - Immigration Ban HURTING Games Industry?","description":"The U.S.'s new immigration policies are having an effect on the games industry. This week, multiple game developers and industry leaders have come out against the recent immigration bans, saying it limits the video game industry's pool of talent. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-immigration-ban-hurting-games-industry-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce74146e-7948-444b-aa27-bd24903b36b9/sm/1779-1486155957788-thumbnail.jpg","duration":344,"publication_date":"2017-02-04T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-game-stop-responds-to-controversy-p-s4s-are-l-a-g-g-i-n-g-ransomware-shuts-down-town","changefreq":"weekly","video":[{"title":"2017:E23 - GameStop Responds to Controversy + PS4s Are LAGGING? + Ransomware Shuts Down TOWN","description":"GameStop fights back against all those \"Circle of Lies\" accusations, we've got our first Mass Effect Andromeda footage, PS4 users are reporting weird lag, and Beauty and the Beast is already looking to surpass Finding Dory's records. There's plenty of news to hold you over for the weekend. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-game-stop-responds-to-controversy-p-s4s-are-l-a-g-g-i-n-g-ransomware-shuts-down-town","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9c578ab-1dcb-4106-96a2-58287f29977d/sm/1779-1486154609575-thumbnail.jpg","duration":428,"publication_date":"2017-02-04T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-g2a-reddit-ama-backfires","changefreq":"weekly","video":[{"title":"2017:E37 - G2A Reddit AMA BACKFIRES","description":"Buying cheap Steam keys sounds like a pretty nice deal... at least until you accidentally buy a stolen one. Steam key reseller G2A has been criticized quite a bit for this, so they decided to host an AMA to clear the air... which turned into a total disaster. Seriously, it's hard to look away. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-g2a-reddit-ama-backfires","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54ae3a39-f536-4284-943c-644bf4918bea/sm/1779-1486155158157-thumbnail.jpg","duration":345,"publication_date":"2017-02-03T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-valve-under-investigation-nintendo-responds-to-weak-launch-games-you-tuber-goes-to-court","changefreq":"weekly","video":[{"title":"2017:E22 - Valve Under Investigation + Nintendo Talks Lack of Switch Games + YouTuber Goes to Court - The Kno","description":"Valve's been accused of anti-trust practices, Far Cry 5 might have been leaked by GameStop, Nintendo's firing back at the critics, and Team Ninja's Nioh is debuting to great reviews. Of course there's more news than that, but we can't spoil it all in an episode description, can we?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-valve-under-investigation-nintendo-responds-to-weak-launch-games-you-tuber-goes-to-court","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f72051d3-844c-4e84-bc34-8c715ff0b48f/sm/710924-1486067122682-valve_investigation_roundup.jpg","duration":403,"publication_date":"2017-02-03T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-oculus-defeated-in-court-rift-d-e-a-d","changefreq":"weekly","video":[{"title":"2017:E5 - Oculus Defeated in Court, Rift DEAD??","description":"The trial for virtual reality has just been decided by a jury... and Oculus lost. Fortunately for them, Facebook will help cover the damage, but less fortunately, ZeniMax might move to stop the Rift from being sold. So what does this mean for VR?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-oculus-defeated-in-court-rift-d-e-a-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32247096-40b8-4b0e-aba6-0c29deab0733/sm/710924-1486067081231-oculus_dead_thumb.jpg","duration":361,"publication_date":"2017-02-03T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-game-stop-wants-employees-to-l-i-e","changefreq":"weekly","video":[{"title":"2017:E36 - GameStop Wants Employees to LIE?","description":"GameStop's got a controversial new \"Circle of Life\" program that, sadly, has nothing to do with Lion King. Instead, it's a new way of doing business that doesn't sound all that great for customers or employees. That's what you get for besmirching Lion King, guys. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-game-stop-wants-employees-to-l-i-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47633b16-e1dd-4b40-8909-2f161a5c22f4/sm/710924-1486067086212-gamestop_thumn.jpg","duration":360,"publication_date":"2017-02-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-final-fantasy-7-remake-v-a-p-o-r-w-a-r-e","changefreq":"weekly","video":[{"title":"2017:E34 - Is Final Fantasy 7 Remake VAPORWARE?","description":"Guys, it's time to have The Talk. Final Fantasy 7 Remake might just be a pipe dream. At least it certainly seems that way, given some new comments from the game's developers about their progress -- or lack of it -- since the last time we saw the game. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-final-fantasy-7-remake-v-a-p-o-r-w-a-r-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2282ecb2-3520-45f6-a50f-6ac58c209076/sm/710924-1485988162967-ff7_thumb.jpg","duration":400,"publication_date":"2017-02-02T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-new-bioware-ip-next-year-battlefront-2-spans-multiple-eras-mass-effect-andromeda-projections","changefreq":"weekly","video":[{"title":"2017:E35 - New Bioware IP SOON! Battlefront 2 Campaign Details!","description":"EA gave us a ton of new information about the upcoming year in their most recent earnings call, including the release of Bioware's next IP, and the fact that Star Wars Battlefront 2 will span multiple eras of the Star Wars universe. Plus, some conservative projections about Mass Effect Andromeda. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-new-bioware-ip-next-year-battlefront-2-spans-multiple-eras-mass-effect-andromeda-projections","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46fe4e9d-1b8a-4f89-a8c0-d3a8aa5ca082/sm/710924-1485984580831-bioware_3.jpg","duration":331,"publication_date":"2017-02-01T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-fallout-new-vegas-2-denied-final-fantasy-xv-pc-port-switch-online-price-revealed","changefreq":"weekly","video":[{"title":"2017:E21 - Fallout New Vegas 2 DENIED + Final Fantasy XV PC Port? + Switch Online Service Price REVEALED","description":"Looks like that Fallout New Vegas 2 rumor was bogus, Splatoon makes a mess of trying to clarify Switch's online matchmaking, Final Fantasy XV's director wants a PC port with mods, and the Switch's online price is revealed. That's a whole lot of news for one round-up. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-fallout-new-vegas-2-denied-final-fantasy-xv-pc-port-switch-online-price-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a554526-c4ab-4ff3-9aeb-a8e5da1ad8fc/sm/710924-1485979579261-fallout_roundup.jpg","duration":428,"publication_date":"2017-02-01T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-konami-profits-soar-with-pachinko-new-destiny-2-leaks-ben-affleck-wont-direct-the-batman","changefreq":"weekly","video":[{"title":"2017:E20 - Konami Profits SOAR with Pachinko + New Destiny 2 Leaks + Ben Affleck WONT Direct The Batman","description":"2017:E20 - Konami Profits SOAR with Pachinko + New Destiny 2 Leaks + Ben Affleck WONT Direct The Batman","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-konami-profits-soar-with-pachinko-new-destiny-2-leaks-ben-affleck-wont-direct-the-batman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9863f7a3-671e-456b-93bc-53804ba38330/sm/710924-1485909600726-pachinko_roundup.jpg","duration":438,"publication_date":"2017-02-01T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-twitch-taking-on-s-t-e-a-m","changefreq":"weekly","video":[{"title":"2017:E4 - Twitch Taking On STEAM?","description":"2017:E4 - Twitch Taking On STEAM?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-twitch-taking-on-s-t-e-a-m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/421f57f7-5bff-43b4-a9c6-08e1c3826b71/sm/710924-1485899630382-twitch_v_steam.jpg","duration":361,"publication_date":"2017-01-31T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-fallout-new-vegas-2-set-to-be-announced","changefreq":"weekly","video":[{"title":"2017:E33 - Fallout New Vegas 2 COMING SOON?","description":"2017:E33 - Fallout New Vegas 2 COMING SOON?","player_loc":"https://roosterteeth.com/embed/game-news-2017-fallout-new-vegas-2-set-to-be-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49da152f-28ac-4618-bb2b-4e5e6ab0843c/sm/710924-1485893226847-Thumbnail.jpg","duration":266,"publication_date":"2017-01-31T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-don-t-pre-order-scorpio-yet-resident-evil-7-pc-already-cracked-headline-3","changefreq":"weekly","video":[{"title":"2017:E19 - Don't Pre-Order Scorpio Yet + Resident Evil 7 PC ALREADY Cracked + Cannibal Hamsters","description":"Xbox's Phil Spencer says cool your jets on the Scorpio, Valve cracks down on more gambling, Resident Evil 7 is breaking even more records, and hamsters are eating each other in today's round up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-don-t-pre-order-scorpio-yet-resident-evil-7-pc-already-cracked-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ae5791a-ad4f-4a05-a213-8283fec9fa51/sm/1779-1485818534580-round_up_with_hamster.jpg","duration":507,"publication_date":"2017-01-31T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-rumor-new-red-dead-redemption-2-super-bowl-trailer-coming","changefreq":"weekly","video":[{"title":"2017:E32 - Red Dead Redemption 2 SUPER BOWL TRAILER & Release Date? - The Know Gaming News","description":"Red Dead Redemption 2 could make its next appearance on... Super Bowl Sunday? Rumors are pointing to a new trailer AND a release date for this weekend. See, sportsballs aren't so bad.","player_loc":"https://roosterteeth.com/embed/game-news-2017-rumor-new-red-dead-redemption-2-super-bowl-trailer-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96837dec-3a33-4d83-9e91-862068ca1cef/sm/1779-1485818100213-Thumbnail.jpg","duration":395,"publication_date":"2017-01-31T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-deux-ex-on-hold","changefreq":"weekly","video":[{"title":"2017:E31 - Deus Ex CANCELED?","description":"Looks like not enough people asked for this -- Deus Ex might be on an indefinite hiatus, thanks to lackluster sales and Square Enix's new deal to make Marvel games. ","player_loc":"https://roosterteeth.com/embed/game-news-2017-deux-ex-on-hold","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/199f5167-4efd-4342-8916-d050c6b016c8/sm/1779-1485817420215-deus_ex_thumn.jpg","duration":301,"publication_date":"2017-01-30T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2017-kingdom-hearts-2-8-hd-final-chapter-prologue","changefreq":"weekly","video":[{"title":"2017:E2 - Kingdom Hearts 2.8 HD Final Chapter Prologue","description":"Join us as we marathon through all of the new 0.2 interlude for Kingdom Hearts HD 2.8 Final Chapter Prologue to get an idea what Kingdom Hearts 3 will look like, how it will play, and try to figure out WTF is even going on in this timeline.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2017-kingdom-hearts-2-8-hd-final-chapter-prologue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ed21fc5-4a29-45b4-ac3d-294225cfd9e5/sm/710924-1485555118783-thumbnail.jpg","duration":12840,"publication_date":"2017-01-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-fire-emblem-heroes","changefreq":"weekly","video":[{"title":"2017:E30 - Know Before You Go... FIRE EMBLEM HEROES","description":"Fire Emblem Heroes was given a surprise release date and it's almost here. Curious how the popular tactical RPG will translate to mobile? Here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-fire-emblem-heroes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cc14277-6691-46c9-aa0b-7f34ca8c26ea/sm/24363-1485567595976-kbyg_fe_heroes.jpg","duration":316,"publication_date":"2017-01-28T01:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-more-details-about-the-switch","changefreq":"weekly","video":[{"title":"2017:E29 - NEW Nintendo Switch Hardware Specs & Games!","description":"Nintendo has released more detailed specs about what's under the hood of Nintendo Switch! Combine that with more games announced for console launch and you've got yourself some news!","player_loc":"https://roosterteeth.com/embed/game-news-2017-more-details-about-the-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f6c1ec6-c40e-4879-91a7-5b8e8db83dcf/sm/24363-1485565885981-switch_thumb.jpg","duration":423,"publication_date":"2017-01-28T01:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-switch-selling-well-in-japan-overwatch-hits-25-million-players-sex-formula-in-fallout-2","changefreq":"weekly","video":[{"title":"2017:E18 - Japan LOVES Nintendo Switch + 6,000 Pokemon Player BANS + Fallout's Sex Formula","description":"Nintendo Switch is already doing well with Japanese consumers. Thousands of Pokemon Sun and Moon players have been banned from playing with others. Remember being a porn star in Fallout 2? Well, there was a formula to determine your sexiness. Maybe it works in real life too! Or not, because you're not made of numbers. Plus, Resident Evil 7 shipped a bunch of units, Overwatch is still growing, the Oculus lawsuit is with a jury, there's a new convention for tabletop games, and a Batman fan just bought the real batsuit.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-switch-selling-well-in-japan-overwatch-hits-25-million-players-sex-formula-in-fallout-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08b5db56-d656-4c0b-b01b-d399463091b0/sm/24363-1485560537284-thumbnail.jpg","duration":473,"publication_date":"2017-01-27T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-the-xbox-one-underperforming","changefreq":"weekly","video":[{"title":"2017:E28 - Xbox One DRAGGING MICROSOFT DOWN! ...or is it?","description":"The Xbox One business is down year over year, contributing to a dip in Microsoft's games business. But it's not all bad, because games and Xbox Live are up! So... where's all that doom? Bueller? Bueller?","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-the-xbox-one-underperforming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31aaef2e-8a7f-42f3-a6c7-7919fcb83fc7/sm/24363-1485551640698-thumbnail.jpg","duration":518,"publication_date":"2017-01-27T21:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-will-windows-10-actually-make-your-video-games-better","changefreq":"weekly","video":[{"title":"2017:E3 - Windows 10 Makes PC Games BETTER?","description":"An upcoming Game Mode for Windows 10 promises to improve PC game performance... but can you trust it?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-will-windows-10-actually-make-your-video-games-better","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b2a9fdf-7c76-45d3-8030-2eddb02522b2/sm/710924-1485471918997-thumbnail.jpg","duration":499,"publication_date":"2017-01-27T02:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-apocalypse-now-game-kojima-talks-about-konami-split-will-scorpio-actually-play-games-in-4-k","changefreq":"weekly","video":[{"title":"2017:E17 - Xbox Boss on Scorpio 4K + Kojima Speaks on Konami + Deadpool Snubbed By Oscars!","description":"Xbox boss Phil Spencer has responded to concerns about Xbox Scorpio's 4K capabilities. Hideo Kojima shares his feelings on Konami and going independent. Deadpool got snubbed for the Oscars but star Ryan Reynolds keeps it real. Plus, new Mass Effect Andromeda details, why Japanese fans are lining up for PlayStation VR, and more!","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-apocalypse-now-game-kojima-talks-about-konami-split-will-scorpio-actually-play-games-in-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9e15bad-ba44-4245-9f6b-119c165ff384/sm/710924-1485468496580-thumbnail.jpg","duration":695,"publication_date":"2017-01-27T02:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-square-enix-teams-up-with-marvel-to-make-avengers-games","changefreq":"weekly","video":[{"title":"2017:E27 - Square-Enix and Marvel TEAM UP for The Avengers Games","description":"Is Avengers the next Final Fantasy? Will it be 10+ years between entries like Kingdom Hearts? Will all the Avengers get cool cybernetic parts like Deus Ex? Something something Tomb Raider? Disney must like working with Square-Enix because Marvel's teaming up with the gaming company to produce The Avengers-themed videogames that hopefully don't suck like previous attempts.","player_loc":"https://roosterteeth.com/embed/game-news-2017-square-enix-teams-up-with-marvel-to-make-avengers-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a382f13-ae02-4c51-8459-c6dc2784a811/sm/24363-1485464432892-thumbnail.jpg","duration":344,"publication_date":"2017-01-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-pokemon-duel","changefreq":"weekly","video":[{"title":"2017:E26 - SURPRISE Pokemon Duel Release! ...Instead of Pokemon Stars on Switch?","description":"The Pokemon Company unexpectedly dropped a new mobile game, Pokemon Duel, outside Japan. However, word is it might also come to Nintendo Switch, which might also mean that there is no Pokemon Stars after all...","player_loc":"https://roosterteeth.com/embed/game-news-2017-pokemon-duel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d5aa4fa-8b59-4e3c-bef8-068e7098667c/sm/710924-1485389200337-thumbnail.jpg","duration":487,"publication_date":"2017-01-26T02:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-are-video-game-prices-about-to-go-up","changefreq":"weekly","video":[{"title":"2017:E25 - Video Games Headed for a PRICE HIKE?","description":"Incoming US governmental policies may lead to an increase in the cost of games. As the government takes aim at tariffs for importing goods created outside the US, everything from video games to consoles could see a price hike of as much as 10%.","player_loc":"https://roosterteeth.com/embed/game-news-2017-are-video-game-prices-about-to-go-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/368afae5-082f-4f42-a534-98c6b40db19c/sm/24363-1485385824583-thumbnail.jpg","duration":332,"publication_date":"2017-01-25T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-ps4-pro-half-assed-prey-worldwide-release-date-sag-strike-breaks-records","changefreq":"weekly","video":[{"title":"2017:E16 - Rooster Teeth Publishing Battlesloths + Dev: PS4 Pro \"Half-Assed\" + Prey Dated","description":"Rooster Teeth is getting into the business of helping other developers publish their games too. Ori and the Blind Forest dev is backing the Xbox Scorpio and calling the PS4 Pro a half-assed upgrade. Prey's got a surprising (in a good way) new release date. Plus, details on Battlefield 1's upcoming expansion, controversy in Overwatch's Year of the Rooster event, Gearbox playing it cool with Nintendo Switch, the Screen Actor's Guild strike is now one of their longest, it looks like the X-Men TV show is moving ahead, and 3D TVs are officially dead.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-ps4-pro-half-assed-prey-worldwide-release-date-sag-strike-breaks-records","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44471a8a-f125-4ad0-8c08-cbe2872ab874/sm/24363-1485379958551-thumbnail.jpg","duration":540,"publication_date":"2017-01-25T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-xbox-scorpio-not-4-k","changefreq":"weekly","video":[{"title":"2017:E24 - Xbox Scorpio NOT NATIVE 4K?","description":"A newly leaked set of Microsoft white papers for Xbox Scorpio reveal new details about the upcoming console, like... it may not be pushing true 4K for every game after all?","player_loc":"https://roosterteeth.com/embed/game-news-2017-xbox-scorpio-not-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10e51c60-f5a1-49aa-b43e-f425162fd178/sm/24363-1485312338180-thumbnail.jpg","duration":534,"publication_date":"2017-01-25T02:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up-2","changefreq":"weekly","video":[{"title":"2017:E15 - Dark Souls 3 DLC Revealed + Yandere Simulator vs Twitch + Politics in TLOU2","description":"The final DLC for Dark Souls 3 has been officially revealed. Is this the last Dark Souls content ever? Yandere Simulator has been banned from Twitch for a while, and the developer has come out swinging against the streaming platform. The Last of Us writer Neil Druckmann says he can't keep personal politics out of The Last of Us 2, and we shouldn't want him to. Plus, Kingdom Hearts 2.8 reviews are here, Sony sells a lot of games with every PS4, teabagging gets outlawed, Final Fantasy XV changes won't change the game all that much, even Guillermo Del Toro doesn't know what's happening in Death Stranding, and hackers held a city's libraries hostage for bitcoins.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfda499d-f8e9-412a-95ce-03764aae1846/sm/24363-1485311518616-thumbnail.jpg","duration":574,"publication_date":"2017-01-25T02:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-will-red-dead-2-gun-down-gta-online","changefreq":"weekly","video":[{"title":"2017:E23 - Red Dead Redemption 2 GUNS DOWN GTA Online?","description":"A leaker suggests we've seen the last big hurrah for GTA Online, as Rockstar prepares to switch gears entirely to Red Dead later this year.","player_loc":"https://roosterteeth.com/embed/game-news-2017-will-red-dead-2-gun-down-gta-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a92c1f66-37b8-4e51-8f44-4123dd79f7c6/sm/24363-1485290023991-thumbnail.jpg","duration":378,"publication_date":"2017-01-24T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-suicide-squad-s-director-said-the-movie-needed-more-joker","changefreq":"weekly","video":[{"title":"2017:E4 - Suicide Squad's director said the movie needed ... more Joker??","description":"2017:E4 - Suicide Squad's director said the movie needed ... more Joker??","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-suicide-squad-s-director-said-the-movie-needed-more-joker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53b8f36f-fcd1-4d4c-9688-33bba01dd72b/sm/24363-1485273218800-thumbnail.jpg","duration":436,"publication_date":"2017-01-24T01:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-resident-evil-7-is-it-good","changefreq":"weekly","video":[{"title":"2017:E22 - Resident Evil VII: IS IT GOOD?","description":"Resident Evil VII is almost here. Or, depending on when you watch this, it's already here! Reviews are out and good news for those hoping the game delivers on the promise of being terrifying and creepy and a return to Resident Evil's roots.","player_loc":"https://roosterteeth.com/embed/game-news-2017-resident-evil-7-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/715e8f68-32cd-4db9-a222-dce072a2c263/sm/24363-1485214342904-thumbnail.jpg","duration":569,"publication_date":"2017-01-23T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-breath-of-the-wild-leaks-play-mass-effect-early-star-wars-episode-viii-title-revealed","changefreq":"weekly","video":[{"title":"2017:E14 - Zelda: Breath of the Wild SPOILED + Early Mass Effect + Star Wars Episode VIII NAMED","description":"A spoilerific guide for The Legend of Zelda: Breath of the Wild has been pulled from shelves, but prepare for all kinds of spoilers everywhere. Get your hands on Mass Effect: Andromeda a little early (or just watch us get our hands on it!). Star Wars Episode VIII has officially got a name... and a new...color? Plus, no Resident Evil VII for Nintendo Switch, PC hardware is making tons of money, the Logan movie isn't X-men canon, Ryan Reynolds could be Green Lantern... again, Teminator might be good again, and maybe videogames aren't psychopaths after all.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-breath-of-the-wild-leaks-play-mass-effect-early-star-wars-episode-viii-title-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6341e54b-2e1b-411b-b572-899ceca9b1ee/sm/24363-1485207295267-thumbnail.jpg","duration":502,"publication_date":"2017-01-23T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-know-before-you-go-resident-evil-vii","changefreq":"weekly","video":[{"title":"2017:E21 - Know Before You Go... Resident Evil VII","description":"Resident Evil VII hits shelves this week and aims to take the series back to its roots. Curious what the game is all about? Here's what you need to know.","player_loc":"https://roosterteeth.com/embed/game-news-2017-know-before-you-go-resident-evil-vii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40211492-6335-4774-9130-70ce96592b1a/sm/24363-1484964326410-thumbnail.jpg","duration":486,"publication_date":"2017-01-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-worst-video-game-presidents-ever","changefreq":"weekly","video":[{"title":"2015-2016:E23 - Worst Video Game Presidents EVER","description":"Not all video game presidents are made equal. Here are 10 of the worse presidents ever made of pixels.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-worst-video-game-presidents-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f439844-c29c-490c-89b5-ce119edd1c9d/sm/24363-1484965583953-thumbnail.jpg","duration":426,"publication_date":"2017-01-21T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-is-psvr-the-next-kinect","changefreq":"weekly","video":[{"title":"2017:E20 - PlayStation VR: THE NEXT KINECT?","description":"PlayStation VR showed so much promise. The right backing. The right lineup. The right hardware. So why is Sony running silent on it?","player_loc":"https://roosterteeth.com/embed/game-news-2017-is-psvr-the-next-kinect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/111bd965-6c07-4795-85a2-cc98173b7c82/sm/24363-1484964816966-thumbnail.jpg","duration":561,"publication_date":"2017-01-21T02:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-where-did-all-the-console-gamers-go","changefreq":"weekly","video":[{"title":"2017:E19 - 128 Million Console Gamers MISSING?","description":"Projections for this new console generation show that we could be looking at 128 FEWER consoles sold. Where did those millions of console players go?","player_loc":"https://roosterteeth.com/embed/game-news-2017-where-did-all-the-console-gamers-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30d59ab3-0b41-437d-8595-8489b22aefee/sm/24363-1484964711201-thumbnail.jpg","duration":481,"publication_date":"2017-01-21T02:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-titanfall-dev-on-switch-f-k-no-call-of-duty-beats-battlefield-in-2016-headline-3","changefreq":"weekly","video":[{"title":"2017:E13 - Titanfall on Switch: \"F**K No\" + Call of Duty Beats Battlefield + How Big is Zelda?","description":"Don't get your hopes up for Titanfall on NIntendo Switch. How much will Xbox Scorpio cost? Most hated Call of Duty still outsells Battlefield 1. Portal creator working on Star Wars. Yakuza 0 looks pretty solid. Zelda: Breath of the Wild's world is huuuuuge. The Division movie gets an Academy Award Winner onboard. Shazam's movie split into 2--Dwayne Johnson's Black Adam gets a standalone. Netflix takes shots at HBO's release model.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-titanfall-dev-on-switch-f-k-no-call-of-duty-beats-battlefield-in-2016-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f9d2588-e1b1-49ea-867a-d6d9e7b4d9c4/sm/24363-1484954673175-thumbnail.jpg","duration":497,"publication_date":"2017-01-20T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-the-switch-will-handle-a-lot-of-online-functions-through-an-app","changefreq":"weekly","video":[{"title":"2017:E18 - Nintendo Switch: Smartphone App REQUIRED for Online? - The Know Game News","description":"Nintendo Switch isn't a traditional gaming console. It doesn't play by the rules. But are all rules REALLY made to be broken? For example, is handling matchmaking and voice chat through a smartphone app ACTUALLY an elegant solution or is it kind of... weird?","player_loc":"https://roosterteeth.com/embed/game-news-2017-the-switch-will-handle-a-lot-of-online-functions-through-an-app","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/375d3a46-008e-4334-9572-06691d3bd055/sm/24363-1484872056437-thumbnail.jpg","duration":612,"publication_date":"2017-01-20T04:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-pixar-shared-universe-theory-c-o-n-f-i-r-m-e-d","changefreq":"weekly","video":[{"title":"2017:E3 - Pixar Shared Universe Theory CONFIRMED?","description":"In the before time, the long long ago of... 2013, a fan theorized that all Pixar movies take place in the same shared universe and hint at a larger meta story. Now, new materials from Pixar are happy to show off the crossovers. Is this confirmation of the theory?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-pixar-shared-universe-theory-c-o-n-f-i-r-m-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b5198d9-755b-4b48-84e5-e96070ea2f4f/sm/24363-1484870996319-thumbnail.jpg","duration":455,"publication_date":"2017-01-20T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-thursday-round-up-2a","changefreq":"weekly","video":[{"title":"2017:E12 - Palmer Luckey in Court + HOW MANY New Fire Emblem Games!? + FOX Gets Into Games","description":"EA is pulling out of E3 (again). Palmer Luckey takes the stand in the Oculus lawsuit. Nintendo announced a ton of new Fire Emblem games. Resident Evil 7 gets Xbox/PC crossbuy. Overwatch's new event. Last look at Wolverine. Another look at the Power Rangers movie. New gadget lets you throw your own fireballs.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-thursday-round-up-2a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7181e9b-902b-4a26-a258-70a9df1c0475/sm/24363-1484869963730-thumbnail.jpg","duration":508,"publication_date":"2017-01-19T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-indie-devs-gone-wild-with-reviews","changefreq":"weekly","video":[{"title":"2017:E17 - Indie Devs Gone Wild with Reviews","description":"Picture this. You've just made a game. You put it out in the world, and you want it to do well. But unlike those other lazy publishers or developers, you decide to go the extra mile. You're going to make everyone think this game is GOTY material, even if you have to fake the reviews or threaten reviewers. What could go wrong?","player_loc":"https://roosterteeth.com/embed/game-news-2017-indie-devs-gone-wild-with-reviews","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d715847c-7b58-4d7c-9fea-ed5860370f08/sm/24363-1484797682558-review_threat_thumbnail.jpg","duration":383,"publication_date":"2017-01-19T03:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-gabe-newell-took-questions-from-the-internet","changefreq":"weekly","video":[{"title":"2017:E16 - New PORTAL/HALF-LIFE Universe Games! Valve's Future! Gabe Newell SPEAKS","description":"Gabe Newell, known to the PC gamers who worship him as GabeN, has descended from his home in the heavens (aka probably Valve in Seattle) to speak. The angel spreading his words? Reddit, obviously. In an AMA the godfather of PC gaming speaks about the future of games in the Half-life and Portal universe, movies, Left 4 Dead, and so much more. But mostly about the future of games i the Half-life and Portal universe.","player_loc":"https://roosterteeth.com/embed/game-news-2017-gabe-newell-took-questions-from-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b34bcc77-6e70-45eb-92e7-0c5a739060f7/sm/24363-1484782740828-thumbnail.jpg","duration":447,"publication_date":"2017-01-18T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-no-halo-6-in-2017-no-netflix-on-switch-another-dc-movie-in-trouble","changefreq":"weekly","video":[{"title":"2017:E11 - No Halo 6 in 2017? + No Netflix on Switch + Wonder Woman Will Suck?","description":"If you were hoping Microsoft's 2017 game lineup might be be saved by Halo in time for Xbox Scorpio... eh, maybe don't hope that. Nintendo Switch is missing another feature... Netflix. NO MOVIES ON YOUR GAMING MACHINE... at least at launch. And whispers hint that Wonder Woman might not be the movie to save the DC Extended Universe after all. Shame.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-no-halo-6-in-2017-no-netflix-on-switch-another-dc-movie-in-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a9eeefd-f7a4-4658-80ea-f18a74e7fa26/sm/24363-1484772886229-thumbnail.jpg","duration":457,"publication_date":"2017-01-18T21:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-rip-vine","changefreq":"weekly","video":[{"title":"2017:E2 - THE DEATH OF VINE... RIP","description":"They say we die a second at a time. Probably. In Vine's case... it's died six seconds at a time.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-rip-vine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dc83853-7a0e-4d94-9981-fef1ba37b70f/sm/24363-1484707991401-rip_vine_thumbnail.jpg","duration":513,"publication_date":"2017-01-18T02:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-tuesday-round-up","changefreq":"weekly","video":[{"title":"2017:E10 - Resident Evil 7 SPOILED + Pokemon Mod DMCA + Mark Zuckerber Lawyers Up","description":"Keep your head down and off the internet if you don't want Resident Evil 7 spoiled because it's broken street date. A Pokemon mod has been DMCAed, but... not by Nintendo? Mark Zuckerberg takes the stand in the lawsuit by Zenimax against Oculus and it's so shady you can't even see the sun. Plus... you know, some other news too.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-tuesday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83b531e2-9259-48a8-a0e7-501c1b61641f/sm/24363-1484699307031-thumbnail.jpg","duration":510,"publication_date":"2017-01-18T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-here-s-what-the-switch-w-o-n-t-have","changefreq":"weekly","video":[{"title":"2017:E15 - Nintendo Switch: WHAT'S MISSING","description":"Nintendo Switch announced all the things it DOES have last week, but since the press conference it turns out there are a lot of things it DOESN'T have... voice chat is just the beginning.","player_loc":"https://roosterteeth.com/embed/game-news-2017-here-s-what-the-switch-w-o-n-t-have","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bbc329b-8c2b-4fd3-b4ea-0e82b38893d8/sm/24363-1484686887032-thumbnail.jpg","duration":385,"publication_date":"2017-01-17T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nintendo-s-w-i-t-c-h-p-r-i-c-e-d-a-t-e-g-a-m-e-s-h-a-r-d-w-a-r-e-what-you-need-to-know","changefreq":"weekly","video":[{"title":"2017:E14 - NINTENDO SWITCH: PRICE! DATE! GAMES! HARDWARE! What You Need to Know","description":"Sure, you could watch an hour of a Japanese livestream translated to English by extremely disinterested translators. OR... you can get all the information in less time, right here! We've got everything you need to know about Nintendo Switch right here--price, release date, accessories, hardware, launch games, and colors.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nintendo-s-w-i-t-c-h-p-r-i-c-e-d-a-t-e-g-a-m-e-s-h-a-r-d-w-a-r-e-what-you-need-to-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41de203f-b8fd-4a0e-bde9-8b068a993dd6/sm/24363-1484364498584-thumbnail.jpg","duration":829,"publication_date":"2017-01-14T03:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2017-nintendo-switch-r-e-v-e-a-l-e-d-with-live-commentary-and-post-show-analysis","changefreq":"weekly","video":[{"title":"2017:E1 - NINTENDO SWITCH REVEALED! with Live Commentary and Post-Show Analysis ","description":"Join the folks at Rooster Teeth and The Know to watch the Nintendo Switch Reveal live with commentary, shenanigans, and probably some booze because it's late at night and that's drinking time.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2017-nintendo-switch-r-e-v-e-a-l-e-d-with-live-commentary-and-post-show-analysis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b224ebf1-c60c-4f28-a9b1-212ddf3337ab/sm/24363-1484354355250-thumbnail.jpg","duration":8234,"publication_date":"2017-01-14T02:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-kojima-steals-more-konami-employees-romance-options-in-mass-effect-headline-3","changefreq":"weekly","video":[{"title":"2017:E9 - Kojima Fultons Konami Talent + Mass Effect Sex \"Pretty Good\" + Deadpool for Best Picture","description":"Kojima has recruited more top talent from Konami. According to the Mass Effect devs you can do an awful lot of banging in Mass Effect: Andromeda and it's pretty good. Lucasfilm is negotiating for the use of Leia in future Star Wars movies. and Deadpool could actually, really, no joke be a contender for an Academy Award.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-kojima-steals-more-konami-employees-romance-options-in-mass-effect-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/609aa60d-8bb2-4261-9802-e2de8f805c5f/sm/24363-1484353485297-thumbnail.jpg","duration":452,"publication_date":"2017-01-14T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-insider-half-life-3-doesn-t-exist-lots-of-unannounced-ps4-games-coming-microsoft-sued-over-gears-of-war","changefreq":"weekly","video":[{"title":"2017:E8 - Insider: Half-Life 3 Doesn't Exist + Lots of Unannounced PS4 Games Coming + Microsoft SUED Over Gears of War","description":"2017:E8 - Insider: Half-Life 3 Doesn't Exist + Lots of Unannounced PS4 Games Coming + Microsoft SUED Over Gears of War","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-insider-half-life-3-doesn-t-exist-lots-of-unannounced-ps4-games-coming-microsoft-sued-over-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7e8ed99-731f-4ca2-bb75-7e564bd53f93/sm/24363-1484353022303-thumbnail.jpg","duration":419,"publication_date":"2017-01-13T00:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2017-zeni-max-and-oculus-are-ready-to-rumble-as-trial-begins","changefreq":"weekly","video":[{"title":"2017:E1 - OCULUS ON TRIAL! $2 Billion Lawsuit Over VR","description":"The big lawsuit against Oculus has begun and it is off to a SALTY start. Did Oculus steal its tech? Did Facebook know? How lawyered up is this going to get?","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2017-zeni-max-and-oculus-are-ready-to-rumble-as-trial-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b87121a-ed21-4443-86ea-60ed3388138b/sm/24363-1484264638595-thumbnail.jpg","duration":424,"publication_date":"2017-01-12T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-20-years-of-metacritic-data","changefreq":"weekly","video":[{"title":"2017:E12 - GAMES ARE GETTING WORSE? not so fast...","description":"A new study shows that fewer games than ever are receiving top marks with game reviewers (yes, in spite of all those \"they were paid to say good things\" memes). Does that mean games are getting worse? Or maybe there's something else going on...","player_loc":"https://roosterteeth.com/embed/game-news-2017-20-years-of-metacritic-data","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bdde364-488d-49e5-a043-a47cd21720e0/sm/24363-1484197396454-thumbnail.jpg","duration":488,"publication_date":"2017-01-12T05:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-wednesday-round-up","changefreq":"weekly","video":[{"title":"2017:E7 - Crackdown 3 Safe + Dark Souls III DLC Datamined + Asteroid Near Miss","description":"Scalebound's cancellation still has us feeling raw, but at least Crackdown 3 seems to be ok? And we may have word on the next Dark Souls III DLC thanks to a datamine. Oh, and an asteroid just barely missed Earth and would have caused about 30 Hiroshimas... no big deal. Oh, and researchers are still trying to figure out how to keep AI from eventually wiping us out if asteroids don't.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-wednesday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f339096a-f4e8-4a08-b934-7cca3ba1d9be/sm/24363-1484189716921-thumbnail.jpg","duration":489,"publication_date":"2017-01-12T02:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-can-t-wait-until-tomorrow-here-are-more-switch-leaks","changefreq":"weekly","video":[{"title":"2017:E11 - NEW 15 Launch Games? Date! Price! Everything We Know About Nintendo Switch","description":"Nintendo will unleash all the details you can handle about the Nintendo Switch tomorrow night, but we haven't been idly waiting for it. Here's everything we know (and think we know) about the new console, plus some new details about release date, price, and launch games.","player_loc":"https://roosterteeth.com/embed/game-news-2017-can-t-wait-until-tomorrow-here-are-more-switch-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bffd86e1-4db5-4055-b87b-3d8bd8483833/sm/24363-1484180520749-thumbnail.jpg","duration":495,"publication_date":"2017-01-12T00:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-20170109-more-scalebound-cancellation-details-gravity-rush-2-reviews-pokemon-go-banned-in-china","changefreq":"weekly","video":[{"title":"2017:E6 - Scalebound Cancellation BETTER FOR GAMERS + When is KH3 Coming? + Pokemon Go Ban","description":"Xbox thinks canceling Scalebound is BETTER for gamers. When to expect Kingdom Heart 3 and Final Fantasy VII Remake? Well... Overwatch may have more sweethearts on the way. Gravity Rush 2 reviews are out. JJ Abrams is tired of reboots. Ben Affleck confirms he will direct The Batman. Pokemon Go has been banned in another country. RIP Yahoo, long live... Altaba?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-20170109-more-scalebound-cancellation-details-gravity-rush-2-reviews-pokemon-go-banned-in-china","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4edad8b-138e-4ccd-aecf-349768bac8ab/sm/24363-1484101921893-thumbnail.jpg","duration":503,"publication_date":"2017-01-11T02:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-horizon-zero-dawn-details-and-storyline-spoilers-leaked","changefreq":"weekly","video":[{"title":"2017:E10 - WARNING: Major Leak for HORIZON: ZERO DAWN","description":"Looking forward to Horizon: Zero Dawn? Be careful on the internet. It's sprung a major leak with cool details like world size and gameplay, but also dangerous details like the entire ending. We're not going to discuss all of it, but let's definitely talk about some of the non-story-specific details.","player_loc":"https://roosterteeth.com/embed/game-news-2017-horizon-zero-dawn-details-and-storyline-spoilers-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c44c4c5-7bd2-4fa8-b84f-5cbd7fac19f9/sm/24363-1484090958235-thumbnail.jpg","duration":348,"publication_date":"2017-01-10T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-nier-s-butthole-controversy-a-h-o-a-x","changefreq":"weekly","video":[{"title":"2017:E9 - Nier's Butthole Controversy a HOAX?","description":"It's only January but we've got a frontrunner for most ridiculous story of the year. NieR Automata's community has been in an uproar over an upskirt image that revealed the character's butthole. Yes, this is news. Fan artists have had heart attacks (probably, figuratively speaking), the creator has responded, and the whole thing's not even real. It's hard to know where to start, but we're on the case.","player_loc":"https://roosterteeth.com/embed/game-news-2017-nier-s-butthole-controversy-a-h-o-a-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb00fa37-04d5-4544-a803-0c2e43d78bf1/sm/24363-1484083599259-thumbnail.jpg","duration":448,"publication_date":"2017-01-10T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-scalebound-c-a-n-c-e-l-e-d","changefreq":"weekly","video":[{"title":"2017:E8 - Scalebound CANCELLED!","description":"Scalebound, the dragon-based action RPG from Platinum Games slated for Xbox One and PC... has been cancelled. Microsoft made the announcement earlier today after reports began to leak and gamers noticed that its page was missing from the Xbox Store. This is just the latest cancellation by Microsoft in a series of unfortunate events that's resulted in a thin lineup of exclusives for the platform. And reportedly, it's not the only game suffering.","player_loc":"https://roosterteeth.com/embed/game-news-2017-scalebound-c-a-n-c-e-l-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61575fb6-9a5a-4cc6-9a96-ee1120a2d063/sm/24363-1484015166671-thumbnail.jpg","duration":392,"publication_date":"2017-01-10T02:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-red-dead-redemption-2-release-date-leaked-switch-under-250-no-mass-effect-andromeda-season-pass","changefreq":"weekly","video":[{"title":"2017:E5 - Red Dead Redemption 2 Dated? + Nintendo Switch Under $250? + No Mass Effect Season Pass","description":"Red Dead Redemption 2's release date may have leaked. NES Classic has been hacked to hold more games. PS4 users are porn hounds, according to Pornhub. Nintendo Switch may cost even less than $250. Steam's set a new record. Footage from a canceled Mega Bloks Halo game has leaked. The Uncharted movie has a script and... apparently it's a BEAST. Rogue One is suffering in China. Mass Effect Andromeda is giving the season pass DLC model a skip. Razer may have had its fancy new prototypes stolen at CES.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-red-dead-redemption-2-release-date-leaked-switch-under-250-no-mass-effect-andromeda-season-pass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb11187b-92d1-473d-bd1e-77f9e2175f5b/sm/24363-1484007328773-thumbnail.jpg","duration":585,"publication_date":"2017-01-10T00:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-half-life-3-might-have-been-an-r-t-s","changefreq":"weekly","video":[{"title":"2017:E7 - Half-life 3 the RTS (or FMV game)? What Might Have Been","description":"New news about Half-Life 3! No, it's not coming out. But we have an idea what might have been... and it might have been an RTS game... or a live action FMV game. Weird.","player_loc":"https://roosterteeth.com/embed/game-news-2017-half-life-3-might-have-been-an-r-t-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1590e0e1-421e-43a9-b37e-a5e971a63b07/sm/24363-1483997646167-thumbnail.jpg","duration":428,"publication_date":"2017-01-09T21:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-we-ve-discovered-aliens-well-in-a-video-game","changefreq":"weekly","video":[{"title":"2017:E6 - FIRST ALIEN CONTACT! Thargoids Discovered in Elite Dangerous","description":"We've discovered aliens! In a videogame, anyway. After years of teases by the developers, gamers have finally come face to face with the alien race of Thargoids in Elite Dangerous. Potentially more impressive than the years of teases actually paying off is that the developers managed to keep the secret of the race from data miners until the big reveal.","player_loc":"https://roosterteeth.com/embed/game-news-2017-we-ve-discovered-aliens-well-in-a-video-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/216118a4-123f-4af5-a13d-779b5d603f66/sm/24363-1483746215772-thumbnail.jpg","duration":371,"publication_date":"2017-01-06T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-pokemon-go-wins-2016-square-enix-hacked-clueless-gamer-gets-tv-shown","changefreq":"weekly","video":[{"title":"2017:E4 - Pokemon GO Wins 2016 + Shenmue HD Remaster? + Square Enix HACKED","description":"Pokemon Go is Apple's biggest game of 2016. Nintendo is doubling down with a second Switch event. Shenmue looks like it's getting an HD remaster after all. Square Enix's twitter got hacked and destroyed overnight. The Master Chief Collection may remain a little busted for all time. Rogue One may suffer in China... because of pollution. Conan O'Brien's Clueless Gamer may get its own TV show. The White House has plans for any asteroid collisions... yeah, for real. Guess they really took Deep Impact and Armageddon to heart. I mean, who wouldn't want to do whatever it takes to save Bruce Willis?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-pokemon-go-wins-2016-square-enix-hacked-clueless-gamer-gets-tv-shown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f96046d3-6b07-4c37-9771-2499382fca38/sm/24363-1483745190461-thumbnail.jpg","duration":431,"publication_date":"2017-01-06T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-was-2016-the-year-of-the-indie-game","changefreq":"weekly","video":[{"title":"2017:E5 - THE YEAR OF THE INDIE GAME? State of the Gaming Industry","description":"We've got full year numbers for how various gaming platforms performed, and there are some surprising upsets. Based on Steam analytics, indie games like Stardew Valley made more money in 2016 than AAA franchises like Call of Duty. Let's break down how different genres and platforms did throughout the year, and what it means for the industry.","player_loc":"https://roosterteeth.com/embed/game-news-2017-was-2016-the-year-of-the-indie-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c25e04c5-a609-4adf-be92-5767aec1d211/sm/24363-1483736268569-thumbnail2.jpg","duration":394,"publication_date":"2017-01-06T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-sony-and-microsoft-year-end-comparison-who-s-got-the-most-exclusives-in-2017","changefreq":"weekly","video":[{"title":"2017:E4 - Xbox One & PS4: 2016 Results + 2017 Exclusives","description":"2016 is dead. Long live 2017. Since the year's finished, Microsoft and Sony have released numbers for how their consoles fared in the year, and shared details about how they plan to make 2017 bigger than ever.","player_loc":"https://roosterteeth.com/embed/game-news-2017-sony-and-microsoft-year-end-comparison-who-s-got-the-most-exclusives-in-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92dc640f-c1d2-41c6-953d-3eb800095b9b/sm/24363-1483661612643-thumbnail.jpg","duration":447,"publication_date":"2017-01-06T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-new-mass-effect-combat-details-europe-may-not-get-zelda-at-switch-launch-rent-your-gpu","changefreq":"weekly","video":[{"title":"2017:E3 - Mass Effect Combat Details + Europe Screwed for Zelda Launch + Rent a Super PC","description":"Where to start? Well, let's start with Mass Effect: Andromeda, because BioWare has shared new details on how classes, combat, and skills will work in the game. Plus, Resident Evil VII is getting a spooky real life haunted house. Europe may be getting boned (and not in the good way) on the release date for The Legend of Zelda: Breath of the Wild. GDC is ready to hand out its annual game awards, and Inside is the darling so far. Elementary is tackling eSports, so... that should be fun. If you don't have a high end PC of your own you can rent one, kind of. Or if you can you can spend all that dough on a laptop with 3 screens, because why not?","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-new-mass-effect-combat-details-europe-may-not-get-zelda-at-switch-launch-rent-your-gpu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c334f7d-833e-4356-97b0-a3f2c1c71800/sm/24363-1483657774666-thumbnail.jpg","duration":474,"publication_date":"2017-01-05T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-soul-calibur-character","changefreq":"weekly","video":[{"title":"S1:E61 - The Best EVER Soul Calibur Character","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-ever-soul-calibur-character","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f81e763c-5d66-4e4a-b7c1-2fbee741cb9b/sm/video_thumbnail_12869531-1429376964.jpg","duration":559,"publication_date":"2015-04-18T10:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/daredevil-loves-black-widows-behind-who-is","changefreq":"weekly","video":[{"title":"S1:E5 - Daredevil Loves Black Widow's Behind??? | \"Who Is\" ","description":"Lawyer by day, superhero by night, this blind vigilante will protect the innocent on the streets and in the courthouse. \r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/daredevil-loves-black-widows-behind-who-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e5d033-6e2c-4f12-8f9a-e0b37753f5cc/sm/video_thumbnail_12869468-1429292423.jpg","duration":376,"publication_date":"2015-04-17T10:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-mortal-kombat-x-good","changefreq":"weekly","video":[{"title":"S1:E10 - Is Mortal Kombat X Good?","description":"Is it Good?","player_loc":"https://roosterteeth.com/embed/is-mortal-kombat-x-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1a083db-7b94-4030-aa95-fa0dc8d93f44/sm/video_thumbnail_12869312-1429115080.jpg","duration":98,"publication_date":"2015-04-17T09:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-mario-kart-64","changefreq":"weekly","video":[{"title":"S1:E26 - Reasons We LOVE Mario Kart 64!","description":"These are the reasons we LOVE Mario Kart 64!","player_loc":"https://roosterteeth.com/embed/reasons-we-love-mario-kart-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e57989f-549c-4b70-a817-ddbe5726b81e/sm/video_thumbnail_12869395-1429202916.jpg","duration":87,"publication_date":"2015-04-16T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-mario-kart-64","changefreq":"weekly","video":[{"title":"S1:E39 - Reasons we HATE Mario Kart 64!","description":"S1:E39 - Reasons we HATE Mario Kart 64!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-mario-kart-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df8b3c9f-94b6-4b62-a669-50cfd4c1f389/sm/video_thumbnail_12869396-1429202969.jpg","duration":98,"publication_date":"2015-04-16T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-spyro-the-dragon","changefreq":"weekly","video":[{"title":"S1:E24 - Five Fun Facts about Spyro the Dragon!","description":"S1:E24 - Five Fun Facts about Spyro the Dragon!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-spyro-the-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da427af0-b442-4cba-b01d-f0d490f8b06b/sm/video_thumbnail_12869309-1429112481.jpg","duration":282,"publication_date":"2015-04-15T06:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendos-biggest-lie-great-moments-in-gaming-history","changefreq":"weekly","video":[{"title":"S1:E6 - Nintendo's Biggest Lie | Great Moments In Gaming History","description":"Samus was a girl all along? Even the developers kept it a secret???\r\n\r\nMake sure to SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any episodes! New episodes every other Monday at 9am CT!\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/nintendos-biggest-lie-great-moments-in-gaming-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/346a0f1f-eefd-4670-8682-a0f734384e04/sm/video_thumbnail_12869167-1428952428.jpg","duration":181,"publication_date":"2015-04-13T12:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-psychos","changefreq":"weekly","video":[{"title":"S1:E132 - Top 10 Psychos","description":"S1:E132 - Top 10 Psychos","player_loc":"https://roosterteeth.com/embed/top-10-psychos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e62f3113-504b-4444-af62-b4bd9dd2ccbf/sm/video_thumbnail_12869151-1428940813.jpg","duration":588,"publication_date":"2015-04-13T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-041115","changefreq":"weekly","video":[{"title":"S1:E877 - SideScrollers Extended Cut 04/11/15","description":"Drake's in the house!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-041115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ccf1856-785a-4d10-b110-50090743b5f7/sm/video_thumbnail_12868975-1428702336.PNG","duration":780,"publication_date":"2015-04-11T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/kinky-scarecrow-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E182 - Kinky Scarecrow | SideScrollers","description":"This time on SideScrollers, Sean sits in for Chad and the guys are looking forward to our special event next week: the Mario Party Marathon! Sam's got a crazy Newdesk and we've got plenty of great Art Show submissions this week!\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/kinky-scarecrows-sidescrollers\r\n\r\nSend a Newsdesk submission to Sam!\r\nSam@ScewAttack.com\r\n\r\nSend an Art Show submission to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/kinky-scarecrow-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a2346d5-c526-4c9a-aa6e-7b430dbcc09f/sm/video_thumbnail_12868974-1428702029.jpg","duration":4146,"publication_date":"2015-04-11T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-xenoblade-chronicals-3d-good","changefreq":"weekly","video":[{"title":"S1:E9 - Is Xenoblade Chronicals 3D Good?","description":"Is Xenoblade Chronicals 3D really THAT good? Find Out NOW!","player_loc":"https://roosterteeth.com/embed/is-xenoblade-chronicals-3d-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db72ed7c-87ab-41d2-a94b-74ad79a0fa69/sm/video_thumbnail_12868950-1428676572.jpg","duration":97,"publication_date":"2015-04-10T07:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-gears-of-war","changefreq":"weekly","video":[{"title":"S1:E27 - 18 Reasons We LOVE Gears of War!","description":"These are the reasons we LOVE Gears of War! What are yours?","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/074c56df-30f1-416c-ad7b-7e4ece89d022/sm/video_thumbnail_12868864-1428596951.jpg","duration":81,"publication_date":"2015-04-09T10:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-gears-of-war","changefreq":"weekly","video":[{"title":"S1:E38 - Reasons We HATE Gears of War!","description":"These are the reasons we HATE Gears of War! What are yours?","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0875bed8-1594-47db-a18e-77acac07642f/sm/video_thumbnail_12868865-1428597119.png","duration":88,"publication_date":"2015-04-09T10:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-20","changefreq":"weekly","video":[{"title":"S2:E20 - Guts VS Nightmare","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a3a51b-85fd-4f04-ac27-e4808f1490bd/sm/video_thumbnail_12868772-1428503378.jpg","duration":1125,"publication_date":"2015-04-08T07:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-super-powers-would-we-have","changefreq":"weekly","video":[{"title":"S1:E876 - What Super Powers would we have? ","description":"S1:E876 - What Super Powers would we have? ","player_loc":"https://roosterteeth.com/embed/what-super-powers-would-we-have","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdedeb75-681d-4fd2-8cd5-3f50912d8e5e/sm/video_thumbnail_12868659-1428359268.jpg","duration":362,"publication_date":"2015-04-06T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-lucario-vs-renamon","changefreq":"weekly","video":[{"title":"S1:E13 - One Minute Melee | Lucario vs Renamon","description":"S1:E13 - One Minute Melee | Lucario vs Renamon","player_loc":"https://roosterteeth.com/embed/one-minute-melee-lucario-vs-renamon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13f90d36-ce5e-4f6b-8a46-035089666d0a/sm/video_thumbnail_12868637-1428347233.png","duration":189,"publication_date":"2015-04-06T12:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-040415","changefreq":"weekly","video":[{"title":"S1:E875 - SideScrollers Extended Cut 04/04/15","description":"Let's dig deeper into Amiibos, eh?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-040415","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7d5f1c7-38e4-49a6-beef-5e0c6b9baca8/sm/video_thumbnail_12868389-1428104173.PNG","duration":725,"publication_date":"2015-04-04T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ode-to-dreamcast-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E181 - Ode to Dreamcast | SIdeScrollers","description":"This time on SideScrollers, we're paying homage to Sega's final console: The Dreamcast!\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/ode-to-dreamcast-sidescrollers\r\n\r\nSend a Newdesk story to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend an Art Show piece to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/ode-to-dreamcast-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a6a65eb-a12b-4aa1-b530-0d453361d9c9/sm/video_thumbnail_12868387-1428103025.jpg","duration":4608,"publication_date":"2015-04-04T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-mario-party-10-good","changefreq":"weekly","video":[{"title":"S1:E8 - Is Mario Party 10 Good?","description":"Was it good?","player_loc":"https://roosterteeth.com/embed/is-mario-party-10-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8adf1fc-7f96-4823-9e8c-8d574d115a29/sm/video_thumbnail_12868356-1428085044.jpg","duration":108,"publication_date":"2015-04-04T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dr-doom-gets-pooped-on-\"who-is\"","changefreq":"weekly","video":[{"title":"S1:E4 - Dr. Doom Gets Pooped On | \"Who Is\"","description":"Why does everyone hate Doctor Doom? He's actually the nicest guy in the world! SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any new episodes of Who Is every two weeks!\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/dr-doom-gets-pooped-on-\"who-is\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/badb4b60-0c09-4386-9e71-0ac377c54c95/sm/video_thumbnail_12868331-1428078092.jpg","duration":416,"publication_date":"2015-04-03T09:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-attack-on-titan","changefreq":"weekly","video":[{"title":"S1:E37 - 15 Reasons We HATE Attack on Titan!","description":"These are the reasons we HATE Attack on Titan!","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-attack-on-titan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25d296bb-5ca8-455d-8784-af5ce387ba5d/sm/video_thumbnail_12868212-1427991766.png","duration":84,"publication_date":"2015-04-02T09:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-attack-on-titan","changefreq":"weekly","video":[{"title":"S1:E28 - 18 Reasons We LOVE Attack on Titan!","description":"S1:E28 - 18 Reasons We LOVE Attack on Titan!","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-attack-on-titan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40be34bb-03af-4c0f-8de3-4cfb5a7f636c/sm/video_thumbnail_12868211-1427991613.jpg","duration":66,"publication_date":"2015-04-02T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/\"no-russian\"-great-moments-in-gaming-history","changefreq":"weekly","video":[{"title":"S1:E5 - \"No Russian\" | Great Moments in Gaming History ","description":"S1:E5 - \"No Russian\" | Great Moments in Gaming History ","player_loc":"https://roosterteeth.com/embed/\"no-russian\"-great-moments-in-gaming-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d31a7de1-32bd-4b57-b274-72bcfc01fa0e/sm/video_thumbnail_12868116-1427898801.jpg","duration":171,"publication_date":"2015-04-01T07:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chuck-vs-segata-in-the-soundbooth","changefreq":"weekly","video":[{"title":"S1:E874 - Chuck Vs. Segata in the Soundbooth!","description":"S1:E874 - Chuck Vs. Segata in the Soundbooth!","player_loc":"https://roosterteeth.com/embed/chuck-vs-segata-in-the-soundbooth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aaefa72-027b-4099-b49a-846eb804b166/sm/video_thumbnail_12867993-1427750795.jpg","duration":269,"publication_date":"2015-03-30T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-bloodborne-good","changefreq":"weekly","video":[{"title":"S1:E7 - Is Bloodborne Good?","description":"S1:E7 - Is Bloodborne Good?","player_loc":"https://roosterteeth.com/embed/is-bloodborne-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1254e468-1eff-44a3-af7a-25d0a2bf84a6/sm/video_thumbnail_12867881-1427646394.jpg","duration":97,"publication_date":"2015-03-29T09:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-boomsticks-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E131 - Top 10 BOOMsticks with Boomstick","description":"Which one is the best shotgun in video game history? BOOMstick invades the ScrewAttackHQ and inputs his best and favorite... boomsticks.\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/top-10-boomsticks-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ce351fb-5ef0-4c83-ab52-58e1ba5f8d11/sm/video_thumbnail_12867791-1427498937.jpg","duration":465,"publication_date":"2015-03-28T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-032815","changefreq":"weekly","video":[{"title":"S1:E873 - SideScrollers Extended Cut 03/28/15","description":"SXSW sure was....interesting....","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-032815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b05ac3a9-491e-4f87-8e77-744a1320ffb8/sm/video_thumbnail_12867787-1427496142.PNG","duration":740,"publication_date":"2015-03-28T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-star-fox-64","changefreq":"weekly","video":[{"title":"S1:E29 - Reasons We LOVE Star Fox 64!","description":"These are the reasons we LOVE Star Fox 64!","player_loc":"https://roosterteeth.com/embed/reasons-we-love-star-fox-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/215a6f06-6f99-4ac1-842d-0ff757c3d62f/sm/video_thumbnail_12867793-1427499379.jpg","duration":66,"publication_date":"2015-03-27T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-star-fox-64","changefreq":"weekly","video":[{"title":"S1:E36 - Reasons We HATE Star Fox 64!","description":"These are the reasons we HATE Star Fox 64!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-star-fox-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38289977-da40-47ec-b434-1633e9cd9428/sm/video_thumbnail_12867792-1427499256.png","duration":83,"publication_date":"2015-03-27T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/problems-performing-in-public-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E180 - Problems Performing in Public | SideScrollers","description":"This time on SideScrollers, the guys dig into some of the latest big movie news, discover the majesty of really hard games, and dive into the darkest Newsdesk we've probably ever had. Also, sorry about the mic issues.\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/problems-performing-in-public\r\n\r\nSend a Newsdesk story to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend an Art Show entry to Bryan\r\nBryan@ScrewAttack.com\r\n\r\n ","player_loc":"https://roosterteeth.com/embed/problems-performing-in-public-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ec67a68-276a-4525-b27d-bcb1a34f61bf/sm/video_thumbnail_12867786-1427495858.jpg","duration":3880,"publication_date":"2015-03-27T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-fossil-fighter-frontier-good","changefreq":"weekly","video":[{"title":"S1:E6 - Is Fossil Fighter: Frontier Good?","description":"Was it Good?\r\n\r\nSUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/is-fossil-fighter-frontier-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21a2ebe4-a50c-4922-bc7f-739bf2bec7a2/sm/video_thumbnail_12867474-1427307101.jpg","duration":116,"publication_date":"2015-03-25T11:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-mario-party","changefreq":"weekly","video":[{"title":"S1:E23 - Five Fun Facts about Mario Party!","description":"S1:E23 - Five Fun Facts about Mario Party!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-mario-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e20ccfe-ef75-4829-ade1-805b566c43e5/sm/video_thumbnail_12867412-1427296124.jpg","duration":245,"publication_date":"2015-03-24T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dan-vs-hercule-one-minute-melee","changefreq":"weekly","video":[{"title":"S1:E12 - Dan Vs. Hercule | One Minute Melee","description":"S1:E12 - Dan Vs. Hercule | One Minute Melee","player_loc":"https://roosterteeth.com/embed/dan-vs-hercule-one-minute-melee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c814ed7-53ed-4fcd-bdc7-052e4a9e5d8f/sm/video_thumbnail_12867330-1427149291.png","duration":232,"publication_date":"2015-03-23T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-032115","changefreq":"weekly","video":[{"title":"S1:E872 - SideScrollers Extended Cut 03/21/15","description":"What is the deal with group texts?!?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-032115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067d14aa-c080-4dcf-bb1d-e64814d03cd4/sm/video_thumbnail_12867126-1426895248.PNG","duration":1146,"publication_date":"2015-03-21T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/butt-injections-of-doom-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E179 - Butt Injections OF DOOM! | SideScrollers","description":"This time on SideScrollers, Shaun and Sean sub in to join Sam in talking about things like Hideo Kojima leaving Konami, poops taking planes out of the sky, and people still dying from injections in their butt.\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/butt-injections-of-doom-sidescrollers\r\n\r\nSend a story to Sam for Newsdesk! Sam@ScrewAttack.com\r\n\r\nSend an Art Show submission to Bryan! Bryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/butt-injections-of-doom-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef8c147b-67f3-41e2-99f8-796f4fea363c/sm/video_thumbnail_12867125-1426895042.jpg","duration":4307,"publication_date":"2015-03-21T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-the-final-fantasy-xv-demo-good","changefreq":"weekly","video":[{"title":"S1:E5 - Is The Final Fantasy XV Demo Good?","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/is-the-final-fantasy-xv-demo-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78aa5190-646f-4cb6-add0-79a27fb94a1f/sm/video_thumbnail_12867102-1426880890.jpg","duration":136,"publication_date":"2015-03-20T12:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-majoras-mask-3d-good","changefreq":"weekly","video":[{"title":"S1:E4 - Is Majora's Mask 3D Good?","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/is-majoras-mask-3d-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a071040-5435-4dbd-b10f-610223802a50/sm/video_thumbnail_12867101-1426880765.jpg","duration":95,"publication_date":"2015-03-20T12:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-monster-hunter-4-good","changefreq":"weekly","video":[{"title":"S1:E3 - Is Monster Hunter 4 Good?","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/is-monster-hunter-4-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5987d137-c9db-4d33-b05d-b3ee1185ac2f/sm/video_thumbnail_12867100-1426880643.jpg","duration":93,"publication_date":"2015-03-20T12:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-the-new-3ds-good","changefreq":"weekly","video":[{"title":"S1:E2 - Is The New 3DS Good?","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/is-the-new-3ds-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86fa36b8-65c1-4d9c-8ae7-e716b2043bea/sm/video_thumbnail_12867099-1426880530.jpg","duration":102,"publication_date":"2015-03-20T12:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-the-order-1886-good","changefreq":"weekly","video":[{"title":"S1:E1 - Is The Order: 1886 Good?","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/is-the-order-1886-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8340efb-882a-494f-854f-370fa5a93309/sm/video_thumbnail_12867098-1426880374.jpg","duration":96,"publication_date":"2015-03-20T12:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/12-reasons-evil-craig-hates-mario-party","changefreq":"weekly","video":[{"title":"S1:E35 - 12 Reasons Evil Craig HATES Mario Party","description":"These are the reasons Evil Craig HATES when Mario and friends come together for a ...\"party.\"","player_loc":"https://roosterteeth.com/embed/12-reasons-evil-craig-hates-mario-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2af7dd9c-80f7-43ac-ad8e-cfb49eb26930/sm/video_thumbnail_12867011-1426795675.png","duration":75,"publication_date":"2015-03-19T13:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-mario-party","changefreq":"weekly","video":[{"title":"S1:E30 - 18 Reasons We LOVE Mario Party!","description":"We've got 18 reasons we LOVE Mario Party! What are yours? Tell us in the comments!","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-mario-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/889170cf-7a50-4e5d-a234-f33872d33a01/sm/video_thumbnail_12867010-1426795513.jpg","duration":52,"publication_date":"2015-03-19T13:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-19","changefreq":"weekly","video":[{"title":"S2:E19 - Chuck Norris VS Segata Sanshiro","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e7334a9-abd4-43ab-b473-62d18bd256d6/sm/video_thumbnail_12866755-1426644159.jpg","duration":950,"publication_date":"2015-03-17T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-macho-man-mod-great-moments-in-gaming-history","changefreq":"weekly","video":[{"title":"S1:E4 - The Macho Man Mod | Great Moments in Gaming History","description":"What's another Great Moment in Gaming History? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-macho-man-mod-great-moments-in-gaming-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cef41d18-0b9b-4218-a709-ad81805a5339/sm/video_thumbnail_12866738-1426626557.jpg","duration":167,"publication_date":"2015-03-17T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/watch-parker-get-slapped-in-the-face-destiny-bts","changefreq":"weekly","video":[{"title":"S1:E871 - Watch Parker Get Slapped in the face! | Destiny BTS","description":"Not an Advantage Member? Sign up HERE for an Advantage 30-day trial!","player_loc":"https://roosterteeth.com/embed/watch-parker-get-slapped-in-the-face-destiny-bts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58d4e71f-c2ea-4f9e-9a61-85805792fbb2/sm/video_thumbnail_12866667-1426528530.jpg","duration":257,"publication_date":"2015-03-16T10:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/why-green-lantern-is-one-crazy-mofo-\"who-is-\"","changefreq":"weekly","video":[{"title":"S1:E3 - Why Green Lantern is One Crazy Mofo | \"Who is...\"","description":"Learn all about comic history so you don't have to read it yourself! Make sure to SUBSCRIBE(http://bit.ly/ScrewAttackSubscribe) so you don't miss the new episodes every two weeks!\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/why-green-lantern-is-one-crazy-mofo-\"who-is-\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad12178c-f1cf-4d06-a2e4-6bc44ab9257f/sm/video_thumbnail_12866658-1426523405.png","duration":342,"publication_date":"2015-03-16T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-the-order","changefreq":"weekly","video":[{"title":"S1:E31 - Reasons We LOVE The Order!","description":"Tell us all the reasons you LOVE The Order: 1886 in the comments","player_loc":"https://roosterteeth.com/embed/reasons-we-love-the-order","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/026c292f-df9f-4406-a43f-6c15339a813d/sm/video_thumbnail_12866889-1426690368.jpg","duration":65,"publication_date":"2015-03-12T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-the-order","changefreq":"weekly","video":[{"title":"S1:E34 - Reasons We HATE The Order!","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates The Order: 1886.","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-the-order","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa171c43-f5f9-4609-b8ab-ea39a9da0e81/sm/video_thumbnail_12866890-1426690407.png","duration":92,"publication_date":"2015-03-12T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-licensed-games","changefreq":"weekly","video":[{"title":"S1:E130 - Top 10 WORST Licensed Games!","description":"ScrewAttack and PeanutButterGamer each have their own opinion on whose done the most to give the phrase \"licensed game\" its terrible reputation!\r\n\r\nSee what PeanutButterGamer thinks are the Top 10 WORST Licensed Games!\r\n\r\nhttps://www.youtube.com/watch?v=D-DgiD9ZWVw&feature=youtu.be","player_loc":"https://roosterteeth.com/embed/top-10-worst-licensed-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01c4fe8d-7383-4242-a124-af504a44ab94/sm/video_thumbnail_12865777-1425687326.jpg","duration":570,"publication_date":"2015-03-07T12:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-030715","changefreq":"weekly","video":[{"title":"S1:E870 - SideScrollers Extended Cut 03/07/15","description":"Let's see if Sam lost a toe!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-030715","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04378bc9-0f93-4548-8a44-8bf71a6d3189/sm/video_thumbnail_12865795-1425710814.PNG","duration":593,"publication_date":"2015-03-07T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/want-to-build-a-snowfort-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E178 - Want to Build a Snowfort? | SideScrollers","description":"We had a bit of bad weather recently, or at least bad for north Texas. Doesn't mean we didn't make the most of it and come back with stories to tell!\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/want-to-build-a-snowfort-sidescrollers\r\n\r\nSend a Newsdesk story to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend an Art Show submission to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/want-to-build-a-snowfort-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/492a3a28-b1ed-4b56-b365-219440524198/sm/video_thumbnail_12865790-1425703500.jpg","duration":3858,"publication_date":"2015-03-07T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/boba-fett-is-an-idiot-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E6 - Boba Fett is an IDIOT!! | The Desk of DEATH BATTLE!","description":"S1:E6 - Boba Fett is an IDIOT!! | The Desk of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/boba-fett-is-an-idiot-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6051652b-e0b2-418c-ade7-d21ec29652dd/sm/video_thumbnail_12865580-1425492983.jpg","duration":322,"publication_date":"2015-03-04T10:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-luigi","changefreq":"weekly","video":[{"title":"S1:E32 - Reasons we LOVE Luigi!","description":"Tell us all the reasons you LOVE Luigi in the comments","player_loc":"https://roosterteeth.com/embed/reasons-we-love-luigi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a9bcbfb-da43-41f1-82b0-9f9d4d3fb39b/sm/video_thumbnail_12865779-1425688512.jpg","duration":50,"publication_date":"2015-03-04T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-luigi","changefreq":"weekly","video":[{"title":"S1:E33 - Reasons we HATE Luigi!","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates Luigi.","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-luigi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3cb7189-d04f-4dcf-a8a7-d0296d3cdc32/sm/video_thumbnail_12865778-1425688216.png","duration":62,"publication_date":"2015-03-04T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-metal-gear-solid","changefreq":"weekly","video":[{"title":"S1:E22 - Five Fun Facts - Metal Gear Solid","description":"S1:E22 - Five Fun Facts - Metal Gear Solid","player_loc":"https://roosterteeth.com/embed/five-fun-facts-metal-gear-solid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4051d44-3325-4d96-bae1-3efd3a38a46c/sm/video_thumbnail_12865587-1425496167.jpg","duration":321,"publication_date":"2015-03-04T04:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-capcom-franchise","changefreq":"weekly","video":[{"title":"S1:E60 - The Best EVER Capcom Franchise","description":"SUBSCRIBE: http://bit.ly/ScrewAttackSubscribe\r\n\r\nConnect with ScrewAttack Online:\r\nVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\nLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA \r\nFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-best-ever-capcom-franchise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb6e001e-c5f8-42db-a7d7-0d569415cdeb/sm/video_thumbnail_12865573-1425488669.jpg","duration":590,"publication_date":"2015-03-04T02:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sega-channel-visits-screwattack","changefreq":"weekly","video":[{"title":"S1:E869 - Sega Channel Visits ScrewAttack","description":"S1:E869 - Sega Channel Visits ScrewAttack","player_loc":"https://roosterteeth.com/embed/sega-channel-visits-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8e6d279-5481-4368-a6a1-d0cdca9be708/sm/video_thumbnail_12865576-1425491430.jpg","duration":428,"publication_date":"2015-03-03T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-least-helpful-characters-in-video-games","changefreq":"weekly","video":[{"title":"S1:E129 - Top Ten Least Helpful Characters in Video Games","description":"S1:E129 - Top Ten Least Helpful Characters in Video Games","player_loc":"https://roosterteeth.com/embed/top-ten-least-helpful-characters-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbbc012d-24f7-4e0f-8308-2907e59e198b/sm/video_thumbnail_12865581-1425493286.jpg","duration":427,"publication_date":"2015-03-02T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mewtwo-vs-freiza-one-minute-melee","changefreq":"weekly","video":[{"title":"S1:E11 - Mewtwo vs. Freiza | One Minute Melee","description":"S1:E11 - Mewtwo vs. Freiza | One Minute Melee","player_loc":"https://roosterteeth.com/embed/mewtwo-vs-freiza-one-minute-melee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/968018de-2837-4fa7-bc9f-9d3e87cf6b67/sm/video_thumbnail_12865578-1425492563.jpg","duration":154,"publication_date":"2015-03-01T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-022815","changefreq":"weekly","video":[{"title":"S1:E868 - SideScrollers Extended Cut 02/28/15","description":"Meet our new in-house animator, Torrian!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-022815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a558c4f-9571-4be9-9556-e8d6d5148511/sm/video_thumbnail_12865221-1425077305.jpg","duration":616,"publication_date":"2015-02-28T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/back-in-the-day-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E177 - Back in the Day | SideScrollers","description":"It's time to look back at our favorite arcade games, look forward to a new Ducktales, and figure out what the hell is going on with Bill Cosby.\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/back-in-the-day-sidescrollers\r\n\r\nSend Newsdesk stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend Art Show submissions to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/back-in-the-day-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95ccc854-df01-47d4-9e67-c7816b679e9b/sm/video_thumbnail_12865220-1425076994.jpg","duration":4023,"publication_date":"2015-02-28T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-18","changefreq":"weekly","video":[{"title":"S2:E18 - Boba Fett VS Samus Aran REMASTERED","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e9d7f2d-81a1-4abd-9482-de41b4457e46/sm/video_thumbnail_12865149-1425011143.jpg","duration":807,"publication_date":"2015-02-26T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/20-reasons-we-love-the-nintendo-3ds","changefreq":"weekly","video":[{"title":"S1:E33 - 20 Reasons We LOVE the Nintendo 3DS","description":"S1:E33 - 20 Reasons We LOVE the Nintendo 3DS","player_loc":"https://roosterteeth.com/embed/20-reasons-we-love-the-nintendo-3ds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2516e69f-dab4-4c96-827e-9b17bc106054/sm/video_thumbnail_12865585-1425495548.jpg","duration":70,"publication_date":"2015-02-26T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-the-nintendo-3ds-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E32 - 15 Reasons we HATE the Nintendo 3DS with Evil Craig","description":"S1:E32 - 15 Reasons we HATE the Nintendo 3DS with Evil Craig","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-the-nintendo-3ds-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/816f7c9b-b52e-42c5-bd1b-a3ceadc25fc2/sm/video_thumbnail_12865584-1425495054.png","duration":90,"publication_date":"2015-02-25T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/we-dont-have-what-it-takes-to-wield-weapons","changefreq":"weekly","video":[{"title":"S1:E867 - We DON'T have what it takes to wield weapons.","description":"Can't see this video? No biggie - just use coupon code \"TRIAL\" when signing up for Advantage to see this video for FREE!","player_loc":"https://roosterteeth.com/embed/we-dont-have-what-it-takes-to-wield-weapons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53f8dce9-8d4b-4375-b5d0-96f3c1309458/sm/video_thumbnail_12864939-1424806556.jpg","duration":92,"publication_date":"2015-02-24T11:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/time-is-money-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E176 - Time is Money | SideScrollers","description":"The HG has been buzzing good ways and bad, exciting and ill things going on in our walls! Hear 'em all on SideScrollers!\r\n\r\n\"Don't forget to save 10% off your next web page by using Squarespace. Click this link and build something awesome! http://www.squarespace.com/screwattack\"\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/time-is-money-sidescrollers","player_loc":"https://roosterteeth.com/embed/time-is-money-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dd11192-0dfd-4b91-8a10-178a252f7d62/sm/video_thumbnail_12864555-1424448410.jpg","duration":4123,"publication_date":"2015-02-21T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cancer-killed-captain-americas-shield-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E5 - Cancer Killed Captain America's Shield?! | The Desk of DEATH BATTLE!","description":"S1:E5 - Cancer Killed Captain America's Shield?! | The Desk of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/cancer-killed-captain-americas-shield-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/affc2ea6-961b-478d-9c76-5d5bcbcf4533/sm/video_thumbnail_12865582-1425493847.jpg","duration":281,"publication_date":"2015-02-20T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/get-to-know-dusty-one-of-our-new-interns","changefreq":"weekly","video":[{"title":"S1:E866 - Get to know Dusty - one of our new interns!","description":"S1:E866 - Get to know Dusty - one of our new interns!","player_loc":"https://roosterteeth.com/embed/get-to-know-dusty-one-of-our-new-interns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84f5ed85-0d7c-40f6-850f-bf616d8f80d1/sm/video_thumbnail_12864587-1424476842.JPG","duration":719,"publication_date":"2015-02-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-021415","changefreq":"weekly","video":[{"title":"S1:E865 - SideScrollers Extended Cut 02/14/15","description":"Sean and Nick join Sam to talk....SHOES?!?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-021415","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76ec61f5-3349-44de-8efb-ab7a63808c8c/sm/video_thumbnail_12864019-1423936735.png","duration":713,"publication_date":"2015-02-14T09:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/birthday-time-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E175 - Birthday Time! | SideScrollers","description":"ScrewAttack turns 9 this week! We're in third grade and looking back at some of our fondest memories all while finding out what country is putting a stripper pole in every home and one way to really burn a cheating boyfriend.\r\n\r\nDon't forget to save 10% off your next web page by using Squarespace. Click this link and build something awesome! http://www.squarespace.com/screwattack\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/birthday-time-sidescrollers\r\n\r\nHave a Newsdesk suggestion? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave an Art Show submission? Send it to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/birthday-time-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/291ed004-57db-46c2-8124-b4f20a6c66db/sm/video_thumbnail_12863947-1423844552.jpg","duration":4483,"publication_date":"2015-02-14T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-hate-sonic-the-hedgehog-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E31 - 19 Reasons We HATE Sonic the Hedgehog with Evil Craig","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates Sonic.","player_loc":"https://roosterteeth.com/embed/19-reasons-we-hate-sonic-the-hedgehog-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69c4cdd1-1dc0-43c5-bc02-d0fb21cdd613/sm/video_thumbnail_12863861-1423756436.jpg","duration":103,"publication_date":"2015-02-12T07:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-love-sonic-the-hedgehog","changefreq":"weekly","video":[{"title":"S1:E34 - 19 Reasons We LOVE Sonic the Hedgehog","description":"Tell us all the reasons you LOVE Sonic in the comments.","player_loc":"https://roosterteeth.com/embed/19-reasons-we-love-sonic-the-hedgehog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0b32c4e-d714-4bb0-8a85-2cd19c4b0c58/sm/video_thumbnail_12863860-1423756293.jpg","duration":63,"publication_date":"2015-02-12T07:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-17","changefreq":"weekly","video":[{"title":"S2:E17 - Ragna VS Sol Badguy","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14852c64-488c-4d13-a50c-fae5a9183fad/sm/video_thumbnail_12888137-1450299452.PNG","duration":914,"publication_date":"2015-02-10T17:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-star-wars-game-ever","changefreq":"weekly","video":[{"title":"S1:E59 - The Best Star Wars Game EVER!","description":"Thanks for being an Advantage Subscriber! This video will release for everyone this Sunday!\r\n\r\nCan't see this video? Well what the hell are you waiting for? Check out a FREE Advantage Trial HERE!","player_loc":"https://roosterteeth.com/embed/the-best-star-wars-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40062e87-cc16-455d-a7a5-32c81b940313/sm/video_thumbnail_12863641-1423527935.jpg","duration":499,"publication_date":"2015-02-09T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-more-fun-facts-about-super-smash-bros","changefreq":"weekly","video":[{"title":"S1:E21 - Five MORE Fun Facts about Super Smash Bros!","description":"S1:E21 - Five MORE Fun Facts about Super Smash Bros!","player_loc":"https://roosterteeth.com/embed/five-more-fun-facts-about-super-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2642dc2c-9c83-4e87-b23c-c992a57666f7/sm/video_thumbnail_12863631-1423520388.jpg","duration":232,"publication_date":"2015-02-09T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-020715","changefreq":"weekly","video":[{"title":"S1:E864 - SideScrollers Extended Cut 02/07/15","description":"We're reminiscing about food challenges and Unaware Steve!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-020715","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5c9838e-361e-409b-80b6-dc643f3fd42c/sm/video_thumbnail_12863267-1423266448.PNG","duration":963,"publication_date":"2015-02-07T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E174 - Behind the Scenes! | SideScrollers","description":"Ever wonder what goes into the making of our videos? Wanna know how Apex went? Want to hear about the latest in child punishing techniques? Welcome to SideScrollers!\r\n\r\nDon't forget to save 10% off your next web page by using Squarespace. Click this link and build something awesome! http://www.squarespace.com/screwattack\r\n\r\nHave a Newsdesk story? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave something for The Art Show? Send it to Bryan!\r\nBryan@ScrewAttack.com\r\n\r\nTake SideScrollers on the go!\r\n\r\nhttps://soundcloud.com/screwattack/behind-the-scenes-sidescrollers","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46284935-4238-4574-8a89-b01296434c05/sm/video_thumbnail_12863266-1423265887.jpg","duration":4496,"publication_date":"2015-02-07T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-16","changefreq":"weekly","video":[{"title":"S2:E16 - Gaara VS Toph","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc7f9a88-efc2-4a31-95ac-bf8e5f0a2832/sm/video_thumbnail_12863276-1423272668.jpg","duration":1124,"publication_date":"2015-02-06T17:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hot-pepper-gaming-ben-singer-reviews-sonic-boom","changefreq":"weekly","video":[{"title":"S1:E863 - Hot Pepper Gaming | Ben Singer Reviews Sonic Boom","description":"S1:E863 - Hot Pepper Gaming | Ben Singer Reviews Sonic Boom","player_loc":"https://roosterteeth.com/embed/hot-pepper-gaming-ben-singer-reviews-sonic-boom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81c74f0e-e5f3-4673-9d65-5eed9f087a9e/sm/video_thumbnail_12862143-1422979060.png","duration":243,"publication_date":"2015-02-03T07:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/starfox-has-emotional-issues-the-desk-of-death-battle","changefreq":"weekly","video":[{"title":"S1:E4 - StarFox has Emotional Issues | The Desk of DEATH BATTLE!","description":"S1:E4 - StarFox has Emotional Issues | The Desk of DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/starfox-has-emotional-issues-the-desk-of-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bad613e-c7a0-40ab-ab9f-b0a83a2fd55e/sm/video_thumbnail_12863007-1423070627.jpg","duration":342,"publication_date":"2015-02-01T09:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-13115","changefreq":"weekly","video":[{"title":"S1:E862 - SideScrollers Extended 1/31/15","description":"Story time with Sam. What a story he has to tell!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-13115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99fa94aa-edc9-4d6c-8383-f4504914b2b9/sm/video_thumbnail_12861631-1422641879.PNG","duration":500,"publication_date":"2015-01-31T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-pax-south-magfest","changefreq":"weekly","video":[{"title":"S1:E173 - SideScrollers - PAX South & MAGfest","description":"Don't forget to save 10% off your next web page by using Squarespace. Click this link and build something awesome! http://www.squarespace.com/screwattack\r\n\r\nWe loved PAX South and MAGfest! We talk about our trips to both conventions!\r\n\r\nHave a Newsdesk story? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave an Art Show submission? Send it to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-pax-south-magfest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8e33357-935c-413b-ae04-269bcbc7d078/sm/video_thumbnail_12861632-1422641894.jpg","duration":3593,"publication_date":"2015-01-31T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-gba-game-ever","changefreq":"weekly","video":[{"title":"S1:E58 - The Best GBA Game EVER!","description":"Did we hit your Best EVER? Make sure and leave your favorite games in the comments below!","player_loc":"https://roosterteeth.com/embed/the-best-gba-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3795c03-3b34-44d7-b5a0-8445f3311019/sm/video_thumbnail_12861761-1423069184.jpg","duration":503,"publication_date":"2015-01-31T09:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-rocket-raccoon-joined-guardians-of-the-galaxy","changefreq":"weekly","video":[{"title":"S1:E2 - How Rocket Raccoon joined Guardians of the Galaxy","description":"S1:E2 - How Rocket Raccoon joined Guardians of the Galaxy","player_loc":"https://roosterteeth.com/embed/how-rocket-raccoon-joined-guardians-of-the-galaxy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44e187cc-c69c-4bd8-ba7f-fcecc5ed1432/sm/video_thumbnail_12861633-1422642019.jpg","duration":223,"publication_date":"2015-01-30T10:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heres-what-you-missed-from-our-pax-south-arcade","changefreq":"weekly","video":[{"title":"S1:E861 - Here's what you missed from our PAX South Arcade!","description":"S1:E861 - Here's what you missed from our PAX South Arcade!","player_loc":"https://roosterteeth.com/embed/heres-what-you-missed-from-our-pax-south-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adbc63c1-e8f9-4a51-a262-e55a10233f06/sm/video_thumbnail_12861534-1422555605.jpg","duration":66,"publication_date":"2015-01-29T10:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-link","changefreq":"weekly","video":[{"title":"S1:E35 - Reasons We Love Link!","description":"Tell us all the reasons you LOVE Link from The Legend of Zelda in the comments.","player_loc":"https://roosterteeth.com/embed/reasons-we-love-link","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91abd861-a64a-437a-9e9e-dc25100f9801/sm/video_thumbnail_12861526-1422547370.jpg","duration":57,"publication_date":"2015-01-29T08:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-hate-link-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E30 - Reasons We HATE Link! With Evil Craig!","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates Link from The Legend of Zelda!","player_loc":"https://roosterteeth.com/embed/reasons-we-hate-link-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f93e1862-d474-4899-ae16-a02f5f93e3f5/sm/video_thumbnail_12861523-1422547153.jpg","duration":83,"publication_date":"2015-01-29T07:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-2d-mario-levels","changefreq":"weekly","video":[{"title":"S1:E128 - Top 10 2D Mario Levels","description":"What's YOUR Top 10 2D Mario Levels? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/top-10-2d-mario-levels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/111b60f0-0199-4603-ad60-4c8f5ef18887/sm/video_thumbnail_12860850-1421983813.jpg","duration":421,"publication_date":"2015-01-22T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-the-xbox-one","changefreq":"weekly","video":[{"title":"S1:E36 - 16 Reasons We LOVE the Xbox One","description":"Tell us all the reasons you LOVE the Xbox One in the comments","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-the-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b2171af-3aeb-4445-85da-f56d6f94b2cf/sm/video_thumbnail_12860847-1421982385.jpg","duration":56,"publication_date":"2015-01-22T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-xbox-one-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E29 - 15 Reasons We HATE Xbox One with Evil Craig","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates the Xbox One.","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-xbox-one-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3410049d-197e-42c0-99d9-aa95e3166c02/sm/video_thumbnail_12860845-1421982196.jpg","duration":95,"publication_date":"2015-01-22T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/thank-you-so-much","changefreq":"weekly","video":[{"title":"S1:E860 - Thank You So Much","description":"We have over a million subscribers on YouTube and they sent us something really cool","player_loc":"https://roosterteeth.com/embed/thank-you-so-much","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31ba82d2-2612-44ba-b8de-5b56e96b527e/sm/video_thumbnail_12860687-1421822214.jpg","duration":244,"publication_date":"2015-01-20T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-f-zero","changefreq":"weekly","video":[{"title":"S1:E20 - Five Fun Facts - F-Zero","description":"Think you know everything about this classic Nintendo franchise? Maybe not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-f-zero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc41a2c8-0f94-494a-94d7-ba531f1bf65f/sm/video_thumbnail_12860686-1421821997.jpg","duration":205,"publication_date":"2015-01-20T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-genesis-classic-lootcrate-retro-game-challenge-game-1","changefreq":"weekly","video":[{"title":"S1:E859 - A Genesis Classic | Lootcrate Retro Game Challenge Game #1","description":"Thanks to Lootcrate for making this happen! Show your appreciation by checking out http://www.Lootcrate.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/a-genesis-classic-lootcrate-retro-game-challenge-game-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e01bd73-b5c8-4338-9e22-68ab2bfa38dd/sm/video_thumbnail_12860684-1421821884.jpg","duration":709,"publication_date":"2015-01-20T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/big-money-big-prizes-big-death-lootcrate-retro-game-challenge-game-2","changefreq":"weekly","video":[{"title":"S1:E858 - Big Money! Big Prizes! Big DEATH! | Lootcrate Retro Game Challenge Game #2","description":"Thanks to Lootcrate for making this happen! Show your appreciation by checking out http://www.Lootcrate.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/big-money-big-prizes-big-death-lootcrate-retro-game-challenge-game-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/838c1b6f-5cc1-4d13-bf5d-f57d9086a83c/sm/video_thumbnail_12860682-1421821760.jpg","duration":807,"publication_date":"2015-01-20T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/its-all-about-speed-lootcrate-retro-game-challenge-game-3","changefreq":"weekly","video":[{"title":"S1:E857 - It's all about SPEED! | Lootcrate Retro Game Challenge Game #3 ","description":"Thanks to Lootcrate for making this happen! Show your appreciation by checking out http://www.Lootcrate.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/its-all-about-speed-lootcrate-retro-game-challenge-game-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe419c99-3cbf-4a52-8add-5b76faf469ec/sm/video_thumbnail_12860681-1421821684.jpg","duration":581,"publication_date":"2015-01-20T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/leeeeeeeeroy-jenkins","changefreq":"weekly","video":[{"title":"S1:E3 - Leeeeeeeeroy Jenkins!","description":"One of the most famous memes in video game history was all about chicken.","player_loc":"https://roosterteeth.com/embed/leeeeeeeeroy-jenkins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d0b194d-3574-4fc9-be88-fcb656c1f3df/sm/video_thumbnail_12860680-1421821501.jpg","duration":240,"publication_date":"2015-01-20T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/robocop-is-actually-jesus","changefreq":"weekly","video":[{"title":"S1:E3 - RoboCop is actually JESUS??","description":"Learn AMAZING useless knowledge about pop culture icons you never thought you needed to know.","player_loc":"https://roosterteeth.com/embed/robocop-is-actually-jesus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1071a900-9fcc-473f-99c1-8e64608a0bad/sm/video_thumbnail_12860679-1421821378.jpg","duration":256,"publication_date":"2015-01-20T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-011715","changefreq":"weekly","video":[{"title":"S1:E856 - SideScrollers Extended Cut 01/17/15","description":"Sean has a problem. He needs our help!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-011715","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2033e096-1cba-4aa1-a11e-a40a1fad42c9/sm/video_thumbnail_12860371-1421514568.PNG","duration":552,"publication_date":"2015-01-17T10:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-spy-hard","changefreq":"weekly","video":[{"title":"S1:E172 - SideScrollers - Spy Hard!","description":"Don't forget to save 10% off your next web page by using Squarespace. Click this link and build something awesome! http://www.squarespace.com/screwattack\r\n\r\nWe love spy movies! We're gonna talk about spy movies!\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/spy-hard-sidescrollers\r\n\r\nHave a Newsdesk story? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave an Art Show submission? Send it to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-spy-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4daf1156-23b4-4687-be75-656df1775150/sm/video_thumbnail_12860261-1421424584.jpg","duration":4520,"publication_date":"2015-01-17T10:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-dlc-ever-spoilers","changefreq":"weekly","video":[{"title":"S1:E57 - The Worst DLC EVER! **Spoilers**","description":"What YOUR worst ever DLC? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-worst-dlc-ever-spoilers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1668f86a-af94-4cde-a442-c989af0683b8/sm/video_thumbnail_12860367-1421509346.jpg","duration":493,"publication_date":"2015-01-17T07:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-73-ahi7hg","changefreq":"weekly","video":[{"title":"2017:E73 - Geoff Can’t Say No To Tom Clancy - #73","description":"The AH Crew and special guests Tim Gettys and Nick Scarpino sit down to talk about live shows, concerts, polarization, and more on this week's Off Topic!\n\nThis episode originally aired April 21, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and The Black Tux (http://bit.ly/2nw6Gt8)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-73-ahi7hg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b830c282-5463-46e2-afd8-0794436a36a3/sm/2369885-1492876874860-OFF73_-_THUMB.jpg","duration":5675,"publication_date":"2017-04-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-34","changefreq":"weekly","video":[{"title":"2017:E34 - Episode #34: After Dark","description":"A dangerous convict pulls a Shawshank and escapes imprisonment to wander the barren desert. Meanwhile, a group of scumbag teens take a trip to the same desert to throw beer and tell racist jokes, because that's what teens do. Join the AH crew as they watch After Dark in this week's Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50b7ae2c-7545-4809-8b90-13e4d721b604/sm/690915-1492787745514-TM_-_After_Dark_-_THUMB.jpg","duration":5620,"publication_date":"2017-04-21T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-vr-the-champions-rick-and-morty-virtual-rick-ality-part-1","changefreq":"weekly","video":[{"title":"2017:E10 - Rick and Morty: Virtual Rick-Ality Part 1","description":"Alright Morty. Here's what we're gonna do, Morty. First, I'm going to duplicate every last Morty molecule in your body and make a Morty, clone, Morty. Then I'm going to teleport its conciousness half way across the galaxy. Now you see, Morty, there's going to be a stupid, empty clone of you sitting right here. Now I'm going to rent out the use of this vacant Morty body to these morons called \"Achievement Hunter.\" They're really into us - you and me, Morty. They like us so much, they, they want to be us, Morty. In their reality, Morty, they think they're just playing some stupid virtual reality game. \"Rick and Morty: Virtual Rick-Ality\" they call it. But in our real, not virtual-reality reality, Morty, they're actually really here in the garage with us. You get all that, Morty? No, of course you didn't. You're about as dumb as they come, Morty. Just - just watch the video, Morty. Hopefully it'll all make sense.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-vr-the-champions-rick-and-morty-virtual-rick-ality-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b78b6b6d-cab0-4840-b569-c6d5d1580d2a/sm/834020-1492722750471-VR_RickMortyPt1.png","duration":2061,"publication_date":"2017-04-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-operation","changefreq":"weekly","video":[{"title":"2017:E18 - GTA V - Operation","description":"After an emergency phone call, the AH surgeon squad rallies to perform their most delicate operation: a giant man needs open heart surgery, a lobotomy, and a vasectomy via a team of helicopters, stat! Be careful though, this man is made out of propane tanks. Good luck!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-operation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac458057-c9e8-4e35-a48d-e800609388e2/sm/2013912-1492637860627-THUMB_TTD_Operation.jpg","duration":804,"publication_date":"2017-04-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-256-mo-chievements-double-dragon","changefreq":"weekly","video":[{"title":"2017:E126 - Minecraft – Episode 256 – Mo'Chievements: Double Dragon","description":"Achievement Hunter's quest for the elusive Elytra continues. Only one dragon stands in the way of getting even more achievements. Or is it two dragons? Didn't we kill a dragon last week? So why we double dragoning this week?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-256-mo-chievements-double-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/209a8a98-d63a-4c19-9db4-8adcaf69b47c/sm/1104396-1492647540266-mc_base.jpg","duration":2826,"publication_date":"2017-04-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-6-winner-winner-chicken-dinner","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 6: Winner, Winner, Chicken Dinner!","description":"With midterms over and a BIG advantage in the finale at stake today, our teams set out for revenge with the \"ultimate\" Schooled classic...\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished. Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n\n\n\n\nConnect with AT&T:\n\n\n\n\n\n\n\n\n\nAT&T Hello Lab Twitter: http://www.twitter.com/atthellolabAT&T Hello Lab Instagram: http://www.instagram.com/atthellolabAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam:Check out Brawlhalla on Steam: http://store.steampowered.com/app/291550/Check out Masky on Steam: http://store.steampowered.com/app/291550/Check out Speedrunners on Steam: http://store.steampowered.com/app/207140/Check out TImberman on Steam: http://store.steampowered.com/app/398710/Check out Tricky Tower on Steam: http://store.steampowered.com/app/437920/Check out Move or Die on Steam: http://store.steampowered.com/app/323850/Check out Ultimate Chicken Horse on Steam: http://store.steampowered.com/app/386940/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-6-winner-winner-chicken-dinner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c9f3277-18b2-44f5-a45d-806a9456ba85/sm/2013912-1492622985365-Schooled206Thumbnail.png","duration":1289,"publication_date":"2017-04-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-28-post-show-92-i74h","changefreq":"weekly","video":[{"title":"2017:E8 - #28 Post Show","description":"Ryan takes a lunch break while the gang catches up with an old friend. Plus, fan art!","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-28-post-show-92-i74h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93fbe5bf-38d8-42a1-adf4-4150ed648b5c/sm/2013912-1492543869017-HH28_-_PS_-_THUMB.jpg","duration":344,"publication_date":"2017-04-19T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-33","changefreq":"weekly","video":[{"title":"2017:E125 - Let's Watch - Mr. Shifty - Part 1","description":"Channel your inner Larry Matovina and grab the nearest trident you can find, because the the Achievement Hunter gang is playing Mr. Shifty.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e951fffa-80f6-4c60-9a64-ad34376e14c4/sm/2013912-1492614932416-LW_MrShiftyPt1.png","duration":1987,"publication_date":"2017-04-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-co-op","changefreq":"weekly","video":[{"title":"2017:E124 - VR Surgeon Simulator ER: Experience Reality - Co-op","description":"Paging Dr. Jones and spooky invisible Dr. Free to the OR. Paging Dr. Jones and spooky invisible Dr. Free to the OR. Using VReal, Gavin has snuck into Michael's game of VR Surgeon Simulator. Instead of taking turns, now they can VR co-op their way through an alien surgery and brain transplant!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-co-op","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a90f5e6f-c746-4973-8f64-1e9394563769/sm/2013912-1492531151998-LP_SurgeonSimCoop.png","duration":2145,"publication_date":"2017-04-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-5-shenanigans","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 5: Shenanigans! ","description":"The kids are fed up with Geoff, so it's time to break the rules and let the shenanigans begin!\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished.  Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T: \n\n\n\n\n\n\n\nAT&T Hello Lab Twitter: http://www.twitter.com/atthellolab \n\n\n\n\n\n\n\nAT&T Hello Lab Instagram: http://www.instagram.com/atthellolab \n\n\n\n\n\n\n\nAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam: \n\n\n\n\n\n\n\nCheck out Brawlhalla on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\n\n\nCheck out Masky on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\n\n\nCheck out Speedrunners on Steam: \nhttp://store.steampowered.com/app/207140/ \n\n\n\n\n\n\n\nCheck out TImberman on Steam: \nhttp://store.steampowered.com/app/398710/ \n\n\n\n\n\n\n\nCheck out Tricky Tower on Steam: \nhttp://store.steampowered.com/app/437920/ \n\n\n\n\n\n\n\nCheck out Move or Die on Steam: \nhttp://store.steampowered.com/app/323850/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-5-shenanigans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9b2809f-e5f6-4589-a4d4-d6be3b168567/sm/2013912-1492538843072-Schooled205Thumbnail.png","duration":361,"publication_date":"2017-04-19T11:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-4-i-guess-i-m-ready","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4: I Guess I'm Ready?","description":"The games have just begun, and everyone is ready to compete! Well, almost everyone...\n\nBe sure to check out the new game Cloudberry Kingdom from this episode here: http://store.steampowered.com/agecheck/app/210870/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished.  Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T: \n\n\n\n\n\n\n\nAT&T Hello Lab Twitter: http://www.twitter.com/atthellolab \n\n\n\n\n\n\n\nAT&T Hello Lab Instagram: http://www.instagram.com/atthellolab \n\n\n\n\n\n\n\nAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam: \n\n\n\n\n\n\n\nCheck out Brawlhalla on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\n\n\nCheck out Masky on Steam: \nhttp://store.steampowered.com/app/291550/\n\n\n\n\n\n\n\nCheck out Speedrunners on Steam: \nhttp://store.steampowered.com/app/207140/ \n\n\n\n\n\n\n\nCheck out TImberman on Steam: \nhttp://store.steampowered.com/app/398710/ \n\n\n\n\n\n\n\nCheck out Tricky Tower on Steam: \nhttp://store.steampowered.com/app/437920/ \n\n\n\n\n\n\n\nCheck out Move or Die on Steam: \nhttp://store.steampowered.com/app/323850/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-4-i-guess-i-m-ready","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93e1fc53-27bd-42b5-af17-880bbaab8a2b/sm/2013912-1492538680178-Schooled204Thumbnail.png","duration":1584,"publication_date":"2017-04-19T11:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-3-know-thy-enemy","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3: Know Thy Enemy","description":"Team Ryan, Team Jeremy and Team Gavin train in style and prepare for punishment! Things might just break in the process...\n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished.  Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T: \n\n\n\n\n\nAT&T Hello Lab Twitter: http://www.twitter.com/atthellolab \n\n\n\n\n\nAT&T Hello Lab Instagram: http://www.instagram.com/atthellolab \n\n\n\n\n\nAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam: \n\n\n\n\n\nCheck out Brawlhalla on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\nCheck out Masky on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\nCheck out Speedrunners on Steam: \nhttp://store.steampowered.com/app/207140/ \n\n\n\n\n\nCheck out TImberman on Steam: \nhttp://store.steampowered.com/app/398710/ \n\n\n\n\n\nCheck out Tricky Tower on Steam: \nhttp://store.steampowered.com/app/437920/ \n\n\n\n\n\nCheck out Move or Die on Steam: \nhttp://store.steampowered.com/app/323850/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-3-know-thy-enemy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92881cde-caee-4323-be01-9c09adef26f8/sm/2013912-1492538454446-Ep203Thumbnail.png","duration":555,"publication_date":"2017-04-19T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-2-swiss-forking-cheese","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2: Swiss Forking Cheese!","description":"Achievement Hunters and Rooster Teeth, assemble! Team Jack and Team Michael use unconventional methods to prep for their upcoming face-off. \n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished.  Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\nConnect with AT&T: \n\n\n\n\n\nAT&T Hello Lab Twitter: http://www.twitter.com/atthellolab \n\n\n\n\n\nAT&T Hello Lab Instagram: http://www.instagram.com/atthellolab \n\n\n\n\n\nAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam: \n\n\n\n\n\nCheck out Brawlhalla on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\nCheck out Masky on Steam: \nhttp://store.steampowered.com/app/291550/ \n\n\n\n\n\nCheck out Speedrunners on Steam: \nhttp://store.steampowered.com/app/207140/ \n\n\n\n\n\nCheck out TImberman on Steam: \nhttp://store.steampowered.com/app/398710/ \n\n\n\n\n\nCheck out Tricky Tower on Steam: \nhttp://store.steampowered.com/app/437920/ \n\n\n\n\n\nCheck out Move or Die on Steam: \nhttp://store.steampowered.com/app/323850/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-2-swiss-forking-cheese","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68747b33-1959-4a3c-9f25-d5cd2ee4a867/sm/2013912-1492538274676-Schooled202Thumbnail.jpg","duration":459,"publication_date":"2017-04-19T11:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-2-episode-1-we-punish-defeat","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 1: We Punish Defeat","description":"School is back in session and this time it's not Geoff's skin on the line. The Rooster Teeth Kids face off in a video game challenge to get the first round pick in the mentor draft for the season. \n\nThis year the kids pair up with Achievement Hunters as they battle it out and the loser gets punished.  Thanks to AT&T Hello Lab for sponsoring this video. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nConnect with AT&T:AT&T Hello Lab Twitter: http://www.twitter.com/atthellolabAT&T Hello Lab Instagram: http://www.instagram.com/atthellolabAT&T Hello Lab Tumblr: http://www.att-hellolab.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDownload Games on Steam:Check out Brawlhalla on Steam: http://store.steampowered.com/app/291550/Check out Masky on Steam: http://store.steampowered.com/app/291550/Check out Speedrunners on Steam: http://store.steampowered.com/app/207140/Check out TImberman on Steam: http://store.steampowered.com/app/398710/Check out Tricky Tower on Steam: http://store.steampowered.com/app/437920/Check out Move or Die on Steam: http://store.steampowered.com/app/323850/","player_loc":"https://roosterteeth.com/embed/schooled-season-2-episode-1-we-punish-defeat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/765db1f7-0cbf-49af-a4d0-1a4f23a3ac37/sm/2013912-1492538086350-ATTHL_Schooled_YT_Thumbnail_1280x720_v4-1.png","duration":891,"publication_date":"2017-04-19T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-28-385-nso","changefreq":"weekly","video":[{"title":"2017:E28 - Anamnesis Upheaval - #28","description":"What do we really know about Bo Jingles? Where can Akshay get a drink in this town? Who is the mystery man with the cigar?\n\n\n\n\n\n\n\nSponsored by Blue Apron (http://cook.ba/2jeJr22) and Skullsplitter (http://bit.ly/2lHYyoM)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-28-385-nso","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3a2eda2-0f42-44e8-89c8-28d1dadc2b5c/sm/2013912-1492529572912-HH28_-_THUMB.jpg","duration":10483,"publication_date":"2017-04-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-player-unknown-s-battlegrounds-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E123 - PlayerUnknown's Battlegrounds: AH Live Stream ","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPTIt's a battle royale! From the creator of the King of the Hill mode in H1Z1 comes the new Hunger Games-esque free-for-all survival game, now in Early Access. Will Achievement Hunter's team of four make it to the very end?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-player-unknown-s-battlegrounds-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5882d096-2ed8-48ec-b04c-9449a2f90319/sm/2013912-1492456040784-battlegrounds_thumb.jpg","duration":3811,"publication_date":"2017-04-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-glitter-bomber-ahwu-for-april-17-th-2017-365","changefreq":"weekly","video":[{"title":"2017:E365 - The Glitter Bomber - AHWU for April 17th, 2017 (#365) ","description":"Thanks to Graphic Stock for sponsoring this week's AHWU. You can get a 7-day free trial if you visit the following link: http://www.graphicstock.com/hunterWowwe! We sure got a lot of teeny little posters this week. Ohp! That wasn't a poster at all! Now I'm covered in glitter. Sorry, hunting knife. Sorry cross bow. You guys are all glittery now too.Ooh look! Another tiny poster! Whoops! Sorry baby hat. Sorry, weapon rack.Ooohee! It's another mini poster tube! This one definitely has a poster in it. I can feel it.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-glitter-bomber-ahwu-for-april-17-th-2017-365","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e701a99-afea-4b77-8e31-ea9e2cd5770b/sm/2013912-1492465252132-ahwu_base.jpg","duration":978,"publication_date":"2017-04-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-overwatch-mosquito-fight","changefreq":"weekly","video":[{"title":"2017:E17 - Overwatch - Mosquito Fight","description":"Oh no! In this spiffy little Things to Do custom game, the Overwatch world has been overrun with pesky little Pharah mosquitoes. Now it's up to Reinhardt the exterminator to swat these bugs out of the sky. It certainly won't be easy, since this blood-sucker swarm is very capable of punching the poor old German to death. ","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-overwatch-mosquito-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/326a2bd0-a2eb-4a2b-bfdd-eed1c2730d03/sm/1104396-1492210289085-FlySwatterThumb.png","duration":1300,"publication_date":"2017-04-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-looka-laylee-arcade","changefreq":"weekly","video":[{"title":"2017:E120 - Yooka-Laylee Arcade","description":"The gang is back playing Yooka-Laylee, but this time they're against each other in an epic quest for quills. Because what's better than one lizard and bat? Try four lizards and bats smacking each other around.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-looka-laylee-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53c8056a-a88e-4649-9a47-9c56a38e33a2/sm/2013912-1492117688700-LP_YookaLayleeArcade.png","duration":1654,"publication_date":"2017-04-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-72-aifh3fgj","changefreq":"weekly","video":[{"title":"2017:E14 - AH Stock - Last Call #72","description":"The AH Crew and Lawrence Sonntag stand up to talk about pissing off Ryan, “relying” on Geoff, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-72-aifh3fgj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e617ed73-dcc1-48e9-b710-6870505486f3/sm/2013912-1492206975721-OFF72_-_PS_-_THUMB.jpg","duration":1166,"publication_date":"2017-04-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-thirteenth-day","changefreq":"weekly","video":[{"title":"2017:E119 - 7 Days to Die - Thirteenth Day","description":"Another meeting of the Nug Club has been called the order, which means it's time to survive another day of zombs! In this episode: Geoff's back, Michael's giant calves gets cold, Ryan's a bad influence, Jeremy's dangerously close to poopin' his pants, and Jack's being a little bit shifty. It's time for some 7 Days to Die!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-thirteenth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98ab818a-c1ae-45a0-80d5-6f3a540ee519/sm/2013912-1492117486493-LP_7DTD_Day13.png","duration":2329,"publication_date":"2017-04-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-the-prison-break-setup-criminal-masterminds-part-2","changefreq":"weekly","video":[{"title":"2017:E121 - GTA V - The Prison Break: Setup - Criminal Masterminds (Part 2)","description":"They survived the Fleeca Job, so it's time for Achievement Hunter to strap on some helmets and gear up for the next round of Criminal Masterminds. Ryan, Michael, Jeremy, and Gavin must steal a plane, a police bus, a muscle car, and a police bus schedule as they prepare to break Maxim Rashkovsky out of prison.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-the-prison-break-setup-criminal-masterminds-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/582ec937-33ce-4ff2-8465-fc4601350962/sm/2013912-1492118972391-CriminalMasterminds2_B.jpg","duration":2313,"publication_date":"2017-04-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-72-aniyfeb","changefreq":"weekly","video":[{"title":"2017:E72 - Dreams Aren’t Free - #72","description":"The AH Crew and Lawrence Sonntag sit down to talk about shooting Lazer Team 2, gaming frustrations, bad decisions, and more on this week's Off Topic!\n\nThis episode originally aired April 14, 2017 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and MVMT Watches (http://bit.ly/2iLo5gb)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-72-aniyfeb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/883a44f4-f84c-4284-8b1f-8599ee96c895/sm/2013912-1492206962469-OFF72_-_THUMB.jpg","duration":8800,"publication_date":"2017-04-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-33","changefreq":"weekly","video":[{"title":"2017:E33 - Episode #33: Redneck Zombies","description":"Yee haw! It's the season premiere of Theater Mode y'all! Grab yer jar of 'shine and sit back with the AH fellers as they drink their way through the Troma \"classic\" Redneck Zombies!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7a42eb2-2140-485f-bf32-f48b03b0c506/sm/2013912-1492183553083-TM_-_Redneck_Zombies_-_THUMB.jpg","duration":5584,"publication_date":"2017-04-14T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-arizona-sunshine-part-2","changefreq":"weekly","video":[{"title":"2017:E9 - Arizona Sunshine Part 2","description":"Look. In Arizona, there's a four-step process to dealing with zombies.\n\nStep one: put on your virtual reality virtual VR goggles you VR champion, you!Step two: shoot their legs off.Step three: pop them right in the face.Step four: glitch-walk your way over to the corpse and try your best to perform an A+ tea-bag.\n\n\n\nSteps one through three should be pretty easy. With that last one, just try your best. I understand you don't have full control of your body, but this is a very important Arizona custom! If you want to fully soak in this Arizona Sunshine, it's important you glitchbag those zombies!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-arizona-sunshine-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ac8b68b-4353-4bc6-82bf-1f830941aee1/sm/2013912-1492105588202-VR_ArizonaSunshinePt2_1.png","duration":1349,"publication_date":"2017-04-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-255-mo-chievements-i-m-only-human","changefreq":"weekly","video":[{"title":"2017:E118 - Minecraft – Episode 255 – Mo'Chievements: I'm Only Human","description":"With Mo'Chievements come Mo' Problems. Can the Achievement Hunter gang handle mo' problems? Maybe. They're only human, after all. Don't put the blame on them. Today, they're ready to fight the Ender Dragon and finally get an achievement for it. Seriously! They've sliced his ween off four, five times now? Never got an achievement for it.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-255-mo-chievements-i-m-only-human","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4436946-4b5a-4ac7-861f-49ae4ba83d83/sm/2013912-1492102385914-mc2.jpg","duration":3563,"publication_date":"2017-04-13T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-32","changefreq":"weekly","video":[{"title":"2017:E117 - Let's Watch - Zelda: Breath of the Wild - Part 5","description":"Ryan explores Rito Village, solves a Shrine puzzle, meets Teba the Warrior, and tackles Van Medoh, his first Divine Beast.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a290cdc9-0c8a-46f8-9d94-73af10caf22a/sm/2013912-1492011933369-LW_BotW_Part5_C.jpg","duration":2832,"publication_date":"2017-04-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-termites","changefreq":"weekly","video":[{"title":"2017:E16 - Halo 5 - Termites","description":"Six space marines get away from it all for a cabin retreat, when one of them starts to bug out! Now the other five must try to survive as their former friend eats away at the floor boards, screaming for their blood. This is the Halo 5 custom gamemode, Termites!\n\n\n\n\n\nDownload map here\n\n\n\nDownload gametype here","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-termites","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c0ba84-0f83-44d0-a9f1-ce26a41fa204/sm/2013912-1491924702772-TTD_Halo5_Termite.jpg","duration":878,"publication_date":"2017-04-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands-one-bullet-challenge","changefreq":"weekly","video":[{"title":"2017:E116 - Ghost Recon Wildlands: One Bullet Challenge","description":"Thanks to Ubisoft for sponsoring this video. To check out the game for yourself, please click here: http://ubi.li/sfd6u\n\n\n\nSo the guys think they are pretty good at this Ghost Recon Wildlands thing. I mean, they did successfully beat the last challenge they faced. But what about raiding one of the hardest compounds in the game with only one bullet each? This might be harder than they think...","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands-one-bullet-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cda92f1f-d677-459e-8f66-e7964044085c/sm/2013912-1491929701370-GhostRecon_OneBulletChallange.jpg","duration":2401,"publication_date":"2017-04-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-31","changefreq":"weekly","video":[{"title":"2017:E115 - Let's Watch - Snake Pass","description":"Slither along with Ryan, Jack, and Jeremy as they accomplish every snake's purpose in life. To catch all bubbles and coins with the guidance of a humming bird.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d8e1b57-8df3-415d-aea0-64ffcce27328/sm/2013912-1491859869010-LW_SnakePass.png","duration":2396,"publication_date":"2017-04-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-finding-bigfoot","changefreq":"weekly","video":[{"title":"2017:E114 - Finding Bigfoot","description":"Jack, Jeremy, and Ryan venture off on a daring adventure to track down the famous monster known as Bigfoot. Will a bunch of traps, bait, and bullets be enough to take down their monstrosity of a foe? Probably not.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-finding-bigfoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6c55249-01f6-4d76-b925-419fcc891ef4/sm/2013912-1491859382448-LP_FindingBigfoot.png","duration":2722,"publication_date":"2017-04-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-w-stands-for-weapons-ahwu-for-april-10-th-2017-364","changefreq":"weekly","video":[{"title":"2017:E364 - The W Stands for Weapons - AHWU for April 10th, 2017(#364)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU\n\n\n\nSo it's pretty cool that you guys have been sending tons of awesome weapons for us to open up and play with on AHWU, but now I'm starting to feel a little unsafe. Now you've given Ryan a sharp knifey blade and a flippin' axe! I'm just going to hide behind this gigantic teddy bear and hope he doesn't notice me. Ohp! Ryan's cut off the head of the bear, and I think I'm next! Somebody send band-aids please. Lots and lots of band-aids!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-w-stands-for-weapons-ahwu-for-april-10-th-2017-364","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70056469-11a3-4b05-bebd-5e1d84feac93/sm/2013912-1491591845774-ahwu_thumb.jpg","duration":899,"publication_date":"2017-04-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-30","changefreq":"weekly","video":[{"title":"2017:E113 - Let's Watch - Yooka-Laylee","description":"A lizard and a bat? What's up with that? The Achievement Hunter boys are about to find out exactly what's up with that as they jaunt through this colorful throwback to 90s platformers, Yooka-Laylee. And who knows? There just may be a little co-op action in this Let's Watch.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0c9d4f0-2a9a-4bc9-a30d-70a36c0e2415/sm/2013912-1491601408129-YookaThumby_v002.png","duration":3481,"publication_date":"2017-04-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-arcane-warfare-mirage","changefreq":"weekly","video":[{"title":"2017:E110 - Mirage: Arcane Warfare","description":"Special thanks to Torn Banner Studios for sponsoring this video. You can check out the game athttp://store.steampowered.com/app/368420\n\n\n\nJeremy, Ryan, Jack, and Gavin test out their spell castin', sword smashin', head choppin' skills in Arcane Warfare Mirage. It's simply a magical gathering of fun.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-arcane-warfare-mirage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e728ce4-579a-4686-a1da-04bc99defbfe/sm/2013912-1491503783256-LP_Mirage.png","duration":1679,"publication_date":"2017-04-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-71-6-ahi7g","changefreq":"weekly","video":[{"title":"2017:E13 - Keepsy Upsies - Last Call #71","description":"The AH Crew stand up to talk about stuff they get in the mail, autonomous cars, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-71-6-ahi7g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19dc5030-d9b2-4e94-8f43-1ee4f0f1cfad/sm/2013912-1491604781011-OFF72_-_PS_-_THUMB.jpg","duration":1150,"publication_date":"2017-04-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-snipperclips","changefreq":"weekly","video":[{"title":"2017:E6 - Snipperclips","description":"Also known as Snippy-dips, Snippy-dippy-doo, Snippy-dip-doo-magoo, Snipper-clip-a-clip, and our latest Play Pals, this cooperative game features two papery protagonists shaping each other into the tools and platforms needed to complete obstacle courses.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-snipperclips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37b1e258-4848-41ea-a525-524367d78447/sm/2013912-1490981704936-PP_SnippyClips.jpg","duration":1146,"publication_date":"2017-04-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-special-cunning-stunts","changefreq":"weekly","video":[{"title":"2017:E112 - GTA V - Special Cunning Stunts","description":"Rocket cars in Cunning Stunts! Knight Rider cars in Cunning Stunts! It's finally happened; we're finally doing it. Lannan \"Lazarbeam\" Eacott is along for the joyride.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-special-cunning-stunts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a08a684a-e622-4655-ae1a-6c6b0253365c/sm/2013912-1491582595552-GTA_SpecialCunningStunts3.jpg","duration":2612,"publication_date":"2017-04-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-71-k7g74s","changefreq":"weekly","video":[{"title":"2017:E71 - Going to the Moon - #71","description":"The AH Crew sit down to talk about weird dreams, PCs vs consoles, Destiny 2, and more on this week's Off Topic!\n\nThis episode originally aired April 7, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and Seeso (http://bit.ly/2iXI3mZ)\n\nCheck out The Mummy Trailer here! - http://bit.ly/2og0R1o","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-71-k7g74s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e537a0f0-d9ad-4cd0-883d-53f0f302285f/sm/2013912-1491604787794-OFF71_-_THUMB.jpg","duration":7175,"publication_date":"2017-04-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-29","changefreq":"weekly","video":[{"title":"2017:E111 - Let's Watch - Typoman - Part 3 (Finale)","description":"All good things must come to an end. Here is the finale of Typoman. Can Jeremy defeat the final boss before Jon gets annoyed that Michael and Lindsay are late for On the Spot? Find out now!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb2b8f9d-a8cd-4b95-9372-a86e191af6bc/sm/2013912-1491578524437-LW_TypomanPt3Finale.png","duration":2843,"publication_date":"2017-04-07T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-28","changefreq":"weekly","video":[{"title":"2017:E108 - Let's Watch - Zelda: Breath of the Wild - Part 4","description":"The Mad King saddles up on Epona and takes the reins! Ryan continues our playthrough of Breath of the Wild, with Gavin, Jeremy, and Matt there to guide him along the way.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cd7f73f-8b5f-4f2d-8b6d-3f62c29d9d97/sm/2013912-1491407339082-LW_zelda_BotW_Part4_thumb.jpg","duration":3357,"publication_date":"2017-04-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-254-glider-raceway","changefreq":"weekly","video":[{"title":"2017:E109 - Minecraft – Episode 254 – Glider Raceway","description":"Minecraft released a sweet new minigame last week - Glide! Now the Achievement Hunter crew can take their Elytras out and dash through twisty caves in hopes of being the best Minecraft cave glider person around. It's like Cunning Stunts, but blockier! And also with far fewer maps...","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-254-glider-raceway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/740f43ad-e481-458d-8a7b-59f8fa78531e/sm/1104396-1491437681641-MC_Glide_Thumb.jpg","duration":2058,"publication_date":"2017-04-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-27-post-show-oo3h95","changefreq":"weekly","video":[{"title":"2017:E7 - #27 Post Show","description":"The party gets to level up, while checking out some animated fan art","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-27-post-show-oo3h95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a65745e9-0564-49d3-b30f-c2ccbdf4461a/sm/2013912-1491405888141-HH27_-_PS_-_THUMB.jpg","duration":409,"publication_date":"2017-04-05T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-price-is-right","changefreq":"weekly","video":[{"title":"2017:E6 - The Price is Right","description":"Come on down! The wheel has chosen for Achievement Hunter to be the latest contestants on The Price is Right! It's a shame there will be no winners in this Showcase because Lannan is there too.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-price-is-right","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c11ccb4-dbcd-479d-9b70-c2c3f2ade348/sm/2013912-1491332218372-RouLetsPlay_PriceIsRight.png","duration":1345,"publication_date":"2017-04-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-snipper-clips-part-2","changefreq":"weekly","video":[{"title":"2017:E107 - Snipperclips Part 2","description":"Michael, Gavin, Ryan, and Lindsay snip and clip their way through the final levels of Snipperclips's four-player mode. If they can work together to solve these puzzles, there's a secret final boss waiting to strike: the dastardly Twitter!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-snipper-clips-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/250195d6-232d-4948-9a98-73bd54e4608f/sm/2013912-1491331533274-LP_SnipperClipsPt2.png","duration":1769,"publication_date":"2017-04-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-27-aif37h","changefreq":"weekly","video":[{"title":"2017:E27 - Hex, Drugs, & Clocks That Toll - #27","description":"The party interrupts a dark ritual--and experience something a little bit unexpected. \n\nSponsored by Blue Apron (http://cook.ba/2jeJr22) and MVMT Watches (http://bit.ly/2lmsOm7)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-27-aif37h","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c8de80b-26ac-466e-9567-8e319e54a5ca/sm/2369885-1491317712023-HH27_-_THUMB.jpg","duration":8282,"publication_date":"2017-04-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-destiny-age-of-triumph-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E106 - Destiny: Age of Triumph - AH Live Stream","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get your first month free!Jack, Jeremy, Ryan, and Matt dust off their Destiny skills in this edited live stream. To watch the full stream, check out the Achievement Hunter channel here: https://youtu.be/0AGNQC4T49c","player_loc":"https://roosterteeth.com/embed/lets-play-2017-destiny-age-of-triumph-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5109b702-96aa-4767-bce4-f8ec6283cd83/sm/2013912-1491253043481-DestinyThumb.jpg","duration":2681,"publication_date":"2017-04-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-363","changefreq":"weekly","video":[{"title":"2017:E363 - Ninja Turtle Starter Set - AHWU for April 3rd, 2017(#363)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to http://blueapron.com/AHWU\n\n\n\n\n\n\n\n\n\nSuper drunken 'Chievement HuntersGrumpy fuckin' 'Chievement HuntersRun amuck, Achievement HuntersAngry gamer assholesDrinking power!\n\n\n\n\n\n\n\n\n\n\n\nThey're the world's most fearsome Let's Play TeamThey siphon booze straight into their bloodstreamThey really don't give a fuckAnd show Funhaus just how much they suck!\n\n\n\n\n\n\n\n\n\n\n\nSuper drunken 'Chievement HuntersGrumpy fuckin' 'Chievement Hunters\n\n\n\n\n\n\n\n\n\n\n\nGeoffrey taught them to be mingy shitsJack Pattillo builds, Gavin is the slo-mo BritJeremy gives Ryan hellMichael Jones, you know, loves to fuckin yell\n\n\n\n\n\n\n\n\n\n\n\nSuper drunken 'Chievement HuntersGrumpy fuckin' 'Chievement HuntersRun amuck, Achievement HuntersAngry gamer assholes\n\n\n\n\n\n\n\n\n\n\n\nDrinking power!Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2017-363","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b957c077-a4be-498c-8022-7c4230c8b046/sm/2013912-1491255688741-ahwu_thumb.jpg","duration":723,"publication_date":"2017-04-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shenanigans-2017-gavin-s-sweet-revenge","changefreq":"weekly","video":[{"title":"2017:E1 - Gavin's Sweet Revenge","description":"Gavin gets revenge for something Trevor may or may not have done.","player_loc":"https://roosterteeth.com/embed/shenanigans-2017-gavin-s-sweet-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eb5a742-4786-4826-b045-e77c3aa4ec7c/sm/2013912-1490985454230-Shenanigans_Gavins_Revenge.jpg","duration":598,"publication_date":"2017-04-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-1-2-switch","changefreq":"weekly","video":[{"title":"2017:E105 - 1-2-Switch","description":"SWITCH! It's Gavin and Ryan vs. Michael and Lindsay in the most bullshit, luck-based party mode ever created. Watch as they sword fight, marble, Harry Potter, milk, and flag wave their way to victory. Well, at least half of them will. The other half are just going to sword fight, marble, Harry Potter, milk, and flag wave their way to defeat. Try your best to win, and if you don't, just hope your opponents get skull-fucked (which is way less awful than it sounds).","player_loc":"https://roosterteeth.com/embed/lets-play-2017-1-2-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74546e17-de63-42ce-8ce9-7f411c41f3f1/sm/2013912-1490993202544-12SwitchThumb_v003.png","duration":2151,"publication_date":"2017-04-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-70-ak7gu","changefreq":"weekly","video":[{"title":"2017:E12 - Pulling a Miller - Last Call #70","description":"The AH Crew and special guest Greg Miller stand up to talk about accidentally hurting fans, live events, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-70-ak7gu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74cdcc88-3260-4a93-991c-94d76a6859a7/sm/2013912-1491016512127-OFF70_-_PS_-_THUMB.jpg","duration":828,"publication_date":"2017-04-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-chicken-scream","changefreq":"weekly","video":[{"title":"2017:E7 - Chicken Scream","description":"Chicken Scream is the wildly popular new mobile app platformer that uses noises to move a chicken from island to island. Watch as the Play Pals scream, sing, and squawk their way to chicky glory!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-chicken-scream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b818cc3-f982-4690-b4b5-c1f501547da2/sm/2013912-1490981609481-ChickenScream_THUMB.jpg","duration":866,"publication_date":"2017-04-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-criminal-masterminds-part-1-the-fleeca-job","changefreq":"weekly","video":[{"title":"2017:E104 - Let's Play - GTA V - The Fleeca Job - Criminal Masterminds (Part 1)","description":"The Fake AH Crew have learned that you can earn $10,000,000 for completing the Criminal Masterminds challenge in GTA. All they have to do is beat every heist mission on hard, with the same four players, without dying once. Piece of cake, right?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-criminal-masterminds-part-1-the-fleeca-job","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03d1c143-0abb-4d1d-81cd-6d62d12a7660/sm/2013912-1490986130939-GTA_V_Thumb.jpg","duration":1902,"publication_date":"2017-04-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-70-ak7fho8","changefreq":"weekly","video":[{"title":"2017:E70 - Geoff’s Still Dead - #70","description":"The AH Crew and special guest Greg Miller sit down to talk about Marvel and DC movies, autonomous vehicles, Disney World, and more on this week's Off Topic!\n\nThis episode originally aired March 31, 2017 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and Warby Parker (http://bit.ly/2nHUo0l)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-70-ak7fho8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa65e18d-4e05-42c2-aae2-e82e92a43042/sm/2013912-1491016447157-OFF70_-_THUMB.jpg","duration":6910,"publication_date":"2017-04-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-27","changefreq":"weekly","video":[{"title":"2017:E103 - Let's Watch - Typoman - Part 2","description":"Break out the dictionary because it's time for part 2 of Typoman with Jeremy, Michael and Lindsay.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c164602-e94f-4bd2-8f0f-15c9a19a4aba/sm/2013912-1490913014576-LW_TypomanPt2.png","duration":2606,"publication_date":"2017-03-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-26","changefreq":"weekly","video":[{"title":"2017:E101 - Let's Watch - Zelda: Breath of the Wild - Part 3","description":"Michael continues to explore the ruins of Hyrule, all the while introducing Jeremy to the very concept of a Zelda game.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c49a07e-2956-40d7-9850-bb2a58666e14/sm/2013912-1490815024521-Zelda_Pt3_Thumb.jpg","duration":2949,"publication_date":"2017-03-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-253-sky-factory-part-3","changefreq":"weekly","video":[{"title":"2017:E102 - Minecraft – Episode 253 – Sky Factory Part 3","description":"Yes! We absolutely heard you asking for more Sky Factory in Minecraft. And yes! We absolutely played more Sky Factory in Minecraft. Your favorite idiots are back and ready to get out of the stone age. They're trying really, really hard to make that a possibility. \n\nWell, at least until Jeremy fucks everything up. Now it's time for a fuckin' awesome rescue mission.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-253-sky-factory-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82ad5c87-c63c-446f-bcca-a960be8794bd/sm/2013912-1490887477867-minecraft_sky_factory.jpg","duration":3140,"publication_date":"2017-03-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-quiplash-2","changefreq":"weekly","video":[{"title":"2017:E5 - Quiplash 2","description":"The wheel of blood has been spun and the game has been chosen. Now it's time for Achievement Hunter crew, their least favorite Australian, and several hundred of their closest twitter followers to play some Quiplash 2! Will the audience get their jollies from our American heroes, or will \"LazarBeam\" Lannan use his kangaroo/shrimp n' barbie/other Australian stereotype-like charm to be the most tip-top quipper?","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-quiplash-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/499eaeb5-f192-4a99-a3ae-b3e60ae7ad7f/sm/2013912-1490724784417-RLP_Quiplash2_thumb_v003.png","duration":1956,"publication_date":"2017-03-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands-maximum-difficulty-challenge","changefreq":"weekly","video":[{"title":"2017:E100 - Ghost Recon Wildlands: Maximum Difficulty Challenge","description":"Thanks to Ubisoft for sponsoring this video. To check out the game for yourself, please click here: http://ubi.li/sfd6u.Gavin, Michael, Jeremy, and Ryan have been challenged to play on the hardest difficulty, in the hardest area of the -map. We all know this isn't going to be textbook \"ghosting.\" Ryan: You know, textbooks have lots of negative examples too.Gavin: Sometimes they got graffiti from other people who used to use them too.Ryan: It's true. We're the graffiti in the textbook.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands-maximum-difficulty-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/148c5a29-cfb5-4fff-b7c8-189f69e1d304/sm/2013912-1490736544773-LP_GhostRW_HardMode_B_THUMB2-2.png","duration":1932,"publication_date":"2017-03-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-quidditch","changefreq":"weekly","video":[{"title":"2017:E15 - Halo 5 - Quidditch","description":"'Ello! This is 'Arry Pott-uh, an' welcome to Things to Do! Today we're go'a play Kidditch in 'Alo Foive. Oi love me some good ol' Kidditch, don'chu?","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-quidditch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a0aec65-d144-49cd-b0fb-e90876c43686/sm/2013912-1490635573843-Quidditch_Halo5_Thumb_5.jpg","duration":763,"publication_date":"2017-03-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-mass-effect-andomeda-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E99 - Mass Effect: Andromeda - AH Live Stream","description":"Thanks to Dollar Shave Club for supporting our Live Stream. Go to http://DollarShaveClub.com/Hunter to get your first month free!\n\nAchievement Hunter beat up on space fetus monsters and evil galactic robots in Mass Effect: Andromeda's multiplayer mode! To watch the full stream, check out the Achievement Hunter channel here","player_loc":"https://roosterteeth.com/embed/lets-play-2017-mass-effect-andomeda-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b15e10b3-d635-47a3-9606-9c597e6181cc/sm/2013912-1490650338038-meandromeda_thumb_1024.jpg","duration":2368,"publication_date":"2017-03-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-sword-horde-ahwu-for-march-27-th-2017-362","changefreq":"weekly","video":[{"title":"2017:E13 - Sword Horde! - AHWU for March 27th, 2017 (#362)","description":"Thanks to ProFlowers for sponsoring today's video. Make sure you go to http://www.proflowers.com and use code JackandGeoff to get $10 dollars off your purchase of $29 or more.\n\nHere's the mailIt never failsIt makes me want to wag my tailWhen it comes I want a whale\n\n\n\nNo! That's total bullshit. When it comes, I want a fuckin' sword. Who the hell would want a whale? Whales are fucking massive! Where would we even fit a whale in this office? There's no doubt that we'd kill it. Maybe not intentionally, but you know none of us are gonna bother feeding it. Fuck whales. I don't want a fuckin' whale. Keep sending swords! That shit is awesome.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-sword-horde-ahwu-for-march-27-th-2017-362","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/022a85a8-c600-463b-82ed-3b3f90c2f3e5/sm/2013912-1490647085962-AHWU_1.jpg","duration":717,"publication_date":"2017-03-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-twelfth-day","changefreq":"weekly","video":[{"title":"2017:E96 - 7 Days to Die - Twelfth Day","description":"It's zombie horde day again! Get out your weapons and put away everything you care about, because this horde is bigger and nastier than ever. Watch as these veteran wastelanders try to make it through the night. In this episode: Jack prepares the bunker, Gavin makes a shovel, Michael accepts fate, and there are so many zombies.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-twelfth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e17e989b-ab1a-47ee-aa6f-287e05d647ca/sm/2013912-1490388184687-AH_7DTD_Day12_THUMB4.png","duration":3612,"publication_date":"2017-03-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-orcs-must-die-unchained","changefreq":"weekly","video":[{"title":"2017:E95 - Orcs Must Die! Unchained","description":"Seems like the developers of Orcs Must Die: Unchained have lost any shred of dignity they once had and put Sex Swing's Jamez the Ripher and Tha Schling in their game. Really, there's such a deep cast of Achievement Hunter characters that would have made for way better characters. Why settle for these Funhaus characters when you could be playing as Mogar, Slo Mo Gavin, or Sad Geoff? At least until the devs wise up, we'll settle for these Funhaus kids. These Orcs ain't gonna die themselves, after all.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-orcs-must-die-unchained","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1969514b-5aa1-4971-8d6d-ce049a7f4dcc/sm/2013912-1490385388685-OrcsMustDie_Thumb_v002.png","duration":1373,"publication_date":"2017-03-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-69-ak7gg3","changefreq":"weekly","video":[{"title":"2017:E11 - In Bins We Trust - Last Call #69","description":"The AH Crew sit down to talk about roombas, eliminating stupid tasks, currency, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-69-ak7gg3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf07bcf-287b-4706-878b-907c729f6dfc/sm/2013912-1490390369019-OFF69_-_PS_-_THUMB.jpg","duration":1472,"publication_date":"2017-03-26T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-mass-effect","changefreq":"weekly","video":[{"title":"2017:E14 - Mass Effect Andromeda - Biotic Teachings","description":"With all the crazy powers in Mass Effect Andromeda it's easy to understand why new species would think you're dangerous. But if you just stop for a minute and use your power to teach the species how to fit in with your society everything can be totally different. Afterall, in this galaxy you're the aliens.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-mass-effect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5b8fff4-49e9-41c9-a10b-59932df6d8d0/sm/2013912-1490393204836-me3.jpg","duration":169,"publication_date":"2017-03-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-cunning-stunts-6","changefreq":"weekly","video":[{"title":"2017:E97 - GTA V - Cunning Stunts 6","description":"It's the ultimate showdown: Betting Buddies vs. Battle Buddies vs. Bike Buddies vs. Lindsay. May the fastest, cunning-est, stunty-est team win!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-cunning-stunts-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03c2844-55b3-4a6a-a2c0-dcb901afc249/sm/2013912-1490389703976-GTA_CS_6_Thumb.jpg","duration":2296,"publication_date":"2017-03-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-69-aji7fh3","changefreq":"weekly","video":[{"title":"2017:E69 - Walt Didney! - #69","description":"The AH Crew sit down to talk about Marvel Netflix shows, Nintendo Switch issues, Gavin gagging, and more on this week's Off Topic!\n\nThis episode originally aired March 24, 2017 and is sponsored by Dollar Shave Club (http://bit.ly/2cujr4z) and The Black Tux (http://bit.ly/2nw6Gt8)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-69-aji7fh3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cc215f7-9a78-4936-8660-d47dfe7a6c48/sm/2013912-1490390361052-OFF69_-_THUMB.jpg","duration":8523,"publication_date":"2017-03-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-splatoon-2-testfire","changefreq":"weekly","video":[{"title":"2017:E98 - Splatoon 2 Testfire","description":"You're a kid now, you're a squid now, but only within the hours of 2-3pm central time! Matt, Lindsay, and Craig from Game Attack sit down and try out Splatoon 2's global testfire.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-splatoon-2-testfire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3da0a979-4cbd-48f0-907e-f58cbeaf785a/sm/1104396-1490399919769-Splatoon2Thumb.png","duration":1458,"publication_date":"2017-03-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-25","changefreq":"weekly","video":[{"title":"2017:E94 - Let's Watch - Typoman - Part 1","description":"Jeremy, Michael and Lindsay get hooked on phonics and thrills as they discover new words on their quest through a hostile world.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9ae4590-183b-4c9d-aa57-94a38f012d24/sm/2013912-1490302414877-LW_TypomanPt1.png","duration":2477,"publication_date":"2017-03-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-24","changefreq":"weekly","video":[{"title":"2017:E92 - Let's Watch - Zelda: Breath of the Wild - Part 2","description":"Michael completes the final two shrine missions and gets the paraglider from the Old Man, while Gavin tries to explain to Ryan how fish and insects are actually animals.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4b755a4-3351-467b-afc9-feab7bb29951/sm/2013912-1490206167343-BotW_pt2.jpg","duration":3520,"publication_date":"2017-03-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-252-the-classy-way-in","changefreq":"weekly","video":[{"title":"2017:E93 - Minecraft – Episode 252 – The Classy Way In","description":"A classy-ass apartment needs a classy-ass way to get inside of it. In this case, normal-ass stairs aren't going to cut it. Dope-ass cool-ass hang gliding: now that's a sweet-ass way to get into a classy-ass apartment.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-252-the-classy-way-in","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cff0f4b2-9e43-4c33-a523-5efa069de6d2/sm/2013912-1490218955585-mc_Apartment2_Thumb.jpg","duration":2059,"publication_date":"2017-03-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-26-post-show-k7agfh","changefreq":"weekly","video":[{"title":"2017:E6 - #26 Post Show","description":"Arrr! Treasure! The Gang rolls for loot while looking at some great fan art.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-26-post-show-k7agfh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae7fcd2d-64a7-4dc3-b0cb-ccb9c25f78ec/sm/2013912-1490196461787-HH26_-_PS_-_THUMB.jpg","duration":1551,"publication_date":"2017-03-22T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-skate-3-hall-of-meat","changefreq":"weekly","video":[{"title":"2017:E4 - Skate 3: Hall of Meat","description":"Jack, Gavin, Jeremy and Lindsay play a silly game to try and break every bone in their body. Speaking of silly, they also forgot to turn the in game music off. Get ready to enjoy some royalty free rock hits!","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-skate-3-hall-of-meat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13c5c757-3e40-4e7c-bfc4-3e0389741f24/sm/2013912-1490119133137-RouletsPlay_Skate3HallofMeat.png","duration":1171,"publication_date":"2017-03-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gang-beasts-head-trauma","changefreq":"weekly","video":[{"title":"2017:E87 - Gang Beasts: Head Trauma ","description":"Gang Beasts is back! But with only four players the combat is more intense and the head-butts are harder than ever. Who can survive the brain damage?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gang-beasts-head-trauma","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18c2a405-a154-466a-accf-90d3ef9ed5b2/sm/2013912-1489681012973-LP_Gangbeasts_THUMB2.png","duration":2418,"publication_date":"2017-03-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-26-ak7gh8","changefreq":"weekly","video":[{"title":"2017:E26 - Of Fear and Other Strange Drugs - #26","description":"To ascend the stairs or not to ascend the stairs--that is the question. And it will be asked again and again and again... Sponsored by Blue Apron (http://cook.ba/2jeJr22) and Mack Weldon (http://bit.ly/2kMs65c)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-26-ak7gh8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39b4ca41-2846-4ae3-926c-b0dedb362c33/sm/2013912-1490109713976-HH26_-_THUMB.jpg","duration":7119,"publication_date":"2017-03-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-call-of-duty-infinite-warfare-zombies-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E91 - Call of Duty: Infinite Warfare Zombies - AH Live Stream","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT.\n\n\n\nWhat do you get when you mix three yanks with two silly accents? The answer: an AH Livestream! Lannan \"Lazarbeam\" Eacott joins Gavin, Jeremy, Jack, and Lindsay in these highlights from last week. To watch the full stream, check out the Achievement Hunter channel here: https://youtu.be/mGj1OHFNsdk","player_loc":"https://roosterteeth.com/embed/lets-play-2017-call-of-duty-infinite-warfare-zombies-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3ba11dd-446f-4b66-98b0-55e4101b2e50/sm/2013912-1490044311827-codzombies_thumb_1024.jpg","duration":2684,"publication_date":"2017-03-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-361","changefreq":"weekly","video":[{"title":"2017:E361 - Glitter Bomb - AHWU for March 20th, 2017 (#361)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going tohttp://blueapron.com/AHWU\n\n\n\nThis morning, we here at Achievement Hunter got a suspicious package in the mail. White, unmarked, no return address. Throwing caution to the wind, we opened it anyway. Turns out we were the target of level-5 craft warfare - the glitter bomb. Now poor Jeremy can't even sit down without getting globs of glitter all over his butt cheeks.\n\n\n\n\n\n\n\nWatch the Video of the Week and the Community Video of the Week!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-361","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70cbb23a-4ed9-493c-8c2b-b5e3cc8ea2a7/sm/2013912-1490031819801-ahwu_4.jpg","duration":754,"publication_date":"2017-03-20T19:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-3","changefreq":"weekly","video":[{"title":"2017:E3 - Mountain Monsters","description":"Michael shares with us one of his favorite moments from Mountain Monsters featuring Big Foot and his Chupacabra buddies. Check out Off Topic #0.1 to see the original conversation!","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84079f09-6f58-4ee6-9e9d-81180bf6f0f6/sm/2013912-1489789698072-Mountain_Monsters_Animated_Thumbnail.jpg","duration":151,"publication_date":"2017-03-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-snipper-clips","changefreq":"weekly","video":[{"title":"2017:E90 - Snipperclips","description":"Snippy Doo, Snippity Doo, Snippy Dee - it's Snipper Clips! Join Michael, Lindsay, Gavin, and Ryan with some good ole' fun. Let's all cut each other, go!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-snipper-clips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc593753-5834-4295-9aaa-34893fbd7395/sm/2013912-1489781877797-LP_SnipperClips_PT1.png","duration":2377,"publication_date":"2017-03-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-68-ai6fh2","changefreq":"weekly","video":[{"title":"2017:E10 - Is It Murder If You Kill a Foreigner? - Last Call #68","description":"The AH Crew sit down to talk about fake asses, voting, famous Australians, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-68-ai6fh2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc51fd39-a394-4e5f-a5f0-30d6ab8df655/sm/2013912-1489766813533-OFF68_-_PS_-_THUMB.jpg","duration":1172,"publication_date":"2017-03-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-zelda-breath-of-the-wild-amiibo-reveals","changefreq":"weekly","video":[{"title":"2017:E6 - Zelda: Breath of the Wild - Amiibo Reveals","description":"Michael owns a shit ton of Amiibos, so we're gonna use some of them with the new Nintendo Switch to see what goodies they unlock in Zelda: Breath of the Wild. It's time for an out-of-the-box in-game unboxing!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-zelda-breath-of-the-wild-amiibo-reveals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e73be32-d970-46f4-a5a2-1b0f0ad94f0f/sm/2013912-1489776980215-THUMB_Amiibo_Zelda.jpg","duration":600,"publication_date":"2017-03-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-achievement-knievel-2017","changefreq":"weekly","video":[{"title":"2017:E89 - GTA V - Achievement Knievel 2017","description":"Everyone's wanted another Achievement Knievel with the new CEO vehicles, and today we deliver! The creator mode in GTA doesn't let us use the new cars, though, so rather than a Things to Do In, we're releasing a full Let's Play as we build the longest Knievel stunt jump in Let's Play GTA history.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-achievement-knievel-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eda871e1-0bd1-4e8b-b3a8-900657579a93/sm/2013912-1489778472341-GTA_Knievel_2k17.jpg","duration":3335,"publication_date":"2017-03-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-68-aji7gh","changefreq":"weekly","video":[{"title":"2017:E68 - We Invented Books! - #68","description":"The AH Crew and special guests James Buckley and Lannan Eacott sit down to talk about differences between the U.S. and England, video game camping, Geoff’s sabbatical, and more on this week's Off Topic!\n\nThis episode originally aired March 17, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MVMT Watches (http://bit.ly/2iLo5gb)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-68-aji7gh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e426260a-38a1-4542-9d3e-ca8ea25c1648/sm/2013912-1489766834429-OFF68_-_THUMB.jpg","duration":7460,"publication_date":"2017-03-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-henry-the-hamster-handler","changefreq":"weekly","video":[{"title":"2017:E8 - Henry the Hamster Handler ","description":"This week on VR the Champions, it's time to become one with the hamster. Your furry little buddies are not very bright and certainly not death proof. Sure, you're supposed to save them, but you can also set them on fire or dunk them in pools of acid. The choice is yours, you hook-handed little devil.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-henry-the-hamster-handler","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37b70f46-136b-4671-bf66-a9513edc9dd9/sm/2013912-1489696894072-VR_HenryDeHamster.png","duration":1467,"publication_date":"2017-03-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-23","changefreq":"weekly","video":[{"title":"2017:E86 - Let's Watch - Mass Effect: Andromeda","description":"Special thanks to Electronic Arts for the early copy of Mass Effect: Andromeda. Join us for the adventures of Rider Ryder, the human-orangutan hybrid that boldly explores the newest frontiers in the Andromeda galaxy! Jeremy takes the controller with Michael, Jack, Matt, and Gus along for the ride.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b12ab554-a7c1-4f5a-89fd-edc75fe88034/sm/2013912-1489613392381-Thumb_MassEffect_LW_Part1.jpg","duration":4186,"publication_date":"2017-03-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-play-live","changefreq":"weekly","video":[{"title":"2017:E85 - Let's Play Live - NYC Animated Intro","description":"A special look at the Let's Play Live: New York show introduction from October 2016. Get your tickets now for the spring Let's Play Live: East Coast Tour!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-play-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c80dd85-9e18-4ded-b425-265fc65672d5/sm/2013912-1489614248458-LetsPlayLive_NY.png","duration":153,"publication_date":"2017-03-16T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-251-deluxe-apartment-in-the-sky","changefreq":"weekly","video":[{"title":"2017:E88 - Minecraft – Episode 251 – Deluxe Apartment in the Sky","description":"Geoff's still off on his sabbatical, which means it's the perfect time for Foreman Matt and the rest of the Achievement Hunter crew to do some renovations. With so much fucking wasted space in Geoff's massive house, might as well make some use of it. How about a deluxe apartment in the sky?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-251-deluxe-apartment-in-the-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e77e671f-6406-4349-bf42-dad800e63a78/sm/2013912-1489694131160-mc1.jpg","duration":1919,"publication_date":"2017-03-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-the-pleasures-of-cooking-with-link","changefreq":"weekly","video":[{"title":"2017:E5 - The Pleasures of Cooking...with Link!","description":"Grab those soup ladles, cook pots, and copies of Breath of the Wild! It's time to learn how to cook grade A cuisine with Hyrule's greatest hero. On this episode we learn a little bit about ourselves as well as how to make several delicious meals. Join along with us won't you?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-the-pleasures-of-cooking-with-link","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ccc8f12-9a24-4e2f-9616-ecf52c78e960/sm/2013912-1489592519902-breath2.jpg","duration":355,"publication_date":"2017-03-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-mario-party-8-50-turn-extra-life-extravaganza","changefreq":"weekly","video":[{"title":"2017:E84 - Mario Party 8: 50-Turn Extra Life Extravaganza","description":"Remember when we put out Uno: The Movie and you all went, \"Wow! That's the longest shlong of the let's play we've ever seen!\"? Remember when you thought let's plays just couldn't get any longer? You were wrong!\n\nMichael, Gavin, Lindsay, and Meg promised to make a Mario Party let's play during Extra Life last year. They didn't just make a let's play. They made a 50 turn let's play. Seriously, this mofo is so long it makes Uno: The Movie look like the cute little short that plays before a Pixar film.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-mario-party-8-50-turn-extra-life-extravaganza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d7d8adb-c7d5-442f-aae5-675283ea8685/sm/2013912-1489532097627-LP_ExtraLifeMarioParty.png","duration":13665,"publication_date":"2017-03-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-sumo","changefreq":"weekly","video":[{"title":"2017:E13 - For Honor - Sumo","description":"For Honor - a game of bravery, a game of honor, a game of dignity. Some of the world's greatest warriors have been brought together in order to stab, slash, and decapitate each other. Today, the Achievement Hunter crew have invited another great warrior to come battle: the mighty Sumo Wrestler. Put on your cloth thong and push that fucker off that ledge!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-sumo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e74d8a1-c5fb-4bf0-8415-99d2b5fe940b/sm/2013912-1489423547296-TTD_sumo_thumb.png","duration":447,"publication_date":"2017-03-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-super-bomberman-r","changefreq":"weekly","video":[{"title":"2017:E83 - Super Bomberman R","description":"Join Ryan, Jeremy, Lindsay, and Gavin in the chaotic, bomb-throwing game, Super Bomberman R. Is it strategy or blind luck?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-super-bomberman-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32b6688d-2678-4d05-82ea-f262f3dc4d4b/sm/2013912-1489429203558-LP_Bomberman_THUMB1.png","duration":2211,"publication_date":"2017-03-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-baggin-gavin-ahwu-for-march-13-th-2017-360","changefreq":"weekly","video":[{"title":"2017:E360 - Baggin' Gavin - AHWU for March 13th, 2017 (#360)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link:\n\nhttp://www.mvmtwatches.com/AHWU\n\n\n\n\n\n\n\n\n\n\n\nGET GAVIN DOWN ON THE GROUND! Bag him. Tag him. Bring him here!\n\n\n\n\n\nGavin Free, we know you've got slo mo secrets you're not sharing. Now we're gonna waterboard you until you tell us everything we want to know. Oh, what? We're out of water? Compressed air's exactly like water, right?\n\n\n\n\n\n\n\n\n\n\n\nCommunity Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2017-baggin-gavin-ahwu-for-march-13-th-2017-360","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/178b480a-b67e-42ff-b68b-470fbbe4ee68/sm/2013912-1489441998513-ahwu_3.jpg","duration":493,"publication_date":"2017-03-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-22","changefreq":"weekly","video":[{"title":"2017:E79 - Let's Watch - Hitman - The Surgeons","description":"Gavin, Ryan and Jeremy go after the latest elusive targets, the surgeons.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a11fbc2-119f-43e9-8b97-dd6f18309f55/sm/2013912-1489093500086-LW_HitmanSurgeon.png","duration":1288,"publication_date":"2017-03-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-astroneer-get-trucked","changefreq":"weekly","video":[{"title":"2017:E81 - Astroneer: Get Trucked!","description":"In this special Let's Play, Gavin seems smart, Jack seems dumb, Jeremy is useless, and Ryan is Ryan. It's another episode of Astroneer! The goal is simple: gather dumb shit and use that shit to build cool shit. Hopefully it will please our \"holey\" deity.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-astroneer-get-trucked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b489a96-4a68-4f4c-8417-bae2b8c5738c/sm/2013912-1489100199881-Astroneer_Thumb.png","duration":3211,"publication_date":"2017-03-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-67-sjhg79","changefreq":"weekly","video":[{"title":"2017:E9 - On, Off, and Always - Last Call #67","description":"The AH Crew sit down to talk about Jeremy screwing with Larry, bad drinks, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-67-sjhg79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f583585-5a37-42e1-ba45-c6c5b86065a6/sm/2013912-1489216977572-OFF67_-_PS_-_THUMB.jpg","duration":869,"publication_date":"2017-03-12T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2017","changefreq":"weekly","video":[{"title":"2017:E5 - The Slamrock Shake","description":"St. Patrick's Day is in need of some modern traditions, so Achievement Hunter is here to help!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04bebdbc-b01d-45a2-acd0-f743cb72ab58/sm/1104396-1489192026974-SlamrockShakeThumb.jpg","duration":440,"publication_date":"2017-03-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-jetsta-la-vista-with-bruce","changefreq":"weekly","video":[{"title":"2017:E82 - Jetsta la Vista with Bruce","description":"Nothing is more terrifying than a man with no fear, no shirt, and leopard-print boxers. Bruce plays Jetsta la Vista, Titan Dump, and Diving for Fish with the Fake AH crew in this special guest episode of GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-jetsta-la-vista-with-bruce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f09cbcd-8968-46de-94fd-249891d8bae2/sm/2013912-1489169198033-JetstaLaVistsa_With_Bruce.jpg","duration":1949,"publication_date":"2017-03-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands-multiplayer","changefreq":"weekly","video":[{"title":"2017:E80 - Ghost Recon Wildlands: Multiplayer ","description":"Thanks to Ubisoft for sponsoring this video. To check out the game for yourself, click here: http://ubi.li/3keyyRyan, Jack, Gavin, and Michael head out on more missions in Ghost Recon Wildlands. The Achievement Hunters try their best to \"Ghost\" missions, but usually end up wild-ing all over the countryside.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b2e614c-27bc-4da8-89b6-474df95975b2/sm/2013912-1489099124400-LP_GhostRW_Multiplayer_THUMB1.png","duration":2869,"publication_date":"2017-03-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-67-ah6gk7","changefreq":"weekly","video":[{"title":"2017:E67 - I’m Gonna Disappoint Someone - #67","description":"The AH Crew sit down to talk about pubs vs bars, X-Men movie timelines, the Nintendo Switch, and more on this week's Off Topic!\n\nThis episode originally aired March 10, 2017 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and Squarespace (http://bit.ly/2jsgC2m)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-67-ah6gk7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/307e76d4-fdbe-4f3f-b3ec-9b7182aff239/sm/2013912-1489216992929-OFF67_-_THUMB.jpg","duration":7235,"publication_date":"2017-03-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-32-hell-town","changefreq":"weekly","video":[{"title":"2017:E8 - Episode #32: Hell Town","description":"A small town high school is thrown into chaos as a Letterman-clad killer begins murdering any jock he can find! Join the AH crew as they watch Hell Town, a cock-choppin', cat-fightin' good time!","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-32-hell-town","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc05477f-4967-4b32-8ddc-4e534d884124/sm/2013912-1489163620764-TM_-_HellTown_-_THUMB.jpg","duration":6059,"publication_date":"2017-03-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-6-new-digs","changefreq":"weekly","video":[{"title":"2016:E6 - Fatal Frame #6 - New Digs","description":"New room, new jet lag, same old idiots.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-6-new-digs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5c77ee3-fa9d-4655-a3af-fb3703e544c7/sm/2013912-1481323213843-small_BC_FATALFRAMETHUMB_RTThumb_Pt6.png","duration":3077,"publication_date":"2016-12-09T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-78-ajyhah","changefreq":"weekly","video":[{"title":"S7:E78 - We Love America - #78","description":"We also love Christmas. And marital aids. And Kentucky Bourbon. But mostly America. This episode originally aired December 8, 2016 and is sponsored by MVMT Watches (http://bit.ly/2gjhmEg) and Tipsy Elves (http://bit.ly/2gf2T09)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-78-ajyhah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/590168c2-8ee6-404e-8f1d-8ddf75b71e4f/sm/2013912-1481313495057-ots_78_thumb.jpg","duration":2101,"publication_date":"2016-12-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-nba-jam-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S4:E17 - NBA Jam in Real Life - Behind the Scenes","description":"\"He's on fire!\" How did the Immersion crew avoid these three words while recreating NBA Jam?","player_loc":"https://roosterteeth.com/embed/immersion-season-4-nba-jam-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5065ea9-6770-4438-a20e-39678eb38797/sm/2013912-1481142938537-ImmersionNBAJamBTS_03c_1.png","duration":465,"publication_date":"2016-12-08T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-nba-jam-in-real-life-featuring-geoff-and-jack","changefreq":"weekly","video":[{"title":"S4:E16 - NBA Jam in Real Life - Featuring Geoff and Jack","description":"Geoff and Jack go balls out as they attempt to embarass Gavin and Michael in this special Bonus Episode of Immersion. Watch the Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/immersion-season-4-nba-jam-in-real-life-featuring-geoff-and-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e04e6f1b-97ad-4145-a2d7-530a2aab9625/sm/2013912-1481141570233-ImmersionNBAJamFIRST_01_1.png","duration":285,"publication_date":"2016-12-08T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-walking-on-water","changefreq":"weekly","video":[{"title":"2016:E34 - Walking on Water","description":"Josh looks surprisingly sultry while testing out an unruly water jetpack during filming for the Star Wars episode of Immersion Season 3. Check out the season finale of Immersion Season 4 here.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-walking-on-water","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59842ae0-c873-4f17-9623-e45fd679d457/sm/2013912-1481215016212-Jetpack_01.png","duration":114,"publication_date":"2016-12-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-11-ba76ah","changefreq":"weekly","video":[{"title":"2016:E11 - Still Open #11","description":"Join Barbara Dunkelman, Mariel Salcedo, Lindsay Jones, and Griffon Ramsey as they discuss being on their own away from home.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-11-ba76ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7144e10-e294-49d6-b144-41b36148d48a/sm/2013912-1481064563522-AO11_-_PS_-_THUMB.jpg","duration":835,"publication_date":"2016-12-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-nba-jam-in-real-life","changefreq":"weekly","video":[{"title":"S4:E15 - NBA Jam in Real Life","description":"Can a flaming basketball really improve your basketball game? Gavin and Michael are burning to find out. Watch the Bonus Episode featuring Geoff and Jack!","player_loc":"https://roosterteeth.com/embed/immersion-season-4-nba-jam-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08447c69-3f11-4f55-b7e9-f7d198cdd931/sm/2013912-1481134781302-ImmersionNBAJam_03b_1.png","duration":672,"publication_date":"2016-12-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-11-08-a5ba","changefreq":"weekly","video":[{"title":"2016:E11 - “Your Breasts are Crying for Them” - #11","description":"Join Barbara Dunkelman, Mariel Salcedo, Lindsay Jones, and Griffon Ramsey as they discuss their worst hangovers, changing their own names, and how to overcome insecurities with taking the next step in a relationship. This episode is sponsored by Crunchyroll (http://bit.ly/2dpCuNF) and MVMT Watches (http://bit.ly/2g6rLUx)","player_loc":"https://roosterteeth.com/embed/always-open-2016-11-08-a5ba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d72cb5d3-c35a-4689-bbcb-1ddd8c74ce03/sm/2013912-1481064592539-AO11_-_THUMB.jpg","duration":3969,"publication_date":"2016-12-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-405-post-show-paa7dn","changefreq":"weekly","video":[{"title":"2016:E47 - Brandon’s Bachelor Party - Podcast #405 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Chris Demarais as they discuss Brandon’s bachelor party, recycling, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-405-post-show-paa7dn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e226891b-dd6b-4679-882b-c0ef15ba990e/sm/2013912-1481042671433-rtp405_-_PS_-_THUMB.jpg","duration":1247,"publication_date":"2016-12-07T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-rt-xpeditions","changefreq":"weekly","video":[{"title":"2016:E33 - RTXpeditions","description":"Long journeys and flight delays can't stop members of the Let's Play network from reuniting with one another and fans at RTX. Join us at our next convention: RTX Sydney!","player_loc":"https://roosterteeth.com/embed/rt-life-2016-rt-xpeditions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80b74fca-6931-4ab8-9ff3-00dd258a95b3/sm/2013912-1481041677175-RTXpeditionsThumb_01.png","duration":230,"publication_date":"2016-12-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-405-akij0a","changefreq":"weekly","video":[{"title":"2016:E405 - Some Dogs Love Helicopters - #405","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Chris Demarais as they discuss dog comprehension, blood, eating alone, and more on this week's RT Podcast! This episode originally aired on December 5, 2016, sponsored by Audible (http://adbl.co/2bgBJkt), Casper (http://bit.ly/2bgC0nt), Trunk Club (http://bit.ly/29tyrJm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-405-akij0a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c947458-2605-46ff-916c-f3aa15aeb1ce/sm/2013912-1481042201295-rtp405_-_THUMB.jpg","duration":5750,"publication_date":"2016-12-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-burnie-hates-nasa","changefreq":"weekly","video":[{"title":"2016:E43 - Burnie Hates NASA","description":"Burnie fears what he does not understand, as evidenced by his anger towards NASA's ability to describe planets hundreds of lightyears away. Or maybe he's actually right and they're just making it all up. Either way he goes on a rant and it's funny!\n\n\n\n\n\nAudio from Rooster Teeth Podcast #371\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan Battle","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-burnie-hates-nasa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/770964d8-0fea-45d2-8ca1-0109b4a0c3a3/sm/2013912-1480721652595-rtaa253tn.jpg","duration":98,"publication_date":"2016-12-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-is-go-t-a-soap-opera","changefreq":"weekly","video":[{"title":"S7:E34 - Is This Show a Soap Opera?","description":"If they took away the dragons and White Walkers, what's left? Sponsored content.\n\n\n\n\n\n\n\nFor more information on the VIZIO SmartCast click here: http://bit.ly/2gZMeeQ","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-is-go-t-a-soap-opera","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5fb7b72-a4ca-496b-932b-a2514003703d/sm/2013912-1479838979960-VizioThumb_02c.png","duration":238,"publication_date":"2016-12-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-77-7-ah86a","changefreq":"weekly","video":[{"title":"S7:E8 - For the Win #77","description":"Viva la Elf Revolucion!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-77-7-ah86a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aeacb8f-a266-4451-b7fc-9bb0e97e7513/sm/2013912-1480700363688-ots_77ftw_thumb.jpg","duration":614,"publication_date":"2016-12-03T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-0-5","changefreq":"weekly","video":[{"title":"2016:E5 - Real Ape Wars - #0.5","description":"The hybrid dinosaur in Jurassic World hunted for sport. Are there real animals that don't eat what they kill? Gus Sorola asks and Sally Le Page clarifies crazy science questions in fifth pilot episode of Let Me Clarify. Sponsored by MVMT Watches (http://bit.ly/2fYsUjd0)","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-0-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120329a7-3629-4a2e-bb6c-fd278166d6e1/sm/2013912-1480703346511-LMC5_-_THUMB.jpg","duration":953,"publication_date":"2016-12-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-5-jhf568","changefreq":"weekly","video":[{"title":"V4:E5 - Volume 4, Chapter 5: Menagerie","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-5-jhf568","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f74b0bf-26ed-4513-ba0a-ff6b76738b34/sm/2013912-1480611632059-RWBYvolume4episode5Thumbnail.jpg","duration":758,"publication_date":"2016-12-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-07-n8a6va","changefreq":"weekly","video":[{"title":"2016:E7 - The A-Team - #07","description":"Join Cole Gallian, Kim Newman, Austin Hardwick, and Stan Lewis as they discuss Pokemon, Gainax, Drifters, and more on this week's Fan Service!\n\n\n\nThis episode originally aired December 2, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-07-n8a6va","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a853f1dd-3513-40e7-88c4-77c052fa51bc/sm/2369885-1480743596944-FS07_-_TEMP_THUMB.jpg","duration":4331,"publication_date":"2016-12-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-drunk-miles","changefreq":"weekly","video":[{"title":"2016:E5 - Fatal Frame #5 - Drunk Miles","description":"Miles is drunk.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-drunk-miles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a569055-e898-46aa-a0c3-f9bfacca1258/sm/2013912-1480710477987-BC_FATALFRAMETHUMB_RTThumb_Pt5.png","duration":4325,"publication_date":"2016-12-02T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-77-al9ah8","changefreq":"weekly","video":[{"title":"S7:E77 - Misogynist Santa - #77","description":"This week Jeremy hangs a wreath on his genitals, Maggie learns about My Little Pony and everyone finds out the truth behind Santa Claus. This episode originally aired December 1, 2016 and is sponsored by Casper (http://bit.ly/2gvkvon) and MVMT Watches (http://bit.ly/2fN1Otc)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-77-al9ah8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/450452f3-8dd1-4d07-8cb1-ca91a188507e/sm/2013912-1480700348577-ots_77_thumb.jpg","duration":2503,"publication_date":"2016-12-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-surgeon-simulator-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S4:E14 - Surgeon Simulator in Real Life - Behind the Scenes","description":"Blood. Guts. Glory. What a mess...","player_loc":"https://roosterteeth.com/embed/immersion-season-4-surgeon-simulator-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba504e45-5f35-4d54-9be5-1a48aeba5a89/sm/2013912-1480530614522-SurgeonSimBTS_02c.png","duration":536,"publication_date":"2016-12-01T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-surgeon-simulator-in-an-ambulance-featuring-gavin-and-michael","changefreq":"weekly","video":[{"title":"S4:E13 - Surgeon Simulator in an Ambulance - Featuring Gavin and Michael","description":"Can Gavin and Michael perform surgery inside a moving ambulance? Watch the Behind the Scenes! Thank you to Austin Film Society for allowing us to shoot on location.","player_loc":"https://roosterteeth.com/embed/immersion-season-4-surgeon-simulator-in-an-ambulance-featuring-gavin-and-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0924977-bf7f-4c65-9f68-6f1bac487fcd/sm/2013912-1480530560949-SurgeonSimFIRST_03.png","duration":384,"publication_date":"2016-12-01T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-moving-out","changefreq":"weekly","video":[{"title":"2016:E32 - Moving Out!","description":"After two and a half years at the main RT offices, Animation says goodbye to Stage 5 and moves into their own brand new space!","player_loc":"https://roosterteeth.com/embed/rt-life-2016-moving-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6503481-5e0f-4902-b236-88cf07960d42/sm/2013912-1480536627585-AnimMove_06.png","duration":204,"publication_date":"2016-12-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-10-08-akaa","changefreq":"weekly","video":[{"title":"2016:E10 - Still Open #10","description":"2016:E10 - Still Open #10","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-10-08-akaa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90603019-3caa-4dea-9489-d6053bd914b4/sm/2013912-1480530143272-AO10_-_PS_-_THUMB.jpg","duration":817,"publication_date":"2016-12-01T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-surgeon-simulator-in-real-life","changefreq":"weekly","video":[{"title":"S4:E12 - Surgeon Simulator in Real Life","description":"Gavin and Michael must operate on a familiar face before blood loss kills their patient in this Surgeon Simulator Immersion. Watch the Bonus Episode featuring Gavin and Michael performing another surgery, this time in an ambulance!","player_loc":"https://roosterteeth.com/embed/immersion-season-4-surgeon-simulator-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2e4f7c7-2b21-4e52-9467-97ae6a4e7810/sm/2013912-1480523159441-SurgeonSimMain_09b.png","duration":716,"publication_date":"2016-11-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-10-apa9aw","changefreq":"weekly","video":[{"title":"2016:E10 - My Brother Tried to Get Me Evicted - #10","description":"Join Barbara Dunkelman, Ashley Jenkins, Aaron Marquis, and Lynn Marquis as they discuss hitting puberty, terrible things you did to your siblings, and how to deal with a moocher. This episode is sponsored by MVMT Watches (http://bit.ly/2g6rLUx) and HelloFresh (http://bit.ly/2dpEq8M)","player_loc":"https://roosterteeth.com/embed/always-open-2016-10-apa9aw","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dd10662-14fa-4ad3-98e4-f729f56c5e37/sm/2013912-1480529491009-AO10_-_THUMB.jpg","duration":4070,"publication_date":"2016-11-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-404-post-show-ba8daa","changefreq":"weekly","video":[{"title":"2016:E46 - Podcast #404 Post Show - Foot Anal","description":"RT Discusses When Porn Doesn't Work Anymore","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-404-post-show-ba8daa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e2534be-871e-4abb-860a-5fb223701b38/sm/2013912-1480439274734-rtp404_-_PS_-_THUMB.jpg","duration":1245,"publication_date":"2016-11-30T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-404-ai7dgu","changefreq":"weekly","video":[{"title":"2016:E404 - Gavin's Porta Potty Proposal - #404","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Burnie Burns as they discuss Gavin's strange porta potti proposal and is robot sex cheating? This episode originally aired on November 28, 2016, sponsored by Braintree (http://bit.ly/1qLWDxR), Harry's (http://hrys.co/1KozljX), and Tipsy Elves (http://bit.ly/1CBZ1fa)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-404-ai7dgu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c0275c3-59a9-486c-95ea-9180b0b8ddd9/sm/2013912-1480439359466-rtp404_-_THUMB.jpg","duration":5660,"publication_date":"2016-11-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-chris-cooks-fish","changefreq":"weekly","video":[{"title":"2016:E42 - Chris Cooks Fish","description":"Chris does his best to explain (and defend) his method of cooking fish. It's gross, sure, but mostly just really confusing.\n\n\n\n\n\n\n\nAudio from Rooster Teeth Podcast #387\n\n\n\n\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-chris-cooks-fish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c2b1049-372f-44fa-bb49-0c1a95a220a2/sm/2013912-1479921199984-rtaa252tn.jpg","duration":96,"publication_date":"2016-11-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-pellet-vs-candle-challenge-the-slow-mo-guys","changefreq":"weekly","video":[{"title":"S1:E69 - Air Pistol Vs Candle Challenge - The Slow Mo Guys","description":"Gav and Dan are always up for a challenge. Today, they use the most inaccurate air pistol to put out a flame from about... 3 metres away. Pretty hardcore. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-pellet-vs-candle-challenge-the-slow-mo-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75a68480-ede8-4bcb-b51b-8b120858b8c0/sm/82-1480375572635-Flameshot.jpg","duration":461,"publication_date":"2016-11-28T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-0-4","changefreq":"weekly","video":[{"title":"2016:E4 - Animal Relationships - #0.4","description":"Some animals keep mates but do they ever break up?  And, why do we have no more than 4 limbs?  Sally Le Page clarifies the dumbest science questions Gus can think of in the fourth pilot episode of Let Me Clarify.","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-0-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03f1516e-32dc-4431-b6f8-b50782a0393e/sm/2013912-1479920705721-LMC4_-_THUMB.jpg","duration":770,"publication_date":"2016-11-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-you-don-t-win-an-award-06","changefreq":"weekly","video":[{"title":"2016:E6 - You Don't Win An Award - #06","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, Yssa Badiola, Cole Gallian, Andrea Caprotti, and special guest Shannon McCormick as they discuss Avatar: The Last Airbender, Thunderbolt Fantasy, Yuri on Ice, and more on this week's Fan Service.\n\n\n\n\n\nThis episode originally aired November 25, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-you-don-t-win-an-award-06","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0dcd3c3-09c2-43e8-8476-0125e4cc7269/sm/2013912-1479920790903-fanservice_thumb_006.png","duration":5923,"publication_date":"2016-11-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-4-big-sexy","changefreq":"weekly","video":[{"title":"2016:E4 - Fatal Frame #4 - Big Sexy","description":"Special guest Joe Nicolosi joins Kyle and Miles and regales the both of them with a story about how he met \"The guy\" during his honey moon in the virgin islands. A man that can get an entire band to stop playing if he does not like the music. A guy who could convince you without a doubt that you are in fact Cornholio. That man is the island spirit and entrepreneur, \"Bigsexy\".","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-4-big-sexy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4955a41-6e08-4511-9361-ff67e603a6fd/sm/2013912-1479938885180-BC_FATALFRAMETHUMB_RTThumb_Pt4.png","duration":3453,"publication_date":"2016-11-25T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-76-a08afa","changefreq":"weekly","video":[{"title":"S7:E76 - Forever Alone - On The Spot: A Thanksgiving Special","description":"The holidays are a time to reflect upon the year and the people who have filled it with laughter, love and joy. Since none of those have to do with On The Spot, check out some of our favorite moments from this season so far.\n\n\n\n\n\nSponsored by DIFF Eyewear (http://bit.ly/2fGnwyE) and MVMT Watches (http://bit.ly/2fN1Otc)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-76-a08afa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bf0d3ec-38f7-4c4c-8f89-3969dc8c843b/sm/2013912-1479931640358-ots_thanksgiving_thumb.jpg","duration":2366,"publication_date":"2016-11-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-rooster-teeth-2016-holiday-music-video","changefreq":"weekly","video":[{"title":"S7:E35 - Rooster Teeth 2016 Holiday Music Video","description":"Sing along with your favorite Rooster Tooths as we celebrate the holidays once again.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-rooster-teeth-2016-holiday-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eafc1ce-d7f2-4909-a7a4-50eca1b73180/sm/2013912-1479928538541-HolidayMerch_03_1.png","duration":178,"publication_date":"2016-11-25T06:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-destructibles-in-real-life-featuring-adam-and-jeremy","changefreq":"weekly","video":[{"title":"S4:E10 - Destructibles in Real Life - Featuring Adam and Jeremy","description":"Adam and Jeremy must race against time to finish the Destrucibles course. But, what happens when on is given real world objects and the other video game objects?","player_loc":"https://roosterteeth.com/embed/immersion-season-4-destructibles-in-real-life-featuring-adam-and-jeremy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6657aa7-6dc6-4efd-8cac-de5ca6b83c16/sm/2013912-1479500900937-DestructiblesFIRST_01b.png","duration":379,"publication_date":"2016-11-24T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-destructibles-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S4:E11 - Destructibles in Real Life - Behind the Scenes","description":"Camera. Art. Lighting. FX. How do all the departments communicate and work together to create such an elaborate set for the latest Immersion?","player_loc":"https://roosterteeth.com/embed/immersion-season-4-destructibles-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25d44cac-61d2-4402-8009-bc15ed416a19/sm/2013912-1479500909469-DestructiblesBTS_01.png","duration":536,"publication_date":"2016-11-24T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-thanksgiving-dinner-potluck","changefreq":"weekly","video":[{"title":"2016:E31 - Thanksgiving Dinner Potluck ","description":"Chris decides to bring an extra special dish to the Thanksgiving potluck, and the Live Action crew discuss what they're thankful for.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-thanksgiving-dinner-potluck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eee33a07-e85d-4649-bbc4-f73fac15cf8a/sm/2013912-1479853852283-RoosterTeethsgiving_14b.png","duration":144,"publication_date":"2016-11-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-9-ba75af","changefreq":"weekly","video":[{"title":"2016:E9 - Still Open #9","description":"Join Barbara Dunkelman, Chelsea Harfoush, Mica Burton, and Mariel Salcedo for a discussion about the election results. Warning: personal opinions shared openly.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-9-ba75af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e79cba7d-26d7-414b-a4ee-ef5092880828/sm/2013912-1479856378025-AO9_-_PS_-_THUMB.jpg","duration":1389,"publication_date":"2016-11-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-destructibles-in-real-life","changefreq":"weekly","video":[{"title":"S4:E9 - Destructibles in Real Life","description":"Real world objects vs video game objects. Gavin and Michael must smash, crash and demolish their way through famous props from games like Half Life 2, Zelda and Rainbow Six: Siege. Watch the Bonus Episode featuring Adam and Jeremy!","player_loc":"https://roosterteeth.com/embed/immersion-season-4-destructibles-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/458f59dd-5ba8-4c57-8aaa-974112fd7c93/sm/2013912-1479500892037-DestructiblesMain_02.png","duration":630,"publication_date":"2016-11-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-9-0-ag6df","changefreq":"weekly","video":[{"title":"2016:E9 - ¯\\_(ツ)_/¯ - #9","description":"Join Barbara Dunkelman, Mica Burton, Chelsea Harfoush, and Mariel Salcedo as they discuss emojis, if scissoring works, and their biggest insecurities. This episode is sponsored by DIFF Eyewear (http://bit.ly/2eHistJ) and MVMT Watches (http://bit.ly/2fVwlYH)","player_loc":"https://roosterteeth.com/embed/always-open-2016-9-0-ag6df","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54b242bb-f0fd-45ea-9303-4b89ca502976/sm/2013912-1479856283614-AO9_-_THUMB.jpg","duration":3862,"publication_date":"2016-11-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-403-post-show-b7a5al","changefreq":"weekly","video":[{"title":"2016:E45 - Podcast #403 Post Show","description":"Join Gus Sorola, Gavin Free, Ashley Jenkins, Barbara Dunkelman, and Burnie Burns as they discuss Burnie being late, the human body, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-403-post-show-b7a5al","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a11e9801-a07d-49d1-9ba0-385c25aa1dc1/sm/2013912-1479832580671-rtp403_-_PS_-_THUMB.jpg","duration":993,"publication_date":"2016-11-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-behind-the-scenes-bullets-vs-propellers","changefreq":"weekly","video":[{"title":"S1:E68 - Behind The Scenes: Bullets vs Propellers","description":"Take a behind the scenes look at the making of the Slow Mo Guy’s Bullets vs Propeller video. Gavin and Dan ventured out to the desert to film some bullets in slow motion. Cheers to EA for sponsoring this video. Check out Battlefield 1 at http://www.battlefield.com","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-behind-the-scenes-bullets-vs-propellers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d20da797-3796-4edd-8f9c-b6e963bb743e/sm/2013912-1479765826420-SMGVegasBTS_01b_1.png","duration":207,"publication_date":"2016-11-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-403-8-dfh7a","changefreq":"weekly","video":[{"title":"2016:E403 - Gavin Free Can’t Say No - #403","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Burnie Burns, and special guest Zachary Levi as they discuss not responding to emails, Snapchat spectacles, the NES Classic Edition, and more on this week's RT Podcast! This episode originally aired on November 22, 2016, sponsored by Blue Apron (http://cook.ba/2dXsUgf), NatureBox (http://bit.ly/2fMco6d), Squarespace (http://bit.ly/2f0G0xM)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-403-8-dfh7a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7496d76-7187-4c47-88ab-8823aff2766c/sm/2013912-1479834119230-rtp403_-_THUMB.jpg","duration":5862,"publication_date":"2016-11-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-251","changefreq":"weekly","video":[{"title":"2016:E41 - Barbara Pun-kelman V","description":"Yeah, it's another one of these things. At this point we're probably just enabling Barbara to make more puns, so feel free to grab some pitchforks and torches and form a mob of some kind. Bring it.\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Johnathan Floyd Andrew Lhotsky","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-251","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03aa85c7-e1b7-4331-b05b-606d84323dcd/sm/2013912-1479412002006-rtaa251tn.jpg","duration":95,"publication_date":"2016-11-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-bullets-vs-propeller-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E67 - Bullets vs Propeller in Slow Motion","description":"Gav and Dan venture out to the desert to film some bullets. Make sure you watch in HD for maximum bullet shockwave action! Check out game at battlefield.com","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-bullets-vs-propeller-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93297498-14c8-4405-9caf-26081952a55a/sm/82-1479750854112-battlefieldthumb.jpg","duration":418,"publication_date":"2016-11-21T10:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-kangaroo-attack","changefreq":"weekly","video":[{"title":"S7:E33 - Kangaroo Attack!","description":"When Burnie releases a killer Kangaroo at Rooster Teeth, all hell breaks loose and the employees must find a way to trap the beast or be eaten alive.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-kangaroo-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4b21d2-c0d7-4278-8ae8-6771ff4d7e11/sm/2013912-1479515568903-KillerKangaroo_03.png","duration":290,"publication_date":"2016-11-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-75-va6jf9","changefreq":"weekly","video":[{"title":"S7:E7 - For the Win #75","description":"Is that  Golden Gus in your pants or are you just happy to see me?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-75-va6jf9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73e81020-8b70-4dc6-ae53-ab914f5420eb/sm/2013912-1479499062604-ots_75ftw_thumb.jpg","duration":397,"publication_date":"2016-11-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-0-3","changefreq":"weekly","video":[{"title":"2016:E3 - Dogs Look Like Their Owners? - #0.3","description":"Are you and your terrier twins? There's a reason people say pets look like their owners. Biology pro Sally Le Page breaks down that theory.  And, why the hell do we have wisdom teeth if we pull them out anyway?","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-0-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3690cd11-4309-4f83-a005-56740edce320/sm/2013912-1479511562055-LMC3_-_THUMB.jpg","duration":643,"publication_date":"2016-11-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-4-0-f788s","changefreq":"weekly","video":[{"title":"V4:E4 - Volume 4, Chapter 4: Family","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-4-0-f788s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13d4fee4-c96e-41f6-92b8-786efb41d7ce/sm/1769531-1479529319211-RWBYvolume4episode4Thumbnail.jpg","duration":987,"publication_date":"2016-11-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-2","changefreq":"weekly","video":[{"title":"2016:E5 - Sometimes People Have To Die - #05","description":"Join Gray Haddock, Miles Luna, Yssa Badiola, Cole Gallian, Austin Hardwicke and special guests Michael and Lindsay Jones as they discuss Dragon Ball Z, Yu-Gi-Oh, Drifters, and more on this week's Fan Service!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode originally aired November 18, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fc66e8f-8086-4b3a-a952-aaeeb0ce9e0e/sm/690915-1479564490954-Fan_Service_06_-_TEMP_THUMB.jpg","duration":4333,"publication_date":"2016-11-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-november-18-2016-behind-the-scenes-at-extra-life-and-immersion","changefreq":"weekly","video":[{"title":"2016:E21 - November 18, 2016: Behind the Scenes at Extra Life and Immersion","description":"Join Burnie for a peek into what went on behind the scenes at Extra Life and a recent Immersion shoot.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-november-18-2016-behind-the-scenes-at-extra-life-and-immersion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23c22af2-d976-4334-aa18-5177852638a5/sm/21-1479515312921-vlog_thumb_11-18-16.jpg","duration":545,"publication_date":"2016-11-19T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-3-demon-tag","changefreq":"weekly","video":[{"title":"2016:E3 - Fatal Frame #3 - Demon Tag","description":"What's the most horrifying kind of ghost? Visually I mean. Could it be one that has a broken spine and is forever haunting you bent over backwards? Could it be one that had it's eyes gouged out? What about the horrifying visage of someone who hung themselves?  Those ghouls are pedestrian and mundane compared to the ghost we face off with in this episode. Try not to lose your head when you see it.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-3-demon-tag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aef097de-b4af-4aea-9898-8820909df53a/sm/2013912-1479496126411-BC_FATALFRAMETHUMB_RTThumb_Pt3.png","duration":3308,"publication_date":"2016-11-18T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-75-b7s5ak","changefreq":"weekly","video":[{"title":"S7:E75 - Did I Make You Gay? - #75","description":"On The Spot is not conversion therapy. On The Spot is immersion therapy. Viewers beware. This episode originally aired November 17, 2016 and is sponsored by Dollar Shave Club (http://bit.ly/2ermjer) MVMT Watches (http://bit.ly/2fN1Otc) ","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-75-b7s5ak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/017f94fd-ea81-49fe-9338-3e3eba23b602/sm/2013912-1479498785344-ots_75_thumb.jpg","duration":2249,"publication_date":"2016-11-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-resident-evil-in-real-life-featuring-lindsay-and-mica","changefreq":"weekly","video":[{"title":"S4:E7 - Resident Evil in Real Life - Featuring Lindsay and Mica","description":"Lindsay and Mica utilize their charm and wits to fight off their zombie attackers. But will it be enough to survive this special Immersion?","player_loc":"https://roosterteeth.com/embed/immersion-season-4-resident-evil-in-real-life-featuring-lindsay-and-mica","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec72fd76-e4b1-461a-be53-2ac792e0a840/sm/2013912-1479157695473-REFIRST_01.png","duration":583,"publication_date":"2016-11-17T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-resident-evil-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S4:E8 - Resident Evil in Real Life - Behind the Scenes","description":"Watch Burnie and the crew of Immersion squirm as they create a zombie apocalypse from scratch.","player_loc":"https://roosterteeth.com/embed/immersion-season-4-resident-evil-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0455da2-8aa0-4e5d-98bb-e9e941ca3041/sm/2013912-1479157761590-REBTS_04.png","duration":394,"publication_date":"2016-11-17T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-8-v52j9s","changefreq":"weekly","video":[{"title":"2016:E8 - Still Open #8","description":"We’re still open for you, FIRST members! Join us for this episode of Still Open, where Barbara Dunkelman, Josh Flanagan, Ashley Jenkins, and Mariel Salcedo discuss getting back with an ex.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-8-v52j9s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88261f62-bdae-4637-9b35-09fee534ff80/sm/2013912-1479318606530-AO8_-_PS_-_THUMB.jpg","duration":897,"publication_date":"2016-11-17T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-vegemite-challenge","changefreq":"weekly","video":[{"title":"2016:E30 - Vegemite Taste Test ","description":"Chris decides to help his coworkers prepare for RTX Sydney by having them sample the well-known, much-loved, and often-feared Australian favorite: vegemite.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-vegemite-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77540638-fc21-41be-a73b-c6033901d5c8/sm/2013912-1479329363127-VegemiteChallenge_02b.png","duration":95,"publication_date":"2016-11-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-resident-evil-in-real-life","changefreq":"weekly","video":[{"title":"S4:E6 - Resident Evil in Real Life","description":"In this episode of Immersion, our Lab Rats must survive a gauntlet of zombies and dark corridors as they test the many camera perspectives from the Resident Evil franchise. Watch the Bonus Episode featuring Lindsay and Mica!","player_loc":"https://roosterteeth.com/embed/immersion-season-4-resident-evil-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00496ec8-9d35-4687-b9d2-1190df017664/sm/2013912-1479157616569-RE_05.png","duration":768,"publication_date":"2016-11-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-8-gs6j9s","changefreq":"weekly","video":[{"title":"2016:E8 - Am I Into Girls, Too? - #8","description":"Join Barbara Dunkelman, Ashley Jenkins, Josh Flanagan, and Mariel Salcedo as they discuss about the most romantic things they’ve done, getting manscaped, and open relationships.\n\n\n\n\n\n\n\n\n\nThis episode is sponsored by Crunchyroll (http://bit.ly/2dpCuNF) and Finders Keepers Creations (http://bit.ly/2d4j54G)","player_loc":"https://roosterteeth.com/embed/always-open-2016-8-gs6j9s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f43d00ec-bdde-4b3d-863a-2069dc386bf7/sm/2013912-1479317113267-AO8_-_THUMB.jpg","duration":3245,"publication_date":"2016-11-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-402-post-show-dvt53a","changefreq":"weekly","video":[{"title":"2016:E44 - Podcast #402 Post Show - Burnie’s Xbox Tragedy","description":"Join Ashley Jenkins, Gavin Free, Chris Demarais, and Burnie Burns as they discuss thieves stealing more than Burnie’s cash, dislikes don’t mean a thing, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-402-post-show-dvt53a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d99c600b-3380-4b95-b1d5-b5d835c19495/sm/2013912-1479237892960-rtp402_-_PS_-_THUMB.jpg","duration":1053,"publication_date":"2016-11-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-hydraulic-press-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E66 - Hydraulic Press in Slow Motion","description":"Gav and Dan find themselves with access to a Hydraulic Press. Time to pay tribute. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-hydraulic-press-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9fe06cd-e46e-43c3-860b-eae45e2206c0/sm/82-1479323301317-Screen_Shot_2016-11-16_at_13.07.23.jpg","duration":200,"publication_date":"2016-11-16T13:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-402-ba85vs","changefreq":"weekly","video":[{"title":"2016:E402 - Burnie Ticks Off Millennials… Again - #402","description":"Join Ashley Jenkins, Gavin Free, Chris Demarais, and Burnie Burns as they discuss millennials not having kids, the ACT, Walking Dead human skulls, “doing the Gus,” and more on this week's RT Podcast! This episode originally aired on November 14, 2016, sponsored by Audible (http://adbl.co/2bgBJkt), MeUndies (http://bit.ly/2aGm9yg), and Warby Parker (http://bit.ly/2fAjp7N).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-402-ba85vs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb3ee6a6-1777-4294-916b-3af11b14d233/sm/2013912-1479229423627-rtp402_-_THUMB.jpg","duration":6629,"publication_date":"2016-11-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-250","changefreq":"weekly","video":[{"title":"2016:E40 - The RTAA Mixdown","description":"It's the 250th RTAA episode! As is tradition, we did a weird thing instead of the usual business. This time the gang gets together to make some beautiful music while also making obscure references to the show. Thanks for watching 250 of these things!\n\n\n\n\n\n\n\nDirected by Jordan CwierzAnimated by Jordan BattleMusic by David Levy","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-250","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7bbaebd-8ee8-40f8-b623-752115a30c48/sm/2013912-1478895564011-rtaa250tn.jpg","duration":110,"publication_date":"2016-11-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-74-po742a","changefreq":"weekly","video":[{"title":"S7:E6 - For the Win #74","description":"Turns out you don't actually have to say the jokes to say the jokes. Watch and learn.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-74-po742a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5a8c962-54a2-4d3d-8eeb-f410eafc465f/sm/2013912-1478885248466-ots_74ftw_thumb.jpg","duration":505,"publication_date":"2016-11-12T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-do-animals-get-high-0-2","changefreq":"weekly","video":[{"title":"2016:E2 - Do Animals Get Drunk?? - #0.2","description":"Do bees like a good brew?  What insect is a junkie?  And, where does eye color come from?  Biology expert Sally Le Page has the answer to the most stupid scientific questions Gus can dream up.","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-do-animals-get-high-0-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/876f39e5-a47f-43bf-9335-e199cb3c4623/sm/2013912-1478903252149-LMC2_-_THUMB_v2.jpg","duration":618,"publication_date":"2016-11-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-04-b8a4kf","changefreq":"weekly","video":[{"title":"2016:E4 - The Reverse, Reverse, Reverse Harem - #04","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, Yssa Badiola, Austin Hardwicke and Cole Gallian as they discuss Death Note Advertisements, Kiss Him Not Me, Sports Anime  and more on this week's Fan Service!\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode originally aired November 11, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-04-b8a4kf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9153917-d762-4301-aeaa-c441397d9b1f/sm/2013912-1478905008397-FS04_-_TEMP_THUMB.jpg","duration":4630,"publication_date":"2016-11-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-2","changefreq":"weekly","video":[{"title":"2016:E2 - Fatal Frame #2 - Ankle Biters","description":"Miles and Kyle are hot on the trail of the missing research team. Will the regret what they find?","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02781cad-f358-4871-92f7-f9b20f5da037/sm/2013912-1478881343114-BC_FATALFRAMETHUMB_RTThumb_Pt2.png","duration":2743,"publication_date":"2016-11-11T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-74-b8s4ca","changefreq":"weekly","video":[{"title":"S7:E74 - I DON'T HAVE A PROBLEM! - #74","description":"Miles has a cookie problem. You know it. I know it. This episode of On The Spot we confront him on it. Fair warning, when it finally happens things do get a little projectile-like. This episode originally aired November 11, 2016 and is sponsored by NatureBox (http://bit.ly/2fIcY5j) and Trunk Club (http://bit.ly/2930z9x)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-74-b8s4ca","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4bd184b-2161-4aba-9709-c8d693df94f4/sm/2013912-1478885334186-ots_74_thumb.jpg","duration":2476,"publication_date":"2016-11-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-hitman-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S4:E5 - Hitman in Real Life - Behind the Scenes","description":"Two hundred extras, over 20 cameras, and 4 idiot lab rats… How did we pull it off? Thanks to all our RTX attendees for making this episode possible! Thumbnail photo by Connor MacRae.","player_loc":"https://roosterteeth.com/embed/immersion-season-4-hitman-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99291822-7dab-439e-bc3d-2204d872bfe3/sm/2013912-1478624057166-HitmanBTS_01.png","duration":472,"publication_date":"2016-11-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-hitman-in-real-life-featuring-chris-and-bruce","changefreq":"weekly","video":[{"title":"S4:E4 - Hitman in Real Life - Featuring Chris and Bruce","description":"Who is the better spy? Chris or Bruce?","player_loc":"https://roosterteeth.com/embed/immersion-season-4-hitman-in-real-life-featuring-chris-and-bruce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/770cb046-d265-4468-9e72-0ae618e653ac/sm/2013912-1478623977439-HitmanFIRST_02b.png","duration":436,"publication_date":"2016-11-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-head-shave","changefreq":"weekly","video":[{"title":"2016:E29 - Shaved Head Extra Life Challenge","description":"Burnie decides to include Samm and Nick in the Extra Life tradition of shaving his coworker's heads, and things take an artistic turn. Tune in to the Extra Life livestream on November 12 to watch and donate to charity.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-head-shave","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89faaff8-72c5-4de1-a120-436b9097b02c/sm/2013912-1478732519320-HeadShave_02b.png","duration":139,"publication_date":"2016-11-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-7-p96f4s","changefreq":"weekly","video":[{"title":"2016:E7 - Still Open #7","description":"We’re still open for you, FIRST members! Join us for this episode of Still Open, where Barbara Dunkelman, Mica Burton, Bethany Feinstein and Mariel Salcedo discuss their worst car experiences.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-7-p96f4s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b090c80-f4f2-4701-900f-c53e02c7b7a7/sm/2013912-1478795352139-AO7_-_PS_-_THUMB.jpg","duration":763,"publication_date":"2016-11-10T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-hitman-in-real-life","changefreq":"weekly","video":[{"title":"S4:E3 - Hitman in Real Life","description":"On the Season Premiere of Immersion, Michael and Gavin must take on multiple disguises to sneak through a crowded ballroom and assassinate Congressman Mike Hawk. Thanks to all our RTX attendees for making this episode possible! Watch the Bonus Episode featuring Chris and Bruce!","player_loc":"https://roosterteeth.com/embed/immersion-season-4-hitman-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01b4a070-6d0e-4ae3-a53c-0cbb844bc0b1/sm/2013912-1478623698106-Hitman_06b.png","duration":735,"publication_date":"2016-11-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-7-oy63sh","changefreq":"weekly","video":[{"title":"2016:E7 - Is Young Love Stupid? - #7","description":"Join Barbara Dunkelman, Mica Burton, Bethany Feinstein, and Mariel Salcedo as they discuss the election, being in love, and happy cries. Submit your questions for our segments at AlwaysOpen@roosterteeth.com\n\n\n\n\n\n\n\n\n\n\n\nThis episode was recorded November 8, 2016 and is sponsored by HelloFresh (http://bit.ly/2dpEq8M) and DIFF Eyewear (http://bit.ly/2eHistJ)","player_loc":"https://roosterteeth.com/embed/always-open-2016-7-oy63sh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7665591c-a52b-4788-8394-d4d7f46146a0/sm/2013912-1478712924005-AO7_-_THUMB.jpg","duration":2468,"publication_date":"2016-11-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-401-post-show-pu7f4s","changefreq":"weekly","video":[{"title":"2016:E43 - Podcast #401 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss sleeping at work, Immersion, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-401-post-show-pu7f4s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da6a04b3-1068-41fa-bc86-83c6ea21f471/sm/2013912-1478634287994-rtp401_-_PS_THUMB.jpg","duration":814,"publication_date":"2016-11-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-401-li5ecf","changefreq":"weekly","video":[{"title":"2016:E401 - The Clean and the Dead - #401","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss being buried, the worst things to clean up, the 2016 election, and more on this week's RT Podcast! This episode originally aired on November 7, 2016, sponsored by Casper (http://bit.ly/2bgC0nt), Harry’s (http://bit.ly/2fwjhsS), Trunk Club (http://bit.ly/29tyrJm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-401-li5ecf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5786cdb-7256-4e12-bdd8-a9eba3640916/sm/2013912-1478623315916-rtp401_-_THUMB.jpg","duration":6306,"publication_date":"2016-11-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-bar-fights-gay-bars","changefreq":"weekly","video":[{"title":"2016:E39 - Bar Fights & Gay Bars","description":"Everyone loves bars, especially stories about bars! Burnie tells us about the time Matt was pretty oblivious about going to a gay bar, and about a friend who just loved getting into bar fights. Crazy kids!\n\nDirected by Jordan CwierzAnimated by Quinn Weston & Gabe Silva\n\n\n\n\n\nAudio from Off Topic podcast #27","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-bar-fights-gay-bars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6302bd5a-bc03-4731-a991-d31d86f4a886/sm/2013912-1478297871529-rtaa249tn.jpg","duration":107,"publication_date":"2016-11-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-what-your-facial-hair-says-about-you","changefreq":"weekly","video":[{"title":"S7:E32 - What Your Facial Hair Says about You","description":"Facial hair does a lot more than keep your face warm.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-what-your-facial-hair-says-about-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0245d03-f333-4933-ae37-dd9e865d45f9/sm/2013912-1478198340335-AYFH_02.png","duration":102,"publication_date":"2016-11-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-73-j75ah4","changefreq":"weekly","video":[{"title":"S7:E5 - For the Win #73","description":"A lot of actors, early on in their career, really neglect to put the time in on their penis work and it really shows up in their performances later unfortunately.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-73-j75ah4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae0ffbad-143c-4a65-8175-eaa68d4909c1/sm/2013912-1478283036503-ots_73ftw_thumb_1.jpg","duration":455,"publication_date":"2016-11-05T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-me-clarify-2016-titanic-blame-it-on-water-01","changefreq":"weekly","video":[{"title":"2016:E1 - Why Ice Floats on Water - #0.1","description":"Ever wonder why ice floats?  Or, why animals don't cook their food?  Gus asks really, really bad scientific questions and it's up to biology expert Sally Le Page to clear the air and the nonsense. Let Me Clarify is brought to you by Audible.com. Get a free audiobook with a 30 day free trial at http://www.audible.com/letme.","player_loc":"https://roosterteeth.com/embed/let-me-clarify-2016-titanic-blame-it-on-water-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d76b256-e620-49c6-80bd-3d07c3dfc6e6/sm/2013912-1478313026019-LMC1_-_THUMB.jpg","duration":704,"publication_date":"2016-11-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-3-os75ed","changefreq":"weekly","video":[{"title":"V4:E3 - Volume 4, Chapter 3: Of Runaways and Stowaways","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-3-os75ed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af7bade2-1b56-4d13-b2ea-e7ce09b66c09/sm/2013912-1478287433851-RWBYvolume4episode3Thumbnail_1.jpg","duration":1097,"publication_date":"2016-11-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016","changefreq":"weekly","video":[{"title":"2016:E3 - Stan-ime - #03","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, Yssa Badiola, Austin Hardwicke and Cole Gallian as they discuss Stan Lee Anime, Introductory Anime, Drifters and more on this week's Fan Service!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode originally aired November 04, 2016","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a683e9f-b51e-4d4c-a4bf-67d5309b9ab0/sm/690915-1478322837629-temp_thumbnail.png","duration":3875,"publication_date":"2016-11-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2016-fatal-frame-1","changefreq":"weekly","video":[{"title":"2016:E1 - Fatal Frame #1 ","description":"We're finally back! Brand new show, same old Miles and Kyle. Join us as we make our way through a mysterious mansion filled with terrifying ghosts as we look for our brother. It's not Luigi's Mansion it's Fatal Frame this week on Backwardz Compatible.   ","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2016-fatal-frame-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b2bfd4a-3c68-4217-ad98-6bffe7df153e/sm/2013912-1478274229148-BC_FATALFRAMETHUMB_RTThumb_Pt1.png","duration":3859,"publication_date":"2016-11-04T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-73-995-al0","changefreq":"weekly","video":[{"title":"S7:E73 - Hotel Room Fiasco! - #73","description":"If housekeeping walks in on you naked in your hotel room listening to music you clearly have one and only one option...JUST DANCE! This episode originally aired on October 3, 2016 and is sponsored by Dollar Shave Club (http://bit.ly/2ermjer) and Lyft (http://lft.to/2f9dGp6)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-73-995-al0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cf900e4-e6fe-442a-8a54-efd5a4b69f15/sm/2013912-1478282693926-ots_73_thumb_1.jpg","duration":2063,"publication_date":"2016-11-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-gus-performs-a-heist","changefreq":"weekly","video":[{"title":"2016:E28 - Gus Performs a Heist","description":"Thanks to PlayStation for sponsoring this video.\n\nGus joins Lawrence in LA to test out PlayStation's new VR experience, The London Heist. In the process, Gus comes face-to-face with some unusual characters and turns into a gun-wielding criminal. \n\n\n\n\n\nTo learn more about PSVR, visit https://playstation.com/psvr.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-gus-performs-a-heist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26ae6b82-9ca8-4219-b94a-ee4649d88685/sm/2013912-1478119911857-GusVR_01b.png","duration":202,"publication_date":"2016-11-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-6-98-fgso","changefreq":"weekly","video":[{"title":"2016:E6 - Still Open #6","description":"We’re still open for you, FIRST members! Join us for this episode of Still Open, where Barbara Dunkelman, Ashley Jenkins, Miles Luna and Mariel Salcedo discuss their worst toilet stories.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-6-98-fgso","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54935bc9-78c1-48f3-9fa5-09dfbf32d54f/sm/2013912-1478126532951-AO6_-_PS_-_THUMB.jpg","duration":1119,"publication_date":"2016-11-03T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-6-pf986s","changefreq":"weekly","video":[{"title":"2016:E6 - Getting Kinky - #6","description":"Join Barbara Dunkelman, Ashley Jenkins, Miles Luna, and Mariel Salcedo as they discuss their kinks, open relationships, and weird body hair! Submit your questions for our segments at AlwaysOpen@roosterteeth.com\n\n\n\nThis episode is sponsored by Casper (http://bit.ly/2d4iXlI) and Crunchyroll (http://bit.ly/2dpCuNF)","player_loc":"https://roosterteeth.com/embed/always-open-2016-6-pf986s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2d4dc64-cec0-421e-8348-3b4849d284d1/sm/2013912-1478107129020-AO6_-_THUMB.jpg","duration":3549,"publication_date":"2016-11-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-400-post-show-hdi7gs","changefreq":"weekly","video":[{"title":"2016:E42 - Podcast #400 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss podcast memories, Barbara eating herself, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-400-post-show-hdi7gs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1303a5c7-dbbd-4faf-8e90-78b471397972/sm/2013912-1478029076211-rtp400_-_PS_-_THUMB.jpg","duration":1314,"publication_date":"2016-11-02T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-voting-field-trip","changefreq":"weekly","video":[{"title":"2016:E27 - Voting Field Trip","description":"Chris, Aaron, Mariel, Jessica, and Becca take a quick break from work to go vote--and treat themselves to some delicious horchata.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-voting-field-trip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51dfd7d9-4915-4672-aa88-71ae1678d4fd/sm/2013912-1478014178741-Vote_01.png","duration":143,"publication_date":"2016-11-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-400-p8sklg","changefreq":"weekly","video":[{"title":"2016:E400 - Any Questions? - #400","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Halloween, Bluetooth on computers, plane incidents, and more on this week's RT Podcast! This episode originally aired on October 31, 2016, sponsored by Loot Crate (http://bit.ly/2f2ju6B) and Squarespace (http://bit.ly/290ucbK).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-400-p8sklg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ce0a05f-4a03-44f9-acef-0b6d8173780a/sm/2013912-1478017401536-rtp400_-_THUMB.jpg","duration":5952,"publication_date":"2016-11-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-scary-kids-scaring-kids","changefreq":"weekly","video":[{"title":"2016:E38 - Scary Kids Scaring Kids","description":"Burnie talks about how his kid loved to dress up as something scary for Halloween, and how one time he managed to scare the crap out of another kid, further proving that Superman might be the lamest superhero ever.\n\nDirected by Jordan CwierzAnimated by Beth Mackenzie\n\n\n\n\n\nAudio from Rooster Teeth Podcast #358","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-scary-kids-scaring-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad46db3f-5784-4274-b37b-d8a0b7f8ca44/sm/2013912-1477686397439-rtaa248tn.jpg","duration":75,"publication_date":"2016-10-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-leg-waxing-at-28-000-fps-the-slow-mo-guys","changefreq":"weekly","video":[{"title":"S1:E65 - Leg Waxing at 28,000fps - The Slow Mo Guys","description":"While most of the comments on these videos are about the gnarly slow motion footage, many have commented on how hairy Gav and Dan are. Only one thing for it. ","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-leg-waxing-at-28-000-fps-the-slow-mo-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c98e331b-ecf2-4cb7-bd0f-1ab2f374bfa0/sm/82-1477863973310-Screen_Shot_2016-10-30_at_16.43.00.jpg","duration":357,"publication_date":"2016-10-30T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-stranger-things-ahead-for-rooster-teeth","changefreq":"weekly","video":[{"title":"S7:E31 - Stranger Things Ahead for Rooster Teeth","description":"Burnie and the gang brainstorm how to add diversity to the workforce.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-stranger-things-ahead-for-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b260f5d5-4499-4fa6-8af7-9ca4dab5f92d/sm/2013912-1477713961388-StrangerMeetings_04b.png","duration":266,"publication_date":"2016-10-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-72","changefreq":"weekly","video":[{"title":"S7:E4 - For the Win #72","description":"Chris & Tom try to carve a pumpkin but get distracted by dinosaurs. Gus & Shannon raise the dead with the help of tuberculosis.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf58230f-01e8-4ade-9cce-a8638dd468ff/sm/2013912-1477682461200-ots_72ftw_thumb.jpg","duration":475,"publication_date":"2016-10-29T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-episode-2-075-shi","changefreq":"weekly","video":[{"title":"V4:E2 - Volume 4, Chapter 2: Remembrance","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-episode-2-075-shi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b37dec77-e9e5-4b2e-9f7f-31d473a7dc26/sm/2013912-1477693087230-RWBYvolume4episode2Thumbnail.jpg","duration":860,"publication_date":"2016-10-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-02","changefreq":"weekly","video":[{"title":"2016:E2 - Look At Us Like Strawberries- #02","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, Yssa Badiola, and Cole as they discuss what Stan thinks about in the Shower, Drifters, Yuri!!! On Ice and more on this week's Fan Service! This episode originally aired on October 28, 2016. ","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-02","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fef8139d-f0d1-4ff6-96fb-62e0d8a299f3/sm/2369885-1477718855987-FS02_-_TEMP_THUMB.jpg","duration":4673,"publication_date":"2016-10-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-october-28-2016-vlog-equipment-and-special-announcement","changefreq":"weekly","video":[{"title":"2016:E20 - October 28, 2016: Vlog Equipment and Special Announcement","description":"People often ask about the gear Burnie uses to create his vlogs, and he’s finally sharing his secrets. (Be sure to stick around for a big announcement at the end!)","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-october-28-2016-vlog-equipment-and-special-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1966808d-22ae-4d69-afe1-375cdbac81fd/sm/21-1477678233630-vlog_thumb_10-28-16.jpg","duration":605,"publication_date":"2016-10-28T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-72","changefreq":"weekly","video":[{"title":"S7:E72 - Saved by a Nipple - #72","description":"Mario Bros is a time honored family-friendly franchise that is a beloved staple of the Nintendo family. But, don't you kinda wanna see what Mario is packing? This episode originally aired October 27, 2016 and is sponsored by Trunk Club (http://bit.ly/1Hz4kLY) and Kit Kat (http://bit.ly/21HamBV)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba82dee7-a270-4bdf-bc13-5249cb4ddb78/sm/2013912-1477681089833-ots_72_thumb.jpg","duration":2568,"publication_date":"2016-10-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-5","changefreq":"weekly","video":[{"title":"2016:E5 - Still Open #5","description":"We’re still open for you, FIRST members! Join us for this episode of Still Open, where Barbara Dunkelman, Mica Burton, Ashley Jenkins, and Max Kruemcke discuss Halloween pranks.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f52ae38b-dd3c-4865-bac2-4e3b2e27d048/sm/2013912-1477583747175-AO5_-_PS_-_THUMB.jpg","duration":1077,"publication_date":"2016-10-28T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-crashing-an-1-100-drone","changefreq":"weekly","video":[{"title":"2016:E26 - Crashing a $1,100 Drone","description":"Burnie takes his brand new drone out for a test drive that ends in tragedy.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-crashing-an-1-100-drone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88bd7f3f-194a-4e24-b696-d1a6e73ccc92/sm/2013912-1477582372083-DroneCrash_03_1.png","duration":71,"publication_date":"2016-10-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-episode-2","changefreq":"weekly","video":[{"title":"2016:E238 - WE BEAT KIDS - Rec Room VR Gameplay","description":"I went to a Disk Golf company's website to find some thing funny for this description. I found out that they offer over 75 different models. Of disks. For disk golf. With names like \"Archon\", \"Mako\", \"Stud\", and \"Wraith\". I have no joke. I'm gonna go lay down.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcito\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec943088-e86e-4484-8fad-3380d14da3bc/sm/2371242-1478198633339-FH_Thumb_13_copy_18.jpg","duration":1151,"publication_date":"2016-11-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-43","changefreq":"weekly","video":[{"title":"2015:E45 - WE'RE NOT WORTH YOUR MONEY? - Funhaus Comments #43","description":"Hey, brother! What're you gonna do when Peake calmly takes off his hoodie, neatly folds it, shakes your hand like a gentleman, asks how your weekend was, complements your singlet, and comes for you?! \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69bdcad6-eed5-4374-9c25-3db2690bd985/sm/2371242-1478199978801-FH_Thumb_Template43.jpg","duration":593,"publication_date":"2016-11-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-hello-neighbor-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E33 - Hello Neighbor Gameplay - Fullhaus","description":"You could consider this our straight-to-DVD version of the movie Don't Breathe. Instead of blind dudes, we've got giant nightmare cartoon men.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-hello-neighbor-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbc74140-4773-472d-8aa8-6f3cc7f71386/sm/1533704-1478195371796-Hello_Neighbor_Fullhaus_Thumbnail.jpg","duration":4112,"publication_date":"2016-11-03T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-pewdie","changefreq":"weekly","video":[{"title":"2016:E235 - SELLING OUT WITH PEWDIEPIE - PewDiePie's Tuber Simulator Gameplay","description":"Wait. We're now making videos of us playing a game about making videos made by a gamer who is famous for making videos about playing games. I gotta make some changes in my life.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-pewdie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbb05576-9277-477c-8386-54ee480366a3/sm/2371242-1478021765315-FH_Thumb_13_copy_16.jpg","duration":687,"publication_date":"2016-11-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-mc-club","changefreq":"weekly","video":[{"title":"2016:E237 - MOTORCYCLE GANG BANG - GTA 5 Gameplay","description":"You know they're the toughest biker gang in Lost Santos because all of their motorcycles look like they're made out of candy.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-mc-club","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bd4e8aa-5224-450a-9411-8461ff016746/sm/2371242-1478125713911-GTA_Online_MC.png","duration":778,"publication_date":"2016-11-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-suicide","changefreq":"weekly","video":[{"title":"2016:E236 - SUICIDE GRIND - GTA 5 Gameplay","description":"Bet you all thought we were done with Dave Mira jokes! Ha! Strap in, p*!@s cuz we don't get rid of a bit until it's deader than... uh... deader than... some dead guy. CUE GUITAR RIFF!\n\n\n\n\n\n\n\n\n\n\n\n\n\nQuad Bike Grinding - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/kiew9RyA5EWDQ-fCYF5KYA#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-suicide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c7e2f5a-9bff-480b-b495-6d46f5246b54/sm/2371242-1478039758856-FH_Thumb_TemplateGTA.jpg","duration":555,"publication_date":"2016-11-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow94","changefreq":"weekly","video":[{"title":"2016:E94 - WE ARE GLORIOUS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/925c0b1f-0c69-424d-a44a-9be606a47f24/sm/2371242-1478023598173-postshowdan.png","duration":2513,"publication_date":"2016-11-01T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup94","changefreq":"weekly","video":[{"title":"2016:E94 - HOW TO NOT MASTURBATE - Dude Soup Podcast #94","description":"Support our sponsors! Battlefield 1 is available now for purchase and download at https://www.battlefield.com/And get one month of Crunchyroll Premium for free by going to http://www.crunchyroll.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDidn't this used to be a video game podcast? Anyway, today's topics include:00:00 Halloween stuff28:45 Battlefield 132:00 Titanfall 247:35 Masturbation59:08 \"Junior\". Yes, the movie from 1994.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b06ac309-c7e6-4cdf-82dc-332ccc962c70/sm/2371242-1478029239524-FH_Thumb_13_copy_17.jpg","duration":3844,"publication_date":"2016-11-01T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-battlefield","changefreq":"weekly","video":[{"title":"2016:E234 - LET'S PLAY WORLD WAR - Battlefield 1 Gameplay","description":"Click here to get Battlefield 1 available now: http://www.battlefield.comThanks to EA for sponsoring this video!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAs if the Let's Play guys didn't all despise each other enough, now they put guns in our hands and make us battle in the most pointless war in modern history.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-battlefield","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8055e741-cdb2-4c6c-845e-8b571bcdefae/sm/2371242-1477688393918-FH_Thumb_13_copy_11.jpg","duration":1128,"publication_date":"2016-10-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-2-twits-2-1","changefreq":"weekly","video":[{"title":"S2:E11 - Funhaus Dungeons and Dragons - Episode 11","description":"In which our heroes rejoin the fight, new paths are laid bare, Mirri gains some odd abilities, and Shattercock loses her top.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-2-twits-2-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eee2bb1b-a72a-4939-a7ca-2d149d7835b3/sm/2371242-1477689410572-Twits_and_Crits_Logo11.png","duration":3191,"publication_date":"2016-10-31T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-2","changefreq":"weekly","video":[{"title":"2016:E44 - TECHNOLOGY TAKES OVER? - Open Haus #89","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nI'm gonna be honest with you guys. I just got done with the drunk stream and I'm all out of funny. You try and be humorous after 46 minutes of \"Silk Stalkings\"! I f*$%ing dare you!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/398c510c-4898-4247-bba8-563db4de33d2/sm/2371242-1477711752684-Openhaus_Thumbnailoct.png","duration":617,"publication_date":"2016-10-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-5","changefreq":"weekly","video":[{"title":"2016:E44 - SCARED STIFF - Demo Disk Gameplay","description":"\"The Nightmare before Christmas\" was the last pure thing from my childhood unsullied by Funhaus. You've left me nothing. God-damn you all.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c088e41-0a8c-4135-bc80-40a2272eba16/sm/2371242-1477710525081-FH_Thumb_13_copy_14.jpg","duration":953,"publication_date":"2016-10-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-codbeta","changefreq":"weekly","video":[{"title":"2016:E233 - CALL OF DUTY IS DEAD - Call of Duty Infinite Warfare Gameplay","description":"Are you even allowed to play Call of Duty if you're not blasted out of your mind on your step-uncle's pot brownies?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-codbeta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90938937-be9c-4798-91d9-28a54a4c1821/sm/2371242-1477616874805-FH_Thumb_13_copy_10.jpg","duration":776,"publication_date":"2016-10-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-kill-thy-neighbor-hello-neighbor-gameplay","changefreq":"weekly","video":[{"title":"2016:E232 - KILL THY NEIGHBOR - Hello Neighbor Gameplay","description":"Can somebody please call The Humane Society and find Benson a more suitable home. The stress he feels during these Halloween gameplays borders on abuse.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-kill-thy-neighbor-hello-neighbor-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0450b63c-7a97-4bf5-adae-e74be755fc01/sm/2371242-1477532388875-FH_Thumb_13_copy_9.jpg","duration":1086,"publication_date":"2016-10-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-scary-2","changefreq":"weekly","video":[{"title":"2016:E231 - 2SPOOKY4EVERYONE - Outlast 2 Demo Gameplay","description":"Thanks to this video, one of you out there is going to have to cough up the money for Adam's Lorazepam Rx and therapy bills. We suffer for our art.  \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-scary-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6158e001-553d-45e9-9dc5-a5414c2c0998/sm/2371242-1477517653978-FH_Thumb_13_copy_6.jpg","duration":1054,"publication_date":"2016-10-28T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-scary-1","changefreq":"weekly","video":[{"title":"2016:E230 - (don't) WATCH THIS! - (not) Scary Gameplay","description":"The really scary thing is that, much like Adam, more than 17 percent of the world's population is still not literate. Cue the \"The More You Know\" music!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-scary-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cb0908d-49e2-44ce-9103-5e57ea7db973/sm/2371242-1477514521300-FH_Thumb_13_copy_5.jpg","duration":466,"publication_date":"2016-10-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-gta-5-primetime-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E32 - GTA 5 Primetime Gameplay - Fullhaus","description":"Behold! Two hours of us appeasing the YouTube masses.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-gta-5-primetime-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6db5c7d1-0eff-4c97-b087-8f955c3aa7da/sm/1533704-1477591007844-GTA_Balls_Primetime_Fullhaus_Thumbnail.jpg","duration":6957,"publication_date":"2016-10-28T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-women","changefreq":"weekly","video":[{"title":"2015:E44 - EVERYONE HATES US? - Funhaus Comments #42","description":"Except for that one girl in college who said the sight of my naked body \"didn't make [her] sick but could we please still dim the lights a little\". I don't like to brag but I'm pretty sure that she can be trusted. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-women","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d5f81c9-4a77-492e-a69f-6141e029eeea/sm/2371242-1477608431022-FH_Thumb_Template42.jpg","duration":640,"publication_date":"2016-10-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-vampires-suck-old-spooky-games-gameplay","changefreq":"weekly","video":[{"title":"2016:E228 - VAMPIRES SUCK - Old Spooky Games Gameplay","description":"I'm not gonna lie. As a youngster I would've shelled out the money and played any of these games for weeks if there was even the slightest chance of glimpse of a flash of a frame of pixelated vampire boobie. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-vampires-suck-old-spooky-games-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1d6118d-f8a5-4703-bac3-4c14e944b7ef/sm/2371242-1477502462075-FH_Thumb_13_copy_4.jpg","duration":943,"publication_date":"2016-10-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-going-out-of-business-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E229 - GOING OUT OF BUSINESS - GTA 5 Gameplay","description":"That's right folks! Everything must go! Bruce's shaved chest hair, Kovic's cute little boxer shorts, the fedora's, the pink guns, even that secratary... uh what's her name. Everything! \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-going-out-of-business-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce47f74-6ac8-4691-8bd4-6f6cb7cf5dd9/sm/2371242-1477504388042-FH_Thumb_13-Recovered_copy.jpg","duration":625,"publication_date":"2016-10-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-forgot-how-to-play-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E227 - WE FORGOT HOW TO PLAY - GTA 5 Gameplay","description":"I actually spent many afternoons as a teen in the neighborhood Blockbuster Video playing their smelly old demo consoles. Dreamcast, PS1, VirtualBoy, I waddled my ass in there and crushed them all. No, I didn't lose my virginity until well into college. Why do you ask? \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDeath Games: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/ti3tWN5YTEGM3QWeE2zvWg\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-forgot-how-to-play-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45ecc98d-5c51-4730-83a4-6cb655eb7335/sm/2371242-1477416699450-FH_Thumb_13_copy_1.jpg","duration":445,"publication_date":"2016-10-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow1024","changefreq":"weekly","video":[{"title":"2016:E93 - WE ARE DELICIOUS AND NUTRITIOUS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow1024","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c79ae39f-a5ee-4d9d-a264-88ba021ba4ff/sm/2371242-1477421848830-postshow93.png","duration":2886,"publication_date":"2016-10-25T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup1024","changefreq":"weekly","video":[{"title":"2016:E93 - NINTENDO SWITCH: Reactions and Thoughts - Dude Soup Podcast #93","description":"Support our sponsors! Get your first month's Dollar Shave Club membership for free by going to http://www.dollarshaveclub.com/dude.\n\nGet 15% off your MVMT watch with free shipping and free returns by going to http://www.mvmtwatches.com/dudesoup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nI just miss VirtualBoy. Playing that for an hour was like having laser pointers shot into your eyes for a week. In a good way.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nToday's Topics:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNintendo Switch\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBlack Mirror\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nButts\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant more Dude Soup? Check out the Post Show: http://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:Switch Dock Functionality: http://www.ign.com/articles/2016/10/20/nintendo-confirms-amiibo-support-for-nintendo-switch-clarifies-additional-featuresLaura Dale Rumor Reports: http://letsplayvideogames.com/2016/10/a-deep-dive-on-lpvgs-nintendo-switch-reports-and-info/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup1024","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75322f98-ab4c-4076-a86a-760e82a847b5/sm/2371242-1477418760353-FH_Thumb_13_copy_2.jpg","duration":4098,"publication_date":"2016-10-25T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhaus","changefreq":"weekly","video":[{"title":"2016:E88 - THE HAUNTED FUNHAUS? - Open Haus #88","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe idea of wrestling with a greased up Matt Peake in an insane asylum does not sound like something in a haunted house. It sounds like heaven. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e365be59-37c2-4359-bd5a-c70f45549432/sm/2371242-1477104308855-Openhaus_Thumbnail.png","duration":618,"publication_date":"2016-10-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hacking-with-friends-watch-dogs-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E226 - HACKING WITH FRIENDS - Watch Dogs 2 Gameplay","description":"Click here to play Watch Dogs 2: http://ubi.li/sbcvxESRB Rating: MThis video is sponsored by Ubisoft.\n\n\n\n\n\nI never knew that hacking involved so much dirt-biking, forklift operating, and playground slides.\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hacking-with-friends-watch-dogs-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f22b981-9f76-40f6-beea-292d0cb3d10d/sm/2371242-1477359116410-FH_Thumb_13_copy.jpg","duration":602,"publication_date":"2016-10-24T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-episode","changefreq":"weekly","video":[{"title":"2016:E43 - THERE IS NO POON - Demo Disk Gameplay","description":"Man oh man, back in the 90's between Silk Stalkings and Up All Night, USA Network was every boy's one stop shop for almost porn.So I've heard.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8721d5b-2fe2-4d93-a3d1-0e737d3d1cb1/sm/2371242-1477104981481-FH_Thumb_13_copy_2.jpg","duration":939,"publication_date":"2016-10-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-h-e-l-l-s-kitchen-overcooked-gameplay","changefreq":"weekly","video":[{"title":"2016:E223 - HELL'S KITCHEN - Overcooked Gameplay","description":"I hope you guys like food-based puns! Wait, you don't? Uh... don't worry there isn't a single one of those anywhere in this video. Honest. No, you're acting weird!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-h-e-l-l-s-kitchen-overcooked-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcafb64e-e5a0-40fa-bea8-01910b2fe5a4/sm/2371242-1476994218375-FH_Thumb_13_copy_11.jpg","duration":842,"publication_date":"2016-10-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-flassh2","changefreq":"weekly","video":[{"title":"2016:E225 - NIGHT OF THE LESBIAN DEAD - Flash Games Gameplay","description":"Step right up \"boils\" and \"ghouls\" for a Funhaus spooktacular of monstrous proportio-... propo-.. agh who the hell am I kidding. It's Flash games with bats and pumpkins and pixelated boobies.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-flassh2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c40112a-ef36-4eda-95dc-3629da4d278d/sm/2371242-1477093430203-Halloween_Flash_Games.png","duration":833,"publication_date":"2016-10-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-sexism-best-of-funhaus-september-2016","changefreq":"weekly","video":[{"title":"2016:E222 - BEST OF SEXISM - Best Of Funhaus September 2016","description":"Much like that first free hit of rock cocaine your friend's cousin slipped you behind the dumpster at Arby's when you were 15, Funhaus Best Of videos only give you a tiny taste of all the pleasure you could be experiencing.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/mattseditbayhttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-sexism-best-of-funhaus-september-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe2a395e-0933-465e-8c7b-f100b654e3bd/sm/2371242-1476986390760-FH_Thumb_BestOfSeptv3.png","duration":578,"publication_date":"2016-10-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-football","changefreq":"weekly","video":[{"title":"2016:E40 - Let's Play - Gmod Extreme Football Throwdown Starring Funhaus","description":"Just keep repeating: It's only a game... it's only a game... it's only a game.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-football","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24ea039a-ee23-4f32-b220-a0c87ba5a047/sm/2371242-1477015725494-Duo_Thumbnail_Template_copy_5.jpg","duration":1101,"publication_date":"2016-10-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-fh-gmod-football","changefreq":"weekly","video":[{"title":"2016:E224 - FANTASY FOOTBALL - Gmod Extreme Football Throwdown Gameplay","description":"It's like NFL Blitz meets American Gladiators meets Tron meets a game that barely works and tears all of my coworkers' friendships apart.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-fh-gmod-football","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca52dad0-c4cb-4962-bd1d-8c20b60fdbb5/sm/2371242-1477016443751-FH_Thumb_13_copy_12.jpg","duration":689,"publication_date":"2016-10-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-funhaus-vs-funhaus-funhaus-comments-41","changefreq":"weekly","video":[{"title":"2015:E43 - FUNHAUS VS FUNHAUS - Funhaus Comments #41","description":"That's it everybody. Internal struggles and years of seething animosity are finally tearing us apart. Friendships will end, jobs will be lost, and when the dust settles nothing will ever be the same again.*\n\n\n\n\n\n\n\n*Disclaimer: Everything will be the same again.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-funhaus-vs-funhaus-funhaus-comments-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b874117-68cd-4e89-b9af-d1b9b1c4cff3/sm/2371242-1476985560887-FH_Thumb_Template41.jpg","duration":620,"publication_date":"2016-10-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-intensive-exposure-gameplay","changefreq":"weekly","video":[{"title":"2016:E31 - INTENSIVE EXPOSURE GAMEPLAY - Fullhaus","description":"Over 30 minutes of sexual assaulting action!","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-intensive-exposure-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de942e87-4bee-4335-bd40-f5f6bcdb08db/sm/2371242-1476997434967-Intensive_Exposure_Fullhaus_Thumbnail.jpg","duration":1930,"publication_date":"2016-10-20T16:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-don-t-blink","changefreq":"weekly","video":[{"title":"2016:E220 - CLOWN ATTACK IN VR - Don't Blink VR Gameplay","description":"We would like to extend our deepest apologies to the custodial staff of the Funhaus offices for both the puddles of urine left on the floor and the girlish shrieks that preceded them.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/_jacobfullerton\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-don-t-blink","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f9255c5-57a0-43a9-b786-08271c7b00d8/sm/2371242-1476836371007-FH_Thumb_13_copy_9.jpg","duration":870,"publication_date":"2016-10-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-employee-of-the-month-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E221 - EMPLOYEE OF THE MONTH - GTA 5 Gameplay","description":"The Funhaus \"Employee of the Month\" each and every month is booze. Sweet, soothing, non-judgmental booze. \n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-employee-of-the-month-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07af8b98-00a8-44b3-a1a6-450ae86a1d51/sm/2371242-1476841835781-FH_Thumb_13_copy_10.jpg","duration":947,"publication_date":"2016-10-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-car-basketball-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E219 - CAR BASKETBALL - GTA 5 Gameplay","description":"Actual Steven Seagal IMDB trivia:While filming an episode of Steven Seagal: Lawman (2009), the torso of one of his daughters shows up in the background of a shot while the crew is filming the training of Steven's two German Shepherds.\n\n\n\n\n\n\n\nWhere did he bury the rest of her?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPanto Basketball: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/rm6UgX-TH0WIF32KPDYyHA\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-car-basketball-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/531a39aa-5344-49a4-b3b1-572090a87d36/sm/2371242-1476830825793-FH_Thumb_13_copy_8.jpg","duration":695,"publication_date":"2016-10-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow1017","changefreq":"weekly","video":[{"title":"2016:E92 - WE ARE NOT TO BE MESSED WITH","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow1017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de7f77e6-1f6b-4e3f-b2cb-25c2e40aceb9/sm/2371242-1476755615589-postshow92.png","duration":3121,"publication_date":"2016-10-18T01:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup1017","changefreq":"weekly","video":[{"title":"2016:E92 - RED DEAD 2 CONFIRMED? Yes. - Dude Soup Podcast #92","description":"Support our sponsors! Get $50 off any mattress purchase by visiting http://www.casper.com/dudesoup and enter promo code dudesoup. And NatureBox is offering Dude Soup fans 50% off your first order when you go to http://www.natureboxclub.com/dudesoup \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGet ready, everybody! It's hiiiigghh noon!  Oh, wait.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTopics:2:25 Battlefield 1 vs CoD9:00 Red Dead Redemption 228:20 Hygiene36:00 Mafia 3 and Reviews40:40 Cost of Gaming\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:VGCultureHQ Mafia III Editorial: http://vgculturehq.com/initial-mafia-iii-reviews-are-unacceptable/NPD DLC Report: http://venturebeat.com/2016/10/17/npd-28-of-u-s-population-ages-13-to-54-purchase-extra-video-game-content/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup1017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7535d1f6-72f5-4382-aa69-16c920ef050f/sm/2371242-1476754943527-Red_Dead_Dude_Soup.jpg","duration":3779,"publication_date":"2016-10-18T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-oh87","changefreq":"weekly","video":[{"title":"2016:E42 - WE IMPROVE SONIC? - Open Haus #87","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nHumble beginnings are a staple of American life. One can only hope that when their time comes, they can boast that they once spouted obnoxious noises on a beloved 90's sitcom.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-oh87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6115e987-424e-4d4a-bca9-5adba7f17fa3/sm/1533704-1476495722842-Openhaus_Thumbnail_87.png","duration":676,"publication_date":"2016-10-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-crazy-frog-is-back-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E85 - CRAZY FROG IS BACK - Demo Disk Gameplay","description":"A ring ding ding ding d-ding baa aramba baa baa barooumba\n\nWh-Wha-Whats going on-onDing dingLets do the crazy frooggDing dingA Brem BremA ring ding ding ding dingA Ring Ding Ding DingdemgdemgA ring ding ding ding dingRing dingBaa-BaaRing ding ding ding dingA Ring Ding Ding DingdemgdemgA ring ding ding ding dinga Bram ba am baba weeeeeee\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-crazy-frog-is-back-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5138c78-d78c-46c1-9f7f-42f34f9967ba/sm/1533704-1476496785251-FH_Thumb_13_copy_13.jpg","duration":974,"publication_date":"2016-10-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-harambe-revealed-intensive-exposure-gameplay","changefreq":"weekly","video":[{"title":"2016:E216 - HARAMBE REVEALED - Intensive Exposure Gameplay","description":"I hope that dead gorilla is looking down from gorilla heaven and witnessing its legacy. The meme has been so widespread that it'll live longer than Harambe ever would have.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-harambe-revealed-intensive-exposure-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c01816aa-cd18-4095-9a76-0258029d99be/sm/1533704-1476311290408-FH_Thumb_13_copy_9.jpg","duration":646,"publication_date":"2016-10-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dance-with-the-devil-hitman-blood-money-gameplay-part-9","changefreq":"weekly","video":[{"title":"2016:E218 - DANCE WITH THE DEVIL - Hitman Blood Money Gameplay Part 9","description":"I've never been to a masquerade before, so I'll be forming my impressions purely from the Hitman experience. If there aren't baby-men and TP-clad booty angels wandering around, you can bet your barcode I'll be disappointed.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreene\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dance-with-the-devil-hitman-blood-money-gameplay-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37a4f5f2-d792-4757-b7a2-4df3e4bf329c/sm/1533704-1476466177003-FH_Thumb_13_copy_12.jpg","duration":548,"publication_date":"2016-10-15T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-footbrawl-playground-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E39 - Let's Play - Footbrawl Playground Starring Funhaus","description":"Next time you're out in the park enjoying a game of soccer with your buds, you must remain vigilant. The naked man prowls in the shadows, eager to pounce upon the unaware...\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-footbrawl-playground-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3bcebde-645e-44a6-b6e1-4974bf72efe3/sm/1533704-1476380535284-Duo_Thumbnail_Template_copy.jpg","duration":2156,"publication_date":"2016-10-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2016-rogue-o-n-e-will-it-s-u-c-k-movie-podcast","changefreq":"weekly","video":[{"title":"2016:E2 - ROGUE ONE: WILL IT SUCK? - Movie Podcast","description":"If you ask me, Disney is really missing major opportunities to flesh out some fan-favorites. Like seriously, no Crix Madine? C'mon Disney. Shuttle Tydirium didn't steal itself.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter:\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2016-rogue-o-n-e-will-it-s-u-c-k-movie-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1ada5fd-76fc-4bd6-8432-2b8259bec648/sm/1533704-1476494916849-FH_Thumb_13_copy_11.jpg","duration":3446,"publication_date":"2016-10-15T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-w-e-re-so-bad-i-t-s-scary-overwatch-halloween-terror-gameplay","changefreq":"weekly","video":[{"title":"2016:E217 - WE'RE SO BAD IT'S SCARY - Overwatch Halloween Terror Gameplay","description":"Some say, it's an ancient Halloween tradition to \"take the left.\" What may be mistaken as poor strategic judgement is actually adherence to the days of old.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-w-e-re-so-bad-i-t-s-scary-overwatch-halloween-terror-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90bed16f-4e8f-48b2-884a-434a79acf150/sm/1533704-1476464436702-FH_Thumb_13_copy_10.jpg","duration":884,"publication_date":"2016-10-14T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-princess-maker-2-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E30 - Princess Maker 2 Gameplay - Fullhaus","description":"We did it, folks. Forty five minutes of pure parenting goodness. That's more than enough time to teach a kid right from wrong.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-princess-maker-2-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4091ba4-805b-44fb-a3b9-790f53113fa0/sm/1533704-1476391433354-Princess_Maker_Fullhaus_Thumbnail.jpg","duration":2654,"publication_date":"2016-10-13T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-hurricane-matthew-peake-funhaus-comments-40","changefreq":"weekly","video":[{"title":"2015:E42 - HURRICANE MATTHEW PEAKE - Funhaus Comments #40","description":"For the curious (because EVERYone loves Overwatch), Hanzo says \"\"Ryū ga waga teki wo kurau\" when he ults, which translates to \"The dragon shall consume my enemy!\" I think it's actually pretty cool that... wait, where are you going?\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/_jacobfullerton\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-hurricane-matthew-peake-funhaus-comments-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6114d483-51ef-4f19-8730-187690fd04d5/sm/1533704-1476317335118-FH_Thumb_Template40.jpg","duration":699,"publication_date":"2016-10-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-y-o-u-re-fat-and-ugly-princess-maker-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E213 - YOU'RE FAT AND UGLY - Princess Maker 2 Gameplay","description":"Man, it sure feels good to be an adult and tell our kids they're wrong all the time. Kids don't know what's good for them, even when subjected to several months of working in the fields and getting mauled by giant mantises. DADDY'S ALWAYS RIGHT.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-y-o-u-re-fat-and-ugly-princess-maker-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/507eef66-b358-4b19-a0a0-2f000352ec39/sm/1533704-1476213159987-FH_Thumb_13_copy_6.jpg","duration":718,"publication_date":"2016-10-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-extreme-stunt-rescue-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E214 - EXTREME STUNT RESCUE - GTA 5 Gameplay","description":"Consider how far you would go for your friends to get them out of a pickle. If your rescue doesn't involve creating a bridge out of hyperexpensive military aircraft, how can you truly call yourself a friend?\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillems \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-extreme-stunt-rescue-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d716d60-851f-4ea5-9c59-9571b800ce26/sm/1533704-1476239082202-FH_Thumb_13_copy_8.jpg","duration":896,"publication_date":"2016-10-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-episode-2","changefreq":"weekly","video":[{"title":"2016:E39 - WE ARE HOT DOGS?","description":"In a perfect world, we'd all be living the lives of dogs. Getting cool art drawn of us and being super naked all the time are ideal ways to spend our doggo days.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4c790ab-12ff-41f2-92ef-585510b66a0f/sm/1533704-1476239066008-DS_PostShow_Template91.jpg","duration":2368,"publication_date":"2016-10-12T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-polls-and-holes-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E212 - BIG BALLED BIKERS - GTA 5 Gameplay","description":"The basic Arnold Palmer recipe contains two main ingredients: iced tea and lemonade. It is widely believed that the two are mixed in equal parts, but in a recent ESPN video the real Arnie Palmer himself set the record straight, clarifying that the drink as he invented it contains 3 parts iced tea to 1 part lemonade.\n\n\n\n\n\n\n\n\n\n\n\n\n\nSweet Walls: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Jlj0yr_M4kKwZlXLudKlrA#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-polls-and-holes-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3ebda85-4d58-4446-9f04-b724c66c70a0/sm/1533704-1476133510090-FH_Thumb_13_copy_3.jpg","duration":888,"publication_date":"2016-10-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-no-m-a-n-s-sky-vs-star-citizen-dude-soup-podcast-91-2","changefreq":"weekly","video":[{"title":"2016:E91 - NO MAN'S SKY VS STAR CITIZEN - Dude Soup Podcast #91","description":"Support our sponsors! Check out this week’s Blue Apron menu and get your first three means free with free shipping by going to http://www.blueapron.com/soup \n\nAnd get 15% off your MVMT watch with free shipping and free returns by going to http://www.mvmtwatches.com/dudesoup\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:\nNo Man's Sky Subreddit Closed: ;http://www.eurogamer.net/articles/2016-10-05-no-mans-sky-subreddit-shut-down\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarr \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-no-m-a-n-s-sky-vs-star-citizen-dude-soup-podcast-91-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b64b0d0-8ba5-482e-834e-7738777f4161/sm/1533704-1476238871243-FH_Thumb_13_copy_4.jpg","duration":4229,"publication_date":"2016-10-12T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhaus-86","changefreq":"weekly","video":[{"title":"2016:E41 - OUR DEEPEST SECRETS? - Open Haus #86","description":"Ask us questions here!http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nMy deepest secret is the recipe for these absolutely scrumptious lemon bars. That and the subterranean sex club I run out of my house. The secret ingredient for both? Love.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhaus-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28fb5664-e2c6-4236-abf8-6cc185bddf33/sm/2371242-1475891584462-Openhaus_Thumbnail_86.png","duration":642,"publication_date":"2016-10-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-disk-2","changefreq":"weekly","video":[{"title":"2016:E41 - WE HATE MONDAYS - Demo Disk Gameplay","description":"We know you look to Funhaus for the latest in topical up-to-the-minute social commentary so that's why we made a thumbnail showing a movie character from 2006 making love to a cartoon character from 1988.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/adamkovic\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-disk-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55f95c4f-85bc-4e8d-a4c2-8378dcd9fae5/sm/2371242-1475892448569-FH_Thumb_Template4_1.jpg","duration":1051,"publication_date":"2016-10-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dino-hunter","changefreq":"weekly","video":[{"title":"2016:E210 - HOW TO HUNT IN VR - Island 359 Gameplay","description":"The only thing that should be in this space is an 8x10 glossy image of Jeff Goldblum propped up on a makeshift gurney, all greased up with his shirt popped open but no, I have to write these sexless words instead. Get you sh*t together, YouTube.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttps://twitter.com/Omarcitohttps://twitter.com/_JacobFullertonhttps://twitter.com/real_rtbones\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dino-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e3815b2-d18c-40d1-8a9d-fefd648bfd88/sm/2371242-1475866318260-Dino_VR_Thumbnail.jpg","duration":654,"publication_date":"2016-10-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-princess","changefreq":"weekly","video":[{"title":"2016:E211 - DADDY'S GIRL - Princess Maker 2 Gameplay","description":"After watching this video please head over to my Kickstarter page and help raise $1200.00 to get Lawrence a vasectomy. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttps://twitter.com/ElyseWillemshttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-princess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fca3ca4b-b166-4538-9a0b-c9567d832665/sm/2371242-1475875441616-Princess_Maker_Thumbnail.jpg","duration":634,"publication_date":"2016-10-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-robot-space-aids-destiny-rise-of-iron-gameplay","changefreq":"weekly","video":[{"title":"2016:E209 - ROBOT SPACE AIDS - Destiny: Rise of Iron Gameplay","description":"I know it sounds like we're making light of the disease, but really we just want to dispel myths regarding Robot Space Aids transmission while increasing awareness of modern Robot Space Aids prevention methods.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-robot-space-aids-destiny-rise-of-iron-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88dc30fd-5731-4dbe-bc04-bcd331a78044/sm/2371242-1475792247382-FH_Thumb_13_copy_6.jpg","duration":536,"publication_date":"2016-10-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-can-t-drive-this-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E38 - Let's Play - Can't Drive This Starring Funhaus","description":"Pop quiz, hotshot! There's three guys playing a game. Once they start playing, you all click and watch. If the video gets less than 300,000 views, I get fired. What do you do? What do you do?\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-can-t-drive-this-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/411b3a2c-aa31-4a5f-a8ba-d6d0fb3c4d11/sm/2371242-1475799383817-LP_thumb_Cant-Drive-This_1.png","duration":1737,"publication_date":"2016-10-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-lumpy-balls-golf-with-your-friends-gameplay","changefreq":"weekly","video":[{"title":"2016:E208 - LUMPY BALLS - Golf With Your Friends Gameplay","description":"Alright, Ted, we're coming up on the 15th hole here at Augusta, which by the way has been proudly admitting black members since aaaaaallll the way back in 1990. Just 4 more holes left to play, which coincidentally is the same number of years since Augusta admitted its first woman. \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-lumpy-balls-golf-with-your-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0625ac95-912e-40df-aaea-531c191ecc16/sm/2371242-1475791796427-FH_Thumb_13_copy_5.jpg","duration":846,"publication_date":"2016-10-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-overcooked-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E29 - Overcooked Gameplay - Fullhaus","description":"Behold, almost an entire hour of us trying to be chefs. If you couldn't guess, the main ingredient is salt.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-overcooked-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7efe211c-4b80-4ccb-83b2-ac65b45f9bd9/sm/1533704-1475791699329-Overcooked_Thumbnail.jpg","duration":3144,"publication_date":"2016-10-06T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-proud-of-our-package-funhaus-comments-39","changefreq":"weekly","video":[{"title":"2015:E41 - PROUD OF OUR PACKAGE - Funhaus Comments #39","description":"Sure, you all have a good laugh at the concept of \"Sonntaloguing\". You don't realize that they don't end when the cameras stop rolling. We filmed this days ago and he's still talking about console demos.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-proud-of-our-package-funhaus-comments-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25b2c2ce-780f-46bc-8174-5964f10dde73/sm/2371242-1475779169347-FH_Thumb_Template39.jpg","duration":709,"publication_date":"2016-10-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-punch-trump-hillary-flash-games-gameplay","changefreq":"weekly","video":[{"title":"2016:E207 - TRUMP & HILLARY GET PUNCHED - Flash Games Gameplay","description":"I'm not gonna lie to you guys. This one goes off the rails into Sexytown pretty quickly. Still not exactly sure how that all happened, but either way, you're welcome.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-punch-trump-hillary-flash-games-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3667c0d-c62b-4e93-a256-a1d218afa32c/sm/2371242-1475718404018-FH_Thumb_13_copy_3.jpg","duration":917,"publication_date":"2016-10-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-fnf-airport","changefreq":"weekly","video":[{"title":"2016:E206 - GANG WARFARE - GTA 5 Gameplay","description":"Someday, when you're tucking your kids into bed and they look up and ask you why Funhaus stopped playing GTA Online, you can simply play them this video as tears well in your eyes.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-fnf-airport","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/562525ee-65fe-43ee-bdfc-0a377702b242/sm/2371242-1475685581000-FH_Thumb_13_copy_2.jpg","duration":754,"publication_date":"2016-10-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-d-o-n-t-do-drugs-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E206 - DON'T DO DRUGS - GTA 5 Gameplay","description":"I remember the first time I got drunk in high school. I couldn't even finish my second beer. I had to keep running into the bathroom and pour little bits of it into the toilet. I guess what I'm trying to say is that I was super popular and girls were waiting in line to touch my penis and that nobody ever called me fat or smelly even once. \n\n\n\n\n\n\n\nFork It - Crossfire: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/OsQQGI1sD0ODJXQpZqKnRg\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-d-o-n-t-do-drugs-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043df5ce-9308-4cbc-90fa-a7ad5aac421f/sm/2371242-1475690526540-FH_Thumb_13.jpg","duration":586,"publication_date":"2016-10-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow90","changefreq":"weekly","video":[{"title":"2016:E90 - WE ARE LAWRENCE'S DREAM","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8be744e-4165-458b-8abb-038952342454/sm/2371242-1475604415955-DS_PostShow_90.jpg","duration":2209,"publication_date":"2016-10-03T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-dnd-10","changefreq":"weekly","video":[{"title":"S1:E10 - Funhaus Dungeons and Dragons - Episode 10","description":"In which the final Moondog is met, new powers are gained, Decker's mystery deepens, and a greater evil may spell doom for our brave heroes. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-dnd-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afd3b341-47e8-4b7b-94a4-7c6d2cfda5b0/sm/2371242-1475278121354-FH_Thumb_12_copy_7.jpg","duration":7230,"publication_date":"2016-10-03T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-oh-85","changefreq":"weekly","video":[{"title":"2016:E40 - WE'RE MOVING TO MARS? - Open Haus #85","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis is the plan. Get your ass to Mars, and go to the Hilton Hotel and flash the fake Brubaker I.D. at the front desk, that's all there is to it. Just do as I tell you. You can nail that son of a b***h that f****d you and me. I'm counting on you, old buddy. Don't let me down!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-oh-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/374e0078-9d88-448e-b84c-c82fa36892d2/sm/2371242-1475284349263-Openhaus_Thumbnail_again.png","duration":595,"publication_date":"2016-10-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup90","changefreq":"weekly","video":[{"title":"2016:E90 - WESTWORLD VS PEDOPHILES - Dude Soup Podcast #90","description":"Support our sponsors! Get your first month of Dollar Shave Club for free (just pay shipping) by going to http://www.dollarshaveclub.com/dudeAnd stop by a 7-Eleven and grab a Kit Kat with a cup of coffee for a great snack!\n\n\n\nThe age-old battle begins anew. Grab a weapon and choose you side!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWant to see Let's Play Live in your town? Click this link to find tickets near you! http://www.fathomevents.com/event/lets-play-live?utm_source=Funhaus&utm_medium=YouTube&utm_content=Client-Organic&utm_campaign=Lets_Play_Live\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bab5e73-bb57-4479-9bf0-a7c310d1e18d/sm/2371242-1475600348358-FH_Thumb_13_copy_1.jpg","duration":4345,"publication_date":"2016-10-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-84","changefreq":"weekly","video":[{"title":"2016:E84 - THE SPY WHO BONED ME - Demo Disk Gameplay","description":"\"Mr Bond, I... I don't know how to tell you this, but... you have chlamydia.\"\"Nobody ever said the spy game was eas-\"\"And gonorrhea. And syphilus and crabs.\"\"Well, I suppose that microfilm wasn't the only thing she hiding in her-\"\"And somehow your crabs tested positive for both HIV and genital warts.\"\"...I must... uh... say this leaves me a bit sh-\"\"If you say 'Shaken, not stirred' I'm gonna cut your wiener off\"\"I'll be good.\" \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/078502f6-6785-4f0b-89f2-76164cdf489f/sm/2371242-1475288891038-FH_Thumb_13_copy_26.jpg","duration":1071,"publication_date":"2016-10-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-pot-heads-overcooked-gameplay","changefreq":"weekly","video":[{"title":"2016:E204 - POT HEADS - Overcooked Gameplay","description":"The day after their shift, 83% of their customers came down with E. Coli or trichinosis. The other 17% were dead.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-pot-heads-overcooked-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cd8ee9c-9648-4d8d-b0d7-0d05e285bb1d/sm/2371242-1475276407495-FH_Thumb_12_copy_8.jpg","duration":1756,"publication_date":"2016-10-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-martian-man-s-l-u-t-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E203 - MARTIAN MAN SLUT- Wheelhaus Gameplay","description":"What the hell are you talking about?! There is no way that \"Mission to Mars\" is better than \"Red Planet\"! C'mon! Coked-up Tom Sizemore running from space bugs with Val Kilmer and The Mentalist! Plus a killer leopard robot and General #&@%ing Zod! You're high. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-martian-man-s-l-u-t-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79ae69c0-3fab-41e4-8e87-26123d81929e/sm/2371242-1475274744692-FH_Thumb_12_copy_9.jpg","duration":705,"publication_date":"2016-10-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-destiny-1","changefreq":"weekly","video":[{"title":"2016:E202 - BIG RED BALLS - Destiny: Rise of Iron Gameplay","description":"If Jacob Fullerton's wardrobe and work space are any indication, Destiny is the most popular and beloved game of this or any era.\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-destiny-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/019a06d8-d281-42a7-8ded-fa96367efd03/sm/2371242-1475255999658-FH_Thumb_13_copy_23.jpg","duration":536,"publication_date":"2016-09-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-dungeon-punks-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E37 - Let's Play - Dungeon Punks Starring Funhaus","description":"Once more into battle, men! We must destroy the evil... Frog King?  And the... those guys that are made out of sticks. And... wait...are those just hedgehogs.  Do we really have to kill all those hedgehogs?\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-dungeon-punks-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/495e71e1-5795-448e-84c1-b705a20d4184/sm/2371242-1475198695513-Duo_Thumbnail_Template_copy_3.jpg","duration":1226,"publication_date":"2016-09-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-sonicomi-title-tbd","changefreq":"weekly","video":[{"title":"2016:E201 - TAKE YOUR TOP OFF! - Sonicomi Gameplay","description":"If Senpai Lawrence ever bumps into you on the street with a camera around his neck and asks you to take some tasteful modeling shots, you run. Do you hear me?! Ruuunnn!\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-sonicomi-title-tbd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5d8aad9-79d4-4123-b543-3cb5e3440e27/sm/2371242-1475196784412-FH_Thumb_13_copy_20.jpg","duration":899,"publication_date":"2016-09-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-38","changefreq":"weekly","video":[{"title":"2015:E40 - WE FIRE OUR FANS? - Funhaus Comments #38","description":"If you strike Bruce down, he shall become more powerful than you can possibly imagine.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/540de59d-5188-4275-b208-58012718657c/sm/2371242-1475181975199-FH_Thumb_Template38.jpg","duration":612,"publication_date":"2016-09-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-haydee-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E28 - Haydee Gameplay - Fullhaus","description":"This week, we continue our \"Strong Female Protagonist\" series with 45 pristine minutes of busty bots.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-haydee-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1f057f0-3729-46eb-951f-184f3725e8b9/sm/1533704-1475169407799-Haydee_Fullhaus_Thumbnail.jpg","duration":2525,"publication_date":"2016-09-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-are-hacks-watch-dogs-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E200 - WE ARE HACKS - Watch Dogs 2 Gameplay","description":"Click here to play Watch Dogs 2: http://bit.ly/2ctsKAo \n\nESRB Rating: MThis video is sponsored by Ubisoft.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDid somebody build a game based on the high-octane exploits of Lawrence Sonntag and neglect to tell him?! Somebody is gonna get sued.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-are-hacks-watch-dogs-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38da6034-7f66-44c2-9691-e69fbd779a0a/sm/2371242-1475179545582-FH_Thumb_13_copy_17.jpg","duration":1009,"publication_date":"2016-09-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-point-break-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E199 - POINT BREAK - GTA 5 Gameplay","description":"There is no sexier man than Swayze. And there is no sexier Swazye than blonde mulleted \"Point Break\" Swayze. This isn't a discussion.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-point-break-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/240b8d8c-35bd-4e99-86f1-af66fc9db3a9/sm/2371242-1475097605986-FH_Thumb_13_copy_22.jpg","duration":853,"publication_date":"2016-09-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-guts","changefreq":"weekly","video":[{"title":"2016:E198 - YOU'RE A PUSSY - GTA 5 Gameplay","description":"Gather 'round little ones and I'll tell you of a magical era know as \"The 90's\". The Twin Towers stood tall, people used condoms, and all we needed to be entertained was to strap bike helmets to a pack of pubescent nerds and have them climb a big fake rock. No, you sound stupid!\n\n\n\n\n\n\n\n\n\nClimbing Wall: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/YXkzPOldfE-ghmWJrCT6uw#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-guts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b615a8d-7ffe-4305-8b09-60e1deec2e4d/sm/2371242-1475032118004-FH_Thumb_13_copy_18.jpg","duration":706,"publication_date":"2016-09-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-2016-09-26","changefreq":"weekly","video":[{"title":"2016:E89 - VIDEO GAMES MAKE YOU LAZY? - Dude Soup Podcast #89","description":"Support our sponsors! Get $5 when you make your first investment by going to http://www.acorns.com/dude.And get 1 month of Crunchyroll Premium for free by visiting http://www.crunchyroll.com/dudesoup.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYou spend all morning on a party bus then tour Blizzard HQ then have dinner and drinks with developers then a few more hours on the party bus and not run your bike into a tree.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:Washington Post Article: https://www.washingtonpost.com/news/wonk/wp/2016/09/23/why-amazing-video-games-could-be-causing-a-big-problem-for-america/\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff:","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-2016-09-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3231ac40-7bb3-4b7b-8295-1a1c5c8fc34b/sm/2371242-1474997462427-FH_Thumb_13_copy_16.jpg","duration":3964,"publication_date":"2016-09-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-2016-09-26-ps","changefreq":"weekly","video":[{"title":"2016:E89 - WE ARE STARTLED AND ADORABLE","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-2016-09-26-ps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50413be0-7fda-4edd-94ce-e9a535108cf2/sm/2371242-1474995482788-DS_PostShow_Template92316.jpg","duration":2961,"publication_date":"2016-09-27T09:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-dnd-9","changefreq":"weekly","video":[{"title":"S1:E9 - Funhaus Dungeons and Dragons - Episode 9","description":"In which a renegotiation takes place, a skull is split, songs are sung, and Sai Te's time with our heroes comes to a merciful end. \n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbayhttp://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-dnd-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e017f438-0408-4447-9cd7-b62201ff796d/sm/2371242-1474678836768-FH_Thumb_12_copy_6.jpg","duration":5096,"publication_date":"2016-09-26T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-how-to-be-a-h-a-c-k-e-r-open-haus-84","changefreq":"weekly","video":[{"title":"2016:E39 - HOW TO BE A HACKER? - Open Haus #84","description":"Ask us questions here!>http://www.reddit.com/r/funhaus\n\n\n\n\n\n\n\n\n\nActual Menu Items served at Guy Fieri's restaurants provided without commentary: Guy-talian Fondue Dippers, Righteous Rojo Rings, Brutha's Badass Caesar Salad, Tatted-Up Turkey Burger, Parmageddon Wings, S'mores Monte Cristo, Sashimi Won-Tacos, Pepperoni Studded Lasagna, Ferndale Lumber Jack.  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/mattseditbayhttp://twitter.com/omarcito\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-how-to-be-a-h-a-c-k-e-r-open-haus-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8da186a-67aa-4cd8-a1eb-b9c1f40ca738/sm/2371242-1474676943491-Openhaus_Thumbnail_9-27-16.png","duration":629,"publication_date":"2016-09-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-buttman-and-c-h-o-k-e-her-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E83 - BUTTMAN AND CHOKE-HER - Demo Disk Gameplay","description":"Today in \"Jared Leto IMDB Trivia Definitely Written by Jared Leto\":Jared Leto had to prepare physically for the role of Joker (as it requires a lot of workout for being in the desired shape). But the actor was so fit and in shape already that within two months he got himself ripped & started shooting.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-buttman-and-c-h-o-k-e-her-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f48bffd-247c-4c0f-8c77-16f5e730b541/sm/2371242-1474683095680-FH_Thumb_13_copy_13.jpg","duration":964,"publication_date":"2016-09-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-porn-best-of-funhaus-august-2016","changefreq":"weekly","video":[{"title":"2016:E197 - BEST OF PORN - Best Of Funhaus August 2016","description":"You know when you're sitting on top of a plateau, fried out of your mind of peyote, and everything you witness seems to split open giving you just the slightest fleeting glimpse of pure love and universal understanding? Yeah, watching a Funhaus Best Of is kinda like that. But with more poop jokes.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/mattseditbayhttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-porn-best-of-funhaus-august-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6720e05d-e4a7-4902-9a9b-5cf42b14ef37/sm/2371242-1474652977042-FH_Thumb_Template2_1.jpg","duration":973,"publication_date":"2016-09-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-robosexual-haydee-gameplay","changefreq":"weekly","video":[{"title":"2016:E193 - WOMEN ARE ROBOTS TOO - Haydee Gameplay","description":"I'm not sure which wave of feminism the Funhaus gang is part of. Fifth? Sixth? Which is the one where we just stare at their asses and list their shortcomings? \n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-robosexual-haydee-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c16b232-4c4d-4b73-9908-1f7cd0643d87/sm/2371242-1474491809670-FH_Thumb_13_copy_5.jpg","duration":884,"publication_date":"2016-09-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-tramps-and-cramps-revolution-60-fullhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E27 - Tramps and Cramps - Revolution 60 Fullhaus Gameplay","description":"Respect women? Us? Why yes, of course we do... what made you think otherwise?","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-tramps-and-cramps-revolution-60-fullhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/477878e6-e818-45a2-817b-c8bc90b514c5/sm/1533704-1474672172876-Revolution_60_Fullhaus_Thumbnail.jpg","duration":4362,"publication_date":"2016-09-24T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-cramps-and-tramps-revolution-60-gameplay","changefreq":"weekly","video":[{"title":"2016:E194 - CRAMPS AND TRAMPS - Revolution 60 Gameplay","description":"We cap off \"Misogyny Week\" here at Funhaus with a game made by women, for women, and featuring women so liberated that they wear their tramp-stamps on their faces!Please don't quit, Elyse.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-cramps-and-tramps-revolution-60-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86b52cbe-debe-42d7-992b-5e4746a70878/sm/2371242-1474495233837-FH_Thumb_13_copy_9.jpg","duration":624,"publication_date":"2016-09-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-gmod-guess-who-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E36 - Let's Play - Gmod Guess Who Starring Funhaus","description":"\"Outside the limit of our sight, feeding off us, perched on top of us, from birth to death, are our owners! Our owners! They have us. They control us! They are our masters! Wake up! They're all about you! All around you!\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-gmod-guess-who-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc176f5a-5719-4104-b662-b563c062f53e/sm/2371242-1474566321991-Duo_Thumbnail_Template_copy_1.jpg","duration":1068,"publication_date":"2016-09-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-fh-gmod","changefreq":"weekly","video":[{"title":"2016:E192 - DEAD MEN WALKING - Gmod Guess Who Gameplay","description":"\"This thing doesn't want to show itself, it wants to hide inside an imitation. It'll fight if it has to, but it's vulnerable out in the open. If it takes us over, then it has no more enemies, nobody left to kill it. And then it's won.\"\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-fh-gmod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fbe4954-c133-4b82-b291-936c286dbc1a/sm/2371242-1474491138468-FH_Thumb_13_copy_4.jpg","duration":783,"publication_date":"2016-09-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments37","changefreq":"weekly","video":[{"title":"2015:E39 - WE'RE STILL INSENSITIVE - Funhaus Comments #37","description":"It's always so exciting riding that sweet delicate line between ironic racial jokes and full blown bigotry. We are truly doing the lord's work. \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/elysewillemshttp://twitter.com/sirlarrhttp://twitter.com/mattseditbay\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40b3b394-6289-4508-b5ba-f06256e10476/sm/2371242-1474574001804-FH_Thumb_Template37.jpg","duration":744,"publication_date":"2016-09-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hack-the-planet-for-honor-gameplay","changefreq":"weekly","video":[{"title":"2016:E196 - HACK THE PLANET - For Honor Gameplay","description":"Click here to sign up for the For Honor Beta: http://bit.ly/2cLIgEU This video is sponsored by Ubisoft.\n\n\n\n\n\n\n\n\n\n\n\n\n\nWe honor you, our loyal viewers, by chopping hundreds of people up into little tiny morsels for your amusement. Creeps\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hack-the-planet-for-honor-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/084d00e9-e208-491a-8ccc-a7ffee35f1e7/sm/2371242-1474570406599-FH_Thumb_13_copy_12.jpg","duration":1201,"publication_date":"2016-09-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-2","changefreq":"weekly","video":[{"title":"2016:E195 - CHOLO YOLO - GTA 5 Gameplay","description":"Lowrider Magazine: Proudly giving this YouTube channel manager uncomfortable and shameful public erections since 1989.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: >http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb6b0458-93d6-4a2e-aa13-9c404535e4b5/sm/2371242-1474499201428-FH_Thumb_13_copy_10.jpg","duration":670,"publication_date":"2016-09-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-butt-clencher-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E191 - BUTT CLENCHER - GTA 5 Gameplay","description":"I know you guys come to Funhaus for detailed lessons on human anatomy and sexuality, but please bear with us this time as we play a little GTA as well.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHTW FastGreen: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/4hcGqOVnXk-onrY0_hixSg#\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-butt-clencher-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46ee4d29-5e83-4c35-83ff-c119e198f6ec/sm/2371242-1474416954032-FH_Thumb_13_copy_3.jpg","duration":667,"publication_date":"2016-09-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-postshow919","changefreq":"weekly","video":[{"title":"2016:E36 - WE ARE ODDLY ALLURING","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-postshow919","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8cb1567-fc9b-40cd-9ba5-8aac2be4c84d/sm/2371242-1474333589343-DS_PostShow_Template91916.jpg","duration":2510,"publication_date":"2016-09-20T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup919","changefreq":"weekly","video":[{"title":"2016:E88 - More YouTuber Corruption? - Dude Soup Podcast #88","description":"Support our sponsors! Receive $5 when you make your first investment at http://www.acorns.com/dude.\n\nAnd go to \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://www.mvmtwatches.com/dud... to get 15% off your entire purchase!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTopics:2:30 Nepenthez Gambling Controversy33:00 Movies and Stuff40:50 Fan Fiction46:00 Emmy Winners and Losers\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCheck out the Dude Soup Post Show with fan-art, comments, live questions and more! Only for RT First members!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:\nHonor the Call Report: \nBBC Report: http://www.bbc.com/news/techno...\nEurogamer Report: http://www.eurogamer.net/artic...\nNepentheZ Tweet: https://twitter.com/NepentheZ/...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/brucegreenehttp://twitter.com/sirlarrhttp://twitter.com/elysewillemshttp://twitter.com/rickyftwhttp://twitter.com/eliotetc\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup919","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42b9b80e-cf92-4954-8273-bb943d775be7/sm/2371242-1474334308325-YouTube_Corruption.png","duration":3934,"publication_date":"2016-09-20T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-funhaus-dungeons-and-dragons-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - Funhaus Dungeons and Dragons - Episode 8","description":"In which a servant is conjured, forest spirits are freed, a disabled man becomes more so, and Shattercock cleans her lady business.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/elysewillem...http://twitter.com/sirlarrhttp://twitter.com/mattseditba...http://twitter.com/filmdstryr\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-funhaus-dungeons-and-dragons-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/429b21f8-8a1b-489b-ba7a-09c5614c3787/sm/2371242-1474049615171-FH_Thumb_12_copy_5.jpg","duration":6501,"publication_date":"2016-09-19T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-worst-pain-e-v-e-r-open-haus-83","changefreq":"weekly","video":[{"title":"2016:E38 - WORST PAIN EVER? - Open Haus #83","description":"Ask us questions here!http://www.reddit.com/r/funhau...\n\n\n\n\n\n\n\n\n\n\n\nI think it would have to be that time when I was a sophomore in high school and that freshman called me fat in front of the whole geometry class and threatened to cut off my ponytail. Oh. You meant physical pain. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/sirlarrhttp://twitter.com/elysewillem...http://twitter.com/mattseditba...http://twitter.com/omarcito\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/open-haus-2016-worst-pain-e-v-e-r-open-haus-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79dc3b05-19cd-4379-85c7-e0bc25759564/sm/2371242-1474072629232-Openhaus_Thumbnail_9-20-16.jpg","duration":698,"publication_date":"2016-09-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-4","changefreq":"weekly","video":[{"title":"2016:E38 - DUKE NUKEM IS A CUCK - Demo Disk Gameplay","description":"I bet Samuel L. Jackson hasn't even watched half the movies he's been in. He just shows up for a few days then hammers the check. I'm pretty sure I could beat Sam Jackson at a Sam Jackson movie trivia contest.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96777233-8d8d-463b-a4c6-21def8d2a4d7/sm/2371242-1474075509769-FH_Thumb_Template3_1.jpg","duration":850,"publication_date":"2016-09-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-broken-jesus-battlefield-1-beta-gameplay","changefreq":"weekly","video":[{"title":"2016:E184 - BROKEN JESUS - Battlefield 1 Beta Gameplay","description":"Praise be to Glitch Jesus and all his holy works. Subjugate yourself to his majesty, be he floating through a staircase, rubber-banding your arms, or possessing your horse. We are unworthy of his spastic grace. Amen.\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovic\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-broken-jesus-battlefield-1-beta-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2844b60-5f3e-40b2-87f4-f3e50eead721/sm/2371242-1473790999011-FH_Thumb_12_copy_3.jpg","duration":760,"publication_date":"2016-09-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-star-wars-honchos-are-pondering-a-post-princess-leia-future","changefreq":"weekly","video":[{"title":"2017:E2 - What is Star Wars Doing About Princess Leia?","description":"Carrie Fisher, who made the character Princess (and General) Leia iconic, will be missed by fans the world over. Her character was due to play a significant role in the new Star Wars movie trilogy... so what are Disney and Lucasfilm going to do about it?","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-star-wars-honchos-are-pondering-a-post-princess-leia-future","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cd5359c-6f47-4a93-99b4-742a81ad5447/sm/24363-1483652442020-thumbnail.jpg","duration":453,"publication_date":"2017-01-05T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-bloodborne-2-or-dark-souls-4-coming-this-y-e-a-r","changefreq":"weekly","video":[{"title":"2017:E3 - Bloodborne 2 (or Dark Souls 4) COMING THIS YEAR?","description":"From Software's been teasing their upcoming projects, and if you're in the mood to hate yourself and break controllers, good news! Bloodborne 2 (or, longer shot, maybe Dark Souls 4) looks to be coming this year. And maybe a new Armored Core if we've all been very good.","player_loc":"https://roosterteeth.com/embed/game-news-2017-bloodborne-2-or-dark-souls-4-coming-this-y-e-a-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6b98c18-d4ca-4499-b659-bcfa105ecbb9/sm/24363-1483573832691-thumbnail.jpg","duration":346,"publication_date":"2017-01-04T23:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-more-leaks-on-nintendo-s-switch-event","changefreq":"weekly","video":[{"title":"2017:E2 - Pokemon Stars! Launch Games! Nintendo Switch Event LEAKS","description":"The Nintendo Switch gets its full debut next week, but it just wouldn't be right to let them have their surprises. That's why there are leaks! The newest details include updates on Switch's battery life, launch game lineup, pricing, and release date.","player_loc":"https://roosterteeth.com/embed/game-news-2017-more-leaks-on-nintendo-s-switch-event","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba52c172-a351-4561-bae2-238271705ab7/sm/24363-1483571811489-thumbnail.jpg","duration":410,"publication_date":"2017-01-04T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-spider-man-ps4-details-leak-activision-takes-down-digital-games-castlevania-animated-series","changefreq":"weekly","video":[{"title":"2017:E2 - Spider-Man PS4 Details Leak + Activision Takes Down Digital Games + Castlevania Animated Series","description":"Spider-Man may be Spider-Dad in the new PS4 game, if leaked details are to be believed. Mass Effect Andromeda has a release date. Super Mario Run is managing to be both a success AND failure at the same time. Activision has pulled a bunch of games from digital stores to celebrate the new year. Terry Crews has teased a potential role in Overwatch. Forza Horizon 3 accidentally released an unencrypted developer build and now everyone knows what future content is coming. Woody Harrelson is in talks for a role in the Han Solo standalone movie. We may be getting an animated series based off Castlevania, and of course it will be gritty. And to cap it all off, a kid accidentally got porn instead of Splatoon for Christmas. Geez, take it easy, news. We can only take so much.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-spider-man-ps4-details-leak-activision-takes-down-digital-games-castlevania-animated-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e7d4640-8acb-4f79-90c6-5187e1632717/sm/24363-1483565147959-thumbnail.jpg","duration":565,"publication_date":"2017-01-04T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2017-zelda-ready-for-switch-launch-headline-2-doctor-strange-in-thor-3","changefreq":"weekly","video":[{"title":"2017:E1 - Zelda's New Release Date + Arkane Promises Prey Won't Suck + Affleck vs Batman","description":"Did you have a good winter break and forget everything? Time to stuff your brain full again! Here's all the recent news you might have missed on account of all that relaxing.","player_loc":"https://roosterteeth.com/embed/news-roundups-2017-zelda-ready-for-switch-launch-headline-2-doctor-strange-in-thor-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a85272d-18cd-4482-8b21-09fec0f7b1b9/sm/24363-1483490673837-thumbnail.jpg","duration":556,"publication_date":"2017-01-04T00:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2017-most-pirated-movies-of-2016-pirates-ain-t-shit","changefreq":"weekly","video":[{"title":"2017:E1 - Piracy NOT DESTROYING Movies & Games","description":"Piracy is up... but so are profits. Both movies and games had a record-breaking year in 2016. So it looks like pirates aren't destroying everything after all.","player_loc":"https://roosterteeth.com/embed/entertainment-news-2017-most-pirated-movies-of-2016-pirates-ain-t-shit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50f4b209-387d-4637-941d-bd9c8b704064/sm/24363-1483490533319-thumbnail.jpg","duration":503,"publication_date":"2017-01-04T00:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2017-atari-sued-by-roller-coaster-tycoon-3-devs","changefreq":"weekly","video":[{"title":"2017:E1 - Atari SUED for Stiffing Developers on Royalties","description":"It's a whole new year and that means more industry infighting. To kick it off right, the developers of Rollercoaster Tycoon and Planet Coaster are suing Atari for allegedly withholding millions of dollars in royalties from the developer.","player_loc":"https://roosterteeth.com/embed/game-news-2017-atari-sued-by-roller-coaster-tycoon-3-devs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fd351dc-32e6-455e-be41-c23a7aec011a/sm/24363-1483479334691-thumbnail.jpg","duration":423,"publication_date":"2017-01-03T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-biggest-game-flops-of-2016","changefreq":"weekly","video":[{"title":"2015-2016:E18 - BIGGEST GAME FLOPS of 2016!","description":"Every year there are the games that come out and impress us.... They win awards, they get sequels, probably all the babes. Then there are the other games. The games that flop--with audiences, with critics, or with sales. This video is about those games.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-biggest-game-flops-of-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0fd9f03-c307-43b0-8dee-d3b2b677c4b0/sm/24363-1483465739780-flops.jpg","duration":711,"publication_date":"2017-01-02T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-all-the-games-delayed-to-2017","changefreq":"weekly","video":[{"title":"2015-2016:E14 - Games DELAYED to 2017!","description":"When games get delayed it can be easy to forget about them... but in 2016 a LOT of pretty great games were pushed out of the year and into 2017. Which, really, just makes 2017 seem like it's going to be a great year for gamers. Here are some of the highlights you can expect.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-all-the-games-delayed-to-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6fa9261-dcdb-4ac8-a116-3740da4b63db/sm/24363-1483465399276-delayed_games.jpg","duration":471,"publication_date":"2017-01-02T17:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-2017-predictions","changefreq":"weekly","video":[{"title":"2015-2016:E13 - No Man'y Sky Fixes EVERYTHING! Switch FLOPS? 2017 Predictions!","description":"How good are we at predicting what's to come? Well, you'll have to watch this now, then watch again in a year to see how it all went. But here's how we think 2017 is going to go.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-2017-predictions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/557bb966-8a1f-44ad-8779-c1ece97f77d6/sm/24363-1483465312843-2017_predictions.jpg","duration":686,"publication_date":"2017-01-02T17:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-best-indie-games-of-2016","changefreq":"weekly","video":[{"title":"2015-2016:E16 - BEST INDIE GAMES from 2016 You Should Play","description":"Sure, there were a bunch of big spacey shooty games that came out and made billions of dollars and sold millions of copies in 2016. But there were also some really stellar indie games that you might have missed. Games with focused visions, perfectly executed... and you don't even need a beast of a PC to give them a shot.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-best-indie-games-of-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8535c564-bf82-4efc-a212-dc11330e0180/sm/24363-1483342742623-best_indie_games.jpg","duration":618,"publication_date":"2017-01-02T07:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-188-sb76ag","changefreq":"weekly","video":[{"title":"2016:E188 - The Last Everything - #188","description":"Join Ashley Jenkins, Burnie Burns, and Ryan Haywood as they discuss the Assassin’s Creed movie, games of 2016, what they don’t want in 2017, and more on this week's The Patch! This episode originally aired on December 28, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn)\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-188-sb76ag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61ca010b-51a1-4c8e-8888-d4956d1c2bbc/sm/2369885-1482442375527-slack_for_ios_upload_1024.jpg","duration":4184,"publication_date":"2016-12-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-games-we-want-on-an-snes-classic","changefreq":"weekly","video":[{"title":"2015-2016:E21 - MUST-HAVE GAMES for SNES Classic Edition","description":"You could say the NES Classic Edition has been a success... it's outsold the Wii U by an order of magnitude, it was the Christmas gift no one could get this year... it's not much of a stretch to imagine an SNES is on the way too. Here are the top games we want to see on that system.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-games-we-want-on-an-snes-classic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e480f0d-8976-4b27-931f-9e01ddf95fc7/sm/24363-1482896208467-snes_mini_games_thumbnail.jpg","duration":950,"publication_date":"2016-12-28T03:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-what-to-play-on-the-wii-u","changefreq":"weekly","video":[{"title":"2015-2016:E19 - GAMES YOU SHOULD PLAY on Wii U (before it's dead)","description":"With Nintendo Switch coming, the Wii U is on its way out. But if you have one, either because you bought it and forgot about it or you received one as a gift, get the most out of it by checking out these games.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-what-to-play-on-the-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b40d426b-e067-4588-a98e-b40c5e304b77/sm/24363-1482798148009-wii_u_games_thumbnai.jpg","duration":477,"publication_date":"2016-12-27T00:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-best-holiday-game-sale-deals","changefreq":"weekly","video":[{"title":"2016:E406 - Best Holiday Game Sale Deals","description":"Even if you don't get a sweet Christmas bonus, you've probably got some gifts coming that are money shaped. That's just trouble waiting to happen, so here are some really efficient ways to get rid of all that dough.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-best-holiday-game-sale-deals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/233cff4a-ffa3-44ec-8395-fd04233b4e1b/sm/24363-1482536906664-best_holiday_deals_thumbnail.jpg","duration":409,"publication_date":"2016-12-23T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-187-post-show-ba86av","changefreq":"weekly","video":[{"title":"2016:E21 - Patch #187 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and Matt Bragg as they discuss holiday events in games, old games, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-187-post-show-ba86av","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d9bdf03-8948-4475-841f-e82583b8bedb/sm/2369885-1482422288071-p187_-_PS_-_THUMB.jpg","duration":525,"publication_date":"2016-12-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-weirdest-game-news-of-2016","changefreq":"weekly","video":[{"title":"2015-2016:E22 - Overwatch Buttgate! No Man's Sky! Kojima Imprisoned! WEIRDEST NEWS of 2016","description":"No denying, 2016 has been a weird year... for video games. Not for other stuff. Just video games. Let's relive some of the weirdest and craziest highlights from the year.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-weirdest-game-news-of-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a4f45d7-923c-4609-8b00-55bf2e0bdbbe/sm/24363-1483465870782-weirdest_news.jpg","duration":793,"publication_date":"2016-12-23T12:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-best-reviewed-games-of-2016","changefreq":"weekly","video":[{"title":"2015-2016:E17 - BEST GAMES of 2016!","description":"A lot of pretty great games came out in 2016. As we say goodbye to the year, let's look at the games that came out on top with critics and fans alike.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-best-reviewed-games-of-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da431f87-205e-4ba5-9b89-84f2ac95cda6/sm/24363-1483465642305-best_games.jpg","duration":657,"publication_date":"2016-12-23T12:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pc-vs-ps4-vs-xbox-one-best-gaming-platform-of-2016-by-the-numbers","changefreq":"weekly","video":[{"title":"2016:E405 - PC vs PS4 vs Xbox One vs Wii U: Best Gaming Platform of 2016 by the Numbers","description":"When you break down all the reviews across all the games on all the platforms in 2016, there are winners and there are losers. Which platform had the best games lineup? Which games came out on top? Let's break it all down and see how this year stacks up against last year.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pc-vs-ps4-vs-xbox-one-best-gaming-platform-of-2016-by-the-numbers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78817212-ab0c-4ed9-9147-37176d29da13/sm/24363-1482450771245-thumbnail.jpg","duration":512,"publication_date":"2016-12-22T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-god-of-war-fully-playable-more-overwatch-heroes-broadband-ruled-a-life-necessity","changefreq":"weekly","video":[{"title":"2016:E108 - God of War Fully Playable + More Overwatch Heroes + Broadband Ruled a Life Necessity","description":"God of War (4) is now playable start to finish. More conflicting reports emerge about Nintendo Switch's power. Blizzard is working on more heroes for Overwatch. The Rogue One Scarif DLC for Star Wars: Battlefront is causing some serious issues for players. The director of Arrival and Blade Runner 2049 may tackle another Sci-Fi classic. A stupid number of TV shows aired this year so don't feel bad you missed out on some. Canada has ruled broadband internet a basic need for quality of life.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-god-of-war-fully-playable-more-overwatch-heroes-broadband-ruled-a-life-necessity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f799b58-7f07-4e6e-8fe3-bc1016128ee7/sm/24363-1482446964002-roundup.jpg","duration":496,"publication_date":"2016-12-22T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-187-97-atbaj","changefreq":"weekly","video":[{"title":"2016:E187 - Mom’s Banging the Unreal Engine - #187","description":"Join Gus Sorola, Ashley Jenkins, Matt Bragg as they discuss the Nintendo Switch tour, Overwatch Winter Wonderland, Crytek studio closings, and more on this week's The Patch! This episode originally aired on December 21, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn)\n\n\n\nTo follow The Patch as a Steam Curator go to:>http://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-187-97-atbaj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fb073ca-b097-428f-bf3e-3a8eb4b9c836/sm/671784-1482420578745-000.png","duration":3669,"publication_date":"2016-12-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-best-games-to-play-with-family-during-the-holiday","changefreq":"weekly","video":[{"title":"2015-2016:E15 - BEST GAMES to Play with Your Family (if you really have no other choice)","description":"So there you are, stuck with family. You could argue over politics or try erasing all the toolbars your mom installed on her browser... OR you could squeeze some fun out of it and crush them all in video games.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-best-games-to-play-with-family-during-the-holiday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24b95a24-9a80-4f28-b4eb-38c07a192d4f/sm/24363-1483465524480-family_games.jpg","duration":449,"publication_date":"2016-12-22T11:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-more-super-mario-run-numbers-infinity-war-cast-leaked-weaponized-twitter-gi-fs","changefreq":"weekly","video":[{"title":"2016:E107 - Nintendo Stock Drops + Pokemon Prism Canceled + Twitter Weaponized","description":"Nintendo stock continues to drop over investor dissatisfaction with the company's mobile strategy. A casting call has outed some new character appearances for 2018's Avengers: Infinity War. Twitter has been weaponized against a Vanity Fair journalist. The video game industry made a ton of money this year, but traditionalists won't like how much of it came from free to play and mobile. Infamous analyst Michael Pachter has some good things to say about Nintendo Switch's viability for development. Asheron's Call is shutting down. Also, it was still around. the Pokemon Prism fan project has been shut down after 8 years in development. Mark Zuckerberg's real life Jarvis AI has nabbed Morgan Freeman for the voice. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-more-super-mario-run-numbers-infinity-war-cast-leaked-weaponized-twitter-gi-fs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74018f41-f021-482b-b634-d0d0a5db1833/sm/24363-1482365966786-thumbnail.jpg","duration":530,"publication_date":"2016-12-22T00:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-resident-evil-7-leaks","changefreq":"weekly","video":[{"title":"2016:E404 - Resident Evil 7 LEAKS","description":"Resident Evil 7 hits next month, and a demo just released on PC... so of course PC sleuths cracked the thing open and data mined it for all its worth. So... get ready for leaks invading the internet. If you want to steer clear of the details, you've been warned. If you want in on them, please step this way. We can tell you what you're in for.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-resident-evil-7-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54565e1a-82f7-4287-8455-8c1042aa9c68/sm/24363-1482364441638-thumbnail.jpg","duration":435,"publication_date":"2016-12-21T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-russia-bans-tracer-from-overwatch-overwatch-too-gay","changefreq":"weekly","video":[{"title":"2016:E403 - Overwatch TOO GAY (for Russia)?","description":"If you're on the internet you've probably already heard Tracer's got a girlfriend... unless you're on Russia, where the comic revealing it isn't being released because of Russia's gay propaganda laws.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-russia-bans-tracer-from-overwatch-overwatch-too-gay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ba806cd-850a-4811-987f-cfb32165fdb5/sm/24363-1482356868560-thumbnail.jpg","duration":358,"publication_date":"2016-12-21T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-crytek-shuts-down-studios","changefreq":"weekly","video":[{"title":"2016:E402 - Crytek SHUTS DOWN Studios","description":"Remember last week we reported on all those Crytek employees who weren't being paid? Now Crytek is shuttering five studios entirely, right before the holidays... not that they'd been paying their devs anyway...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-crytek-shuts-down-studios","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c50badea-baa8-48c1-a2e3-09920504a27e/sm/24363-1482281001906-thumbnail.jpg","duration":402,"publication_date":"2016-12-21T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-steam-awards-ignore-half-life-3-planet-hulk-confirmed-headline-3","changefreq":"weekly","video":[{"title":"2016:E106 - Half-life SNUBBED in Steam Awards + Planet Hulk Confirmed + New Anti-Porn PC Law","description":"Remember the movement to get Half-Life 2: Episode 2 nominated for the \"game deserving of a sequel\" award? It didn't work. On the bright side, there are 90+ pages of patch notes for Street Fighter, Planet Hulk is a go for Thor: Ragnarok, Telltale's The Walking Dead Season 3 is out, Disney's making a ton of money.... and then there's the new anti-porn PC law being proposed in South Carolina. So, some good news, some bad news.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-steam-awards-ignore-half-life-3-planet-hulk-confirmed-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/996c4c5a-270b-429c-a71c-99707e0ab40a/sm/24363-1482276346300-thumbnail.jpg","duration":479,"publication_date":"2016-12-20T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-virtually-ever-movie-critic-hated-assassin-s-creed","changefreq":"weekly","video":[{"title":"2016:E57 - Assassin's Creed (The Movie): DOES IT SUCK?","description":"For many, there's been a distant hope surrounding the Assassin's Creed movie. With Michael Fassbender, Marion Cotillard, and Jeremy Irons on board, how could it be bad? The movie hits theaters tomorrow because screw avoiding Rogue One apparently, and reviews are out to answer the question: IS IT GOOD? Or, more appropriately, DOES IT SUCK?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-virtually-ever-movie-critic-hated-assassin-s-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3c6637-5938-415e-9dd7-93cbe3b2f8d6/sm/24363-1482268094778-thumbnail.jpg","duration":426,"publication_date":"2016-12-20T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-suicide-squad-game-canceled-steam-winter-sale-leaks-for-honor-multiplayer-broken","changefreq":"weekly","video":[{"title":"2016:E105 - Suicide Squad Game CANCELED + For Honor Multiplayer BROKEN + Live Action Naruto Coming","description":"Suicide Squad did too many dollars at the box office for the hate train to derail, but that may not be the case for the game, which is looking pretty canceled. For Honor comes out in a few months and one tester is breaking NDA to alert potential buyers to issues with its multiplayer. Want a live action Naruto movie? No? Too bad! You get one anyway. All that, plus Steam Winter Sale dates, Blade Runner 2049 details, more funding for CD Projekt Red, and more!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-suicide-squad-game-canceled-steam-winter-sale-leaks-for-honor-multiplayer-broken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9432041-e889-4480-b7b6-99cf7fb02546/sm/24363-1482195263620-thumbnail.jpg","duration":560,"publication_date":"2016-12-20T00:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1","changefreq":"weekly","video":[{"title":"2016:E400 - Super Mario Run BIGGER Than Pokemon Go! (for now)","description":"Good news for those hoping Nintendo's foray into mobile gaming does well: so far Mario Run is doing even better than Pokemon Go! ...For now. Numbers may be huge, but investors are skeptical they'll stay that way, and for good reason. We break down Nintendo's baffling drop in stock price on the heels of this success.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ba791c8-3624-4ac0-8f34-9d8314938090/sm/24363-1482193381661-thumbnail.jpg","duration":494,"publication_date":"2016-12-20T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-will-the-switch-be-as-portable-as-nintendo-says","changefreq":"weekly","video":[{"title":"2016:E489 - Nintendo Switch 40% Portable?","description":"Ahead of Nintendo's official event, rumors are flying fast and heavy. A new report out of Digital Foundry claims that the Nintendo Switch will only run at 40% of its GPU power when it's in portable mode, and that could mean headaches for developers.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-will-the-switch-be-as-portable-as-nintendo-says","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50fbc036-158f-46e5-ad85-4c5af7373b98/sm/24363-1482184755763-thumbnail.jpg","duration":489,"publication_date":"2016-12-20T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-outsells-call-of-duty","changefreq":"weekly","video":[{"title":"2016:E399 - Pokemon OUTSELLS Call of Duty","description":"Call of Duty is having a rough year. Everyone thinks World War 1 is cooler than space, or that mech make for good besties. Now the biggest game franchise in the world that isn't GTA is having trouble competing against adorable new island colors of old Pokemon on a handheld console...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-outsells-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/115d48ff-fbda-4647-a7bd-d3ececd03f5f/sm/24363-1482004487808-call_of_duty_vs_pokemon_sales.jpg","duration":451,"publication_date":"2016-12-17T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-kojima-steals-konami-president","changefreq":"weekly","video":[{"title":"2016:E398 - Kojima Recruits Top Konami Exec!","description":"Kojima's done with Konami. He's going to start his own Konami, with Blackjack. and Hookers. And call it Imanok... or Kojima Productions. Whatever. The point is, he's scored more talent from the pachinko company formerly known as a game developer. And this one is one of their longtime top brass.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-kojima-steals-konami-president","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/810c1472-96f2-442d-ad0a-a7b0cdb9ebcc/sm/24363-1481930680731-thumbnail.jpg","duration":385,"publication_date":"2016-12-16T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-super-mario-run-disappoints-investors-bethesda-doubts-switch-power-headline-3","changefreq":"weekly","video":[{"title":"2016:E104 - Super Mario Run Disappoints + Bethesda Doubts Switch Power + Megan Fox is Poison Ivy?","description":"Another day, another news. In spite of Super Mario Run's huge launch, investors are skeptical it will make money. Bethesda's not ready to bet heavy on Switch if it's underpowered. Megan Fox may be joining DC's Gotham City Sirens as Poison Ivy. There's a new record for expensive text books. And that's just the start!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-super-mario-run-disappoints-investors-bethesda-doubts-switch-power-headline-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/524b037e-5ec4-4957-8bd5-8dd92e9c821d/sm/24363-1481921158153-thumbnail.jpg","duration":550,"publication_date":"2016-12-16T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-186-post-show-ab7fta","changefreq":"weekly","video":[{"title":"2016:E20 - Patch #186 Post Show","description":"Join Gus Sorola, Adam Ellis, and Mica Burton as they discuss their favorite games of 2016 including Uncharted 4, Overwatch, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-186-post-show-ab7fta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/306d869e-9488-41b9-a626-6ba6c7c858f2/sm/2369885-1481905931261-p186_-_PS_-_THUMB.jpg","duration":1007,"publication_date":"2016-12-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-microsoft-you-have-to-fudge-4-k-crytek-employees-fight-back-yahoo-hacked-again","changefreq":"weekly","video":[{"title":"2016:E103 - Microsoft Misleading 4K Marketing? + Super Mario Run Bigger than Pokemon? + Twitch Comes for YouTube","description":"Microsoft admits that marketing 4K is difficult, so they have to \"fudge\" it to try to drive their point home with potential consumers... so at least they're honest about that? Super Mario Run is expected to rival Pokemon Go numbers in driving revenue for Nintendo now that it's out on iOS. Twitch is coming for YouTube with yet another feature--this time targeting mobile live streaming and vloggers. At least one Crytek employee is fighting back over the lack of pay. And Yahoo has been hacked... again. Yes, this is a different hack than the last biggest hack ever, and this one is even bigger.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-microsoft-you-have-to-fudge-4-k-crytek-employees-fight-back-yahoo-hacked-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a61eef0-826d-4e7b-8da5-21568fe25ef9/sm/24363-1481842165715-thumbnail.jpg","duration":630,"publication_date":"2016-12-16T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-will-the-nintendo-switch-be-underpowered","changefreq":"weekly","video":[{"title":"2016:E397 - Nintendo Switch UNDERPOWERED?","description":"There have been all kinds of conflicting rumors and leaks about just how powerful the hardware will be for Nintendo Switch. But based on some new information, the console may be coming in surprisingly... underpowered. Let's take a look and figure out how important that power might be for Nintendo's new console and the new VR-related patents Nintendo's been filing.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-will-the-nintendo-switch-be-underpowered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067dcb85-243a-40e2-a443-e7ac1ff11848/sm/24363-1481840425121-thumbnail.jpg","duration":477,"publication_date":"2016-12-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-denies-unsubbing-problem","changefreq":"weekly","video":[{"title":"2016:E73 - YouTube: There is NO UNSUBSCRIBE BUG","description":"Users are reporting surprise unsubscribes from their favorite channels by the thousands... but apparently it's actually not happening, because it's not supposed to be happening. That's YouTube's official line anyway. The company's first foray into vlogging directly to the audience could probably have gone a little bit better.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-denies-unsubbing-problem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5400fdce-9186-4387-8365-dfb2aff0a221/sm/24363-1481839323289-thumbnail.jpg","duration":563,"publication_date":"2016-12-15T22:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-186-bao7ga","changefreq":"weekly","video":[{"title":"2016:E186 - Patching in a Winter Wonderland - #186","description":"Join Gus Sorola, Adam Ellis, and Ryan Haywood as they discuss Arizona Sunshine, holiday DLC, the latest on Nintendo, and more on this week's The Patch! This episode originally aired on December 14, 2016. Sponsored by Trunk Club (BITLY)","player_loc":"https://roosterteeth.com/embed/the-patch-2016-186-bao7ga","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93e7a9ee-5cad-4966-8379-8bf7468e0ddf/sm/2369885-1481820866976-p186_temp_thumb.jpg","duration":3648,"publication_date":"2016-12-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-try-nintendo-switch-early-more-psn-d-do-s-attacks-suicide-squad-spin-off-greenlit","changefreq":"weekly","video":[{"title":"2016:E102 - Try Nintendo Switch EARLY + PSN DDoS Attacks + MORE Suicide Squad","description":"If you're one of the Nintendo faithful your loyalty may pay off with some hands-one time with Nintendo's new console. PSN has experienced a new DDoS attack... let's hope it's not a sign of Christmas downtime to come. And maybe you hated Suicide Squad but they still made a whole lotta money so they've heard you loud and clear: you want more! Welcome to the Suicide Squad sequel and an all evil-babe Gotham City Sirens!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-try-nintendo-switch-early-more-psn-d-do-s-attacks-suicide-squad-spin-off-greenlit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d27206f-ac13-4bbe-86d4-ec5fc3e95d56/sm/24363-1481752125932-thumbnail.jpg","duration":527,"publication_date":"2016-12-14T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-oculus-ceo-steps-down-is-vr-in-trouble","changefreq":"weekly","video":[{"title":"2016:E72 - Oculus CEO Steps Down... Is Gaming VR OVER?","description":"First the projections for VR revenue dropped. Then they dropped again. Then they dropped again. Then it turns out it's tough for developers to make money with VR games. Now Oculus is restructuring and its CEO is stepping down. Is the gaming era of VR ending before it really got started?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-oculus-ceo-steps-down-is-vr-in-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdd5e8ea-d033-44e7-9154-7b6df3b6fec2/sm/24363-1481758504727-thumbnail.jpg","duration":568,"publication_date":"2016-12-14T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-rust-developer-tells-fans-to-f-ck-off","changefreq":"weekly","video":[{"title":"2016:E396 - 'Just Stop Playing,' Rust Developer Advises","description":"If you're a developer of an early access game and your players are constantly wanting updates to the game do you, A) keep working on the content since it IS early access, after all, or B) tell your fans to stop playing the game? We're going to go with option B.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-rust-developer-tells-fans-to-f-ck-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5479061b-7c59-45ca-81c0-cf0598ff0fdb/sm/24363-1481751592445-thumbnail.jpg","duration":246,"publication_date":"2016-12-14T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-cyberpunk-2077-release-date-leaked-wolverine-deadpool-movie-for-honor-always-online","changefreq":"weekly","video":[{"title":"2016:E101 - Cyberpunk 2077 Release Date Leaked? + Wolverine/Deadpool Movie? + For Honor Always Online","description":"One retailer has posted a release date for Cyberpunk 2077, but don't get excited just yet. We have reasons to be skeptical. But on the bright side with enough lobbying maybe we could get a Deadpool/Wolverine team up movie! On the not so bright side, we've got another game that requires an always-on internet connection that makes Xbox One cry.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-cyberpunk-2077-release-date-leaked-wolverine-deadpool-movie-for-honor-always-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c372526-58de-4fa9-8975-fb600f7ccaaa/sm/24363-1481679235230-thumbnail.jpg","duration":537,"publication_date":"2016-12-14T01:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-rogue-one-is-it-good","changefreq":"weekly","video":[{"title":"2016:E56 - Star Wars Rogue One: IS IT GOOD?","description":"The first standalone Star Wars movie hits this week with a lot of pressure to be amazing. Does it meet expectations? Would you see it anyway? Do midichlorians make an appearance?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-rogue-one-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfe42f48-4ef7-4272-93c7-0370bd048d85/sm/24363-1481670626918-thumbnail.jpg","duration":428,"publication_date":"2016-12-13T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-are-video-games-art-miyamoto-says-no","changefreq":"weekly","video":[{"title":"2016:E395 - Miyamoto: Video Games AREN'T ART?","description":"Are video games art? Depends on who you ask, but industry legend Shigeru Miyamoto he will tell you his games aren't. They're products.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-are-video-games-art-miyamoto-says-no","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f93cede7-cb24-4519-b7d5-f7d3108775d1/sm/24363-1481661673606-thumbnail.jpg","duration":390,"publication_date":"2016-12-13T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-crytek-out-of-money","changefreq":"weekly","video":[{"title":"2016:E394 - Crytek OUT OF MONEY (Again? Still?)","description":"It looks like Crytek has stopped paying their developers. Again. For the last six months or so. It's not the first time the Crysis developer has been in hot water over wages, but it's looking increasingly difficult to pull itself out of this one.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-crytek-out-of-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddab3525-610b-42c4-967f-4a884b793240/sm/24363-1481586863995-thumbnail.jpg","duration":428,"publication_date":"2016-12-12T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-could-video-games-rescue-sony-s-struggling-film-division","changefreq":"weekly","video":[{"title":"2016:E393 - PlayStation Will SAVE Sony Movies?","description":"PlayStation has been Sony's big money maker for a while. The company may lean on it even more heavily now by moving its movie productions under that business umbrella to offset losses from its films.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-could-video-games-rescue-sony-s-struggling-film-division","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/051f7867-8a18-4be0-8eca-d5daf0cbb8db/sm/24363-1481586492680-thumbnail.jpg","duration":446,"publication_date":"2016-12-12T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-pewdiepie-trolls-everyone","changefreq":"weekly","video":[{"title":"2016:E71 - Pewdiepie TROLLED YOU","description":"PewDiePie said he'd delete his channel once he hit 50  million subscribers. Cue thousands of people subscribing to see what happened. Well, he kept his promise... kinda?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-pewdiepie-trolls-everyone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec81a04f-c265-4dd1-81c1-a77dc4c9cbed/sm/24363-1481332965934-pdp_thumbnail.jpg","duration":484,"publication_date":"2016-12-10T01:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-spider-man-homecoming-trailer-super-mario-run-not-playable-offline-ubisoft-guilty-of-insider-trading","changefreq":"weekly","video":[{"title":"2016:E99 - Spider-Man: Homecoming First Look + Super Mario Run ONLINE ONLY + Ubisoft Insider Trading","description":"Before you check out for the weekend, there are some weird details about Super Mario Run that could be dealbreakers, there are actually TWO first looks because two different trailers that dropped. Ubisoft execs have been found guilty and fined over allegations of insider trading. And that's just the start. There's also news about Mass Effect: Andromeda, Destiny 2, shinies in Pokemon Go, disabled Samsung Galaxy Note 7  phones... your typical Friday, really.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-spider-man-homecoming-trailer-super-mario-run-not-playable-offline-ubisoft-guilty-of-insider-trading","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/833a9075-1748-4b09-bf0e-7ddb36ad151e/sm/24363-1481321599087-thumbnail.jpg","duration":513,"publication_date":"2016-12-09T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-185-post-show-7-a5av6","changefreq":"weekly","video":[{"title":"2016:E19 - Patch #185 Post Show","description":"Join Ashley Jenkins, Adam Ellis, and Brian Gaar as they discuss things they miss in games, steam greenlight, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-185-post-show-7-a5av6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0582be3a-f158-4c0f-9730-55e9807796c3/sm/2013912-1481219410244-p185_-_PS_-_THUMB.jpg","duration":1183,"publication_date":"2016-12-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-switch-on-jimmy-fallon-crash-bandicoot-producer-slams-remasters-new-laws-against-loot-boxes","changefreq":"weekly","video":[{"title":"2016:E98 - Switch on Jimmy Fallon + Crash Bandicoot Producer SLAMS Remasters + New Laws Against Loot Boxes","description":"We may have to wait until January to get more official details about Nintendo Switch but at least we've got the first hands on demo of the console in action to see how it really works. Plus Miyamoto jammed with Jimmy Fallon's band. A former dev on Crash Bandicoot HATES the upcoming remaster, possibly because he's not involved with it. China's slapping new laws on loot boxes to make game companies more honest. And that's just the start. There's tons of news today!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-switch-on-jimmy-fallon-crash-bandicoot-producer-slams-remasters-new-laws-against-loot-boxes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b9f3a7-f293-4055-8852-3c725711a7dc/sm/24363-1481238960432-thumbnail.jpg","duration":571,"publication_date":"2016-12-08T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefront-2-first-campaign-details","changefreq":"weekly","video":[{"title":"2016:E392 - Star Wars BATTLEFRONT 2 Fixes Everything?","description":"Star Wars Battlefront 2 won't be out until next year, but that hasn't stopped EA from talking it up to their investors. Now we've got details on how it aims to fix all the things that were missing from Battlefront: air to land battles, an actual campaign, and more.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefront-2-first-campaign-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ad995cf-b410-47e3-bce8-5e8d3cd2413e/sm/24363-1481233166860-thumbnail.jpg","duration":474,"publication_date":"2016-12-08T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-185-ah8yag","changefreq":"weekly","video":[{"title":"2016:E185 - Watch Out for the Ding Dongs - #185","description":"Join Ashley Jenkins, Adam Ellis, and Ryan Haywood as they discuss Final Fantasy XV, The Last Of Us Part II, The Last Guardian, and more on this week's The Patch! This episode originally aired on December 7, 2016. Sponsored by Casper (http://bit.ly/2bBXb8f) and MeUndies (http://bit.ly/29jAkYU)\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to: http://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-185-ah8yag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5997d049-128f-4255-8d1b-d6eca4d1e686/sm/2013912-1481216016937-p185_-_TEMP_THUMB.jpg","duration":3612,"publication_date":"2016-12-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-ffxv-still-not-finished-ps4-hits-50-million-konami-making-a-c-o-n-s-o-l-e-2","changefreq":"weekly","video":[{"title":"2016:E97 - FFXV Still Not Finished? + PS4 Hits 50 Million + Konami Making a CONSOLE?","description":"The holidays mean time for family, lots of food, stressful presents, and game news bomb shells taking a vacation. That doesn't mean stuff isn't happening. It just means more of that stuff is a bit more bite sized. That's why we're going to do extra round ups through the holiday period to cover all those things that don't need 5 minutes to explain.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-ffxv-still-not-finished-ps4-hits-50-million-konami-making-a-c-o-n-s-o-l-e-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd5456b8-7916-4819-a3bf-4c8388d67d13/sm/24363-1481155129586-thumbnail.jpg","duration":569,"publication_date":"2016-12-07T23:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dark-souls-trilogy-virtual-console-a-rip-off","changefreq":"weekly","video":[{"title":"2016:E389 - Dark Souls + GameCube Games on Nintendo Switch Leaks!","description":"We're still a month away from hands on and Nintendo really spilling the beans on Nintendo Switch, but that won't stop this boat from leaking. Now it looks like From Software wants to bring the Dark Souls trilogy to the platform (if it sells better than Wii U, anyway) and we may see iconic GameCube games available on the system too.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dark-souls-trilogy-virtual-console-a-rip-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de483744-fb73-47ab-b346-44084c536dc2/sm/24363-1481147215287-thumbnail.jpg","duration":383,"publication_date":"2016-12-07T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-wants-you-back-please","changefreq":"weekly","video":[{"title":"2016:E390 - Pokemon Go WANTS YOU (back... please?)","description":"Sure, Pokemon Go fell on its face because it suffered from TOO MUCH SUCCESS when it came out, but most people have moved on, and Niantic wants you back! In addition with partnering with Starbucks to blend up all those pokemon you trade away for candy, they're gearing up to launch 100 new pokemon. Oh, you wanted battles and trading? Silly you.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-wants-you-back-please","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0b1b691-747f-4a21-bc0e-069c2789f245/sm/24363-1481141238593-thumbnail.jpg","duration":435,"publication_date":"2016-12-07T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-video-game-hacks-illegal","changefreq":"weekly","video":[{"title":"2016:E388 - New Law Against Video Game Hacks","description":"A new law in South Korea could clean up competitive games by hitting the authors of these hacks with serious fines and even jail time.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-video-game-hacks-illegal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5b021b7-5b26-41a9-9686-5f92694333a8/sm/24363-1481075826383-illegal_game_hacks_thumbnail.jpg","duration":373,"publication_date":"2016-12-07T01:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-russian-officials-accuse-fifa-17-video-game-of-gay-propaganda","changefreq":"weekly","video":[{"title":"2016:E387 - Russian Officials Accuse FIFA 17 Video Game of ‘Gay Propaganda’","description":"Forget BioWare's games, The Sims, and Skyrim. Russia's got a problem with FIFA 17 promoting LGBT tolerance as \"gay propaganda.\" Strap in, it's time to get Tetris on this issue.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-russian-officials-accuse-fifa-17-video-game-of-gay-propaganda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95c8b301-296e-474a-b7ef-2e2e739a4e56/sm/24363-1481062913554-thumbnail.jpg","duration":370,"publication_date":"2016-12-06T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-final-fantasy-vii-remake-details-guardians-of-the-galaxy-2-breaks-records-galaxy-note-7-problem-found","changefreq":"weekly","video":[{"title":"2016:E95 - Final Fantasy VII Remake Details + Guardians of the Galaxy 2 Breaks Records + Galaxy Note 7 Problem Found","description":"2017 is looking huge for Square Enix, with a rumored release of Final Fantasy VII PLUS an anthology of all the early games and more. We've also got some news about Crackdown 3's release schedule, why the Bulletstorm remaster won't be free on PC, 800GB of Sleeping Dogs sequel assets, Guardians of the Galaxy 2's teaser trailer breaking Marvel records, good news for Star Wars: Rogue One fans, a car thief caught by a car, and the problem with the explodey Samsung Galaxy Note 7 may have been found.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-final-fantasy-vii-remake-details-guardians-of-the-galaxy-2-breaks-records-galaxy-note-7-problem-found","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3937332-f2b2-4a39-8ad8-2bbf8b55eaa4/sm/24363-1481050929421-thumbnail.jpg","duration":534,"publication_date":"2016-12-06T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-last-guardian-is-it-good","changefreq":"weekly","video":[{"title":"2016:E386 - The Last Guardian: Is It Good?","description":"The Last Guardian is finally hitting shelves! Did the long development time hurt it in any way? Is cat bird dog as cute as it seems? Has Team ICO got their act together when it comes to cameras and controls? The reviews are ready to break all that down for you.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-last-guardian-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c53eeda-24c4-4630-8005-3990300285de/sm/24363-1480982123522-thumbnail.jpg","duration":482,"publication_date":"2016-12-06T00:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dead-rising-i-v-does-it-suck","changefreq":"weekly","video":[{"title":"2016:E385 - Dead Rising 4: Is It GOOD?","description":"Dead Rising 4 is here with a festive new entry in the series that sees the return of Frank West and his camera. A lot has changed--difficulty, time limits, voice actors... so it's a good thing reviews are hitting to help you determine... Is It GOOD?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dead-rising-i-v-does-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfbc5d4a-135a-45c6-8dcc-10934aaa6c63/sm/24363-1480977607346-thumbnail.jpg","duration":452,"publication_date":"2016-12-05T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-psx-2016-did-it-live-up-to-the-hype","changefreq":"weekly","video":[{"title":"2016:E384 - The Last of Us PART 2 REVEALED! More Uncharted! PSX Roundup","description":"PlayStation Experience 2016 is over! We got some not so big news, like Knack 2. But then there was some pretty rad stuff like The Last of Us Part 2, more Uncharted because A Thief's End wasn't THE END after all, Crash Bandicoot, and more. Let's be real though. The Last of Us 2, right?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-psx-2016-did-it-live-up-to-the-hype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65e9a377-acd1-48a3-807b-e3c1f83cdac7/sm/24363-1480969211088-thumbnail.jpg","duration":392,"publication_date":"2016-12-05T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2016-get-to-know-final-fantasy-xv","changefreq":"weekly","video":[{"title":"2016:E4 - Get To Know... Final Fantasy XV","description":"2016:E4 - Get To Know... Final Fantasy XV","player_loc":"https://roosterteeth.com/embed/past-livestreams-2016-get-to-know-final-fantasy-xv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3a9b099-dcdc-4951-bff5-6120f9895ad7/sm/710924-1480718591460-ffxvtheknow2.jpg","duration":5380,"publication_date":"2016-12-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-the-last-guardian","changefreq":"weekly","video":[{"title":"2016:E383 - Know Before You Go...The Last Guardian","description":"PlayStation owners have been waiting a long time for The Last Guardian. Will it pick up Team Ico's legacy? What exactly is up with the cat eagle thing? Here's a quick overview on everything you should know.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-the-last-guardian","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4eabd82-a78f-48c6-b0d7-aa1239c85228/sm/710924-1480716474994-kbyg_the_last_guardian.jpg","duration":231,"publication_date":"2016-12-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-bethesda-shuts-down-doom-fan-game-bethesda-gets-legal-on-fanmade-content","changefreq":"weekly","video":[{"title":"2016:E382 - Bethesda GETS LEGAL on Fanmade Content","description":"We all though Bethesda was the chosen one, but it looks like even they've got a case of the cease and desist order bug. Despite the company being super mod friendly, it looks like one Doom fan might have stepped a little too far by trying to Kickstart a game based on a fan project he made 14 years ago.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-bethesda-shuts-down-doom-fan-game-bethesda-gets-legal-on-fanmade-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ebbc817-13e0-4064-a4f9-c285f62590ad/sm/710924-1480714507255-bethesda_thumb.jpg","duration":460,"publication_date":"2016-12-02T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-konami-imprisoned-kojima-all-the-game-awards-news","changefreq":"weekly","video":[{"title":"2016:E381 - Konami IMPRISONED Kojima + Game Awards 2016 Recap!","description":"The Konami hate train is running fast and furious after last night's Game Awards. Following the event, host Geoff Keighley revealed that Konami's treatment of Kojima was way worse than we ever thought. Plus, we've got news on Mass Effect Andromeda, the new Legend of Zelda, and more!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-konami-imprisoned-kojima-all-the-game-awards-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccaf8339-80fd-4d2a-aa5c-24f6baf0a18b/sm/710924-1480705056332-game_awards_recap_thumb.jpg","duration":491,"publication_date":"2016-12-02T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-184-post-show-ba76ah","changefreq":"weekly","video":[{"title":"2016:E18 - Patch #184 Post Show","description":"Join Ashley Jenkins, Matt Bragg, and Eddie Rivas as they discuss recent innovative games including Assassin’s Creed, Fable, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-184-post-show-ba76ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce6b148e-67b3-4592-a966-59f8eaf7a7b4/sm/2013912-1480697831375-p184_-_PS_-_THUMB.jpg","duration":935,"publication_date":"2016-12-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-psx-2016-rumors-and-predictions","changefreq":"weekly","video":[{"title":"2016:E380 - PSX 2016 Rumors and Predictions!","description":"2016:E380 - PSX 2016 Rumors and Predictions!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-psx-2016-rumors-and-predictions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71b5e142-084f-4eb9-a2d0-3304edbaa22b/sm/710924-1480631278782-the_last_of_us_at_psx_thumb.jpg","duration":521,"publication_date":"2016-12-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-xbox-wins-black-friday-ff-xv-worst-on-ps4-pro-rogue-one-breaking-records","changefreq":"weekly","video":[{"title":"2016:E93 - Xbox WINS Black Friday + FF XV WORST On PS4 Pro? + Rogue One Breaking Records","description":"2016:E93 - Xbox WINS Black Friday + FF XV WORST On PS4 Pro? + Rogue One Breaking Records","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-xbox-wins-black-friday-ff-xv-worst-on-ps4-pro-rogue-one-breaking-records","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31a83250-9651-45ab-81d9-2753ef33f3b3/sm/710924-1480625808483-Xbox_WINS_Black_Friday__FF_XV_WORST_On_PS4_Pro__Rogue_One_Breaking_Records_thumb.jpg","duration":502,"publication_date":"2016-12-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-184-p9a7ah","changefreq":"weekly","video":[{"title":"2016:E184 - Rough Internet Relationships - #184","description":"Join Ashley Jenkins, Matt Bragg, Ryan Haywood, as they discuss Final Fantasy XV, internet issues, Stardew Valley updates, and more on this week's The Patch! This episode originally aired on November 30, 2016. Sponsored by Tipsy Elves (http://bit.ly/2gf2T09)\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to: http://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-184-p9a7ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37e52963-f545-4043-af1e-9e5272b5cbf8/sm/2013912-1480613932819-p184_-_TEMP_THUMB.jpg","duration":3805,"publication_date":"2016-12-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-changes","changefreq":"weekly","video":[{"title":"2016:E70 - YouTube FORCING You to Unsubscribe","description":"2016:E70 - YouTube FORCING You to Unsubscribe","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-changes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a46f519c-f2bb-449e-9619-74f731ca654f/sm/710924-1480629392790-youtube_force_unsubs.jpg","duration":530,"publication_date":"2016-12-01T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nms-cleared-of-false-advertising","changefreq":"weekly","video":[{"title":"2016:E378 - No Man's Sky DIDN'T LIE?","description":"The ASA, a UK consumer watchdog agency, has been investigating No Man's Sky over complaints lodged from buyers that the advertising for the game on Steam was misleading. Now they've issued their verdict.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nms-cleared-of-false-advertising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4def8f39-dbd0-4ff8-9020-cb69212b73d9/sm/24363-1480553220056-thumbnail.jpg","duration":415,"publication_date":"2016-12-01T00:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-switch-gets-more-third-party-support-from-stardew-valley","changefreq":"weekly","video":[{"title":"2016:E377 - Stardew Valley for Nintendo Switch, Xbox One, PS4","description":"If you listened to The Patch earlier this year you can't have escaped our obsession with Stardew Valley. Luckily, it's now going to be available to everyone because it's coming to Xbox One, PS4, and Nintendo Switch. Actually, Nintendo Switch's 3rd party support in general is sounding pretty rad.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-switch-gets-more-third-party-support-from-stardew-valley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abdc79f2-5fa1-4cef-a370-22582e01f3db/sm/24363-1480470493027-thumbnail.jpg","duration":399,"publication_date":"2016-11-30T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-new-star-wars-episode-8-leaks","changefreq":"weekly","video":[{"title":"2016:E55 - Star Wars Episode VIII Details Leak","description":"Star Wars: Rogue One doesn't hit theaters until next month but that's not stopping anyone from trying to get a peek at the next entry in the main saga, Episode VIII. We've got some potential leaks on character appearances, themes, and more. See if you agree with our theories.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-new-star-wars-episode-8-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a1fcbc6-abbb-4fa8-9bba-fe1eca613277/sm/24363-1480460388028-thumbnail.jpg","duration":499,"publication_date":"2016-11-30T01:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-death-stranding-coming-to-p-s-x-new-marvel-game-leaks-100-000-holiday-hole","changefreq":"weekly","video":[{"title":"2016:E92 - Death Stranding at PSX? + New Marvel Game LEAKS + $100,000 Holiday Hole","description":"What ISN'T there to talk about? A bunch of leaks about PSX may have revealed the presence of Death Stranding and Marvel vs Capcom 4. Modders have uncovered hidden features in No Man's Sky. Cards Against Humanity dug a $100,000 hole. A hacker pulled a Watch Dogs 2 and held San Francisco's MUNI system for ransom... basically, it was your typical long weekend.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-death-stranding-coming-to-p-s-x-new-marvel-game-leaks-100-000-holiday-hole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/953985a8-0320-4c91-abb9-1aad72033a9f/sm/24363-1480448467241-thumbnail.jpg","duration":554,"publication_date":"2016-11-29T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-final-fantasy-x-v-is-it-good-worth-the-wait","changefreq":"weekly","video":[{"title":"2016:E376 - Final Fantasy XV: IS IT GOOD?","description":"Final Fantasy XV has been cooking for 10 years. After all that time, and all the different iterations its gone through along the way, is it as delicious a treat as promised or has time spoiled it? The reviews are in and we can finally answer the big question: IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-final-fantasy-x-v-is-it-good-worth-the-wait","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4a0c852-699d-4544-a45e-fe175084359c/sm/24363-1480378484665-thumbnail.jpg","duration":526,"publication_date":"2016-11-29T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-f-i-x-e-d-is-it-too-late","changefreq":"weekly","video":[{"title":"2016:E375 - No Man's Sky MAJOR UPDATE: It's GOOD Now!?","description":"Praise the Atlas or whatever. No Man's Sky has received its first major update, the Foundation update, and... well, it's buggy, but aside from that it actually adds a lot to the game. This occasion is momentous enough that even Sean Murray dusted off his Twitter to speak words again. Is it enough to make good for gamers or is it too late for that?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-f-i-x-e-d-is-it-too-late","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04bdc89e-2384-4078-8644-736ac01f478d/sm/24363-1480374191311-thumbnail.jpg","duration":471,"publication_date":"2016-11-28T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2016-get-to-know-nes-classic-edition","changefreq":"weekly","video":[{"title":"2016:E3 - Get To Know... NES Classic Edition","description":"Join us as we explore the NES Classic and find out if we're as good at these classic games as we think we are. HINT: We aren't. Well, Mica and Eddy are.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2016-get-to-know-nes-classic-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/512a78a9-6da4-4edd-88e0-9b8ec98e3c7c/sm/1540274-1479849968105-nes_thumb.jpg","duration":5401,"publication_date":"2016-11-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-holiday-gift-guide","changefreq":"weekly","video":[{"title":"2015-2016:E12 - Holiday Gift Ideas for GAMERS","description":"Are you ready to start buying thoughtful gifts for the gamer in your life, but you're not sure where to start? Are you trying to figure out how to drop hints for the people who need to buy you gifts? We can help! Here are a bunch of cool ideas you can use to start your shopping, or conveniently share with your shopper for awesome gifts.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-holiday-gift-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ee61db6-ca3d-4da4-a1d5-096bfeb5eca1/sm/24363-1479946020226-thumbnail.jpg","duration":432,"publication_date":"2016-11-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-final-fantasy-xv","changefreq":"weekly","video":[{"title":"2016:E374 - Know Before You Go... Final Fantasy XV","description":"Final Fantasy XV is almost here. It's been a long wait, but now it's time to broad trip. Curious what the game is all about? Here's a quick overview on everything you should know.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-final-fantasy-xv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23f5000e-ffbb-4f64-8531-3f80bfffa5e8/sm/24363-1479944454734-thumbnail.jpg","duration":430,"publication_date":"2016-11-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-183-post-show-l9a5ad","changefreq":"weekly","video":[{"title":"2016:E17 - Patch #183 Post Show","description":"Join Ashley Jenkins, Adam Ellis, and Mica Burton as they discuss Skyrim, cosplaying, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-183-post-show-l9a5ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10738add-60ff-4870-a263-656a0c6b1e80/sm/2013912-1479928304917-p183_-_PS_-_THUMB.jpg","duration":754,"publication_date":"2016-11-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-183-9-a5a4a","changefreq":"weekly","video":[{"title":"2016:E183 - Final Fantasy Road Trip - #183","description":"Join Ashley Jenkins, Adam Ellis, and Ryan Haywood as they discuss Final Fantasy XV, game sequels, Thanksgiving, and more on this week's The Patch! This episode originally aired on November 23, 2016. Sponsored by Dollar Shave Club (http://bit.ly/2dscTyZ)\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-183-9-a5a4a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04bca47b-2b9f-4770-bdda-40ba28eba809/sm/2013912-1479933395744-p183_-_TEMP_THUMB.jpg","duration":3580,"publication_date":"2016-11-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-steam-autum-sale-microsoft-apologizes-for-perceived-racial-slur-pokemon-go-fixed-the-know","changefreq":"weekly","video":[{"title":"2016:E91 - Steam Autumn Sale + Microsoft Apologizes for Perceived Racial Slur + Pokemon GO FIXED - The Know","description":"Time for a Turkey Day buffet of news! The Steam Autumn Sale is underway and Steam is holding its own Awards. You can get your own gamer diaper if you think toilets are overrated. We may have a new date for Legend of Zelda: Breath of the Wild. Skyrim director Todd Howard has pretty much confirmed the game for Nintendo Switch now. Microsoft sent out an email that accidentally read like a racial slur. Pokemon Go may be fixed and Ditto is on the loose. An auction has sold a Pokemon card for more than $50,000. Ubisoft claims they won't have \"required\" DLC anymore. Don't count on seeing X-Men or Fantastic Four in the Marvel Cinematic Universe just because Spider-man made it.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-steam-autum-sale-microsoft-apologizes-for-perceived-racial-slur-pokemon-go-fixed-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e81cd0ec-3b85-45ae-90d1-31fa781926d4/sm/24363-1479975976596-thumbnail.jpg","duration":555,"publication_date":"2016-11-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-infinite-warfare-killing-game-stop","changefreq":"weekly","video":[{"title":"2016:E373 - Call of Duty: Infinite Warfare KILLING GameStop?","description":"What do you do when your retail sales for videogames are down? FIND A SCAPEGOAT! And what better scapegoat this year than the under performing Call of Duty: Infinite Warfare? It's like last year except they had to blame 3 games that time!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-infinite-warfare-killing-game-stop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ef9f92c-1e4a-463d-9f8a-1e2f7bd72e61/sm/24363-1479941579738-thumbnail.jpg","duration":391,"publication_date":"2016-11-23T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-psvr-hacked-to-play-steam-games","changefreq":"weekly","video":[{"title":"2016:E372 - PlayStation VR HACKED for Steam","description":"Hardware hackers are busy at work to make VR more affordable for pc users by hacking PlayStation VR to work with Steam games.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-psvr-hacked-to-play-steam-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f165722-172a-4a1a-8364-2538530b9d7e/sm/24363-1479876640786-psvr_hacked_thumb.jpg","duration":351,"publication_date":"2016-11-23T04:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-final-fantasy-xv-leaks-early-director-apologizes","changefreq":"weekly","video":[{"title":"2016:E371 - Final Fantasy XV Already SPOILED! Director Apologizes","description":"Final Fantasy XV may have been delayed with the goal of saving people from spoilers and avoiding a huge day 1 update but.... well, early leaks of the game thanks to international retailers have completely spoiled the ending and there's still a huge day 1 update.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-final-fantasy-xv-leaks-early-director-apologizes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a8f317e-66d2-4358-a3f4-b2633b5128eb/sm/24363-1479864047497-thumbnail.jpg","duration":470,"publication_date":"2016-11-23T01:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-psvr-wins-best-of-2016-new-blizzard-fps-in-the-works-more-switch-launch-games","changefreq":"weekly","video":[{"title":"2016:E90 - Blizzard's New FPS + Telltale's Guardians of the Galaxy Details + New Switch Games","description":"Blizzard is working on a new FPS. Don't rejoice JUST YET, StarCraft Ghost hopefuls! It may be an entirely new IP. Telltale's Guardians of the Galaxy game is running into trouble thanks to the SAG-AFTRA voice actor strike. We've got word of even MORE launch titles for Nintendo Switch. And more roundup newssss!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-psvr-wins-best-of-2016-new-blizzard-fps-in-the-works-more-switch-launch-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7cf9958-e893-43a7-96d7-d53d8f0f2e56/sm/24363-1479851185164-Roundup_Thumbnail_Template.jpg","duration":542,"publication_date":"2016-11-22T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-watch-dogs-2-failing","changefreq":"weekly","video":[{"title":"2016:E370 - Watch Dogs 2 a HUGE FAILURE?","description":"It's been a bad holiday for sequels. Games that you think would be busy building their swimming pools of money but actually some of the biggest franchises of the year are... not doing so great. Everyone, welcome Watch Dogs 2 to that club.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-watch-dogs-2-failing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b6ecae1-8592-4b2c-946f-8cdac1bddeb9/sm/710924-1479771161761-thumbnail.jpg","duration":538,"publication_date":"2016-11-22T01:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-bans-fan-games-from-awards","changefreq":"weekly","video":[{"title":"2016:E369 - Nintendo Fan Games BANNED from The Game Awards?","description":"Two fan games, AM2R and Pokemon Uranium, have mysteriously gone missing from The Game Awards candidates for Best Fan Creation. Did Nintendo exert some pressure to get them booted?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-bans-fan-games-from-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/100e1293-4a7d-4da9-888b-9c7a696f683d/sm/24363-1479760262172-thumbnail.jpg","duration":422,"publication_date":"2016-11-21T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-stars-mario-rpg-for-nintendo-switch","changefreq":"weekly","video":[{"title":"2016:E368 - Pokemon Stars + Mario RPG for Nintendo Switch","description":"A version of Pokemon Sun & Moon, codenamed Stars, on Nintendo Switch leaks have gained more momentum from new sources. Plus word of a Mario RPG crossover with Ubisoft's Rabbids.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-stars-mario-rpg-for-nintendo-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3722c4bb-2280-4d12-b309-15b073583c10/sm/24363-1479588844840-pokemon_stars_thumbnail.jpg","duration":458,"publication_date":"2016-11-19T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-more-black-friday-deals-pc-hardware-savings","changefreq":"weekly","video":[{"title":"2016:E366 - Black Friday BEST PC and CONSOLE GAMING DEALS","description":"Looking for deals on PC gaming hardware? Games on the cheap? Consoles for a song? Here's a collection of all the latest and greatest Black Friday deals... some of which are actually available starting now!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-more-black-friday-deals-pc-hardware-savings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59c484ae-e2a4-4732-a6c3-27177ea3c6b6/sm/24363-1479521425117-thumbnail.jpg","duration":459,"publication_date":"2016-11-19T02:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-182-post-show-va4a8f","changefreq":"weekly","video":[{"title":"2016:E16 - Patch #182 Post Show","description":"Join Ashley Jenkins, Mica Burton, and Kdin Jenzen as they discuss games you always go back to, Golden Sun, Child of Light, and more!\n\n\n\n\n\n\n\n\n\nGames You Always Go BAck to\n\n\n\n\n\nGolden Sun\n\n\n\n\n\nChild of LIGHT\n\n\n\n\n\nSecret of Monkey Island\n\n\n\n\n\nKing’s Quest","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-182-post-show-va4a8f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4927ffef-c903-42f3-9a73-bb9466b09fa2/sm/2013912-1479488279728-p182_-_PS_-_THUMB.jpg","duration":878,"publication_date":"2016-11-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-e-a-s-declares-new-rules-for-you-tubers","changefreq":"weekly","video":[{"title":"2016:E365 - EA's Declares New Rules for YouTubers","description":"EA's coming to lay down the law for people who stream or do Let's Plays in their games on YouTube and Twitch. Specifically, they want content creators to be more transparent when they're doing sponsored content, or when they get games free.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-e-a-s-declares-new-rules-for-you-tubers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d0b7180-21bf-4c58-80a7-f3602b69b611/sm/24363-1479427034525-thumbnail.jpg","duration":428,"publication_date":"2016-11-18T00:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-hackers-steal-millions-from-e-a-found-guilty","changefreq":"weekly","video":[{"title":"2016:E364 - Hackers FOUND GUILTY of Stealing Millions from EA","description":"Earlier this week a hacker went on trial for cheating EA of millions of dollars in FIFA coins. Boy, did that trial go fast, because he's already been ruled GUILTY, and someone probably took away his lamborghini... kids these days.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-hackers-steal-millions-from-e-a-found-guilty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85f4529c-6d0c-4db9-9506-4b0b2edc1acb/sm/24363-1479422871281-thumbnail.jpg","duration":428,"publication_date":"2016-11-17T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-mario-switch-details-respawn-unsure-about-titanfall-3-2016-game-awards-nominations","changefreq":"weekly","video":[{"title":"2016:E89 - Watch Dogs 2 Sneaky Genitals + EA Supports Titanfall \"Whatever That Means\" + Beauty & The Beast Bigger than Star Wars","description":"Ubisoft put a bunch of dicks and vaginas in Watch Dogs 2, but players are getting banned for sharing screenshots... so they're taking them out. Some of them, anyway. Respawn Entertainment may be feeling on edge over Titanfall 2's unfortunate release date and questioning EA's support of the franchise. More details are leaking about Mario for Nintendo Switch. 2016 Game Award nominations are out. And all the other news to catch you up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-mario-switch-details-respawn-unsure-about-titanfall-3-2016-game-awards-nominations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce92ccc7-4c2f-46e7-965d-c24be9304e89/sm/24363-1479414023130-thumbnail.jpg","duration":528,"publication_date":"2016-11-17T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-182-bs6alu","changefreq":"weekly","video":[{"title":"2016:E182 - Professor Oak Still Bangs Your Mom - #182","description":"Join Ashley Jenkins, Matt Bragg, and Ryan Haywood as they discuss Pokemon Sun and Moon, the evolution of Nintendo, game pirates, and more on this week's The Patch! This episode originally aired on November 17, 2016. Sponsored by MVMT Watches (http://bit.ly/2fYkwks)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-182-bs6alu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a62ebb40-b8c8-486d-979a-aa0a744cffe3/sm/2013912-1479404385150-p182_-_THUMB.jpg","duration":3524,"publication_date":"2016-11-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-sun-moon-pirates-banned-forever","changefreq":"weekly","video":[{"title":"2016:E363 - Pokemon Sun & Moon Pirates BANNED FOREVER","description":"Pokemon Sun & Moon received an early release via pirates last week. Now, Nintendo is punching back and it's costing the pirates more than the price of a game.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-sun-moon-pirates-banned-forever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a34aa674-f8a0-4cc0-926f-c324d533e22c/sm/24363-1479351209238-pokemon_thumbnail.jpg","duration":373,"publication_date":"2016-11-17T02:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-designer-ruining-star-citizen","changefreq":"weekly","video":[{"title":"2016:E362 - No Man's Sky Designer Moves on to Star Citizen","description":"A designer on No Man's Sky has jumped ship to work on Star Citizen's standalone game, Squadron 42. He does have plenty of experience with building space games. Not great ones, but... definitely space games. Fear, ye Star Citizen fans. And wonder if NMS will ever be fixed, ye angry space explorers.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-designer-ruining-star-citizen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/222c63e8-dd3d-43d6-bed0-4bb9228dc888/sm/24363-1479342482653-nms_sc_thumbnail.jpg","duration":415,"publication_date":"2016-11-17T00:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dead-rising-4-will-it-suck","changefreq":"weekly","video":[{"title":"2016:E361 - Dead Rising 4 LIED?","description":"Dead Rising 4 is coming out soon but new details about how the game's co-op REALLY works have fans upset that it's not really Dead Rising at all anymore, and you'll have to buy DLC to get classic game modes.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dead-rising-4-will-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8fabfb0-d1f1-4255-9644-49986f551443/sm/24363-1479332182858-thumbnail.jpg","duration":489,"publication_date":"2016-11-16T21:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pok-mon-sun-moon-worth-b-u-y-i-n-g","changefreq":"weekly","video":[{"title":"2016:E360 - Pokémon Sun & Moon WORTH BUYING?","description":"Pokemon Sun & Moon FINALLY comes out this week. Reviews are pouring in, we've had some time to play it ourselves. If you're trying to decide if it's worth your dollar, you may want to see this.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pok-mon-sun-moon-worth-b-u-y-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d72110b-f57f-41d0-ab94-f792060608f1/sm/24363-1479255985863-thumbnail.jpg","duration":515,"publication_date":"2016-11-16T00:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-king-kaiju","changefreq":"weekly","video":[{"title":"2017:E7 - King Kaiju","description":"Jeremy, Ryan, Michael, and special guest Chad from ScrewAttack get to practice their inner monster and go smashy smash on some buildings and people. It's like VR King Kong...except a little more cartoon like...","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-king-kaiju","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/240dcd0b-00fa-402f-b8fd-62bc6479282e/sm/2013912-1489094863494-VR_KingKaiju.png","duration":1580,"publication_date":"2017-03-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-handle-with-care-i-am-bread","changefreq":"weekly","video":[{"title":"2017:E5 - Handle With Care & I Am Bread","description":"It's a special two-fer-one episode of Play Pals! Gavin shows Michael a game he's been really excited about, then Michael surprises Gavin with a game he already loves. And because there's two games, we get two songs out of the cheeky buggers. Don't break your bagels in excitement, just sit back and enjoy the dough!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-handle-with-care-i-am-bread","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6abe2c3d-f4e4-4df7-890b-bd9ee369cb5b/sm/2013912-1489004632057-PP_HandleWithCare_IAmBread_Thumb_2.jpg","duration":1173,"publication_date":"2017-03-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-250-mo-chievements-horsin-around","changefreq":"weekly","video":[{"title":"2017:E78 - Minecraft – Episode 250 – Mo'Chievements: Horsin' Around","description":"What's up guys? This is Geoff, Gavin, Ryan, Jeremy, Michael, and Lindsay from Achievement Hunter, and today we're going to be showing you how to get the Taste of Your Own Medicine, Saddle Up, and Beam Me Up achievements in Minecraft: Xbox One Edition. Also, we get fucked hard by Endermen, and talk about what it's like to be fucked hard by horses.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-250-mo-chievements-horsin-around","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac63e245-80ef-45f1-b933-6086e1292718/sm/2013912-1489079122834-mc_thumb.jpg","duration":3128,"publication_date":"2017-03-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-25-post-show-a8fbm4","changefreq":"weekly","video":[{"title":"2017:E5 - #25 Post Show","description":"Bethany talks about her first time...playing D and D. Plus, fan art!","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-25-post-show-a8fbm4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82dc35da-5564-41f2-8ceb-a6546a7c295c/sm/2013912-1488989631136-HH25_-_PS_-_THUMB.jpg","duration":691,"publication_date":"2017-03-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-human-skee-ball","changefreq":"weekly","video":[{"title":"2017:E12 - GTA V - Human Skee Ball","description":"The Import/Export DLC fun continues when Jack uses a Rocket Voltic to play skee ball with his coworkers.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-human-skee-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af11f886-3cb9-4c03-8a0b-6d0158de9737/sm/2013912-1488906653144-Thumb_TTD_HumanSkeeball.jpg","duration":420,"publication_date":"2017-03-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands-beta","changefreq":"weekly","video":[{"title":"2017:E77 - Ghost Recon Wildlands BETA","description":"Ryan, Jack, Gavin, and special guest Bruce sit down for some good ol' Ghost Recon Wildlands BETA action. In this episode, they really get to test their stealth abilities...or lack of stealth.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ea6652f-5b43-4dda-92a6-83ef956ba898/sm/2013912-1488925855209-LP_GhostReconWildlandsBeta.png","duration":2290,"publication_date":"2017-03-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-payday-2-round-2-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E76 - Payday 2 (Round 2): AH Live Stream","description":"Ryan, Michael, Jeremy, and Lindsay try out new maps and missions in Payday 2. These freaky thieves are trying to steal a whole lot of money from a whole lot of people.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-payday-2-round-2-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d3f9af9-7f15-4ac8-9b91-e9573300b49e/sm/2013912-1488909535324-LP_Payday2_stream_THUMB.jpg","duration":3435,"publication_date":"2017-03-07T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-25-082-gj6","changefreq":"weekly","video":[{"title":"2017:E25 - Blood and Darkness - #25","description":"Our intrepid heroes battle their way through the first level of the Dolorous Chateau.Sponsored by Blue Apron (http://cook.ba/2jeJr22) and MVMT Watches (http://bit.ly/2lmsOm7)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-25-082-gj6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b35dc23f-7d83-4f44-95fb-25e8d5a7afaf/sm/2013912-1488902823384-HH25_-_THUMB.jpg","duration":8730,"publication_date":"2017-03-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2017-resident-evil-7-ethan-must-die","changefreq":"weekly","video":[{"title":"2017:E2 - Resident Evil 7: Ethan Must Die","description":"It's time for Rage Quit! Michael sits down with one of his recent favorite games, Resident Evil 7. With 1000 gamerscore in the main game, he's ready to try out some DLC. \"Ethan Must die? Fuck, dude. I beat Madhouse difficulty. How hard could this be?\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2017-resident-evil-7-ethan-must-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7e707dc-77ed-4db2-a134-4c59bdd12694/sm/2013912-1488825616034-RQ_RE7_EthanMustDie.png","duration":739,"publication_date":"2017-03-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-grab-our-sack-and-sword-attack-ahwu-for-march-6-th-2017-359","changefreq":"weekly","video":[{"title":"2017:E359 - Grab Our Sack and Sword Attack! - AHWU for March 6th, 2017 (#359)","description":"Thanks to ProFlowers for sponsoring today's video. Make sure you go to http://www.proflowers.com and use code JackandGeoff to get $10 dollars off your purchase of $29 or more.\n\nHey kids! AHWU.Come and grab our sack!\n\n\n\n\n\nBig swords. One, two!And go on the attack!\n\n\n\n\n\nSwish and slash and hack!Make Gavin's skull go crack!\n\n\n\n\n\nOH GOD! YOU ACTUALLY DID IT! YOU ACTUALLY CAVED HIS HEAD IN! Get some bandages! And an ambulance! And a new bag of blood for Gavin. And a mop. We need to clean this blood up before it dries. WHY WOULD YOU DO THAT!?\n\n\n\n\n\nWatch the Video of the Week and the Community Video of the Week.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-grab-our-sack-and-sword-attack-ahwu-for-march-6-th-2017-359","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e489d40c-151a-4377-8bec-1cffc8557599/sm/2013912-1488840631275-ahwu_2.jpg","duration":557,"publication_date":"2017-03-06T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-eleventh-day","changefreq":"weekly","video":[{"title":"2017:E74 - 7 Days to Die - Eleventh Day ","description":"The Nug crew is back for another day in the wasteland. Everyone is preparing for day 14, unless they're getting sidetracked. In this episode: Gavin and Geoff make some 'cow chops,' Ryan, Michael and Jeremy hunt for bearied treasure, and Jack finds himself in a hole heap of trouble.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-eleventh-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc9cd4ab-9105-4440-924c-75bb6049d86b/sm/2013912-1488574376786-AH_7DTD_Day11_THUMB4.png","duration":3093,"publication_date":"2017-03-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-worms-w-m-d-3","changefreq":"weekly","video":[{"title":"2017:E75 - Worms W.M.D. 3","description":"Well well, wouldn't you know? Worms has returned to steal the show. Time for some classic W.M.D. madness!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-worms-w-m-d-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b813336-8076-429a-b11b-eef826021954/sm/2013912-1488577598156-Thumb_Worms_WMD_Revisited.jpg","duration":2914,"publication_date":"2017-03-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-66-h8atnb4","changefreq":"weekly","video":[{"title":"2017:E8 - Gavin's F Bomb - Last Call #66","description":"The AH Crew talk about the upcoming AH Rap Battle, recording voiceovers, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-66-h8atnb4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c50d6b1-4d7f-46f4-8d98-34e20a91e328/sm/2013912-1488584646596-OFF66_-_PS_-_THUMB.jpg","duration":1097,"publication_date":"2017-03-05T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-21","changefreq":"weekly","video":[{"title":"2017:E73 - Let's Watch - Resident Evil 4 (2016) Part 4","description":"Michael and Andy are back with the President's daughter. Can they survive the treacherous traps and baddies located within the castle?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/621c36a1-6ecf-4c83-bba8-e6eb1b41545b/sm/2013912-1488563981194-LW_ResidentEvil4Pt4.png","duration":4155,"publication_date":"2017-03-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-mario-bag","changefreq":"weekly","video":[{"title":"2017:E71 - GTA V - Mario Bag","description":"When you don't have blue shells and bananas, rockets and sticky bombs will have to do! Geoff's Mario themed playlist features GTA races and a Last Team Standing gamemode, all modded by the GTA community.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-mario-bag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc7d019b-da4b-4203-a003-b97b5e15bb3e/sm/2013912-1488492496663-GTA_V_MarioBag_Thumb_C.jpg","duration":2493,"publication_date":"2017-03-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-66-abiyfb","changefreq":"weekly","video":[{"title":"2017:E66 - Favorite Anal Flavor - #66","description":"The AH Crew sit down to talk about the Nintendo Switch, midnight game releases, fights, and more on this week's Off Topic!\n\nThis episode originally aired March 3, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and BuzzFeed Video (http://bit.ly/2m3UEWA)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-66-abiyfb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fd68dfc-8065-4af6-8292-15223932faf5/sm/2013912-1488584461886-OFF66_-_THUMB.jpg","duration":9746,"publication_date":"2017-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-31","changefreq":"weekly","video":[{"title":"2017:E7 - Episode #31: Dead Walkers: Rise of the 4th Reich","description":"Your guess is as good as mine as to what's happening in this movie.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbd69144-2ba9-42f5-84cb-d2bdb78e4ee3/sm/2013912-1488483378658-TM_-_DeadWalkers_-_THUMB.jpg","duration":4741,"publication_date":"2017-03-03T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-20","changefreq":"weekly","video":[{"title":"2017:E72 - Let's Watch - Resident Evil 7 - Bedroom DLC","description":"Join Geoff, Michael, and Gavin as they test their brain skills in the new Resident Evil 7 DLC, Bedroom.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60fd0fe7-eeb8-456e-8b88-ef486ffd80b8/sm/2013912-1488494497294-d-Recovered.jpg","duration":3516,"publication_date":"2017-03-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-19","changefreq":"weekly","video":[{"title":"2017:E69 - Let's Watch - Zelda: Breath of the Wild","description":"Oh boy, oh boy, oh boy. The time has come when Achievement Hunter finally gets to \"switch\" things up. Join Michael, Ryan, Matt, and Lindsay as they get to experience the fantastical views of Zelda: Breath of the Wild. But how did Achievement Hunter get to play the game early? Who \"Knows.\"","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1cfd451-9925-439b-8471-b0e228dc73ea/sm/2013912-1488407346609-LW_BrefOfdaWild.png","duration":4264,"publication_date":"2017-03-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-for-honor-sadder-ladder","changefreq":"weekly","video":[{"title":"2017:E11 - For Honor - Sadder Ladder","description":"Training to be a legendary warrior in For Honor is a tough job. You have to swing your sword, run probably, and even climb ladders. That last one doesn't seem deadly but honestly it's a pretty big deal strategy wise.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-for-honor-sadder-ladder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96c229ab-e735-4b8c-a9d5-8bf3939a5f9b/sm/2013912-1488318941346-fh_thumb.jpg","duration":140,"publication_date":"2017-03-02T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-249-mo-chievements-fupa","changefreq":"weekly","video":[{"title":"2017:E70 - Minecraft – Episode 249 – Mo'Chievements: FUPA","description":"More achievements have been added to Minecraft, which means the Achievement Hunters are ready to live up to their name and actually hunt achievements. More importantly, it's time for Ryan to learn some real life lessons. Hopefully by the end of the video he'll know what a fupa is and what's a buttfor.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-249-mo-chievements-fupa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72a78455-eb86-4ca1-a31c-45f4109f9c7d/sm/1104396-1488470681981-mc2.jpg","duration":3090,"publication_date":"2017-03-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-sniper-elite-4-deathmatch","changefreq":"weekly","video":[{"title":"2017:E68 - Sniper Elite 4 - Deathmatch","description":"Last time we saw our Achievement Hunter boys pick up their sniper rifles, they were working together to defeat all the enemies Sniper Elite 4 could throw at them. This time, there's no enemies around anywhere. Hungry for testicles, they've turned their scopes on each other. \n\n...Just to clarify, that's hungry to shoot some testicles. Not hungry for the testicles themselves.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-sniper-elite-4-deathmatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab8e6f8a-405e-4971-955c-29a56d74a15d/sm/2013912-1488321144784-LP_SniperElite4_SnipeySnipeMultiplayer.png","duration":2095,"publication_date":"2017-03-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-17","changefreq":"weekly","video":[{"title":"2017:E65 - Let's Watch - Hitman - The Warlord","description":"Ryan puts on the suit and travels to Bangkok to kill the latest elusive target, the Warlord. Things get poppin'.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82952712-d0ff-4729-a640-066964b4f8b1/sm/2013912-1488216587439-LW_HitmanWarlord.png","duration":2969,"publication_date":"2017-02-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-18","changefreq":"weekly","video":[{"title":"2017:E66 - Let's Watch - Horizon Zero Dawn","description":"Join Ryan, Jeremy, and Jack as they venture into the world of Horizon Zero Dawn. Let's hunt some dino robot things...","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c230b62-bc6e-4aca-b86b-e7c7a4c04324/sm/2013912-1488234645315-LW_HorizonZeroDawnV1.png","duration":3755,"publication_date":"2017-02-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-for-honor-stream","changefreq":"weekly","video":[{"title":"2017:E67 - For Honor: AH Live Stream ","description":"Michael and Jeremy teach Gavin and Trevor their battle strategies in For Honor. But they find even the best strategies get chaotic real fast.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-for-honor-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bd35ecb-6131-42d9-8c08-73d3e10ca0df/sm/2013912-1488238372060-LP_ForHonor_Stream_THUMB3.png","duration":3032,"publication_date":"2017-02-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-goodbye-geoff-ahwu-for-february-27-th-2017-358","changefreq":"weekly","video":[{"title":"2017:E358 - Goodbye Geoff - AHWU for February 27th, 2017 (#358)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to blueapron.com/AHWU.\n\nToday's the day. Today is the day that little AHWU grew into a man. It's learning how to shave. It's taking nice little female AHWUs out on dates. It has balls now, man! And real adult feelings.\n\n\n\n\n\nWe're kidding. Just like us, AHWU doesn't have feelings. We turned AHWU into a robot - AHWU 2.0! Ryan ripped its chest cavity open and sucked out its blood. Now AHWU's filled with oil and gears. And probably a missile launcher or three. Also, mail! Lots and lots of delicious mail.\n\n\n\n\n\n\n\n\n\n\n\nWatch the Video of the Week and the Community Video of the Week!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-goodbye-geoff-ahwu-for-february-27-th-2017-358","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b851d1b-a82f-441f-a233-f981222086a1/sm/2013912-1488237294520-ahwu_358.jpg","duration":781,"publication_date":"2017-02-27T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-sniper-elite-4-horde-mode","changefreq":"weekly","video":[{"title":"2017:E64 - Sniper Elite 4 - Horde Mode","description":"Join Jeremy, Matt, Gavin, and Ryan as they practice their sniping skills on hordes of enemies. Some aim for the head while others are fascinated with the nuts...guess who prefers what...","player_loc":"https://roosterteeth.com/embed/lets-play-2017-sniper-elite-4-horde-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90da26df-0fcc-40b8-a3b1-a23c4282ee20/sm/2013912-1487958130166-LP_SniperElite4_Horde.png","duration":2184,"publication_date":"2017-02-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-65-98-ab7f","changefreq":"weekly","video":[{"title":"2017:E7 - It Happened - Last Call #65","description":"The AH Crew sit down to talk about America, drinking too much, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-65-98-ab7f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f22e73f9-bd75-4cb6-b57d-68f00d09a52c/sm/2013912-1487975398648-OFF65_-_PS_-_THUMB.jpg","duration":965,"publication_date":"2017-02-26T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-the-legend-of-zelda-breath-of-the-wild-magnesis-catapult","changefreq":"weekly","video":[{"title":"2017:E10 - The Legend of Zelda Breath of the Wild - Magnesis Catapult","description":"Nintendo was nice enough to send The Know a copy of The Legend of Zelda Breath of the Wild early. They were even nice enough to send them a Nintendo Switch to play it on. Naturally Achievement Hunter couldn't have that so they sent Matt to go steal it and make a video. He did not disappoint.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-the-legend-of-zelda-breath-of-the-wild-magnesis-catapult","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69d382fb-a08c-45f1-ad9c-74812e3e637f/sm/1104396-1487983757702-TTD_BrefOfDaWildMagnetThing.png","duration":152,"publication_date":"2017-02-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-deadline-2-thin-dead-line","changefreq":"weekly","video":[{"title":"2017:E63 - GTA V - Deadline 2: Thin Dead Line","description":"The Achievement Hunter boys are Tronning it up in GTA V Deadline. But it's not Tron. Legally, at least.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-deadline-2-thin-dead-line","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63326081-d4fd-48b8-af64-0035a8de24ef/sm/2013912-1487955231607-GTA_V_Thumb_Deadline2.jpg","duration":2531,"publication_date":"2017-02-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-65-aniyfba","changefreq":"weekly","video":[{"title":"2017:E65 - Let’s Die - #65","description":"The AH Crew sit down to talk about Geoff’s “sabbatical”, It’s Always Sunny in Philadelphia, Michael’s impending fatherhood, and more on this week's Off Topic!\n\nThis episode originally aired February 24, 2017 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and Seeso (http://bit.ly/2iXI3mZ)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-65-aniyfba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0ba744b-e8fb-4aad-8c73-b771f76bacdf/sm/2013912-1487975369236-OFF65_-_THUMB.jpg","duration":8399,"publication_date":"2017-02-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-30-let-there-be-zombies","changefreq":"weekly","video":[{"title":"2017:E6 - Episode #30: Let There Be Zombies","description":"The guys try out some new rules for the drinking game while watching the mediocre zombie thriller, Let There Be Zombies.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-30-let-there-be-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b260b1a-2524-4c6d-a3f8-cf663effeb65/sm/2013912-1487957355037-TM_-_LetThereBeZombies_-_THUMB.jpg","duration":5851,"publication_date":"2017-02-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-vr-invaders","changefreq":"weekly","video":[{"title":"2017:E6 - VR Invaders","description":"Special thanks to My.com for sponsoring todays VR the Champions. Update 2.0 of the game just came out and it has new cool features, improvements and add-ons including new survival game mode and destructible environments. You can get your own copy of VR Invaders on SteamVR:http://bit.ly/2jO0tUK\n\n\n\nOn this episode of VR the Champions, join Ryan, Michael, Jeremy, and special guest Etika as they delve into the world of hacking. Watch them bip all sorts of bad shit in virtual reality worlds and rescue users who are trapped by the glitch. What is the glitch you ask? Really bad shit...","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-vr-invaders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/377d4758-74bc-48ae-9c2e-df97964bb062/sm/2013912-1487261975613-VR_Invasion.png","duration":1175,"publication_date":"2017-02-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands-part-2","changefreq":"weekly","video":[{"title":"2017:E62 - Ghost Recon Wildlands Part 2","description":"Thanks to Ubisoft for sponsoring this video. To learn more about the game, click here: http://ubi.li/v5kvuJack and Jeremy are back in Ghost Recon Wildlands, but now their characters are leveled up and they've got harder missions to stealth through. There's also more weapon and equipment perks to experiment with, which of course means bigger and more ridiculous explosions. ESRB raiting: awaiting rating.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/412da579-9c87-4bb4-9d1c-7f2ae458fb67/sm/2013912-1487883089546-GhostReconWildlands2_THUMB3.png","duration":2627,"publication_date":"2017-02-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-16","changefreq":"weekly","video":[{"title":"2017:E60 - Let's Watch - For Honor Campaign","description":"Join Ryan and Gavin with special guest Shofu as they experience the For Honor single player campaign.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f353364-f1c4-4535-97bd-84b33801c9d6/sm/2013912-1487791024871-LW_ForHonorV2.png","duration":2336,"publication_date":"2017-02-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-248-sky-factory-part-2","changefreq":"weekly","video":[{"title":"2017:E61 - Minecraft – Episode 248 – Sky Factory Part 2","description":"After last week's vein mine incident, the Achievement Hunter boys are back to re-rebuild the world in Minecraft's Sky Factory mod. Once they have ground to stand on, it's time to turn the wood age into Achievement Hunter's number one bitch.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-248-sky-factory-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bda0bad-76a6-417c-9519-6fd6c351ac95/sm/2013912-1487869637313-Miencraft_SkyFactory2_Thumb.png","duration":3607,"publication_date":"2017-02-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-24-post-show-nai7fgf","changefreq":"weekly","video":[{"title":"2017:E4 - #24 Post Show","description":"The whole team is here! We talk about passing notes, fan art and RTX Australia.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-24-post-show-nai7fgf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23950bfa-38a4-43e2-beca-9239d17e36b7/sm/2013912-1487711190594-HH24_-_PS_-_THUMB.jpg","duration":857,"publication_date":"2017-02-22T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-halo-5-rainbow-road","changefreq":"weekly","video":[{"title":"2017:E9 - Halo 5 - Rainbow Road","description":"The guys reflect back on their childhoods with some classic Rainbow Road. Actually, how old are these boys? This is the SNES Rainbow Road. Mario Kart 64 version, sure, but did they even play Super Mario Kart? Eh...at least Jack and Ryan get to feel nostalgic.\n\nClick for the Map and Gametype","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-halo-5-rainbow-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f133b8-0494-4bbe-a3b5-b5c89a5d70de/sm/2013912-1487006869364-TTD_Halo5RainbowRoad.png","duration":395,"publication_date":"2017-02-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-for-honor-dominion","changefreq":"weekly","video":[{"title":"2017:E59 - For Honor - Dominion ","description":"Ryan, Michael, Jack, and Jeremy try out their battle buddy strategies in For Honor - Dominion.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-for-honor-dominion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7951eb26-92d9-4689-8c53-81ef73c261f3/sm/2013912-1487780802071-LP_ForHonor_THUMB4.png","duration":2005,"publication_date":"2017-02-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-357","changefreq":"weekly","video":[{"title":"2017:E357 - The Real Christopher Walken - AHWU for February 21st, 2017 (#357)","description":"Well look who's here! It's the best AHWU guest star since Kenan \"AHLU\" Thompson. We've got Christopher Walken in the house this week. Our little Walky pal's gonna take you through all the games releases and news you need to know right here in AHWU. He's definitely here and totally real, just like the Nintendo Switch we're about to go and play now that we got AHWU done. Whoo!\n\n\n\n\n\nWatch the Video of the Week here and the Community Videos of the Week here and here!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-357","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2185781b-e494-44ca-b780-60692773eb73/sm/2013912-1487710580342-AHWU357.png","duration":509,"publication_date":"2017-02-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-24-abuavt","changefreq":"weekly","video":[{"title":"2017:E24 - Green With Envy - #24","description":"The party meets an uber-powerful magician with anger and social interaction issues who can crush people with a thought. Will this be the end of Bo Jingles?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSponsored by Blue Apron (http://cook.ba/2jeJr22) and SkullSplitter Dice (http://bit.ly/2lHYyoM)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-24-abuavt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a0a9de1-99fd-4e42-b8c5-7bc7c6018976/sm/2013912-1487695562020-HH24_-_THUMB.jpg","duration":7571,"publication_date":"2017-02-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-ah-live-stream-part-2","changefreq":"weekly","video":[{"title":"2017:E57 - Golf With Your Friends: AH Live Stream - Part 2","description":"The Mar-a-lago golf course has been booked solid for the next four years, so we're going back to Golf With Your Friends to get our minigolf jollies on. This is Part 2 of our AH Livestream, featuring Ryan Haywood, Jeremy Dooley, Gavin Free, Michael Jones, and Trevor Collins!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-ah-live-stream-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59329fba-7469-475a-af25-ccf2c3ab47a5/sm/2013912-1487375067075-Thumb_Part2.jpg","duration":3134,"publication_date":"2017-02-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-7-days-to-die-tenth-day","changefreq":"weekly","video":[{"title":"2017:E56 - 7 Days to Die - Tenth Day","description":"The Achievement Hunters are still determined to complete their quest to the trader. They must travel through many zombie filled biomes to complete their mission and make it back to the bunker in one piece.In this episode: Ryan, Michael, and Jeremy attempt to meet Jack in the distant north, while Geoff and Gavin build re-enforcements on the bunker.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-7-days-to-die-tenth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c474e609-797e-4b60-a54d-e731aab16e97/sm/2013912-1487367567628-LP_7DTD_Day10_THUMB5.png","duration":3080,"publication_date":"2017-02-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-6","changefreq":"weekly","video":[{"title":"2017:E54 - VR Surgeon Simulator ER: Experience Reality Part 6","description":"Michael and Gavin finally get to wrap up their anti-gravity adventure and conclude their journey of being the world's best surgeons.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77671d51-23f5-4994-b8f5-97d0a66ed8d6/sm/2013912-1487266010189-LP_VR_SurgeonSimulator6.png","duration":3152,"publication_date":"2017-02-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-64-9-b6bdg","changefreq":"weekly","video":[{"title":"2017:E6 - I'm Just Coming - Last Call #64","description":"The AH Crew sit down to talk about height and age differences, the tastes of alcohol, winding up in trunks, and more with special guest Etika on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-64-9-b6bdg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/401b10d4-cc40-44f1-806b-578ab37d9d43/sm/2013912-1487276073193-OFF64_-_PS_-_THUMB.jpg","duration":1157,"publication_date":"2017-02-19T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-15","changefreq":"weekly","video":[{"title":"2017:E58 - Let's Watch - Sniper Elite 4","description":"Ryan \"Nut Shot\" Haywood is on the hunt for Nazi balls in Sniper Elite 4. Joining him on his quest for scrotes are Jeremy, Gavin, and special guest, Shofu","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c40b5636-e288-45bf-8a13-6e899d285050/sm/2013912-1487444997666-LW_SniperElite4V2.png","duration":4008,"publication_date":"2017-02-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-offense-defense-bionic-penis-edition","changefreq":"weekly","video":[{"title":"2017:E55 - GTA V - Offense Defense: Back to Basics (#7)","description":"Geoff makes the boys plays his favorite game mode in GTA, and Ryan obsesses over another man's member. Welcome back to Offense Defense!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-offense-defense-bionic-penis-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63498857-3c30-424b-9c16-8322b1ecdbee/sm/2013912-1487355454441-LP_GTA_Thumb_OffenseDefense_FlippedCar.jpg","duration":1776,"publication_date":"2017-02-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-64-aniyav","changefreq":"weekly","video":[{"title":"2017:E64 - My Brain Doesn't Work So Good No More - #64","description":"The AH Crew sit down to talk about Cow Chop's eviction, the Nintendo Switch, Big Mac creations, and more with special guest Etika on this week's Off Topic!\n\nThis episode originally aired February 17, 2017 and is sponsored by MVMT Watches (http://bit.ly/2lknCSf) and SquareSpace (http://bit.ly/2licfKU)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-64-aniyav","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b28a1fd-daab-4902-bc9f-7663cdca15e3/sm/2013912-1487276030485-OFF64_-_THUMB.jpg","duration":8684,"publication_date":"2017-02-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-29","changefreq":"weekly","video":[{"title":"2017:E5 - Episode #29: The Other Side","description":"A man's wife goes missing in the middle of a zombie apocalypse. I'm sure she's totally fine. Join the AH Crew as they watch The Other Side, a riveting zombie tale, starring Johnny Derp & Samuel L. Jacksoff.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faef246f-4d5f-4018-99c9-a663f89732e0/sm/2013912-1487276116859-TM_-_OtherSide_-_THUMB.jpg","duration":6004,"publication_date":"2017-02-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2017-the-monster-mac","changefreq":"weekly","video":[{"title":"2017:E3 - The Monster Mac","description":"McDonald's has done the unthinkable and added a couple new additions to the Big Mac family tree - baby boy Mac Jr and big daddy Grand Mac. Michael, Ryan, Jeremy, and Gavin think they haven't gone far enough. Masters of food science, Achievement Hunter has combined the Grand Mac, two Big Macs, four Mac Jrs, and a handful of nugs into the biggest, most badass Mac of them all - The Monster Mac.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2017-the-monster-mac","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03c573e-b073-48b2-8f39-4fcb03319a0a/sm/2013912-1487349689870-MonsterMacThumb_v001.png","duration":789,"publication_date":"2017-02-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-14","changefreq":"weekly","video":[{"title":"2017:E51 - Let's Watch - Resident Evil 7: Biohazard Part 8","description":"Michael, Ryan, and Jeremy coach from the sidelines as Geoff arms himself to the teeth for his big showdown with Eveline. Join us as we finally finish the main storyline of Resident Evil 7: Biohazard.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45b299d8-2db9-43c8-8468-c78533f6056a/sm/2013912-1487180451700-RE7_Part8_THUMB_1.jpg","duration":2264,"publication_date":"2017-02-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-247-sky-factory","changefreq":"weekly","video":[{"title":"2017:E53 - Minecraft – Episode 247 – Sky Factory","description":"The Achievement Hunter crew have left Achievement City behind and are ready to start a new world. Here, when I say \"start a new world,\" I mean they're literally starting with nothing more than a tree, a block of dirt, and a pocketful of bacon. This a Sky Factory - a mod where the instruction booklet is over 100 pages long. And I bet you and I both know six boys who just love reading 100 pages of rules before jumping into a let's play.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-247-sky-factory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f3dd324-47b6-4762-855d-ecea6b245620/sm/2013912-1487264269269-MC_SkyFactoryThumb.jpg","duration":2554,"publication_date":"2017-02-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2017-crossy-roads","changefreq":"weekly","video":[{"title":"2017:E1 - Crossy Road","description":"Special thanks to Amazon Appstore and Amazon Coins for sponsoring this video. To learn how to buy Amazon coins you can check out this link: http://amzn.to/2l2eClpJoin Michael on his quest to get \"not a pathetic piece of shit score.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2017-crossy-roads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81ad2a0a-64c7-4da9-be0d-8cd25961d5da/sm/2013912-1487175488785-RQ_CrossyRoad_THUMB5.png","duration":659,"publication_date":"2017-02-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-astroneer","changefreq":"weekly","video":[{"title":"2017:E52 - Astroneer ","description":"Join Ryan, Jeremy, Michael, and Gavin as they explore and mine an unknown planet in Astroneer. They have all the tools to build a base, but will they find the materials they need to survive?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-astroneer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6bebc8b-aba4-405c-8a65-b66189b40860/sm/2013912-1487190296076-LP_Astroneer_THUMB1.png","duration":3659,"publication_date":"2017-02-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-genital-jousting-date-night","changefreq":"weekly","video":[{"title":"2017:E4 - Genital Jousting - Date Night","description":"Hey baby. It's Valentine's Day, and if Genital Jousting has tought me anything, we're just a few steps away from making some sweet, sweet dick love. Here baby. Take this spaghetti. Shove it right up your butthole. Yeah, baby. Juuuuuust like that. Mmmmmm. I bet that spaghetti tastes so good in your ass, doesn't it? Here. Let me get my butthole up on that other noodle. Yeah. Just like that, baby. Now, we just need to eat that butthole spaghetti until our natural starfish smooth up on each other. Yeah. Yeah. Just like that, baby. Happy Valentine's Day.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-genital-jousting-date-night","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ed3a4f1-cec0-436b-bb87-fcab36ae4cd6/sm/2013912-1487089560180-PP_GenitalJousting.png","duration":1074,"publication_date":"2017-02-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-ah-live-stream-part-1","changefreq":"weekly","video":[{"title":"2017:E50 - Golf With Your Friends: AH Live Stream - Part 1","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT.\n\n\n\nRyan, Michael, Jeremy, Trevor, and Gavin are grabbing their argyle sweater vests and teeing up in some Golf With Your Friends. They're ready to see who be the Tiger Woods of bullshit mini golf. Probably whoever gets the cone-shaped ball the least. To watch the full stream, check out the Achievement Hunter channel here.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-ah-live-stream-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/894dab4f-6092-46a8-8391-52129834e372/sm/2013912-1487020719932-Thumb_Part1.jpg","duration":2575,"publication_date":"2017-02-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-the-lonely-jeremy-ahwu-for-february-13-th-2017-356","changefreq":"weekly","video":[{"title":"2017:E356 - The Lonely Jeremy - AHWU for February 13th, 2017 (#356)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link:http://www.mvmtwatches.com/AHWU\n\n\n\n\n\n\n\n\n\nThe office is quiet...too quiet. Jeremy looks around and notices he's alone. \"Where did everyone go? Oh well. Fuck it. I don't need anyone. I can do AHWU all by myself!\"\n\n\n\n\n\nJeremy set up the camera. He turned on the lights. And then he sat there, unsure of where to start. He sat there for 10, 20, then 30 minutes. Finally, he got up and opened the door to the office. \"TREEEEVOOOOR. I KNOW YOU'RE SOMEWHERE IN THIS OFFICE. HEEEEEELP MEEEEE!\"\n\n\n\n\n\n\n\n\n\n\n\nWatch the Video of the Week and the Community Video of the Week.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-the-lonely-jeremy-ahwu-for-february-13-th-2017-356","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1db56d2c-caf4-42c4-9f51-b0d17e93188b/sm/2013912-1487026148881-ahwuuuuui.jpg","duration":634,"publication_date":"2017-02-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-13","changefreq":"weekly","video":[{"title":"2017:E48 - Let's Watch - Resident Evil 7: Biohazard Part 7","description":"Mia said, \"Ethan, my bad!\" After seeing the girl had puked on his face. But then Mia finds Ethan, barely a-breathin'. Towels him offand says, \"Go! Leave this place!\"","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/769eb301-2dac-4377-9887-48d6b858b38a/sm/2013476-1487096229902-rebiohazard_base.jpg","duration":3570,"publication_date":"2017-02-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege","changefreq":"weekly","video":[{"title":"2017:E49 - Rainbow 6 Siege: Snow More Terrorists","description":"The boys are back, frolicking in the snow, getting prepared... for terries.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce6a821-e8b1-405e-b43a-b6b5ef1dbed0/sm/2013912-1486764771742-LP_R6Siege_SnowMoreTerrorists.png","duration":2230,"publication_date":"2017-02-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-mountain-climbing","changefreq":"weekly","video":[{"title":"2017:E8 - GTA V - Mountain Climbing","description":"The Achievement Hunter boys have gone up Mount Chiliad plenty of times. What they haven't done is gone up Mount Chiliad in a sweet-ass rocket car! There's only one rule: don't drive. Let the screaming commence!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-mountain-climbing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de946dd4-560e-4bef-9a79-3f3835b6b811/sm/2013912-1486682386842-gtavthumb.jpg","duration":900,"publication_date":"2017-02-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-verified-cunning-stunts","changefreq":"weekly","video":[{"title":"2017:E47 - GTA V - Verified Cunning Stunts","description":"Geoff, Ryan, Matt, Jeremy, Michael, and Gavin return to the cunty-stunty world of Cunning Stunts! The Achievement Hunter boys have raised their standards, so they're not settling for any ol' shit maps this week. No! They're ready to tear into some Rockstar Verified Cunning Stunt Contest winning maps!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-verified-cunning-stunts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42c37891-7ce3-4576-a797-f93dc351a299/sm/2013912-1486679749670-GTA_Thumb.jpg","duration":2747,"publication_date":"2017-02-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-63-ajoa7bfn","changefreq":"weekly","video":[{"title":"2017:E63 - A Myriad of F*ckups - #63","description":"The AH Crew sit down to talk about traveling issues, Achievement Hunter clusterfucks, snakes in toilets, and more on this week's Off Topic!\n\nThis episode originally aired February 4th, 2017 and is sponsored by 1800 Flowers (http://bit.ly/2ltOuMo) and Blue Apron (http://cook.ba/2k8tD57)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-63-ajoa7bfn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1795ab41-a692-473c-b0da-e6454fecca52/sm/2013912-1486760444999-OFF63_-_THUMB.jpg","duration":4793,"publication_date":"2017-02-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-28","changefreq":"weekly","video":[{"title":"2017:E4 - Episode #28: Death By VHS","description":"Hey mon, ya mon, kick back and relax wit da AH crew as they peep the new flick, Death By VHS, an awful anthology that'll suck ya soul away, ja feel?","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4093be77-e6cf-4949-a638-dc82025336f8/sm/2013912-1486743636617-TM_-_DeathByVHS_-_THUMB.jpg","duration":4632,"publication_date":"2017-02-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-i-expect-you-to-die","changefreq":"weekly","video":[{"title":"2017:E5 - I Expect You To Die","description":"In today's episode of VR the Champions, Ryan gets a chance to become the newest secret agent of the universe. He uses his super secret set of skills to debunk mysteries and solve puzzles. Honestly, Ryan probably just became a secret agent to impress our special guest, NoahJ456.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-i-expect-you-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9158098f-9a9d-4c05-8552-231e0ef18ec8/sm/2013912-1486594103404-VR_IExpectYoutoDie.png","duration":1686,"publication_date":"2017-02-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-11","changefreq":"weekly","video":[{"title":"2017:E44 - Let's Watch - Resident Evil 7: Biohazard Part 6","description":"Geoff ducks C4 and death traps galore as he steps over gore, finds Resident Evil lore, thinks Lukas' mind games a chore (though not quite a bore), all in the horror game we all adore.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f403289-c79a-463e-87d8-69536e3c1ab5/sm/2013912-1486572335071-RE7_Part6_Thumb.jpg","duration":3666,"publication_date":"2017-02-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-246-clouds-x-part-2","changefreq":"weekly","video":[{"title":"2017:E45 - Minecraft – Episode 246 – Clouds X Part 2","description":"Last week, you watched as the four horsemen of the fuckpocalypse broke the spirits of our favorite Achieve Men. The lava clouds were assholes. The ice blocks were some cold-ass bitches. The poury cloud boys are continuing to be a line of bastards. But now our favorite boys will be forced to face their greatest challenge yet: Big King McDickfucker. The crew will have to overcome those drippy drip clouds if they want to take home the coveted Tower of Pimps today. And it's either that, or be emotionally shattered by the toughest fuckin' clouds this side of Achievement City, Big King McDickfucker.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-246-clouds-x-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7578db62-6799-476e-b25f-16a7f0ddbb43/sm/2013912-1486597630185-mc_thumb_clouds.jpg","duration":2121,"publication_date":"2017-02-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-12","changefreq":"weekly","video":[{"title":"2017:E46 - Let's Watch - Yakuza 0","description":"Thanks to Sega for sponsoring this video! To check out the game yourself click here. Join the Achievement Hunters as they have a night on the town in Japan circa 1987. They drink, kick some ass, and maybe belt out some karaoke. It's all in a day's work for a Yakuza.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6468b126-955a-4655-b4ba-dd4ea15a8c99/sm/2013912-1486595399630-LP_YakuzaZero.png","duration":2776,"publication_date":"2017-02-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-23-post-show-n8a6jk","changefreq":"weekly","video":[{"title":"2017:E3 - #23 Post Show","description":"Frank, Gus, Geoff, and Griffion talk about the Dragon and how the Magic Mirror played a roll.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-23-post-show-n8a6jk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5cc4270-0989-4caa-ac14-9f13250b9c4c/sm/2013912-1486571894933-HH_23_-_PS_-_THUMB.jpg","duration":616,"publication_date":"2017-02-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-10","changefreq":"weekly","video":[{"title":"2017:E43 - Let's Watch - Hitman Elusive Target: Blackmailer","description":"Want to be like Agent 47? Follow these simple rules and you too can be a Hitman in no time!\n\n1) Find a bathroom, kitchen, or other type of room that has a sink in it.2) Clog the sink and turn it on so the water overflows all over the floor.3) Locate your target.4) Start luring your target to the sink with a bag of pennies. They're just like little copper jellybeans!5) When your target is in eyesight of the sink, he or she will be absolutely inclined to clean up the mess.6) Watch your good Samaritan go! Clean, clean, clean.7) But don't watch for too long! Pull out a knife, screwdriver, coconut, or any other type sharp object you may have on your person. Use said object to kill your target.8) Run away and hide in the nearest closet you can find.9) Wait for the whole \"dead body\" situation to blow over.10) Now that no suspicion is being placed on you for the murder, feel free to locate the nearest exit and get the hell out of there.\n\n\n\nCongratulations, agent! You're now the world's greatest assassin. Now go have a cup of tea or whatever assassin's drink or whatever. You earned it!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f42b10eb-884a-46b9-adce-99aa3407d9cc/sm/2013912-1486507544179-LW_HitmanWeirdoGuyTarget.png","duration":2121,"publication_date":"2017-02-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-cloudberry-kingdom-part-20","changefreq":"weekly","video":[{"title":"2017:E42 - Cloudberry Kingdom Part 20","description":"The Berry Boys are back, attempting to complete the grueling journey to the end of Cloudberry Kingdom. Will they make it?! FIND OUT NEXT TIME! or... like 50 parts from now.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-cloudberry-kingdom-part-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a3e5550-ddc3-4fe0-90ac-89b7cccf2101/sm/2013912-1486489923384-Cloudberry_20_Thumbnail.jpg","duration":2535,"publication_date":"2017-02-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-23-7-abj7a","changefreq":"weekly","video":[{"title":"2017:E23 - Pyromania - #23","description":" The roof is on fire!  Bo Jingles is burning down houses while Albus grabs everything that is not nailed down. Sponsored by Blue Apron (http://cook.ba/2jeJr22) and MVMT Watches (http://bit.ly/2lmsOm7)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-23-7-abj7a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f96745f5-5df3-466d-b177-003de130a73b/sm/2013912-1486485554311-HH_23_-_THUMB.jpg","duration":7526,"publication_date":"2017-02-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-for-honor-beta","changefreq":"weekly","video":[{"title":"2017:E40 - For Honor (Beta) ","description":"Thanks to Ubisoft for sponsoring this video. To check out the open beta of the game check here: http://ubi.li/ppr86 Join Geoff, Ryan, Jeremy, and Michael as they test their battle strategies in For Honor. ESRB rating: M for Mature.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-for-honor-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1193b8e-81e3-4cac-9bb6-d3efe9552f45/sm/2013912-1486402919197-LP_ForHonor_THUMB5.png","duration":1787,"publication_date":"2017-02-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-minecraft-fizzie-lifting-race","changefreq":"weekly","video":[{"title":"2017:E7 - Minecraft - Fizzy Lifting Race","description":"Matt really liked how the shulkers in Minecraft were lifting his spirits, so he decided to share the joy by creating a game based around the little fellas! Inspired by Willy Wonka and the Chocolate Factory, Ryan, Jack, Jeremy, Michael, and Matt must race to the top of a soda bottle-shaped tower by getting hit by the fizzy spittle of the shulker hoard.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-minecraft-fizzie-lifting-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b64bdc5-7f22-42af-a22a-2a74e7ef360c/sm/2013912-1486419944284-FizzieLiftingRace_Thumb.jpg","duration":522,"publication_date":"2017-02-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-extraction-distraction","changefreq":"weekly","video":[{"title":"2017:E41 - Rainbow Six Siege: Extraction & Distraction","description":"The boys do their darndest to save some hostages, while distracting themselves into hunting terrorists.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-extraction-distraction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4982e37e-a6c3-4298-ba44-8c0233dc858a/sm/2013912-1486422737580-LP_R6Siege_ExtractionDistraction2point0.png","duration":3280,"publication_date":"2017-02-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-i-m-not-cleaning-that-ahwu-for-february-6-th-2017-355","changefreq":"weekly","video":[{"title":"2017:E355 - I'm Not Cleaning That! - AHWU for February 6th, 2017 (#355)","description":"Thanks to ProFlowers for sponsoring today's video. Make sure you go tohttp://www.proflowers.com and use code JackandGeoff to get 2 dozen assorted roses with a FREE glass vase starting at only $29.99.\n\nLook - there may be hundreds of mini balls, a huge water stain, three broken bottles of Ragu, a baby goat, 97 popped balloon corpses, super sticky taffy, chewed gum, granola crumblies, a wrecked scooter, rolls of duct tape, crescent roles, burnt documents, day-old Chinese takeout, packing peanuts, circus peanuts, regular peanuts, a spoon, a 1996 *NSYNC calendar, and a gravy boat littering this floor. And yes, I know that I was the one that put them there, but I'm not cleaning that up. All of that was for AHWU this week. That's called making quality content, and choosing to not clean it up is called giving this room some much-needed character. So nope! Ask me all you want. Not gonna clean it up.\n\n\n\n\n\n\n\nWatch the Video of the Week and the Community Video of the Week!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-i-m-not-cleaning-that-ahwu-for-february-6-th-2017-355","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/627723fe-a25e-4232-a457-05a41a4a7f64/sm/2013912-1486417312166-awu1.jpg","duration":618,"publication_date":"2017-02-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-8","changefreq":"weekly","video":[{"title":"2017:E39 - Let's Watch - Resident Evil 7: Biohazard Part 5","description":"Look out! Lukas lurks, as Geoff and his jerks try to rescue Mia in time. Baddies abound, but new weapons can be found to end the Baker family's crimes. So join us in part 5, together we'll stay alive, for another Resident Evil 7 round.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7da5a160-bac6-4cbf-a4ff-fa9b44e6ea36/sm/2013912-1486144816337-THUMB_RE7_Part5.jpg","duration":2876,"publication_date":"2017-02-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-5","changefreq":"weekly","video":[{"title":"2017:E38 - VR Surgeon Simulator ER: Experience Reality Part 5","description":"Earth's mightiest surgeons Michael Jones and Gavin Free have finished up literally every single surgery there was to do on earth. Now they're blasting off into space to become the best surgeons this side of the Milky Way. Hopefully these two understand the \"gravity\" of the situation they've gotten themselves into.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1098065-3020-4eaa-8825-32a425bf5359/sm/2013912-1486141986551-LP_VR_SurgeonSimulator5_2.png","duration":2465,"publication_date":"2017-02-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-62-b7a6ab","changefreq":"weekly","video":[{"title":"2017:E5 - Those Were The Days - Last Call #62","description":"The AH Crew sit down to talk about resealing the champagne, 14 hour flights, The Shield, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-62-b7a6ab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c573df26-6eda-4967-92d4-583ebf8c9cee/sm/2013912-1486150162375-OFF62_-_PS_-_THUMB.jpg","duration":754,"publication_date":"2017-02-05T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017-2","changefreq":"weekly","video":[{"title":"2017:E2 - Popping Hydrants","description":"Geoff and Michael try to explain the foreign concept of the mystical fire hydrant to Gavin. Animation by Jaime Aguilar. Video this came from","player_loc":"https://roosterteeth.com/embed/ah-animated-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97303a55-4b6b-4d1d-8671-d7b83c92d8a3/sm/2013912-1486139863003-YT_AHAnimated_PoppingAHydrant_THUMB.jpg","duration":140,"publication_date":"2017-02-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-coast-guard-duty","changefreq":"weekly","video":[{"title":"2017:E37 - GTA V - Coast Guard Duty","description":"Achievement Hunter finally completes all of the Import/Export DLC Special Vehicle Works missions, with a heist featuring the Imponte Ruiner 2000 for the grand finale. Also, Ryan tries to murder Gavin with a helicopter.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-coast-guard-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0b516a2-b6a0-406c-a215-6b3dc01b624c/sm/2013912-1486141332985-Perfect.jpg","duration":2865,"publication_date":"2017-02-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-62-ba8aaa","changefreq":"weekly","video":[{"title":"2017:E62 - Stuck in a Stupid Loop - #62","description":"The AH Crew sit down to talk about preparing for RTX Sydney, old RvB stories, Resident Evil DLC, and more on this week's Off Topic!\n\nThis episode originally aired February 3, 2017 and is sponsored by Casper (http://bit.ly/29nKmbI) and Shari’s Berries (http://bit.ly/2gjcsXO)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-62-ba8aaa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77813ad1-a314-41c1-aee7-a58d50de1360/sm/2013912-1486150152878-OFF62_-_THUMB.jpg","duration":6305,"publication_date":"2017-02-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-27-happy-camp","changefreq":"weekly","video":[{"title":"2017:E3 - Episode #27: Happy Camp","description":"After his brother's mysterious disappearance, a man and his film crew search for his whereabouts in Happy Camp, CA, the stray cat and smoke farm capital of the world. Kick back and watch as the AH Crew drink their way through this week's film, Happy Camp.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-27-happy-camp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21edd77c-fc44-4e0e-9124-65afa350926d/sm/2013912-1486141412124-TM_-_HappyCamp_-_THUMB.jpg","duration":4258,"publication_date":"2017-02-03T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-ghost-recon-wildlands","changefreq":"weekly","video":[{"title":"2017:E36 - Ghost Recon Wildlands ","description":"Thanks to Ubisoft for sponsoring this video. To learn more about the game, click here: http://ubi.li/nnb3eJoin Jack and Jeremy with their exclusive first look at Ghost Recon Wildlands. Together, they explore the open landscape, play through missions, and of course try some crazy stunts.ESRB Rating - Awaiting Rating","player_loc":"https://roosterteeth.com/embed/lets-play-2017-ghost-recon-wildlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0413cd39-b458-40ac-8274-9df4d03d43f8/sm/2013912-1486082238881-LP_GhostReconWildlands_THUMB1.png","duration":3571,"publication_date":"2017-02-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-vr-the-champions-superhot","changefreq":"weekly","video":[{"title":"2017:E4 - Superhot","description":"On today's episode of VR the Champions, the boys get to enter the world of the matrix. Well not really, but slow-mo bullets flying by your head is totally a thing in Superhot. Join Ryan, Jeremy, Michael, and special guest Frank the Dungeon Master as they dip, dive, dodge, duck, and dodge bullets, knives, and shurikens in this VR epicness.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-vr-the-champions-superhot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00a99520-6fc0-42d1-b7a0-623e8ef56d23/sm/2013912-1485464543146-VR_SuperHot.png","duration":1655,"publication_date":"2017-02-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2017-re7-collectibles","changefreq":"weekly","video":[{"title":"2017:E1 - Resident Evil 7 - All Collectibles Guide","description":"There are 74 total collectibles in Resident Evil 7. We're going to show you where they all are in about 8 minutes. Be sure to play along and get every collectible as soon as you can and don't leave the area until you do and then you too can have them all. \n\n\n\n\n\n\n\n Guest house - 0:31 \n\n\n\n\n\nMain House (1st visit) - 1:18 \n\n\n\n\n\nYard (1st visit) - 3:06 \n\n\n\n\n\nOld House - 3:28 \n\n\n\n\n\nMain House (2nd visit) - 4:27 \n\n\n\n\n\nTesting Area - 4:54 \n\n\n\n\n\nBoat House - 5:19 \n\n\n\n\n\nWrecked Ship 5:25\n\n\n\n\n\n Swamp - 6:53 \n\n\n\n\n\nSalt Mine - 6:59","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2017-re7-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e37af4cf-67d9-4cc0-9120-c603cdf95b34/sm/2013912-1486072311077-1.jpg","duration":490,"publication_date":"2017-02-02T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-clouds-x","changefreq":"weekly","video":[{"title":"2017:E35 - Minecraft – Episode 245 – Clouds X","description":"Friday Friday Friiiiidaaaaaay! Somewhere on the outskirts of Achievement City, be prepared to have your face m-m-m-m-melted by the ferocity that is Clouds X! You thought the first Clouds was scary? That was Clouds for babies. BABIES! Fucking babies! This four-pronged fuck machine has not one, not two, not three, but four infuriating paths that will make you want to rip your face right off your face in frustration!\n\nWatch in horror as the Achievement Hunter boys stumble down the Hot Rock Hop of D-D-Death! Shield your children's eyes as they slip and slide right off the Icy Path of Peril! Truckasaurs may be the three-time hands-down truck trashing crush buggy, but even its mighty wheels got nothing on the Drop of DOOM! And you thought those were the only horrors to be faced in Clouds X, you'd. BE. SO. FUCKING. WRONG! Get ready to have your balls smashed in by the Drip Drop Dicker-Over, with its pulsating rainclouds that will dick you over every single time! These fools will die and die and die again, all in hopes of winning the glorious Tower of Pimps! Get your ass down to Achievement City and get ready to get fuuuuucked!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-clouds-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8df949a1-6a39-4ace-b00c-69f9229b1d55/sm/2013912-1486053268616-cloudmc_thumb.jpg","duration":2674,"publication_date":"2017-02-02T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-7","changefreq":"weekly","video":[{"title":"2017:E34 - Let's Watch - Resident Evil 7: Biohazard Part 4","description":"The creepy, crawly, cryptic crusade continues in part 4 of the Resident Evil 7 playthrough! Ryan, Michael, and Jeremy cheer for Geoff as he takes on the wicked, wacko, witchy woman of the Dulvey Haunted House estate, the lovely, little lady, Ms. Marguerite.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba43ae56-c7dc-4999-9323-f4d7fb79b5b4/sm/2013912-1485981752810-RE7_Part4_Thumb.jpg","duration":3678,"publication_date":"2017-02-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-tower-fall-ascension","changefreq":"weekly","video":[{"title":"2017:E3 - TowerFall Ascension","description":"The Achievement Hunter crew made it through the last round of roulette spin time unbloodied. Now they're ready to shoot some arrows into each other's faces in some Towerfall Ascension. Thwip! Right through the eye socket. Thwip! Straight through Geoff's hand. How do you think it got cut in the first place?","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-tower-fall-ascension","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/901a115e-2f9f-4a41-9d2d-4d19f0440be6/sm/2013912-1485889428547-RouLetsPlay_TowerfallGreen.png","duration":1293,"publication_date":"2017-02-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-mighty-morphin-power-rangers-mega-battle","changefreq":"weekly","video":[{"title":"2017:E32 - Mighty Morphin Power Rangers: Mega Battle","description":"They've gotSuper powered livers like you've never seen before.They've gotThe ability to drink every single thing they pour.Funhaus will never take them down!The power lies on their si-i-i-i-i-ide.\n\n\n\n\n\nGo, Achievement Hunters!Go, Achievement Hunters!Go, Achievement Hunters!Super drunk Achievement Hunters!\n\n\n\n\n\n\n\nThey knowPlaying games drunk will loosen up their hands.They knowTo only use their swords on Gavin's desk.Funhaus will never take them down!The power lies on their si-i-i-i-i-ide.\n\n\n\n\n\n\n\nGo, Achievement Hunters!Go, Achievement Hunters!Go, Achievement Hunters!You super drunk Achievement Hunters!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-mighty-morphin-power-rangers-mega-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8d228ab-9896-4099-8af3-296b0de44d0e/sm/2013912-1485889573174-PowerRangersThumb.png","duration":2876,"publication_date":"2017-02-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-payday-2-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E30 - Payday 2: AH Live Stream","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT.\n\n\n\nGeoff, Ryan, Michael, Jeremy, and Matt all enjoyed playing Payday 2 last week. Here are the best rounds from that awesome live stream. To watch the full stream, check out the Achievement Hunter channel here:https://youtu.be/2h5cbtCqGrQ","player_loc":"https://roosterteeth.com/embed/lets-play-2017-payday-2-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef0688c3-3127-464d-9153-618655524567/sm/2013912-1485816517407-payday_2_thumb_720.jpg","duration":2855,"publication_date":"2017-01-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-death-by-kitt","changefreq":"weekly","video":[{"title":"2017:E6 - GTA V - Death by Kitt","description":"Dogfighting in the sky! I will shoot twice at Ryan! We're in a car. We'll go so far. Flying Ruiners...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-death-by-kitt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e51ef799-0077-4985-ad60-b5ef0a28a500/sm/2013912-1485199884409-Thumb_DeathByKitt_c.jpg","duration":250,"publication_date":"2017-01-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-we-need-to-go-deeper","changefreq":"weekly","video":[{"title":"2017:E31 - We Need to go Deeper","description":"Jack, Ryan, Jeremy, and Michael get an inside look at this knee slappin', finger lickin', head turnin', submarine divin' adventure. Join the gang as they explore some deep water caves, plug up some holes, and try to survive in the deep deep waters of crab town. Yes there are lots of crabs. And squids. And death.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-we-need-to-go-deeper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/017cdd30-9abc-46a6-839d-5eea841cffd0/sm/2013912-1485816675973-LP_WeNeedToGoDeeper.png","duration":2388,"publication_date":"2017-01-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-254","changefreq":"weekly","video":[{"title":"2017:E354 - The Jeremy Plant - AHWU for January 30th, 2017 (#354)","description":"Thanks to ProFlowers for sponsoring today's video. Make sure you go to http://www.proflowers.com and use code JackandGeoff to get 2 dozen assorted roses with a FREE glass vase starting at only $29.99.\n\nBoy. Yes, you there, boy. Or are you a girl? These eyes aren't doing me much good these days. Come here and let this old, ragged man spin you a yarn, and also try to sell you some seeds! There was once a dark cave full of idiots that played games on their magical electric windows. These were the Achievement Hunters, and they were great..until they all died.\n\n\n\n\n\nGeoff the Drunkard's essence was scattered to the wind. Jack the Bearded's remains are said to be guarded by the fiercest of dragons. The others are somewhere too, but fuck those guys. I need to tell you about Jeremy the Short. Unlike the others, he has not been lost, no! In order to maintain his essence, he was fused with the finest flowers and sealed away in these here magic seeds. They say when the world needs Jeremy most, a gullible young boy (or girl) must buy these magic seeds and plant them. In 6-8 months, Jeremy the Short will be reborn as Plant Jeremy the Flower King - a most brave hero with flowers filling his mouth! So hopefully grave terror is far enough away to where you have time to plant the Jeremy plant before our world is doomed.\n\n\n\n\n\nBy the look on your face, you don't seemed convinced. Well fuck you too, kid. Just buy my damn seeds already. Buy them now, before my good friend Stabby McSlicey has to come out of my pocket. Wait. Where you going? Who's going to buy my seeds? I need money to buy food!\n\n\n\n\n\n\n\n\n\n\n\nWatch the Video of the Week and Community Video of the Week!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-254","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0995fe1-1234-4d63-b736-c91d23924600/sm/2013912-1485816142669-ahwu_thumb.jpg","duration":567,"publication_date":"2017-01-30T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-6","changefreq":"weekly","video":[{"title":"2017:E29 - Let's Watch - Resident Evil 7: Biohazard Part 3","description":"The Resident Evil VII adventure continues with part 3! After completing his first boss fight, Geoff gets outside, watches the VHS tape he found earlier, and learns how to become a fire-wielding exterminator.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08ff0c7e-75d0-40d5-8b33-4e009ac9a4dd/sm/2013912-1485556892150-REsEvil7_Part3_Thumb.jpg","duration":3129,"publication_date":"2017-01-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-burnout-3-with-game-attack","changefreq":"weekly","video":[{"title":"2017:E28 - Burnout 3 with Game Attack","description":"We're busting out the PS2 for this childhood favorite. Michael, Jeremy, Geoff, and Jack join Bolen and Craig from Game Attack to see who can create the most destructive car crash.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-burnout-3-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17c592e0-f8e5-44ca-9795-472a74843183/sm/2013912-1485540948643-LP_Burnout3GA.png","duration":1298,"publication_date":"2017-01-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-61-9-ag4ha","changefreq":"weekly","video":[{"title":"2017:E4 - You Hurt Me - Last Call #61","description":"The AH Crew stand up to talk about alcohol, Jeremy’s Periscope (available here http://bit.ly/2kuPArN), accents, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-61-9-ag4ha","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a89bda5-eae4-42c1-be91-d9929b45371e/sm/2013912-1485553560664-OFF61_-_PS_-_THUMB.jpg","duration":1372,"publication_date":"2017-01-29T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-part-2","changefreq":"weekly","video":[{"title":"2017:E27 - Golf With Your Friends - Part 2","description":"The last Golf With Your Friends video was so much fun, we had to get Gavin and Michael in on it. Now it's a race to see who can get in the hole first!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/775d0d42-b99d-47dd-9ab5-72440891bec6/sm/2013912-1485540562999-Thumb_GWYF_2.jpg","duration":2892,"publication_date":"2017-01-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-jack-bag-2","changefreq":"weekly","video":[{"title":"2017:E25 - GTA V - Jack Bag 2","description":"Jack's back with his super sack! They'll hit the track and try not to get whacked in this episode that is jam packed.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-jack-bag-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1153ded-718a-47fe-9448-9154d8644c25/sm/2013912-1485450126345-Thumb_JackBag2.jpg","duration":3415,"publication_date":"2017-01-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-61-ana7fa","changefreq":"weekly","video":[{"title":"2017:E61 - Taco Touchdown - #61","description":"The AH Crew sit down to talk about Game Attack’s logo similarities, Resident Evil 7, weight loss, and more on this week's Off Topic!\n\nThis episode originally aired January 27, 2017 and is sponsored by go90 (http://go90.show/2k92iit) and Shari’s Berries (http://bit.ly/2gjcsXO)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-61-ana7fa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7b8f669-d811-47f6-b9d5-d930260bea8a/sm/2013912-1485551562785-OFF61_-_THUMB.jpg","duration":8271,"publication_date":"2017-01-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-26","changefreq":"weekly","video":[{"title":"2017:E2 - Episode #26: 3:33 A.M.","description":"After moving into a halfway house full of a cast of kooky (and probably racist) characters, people begin to mysteriously dissappear. Join the AH crew as they endure the cinematic travesty, 3:33 A.M.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a42b8b88-1ad2-4f45-8825-4ff9d8b8978f/sm/2013912-1485547774547-TM_-_333_-_THUMB.jpg","duration":7884,"publication_date":"2017-01-27T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sam-vs-john-reeses-one-pound-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E855 - Sam vs John - Reese's One Pound Eating Challenge","description":"John and Sam square off to see who can finish a pound of Reeseapos;s Peanut Butter chocolate first.","player_loc":"https://roosterteeth.com/embed/sam-vs-john-reeses-one-pound-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20af2668-ff3b-400b-864a-3eb1c2c01eba/sm/video_thumbnail_12860288-1421437634.jpg","duration":357,"publication_date":"2015-01-16T11:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-is-rocket-raccoon-series-premiere","changefreq":"weekly","video":[{"title":"S1:E1 - Who is Rocket Raccoon? SERIES PREMIERE!","description":"Welcome to \"Who is\" - the show that teaches you all about your favorite comic book characters so you don't have to do it yourself.","player_loc":"https://roosterteeth.com/embed/who-is-rocket-raccoon-series-premiere","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e12f105-cddc-4331-9e0e-65910d6f14c0/sm/video_thumbnail_12860263-1421424718.jpg","duration":265,"publication_date":"2015-01-16T08:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-hate-ps4-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E28 - 14 Reasons We Hate PS4 with Evil Craig","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates the PS4.","player_loc":"https://roosterteeth.com/embed/14-reasons-we-hate-ps4-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96b3dd17-a914-4b74-b952-2b1ca32d1b19/sm/video_thumbnail_12860171-1421339022.jpg","duration":87,"publication_date":"2015-01-15T08:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-love-the-playstation-4","changefreq":"weekly","video":[{"title":"S1:E37 - 15 Reasons We LOVE the PlayStation 4","description":"Tell us all the reasons you LOVE the PS4 in the comments.","player_loc":"https://roosterteeth.com/embed/15-reasons-we-love-the-playstation-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9359b5b4-5455-4501-a14d-7e67851538d7/sm/video_thumbnail_12860170-1421338849.jpg","duration":60,"publication_date":"2015-01-15T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-deadpool-vs-deathstroke","changefreq":"weekly","video":[{"title":"S1:E10 - One Minute Melee - Deadpool vs Deathstroke","description":"2 Fighters! NO RESEARCH! 60 Seconds! Melee!!!! Who would win in a fight between Marvel's Deadpool and DC's Deathstroke? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-deadpool-vs-deathstroke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aec8e662-e889-4974-9cc1-5c166d38cbe7/sm/video_thumbnail_12859935-1421122812.jpg","duration":199,"publication_date":"2015-01-12T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-mega-man-game-ever","changefreq":"weekly","video":[{"title":"S1:E56 - The Best Mega Man Game EVER!","description":"What's YOUR Best Ever Mega Man Game? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-best-mega-man-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85965579-4be6-42c4-abb9-086ff1f4837c/sm/video_thumbnail_12859880-1421080337.jpg","duration":486,"publication_date":"2015-01-12T08:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/taken-3-roundtable-*spoilers*","changefreq":"weekly","video":[{"title":"S1:E854 - Taken 3 Roundtable *SPOILERS*","description":"**SPOILERS IN THIS VIDEO**\r\n\r\nThe entire ScrewAttack crew saw Taken 3 and they all hated it... except for Craig. Watch as the entire team attempts to take Craig's manhood because he didn't think it was the worst movie ever made.\r\n\r\nDid you see Taken 3? What did YOU think of it?","player_loc":"https://roosterteeth.com/embed/taken-3-roundtable-*spoilers*","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95af9961-2f7a-4acf-9e68-ef2254fd82d7/sm/video_thumbnail_12859699-1420944800.jpg","duration":1066,"publication_date":"2015-01-10T18:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-the-future-is-here","changefreq":"weekly","video":[{"title":"S1:E171 - SideScrollers - The Future is Here!","description":"It's 2015! Just like Back to the Future 2 said it would be!\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/the-future-is-here\r\n\r\nSend Newsdesk stories to Sam!\r\nSam@ScrewAttack.com\r\n\r\nSend Art Show submissions to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-the-future-is-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/646ab223-b729-4726-b823-63f98e84047a/sm/video_thumbnail_12859536-1420819912.jpg","duration":3537,"publication_date":"2015-01-10T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-behind-the-scenes-ragna-vs-sol-badguy-advantage-content","changefreq":"weekly","video":[{"title":"S1:E853 - DEATH BATTLE! Behind-the-Scenes - Ragna Vs. Sol Badguy | Advantage Content","description":"Not an Advantage Subscriber? NO BIG DEAL - just go HERE for a FREE 30 day Trial!","player_loc":"https://roosterteeth.com/embed/death-battle-behind-the-scenes-ragna-vs-sol-badguy-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/422e7c6c-6c59-447c-b233-2a46a80e3c6c/sm/video_thumbnail_12859581-1420845293.jpg","duration":266,"publication_date":"2015-01-09T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-wii-games","changefreq":"weekly","video":[{"title":"S1:E127 - Top 10 Wii Games","description":"Top 10's are BACK! We countdown our Top 10 Wii Games EVER! What are yours? Let us know in the comments.","player_loc":"https://roosterteeth.com/embed/top-10-wii-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7fe24e0-f580-4abc-a4a0-7f2d8337a9d4/sm/video_thumbnail_12859535-1420819746.jpg","duration":356,"publication_date":"2015-01-09T08:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-hate-the-wii-u-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E27 - 14 Reasons We HATE the Wii U with Evil Craig ","description":"Join the man that speaks on behalf for the Internet commenters everywhere, Evil Craig, as he tells you why he hates the Wii U.","player_loc":"https://roosterteeth.com/embed/14-reasons-we-hate-the-wii-u-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc46a754-c177-43f4-8772-f48da1c02e87/sm/video_thumbnail_12859436-1420735497.jpg","duration":80,"publication_date":"2015-01-08T08:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-love-the-wii-u","changefreq":"weekly","video":[{"title":"S1:E38 - 14 Reasons We LOVE the Wii U","description":"Tell us all the reasons you LOVE the Wii U in the comments.","player_loc":"https://roosterteeth.com/embed/14-reasons-we-love-the-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c047468-50be-4156-b9bd-ba0dc7e9372f/sm/video_thumbnail_12859435-1420735391.jpg","duration":60,"publication_date":"2015-01-08T08:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-tony-hawk-pro-skater","changefreq":"weekly","video":[{"title":"S1:E19 - Five Fun Facts - Tony Hawk Pro Skater","description":"Think you know everything about this blockbuster franchise? Maybe not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-tony-hawk-pro-skater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b61345e-2490-4691-ad39-f47a84a38d0d/sm/video_thumbnail_12859393-1420675209.jpg","duration":263,"publication_date":"2015-01-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/blast-processing-great-moments-in-video-game-history","changefreq":"weekly","video":[{"title":"S1:E1 - Blast Processing - Great Moments in Video Game History","description":"In the debut episode of Great Moments, we educate you on one of the biggest marketing gimmicks in video game marketing history. Make sure to SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any episodes! New episodes every other Monday at 9am CT!","player_loc":"https://roosterteeth.com/embed/blast-processing-great-moments-in-video-game-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05baa6f4-645c-4318-8db2-71a4a853417a/sm/video_thumbnail_12859184-1420429692.jpg","duration":120,"publication_date":"2015-01-05T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-blood-code-great-moments-in-video-game-history","changefreq":"weekly","video":[{"title":"S1:E2 - The Blood Code - Great Moments in Video Game History","description":"In this episode of Great Moments we inform you about one of the best (and most controversial!) codes in video game history.  Make sure to SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss any episodes! New episodes every other Monday at 9am CT!","player_loc":"https://roosterteeth.com/embed/the-blood-code-great-moments-in-video-game-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/250df1a7-1cb5-44f8-b43c-5e7598bbb636/sm/video_thumbnail_12859185-1420429815.jpg","duration":160,"publication_date":"2015-01-05T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/did-batman-create-blindness","changefreq":"weekly","video":[{"title":"S1:E2 - Did Batman Create Blindness??","description":"Learn AMAZING useless knowledge about pop culture icons you never thought you needed to know ever two weeks (Sundays) on the Desk of DEATH BATTLE. Make sure SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss an episode!","player_loc":"https://roosterteeth.com/embed/did-batman-create-blindness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/242cca23-f489-4070-899a-b1dca9413527/sm/video_thumbnail_12859092-1420342433.jpg","duration":332,"publication_date":"2015-01-04T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/godzilla-is-pearl-harbor-reincarnated","changefreq":"weekly","video":[{"title":"S1:E1 - Godzilla is Pearl Harbor Reincarnated??","description":"Learn AMAZING useless knowledge about pop culture icons you never thought you needed to know ever two weeks (Sundays) on the Desk of DEATH BATTLE. Make sure SUBSCRIBE (http://bit.ly/ScrewAttackSubscribe) so you don't miss an episode!","player_loc":"https://roosterteeth.com/embed/godzilla-is-pearl-harbor-reincarnated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82db3da3-3f36-4642-9bff-10f33b3778ed/sm/video_thumbnail_12859097-1420343359.jpg","duration":247,"publication_date":"2015-01-04T07:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-wii-u-smash-bros-character-ever-feat-lamarr-wilson","changefreq":"weekly","video":[{"title":"S1:E55 - The Best Wii U Smash Bros Character EVER! (Feat. Lamarr Wilson)","description":" The Best EVER is BACK!!! New episodes air every Saturday at 9am!\r\n\r\nSpecial thanks to Lamarr Wilson for appearing in this episode! Check out his channel here: https://www.youtube.com/user/wilsontech1","player_loc":"https://roosterteeth.com/embed/the-best-wii-u-smash-bros-character-ever-feat-lamarr-wilson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0adf0b85-9026-4774-a18e-0eb43e089e50/sm/video_thumbnail_12859024-1420262079.jpg","duration":389,"publication_date":"2015-01-03T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-new-year-get-your-free-game","changefreq":"weekly","video":[{"title":"S1:E852 - Happy New Year! Get your free game!","description":"Follow our Instagram HERE!\r\n\r\nRULES:\r\n\r\nStarting January 1st, for the 31 days of January we'll be posting a photo of a game code each day ONLY on our Instagram, \"OfficialScrewAttack\" These codes are for random games ranging from small indies to 1st party Nintendo games, in a random order. You'll have to follow our Instagram, and be ready to redeem the code on whatever system it's for IMMEDIATELY because only the first person to cash in their code gets the game. Should be a madhouse - a fun one!\r\n\r\n ","player_loc":"https://roosterteeth.com/embed/happy-new-year-get-your-free-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21f6b620-7ef4-49bf-91ea-f72cefeca70d/sm/video_thumbnail_12858728-1419979354.jpg","duration":54,"publication_date":"2014-12-30T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-wrestling-royal-rumble-2014","changefreq":"weekly","video":[{"title":"S1:E851 - ScrewAttack Wrestling Royal Rumble 2014","description":"It's that time of year everyone, it's time to RUMBLE! 29 Friends, foes, familiar faces, and complete surprises will go over the top rope until only a champion remains!","player_loc":"https://roosterteeth.com/embed/screwattack-wrestling-royal-rumble-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26b2db17-7ede-4af4-b8fd-e0c905a0feb6/sm/video_thumbnail_12858372-1419520061.jpg","duration":1907,"publication_date":"2014-12-25T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/122414-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E850 - 12/24/14 SideScrollers Extended Cut","description":"Austin dated a WHAT?!?","player_loc":"https://roosterteeth.com/embed/122414-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c1ecc82-17e2-4ab4-9684-1fbb10c162a3/sm/video_thumbnail_12858307-1419438140.jpg","duration":711,"publication_date":"2014-12-24T08:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-valve-software","changefreq":"weekly","video":[{"title":"S1:E18 - Five Fun Facts - Valve Software ","description":"Think you know everything about this gaming mega giant? Probably not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-valve-software","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c3d796d-f6ac-4d26-a5bb-e202584c54e8/sm/video_thumbnail_12858256-1419396324.jpg","duration":227,"publication_date":"2014-12-23T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-with-a-bang-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E170 - Out with a bang | SideScrollers","description":"It's the last show of the year, so lets go out with a bang!\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/12-24-14-sidescrollers-audio\r\n\r\nHave a Newsdesk story idea? Send it to Sam! sam@screwattack.com\r\n\r\nGot something for The Art Show? Send it to Bryan! Bryan@ScrewAttack.com\r\n\r\nGrab a limited edition ScrewAttack hoodie! They're gone in a week! http://www.represent.com/screwattackhoodie","player_loc":"https://roosterteeth.com/embed/out-with-a-bang-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfd0f89f-fce2-48d2-b1c6-63cde4682cec/sm/video_thumbnail_12858229-1419368826.jpg","duration":4604,"publication_date":"2014-12-23T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-of-the-hard-news-desk","changefreq":"weekly","video":[{"title":"S1:E849 - Death of the Hard News Desk","description":"The OG Hard News desk has been torn to shreds by the arms of Sean Hinz and Co.!","player_loc":"https://roosterteeth.com/embed/death-of-the-hard-news-desk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/365d9e03-6af5-431c-83c5-f4ffb79a1913/sm/video_thumbnail_12857861-1419030978.png","duration":180,"publication_date":"2014-12-19T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-final-episode-hard-news-121914","changefreq":"weekly","video":[{"title":"S1:E782 - The Final Episode | Hard News 12/19/14","description":"I’m Sean Hinz and this is Hard News for Friday December 19th, 2014.\r\n\r\nDespite all the good will Santa Gabe has been pumping into the Holiday pipeline, it looks like Valve will be taking a little back this season. For as long as I could remember, Steam was always a region-free platform meaning you could by games in one country and gift them to a friend in another. That feature was also exploited by users in countries, who for various reasons, found their copies of Steam games to be much cheaper than most. Now due to Russia being on the brink of a recession as the Ruble’s value plummets, Valve has decided to rectify this age old issue of price-dodging by no longer allowing you to gift Steam games across regions. So anyone hoping that the collapse of the Russian economy would some how help them get cheap games is shit out of luck. While I don’t blame Valve for being proactive, this also means that any friendos you have overseas that you planned to buy Steam games for the holiday, just had their gifts tied up in digital customs. Santa Gabe help us, you’re our only hope!\r\n\r\nIf you’re looking for some new and cheap games this holiday, there were quite a few reveals yesterday. Halo 5: Guardians multiplayer beta is arriving for most Xbone owners on the 29th, but if you’re in the Preview Program it is live today. You’ll have all weekend to get ahead of your buddies before the new year. Nintendo revealed that Duck Hunt would arrive on the eShop Christmas day, so dust off that Wiiimote and show that dog what you’re made of. Halfbrick is so excited about the holiday season, that you can scoop up their entire catalog on iOS for free. I’ve always felt they made some of the best mobile games around, so consider picking up Jetpack Joyride, Fish Out of Water!, and Colossatron ASAP. Oh and Fruit Ninja, but I figure everyone owns that by now. And there’s just one more game, starring Devolver Digital's CFO Fork Parker that launched yesterday. He is going to try and cut you a deal in Fork Parker’s Holiday Profit Hike, a vertical sid","player_loc":"https://roosterteeth.com/embed/the-final-episode-hard-news-121914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/218c64c0-b5fc-40f9-ae61-ccc76b0afc3e/sm/video_thumbnail_12857841-1419024613.jpg","duration":307,"publication_date":"2014-12-19T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-15","changefreq":"weekly","video":[{"title":"S2:E15 - Kirby VS Majin Buu","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e09f841-7d81-4d87-a65d-5b4a2d247b55/sm/video_thumbnail_12857707-1418980154.jpg","duration":1219,"publication_date":"2014-12-19T01:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/steam-controller-update-new-evolve-monster-sony-cancels-the-interview-hard-news-121814","changefreq":"weekly","video":[{"title":"S1:E781 - Steam Controller Update, New Evolve Monster, Sony Cancels The Interview | Hard News 12/18/14","description":"IMojang and the crew at Telltale Games surprised everyone on the Internet today with the announcement of Minecraft Story Mode. The partnership aims to generate narrative-driven content for the franchise in traditional Telltale fashion, i.e. episodic content to be released on Xbox Live, PSN, PC, Mac, iOS, and Android devices. They will do their best to keep the game as “Minecrafty” as possible, even going as far as to make this announcement using an interactive press release called Info Quest II and teasing the launch of Minecraft 2. Just FYI, there is no Minecraft 2. Anyhoo, Mojang clarifies that they’re “not intending on creating an “official” story for Steve, or explaining the world of Minecraft in detail. It will be a cool game.” This looks to be the first major initiative at Mojang since Microsoft purchased them and the Minecraft franchise earlier this year. Commence the hating Debbie downers!\r\n\r\nBut don’t you dare hate on the latest Steam controller leak. What was previously a boombox for your hands is quickly morphing into a more “traditional” gamepad. The latest leak points to the addition of a d-pad in the left haptic area and if you’d forgotten, a set of face buttons has already been replaced by an analog stick. While this certainly isn’t a finalized retail build, it does point to the notion that the controller, much like Steam Machines, will be customizable. So if you don’t like rubbing those areolas on your Steam Controller to play Street Fighter V, then it looks like you can slap a pastie on dem titties. Mmmm… Boob controller.\r\n\r\nIn OTHER news, Evolve has revealed the third monster coming to the hunt in 2015. Known as the Wraith, the monster seems incredibly fast and even more deceptive than its brethren. A trailer released by 2K shows its incredible speed and ability to spawn a decoy, opening up the team of hunters to be flanked. Like Kraken, it looks to be a flying type with massive scythes on his shoulders. Turtle Rock continued this information dump by teasing an open beta for Xbox One starting on","player_loc":"https://roosterteeth.com/embed/steam-controller-update-new-evolve-monster-sony-cancels-the-interview-hard-news-121814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88df2bdc-e737-43d3-971b-48ebd25ecb69/sm/video_thumbnail_12857659-1418945696.jpg","duration":436,"publication_date":"2014-12-18T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-sound-booth-outtakes-kirby-vs-majin-buu","changefreq":"weekly","video":[{"title":"S1:E848 - DEATH BATTLE! Sound Booth Outtakes | Kirby vs. Majin Buu","description":"Not an Advantage Subscriber? NO BIG DEAL - just go HERE for a FREE 30 day Trial!","player_loc":"https://roosterteeth.com/embed/death-battle-sound-booth-outtakes-kirby-vs-majin-buu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c9bd437-0300-4e46-b300-0018a1415379/sm/video_thumbnail_12857640-1418930756.jpg","duration":342,"publication_date":"2014-12-18T11:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ultra-sf-iv-gets-wild-gabe-saves-hatred-ubisoft-bones-asscreed-again-hard-news-121714","changefreq":"weekly","video":[{"title":"S1:E780 - Ultra SF IV gets Wild, Gabe saves Hatred, Ubisoft bones AssCreed... Again! | Hard News 12/17/14","description":"I’m Sean Hinz and this is Hard News for Wednesday December 17th, 2014.\r\n\r\nUltra Street Fighter IV had a “wild “update today, that has some of your favorite fighters embracing their more animal instincts. The DLC features new costumes, some of which are incredibly bizarre and others that give me a strange boner. Anyway... the selection is broken down in various packs, much like past costumed content and you can scoop them up individually for $4 a piece. Should you be a big spender, you can get all 44 costumes for $20. This DLC will be available following the version 1.04 patch featuring the wacky Omega Mode. Ugh the Sagat skin is awwwwfullll… Just like the price of this content.\r\n\r\nFor the low low price of nothing, you can now download a patch that is supposed to make AssCreed Unity run as expected and fix “most” outstanding issues. But there’s an issue.. to make the frame rate more stable, Ubisoft had to rework a few sections of Paris and that means everyone needs to download a nearly 7 GB patch. As much as we may bitch an moan about this, that is becoming a pretty awful trend these days. That is until the Xbox One version somehow completely crapped out and now requires you to redownload the entire game at a whopping 40GB! Now that’s something to complain about. Ubisoft says “This is obviously not the expected behavior, and we apologize that many of you will have to wait longer than expected to complete this download.” But they don’t have an ETA on a solution outside of this issue and are working with Microsoft to address this. Do you think Ubisoft has anymore DLC they can give away to make themselves feel better?\r\n\r\nSpeaking of the big ‘M’, it appears the project name for Microsoft’s upcoming streaming service has leaked (thanks ZDnet), and they call it Arcadia. Using the Azure cloud, Microsoft hopes to offer its customers the ability to stream games and other content to Windows devices like say a Phone or low-end computer. When Polygon previously saw the ‘Rio’ demonstration, Microsoft was able to stream Halo 4 ","player_loc":"https://roosterteeth.com/embed/ultra-sf-iv-gets-wild-gabe-saves-hatred-ubisoft-bones-asscreed-again-hard-news-121714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62bec0cf-7560-4388-ae03-f1972dc0d503/sm/video_thumbnail_12857548-1418847256.jpg","duration":303,"publication_date":"2014-12-17T12:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/121714-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E847 - 12/17/14 SideScrollers Extended Cut","description":"One of the few times you'll see Bruce Banner get bitch slapped!","player_loc":"https://roosterteeth.com/embed/121714-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b9c75f9-e601-4b91-a7b7-c6c55f3c150d/sm/video_thumbnail_12857540-1418844891.jpg","duration":842,"publication_date":"2014-12-17T11:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-waxes-nostalgic-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E169 - SideScrollers Waxes Nostalgic | SideScrollers","description":"Sean returns for another week as the guys talk Valve's hypocrisy, Bungie's ineptitude, awesome hoodies, and find time to look back at the good old days.\r\n\r\nGet the limited edition ScrewAttack hoodie! http://www.represent.com/screwattackhoodie\r\n\r\nGet a sweet Retro Review designed shirt! http://www.neatoshop.com/artist/Retro-Review?tag=7040\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/sidescrollers-waxes-nostalgic\r\n\r\nHave a Newsdesk Suggestion? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave something for The Art Show? Send it to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-waxes-nostalgic-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a48da57-38d5-4303-aef8-791d700fd74f/sm/video_thumbnail_12857428-1418762703.jpg","duration":4453,"publication_date":"2014-12-16T13:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dmc-is-remastered-hatred-pulled-from-steam-witcher-3-features-new-character-hard-news-121614","changefreq":"weekly","video":[{"title":"S1:E779 - DmC is Remastered, Hatred Pulled from Steam, Witcher 3 Features New Character | Hard News 12/16/14","description":"I’m Sean Hinz and this is Hard News for Tuesday December 16th, 2014.\r\n\r\nRockstar is finally prepared to make good on their promise by bringing Heists to GTA Online. The co-op mode offers you and three friends the opportunity to score some big cash by completing an elaborate series of objectives. While we still don’t have a hard date, the latest trailer points to early 2015. Throw Vin Diesel, Val Kilmer, and George Clooney in a Mini Cooper and let’s go rob a cruise ship!\r\n\r\nAfter the reveal of Street Fighter 2 crossover content, I thought for sure Capcom was trying to rob us of our dignity, but no, they just need our money. On top of the reveal of another Felyne customer from Devil May Cry, Capcom also announced two next-generation ports of the recently rebooted DmC and nearly the worst game in the franchise Devil May Cry 4. DmC Devil May Cry: Definitive Edition from Ninja Theory is everything from the previous generation all jammed onto one disc for $39.99. It features all the DLC, plus new modes, skins, and gameplay features for Xbox One and PS4. It will additionally boast the long sought after 1080p, 60 fps that the Internet is so enamored with these days. You can find this re-mastered version of DmC at retail or digital download on March 17th, of 2015. Devil May Cry 4 Special Edition will launch in the summer of 2015 and more details will be shared next year. Totally should have gone with Devil May Cry 3 guys. The style system was way more fun than that punk bitch Nero.\r\n\r\nMore details have emerged about CD Projekt Red’s newest protagonist in Witcher 3. Named Ciri, the character is referred to as a “living weapon”, who is essential to the story. Pursued by the Wild Hunt, players will be passed control of her at key points throughout the game. Witcher 3 PR mastermind Robert Malinowski says Ciri “has her own will and agenda, so it’s not just finding her that counts. I think that is the most important aspect of this character. Geralt knows Ciri since she was a child. She’s Geralt’s apprentice and they have a clos","player_loc":"https://roosterteeth.com/embed/dmc-is-remastered-hatred-pulled-from-steam-witcher-3-features-new-character-hard-news-121614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55bcaf6c-e6a0-4f44-b9e4-a4f73098f0f1/sm/video_thumbnail_12857433-1418763337.jpg","duration":243,"publication_date":"2014-12-16T12:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-story-of-gamejew","changefreq":"weekly","video":[{"title":"S1:E846 - The Story of GameJew","description":"Relive the history behind one of ScrewAttack's first features WAY back in 2006. Much love and support for GameJew!","player_loc":"https://roosterteeth.com/embed/the-story-of-gamejew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c935aff-7992-46e3-a8ee-d69e6d1186cb/sm/video_thumbnail_12857411-1418752038.jpg","duration":502,"publication_date":"2014-12-16T09:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-bowser-vs-dr-eggman","changefreq":"weekly","video":[{"title":"S1:E9 - One Minute Melee - Bowser vs Dr. Eggman","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!! Who would win in a fight between Mario's nemesis Bowser and Sonic the Hedgehog's bad guy Dr. Eggman? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-bowser-vs-dr-eggman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03d9dcaf-2583-4cd1-8968-3c99d17ba438/sm/video_thumbnail_12857272-1418655677.jpg","duration":194,"publication_date":"2014-12-15T07:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/create-your-dreams-in-wwe-2k15","changefreq":"weekly","video":[{"title":"S1:E845 - Create Your Dreams in WWE 2K15","description":"With a such strong system, you can make all your squared circle dreams a reality with WWE 2K15's Create A Wrestler mode! Let Craig and Bryan show you!","player_loc":"https://roosterteeth.com/embed/create-your-dreams-in-wwe-2k15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0eea2d63-d532-4ffd-a4ed-1422ff268ab0/sm/video_thumbnail_12857195-1418583499.jpg","duration":541,"publication_date":"2014-12-14T10:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-14","changefreq":"weekly","video":[{"title":"S2:E14 - Deadpool VS Deathstroke","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/434001d9-20d9-4598-858e-3fc5c86455ca/sm/video_thumbnail_12856873-1418376367.jpg","duration":1135,"publication_date":"2014-12-12T01:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/best-story-nominees-screwattacks-end-of-the-year-awards","changefreq":"weekly","video":[{"title":"S1:E844 - Best Story Nominees | ScrewAttack's End of the Year Awards ","description":"What game had the best story of 2014? Vote now and decide the fate of the video game galaxy.","player_loc":"https://roosterteeth.com/embed/best-story-nominees-screwattacks-end-of-the-year-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fb735a4-5d26-46f9-bb0f-f61031c3b604/sm/video_thumbnail_12856780-1418276314.png","duration":52,"publication_date":"2014-12-11T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/best-gameplay-nominees-screwattacks-end-of-the-year-awards","changefreq":"weekly","video":[{"title":"S1:E843 - Best Gameplay Nominees | ScrewAttack's End of the Year Awards","description":"What game had the best gameplay of 2014? Vote now and decide the fate of the video game galaxy.","player_loc":"https://roosterteeth.com/embed/best-gameplay-nominees-screwattacks-end-of-the-year-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/159e2549-5cfb-43e6-a8f1-47d9d8e1b74f/sm/video_thumbnail_12856779-1418276021.png","duration":56,"publication_date":"2014-12-11T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/121014-sidescrollers-extended-cut","changefreq":"weekly","video":[{"title":"S1:E842 - 12/10/14 SideScrollers Extended Cut","description":"Craig is taking the guys on a photographic tour of his Vegas trip!","player_loc":"https://roosterteeth.com/embed/121014-sidescrollers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1faf4843-dae5-4177-9965-08cfb58094e7/sm/video_thumbnail_12856747-1418251303.jpg","duration":679,"publication_date":"2014-12-10T14:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/big-time-exclusive-talk-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E168 - Big Time Exclusive Talk | SideScrollers","description":"Sean joins Sam and Craig today on SideScrollers to talk the big stories from the weekend, Sam's crazy Newsdesk stories, and what is the deal with exclusives?\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/exclusively-sidescrollers\r\n\r\nHave a Newsdesk story? Send it to Sam! sam@screwattack.com\r\n\r\nHave something for The Art Show? Send it to Bryan! Bryan@screwattack.com","player_loc":"https://roosterteeth.com/embed/big-time-exclusive-talk-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81740b25-e86e-4029-9487-83e4f9eda112/sm/video_thumbnail_12856680-1418159206.jpg","duration":4689,"publication_date":"2014-12-09T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-kirby","changefreq":"weekly","video":[{"title":"S1:E17 - FIVE FUN FACTS About Kirby","description":"Think you know everything about Nintendo's pink puff? Maybe not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-kirby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23244862-e751-44d1-b0c8-11a3582c0f17/sm/video_thumbnail_12856663-1418143916.jpg","duration":190,"publication_date":"2014-12-09T08:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/foxitron-gets-a-sidekick","changefreq":"weekly","video":[{"title":"S1:E841 - Foxitron gets A SIDEKICK!","description":"As the legend of Foxitron grew, he missing something: a sidekick! Now Foxitron and NosisTheGod fight together for love and peace!\r\n\r\nHelp NosisTheGod win a PS4 to giveaway! Retweet our latest DC Universe Online tweet (https://twitter.com/ScrewAttack/status/541653663643860992) to give his subscribers a chance to win a PS4!\r\n\r\nCheck out NosisTheGod's channel!\r\nHttp://www.youtube.com/NosisTheGod\r\n\r\nWant to play DC Universe Online yourself? Go for it!\r\nhttp://bit.ly/1z7jXFf","player_loc":"https://roosterteeth.com/embed/foxitron-gets-a-sidekick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09f0636b-98e9-4334-8b8e-03ba793e263e/sm/video_thumbnail_12856537-1417941495.jpg","duration":615,"publication_date":"2014-12-07T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/street-fighter-5-what-we-think-we-know","changefreq":"weekly","video":[{"title":"S1:E840 - Street Fighter 5: What We THINK We Know","description":"We analyzed the Street Fighter 5 gameplay trailer for everything it's worth and came away with some real tasty tidbits.","player_loc":"https://roosterteeth.com/embed/street-fighter-5-what-we-think-we-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ffd7c07-4578-41e7-be06-7019e00bed0b/sm/video_thumbnail_12856536-1417941094.jpg","duration":517,"publication_date":"2014-12-07T00:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/street-fighter-v-leaks-snk-classics-on-psn-new-games-at-game-awards-hard-news-12514","changefreq":"weekly","video":[{"title":"S1:E778 - Street Fighter V Leaks, SNK Classics on PSN, New Games at Game Awards | Hard News 12/5/14","description":"I’m Sean Hinz and this is Hard News for Friday December 5th, 2014.\r\n\r\nDragon Ball Z is preparing yet another movie in the franchise to arrive  in Japan on April 18 of next year. Dragon Ball Z: The Resurrection of F will feature everyone’s favorite prince, Frieza. This footage features a handful of scenes in a loop on the Japanese morning show Mezamashi TV and it is the first time we’ve had a look at the anime. Will Funimation being this newest Dragon Ball stateside? Let’s call Lauren and find out!\r\n\r\nWell there you have it, Dragon Ball for everyone!\r\n\r\nOn the subject of games for the people, SNK has taken over PlayStation Blog in order to have the community help vote on the next classic Neo Geo title to bring to PSN. Right now, Metal Slug 3 is launching on PS3, PS4 or Vita to will mark the 25th anniversary of the  Neo Geo AES console and MVS arcade cabinets. New titles to vote on include King of Fighters, Fatal Fury, and Samurai Showdown. While they don’t have Windjammers on the list, they do have Mark of the Wolves, so be sure to voice your opinion so we keep getting these great games!\r\n\r\nSpeaking of great games, Capcom may have just had their newest installment in the Street Fighter franchise leak for all of us to enjoy. Now most leaks come from some internal document or mole, but this one is all Capcom’s fault, who posted the trailer on their YouTube and then promptly removed it. That didn’t stop DailyMotion from keeping tabs on it though and what was probably going to be announced sometime over the next 72 hours, is now in the wild. Graphically it looks much like Street Fighter IV, but with more detailed character models who don’t look quite as emotive. Ryu and Chun-li throw some kicks and punches between b-roll of FGC pros in what is almost a car commercial. Then the entire teaser ends with the explosive reveal of PS4 and PC platform exclusivity. I guess Sony looked at Microsoft’s recent foray into the fighting game community with Killer Instinct and countered with the greatest fighting game franchise of all","player_loc":"https://roosterteeth.com/embed/street-fighter-v-leaks-snk-classics-on-psn-new-games-at-game-awards-hard-news-12514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e22a7594-9985-453c-a63c-08def3169f62/sm/video_thumbnail_12856399-1417819611.jpg","duration":217,"publication_date":"2014-12-05T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chad-vs-nick-taunts-only-sf-third-strike","changefreq":"weekly","video":[{"title":"S1:E839 - Chad Vs. Nick - TAUNTS ONLY | SF: Third Strike","description":"S1:E839 - Chad Vs. Nick - TAUNTS ONLY | SF: Third Strike","player_loc":"https://roosterteeth.com/embed/chad-vs-nick-taunts-only-sf-third-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/997b049f-cd72-4be6-8d6b-43480c50befc/sm/video_thumbnail_12856325-1417733224.jpg","duration":254,"publication_date":"2014-12-04T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-learn-kung-fu-episode-1-redux-tornado-kick","changefreq":"weekly","video":[{"title":"S1:E838 - Let's Learn Kung Fu Episode 1 REDUX | Tornado Kick","description":"Can't see this video? NO BIG DEAL! Just go HERE to try out Advantage for 30 WHOLE DAYS!","player_loc":"https://roosterteeth.com/embed/lets-learn-kung-fu-episode-1-redux-tornado-kick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a16d394d-653c-42f4-aa6f-c29f80223668/sm/video_thumbnail_12856318-1417729547.jpg","duration":131,"publication_date":"2014-12-04T13:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/youporn-in-esports-nintendo-sued-by-donkey-kong-dan-adelmans-new-game-hard-news-12414","changefreq":"weekly","video":[{"title":"S1:E777 - YouPorn in eSports, Nintendo sued by Donkey Kong, Dan Adelman's New Game | Hard News 12/4/14","description":"I’m Sean Hinz and this is Hard News for Thursday December 4th, 2014.\r\n\r\nDan Adelman, the man who brought indie gaming to the Wii U, has finally found a new home with the developers of the upcoming roguelike Chasm. The developer Discord Games successfully completed a Kickstarter back in April of 2013 for Chasm, raising nearly $200,000 towards the indie title. This isn’t the first Metroidvania title Adelman has helped, post his position at Nintendo, where he previously lent his expertise to Axiom Verge. Joking on his Blog, Adelman admits “there are definite similarities in terms of the genre and overall framework. Tight controls. Challenging boss fights and a wide range of enemies.” Sounds like either project would be a home run for fans of platformers. Chasm is now expected to release on PS4, PC, Mac, and Linux for the second half of 2015. While other platforms are under consideration, there is no confirmation of a Wii U release for either of Dan’s current projects. Sorry Nintendo.\r\n\r\nOther not so great Nintendo news comes way of the LA Times who reports that a paid actor is suing the gaming giant for his role in the Spring of 2013 release Donkey Kong Country Returns 3D. Parker Mills was hired by Nintendo to rock a Donkey Kong costume at a local zoo to help promote the game. According to his lawyer, “Mills was denied breaks and not provided with the required ice pack to cool him down as he talked to zoo guests”. This created a “stressful environment” for Mills, who suffered an aortic dissection that required heart surgery and a permanent defibrillator. The lawsuit also claims that the company provided ambassador to help Mills did not provide “proper oversight”. Now his illness is unfortunate and temperatures might exceed 80 degrees around that time in LA, but let’s be real honest here, Mills is just trying to milk that Nintendo teat before it dries up.\r\n\r\nAnd while we’re talking boobies, YouPorn is the first company in the pornography business to sponsor an eSports gaming team. Hailing from Madrid, the Spanish eSp","player_loc":"https://roosterteeth.com/embed/youporn-in-esports-nintendo-sued-by-donkey-kong-dan-adelmans-new-game-hard-news-12414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5d2d041-a193-4365-a5d3-ed271ae890c2/sm/video_thumbnail_12856316-1417729434.jpg","duration":226,"publication_date":"2014-12-04T13:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ps4-20th-anniversary-assassins-creed-leak-steam-broadcasting-hard-news-12314","changefreq":"weekly","video":[{"title":"S1:E776 - PS4 20th Anniversary, Assassin's Creed Leak, Steam Broadcasting | Hard News 12/3/14","description":"I am Sean Hinz and this is Hard News for Wednesday December 3rd, 2014.\r\n\r\nWe have tons of news to cover today so let's get started! Valve has decided that they can’t let Twitch have all the fun when it comes to streaming games, so they’re bringing the heat with Steam Broadcasting. The primary market seems focused on sharing live videos with friends, but it will have a public option for all of your fevered fans. You can watch the gameplay on Steam, Chrome, and Safari; but there are no archive options for the service at this time. I suspect that will change as the Beta evolves and to use the feature you’ll have to opt-in to the Beta version of Steam. There doesn’t seem to be any camera options either, maybe Valve just wants to keep the T&A to a minimum.\r\n\r\nNintendo might be on the cusp of some major hardware issues with Wii U. Reddit has begun cataloguing a ton of instances where error code 160-0103 is bricking the hardware. Early reports were Smash was the culprit, but most seemed convinced that this isn’t actually a software issue. User TVena suspects the error code is the result of a faulty or worn internal flash chip, most likely limited to a specific run off the factory line. It could be a firmware bug, but that would be even more random and unlikely. The point is Smash isn’t responsible for the error code and you shouldn’t be concerned playing your Wii U. It has enough problems of its own without us gamers feeling paranoid.\r\n\r\nIn other news, Sony's PlayStation Experience is happening this weekend in Las Vegas and the manufacturer has announce a Limited Edition PlayStation 4 celebrating the 20th anniversary of the brand. And I want it so hard! Limited to a run of 12,300 units, this slick looking piece of hardware features the color scheme from the original PlayStation released back in 1994. It also comes packed with a sexy custom controller and camera, but there is no date or price. Expect more details to be revealed over the weekend. In the meantime, Sony uploaded a digital theme to PSN that harkens back to t","player_loc":"https://roosterteeth.com/embed/ps4-20th-anniversary-assassins-creed-leak-steam-broadcasting-hard-news-12314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdc14041-7e5b-4104-81b0-570c3a3c83ab/sm/video_thumbnail_12856245-1417638277.jpg","duration":329,"publication_date":"2014-12-03T12:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/120314-extended-cut","changefreq":"weekly","video":[{"title":"S1:E837 - 12/03/14 Extended Cut","description":"How did Austin get trolled for EIGHT YEARS?!?","player_loc":"https://roosterteeth.com/embed/120314-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3faf9c9-e386-4a1b-8a24-928f3c0689b9/sm/video_thumbnail_12856213-1417586939.PNG","duration":592,"publication_date":"2014-12-03T07:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/confess-your-gaming-sins-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E167 - Confess Your Gaming Sins! | SideScrollers","description":"Sam, Chad, and Craig are bearing their gaming souls, digging into big stuff, and breaking down the worst kickstarters going on right now!\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/confess-your-gaming-sins","player_loc":"https://roosterteeth.com/embed/confess-your-gaming-sins-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b815557-a39b-4a75-af0e-85bb78293914/sm/video_thumbnail_12856164-1417562650.png","duration":4189,"publication_date":"2014-12-03T07:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/xbox-live-down-fortnite-alpha-is-open-barry-joins-revelations-2-hard-news-12214","changefreq":"weekly","video":[{"title":"S1:E775 - Xbox Live Down, Fortnite Alpha is Open, Barry Joins Revelations 2 | Hard News 12/2/14","description":"I’m Sean Hinz and this is Hard News for Tuesday November 2nd, 2014\r\n\r\nReally quick news bits, Peter Molyneux has a new game coming called The Trail. It will have you following a path of Reeses Pieces into a varmint snare, where he’ll trap you and keep you in his private dungeon. To see what happens next you’ll probably have to buy the DLC. And that “defective” Samus figurine with dual arm cannons sold for a whopping $2500 on ebay. In other news, Nintendo says screw it and just begins to manufacture the rest of them that way. Onto the news!\r\n\r\nXbox Live was taken down by a DDoS attack last night. Users on Xbox 360 and Xbox One reported a “80151909 error code — warning that an Xbox Live profile has failed to download”. Microsoft’s support site didn’t record there being an outage, but the Internet did and it seems to be coming from everyone’s favorite reptilian hacker collective Lizard Squad, who took responsibility via Twitter. Attacks like these are becoming an all too common occurrence these days and Lizard Squad in the past claims to have used denial-of-service attacks against PSN, League, GTA Online, and even Destiny. BUT this time the hackers took it a step further, foreshadowing an even larger attack to come this Christmas holiday. That’s the week of the Halo 5 BETA! Baby Jesus is gonna be pissed.\r\n\r\nMaybe access to the Alpha test of the new game Fortnite will make him forget about his impending doom. Epic’s latest IP is opening up sign-ups to the closed Alpha that kicks off today and runs through December 19th. It looks like the first wave of invites is out and since Fortnite is best played with buddies, it will let you bring two friends for the ride. The wave-based co-op shooter will have you building an epic fortress as you try to survive the most unholiest of nights. Interested in trying it first hand? Just follow the link in the description for the sign-up page. I wonder if Dom from Gears of War will make an appearance as an undead boss… SPOILERS!\r\n\r\nSpeaking of which, Barry Burton has been confirmed for","player_loc":"https://roosterteeth.com/embed/xbox-live-down-fortnite-alpha-is-open-barry-joins-revelations-2-hard-news-12214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd96a0fc-be54-4307-b41b-6ada56a0e6b7/sm/video_thumbnail_12856127-1417549035.jpg","duration":230,"publication_date":"2014-12-02T11:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-of-thrones-dated-china-console-revolution-from-russia-with-amiibo-hard-news-12114","changefreq":"weekly","video":[{"title":"S1:E774 - Game of Thrones Dated, China Console Revolution, From Russia with Amiibo | Hard News 12/1/14","description":"I’m Sean Hinz and this is Hard News for Monday December 1st, 2014.\r\n\r\nHoly balls, Game of Thrones: A Telltale Game Series will be releasing on PC, Mac, and American PS4s tomorrow, December 2nd. Then on the third, it will hit Xbox 360, Xbox One, and European PS4s. Followed by iOS platforms on the fourth and on PS3 on the 9th of December. Android dates have yet to be revealed. Still no price, but this is episode one of six, so it probably won’t cost much at all. That means if you’ve been trying to catch up on the franchise, you’d better hurry, there are mere hours left before launch.\r\n\r\nUnfortunately for the remaining staff at the publication CVG, they might be out of time. One of Future publishings last and longest running gaming websites will be closing its doors according to MCV. Considered for closure in May, Computer and Video Games didn’t fit into the massive conglomerate created on GamesRadar and was given six months to make itself worthy, but after 33-years it will be closing up shop. Future has yet to disclose as much officially, but the largest gaming website in the UK will be giving up the ghost and it will probably happen before the end of the year. Here’s hoping the American, Australian, and UK staffers all land on their feet.\r\n\r\nNow we’re going to dig even deeper into the International gaming news by turning our gaze to Russia, where some amiibo owners claim they can access the Moscow subway using the NFC powered figurines. You can see this Samus is at least making the gate consider opening. But some are saying it’s an elaborate hoax, in spite of the evidence. Who’s to say this won’t ignite a political conflict with neighboring Japan? And I know Russia can be stubborn, but they don’t have shit on Nintendo! I think Putin is going to have to bite the bullet on this one and make some subway changes, because these figurines are here to stay.\r\n\r\nWhile we’re on that side of the world, China has already begun its adventure into console gaming with the recent launch of the Xbox One, but times are tough for Mi","player_loc":"https://roosterteeth.com/embed/game-of-thrones-dated-china-console-revolution-from-russia-with-amiibo-hard-news-12114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deee64b1-3bc3-4737-b2c9-9ac22fda2f9e/sm/video_thumbnail_12856068-1417471969.jpg","duration":300,"publication_date":"2014-12-01T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-zero-vs-meta-knight","changefreq":"weekly","video":[{"title":"S1:E8 - One Minute Melee - Zero vs Meta Knight","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!! Who would win in a fight between Mega Man's Zero and Nintendo's Meta Knight? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-zero-vs-meta-knight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f14f272-c032-4431-98dc-924b07a9ce29/sm/video_thumbnail_12856048-1417455954.jpg","duration":116,"publication_date":"2014-12-01T09:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-pikmin","changefreq":"weekly","video":[{"title":"S1:E16 - FIVE FUN FACTS about Pikmin","description":"Think you know everything about this Nintendo classic?  Maybe not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-pikmin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/492bdf88-7554-4c21-9cd4-b204a023e52e/sm/video_thumbnail_12855899-1417232092.png","duration":182,"publication_date":"2014-11-29T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jedi-vs-ninja-vs-knight-vs-fencer-live-action-battle","changefreq":"weekly","video":[{"title":"S1:E836 - Jedi vs Ninja vs Knight vs Fencer (Live Action Battle)","description":"Jedi vs Fencer! Ninja Vs Knight! Warrior Battle Royale! Who will be the victor? Who will live?\r\n\r\nThanks so much to SwordPlay LA for having us out and choreographing the fight! They were all awesome and great to work with.\r\n\r\nCheck out their website here:\r\nhttp://swordplayla.com/\r\n\r\nCheck out their YouTube Warrior Showdown here:\r\nhttps://www.youtube.com/user/WarriorShowdown\r\n\r\nBe sure to also check out Tim Weske’s new YouTube channel They Fight here:\r\nhttps://www.youtube.com/channel/UCSuhDqqY3JhlyBwIvukftBg","player_loc":"https://roosterteeth.com/embed/jedi-vs-ninja-vs-knight-vs-fencer-live-action-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/119c3691-1e2a-4e67-a376-1b301d3c5145/sm/video_thumbnail_12855748-1417070584.jpg","duration":251,"publication_date":"2014-11-26T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/playstation-false-advertising-crew-beta-live-gamecube-adapter-homebrew-hard-news-112614","changefreq":"weekly","video":[{"title":"S1:E773 - PlayStation False Advertising, Crew Beta Live, Gamecube Adapter Homebrew | Hard News 11/26/14","description":"I’m Sean Hinz and this is Hard News for Wednesday November 26th, 2014.\r\n\r\nThe Crew Beta has arrived on PS4 and Xbox One, and it is open to everyone! So for the next few days you login to your PSN or Xbox Live and download the Beta for free. If you have Gold or PlayStation Plus subscription, your experience should be vastly improved with all the multiplayer options available. This is a great opportunity to skip the reviews altogether and just play the game before release to see if it’s something you want. GG Ubisoft.\r\n\r\nHmm… It was kind of nice to compliment them once.\r\n\r\nIn other news, Sony has been found guilty of false advertising according to the Federal Trade Commission based on a series of ads that ran between late 2011 into early 2012. The ads touted a number of features on the PlayStation Vita, that consumers found misleading. That means anyone who purchased a Vita before June 1, 2012 is eligible for \"either a $25 cash or credit refund, or a $50 merchandise voucher for select video games, and/or services.\" The specific false claims seemed to mostly revolve around the Remote Play functionality and how the Vita communicates with the PS3. A feature that seems to work much better now that we have the PS4, so maybe Sony just was a little excited about the portable’s potential. Either way, the functionality finally exists, but because Sony jumped the gun, we all get free shit! Now this isn’t the first time Sony has lied to us, but it is the first time we’ve been paid for it.\r\n\r\nWith your new found fortune, you should consider checking out the Humble SEGA Bundle. It’s a collection of some great SEGA games like NiGHTS Into Dreams, Sonic All-Stars, and the Dreamcast Collection. Throw in a couple more games and add-ons for the low low price of $3.50 and you have a nice little Steam bundle for the next few days. Oh and for the hardcore, you can pay $50 and get an exclusive t-shirt memorializing the dead console that is the Dreamcast.\r\n\r\nAnd finally, on the subject of reviving the dead. Nintendo’s foray into bringing ","player_loc":"https://roosterteeth.com/embed/playstation-false-advertising-crew-beta-live-gamecube-adapter-homebrew-hard-news-112614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7751edd-5b64-4e65-9edb-f3bcc4eacbf8/sm/video_thumbnail_12855698-1417034517.jpg","duration":233,"publication_date":"2014-11-26T12:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tales-from-black-friday-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E166 - Tales from Black Friday | SideScrollers","description":"Craig, Sam, and Chad are going deep into Black Friday this week! The tales from behind the counter, as the customer, and just watching the mayhem as it happens.\r\n\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/tales-from-black-friday-sidescrollers\r\n\r\nHave a Newsdesk story? Send it to Sam!\r\nSam@ScrewAttack.com\r\n\r\nHave a Birthday Challenge Pic? Send it to Bryan!\r\nBryan@ScrewAttack.com\r\n\r\nSee this week's Classic ScrewAttack video!\r\nhttp://www.screwattack.com/shows/originals/clip-of-the-week/clip-week-very-screwattack-thanksgiving","player_loc":"https://roosterteeth.com/embed/tales-from-black-friday-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bc67830-1dce-4638-b825-e1f1a208b198/sm/video_thumbnail_12855641-1416948146.jpg","duration":4576,"publication_date":"2014-11-26T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-crew-embargoed-dark-souls-2-next-gen-project-vaulderie-shutdown-hard-news-112514","changefreq":"weekly","video":[{"title":"S1:E772 - The Crew Embargoed, Dark Souls 2 Next-gen, Project Vaulderie Shutdown | Hard News 11/25/14","description":"I’m Sean Hinz and this is Hard News for Tuesday November 25th, 2014\r\n\r\nUbisoft has backtracked on its promises following the lackluster review process for Assassin’s Creed Unity. After the post-launch embargo of Unity left some owners feeling cheated by all the glitches and overall poor design choices, Ubisoft said they were “working to adapt our services and communications with consumers accordingly”, in a show of good faith. In spite of this, Ubisoft has embargoed reviews for The Crew to be posted after the game launches next Tuesday. They claim this is due to the interconnected and open-world nature of the game, because \"The Crew was built from the beginning to be a living playground full of driving fans, so it’s only possible to assess our game in its entirety with other real players in the world.\" So this brings up a very big question, has the nature of being first to market on any review site cost consumers the privilege of fair and unbiased reviews? Or is Ubisoft blowing smoke up our ass so they can make sure their first week of sales is the best it can be?\r\n\r\nOne game that needs no review is the visual novel Hatoful Boyfriend. The pigeon dating simulation is like no other game in its genre. Hell, it’s like no other game on the market right now and that’s why after its PC release, we’ll be seeing it on PS4 and Vita. In it you attend the St. PigeoNation’s Institute as the last human female on earth, looking for an avian lover like no other. PlayStation has been embracing the bizarre indie scene for quite awhile now, so it only makes sense this game would release on PSN in the second quarter of 2015. It has quite a few bizarre paths that can lead to interspecies erotica or flat-out murder. If you’d like a taste of either, check out our live stream with Craig, Andre, and Playboy Playmate Irina Voronina; as they make their way through the game. Yup… That happened.\r\n\r\nIn more new game news, Bandai Namco revealed that Darks Souls II is coming to ravage next-gen consoles, with a new title to boot. Dark Souls 2: S","player_loc":"https://roosterteeth.com/embed/the-crew-embargoed-dark-souls-2-next-gen-project-vaulderie-shutdown-hard-news-112514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e56340b-55e1-4db2-9334-4a7873d114e8/sm/video_thumbnail_12855634-1416943342.jpg","duration":260,"publication_date":"2014-11-25T11:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-foxining-dc-universe-online-part-2","changefreq":"weekly","video":[{"title":"S1:E835 - The FOXINING | DC Universe Online Part 2","description":"The legend of Foxitron grows as our hero hits the streets of Gotham in DC Universe Online! Although only a low level, Foxitron must take down the supervillain, Scarecrow!\r\n\r\nLike what you see? Check out DC Universe Online for yourself!\r\nhttp://bit.ly/10zIhDD","player_loc":"https://roosterteeth.com/embed/the-foxining-dc-universe-online-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08ac39f1-27d4-4aca-95cc-9b24ef26c54f/sm/video_thumbnail_12855583-1416870002.jpg","duration":654,"publication_date":"2014-11-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/blood-sport-kickstarter-starcraft-ii-pro-disqualified-hackers-plays-tv-hard-news-112414","changefreq":"weekly","video":[{"title":"S1:E771 - Blood Sport Kickstarter, StarCraft II Pro Disqualified, Hackers, Plays.TV | Hard News 11/24/14","description":"I’m Sean Hinz and this is Hard News for Monday, November 24th, 2014.\r\n\r\nA female eSports competitor was threatened at a StarCraft 2 Tournament over the weekend. Ukranian StarCraft player Mihaylo Hayda tweeted “Going to rape some girl soon #fragbitemasters” in the middle of a qualifying match. Specifically referencing his opponent, Madeleine Leander, who recounted her experience to the site eSport. She noticed something was up when a “few minutes into the first map the game was paused.... because of the tweet.” Madeliene found it scary to see this sort of behavior coming from a pro player, but acknowledged the organization did what it could and ultimately disqualified Hayda from the tourney. Hayda later apologized for his behavior and took a hiatus from Twitter for a couple days noting he was “really ashamed” and “wanted to kill himself”. Based on that last tweet, it seems like he really learned something that day.\r\n\r\nOn the other hand, people have yet to figure out that some crazy Kickstarter ideas, should stay crazy ideas. Blood Sport is a new technology being crowdfunded that incorporates the charitable act of donating blood and combine it with the fun of gaming. The tech uses an Arduino Board to make sure the blood is being sucked from your body and that you don’t lose too much while playing. The issue here is that blood is drawn intravenously based on when the controller rumbles, so everytime you’re shot, you’ll lose a bit of blood. Now the crowdfunding campaign has just started and the team behind Blood Sport are looking for about 250,000 Canadian dollars, but have yet to clear $5K. You can head over to the kickstarter and toss your loonies in with the rest of ‘em, and help this group of secret vampire developers establish their new world order.\r\n\r\nOnto more crazy news, Raptr is trying to compete with MLG.TV and Twitch by opening their own streaming service, Plays.TV. It is currently in open beta and let’s you share some of your best gaming moments with friends, using the social service. There is even some P","player_loc":"https://roosterteeth.com/embed/blood-sport-kickstarter-starcraft-ii-pro-disqualified-hackers-plays-tv-hard-news-112414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/931bdca6-4195-47fd-8503-1444d9f90705/sm/video_thumbnail_12855580-1416867985.jpg","duration":246,"publication_date":"2014-11-24T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/destiny-screws-over-sean","changefreq":"weekly","video":[{"title":"S1:E834 - Destiny Screws Over Sean","description":"S1:E834 - Destiny Screws Over Sean","player_loc":"https://roosterteeth.com/embed/destiny-screws-over-sean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32d4f3c7-2409-4110-a80b-280ec4600356/sm/video_thumbnail_12855192-1416352861.jpg","duration":161,"publication_date":"2014-11-22T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/meta-knight-amiibo-xbox-one-birthday-final-fantasy-games-coming-hard-news-112014","changefreq":"weekly","video":[{"title":"S1:E770 - Meta Knight amiibo, Xbox One Birthday, Final Fantasy Games Coming | Hard News 11/20/14","description":"I’m Sean Hinz and this is Hard News for Thursday November 20th, 2014.\r\n\r\nEA has announced a new Need for Speed game, called Need for Speed No Limits and it will be releasing in 2015 on… mobile devices. Specifically iOS and Android. It’s good to know since we can all stop caring about another free-to-play cash cow for EA. Frankly, this isn’t the Need for Speed we’re looking for. Let’s try this new game announcement thing again…\r\n\r\nSquare Enix has announced a new Final Fantasy game, three in fact and they’re all for mobile devices… Dammit!  Final Fantasy Legends – Crystal of Time, Final Fantasy Brave Exvius, and the Final Fantasy Portal App are all destined for iOS and Android in 2015. Crystal of Time is a “time-traveling RPG” and looks like it might actual be trying to bring a true Final Fantasy game to mobile. That is until you read about the free-to-play part… Brave Exvius is a collaboration with the mobile developer behind the hit Brave Frontier. It looks much like Crystal of Time, but the systems and plot will probably feel different enough. It will also be free-to-play with microtransactions. Now the Portal App is part game, part rewards program and will tie-in to your Square Enix ID. It features the latest Final Fantasy news, swag, and aims to provide users the opportunity to earn points that can be exchanged for digital content. But the game element comes in the form of the Triple Triad card game from Final Fantasy 8. Which is one of the worst mini-games ever in the franchises history and I am so done talking about mobile games today. Oh and the Final Fantasy committee is high on Ether if they think this is the way to keep my loyalty. How about a new Tactics game? Please?!\r\n\r\nSpeaking of begging for acknowledgment, Microsoft is giving Early Adopters of the Xbox One a few gifts to celebrate the year one anniversary. So on the 22nd you can log into Xbox Live for a free Year One gamer pic, background, background image, an exclusive Day One achievement background, plus free rentals of Halo 4: Forward Unto Dawn","player_loc":"https://roosterteeth.com/embed/meta-knight-amiibo-xbox-one-birthday-final-fantasy-games-coming-hard-news-112014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f883910-c6a9-464e-8a47-5c97aa5a2c50/sm/video_thumbnail_12855342-1416519279.jpg","duration":294,"publication_date":"2014-11-20T13:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/walmart-scammed-far-cry-4-pirated-ubisoft-dishonors-france-hard-news-111914","changefreq":"weekly","video":[{"title":"S1:E769 - Walmart Scammed, Far Cry 4 Pirated, Ubisoft Dishonors France? | Hard News 11/19/14","description":"I’m Sean Hinz and this is Hard News for Hump Day November 19th, 2014.\r\n\r\nIn a clever move by Ubisoft, Far Cry 4 pirates have made themselves known publicly by complaining on social media. Whether intentional or not, the field of view scroller was left out of the retail build, only to be patched in on day one. So when users took to Twitter to complain about the option, game director Alex Hutchinson made it clear to PC players that “if you're online complaining about the lack of FOV control ... You pirated the game.” In my opinion, THAT makes you an asshole.\r\n\r\nBut Ubi isn’t free from dawning such an auspicious title themselves, but this time it is coming from their country of origin. Former Presidential candidate Jean-Luc Mélenchon has been critical of Assassin’s Creed Unity, calling the game “propaganda” and claims it portrays Maximilien Robespierre as a “monster”, despite being the catalyst of victory for the people in the revolution. Mélenchon concluded that the game \"presents an image of hatred of the Revolution, hatred of the people, hatred of the republic which is rampant in the far-right milieux (of today).\"Here’s the thing Jean-Luc... You imply this game is unpatriotic, but based on the polls, it has had more support of the French people than you did in the last election.\r\n\r\nNow the devs behind the game have been learning a lesson or two with the recent launch of AssCreed having so many bugs. The face-off issue affecting PC players should no longer be an issue. It appears it was tied to specific GPU, but has since been resolved. Still there are larger performance issues from the framerate dropping, to awful pop-in and the process of getting everything fixed look promising. Based on feedback, Ubi says they are trying to streamline free-running, tagging objects and prioritizing core utilization. All of these things combined will improve the overall experience. While we don’t have timeline for the third patch, the devs are on it and hopeful. But will they get around to fixing the Initiates system? Because no ","player_loc":"https://roosterteeth.com/embed/walmart-scammed-far-cry-4-pirated-ubisoft-dishonors-france-hard-news-111914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/559261cd-21dc-441b-ba07-ef8ab7e1ba2d/sm/video_thumbnail_12855267-1416432752.jpg","duration":224,"publication_date":"2014-11-19T13:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-111914","changefreq":"weekly","video":[{"title":"S1:E833 - SideScrollers Extended Cut 11/19/14","description":"S1:E833 - SideScrollers Extended Cut 11/19/14","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-111914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e37e4436-e539-4ed1-9bba-179f567e1a7b/sm/video_thumbnail_12855255-1416424546.PNG","duration":363,"publication_date":"2014-11-19T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heavy-petting-zoo-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E165 - Heavy Petting Zoo | SideScrollers","description":"This time on SIdeScrollers, the guys unveil their new set as they try to figure out what's going on with big triple A titles, what's still wrong with Destiny, and just how wrong one college student could be.\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/heavy-petting-zoo-sidescrollers","player_loc":"https://roosterteeth.com/embed/heavy-petting-zoo-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e75ba925-c9b0-4876-bd4e-4955cadc8505/sm/video_thumbnail_12855183-1416345846.jpg","duration":4473,"publication_date":"2014-11-19T07:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ff7-in-littlebigplanet-goat-simulator-mmo-g4-is-dead-really-hard-news-111814","changefreq":"weekly","video":[{"title":"S1:E768 - FF7 in LittleBigPlanet, Goat Simulator MMO, G4 is Dead... Really! | Hard News 11/18/14","description":"I'm Sean Hinz and this is Hard News for Tuesday November 18th, 2014.\r\n\r\nIf you missed the most glorious simulation of the modern age, don't fret, Goat Simulator is getting an expansion of epic proportions and there is plenty of time left to enjoy it. The MMO-themed expansion pokes fun at taking this physics simulation to the extreme by dropping your hairy ass into a fantasy themed universe complete with thatch roof cottages and idiotic villagers. No one suspects a thing as this mighty goat dons one of his many new armors to lead the village into oblivion. Oh and you can play as a microwave with legs. The expansion drops this Thursday on Steam and will cost zero dollars, so if you can't afford the new Dragon Age, then you should definitely check out the new Goat Simulator.\r\n\r\nOn the subject of epic RPGs being smashed into a non-role playing game, did you hear about this Final Fantasy 7 thing? A creator named Jamie Colliver gave up the past two years of his life in order to faithfully recreate the entire Final Fantasy 7 experience in LittleBigPlanet 2. Now obviously it isn't a perfect re-creation mechanically, the genres are completely different. But from the aesthetic to its story beats, you can enjoy the game in its entirety, including side missions, across 31 levels. You can also play it in LittleBigPlanet 3 on the PS3, PS4, and Vita which just released today. And for fans who don't own the game, consider popping in on Colliver's YouTube for over a hundred videos documenting his experience and his slow descent into madness. Or at least that what I would imagine spending two years in sack world would be like.\r\n\r\nSpeaking of crazy people, someone out there thinks that G4 is still a channel. Originally closing up shop in 2012, the gaming-centric tech channel was set to be reborn as the Esquire network in 2013. That apparently fell through, but by then, us gamers and much of the G4 staff had all moved on with their lives. So then it went back to playing re-runs of Cops under the name G4 and it was basically 2010 all","player_loc":"https://roosterteeth.com/embed/ff7-in-littlebigplanet-goat-simulator-mmo-g4-is-dead-really-hard-news-111814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a7f5400-564b-4f6d-8bce-b842021d1458/sm/video_thumbnail_12855187-1416349923.jpg","duration":196,"publication_date":"2014-11-18T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/destiny-in-real-life-sort-of","changefreq":"weekly","video":[{"title":"S1:E832 - Destiny in Real Life... Sort Of","description":"An epic battle between good and evil rages on between the ScrewAttack crew. Who will live and who will be kicked in the face after riding a dolphin??\r\n\r\nSUBSCRIBE! http://bit.ly/ScrewAttackSubscribe\r\n\r\nTwitter: http://www.Twitter.com/ScrewAttack\r\nFacebook: http://www.Facebook.com/OfficialSA\r\nGoogle+: http://https://plus.google.com/+ScrewAttack\r\nBusiness Inquiries: https://fullscreen.wufoo.com/forms/business-inquiry/\r\n\r\nDirected, Edited, and VFX by John Francis McCullagh\r\nGraphics by Kat Goodloe\r\n\r\nDestiny In Real Life... Sort Of\r\nhttp://www.youtube.com/user/ScrewAttack","player_loc":"https://roosterteeth.com/embed/destiny-in-real-life-sort-of","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f295a688-d378-43fe-bb77-c62c4137ab63/sm/video_thumbnail_12855146-1416325658.jpg","duration":207,"publication_date":"2014-11-18T07:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pikachu-battlepad-game-of-thrones-leak-amiibo-crated-majesco-hurt-hard-news-111714","changefreq":"weekly","video":[{"title":"S1:E767 - Pikachu Battlepad, Game of Thrones Leak, amiibo Crated, Majesco Hurt | Hard News 11/17/14","description":"I’m Sean Hinz and this is Hard News for Monday November 17th, 2014\r\n\r\nThe actual details for the three exclusive amiibo crates from the Nintendo & Loot Crate partnership arrived over the weekend. It isn’t as great of a deal as fans would have hoped, but there are some perks to using the program. Three payments of $55 will get these delivered straight to your door over the next six weeks. The first crate includes Donkey Kong, Mario, Kirby and Pikachu; plus a mini-magazine, sticker, and wristband. Then you have Fox, Yoshi, Peach, and Samus in the second crate; plus another mini-magazine and cinch bag. Finally, the third crate will include Luigi and Zelda, a third mini-magazine and some super rare t-shirt. It’s limited edition type stuff, for nearly $35 more, instead of buying the figurines for $130 individually. Considering they already sold out, I bet Nintendo is more than happy with the decision.\r\n\r\nAnother decision I imagine Nintendo be happy about is the creation of yet another fight pad for the upcoming release of Smash. We know about PDP making four exclusive pads for launch alongside the Wii U fighter, plus the Gamecube adapter coming from the Big N themselves. Now Hori is getting on the hype train with the release of the electric mouse inspired Pikachu themed fight pad. It looks just like the Gamcube-style controller of yester-year and connects through a Wiimote which can also rock a matching cover. It appears this may be a Japanese exclusive for now, but Hori is also selling Mario and Luigi themed fight pads here in the states. There are a number of ways to get your Smash on this holiday season, without having to use that dumbass nunchuck. Thank god for that!\r\n\r\nNot everything about today can be good news though, as Majesco & Midnight City may be in financial trouble. Having long avoided being delisted from the stock exchange, Majesco invested heavily in their indie branch Midnight City this past year, alongside external re-branding. But after losing the Zumba fitness license and underperforming in the ind","player_loc":"https://roosterteeth.com/embed/pikachu-battlepad-game-of-thrones-leak-amiibo-crated-majesco-hurt-hard-news-111714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f2c89ea-7ceb-4ea3-845b-7c84bab3666e/sm/video_thumbnail_12855117-1416269401.jpg","duration":254,"publication_date":"2014-11-17T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-most-abstract-movie-reference-on-the-internet","changefreq":"weekly","video":[{"title":"S1:E831 - The most abstract movie reference on the internet","description":"When Shaun suggested this for the finale of the Destiny Video, he was shocked when John replied, \"yes.\"","player_loc":"https://roosterteeth.com/embed/the-most-abstract-movie-reference-on-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25b876dd-6919-4619-bc9b-e197c09a1a8c/sm/video_thumbnail_12855115-1416267519.jpg","duration":18,"publication_date":"2014-11-17T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-kim-vs-juri-king-of-fighters-vs-street-fighter","changefreq":"weekly","video":[{"title":"S1:E7 - One Minute Melee - Kim vs Juri (King of Fighters vs Street Fighter)","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!! Who would win in a fight between King of Fighter's Kim Kaphwan and Street Fighter's Juri Han? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-kim-vs-juri-king-of-fighters-vs-street-fighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebbc876e-8e0b-4157-b523-5710f6c363ff/sm/video_thumbnail_12855082-1416240174.jpg","duration":133,"publication_date":"2014-11-17T08:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-rise-of-foxitron-dc-universe-online-pt-1","changefreq":"weekly","video":[{"title":"S1:E829 - The Rise of FOXITRON! | DC Universe Online Pt 1","description":"Sony Online Entertainment set us up with a chance to check out DC Universe Online next gen style. What's the first thing you have to do in an MMO? Make a character!\r\n\r\nWant to check out DC Universe Online for yourself? Go for it!\r\nhttps://www.dcuniverseonline.com/home?cid=1066045","player_loc":"https://roosterteeth.com/embed/the-rise-of-foxitron-dc-universe-online-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbc9eb9c-42d0-4a88-b310-f140cb1ae522/sm/video_thumbnail_12855035-1416164297.jpg","duration":670,"publication_date":"2014-11-16T10:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nicks-day-of-hell","changefreq":"weekly","video":[{"title":"S1:E828 - Nick's Day of HELL","description":"We realized that Nick hadn't paid up on a number of his previous debts for losing various competitions so the team thought he should pay them all up in one day...","player_loc":"https://roosterteeth.com/embed/nicks-day-of-hell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47a2494f-d1f5-4a9c-a91a-4fb4478d2834/sm/video_thumbnail_12854901-1415956773.jpg","duration":509,"publication_date":"2014-11-14T01:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-kart-8-zelda-dlc-new-mercedes-mario-ads-useless-ps-vita-peripheral-hard-news-111314","changefreq":"weekly","video":[{"title":"S1:E766 - Mario Kart 8 Zelda DLC, new Mercedes Mario ads, useless PS Vita peripheral | Hard News 11/13/14","description":"I’m Sean Hinz and this is Hard New for Thursday November 13th, 2014.\r\n\r\n \r\n\r\nMembers of EA Access are having a very good day, because Dragon Age: Inquisition is arriving a bit early, in the form of a trial. Subscribers to the Xbox One exclusive service is delivering on its promises with access to the first six hours of this massive RPG, a whole five days before release. Progress will carry over to the main game, so EA is kind of like your pusher, who for $5 per month, will get you hooked on all the latest EA properties. Sounds like Inquisition might just be the perfect drug.\r\n\r\n \r\n\r\nSpeaking of addictions, Mario Kart 8 has dropped its first chunk of DLC for all of you fuel heads out there. It’s sort of a landmark event for the franchise by not only offering up additional courses, karts, and characters; but featuring crossover content from franchises like The Legend of Zelda and Excitebike. An update will accompany the DLC, adding amiibo support and unlocking the on-disc DLC racing suits for your Miis. In other Mario Kart news, unrelated to the DLC, Nintendo of Japan and Mercedes again teamed up to make a couple more of those bizarre commercials for the GLA. This time featuring Princess Peach and a poppin’ and lockin’ Luigi. The commercials don’t really make we want to buy a car, but they do make me want to move to Japan. What a kooky place…\r\n\r\n \r\n\r\nIn more offbeat ideas from the land of the rising sun, a Japanese developer is taking a crack at making a peripheral for Sony’s recently released PlayStation TV. The incredibly small device is getting a rather large docking station called the DekaVita 7, that essentially turns your microconsole into a PlayStation Vita. It adds analog nubs, a 7-inch screen without touch support, and costs about $230. Making it the least useful portable in the history of hardware considering that the Vita already exists and has more features. While I am sure it is completely functional, it still begs the question, why?????\r\n\r\n \r\n\r\nWhile that offbeat product was coming from a third-party,","player_loc":"https://roosterteeth.com/embed/mario-kart-8-zelda-dlc-new-mercedes-mario-ads-useless-ps-vita-peripheral-hard-news-111314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1f0ac7e-c6a3-465e-a20b-e8092f80e6d9/sm/video_thumbnail_12854887-1415934751.jpg","duration":211,"publication_date":"2014-11-13T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ac-unity-glitches-hurt-stock-sonic-boom-dance-party-game-of-thrones-details-hard-news-111214","changefreq":"weekly","video":[{"title":"S1:E765 - AC Unity Glitches Hurt Stock, Sonic Boom Dance Party, Game of Thrones Details | Hard News 11/12/14","description":"I’m Sean Hinz and this is Hard News for Wednesday November 12th, 2014\r\n\r\nReally quick, Bloodborne has been delayed into March of 2015 because of Alpha feedback. That pushes out the launch to the 24th, roughly a month later. :-(\r\n\r\nGood Old Games is having a massive sale today in celebration of the Fall season and that means deep discounts on DRM-free games. Most are half-price, while some have dropped by nearly 90%! That’s not all, because there are two ways to get yourself some free games as well. For the next 48 hours you can get Mount and Blade for free just by logging into GOG. And if one free game isn’t enough, you can go a click a Witcher 2 banner once for seven days, anytime over the next two weeks and you’ll get a free copy of that game, plus a movie called The Gamers. Thanks PC master race!\r\n\r\nOnto more great gaming news, Game of Thrones Ironrath from the adventure game masters over at Telltale has finally had some more information revealed regarding its 2014 launch. Episode one should release before the end of the year on Xbox 360, PS3, and PC; with the additional platforms like PS4, Xbox One, Mac, and iOS coming later. The story will focus in the north of Westeros and players will be jumping into the boots of five members of the House Forrester. They are keepers of the Wolfswood, a forest of ironwood trees which fall under the banner of house Stark. You’ll still travel to iconic locations like the Kings Landing and The Wall, but much of the story will play out between House Forrester and their rivals, House Whitewall. The first episode’s title is based on the Forrester House motto, Iron from Ice. No word on an official release, which is discouraging considering there are six weeks left in the year… I blame George RR Martin for the delay. GIVE ME BOOK SIX YOU BULBOUS BASTARD!\r\n\r\nAs a palate cleanse from my justifiable rage, let’s check out the dance party going on right now at Amy Rose’s house.\r\n\r\nUploaded by Cyberman65, What you just witnessed was the reward for collecting all the Badges from Sonic Boo","player_loc":"https://roosterteeth.com/embed/ac-unity-glitches-hurt-stock-sonic-boom-dance-party-game-of-thrones-details-hard-news-111214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa12e8df-ec8d-40b7-8fec-5430f6e0dff8/sm/video_thumbnail_12854731-1415833225.jpg","duration":264,"publication_date":"2014-11-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-road-again-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E164 - On the Road Again | SideScrollers","description":"SideScrollers is coming to you this week from Los Angeles! The guys have lodged themselves into Fullscreen's HQ to talk the big news from Blizzcon, what's up with Rooster Teeth, and regale us with stories from their time on the road.\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/on-the-road-again-sidescrollers\r\n\r\nHave a Newsdesk story? Send it to Sam sam@screwattack.com\r\n\r\nHave a Birthday challenge pic? Send it to Bryan Bryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/on-the-road-again-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e47c5fa7-6f1f-4d50-af23-aa4302307182/sm/video_thumbnail_12854584-1415670460.jpg","duration":3547,"publication_date":"2014-11-11T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-grim-fandango","changefreq":"weekly","video":[{"title":"S1:E15 - FIVE FUN FACTS About Grim Fandango","description":"Think you know everything about this cult classic? Chances are you don't!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-grim-fandango","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c9b015c-a108-45c3-9ce9-f87ff4f99329/sm/video_thumbnail_12854656-1415774174.jpg","duration":268,"publication_date":"2014-11-11T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/just-cause-3-revealed-amiibo-round-3-master-chief-multiplayer-woes-hard-news-111114","changefreq":"weekly","video":[{"title":"S1:E764 - Just Cause 3 Revealed, Amiibo Round 3, Master Chief Multiplayer Woes | Hard News 11/11/14","description":"I’m Sean Hinz and this is Hard News for Tuesday November 11th, 2014.\r\n\r\nThe Master Chief Collection released today and not everything is well in the Halo universe. Unfortunately many gamers are experiencing various matchmaking issues at launch. While it isn’t affecting everyone, many regions have seen extremely long search times and the inability to get into a game. 343i has already issued a patch and they’re working hard to make sure players are having the best experience at launch. A PR rep says \"Matching times will improve as we continue to roll out. If you do not find a match after a few minutes, please restart your search.” A process that may seem cumbersome for many who were under the impression that Microsoft’s cloud-based Azure platform would make for a smooth launch. I just like to imagine logging on and playing Halo 2 with friendos is like having a hard poo. The first 15 minutes might be painful, but once you’ve defeated the corn filled monstrosity, no victory feels grander.\r\n\r\nOnto better news, Nintendo has already confirmed the launch of the next wave of amiibo following the Loot Crate partnership we discussed yesterday. Scheduled for a release window in February of 2015, Nintendo will bring an additional 11 figurines to the toy lineup, making for a total 27 toys in the pipeline. The newest members include; Toon Link, Sheik, Ike, Shulk, Lucario, Meta Knight, King Dee Dee Dee, Rosalina, Bowser, Sonic and Mega Man. With characters like Sonic and Mega Man in the mix, I feel it is pretty clear the third party support Nintendo might be looking for in the future. Let’s just hope the next games in those respective franchises are also fun to play. I’m looking at you Sonic Boom.\r\n\r\nOne issue we weren’t aware of is the limited functionality of these amiibo. As observed by CVG on the Japanese amiibo page, the official description says an amiibo may only store data for a single game at a time. That won’t affect Mario Kart or Hyrule Warriors since you’re basically unlocking content using an amiibo, but as more gam","player_loc":"https://roosterteeth.com/embed/just-cause-3-revealed-amiibo-round-3-master-chief-multiplayer-woes-hard-news-111114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9d0034b-6a69-41ba-9cd2-f901191fcfcc/sm/video_thumbnail_12854641-1415758927.jpg","duration":235,"publication_date":"2014-11-11T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/loot-crate-amiibo-blizzcon-recap-geoff-keighley-game-awards-hard-news-111014","changefreq":"weekly","video":[{"title":"S1:E763 - Loot Crate amiibo, BlizzCon Recap, Geoff Keighley Game Awards | Hard News 11/10/14","description":"I’m Sean Hinz and this is Hard News for Monday November 10th, 2014.\r\n\r\nWe have a ton of news to cover today, so let’s rapid fire through all the highlights from BlizzCon this past weekend. As many of you have already heard, Blizzard announced its newest IP, Overwatch. It looks to be a team-based first-person shooter, a la Team Fortress or even Gearbox’s new IP Battleborn. While the highly cinematic announcement trailer is gorgeous, you should be most excited about the gameplay trailer, which somehow manages to capture the iconic art style and also offer a wide variety of combat options. It should be noted the scuttle butt is this game emerged from the remains of the cancelled MMO Titan, and I look forward to more details.\r\n\r\nOther quick news bits from the event include the launch of the first expansion for Hearthstone. Goblins vs. Gnomes should arrive next month with over 120 new cards and the long requested spectator mode. Heroes of the Storm’s newest Hero was revealed to be the Blizzard classic Lost Vikings, but with the gameplay split between three controllable avatars it won’t necessarily be for all players. But who cares, because their ultimate ability has you fording a lane in a badass longship. It’ll be the perfect viking funeral for your foes. And lastly, we received the tiniest snippet of information regarding the final expansion for Starcraft 2. New units, modes and even a beta is incoming, but the best news is that this will be a stand-alone release. Noobs are encouraged to jump right for the grand finale. Blizzard probably just didn’t want to have to sell you a game that is over five years old to simply play an expansion. Just like they don’t really care if you grind to 90 in WoW either.\r\n\r\nEnough Starcrafts and Blizzards, let’s move onto some news regarding Nintendo’s upcoming toy line of amiibo. As the “Big N” announced this morning, it will be teaming up with Loot Crate to offer up an amiibo distribution service by mail. The 10 included amiibo are all pre-selected and will be delivered in three car","player_loc":"https://roosterteeth.com/embed/loot-crate-amiibo-blizzcon-recap-geoff-keighley-game-awards-hard-news-111014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a700f0f6-3015-4e13-a8d5-2ede9001825a/sm/video_thumbnail_12854576-1415665127.jpg","duration":291,"publication_date":"2014-11-10T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/doritos-do-the-dew-cod-wont-share-play-battle-fest-is-back-bro-news-11714","changefreq":"weekly","video":[{"title":"S1:E762 - Doritos Do the Dew, CoD Won't Share Play, Battle Fest is Back! | Bro News 11/7/14","description":"I’m Sean Hinz and this is Hard News for Friday November 7th, 2014.\r\n\r\nMetro 2033 is free on Humble Bundle today, just login to the link in the description and get your copy. You’ll need it because the rest of today’s news sucks! With all the Call of Duty fanfare happening around the Internet, news is dominated by bullshit, so we’re gonna bro out and hit some of the biggest piles of shit around the Internet.\r\n\r\nDICE has managed to cram parts of Battlefield 4 onto your mobile device using Apple’s new low-level graphics API Metal. Now this isn’t the full game by any means, but more just a tech demo to test the potential of using DICE’s Frostbite engine on mobile devices. Kristoffer Benjaminsson from the Stockholm office says “Even though we have much room for performance improvements on our end, we’re pleasantly surprised of the performance we’re getting from the hardware.” And I guess this would help them to catch up with Unreal which has been supporting mobile for a few years now. To celebrate Battlefield 4’s annual Battle Fest, they’ve also created a Game Time offer which will give players a 168 hour trial on EA’s Origin platform for PC. The timer won’t start until the game launches and EA would really like you to stop playing so much Call of Duty right now.\r\n\r\nSpeaking of Call of Duty, the latest installment in the franchise has decided not to support the PS4’s latest feature Share Play. Normally guests would be able to join a local multiplayer session and get into some Kill Confirmed, but not in the case of Advanced Warfare. So what gives? Well and Activision rep let everyone know that they didn’t have time to test the feature leading up to the game’s release and they’re “focused on launching Advanced Warfare and ensuring that people have a great time playing it”. But once they get a chance to put the new feature through its paces, they will make a decision on whether or not to support it. Sony also chimed in to remind everyone that “the option is available to developers to disable the feature according to what","player_loc":"https://roosterteeth.com/embed/doritos-do-the-dew-cod-wont-share-play-battle-fest-is-back-bro-news-11714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1914c3a4-713b-49e6-a404-16430ca3403e/sm/video_thumbnail_12854389-1415396698.jpg","duration":251,"publication_date":"2014-11-07T13:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/majoras-mask-amiibo-mario-kart-and-duck-hunt-in-this-nintendo-direct-special-hard-news-11614","changefreq":"weekly","video":[{"title":"S1:E761 - Majora's Mask, amiibo Mario Kart, and Duck Hunt in this Nintendo Direct Special! | Hard News 11/6/14","description":"I’m Sean Hinz and this is Hard News for Thursday November 6th, 2014.\r\n\r\nYesterday Nintendo held a Nintendo Direct, which showcased ALL the software we have to look forward to, until they become a healthcare provider. First let’s talk 3DS! Nintendo did it big out the gate by showcasing the remastered version of The Legend of Zelda: Majora’s Mask 3D. They expect it should launch next Spring. The Fire Emblem guys are working on a turned-based strategy game Codenamed: Steam. No, that’s the name, it isn’t a codename… That’s the actual… Whatever. It has robo-Lincoln, so just go buy it. Monster Hunter 4 introduces Mario and Luigi DLC for your Felynes. No wonder this game won’t be making its way to Vita, between Samus and the iconic plumbers, Nintendo is all up in this shit! Just more fun fan service for the 3DS exclusive. Oh and don’t forget to scoop up Ultimate NES Remix on December 5th. It should be perfect for pick up and play handheld sessions.\r\n\r\nNow we’re going to deviate for a second while I consider the upcoming release of amiibos. These little figurines are launching soon and for the first time we can understand what they’re going to do in software other than Smash. Amiibos on Mario Kart 8 will unlock said amiibo’s costume for your Mii in-game. So it’s kind of like you get to wear your amiibo’s skin like a suit. There are a dozen compatible amiibos right now and I bet the add Villager with the Mario Kart DLC in 2015.  For Hyrule Warriors all amiibos are compatible and will give you items or rupies, BUT in the case of Link you get a new weapon, the Spinner from Twilight Princess. Then an additional game was added to the amiibo compatibility list with Kirby and the Rainbow Curse. But we don’t know how it will work inside the game itself. Maybe they’ll  let you ditch all those Waddle-Dee’s for a cool character. Add three other games becoming compatible in 2015, it seems like I might have to get one or two this Holiday Season. GG Nintendo.\r\n\r\nFinally we finish with the Wii U. Duck Hunt dog was confirmed for Super ","player_loc":"https://roosterteeth.com/embed/majoras-mask-amiibo-mario-kart-and-duck-hunt-in-this-nintendo-direct-special-hard-news-11614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8c61d57-01a4-4996-8bc4-e24c6d45d03c/sm/video_thumbnail_12854302-1415297571.jpg","duration":246,"publication_date":"2014-11-06T10:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-corsair-gaming-unboxing-video-ever-made-ever","changefreq":"weekly","video":[{"title":"S1:E827 - The Best Corsair Gaming Unboxing Video Ever Made...EVER ","description":"Craig is back with another one of his famous unboxing videos. When we will stop letting him do this??","player_loc":"https://roosterteeth.com/embed/the-best-corsair-gaming-unboxing-video-ever-made-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc8f7df3-21f9-4316-b2c7-d7793096ee14/sm/video_thumbnail_12854296-1415294806.jpg","duration":197,"publication_date":"2014-11-06T09:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-110514","changefreq":"weekly","video":[{"title":"S1:E826 - SideScrollers Extended Cut 11/05/14","description":"S1:E826 - SideScrollers Extended Cut 11/05/14","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-110514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81f83ab0-5109-448c-b326-b6d82c20626f/sm/video_thumbnail_12854255-1415228158.jpg","duration":577,"publication_date":"2014-11-05T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/just-cause-3-f2p-dawngate-axed-lol-champion-killzone-10th-anniversary-hard-news-11514","changefreq":"weekly","video":[{"title":"S1:E760 - Just Cause 3 F2P, Dawngate Axed & LoL Champion, Killzone 10th Anniversary | Hard News 11/5/14","description":"I’m Sean Hinz and this is Hard News for Wednesday October 5th, 2014.\r\n\r\nYet another MOBA  has bit the dust, this one from Electronic Arts. Dawngate was supposed to be the EA answer to League, but after an 18-month beta, the publisher has pulled the plug on the project. The group’s general manager Matt Bromberg posted on EA’s blog that like all projects, EA went in with “great hopes and expectations… but beta testing is about learning and improving, and ultimately, about making difficult decisions.\" And frankly, its just been awhile since we killed something with our own hands. Oh sorry, I added that last part. If you’d spent money while participating in the Beta, you’re an idiot, but EA will be issuing refunds. We’d seen Dawngate before, but it never peaked piqued our interest much. Maybe Blizzard’s Heroes of the Storm can shake up the powerhouses that are DOTA 2 and League of Legends. In More MOBA news, Riot has finally revealed their latest champion named Kalista. She’s a marksman type who binds with an allied champion and supports them with a variety of offensive abilities. Here’s Sam, our resident League expert to lend his thoughts.\r\n\r\nThanks Sam!\r\n\r\nNow if you couldn’t care less about something in video games, how’s about the upcoming 10th anniversary of Killzone? A franchise known as that Playstation shooter who tries really hard, has still managed to produce six games across five platforms of various quality. The ongoing war between th ISA and Helghast is getting a massive DLC bump over the next month in celebration, in addition to the Season Pass DLC that just came out. You will find new multiplayer skins, skins for your OWL, voice packs, player cards, and new crosshairs. Oh goody… Then there are three multiplayer maps, one for PVP, two for co-op. Still not convinced this is a true 10 year anniversary, how about an art show, tournaments, livestreams, and free shit on social media?! I guess it isn’t a remastered collection of the original trilogy for next gen consoles, but we can’t all be Halo now can we? ","player_loc":"https://roosterteeth.com/embed/just-cause-3-f2p-dawngate-axed-lol-champion-killzone-10th-anniversary-hard-news-11514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5f81626-971b-4f2a-aa85-1ac6ff55116e/sm/video_thumbnail_12854250-1415222480.jpg","duration":261,"publication_date":"2014-11-05T13:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fear-the-deer-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E163 - Fear the Deer! | SideScrollers","description":"This time on SideScrollers, November is a big time for big games, so the guys are looking at the present and the past's hottest titles. They've left the Middle Segment up to Bryan, will they regret it? Plus, Sams got a full slate of weirdness on the Newsdesk and we've got a ton of Halloween birthday challenge photos!\r\n\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/fear-the-deer-sidescrollers\r\n\r\nSend Newsdesk stories to Sam! Sam@ScrewAttack.com\r\nSend B-Day photos to Bryan! Bryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/fear-the-deer-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18e6fe23-5cec-473e-93eb-fd512bb21031/sm/video_thumbnail_12854180-1415145607.jpg","duration":4506,"publication_date":"2014-11-05T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/destiny-cheers-jeers-luigis-mansion-arcade-hearthstone-ban-hammer-hard-news-11414","changefreq":"weekly","video":[{"title":"S1:E759 - Destiny Cheers & Jeers, Luigi's Mansion Arcade, Hearthstone Ban Hammer | Hard News 11/4/14","description":"I’m Sean Hinz and this is Hard News for Tuesday November 4th, 2014.\r\n\r\nBungie continues to have trouble wrangling the beast that is Destiny with more event woes. After a lackluster initial Iron Banner, the dev has planned an updated version of the PVP event that would deliver on its promises. Somehow late last night, someone must have flipped the wrong switch when pushing out the Tuesday refresh and the Iron Banner was live for a few hours. There’s no official comment from Bungie, but the event was pulled while they assumably got their shit together. One good talking point is they did confirm yesterday that not all the previously announced DLC is tied to the Dark Below expansion. Whether or not you purchase the $20 content pack, players will still gain access to new weapons, armor, bounties, and the long sought after five additional bounty slots. But for us hardcore players, that doesn’t mean a damn thing without the new raid, so I guess we have to pony up the cash. Speaking of which, tonight’s raid night and we’re running hard mode! BOOOTTTSSSS!\r\n\r\nWhile we’re on the subject of raiding, Blizzard has dropped the ban hammer on a bunch of bots trying to raid Hearthstone. A bot dev called Crawlerbot designed a bot to grind out wins in the game and climb the leaderboards. A bunch a scamps had been using the service, but all have now been banned and the dev has closed its Hearthstone bot down. In a message to the community on it’s website, Crawlerbot says “the recent ban wave in Hearthstone hit a lot of users. After discussing this with Blizzard, it’s clear we have to take off our services/products now… We are very sad about this but you also know botting is against the rules and we all knew that the day when our products doesn’t work anymore would come. With tears in our eyes we have to say bye.” Sounds like Crawlerbot should have built themselves a Grammarbot amiright?! Hahaha... They don’t know how to English so good.\r\n\r\nAnd lastly, just yesterday I poked fun at the notion arcades were still a thing here in the sta","player_loc":"https://roosterteeth.com/embed/destiny-cheers-jeers-luigis-mansion-arcade-hearthstone-ban-hammer-hard-news-11414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d807d6b-10ab-4f4b-b8d5-d16537e3fc89/sm/video_thumbnail_12854177-1415135649.jpg","duration":232,"publication_date":"2014-11-04T13:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-bros-136-year-ban-the-internet-arcade-korean-esports-money-hard-news-11314","changefreq":"weekly","video":[{"title":"S1:E758 - Smash Bros. 136 Year Ban, The Internet Arcade, Korean eSports Money | Hard News 11/3/14","description":"I?m Sean Hinz and this is Hard News for Monday November 3, 2014.The mid-twenties eSports player should be excited for their potential future as huge financial gains are coming through the news pipeline. First the Korean eSports association has decided to establish a ?minimum salary policy? for Korean pros in the 2015 LoL season. The Korean sports community has similar standards for their traditional sports teams of around $27,000 per year. So I expect once they announce the minimum for League, it will be around $20k. But if you?ve been a pro for a few years and even won a tournament or two, you can make a whole lot more money without even playing in an eSport. Wei Han Dong or CaoMei has been an eSports athlete for the past 5 years and just recently retired at the old-age of 22. But by athletic standards he should have another four years left in him, so why is he bowing out so early? Well according to Portrait magazine, as translated by ongamers, Wei has a contract to become a full-time streamer for $800,000 per year. And the story hints that this is a trend for China?s top eSports athletes, who want out of the rat-race for an easier lifestyle and massive salary. Unfortunately, at the age of 30 I am the Dry-Bones of eSports athletes. Damn my frail old body! Oww...And speaking of old, remember when there were those mystical places known as arcades? They were wedged between the pizza parlor and candy store in your local mall and housed an entire generation of games that today?s youth know nothing of. Well, what if I told you that right now in your browser, you can play over 900 classic arcade games and it won?t cost you a single quarter! The Internet Archive has joined forces with JSMAME to open The Internet Arcade, a browser-based emulator that houses a ton of games from the 1970?s, all the way into the early 90?s. You have classics like Burgertime and Defender, the obscure like Goalie Ghost or Journey, and some more modern titles like Outrun and Street Fighter II. Firefox is the best browser from a performance sta","player_loc":"https://roosterteeth.com/embed/smash-bros-136-year-ban-the-internet-arcade-korean-esports-money-hard-news-11314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28f65993-5f2e-4230-92ff-b38e7fefa120/sm/video_thumbnail_12854121-1415048314.jpg","duration":290,"publication_date":"2014-11-03T12:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/celebrate-alien-xmas-in-october","changefreq":"weekly","video":[{"title":"S1:E825 - Celebrate Alien Xmas in October!","description":"Craig's breaking the Xmas carols early, creep crawly fetishes are discussed, and did pirates fly the jolly roger or jolly rancher?","player_loc":"https://roosterteeth.com/embed/celebrate-alien-xmas-in-october","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff72f71a-99a1-4f21-b9bc-cddf23b76950/sm/video_thumbnail_12853934-1414953924.jpg","duration":164,"publication_date":"2014-11-02T10:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-batman-vs-albert-wesker","changefreq":"weekly","video":[{"title":"S1:E6 - One Minute Melee - Batman vs Albert Wesker","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!! Who would win in a fight between Batman and Resident Evil's Albert Wesker? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-batman-vs-albert-wesker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31f35979-3216-442b-b1c3-45a76dcc1b22/sm/video_thumbnail_12853805-1414858624.jpg","duration":164,"publication_date":"2014-11-01T09:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/call-of-duty-zombie-leak-driveclub-ps-infinite-delay-prey-2-cancelled-hard-news-103114","changefreq":"weekly","video":[{"title":"S1:E757 - Call of Duty Zombie Leak, Driveclub PS+ Infinite Delay, Prey 2 Cancelled | Hard News 10/31/14","description":"I’m Sean Hinz and this is Hard News for Friday October 31st, 2014.\r\n\r\nShuhei Yoshida has decided to drop bombs this Halloween by declaring the PlayStation Plus version of DRIVECLUB is dead on arrival, indefinitely. According to French outlet the issues that led to this decision have very little to do with the servers, but it is in fact an issue in the game’s code itself. Regardless, it won’t make the statement from Yoshida on the DRIVECLUB Facebook page any easier to swallow. “Unfortunately, the time frames required to roll out the fully connected experience will be longer than anticipated and we do not have an exact time frame for when they will be resolved… we will be postponing the release of the PS Plus Edition until further notice.” So fuck you if you bought a PS4 back when this was supposed to be a free launch title. I don’t really understand how the guys who spent years perfecting the Motorstorm franchise could deliver a product that is just so fucking broken. But I am most disappointed by how PlayStation has dealt with all this.\r\n\r\nSpeaking of dealing with poorly developed games, Bethesda has decided to say fuck it all completely and just cancel Prey 2. The open-world space bounty sim was coming to us from Human Head and looked incredible in its 2011 demo. Somehow they figured it just wasn’t worth their time anymore and chose to cancel the project entirely. This isn’t a big surprise as Human Head kind of went apeshit on Bethesda’s parent company ZeniMax back in 2012 because of a shitty contract. Bethesda said the game wasn’t cancelled at that time, but today Pete Hines confirmed to CNET that Prey 2 is in fact done. The Bethesda VP says it “wasn't an easy decision, but it's one that won't surprise many folks”. Still, it is quite a disappointment after such a promising demo. I know the universe of Prey wasn’t something that people remembered fondly, vagina doors, but the Blade Runner like universe of its sequel seemed like a place I wanted to be. I’ll just have to prey...\r\n\r\nAnd finally, Call of Duty had a ","player_loc":"https://roosterteeth.com/embed/call-of-duty-zombie-leak-driveclub-ps-infinite-delay-prey-2-cancelled-hard-news-103114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb9b5983-7dc2-4457-93d1-386ba7148412/sm/video_thumbnail_12853687-1414785054.jpg","duration":220,"publication_date":"2014-10-31T12:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-pumpkin-pie-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E824 - The Pumpkin Pie Eating Challenge","description":"Four minutes. Two pies. One shot at Halloween glory.","player_loc":"https://roosterteeth.com/embed/the-pumpkin-pie-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fb8c67b-95d2-470a-9e97-0871fe6dbee0/sm/video_thumbnail_12853685-1414783968.jpg","duration":304,"publication_date":"2014-10-31T12:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/whipped-cream-punishment","changefreq":"weekly","video":[{"title":"S1:E823 - Whipped Cream Punishment","description":"S1:E823 - Whipped Cream Punishment","player_loc":"https://roosterteeth.com/embed/whipped-cream-punishment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9024377a-dd58-4d16-85d7-42f053e95020/sm/video_thumbnail_12853665-1414772057.jpg","duration":170,"publication_date":"2014-10-31T09:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-13","changefreq":"weekly","video":[{"title":"S2:E13 - Ryu vs Scorpion","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f96399a-b7cc-4bb1-bcdf-d2e8bdada7b1/sm/video_thumbnail_12853493-1414709705.jpg","duration":1003,"publication_date":"2014-10-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gambit-stars-in-the-new-cod-trailer","changefreq":"weekly","video":[{"title":"S1:E822 - Gambit stars in the new CoD trailer!","description":"S1:E822 - Gambit stars in the new CoD trailer!","player_loc":"https://roosterteeth.com/embed/gambit-stars-in-the-new-cod-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52eef903-e265-44ab-88cc-083ba7448301/sm/video_thumbnail_12853500-1414711854.jpg","duration":106,"publication_date":"2014-10-30T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-sound-booth-outtakes","changefreq":"weekly","video":[{"title":"S1:E821 - DEATH BATTLE! Sound Booth Outtakes!","description":"S1:E821 - DEATH BATTLE! Sound Booth Outtakes!","player_loc":"https://roosterteeth.com/embed/death-battle-sound-booth-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/481fdf9e-5c1f-467a-bb12-4919724208ea/sm/video_thumbnail_12853492-1414708830.jpg","duration":388,"publication_date":"2014-10-30T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mighty-no-9-boss-reveal-nintendo-microsoft-get-healthy-valkyria-chronicles-pc-hard-news-103014","changefreq":"weekly","video":[{"title":"S1:E756 - Mighty No. 9 Boss Reveal, Nintendo & Microsoft get Healthy, Valkyria Chronicles PC | Hard News 10/30/14","description":"I’m Sean Hinz and this is Hard News for Thursday October 30, 2014.\r\n\r\nSEGA has been doing a wonderful job lately of bringing some of their “older” games to Steam. Games like Sonic Adventure 2, Nights into Dreams, and a slew of classics. But a long awaited PS3 exclusive has been revealed to be making its way to PC via the SEGA twitter account. Valkyria Chronicles was a turn-based strategy game exclusive to the PS3 that came along really early in the platform’s life cycle. It was a great succes though and for some awful reason it’s sequels were PSP exclusive. Gross! Well it looks like SEGA has finally come back around to the original and announced the game is being ported to PC, with more details to follow. If I had to guess it will make it to Steam and if we’re lucky, we’ll get it before the end of the year. Merry Christmas!\r\n\r\nIn other news, Microsoft and Nintendo are ready to break into the health market. First Microsoft revealed their wearable to compete with Sony, Apple, and my FitBit here. For $200 the little gadget will measure heart rate, sleep, stress, how many calories you burn, and the amount of sun exposure you receive. It collects and stores the data on their cloud-based platform and will even work as a smartdevice that can interact with your phone. But how the hell is Nintendo going to get into this? Well the first thing they did was work with a third-party who knows a thing or two about sleep products called ResMed. From there, they decided that rather than design a wearable, they wanted to put a device in your bedroom that would monitor your sleep and visualize fatigue. The technical name is the QOL sensor, but I like to call it the eye of Sauron, because it will watch how you sleep and record body movement, breathing, heart rate, and probably other things you won’t want to know about. There’s no word on it working in tandem with an existing Nintendo device, but it'll chart behaviors over time and make suggestions on how to be healthier. Like, try not to eat an entire box of pizza pockets before bed","player_loc":"https://roosterteeth.com/embed/mighty-no-9-boss-reveal-nintendo-microsoft-get-healthy-valkyria-chronicles-pc-hard-news-103014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/637302c1-4b31-430d-8084-5cca8e4ed3e5/sm/video_thumbnail_12853444-1414699731.jpg","duration":253,"publication_date":"2014-10-30T13:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/internet-all-stars-challenge-rd-5-kyle-bosman","changefreq":"weekly","video":[{"title":"S1:E820 - Internet All-Stars Challenge Rd. 5: Kyle Bosman","description":"Ben Singer raised the bar in the Internet All-Stars Challenge, and there's only one competitor remaining: Kyle Bosman. Can the man from Gametrailers rise to the occasion and win this competition? Can he channel his inner Thor Aackerlund to take it all?","player_loc":"https://roosterteeth.com/embed/internet-all-stars-challenge-rd-5-kyle-bosman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a78998aa-3962-44c3-8767-525e7cf17a06/sm/video_thumbnail_12853439-1414695272.jpg","duration":316,"publication_date":"2014-10-30T11:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-appears-on-hln-to-talk-about-screwattack","changefreq":"weekly","video":[{"title":"S1:E819 - Craig appears on HLN to talk about ScrewAttack","description":"S1:E819 - Craig appears on HLN to talk about ScrewAttack","player_loc":"https://roosterteeth.com/embed/craig-appears-on-hln-to-talk-about-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0e15e76-e424-4fd1-ba58-4f8433bda424/sm/video_thumbnail_12853433-1414692698.jpg","duration":250,"publication_date":"2014-10-30T11:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-102914","changefreq":"weekly","video":[{"title":"S1:E818 - SideScrollers Extended Cut 10/29/14","description":"The guys carry on in SideScrollers Extended Cut!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-102914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20233e3c-8ab8-475d-9fec-52041c9d7d57/sm/video_thumbnail_12853340-1414615191.jpg","duration":802,"publication_date":"2014-10-29T13:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/destiny-halloween-and-expansion-nintendo-turns-a-profit-dying-light-next-gen-only-hard-news-102914","changefreq":"weekly","video":[{"title":"S1:E755 - Destiny Halloween and Expansion, Nintendo Turns a Profit, Dying Light Next-gen Only | Hard News 10/29/14","description":"I?m Sean Hinz and this is Hard News for Hump Day October 29th, 2014.Warner Brothers Interactive Entertainment and Techland have decided against publishing the upcoming zombie thriller Dying Light on the previous generations of consoles. So Xbox 360 owners and PS3 owners will no longer be getting the open-world zombie parkour they?ve been holding out for. In a Facebook post the company let it be known that they ?have no choice but to leave past-gen systems behind and release Dying Light exclusively on the next-gen consoles and PC. Put simply, older consoles just couldn?t run the game?. I can?t imagine WBIE was happy with the news, but when you look at the concessions being made in games like Shadow of Mordor or WWE 2K15, the experience is certainly diminished by the dated hardware. Unfortunately for Techland, I don?t really think anyone was going to buy a next-gen console to play that game, so their sales probably dropped significantly. OOoooo? Another zombie game! Can?t find those anywhere. Happy Halloween!But while we?re talking about the undead, Destiny is getting in the holiday spirit with a bunch of themed items. The Jackolyte and Flight of Shadows are consumables dropped by the Hive which affect the look of your helm and respawn. All guardians should have a package waiting for them at the postmaster with a few Jackolytes. There?ll also be a new sparrow in one of four colors that features a sweet Guy Fieri paint job and the ability to roll. All these additions came free in a patch, unlike the upcoming expansion. Bungie confirmed today that the first expansion called The Dark Below will arrive on December 9th across all platforms and bring with it a bump in the light level cap, five additional bounty slots, and more gear. From a gameplay perspective there will be three story missions which add to your light, three Crucible maps, a new strike, a second PlayStation exclusive strike, and the long-awaited Raid against Crota featuring the Hive. The expansions are $20 individually or $35 together, with the second ex","player_loc":"https://roosterteeth.com/embed/destiny-halloween-and-expansion-nintendo-turns-a-profit-dying-light-next-gen-only-hard-news-102914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4c1e1a3-de72-4b9a-95a2-88cf694ba0c5/sm/video_thumbnail_12853328-1414611188.jpg","duration":245,"publication_date":"2014-10-29T12:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-clownin-around","changefreq":"weekly","video":[{"title":"S1:E162 - SideScrollers - Clownin' Around","description":"When people talk about professional wrestling, PS4 updates, which eating utensil is superior, and being phat with a PH, that means you're only watching one show. SIDESCROLLERS!\r\n\r\nTake this episode on the go! https://soundcloud.com/screwattack/clownin-around-sidescrollers\r\n\r\nHave a Newdesk suggestion? Send it to Sam! sam@screwattack.com\r\n\r\nDoing the birthday challenge? Send it to Bryan! Bryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-clownin-around","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bd10e09-320e-4c7b-92a8-c3c8e40ba2fa/sm/video_thumbnail_12853252-1414603183.jpg","duration":4980,"publication_date":"2014-10-29T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-5","changefreq":"weekly","video":[{"title":"2016:E5 - The Worst Halloween Ever - #5","description":"Join Barbara Dunkelman, Mica Burton, Ashley Jenkins, and Max Kruemcke for an extra spooky Halloween Edition of Always Open! This week, we talk about our worst halloweens, costume contests, and BLOOD!\r\n\r\n\r\n\r\nThis episode is sponsored by DIFF Eyewear (http://bit.ly/2eHistJ)","player_loc":"https://roosterteeth.com/embed/always-open-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2df82d38-a729-427a-af65-8471e06b1228/sm/2013912-1477525829922-AO5_-_THUMB.jpg","duration":2900,"publication_date":"2016-10-27T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-399-post-show","changefreq":"weekly","video":[{"title":"2016:E41 - Podcast #399 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss sad trip stories, tourists, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-399-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d71f0738-eb77-4e10-8db9-0c7baf361f4d/sm/2013912-1477421006415-rtp399_-_PS_-_THUMB.jpg","duration":1380,"publication_date":"2016-10-26T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-399","changefreq":"weekly","video":[{"title":"2016:E399 - Snot Rockets Around the World - #399","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss Gus’ trip to South Korea, missing flights, cultural differences, and more on this week's RT Podcast! This episode originally aired on October 24, 2016, sponsored by Battlefield 1 (http://bit.ly/2ernU47), Blue Apron (http://cook.ba/29J4MMj), Braintree (http://bit.ly/2aYdvv5)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-399","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fde8bb7b-7172-43bd-b817-baa3c6e00f7e/sm/2013912-1477413712022-rtp399_-_THUMB.jpg","duration":6053,"publication_date":"2016-10-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-billion-dollars-butt","changefreq":"weekly","video":[{"title":"2016:E37 - Billion Dollars Butt","description":"The gang imagines what they would do if they suddenly had a billion dollars. Would they give it away? Would they stuff it down their pants and walk around? Find out!\n\nAudio from Rooster Teeth Podcast #358","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-billion-dollars-butt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9436ffbe-996f-4b53-8a34-aaeac273e243/sm/2013912-1477064858486-rtaa247tn.jpg","duration":63,"publication_date":"2016-10-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-bloopers-butts-and-bombshells","changefreq":"weekly","video":[{"title":"S7:E30 - Bloopers, Butts, and Bombshells","description":"We're all professionals.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-bloopers-butts-and-bombshells","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3294ba2-c361-4d97-98cc-63f3d89fd405/sm/2013912-1477090903857-ShortsBloopers_04b.png","duration":145,"publication_date":"2016-10-23T16:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-miles-is-a-gentleman","changefreq":"weekly","video":[{"title":"S7:E29 - Miles is a Gentleman","description":"Is chivalry dead?","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-miles-is-a-gentleman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a013131b-c414-4190-b64f-9e0a1c03042a/sm/2013912-1477064571064-GentlemanShort_01b.png","duration":148,"publication_date":"2016-10-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-71","changefreq":"weekly","video":[{"title":"S7:E3 - For The Win #71","description":"This week, all the boys whip out their \"belts\" and compare \"sizes\" to see whose is the \"biggest.\" Next week, hopefully I'll learn what quotation marks are for.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68b41b0a-8690-44b6-94b0-eb57957ca016/sm/2013912-1477081400740-ots_71ftw_thumb.jpg","duration":1290,"publication_date":"2016-10-22T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-volume-4-volume-4-chapter-1-shu39d","changefreq":"weekly","video":[{"title":"V4:E1 - Volume 4, Chapter 1: The Next Step","description":"It's been several months since the Fall of Beacon, and the world of Remnant is still recovering. Tensions are high, lives have been lost, and the members of Team RWBY... are divided. Each of our heroines now faces a journey of their own. While some must search inward if they ever hope to move on, others will venture out into the world in search of answers. Alongside the remaining members of Team JNPR, Ruby Rose has begun the long trek to the kingdom of Mistral, but the road ahead is full of surprises. New friends and enemies await, while the threat of an even larger catastrophe draws near.","player_loc":"https://roosterteeth.com/embed/rwby-volume-4-volume-4-chapter-1-shu39d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32916b58-5434-4f83-a740-45f99e41eb12/sm/1769531-1477143944535-RWBY_THUMB_Ch01.png","duration":1191,"publication_date":"2016-10-22T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-1","changefreq":"weekly","video":[{"title":"2016:E1 - Fan Service is Back! - #01","description":"Join Gray Haddock, Kerry Shawcross, Miles Luna, and Yssa Badiola as they discuss Summer 2016 Anime, Re: Zero, their Anime Book Club, and more on this week's Fan Service.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode originally aired October 21, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88d2abbd-c7d7-4526-ad9f-94252d13c253/sm/2037887-1477141746310-fanservice_thumb_001.png","duration":4364,"publication_date":"2016-10-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-71","changefreq":"weekly","video":[{"title":"S7:E71 - Nasty Hombres - #71","description":"Some days you wake up and you're in a good mood. Some days you wake up feeling rotten. And some days you a straight up nasty hombre. Guess what today is? This episode originally aired October 20, 2016 and is sponsored by Battlefield 1 (http://bit.ly/2ernU47) and Dollar Shave Club (http://bit.ly/2ermjer)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57c22bec-d27d-47fe-8ea0-f27b1d1de50f/sm/2013912-1477079343183-ots_71_thumb.jpg","duration":3050,"publication_date":"2016-10-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-4","changefreq":"weekly","video":[{"title":"2016:E4 - Still Open #4","description":"We’re still open for you, FIRST members! Join us for this episode of Still Open, where Barbara Dunkelman, Jessy Hodges, Nick Rutherford, and Chris Demarais discuss the worst advice they’ve ever been given.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30f0bc9b-8a0b-4351-88b6-b476d92a4d87/sm/2013912-1476984657551-AO4_-_PS_-_THUMB.jpg","duration":775,"publication_date":"2016-10-21T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-animation-dance-class","changefreq":"weekly","video":[{"title":"2016:E25 - Animation Dance Class","description":"Members of the RT Animation team put their dancing abilities to the test while attending a dance class for their fellow animator Yssa's birthday.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-animation-dance-class","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17a69000-197a-47b0-98dd-35725ede716d/sm/2013912-1476983475229-RTLifeDance_01b.png","duration":166,"publication_date":"2016-10-20T17:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-october-20-2016-cannes-chicago-meetup-and-new-animation-office","changefreq":"weekly","video":[{"title":"2016:E19 - October 20, 2016: Cannes, Chicago Meetup, and New Animation Office","description":"Join Burnie for a behind the scenes look at his trip to Cannes, France for MIPCOM, which led to an impromptu Chicago pizza meetup on his way home. Plus a bonus preview of the new RT Animation office!","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-october-20-2016-cannes-chicago-meetup-and-new-animation-office","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/034343c6-467b-4d2e-8315-42b55f6c3b77/sm/2013912-1476978174139-vlog_thumb_10-20-16.jpg","duration":888,"publication_date":"2016-10-20T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-my-first-crush-4","changefreq":"weekly","video":[{"title":"2016:E4 - My First Crush - #4","description":"Join Barbara Dunkelman, Chris Demarais, and special guests Nick Rutherford and Jessy Hodges as they discuss bad dreams, crushes, and going to college.\n\n\n\n\n\nThis episode is sponsored by Crunchy Roll (http://bit.ly/2dpCuNF)","player_loc":"https://roosterteeth.com/embed/always-open-2016-my-first-crush-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4de99d1d-cc01-431c-92b8-61029ae860f9/sm/2013912-1476909447301-AO4_-_THUMB.jpg","duration":2571,"publication_date":"2016-10-20T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-398-post-show","changefreq":"weekly","video":[{"title":"2016:E40 - Podcast #398 Post Show","description":"Join Blaine Gibson, Chris Demarais, Miles Luna, and Barbara Dunkelman as they discuss bad dates, secret stories, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-398-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02b101ea-fa02-435e-af34-b04b43859322/sm/2013912-1476808809652-rtp398_-_PS_-_THUMB.jpg","duration":1302,"publication_date":"2016-10-19T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-398","changefreq":"weekly","video":[{"title":"2016:E398 - The Spooky Hand Towel - #398","description":"Join Blaine Gibson, Chris Demarais, Miles Luna, and Barbara Dunkelman as they discuss drinking excessively, pranks, sex in strange places, and more on this week's RT Podcast! This episode originally aired on October 17, 2016, sponsored by NatureBox (http://bit.ly/2ep8Dkq), Ring (http://bit.ly/2efWrSG), Squarespace (http://bit.ly/1w4FOLf)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-398","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bcc720f-910e-4f0a-8ad8-65ce20a53ffd/sm/2013912-1476808625603-rtp398_-_THUMB.jpg","duration":5978,"publication_date":"2016-10-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-the-edamame-power-play","changefreq":"weekly","video":[{"title":"2016:E36 - The Edamame Power Play","description":"Burnie and Matt go on a business lunch with a guy, who, for some unknown reason, starts eating edamame husks out of the discard bowl. Maybe it's some kind of power play? I dunno, but it would gross me out, that's for sure.\n\nAudio from Rooster Teeth Podcast #367","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-the-edamame-power-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bb5ba66-3d48-40cc-aff3-a9323b9f4f26/sm/2013912-1476716686007-rtaa246tn.jpg","duration":98,"publication_date":"2016-10-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crunch-time-season-1-chapter-6-the-morgua","changefreq":"weekly","video":[{"title":"S1:E6 - Chapter 6 - The Moruga","description":"Time’s up. Party’s over. Truth finally comes to light.","player_loc":"https://roosterteeth.com/embed/crunch-time-season-1-chapter-6-the-morgua","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bfa09f1-d81e-4bfa-942b-fff5695d9ff7/sm/2013912-1476460896597-CT_e06_01b_1.png","duration":1678,"publication_date":"2016-10-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-24","changefreq":"weekly","video":[{"title":"S14:E24 - Episode 24: Red vs. Blue vs. Rooster Teeth","description":" After years travelling the galaxy and going on all sorts of adventures, it's finally time for the Reds and Blues... to meet their makers.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df98be34-1a93-44d0-8030-df731567f619/sm/1769531-1476587191296-RvB_EP_024v04.png","duration":1704,"publication_date":"2016-10-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-70","changefreq":"weekly","video":[{"title":"S7:E2 - For the Win #70","description":" I honestly didn't think Nick could make a tiny glass dildo any weirder. But that's the thing about Nick, he is not to be underestimated.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55805083-e23a-4851-a286-c7abe9131608/sm/690915-1476484003850-ots_70_PS_thumb.jpg","duration":609,"publication_date":"2016-10-15T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-24","changefreq":"weekly","video":[{"title":"S1:E24 - Episode 24 - The One with a Laugh Track","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI! ","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90fbbb0e-2f2f-41dc-a0ab-72f0987dbe24/sm/1769531-1476495586684-RWBY_CHIBI_THUMBNAIL_EPISODE_024v02.png","duration":354,"publication_date":"2016-10-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-70","changefreq":"weekly","video":[{"title":"S7:E70 - The Anti-Shocker #70","description":"This episode is all about learning new things. How to ruin weddings. How to ruin school assemblies. How to ruin the nerve endings in your hands due to electric shock.\n\nThis episode originally aired October 13, 2016 and is sponsored by Kit Kat (http://bit.ly/2dT6sKb) and MVMT Watches (http://bit.ly/28SayyH)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13217b00-6a6a-4066-bcbc-983bbd54d67f/sm/2013912-1476462065524-ots_70_thumb.jpg","duration":2022,"publication_date":"2016-10-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-october-14-2016-mondays-at-rooster-teeth","changefreq":"weekly","video":[{"title":"2016:E18 - October 14, 2016: Mondays at Rooster Teeth","description":"Ever wondered what a workday looks like at Rooster Teeth? Join Burnie for a peek into a typical Monday.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-october-14-2016-mondays-at-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3a26a65-0726-449f-9d64-eafa27d6c6a0/sm/2013912-1476463179333-vlog_thumb_10-14-16.jpg","duration":806,"publication_date":"2016-10-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-3","changefreq":"weekly","video":[{"title":"2016:E3 - Still Open #3","description":"We’re still open for you, FIRST members! Join us for this episode of Still Open, where Barbara Dunkelman, Jessica Vasami, Jon Risinger, and Mariel Salcedo discuss the first concert they ever went to.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/365131dc-a7e4-4bf7-a9ca-d8f9d80d241e/sm/2013912-1476378110230-AO3_-_PS_-_THUMB.jpg","duration":963,"publication_date":"2016-10-14T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-the-warthog-flip-behind-the-scenes","changefreq":"weekly","video":[{"title":"S4:E2 - The Warthog Flip - Behind The Scenes","description":"What does it take to flip up a warthog? Then blow it up? Find out how the crew pulls off one of the biggest episodes of Immersion ever.","player_loc":"https://roosterteeth.com/embed/immersion-season-4-the-warthog-flip-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/132397be-52fb-4597-ba34-a3ebc0211a00/sm/2013912-1476312526893-WarthogThumbBTS_04.png","duration":480,"publication_date":"2016-10-13T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-spartan-struggles","changefreq":"weekly","video":[{"title":"2016:E24 - Spartan Struggles","description":"Once again, Miles must endure the Halo Spartan outfit he loves and adores. It loves you, too, Miles.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-spartan-struggles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b22d7066-0025-441e-8646-c2c064a832a3/sm/2013912-1476372137527-RTLifeMilesThumb_02b.png","duration":159,"publication_date":"2016-10-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-3","changefreq":"weekly","video":[{"title":"2016:E3 - What’s Up with the Clowns? - #3","description":"Join Barbara Dunkelman, Jessica Vasami, Jon Risinger, and Mariel Salcedo as they discuss clown scares, spooky situations, and how to get rejected.","player_loc":"https://roosterteeth.com/embed/always-open-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2e7a26f-1dd4-4165-89a6-9b4498fb0702/sm/2013912-1476304040844-AO3_-_THUMB.jpg","duration":3683,"publication_date":"2016-10-13T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-397-post-show","changefreq":"weekly","video":[{"title":"2016:E39 - Podcast #397 Post Show","description":"Join Michael Jones, Gavin Free, Ashley Jenkins, and Burnie Burns as they discuss sexism, fan interactions, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-397-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55f82b1b-d400-4e6c-8a63-8e46927f11fc/sm/2013912-1476214398466-rtp397_-_PS_-_THUMB.jpg","duration":1977,"publication_date":"2016-10-12T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-driving-mr-burnie-397","changefreq":"weekly","video":[{"title":"2016:E397 - Driving Mr. Burnie - #397","description":"Join Michael Jones, Gavin Free, Ashley Jenkins, and Burnie Burns as they discuss driving dynamics, relationship stories, phone problems, and more on this week's RT Podcast! This episode originally aired on October 11, 2016, sponsored by Blue Apron (http://cook.ba/2dXsUgf), Harry’s (http://bit.ly/2bVnSTt), Trunk Club (http://bit.ly/2dH4Ijm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-driving-mr-burnie-397","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4638a27-1283-4193-b0e2-98f22bd6d282/sm/2013912-1476201396015-rtp397_-_THUMB.jpg","duration":6045,"publication_date":"2016-10-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-gavin-s-seed-saves-the-day","changefreq":"weekly","video":[{"title":"2016:E35 - Gavin's Seed Saves the Day","description":"In one of the more peculiar \"what if\" scenarios, Geoff presents a scenario where Gavin can save his family from dying of cancer but only if he... Well, you can see for yourself, I'm not typing that out.\n\nAudio from Let's Build - Snowbound Part 2","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-gavin-s-seed-saves-the-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d2a120e-4b09-409d-ae03-516b2b2e938f/sm/2013912-1475875954279-rtaa245tn.jpg","duration":95,"publication_date":"2016-10-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-4-special-warthog-flip-in-real-life","changefreq":"weekly","video":[{"title":"S4:E1 - Special - Warthog Flip in Real Life","description":"What does it take to flip a life-size Warthog? In this special Red vs Blue episode of Immersion, Burnie and his team find out...with some explosive results.","player_loc":"https://roosterteeth.com/embed/immersion-season-4-special-warthog-flip-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ece58bf-7463-4cfb-9a1a-bb109effab20/sm/2013912-1475876860434-WarthogThumbImmersion_02b_1.png","duration":501,"publication_date":"2016-10-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crunch-time-season-1-chapter-5-the-party-of-the-century","changefreq":"weekly","video":[{"title":"S1:E5 - Chapter 5 - The Party of the Century ","description":"New revelations of Larry’s location point to signs of a larger conspiracy. With time running out, the government agents threaten enhanced interrogation. Will Sam, Connor, Berkman and Hannah tell the truth about the Party of the Century and how it connects to “the rift?” Mark Moses guest stars as Sam's father, the great Montgomery Wittington.","player_loc":"https://roosterteeth.com/embed/crunch-time-season-1-chapter-5-the-party-of-the-century","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d239ce4-4f29-4f8d-8f19-d59e29cbc636/sm/2013912-1475778815034-CT_e05_02c_1.png","duration":1887,"publication_date":"2016-10-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-23","changefreq":"weekly","video":[{"title":"S14:E23 - Episode 23: Immersion: Warthog Flip","description":"Since the beginning of Blood Gulch, the iconic UNSC Warthog could be flipped with the push of a button... But surely it's not that easy.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c434630e-4758-40ef-974b-22ae70b6afc0/sm/2013912-1475873770143-WarthogThumb_08b.png","duration":551,"publication_date":"2016-10-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-local-news-for-the-modern-audience","changefreq":"weekly","video":[{"title":"S7:E28 - Local News for the Modern Audience","description":"What if news wasn't so outdated?","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-local-news-for-the-modern-audience","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ba6b667-9dee-4026-bf43-dc17e26dfa30/sm/2013912-1475902709396-WhatNewsShouldBe_04.png","duration":218,"publication_date":"2016-10-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-for-the-win-69","changefreq":"weekly","video":[{"title":"S7:E1 - For the Win #69","description":"Being a bond villain is harder than it looks.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-for-the-win-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d89d261b-9e4c-4b3a-b2c9-46c5950336d9/sm/2013912-1475859826179-ots_69ftw_thumb.jpg","duration":567,"publication_date":"2016-10-08T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-23","changefreq":"weekly","video":[{"title":"S1:E23 - Episode 23 - A Slip Through Time and Space","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI! ","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4874f5d-0c90-4307-b021-bbbd17644f37/sm/2013912-1475875009108-RWBY_CHIBI_THUMBNAIL_EPISODE_023v01.png","duration":290,"publication_date":"2016-10-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-7-69","changefreq":"weekly","video":[{"title":"S7:E69 - CAN GUYS QUEEF? - #69","description":"New games, new teams, same chance we might get canceled before the end of the season. LET'S DO THIS! This episode originally aired on October 7, 2016 and is sponsored by Casper (http://bit.ly/2dQg1oc) and Dollar Shave Club (http://bit.ly/2dQfMcP).","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-7-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d633e11-e966-4aba-9efd-c8a7db9f6e77/sm/2013912-1475858767229-ots_69_thumb.jpg","duration":2597,"publication_date":"2016-10-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-10-6","changefreq":"weekly","video":[{"title":"2016:E17 - October 6, 2016: Vancouver","description":"Check in with Burnie as he takes a break from writing Lazer Team 2 to take in the majesty of Vancouver, Canada.\n\n\n\n\n\nBradley Friesen’s Channel: https://www.youtube.com/channel/UC1UYCL1SgyBAVudD-3R5y3wBentley the Dog’s Instagram: https://www.instagram.com/mrbentley_thedog","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-10-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9afcf908-50ab-48fb-b46e-e15addef7b5f/sm/2013912-1475856830233-vlog_thumb_10-6-16.jpg","duration":615,"publication_date":"2016-10-07T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-still-open-2","changefreq":"weekly","video":[{"title":"2016:E2 - Still Open #2","description":"We’re still open for you, FIRST members! Join us for our second episode of Still Open, where Barbara Dunkelman, Mica Burton, Blaine Gibson, and Mariel Salcedo discuss the worst pain they’ve ever been in.","player_loc":"https://roosterteeth.com/embed/always-open-2016-still-open-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe4e6f26-dbc5-4210-bda7-21c592c5fdc3/sm/2013912-1475789083903-AO02_-_PS_-_THUMB.jpg","duration":777,"publication_date":"2016-10-07T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-safety-patrol","changefreq":"weekly","video":[{"title":"2016:E23 - Safety Patrol","description":"Nick and Kirk bring their own brand of public safety to the streets of Austin.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-safety-patrol","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99b301f3-59af-4b98-ab04-3441198fe658/sm/2013912-1475767556176-SXSW_Thumb_01d.png","duration":85,"publication_date":"2016-10-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-2","changefreq":"weekly","video":[{"title":"2016:E2 - I Don’t Want to F**k You Anymore - #2","description":"Join Barbara Dunkelman, Mica Burton, Blaine Gibson, and Mariel Salcedo as they discuss Halloween, bad breakups, and bucket lists. This episode is sponsored by Crunchyroll (http://bit.ly/2dt7oVD) and Hello Fresh (http://bit.ly/2dt9Db8).","player_loc":"https://roosterteeth.com/embed/always-open-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e20d93f-b45c-4ca3-b744-4fc100d58d18/sm/2013912-1475707073851-AO2_-_THUMB.jpg","duration":2775,"publication_date":"2016-10-06T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-underwater-explosions-at-120-000-fps","changefreq":"weekly","video":[{"title":"S1:E64 - Underwater Explosions at 120,000fps","description":"Gav and Dan usually blow stuff up in regular air, but did you know you can also blow stuff up in other places?","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-underwater-explosions-at-120-000-fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/891ce6d5-f2a9-44bb-8fac-59216a72457a/sm/82-1475777539331-bang.jpg","duration":403,"publication_date":"2016-10-05T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-396-post-show","changefreq":"weekly","video":[{"title":"2016:E38 - Podcast #396 Post Show","description":"Join Gus Sorola, Gavin Free, Chris Demarais, and Blaine Gibson as they discuss penguins in a pig suit, Blaine’s method of telling stories, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-396-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bac4e7c2-bb72-410f-b865-e999d6baa2f7/sm/2013912-1475607067740-rtp396_-_PS_-_THUMB.jpg","duration":941,"publication_date":"2016-10-05T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-werewolf-dick-396","changefreq":"weekly","video":[{"title":"2016:E396 - Werewolf Dick - #396","description":"Join Gus Sorola, Gavin Free, Chris Demarais, and Blaine Gibson as they discuss laser hair removal, awkward dating stories, trips to Mexico, and more on this week's RT Podcast! This episode originally aired on October 3, 2016, sponsored by Audible (http://adbl.co/2bgBJkt), Casper (http://bit.ly/2bgC0nt), MeUndies (http://bit.ly/2aGm9yg), Pizza Hut (http://bit.ly/2bxZ8mf)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-werewolf-dick-396","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd414636-194e-42f0-b921-4c94c99a92ae/sm/2013912-1475599583060-rtp396_-_THUMB.jpg","duration":5974,"publication_date":"2016-10-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-cool-farts-from-cool-kids","changefreq":"weekly","video":[{"title":"2016:E34 - Cool Farts from Cool Kids","description":"Miles feels cheated when a popular kid at school rips a hearty fart and doesn't get made fun of like any other lower class person would. Popular kids suck.\n\nAudio from Sponsor Play - Metal Gear Solid V: Part 1\n\n\n\n\n\n\n\n\n\n\n\nBecome a FIRST member:https://roosterteeth.com/FIRST \n\nLike the animated adventure? Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-cool-farts-from-cool-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d21281f-6014-4be9-939a-ef1fd873d626/sm/2013912-1475508166207-rtaa244tn.jpg","duration":84,"publication_date":"2016-10-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-adventures-of-larry-when-connor-met-larry","changefreq":"weekly","video":[{"title":"S7:E25 - Adventures of Larry: When Connor Met Larry ","description":"Connor's long search for the perfect assistant may finally be over.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-adventures-of-larry-when-connor-met-larry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5571f49a-1c59-47f8-9f94-c7e57b57637f/sm/2013912-1475176257095-LarryMeet_03b_1.png","duration":193,"publication_date":"2016-10-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-adventures-of-larry-larry-in-love","changefreq":"weekly","video":[{"title":"S7:E26 - Adventures of Larry: Larry in Love ","description":"Larry's got himself a crush and Berkman is there to help with his expert dating advice.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-adventures-of-larry-larry-in-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cb1f003-0f0c-4568-bfbd-ce1a98ac24fc/sm/2013912-1475176172861-LarryLove_04b_1.png","duration":233,"publication_date":"2016-10-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-22-the-mission","changefreq":"weekly","video":[{"title":"S14:E22 - Episode 22: The \"Mission\"","description":"Agents Ohio, Idaho, and Iowa have been sent on a top secret mission. It's a mission so secret... even they don't know what they're doing.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-22-the-mission","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7df20a25-2b3d-426c-b8c7-e54eaee011db/sm/2013912-1475276611371-RvB_EP_022v02.png","duration":807,"publication_date":"2016-10-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-what-your-fashion-says-about-you","changefreq":"weekly","video":[{"title":"S7:E27 - What Your Fashion Says about You","description":"Barbara helps you pick out your fall fashion.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-what-your-fashion-says-about-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34a0e3c7-4efd-4598-a857-ef8a312a3e1b/sm/2013912-1475253370717-AboutYouFashion_02_1.png","duration":98,"publication_date":"2016-10-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-22","changefreq":"weekly","video":[{"title":"S1:E22 - Episode 22 - Security Woes","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e24cb0cb-80c1-41bd-9f08-d9c54fd4ef41/sm/2013912-1475276171275-RWBY_CHIBI_THUMBNAIL_EPISODE_022.png","duration":250,"publication_date":"2016-10-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-post-show-1","changefreq":"weekly","video":[{"title":"2016:E1 - Still Open #1","description":"We're Still Open for you, FIRST members! Join us for a special addition to episode 1, where Barbara Dunkelman, Ashley Jenkins, Lindsay Jones, and Mariel Salcedo discuss their first job interview!","player_loc":"https://roosterteeth.com/embed/always-open-2016-post-show-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20c912a2-ed4b-48d2-b55d-08c7d10f5dd5/sm/2013912-1475177102441-AO1_-_PS_-_THUMB.jpg","duration":1057,"publication_date":"2016-09-30T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-matt-s-birthday-surprise","changefreq":"weekly","video":[{"title":"2016:E22 - Matt's Birthday Surprise","description":"Everyone at Rooster Teeth wishes their boss Matt a happy birthday -- but some well wishes are a little more unusual than others.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-matt-s-birthday-surprise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dfb103f-1ad8-4b29-b7ac-88c45ca88a45/sm/2013912-1475170044066-BdayThumb_01b.png","duration":329,"publication_date":"2016-09-29T17:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-1","changefreq":"weekly","video":[{"title":"2016:E1 - Peeing Your Pants - #1","description":"Join Barbara Dunkelman, Ashley Jenkins, Lindsay Jones, and Mariel Salcedo as they kick off the premiere of Always Open; a brand new show where we talk about everything and anything - nothing is off limits. This week, we discuss our worst living situation, peeing our pants, and what you should do if you are interested in a coworker.\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode is sponsored by Casper (http://bit.ly/2d7S00q) and Finders Keepers Creations (http://bit.ly/1oGWPZS)","player_loc":"https://roosterteeth.com/embed/always-open-2016-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbf4edd3-48c6-4d15-8d39-3c3faf5ae410/sm/690915-1475114974656-AO1_-_THUMB.jpg","duration":2930,"publication_date":"2016-09-29T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-super-bloopers","changefreq":"weekly","video":[{"title":"S3:E9 - Super Bloopers!","description":"Rooster Teeth is a silly place where silly things happen. Watch outtakes and flubs from the set of Million Dollars, But!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-super-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63714971-c37c-42f9-b1db-f87c1f283763/sm/2013912-1474995096835-MDB_Bloopers_02b.png","duration":175,"publication_date":"2016-09-28T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-395-post-show","changefreq":"weekly","video":[{"title":"2016:E37 - Podcast #395 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the new set features, telling jokes, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-395-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34b13094-7187-4aa7-a925-e4445ed03ac8/sm/2013912-1475077341536-rtp395_-_PS_-_THUMB.jpg","duration":996,"publication_date":"2016-09-28T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-395","changefreq":"weekly","video":[{"title":"2016:E395 - Gusless - #395","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss oblivious airline passengers, Twitter arguments, Gavin or Google, and more on this week's RT Podcast! This episode originally aired on September 26, 2016, sponsored by Braintree (http://bit.ly/2aYdvv5), Ring (http://bit.ly/2byor7r), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-395","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b193f99-3c1d-44bd-966f-636992fbb622/sm/2013912-1474997494254-rtp395_-_THUMB_v2.png","duration":6086,"publication_date":"2016-09-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-bombs-potates-stickers","changefreq":"weekly","video":[{"title":"2016:E33 - Bombs, Potates, & Stickers","description":"A collection of dumb little stories ranging from bombs hitting Austin (and how to avoid them), nicknames for potatoes, and horrible, crappy, worthless stickers.\n\nAudio from RT Podcast #355 and #302","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-bombs-potates-stickers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ab18d16-2d68-4cfc-b9e6-b41d5900f34f/sm/2013912-1474905288636-rtaa243tn.jpg","duration":112,"publication_date":"2016-09-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crunch-time-season-1-chapter-4-the-big-sleep","changefreq":"weekly","video":[{"title":"S1:E4 - Chapter 4 - The Big Sleep ","description":"The agents develop a new lead with a missing persons case that ties directly into the Brain Frame. Meanwhile, with the pressure mounting and Larry still missing, Sam begins to crack.","player_loc":"https://roosterteeth.com/embed/crunch-time-season-1-chapter-4-the-big-sleep","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e568763-d492-4354-b40d-be86a7b1193a/sm/2013912-1474474464632-CT_e04_01.png","duration":1545,"publication_date":"2016-09-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-21","changefreq":"weekly","video":[{"title":"S14:E21 - Episode 21: The Triplets","description":"The agents of Project Freelancer were the best of the best, but even the best have their worst.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0f71d10-12f6-43d8-a7ec-f8423f796a12/sm/2013912-1474671538238-RvB_EP_021v02.png","duration":572,"publication_date":"2016-09-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-double-standards","changefreq":"weekly","video":[{"title":"S7:E24 - Double Standards","description":"What's the difference between living in a trailer and living on a boat?","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-double-standards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e19ff8b-4aea-4e41-ba2a-327059c69d27/sm/2013912-1474663912792-YachtThumb_01c.png","duration":238,"publication_date":"2016-09-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-21","changefreq":"weekly","video":[{"title":"S1:E21 - Episode 21 - Cinder Who?","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5762cc00-f047-4c90-835d-2c45ea62f669/sm/2013912-1474671830313-RWBY_CHIBI_THUMBNAIL_EPISODE_021.png","duration":212,"publication_date":"2016-09-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-september-23-2016-the-emmys","changefreq":"weekly","video":[{"title":"2016:E16 - September 23, 2016: The Emmys","description":"Follow along with Emmy-nominated Burnie Burns and Ashley Jenkins at the 68th annual Primetime Emmy Awards, and more!","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-september-23-2016-the-emmys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1be44dd-2b07-4372-87cc-d482446103a5/sm/21-1474660835995-FIRST_VLOG_THUMBNAIL_9-23-16.jpg","duration":942,"publication_date":"2016-09-23T23:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-hot-for-patrick-swayze-0-4","changefreq":"weekly","video":[{"title":"PE:E4 - Hot for Patrick Swayze - #0.4","description":"Join Barbara Dunkelman, Patrick Matthews, Bethany Feinstein, and Mariel Salcedo in the final pilot episode as they discuss Brangelina, hot cats, and orgasms. Tune in next week for our first official episode of the season! Wednesday 10:30pm CT for FIRST members, and Thursday 10:30pm CT for the public!","player_loc":"https://roosterteeth.com/embed/always-open-2016-hot-for-patrick-swayze-0-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60692d5e-1ee5-4a5f-bf54-7b5a7bcfce0a/sm/2013912-1474562385663-AO4_-_THUMB.jpg","duration":3396,"publication_date":"2016-09-23T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-1-34-to-register-while-jeremy-and-gavin-get-coffee","changefreq":"weekly","video":[{"title":"2016:E21 - 1:34 to Register While Jeremy and Gavin Get Coffee","description":"In the time it takes Jeremy and Gavin to walk to get coffee, you can register to vote by going to Google.com and typing “register to vote\" or clicking this link: http://g.co/elections/134. #voteIRL","player_loc":"https://roosterteeth.com/embed/rt-life-2016-1-34-to-register-while-jeremy-and-gavin-get-coffee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b156e116-b27a-4adf-8f3f-b2cf037d2059/sm/2013912-1474494531768-GavinVote_Thumb_03b.png","duration":95,"publication_date":"2016-09-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-screaming-penis","changefreq":"weekly","video":[{"title":"S3:E8 - Screaming Penis","description":"Join Barbara, Gavin, and Jeremy for the season 3 finale of Million Dollars, But. Will the crew take a million bucks for a screaming penis or permanent snapchat filters? Find out!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-screaming-penis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69968279-d608-4392-9ed4-75811906fc64/sm/2013912-1474473253069-MDB_e06_04.png","duration":285,"publication_date":"2016-09-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-394-post-show","changefreq":"weekly","video":[{"title":"2016:E36 - Podcast #394 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Blaine Gibson as they discuss conspiracy theories, HD vs 4K, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-394-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/693a25d1-03ca-4f39-aeac-6d5283c426ed/sm/2013912-1474410923664-rtp394_-_PS_-_THUMB.jpg","duration":1380,"publication_date":"2016-09-21T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-blame-game-394","changefreq":"weekly","video":[{"title":"2016:E394 - The Blame Game - #394","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Blaine Gibson as they discuss iOS10, missing flights, shifting responsibility, and more on this week's RT Podcast! This episode originally aired on September 19, 2016, sponsored by NatureBox (http://bit.ly/2bvzA3K), Audible (http://adbl.co/2bgBJkt), Trunk Club (http://bit.ly/29tyrJm)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-blame-game-394","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d133a789-2aaf-4999-a95d-6a62201d727d/sm/2013912-1474385218065-rtp394_-_THUMB.jpg","duration":5785,"publication_date":"2016-09-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-spooky-scary-ghost-stories","changefreq":"weekly","video":[{"title":"2016:E32 - Spooky Scary Ghost Stories","description":"Gus regales the gang with a ghost story from some friends of his back in college. Being a ghost can be difficult when you don't like the dark.\n\nAudio from RT Podcast #365\n\n\n\nBecome a FIRST member: https://roosterteeth.com/FIRSTLike the animated adventure? Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-spooky-scary-ghost-stories","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4df1efa-7cd1-4e95-be3d-e4bbe5e03e1d/sm/2013912-1474297985216-rtaa242tn.jpg","duration":77,"publication_date":"2016-09-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crunch-time-season-1-chapter-3-the-business","changefreq":"weekly","video":[{"title":"S1:E3 - Chapter 3 - The Business ","description":"As government agents learn more about the heightened danger coming from the lab, the gang reveals how the Brain Frame business began. And Hannah’s idea to charge money for lucid dreaming goes awry with their first paying customer.","player_loc":"https://roosterteeth.com/embed/crunch-time-season-1-chapter-3-the-business","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6faeb052-8f5f-47fb-b29f-095a5e78b97e/sm/2013912-1473882533362-CT_e03_08.png","duration":1865,"publication_date":"2016-09-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-20-red-vs-blue-rv-b-throwdown","changefreq":"weekly","video":[{"title":"S14:E20 - Episode 20: Red vs. Blue: RvB Throwdown","description":"The battle between the Reds and Blues won't be fought with traditional weaponry... it will be fought with the sickest of beats and the most wicked of rhymes.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-20-red-vs-blue-rv-b-throwdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e9a8832-a228-4409-b6d9-4a3546d65bdd/sm/2013912-1474062390472-RvB_EP_020.png","duration":283,"publication_date":"2016-09-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-virtual-reality-check","changefreq":"weekly","video":[{"title":"S7:E23 - Virtual Reality Check","description":"Burnie smells trouble as Blaine tries to pitch a new line of Virtual Reality devices. Special thanks to our Lazer Team Indiegogo backers for appearing in this short!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-virtual-reality-check","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3c9cbb1-5426-46e6-962a-f945195b5951/sm/2013912-1474064205283-BackerThumb_03b.png","duration":299,"publication_date":"2016-09-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-20","changefreq":"weekly","video":[{"title":"S1:E20 - Episode 20 - Roman's Revenge","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d10898d0-596f-4463-9424-f107b8c768d1/sm/2013912-1474061876750-RWBY_CHIBI_THUMBNAIL_EPISODE_020v03.png","duration":276,"publication_date":"2016-09-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-l-e-t-s-g-o-girls-always-open-0-3","changefreq":"weekly","video":[{"title":"PE:E3 - LET’S GO, GIRLS - #0.3","description":"Join Barbara Dunkelman, Jessica Vasami, Lindsay Jones, and Mariel Salcedo as they discuss if it’s okay to joke about a tragedy, memorable dates, and where we can find a video of Mariel dancing to Shania Twain (make it happen, internet).\n\n\n\n\n\n\n\n\n\n\n\n*What we’re drinking*\n\n\n\n\n\n\n\n\n\nMariel: Three Legged Monkey\n\n\n\n\n\n\n\n\n\n\n\nLindsay: Screwdriver \n\n\n\n\n\n\n\n\n\n\n\nJessica: Manhattan \n\n\n\n\n\n\n\n\n\n\n\nBarbara: Three Legged Monkey","player_loc":"https://roosterteeth.com/embed/always-open-2016-l-e-t-s-g-o-girls-always-open-0-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b0cc6c4-7525-4916-a97c-a4de413e4030/sm/2013912-1473972841158-AO3_-_THUMB.jpg","duration":3417,"publication_date":"2016-09-16T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-gus-and-geoff-ride-a-tank","changefreq":"weekly","video":[{"title":"2016:E20 - Gus and Geoff Ride a Tank","description":"Gus and Geoff rekindle their friendship by commandeering a tank. Bubble wrap, furniture, hopes and dreams were all crushed in the making of this RT Life. Except the bubble wrap. Somehow the bubble wrap survived. Click here to download World of Tanks and use the CRUSHINGIT invite code to get cool stuff: http://bit.ly/RoosterTeethWoTCrush. Thanks to World of Tanks for sponsoring this video. \n\nFirst 10,000 viewers to use the World of Tanks code can get 7 days premium time, 500 gold, and a free T2 Light Tank! Click the link above to start #crushingit","player_loc":"https://roosterteeth.com/embed/rt-life-2016-gus-and-geoff-ride-a-tank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/272ea4b3-d760-46de-86ee-236bb1cf4e63/sm/2013912-1473889332430-WoTLife_01_1.png","duration":105,"publication_date":"2016-09-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-the-jerk-off-text","changefreq":"weekly","video":[{"title":"S3:E7 - The Jerk Off Text","description":"Join Geoff, Greg, and Tim as they gain a million dollars but lose all their dignity.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-the-jerk-off-text","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b41ce2f9-9b3a-4ab1-b811-25da162c2198/sm/2013912-1473867271898-MDB_e05_01b.png","duration":261,"publication_date":"2016-09-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-393-post-show","changefreq":"weekly","video":[{"title":"2016:E35 - Podcast #393 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss six pack holders, BBQ, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-393-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51b700d9-cc07-4db2-95da-eb171d6bec5c/sm/2013912-1473784435405-rtp393_-_PS_-_THUMB.jpg","duration":1605,"publication_date":"2016-09-14T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-i-phone-7-argument-393","changefreq":"weekly","video":[{"title":"2016:E393 - The iPhone 7 Argument - #393","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the iPhone 7, confusing light switches, chipped credit cards, and more on this week's RT Podcast! This episode originally aired on September 12, 2016, sponsored by Casper (http://bit.ly/2bgC0nt), Harry’s (http://bit.ly/2cnaTJp), Pizza Hut (http://bit.ly/2bxZ8mf), Squarespace (http://bit.ly/2aGmDo9)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-i-phone-7-argument-393","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84a740cb-7938-45cb-a058-8e5b15a9f46a/sm/2013912-1473783681597-rtp393_-_THUMB.jpg","duration":6024,"publication_date":"2016-09-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-an-ewok-to-remember","changefreq":"weekly","video":[{"title":"2016:E31 - An Ewok to Remember","description":"Nick Rutherford and Kirk C. Johnson from Crunch Time pitch a movie about love, Ewoks, and Peter Dinklage that takes place on the moon of Endor. It's not very good, but Crunch Time is!\n\nAudio from On the Spot #67","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-an-ewok-to-remember","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08b36ed7-fcc8-496e-9ad4-e9fffb7dcc9b/sm/2013912-1473694333054-rtaa241tn.jpg","duration":117,"publication_date":"2016-09-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crunch-time-season-1-chapter-1-the-beginning","changefreq":"weekly","video":[{"title":"S1:E1 - Chapter 1 - The Beginning","description":"In a highly classified location, a gang of brilliant, misfit grad students are interrogated by\ngovernment operatives. The question: How did it all begin? The answer: With a last ditch effort\nto win back love… by way of an extremely dangerous, untested, lucid dreaming machine.","player_loc":"https://roosterteeth.com/embed/crunch-time-season-1-chapter-1-the-beginning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9be6f448-9114-4a8e-8e01-f0c327bbcbb8/sm/2013912-1473437277645-CT_e01_07b.png","duration":1288,"publication_date":"2016-09-11T17:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crunch-time-season-1-chapter-2-the-brain-frame","changefreq":"weekly","video":[{"title":"S1:E2 - Chapter 2 - The Brain Frame ","description":"Welcome to the Brain Frame - A home-brewed lucid dreaming machine, housed in a university\nbasement lab. Dreams lead to nightmares. Nightmares lead to danger. Danger leads to a\npuzzling mystery that the government struggles to comprehend.","player_loc":"https://roosterteeth.com/embed/crunch-time-season-1-chapter-2-the-brain-frame","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2bbf7eb-b316-4317-b221-0adc9ef6c136/sm/2013912-1473437444917-CT_e02_06b.png","duration":1370,"publication_date":"2016-09-11T17:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-casper-van-dien","changefreq":"weekly","video":[{"title":"S7:E22 - Casper Van Dien","description":"Do you want to live forever? Join the Casper Fan Diens - a fan club for Casper Van Dien fans - today!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-casper-van-dien","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e7c2e6c-1585-40b3-bc2b-069b1457a7e3/sm/2013912-1473438159896-Short_01_01b.png","duration":191,"publication_date":"2016-09-11T17:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-18-red-vs-blue-mr-red-vs-mr-blue","changefreq":"weekly","video":[{"title":"S14:E19 - Episode 19: Red vs. Blue: Mr. Red vs. Mr. Blue","description":"Everyone talks about the great adventures of the Reds and Blues, but have you ever stopped to think about what they did in their down time? It's really... really stupid.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-18-red-vs-blue-mr-red-vs-mr-blue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21a58cd0-e495-4a35-853b-973426603172/sm/2013912-1473456440265-RvB_EP_019.png","duration":484,"publication_date":"2016-09-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-19","changefreq":"weekly","video":[{"title":"S1:E19 - Episode 19 - Pillow Fight","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58798fc9-3d2f-4c22-9ed0-f6e133315eda/sm/2013912-1473455769663-RWBY_CHIBI_THUMBNAIL_EPISODE_019.png","duration":214,"publication_date":"2016-09-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-the-order-of-the-sparrow-camp-camp-episode-12","changefreq":"weekly","video":[{"title":"S1:E16 - The Order of the Sparrow – Episode 12","description":"In an attempt to get the kids in the camp spirit, David initiates them into a dated ritual called The Order of the Sparrow. When he promises the kids will get a prize, they jump at the opportunity to join. But what if the prize sucks?","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-the-order-of-the-sparrow-camp-camp-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/201d140a-54f8-4941-96b3-37f1e6d74cd5/sm/2013912-1473434322496-cc1_ep10_tn.jpg","duration":835,"publication_date":"2016-09-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-always-open-0-2","changefreq":"weekly","video":[{"title":"PE:E2 - How We Went Down - #0.2","description":"Join Barbara Dunkelman, Mica Burton, Chris Demarais and Ashley Jenkins as they discuss public freak-outs, BJs, and asking for someone's number.","player_loc":"https://roosterteeth.com/embed/always-open-2016-always-open-0-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbaa29de-5d54-4459-9a66-ee1b81caf9d9/sm/2013912-1473370194237-AO2_-_THUMB.jpg","duration":3184,"publication_date":"2016-09-09T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-september-8-2016-zip-lining-with-barbara","changefreq":"weekly","video":[{"title":"2016:E15 - September 8, 2016: Zip-lining with Barbara","description":"Burnie and Barbara go on a zip-lining adventure and talk about how she came to work for Rooster Teeth, her new show Always Open, and more.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-september-8-2016-zip-lining-with-barbara","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/683ac71a-5ef0-4c96-8f83-abe264a3c53c/sm/2013912-1473348339743-FIRST_Vlog_Thumb_9-8-16.jpg","duration":472,"publication_date":"2016-09-08T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-old-people-punching","changefreq":"weekly","video":[{"title":"S3:E6 - Old People Punching","description":"Join Burnie, Nick, and Kirk as they beat old people and deal with aliens bursting out of their chests. Check out Crunch Time on September 11th!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-old-people-punching","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/099634f5-a6dd-423c-93c1-36845fe4f9c6/sm/2013912-1473195391409-MDB_e04_04b.png","duration":295,"publication_date":"2016-09-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-392-post-show","changefreq":"weekly","video":[{"title":"2016:E34 - Podcast #392 Post Show","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss ice, airbags, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-392-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c493270-1422-4b10-b087-fcf2697ab1f2/sm/2013912-1473266277594-rtp392_-_PS_-_THUMB.jpg","duration":1097,"publication_date":"2016-09-07T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-392","changefreq":"weekly","video":[{"title":"2016:E392 - Alien Attraction - #392","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss aliens, old friends, sex horror stories and more on this week's RT Podcast! This episode originally aired on September 6, 2016, sponsored by Blue Apron (http://cook.ba/29J4MMj), MeUndies (http://bit.ly/2aGm9yg), Ring (http://bit.ly/2byor7r)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-392","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e77f9b6-5881-4176-b8ec-7c5708103859/sm/2013912-1473175934817-rtp392_-_THUMB.jpg","duration":5152,"publication_date":"2016-09-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-miles-runs-from-zombies","changefreq":"weekly","video":[{"title":"2016:E30 - Miles Runs from Zombies","description":"Miles goes on a zombie run, but it turns out to be less of a run and more of a fall-on-your-ass for him. Embarrassing.\nAudio from Sponsor Play - Alien Isolation, Part 7","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-miles-runs-from-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcb6c6b1-2ccf-49f0-9098-7b226dd3d5e1/sm/2013912-1472831550010-rtaa240tn.jpg","duration":120,"publication_date":"2016-09-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-18-red-vs-blue-the-musical","changefreq":"weekly","video":[{"title":"S14:E18 - Episode 18: Red vs. Blue: The Musical","description":"Red vs. Blue: Episode 18: Red vs. Blue: The Musical","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-18-red-vs-blue-the-musical","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99c1d439-00dc-47e6-b569-d75cd7b299f8/sm/2013912-1472856703861-RvB_EP_018v01.png","duration":632,"publication_date":"2016-09-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-what-your-hat-says-about-you","changefreq":"weekly","video":[{"title":"S7:E21 - What Your Hat Says About You","description":"Can't decide which hat to wear? Or maybe you're worried you're balding? See what your hat says about you with this handy Rooster Teeth style guide.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-what-your-hat-says-about-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b790b964-98e1-480a-a034-f732ede65168/sm/2013912-1472662728738-Hats_Thumb_04b_1.png","duration":145,"publication_date":"2016-09-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-18","changefreq":"weekly","video":[{"title":"S1:E18 - Episode 18 - Evil Plans","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/276b91e1-f8fc-4284-9e46-757727674b1e/sm/2013912-1472856944819-RWBY_CHIBI_THUMBNAIL_EPISODE_018v04.png","duration":321,"publication_date":"2016-09-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-camporee-camp-camp-episode-11","changefreq":"weekly","video":[{"title":"S1:E15 - Camporee – Episode 11","description":"The Campbell Campers are forced to compete in the Lake Lilac Camporee against their rival camps, The Wood Scouts and Flower Scouts. Pikeman makes a bet with Campbell. David tries to get the kids to work together.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-camporee-camp-camp-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91dfa9ee-e668-4c85-a4f8-8cd2244a95dc/sm/2013912-1472829626061-cc1_ep09_tn.jpg","duration":582,"publication_date":"2016-09-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/always-open-2016-pilot-1","changefreq":"weekly","video":[{"title":"PE:E1 - Beyoncé Shits? - #0.1","description":"Join Barbara Dunkelman, Mica Burton, Lindsay Jones, and Mariel Salcedo as they discuss Catfish, lying to your friends, hiding farts, and more. It’s all class, all the time.","player_loc":"https://roosterteeth.com/embed/always-open-2016-pilot-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1355f24-55c2-4f1f-9cc7-09560dc675cf/sm/2013912-1472748339032-AO_Pilot1_-_THUMB.jpg","duration":2793,"publication_date":"2016-09-02T03:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-burnie-teaches-mica-to-ride-a-bike","changefreq":"weekly","video":[{"title":"2016:E19 - Burnie Teaches Mica to Ride a Bike","description":"Burnie discovered that Mica never learned to ride a bike, so he took matters into his own hands. But first, helmets!","player_loc":"https://roosterteeth.com/embed/rt-life-2016-burnie-teaches-mica-to-ride-a-bike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4251b380-7059-4740-bb64-a50867cda11b/sm/2013912-1472670742827-MicaBike_Thumb_01b.png","duration":159,"publication_date":"2016-09-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-burnie-bloopers-barbara-burps","changefreq":"weekly","video":[{"title":"S3:E5 - Burnie Bloopers & Barbara Burps","description":"Watch the Rooster Teeth cast flub, fail and f**k up while filming Million Dollars, But...","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-burnie-bloopers-barbara-burps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5737120f-96a8-43d4-9788-7cd963535c35/sm/2013912-1472574962336-MDB_Bloopers_01.png","duration":98,"publication_date":"2016-08-31T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-391-post-show","changefreq":"weekly","video":[{"title":"2016:E33 - Podcast #391 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss PAX West, Faster Than Light, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-391-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f2f3d46-e796-4047-8953-fb1951a8e788/sm/2013912-1472594468259-rtp391_-_PS_-_THUMB.jpg","duration":1576,"publication_date":"2016-08-31T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-391","changefreq":"weekly","video":[{"title":"2016:E391 - The Bridesmaid Boy - #391","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss wedding customs, house problems, conspiracy theories, and more on this week's RT Podcast! This episode originally aired on August 29, 2016, sponsored by Pizza Hut (http://bit.ly/2bxZ8mf), Braintree (http://bit.ly/2aYdvv5), Squarespace (http://bit.ly/290ucbK)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-391","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8eb947bd-caff-4af6-86b2-825f0c21af90/sm/2013912-1472570825327-rtp391_-_THUMB.jpg","duration":5753,"publication_date":"2016-08-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-racial-super-texas","changefreq":"weekly","video":[{"title":"2016:E29 - Racial Super Texas","description":"This week, someone tries to guess Gus' race, Kyle and Miles ponder the certainties in life, and Burnie defends Superman's biggest weakness. Let's be real though, standing next to a rock making you lose your powers is pretty lame. Fight me, nerds.\n\nAudio from RT Podcast #363 and #365","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-racial-super-texas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43a00084-4f3f-4aaa-9af9-468fe0a350d4/sm/2013912-1472484398041-rtaa239tn.jpg","duration":96,"publication_date":"2016-08-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-3","changefreq":"weekly","video":[{"title":"2017:E5 - Let's Watch - Resident Evil 7: Biohazard Part 2","description":"The next gruesome installment of Resident Evil VII is coming in hot! So hot, in fact, that it's up to the clueless description writer to write the description for this one. So hey! We're back here in Resident Evil VII land. We're still not playing at Leon Kennedy. We're certainly not saving the president's daughter. Said daughter is not equipped with...ballistics. We're just Johnny First-Person, walking through the Spookmoore Manor. Geoff is at the helm, and hey! There's going to be oodles and oodles of spookers throughout this video. At least one of you will probably pee yourself in fear. And that's okay. This damn game is fuckin' scary.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9598bdab-edee-4209-87a5-8535b2f8a47a/sm/2013912-1485532871573-rs2.jpg","duration":3565,"publication_date":"2017-01-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-244-the-glass-tower","changefreq":"weekly","video":[{"title":"2017:E24 - Minecraft – Episode 244 – The Glass Tower","description":"Those Achievement Hunter boys sure love climbing giant structures that look like the Tower of Pimps. Just put any large, Tower-of-Pimps-shaped thingy in front of them and they'll climb it all day and all night without a care in the world. It could be wool. It could be dirt. It could be a thick cut of salami. Today is no different; there's another tower that must be climbed. One made of glass (and yes, it's a pain in the ass).\n\n\n\n\n\nSpecial thanks to Gregg (Mxd1000), Kamen Chaser, CT Fujiwater, and Sherlock_Hulk from the Let's Play Community for building this giant pain in the glass. You can see their Things to Do about it here.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-244-the-glass-tower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d27e8516-af7c-4842-b7f7-1a00ca773f8e/sm/2013912-1485448173158-glasstop.jpg","duration":2251,"publication_date":"2017-01-26T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-7-days-to-die-ninth-day","changefreq":"weekly","video":[{"title":"2017:E4 - 7 Days to Die - Ninth Day ","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEESThe Achievement Hunters are headed off to more whirlwind adventures in this episode of 7 Days to Die. Will they find spoils beyond their wildest dreams? Or will they die and end up back at the bunker? In this episode: Jack attempts a second mission to contact a trader, Ryan, Gavin, Michael, and Jeremy go treasure hunting, and Geoff finds a wrench.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-7-days-to-die-ninth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09ea179f-8913-4f6c-a76a-131f1240aa1d/sm/2013912-1485367347855-AH_7Days_Day9_THUMB2.png","duration":4106,"publication_date":"2017-01-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-22-post-show-8-a6bal","changefreq":"weekly","video":[{"title":"2017:E2 - #22 Post Show","description":"2017:E2 - #22 Post Show","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-22-post-show-8-a6bal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e6ec88-c3ca-4a8b-ad6f-8fdcfb11b7dd/sm/2013912-1485365638541-HH_2-2_-_PS_-_THUMB.jpg","duration":681,"publication_date":"2017-01-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-g-m-o-d-murder","changefreq":"weekly","video":[{"title":"2017:E2 - GMOD: Murder","description":"Shoot Tango! Tango's the killer! No wait. Tango's cool. It's Bravo. Bravo Bravo Bravo. Definitely Bravo. No wait. Delta's looking pretty suspicious now. Kill Delta! Kill Delta! Delta's the murderer for sure. Now it's Charlie. Nope! Alpha. It's Alpha. Alpha's the murderer. Now it's Charlie again. Charlie! Tango! Bravo! Delta! Alpha! AHHHHHH!\n\n[Geoff_NoStabby has been murdered]","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-g-m-o-d-murder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/419d33e9-e509-43e0-88d3-6d165d48a4b1/sm/2013912-1485292151789-murderthumb.jpg","duration":1870,"publication_date":"2017-01-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-call-of-duty-infinite-warfare-kill-confirmed","changefreq":"weekly","video":[{"title":"2017:E23 - Call of Duty: Infinite Warfare - Kill Confirmed ","description":"Join the AH crew as they play some Call of Duty: Infinite Warfare Kill Confirmed. They try their best to succeed, but sometimes there just happen to be some try-hard kiddos who like to ruin all the fun. Let's watch as frustration ensues. But not \"Let's Watch.\" That's a totally different show.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-call-of-duty-infinite-warfare-kill-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9cba5f3-4dea-4b6f-a6f8-737f01067938/sm/2013912-1485295218511-LP_CODIW_KillConfirmedNew.png","duration":2210,"publication_date":"2017-01-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017","changefreq":"weekly","video":[{"title":"2017:E3 - Let's Watch - Resident Evil 7: Biohazard","description":"It's here! It's finally here! Michael, Gavin, and Jeremy watch as Scaredy Geoff sits through utter horror and anguish for our first episode of Let's Watch - Resident Evil 7: Biohazard.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/660352ae-654d-4784-9710-2f488c5791dc/sm/2013912-1485283565258-LW_RE7_NEW_LOGO.png","duration":4427,"publication_date":"2017-01-25T06:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2","changefreq":"weekly","video":[{"title":"2017:E22 - Revelations #22","description":"Our brave adventurers find out people lie then punch you in the face. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis episode is sponsored by MVMT Watches (http://bit.ly/2kptRRh) and Blue Apron (http://cook.ba/2kpCPhm)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce32ee8d-4267-4e32-afde-a294469a6ff7/sm/2013912-1485274816965-HH_2-2_-_THUMB.jpg","duration":7329,"publication_date":"2017-01-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-for-your-consideration","changefreq":"weekly","video":[{"title":"2017:E2 - For Your Consideration","description":"For your consideration...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-for-your-consideration","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/089df10d-52ef-48c5-8219-4f5a9de0ddd6/sm/2013912-1485209577014-Uno_Thumb.png","duration":54,"publication_date":"2017-01-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-jackbox-stream","changefreq":"weekly","video":[{"title":"2017:E22 - Jack Box 3: AH Live Stream ","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT. Come hang out and play a few rounds of Jack Box 3 with Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-jackbox-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83517ab7-4ef9-4118-9f2a-035dca65daf1/sm/2013912-1485201191637-LP_JackBox3-AHLiveStream_THUMB.jpg","duration":4655,"publication_date":"2017-01-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-jeremy-s-first-backflip-ahwu-for-january-23-rd-2017-353","changefreq":"weekly","video":[{"title":"2017:E353 - Jeremy's First Backflip - AHWU for January 23rd, 2017 (#353)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU\n\n\n\nWhat the fuck are you doing down here? Seriously. Which do you prefer: reading a description of a video where Jeremy hurts himself, or watching a video where Jeremy hurts himself? You're just wasting perfectly good watching-Jeremy-get-hurt time. All I've got to say down here is that this is AHWU with the normal news and games and fake game and typical Achievement Hunter-type shanhooligans. One of those shenaynays may be referenced in the title. That same shanoodly may not go according as planned. And watching that shabibbily might be way more enjoyable than reading the description this week. But hey. If you'd rather read all these words instead of watch Jeremy hurt himself, that's cool too. Honestly, I'm flattered! You're too kind. But really, go back and watch Jeremy get hurt fifty times more. It's great.\n\n\n\n\n\n\n\nSpecial thanks to \"maxzzzie\" for the GTAV wasted template.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-jeremy-s-first-backflip-ahwu-for-january-23-rd-2017-353","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bd0f229-bd18-45b9-a4fe-ddf952a3ccca/sm/2013912-1485205754629-ah1.jpg","duration":708,"publication_date":"2017-01-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-party-hard","changefreq":"weekly","video":[{"title":"2017:E3 - Party Hard","description":"Michael and Gavin get swept up in the life of crime, filled with stabbings, aliens and... gumball machines?","player_loc":"https://roosterteeth.com/embed/play-pals-2017-party-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2a4d40d-8b11-4be5-9a36-149583f13b16/sm/2013912-1484937648226-PP_PartyHard.png","duration":1332,"publication_date":"2017-01-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-4","changefreq":"weekly","video":[{"title":"2017:E21 - VR Surgeon Simulator ER: Experience Reality Part 4","description":"Vrooooooooom. Ambulance! Lots of organs getting sliced and shit!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5edf86a-f7e2-46c6-b2e1-3d148afd5dcd/sm/2013912-1484940793705-LP_VR_SurgeonSimulator4.png","duration":1942,"publication_date":"2017-01-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-60-ba8a6a","changefreq":"weekly","video":[{"title":"2017:E3 - Last Call Jack is Best Jack - Last Call #60","description":"The AH Crew sit down to talk about Girl Scout Cookies, Kwanzaa, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-60-ba8a6a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddfb1962-4a5b-45bb-b9d7-5cccfa6d0c0e/sm/2013912-1484954279321-OFF60_-_PS_-_THUMB.jpg","duration":983,"publication_date":"2017-01-22T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-stardew-valley-artistic-farming","changefreq":"weekly","video":[{"title":"2017:E5 - Stardew Valley - Artistic Farming","description":"Who doesn't want to show everyone in the game of Stardew Valley how artistic they are? And after you've figured out how to do that why not use it to tell your favorite citizens exactly what you think about them? Matt and Jeremy can show you exactly how to do both of those things.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-stardew-valley-artistic-farming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c52048b-c064-4b3a-87a5-4598da4e20a1/sm/2013912-1484954194653-stardew2.jpg","duration":230,"publication_date":"2017-01-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-cunning-stunts-5","changefreq":"weekly","video":[{"title":"2017:E20 - Cunning Stunts 5","description":"Geoff really enjoyed the Ramps! Ramps! Ramps! map he played with Game Attack, so Achievement Hunter goes back to attempt more Cunning Stunts. Glorious.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-cunning-stunts-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cdcd3e1-1f72-4899-b416-554e742a94e4/sm/2013912-1484857648536-Thumb_CunningStuntsPart5_E.jpg","duration":1937,"publication_date":"2017-01-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-60-pa98ba","changefreq":"weekly","video":[{"title":"2017:E60 - This is Internet Box - #60","description":"The AH Crew sit down to talk about the first AH intern, the evolution of RTX, Theater Mode’s return, and more on this week's Off Topic!\n\nThis episode originally aired January 20, 2017 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MVMT Watches (http://bit.ly/2iLo5gb)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-60-pa98ba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa178e30-7884-4d14-8d4f-0df8f5a266ef/sm/2013912-1484954348709-OFF60_-_THUMB.jpg","duration":5614,"publication_date":"2017-01-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2017-episode-25-zombie-croc","changefreq":"weekly","video":[{"title":"2017:E1 - Episode #25: Zombie Croc","description":"By the magic of racist voodoo Theater Mode is back from the dead with an all-new season...err, volume! This week the AH crew watch Zombie Croc, the spirtual sequel to the infamous Zombie Isle.","player_loc":"https://roosterteeth.com/embed/theater-mode-2017-episode-25-zombie-croc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d09b3391-29c4-4a6b-b61c-3844198d5345/sm/2013912-1484932925505-TM_-_Zombie_Croc_-_THUMB.jpg","duration":6104,"publication_date":"2017-01-20T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-drunk-or-dead","changefreq":"weekly","video":[{"title":"2017:E3 - Drunk or Dead","description":"Hey kids! It's VR the Champions in another fucking zombie shooter. But this isn't just any fucking zombie shooter. This one has drinking! Down some shots (in the game) and have fun seeing double! Since this is Achievement Hunter, the drinking started happening outside of the game too. Now Michael and Jeremy are super drunk. In the game, they're probably seeing quadruple. Get it? Ha ha! Description's got jokes!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-drunk-or-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f0f56a2-5559-4d4d-a3bc-dde27349c572/sm/2013912-1484866977920-VR_DrinkOrDead.png","duration":1987,"publication_date":"2017-01-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-243-ender-city","changefreq":"weekly","video":[{"title":"2017:E19 - Minecraft – Episode 243 – Ender City","description":"The Achievement Hunter boys are off to kill the Ender Dragon. Yes, for a third time! But wait. Hold on. The dragon isn't the real reason they're end-ing it up this time. The true treasure is the city beyond the dragon. A city that holds many secrets, like flying machines, strange monsters that Willy Wonka you into the air, and funky fruit! So let's kick that dragon in the teeth and fuckin' go already!","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-243-ender-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a79a8ab-121d-4d41-b36c-8050ebb9f8c0/sm/2013912-1484844565870-mc1.jpg","duration":2339,"publication_date":"2017-01-19T16:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-golf-with-your-friends-part-1","changefreq":"weekly","video":[{"title":"2017:E18 - Golf With Your Friends - Part 1","description":"Achievement Hunter returns to miniature golf with this absolutely simple yet fantastically fun game in the Steam store.\n\nMusic:Songs - Sour Grapes, Ramblin to my Baby's Place, Whistle Blower, Suburban Ballet, Swing Du Printemps 2, Bright And Breezy, Small Town, Going For A Song, Humour Games, Clowns In Cars, Pukka Picnic, Oil Drum LaneSource - Audio Network","player_loc":"https://roosterteeth.com/embed/lets-play-2017-golf-with-your-friends-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e085fb2-622e-486f-986a-032af6b4c32c/sm/2013912-1484771000796-Thumb_GolfWithYourFriendsPart1.jpg","duration":3509,"publication_date":"2017-01-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2017-episode-149-jack-vs-matt","changefreq":"weekly","video":[{"title":"2017:E1 - Episode 149: Jack VS Matt","description":"This time on Versus, Jack challenges Matt to some old school carnage. Better run Matt - old Jacky boy is coming to rip your spine out with a little bit of Mortal Kombat.","player_loc":"https://roosterteeth.com/embed/vs-2017-episode-149-jack-vs-matt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84f32b71-63c9-42d2-9f6e-8956dd522011/sm/2013912-1484694370999-VS_MortalKombat.png","duration":399,"publication_date":"2017-01-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-titanfall-2-bounty-hunt","changefreq":"weekly","video":[{"title":"2017:E17 - Titanfall 2: Bounty Hunt","description":"Get the money! The Achievement Hunter boys are killing dudes and grabbing some fast cash in Titanfall 2's Bounty Hunt mode. And in typical Achievement Hunter fashion, nobody thinks on their feet! Those titans are easily worth billions of Titanland Fun Monies - easily! All they had to do was deposit one of those babies into the money machine and boom, bam. Easy win. But nope! This is Achievement Hunter. They only collect their cash two dollars at a time.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-titanfall-2-bounty-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043b5f6f-12c1-43b5-8615-f9941f3b3da5/sm/2013912-1484687700255-TitanfallThumb_v02.png","duration":2321,"publication_date":"2017-01-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-leap-frog","changefreq":"weekly","video":[{"title":"2017:E4 - GTA V - Leap Frog","description":"These guys finally get a Ruiner 2000. One for each of them. What's the first thing they do? Play a children's playground game. Because they're adults, dammit, and they decide what that means.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-leap-frog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf27edd2-0208-4bf7-bb87-bad246f2bde7/sm/2013912-1484334148425-TTD_GTA_LeapFrog_Thumb_C.jpg","duration":346,"publication_date":"2017-01-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-ah-live-stream","changefreq":"weekly","video":[{"title":"2017:E15 - Rainbow Six Siege: AH Live Stream","description":"Special thanks to Blue Apron for sponsoring today's AH Live Stream. Get your first three meals free with free shipping by going to http://blueapron.com/AHPT. Get ready to join Ryan, Jack, Jeremy, Michael, and Geoff in another death filled game of Rainbow Six. Their tactics have improved (a little bit), and they're ready for more defensive challenges.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-ah-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08a750aa-0af7-40dd-9ec9-1e57a928f17b/sm/2013912-1484344195332-LP_Rainbow6Seige_Stream.jpg","duration":2959,"publication_date":"2017-01-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-put-the-fire-down-ryan-ahwu-for-january-16-th-2017-352","changefreq":"weekly","video":[{"title":"2017:E352 - Put the Fire Down, Ryan! - AHWU for January 16th, 2017 (#352)","description":"You can get an awesome, affordable watch with an additional 15% off if you visit the following link:http://www.mvmtwatches.com/AHWU\n\n\n\nThis week we've got a special announcement regarding RTX Sydney. Who's gonna be there?! Watch to find out!","player_loc":"https://roosterteeth.com/embed/ahwu-2017-put-the-fire-down-ryan-ahwu-for-january-16-th-2017-352","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ada8701c-85c1-47d0-8e72-00d259b7b9dc/sm/2013912-1484350562341-ahwuthumb.jpg","duration":520,"publication_date":"2017-01-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-5","changefreq":"weekly","video":[{"title":"2017:E16 - Let's Watch - Resident Evil 4 (2016) Part 3","description":"Michael and Andy are back somewhere in Spain, or maybe Eastern Europe to save the President's daughter.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1c2ef35-a608-41b3-b66d-6596a1086ec9/sm/2013912-1484362097904-LW_ResidentEvil4Pt3.png","duration":3968,"publication_date":"2017-01-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-celebrity-deathmatch-with-game-attack","changefreq":"weekly","video":[{"title":"2017:E14 - Celebrity Deathmatch with Game Attack","description":"Ever wonder who would win in a fight between Ron Jeremy and Mr. T? Neither do we, but folks in 2003 must have really wanted to know.  Shaun and Craig show Michael, Jeremy, Ryan, Jack, and Geoff one of the most ridiculous games based on one of the most ridiculous claymation shows of the late 90's.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-celebrity-deathmatch-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a7114b3-ccc0-4053-ae77-979c05bfc4c1/sm/2013912-1484332678135-Thumb_LP_CelebrityDeathmatch.jpg","duration":1390,"publication_date":"2017-01-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-59-ab7a6a","changefreq":"weekly","video":[{"title":"2017:E2 - Last Call #59","description":"The AH Crew sit down to talk about sprinkles, clear coat plastic, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-59-ab7a6a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c646584-efba-4de6-8914-974c6fddabec/sm/2013912-1484347999988-OFF59_-_PS_-_THUMB.jpg","duration":1055,"publication_date":"2017-01-15T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-mr-president-part-2","changefreq":"weekly","video":[{"title":"2017:E2 - Mr. President Part 2","description":"President-elect Rump needs more protecting and only secret service agents Michael and Gavin can save him.","player_loc":"https://roosterteeth.com/embed/play-pals-2017-mr-president-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a67d5887-9992-487c-8793-b9302be9e7d5/sm/2013912-1484352973125-PP_MrPresidentPt2V2.png","duration":1376,"publication_date":"2017-01-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-asset-seizure-and-firewall-protection","changefreq":"weekly","video":[{"title":"2017:E13 - GTA V - Asset Seizure and Firewall Protection","description":"Jack fills in for Lil J as the Fake AH Crew continue their run of Special Vehicle Works missions, this time with the Jobuild Phantom Wedge and the Coil Rocket Voltic.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-asset-seizure-and-firewall-protection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32883d93-2698-4a48-8f30-e06855fa9e10/sm/2013912-1484252958763-GTA_Thumb_b.jpg","duration":3269,"publication_date":"2017-01-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-59-na86ab","changefreq":"weekly","video":[{"title":"2017:E59 - My Butt Would Be Filled - #59","description":"The AH Crew sit down to talk about the Nintendo Switch, It’s Always Sunny in Philadelphia, old gaming rumors, and more on this week's Off Topic!\n\nThis episode originally aired January 13, 2016 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and Squarespace (http://bit.ly/2jsgC2m)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-59-na86ab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8e1ef6c-1481-4a6c-89cc-80d3cdb49025/sm/2013912-1484347993869-OFF59_-_THUMB.jpg","duration":6396,"publication_date":"2017-01-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017-2","changefreq":"weekly","video":[{"title":"2017:E3 - Dead Hungry","description":"Kent got sick and didn't come in to work today, so there's no written description for VR the Champions. So here comes the clueless description writer to come save the day. It's VR time, baby! Jeremy, Ryan, and Jack are ready to feed some burgers to some zombies. Maybe some pizza? I don't know. That's what I was able to gather from the first few minuites. Whoa! Why isn't Jeremy licensed to sell these food products? That's highly irresponsible. Come on, Jeremy. Why does that guy get double lettuce?","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cce36eb-4e15-4cd5-82d1-022031244202/sm/2013912-1484265091485-VR_DeadHungry.png","duration":1748,"publication_date":"2017-01-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-242-dark-monopoly-part-3","changefreq":"weekly","video":[{"title":"2017:E12 - Minecraft – Episode 242 – Dark Monopoly Part 3","description":"I feel so unsureAs we portal down to the Monopoly boardAs the copter flies, and the donkey diesCalls to mind a three dub failWill send you off to jail\n\nI'm never gonna craft againGuilty mining with no rhythmThough it's easy to advanceYou could get dicked by chance","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-242-dark-monopoly-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41ee8568-dd97-4047-8b60-b38313462eea/sm/2013912-1484238409644-minecraft3.jpg","duration":3391,"publication_date":"2017-01-12T16:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2017-seqway","changefreq":"weekly","video":[{"title":"2017:E2 - Michael's Segway Tour","description":"Whip out your segway and punch it, Michael's gonna teach you how to driiiiiiift!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2017-seqway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1f73734-7e4e-4dd5-a839-0361d553c115/sm/2013912-1484179219934-SegwayThumbnail.jpg","duration":611,"publication_date":"2017-01-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2017-7-days-to-die-eighth-day","changefreq":"weekly","video":[{"title":"2017:E2 - 7 Days to Die - Eighth Day ","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEESThe Achievement Hunters are back in 7 Days to Die! There are more zombies, more bunker building, and more death-defying 'hold my beer' moments as the story continues. In this episode: Ryan, Gavin, Michael and Jeremy try to survive another night in the town overrun by zombies, while Jack and Geoff go on a nug run.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2017-7-days-to-die-eighth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07d6987a-2e3d-4d89-99f0-f8d1930d6140/sm/2013912-1484165662779-AH_7Days_Day8_THUMB4.png","duration":3888,"publication_date":"2017-01-11T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-rainbow-six-siege-operation-red-crow","changefreq":"weekly","video":[{"title":"2017:E11 - Rainbow Six Siege: Operation Red Crow","description":"Cocked and loaded! - heh heh cocked - The boys are taking down terries again on the new skyscraper map in Rainbow Six Siege's Operation Red Crow DLC! Man, that was a mouthful - heh heh mouthful.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-rainbow-six-siege-operation-red-crow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37ee067e-1326-4563-9da7-509f1fbf6a9a/sm/2013912-1484159804404-R6_RedCrow_Thumbnail.jpg","duration":1795,"publication_date":"2017-01-11T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-21-post-show-o97fnh","changefreq":"weekly","video":[{"title":"2017:E1 - #21 Post Show","description":"The gang talks about what to expect from season 2, meta, longer episodes and more.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-21-post-show-o97fnh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf1403ec-84e3-444a-a1dc-b16a517c1247/sm/2013912-1484153467670-HH_2-1_-_PS_-_THUMB.jpg","duration":571,"publication_date":"2017-01-11T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-2-201","changefreq":"weekly","video":[{"title":"2017:E21 - The Search for the Spy Master - #21","description":"They are back! Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, and Dungeon Master Frank are in the city of Jackal Heart. Still separated into two teams, team one finds themselves stuck in an interrogation room. While team A is looking dapper in their new clothes and talking their way into the auction. Will they find the “Spy Master”?\n\nThis episode is sponsored by Blue Apron (http://cook.ba/2jeJr22)","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-2-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36df9f5e-4871-4638-9750-efddca2b9fb6/sm/2013912-1484065667412-HH2-1_-_THUMB.jpg","duration":10971,"publication_date":"2017-01-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-2017-rou-lets-play-tomb-raider","changefreq":"weekly","video":[{"title":"2017:E1 - Tomb Raider","description":"Spin and spin and spin around. What game ball will now be found? I guess you already know, since we picked it at the end of the last episode. It's time to shoot your friends and disregard ancient architecture for the sake of that sweet double kill! That's right - it's Tomb Raider's super-forgotten multiplayer mode! Lara Croft and a bunch of other random character models are ready to use whatever means they need to win this free-for-all fight. Guns. Bows. Arrows. Explosive barrels. And lots of bullshit spawn point proximity mines.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-2017-rou-lets-play-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3fb3756-608d-4a7f-9da6-ae4fb0d3a35c/sm/2013912-1483984793211-TombRaiderThumb_v002.png","duration":1599,"publication_date":"2017-01-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-dead-by-daylight-of-flesh-and-mud-dlc","changefreq":"weekly","video":[{"title":"2017:E10 - Dead by Daylight - Of Flesh and Mud DLC","description":"Ryan, Geoff, Michael, Jeremy, and Gavin play as The Hag in the new DLC - Of Flesh and Mud. This scary lady has some freaky surprises in store for our Achievement Hunters.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-dead-by-daylight-of-flesh-and-mud-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/846ef255-e5d5-4948-aae5-6693ae4e97db/sm/2013912-1483996434776-Projectname_THUMB1.png","duration":2261,"publication_date":"2017-01-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-brick-breakers-ahwu-for-january-9-th-2017-351","changefreq":"weekly","video":[{"title":"2017:E351 - Brick Breakers - AHWU for January 9th, 2017 (#351)","description":"Special thanks to Blue Apron for sponsoring today's AHWU. Get your first three meals free with free shipping by going to blueapron.com/AHWU .\n\n\n\n\n\n\n\nHey! Do you think you gots what it takes to be an Achievement Hunter? It's not just all game and games all day long. Some days you come to work and you have to break bricks with your fucking face! Your coworkers are just going to slap you straight in the dome with a hard-ass brick. Maybe it'll snap in two, or maybe it'll bounce off. But one thing's for sure - you need to make sure your skull is thick enough so your brain's not caved in with a fucking brick! And if you can't handles the bricks, you ain't gonna handles the games.\n\n\n\n\n\n\n\n\n\n\n\nAlso, please ignore that the \"brick\" is totally made of styrofoam. It makes the Achievement Hunter boys feel really really good about themselves.","player_loc":"https://roosterteeth.com/embed/ahwu-2017-brick-breakers-ahwu-for-january-9-th-2017-351","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a5d17b9-18bd-4c55-88cb-59d273258de4/sm/2013912-1483994484519-Ahwu.jpg","duration":503,"publication_date":"2017-01-09T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-4","changefreq":"weekly","video":[{"title":"2017:E9 - Let's Watch - Party Hard: High Crimes","description":"Jack, Ryan and Jeremy get back into the life of crime with the new Party Hard DLC, High Crimes.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/972862f7-f1e2-489a-995f-39bed117e169/sm/2013912-1483747337454-LW_PartyHardHighCrimesNewer.png","duration":4218,"publication_date":"2017-01-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-3","changefreq":"weekly","video":[{"title":"2017:E8 - VR Surgeon Simulator ER: Experience Reality Part 3","description":"Michael and Gavin finally wrap up their time in the operating room and move on to a more active surgical environment.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-vr-surgeon-simulator-e-r-experience-reality-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a411004c-d1cb-4c51-ac72-1cb96a970dba/sm/2013912-1483727972827-LP_VR_SurgeonSimulator3Newer.png","duration":2472,"publication_date":"2017-01-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-last-call-58-ba86fa","changefreq":"weekly","video":[{"title":"2017:E1 - Last Call #58","description":"The AH Crew stand up to talk about Jack on heelys, My 600-lb Life and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-last-call-58-ba86fa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18badb88-766c-489e-85a1-55b296d64778/sm/2013912-1483746173590-OFF58_-_PS_-_THUMB.jpg","duration":1048,"publication_date":"2017-01-08T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-let-s-watch-shantae-half-genie-hero","changefreq":"weekly","video":[{"title":"2017:E6 - Let's Watch - Shantae: Half-Genie Hero","description":"Join Michael as he sits down to play some Shantae: the half naked-est half-genie hero in all of video games. Get ready for a little bit of hair whippin', monkey climbin', genie dancin', webcam breakin' fun! Gavin and Jack are there too! Physically, at least.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-let-s-watch-shantae-half-genie-hero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7e8ac1b-ecc0-45ef-ad24-eb06499382c7/sm/2013912-1483656117436-LW_ShantaieHalfGenieHeroThumb.png","duration":1327,"publication_date":"2017-01-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-import-export-4-breakdown-recovery-and-cleanup-op","changefreq":"weekly","video":[{"title":"2017:E7 - GTA V - Breakdown Recovery and Cleanup Op","description":"Ryan, Michael, Gavin and Lil J continue to plow through the Special Vehicle Works missions, this time with the cantankerous Wastelander and the amphibious Blazer Aqua.\n\nMusic Credit: \"Blue Danube\" from Audio Network","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-import-export-4-breakdown-recovery-and-cleanup-op","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ada00e04-ac83-4583-89c0-bd1a525c3058/sm/2013912-1483720739153-GTA_Thumb_C.jpg","duration":2757,"publication_date":"2017-01-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2017-58-b8ataa","changefreq":"weekly","video":[{"title":"2017:E58 - Just a Charming F*ck - #58","description":"The AH Crew sit down to talk about heelys, Theater Mode, eating the broadcast department’s food, and more on this week's Off Topic!\n\nThis episode originally aired January 6, 2017 and is sponsored by JackThreads (http://bit.ly/2dO58Dr)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2017-58-b8ataa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb52b043-2975-4cbb-aaa8-8449c57d5871/sm/2013912-1483746744372-OFF58_-_THUMB.jpg","duration":9400,"publication_date":"2017-01-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-overwatch-unlimited-traps-and-turrets","changefreq":"weekly","video":[{"title":"2017:E3 - Overwatch - Unlimited Traps and Turrets","description":"Overwatch is a great game but for too long it's had a major problem. You could only put out one trap per Junkrat and one turret per Torbjorn. Well now that problem is a thing of the past! Let Matt and Trevor show you how to fix it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-overwatch-unlimited-traps-and-turrets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fcd3c6a-3c18-4986-945c-f95efa754d50/sm/1104396-1483759713863-thumb.jpg","duration":249,"publication_date":"2017-01-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2017","changefreq":"weekly","video":[{"title":"2017:E1 - Arizona Sunshine","description":"On this week's episode of VR the Champions, Michael and Ryan get up close and personal with the state of Arizona. The vast desert plains, broken down cars, abandoned building. Oh, and did I mention zombies? Lots and lots of zombies. Don't worry though, the guys are great at murdering little zombies, and they have proven that time and time again. So grab your favorite soda pop and some lightly salted popcorn because this is one hell of a ride.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89a237b0-ebb1-46e9-ad69-e03bb8b33105/sm/2013912-1483647679990-Arizona_Sunshine_Thumb.jpg","duration":1231,"publication_date":"2017-01-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2017-hanging-with-lil-j","changefreq":"weekly","video":[{"title":"2017:E1 - Hanging with Lil J ","description":"Jeremy, Gavin, Jack, Trevor and Matt have a really good idea at lunch. They have a free afternoon to hang around while the other Achievement Hunters are off playing Dungeons and Dragons. So what do they do? Check out this behind the scenes episode to see their masterpiece.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2017-hanging-with-lil-j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e8dc256-b848-41f0-8a63-f2ec0504fc5c/sm/2013912-1483641465443-HangingwithLilJ_Thumb1.png","duration":1328,"publication_date":"2017-01-05T18:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-minecraft-episode-241-pixelmon-part-5-i-m-a-computer","changefreq":"weekly","video":[{"title":"2017:E5 - Minecraft – Episode 241 – Pixelmon Part 5: I'm a Computer!","description":"The Achievement Hunter boys have gone back to AHto to continue their Pokémon journey. Pixelmon journey. Minecraft Poké-Pixel-Poké Journey. With the trading machine up and running, everyone can finally get a flying Pokémon. And with all these flying types at their disposal, that means a new quest can begin. A quest to be the very best, like no one ever was. They will travel across the land, searching far and wide for the optimal place to build a gym. And is it just me, or is that teeny tiny Wartortle just filled to the brim with evolution juice?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-minecraft-episode-241-pixelmon-part-5-i-m-a-computer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/188132f7-d343-4b1a-a982-747cf9b44a2d/sm/2013912-1483634387647-Pixelmon5Thumb.jpg","duration":3073,"publication_date":"2017-01-05T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-watch-dogs-2-bollard-blitz","changefreq":"weekly","video":[{"title":"2017:E2 - Watch Dogs 2 - Bollard Blitz","description":"I've never actually heard of a bollard. Like what are they? Honestly? Does a city really need to close one particular road so much that they just decided \"Hey forget having someone come and put traffic cones out here. Let's just put electronic posts in the ground that can destroy cars if someone hits them!\" Regardless of this, the world of Watch Dogs 2 is full of them. Being the ever opportune soul he is, Matt uses these weird unneccesary devices to his own sick twisted enjoyement. Hopefully it's for yours as well.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-watch-dogs-2-bollard-blitz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b0e7d4-d771-41d3-9ca0-d73873fac747/sm/2013912-1483546075337-wd1.jpg","duration":237,"publication_date":"2017-01-04T16:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-overcooked-festive-seasoning-part-2","changefreq":"weekly","video":[{"title":"2017:E4 - Overcooked Festive Seasoning Part 2","description":"Keep the holidays going with your favorite Overcooked chefs. Join Ryan, Gavin, Michael and Jack as they do their best not to burn down everything around them.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-overcooked-festive-seasoning-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11ac7a26-4880-4582-b222-58df7987533d/sm/2013912-1483477332229-LP_OvercookedFestive2.png","duration":1775,"publication_date":"2017-01-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2017-plane-ol-new-year-ahwu-for-january-3-rd-2017-350","changefreq":"weekly","video":[{"title":"2017:E350 - Plane ol' New Year - AHWU for January 3rd, 2017 (#350)","description":"It's the first AHWU of 2017! The Achievement Hunter boys are ready to play with their new Christmas toys, which means high-powered shooty balls and tiny little drone babies. There's news, there's a tiny little games list, and certainly there's a fake game. There's also a description that makes the comments section go, \"Boy howdy. That description game sure is on point.\" Well, maybe not this week. Still getting back into the groove from the holidays. Next week though. Maybe.\n\n\n\n\n\n\n\nVideo of the Week\n\n\n\n\n\nCommunity Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2017-plane-ol-new-year-ahwu-for-january-3-rd-2017-350","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6ddc0fa-fd3d-47e9-a28d-e60c9ea2b4ca/sm/2013912-1483479235802-ahwu_thumb_1.jpg","duration":392,"publication_date":"2017-01-03T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-vermintide","changefreq":"weekly","video":[{"title":"2017:E3 - Warhammer: End Times - Vermintide's Karak Azgaraz DLC ","description":"If you missed the box, check out Warhammer - Vermintide here on Steam: http://bit.ly/2gGYCPg. Join Michael, Gavin, Ryan and Jeremy as they fight off endless hordes of rats. Will the team be able to reach the safe point together? Or will they split up and get taken down one by one?","player_loc":"https://roosterteeth.com/embed/lets-play-2017-vermintide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70bff8ba-b077-4350-b97a-03aea543ac5a/sm/2013912-1483466320473-LP_Vermintide_THUMB3.png","duration":3380,"publication_date":"2017-01-03T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2017-gta-v-ramp-car-catch","changefreq":"weekly","video":[{"title":"2017:E1 - GTA V - Ramp Car Catch","description":"Inspired after their last Let's Play in GTA V, Team Nice Dynamite takes on Team Battle Buddies to see who can catch the most cars in a MTL Wastelander using the BF Ramp Buggies from the Import/Export DLC.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2017-gta-v-ramp-car-catch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eee8877b-49dc-4935-96ed-59e76fd03b71/sm/2013912-1483140167556-RampCarCatch_THUMB_c.jpg","duration":600,"publication_date":"2017-01-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2017-2","changefreq":"weekly","video":[{"title":"2017:E2 - Let's Watch - Hitman - The Guru","description":"Alright, Agent 47. Your next task is simple. This is Richard Magee - he's a self-help guru. He's written this pretty sweet book, \"Love Yourself: A Guide to Loving Yourself Because Lord Knows I'm Not Going to Love Your Sorry Ass Because I'm a Bad Guy When it Comes Down to it.\" We're not exactly sure what bad things Mr. Magee is up to, but it seems like the title of his book has really tipped us off to the fact he may be up to no good. You know us, Agent 47. \"Take no chances,\" and all that. Snipe ol' Richard right in the dick. Don't even use the silencer, just fuckin' get in there and blast him. Pow pow kapow. Good luck, Agent. And don't get caught.  ","player_loc":"https://roosterteeth.com/embed/let-s-watch-2017-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f8577fb-5f13-44a7-b508-983e6a877a7f/sm/2013912-1483177148328-HitmanThumb.png","duration":2529,"publication_date":"2017-01-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rainbow-six-siege-with-gus","changefreq":"weekly","video":[{"title":"2016:E435 - Rainbow Six: Siege with Gus","description":"Gus joins Geoff, Ryan, Jack and Gavin in a friendly game of Rainbow Six: Siege. Together, they prove that the best of friends can still be very dangerous teammates. ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rainbow-six-siege-with-gus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d36616b-8245-4bf6-95c9-97f92d6f10e6/sm/1104396-1482359856630-LP_RainbowSixSeige-wGus_THUMB.png","duration":2688,"publication_date":"2017-01-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-30-a8ag7f","changefreq":"weekly","video":[{"title":"2016:E26 - Smashy Smashy - Last Call #57","description":"The AH Crew stand up to talk about segways, smashing stuff, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-30-a8ag7f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3efd9f72-f850-48eb-9ebc-4d7c55b4f08d/sm/2013912-1483136570729-OFF57_-_PS_-_THUMB.jpg","duration":796,"publication_date":"2017-01-01T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2017-play-pals-what-s-under-your-blanket","changefreq":"weekly","video":[{"title":"2017:E1 - Play Pals - What's Under Your Blanket!?","description":"Michael and Gavin have a quick wank in the closet - and by closet we mean the AH Stream Room. Don't get caught, boys!","player_loc":"https://roosterteeth.com/embed/play-pals-2017-play-pals-what-s-under-your-blanket","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de665b49-6676-42d1-9de9-46a054da2dd3/sm/2013912-1483135201482-Thumbnail_WhatsUnderTheBlanket.jpg","duration":692,"publication_date":"2017-01-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2017-gta-v-import-export-3-escape-excort","changefreq":"weekly","video":[{"title":"2017:E1 - GTA V - Escape Escort","description":"GTA with facecams! Ryan, Michael, and Gavin force Jeremy to record this special episode from his now twelve-foot-tall desk. Hopefully Jeremy's new found height will be an advantage as the crew heists their way through more Import/Export DLC.","player_loc":"https://roosterteeth.com/embed/lets-play-2017-gta-v-import-export-3-escape-excort","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cca6df2-2ab0-48cf-bb13-2077edf4f114/sm/2013912-1483136116316-Thumb_LP_GTA_ImportExport3_SpecialVehicleWork.jpg","duration":4203,"publication_date":"2017-01-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-57-a9abff","changefreq":"weekly","video":[{"title":"2016:E57 - That's Not Me Being Racist - #57","description":"The AH Crew sit down to talk about New Year’s Eve, Gavin’s house, favorite things in 2016, and more on this week's Off Topic!\n\nThis episode originally aired December 30, 2016 and is sponsored by Blue Apron (http://cook.ba/2anKnjV)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-57-a9abff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deeb61d1-1cb6-4822-95ae-97c47d539fb9/sm/2013912-1483137354443-OFF57_-_THUMB.jpg","duration":8135,"publication_date":"2016-12-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-28","changefreq":"weekly","video":[{"title":"2016:E151 - VR The Champions - Diner Duo","description":"On this week's VR the Champions, join Ryan, Michael, Jeremy, and Jack as they Play Diner Duo. The art of cookery is harder to master than you think. The skill of slicing a cucumber or grilling a burger can lead to more frustration than you would realize. Good thing there's pie though. Gotta keep all those customers happy, and throwing pie at them is by far the best way to do it. Who doesn't like pie?","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b57d951e-2f76-4765-b070-4f6a5b861d37/sm/2013912-1481647222397-VR_DINER_DUO.png","duration":1804,"publication_date":"2016-12-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trivia-murder-party-with-derrick-mega64","changefreq":"weekly","video":[{"title":"2016:E443 - Trivia Murder Party with Derrick (Mega64)","description":"Derrick from Mega64 had such a good time playing Drawful with Achievement Hunter. They were drawing and laughing and using their two crayons as chopsticks. It was a lovely, lovely time. So lovely, in fact, they didn't notice that a weird, creepy serial killer stuffed them all into burlap sacks and threw them into a crusty old basement. Now their task is simple - answer trivia questions, try not to be killed, and continue having tons of fun!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trivia-murder-party-with-derrick-mega64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d172803-2633-4be6-8a70-ee7a2939a89c/sm/2013912-1483114674248-MurderPartyThumb.png","duration":2954,"publication_date":"2016-12-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-sanrio-world-smash-ball-with-game-attack","changefreq":"weekly","video":[{"title":"2016:E439 - Sanrio World Smash Ball with Game Attack","description":"Ryan disses and smack talks Jack and Jack smacks his lil disks back as the Game Attack kids lay a chitchat track.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-sanrio-world-smash-ball-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4895d88-2852-451e-b337-b78b0351e539/sm/1104396-1482363650719-Sanrio_World_Smash_Ball_THUMB.jpg","duration":809,"publication_date":"2016-12-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-240-pest-control","changefreq":"weekly","video":[{"title":"2016:E437 - Minecraft – Episode 240 - Pest Control","description":"Ryan, can you fast forward me a video? Ryan, can you fast forward me an ocean monument? Ryan, can you fast forward me a bucket of milk? Ryan, can you fast forward me several carrots in varying sizes? Ryan, can you fast forward me sponges? Ryan, can you fast forward me stacks of TNT? Ryan, can you fast forward me an ending? Ryan, can you fast forward me a portal to The End? Ryan, can you fast forward me a diamond sword? Ryan, can you fast forward me a mariachi band and a small dog in a poncho? Ryan, can you fast forward me a second Ryan so you can work together to fast forward me stuff faster? Ryan, can you fast forward me a cure for sticky keys? Ryan?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-240-pest-control","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb804c19-748e-4654-955a-fc6253918e9c/sm/1104396-1482360627972-PestControlThumb.jpg","duration":2957,"publication_date":"2016-12-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-249","changefreq":"weekly","video":[{"title":"2016:E349 - Shots Fired - AHWU for December 28th, 2016 (349)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU\n\n\n\nCheck out Yogscast: https://www.twitch.tv/yogscast\n\n\n\n\n\nMichael and Jack found out no one made an AHWU, so they made one! Now that you have one, Michael is going to play with the gun he bought for Lil J - because Christmas.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-249","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfa4e7d-a545-46a3-826e-d8ca411ca125/sm/2013912-1482974983323-Thumb_AHWU_349.jpg","duration":543,"publication_date":"2016-12-29T01:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-pocket-play-pac-man-256-2","changefreq":"weekly","video":[{"title":"2016:E442 - Pocket Play - Pac-man 256","description":"Special thanks to Amazon Appstore and Amazon Coins for sponsoring this video. To learn how to buy Amazon coins you can check out this link https://www.amazon.com/dp/B0096E8EC2/ref=mas_dp_prtnr_Coin_mbb_120616_2\n\n\n\nJoin Michael in this very special Pocket Play as he plays some Pac-man 256. It's full of all sorts of gobbley goodness.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-pocket-play-pac-man-256-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e49bd45-e491-40ea-ae47-610f04d71e14/sm/2013912-1482942512471-pac_Thumb.jpg","duration":1050,"publication_date":"2016-12-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-animated-2017","changefreq":"weekly","video":[{"title":"2017:E1 - Gavin Explains \"The Star War\"","description":"A long time ago in a Galaxy far, far away.... Gavin tried to explain the Star Wars universe. Animation by Shaun Cunningham. Original video: Let's Play - Star Wars Battlefront 2: http://bit.ly/2hxfexX","player_loc":"https://roosterteeth.com/embed/ah-animated-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57074087-0c77-4543-8fd8-46f28359f5ac/sm/2013912-1482941484455-Animation_StarWar_THUMB.png","duration":143,"publication_date":"2016-12-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rocket-league-rumble-dlc","changefreq":"weekly","video":[{"title":"2016:E436 - Rocket League: Rumble DLC","description":"Ryan, Jack, Jeremy, Michael, Gavin, and Matt use tornadoes, ice punches, boots kicks, and spikes to play a chaotic game of Rocket League. ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rocket-league-rumble-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87d61c9c-8cdf-4a54-bbe1-3f184d0fc431/sm/1104396-1482360202845-LP_RocketLeagueRumbleDLC_THUMB2_-_3.png","duration":1821,"publication_date":"2016-12-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-148-michael-vs-matt","changefreq":"weekly","video":[{"title":"2016:E148 - Episode 148: Michael VS Matt","description":"Michael has challenged Matt in this week's episode of versus. He knew that the right game choice could totally dick over Matt's chances of winning. Michael needed a game where it would be possible for Matt to suck. Hard. Maybe something with some intense, balls-to-the-walls action. Something something something penis pun clever clever clever. It's time for some Genital Jousting.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-148-michael-vs-matt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a7f0a70-19bf-4d30-b3b9-d99a9d6dd6eb/sm/2013912-1481652186867-vs_thumg.jpg","duration":650,"publication_date":"2016-12-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overcooked-festive-seasoning","changefreq":"weekly","video":[{"title":"2016:E438 - Overcooked Festive Seasoning","description":"It's the holidays, and that means more Overcooked levels for our favorite chefs! Join Ryan, Gavin, Michael and Jeremy as they cook soups, turkeys and - wait is that a blowtorch? ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overcooked-festive-seasoning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a38c2b-b212-43dc-87c3-0f14b964ed3b/sm/1104396-1482363113457-LP_Overcooked-FestiveSeasoning_THUMB4.png","duration":2783,"publication_date":"2016-12-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-season-1-4","changefreq":"weekly","video":[{"title":"2016:E420 - RouLetsPlay - Starwhal","description":"Don't go breaking our hearts! RouLetsPlay returns with the stabbiest of space whales.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/799b6cc3-f318-49be-9fc3-e5b32444a608/sm/2013912-1481319012938-starwhal04.jpg","duration":1920,"publication_date":"2016-12-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-vr-surgeon-simulator-e-r-experience-reality-part-2","changefreq":"weekly","video":[{"title":"2016:E432 - VR Surgeon Simulator ER: Experience Reality Part 2","description":"Brain replacement and eye replacement surgery can be tricky. Luckily, we have the best surgeons in town. Paging Dr. Jones and Dr. Free to the OR. Dr. Jones and Dr. Free to the OR.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-vr-surgeon-simulator-e-r-experience-reality-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/872f98e5-b87a-42fd-bcf8-b864fb0bc82c/sm/1104396-1482358040438-VR_SURGEON_SIM_PART_2.png","duration":2771,"publication_date":"2016-12-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-29-9-aba7a","changefreq":"weekly","video":[{"title":"2016:E25 - Last Call #29","description":"The AH Crew stand up to talk about theme park differences, drinking eggnog, arm wrestling, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-29-9-aba7a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7dfd215-29da-4afc-83c9-6d4b4cdd498e/sm/2369885-1482427977401-OFF56_-_THUMB.jpg","duration":1546,"publication_date":"2016-12-25T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-horde-mode-heroes-and-halfwits-christmas-special","changefreq":"weekly","video":[{"title":"2016:E12 - A Christmas Horde Mode Special","description":"Dungeon Master Frank takes Gus, Geoff, Griffon, Ryan, and Michael back to the ship for a special Horde Mode round of battles. ","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-horde-mode-heroes-and-halfwits-christmas-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5664a232-4bd3-41f9-82ae-561628ecc1d1/sm/2369885-1482361705618-HHSP_-_THUMB.jpg","duration":9998,"publication_date":"2016-12-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-move-or-die-with-yuri-and-tara","changefreq":"weekly","video":[{"title":"2016:E154 - Move or Die with Yuri Lowenthal and Tara Platt","description":"Michael and Lindsay get to sit down with Yuri Lowenthal and Tara Platt to enjoy some Move or Die. In this fast-paced kill space, anybody could win. Will Yuri and Tara's voice acting skills be distracting enough to secure a victory? Will Michael forget to move and rage quit out of the room? Find out now as these four combatants enter the arena for another installment of MOVE or DIE!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-move-or-die-with-yuri-and-tara","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/562558c7-74e3-477b-b24b-b34a910634ff/sm/1230840-1482439831499-LP_Move_or_Die_with_Yuri_and_Tara_Thumb.png","duration":1406,"publication_date":"2016-12-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-game-time-with-greg-miller","changefreq":"weekly","video":[{"title":"2016:E441 - Game Time with Greg Miller","description":" Burnie sits down with Kinda Funny's Greg Miller as they endure the buggy PC port of No Man's Sky. ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-game-time-with-greg-miller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76173064-4ecc-4215-bab9-a28aef67fac5/sm/1230840-1482441293604-GT_With_Greg_Miller_Thumb.png","duration":6916,"publication_date":"2016-12-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-gta-v-import-export-2","changefreq":"weekly","video":[{"title":"2016:E434 - GTA V - Import/Export 2","description":"Twelve wheels a-rolling,\n\neleven trolls a-trolling,ten boosters boosting,nine parachutes 'chuting,eight tacos tasted,seven film stars wasted,six cops a-shooting,FIVE STAR RAMPAGE!four packs of C4,three airport ramps,two cargobobs,and a flying Imponte Ruiner!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-gta-v-import-export-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f3d48f9-6174-4010-9492-d7384fcead7c/sm/1104396-1482359181047-ImportExport2_b.jpg","duration":3360,"publication_date":"2016-12-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-56-na8ana","changefreq":"weekly","video":[{"title":"2016:E56 - My House Will Choke a B*tch - #56","description":"The AH Crew sit down to talk about remote control helicopter stunts, GTA Import/Export DLC, the return of attic squirrels,and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-56-na8ana","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ad46be3-37bd-43e6-9a9f-d05a668cd5d1/sm/2369885-1482427585220-OFF56_-_THUMB.jpg","duration":7972,"publication_date":"2016-12-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-27","changefreq":"weekly","video":[{"title":"2016:E147 - VR the Champions - Escape VR: The Basement","description":"This week in VR the Champions, Jack gets to play Escape VR: The Basement. In this righties-are-righty virtual world, the ability to not use your left hand can make things tricky...especially since Jack is left handed. Escape may not be likely - the roomba has been stuck there forever...","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/439943de-ef9c-473e-87dc-ff018b7dc79d/sm/2013912-1481572055658-VR_EscapeBasement.png","duration":1544,"publication_date":"2016-12-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shenanigans-2016-jeremy-gets-a-raise","changefreq":"weekly","video":[{"title":"2016:E1 - Jeremy Gets a Raise","description":"Today's the day. Jeremy is finally getting a raise, but not in the way he was hoping for.","player_loc":"https://roosterteeth.com/embed/shenanigans-2016-jeremy-gets-a-raise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7022614-092f-466d-8708-4c0d36f6b630/sm/1230840-1482440890207-Jeremy_Raise_Thumbnail.jpg","duration":1116,"publication_date":"2016-12-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-driver-san-fransisco-with-game-attack","changefreq":"weekly","video":[{"title":"2016:E433 - Driver: San Fransisco with Game Attack","description":"Cars fly as lightning strikes when Game Attack challenges Achievement Hunter to see who can survive the longest in a California car storm. Watch Part One here","player_loc":"https://roosterteeth.com/embed/lets-play-2016-driver-san-fransisco-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/033a259f-dffc-4f12-b048-aee520a2476a/sm/1104396-1482358549444-Thumb_SanFranDriver_B.jpg","duration":1392,"publication_date":"2016-12-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-239-freezeezy-peak","changefreq":"weekly","video":[{"title":"2016:E431 - Minecraft – Episode 239 - Freezeezy Peak","description":"Heeeeee he he he he he he he\n\n\n\nOl' Grunty here - what's up you jerks?\n\nThis special treat's my greatest work\n\nI took that peak with all its freezy\n\n(To make the Bear and Bird uneasy)\n\nAnd brought it here to blocky land\n\nWhere your head and feet and hand\n\nAre lacking round - completely square\n\nEven my witchy underwear\n\nThe task remains yet still the same\n\nTo be the winner of this game\n\nGo around and find the jiggies\n\nIf you can, you stupid piggies\n\nWhoever finds all ten will win\n\nA golden tower - so let's begin! ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-239-freezeezy-peak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/debe28c4-1a07-42d4-a06d-40fc70f2029a/sm/1104396-1482355205119-MCFreezzeezyThumb.jpg","duration":2550,"publication_date":"2016-12-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-98","changefreq":"weekly","video":[{"title":"2016:E430 - Let's Watch - Dead Rising 4","description":"Dash past lingerie\n\nIn a zombie mall all dayMowing down the hordesWith chainsaws, bombs, and swords HO HO HO Through Hot Topic and Zales,Fitch and AbercrombieUse baseball bats with nailsTo kill each fuckin' zombie\n\n\n\n\n\n\n\nDead RisingDead RisingFrank West's on the scene\"I have coveredWars, you knowand I just killed fifteen\"","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5899438b-e147-47c2-95d9-cab8a9b6a5c0/sm/1104396-1482353400320-LW_DeadRising_4.png","duration":3382,"publication_date":"2016-12-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-rising-4","changefreq":"weekly","video":[{"title":"2016:E427 - Dead Rising 4","description":"Thanks to Turtle Beach for sponsoring this video. Check out the Turtle Beach Stealth 420X+ headsets for Xbox One here: http://amzn.to/2i15Kba\n\n\n\n\n\n\n\n\n\n\n\n\n\nGear a zombie? Defeat a zombie. Achievement Hunter celebrate Christmas Die Hard style, with lots of blood, explosions, and general mayhem in Dead Rising 4's co-op mode.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-rising-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e33cb67f-c603-4ad7-8ece-9783ad86a96d/sm/1104396-1481909386483-deadrising.jpg","duration":1913,"publication_date":"2016-12-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2016-secret-santa","changefreq":"weekly","video":[{"title":"2016:E3 - Secret Santa","description":"He screams at you when you're sleeping. He throws blows when you're awake. He doesn't care if you're bad or good, he just wants to make your ears ache. OOOOOOOOOOOOOOOH! Hateful holidays, everyone. ","player_loc":"https://roosterteeth.com/embed/rage-quit-2016-secret-santa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166bd32d-279f-4585-9c3b-ee1d8f44b484/sm/1104396-1482269281301-RQ_SecretSanta.png","duration":941,"publication_date":"2016-12-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-quick-draw","changefreq":"weekly","video":[{"title":"2016:E429 - Quick, Draw!","description":"Google's AI tries to comprehend the deep mysteries hidden in the works of the great artists known as Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-quick-draw","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4956a1f6-4fac-42aa-8815-15efa137a25c/sm/1104396-1482250269771-Solo_Thumbnail_Template.jpg","duration":1522,"publication_date":"2016-12-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-torchin-it-up-ahwu-for-december-19-th-2016-348","changefreq":"weekly","video":[{"title":"2016:E54 - Torchin' it Up - AHWU for December 19th, 2016 (#348)","description":"Thanks to JackThreads for sponsoring this video. Go to JackThreads com and enter cod AHWU and save 20% on anything you keep. www.JackThreads.com || \n\n\n\n\n\n\n\nWith the holidays quickly approaching, some of the guys just don't know how to hold in their excitement. Michael tends to talk more, Jeremy is more inclined to start doing gymnastics again (so he can climb to the top of his Christmas tree) and Gavin just likes to catch things on fire. Classic Gavin, always catching things on fire. The computers have all been burnt next door. The Bungalow is nothing but dust and ashes. And now...oh God. He's here...he's in the support room, OH MY GOD! HEL-\n\n\n\n\n\n\n\n\n\n\n\nGet your own Nug Club shirt at: https://store.roosterteeth.com/products/ah-nug-club-tee?variant=23204381253\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n|| Videos of the Week: 7 Days of 7 Days to Die || \n\n\n\n\n\n\n\n\n\n\n\nCommunity Videos of the Week: GTA V Skeeball and Halo Skeeball ||","player_loc":"https://roosterteeth.com/embed/ahwu-2016-torchin-it-up-ahwu-for-december-19-th-2016-348","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d383e151-444d-4417-8cf3-97b29c3f7148/sm/1104396-1482187756470-AhwuThumb.jpg","duration":763,"publication_date":"2016-12-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-97","changefreq":"weekly","video":[{"title":"2016:E426 - Let's Watch - Hitman Holiday Hoarders","description":"Twas the night before Christmas, but Ryan didn't care.\n\nTaking out Santa was his goal, and leaving him in his underwear.As he hung from the balcony with his trusty silenced pistol,He quickly jumped down and gave a quick whistle.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe enemy came closer to check out the noise,But Santa Ryan was there waiting, with a brick and his toys.He didn't see it coming, or really feel pain,Because Santa Ryan smashed a brick into his brain.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIt seemed a little brutal but it's Hitman, you know.Nothing can stop the Mad King, look he's yelling, \"Ho, Ho, Ho...\"With a twinkle in his eye, he plots his next attack,To the basement he goes. Oh, look, a bad guy. WHACK!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHe killed all of them, with a smile on his face.Then ran to the exit as if it were a hot race.Then came the cut-scene as the mission was done,Santa Ryan yells, \"Merry Christmas to All, damn killing is fun!\"","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99f12ecf-884d-4ed3-9d4c-22d5479e7ce6/sm/1104396-1481914418112-LW_HITMAN_CHRISTMAS_THUMB.png","duration":2493,"publication_date":"2016-12-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-party-8-koopa-s-tycoon-town-part-2","changefreq":"weekly","video":[{"title":"2016:E419 - Mario Party 8: Koopa's Tycoon Town Part 2","description":"Ryan, Gavin, Michael, and Jeremy are back to finish their Mario Party 8 throw-down! There's only ten more turns to make these hotels as fancy as possible and finish their gentrification of the neighborhood. Only one of them can be the ultimate Koopa's Tycoon Town Trumptacular town tycoon.\n\nOkay? Real question-in-the-description time. And this isn't some \"Who will win?!\" bullshit question either. Is the town itself called \"Koopa's Tycoon Town,\" or maybe just \"Tycoon Town\"? When you enter the town, is there a sign that says, \"Now entering Tycoon Town\"?\n\n\n\nIf they named the town \"Tycoon Town,\" aren't they really just asking for a bunch of business moguls to come in, polish up the hotels, and jack the rates? Isn't it sort of their own fault - a self-fulfilling prophesy that will lead to the economic collapse of Tycoon Town?\n\n\n\nFind out the answers to none of these questions and more in this video!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-party-8-koopa-s-tycoon-town-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90067a70-e25f-4ba8-a6f7-d6a6d26adf51/sm/2013912-1481317500224-mario_part2.jpg","duration":3145,"publication_date":"2016-12-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-28-ak8aha","changefreq":"weekly","video":[{"title":"2016:E24 - Last Call #28","description":"The AH Crew stand up to talk about the glitter aftermath, ideas for the new year, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-28-ak8aha","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/804a3714-3218-4c43-bdbe-1d105fe17386/sm/2369885-1482009803740-OFF55_-_PS_-_THUMB.jpg","duration":1128,"publication_date":"2016-12-18T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-drawful-with-derek-mega64","changefreq":"weekly","video":[{"title":"2016:E422 - Drawful with Derrick (Mega64)","description":"Derrick from Mega64 is in town, so Ryan thought we'd treat him to a fun little Jackbox Party game of Drawful 2! Ryan was really chomping at the bit to get this one down in the books, you can tell. Be sure to remind Ryan about how much he loves Drawful!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-drawful-with-derek-mega64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31de7043-265f-481c-ade3-8412c7dd242b/sm/2013912-1481565857576-Drawful_2_With_Derek_Thumb.jpg","duration":2209,"publication_date":"2016-12-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-import-export-dlc","changefreq":"weekly","video":[{"title":"2016:E428 - GTA V - Import/Export DLC","description":"Christmas came early for GTA players, with some of the best cars ever released coming out with the Import/Export DLC. Jeremy and Jack are out of the office, but that hasn't stopped the rest of Achievement Hunter from opening their presents!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-import-export-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85b10523-2400-4000-b36a-a022b3bb205b/sm/1104396-1481927074202-GTA_V_ImportExportDLCThumb_A.jpg","duration":3130,"publication_date":"2016-12-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-55-8-aha7a","changefreq":"weekly","video":[{"title":"2016:E55 - Fighting AIDS Through Middle-Earth - #55","description":"The AH Crew sit down to talk about Geoff’s new diet, chagas, glitter, and more on this week's Off Topic!\n\nThis episode originally aired December 16, 2016 and is sponsored by MVMT Watches (http://bit.ly/2gj6SVx) and Shari’s Berries (http://bit.ly/2gjcsXO)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-55-8-aha7a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f00ea78-2a2d-4698-9cca-a31d76f3770b/sm/2369885-1481926302864-OFF55_-_THUMB.jpg","duration":7348,"publication_date":"2016-12-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-7-days-of-7-days-to-die-seventh-day","changefreq":"weekly","video":[{"title":"2016:E153 - 7 Days of 7 Days to Die - Seventh Day ","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEESWhat's nice about zombie horde day? The next day is adventure day! The Achievement hunters are ready to go out and explore the world, take in the sites, loot some abandoned houses, and maybe buy something nice for the house. Yeah. Nothing will go wrong, right? In today's episode: Jack and Geoff travel to the traders while Ryan attempts to lead Michael, Jeremy, and Gavin to a new town.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-7-days-of-7-days-to-die-seventh-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b01fbc81-fa0b-4d3f-aa9b-4982702d57c3/sm/2013912-1481738438568-AH_7Days_Day7_THUMB2.png","duration":3836,"publication_date":"2016-12-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-days-of-7-days-to-die-sixth-day","changefreq":"weekly","video":[{"title":"2016:E152 - Days of 7 Days to Die - Sixth Day","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEES It's zombie horde day! Get out your best weapons, and make sure you're inside the bunker because it's going to be a deadly night. And yes, the 7 days didn't line up perfectly. But what matters is that the zombie horde is here today, and the Achievement Hunters have a long night ahead. In today's episode: Everyone prepares for zombies. There are lots of zombies.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-days-of-7-days-to-die-sixth-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ad572ff-89f9-4c0a-9875-acf6668bc6bb/sm/2013912-1481734560137-AH_7Days_Day6_THUMB3.png","duration":3363,"publication_date":"2016-12-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-gmod-hide-and-seek","changefreq":"weekly","video":[{"title":"2016:E425 - Gmod: Hide and Seek","description":"Geoff, Jack, Ryan, and Jeremy brought over their Game Attack buddies Sam and Bolen for some intense hidey-seeky action in Gmod: Hide and Seek. There's going to be hidin'. There's going to be seekin'. And if you order in the next three minutes, we'll even throw in the Patented Bolen method. \n\n\n\n\n\n\n\nEver need just an extra five seconds away from somebody before they get all up in your personal space? With the Patented Bolen Method, those extra five seconds are as good as yours. Just find the nearest box, crate, cabbage, or dog and hold it up in your face. The bigger the object, the better. Just be sure to swing it around wildly, and you will have all the alone time you want - as long as that time falls between one and five seconds. The Patented Bolen Method. From Game Attack!  ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-gmod-hide-and-seek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8c5c36b-dde6-4596-82a8-b0efbedecef9/sm/1104396-1481907646355-hide.jpg","duration":2423,"publication_date":"2016-12-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-for-honor-campaign","changefreq":"weekly","video":[{"title":"2016:E424 - For Honor Campaign","description":"Special thanks to Ubisoft for sponsoring this video. Join Jack and Jeremy as they get a sneak peek at a couple campaign missions in For Honor. Check out the game here: http://bit.ly/2cXouH2ESRB rating M.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-for-honor-campaign","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/311e2d13-1776-4d3f-b770-e6206c53870b/sm/2013912-1481757183093-forhonro.jpg","duration":2952,"publication_date":"2016-12-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-kojima-coming-to-rtx-ubisoft-breaks-the-law-guardians-of-the-galaxy-game-leaks","changefreq":"weekly","video":[{"title":"2016:E88 - Ubisoft Insider Trading? + Super Mario Run DATED + Guardians of the Galaxy Game Leaked","description":"We have some news of our own about Hideo Kojima and Extra Life. Some Ubisoft execs may have been caught practicing insider trading. Super Mario Run has a release date and price. The SAG-AFTRA strike may have leaked a Guardians of the Galaxy Telltale game. Twitter is improving its echo chamber capabilities. But wait, there's more. You'll never believe #5 OMG!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-kojima-coming-to-rtx-ubisoft-breaks-the-law-guardians-of-the-galaxy-game-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/729e3aba-edf1-4164-bcff-631f05a6481c/sm/24363-1479241674811-thumbnail.jpg","duration":536,"publication_date":"2016-11-15T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-fantastic-beasts-and-where-to-find-them-is-it-good","changefreq":"weekly","video":[{"title":"2016:E53 - Fantastic Beasts and Where to Find Them WORTH SEEING?","description":"Harry Potter's Wizarding World is making a return to the theaters... minus Harry Potter or the familiar setting of Hogwarts. Without those, can Fantastic Beasts capture the magic? Lucky we're here for that.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-fantastic-beasts-and-where-to-find-them-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e780bc-40d3-43cc-817b-88b33925e941/sm/24363-1479225773400-fb_is_it_good_thumb.jpg","duration":479,"publication_date":"2016-11-15T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-switch-price","changefreq":"weekly","video":[{"title":"2016:E500 - Nintendo Switch Price LEAKED?","description":"Hoo doggie that's a low price. Given that Nintendo likes to make a profit on their hardware, do these leaked prices even make sense?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-switch-price","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9af289be-5b07-49a0-9ed0-0d1d83fb4094/sm/2371242-1479168013388-FH_Thumb_13_copy_11.jpg","duration":463,"publication_date":"2016-11-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-watch-dogs-2-is-it-good-and-is-it-broken","changefreq":"weekly","video":[{"title":"2016:E357 - Watch Dogs 2: Is It Good? (And Is it Broken?)","description":"Reviews are here for Watch Dogs 2. Can it help the franchise recover from its underwhelming start? Looks like that's a yes, but... only the parts of the game that actually work.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-watch-dogs-2-is-it-good-and-is-it-broken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0221e009-07c5-4495-9876-7e792e67b843/sm/24363-1479165311786-thumbnail.jpg","duration":576,"publication_date":"2016-11-14T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-more-games-worse-on-play-station-4-pro-the-know-game-news","changefreq":"weekly","video":[{"title":"2016:E355 - More Games WORSE on PlayStation 4 Pro - The Know Game News","description":"Skyrim isn't the only game suffering on PS4 Pro. Comparisons are showing that several games with PS4 Pro optimization are actually performing worse on PS4 Pro than the vanilla hardware, even in the same modes. This too shall pass (eventually) but it's worth considering if you're up in the air about buying one right now.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-more-games-worse-on-play-station-4-pro-the-know-game-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e82e35d-b3ad-43f3-ab1b-681c5f050e98/sm/24363-1478906553636-thumbnail.jpg","duration":579,"publication_date":"2016-11-11T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-181-post-show-8-g32ai","changefreq":"weekly","video":[{"title":"2016:E15 - Patch #181 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and Eddie Rivas as they discuss obscure games you love, Enslaved: Odyssey to the West, Let’s Build a Boat, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-181-post-show-8-g32ai","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/135ba96d-ef6e-4c0a-9b6b-11ba4135d219/sm/2013912-1478813896213-p181_-_PS_-_THUMB.jpg","duration":716,"publication_date":"2016-11-11T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-black-friday-best-gaming-deals","changefreq":"weekly","video":[{"title":"2016:E352 - Black Friday BEST GAMING DEALS","description":"What's better than spending all your money on gaming stuff? Spending less of your money to get more gaming stuff! Some of the Black Friday deals for games are pretty insane this year, so if you've been holding off on a new console or TV you could be in luck.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-black-friday-best-gaming-deals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f864a642-ba9e-4078-9957-1b130b3d154d/sm/24363-1478822736918-thumbnail.jpg","duration":436,"publication_date":"2016-11-11T00:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dishonored-2-broken-on-p-c","changefreq":"weekly","video":[{"title":"2016:E351 - Dishonored 2 BROKEN on PC?","description":"Dishonored 2 is arriving in the hands of those brave enough to pre-order a the game ahead of reviews, now that Bethesda's not providing early copies for critics and.... doff the tinfoil caps because you may be on to something. Early reports have the PC port of the game as being SUPER busted. AKA a Bethesda game.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dishonored-2-broken-on-p-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec9c8d53-cedf-4310-a9df-c6d59cdc387c/sm/24363-1478819760468-thumbnail.jpg","duration":429,"publication_date":"2016-11-10T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-skyrim-worse-on-ps4-pro-mass-effect-andromeda-not-a-trilogy-wii-u-officially-dead","changefreq":"weekly","video":[{"title":"2016:E87 - Skyrim WORSE on PS4 Pro? + Mass Effect Andromeda NOT a Trilogy + Wii U Officially Dead","description":"Skyrim has great resolution on PS4 Pro but suffers in other ways. Mass Effect Andromeda isn't kicking off a whole new trilogy. Nintendo is officially discontinuing the Wii U. CD Projekt is safe from a takeover. Prepare for lots more Spider-Man. and more roundupy news!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-skyrim-worse-on-ps4-pro-mass-effect-andromeda-not-a-trilogy-wii-u-officially-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/510c2ba7-63a2-4e13-8299-78132c8c201f/sm/24363-1478811571765-thumbnail.jpg","duration":479,"publication_date":"2016-11-10T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-181-by6s5v","changefreq":"weekly","video":[{"title":"2016:E181 - Mass Effect Sexy Time Is Back! - #181","description":"Join Gus Sorola, Ashley Jenkins, and Ryan Haywood as they discuss Mass Effect: Andromeda, Call of Duty: Infinite Warfare, Overwatch updates, and more on this week's The Patch! This episode originally aired on November 9, 2016. Sponsored by Loot Crate (http://bit.ly/2caUqYx) and MeUndies (http://bit.ly/29jAkYU)\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-181-by6s5v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b621ddba-f2bd-4965-94c7-f87ff4ea810f/sm/2013912-1478797608581-p181_-_TEMP_THUMB.jpg","duration":3806,"publication_date":"2016-11-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-fox-rebooting-x-men-could-they-join-m-c-u","changefreq":"weekly","video":[{"title":"2016:E51 - Fox Rebooting X-Men... Could They Join MCU?","description":"X-Men is in a lot of trouble. The franchise is losing Hugh Jackman. Jennifer Lawrence, James McAvoy, and Michael Fassbender may not be returning. FOX is planning to reconfigure the movies... again. Is it time to follow Sony's footsteps and work with Marvel to bring the X-Men to the Marvel Cinematic Universe?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-fox-rebooting-x-men-could-they-join-m-c-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80a5769e-fbc4-4180-b5b4-18318cbced7d/sm/24363-1478734908551-thumbnail.jpg","duration":564,"publication_date":"2016-11-10T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-sun-and-moon-leaks","changefreq":"weekly","video":[{"title":"2016:E319 - Pokemon Sun and Moon Leaks ","description":"The game's not out until next week, but of course it's leaked onto the internet early, which means data mining and spoilers galore.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-sun-and-moon-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be167265-83cb-498e-8fb5-d4d859f6ad97/sm/24363-1478724143873-thumbnail.jpg","duration":405,"publication_date":"2016-11-09T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-play-station-network-hacked-again","changefreq":"weekly","video":[{"title":"2016:E350 - PlayStation Network HACKED (Again)?","description":"PSN users in the UK have noted a dramatic uptick in hacked accounts over the last few days, with the PSN UK Twitter account being inundated with requests for support. Reportedly, users are also suffering unauthorized wallet deposits from their Paypal accounts and, in some cases, unauthorized purchases of games... specifically, FIFA. Footy!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-play-station-network-hacked-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/388b780d-161d-42ea-b438-cbde4ba4a62d/sm/24363-1478642605577-thumbnail.jpg","duration":468,"publication_date":"2016-11-09T00:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-more-mass-effect-andromeda-details-infinite-warfare-refunds-cd-projekt-red-takeover","changefreq":"weekly","video":[{"title":"2016:E86 - More Mass Effect Andromeda Details + Infinite Warfare Refunds + CD Projekt Red Takeover?","description":"After N7 Day we have even more details about what to expect when Mass Effect Andromeda drops. Microsoft is offering refunds for their version of Infinite Warfare over customer disappointment. CD Projekt may be fighting off (or preparing to fight one off). Blizzcon made new announcements for Diablo and Overwatch. Pokemon GO may be preparing to add a ton of new Pokemon to win you back. And even more news because it's a roundup!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-more-mass-effect-andromeda-details-infinite-warfare-refunds-cd-projekt-red-takeover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1098e07a-d304-4ba2-9280-ecf7a9f0eec5/sm/24363-1478637829504-thumbnail.jpg","duration":541,"publication_date":"2016-11-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-n7-day-hype","changefreq":"weekly","video":[{"title":"2016:E348 - Mass Effect: Andromeda NEW N7 DAY DETAILS","description":"It's N7 Day, and that means BioWare's finally talking about Mass Effect Andromeda. They're not giving us everything we want, but we have plenty of new details to chew on. Game versions, betas, loyalty missions, backwards compatibility for the originals, pretty views of space.... hold on to your butts! We're going in.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-n7-day-hype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3311dbd9-480c-4127-b0db-5d2e2c740e79/sm/24363-1478558407869-thumbnail.jpg","duration":612,"publication_date":"2016-11-08T03:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-know-ps4","changefreq":"weekly","video":[{"title":"2016:E500 - Reviews: Don't Buy a PS4 Pro?","description":"Say it ain't so, reviewers! We were all amped up to spray Sony with our money and now this. Maybe if we look hard enough we can find a reason to buy it anyway.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-know-ps4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3be1564-6fa3-4778-8f48-a8209974a08a/sm/2371242-1478569506594-PS4_Pro_Reveiw.jpg","duration":508,"publication_date":"2016-11-08T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-call-of-duty-infinite-warfare-already-a-f-a-i-l-u-r-e","changefreq":"weekly","video":[{"title":"2016:E347 - Call of Duty: Infinite Warfare ALREADY A FAILURE?","description":"Early sales figures are in for Call of Duty: Infinite Warfare, and it looks like the game's not doing so well. Of course, not doing so well for a Call of Duty game still means a bajillion copies, but take your wins where you can, haters.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-call-of-duty-infinite-warfare-already-a-f-a-i-l-u-r-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78c8ffac-cebb-4145-9498-dbcd70b687ec/sm/24363-1478545963572-thumbnail.jpg","duration":503,"publication_date":"2016-11-07T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-dishonored-2","changefreq":"weekly","video":[{"title":"2016:E346 - Know Before You Go... Dishonored 2","description":"Dishonored 2 is out in less than a week. Check out our overview of the game's story, features, and the differences you can expect when playing either Corvo or Emily in the game.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-dishonored-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3722ef2f-784d-4222-9f7d-656e04869b47/sm/24363-1478304977099-thumbnail.jpg","duration":462,"publication_date":"2016-11-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-call-of-duty-infinite-warfare-does-it-s-u-c-k","changefreq":"weekly","video":[{"title":"2016:E345 - Call of Duty: Infinite Warfare... Does It SUCK?","description":"Call of Duty: Infinite Warfare is out and it's time to see if it deserves all the hate it's been getting from anti-fans since its first reveal trailer. We'll take a look at critical reviews, user reviews, and weigh in to answer the most important question in all the world... DOES IT SUCK?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-call-of-duty-infinite-warfare-does-it-s-u-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea8895ab-849b-404b-a096-886de5fc92a2/sm/24363-1478299901214-thumbnail.jpg","duration":771,"publication_date":"2016-11-05T00:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ubisoft-killing-off-singleplayer-games","changefreq":"weekly","video":[{"title":"2016:E344 - Ubisoft Killing Off Singleplayer Games?","description":"Ubisoft wants your microtransaction dollars. That's why they're going to focus on multiplayer games instead of singleplayer ones. What could go wrong?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ubisoft-killing-off-singleplayer-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc1a9ffe-96ad-4c32-8fe9-c974b8d3ac97/sm/24363-1478298542924-thumbnail.jpg","duration":633,"publication_date":"2016-11-04T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-pro-launch-lineup-confirmed","changefreq":"weekly","video":[{"title":"2016:E343 - Best Games for PS4 Pro","description":"PS4 Pro will launch with 30 games optimized for the system. But not all optimizations are optimized optimally. Here's what you can expect for those to get the most out of your hamburger console.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-pro-launch-lineup-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37172a64-5ada-4693-82bc-e40de393aa2b/sm/24363-1478284869477-thumbnail.jpg","duration":409,"publication_date":"2016-11-04T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-180-post-show-095-dy6","changefreq":"weekly","video":[{"title":"2016:E14 - Patch #180 Post Show","description":"Join Ashley Jenkins, Burnie Burns, and Kdin Jenzen as they discuss Westworld, Jonathan Nolan, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-180-post-show-095-dy6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d02d29f9-d1d4-418b-9fdf-0fa4843a34b2/sm/2013912-1478272944238-p180_-_PS_-_THUMB.jpg","duration":931,"publication_date":"2016-11-04T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-watch-dogs-2-season-pass-a-rip-off-nintendo-switch-release-date-leaked-steam-fights-false-advertising","changefreq":"weekly","video":[{"title":"2016:E84 - Watch Dogs 2 Season Pass a Rip-Off? + Nintendo Switch Release Date LEAKED + Steam Fights False Advertising","description":"Ubisoft wants you to pay practically a full game to get some Watch Dogs 2 content, Nintendo Switch's release date might have leaked early, there's a new Wonder Woman trailer, and Steam makes some changes to fight false advertising. Boy, there was a lot of news happening this morning. ","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-watch-dogs-2-season-pass-a-rip-off-nintendo-switch-release-date-leaked-steam-fights-false-advertising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b4c516d-c312-4084-8b55-1acd731ae93f/sm/710924-1478207602103-thumbnail.jpg","duration":525,"publication_date":"2016-11-03T21:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-180-ufsg864","changefreq":"weekly","video":[{"title":"2016:E180 - Titanfall 2: Fall Harder - #180","description":"Join Ashley Jenkins, Burnie Burns, and Ryan Haywood as they discuss console generations, VR differences, Titanfall 2, and more on this week's The Patch! This episode originally aired on November 2, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn) and Trunk Club (http://bit.ly/28NEl7x)\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-180-ufsg864","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6de3e2d1-adbd-498d-a5f8-98d62cc2d708/sm/2013912-1478189449359-p180_-_THUMB.jpg","duration":3603,"publication_date":"2016-11-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-facebook","changefreq":"weekly","video":[{"title":"2016:E342 - Facebook Announces Steam Competitor","description":"Facebook decided it was too easy, too simple to play video games. Welcome to the OOM ZOOM.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-facebook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af5e22c8-7850-4338-bbda-44294c5ce46a/sm/2371242-1478136493445-Steam_Stab.jpg","duration":605,"publication_date":"2016-11-03T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefront-2-details-confirmed-titanfall-2-not-e-a-s-fault-they-swear","changefreq":"weekly","video":[{"title":"2016:E341 - Battlefront 2 DETAILS Confirmed! + Titanfall 2 Not EA's Fault, They Swear","description":"EA dropped some bombs on an investor call, including details for time and content on Star Wars: Battlefront 2. Plus, Titanfall 2 sales definitely aren't because they launched it in between the two biggest FPS titles of the year. Oh, and they're happy to delay Mass Effect because of all that money they have. INVESTORS!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefront-2-details-confirmed-titanfall-2-not-e-a-s-fault-they-swear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d35a846-25db-4113-8ff4-5c620560a5ff/sm/24363-1478127308088-thumbnail.jpg","duration":495,"publication_date":"2016-11-02T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-you-tuber-sued-over-kickstarter","changefreq":"weekly","video":[{"title":"2016:E340 - YouTuber SUED Over Kickstarter","description":"Popular YouTuber Criken has made a name for himself as a real character, and he's garnered support for a game development project called ICU via Kickstarter. Unfortunately, a new lawsuit alleges that it's actually not all his idea after all.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-you-tuber-sued-over-kickstarter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00fde475-665a-4c5d-bfd6-637fd5c2c004/sm/24363-1478116926805-thumbnail.jpg","duration":454,"publication_date":"2016-11-02T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-mass-effect-andromeda-teaser","changefreq":"weekly","video":[{"title":"2016:E339 - Mass Effect Andromeda NEW DETAILS","description":"Why do we have Mass Effect: Andromeda news? It's not N7 day. This is suspicious. But there's a teaser here and it has new details. Let's just be happy about that.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-mass-effect-andromeda-teaser","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cf7e68d-b222-4ab5-97fa-10b4909d1827/sm/24363-1478046180373-mea_thumbnail.jpg","duration":461,"publication_date":"2016-11-02T00:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-tomb-raider-l-e-a-k-e-d-titanfall-2-launch-flops-deadpool-director-joins-sonic-movie","changefreq":"weekly","video":[{"title":"2016:E83 - New Tomb Raider LEAKED? + Titanfall 2 Launch Flops + Deadpool Director Joins Sonic Movie","description":"Someone screen looked on a subway and got an eyeful of a new Tomb Raider game. Titanfall 2's launch comes in below the original game. Deadpool director Tim Miller has found his new project. Deadly Premonition director leaves gaming... for now. The law goes after a grandma over piracy. The Flash movie has lost another director. And there's more! It's all the news that's fit for a new month.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-tomb-raider-l-e-a-k-e-d-titanfall-2-launch-flops-deadpool-director-joins-sonic-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa84632d-675a-4b55-afb3-bb8960c58d4b/sm/24363-1478026508543-thumbnail.jpg","duration":487,"publication_date":"2016-11-01T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-skyrim-special-edition-best-console-mods","changefreq":"weekly","video":[{"title":"2016:E337 - Skyrim: Special Edition BEST Console Mods","description":"Skyrim Special Edition is here and so are console mods for the game. Here are some you should definitely be picking up.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-skyrim-special-edition-best-console-mods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c960fd85-2cae-4990-bf0a-3b0a7d165aa1/sm/24363-1477958614320-thumbnail.jpg","duration":504,"publication_date":"2016-11-01T00:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-know","changefreq":"weekly","video":[{"title":"2016:E336 - Call of Duty Infinite Warfare PAY TO WIN!?","description":"The most feared, most terrible insult now applied to the worst game franchise of all time. The worst has happened, my friends. Video games are ruined forever.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6431cff5-4154-4d81-9fde-ceabf2b64ce5/sm/2371242-1477953317515-FH_Thumb_13_copy_15.jpg","duration":306,"publication_date":"2016-11-01T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ea-taking-away-purchased-games","changefreq":"weekly","video":[{"title":"2016:E335 - EA TAKES AWAY Purchased Games","description":"SPOoOoOKY! All the digital game skeptics have reason to celebrate today, since EA has shown just why digital games can be a problem--even if you've purchased them, they can be taken away without warning. And that's exactly what's happened to Origin users in several countries.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ea-taking-away-purchased-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ee14240-6ee5-44a9-958c-8346c954c8fb/sm/24363-1477951103544-thumbnail.jpg","duration":572,"publication_date":"2016-10-31T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-know-before-you-go-the-history-of-doctor-strange","changefreq":"weekly","video":[{"title":"2016:E50 - Know Before You Go... The History of Doctor Strange","description":"Doctor Strange hits theaters this week (in North America, anyway, and yes, we are jealous of you lucky international types). If you're curious to find out how the Sorceror Supreme fits into the Marvel universe, here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-know-before-you-go-the-history-of-doctor-strange","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1509df26-df15-48f3-b151-d41e09420765/sm/24363-1477695077521-thumbnail.jpg","duration":420,"publication_date":"2016-10-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-titanfall-2-expected-to-f-a-i-l","changefreq":"weekly","video":[{"title":"2016:E334 - Titanfall 2 EXPECTED to FAIL?","description":"According to reviews, Titanfall 2 is a pretty great game and improves on the original, which sold 10 million copies. Should be a recipe for success, right? Not according to analysts, who have slashed sales projections for the game because of reasons we've known about for months. Silly analysts.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-titanfall-2-expected-to-f-a-i-l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f60274fc-da9a-4112-b049-9cf9d5d32fb2/sm/24363-1477696645034-thumbnail.jpg","duration":492,"publication_date":"2016-10-28T23:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-call-of-duty-infinite-warfare","changefreq":"weekly","video":[{"title":"2016:E333 - Know Before You Go... Call of Duty: Infinite Warfare","description":"Call of Duty: Infinite Warfare is taking the series to space in the most controversial move yet for the series. Lucky for them, it's also got zombies and Modern Warfare 2. Curious about what the game includes? Here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-call-of-duty-infinite-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb1dca3c-597b-4868-8340-a9ad843304de/sm/24363-1477690763861-thumbnail.jpg","duration":529,"publication_date":"2016-10-28T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-hello-games-no-man-s-sky-was-a-m-i-s-t-a-k-e-was-it-hacked","changefreq":"weekly","video":[{"title":"2016:E332 - Hello Games: \"No Man's Sky Was a MISTAKE\" ...was it hacked?","description":"Hello Games has broken its long silence on Twitter by admitting the game was a \"mistake.\" Then it gets weird.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-hello-games-no-man-s-sky-was-a-m-i-s-t-a-k-e-was-it-hacked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26cb28fc-96a0-4610-aa67-5419767543fb/sm/24363-1477683060543-thumbnail.jpg","duration":475,"publication_date":"2016-10-28T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-179-post-show","changefreq":"weekly","video":[{"title":"2016:E13 - Patch #179 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and Eddie Rivas as they discuss the video game voice actors strike and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-179-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e94f5e70-0e94-4425-92c6-4a7c8c1b93eb/sm/2013912-1477668288888-p179_-_PS_-_THUMB.jpg","duration":1062,"publication_date":"2016-10-28T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-is-this-xbox-scorpio-v-r","changefreq":"weekly","video":[{"title":"2016:E330 - Is This Xbox Scorpio VR?","description":"Xbox One Scorpio isn't coming until next year, but Microsoft just announced an entire line of VR headsets that will be compatible with Windows 10. Wait... Xbox One is now running Windows 10... Is this their answer to PlayStation VR?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-is-this-xbox-scorpio-v-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c6213db-fe58-4cf7-a87b-c570900ce23e/sm/24363-1477605738166-thumbnail.jpg","duration":534,"publication_date":"2016-10-27T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-bad-news-for-elder-scrolls-vi-vine-is-shutting-down-vr-demos-spread-eye-h-e-r-p-e-s","changefreq":"weekly","video":[{"title":"2016:E82 - Bad News for Elder Scrolls VI + Vine is Shutting Down + VR Demos Spread EYE HERPES?","description":"If you were hoping for a new Elder Scrolls game any time soon we have some bad news. We also have bad news if you like Vine. Or VR without eye infections. Or if you really like Uwe Boll... But there's good news if you like The Incredibles, so it's not all bad! Just... most of it.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-bad-news-for-elder-scrolls-vi-vine-is-shutting-down-vr-demos-spread-eye-h-e-r-p-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d86d9546-b4e8-48c2-a4d3-5eafc92b7bf3/sm/24363-1477601540131-thumbnail.jpg","duration":502,"publication_date":"2016-10-27T20:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-the-end-of-gaming-reviews-179","changefreq":"weekly","video":[{"title":"2016:E179 - The End of Gaming Reviews? - #179","description":"Join Gus Sorola, Ashley Jenkins, and Ryan Haywood as they discuss PlayStation VR, Nintendo Switch, Let’s Plays vs reviews, and more on this week's The Patch! This episode originally aired on October 26, 2016. Sponsored by Battlefield 1 (http://bit.ly/2ernU47) and Dollar Shave Club (http://bit.ly/2dscTyZ)","player_loc":"https://roosterteeth.com/embed/the-patch-2016-the-end-of-gaming-reviews-179","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/618f68de-ad62-4c64-9659-ed978a14e4d5/sm/2013912-1477582595287-p179.jpg","duration":3752,"publication_date":"2016-10-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-game-reviews-are-d-e-a-d","changefreq":"weekly","video":[{"title":"2016:E330 - Game Reviews are DEAD?","description":"A lot of games lately have declined to send out early review copies. Bethesda has doubled down on that policy by making it official. No more early review copies. Early promotional copies, though? Yeah, those are full steam ahead. It's raising questions about the place of game reviews for consumers and ethics on the part of video game companies. Let's talk about that.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-game-reviews-are-d-e-a-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/176fc07d-250e-44ff-8ce4-107401b50a18/sm/24363-1477531234034-game_review_thumbnail.jpg","duration":636,"publication_date":"2016-10-27T01:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1","changefreq":"weekly","video":[{"title":"2016:E329 - Google Fiber Cancels Expansions","description":"Say goodbye to dreams of actually downloading and playing a game in under a day unless you're already one of the chosen ones.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a50f5351-fc9c-4b9c-a3f4-93f043298646/sm/2371242-1477521036445-FH_Thumb_13_copy_7.jpg","duration":311,"publication_date":"2016-10-26T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gta-v-dlc-never-comign-out","changefreq":"weekly","video":[{"title":"2016:E328 - GTA V DLC NEVER Coming Out?","description":"After years of waiting for some kind of content for GTA V, it looks like that may never happen because Rockstar makes too much money from GTA Online.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gta-v-dlc-never-comign-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7544f09a-e76b-4124-91a0-73b25728f47d/sm/24363-1477438735652-THUMBNAIL.jpg","duration":445,"publication_date":"2016-10-26T02:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-titanfall-2-is-it-g-o-o-d","changefreq":"weekly","video":[{"title":"2016:E327 - Titanfall 2: IS IT GOOD?","description":"You've seen the Know Before You Go and you know what the features are. You've seen Real Steel and you could beat up Hugh Jackman. Now you want to do it in space. Titanfall 2 is out this week, reviews are coming in, and now we have an answer to your biggest question... is it GOOD?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-titanfall-2-is-it-g-o-o-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/528639ce-6e32-4c55-89f6-f2a1e3e4cd83/sm/24363-1477437242318-thumbnail.jpg","duration":583,"publication_date":"2016-10-25T23:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-battlefield-1-breaks-records-deadpool-2-in-trouble-recalls-after-d-do-s-attacks","changefreq":"weekly","video":[{"title":"2016:E81 - Battlefield 1 Breaks Records + Deadpool 2 in Trouble? + Recalls After DDoS Attacks","description":"Surprise! Battlefield 1 is doing pretty well commercially. Deadpool 2 has lost a key player over creative differences. Zombie botnets from the \"internet of things\" are what broke the \"internet of not-things\" last week. A game retailer is charging for demos of PlayStation VR. George Lucas isn't involved with Indiana Jones but that doesn't mean it's safe. And other fun news! It's round up time.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-battlefield-1-breaks-records-deadpool-2-in-trouble-recalls-after-d-do-s-attacks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54cf37fe-b229-4a62-9cca-c1f2c1cb3096/sm/24363-1477419724454-thumbnail.jpg","duration":478,"publication_date":"2016-10-25T18:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-cyberpunk","changefreq":"weekly","video":[{"title":"2016:E326 - Cyberpunk 2077 Out of Money?! - The Know","description":"CD Projekt has applied for additional funding to help Cyberpunk 2077 development. Does this mean the game's in trouble?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-cyberpunk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac4dc167-34f0-4784-99b9-35bfb2b0c571/sm/2371242-1477355611012-FH_Thumb_13_copy.jpg","duration":323,"publication_date":"2016-10-25T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-hidden-nintendo-switch-secrets-uncovered","changefreq":"weekly","video":[{"title":"2016:E325 - Hidden Nintendo Switch Secrets Uncovered?","description":"Nintendo may not be ready to share more details about their newly unveiled Switch console, but lucky for us there's a trailer to analyze frame by frame and patents that may shed more light on what the console has to offer.\n\n\n\nSponsor: Dollar Shave ClubGet your first month free (you just pay shipping!) Then there are no commitments and no hidden fees. Get razors delivered right to your door. Visit http://www.dollarshaveclub.com/know","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-hidden-nintendo-switch-secrets-uncovered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5997b7f4-8a25-42a4-8592-9c3448846555/sm/24363-1477350614190-thumbnail.jpg","duration":474,"publication_date":"2016-10-24T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-doctor-strange-is-it-g-o-o-d","changefreq":"weekly","video":[{"title":"2016:E49 - Doctor Strange: Is It GOOD?","description":"By the wondrous wand of Watoomb! Doctor Strange is coming, and the reviews are already here. So get ready for your bizarro, super cheesy references, and red capes coming back in style. Is the movie worth seeing? Let's take a look at the reviews.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-doctor-strange-is-it-g-o-o-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27aedfa8-cb6b-446a-a6e4-5e65beae7646/sm/24363-1477346655909-thumbnailv2.jpg","duration":502,"publication_date":"2016-10-24T22:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-titanfall-2","changefreq":"weekly","video":[{"title":"2016:E324 - Know Before You Go... Titanfall 2","description":"Titanfall 2 comes out this week with new modes, features, campaign, and a ton of new titans. Want to find out what's new and different from the first game? Here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-titanfall-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddf4bba3-4745-4aeb-a580-287e5ceab5fe/sm/24363-1477253595387-thumbnail.jpg","duration":417,"publication_date":"2016-10-23T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-video-game-voice-actors-on-strike","changefreq":"weekly","video":[{"title":"2016:E323 - Video Game Voice Actors ON STRIKE","description":"Get ready for a bunch of amateur performances, picketing, posturing, politics, and eventual compromises. SAG-AFTRA, the union that represents voice actors, has instituted a strike against video games that could impact Red Dead Redemption 2, Destiny, Call of Duty, and other major franchises. And it's effective NOW.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-video-game-voice-actors-on-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e42ea6f-e352-47a9-ad9c-e899d1655746/sm/24363-1477098965991-thumbnail.jpg","duration":479,"publication_date":"2016-10-22T01:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-switch-faces-backlash","changefreq":"weekly","video":[{"title":"2016:E322 - Nintendo Switch Faces BACKLASH","description":"Well, we had one positive day. Sort of. But today is a new day, and Nintendo's newly unveiled Switch console is facing some backlash over innovation, missing features, battery life, and lack of communication. ","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-switch-faces-backlash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce6cfd0-a23f-4a3e-a4bb-92be03e4d65c/sm/24363-1477088444513-thumbnail.jpg","duration":500,"publication_date":"2016-10-21T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-178-post-show","changefreq":"weekly","video":[{"title":"2016:E56 - Patch #178 Post Show ","description":"Join Ashley Jenkins, Mica Burton, and special guest Danny O’Dwyer as they discuss best DLC, Bethesda releases, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-178-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87721974-7091-4245-bf6f-7efc7c7bd097/sm/2013912-1477066290563-p178_-_PS_-_THUMB.jpg","duration":1109,"publication_date":"2016-10-21T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-more-nintendo-switch-details-logan-trailer-samsung-dmc-as-galaxy-gta-mod","changefreq":"weekly","video":[{"title":"2016:E80 - MORE Nintendo Switch Details + Logan Trailer + Samsung DMCAs Galaxy GTA Mod","description":"More details are coming out about Nintendo's Switch console after its official reveal... like that Skyrim actually isn't confirmed? And since this is apparently \"trailer day\" there's also a trailer for the final Last of Us....err...Wolverine movie, Logan. Samsung is trying to do max damage control on the explodey Galaxy Note 7 by DMCAing a GTA V mod. Watch Dogs 2 is being delayed on PC, probably to add sliders. And tons more roundup-worthy news!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-more-nintendo-switch-details-logan-trailer-samsung-dmc-as-galaxy-gta-mod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b3ce6d2-1612-451d-a4ed-80b11232a3f0/sm/24363-1477003912999-thumbnail.jpg","duration":450,"publication_date":"2016-10-20T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-red-dead-redemption-2-first-trailer-details-explained","changefreq":"weekly","video":[{"title":"2016:E321 - Red Dead Redemption 2 Trailer CONFIRMS First Details","description":"On the first day, Rockstar teased something red. On the second day, Rockstar made some cowboys. On the third day, Rockstar made Red Dead 3 devotees angry by naming the game Red Dead Redemption 2. On the fourth day they took a break and looked at their good work. On the fifth day, They showed us pretty trailers. And it was good.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-red-dead-redemption-2-first-trailer-details-explained","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfbe6316-3640-4e4b-9419-ba02212a8248/sm/24363-1477002342341-thumbnail.jpg","duration":634,"publication_date":"2016-10-20T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-dating-is-hell-178","changefreq":"weekly","video":[{"title":"2016:E178 - Dating Is Hell - #178","description":"Join Ashley Jenkins, Mica Burton, Ryan Haywood, and special guest Danny O’Dwyer as they discuss Red Dead Redemption 2 announcement, Battlefield 1, dating simulators, and more on this week's The Patch! This episode originally aired on October 19, 2016. Sponsored by Casper (http://bit.ly/2bBXb8f) and MVMT Watches (http://bit.ly/29xlwX4)","player_loc":"https://roosterteeth.com/embed/the-patch-2016-dating-is-hell-178","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abc77db2-c1ca-4944-8b69-6ea96e3ed64d/sm/2013912-1476990237374-p178_-_THUMB.jpg","duration":4063,"publication_date":"2016-10-20T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-switch-officially-revealed","changefreq":"weekly","video":[{"title":"2016:E320 - Nintendo Switch OFFICIALLY REVEALED","description":"We've been rumoring and leaking this thing for more than a year at this point, but now Nintendo NX has been officially revealed as Nintendo Switch and it's... well, it's everything we thought it was going to be. Here's everything we know about it so far. How it will work. What it might cost. All the games.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-switch-officially-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee07dcb-84a0-4893-b6f0-c930f25a3e64/sm/710924-1476987430115-thumbnail.jpg","duration":620,"publication_date":"2016-10-20T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-round-up-10182016","changefreq":"weekly","video":[{"title":"2016:E79 - Red Dead Redemption 2 IS REAL + Voice Actors STRIKE + Jurassic World 2 Like Star Wars","description":"Rockstar has confirmed Red Dead Redemption 2 and yes that is what it's called. Beyond Good & Evil 2 may actually be a reboot(ish). Video game voice actors are going on strike against working conditions. The world's oldest esports league is shutting down. Jurassic World 2 is going to get dark. And more! It's a  roundup!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-round-up-10182016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6633b9f3-8b63-4873-90cd-0540f7ad1aaf/sm/710924-1476828916386-thumbnail.jpg","duration":653,"publication_date":"2016-10-18T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-read-dead-redemption-2-coming-soon","changefreq":"weekly","video":[{"title":"2016:E318 - Diablo 4 Reveal at Blizzcon 2016?","description":"This is one of those long and winding road type stories, so stay a while and listen.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-read-dead-redemption-2-coming-soon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4242e4c0-e98c-4eaf-8ca5-0aef34392da6/sm/2371242-1476752931601-Diablo4.png","duration":568,"publication_date":"2016-10-18T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-is-it-good","changefreq":"weekly","video":[{"title":"2016:E317 - Battlefield: Is It Good?","description":"Battlefield 1 is out this week! You've seen the overview. You've watched Burnie get a contact high playing the game at E3. You've maybe even watched a trailer. But do you know...IS IT GOOD? If you don't, we've got you covered.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1393cd3d-2389-4673-9e3a-e25c75fb1cc6/sm/24363-1476805957002-BF1_IS_IT_GOOD_thumbnail.jpg","duration":452,"publication_date":"2016-10-18T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-red-dead-redemption-2-incoming","changefreq":"weekly","video":[{"title":"2016:E316 - Red Dead Redemption 2 INCOMING","description":"Oh Rockstar. You treat us mean and we stay keen. Just give us that sweet sweet Red Dead Redemption 2 or Red Dead 3 or whatever we're calling it and we won't ask for anything else except Red Dead 4 and maybe some more GTA games because let's face it... enough is never enough.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-red-dead-redemption-2-incoming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be42fa5e-e9f9-4f46-b7f6-6a006e556bdd/sm/24363-1476745175491-thumbnail.jpg","duration":516,"publication_date":"2016-10-17T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-civilization-vi","changefreq":"weekly","video":[{"title":"2016:E315 - Know Before You Go... Civilization VI","description":"Civilization VI is ready to turn the 4x strategy genre on its head once again. Choose a faction, lead your people through history and dominate the globe. Curious about what's different about this game and what it has to offer? Here's everything you need to know.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-civilization-vi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82af2e5c-e480-4912-9038-9fac9f055b1e/sm/24363-1476745075954-civilization_6_kbyg.jpg","duration":547,"publication_date":"2016-10-15T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-battlefield-1","changefreq":"weekly","video":[{"title":"2016:E314 - Know Before You Go... Battlefield 1","description":"Battlefield 1 takes the franchise into World War 1, exploring theaters of war around the world. Here's an overview of everything you can expect from the game.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-battlefield-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/950afcd1-be5d-467e-a698-e45751afab84/sm/24363-1476744979107-battlefield_1_kbyg.jpg","duration":507,"publication_date":"2016-10-14T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-177-post-show","changefreq":"weekly","video":[{"title":"2016:E12 - Patch #177 Post Show","description":"Join Ashley Jenkins, Andy Blanchard, Mica Burton, and Matt Bragg as they discuss introducing people to gaming, controllers, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-177-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ba2e09e-853c-4941-9862-5be04a0a54cd/sm/2013912-1476460168099-p177_-_PS_-_THUMB.jpg","duration":1278,"publication_date":"2016-10-14T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-177","changefreq":"weekly","video":[{"title":"2016:E177 - The Off Topic Crossover - #177","description":"Join Ashley Jenkins, Michael Jones, Mica Burton, and Matt Bragg as they discuss drivatars, Nintendo NX leaks, digital vs physical media, and more on this week's The Patch! This episode originally aired on October 13, 2016. Sponsored by Loot Crate (http://bit.ly/2caUqYx) and MeUndies (http://bit.ly/29jAkYU)","player_loc":"https://roosterteeth.com/embed/the-patch-2016-177","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f0074a3-1a1e-48ce-a8b8-5a5557f0f64c/sm/2013912-1476373485913-p177_-_TEMP_THUMB.jpg","duration":3691,"publication_date":"2016-10-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-mafia-3-does-it-suck-and-did-2-k-know","changefreq":"weekly","video":[{"title":"2016:E312 - Mafia 3: Does It SUCK (and did 2K know)?","description":"It took a while for Mafia 3 reviews to start coming in, since 2K didn't send early copies to critics. Now that they're here, though, they're not very favorable. Suspicious.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-mafia-3-does-it-suck-and-did-2-k-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60c45f3c-aba2-4195-b58e-46cecb2ba849/sm/24363-1476227608529-thumbnail.jpg","duration":538,"publication_date":"2016-10-11T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-20","changefreq":"weekly","video":[{"title":"2016:E78 - Accidental Overwatch Hackers + CS:GO Paid Graffiti Outrage + Daniel Craig Wants Bond","description":"Participants in Overwatch's ARG have accidentally hacked into other player accounts, Valve is in hot water with Counter-Strike: Global Offensive fans over charging for graffiti. Daniel Craig likes being Bond after all. We have details on Wasp's first appearance in the Marvel Cinematic Universe. Billionaires want to break us out of a simulation. And more! It's a roundup!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63ca024a-6bfe-4387-9933-266136b7919e/sm/24363-1476218176620-thumbnail.jpg","duration":486,"publication_date":"2016-10-11T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-most-hated-on-steam","changefreq":"weekly","video":[{"title":"2016:E311 - No Man's Sky MOST HATED on Steam","description":"What does it take to get Steam's lowest possible rating? Be a highly anticipated game that isn't all it cracked up to be, add a dash of furious gamers who want to be heard, and then take the developers off the internet so the only outlet for feedback is the ole gladiator thumbs down.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-most-hated-on-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80f8becc-21cb-4b60-9c88-57e792fa3295/sm/24363-1476144332691-thumbnail.jpg","duration":564,"publication_date":"2016-10-11T00:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-half-life-vr-leaks","changefreq":"weekly","video":[{"title":"2016:E310 - Half-life VR LEAKS?","description":"Either Valve are the biggest trolls in the world, which is entirely possible because they love treating us mean and keeping us keen, or some recent game updates are hinting at the existence of Half-life VR.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-half-life-vr-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90c8b428-d493-4f7a-bd6e-71e90ec532b0/sm/24363-1476144254967-thumbnail.jpg","duration":468,"publication_date":"2016-10-11T00:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-play-station-vr","changefreq":"weekly","video":[{"title":"2016:E309 - Know Before You Go... PlayStation VR","description":"Curious about what PlayStation VR is, exactly, how it stacks up to the competition, and what you can play on it? Never fear! We've got all the details you need to know.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-play-station-vr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46aaa2a1-98c1-4250-b03f-a358e497d459/sm/24363-1475885308320-thumbnail.jpg","duration":475,"publication_date":"2016-10-08T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-criminal-charges-for-gaming-d-do-s-attacks","changefreq":"weekly","video":[{"title":"2016:E67 - Criminal Charges for Gaming DDoS Attacks!","description":"Remember those annoying DDoS attacks on gaming networks over Christmas, or on Battle.net, or, well... just about anywhere, since they seem to happen a lot lately? Good news! The US is leveling criminal charges against a newly arrested pair of DDoS kiddies.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-criminal-charges-for-gaming-d-do-s-attacks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83bc0737-758b-4a49-94ad-91921f26537e/sm/24363-1475883863352-thumbnail.jpg","duration":483,"publication_date":"2016-10-07T23:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-more-vr-headsets-coming","changefreq":"weekly","video":[{"title":"2016:E66 - MORE VR Headsets Coming!","description":"You thought we had enough VR options? TOO BAD! Now you get more options! Both Oculus and Google have announced new headsets to take you out of this world and into a pretend one.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-more-vr-headsets-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f434d03d-b243-4e67-b0ae-a142c6b3d445/sm/24363-1475877020658-thumbnail.jpg","duration":557,"publication_date":"2016-10-07T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-176-post-show","changefreq":"weekly","video":[{"title":"2016:E11 - Patch #176 Post Show","description":"Join Kdin Jenzen, Ashley Jenkins, and Andy Blanchard as they discuss the Gears of War 4 Limited Edition Bundle, episodic games, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-176-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c483b1b-af8f-4def-9023-deb503435b32/sm/2013912-1475776366905-p176_-_PS_-_THUMB.jpg","duration":1175,"publication_date":"2016-10-07T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-mod-support-returns-to-p-s4-but","changefreq":"weekly","video":[{"title":"2016:E307 - Mod Support RETURNS to PS4! But...","description":"Good news, everyone! Mods are returning to PS4! As long as you have a flexible definition of mods, that is...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-mod-support-returns-to-p-s4-but","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/428a0649-9076-487d-a853-5d594a1e94fb/sm/24363-1475795910126-thumbnail.jpg","duration":484,"publication_date":"2016-10-07T02:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gears-of-war-4-is-it-g-o-o-d","changefreq":"weekly","video":[{"title":"2016:E308 - Gears of War 4: IS IT GOOD?","description":"Gears of War 4 is actually not the fourth game in the series but we'll let that slide because counting is hard. All we really want to know is if the game lives up to the whole Mad World aesthetic the original game's trailer promised... IS IT GOOD?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gears-of-war-4-is-it-g-o-o-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ffa0be0-44fb-4ff8-849c-697d53b90bc1/sm/24363-1475805262373-gow4_is_it_good_thumbnail.jpg","duration":447,"publication_date":"2016-10-07T01:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-microsoft-vs-bad-reviews-govt-threatens-valve-samsung-phones-still-exploding","changefreq":"weekly","video":[{"title":"2016:E76 - Microsoft vs Bad Reviews + Govt Threatens Valve + Samsung Phones STILL Exploding","description":"Xbox boss Phil Spencer isn't too happy with reviews he thinks are low just to get attention. Beyond Good & Evil 2 is confirmed... let's see if it sticks this time. The government is threatening Valve with criminal charges... but they're a bit late. We have details on Wolverine's last movie. Indonesia is ready to jail people fro memes. Yahoo's been spying on you and doesn't care. Samsung's replacement Galaxy Note 7 phones are still a little explodey. Hey, it's a roundup!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-microsoft-vs-bad-reviews-govt-threatens-valve-samsung-phones-still-exploding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c22c3881-5985-4017-9bfe-1e4df11e10d4/sm/24363-1475782102153-thumbnail.jpg","duration":556,"publication_date":"2016-10-06T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-play-station-v-r-what-s-the-verdict-176","changefreq":"weekly","video":[{"title":"2016:E176 - PlayStation VR Worth Buying? - #176","description":"Join Ashley Jenkins, Andy Blanchard, and Ryan Haywood as they discuss PlayStation VR, “party” gaming systems, gaming upgrades, and more on this week's The Patch! This episode originally aired on October 5, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn) and Trunk Club (http://bit.ly/28NEl7x)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-play-station-v-r-what-s-the-verdict-176","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fa73354-4ebd-4c11-8ebf-7e8f93f9fcb1/sm/2013912-1475768204810-p176_-_THUMB.jpg","duration":4117,"publication_date":"2016-10-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-play-station-v-r-is-it-g-o-o-d","changefreq":"weekly","video":[{"title":"2016:E306 - PlayStation VR: IS IT GOOD?","description":"The reviews are in for PlayStation VR. There are some ups, some downs, and in the end everyone finds love. It's that kind of story.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-play-station-v-r-is-it-g-o-o-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f47ea63b-c4b1-489d-9b15-c0d67420f569/sm/24363-1475710443100-thumbnail.jpg","duration":438,"publication_date":"2016-10-05T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-subreddit-c-l-o-s-e-s","changefreq":"weekly","video":[{"title":"2016:E305 - No Man's Sky Subreddit CLOSES?","description":"What else could possibly go wrong for No Man's Sky? Oh, maybe its Reddit community imploding and getting shut down by moderators for being \"a hate filled wastehole.\"","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-subreddit-c-l-o-s-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16dbb07b-e1cd-48a2-9ffc-b29b80f75bd4/sm/24363-1475708695784-thumbnail.jpg","duration":468,"publication_date":"2016-10-05T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gta-online-makes-700-million-per-y-e-a-r","changefreq":"weekly","video":[{"title":"2016:E304 - GTA Online Makes $700 Million PER YEAR?","description":"If there's anything we've learned from modern gaming, it's that people will pay out of the nose for hats. And that's totally the case with Grand Theft Auto Online, which is making way more money than anybody thought possible. It's only a matter of time before everybody else wants you to buy their hats, too.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gta-online-makes-700-million-per-y-e-a-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/258f2a01-c80f-4c4f-8889-41ccefcba5eb/sm/24363-1475708634137-gta_thumbnail.jpg","duration":388,"publication_date":"2016-10-05T04:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-software-patent-trolls-f-i-n-i-s-h-e-d","changefreq":"weekly","video":[{"title":"2016:E65 - Software Patent Trolls FINISHED?","description":"Suck it, patent trolls! A judge presiding over one of the highest-ranking patent courts in the country has called down the thunder on software patents. Finally, we can all rip off each other's ideas in peace and harmony.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-software-patent-trolls-f-i-n-i-s-h-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bef65bb3-8c10-434c-a80c-b648fddf794d/sm/24363-1475710246950-patent_troll_thumbnail.jpg","duration":391,"publication_date":"2016-10-05T03:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-diablo-iv-announcement-coming-us-gives-away-the-internet-space-x-s-a-b-o-t-a-g-e-d","changefreq":"weekly","video":[{"title":"2016:E75 - Diablo IV Announcement Coming? + US Gives Away the Internet + Space X SABOTAGED?","description":"There's some definite shenanigans happening in the news this week. Blizzard's teasing Diablo 4, the US gave away the internet, and the internet thinks a SNIPER took out SpaceX? Yeah, all that happened.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-diablo-iv-announcement-coming-us-gives-away-the-internet-space-x-s-a-b-o-t-a-g-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afb8a04e-c595-4552-950a-69751987682b/sm/710924-1475604783766-10-4_roundup_thumbnail.jpg","duration":538,"publication_date":"2016-10-04T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-google-s-next-phone-l-e-a-k-s-the-know","changefreq":"weekly","video":[{"title":"2016:E303 - Google's Next Phone LEAKS!","description":"It's been nearly a week since we had a new several-hundred-dollar gadget to dismissively mock. We were getting the shakes, so thank you Google for delivering in our time of need.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-google-s-next-phone-l-e-a-k-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c06c2d37-15b2-463e-9bf3-00952df57389/sm/2371242-1475539923681-FH_Thumb_13_copy.jpg","duration":432,"publication_date":"2016-10-04T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-digital-homicide-out-of-business","changefreq":"weekly","video":[{"title":"2016:E302 - Digital Homicide OUT OF BUSINESS","description":"Hooboy. You know those developers who sued game critic Jim (f%ing) Sterling (son) and then sued Steam gamers and then sued Valve? This might be a surprise, but they're closing up shop. Yeah, we were all shocked.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-digital-homicide-out-of-business","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e146204-0bd1-4c9c-8979-16dd9cea5b2d/sm/24363-1475533205595-thumbnail.jpg","duration":465,"publication_date":"2016-10-03T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-call-of-duty-infinite-warfare-holds-modern-warfare-h-o-s-t-a-g-e","changefreq":"weekly","video":[{"title":"2016:E301 - Call of Duty: Infinite Warfare Holds Modern Warfare HOSTAGE!","description":"It's October now, and that means game news is getting scary. Not intentionally. It just worked out that way. If you thought you could recoup some of your $80 investment in Infinite Warfare by trading it in and keeping Modern Warfare Remastered... Activision's got your number and they're not going to let you do it, based on new details of how access will work.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-call-of-duty-infinite-warfare-holds-modern-warfare-h-o-s-t-a-g-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f43087e0-2319-46fb-b8da-6d050082897d/sm/24363-1475526767982-thumbnail.jpg","duration":506,"publication_date":"2016-10-03T20:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-before-you-go-mafia-3","changefreq":"weekly","video":[{"title":"2016:E300 - Know Before You Go... Mafia 3","description":"Mafia III comes out in less than a week and it's been a while since the last entry in the series. Not sure what kind of game it is or where it falls in the Mafia universe? We've got all the details you need to know before you buy.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-before-you-go-mafia-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d9589af-20a4-4941-a2c1-22c6e1b10feb/sm/24363-1475341857027-Mafia_3_KBYG_thumbnail.jpg","duration":336,"publication_date":"2016-10-01T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-can-xbox-scorpio-sell-200-million","changefreq":"weekly","video":[{"title":"2016:E299 - Can Xbox Scorpio Sell 200 Million?","description":"Xbox had some pretty insane sales goals for Xbox One... they may have fallen a little short. But who knows? Maybe Xbox Scorpio can save them! Or they can stop doing generations entirely and eventually make it! Anything is possible. Go for your dreams!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-can-xbox-scorpio-sell-200-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87704216-0855-4a99-a8fb-e7d0c583b16d/sm/24363-1475272632506-thumbnail.jpg","duration":614,"publication_date":"2016-09-30T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-portal-movie-still-alive","changefreq":"weekly","video":[{"title":"2016:E46 - Portal Movie STILL ALIVE","description":"It's so good to be able to make that joke. It's been nearly 3 years since we heard anything about the JJ Abrams Portal (and maybe Half-Life) movie, but that doesn't mean it's dead! On the contrary, says Abrams. It's... still alive. Had to make it again.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe cake is a lie. Now give me this movie.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-portal-movie-still-alive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5281d23e-9c7a-4793-95ae-d5646ce61625/sm/24363-1475261143271-thumbnail.jpg","duration":514,"publication_date":"2016-09-30T19:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-175-post-show","changefreq":"weekly","video":[{"title":"2016:E10 - Patch #175 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and Adam Ellis as they discuss Myst, flight simulators, Starcraft, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-175-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77934730-97f2-4214-849f-412162dd7429/sm/2013912-1475249918841-p175_-_PS_-_THUMB.jpg","duration":685,"publication_date":"2016-09-30T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ubisoft-survives-takeover-attempt","changefreq":"weekly","video":[{"title":"2016:E298 - Ubisoft SURVIVES Takeover Attempt... For Now","description":"Ubisoft has survived Vivendi's hostile takeover attempt... for now. But neither company is very happy with the other and they're happy to let everyone know that.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ubisoft-survives-takeover-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d69fe519-81f2-4278-adc5-73eef20b1547/sm/24363-1475186803090-thumbnail.jpg","duration":499,"publication_date":"2016-09-29T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-g-o-in-trouble-with-the-government","changefreq":"weekly","video":[{"title":"2016:E297 - Pokemon GO Catches Government Complaints","description":"First it was No Man's Sky. Now Pokemon GO has some potential trouble with the government, after more than 70 people file complaints with the FTC.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-g-o-in-trouble-with-the-government","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9eaa4ce-a6b0-4dde-88f4-d1996eaf826e/sm/24363-1475185205939-thumbnail.jpg","duration":457,"publication_date":"2016-09-29T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-09292016-round-up-the-know","changefreq":"weekly","video":[{"title":"2016:E74 - Gears of War Ditching Shooter Genre? + Walking Dead $280M Lawsuit + Mars Travelers: Be \"Prepared to Die\"","description":"There may already be a new Gears of War project in the works WITHOUT the third person shooting. Former Walking Dead showrunner Frank Darabont is going after AMC for a big pile of cash. Elon Musk has some real talk for aspiring Martian colonists. CD Projekt RED's Cyberpunk 2077 may be further off than we'd like. Wasteland 3 is a thing. And we now know when you might get that standalone Batfleck movies... we know you've been asking after it.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-09292016-round-up-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbd31841-d69e-4c5a-a519-688092b172ad/sm/24363-1475178139099-thumbnail.jpg","duration":448,"publication_date":"2016-09-29T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-175","changefreq":"weekly","video":[{"title":"2016:E175 - The Forza and the Furious - #175","description":"Join Gus Sorola, Ashley Jenkins, Adam Ellis, and Ryan Haywood as they discuss racing games, video games vs real life, PC port issues, and more on this week's The Patch! This episode originally aired on September 28, 2016. Sponsored by Dollar Shave Club (http://bit.ly/2dscTyZ)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-175","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbe2073b-cd4b-4be8-985e-7f628f193192/sm/2013912-1475169511089-p175_-_THUMB.jpg","duration":3776,"publication_date":"2016-09-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-investigated-for-false-advertising-the-know","changefreq":"weekly","video":[{"title":"2016:E296 - No Man's Sky Investigated for False Advertising","description":"If you could condense smug into a YouTube video, it'd be this. Finally a taste of sweet vindication!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-investigated-for-false-advertising-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a76477f-f8d4-4214-b940-b8ff04d45c5c/sm/1533704-1475107726554-FH_Thumb_13_copy_1.jpg","duration":446,"publication_date":"2016-09-29T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-kotor-remake-on-the-way","changefreq":"weekly","video":[{"title":"2016:E295 - Star Wars: KOTOR Remake SAVED?","description":"Is there a chance we could actually see the long-awaited remake of Knights of the Old Republic after all?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-kotor-remake-on-the-way","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f225fd2f-233e-49f3-b749-cbd19171709c/sm/24363-1475101942043-thumbnail.jpg","duration":479,"publication_date":"2016-09-28T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-destiny-2-l-e-a-k-s-coming-to-pc","changefreq":"weekly","video":[{"title":"2016:E294 - Destiny 2 LEAKS; Coming To PC","description":"Destiny's sprung another leak! Now that Rise of Iron is out in the wild it looks like Bungie is gearing up to leave it all behind and get Destiny 2 going... and this time it might come to PC!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-destiny-2-l-e-a-k-s-coming-to-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55f124ed-dd9b-4141-93bd-afd41d65b1f4/sm/24363-1475091577098-thumbnail.jpg","duration":597,"publication_date":"2016-09-28T19:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-what-you-should-know-about-luke-cage","changefreq":"weekly","video":[{"title":"2016:E45 - What You Should Know About Luke Cage","description":"Luke Cage hits Netflix on Sept. 30. Here's everything you need to know about the bulletproof Defender before that happens.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-what-you-should-know-about-luke-cage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66613a42-58bc-4152-a35b-7fe09a3b08ca/sm/24363-1475022711150-thumbnail.jpg","duration":521,"publication_date":"2016-09-28T00:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-handheld-gaming-d-o-o-m-e-d","changefreq":"weekly","video":[{"title":"2016:E293 - Handheld Gaming is DOOMED?","description":"Nintendo is betting on the demand for handheld gaming with Nintendo NX (probably). Meanwhile, PlayStatiion has weighed in on the issues the PS Vita suffered, citing the death of handheld gaming as the reason it never quite took off.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-handheld-gaming-d-o-o-m-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a8ca9cc-4e1b-40b8-98e2-5ed5592fd104/sm/24363-1475019287956-thumbnail.jpg","duration":489,"publication_date":"2016-09-27T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-changes-coming-to-steam-ubisoft-fights-hostile-takeover-studio-thanks-pirates","changefreq":"weekly","video":[{"title":"2016:E73 - Changes Coming to Steam + Ubisoft Fights Hostile Takeover + Studio Thanks Pirates","description":"A developer has leaked some upcoming changes to Steam. Ubisoft is doing its best to fight off a hostile takeover by Vivendi. An indie Vita developer is appealing to the human side of game pirates. A new Assassin's Creed game may be further off than 2017... but Beyond Good & Evil 2 might be happening. Firewatch is getting the movie treatment. But wait, there's more!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-changes-coming-to-steam-ubisoft-fights-hostile-takeover-studio-thanks-pirates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc608fdb-3445-4c06-a321-54a64acaf1c7/sm/24363-1475003876493-thumbnail.jpg","duration":463,"publication_date":"2016-09-27T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know","changefreq":"weekly","video":[{"title":"2016:E292 - Nintendo 64 on Xbox One?! ","description":"Finally, we can play a good Rare game on a Microsoft console. OH SHIIIIIIIT WHAT A BOOM. Go ahead and steal that one and post it in the comments. Free upvotes, fam!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56fb7ca2-9908-4ec1-aec0-610b12f6ed5a/sm/2371242-1474932571469-FH_Thumb_13_copy_14.jpg","duration":355,"publication_date":"2016-09-27T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-plagiarized-other-indie-games","changefreq":"weekly","video":[{"title":"2016:E291 - No Man's Sky Accused of PLAGIARIZING Other Indie Games","description":"No Man's Sky has had a tough time with gamers since its release. Now it's also falling under suspicion that not all of its features are entirely original. Some may be borrowed from a similar indie game that hasn't enjoyed nearly the same level of limelight. Is that really the case though? Let's take a look.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-plagiarized-other-indie-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9efa2a4d-b56c-4509-8e87-c1b0501c0e74/sm/24363-1474927612306-thumbnail.jpg","duration":561,"publication_date":"2016-09-26T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-fakk","changefreq":"weekly","video":[{"title":"2016:E190 - FAKK THIS GAME - Heavy Metal: F.A.K.K. 2 Gameplay Part 4","description":"Julie! Thank the gods you're here! You must defeat all the breast-monsters and anus-birds while avoiding the dreaded penis-talon-snakes and capture th... the...  This just feels stupid at this point, right? Wanna just go hump on that pile of mushrooms? \n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/gameplay-2016-fakk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92045bc7-50fc-4974-bee3-63cdce348fcb/sm/2371242-1474048801175-Heavy_Metal_FAKK_2.png","duration":806,"publication_date":"2016-09-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-spoiler-alert-gta-5-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E26 - Spoiler Alert GTA 5 Gameplay - Fullhaus","description":"Little did you know we filmed a second movie/TV podcast in the form of a GTA gameplay.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-spoiler-alert-gta-5-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e089a04-4753-4f3b-b31c-b91365a4044a/sm/1533704-1474061181595-Spoiler_Alert_GTA_Fullhaus_Thumbnail.jpg","duration":3550,"publication_date":"2016-09-16T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hole-in-one-golf-with-your-friends-gameplay","changefreq":"weekly","video":[{"title":"2016:E188 - HOLE IN ONE - Golf With Your Friends Gameplay","description":"I wonder how many illegitimate children Tiger Woods has running around out there. In 15 years time the PGA could be blessed with an army of flawless golf pros with insatiable sexual appetites and crippling abandonment issues.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/sirlarrhttp://twitter.com/elysewillem...http://twitter.com/mattseditba...\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hole-in-one-golf-with-your-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b857a536-69cf-4514-819b-71c8f55e43b3/sm/2371242-1473975400331-FH_Thumb_13_copy_2.jpg","duration":1092,"publication_date":"2016-09-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-what-the-box-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E35 - Let's Play What The Box? - Starring Funhaus","description":"Can you believe we made it through the entire gameplay without one \"box as vagina\" joke? You can? Congratulations! You're a big dumb idiot person.\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/sirlarrhttp://twitter.com/elysewillem...\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-what-the-box-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0d789cc-7aa8-4b4c-9b4f-da7f9d75352e/sm/2371242-1473966623170-Duo_Thumbnail_Template_copy.jpg","duration":1132,"publication_date":"2016-09-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-funhaus-dies-with-mr-sark-verdun-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E189 - FUNHAUS DIES WITH MR SARK - Verdun Gameplay Part 2","description":"If the Funhaus boys had been alive to serve in World War I we'd all be speaking German. Or according to them, Japanese. Thanks, U.S. public schools. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/gameplay-2016-funhaus-dies-with-mr-sark-verdun-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce43fc2f-d102-4f2e-9302-46087caf5f40/sm/2371242-1473987635150-Verdun.png","duration":1136,"publication_date":"2016-09-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-3","changefreq":"weekly","video":[{"title":"2015:E38 - LET'S GET PREGNANT! - Funhaus Comments #36","description":"It makes me sad that, as a man, I'll never be able to carry a child and experience the miracle of a tiny bug-eyed parasite leaching the calcium from my very bones to form it's own stupid worthless skeleton.\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/elysewillem...http://twitter.com/sirlarrhttp://twitter.com/mattseditba...\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2c90950-35bb-43d3-85a6-bd6bf37d2086/sm/2371242-1473972153353-FH_Thumb_Template36.jpg","duration":614,"publication_date":"2016-09-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-tanks-for-playing-world-of-tanks-gameplay","changefreq":"weekly","video":[{"title":"2016:E187 - TANKS FOR PLAYING - World of Tanks Gameplay","description":"Like what you saw? Now it’s your turn to start “Crushing It” – In World of Tanks!!! Use #CRUSHINGIT invite code when you click here http://bit.ly/FunhausWoTGamepl...This video is sponsored by World of Tanks.\n\n\n\n\n\n\n\n\n\n\n\nWe would like to apologize to the nation of Canada for Elyse's insensitive and unrelenting barrage of insults towards the country of her birth.Wait. Does Canada have the internet yet? Oh, the entire population just takes turns on those 3 Dells at the Toronto Public Library? Never mind. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/sirlarrhttp://twitter.com/elysewillem...\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/gameplay-2016-tanks-for-playing-world-of-tanks-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29d92b8a-97d4-4759-95b8-34017a7693a0/sm/2371242-1473964869343-WorldofTanksv2.png","duration":842,"publication_date":"2016-09-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta","changefreq":"weekly","video":[{"title":"2016:E186 - HARD WORK PAYS OFF - GTA 5 Gameplay","description":"In this country, you gotta make the money first. Then when you get the money, you get the power. Then when you get the power, then you get the women. Then when you get the women you get more power but less money. Then the country gets women of power to make the money. Then you... you. Y'know what? Let's just do some more coke.\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillem...http://twitter.com/sirlarr\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com...","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30cee04c-45d5-4df9-8d11-f676e320a47c/sm/2371242-1473896956049-FH_Thumb_13_copy.jpg","duration":982,"publication_date":"2016-09-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-melee","changefreq":"weekly","video":[{"title":"2016:E185 - HORSE RACE - GTA 5 Gameplay","description":"Melee Fight Club: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Ng1gO5ac8EO8jXVBkwn4Aw#\n\n\n\n\n\n\n\n\n\nYou know Jaleel White just ran a 2nd base train on all those TGIF girls. Also, I'm pretty sure I heard he got the mom from Step by Step pregnant and they had to ship her off to her aunt's house in the country to \"take care of it\". Simpler times.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-melee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eed05be-c0ef-4588-b113-91bf9790f09c/sm/2371242-1473803902597-FH_Thumb_12_copy_4.jpg","duration":497,"publication_date":"2016-09-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-creeps","changefreq":"weekly","video":[{"title":"2016:E35 - WE ARE CREEPS","description":"2016:E35 - WE ARE CREEPS","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-creeps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37885066-295b-4615-82e4-e3b2fea6f842/sm/2371242-1473787234570-DS_PostShow_Template91216.jpg","duration":2301,"publication_date":"2016-09-13T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dudesoup-2","changefreq":"weekly","video":[{"title":"2016:E87 - PS4 PRO: WHO CARES? - Dude Soup Podcast #87","description":"Visit our sponsors! Check out this week’s menu and get your first three meals free — with free shipping — by going to http://www.blueapron.com/soup\n\nGo to http://www.wealthfront.com/dudesoup to get $15,000 managed for free with Wealthfront.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhat did you expect, asking a bunch of PC gamers about a new round of crazy expensive consoles? \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDude Soup Post Show:\n\n\n\n\n\n\n\n\n\n\n\nhttp://funhaus.roosterteeth.com/show/fan-show\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:\n\n\n\n\n\n\n\n\n\n\n\nBethesda Blog Post: https://bethesda.net/#en/events/game/ps4-mod-updat...\n\n\n\n\n\n\n\n\n\n\n\nIGN Interview /w Psyonix VP Jeremy Dunham: http://www.ign.com/articles/2016/07/20/rocket-leag...\n\n\n\n\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\n\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\n\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dudesoup-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30d379cb-86d7-4197-8950-9489d0e37bdd/sm/2371242-1473728470094-FH_Thumb_12_copy_1.jpg","duration":3749,"publication_date":"2016-09-13T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-dnd-7","changefreq":"weekly","video":[{"title":"S1:E7 - Funhaus Dungeons and Dragons - Episode 7","description":"In which our group moves on, a muff is smelled, new friendships are forged, and a hobbled hero is left in the lurch. \n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovic\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\nhttp://twitter.com/mattseditbay\n\n\n\nhttp://twitter.com/filmdstryr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-dnd-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0939d7e-ce38-4db5-b123-7252e4ad38b0/sm/2371242-1473365734820-FH_Thumb_12_copy_34.jpg","duration":3686,"publication_date":"2016-09-12T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-our-biggest-r-e-g-r-e-t-open-haus-82","changefreq":"weekly","video":[{"title":"2016:E37 - OUR BIGGEST REGRET? - Open Haus #82","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nI just try to regret everything I do as I'm doing it. It tends to save me a lot of time on the back end.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-our-biggest-r-e-g-r-e-t-open-haus-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41ae1641-e3c7-4b1d-b3c6-936a5e3f5d4e/sm/2371242-1473469374996-Openhaus_Thumbnail_9-13-16.jpg","duration":705,"publication_date":"2016-09-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-devil-may-come-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E37 - DEVIL MAY COME - Demo Disk Gameplay","description":"And that's what Elyse is, the Queen of Refuse. So bow down to her if you want, bow to her. Bow to the Queen of Slime, the Queen of Filth, the Queen of Putrescence. Boo. Boo. Rubbish. Filth. Slime. Muck. Boo. Boo. Boo.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-devil-may-come-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d51459d6-5156-4d16-9327-97beb0af8c33/sm/2371242-1473471997969-FH_Thumb_12_copy_40.jpg","duration":960,"publication_date":"2016-09-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-pain-train-battlefield-1-beta-gameplay","changefreq":"weekly","video":[{"title":"2016:E181 - PAIN TRAIN - Battlefield 1 Beta Gameplay","description":"Did everybody have super stretchy Mr. Fantastic style powers in those days or was it only the brave men and women of the armed forces?\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-pain-train-battlefield-1-beta-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbfe1005-2616-4691-ac85-5fcacb456d99/sm/2371242-1473373553304-FH_Thumb_12_copy_38.jpg","duration":694,"publication_date":"2016-09-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hitman-gets-lucky-hitman-blood-money-gameplay-part-8","changefreq":"weekly","video":[{"title":"2016:E183 - HITMAN GETS LUCKY - Hitman Blood Money Gameplay Part 8","description":"Why don't my Vegas trips ever end up like \"Ocean's 11\"? I never get to pull of a wicked sweet caper with an group of handsome ethnically diverse rogues. I usually just end up getting dredged from the Bellagio fountain, penniless and high on trucker speed.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hitman-gets-lucky-hitman-blood-money-gameplay-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e06e4f77-d5db-4f9d-a8b8-83890f2ff30f/sm/2371242-1473462911629-FH_Thumb_12_copy_39.jpg","duration":738,"publication_date":"2016-09-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-funhaus-plays-with-mr-sark-verdun-gameplay","changefreq":"weekly","video":[{"title":"2016:E182 - FUNHAUS PLAYS WITH MR SARK - Verdun Gameplay","description":"I bet that even the rendered character models in this game wish they were playing Battlefield 1.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mr_sark\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-funhaus-plays-with-mr-sark-verdun-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/846f56b0-e1cc-48de-8bbb-f8ed3b11753b/sm/2371242-1473445661025-FH_Thumb_12_copy_33.jpg","duration":942,"publication_date":"2016-09-10T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-gal-gun-double-peace-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E25 - Gal*Gun: Double Peace Gameplay - Fullhaus","description":"Alright, let's face it. You may be unprepared to witness dreams come true in the form of poking anime girls until the collapse in varying states of ecstasy. This video is an entire hour of pretty much that.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-gal-gun-double-peace-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f294d5c6-f346-4655-8a81-cce3140cae89/sm/1533704-1473449076424-Gal_Gun_Thumbnail.jpg","duration":3361,"publication_date":"2016-09-09T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-pirates-vs-vikings-vs-who-cares-pirates-vikings-and-knights-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E193 - PIRATES VS VIKINGS VS WHO CARES - Pirates, Vikings, and Knights 2 Gameplay","description":"This is what happens when you let developers create games using a tattered old book of Mad-Libs. Coming soon: Blacksmiths vs Vintners vs Accountants! \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-pirates-vs-vikings-vs-who-cares-pirates-vikings-and-knights-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccbacfab-57f0-475a-99e4-febf94f474f4/sm/2371242-1473273878450-FH_Thumb_12_copy_13.jpg","duration":1069,"publication_date":"2016-09-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-ghost-rider-in-gta-5-mod-gameplay-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E34 - GHOST RIDER in GTA 5! - Mod Gameplay Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nTake some notes, Disney and Warner Bros. This is how you create a shared universe. Oh god, please don't sue us.\n\n\n\nThe Ghost Rider Mod\n\nhttp://gtaxscripting.blogspot.com/2016/08/gta-v-gh...\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-ghost-rider-in-gta-5-mod-gameplay-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4eb9e91-bbec-47c5-8669-b9c53181e481/sm/2371242-1473459995587-Duo_Thumbnail_Template_copy_3.jpg","duration":910,"publication_date":"2016-09-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-2","changefreq":"weekly","video":[{"title":"2015:E37 - DID YOU MAKE A WISH? - Funhaus Comments #35","description":"You know that feeling when you're at work and you just sit back, beaming with pride, knowing that you've created something pure and good that will help to make this sometimes awful world just a little bit better? We we created this instead.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09029152-9040-465d-90e0-b5863ba57601/sm/2371242-1473368037333-FH_Thumb_Template15.jpg","duration":684,"publication_date":"2016-09-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-google","changefreq":"weekly","video":[{"title":"2016:E191 - CHOKE VS CHICKEN - Google Trends Show","description":"Our deepest sympathies go out to the Benoit family. Well, what's left of it anyway. Let it never be said that Funhaus isn't timely in its dead celebrity bits.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/gameovergreggy\n\nhttp://twitter.com/timgettys\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-google","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbbde34c-7355-46d3-8c0b-dd5f60d24e51/sm/2371242-1473271351362-FH_Thumb_12_copy_31.jpg","duration":1036,"publication_date":"2016-09-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-hacker","changefreq":"weekly","video":[{"title":"2016:E190 - HACKERS VS IDIOTS - GTA 5 Gameplay","description":"Seriously, cowards. Knock it the hell off. Attempt to find happiness in something other than the frustration and hindrance of others. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-hacker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a6fadc1-5697-41af-b131-de2e9136b22b/sm/2371242-1473269998974-FH_Thumb_12_copy_30.jpg","duration":1025,"publication_date":"2016-09-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-patriots","changefreq":"weekly","video":[{"title":"2016:E34 - WE ARE PATRIOTS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-patriots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/611d4cc2-80b5-44ed-a1ae-b8ce2b3cee07/sm/2371242-1473208986551-DS_PostShow_Template9716.jpg","duration":3179,"publication_date":"2016-09-07T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-spoiler-a-l-e-r-t-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E189 - SPOILER ALERT! - GTA 5 Gameplay","description":"I imagine Channing Tatum spends 20 minutes each night putting cigarettes out on a poster of a shirtless James Willems before forcing himself to throw up.\n\nRainbowland: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/duvNNbKXPk6prjweDbKAlA#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elyse willems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-spoiler-a-l-e-r-t-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aa797ef-314b-4842-babd-a3491a834400/sm/2371242-1473210242657-FH_Thumb_12_copy_28.jpg","duration":463,"publication_date":"2016-09-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-l-e-t-s-all-quit-y-o-u-t-u-b-e-dude-soup-podcast-86","changefreq":"weekly","video":[{"title":"2016:E86 - LET'S ALL QUIT YOUTUBE? - Dude Soup Podcast #86","description":"Visit our sponsors! Get $5 when you make your first investment by going to http://www.acorns.com/dude/\n\nAnd get 20% off your order at Mack Weldon by using promo code \"SOUP\" at https://www.mackweldon.com/\n\n\n\nFine. Screw this! I'm gonna go start my own international, ad-based, video-sharing platform. I can't be that hard, right? \n\n\n\nSOURCES:\n\nYouTube Advertiser-Friendly Content Guidelines: https://support.google.com/youtube/answer/6162278?...\n\nYouTube Terms of Service: https://www.youtube.com/static?template=terms\n\nPhil DeFranco Reponse Video: \n\nSensual, Sexy Stories: https://www.reddit.com/r/funhaus/comments/50or10/s...\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-l-e-t-s-all-quit-y-o-u-t-u-b-e-dude-soup-podcast-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19eee34c-701d-4128-8b51-ae9d38220e33/sm/2371242-1473205514509-FH_Thumb_12_copy_27.jpg","duration":4379,"publication_date":"2016-09-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-twits","changefreq":"weekly","video":[{"title":"S1:E6 - Funhaus Dungeons and Dragons - Episode 6","description":"In which a plan is hatched, a laptop is booted, brigands are dealt with, and Grimo's balls are left hopelessly azure.\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovic\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\nhttp://twitter.com/mattseditbay\n\n\n\nhttp://twitter.com/filmdstryr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-twits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84c80f6d-913c-4f03-95d8-37d996f34e9a/sm/2371242-1472837388888-FH_Thumb_12_copy_25.jpg","duration":4653,"publication_date":"2016-09-05T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-date-our-f-a-n-s-open-haus-81","changefreq":"weekly","video":[{"title":"2016:E39 - WE DATE OUR FANS? - Open Haus #81","description":"I wish I could go back to a time when eating dried up tiny marshmallows out of a bowl would fill me with satisfaction. Now just crawling out of bed in the morning and yearning for puffed corn and the halcyon days will have to suffice.\n\n\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-date-our-f-a-n-s-open-haus-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04988662-ea2b-45ce-a094-04f59a16c6b9/sm/2371242-1472863298303-Openhaus_Thumbnail_9-6-16.jpg","duration":651,"publication_date":"2016-09-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-vicious-vampire-vaginas-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E36 - COUNT C*CKULA - Demo Disk Gameplay","description":"Verily, a vicious vanguard of vampires has set upon the villagers' with their vulvas in order to victimize them with their violence and vent vagina vapors into the water supply or whatever.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-vicious-vampire-vaginas-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca7de095-80bf-4af1-9a6e-29350a73c36d/sm/2371242-1472867452879-FH_Thumb_Template2.jpg","duration":1017,"publication_date":"2016-09-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-sniped-y-a-sniper-ghost-warrior-3-gameplay","changefreq":"weekly","video":[{"title":"2016:E188 - SNIPED YA' - Sniper Ghost Warrior 3 Gameplay","description":"Thanks to CI games for giving us alpha access to the game and sponsoring this video!\n\n\n\nhttp://sniperghostwarrior3.com\n\n\n\nLawrence and Adam invade the Achievement Hunter offices to deal out some sneaky beautifully rendered justice in the alpha of Sniper Ghost Warrior 3! \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-sniped-y-a-sniper-ghost-warrior-3-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b73fe3ad-aad2-4059-bad7-46a611c09f1b/sm/2371242-1472853749548-FH_Thumb_12_copy_26.jpg","duration":782,"publication_date":"2016-09-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hitman","changefreq":"weekly","video":[{"title":"2016:E187 - SHOTGUN WEDDING - Hitman Blood Money Gameplay Part 7","description":"I bet most of us wished someone HAD murdered us on our wedding day. Am I right fellas? You know, 'cuz we detest our wives and can't bear the thought of another day of smiling through gritted teeth at their inanities; their every word and expression a grim reminder of the single worst decision of your life. \n\nWhat?\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hitman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f918526-e410-4b57-bd9b-2042dbb18549/sm/2371242-1472835758291-FH_Thumb_12_copy_24.jpg","duration":794,"publication_date":"2016-09-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/filmhaus-podcast-2016-d-o-n-t-see-d-o-n-t-b-r-e-a-t-h-e-spoilers-movie-podcast","changefreq":"weekly","video":[{"title":"2016:E1 - DON'T SEE DON'T BREATHE? (spoilers) - Movie Podcast","description":"This podcast is sponsored by Crunchyroll! Go to http://www.crunchyroll.com/funhaus for a 30-day FREE Premium trial.\n\n\n\nUnsurprisingly, our timely review of \"Don't Breathe\" inevitably devolves into a meandering journey through movies past and the IMDB trvia page.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/filmhaus-podcast-2016-d-o-n-t-see-d-o-n-t-b-r-e-a-t-h-e-spoilers-movie-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c4401d0-c200-4cb3-ba5e-c9c8c68ca40f/sm/2371242-1472774207828-FH_Thumb_12_copy_23.jpg","duration":4048,"publication_date":"2016-09-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-attack-on-titan-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E34 - Let's Play - Attack on Titan Starring Funhaus","description":"\"We need an idea for a new manga!\"\n\n\"Shoot. Uuuhhhh... of the top of my head, how about giant derpy grinning genocidal monsters eating medieval ninjas jumping around their town like a pack of god-damned spider monkeys?\"\n\n\"Here, take all of the money.\"\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-attack-on-titan-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c46e49c3-3483-43a0-b5aa-5fc240dead95/sm/2371242-1472776974095-Duo_Thumbnail_Template_copy_2.jpg","duration":1378,"publication_date":"2016-09-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-huge-naked-dudes-attack-on-titan-gameplay","changefreq":"weekly","video":[{"title":"2016:E186 - HUGE NAKED DUDES - Attack on Titan Gameplay","description":"Giant, junkless, man-eating monsters terrorizing tree-swinging jetpack forest-ninjas. Oh, Japan. Never stop being you.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-huge-naked-dudes-attack-on-titan-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/987476d1-a290-4abb-9258-2a4c04a3dac3/sm/2371242-1472767710646-FH_Thumb_12_copy_22.jpg","duration":929,"publication_date":"2016-09-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-34","changefreq":"weekly","video":[{"title":"2015:E38 - ELYSE'S LAST DAY? - Funhaus Comments #34","description":"I think Willy is going to work out just fine. He's punctual, fashionable, great head of hair, American, and does almost zero celebrity impressions.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f0a9aff-84ab-418c-a11f-e68b6359368b/sm/2371242-1472756915482-FH_Thumb_Template14.jpg","duration":662,"publication_date":"2016-09-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-sonic-makes-us-cream-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E185 - SONIC MAKES US CREAM - Wheelhaus Gameplay","description":"It's really sad how little we know about the female reproductive system in light of how much we do know about arcane Sonic mythology.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-sonic-makes-us-cream-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6577018-626c-4150-bd29-48ecc38f0335/sm/2371242-1472664850457-FH_Thumb_12_copy_18.jpg","duration":851,"publication_date":"2016-09-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-fuel","changefreq":"weekly","video":[{"title":"2016:E184 - CEO VS CEO - GTA 5 Gameplay","description":"Someone needs to break into Lawrence's house and burn every last copy of \"Boiler Room\". Laserdisk, DVD, BluRay, even that VHS copy of when they played it on TBS without the swears. This is getting out of hand. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-fuel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cda7bf6-fb2b-410a-9990-921ad0912fbc/sm/2371242-1472249450133-FH_Thumb_12_copy_11.jpg","duration":926,"publication_date":"2016-08-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-lovers","changefreq":"weekly","video":[{"title":"2016:E33 - WE ARE LOVERS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-lovers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b5886b9-8518-484d-9098-6f12e5a04c93/sm/2371242-1472663865017-DS_PostShow_Template83116_1.jpg","duration":3334,"publication_date":"2016-08-31T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gta-speedracer","changefreq":"weekly","video":[{"title":"2016:E183 - SPEED RACIST - GTA 5 Gameplay","description":"Tube Obstacle Course: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Bqt__0Yr5kGZwQZMxL0jwg#\n\n\n\nThe bonus features on the director's cut of \"Jupiter Ascending\" are just 3 extra hours of Mila Kunis scrubbing toilets and Eddie Redmayne trying on capes.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gta-speedracer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a03c49e-5cdc-4585-b2a3-e8971bf81321/sm/2371242-1472599583595-FH_Thumb_12_copy_16.jpg","duration":617,"publication_date":"2016-08-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-vr-sex-gone-too-f-a-r-dude-soup-podcast-85","changefreq":"weekly","video":[{"title":"2016:E85 - VR SEX GONE TOO FAR? - Dude Soup Podcast #85","description":"Get your first three meals free with free shipping by going to http://www.blueapron.com/soup\n\nOur sponsors at MVMT are going to give you 15% off your entire purchase. Go to http://www.mvmtwatches.com/dudesoup.\n\n\n\nThe most thoughtful and earnest conversation on gender roles one could have with bikini-clad anime girls bouncing in the background.\n\n\n\nSOURCES -\n\nEndgadget - Dead or Alive VR is basically sexual assault, the game: https://www.engadget.com/2016/08/29/dead-or-alive-...\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-vr-sex-gone-too-f-a-r-dude-soup-podcast-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b35c397-5afe-4717-a47d-5da63051e848/sm/2371242-1472602921762-FH_Thumb_12_copy_17.jpg","duration":3671,"publication_date":"2016-08-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-funhaus-dungeons-and-dragons-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Funhaus Dungeons and Dragons - Episode 5","description":"In which much Pakse is consumed, Shattercock disrobes, Grimo is left turgid, and Racsan reveals a shameful and potentially perilous family secret.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\nhttp://twitter.com/mattseditbay\n\n\n\n\n\nhttp://twitter.com/filmdstryr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-funhaus-dungeons-and-dragons-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc04587a-f030-437c-9a79-781285812494/sm/2371242-1472151693574-FH_Thumb_12_copy_9.jpg","duration":3253,"publication_date":"2016-08-29T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-haus-2","changefreq":"weekly","video":[{"title":"2016:E38 - COOLEST PARTY EVER? - Open Haus #80","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nYub nub, eee chop yub nub;\n\nAh toe meet toe pee chee keene;\n\nG'noop dock fling oh ah.\n\nYah wah, eee chop yah wah;\n\nAh toe meet toe peechee keene;\n\nG'noop dock fling oh ah.\n\nCoatee cha tu yub nub;\n\nCoatee cha tu yah wah;\n\nCoatee cha tu glowah;\n\nAllay loo ta nuv.\n\nGlowah, eee chop glowah;\n\nYa glowah pee chu nee foom,\n\nAh toot dee awe goon daa.\n\n*Coatee cha tu goo; (Yub nub!)\n\nCoatee cha tu doo; (Yah wah!)\n\nCoatee cha tu too; (Ya chaa!)\n\nAllay loo ta nuv,\n\nAllay loo ta nuv,\n\nAllay loo ta nuv.\n\nGlowah, eee chop glowah.\n\nYa glowah pee chu nee foam;\n\nAh toot dee awe goon daa.\n\n Coatee cha tu goo; (Yub nub!)\n\nCoatee cha tu doo; (Yah wah!)\n\nCoatee cha tu too; (Ya chaa!)\n\nAllay loo ta nuv,\n\nAllay loo ta nuv,\n\nAllay loo ta nuv,\n\nAllay loo ta nuv.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-haus-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88955856-2a5f-4679-9ff4-87cabfc4207e/sm/2371242-1472254173814-Openhaus_Thumbnail_8-30-16.jpg","duration":629,"publication_date":"2016-08-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-3","changefreq":"weekly","video":[{"title":"2016:E35 - JURASSIC F*CK - Demo Disk Gameplay","description":"In Soviet Union, Dinosaur ride you!\n\nYakov Smirnoff jokes are still fresh, right?\n\nDo people still say fresh?\n\nMy hip hurts.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64c38294-cbfc-4512-a129-266c14eba761/sm/2371242-1472259792634-FH_Thumb_12_copy_14.jpg","duration":894,"publication_date":"2016-08-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-overwatch-8-28","changefreq":"weekly","video":[{"title":"2016:E182 - SKINS TO WIN - Overwatch Gameplay","description":"James would just like you all to know that his new Reinhardt skin is super boss and that your old one looks like something cobbled together from stuff at the bottom of a Burger King dumpster. Thanks for the million subs!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-overwatch-8-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72d8f3b7-906f-4a14-a83c-a6348bb3eb08/sm/2371242-1472171914481-FH_Thumb_12_copy_8.jpg","duration":816,"publication_date":"2016-08-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-die-sherlock-die-sherlock-holmes-the-devil-s-daughter-gameplay-part-3-2","changefreq":"weekly","video":[{"title":"2016:E181 - DIE SHERLOCK DIE - Sherlock Holmes: The Devil's Daughter Gameplay Part 3","description":"\"Now let me see. I've drank, broken into houses, stolen countless items, sent those children in pursuit of known criminals, and risked the life of my beloved dog Toby. Have I forgotten anything?\"\n\n\"The mystery, Holmes.\"\n\n\"What's a mystery?\"\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-die-sherlock-die-sherlock-holmes-the-devil-s-daughter-gameplay-part-3-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b762e0d-9ef5-4200-93bc-b85b7e94a9c4/sm/2371242-1472079993245-FH_Thumb_12_copy_7.jpg","duration":987,"publication_date":"2016-08-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-make-yourself-orgasm-gal-gun-double-peace-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E179 - HOW TO MAKE YOURSELF ORGASM - Gal*Gun: Double Peace Gameplay Part 2","description":"We here at Funhaus once made a solemn promise to help you fulfill all of your most erotic \"Japanese Schoolgirl Trapped in Window\" fantasies. Today we honor that vow. \n\nCreeps.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-make-yourself-orgasm-gal-gun-double-peace-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e3f103d-a01b-4ee8-ae80-e36d283f44e6/sm/2371242-1472063133155-FH_Thumb_12_copy_5.jpg","duration":652,"publication_date":"2016-08-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-last-fight-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E26 - Last Fight Uncut - Fullhaus","description":"Here's a full 30 minutes of Professor Acid slithering to and fro, making us all envious of his ability to skitter about as a robo-horseshoe-crab.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-last-fight-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/196b8dd1-1642-4478-8a1b-2871169910b6/sm/1533704-1472234861138-Last_Fight_Fullhaus_Thumbnail.jpg","duration":2120,"publication_date":"2016-08-26T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-golf-with-your-friends-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E33 - Let's Play - Golf With Your Friends Starring Funhaus","description":"I'd suggest that one of you fans out there make a swearing supercut of this video but it would probably only shave off about 40 seconds or so,\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-golf-with-your-friends-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/261f2ec6-d114-4828-bf73-5615244775c5/sm/2371242-1472071000326-Duo_Thumbnail_Template_copy.jpg","duration":971,"publication_date":"2016-08-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-get-in-the-hole-golf-with-your-friends-gameplay","changefreq":"weekly","video":[{"title":"2016:E178 - GET IN THE HOLE - Golf With Your Friends Gameplay","description":"I think this video has more f*cks per minute than any we've ever done. Turns out fake golf is just as infuriating as real golf.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-get-in-the-hole-golf-with-your-friends-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c2c9282-af68-4391-831c-4580ee12145a/sm/2371242-1472063751701-FH_Thumb_12_copy_4.jpg","duration":1134,"publication_date":"2016-08-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-why-are-my-balls-w-e-i-r-d-funhaus-comments-33","changefreq":"weekly","video":[{"title":"2015:E37 - WHY ARE MY BALLS WEIRD? - Funhaus Comments #33","description":"Please don't make our editors angry. You wouldn't like them when they're angry. Well to be honest, they're not all that likable when they're not angry either.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/thenasacova\n\nhttp://twitter.com/filmdstryr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-why-are-my-balls-w-e-i-r-d-funhaus-comments-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7450a952-3ef4-4f77-b656-f5f238f2afb0/sm/2371242-1472155894319-FH_Thumb_Template13.jpg","duration":724,"publication_date":"2016-08-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-down-to-fakk-heavy-metal-f-a-k-k-2-gameplay-part-3","changefreq":"weekly","video":[{"title":"2016:E177 - DOWN TO FAKK - Heavy Metal: F.A.K.K. 2 Gameplay Part 3","description":"\"Julie, we need you to destroy the Portal-Priest and his army of Steer Demons! Here is a sword, a crossbow, 3 guns, and a laser shield\"\n\n\"Do you think I could maybe get some pants?\"\n\n\"...Get out.\"\n\n\n\nFollow us on Twitter: \n\nttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-down-to-fakk-heavy-metal-f-a-k-k-2-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8c2d942-fa1e-4fe7-ad3a-d25c08a2b93a/sm/2371242-1471992070182-FH_Thumb_12_copy_1.jpg","duration":834,"publication_date":"2016-08-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-ceo-car-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E176 - CEO CAR - GTA 5 Gameplay","description":"Ch: 57 8:00pm “Kill-o-copter”\n\nTanner and Kill-o-copter are on the run after being framed for the murder of zinc heiress Penelope Ambrose. Will they make it to T.R.i.D.N.T. headquarters and prove their innocence before the Serbian Yakuza blow them out of the sky? Tune in Sunday at 8:00 to find out! \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-ceo-car-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57af7954-e488-46fa-87ac-389a9780a875/sm/2371242-1471991972588-FH_Thumb_12_copy.jpg","duration":1011,"publication_date":"2016-08-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-b-a-d-ass","changefreq":"weekly","video":[{"title":"2016:E32 - WE ARE BAD-ASS","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-b-a-d-ass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b74ba807-b482-4343-8a46-7657551885da/sm/2371242-1471999339999-DS_PostShow_Template82416.jpg","duration":628,"publication_date":"2016-08-24T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-mile-high-club-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E175 - MILE HIGH CLUB - GTA 5 Gameplay","description":"Big Hole Derby: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/CmJRHqSYuEmpMwcg_uKXzA#\n\n\n\nJust once we wish Adam would start a gameplay with something other than an impassioned plea to the porn industry. One can dream.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-mile-high-club-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09183403-0f0f-49e7-84d7-54b871659a67/sm/2371242-1472002864339-FH_Thumb_12_copy_3.jpg","duration":671,"publication_date":"2016-08-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-sony-too-g-r-e-e-d-y-dude-soup-podcast-84","changefreq":"weekly","video":[{"title":"2016:E84 - SONY TOO GREEDY? - Dude Soup Podcast #84","description":"Our sponsors at MVMT are going to give you 15% off your entire purchase. Go to http://www.mvmtwatches.com/dudesoup.\n\nCheck out this week’s menu and get your first three meals free — with free shipping —by going to http://www.blueapron.com/soup\n\n\n\nIt's not called \"Game Friends\". It's called \"Game Business\". \n\nWait. It's not called either of those things?\n\nWhatever.\n\n\n\nLINKS:\n\nEurogamer - PS4 Slim Leaks: http://www.eurogamer.net/articles/2016-08-22-ps4-s...\n\nPS Blog - PS+ Price Increase: http://blog.us.playstation.com/2016/07/27/playstat...\n\nMCV Pacific - Sony Digital Revenues: http://www.mcvpacific.com/news/read/sony-reports-a...\n\nWario64 - PS Now to PC: https://twitter.com/Wario64/status/768111643544780...\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-sony-too-g-r-e-e-d-y-dude-soup-podcast-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83bcc0fd-8730-4bca-81b9-3a14972d0e34/sm/2371242-1471998799399-FH_Thumb_12_copy_2.jpg","duration":3734,"publication_date":"2016-08-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-funhaus-dungeons-and-dragons-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Funhaus Dungeons and Dragons - Episode 4","description":"In which new caverns are discovered, Dirik becomes aroused, Decker remains indifferent, and many enemies are brutally and needlessly maimed. \n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\nhttp://twitter.com/mattseditbay\n\n\n\n\n\nhttp://twitter.com/filmdstryr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-funhaus-dungeons-and-dragons-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d65a87f-a95e-4d9c-aae4-13913a430dd7/sm/2371242-1471632714681-FH_Thumb_12_copy_29.jpg","duration":5029,"publication_date":"2016-08-22T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-play-d-r-e-s-s-u-p-open-haus-79","changefreq":"weekly","video":[{"title":"2016:E37 - WE PLAY DRESS-UP? - Open Haus #79","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nEdi Amin's full self-bestowed title: \"His Excellency, President for Life, Field Marshal Al Hadji Doctor Idi Amin Dada, VC, DSO, MC, Lord of All the Beasts of the Earth and Fishes of the Seas and Conqueror of the British Empire in Africa in General and Uganda in Particular\"\n\nAlso he probably ate people.\n\nYou win this round, Elyse.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-play-d-r-e-s-s-u-p-open-haus-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81060e0c-9494-4b69-aee0-3ebd14b70b07/sm/2371242-1471649348165-Openhaus_Thumbnail_8-23-16.jpg","duration":619,"publication_date":"2016-08-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-2","changefreq":"weekly","video":[{"title":"2016:E34 - LORD OF THE C*CK RINGS - Demo Disk Gameplay","description":"One does not simply craft their own anatomically correct nude Frodo Baggins action figure complete with Elven Cloak and hand-painted foot hair. \n\nOh, wait. Someone did simply do that?\n\nHuh. \n\nGross. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7f81144-c552-43cb-a3eb-93d8405873e2/sm/2371242-1471659786271-FH_Thumb_Template1.jpg","duration":812,"publication_date":"2016-08-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-master-baiters-dead-by-daylight-gameplay","changefreq":"weekly","video":[{"title":"2016:E173 - MASTER BAITERS - Dead by Daylight Gameplay","description":"Can't a man just hideously deform himself, build a maze out of old shipping pallets and hay bales, set a few bear traps, and worship his multi-limbed floating talon god in peace?!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-master-baiters-dead-by-daylight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa7a183f-9569-44a8-9607-23d62f9c95a6/sm/2371242-1471561949875-FH_Thumb_12_copy_28.jpg","duration":720,"publication_date":"2016-08-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hitman-6","changefreq":"weekly","video":[{"title":"2016:E172 - CRUISIN' FOR DUDES - Hitman Blood Money Gameplay Part 6","description":"\"Yeah, look, I know we had a real good time what with all the circle dancing with poor people and me drawing you naked and stuff. Thing is, I'm going through kind of 'Me' phase right now and I'm not really looking to get tied down or anything. Soooo... we're cool right? Sweet. Well, I'm gonna go scream from the front of the boat again. Thanks for the car sex!\" \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hitman-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acfed035-9984-4ef8-b67a-6e09be826336/sm/2371242-1471640713912-Hitman_Part_6_Thumbnail_1.jpg","duration":803,"publication_date":"2016-08-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-racism-best-of-funhaus-july-2016","changefreq":"weekly","video":[{"title":"2016:E171 - BEST OF RACISM - Best of Funhaus July 2016","description":"\"Best of Funhaus\" videos are such a tease. They're like an ornate peacock feather, gently tickling the perineum of the gaming community. The original content must be viewed for complete comedic release. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-racism-best-of-funhaus-july-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f7ccd0d-ef0c-410b-9c28-e39122f9ba1e/sm/2371242-1471552799077-FH_Thumb_Template.jpg","duration":988,"publication_date":"2016-08-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-lastfight-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E32 - Let's Play - LASTFIGHT Starring Funhaus","description":"France's most powerful fighters have all converged for battle. There's a deformed cyborg alligator-man, a topless plant-lady, a guy that shoots freeze-rays, a roided fish-ape, a bird-faced shaman, and... uh... a guy in OK shape named Richard.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-lastfight-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d55bb2d-72b3-40e8-b1cd-d4c22d512f0d/sm/2371242-1471565610422-Duo_Thumbnail_Template_copy_1.jpg","duration":1957,"publication_date":"2016-08-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-make-a-girl-orgasm-gal-gun-double-peace-gameplay","changefreq":"weekly","video":[{"title":"2016:E170 - HOW TO MAKE A GIRL ORGASM - Gal*Gun: Double Peace Gameplay","description":"Apparently you just need to make sure they're dressed like schoolgirls, then shoot tiny demons off of their shoulders with some sort of light gun. Also, whatever you do, do not under any circumstances let them hand you a note next to a river.\n\nSeriously, Japan, what the hell?\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-make-a-girl-orgasm-gal-gun-double-peace-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bc0a025-e83f-467b-b43e-2ec7ef2d5691/sm/2371242-1471305263406-FH_Thumb_12_copy_24.jpg","duration":693,"publication_date":"2016-08-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-sonic-s-cunning-stunts-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E25 - Sonic's Cunning Stunts Gameplay - Fullhaus","description":"Whoo!\n\nOh yeah!\n\n\n\nRolling around at the speed of sound,\n\nGot places to go, gotta follow my rainbow!\n\nCan't stick around, have to keep moving on,\n\nGuess what lies ahead, only one way to find out!\n\n\n\nMust keep on moving ahead,\n\nNo time for guessing, follow my plan instead.\n\nTrusting in what you can't see,\n\nTake my lead; I'll set you free.\n\n\n\nFollow me, set me free,\n\nTrust me and we will escape from the city.\n\nI'll make it through.\n\nFollow me (Follow me), set me free,\n\n\n\nTrust me and we will escape from the city.\n\nI'll make it through, prove it to you.\n\nFollow me!\n\n\n\nOh yeah!\n\n\n\nIt's stuck in your head now isn't it? Also, don't spend too long on the Sonic Wiki... it'll cast a dark spell on you.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-sonic-s-cunning-stunts-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50029f3a-1471-4c1f-910e-ff8e683fca64/sm/1533704-1471548670287-Fullhaus_Thumbnail_Sonic_GTA.jpg","duration":8179,"publication_date":"2016-08-18T23:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-32","changefreq":"weekly","video":[{"title":"2015:E36 - WE ABUSE EACH OTHER? - Funhaus Comments #32","description":"I know, I know. You thought we were only capable of squeezing out one poop joke per episode. Maybe we could relax and move ourselves to drop two at best. Well take a seat because this week we managed to pinch off a third one near the end.\n\nDon't worry. I hate myself enough for all of you.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8659d64-b69d-4cbc-8d11-87bfa6653117/sm/2371242-1471545873332-FH_Thumb_Template12.jpg","duration":629,"publication_date":"2016-08-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-what-the-fakk-heavy-metal-f-a-k-k-2-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E169 - WHAT THE FAKK - Heavy Metal: F.A.K.K. 2 Gameplay Part 2","description":"Y'know, in that song \"Ironic\"? Y'know all that stuff she talks about? None of it's actually ironic. Seriously, think about it! But the fact that she wrote a song called \"Ironic\" and that none of the stuff is irrernik is tertally irmermip! *(smells own fart, chains engine block around neck, swan dives into river)*\n\n\n\nFollow us on Twitter: \n\nttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-what-the-fakk-heavy-metal-f-a-k-k-2-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c48afa1b-9a5d-4f6d-b192-296c2615cbf1/sm/2371242-1471394171076-FH_Thumb_12_copy_27.jpg","duration":737,"publication_date":"2016-08-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-glitches-and-riches-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E168 - GLITCHES AND RICHES - GTA 5 Gameplay","description":"They say that diamonds are a girl's best friend. Did you ever consider the other side of the coin? Could it be possible that diamonds can be friends with dirty, gross BOYS? \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-glitches-and-riches-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ce8b46f-a55f-4bcd-8129-1836111449f5/sm/1533704-1471462312278-FH_Thumb_12_copy_6.jpg","duration":595,"publication_date":"2016-08-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-method","changefreq":"weekly","video":[{"title":"2016:E31 - WE ARE TOTALLY METHOD","description":"All the latest art and comments. Only for you super cool First Members!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-method","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0710bb9-c398-40ed-8b34-51e3c9c2dc32/sm/2371242-1471385610546-DS_PostShow_Template81716.jpg","duration":2337,"publication_date":"2016-08-17T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-bar-fight-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E167 - BAR FIGHT - GTA 5 Gameplay","description":"LOCKED IN THE BAR UNARMED\n\nhttps://socialclub.rockstargames.com/games/gtav/pc...\n\n\n\nHedgehogs can breed as early as 8 weeks. Breeding at this age can be very dangerous for the female and is highly discouraged by most breeders.\n\nMale hedgehogs can get bedding or other material inside its penile sheath. You will need to check this area daily to make sure there is not blockage or irritation. Most irritations can be freed during a normal bath but if a problem persists then a trip to the veterinarian will be necessary.\n\nThere are no odor differences between males and females.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-bar-fight-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fdf95c4-01e1-478d-a1d7-588c67794f9c/sm/2371242-1471303138633-FH_Thumb_12_copy_23.jpg","duration":738,"publication_date":"2016-08-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-no-man-s-sky-did-it-f-a-i-l-dude-soup-podcast-83","changefreq":"weekly","video":[{"title":"2016:E83 - No Man's Sky: DID IT FAIL? - Dude Soup Podcast #83","description":"Visit our sponsors! Post your job for free on http://www.ziprecruiter.com/dude today!\n\nAnd get $50 toward any mattress purchase by visiting http://www.casper.com/soup and use offer code \"soup.\"\n\n\n\nDid it feel like bathing in the majesty of the cosmos or just shooting at rocks with lasers for 10 hours?\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-no-man-s-sky-did-it-f-a-i-l-dude-soup-podcast-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84c7caf1-144b-42fd-a617-f4a070bde198/sm/2371242-1471391055506-FH_Thumb_12_copy_26.jpg","duration":3721,"publication_date":"2016-08-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-twits-n-crits-3","changefreq":"weekly","video":[{"title":"S1:E3 - Funhaus Dungeons and Dragons - Episode 3","description":"In which suspicions arise, balls are modified, a halfling is tossed, and far too much time is spent discussing the genitals of goblins.\n\n\n\n\n\n\n\nFollow us on Twitter: \n\n\n\n\n\nhttp://twitter.com/adamkovic\n\n\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\n\n\nhttp://twitter.com/mattseditbay\n\n\n\n\n\nhttp://twitter.com/filmdstryr\n\n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-twits-n-crits-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e60368fb-24e8-44a4-8565-26c5409cbd8d/sm/2371242-1471032361091-FH_Thumb_12_copy_17.jpg","duration":4919,"publication_date":"2016-08-15T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open","changefreq":"weekly","video":[{"title":"2016:E36 - WE TRY TOO HARD? - Open Haus #78","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nThey asked Jacob to make the photoshops for this episode. He dutifully did them. Jacob doesn't talk much any more. He mostly just stares off into space as an occasional shudder passes through his body.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5db838d2-173c-47fd-9599-ba0fc2d57a43/sm/2371242-1471050521884-Openhaus_Thumbnail_8-16-16_1.jpg","duration":600,"publication_date":"2016-08-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo","changefreq":"weekly","video":[{"title":"2016:E33 - HOMO-SHREK-SUAL - Demo Disk Gameplay","description":"If you had to see the unedited Rule 34s for this episode you wouldn't be able to write a clever description either. Why is he so shredded? Why was Jennifer Garner there? What in the holy hell is up with the onion?! Enjoy, you grossos.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4b2a2b5-4066-4c75-914c-718367cbca36/sm/2371242-1471051459370-FH_Thumb_12_copy_18.jpg","duration":873,"publication_date":"2016-08-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-balls-of-steel-lucioball-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E166 - BALLS OF STEEL - Lucioball Overwatch Gameplay","description":"XXXV: Exiting the tower he found The Sentinel rising to its feet. It looked at Farinfoor, then out into the distance and back again. The beast lumbered to his side and stood tall beside him. The combatants, having dreamily abandoned their weapons approached Farinfoor with childlike confusion.\n\n“What… what shall we do now?” one pleaded, as others nodded in desperate agreement.\n\nFarinfoor surveyed the crowd, watching with disappointment as their penchant towards reverence quickly took hold.\n\n“Do what you will.” he said simply, then walked off into the suddenly limitless expanse of that brilliant, aimless world, never once looking back. \n\nEND\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-balls-of-steel-lucioball-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48befb1e-db0b-4288-aaf8-b103ea6f1ca3/sm/2371242-1471039451322-FH_Thumb_12_copy_12.jpg","duration":948,"publication_date":"2016-08-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-private-brown-eye-sherlock-holmes-the-devil-s-daughter-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E165 - PRIVATE BROWN EYE - Sherlock Holmes: The Devil's Daughter Gameplay Part 2","description":"\"To solve The Mystery of the Eagle's Talon I'll need to use all of my most valuable tools of detection! Watson, fetch me my pipe, that dumb hat with the flaps, surgical tubing, a really sturdy spoon,and my favorite syringe!\"\n\n\"Do you want me to grab the microscope or a note pa-\"\n\n\"We haven't the time! Away!\" \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-private-brown-eye-sherlock-holmes-the-devil-s-daughter-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e692a99-e426-4385-a937-9679c105c749/sm/2371242-1471034810869-FH_Thumb_12_copy_13.jpg","duration":590,"publication_date":"2016-08-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-s-p-i-d-e-r-p-man-zero-g-arena-gameplay","changefreq":"weekly","video":[{"title":"2016:E164 - SPI-DERP-MAN - Zero G Arena Gameplay","description":"\"My Spi-derp Sense is tingling! M.J. must be in trouble! Look out, Doc Ock, her comes Spid-derp Ma-! *(slips off of ledge, breaks back on gargoyle, impales self on fire hydrant)*\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-s-p-i-d-e-r-p-man-zero-g-arena-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d52491c4-061f-4576-8cda-78c3ec3466b9/sm/2371242-1470964531936-ZeroGThumbnail.jpg","duration":806,"publication_date":"2016-08-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-day-of-infamy-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E31 - Let's Play - Day of Infamy Starring Funhaus","description":"The Funhaus gang finally gets to live out their dream of gunning down The Allies during World Wa- oh god I can't. I just can't do it anymore. Stay tuned to see The Greatest Generation blown to red mist, ya wierdos.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-day-of-infamy-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb6e56a4-a261-46de-8e05-d0daab5c3276/sm/2371242-1470936111644-Duo_Thumbnail_Template_copy.jpg","duration":1378,"publication_date":"2016-08-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-nazis-are-awesome-day-of-infamy-gameplay","changefreq":"weekly","video":[{"title":"2016:E162 - NAZIS ARE AWESOME - Day of Infamy Gameplay","description":"XXXIV: The throng below slowly rose to their feet, more than a little hesitant to embrace the sudden calm. Oddly renewed from his labor, Farinfoor turned to join them and caught sight of the meager pile of flesh still staining the floor with its blood.\n\n“You spoke truth, Maker,” he said as he strode towards the door. “This world has become greater than you.” \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-nazis-are-awesome-day-of-infamy-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7f5e9fb-09a5-48d7-bbe7-fa734ca44efc/sm/2371242-1470863590890-FH_Thumb_12_copy_4.jpg","duration":907,"publication_date":"2016-08-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments","changefreq":"weekly","video":[{"title":"2015:E35 - HEATH LEDGER ALIVE? - Funhaus Comments #31","description":"XXXIII: Summoning the entirety of his will, he cast his thoughts, his very being, outwards from that monument of dark creation. He took hold of this new and frightening revelation of potential and let loose a tide of its wonderment out onto the confused and writhing masses across all that was known. He allowed them to fathom, for the first time, that their lives, their world, was their own. Farinfoor unhurriedly opened his eyes, turned them to the farthest boundaries his vision, and watched as his world shook, and boiled, and then was suddenly, graciously still. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b62cad6b-1c1b-4003-b4f7-550c6d54b40a/sm/2371242-1470941170697-FH_Thumb_Template11.jpg","duration":712,"publication_date":"2016-08-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-eat-your-penis-g-force-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E161 - EAT YOUR PENIS - G-Force Gameplay Part 2","description":"XXII: Farinfoor was no god. We wasn’t even a mage. Those subtle arts were seldom wasted on his people, who opted instead to train their young from birth for nothing more than the cruelty of the battlefield. But as he watched his world rend itself apart from that perch of unspeakable power, a singular conception took hold of him. Bracing himself on the window ledge, Farinfoor closed his weary eyes and attempted the unimaginable.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-eat-your-penis-g-force-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7770759-d1af-40c6-90f8-5e29587a17e4/sm/2371242-1470773213926-FH_Thumb_12_copy_9.jpg","duration":859,"publication_date":"2016-08-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-y-o-u-re-fired-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E159 - YOU'RE FIRED - GTA 5 Gameplay","description":"XXXI: The thought of his own death brought Farinfoor no unease. He had served his purpose valiantly. He could not, however, allow the torment of those for whom he professed to fight to continue. A sick and unworthy world may be ending, but that was not the fault of those who had long suffered its creator’s negligence. Outside the sky split angrily as landscapes heaved and melted, while inside the tower Farinfoor hung his head, cursing his own impetuousness. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-y-o-u-re-fired-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d2b996-cf9e-4930-86e5-320ba601015f/sm/2371242-1470874018350-FH_Thumb_12_copy_5.jpg","duration":604,"publication_date":"2016-08-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-suicide-squad-did-it-s-u-c-k-dude-soup-podcast-82","changefreq":"weekly","video":[{"title":"2016:E82 - Suicide Squad: DID IT SUCK? - Dude Soup Podcast #82","description":"Support our sponsors! Go to http://www.mvmtwatches.com/dudesoup and get 15% off your entire purchase!\n\nAnd post jobs for free by going to http://www.ziprecruiter.com/dude!\n\n\n\nDo you want the long answer or the short answer?\n\nThey're both \"Yes\".\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-suicide-squad-did-it-s-u-c-k-dude-soup-podcast-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4aa097dd-e880-4890-9339-bea51c3aac86/sm/2371242-1470860528071-FH_Thumb_12_copy.jpg","duration":3740,"publication_date":"2016-08-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-a-r-e-u-h-i-c-e-t-r-o-n-a-u-t-s","changefreq":"weekly","video":[{"title":"2016:E30 - WE ARE... UH... ICE-TRONAUTS?","description":"Thank you, First Members! Here are your curmerts and droorings.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-a-r-e-u-h-i-c-e-t-r-o-n-a-u-t-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e5396ce-2e38-4e31-8a19-0a1ba577a22a/sm/2371242-1470782691174-DS_PostShow_Template81016.jpg","duration":2416,"publication_date":"2016-08-10T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-s-o-n-i-c-s-death-run-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E157 - SONIC'S DEATH RUN - GTA 5 Gameplay","description":"XXX: Cries arose from the battlefield as Farinfoor steadied himself and peered outside. The sky was ablaze with murky purple flashes of light. Combatants from all sides lay crumpled and writhing on the ground. In the distance the earth shrieked while mountains crumbled to meet gaping, hungry fissures in the once sturdy plain. Farinfoor’s world had felt its maker die, and now he could do little more than watch as it shook itself apart with mourning.\n\n\n\nParkway Deathrun\n\nhttps://socialclub.rockstargames.com/games/gtav/pc...\n\nRailroad Deathrun\n\nhttps://socialclub.rockstargames.com/games/gtav/pc...\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-s-o-n-i-c-s-death-run-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e91ca17a-e158-42d2-b2f8-9c9e25d3c841/sm/2371242-1470689965269-FH_Thumb_12_copy_7.jpg","duration":622,"publication_date":"2016-08-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-dnd-2","changefreq":"weekly","video":[{"title":"S1:E2 - Funhaus Dungeons and Dragons - Episode 2","description":"In which our travelers meet a family in need, drink themselves stupid, battle a pack of wolves, and discover a strange, gruesome scene.","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-dnd-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c329c98-3c5d-429d-a099-be6dacd94f0f/sm/2371242-1470547159751-FH_Thumb_12_copy.jpg","duration":5883,"publication_date":"2016-08-08T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-go-r-e-t-r-o-open-haus-77","changefreq":"weekly","video":[{"title":"2016:E35 - WE GO RETRO? - Open Haus #77","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nXXIX: Farinfoor permitted himself a joyless laugh as the pervasive, throbbing percussive beats slowed, quited, and ceased. All was still. Even the clamor of the battle outside abruptly vanished, its combatants seeming at once to forget their function. He peered down at this sea of bewilderment and felt some strange sentiment take hold. A sensation on unequaled possibility. Farinfoor turned from the window, eager to join friend and foe alike on the plain below when the tower suddenly began to shudder and moan. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-go-r-e-t-r-o-open-haus-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/275cc368-7556-4de4-ad82-713d550991cc/sm/2371242-1470439156597-Openhaus_Thumbnail_8-9-16-1.jpg","duration":601,"publication_date":"2016-08-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-disk","changefreq":"weekly","video":[{"title":"2016:E32 - FLINTSTONERS - Demo Disk Gameplay","description":"XXVIII: The hobbled, agonizing journey across the room had been worth it. Farinfoor had submitted to enough of the beast’s indignities. He stood over the body and managed the smallest of smiles. This had been the creature that sent man and child alike to their beds at night shuddering with fear? This madman with his incogitable rantings of other worlds?\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-disk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/318830a3-8259-4177-8b3f-e7b91be21f11/sm/2371242-1470445504083-FH_Thumb_Template.jpg","duration":910,"publication_date":"2016-08-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-deep-space-whine-gmod-murder-gameplay","changefreq":"weekly","video":[{"title":"2016:E156 - DEEP SPACE WHINE - Gmod Murder Gameplay","description":"XXVII: “You hear that sound?” he said, nodding upwards toward the pounding that gently shook the tower. “That’s me. That’s my heart beating away. I’m still alive out there somewhere. That’s what’s real. I don’t care how big this place gets or how concrete you all feel. I’m gonna wake up soon and when I d-”\n\nThe man’s head came off easier than Farinfoor had expected.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-deep-space-whine-gmod-murder-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/368f528c-45ee-45c6-a152-54aeb194acc9/sm/2371242-1470423118298-Gmod_Murder_Thumbnail.jpg","duration":1283,"publication_date":"2016-08-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hitman-5","changefreq":"weekly","video":[{"title":"2016:E155 - HO HO HOES - Hitman Blood Money Gameplay Part 5","description":"XXVI: “You set us against one another. You condemned us to perpetual fear and combat; infected by your sickness and left to blister and rot.”\n\nHarry turned towards his accuser but seemed untroubled by the charges.\n\n“What are you whining about? You wouldn’t even exist if it weren’t for me. Besides…” he turned back to the window.\n\n“... you aren’t even real anyway.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hitman-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b444d1d7-f361-4946-921f-8a95e2af9d3b/sm/2371242-1470420634306-Hitman_Part_5_Thumbnail.jpg","duration":807,"publication_date":"2016-08-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-i-like-big-r-o-b-o-butts-livelock-gameplay","changefreq":"weekly","video":[{"title":"2016:E154 - I LIKE BIG ROBO-BUTTS - Livelock Gameplay","description":"Thanks to Perfect World Entertainment for sponsoring this video!\n\n\n\nYoung Jacob actually has a profession in which he gets paid real money to stare at giant robot badonks. Stay in school, kids. Dreams can come true!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-i-like-big-r-o-b-o-butts-livelock-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fa51282-c2e0-41ec-9a90-0fde1924e5c2/sm/2371242-1470336414937-Livelock_Thumbnail.jpg","duration":910,"publication_date":"2016-08-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-party-hard-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E30 - Let's Play - Party Hard Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nSo much needless bloodshed. Sometimes people just want to make out on a toilet while sick beats play and a clown dances with a cowboy and chick dressed like Lady Gaga. Party-pooper. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/thenasacova\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-party-hard-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b2a8cbb-7f87-4664-a05b-b2ed5a240818/sm/2371242-1470346917219-Duo_Thumbnail_Template_copy.jpg","duration":879,"publication_date":"2016-08-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-the-mystery-of-the-poopy-pants-sherlock-holmes-the-devil-s-daughter-gameplay","changefreq":"weekly","video":[{"title":"2016:E153 - THE MYSTERY OF THE POOPY PANTS - Sherlock Holmes: The Devil's Daughter Gameplay","description":"\"Come, Watson! The Game is afoot! We must solve The Mystery of the Missing Laudanum!\"\n\n\"(sigh) It's in your belly.\"\n\n\"Just as I suspected! Well done, old chap. Let's celebrate. Cocaine for everyone!\"\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-the-mystery-of-the-poopy-pants-sherlock-holmes-the-devil-s-daughter-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbc2905a-6ca2-4df6-961f-362b65cab880/sm/2371242-1470330818444-FH_Thumb_12_copy_5.jpg","duration":733,"publication_date":"2016-08-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-we-swap-g-e-n-d-e-r-s-funhaus-comments-30","changefreq":"weekly","video":[{"title":"2015:E34 - WE SWAP GENDERS? - Funhaus Comments #30","description":"XXV: Farinfoor seethed with disbelief. “You… you made this place. Why did you make it so ugly? So brimming with violence and death?”\n\n“I dunno”, Harry shrugged without looking back. “I was a kid. I guess I was working some stuff out. My dad was a jerk and girls wouldn’t come near me. Anyways, it’s kinda fun watching all you guys go at it.”\n\nAgain, Farinfoor endeavored to stand. This time he did not falter.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-we-swap-g-e-n-d-e-r-s-funhaus-comments-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfc5a26-8bf1-4aba-9e2c-636cf5d0c46e/sm/2371242-1470343594711-FH_Thumb_Template10.jpg","duration":695,"publication_date":"2016-08-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-totally-accurate-battle-simulator-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E24 - Totally Accurate Battle Simulator Gameplay - Fullhaus","description":"We know what the audience likes. That's why there's a huge chunk of sweet floppy gameplay minus the personalities you love listening to.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-totally-accurate-battle-simulator-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e3e9473-2ec6-4893-82f0-bcca9dc03188/sm/1533704-1470267191803-TABS_Thumbnail.jpg","duration":4089,"publication_date":"2016-08-04T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-fight-in-vr-thrill-of-the-fight-gameplay","changefreq":"weekly","video":[{"title":"2016:E152 - HOW TO FIGHT IN VR - Thrill of the Fight Gameplay","description":"XXIV: “It was so much more beautiful than I ever imagined it. It was like… it was almost like it kept going...growing and thriving, even after I abandoned it. My world. My little, stupid world, birthed on the Cheeto-stained pages of my journal had become something else. It had become real!”\n\nFarinfoor watched the man intently as he walked to the window and peered out over the plain. Spitting out a mouthful of blood, he braced himself on the wall and attempted to stand but promptly slid back to the floor. He imagined the view from that window, one of endless bloodshed and ire, and witnessed its designer leer at the sight.\n\n“Isn’t it great?” \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-fight-in-vr-thrill-of-the-fight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fc488e7-53ca-41cb-89b6-06b352e03aa9/sm/2371242-1470267977956-FH_Thumb_12_copy_4.jpg","duration":701,"publication_date":"2016-08-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-money-for-nothing-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E151 - MONEY FOR NOTHING - GTA 5 Gameplay","description":"XXIII: “This all seemed like kid’s stuff you know?” Harry waved his hand towards the room and beyond to the bloody fray sluggishly persevering outside.\n\n”I just lived my life. Grew up. Got this job doing IT at my step-dad’s office.”\n\nHarry patted Farinfoor on the head and leapt to his feet. \n\n“And then: Bam!” he clapped his meager hands together and the tower shook. “I’m walking home one night and this produce truck just slams me into the pavement, I mean really clobbers me”\n\nHarry paused, turning towards the far window.\n\n“And then... then I was here.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-money-for-nothing-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be0bddf7-7fe1-4317-ab3b-90ae7c9e141e/sm/2371242-1470249077804-FH_Thumb_12_copy_3.jpg","duration":884,"publication_date":"2016-08-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-bafooks","changefreq":"weekly","video":[{"title":"2016:E29 - WE ARE BAFOOKS","description":"What're you lookin' at? You some kinda goofy bafook?","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-bafooks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/488feff9-f42e-446b-b2ca-a38ccd496358/sm/1533704-1470186355687-DS_PostShow_Template5.jpg","duration":3244,"publication_date":"2016-08-03T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-s-o-n-i-c-s-cunning-stunts-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E150 - SONIC'S CUNNING STUNTS - GTA 5 Gameplay","description":"Well, them ol' Funhaus boys went and got themselves in a dilly of a pickle this time, didn't they? Boss Turbid's gone and thrown 'em in the pokie, but don't y'all worry a bit cuz sweet, precious Elyse has got a plan to spring them fellers and their racist car just in time for Annual County Pig-greasin'! Whhooooooooo-eeeeee!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-s-o-n-i-c-s-cunning-stunts-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cd99833-dd24-4387-8245-2e352c09f049/sm/2371242-1470172102007-FH_Thumb_12_copy.jpg","duration":977,"publication_date":"2016-08-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-should-star-wars-be-f-r-e-e-dude-soup-podcast-81","changefreq":"weekly","video":[{"title":"2016:E81 - SHOULD STAR WARS BE FREE? - Dude Soup Podcast #81","description":"Support our sponsors! Get $50 toward any mattress purchase by visiting http://www.casper.com/soup and using offer code \"soup.\"\n\nAnd post jobs on ZipRecruiter for free by going to http://www.ziprecruiter.com/dude!\n\n\n\nUgh. Sadly, even in futuristic dystopian nightmare of a world, we still have to pay for some stuff. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-should-star-wars-be-f-r-e-e-dude-soup-podcast-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a33f3ad3-8ad4-465d-8e9c-12e963688260/sm/2371242-1470187595007-FH_Thumb_12_copy_1.jpg","duration":4406,"publication_date":"2016-08-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twits-crits-season-1-twits-and-crits-funhaus-dungeons-and-dragons-part-1","changefreq":"weekly","video":[{"title":"S1:E1 - Funhaus Dungeons and Dragons - Episode 1","description":"Fisticuffs, gender-bending, mutilation, love affairs, magic, hacking, and so much drinking. It's all here in the first episode of our new Funhaus D&D adventure!\n\n\n\n\n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovic\n\n\n\nhttp://twitter.com/brucegreene\n\n\n\nhttp://twitter.com/jameswillems\n\n\n\nhttp://twitter.com/elysewillems\n\n\n\nhttp://twitter.com/sirlarr\n\n\n\nhttp://twitter.com/mattseditbay\n\n\n\nhttp://twitter.com/filmdstryr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/twits-crits-season-1-twits-and-crits-funhaus-dungeons-and-dragons-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65faa6e9-a39f-474d-9af7-9b52d1b74f37/sm/2371242-1469837730284-FH_Thumb_12_copy_6.jpg","duration":5039,"publication_date":"2016-08-01T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/bayonetta-in-playboy-x-wing-comes-to-gog-no-more-sexy-streaming-hard-news-102814","changefreq":"weekly","video":[{"title":"S1:E754 - Bayonetta in Playboy, X-Wing Comes to GOG, No More Sexy Streaming | Hard News 10/28/14","description":"I?m Sean Hinz and this is Hard News for Tuesday October 28, 2014.Disney Interactive has partnered with Good Old Games to bring some LucasArts classics to modern PCs. The expected list of games is extensive and is set to include roughly 30 DRM-free classics, six of which have released as of today. Those releases are Secret of Monkey Island, KOTOR, Star Wars: X-Wing & Tie Fighter Special Editions, Sam & Max Hit The Road, and Indiana Jones and the Fate of Atlantis. Most are priced at $10, some with a 20% discount, and Fate of Atlantis and Sam and Max are only $6. Obviously we?re all very excited for X-Wing and Tie Fighter, but with another two-dozen games waiting in the wind, you shouldn?t go blowing all your bison dollars just yet. Fingers crossed Armed and Dangerous will be coming to GOG alongside the other two-dozen Star Wars games we?re sure to get. Disney is certainly taking great care with George Lucas? franchise, by shoving it down your throat, any which way they can.Onto more pressing matters. Twitch has taken a stance on the significance of sexy streaming across its platforms and basically enacted a no tolerance policy. In an update to their Rules of Conduct, the streaming giant has decided that ?wearing no clothing or sexually suggestive clothing - including lingerie, swimsuits, pasties, and undergarments ? is prohibited, as well as any full nude torsos, which applies to both male and female broadcasters.? Critics within the community have felt, much like Twitch, that the practice has been a distraction from the services purpose of watching other people play games. One of the first victims of this new rule is Rooster Teeth?s Meg Turney, who according to GamerHeadlines.com was hit with a warning over her profile banner showcasing Meg in a bra. She?s taking it in stride though with the hashtag TooHotForTwitch and her updated profile to censor the panties. I guess this means we?ll have to re-think tonight?s stream.And while we?re on the subject of scantily clad gamers, Playboy has partnered with Nintendo all ","player_loc":"https://roosterteeth.com/embed/bayonetta-in-playboy-x-wing-comes-to-gog-no-more-sexy-streaming-hard-news-102814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cc4f817-c6a0-4e58-9fff-fc82283dc3d6/sm/video_thumbnail_12853268-1414534574.jpg","duration":223,"publication_date":"2014-10-28T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slap","changefreq":"weekly","video":[{"title":"S1:E817 - The Slap","description":"S1:E817 - The Slap","player_loc":"https://roosterteeth.com/embed/the-slap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/811b73e0-9e9e-44e7-ace2-2f95912f5be5/sm/video_thumbnail_12853245-1414527897.jpg","duration":104,"publication_date":"2014-10-28T13:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/why-wwe-live-events-are-awesome","changefreq":"weekly","video":[{"title":"S1:E816 - Why WWE Live Events are AWESOME!","description":"S1:E816 - Why WWE Live Events are AWESOME!","player_loc":"https://roosterteeth.com/embed/why-wwe-live-events-are-awesome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/182e6b82-c726-42a8-94b9-2c5cd4cd8f0f/sm/video_thumbnail_12853215-1414516574.jpg","duration":141,"publication_date":"2014-10-28T10:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-earthbound","changefreq":"weekly","video":[{"title":"S1:E14 - FIVE FUN FACTS about Earthbound","description":"Think you know everything about Earthbound? Probably not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-earthbound","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93cc70f5-1860-4141-af30-65a8708096f8/sm/video_thumbnail_12853209-1414511313.jpg","duration":208,"publication_date":"2014-10-28T08:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/xbox-one-bundles-50-off-share-coming-to-ps4-san-andreas-hd-on-xbox-live-hard-news-102714","changefreq":"weekly","video":[{"title":"S1:E753 - Xbox One Bundles $50 Off, Share Coming to PS4, San Andreas HD on Xbox Live | Hard News 10/27/14","description":"I’m Sean Hinz and this is Hard News for Monday October 27th, 2014.\r\nAs foretold by the Internets, Grand Theft Auto: San Andreas came to Xbox Live over the weekend to celebrate the game’s 10th anniversary. It runs in glorious 720p on the Xbox 360 and weighs in at a hefty 2GB for anyone worried about hard-drive space. The limited number of people covering the launch all seem pretty happy with their purchase, mostly due to it only costing $3.74 here in North America. That’s actually cheaper than the $3.99 it costs on most mobile devices. It comes jam packed with achievements and some speculate this might in fact be a port of the mobile port. No word on whether or not this will come to PS3, but you can still pick it up as a PS2 classic if you Sony ponies don’t want to feel left out. Oh and there hasn’t been confirmation of any sort of hot beverages coming to the Xbox Live version... So go back to your visual novels and dating sims you pervs.\r\nSpeaking of watching other people play, the PS4 Share Play feature introduced in their first presser will finally arrive as of patch 2.0 launching tomorrow. If you forget, Share Play provides users the ability to let their friends join their gaming sessions virtually. Kind of like sharing your desktop on Skype, but with a few fun features. All you have to do is create a party and jump into a game. Once you’re ready, hit the Share button and there is a new option of allowing your friends one hour of Share Play time in a particular session. From there they can watch your game, jump into some local co-op remotely as a second player, or even be passed the controller to take control of the game altogether. The best part is most of the features only require the host PS4 to have a PlayStation Plus account and copy of the game. Your friends only need PlayStation Plus for local co-op remotely. There is one caveat, you can only enable a Share Play session for an hour at a time, assumably to keep people from just streaming games to their friends. Never-the-less, it’s a pretty cool feature ","player_loc":"https://roosterteeth.com/embed/xbox-one-bundles-50-off-share-coming-to-ps4-san-andreas-hd-on-xbox-live-hard-news-102714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5ad91e0-06ed-4656-aa39-358fe0c590ed/sm/video_thumbnail_12853133.jpg","duration":245,"publication_date":"2014-10-27T11:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/love-is-in-the-air-on-live","changefreq":"weekly","video":[{"title":"S1:E815 - Love is in the air on Live!","description":"There were plenty of public displays of affection this week on ScrewAttack Live! Everyone from androids to green jungle men to sloths let the world know how they feel.\r\n\t ","player_loc":"https://roosterteeth.com/embed/love-is-in-the-air-on-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a946aa76-a34c-4064-9c62-aff86b658325/sm/video_thumbnail_12853052.jpg","duration":145,"publication_date":"2014-10-26T10:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-direct-shows-wii-u-features-halo-5-launch-date-leaked-3d-realms-reborn-hard-news-102414","changefreq":"weekly","video":[{"title":"S1:E752 - Smash Direct Shows Wii U Features, Halo 5 Launch Date Leaked, 3D Realms Reborn | Hard News 10/24/14","description":"I’m Sean Hinz and this is Hard News for Friday October 24th, 2014.\r\nWhen you start at a new company, it’s an exciting time where the possibilities seem endless. You want to share your excitement with everyone and hey, I bet the company wants you to as well. Unless you leak some proprietary information within hours of your first day on the job. Like eSports coach Michael Cavanaugh who posted a picture on social media that may or may not have leaked the launch date for Halo 5. In a picture on Twitter, Michael says he is “extremely happy and humbled to join the the 343 Industries team to work on @Halo 5: Guardians!” But look closely behind him and notice countdown clock with 382 days left in a project. If that is for Halo 5: Guardians, it would put launch on Tuesday, November 10th of 2015. Not all that surprising considering everything we know about the franchise and when it has launched historically. The tweet is still up, so maybe that 343 Industries doesn’t much care, but man what a newb! Will someone please just go teabag Michael on Vine for me?\r\nIn a time long before social media, a company existed called 3D Realms and they once made great games like Duke Nukem, Commander Keen, and many many other classic franchises. Then in 2009 they closed up shop, but that wouldn’t be the end of their story. Recently, Interceptor Entertainment CEO Fredrik Schrieber and investor Mike Nielsen came together and purchased the developer, along with its intellectual properties and after getting their house in order, they’re starting off with a bang! Yesterday, 3D Realms launched 3D Realms Anthology, a collection of 32 games from yesteryear, updated to run on modern PCs in an exclusive launcher and is completely DRM-free. It comes bundled with the “re-rockestrated soundtrack” courtesy of Interceptor’s Andrew Hulshult and for the next 12 hours or so is half-price or $20. While there are many games in the collection to be excited for, I look forward to jumping into Blake Stone’s boots and killing all manner of aliens once again. It’s","player_loc":"https://roosterteeth.com/embed/smash-direct-shows-wii-u-features-halo-5-launch-date-leaked-3d-realms-reborn-hard-news-102414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43095d85-e523-461b-b5fa-8d735702eb51/sm/video_thumbnail_12852866.jpg","duration":260,"publication_date":"2014-10-24T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/titanfall-horde-mode-mortal-kombat-x-live-action-series-smash-on-vita-hard-news-102314","changefreq":"weekly","video":[{"title":"S1:E751 - Titanfall Horde Mode, Mortal Kombat X Live-Action Series, Smash on Vita?! | Hard News 10/23/14","description":"I’m Sean Hinz and this is Hard News for Thursday October 23rd, 2014.\r\nRespawn is working on a new mode for Titanfall and it might actually get you back into the game. Called Frontier Defense, the new mode introduces four player co-op to the multiplayer shooter as you battle of hordes of AI-controlled grunts, spectres, and titans. The mode will also encourage you to engage in new strategies, like placing turrets, setting Titan drop points, and even taking sniping from the drop ship. The mode places towers in existing maps which you must defend from hordes of enemies and some of the AI are variants on their standard loadouts. This new content is part of a free update and while we don’t have any specific dates at this time, it will be bundle with some other changes like Marked for Death Pro mode, Deadly Ground mode, new ranked play, and other various improvements. How disheartening must it be to look at Activision launching hits like Destiny and Call of Duty, while EA is hoping you won’t ask about Battlefield as they try to keep a March release relevant?\r\nSpeaking of relevance, Warner Bros. wants to keep the live-action Mortal Kombat brand alive and kicking, by tying it into the upcoming release of Mortal Kombat X. This move shouldn’t come as a big surprise as the previous seasons of Mortal Kombat: Legacy have been positively received and did big things for Machinima and the franchise as a whole. With that in mind, WBIE’s newest division Blue Ribbon Content, will be producing the series in order to \"feature some of the franchise's most iconic characters as well as a new generation of fighters.\" There are no dates or really any details on the project at this time, but Mortal Kombat X has an April 14th of 2015 release date across all platforms. Hopefully the live-action series won’t be far behind, but until then fingers crossed there’s a scene where Jeri Ryan and Casper Van Dien take Cassie Cage to Gymboree.\r\nAnd lastly, an idiot from Florida has filed a Change.org petition demanding that Super Smash Bros. be ported t","player_loc":"https://roosterteeth.com/embed/titanfall-horde-mode-mortal-kombat-x-live-action-series-smash-on-vita-hard-news-102314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d2400e9-cf95-42e1-83fe-0b2d625e3e51/sm/video_thumbnail_12852768.jpg","duration":220,"publication_date":"2014-10-23T12:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/internet-all-stars-challenge-rd-4-ben-singer","changefreq":"weekly","video":[{"title":"S1:E814 - Internet All-Stars Challenge Rd. 4: Ben Singer","description":"It's time for ScrewAttack's own Ben Singer to take his turn in the Internet All-Stars Challenge! Can the creator of DEATH BATTLE! rise to the top?\r\nCheck out Ben's charity!\r\nhttp://www.preventcancer.org","player_loc":"https://roosterteeth.com/embed/internet-all-stars-challenge-rd-4-ben-singer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5a86269-205c-4d0e-9d28-1f2602eed091/sm/video_thumbnail_12852757.jpg","duration":299,"publication_date":"2014-10-23T12:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-102214","changefreq":"weekly","video":[{"title":"S1:E813 - SideScrollers Extended Cut 10/22/14","description":"Craig has the puppet now!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-102214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8a54c38-66c1-40f0-92ac-3c64a0568edd/sm/video_thumbnail_12852656.jpg","duration":608,"publication_date":"2014-10-22T13:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-motion-of-the-ocean-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E161 - The Motion of the Ocean | SideScrollers","description":"This time on SideScrollers, Craig is dealing with hatred, Chad is thinking small, and Sam's back with the world's weirdest news!\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/the-motion-of-the-ocean-screwattack\r\nSend your Newsdesk stories to sam\r\nsam@screwattack.com\r\nSend your birthday challenge photos to Bryan!\r\nbryan@screwattack.com","player_loc":"https://roosterteeth.com/embed/the-motion-of-the-ocean-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5c126b6-1639-4601-97cb-f74ff1081c11/sm/video_thumbnail_12852585.png","duration":4314,"publication_date":"2014-10-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/oddworld-wii-u-woes-camp-pokemon-is-a-free-metallica-hearthstone-blizzcon-hard-news-102214","changefreq":"weekly","video":[{"title":"S1:E750 - Oddworld Wii U Woes, Camp Pokemon is a FREE, Metallica & Hearthstone @ BlizzCon | Hard News 10/22/14","description":"I’m Sean Hinz and this is Hard News for Wednesday October 22, 2014.\r\nOddworld: New “N” Tasty has already launched on PlayStation 4 this past July, but there hasn’t been any word on the Wii U version since then. In fact all versions from PC, Mac, and Linux to Xbox platforms currently have a generic 2014 date, so what gives? Well series creator Lorne Lanning recently mentioned on the Fragments of Silicon podcast that the Wii U delay may be tied to the smaller 8GB Basic model. Lanning was quoted as saying they are “having challenges with not having a hard disk, but we’re trying to overcome those challenges,\" and that \"If you're going to make a Wii U game, it better run on the 8GB unit… Otherwise, it's not really a Wii U game.\" The official Twitter account confirmed they were  working through some challenges, only some of which deal with the 8GB model, and the game is not cancelled. This whole scenario reminds me of when Microsoft sold the Xbox 360 Core with only a 4 GB HDD and you couldn’t play Halo Reach co-op. Won’t someone think of the children?!\r\nSpeaking of kids, The Pokémon Company like Nintendo is finally embracing the smartphone technology that is basically a part of everyday life and releasing a Pokémon game on it! Yayyy!!! Called Camp Pokémon, the free app for iOS that will teach you everything you need to know to become the next great Pokémon trainer. Campers start their adventure on a mysterious Pokémon island as they engage in Pokémon themed activities like Poké Ball Throw and Find the Pokémon. There’s even a Pokémon Pin collecting meta-game and a Photo Booth mode complete with stickers. Yayyyy!!! The Director of Marketing for the Pokémon Company says “Kids will have a blast exploring Camp Pokémon as they immerse themselves in the Pokémon universe” because why the fuck would anyone want to play an actual Pokémon game on their phone, when they can enjoy a collection of shitty mini-games, re-skinned for Pokémon fans? Yayyy…..\r\nOnto something phone fans may actually be pining for… Blizzard’s collectable ca","player_loc":"https://roosterteeth.com/embed/oddworld-wii-u-woes-camp-pokemon-is-a-free-metallica-hearthstone-blizzcon-hard-news-102214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f899c91-a78e-4118-bf77-da8acf5d7499/sm/video_thumbnail_12852647.jpg","duration":211,"publication_date":"2014-10-22T11:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/steam-game-de-listed-after-threats-fgc-rallies-for-pushatee-time-crisis-5-hard-news-102114","changefreq":"weekly","video":[{"title":"S1:E749 - Steam Game De-listed After Threats, FGC Rallies for PushaTee, Time Crisis 5 | Hard News 10/21/14","description":"I’m Sean Hinz and this is Hard News for Tuesday October 21st, 2014.\r\nTwo very quick corrections from yesterday. The Final Fantasy event in Vegas was called Fan Fest, not Fan Expo. AND the city-state in A Realm Reborn’s upcoming expansion is Ishgard, not that failed Warren Beatty film from the 80’s.\r\nAnyway, everyone’s favorite arcade shoot ‘em up Time Crisis is returning to Japanese arcades in 2015 and they aim to freshen up the formula. Traditionally the franchise has used a pedal to move in and out of cover, but Time Crisis 5 now has TWO PEDALS! Providing users the option of flanking enemies and taking ownership of their path to victory. The cabinet itself sports two 55-inch monitors and a redesigned GunCon that allows players to cycle through weapons. By the time Time Crisis 5 launches in March of 2015, we’ll be one year away from the franchises 20th anniversary, where it started back in 1996. Looking at the flier for the upcoming arcade release, this game must be about time travel. Why else would there be a backwards cap having douchebag in a sleeveless t-shirt if he wasn’t from 1996? I love you Japan.\r\nIn more serious news, the fighting game community has rallied in support of a recently deceased KI pro’s family. Terrance Moore, or PushaTee as the community knew him, was competing in the The Runback weekly tournament series hosted by Level Up when he collapsed at the event last week. Paramedics quickly arrived and immediately took Terrance to the ER, but were unfortunately unable to save him. Terrance was only 29 and is survived by a wife and two children. Now a few days later the community has truly come together by launching numerous donation campaigns to help the family afford a funeral, which can run as high as $10,000 over here in the states. The response has been incredible and fundraisers from r/Kappa and SuperArcade have already managed to raise nearly $15,000! Our condolences go out to his family and if you’d like to donate we’ve posted links in the description.\r\nAnd lastly, an indie developer is le","player_loc":"https://roosterteeth.com/embed/steam-game-de-listed-after-threats-fgc-rallies-for-pushatee-time-crisis-5-hard-news-102114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73ad4db0-4ad1-42d9-b299-0c255d2344a0/sm/video_thumbnail_12852582.jpg","duration":228,"publication_date":"2014-10-21T11:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-bros-rumors-i-am-bread-is-a-game-final-fantasy-xiv-expansion-hard-news-102014","changefreq":"weekly","video":[{"title":"S1:E748 - Smash Bros Rumors, I am Bread is a Game, Final Fantasy XIV Expansion | Hard News 10/20/14","description":"I’m Sean Hinz and this is Hard News for Monday October 20th, 2014.\r\nIf you aren’t already playing Final Fantasy XIV Online, Square Enix would like you to know there is an expansion in the works for the reborn MMO and it has a Spring of 2015 release date. The expansion was revealed as Heavensward at the Final Fantasy XIV Fan Expo in Vegas over the weekend. We had a glimpse of the content coming with it in a snowy reveal trailer, but info is kind of sparse at this point. All we really know is it takes place in the city-state of Ishtar, features a new race, jobs, primals, end game content and a level bump up to 60. Expect more details to arrive during the London Fan Festival on October 25 and Tokyo Fan Fest in November. As a fan of the franchise, the trailer has some sweet ass dragoons with transforming armor that I really want to play as. Seriously, all I wanna do is fucking slay dragons with my badass jump ability. Then I remember this game has a monthly fee and nope the fuck out.\r\nWhat you won’t be able to quit is making bread into toast. It can truly become an epic adventure sometimes and Bossa Studios is looking to capitalize on our harrowing exploits in the new game I am Bread. A bread slice simulation which will have you wielding a knife as you skateboard around the house and do laundry. But how would you control said piece of bread you might ask? By manipulating the corners of course. Each button is assigned a different corner on the bread which will have you flipping and dragging your slice around the house. Along the way you’ll probably end up decreasing your Edibility meter as you sop up everything in your path, making for a rather disgusting French Toast. And your Deliciousness meter will likely represent some sort of overall score. Right now it looks like white bread is the only playable character, but I’m looking forward to some more colorful protagonists like jewish rye, honey cornbread, or crusty sourdough.\r\nAnd finally, a bunch of news leaked about the Wii U version of Super Smash Bros. thanks to Am","player_loc":"https://roosterteeth.com/embed/smash-bros-rumors-i-am-bread-is-a-game-final-fantasy-xiv-expansion-hard-news-102014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/758390ea-3efb-47c0-b01a-c5e2b5f7d352/sm/video_thumbnail_12852506.jpg","duration":197,"publication_date":"2014-10-20T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-captain-falcon-vs-captain-commando","changefreq":"weekly","video":[{"title":"S1:E5 - One Minute Melee - Captain Falcon vs Captain Commando","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!!  Who would win in a fight between F-Zero's Captain Falcon and Capcom's Captain Commando? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-captain-falcon-vs-captain-commando","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6abca569-e6b0-48bf-aa90-1c625ea31ed4/sm/video_thumbnail_12852446-1414509844.jpg","duration":136,"publication_date":"2014-10-19T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bill-cosby-facehugger-wtf","changefreq":"weekly","video":[{"title":"S1:E812 - Bill Cosby + Facehugger = WTF?!?","description":"Part of doing live shows is interacting with the audience, and sometimes that results in bizarre creations. But watching SA Live also means seeing Craig do what people said he could never do!","player_loc":"https://roosterteeth.com/embed/bill-cosby-facehugger-wtf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9924a8b0-7c1e-4c01-90c1-74179db375fd/sm/video_thumbnail_12852436.jpg","duration":147,"publication_date":"2014-10-19T10:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hatred-is-a-new-ip-lol-world-championships-sunday-gaming-stamps-hard-news-101714","changefreq":"weekly","video":[{"title":"S1:E747 - Hatred is a New IP, LoL World Championships Sunday, Gaming Stamps | Hard News 10/17/14","description":"I’m Sean Hinz and this is Hard News for Friday October 17th, 2014.\r\nQuick correction from yesterday. I accidentally slid in some b-roll from the AvP game developed in 2010, but GOG was actually giving away AvP from 1999. Sorry if anyone felt misled. Now I know you g1s might be busy with all those free games available this weekend, but ESPN wants you to tune into the League of Legends World Championships if you have some free time. Despite their lack of faith in games as a “real sport”, ESPN 3 will be showing the finals at 1:30 AM CST this Sunday. The broadcast is live from South Korea as 40,000 people come out to watch Samsung White battle Star Horn Royal Club for a prize pool valued at over a million dollars. Not a bad way to make a living.\r\nIn more international gaming news, the Irish postal service has issued a new line of licensed stamps that feature some of gaming's greatest icons. “Designed by Zinc Design Consultants, the Dublin-based award-winning graphic design studio”, the stamp sheet features iconic characters like Mario, Sonic, Space Invaders, and Pac-Man. The Irish post says the line is meant to pay homage to the “iconic status of the games and the transition of gaming from novelty to global industry.” While the stamps won’t count as legal postage in the US, you can pick a sheet up for your collection for only a few Euros. Just click the link in the description.\r\nAnd finally, I will throw my two cents in the ring on the recent controversy over the game Hatred. Developed by Polish studio Destructive Creations, Hatred appears to be a simulation of a civilian massacre in an isometric setting. It’s origins seem rooted in the reality that society is continuing to evolve into a more polite and politically correct culture and CEO Jaros?aw Zieli?ski wanted he and his team “to create something against trends. Something different, something that could give the player a pure gaming pleasure.” A statement that says a lot about human nature when pleasure is defined as committing what is essentially genocide agains","player_loc":"https://roosterteeth.com/embed/hatred-is-a-new-ip-lol-world-championships-sunday-gaming-stamps-hard-news-101714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0a921fa-a1b2-4ff4-b8f3-daf556bf5181/sm/video_thumbnail_12852318.jpg","duration":250,"publication_date":"2014-10-17T13:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/google-has-a-microconsole-xbone-finds-controllers-gog-steam-games-free-hard-news-101614","changefreq":"weekly","video":[{"title":"S1:E746 - Google has a Microconsole, Xbone finds Controllers, GOG & Steam Games FREE | Hard News 10/16/14","description":"I'm Sean Hinz and this is Hard News for Thursday, October 16th 2014.\r\nI hope you don’t have plans for this weekend, because Steam and Good Old Games want you to play some games for free. Really, they’re completely free! GOG is is offering a copy of Alien versus Predator from Rebellion to anyone who signs up for the Good Old Games Galaxy beta. Galaxy is the Steam-like online gaming platform from the distribution service that offers DRM free multiplayer support for the GOG library. This version of AvP includes all DLC and Xbox 360 controller support, all for free. Click the link in the description to sign up. And if you still have more free time, Steam will be unlocking 10 games at noon tomorrow and setting them to free play all weekend. Highlights include Awesomenauts, Injustice, Don’t Starve, PayDay 2, XCOM and of course more. PC master race indeed!\r\nBut Microsoft wants to make the Xbox One the envy of all you WASD nerds, by bringing super useful features to the October patch. You have a more robust snap feature, additional sharing options,  a new media player app which supports MKV and DNLA, stronger TV integration and a few tweaks here and there. But the feature I’m most looking forward to is the Xbox One’s ability to help you find your controller, using the power of Kinect. The only catch is, the controller would have to be on first, so from now on only power your Xbone up using the controller. Then if you take a bong rip and manage to immediately lose said controller, all you need to do is yell at your Kinect “find” and it will vibrate your controller for you. It seems like a great feature for stoners and potentially encourages healthy marriages. For example, tonight my wife and I are going to have an orgy with the Xbox One, as we attempt to find her G spot by screaming “find” at the TV.\r\nAnd finally, Google continues to expand its empire with the reveal of their first microconsole, the Nexus Player. Let’s cut to the chase, this is basically a Fire TV, but developed by Google and without the aid of the venera","player_loc":"https://roosterteeth.com/embed/google-has-a-microconsole-xbone-finds-controllers-gog-steam-games-free-hard-news-101614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebce33d7-56e2-4630-a485-9cf0316a4e75/sm/video_thumbnail_12852246.jpg","duration":216,"publication_date":"2014-10-16T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/internet-all-stars-challenge-rd-3-jesse-cox","changefreq":"weekly","video":[{"title":"S1:E811 - Internet All-Stars Challenge Rd. 3: Jesse Cox","description":"Jesse Cox is up for his turn in the Internet All-Stars Challenge! Brandon Jones has the lead, has Jesse learned from the two people before him or will he fail harder? Find out!","player_loc":"https://roosterteeth.com/embed/internet-all-stars-challenge-rd-3-jesse-cox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d9b6a41-a9a4-40dd-aad5-b6c81d2ba32e/sm/video_thumbnail_12852231.jpg","duration":346,"publication_date":"2014-10-16T11:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/avenged-sevenfolds-lead-singer-is-making-a-game","changefreq":"weekly","video":[{"title":"S1:E810 - Avenged Sevenfold's Lead Singer is Making a Game!","description":"Chad had a chance to sit down backstage with Avenged Sevenfold's lead singer M. Shadows to talk about his game Hail to the King Deathbat!\r\nHail to the King Deathbat is available now for iOS and Android! For more details head to http://www.avengedsevenfold.com/deathbat/","player_loc":"https://roosterteeth.com/embed/avenged-sevenfolds-lead-singer-is-making-a-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d50a82bf-e321-4178-ac24-86486903b6f7/sm/video_thumbnail_12852226.jpg","duration":335,"publication_date":"2014-10-16T10:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/anita-sarkeesian-cancels-lecture-killer-instinct-season-2-magic-card-lottery-hard-news-101514","changefreq":"weekly","video":[{"title":"S1:E745 - Anita Sarkeesian Cancels Lecture, Killer Instinct Season 2, Magic Card Lottery | Hard News 10/15/14","description":"I’m Sean Hinz and this is Hard News for Hump Day October 15th, 2014.\r\nThe threat of terrorism at Utah State University has lead Anita Sarkeesian to cancel an upcoming speaking event and turned the Internet into another battle ground. The Standard Examiner reports that USU officials received and threatening email on Tuesday stating, and I quote, “If you do not cancel her talk, a Montreal Massacre style attack will be carried out against the attendees”. The awful individual behind this, claimed they would use a “semi-automatic rifle, multiple pistols and a collection of pipe bombs” to punish those who would support the “toxic influence of feminism”. Their words, not mine. They also say they are a student currently attending Utah State and we’d only know their identity if USU officials allowed the massacre to happen. Anita Sarkeesian chose to cancel the lecture, because the University refused to allow pat downs, provide metal detectors, or ban concealed weapons. There were some security precautions taking place, but not enough for Sarkeesian to feel safe or feel her audience would be. With no specific mention of the GamerGate, it is interesting that much of the media has picked this story up as being associated with the movement. It should be worth noting that looking through the mainstream press, GamerGate as a gender war is quickly overshadowing GamerGate as a critique of gaming journalism ethics.\r\nFuck this noise, let’s talk video games! Killer Instinct: Season 2 is launching today and Ultratech has been fast a work building new combatants for Jago and Orchid to battle. Immediately players gain access to TJ Combo and Maya, two classic KI fighters who’re re-imagined for the latest installment. Then over the next six months, one character per month  will be added to the roster. So far we’ve only seen their silhouettes, so let’s to name the unrevealed characters. You have Laser Mummy, Riptor, Mystery Ghost-Dude, Treebeard, One-eyed Ninja, and Cinder. Additionally there have been balance changes, enhanced combos and ","player_loc":"https://roosterteeth.com/embed/anita-sarkeesian-cancels-lecture-killer-instinct-season-2-magic-card-lottery-hard-news-101514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebb6e4e5-8440-4471-b939-1436c5acd2e1/sm/video_thumbnail_12852162.jpg","duration":257,"publication_date":"2014-10-15T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-101514","changefreq":"weekly","video":[{"title":"S1:E809 - SideScrollers Extended Cut 10/15/14","description":"It turns out people can be incredibly dumb at restaurants!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-101514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b11748d2-ca43-486c-8627-326233fc5562/sm/video_thumbnail_12852150.png","duration":729,"publication_date":"2014-10-15T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gloves-come-off-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E160 - The Gloves Come Off! | SideScrollers","description":"With all these great games coming out, it's time for the guys to discuss GAMETOBER! Also, it's really hard to talk about fight club if you don't use your big boy words.\r\nRelive Craig's duck hunting days! http://www.screwattack.com/shows/originals/classic-sunday/classic-sunday-time-craig-dressed-dog-duck-hunt\r\nTake SideScrollers on the go! https://soundcloud.com/screwattack/the-gloves-come-off\r\nHave a Newsdesk story? Send it to Sam!\r\n\tsam@screwattack.com\r\n\t\r\n\tHave a pic for the Birthday Challenge? Send it to Bryan!\r\n\tBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/the-gloves-come-off-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85e3ab33-9d67-473f-aee3-b6fcab46ef7a/sm/video_thumbnail_12852073.png","duration":4561,"publication_date":"2014-10-15T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/playstation-tv-launch-kerfuffle-cocaine-in-an-xbox-saints-row-the-cooler-existed-hard-news-101414","changefreq":"weekly","video":[{"title":"S1:E744 - PlayStation TV Launch Kerfuffle, Cocaine in an Xbox, Saints Row: The Cooler Existed | Hard News 10/14/14","description":"I’m Sean Hinz and this is Hard News for Tuesday, September 14th, 2014.\r\nSo while out on the Internet last night, trying to figure out how to ship a kilo of cocaine, I discovered that using an Xbox to do it might not be the best idea. This past Wednesday, four men in Reading, PA were caught with over $100,000 in yo thanks to a sting operation from a federal agent. Apparently the feds knew the Xbox being shipped to Yefries Herrera had some sort of illegal substance in it and once he signed for it, his fate was sealed. After receiving the goods, agents followed Herrera to a drop point, catching three other people in the act. Now everyone will probably go to ass pounding prison and that gaming console will never bring joy to the hearts of children again. Instead it will live out the rest of its years in an evidence bag. You drug dealers are monsters!\r\nSpeaking of monsters, THQ apparently locked of one of their failed science projects and it is just now seeing the light of day thanks to Unseen64.net. In development around 2010, Saints Row: The Cooler was a motion-controlled brawler being developed by Heavy Iron Studios. This same team went on to make UFC Personal Trainer. The name was a reference to your role as a bouncer who would go to various bars in the Saints Row universe and “cool off” the situation by beating the fuck out of people. Combat consisted of timing attacks in front of a Kinect sensor or using a PS Move, while in first-person. It only had six months in the oven before THQ pulled the plug and frankly, that was a smart move considering where the company was heading. Could have spent that money on Darksiders 3 you asshats!\r\nAnd lastly, PlayStation is kind of fucking about again, as the PlaySTation TV launched with a few issues. First a couple compatible games with the micro console have mysteriously been removed from the official list of games and they of course do not work. Most are PSP, PS One Classics and a couple minis including; Valkyria Chronicles 2, Metal Gear Solid, Silent Hill, and a few more. L","player_loc":"https://roosterteeth.com/embed/playstation-tv-launch-kerfuffle-cocaine-in-an-xbox-saints-row-the-cooler-existed-hard-news-101414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f80cd8a-c8ec-42a9-a88a-80a11f263455/sm/video_thumbnail_12852074.jpg","duration":205,"publication_date":"2014-10-14T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gamergate-death-threats-october-is-dk-month-resident-evil-reveals-hard-news-101314","changefreq":"weekly","video":[{"title":"S1:E743 - GamerGate Death Threats, October is DK Month, Resident Evil Reveals | Hard News 10/13/14","description":"I’m Sean Hinz and this is Hard News for Monday, October 13, 2014.\r\nWe might be reaching the halfway point of October, but that hasn’t stopped Nintendo from declaring it the Month of Donkey Kong. After the Year of Luigi, we thought the Year of Yoshi would be a sure bet. I mean, Dinosaurs are fucking awesome?! But nope, Nintendo is all about giant apes, as DK and the crew are going to be taking over Virtual Console on Wii U and 3DS. Every Thursday for the next three weeks, one installment of the SNES Donkey Kong Country Trilogy comes to Wii U and one installment in the GB Donkey Kong Land Trilogy comes to 3DS. In order to tie the whole promotion together, both Donkey Kong Country: Tropical Freeze and Donkey Kong Country Returns 3D are discounted 33%, so long as you buy one of the Virtual Console games on their respective platforms. Of course there’s a catch though, as this promotion appears to be a European exclusive, so us Americans are shit out-of-luck. How appropriate that Nintendo tease us with a treat, to only trick us moments later.\r\nSpeaking of Halloween, the weekend held a bunch of news surrounding the Resident Evil franchise, some of it official and some not-so-much. Let’s start with the official news out of NYCC, where producer Michiteru Okabe revealed that the PlayStation versions of Resident Evil Revelations 2 would be gaining access to exclusive content. A pre-order for PS3 or PS4 would net players access to the Raid Mode Throwback Pack. It’s a collection of stages from previous Resident Evil titles that players can run to earn additional BP, loot, and experience. No word on a bonus for any of the Microsoft platforms. Then you have a rumor coming out of Variety pointing to a German company producing a spin-off TV series for the franchise. Constantin Film has been transitioning more towards television these past few years and right after they release a show called Mortal Instruments and a movie called Perfume, they will be delivering the Umbrella Corporation to living rooms around the world. Good thing ","player_loc":"https://roosterteeth.com/embed/gamergate-death-threats-october-is-dk-month-resident-evil-reveals-hard-news-101314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4c42001-5483-4a76-9184-1a2f19d7450c/sm/video_thumbnail_12852003.jpg","duration":207,"publication_date":"2014-10-13T13:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/destiny-breaks-iron-banner-unity-looking-for-buyer-nintendo-eshop-offerings-hard-news-101014","changefreq":"weekly","video":[{"title":"S1:E742 - Destiny Breaks Iron Banner, Unity Looking for Buyer, Nintendo eShop Offerings | Hard News 10/10/14","description":"I’m Sean Hinz and this is Hard News for Friday October 10th, 2014\r\nRumors are flying that Unity, the “have it your way” of development engines, might be up for sale along with the the company itself. Many sources who work with CNET news mention the company has been courting prospective buyers and may be interested in a parent company infusing some capital into their already successful technology platform. But is this the best thing for gamers? I am not so sure. Most of the prospective buyers, like say Google, probably have some sort of vested interest in the gaming community. Unity has succeeded not only because of the simplicity of its tool kit, but because it works on everything. And I mean everything from PlayStation to Xbox to Nintendo; ALL platforms support Unity. Especially mobile which has been a huge successful for the engine maker. Whatever happens, here’s hoping it won’t affect the launch of a mystery ScrewAttack Games project.\r\nIn other news, Bungie just can't seem to get these Destiny events right. There are ongoing issues with Loot Cave exploits and then there was the whole Queen’s Bounty stuff. Now the recently launched Iron Banner has become the laughing stock of the entire community. Originally the idea was to provide PVP combat without level restrictions, so legendary gear could realize its full-potential and dominate all you lower-level plebes. Unfortunately it doesn't seem to be working and even some level threes are dominating whole PVP matches. Additionally, common weapons seem to be just as powerful as exotics, which frankly defeats the entire point of this event. Then you have rep points only being distributed if you win, unlike normal PVP in the Crucible. Leading to some rage quit from matches rather than get nothing. Now I'm sympathetic towards Bungie as a fan of the game, but this was something that should've been worked out in the Beta testing process, where they previously introduced the Iron Banner. That’s why you test things so they aren’t this fucked up at launch! God I’m glad I'm n","player_loc":"https://roosterteeth.com/embed/destiny-breaks-iron-banner-unity-looking-for-buyer-nintendo-eshop-offerings-hard-news-101014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffb7117d-9e34-42f5-b3c0-49e21a9715ab/sm/video_thumbnail_12851782.jpg","duration":209,"publication_date":"2014-10-10T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/takahata101s-death-battle-debate","changefreq":"weekly","video":[{"title":"S1:E808 - Takahata101's DEATH BATTLE Debate","description":"A HUGE thanks to takahata101 of Team Four Star for the idea and the help! Make sure and check them out on their YouTube channel and .com!\r\nhttps://www.youtube.com/user/TeamFourStar\r\nhttp://teamfourstar.com/","player_loc":"https://roosterteeth.com/embed/takahata101s-death-battle-debate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f1ad30b-2f2d-490b-ba06-83c507569b27/sm/video_thumbnail_12851777.jpg","duration":163,"publication_date":"2014-10-10T12:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evolve-big-alpha-codes-ps-now-on-vita-themes-for-3ds-and-xbox-one-hard-news-10914","changefreq":"weekly","video":[{"title":"S1:E741 - Evolve Big Alpha Codes, PS NOW on VITA, Themes for 3DS and Xbox One | Hard News 10/9/14","description":"Register for the Evolve Xbox One BIG Alpha here | http://www.2kgames.com/evolve/xboxonealpha/form.php\r\nIf that code is spent, try another platform using this blog's code | http://evolvegame.com/news/evolves-big-alpha-coming-everywhere-this-halloween\r\nI’m Sean Hinz and this is Hard News for Thursday, October 9th 2014.\r\nPlayStation Now’s Open Beta is spreading to multiple platforms as the service comes to both the PlayStation Vita and PlayStation TV later this month. PlayStation Now is a streaming service that offers gamers 150 PS3 games to rent over a PS3 and PS4. There hasn’t been much positive feedback thus far for the Beta, which has priced its content in a way that doesn’t even come close to competing with something like say the used game market or a Steam sale. Yet, Sony's Jack Buser is confident that “millions” of customers will try the service before it ever leaves Beta and Sony is will be making changes “based on feedback and usage.\" Expect the service to go live on October 14th, alongside the launch of the PlayStation TV and please be aware PSN will be down for maintenance the day before. FIX FUCKING DRIVECLUB WHILE YOU’RE AT IT!\r\nRemember when I mentioned that the Vita had received theme support and how it was stupid? Well it still is, but I guess everyone wants this as the 3DS has also received the ability to also install themes. You can customize your backgrounds, icons, and sound effects; making your 3DS more pretentious than it already is. You get five boring ass color themes for free, but if you’d like something in the vein of Zelda or Mario, it will cost you a couple bucks. Nintendo isn’t alone in this trend of silly self-importance as Xbox boss Phil Spencer also confirmed on the Inner Circle Podcast that “themes and background pics are something that we are [Microsoft is] working on”. Oh and they’re going to add screenshot support as well. They look forward to adding these features via a future Xbox One update. Are themes fun? Sure! But I am fairly certain Nintendo and Microsoft have more importan","player_loc":"https://roosterteeth.com/embed/evolve-big-alpha-codes-ps-now-on-vita-themes-for-3ds-and-xbox-one-hard-news-10914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce3c4a18-1f25-4e6b-9e30-eb4f5915236b/sm/video_thumbnail_12851681.jpg","duration":200,"publication_date":"2014-10-09T13:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/internet-all-stars-challenge-rd-2-gametrailers-brandon-jones","changefreq":"weekly","video":[{"title":"S1:E807 - Internet All-Stars Challenge Rd. 2: Gametrailers' Brandon Jones","description":"After Adam Kovic made the first run of the night, the voice of Gametrailers was next to step up and try his luck in Nintendo World Championships. Can Brandon Jones beat Adam's score?!?","player_loc":"https://roosterteeth.com/embed/internet-all-stars-challenge-rd-2-gametrailers-brandon-jones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/392e0b36-3b5c-42f1-a002-fb9981d1d117/sm/video_thumbnail_12851674.jpg","duration":321,"publication_date":"2014-10-09T11:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/samus-comes-to-monster-hunter-driveclub-woes-nintendo-gamecube-confusion-hard-news-10814","changefreq":"weekly","video":[{"title":"S1:E740 - Samus comes to Monster Hunter, DRIVECLUB Woes, Nintendo GameCube Confusion | Hard News 10/8/14","description":"I’m Sean and this is Hard News for Wednesday October 8th, 2014.\r\nNintendo and Capcom teamed up for a very special Japanese Nintendo Direct focused on Monster Hunter 4 early this morning. The developers spent a good 20 minutes playing the game and talking about some new additions, including the “new” 3DS stick nub thing. But the biggest news for Nintendo fans must have been the inclusion of some very interesting crossover items. The first was a partnership with Bandai Namco to feature one of the Taiko Drums from the rhythm arcade franchise as a weapon. Then you have the Sonic Felyne and Animal Crossing Felynes for the sake of variety. But finally the big reveal came when both Samus and Zero-suit Samus were revealed as compatible armor types in the game, complete with a massive Varia cannon! Now sexuality is always a sensitive topic with gamers, so you’d think Capcom would be smart enough not to draw Samus with her ass in my face as she strokes a giant robot dong. But maybe that’s just me…\r\nWhat’s not just me is the itching sensation that PS4 owners are all getting screwed… Following delay after delay, DRIVECLUB has finally launched, but only the paid version, because PlayStation Plus users don’t always get nice things. The glorified demo that is the free version has been held back during launch due to server issues, in order to make sure that paying users received the best experience possible. If you don’t know the difference between the free version and the paid version, free users have access to 5 tracks with 11 routes and 10 cars. Paid users have access to 25 tracks with 55 routes and 50 cars. So the game that was supposed to be free-to-play, but would then cost money, is delayed for a third time because of unforeseen server issues and not wanting to upset paying customers. The root of this problem stems from the surprise factor of people actually buying and playing the game. And Sony says the free version will be available whenever they get their shit together.\r\nAnd finally, I was going to congratulate Nintend","player_loc":"https://roosterteeth.com/embed/samus-comes-to-monster-hunter-driveclub-woes-nintendo-gamecube-confusion-hard-news-10814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a52c2bdc-0658-403a-9adb-f3ebf799cae6/sm/video_thumbnail_12851563.jpg","duration":204,"publication_date":"2014-10-08T13:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-100814","changefreq":"weekly","video":[{"title":"S1:E806 - SideScrollers Extended Cut 10/08/14","description":"Parker is schooling the old fogies on the ways of high school!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-100814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36666c3b-b0bc-43ed-985d-84f20828f5ba/sm/video_thumbnail_12851560.png","duration":967,"publication_date":"2014-10-08T12:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-portal","changefreq":"weekly","video":[{"title":"S1:E13 - FIVE FUN FACTS about Portal","description":"Think you know everything about Portal? Maybe not.","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-portal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74c74e2e-c284-42a5-9584-f7048147b990/sm/video_thumbnail_12851551.jpg","duration":220,"publication_date":"2014-10-08T09:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-vagina-kayaks-confirmed","changefreq":"weekly","video":[{"title":"S1:E159 - SideScrollers - Vagina Kayaks CONFIRMED","description":"While the Japanese are making weird things with their body parts, and Gearbox is getting bomb threats, Sam, Chad, and Craig go back to their favorite games THIS TIME ON SIDESCROLLERS!\r\n\t\r\n\tCheck out our featured partner!\r\n\thttp://www.youtube.com/aftermathgamevideos\r\n\t\r\n\tGet the music you're hearing on the show!\r\n\thttp://www.youtube.com/DTNintendo\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/vagina-kayaking-confirmed\r\n\r\n\tHave a Newsdesk suggestion, send it to Sam!\r\n\tSam@ScrewAttack.com\r\n\t\r\n\tAnswering the birthday challenge? Send Bryan your pic!\r\n\tBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-vagina-kayaks-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52c479a5-6b84-4a8a-a26e-ac60f0c27489/sm/video_thumbnail_12851474.png","duration":3233,"publication_date":"2014-10-08T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wii-u-holiday-games-dated-assassins-creed-gpu-debate-microsoft-kinect-experiment-hard-news-10714","changefreq":"weekly","video":[{"title":"S1:E739 - Wii U Holiday Games Dated, Assassin's Creed GPU Debate, Microsoft Kinect Experiment | Hard News 10/7/14","description":"I’m Sean Hinz and this is Hard News for Tuesday October 7th, 2014.\r\nRemember the Microsoft R&D project IllumiRoom? Yeah me neither… But that hasn’t stopped Microsoft from investing more time and money into another bizarre gaming peripheral. Now codenamed RoomAlive, it makes any room into an interactive gaming space. Using multiple projectors and some depth cameras, Microsoft has expanded the gaming space beyond a television. Thanks to the power of Kinect, these devs have created a number of different interactive environments, some of which you will use your body to engage, while others can use traditional control options on a non-traditional surface. This is by no means a commercial product, as the Illumiroom itself was priced at “thousands of dollars” for the average consumer. There’s only one way this could possibly become affordable and that’s if the porn industry embraces it. There’s no way this could go wrong…\r\nSpeaking of eye candy, Ubisoft became the subject of controversy in regards to the graphical prowess of their upcoming Assassin’s Creed game Unity. Producer Vincent Pontbriand was speaking with Videogamer about developing on PS4/Xbox One and mentioned how they “decided to lock them at the same specs to avoid all the debates and stuff”. Which immediately sparked a bunch of debates and stuff across the Internet. With PS4 fanboys claimed bullshit for the Xbox One’s inability to keep up in the hardware race. Ubisoft first set the record straight by saying that they “did not lower the specs for Assassin's Creed: Unity to account for any one system over the other,\" but then continued to comment on the story into today noting that the final specs aren’t even cemented, despite the game launching in 6 weeks. For AssCreed Black Flag last year, Ubi managed to push the resolution past 900p into 1080p on PS4 using a post launch patch. My two cents on this whole graphical parity war between the next-generation of consoles is… Who the fuck cares so long as the games are fun?\r\nSpeaking of fun, Super Smash Bros. on 3D","player_loc":"https://roosterteeth.com/embed/wii-u-holiday-games-dated-assassins-creed-gpu-debate-microsoft-kinect-experiment-hard-news-10714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8b2e8db-74e4-43db-913c-ed0723a03cff/sm/video_thumbnail_12851475.jpg","duration":215,"publication_date":"2014-10-07T13:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-12","changefreq":"weekly","video":[{"title":"S2:E12 - Tigerzord VS Gundam Epyon","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e444154d-e22d-4a1e-8360-6634f79d3e1b/sm/video_thumbnail_12851065.jpg","duration":1199,"publication_date":"2014-10-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pewdiepie-the-mcn-disney-crushes-tiny-death-star-bomb-threat-at-gearbox-hard-news-10614","changefreq":"weekly","video":[{"title":"S1:E738 - PewDiePie the MCN?, Disney Crushes Tiny Death Star, Bomb Threat at Gearbox | Hard News 10/6/14","description":"I’m Sean Hinz and this is Hard News for Monday October 6, 2014.\r\nWe start today by briefly acknowledging Intel has publicly apologized for their involvement in our #GamerGate story from Friday. Intel issued a statement making clear that they did not mean for it to appear as though they were “somehow taking sides in an increasingly bitter debate in the gaming community... Intel believes men and women should be treated the same.” But do they believe in the journalistic integrity of the gaming press? They did not comment. \r\nDisney has pulled the plug on one of it’s first Lucas Films projects less than a year after its inception. Star Wars Tiny Death Star was a clone of the NimbleBit mobile hit Tiny Tower and a fairly well-received one at that. But without informing the developers of the decision, the game was pulled off the app store along with Star Wars: Assault Team. Nimblebit felt it was worth noting that to them, it would be a “significant source of revenue” disappearing from the pipeline. Users who previously purchased the app will be able to re-download it, but there won’t be any future support or purchase options for new users. An inside source from Pocket Gamer claims this is to focus on upcoming releases like the recently launched Star Wars Commander. Which is clearly the only app you’re looking for.\r\nBut some might look to relinquish that which is Disney, like say the biggest name on YouTube? Felix Kjellberg or PewDiePie as you dudes call him, let Icon magazine know in a recent interview that the House of Mouse isn’t where his future lies. After purportedly making $4 million a year, the personality says he isn’t interested in renewing his contract with Maker this upcoming December. He was previously with Machinima and his experiences with both MCNs have instilled Felix with the desire to become his own YouTube Network. The process may seem daunting, but Felix says he’s “in touch with a couple of people who [I think] would be so right for this,\" And if that doesn’t work out, who cares dudes, because Pewds i","player_loc":"https://roosterteeth.com/embed/pewdiepie-the-mcn-disney-crushes-tiny-death-star-bomb-threat-at-gearbox-hard-news-10614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4ac6b66-2f99-4b77-85e5-f9751c803fdf/sm/video_thumbnail_12851368.jpg","duration":188,"publication_date":"2014-10-06T12:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-terry-bogard-vs-burai-yamamoto-fatal-fury-vs-daibanchou-big-bang-age","changefreq":"weekly","video":[{"title":"S1:E4 - One Minute Melee - Terry Bogard vs Burai Yamamoto (Fatal Fury vs Daibanchou - Big Bang Age) ","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!!  Who would win in a fight between Fatal Fury's Terry Bogard and Big Bang Age's Burai? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/one-minute-melee-terry-bogard-vs-burai-yamamoto-fatal-fury-vs-daibanchou-big-bang-age","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1421ab-6479-40e5-b6f9-9f444546910d/sm/video_thumbnail_12851324.jpg","duration":158,"publication_date":"2014-10-06T07:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-series-one-minute-melee-akuma-vs-kenpachi-zaraki-street-fighter-vs-bleach","changefreq":"weekly","video":[{"title":"S1:E3 - **NEW SERIES** One Minute Melee - Akuma vs Kenpachi Zaraki (Street Fighter vs Bleach)","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!!  Who would win in a fight between Street Fighter's Akuma and Bleach's Kenpachi? Find out in 60 quick seconds!","player_loc":"https://roosterteeth.com/embed/new-series-one-minute-melee-akuma-vs-kenpachi-zaraki-street-fighter-vs-bleach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e2fb326-874a-43d5-9dc8-b36b15c4e139/sm/video_thumbnail_12851323.jpg","duration":140,"publication_date":"2014-10-06T07:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-series**-one-minute-melee-jin-saotome-vs-gambit","changefreq":"weekly","video":[{"title":"S1:E2 - **NEW SERIES** One Minute Melee - Jin Saotome Vs Gambit","description":"2 Fighters! No Research! 60 Seconds! MELEE!!!!  \r\nCheck out this special sneak peak of ScrewAttack's upcoming show One Minute Melee. Debuting Monday, October 6th! ","player_loc":"https://roosterteeth.com/embed/**new-series**-one-minute-melee-jin-saotome-vs-gambit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3ad88e4-5df2-4122-bdf5-53bc7c3d0414/sm/video_thumbnail_12850954.png","duration":127,"publication_date":"2014-10-05T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-minute-melee-debuts-monday-october-6th","changefreq":"weekly","video":[{"title":"S1:E1 - One Minute Melee Debuts MONDAY, October 6th!","description":"From the animators of DEATH BATTLE!, this is One Minute Melee! How is this different than DEATH BATTLE!? Simple: there is NO RESEARCH put in to each melee. While they may be just for fun, it doesn't mean One Minute Melee isn't crazy intense.  ","player_loc":"https://roosterteeth.com/embed/one-minute-melee-debuts-monday-october-6th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76a4d4f2-4dd9-4c4b-80e9-44ced4e5e258/sm/video_thumbnail_12850953.jpg","duration":49,"publication_date":"2014-10-05T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-show**-internet-all-stars-challenge-rd-1-machinimas-adam-kovic","changefreq":"weekly","video":[{"title":"S1:E805 - **NEW SHOW** Internet All-Stars Challenge Rd. 1: Machinima's Adam Kovic","description":"5 internet all-stars came together at PAX Prime '14 to see who was a true champion in Nintendo World Championships. First up?\r\n\tMachinima's Adam Kovic! Can he master Super Mario Bros., Rad Racer, and Tetris in 6 minutes and 21 seconds? It's time to find out!\r\nSupport Adam's chosen charity!\r\nhttp://www.extra-life.org","player_loc":"https://roosterteeth.com/embed/**new-show**-internet-all-stars-challenge-rd-1-machinimas-adam-kovic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f8281c8-1b2e-4829-8d1a-3dee257a0e46/sm/video_thumbnail_12850889.jpg","duration":305,"publication_date":"2014-10-05T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gamergate-pressures-intel-evolve-statue-is-expensive-strider-2-on-the-vita-hard-news-10314","changefreq":"weekly","video":[{"title":"S1:E737 - GamerGate Pressures Intel, Evolve Statue is Expensive, Strider 2 on the Vita | Hard News 10/3/14","description":"I’m Sean Hinz and this is Hard News for Friday, October 3rd 2014\r\nIn a bold move from 2K they’ve managed to shrink down their massive booth monster for Evolve into a sick 30 inch, 35 pound figurine. It is being designed by TriForce and even has a red LED which glows on the Goliath’s back. Though it’s production is limited to 500 units, providing all parties involved to charge the absurd price of $750. Seriously that’s fucking crazy expensive for not even getting a copy of the game. And if you’re really hardcore you can get a limited edition of this limited edition statue from New York Comic-Con for $800. There are only 150 of those. To help us understand why anyone would be willing to spend so much money on an inanimate object, here’s Sam Mitchell with his thoughts.\r\nTouche Sam, Touche. I guess it will help offset the cost of that massive booth monster. I wonder where that thing even is right now?\r\nOnto some PlayStation Vita news, owners of the PlayStation handheld are celebrating the launch of patch 3.30 since it adds the long awaited theme support. So you can have gaming-centric and generic vectors bring some flavor to the Vita’s background and icons. But that’s some shit news for a system that needs more games… WAIT! This just in, it looks like Strider 2 is coming to the Vita, PS3, and PSP as a PlayStation One Classic. Capcom confirmed yesterday that the arcade hit would be coming on October 7th and will be bundled with the arcade version of the original Strider. So you can play the arcade versions of both Striders, plus remote play the reboot all on your Vita?! Next week is going to be a very good week for PSN. Unless you live in one of those countries getting price gouged for PlayStation Plus. I guess you’ll have to take it in stride.\r\nAnd finally, I’m going to do something fairly dangerous and comment on the recent #GamerGate movement. More specifically something that happened between Intel, Gamasutra, and gender equality in the press. As a quick aside the term GamerGate came about after the Zoe Quinn/Five ","player_loc":"https://roosterteeth.com/embed/gamergate-pressures-intel-evolve-statue-is-expensive-strider-2-on-the-vita-hard-news-10314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d233dd8-5a19-46a4-b506-066d0aaa4858/sm/video_thumbnail_12850955.jpg","duration":253,"publication_date":"2014-10-03T13:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-pokemon-for-3ds-owners-angry-birds-layoffs-playstation-plus-price-hike-hard-news-10214","changefreq":"weekly","video":[{"title":"S1:E736 - Free Pokemon for 3DS Owners, Angry Birds Layoffs, PlayStation Plus Price Hike | Hard News 10/2/14","description":"I’m Sean Hinz and this is Hard News for Thursday October 2, 2014.\r\nNintendo is haunting your 3DS this month by giving away a super-sized Pokemon and a Shiny Pokemon, for free. From now until October 31st, just log into Pokemon X or Y and receive a free giant Pumpkaboo! Simply load up the game, select Mystery Gift and click receive. With that, the Halloween inspired Pokemon will be all yours complete with holiday themed moves and a Rocky Helmet for counterattacks. For the ambition Trainers out there, you can trick-or-treat your local GameStop and catch yourself a Shiny Gengar between October 13 and 26th. Just hit up your store for a unique code that comes with this spooky Pokemon and the Gengrite Mega Stone for the Shiny Gengar’s Mega Evolution. Blargh! That’s a mouth full.\r\nOnto some less fortunate parts of the world, where Sony is dicking over under-privileged PlayStation Plus subscribers. Readers have been alerting various news outlets that price hikes on the service are taking place in countries like Russia, Ukraine, Turkey, and South Africa. Users in South Africa are specifically showing increases of over 50% on the three-month and annual subscription plans. Don’t get me wrong, I’ve been an advocate for the service for years, but this is really really shitty. Especially since users only received 24 hours notice before the increase happened. Inspite of how awful this is, maybe, just maybe this could be the one thing both Ukraine and Russia can agree on and find common ground. Though it’s more likely Putin will just assume control of PlayStation Plus before the end of October.  \r\nAnd finally Rovio, the famous studio who made that one game where you throw birds at shit, is going through some restructuring. Laying off as many as 130 of their own employees. The CEO Mikael Hed reports this is due to slower than expected company growth, something that contradicts another article out there. Because I don’t know if you heard, but there’s an Angry Birds movie coming out and it has basically casted some major comedians ","player_loc":"https://roosterteeth.com/embed/free-pokemon-for-3ds-owners-angry-birds-layoffs-playstation-plus-price-hike-hard-news-10214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e50e1396-e0da-40ba-a172-7f3f26d14fff/sm/video_thumbnail_12850888.jpg","duration":209,"publication_date":"2014-10-02T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/xbox-hackers-charged-windows-10-revealed-battle-chef-brigade-kickstarter-hard-news-10114","changefreq":"weekly","video":[{"title":"S1:E735 - Xbox Hackers Charged, Windows 10 Revealed, Battle Chef Brigade Kickstarter | Hard News 10/1/14","description":"I’m Sean Hinz and this is Hard News for Wednesday, October 1st 2014.\r\nA hacker collective known as the Xbox Underground has pled guilty to charges brought against them in a Delaware Court yesterday. David Pokora and Sanadodeh Nesheiwat broke into various developer studio networks like Microsoft and Zombie Studios, stealing assets valued at over $100 million dollars. Zombie Studios is the developer behind the government funded recruitment game America’s Army. One of these genius kids even managed to infiltrate the U.S. military network. If they’re found guilty of conspiracy to commit computer fraud and copyright infringement, they face a jail sentence of up to five years. Three other members of the collective have also had charges brought against them, while their partners-in-crime may enjoy some ass pounding prison time. Followed by future employment at the NSA.\r\nSpeaking of taking it in the butt though, Microsoft would like to make up for all the awful Windows 8 experiences you’ve had by introducing Windows 10. Yup, somewhere along the way we skipped the Windows 9 experience, which will forever be remembered as the perfect version of Windows, to deliver an experience that is the same across all platforms… Kind of. First the start menu is back, jammed with tiles, but it will definitely tweak that Windows 7 nostalgia. Command prompt will finally let you paste text, store apps behave more like programs, and virtual desktops will finally arrive Windows. While Microsoft has yet to announce an official price or launch date, the technical preview will be opening up this week if you’re daring enough to give it a shot. Based on the wording at both the press conference and a quote from Microsoft’s Indonesian President, it looks like Windows 8 users will be able to upgrade to 10 for free. No word on Vista or Windows 7 users or games, but let’s face it, Microsoft has delivered news this great since they announced the death of the Zune.\r\nAnd while I know we’re all a little tired of the constant barrage of Kickstarter project","player_loc":"https://roosterteeth.com/embed/xbox-hackers-charged-windows-10-revealed-battle-chef-brigade-kickstarter-hard-news-10114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/364d2c2d-d214-453f-a41d-ae3a77d6d995/sm/video_thumbnail_12850809.jpg","duration":214,"publication_date":"2014-10-01T12:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/oodles-of-opium-noodles-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E158 - Oodles of Opium Noodles | SideScrollers","description":"With titans falling, perverts flying high, and big new plans coming to life, Craig, Chad, and Sam have plenty to dig into and break down THIS TIME ON SIDESCROLLERS!\r\nCheck out our featured partner!\r\nHttp://www.youtube.com/justplaypokemon\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/oodles-of-opium-noodles\r\n\t\r\n\tGet the music you're hearing in this episode!\r\n\thttps://itunes.apple.com/us/artist/devin-taylor/id372066186\r\n\t\r\n\tHave a Newsdesk story? Send it to Sam!\r\n\tSam@ScrewAttack.com\r\n\t\r\n\tHave a Birthday Challenge pic? Send it to Bryan!\r\n\tBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/oodles-of-opium-noodles-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cee9fe25-8349-4296-9fda-f98bafc45bc2/sm/video_thumbnail_12850742.png","duration":4272,"publication_date":"2014-10-01T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-100114","changefreq":"weekly","video":[{"title":"S1:E804 - SideScrollers Extended Cut 10/01/14","description":"What are Nick, Parker, and Sean doing here?!?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-100114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d27dfc1b-f912-4e8e-8fe7-d8ec4f62d3e9/sm/video_thumbnail_12850799.png","duration":941,"publication_date":"2014-10-01T09:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shadow-of-mordor-season-pass-zelda-fan-remake-yet-another-assassins-creed-hard-news-93014","changefreq":"weekly","video":[{"title":"S1:E734 - Shadow of Mordor Season Pass, Zelda Fan Remake, Yet Another Assassin's Creed | Hard News 9/30/14","description":"I’m Sean Hinz and this is Hard News for Tuesday, September 30th 2014.\r\nThere is a another remake of The Legend of Zelda: Ocarina of Time in the works, but it isn’t coming from Nintendo. Nope, a group of ten die hard fans have teamed up to make Ocarina of Time 2D, placing the beloved adventure in the classic top-down perspective. This means it will share gameplay elements similar to that of the 8 and 16 bit generations, with hand-drawn cutscenes and a chiptune soundtrack. This remix of the N64 classic is of course a PC-exclusive, which is only about 10% complete at this point. You can actually download a working version that will only really let you play the opening, just check out the description. How badass would it be if this came to a portable like the 3DS? Then again, how badass would it be if Nintendo didn’t shut this fan project down? Yeah... I would download that now, before it’s gone faster than the Giant’s Knife.\r\nWith the release of Monolith’s Middle-earth: Shadow of Mordor, a trailer for the Season Pass was revealed and you’ll gain access to additional story missions, challenge modes, skins and runes; all for only $24.99.The Tolkien estate has also given their blessing to include a one on one fight with Sauron in the game. In the DLC mission called The Bright Lord, you’ll assume the role of Celebrimbor as you take on the dark lord. But tackling the Middle-earth lore isn’t always so easy. There’s a great article on Polygon about how the Tolkien estate lost their shit over the Pumpkins appearing in any games, including this latest one. It has to do with new-world versus old-world crops and some sort of grudge against the gord. Nerds. So that’s one payment to rule them all, a Season Pass to bind them, no game to find themselves a pumpkin patch inside them.\r\nAnd finally, I cannot believe I am saying this, but there is another another Assassin’s Creed game releasing this year. So that’s four fully fledged adventures with Unity, Rogue, Chronicles, and now Identity. Available today in Australia and New Zealan","player_loc":"https://roosterteeth.com/embed/shadow-of-mordor-season-pass-zelda-fan-remake-yet-another-assassins-creed-hard-news-93014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0bfe662-a623-4c7a-92ab-30610d250c41/sm/video_thumbnail_12850749.jpg","duration":203,"publication_date":"2014-09-30T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-about-gta","changefreq":"weekly","video":[{"title":"S1:E12 - FIVE FUN FACTS About GTA","description":"Thought you knew everything about GTA? Maybe not!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-about-gta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5daf4b0-cd43-4f38-bd9a-5463b95b58e2/sm/video_thumbnail_12850725.jpg","duration":214,"publication_date":"2014-09-30T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/links-horsing-around-bayonetta-2-barrel-rolls-ps-home-is-shuttered-hard-news-92914","changefreq":"weekly","video":[{"title":"S1:E733 - Link's Horsing Around, Bayonetta 2 Barrel Rolls, PS Home is Shuttered | Hard News 9/29/14","description":"I’m Sean Hinz and this is Hard News for Monday, September 29th 2014.\r\nThe Asian closure of PlayStation Home, as reported last month, has now become a worldwide eviction. Sony revealed in a European PlayStation Forum that the social service would also be shutting its doors in March of 2015 overseas and this closure would extend to North America. Meaning that Home would no longer be a place where you can go and waste the few hours you have left in your life dancing with random strangers and attempt to watch a Sony press conference, fruitlessly. Additionally, publishing new content will stop on November 12th, and the ability to download said content goes away on the 3rd of December. Until then, Sony is going to offer “free content” in celebration of the demise of Home, because nothing says the Rapture like free shit. Despite years of spending time in your home away from Home, it’s time to say goodbye to your Second Life. And let’s be honest, anyone devasted by this news probably needs to spend some time outside.\r\nIf you really want to live vicariously through  video games, why not play something fun like say Hyrule Warriors. The first DLC bits for the recent Nintendo release were revealed late last Friday and it’s a horse of a different color, literally. In the game’s first expansion, the Master Quest Pack, you can access to new scenarios, costumes, and Adventure Mode map, and a weapon. But not just any weapon, no, you’ll gain access to the Hero of Time’s trusty stead, Epona. Weighing in on Miiverse, Zelda director Eiji Aonuma gave his first impressions of the DLC and Epona’s abilities. Apparently the weaponized equine will be able to “blow herds of enemies away and gallop swiftly through the fields”, as she accompanies Link on his latest adventure. Well… until you run out of carrots and then she is all out of fucks. Expect more details before its October 16th release. Oh and eat shit Bethesda! Nintendo is about to show you how it’s done when it comes to horse DLC.\r\nAnd Hyrule Warriors isn’t the only game getting so","player_loc":"https://roosterteeth.com/embed/links-horsing-around-bayonetta-2-barrel-rolls-ps-home-is-shuttered-hard-news-92914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2047c82-41fc-4266-9e91-e1ac1aa8ee84/sm/video_thumbnail_12850677.jpg","duration":227,"publication_date":"2014-09-29T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/blizzard-raises-dead-wii-u-vc-gets-castlevania-smash-bundle-on-amazon-hard-news-92614","changefreq":"weekly","video":[{"title":"S1:E732 - Blizzard Raises Dead, Wii U VC gets Castlevania, Smash Bundle on Amazon | Hard News 9/26/14","description":"I’m Sean Hinz and this is Hard News for Friday, September 26th, 2014.\r\nI wanted to start with a new feature here on Hard News, the Wii U Digital Round-up.Once a week Nintendo let’s us know about the big things happening on the eShop and I just want to highlight some of the good you can get from it. Consider it penance from yesterday. Today we have great news, as Castlevania is haunting the Virtual Console launching Castlevania: Dracula X from the SNES and Castlevania: Circle of the Moon from the GBA. They’ll each arrive on October 9th, reminding us of why we love the franchise so much. Fingers crossed for Aria of Sorrow one day, so Soma Cruz and I can tear up Dracula’s castle again.\r\nBut that isn’t the only upcoming Digital Content to look forward too. Mario Kart 8’s upcoming DLC is bringing the B Dasher back for Mario Kart DS, along with with the Blue Falcon. The content is a little over a month away and I cannot fucking wait to get my hands on the new karts. The two expansions are $8 individually or $12 as a bundle and the first goes live in November.\r\nBlizzard has declared that it’s time to bring out the dead and undelete the denizens of Warcraft. Thanks to a built-in feature coming in the next patch, users will be able to resurrect their long dead characters, retaining their enchantments, gems, and items. Of course there are rules to this process and not every corpse is eligible for reanimation. Specifically any under level 10 or over level 50, and basically anyone deleted more than 120 days ago. Though levels 10-30 will only get 90 days of death. Oh and you only get this option once per month. Awfully nice of Blizzard to go all necromancer on your account, but maybe this is in response to the wave of users who lost faith after the cancellation of Titan. Wait, don’t go, Blizzard won’t let you down!\r\nSpeaking of not letting us down, Nintendo has been kind enough to bundle up everything you’ll need in order to get the most out of Super Smash Bros. for Wii U. But wait, didn’t we know about this already… Well I g","player_loc":"https://roosterteeth.com/embed/blizzard-raises-dead-wii-u-vc-gets-castlevania-smash-bundle-on-amazon-hard-news-92614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b440194c-c28c-4008-b8db-3f8bea3f4c53/sm/video_thumbnail_12850472.jpg","duration":203,"publication_date":"2014-09-26T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/duck-dynasty-game-bayonetta-2-flounders-in-japan-watch-dogs-dlc-skips-wii-u-hard-news-92514","changefreq":"weekly","video":[{"title":"S1:E731 - Duck Dynasty Game, Bayonetta 2 Flounders in Japan, Watch Dogs DLC Skips Wii U | Hard News 9/25/14","description":"Don’t forget there is only a week left before Hard News moves over to the ScrewAttack News channel. Click the watermark below to subscribe!\r\nI’m Sean Hinz and this is Hard News for Thursday, September 25th, 2014.\r\nActivision and it’s bastard studios in Bucharest has been given the unfortunate task of developing a Duck Dynasty licensed game, which ties into the “hit” reality TV show. These are the same devs behind the titular Cabela’s franchise and that Men in Black game no one played from 2012. Duck Dynasty’s game aims to make you a Robertson as you go duck hunting, fishing, airboat racing, and klu klux klanning through the neighborhood. It will be coming to PS3, PS4, Xbox 360, Xbox One, 3DS and… Well that’s it. The story is a campaign of carnage as you pull pranks, blow-up shit and even engage in riveting first-person duck calling. What a treat! I know it’s terrible, but I can’t help think the end boss would be a gay latino in a Barack Obama mech suit trying to take your job.\r\nRight now Japan is having a sort of Wii U renaissance with the recent release of Hyrule Warriors and upcoming launch of Super Smash Bros. But there’s another game that just released called Bayonetta 2 and it’s pretty important. Yet Nintendo must have forgot the game, completely ignoring it’s launch and the sales were abysmal. Bayonetta 2 in the first week of it’s Japanese release is estimated to have sold around 30… thousand units. To put that in perspective, Smash for 3DS sold over 300,000 units that same week, its second week of sales. It’s an awful state for Platinum Games to find their sequel in, considering the review scores have been high and Bayonetta screams kooky Japanese culture. Sales had better pick up over here in the West this October or this will certainly be the last in the franchise. There’s only one explanation, this has to be the Wii U’s fault.\r\nSpeaking of everyone’s favorite next-gen platform, Ubisoft decided to take one last huge dump on the console before it peaces out. Watch Dogs has been confirmed to finally arrive","player_loc":"https://roosterteeth.com/embed/duck-dynasty-game-bayonetta-2-flounders-in-japan-watch-dogs-dlc-skips-wii-u-hard-news-92514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db4a8f1f-e107-4a26-a8d1-8ac96894ebff/sm/video_thumbnail_12850416.jpg","duration":216,"publication_date":"2014-09-25T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/blizzards-titan-cancelled-queens-wrath-engulfs-destiny-steam-curator-trolls-hard-news-92414","changefreq":"weekly","video":[{"title":"S1:E730 - Blizzard's Titan cancelled, Queen's Wrath Engulfs Destiny, Steam Curator Trolls | Hard News 9/24/14","description":"I’m Sean Hinz and this is Hard News for Hump Day September 24th, 2014.\r\nDestiny is holding one of its first unique events and is offering up Legendary gear for participants. The Queen’s Wrath event opened last night and will run through October 6th, featuring new bounties and remixed missions for weary guardians. The unique gear includes new weapons, shaders, and class specific armor; but no word on whether or not you can find a complete set. Legendaries are guaranteed though by completing a bounty, turning that into the Queen’s Emissary and then completing a remixed story mission. After that you should receive two fixed legendary pieces, though it is recommended you’re level 24 before embarking on this quest. Now we just had our first level 30 in the game and higher level players are complaining that the Queen’s Wrath loot is a bit below their level. I on the other spent an hour shooting at the treasure cave last night and welcome the opportunity for guaranteed purps. I am flush with filthy casual greens for days.\r\nYesterday Steam introduced an updated version of their launcher and storefront, adding a wealth of new ways to encourage you to buy more games. The most striking is the introduction of Curators. This is meant to improve a game’s discoverability, but it has only taken 24 hours for users to start exploiting the service. Some are in it for the money, providing users not only advice on a game’s quality, but where you can by a shady game key on the Internet and promptly get your information stolen. Others are in it for the LOLs, recommending that you go kill yourself or simply comparing everything to the cult-classic Postal. A great measure of a quality game of course. For Steam this seems like business as usual, with the same sort of trolls showing their face for the release of Steam reviews and Steam Tags, but maybe by empowering Curators, Valve is simply hoping to flush out a few assholes. And if there is one thing the Internet has in spades, it’s assholes.\r\nSpeaking of assholes, Blizzard’s is raw from ","player_loc":"https://roosterteeth.com/embed/blizzards-titan-cancelled-queens-wrath-engulfs-destiny-steam-curator-trolls-hard-news-92414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae70f5d8-152b-4e91-875f-7249a1a460a8/sm/video_thumbnail_12850338.jpg","duration":218,"publication_date":"2014-09-24T13:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-092414","changefreq":"weekly","video":[{"title":"S1:E803 - SideScrollers Extended Cut 09/24/14 ","description":"Chad is turning Japanese and Craig rocks a band-aid for the mole no longer with him.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-092414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd74a1a9-26b6-4a1a-8a7b-ff4940ce2f0d/sm/video_thumbnail_12850335.png","duration":622,"publication_date":"2014-09-24T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/polygamist-ninja-strike-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E157 - Polygamist Ninja Strike | SideScrollers","description":"Craig's back on the scene as the guys get into becoming zombies, how Craig spent his summer vacation, and what happens when bored kids in Idaho get ahold of fire THIS TIME ON SIDESCROLLERS!\r\nHave a Newsdesk suggestion? Send it to Sam!\r\nSam@ScrewAttack.com\r\nTaking up the Birthday Challenge? Send it to Bryan!\r\nBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/polygamist-ninja-strike-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8cbb62a-cc4d-41e9-916f-d10b35882459/sm/video_thumbnail_12850261.png","duration":4433,"publication_date":"2014-09-24T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-2ds-for-pokemon-asscreed-season-pass-triad-wars-is-f2p-hard-news-92314","changefreq":"weekly","video":[{"title":"S1:E729 - Nintendo 2DS for Pok?mon, AssCreed Season Pass, Triad Wars is F2P | Hard News 9/23/14","description":"I'm Sean Hinz and this is Hard News for Tuesday, September 23, 2014\r\nNintendo has decided that we just don't have enough custom handhelds right now, so here's two transparent 2DS’ coming out in Europe. They look pretty damn sexy in blue and red, expected to release in late November, around the same time as Pokémon Omega Ruby and Alpha Sapphire. The handhelds will come bundled with a digital version of the respective game and the overall look is reminiscent of say an old Gameboy Color. My obvious issue though is these are still just a standard 2DS and not the recently announced “new” 3DS, making it an outdated piece of hardware no matter how cool it looks. I mean come on and Nintendo! By my count there are over 24 color variations of 2DS/3DS/3DSXL in North America, while in Japan there are over 60. And we give Capcom shit for re-releasing the same thing over and over again.\r\nOnto something that will never change, Ubisoft’s season pass for Assassin’s Creed Unity has been revealed. The biggest portion of which is entitled Dead Kings puts Arno in the city of Saint Denise, just outside of Paris after the events of Unity. It comes with plenty of additional content and will unlock over 30 weapons, items, and outfits. However, the biggest but the most interesting part of the Season Pass would have to be the inclusion of a 2.5D action platformer called Assassin’s Creed Chronicles: China. It stars a female assassination named Shao Jun and takes place in the 16th century. You'll still be a free running stabby stab Assassin, but interacting in a gameplay style reminiscent of Prince of Persia. The price for all of these experiences is $30 and it will be releasing in early 2015. Three AssCreed games in a single year. THREE! Why don’t you just include divorce papers with the Special Edition, because my wife won’t be seeing me after November 11th.\r\nAnd lastly Triad Wars is the latest game from United Front and it's a less of a sequel to the Sleeping Dogs franchise and more a spin-off free to play game that will encourage you to ","player_loc":"https://roosterteeth.com/embed/nintendo-2ds-for-pokemon-asscreed-season-pass-triad-wars-is-f2p-hard-news-92314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d49b6c1e-8d5e-4124-9693-938536dc2ada/sm/video_thumbnail_12850263.jpg","duration":241,"publication_date":"2014-09-23T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-minecraft","changefreq":"weekly","video":[{"title":"S1:E11 - Five Fun Facts - Minecraft","description":"S1:E11 - Five Fun Facts - Minecraft","player_loc":"https://roosterteeth.com/embed/five-fun-facts-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6b9869f-ea44-4343-9a44-0dee0aaaa520/sm/video_thumbnail_12850198.jpg","duration":238,"publication_date":"2014-09-23T12:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/playstation-tv-dated-isis-makes-game-trailer-videogame-museum-in-texas-hard-news-92214","changefreq":"weekly","video":[{"title":"S1:E728 - PlayStation TV Dated, ISIS Makes Game Trailer, Videogame Museum in Texas | Hard News 9/22/14","description":"I’m Sean Hinz and this is Hard News for Monday September 22nd, 2014.\r\nVideogame terror has struck the Middle East, as gaming propaganda was recently released by the Islamic state of Iraq and Syria or ISIS. Arabic media reports that a YouTube video titled Grand Theft Auto: Salil al-Sawarem is a promotional video for an upcoming game from the terrorist organization. The ISIS media wing, yes they have one of those too, is using the game to raise the morale of the mujahedin and to sway children to their cause. A mujahedin is a Muslim freedom fighter, most often associated with radical Islam. So is there a videogame coming from ISIS? Probably not. Just looking at the video provided, that’s definitely GTA: San Andreas, only heavily edited to look like a jihad simulation complete with explosions, drive bys and the general fuck the police attitude that we too embrace as Americans. Ironically the one way we might be able to connect with this terrorist organization is through a gangster infused culture which celebrates violence. So much for society?!\r\nIn more warmhearted news it appears the Videogame History Museum has in fact found a permanent home, right here in Texas. The museum has been a mainstay at a number of events including E3 and many local Gearbox community days, but was in need of a home for quite some time. Now thanks to the city of Frisco Texas, which is just 20 minutes from our offices, they will be moving to a 10,000 square-foot space within the Frisco discovery Center. Co-founders Sean Kelly and John Hardy told the Dallas News that they're excited about the new opportunity and outside of preserving games for generations, they intend to use the museum as an educational tool. The city will also spend up to $800,000 on building improvements and add extra parking, which patrons will start using for themselves in April of 2015. Between the museum and Gearbox Software, Frisco is becoming quite the city for gaming. Looks like we just moved to the wrong city…\r\nFinally, big news for PlayStation TV today, with revea","player_loc":"https://roosterteeth.com/embed/playstation-tv-dated-isis-makes-game-trailer-videogame-museum-in-texas-hard-news-92214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2605f2e-ed28-461d-814f-25a13fdd9e4b/sm/video_thumbnail_12850210.jpg","duration":224,"publication_date":"2014-09-22T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smite-the-god-of-retro","changefreq":"weekly","video":[{"title":"S1:E802 - SMITE - The God of Retro","description":"Click here to play Smite for FREE!\r\n \r\nFollow Ben on FACEBOOK and TWITTER","player_loc":"https://roosterteeth.com/embed/smite-the-god-of-retro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a4e4e44-383c-43c2-bd1e-0fb90c144bf2/sm/video_thumbnail_12850187.jpg","duration":549,"publication_date":"2014-09-22T08:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/assassins-creed-movie-delayed-driveclub-white-ps4-bundle-shinra-technologies-hard-news-091914","changefreq":"weekly","video":[{"title":"S1:E727 - Assassin?s Creed Movie Delayed, DriveClub White PS4 Bundle, Shinra Technologies | Hard News 09/19/14","description":"Today on Hard News, Assassin’s Creed Movie Delayed, DriveClub White PS4 Bundle, Shinra Technologies.\r\n\t\r\n\tAssassin’s Creed Movie Delayed - http://www.vg247.com/2014/09/19/assassins-creed-movie-delayed-2016/ \r\n\tShinra Technologies - http://www.eurogamer.net/articles/2014-09-19-shinra-technologies-is-square-enixs-cloud-gaming-company \r\n\tDriveClub White PS4 Bundle - http://www.vg247.com/2014/09/19/driveclub-ps4-glacier-white-bundle/ \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/assassins-creed-movie-delayed-driveclub-white-ps4-bundle-shinra-technologies-hard-news-091914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e92fcd-cbbc-4880-8fa3-2e7bc11f9eb1/sm/video_thumbnail_12849967.jpg","duration":198,"publication_date":"2014-09-19T11:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/final-fantasy-xv-demo-bloodborne-release-date-sonic-boom-hard-news-091814","changefreq":"weekly","video":[{"title":"S1:E726 - Final Fantasy XV Demo, Bloodborne Release Date, Sonic Boom | Hard News 09/18/14","description":"Today on Hard News, Final Fantasy XV Demo, Bloodborne Release Date, Sonic Boom.\r\n\t\r\n\tBloodborne Releases in November! - http://www.vg247.com/2014/09/18/bloodborne-ps4-tgs-video/ \r\n\tFinal Fantasy XV - http://www.vg247.com/2014/09/18/final-fantasy-15-tgs-trailer-shows-new-gameplay/ \r\n\tSonic Boom - http://kotaku.com/both-sonic-boom-games-are-coming-out-on-november-11-now-1636284109 \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/final-fantasy-xv-demo-bloodborne-release-date-sonic-boom-hard-news-091814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2a1f1eb-513d-44a1-89b5-a6adfc6f2389/sm/video_thumbnail_12849888.jpg","duration":162,"publication_date":"2014-09-18T13:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-091614","changefreq":"weekly","video":[{"title":"S1:E801 - SideScrollers Extended Cut 09/16/14","description":"The guys keep on sharing old job stories on SideScrollers Extended Cut!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-091614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c394293e-5b3b-47ef-be9c-ec73e9569245/sm/video_thumbnail_12849881.png","duration":1087,"publication_date":"2014-09-18T11:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/no-bark-all-bite-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E156 - No Bark All Bite | SideScrollers","description":"With Craig still out, Sean takes the third seat on SideScrollers to talk Destiny conspiracy theories, gaming glory days, and how far some crazy ex-lovers go THIS TIME ON SIDESCROLLERS!\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/no-bark-all-bite-lidelcrollers\r\nHave a blast with BOOMco!\r\n\tHttp://www.youtube.com/officialboomco\r\n\t\r\n\tHave a Newsdesk suggestion? Send it to Sam!\r\n\tSam@ScrewAttack.com\r\n\t\r\n\tSend your birthday pics to Bryan!\r\n\tBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/no-bark-all-bite-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce716d61-85fe-4f22-a550-33ee0beb85fd/sm/video_thumbnail_12849686.png","duration":3753,"publication_date":"2014-09-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/final-fantasy-xv-demo-inbound-sony-reports-230-billion-yen-loss-mkx-gets-a-fightpad-hard-news-91714","changefreq":"weekly","video":[{"title":"S1:E725 - Final Fantasy XV demo inbound, Sony reports 230 billion yen loss, MKX gets a fightpad | Hard News 9/17/14","description":"I’m Sean Hinz and this is Hard News for Wednesday September 17th, 2014.\r\nIn some Final Fantasy news that isn’t a horrid abuse of the franchises legacy, we might get to play a little Final Fantasy XV, by 2015. GameInformer has revealed that fans who purchase the Final Fantasy Type-0 HD port, due March 17th of next year, will be treated to a demo of Final Fantasy XV. Type-0 was a PSP release exclusive to Japan from 2011 and the HD port will be launching on PS4 and Xbox One in North America, Japan, and Europe. GameInformer must have published their post a bit early, because after everyone ran with the story, they pulled the entire article. It’s a good thing we had that picture as proof of their folly. With TGS this week, here’s hoping Japan doesn’t beat GameInformer’s ass too hard for leaking this news.\r\nWhile we are over in the land of the rising sun, let’s have a look at Sony’s financial state and man does it seem like a sinking ship these days. In spite of all the success they’ve experienced on the PlayStation side of the business, everything else is struggling and that is leading to a sizable loss for the year and we aren’t done yet. In July the loss was forecasted at 50 billion yen, but after a few months go by, Sony now expects a whopping 230 billion yen loss. That’s over $2 billion dollars and at least half if not more of that is coming from their smartphone division. In the two years since Kaz Hirai became CEO, this is the sixth revision downward and things may only get worse before they get better. I suppose that is why PlayStation Now pricing is so batshit insane. They’re using it to try and save the entire company!\r\nAnd lastly, PDP isn’t just making that sweet Smash Bros. Wii U controller. The accessory designer has received the rights to make a fightpad for the upcoming release of Mortal Kombat X. Iron Galaxy CM Alex Jebailey posted some pics of the prototype on Instagram, revealing a lopsided six button fightpad. FYI, that stick on the side isn’t analog, but is instead a series of microswitches to simul","player_loc":"https://roosterteeth.com/embed/final-fantasy-xv-demo-inbound-sony-reports-230-billion-yen-loss-mkx-gets-a-fightpad-hard-news-91714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e11bd573-c7c8-4e11-8ea1-fac431e8b955/sm/video_thumbnail_12849799.jpg","duration":199,"publication_date":"2014-09-17T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-street-fighter-ii","changefreq":"weekly","video":[{"title":"S1:E10 - Five Fun Facts - Street Fighter II","description":"S1:E10 - Five Fun Facts - Street Fighter II","player_loc":"https://roosterteeth.com/embed/five-fun-facts-street-fighter-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35cd5cc2-391b-457a-a3ee-f4bed00f414f/sm/video_thumbnail_12849643.jpg","duration":235,"publication_date":"2014-09-16T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/playstation-jordans-xbox-360-goes-blue-guerrilla-games-horizon-art-leaks","changefreq":"weekly","video":[{"title":"S1:E724 - PlayStation Jordans, Xbox 360 goes Blue, Guerrilla Games Horizon Art Leaks","description":"I’m Sean Hinz and this is Hard News for Tuesday September 16th, 2014.\r\nAre you a PlayStation fanboy? Do you want to share your love of gaming and sports with the real world? Well Jonny Barry from FreakerSNEAKS was inspired by the recent launch of the PS4 to develop the PlayStation Jordans. A pair of Air Jordan IV’s modified to sport a number of PlayStation 4 aesthetics, including a non-working HDMI port on the back of the heel. They even come with a custom Jumpman 23 HDMI cable, which can be used to keep your shoes together. Unfortunately sneakerheads will need to cough up $1000 to get one of the limited 10 pairs available in the initial release. It’s a sad state in gaming when a pair of sneakers RUN at a higher resolution than the Xbox One.\r\nBack to PlayStation though, Guerrilla Games just had their concept art for a new project leaked in a Chinese forum. The first party Sony developer is working on something called Horizon and just by looking at the concept art, we might be in for a treat. Both scenes depict massive mechanical monsters, roaming through epic landscapes. And the second image even shows some humans trying to take a mighty beast down. While we know almost nothing about the game, on paper the concept seems pretty fun. A three-person fireteam battles epic enemies across beautiful landscapes, while incorporating social elements... It’s a good thing we don’t already have something like that. Which everyone is playing. EVERY. WAKING. MOMENT.\r\nXbox 360 on the other hand is getting a new holiday bundle or three shipping to retailers today. The first two are your standard new generation 360; one centered around Kinect games, the other around Call of Duty and both for $250. Then you have the Arctic Blue bundle, which is limited to Walmart customers and is the same as the Call of Duty bundle, just blue! Why this color you may ask? Well they probably looked at the sales numbers for the PS4 and then blue themselves. Now I know some of you are rolling your eyes at the idea of buying a previous generation custom","player_loc":"https://roosterteeth.com/embed/playstation-jordans-xbox-360-goes-blue-guerrilla-games-horizon-art-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/897e712c-7b31-48a3-9442-0c43dd04421a/sm/video_thumbnail_12849692_0.jpg","duration":188,"publication_date":"2014-09-16T13:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-bought-by-microsoft-rumor-of-xbox-streaming-more-smash-bros","changefreq":"weekly","video":[{"title":"S1:E723 - Minecraft bought by Microsoft, Rumor of Xbox Streaming, More Smash Bros.","description":"I'm Sean Hinz and this is Hard News for Monday, September 15, 2014\r\nMicrosoft returns to the news today with the official announcement that Minecraft has in fact has been purchased for $2.5 billion. Owner Markus “Notch” Persson has decided to leave the company after the acquisition takes place and Microsoft promises to continue to develop the game for multiple platforms. That means in a bizarre move that this will be one of the first times PlayStation will license a Microsoft game, for Minecraft’s release on Vita. Despite confirming many of the previously heard rumors from last week, something that many fans will find interesting is the Dear John letter from Notch on departing the company. You see, it’s not you, it's him. Notch feels he “is not an entrepreneur… not a CEO.” He’s just a programmer that wants to retain his sanity and no longer be a symbol of some larger industry movement. I can sympathize with Notch over the pressure that comes with being the face of something larger than yourself. How nice it must be to lack the ambition to grow as a person and become a leader in your community, to instead return to his roots as a lowly programmer... with a billion dollars.\r\nIn other Microsoft news, it appears that Mojang may not be the only rumor turned reality that we can expect to see in the future.  A “report” on NeoWin claims Microsoft is working on a browser-based streaming technology that could be used to play Xbox 360 games and even float the Xbox 360 dashboard for users to access their content from just about any Windows powered device.This would put Microsoft technologies on par with say something like PlayStation Now or OnLive. There are even rumors about Xbox One games getting the treatment as well, but all things in time. It shouldn't come as a big surprise Microsoft is choosing this route, because the Xbox One already offloads much of its computing power to the Azure Cloud. Bringing some sort of streaming service to a browser seems like the next logical step for their technology. Let's just hope that ","player_loc":"https://roosterteeth.com/embed/minecraft-bought-by-microsoft-rumor-of-xbox-streaming-more-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/558b2eaf-a3b0-4507-8e95-a3c9c8360f61/sm/video_thumbnail_12849616.jpg","duration":259,"publication_date":"2014-09-15T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-great-gameworks-takedown","changefreq":"weekly","video":[{"title":"S1:E800 - THE GREAT GAMEWORKS TAKEDOWN!","description":"What's the most tickets YOU'VE ever won at an arcade? Let us know in the comments below!","player_loc":"https://roosterteeth.com/embed/the-great-gameworks-takedown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b683edc-aad5-4c2a-b459-0c801be93e8e/sm/video_thumbnail_12849258.png","duration":256,"publication_date":"2014-09-12T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gta-v-release-date-pikachu-invades-white-house-and-atari-landfill-auction-hard-news-9122014","changefreq":"weekly","video":[{"title":"S1:E722 - GTA V release date, Pikachu invades White House, and Atari Landfill Auction | Hard News 9/12/2014","description":"Like daily gaming news? Subscribe by clicking here: http://www.youtube.com/subscription_center?add_user=ScrewAttackNews\r\nI’m Sean Hinz and this is Hard News for Friday September 12th, 2014.\r\nGrand Theft Auto V had its next-gen release dates revealed courtesy of Rockstar and Take-Two; and it looks like you won’t have to wait too long to get your hi-def Trevor fix. The console version will arrive on PS4 and Xbox One November 18th, just in time for the holiday rush. While the PC version will launch on January 27th of 2015, to the delight of modders and sandbox fans alike. Rockstar points out just how the game has been improved upon in almost every way whether its more detailed environments or a wider variety of activities to engage in. Additionally they’re bringing 100 new songs and DJ mixes for you to shake your seat muffin to and previous gen owners will be able to transfer all their progression to a next gen system. YouTuber DomisLive may have also leaked the unconfirmed price of $50 via PSN. Great news, it looks like you’ll be getting GTA V at a discount this holiday. So this brings up an important question… Where the hell are heists in GTA Online?!\r\nNow we all know the truth behind Atari’s famous E.T. landfill, but what are they going to do with the recently discovered carts? Why profit of course. Of the nearly 800,000 games suspected to have been buried in the Alamogordo Landfill, around 1300 were unearthed in the famous excavation of 10,000 pounds of garbage earlier this year. The city council has voted unanimously that those carts are going to be sent to museums around the world and auctioned off to gain a better understanding of their value in the open market. 800 games have been set aside to be auctioned in one of three lots. The first to appear on ebay in the next few weeks. No word on what the money will be used for, but I have a hunch that Arizona will use it to build a giant wall on the border of Mexico and paint an Atari logo on it.\r\nAnd lastly, terror at the White House yesterday when a rogue Pokemon","player_loc":"https://roosterteeth.com/embed/gta-v-release-date-pikachu-invades-white-house-and-atari-landfill-auction-hard-news-9122014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cbce059-447c-4be3-9a86-f11a0301f3bc/sm/video_thumbnail_12849370.jpg","duration":228,"publication_date":"2014-09-12T14:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/psp-store-is-closing-final-fantasy-on-phones-and-super-smash-leaks-confirmed-hard-news-9112014","changefreq":"weekly","video":[{"title":"S1:E721 - PSP Store is Closing, Final Fantasy on phones, and Super Smash Leaks Confirmed | Hard News 9/11/2014","description":"Like daily gaming news? Subscribe by clicking here: http://www.youtube.com/subscription_center?add_user=ScrewAttackNews\r\nI’m Sean Hinz and this is Hard News for Thursday, September 11th, 2014.\r\nSony is bringing to end an entire generation of mobile games for most of the world. As of September 15th, PSP owners will no longer be able to access the PSN storefront in regions like Europe, Oceania, Asia, and some Africa. Sure, you could always make purchases via the Sony Entertainment Network and then download via your purchase history, but really, this is the publisher closing the book on its first true foray into portables. North America will continue to have access, along with Japan of course, but it seems like an end of days scenario. Sounds like the perfect time to make sure every digital PSP game works on Vita, right Sony? I still can’t believe the Wii Shop Channel out survived the PSP…\r\nSpeaking of beating a dead horse, there’s a new Final Fantasy game coming from Square Enix in Japan, but it’s another smartphone game. Titled Final Fantasy World Wide Words, the game borrows heavily from the Theaterhythm franchise art style, offering a word-based RPG using Texting of the Bread elements. *shameless* It is expected to include a return of the Chocobo farm and its crossbreading orgies, gaining access to customized words and money. Like All the Bravest, the game will be free, with microtransactions; but unlike All the Bravest, it won’t give you “cancer of the soul” after playing it. Then again it will as Square has been known to make the same mistake thrice. I guess the Japanese will find out when the game launches on iOS and Android September 16th. Hey Final Fantasy Committee, what the fuck are you doing?!\r\nAnd lastly, we keep our eyes turned to Japan for the daily Super Smash Bros. update. Yesterday a demo was released in the land of the rising sun and Sakurai has confirmed that a North American one is on the way. Now you’d think a demo would be enough to bide people over for the next five days, but it wasn’t… Some ","player_loc":"https://roosterteeth.com/embed/psp-store-is-closing-final-fantasy-on-phones-and-super-smash-leaks-confirmed-hard-news-9112014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f0abe72-63fb-43c7-9ffd-6be9d17bb8e3/sm/video_thumbnail_12849268.jpg","duration":191,"publication_date":"2014-09-11T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/face-your-destiny-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E155 - Face Your Destiny! | SideScrollers","description":"With Craig on vacation, Nick is joining Sam and Chad to break down the iphone 6, tell all their tales of Destiny's launch, learn how violent cartoon characters can be in Russia, and a whole lot more THIS TIME ON SIDESCROLLERS!\r\n\t\r\n\tTake SideScrollers on the go!\r\n\thttps://soundcloud.com/screwattack/face-your-destiny-lidelcrollers\r\n\t\r\n\tHave a Newsdesk story? Send it to Sam!\r\n\tSam@ScrewAttack.com\r\n\t\r\n\tSend your B-Day pics to Bryan!\r\n\tBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/face-your-destiny-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3df1525d-adc2-4fef-b04c-8a3f0db4e830/sm/video_thumbnail_12849102.png","duration":3700,"publication_date":"2014-09-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apple-watch-gets-a-game-super-smash-bros-3ds-xl-microsoft-may-buy-mojang-hard-news-09102014","changefreq":"weekly","video":[{"title":"S1:E720 - Apple Watch gets a game, Super Smash Bros. 3DS XL, Microsoft may buy Mojang | Hard News 09/10/2014","description":"I’m Sean Hinz and this is Hard News for Wednesday September 9th, 2014.\r\nApple has brought a new era of gaming to app fans around the world, by unveiling the Apple Watch in a press conference early yesterday. Alongside the iPhone 6 and 6+, Apple’s new wearable promises the premiere Watch experience and celebrated by launching a new U2 album. Seriously… Anyway the watch has already had its first game announced, courtesy of Flying Tiger Entertainment. They quickly let everyone know they were working on something called iArm Wrestle Champs, of which was previously for iPhone and Android. That version has you crushing an iPhone in a feat of strength, but the Watch version might actually let you demean your friends more comfortably. You might not care about mobile games, but I think we can all appreciate the first Apple Watch game is being made by a company named Tiger.\r\nIn more big news, Microsoft is rumored to be out to purchase one rather significant indie developer. Yeah, the scuttlebutt around  the old Wall Street Journal is that Microsoft is looking to acquire the company Mojang for $2 billion. The acquisition would include the games Scrolls and of course Minecraft. If it is actually happening, the deal will be finalized later this week. No one would of course care to comment on the situation, but I find this deal interesting for two reasons. First, Notch isn’t a fan of big corporations, as he pulled Oculus support after the Facebook acquisition. Then you have Microsoft, who’s a company that recently laid off 18,000 people from Xbox Entertainment Studios and closed the division entirely. Kind of Notch’s anti-hero… And where did all the money come from?… Ohhhh… Sure, the lives of 18,000 families is certainly worth the cost of Minecraft.\r\nAnd finally we end on another rumor. Wal-Mart may have leaked the North American version of the special edition 3DS XL of Super Smash. A leaked flier boasted both red and blue versions at $200 and appears to release on September 19. There is no mention of the European Bundle’s dig","player_loc":"https://roosterteeth.com/embed/apple-watch-gets-a-game-super-smash-bros-3ds-xl-microsoft-may-buy-mojang-hard-news-09102014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e7efb33-0728-4308-baa2-0e3d5e40b406/sm/video_thumbnail_12849173.jpg","duration":203,"publication_date":"2014-09-10T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/assassins-creed-betrays-the-order-by-going-rogue-paxprime-2014","changefreq":"weekly","video":[{"title":"S1:E799 - Assassin's Creed Betrays the Order by going Rogue | PAXPrime 2014","description":"Sean speaks with Rogue producer Ivan Balabanov about the exciting PS3/360 exclusive Assassin's Creed Rogue!\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/assassins-creed-betrays-the-order-by-going-rogue-paxprime-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11a21ab1-48ad-44fc-b4ad-77319fb2b20b/sm/video_thumbnail_12849156.png","duration":488,"publication_date":"2014-09-10T10:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-091014","changefreq":"weekly","video":[{"title":"S1:E798 - SideScrollers Extended Cut 09/10/14","description":"If you've had terrible roommates, you can relate to this week's SideScrollers Extended Cut.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-091014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf6ebc28-70fb-4842-83c3-cc674242bbd2/sm/video_thumbnail_12849154.png","duration":1254,"publication_date":"2014-09-10T09:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-halo","changefreq":"weekly","video":[{"title":"S1:E9 - Five Fun Facts - Halo","description":"S1:E9 - Five Fun Facts - Halo","player_loc":"https://roosterteeth.com/embed/five-fun-facts-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c7b0b84-02da-430b-a8d0-d3336e2d23c0/sm/video_thumbnail_12849038.jpg","duration":226,"publication_date":"2014-09-09T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shadow-of-mordor-delayed-ps3360-xbox-one-dashboard-update-ray-rice-removed-hard-news-090914","changefreq":"weekly","video":[{"title":"S1:E719 - Shadow of Mordor Delayed PS3/360, Xbox One Dashboard Update, Ray Rice Removed | Hard News 09/09/14","description":"Hard News is transitioning to our new ScrewAttack News Channel! Go subscribe to not miss any future episodes!\r\n\r\n\thttp://www.youtube.com/user/ScrewAttackNews?sub_confirmation=1\r\nToday on Hard News, Shadow of Mordor Delayed PS3/360, Xbox One Dashboard Update, Ray Rice Removed.\r\n\t\r\n\tRay Rice Removed - http://www.gamespot.com/articles/ea-removing-ray-rice-from-madden-nfl-15-following-/1100-6422205/ \r\n\tXbox One Dashboard Update - http://www.justpushstart.com/2014/09/xbox-one-october-dashboard-update-detailed/ \r\n\tShadow of Mordor Delayed PS3/360 - http://www.eurogamer.net/articles/2014-09-09-ps3-and-xbox-360-middle-earth-shadow-of-mordor-delayed \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/shadow-of-mordor-delayed-ps3360-xbox-one-dashboard-update-ray-rice-removed-hard-news-090914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1307a03-7fc3-4370-9466-23f82177be9c/sm/video_thumbnail_12849111.jpg","duration":144,"publication_date":"2014-09-09T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/batman-descends-in-june-donkey-kong-master-revealed-john-vechey-departs-hard-news-090814","changefreq":"weekly","video":[{"title":"S1:E718 - Batman Descends in June, Donkey Kong Master Revealed, John Vechey Departs | Hard News 09/08/14","description":"Hard News is transitioning to our new ScrewAttack News Channel! Go subscribe to not miss any future episodes!\r\n\r\n\thttp://www.youtube.com/user/ScrewAttackNews?sub_confirmation=1\r\nToday on Hard News, Batman Descends in June, Donkey Kong Master Revealed, John Vechey Departs.\r\n\t\r\n\tJohn Vechey Departs - http://www.loadthegame.com/2014/09/08/popcaps-john-vechey-left-company/ \r\n\tDonkey Kong Master Revealed - http://donkeykongblog.blogspot.com/2014/09/new-world-record-robbie-lakeman-finally.html \r\n\tBatman Descends in June - http://www.polygon.com/2014/9/8/6121925/batman-arkham-knight-release-date-limited-batmobile-edition \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/batman-descends-in-june-donkey-kong-master-revealed-john-vechey-departs-hard-news-090814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db0bbe95-a90e-486a-815a-c8cbe28a61a1/sm/video_thumbnail_12848738.jpg","duration":174,"publication_date":"2014-09-08T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-11","changefreq":"weekly","video":[{"title":"S2:E11 - Batman VS Captain America","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/796fe3d6-76ea-466b-ade5-06d8b7937f53/sm/video_thumbnail_12848200.jpg","duration":882,"publication_date":"2014-09-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/goro-revealed-for-mkx-league-of-legends-lore-reboot-destiny-cologne-hard-news-090514","changefreq":"weekly","video":[{"title":"S1:E717 - Goro Revealed for MKX, League of Legends Lore Reboot, Destiny Cologne | Hard News 09/05/14","description":"Today on Hard News, Goro Revealed for MKX, League of Legends Lore Reboot, Destiny Cologne.\r\n\t\r\n\tGoro Revealed for MKX - http://www.ign.com/articles/2014/09/05/mortal-kombat-x-release-date-announced \r\n\tDestiny Cologne - http://venturebeat.com/2014/09/05/destiny-fragrance/ \r\n\tLeague of Legends Lore Reboot - http://www.ign.com/articles/2014/09/05/league-of-legends-completely-restarts-its-lore \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/goro-revealed-for-mkx-league-of-legends-lore-reboot-destiny-cologne-hard-news-090514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c23745b-efc6-4a8c-b608-aebd2a667ba4/sm/video_thumbnail_12848193.jpg","duration":162,"publication_date":"2014-09-05T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-we-think-we-know-about-borderlands-the-pre-sequel","changefreq":"weekly","video":[{"title":"S1:E797 - What we Think we Know About Borderlands: The Pre-Sequel ","description":"2K shows us how Claptrap works in the upcoming Gearbox and 2K Australia's release of Borderlands: The Pre-Sequel.\r\n\r\n\t \r\n\r\n\tConnect with ScrewAttack Online:\r\n\r\n\tVisit the ScrewAttack WEBSITE: http://www.screwattack.com/\r\n\r\n\tLike ScrewAttack on FACEBOOK: https://www.facebook.com/OfficialSA\r\n\r\n\tFollow ScrewAttack on TWITTER: https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/what-we-think-we-know-about-borderlands-the-pre-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92edbdb3-0517-4c38-90c7-e52dc1faebd2/sm/video_thumbnail_12848138.png","duration":434,"publication_date":"2014-09-04T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shadow-of-mordor-orc-slaying-101-pax-prime-2014","changefreq":"weekly","video":[{"title":"S1:E796 - Shadow of Mordor Orc Slaying 101| Pax Prime 2014","description":"Want to be a ring wraith? Maybe make an orc's head explode with your mind?","player_loc":"https://roosterteeth.com/embed/shadow-of-mordor-orc-slaying-101-pax-prime-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f51c8f9-16c8-459d-80fa-006c9e893d49/sm/video_thumbnail_12848137.png","duration":282,"publication_date":"2014-09-04T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gearbox-does-what-it-likes-remote-play-comes-to-xperia-ouya-wants-investors-hard-news-9414","changefreq":"weekly","video":[{"title":"S1:E716 - Gearbox does what it likes, Remote Play comes to Xperia, Ouya wants investors | Hard News 9/4/14","description":"I’m Sean and this is Hard News for Thursday September 4th, 2014.\r\nOuya is rumored to be on the hunt for new investors or potential new ownership. According to GamesBeat, the Android powered micro-console has had acquisition talks with big players in the US like Google and Amazon, while also looking overseas to China. Some of those Chinese companies include Internet giant Tencent and a top smartphone distributor called Xiaomi, but there aren’t many details beyond that. Oh and Ouya has yet to comment. Keep in mind that this wouldn’t be an investment in the hardware, as much as it is Ouya’s software. Their coalition of indie developers and a few exclusives might make them a perfect catch for say Amazon Fire TV or Google Play. Or it could be an example of how to take a successful Kickstarter and turn it into a failed business model, as quickly as possible. The glass is always half-full!\r\nNow if you’re really looking to the future of gaming, PS4’s remote play continues to impress and Sony has no plans of pulling back on the feature. In fact, coming this November all three Xperia devices in the Z3 line of smartphones and tablets are remote play compatible. Just hop on the PS4 Wi-Fi and Bluetooth a controller, then BAM! Now you’re playing The Last of Us Remastered on a smartphone. A big difference with these devices versus other remote play hardware is WiFi network has to be the same. Sony says theoretically you could play PS4 on the other side of the world with strong enough WiFi, but it might suck. There is also an attachment called the GCM10 Game Control Mount, which allows you to clip the phone to your Dual Shock. Good luck not looking like a complete tool while trying to use that device. This is a revelation for the service, Sony is finally getting into the handheld market, because you know… it isn’t like they didn’t already have an awesome portable that could us some support in the West. Like say 250 FREE PSP games?!\r\nAnyways, we turn our eyes back to the ongoing class action lawsuit by fans against Sega and Gearb","player_loc":"https://roosterteeth.com/embed/gearbox-does-what-it-likes-remote-play-comes-to-xperia-ouya-wants-investors-hard-news-9414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cd7cad6-a725-4dd4-8e9a-3b3dd697e7b9/sm/video_thumbnail_12848131.jpg","duration":231,"publication_date":"2014-09-04T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mortal-kombat-x-introduces-new-faces-and-fatalities-pax-prime-2014","changefreq":"weekly","video":[{"title":"S1:E795 - Mortal Kombat X Introduces New Faces and Fatalities | PAX Prime 2014","description":"Sean interviews Adam Urbano, Senior Producer of Mortal Kombat X, to get more details about the exciting new installment in the classic franchise!","player_loc":"https://roosterteeth.com/embed/mortal-kombat-x-introduces-new-faces-and-fatalities-pax-prime-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5352960-5f38-4e0f-9dad-dd4f4037e48d/sm/video_thumbnail_12848123.jpg","duration":249,"publication_date":"2014-09-04T13:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/assassins-creed-unity-new-co-op-and-customization-details-pax-prime-2014","changefreq":"weekly","video":[{"title":"S1:E794 - Assassin's Creed Unity: New Co-op and Customization details! | PAX Prime 2014","description":"Details on Co-op, Customization, and a plethora of new info on Assassin's Creed Unity!\r\n\r\n\tWhat are you excited for in the next entry in the Assassin's Creed series? Let us know in the comments below!","player_loc":"https://roosterteeth.com/embed/assassins-creed-unity-new-co-op-and-customization-details-pax-prime-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f60190d-e755-46d8-b646-d554b5c0d104/sm/video_thumbnail_12848113.png","duration":282,"publication_date":"2014-09-04T11:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/playing-with-toy-soldiers-war-chest-at-pax-prime-14-screwattack-news","changefreq":"weekly","video":[{"title":"S1:E793 - Playing with Toy Soldiers: War Chest at PAX Prime '14 | ScrewAttack News","description":"Signal Studios and Ubisoft are taking it back to your childhood with Toy Soldiers: War Chest. Find out just how rainbow shooting unicorns, wily kaisers, and others with thrown down in 2015!","player_loc":"https://roosterteeth.com/embed/playing-with-toy-soldiers-war-chest-at-pax-prime-14-screwattack-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f166c118-3830-4f15-8a81-a69a4d28de52/sm/video_thumbnail_12848101_0.png","duration":136,"publication_date":"2014-09-04T08:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-til-death-do-you-shart","changefreq":"weekly","video":[{"title":"S1:E154 - SideScrollers - 'Til Death Do You Shart","description":"THIS TIME ON SIDESCROLLERS!\r\n\tOver the past weekend, the guys went all over the country and have the stories to prove it! Plus, Craig wants to know what the big deal is about swatting, Chad's got a beta he's looking forward to,  Sam's marred matrimonial Newsdesk, and you showed us your best ugly faces!\r\nTake SideScrollers on the go!\r\n\thttps://soundcloud.com/screwattack/til-death-do-you-shart\r\n\t\r\n\tSend Newsdesk submissions to Sam!\r\n\tSam@ScrewAttack.com\r\n\t\r\n\tSend Birthday Pics to Bryan!\r\n\tBryan@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-til-death-do-you-shart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d4a8a05-bbaf-4bc0-9251-be2a1d1c2dea/sm/video_thumbnail_12847983_1.png","duration":3867,"publication_date":"2014-09-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pewdiepie-closes-comments-oculus-teams-with-samsung-free-psp-games-in-japan-hard-news-932014","changefreq":"weekly","video":[{"title":"S1:E715 - PewDiePie closes comments, Oculus teams with Samsung, FREE PSP games in Japan | Hard News 9/3/2014","description":"I’m Sean Hinz and this is Hard News for Hump Day, September 3rd 2014.\r\nAs more and more people prepare for the virtual reality revolution, Oculus is further ensuring it will be at the forefront of technology. In a business savvy move, the company has entered into a partnership with Samsung to develop a product called Gear VR, using Oculus technology. In exchange, Oculus will get premium access to the Samsung screens used in the DK2 and future iterations of the Rift. Rift developer John Carmack is “thrilled to reveal the Gear VR Innovator Edition, a state-of-the-art mobile VR experience powered by Oculus\". The device is basically compatible with the upcoming Samsung Galaxy Note 4 and it will have users literally snapping their phones into the device. Oculus has also shown off technology that hints at future UI in VR products and devs will be able to start tinkering with the smartphone based Gear VR before the end of the year. So that’s three VR headsets in our future, with a rumored fourth from Microsoft. That means we’re only waiting on iOS and Ninten… hahaha, just iOS…\r\nIn other news, Sony Japan blew hearts and minds by unleashing a flurry of PSP games on PlayStation Plus subscribers. For those fortunate enough to own PlayStation Vita, there are now 250 free PSP games available for download, IF you live in Japan. This was announced at a Sony briefing and as of now, it isn’t expected to come to the West. There were also no details on which of the 374 games would be marked for free, but there are 250 free games waiting. The promotion will be available for the next two weeks and you can totally sign up for a Japanese account. I’d take advantage of this promo, but my 32 GB card is close to bursting and you fuckers still haven’t released something like a 128 GB stick yet. How you gonna do this Sony? I always tell people what a pearl the Vita is, but now I’m going to harbor some resentment since you dropped this bomb on me. I know what I said…\r\nAnd finally, I am going to talk about everyone’s favorite YouTube persona","player_loc":"https://roosterteeth.com/embed/pewdiepie-closes-comments-oculus-teams-with-samsung-free-psp-games-in-japan-hard-news-932014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c50907d-e23a-48aa-b417-03ce4bf43236/sm/video_thumbnail_12848040.jpg","duration":226,"publication_date":"2014-09-03T13:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pre-order-an-amiibo-new-new-3ds-and-nintendo-europe-layoffs-hard-news-922014","changefreq":"weekly","video":[{"title":"S1:E714 - Pre-order an amiibo, New New 3DS, and Nintendo Europe layoffs | Hard News - 9/2/2014","description":"I’m Sean Hinz and this is Hard News for Tuesday, September 2nd 2014.\r\nAfter a crazy weekend at PAX Prime I’m playing catch up and Nintendo manage to garner the most attention with its announcements surrounding a couple of pieces of hardware. First came the official pricing and opening pre-orders for Nintendo’s amiibo figures. These NFC powered statues will release this holiday season for $13 each and are compatible with the Wii U version of Smash Bros. MMmmm… the packaging is sexy! And the fun won’t stop there, the dozen characters receiving the amiibo treatment will become compatible with even more titles like Mario Kart 8, Yoshi’s Woolly World, and Mario Party 10. More updates to functionality and new titles will be coming closer to the undisclosed launch date, including the teased reveal of a base station for the 3DS in 2015. LAME! Who wants a clumsy accessory for their portable device, why don’t you just make a new… There’s a NEW 3DS!\r\nHysterically named the “NEW” Nintendo 3DS, it was announced for fall release in Japan and comes in both standard and XL models. It has a larger screen, improved CPU, amiibo compatibility, stronger battery life annnddd a second analog stick?! Well actually it’s more of a nub modeled after the Gamecube’s C-stick, but let’s face it, it’s an IBM ThinkPad’s clitoris. Other bonuses include the addition of two more shoulder buttons, color-coded face buttons and improved 3D functionality so the viewing angle is better. These handhelds are releasing October 11th for 16,000 and 18,800 yen respectively, with no Western release planned for 2014. *Sad Panda* SO, expect them in the new year Nintendo fans and don’t forget there will be a Monster Hunter 4 limited edition if you can hold out long enough. As time goes on, I’m beginning to wonder how Nintendo can afford all these hardware revisions and special editions.\r\nIn completely unrelated news, Nintendo of Europe laid off about 320 of its employees just yesterday. The Big N has been struggling overseas, releasing 130 internal employees, al","player_loc":"https://roosterteeth.com/embed/pre-order-an-amiibo-new-new-3ds-and-nintendo-europe-layoffs-hard-news-922014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2f9b5d8-eeaa-40d3-bcdc-251dd32c1e8f/sm/video_thumbnail_12847995.jpg","duration":199,"publication_date":"2014-09-02T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-doom","changefreq":"weekly","video":[{"title":"S1:E8 - Five Fun Facts - Doom","description":"Thought you knew everything about Doom?? Maybe not. ","player_loc":"https://roosterteeth.com/embed/five-fun-facts-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ba1788c-b631-4d37-8f1e-280e2677e98a/sm/video_thumbnail_12847946.jpg","duration":217,"publication_date":"2014-09-01T13:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-we-think-we-know-about-evolve","changefreq":"weekly","video":[{"title":"S1:E792 - What we THINK we know about EVOLVE","description":"2K had us out to their offices to check out the newest game from Turtle Rock Studios. Get ready for the evolution of multiplayer with Evolve.\r\n\r\n\t \r\n\r\n\tGet more details on the game from http://evolvegame.com/","player_loc":"https://roosterteeth.com/embed/what-we-think-we-know-about-evolve","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b182c5a-0ee5-454b-a020-da407be400d2/sm/video_thumbnail_12847700_0.png","duration":417,"publication_date":"2014-08-29T08:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/capcom-sues-koei-tecmo-mario-kart-8-dlc-is-awesome-and-dragon-age-gets-multiplayer-hard-news-08272014","changefreq":"weekly","video":[{"title":"S1:E713 - Capcom sues Koei Tecmo, Mario Kart 8 DLC is awesome, and Dragon Age gets Multiplayer | Hard News 08/27/2014","description":"Today on Hard News, Capcom sues Koei Tecmo, Mario Kart 8 DLC is awesome, and Dragon Age gets Multiplayer.\r\nhttp://uk.ign.com/articles/2014/08/26/dragon-age-inquisitions-co-op-multiplayer-is-all-about-loot\r\nhttp://www.polygon.com/2014/8/26/6069629/capcom-files-suit-against-koei-tecmo-for-patent-infringement\r\nhttp://press.nintendo.com/articles.jsp?id=41925","player_loc":"https://roosterteeth.com/embed/capcom-sues-koei-tecmo-mario-kart-8-dlc-is-awesome-and-dragon-age-gets-multiplayer-hard-news-08272014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65014a1d-05a9-4f8b-8bec-fb58a6571d41/sm/video_thumbnail_12847573.jpg","duration":210,"publication_date":"2014-08-27T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-of-sgc-2014-with-craig","changefreq":"weekly","video":[{"title":"S1:E791 - Behind the Scenes of SGC 2014 with Craig","description":"Learn a little bit more about Craig, ScrewAttack and everything that goes into it that makes it so great.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-of-sgc-2014-with-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3efff770-7442-49bf-8125-4fc425bdfe78/sm/video_thumbnail_12847477.png","duration":358,"publication_date":"2014-08-27T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-082714","changefreq":"weekly","video":[{"title":"S1:E790 - SideScrollers Extended Cut - 08/27/14","description":"Wait, that's not Chad, Craig or Sam....","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-082714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d18acb9-5cce-4794-9c39-5b3464d58cf5/sm/video_thumbnail_12847562.jpg","duration":584,"publication_date":"2014-08-27T09:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/\"the-amazing-pax-d*ck-kick\"-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E153 - \"The Amazing PAX D*ck Kick\" - SideScrollers ","description":"We know why Scottish trains don't run on time, why we may have to go back to Tokyo, and we have big PAX plans to reveal this week on SideScrollers!","player_loc":"https://roosterteeth.com/embed/\"the-amazing-pax-d*ck-kick\"-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8ee5850-a3d9-4ee3-aa16-5a670a449db3/sm/video_thumbnail_12847535.jpg","duration":3344,"publication_date":"2014-08-26T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-the-amazing-pax-dick-kick","changefreq":"weekly","video":[{"title":"S1:E152 - SideScrollers - The Amazing PAX Dick Kick","description":"We know why Scottish trains don't run on time, why we may have to go back to Tokyo, and we have big PAX plans to reveal this week on SideScrollers!","player_loc":"https://roosterteeth.com/embed/sidescrollers-the-amazing-pax-dick-kick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d81a42a-ebac-4523-af65-8b3cd25181b1/sm/video_thumbnail_12847492.png","duration":3344,"publication_date":"2014-08-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazon-buys-twitch-pokemon-fighting-game-and-smash-3ds-leaks-hard-news-08262014","changefreq":"weekly","video":[{"title":"S1:E712 - Amazon buys Twitch, Pokemon Fighting Game, and Smash 3DS Leaks | Hard News 08/26/2014","description":"Smash 3DS Leaks - http://www.giantbomb.com/articles/you-appear-to-be-leaking-super-smash-bros/1100-4999/\r\n\r\n\thttp://www.neogaf.com/forum/showthread.php?t=881810\r\n\r\n\t \r\n\r\n\tPokemon Fighting Game - https://www.youtube.com/channel/UCFctpiB_Hnlk3ejWfHqSm6Q\r\n\r\n\t \r\n\r\n\tAmazon buys Twitch - http://www.polygon.com/2014/8/25/6067061/amazon-confirms-acquisition-of-twitch-for-970-million\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/amazon-buys-twitch-pokemon-fighting-game-and-smash-3ds-leaks-hard-news-08262014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3668c599-4dcc-407a-92de-7056211d81dc/sm/video_thumbnail_12847504.jpg","duration":213,"publication_date":"2014-08-26T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/watch-the-screwattack-crew-destroy-the-pokemon-theme-song-advantage-content","changefreq":"weekly","video":[{"title":"S1:E789 - Watch the ScrewAttack Crew destroy the Pokemon theme song | Advantage Content","description":"Can't see this video? No worries! You can try out Advantage for FREE for 30 days, just by going HERE!  It's the best way to support ScrewAttack!","player_loc":"https://roosterteeth.com/embed/watch-the-screwattack-crew-destroy-the-pokemon-theme-song-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c81f9c66-11df-4da7-a69f-0ab110cf52c5/sm/video_thumbnail_12847163.jpg","duration":63,"publication_date":"2014-08-23T09:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advanced-warfare-not-on-wii-u-4a-games-escapes-to-malta-and-firaxicon-hard-news-082214","changefreq":"weekly","video":[{"title":"S1:E711 - Advanced Warfare NOT on Wii U, 4A Games Escapes to Malta, and FIRAXICON | Hard News 08/22/14","description":"Today on Hard News, Advanced Warfare NOT on Wii U, 4A Games Escapes to Malta, and FIRAXICON.\r\n\t\r\n\tAdvanced Warfare NOT on Wii U - http://www.polygon.com/2014/8/20/6050921/call-of-duty-advanced-warfare-wii-u \r\n\t4A Games Escapes to Malta - http://www.polygon.com/2014/8/20/6048533/ukraines-4a-games-lands-in-malta-we-are-not-betrayers\r\n\tFIRAXICON - http://www.ign.com/articles/2014/08/21/firaxis-games-announces-first-ever-firaxicon\r\n\tBorderlands 2 Free To Play this Weekend! - http://www.destructoid.com/play-borderlands-2-for-free-on-steam-this-weekend-279978.phtml\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/advanced-warfare-not-on-wii-u-4a-games-escapes-to-malta-and-firaxicon-hard-news-082214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc9b51a0-ff92-4bf9-baae-831910a78ea4/sm/video_thumbnail_12847153.jpg","duration":235,"publication_date":"2014-08-22T13:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/parker-and-john-accept-craigs-alsicebucketchallenge","changefreq":"weekly","video":[{"title":"S1:E788 - Parker and John Accept Craig's #ALSIceBucketChallenge","description":"... and it's BRUTAL.","player_loc":"https://roosterteeth.com/embed/parker-and-john-accept-craigs-alsicebucketchallenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd2b359a-591e-43a2-bf1b-92332af6d43b/sm/video_thumbnail_12847145.jpg","duration":228,"publication_date":"2014-08-22T11:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-accepts-the-alsicebucketchallenge","changefreq":"weekly","video":[{"title":"S1:E787 - Craig Accepts the #ALSIceBucketChallenge","description":"Challenge Accepted. Craig challenges Fullscreen CEO George Strompolos, Geoff Keighley, Mega64 and Parker.","player_loc":"https://roosterteeth.com/embed/craig-accepts-the-alsicebucketchallenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13509332-010f-4842-896c-545c1c3fa820/sm/video_thumbnail_12847023.jpg","duration":102,"publication_date":"2014-08-20T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fish-play-street-fighter-new-resident-evil-leaked-new-digital-card-game-hard-news-082014","changefreq":"weekly","video":[{"title":"S1:E710 - Fish Play Street Fighter, NEW Resident Evil leaked, New Digital Card Game | Hard News 08/20/14","description":"Today on Hard News, Fish Play Street Fighter, NEW Resident Evil leaked, New Digital Card Game.\r\n\t\r\n\tFish Play Street Fighter - http://www.twitch.tv/fishplaystreetfighter \r\n\tNew Digital Card Game, Sienna Storm - http://www.eurogamer.net/articles/2014-08-20-deus-ex-writer-returns-with-thriller-meets-card-game-sienna-storm \r\n\tNEW Resident Evil leaked - http://www.ign.com/articles/2014/08/19/resident-evil-revelations-2-leaked \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/fish-play-street-fighter-new-resident-evil-leaked-new-digital-card-game-hard-news-082014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98a6f2f6-341f-4200-8e6a-dac1b26fde17/sm/video_thumbnail_12847001.jpg","duration":183,"publication_date":"2014-08-20T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-7-days-day-5","changefreq":"weekly","video":[{"title":"2016:E148 - 7 Days of 7 Days to Die - Fifth Day ","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEESThe Achievement Hunters aren't too worried about the impending zombie horde coming their way. They're more focused on not running into cacti. In today's episode: Ryan attempts to make it home, Jeremy goes to the lake, Michael and Gavin find a tower, and Jack keeps working on that bunker.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-7-days-day-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db6c0e4c-cd7a-48ce-b1f3-6beff9ac66cc/sm/2013912-1481732845749-AH_7Days_Day5_THUMB1.png","duration":2660,"publication_date":"2016-12-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-238-fishing-rodeo-and-jamboree-v","changefreq":"weekly","video":[{"title":"2016:E423 - Minecraft – Episode 238 – Fishing Rodeo and Jamboree V","description":"It's time for the annual Achievement Hunter Minecraft tradition. The boys are grabbing their fishing poles and heading out to the Lake of Pimps - at least a week late, of course. We're so far into December this time that the lake has frozen over. Now Geoff, Jack, Ryan, Michael, Jeremy, and Gavin are facing the icy waters in order to catch as many frozen fishies as possible. There's fishing. There's a rodeo. Lots of jamboree. Must be the Achievement Hunter Fishing Rodeo and Jamboree!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-238-fishing-rodeo-and-jamboree-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6bec0d0-cfc5-4672-a119-01135e68a30b/sm/2013912-1481735548073-fishingjam_1.jpg","duration":2652,"publication_date":"2016-12-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-7-days-day-4","changefreq":"weekly","video":[{"title":"2016:E149 - 7 Days of 7 Days to Die - Fourth Day ","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEESThe adventuring Achievement Hunters find themselves alive and on a roof. It's getting off the roof that will prove to be the tricky part. In today's episode: Jack teaches Geoff how to build a bunker, while Ryan, Jeremy, Michael, and Gavin try to survive Achievement Station.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-7-days-day-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/110c1b0b-9aed-4e5a-937f-0f638428b831/sm/2013912-1481658954722-AH_7Days_Day4_THUMB1.png","duration":3518,"publication_date":"2016-12-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-call-of-duty-infinite-warfare-zombies","changefreq":"weekly","video":[{"title":"2016:E418 - Call of Duty: Infinite Warfare - Zombies","description":"Geoff, Ryan, Jack, and Jeremy finally get to sit down for a good old match of Zombies in Call of Duty: Infinite Warfare. How many rounds will they survive? 1? 5? 10?! I guess it depends on just how much alcohol is in their system...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-call-of-duty-infinite-warfare-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33d01587-e024-424d-b8b1-16cedf28e19d/sm/2013912-1481316693641-COD_IW_THUMB.png","duration":3619,"publication_date":"2016-12-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trivial-pursuit-part-9","changefreq":"weekly","video":[{"title":"2016:E422 - Trivial Pursuit Part 9","description":"These doofs getting loose with the trivial pursuits,they don't wanna lose, winners trippin with their proofs.Got Trey Dawg, the Jackster, J Doolz and the Brit.Only one can be a winner, make the others wanna quit!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trivial-pursuit-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce242da7-c5a3-4983-9090-839a3ddf461a/sm/2013912-1481650713662-Thumb3.jpg","duration":1896,"publication_date":"2016-12-13T17:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-7-days-of-7-days-to-die-third-day","changefreq":"weekly","video":[{"title":"2016:E150 - 7 Days of 7 Days to Die - Third Day ","description":"Get your own Nug Club T-Shirt here: http://bit.ly/2gxsEES || A group of Achievement Hunters split off and travel to find water, adventures, glory, and of course - lots of zombies. Have they bitten off more than they can chew? In today's episode: Ryan, Michael, Gavin and Jeremy travel to the Achievement Station, Jack works on the bunker, and Geoff joins the game. ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-7-days-of-7-days-to-die-third-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d20f4eee-136d-4bb3-8662-a4adfd51bcdb/sm/2013912-1481580904126-AH_7Days_Day3_THUMB.png","duration":4092,"publication_date":"2016-12-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-breakin-stools-ahwu-for-december-12-th-2016-347","changefreq":"weekly","video":[{"title":"2016:E347 - Breakin' Stools - AHWU for December 12th, 2016 (347)","description":"America's favorite Brit, Gavin Free, has 80 fluid ounces of cleany cleany squirt juice. Only problem is - the goopy squirter is super broken. How is Gavin supposed to clean his hands? Maybe with the power of a bat. Or a golf club...","player_loc":"https://roosterteeth.com/embed/ahwu-2016-breakin-stools-ahwu-for-december-12-th-2016-347","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f8a2e40-7fd9-4dc2-92d7-27da139196a8/sm/2013912-1481586366173-AHWU1.jpg","duration":898,"publication_date":"2016-12-12T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-7-days-part-2","changefreq":"weekly","video":[{"title":"2016:E146 - 7 Days of 7 Days to Die - Second Day ","description":"Get ready for lots of zombies on Day 2! Zombies from the left, and zombies from - wait, the roof? The Achievement lads and gents are enjoying their lovely desert home with a fully stocked fridge, but something's missing. Like maybe some water? \n\nIn today's episode: Gavin, Michael, and Jeremy go couch shopping, Jack builds a forge, and Ryan tries to keep everyone alive.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-7-days-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c354a2fa-e0a3-43ca-a56e-a68d4404c162/sm/2013912-1481153388794-AH_7Days_Day2_THUMB2.png","duration":3536,"publication_date":"2016-12-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-vr-surgeon-simulator-e-r-experience-reality","changefreq":"weekly","video":[{"title":"2016:E417 - VR Surgeon Simulator ER: Experience Reality","description":"Paging Dr. Jones and Dr. Free to the OR. Paging Dr. Jones and Dr. Free to the OR. Get in here. Like...in here in here. Strap on those virtual reality goggles and be within the OR. This dude's dying. His heart is getting ready to explode! Transplant it now! Save him you fucks!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-vr-surgeon-simulator-e-r-experience-reality","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/519cdf5f-e81e-420e-b0a9-97d05f503f58/sm/2013912-1481314955492-Surgeon_Sim_thumb.jpg","duration":1814,"publication_date":"2016-12-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-27-ha74af","changefreq":"weekly","video":[{"title":"2016:E23 - Last Call #27","description":"The AH Crew stand up to talk about AH vs Funhaus in Overwatch, bowling, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-27-ha74af","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ca49367-6afb-402f-943f-393647c7d491/sm/2013912-1481327052383-OFF54_-_PS_-_THUMB.jpg","duration":1021,"publication_date":"2016-12-11T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-7-days-part-1","changefreq":"weekly","video":[{"title":"2016:E145 - 7 Days of 7 Days to Die - First Day ","description":"It's 7 Days To Die, but wait! This is different than all those other 7 Days To Die videos. We're rolling out 7 consecutive days of episodes in the zombie wasteland. And yes, it's on the PC! What could be better, you ask? Well, the zombie spawn is on high, and our Achievement Hunters actually know what they're doing - sort of. \n\nIn today's episode: Jack teaches Gavin the basics, Jeremy and Michael fight their first horde, and Ryan has his survival skills challenged.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-7-days-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6a1f7ac-54a6-4b1e-89af-ec5c1ed1b518/sm/2013912-1481153274950-AH_7Days_Day1_THUMB8.png","duration":3412,"publication_date":"2016-12-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-sky-bike","changefreq":"weekly","video":[{"title":"2016:E421 - GTA V - Sky Bike","description":"Ryan saw a neat GIF on the GTA V subreddit, so now Achievement Hunter has to spend their whole morning trying to recreate it. To the airport!\n\nCredit to the original video: https://gfycat.com/OrdinaryAccomplishedFlatcoatretriever","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-sky-bike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1ad5ff9-9294-45c2-b755-1688eabddd66/sm/2013912-1481321176216-SkyBike.jpg","duration":3350,"publication_date":"2016-12-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-54-ha75aa","changefreq":"weekly","video":[{"title":"2016:E54 - How Much Money? - #54","description":"The AH Crew sit down to talk about the crappiest deal ever, VR games, recent Immersions, and more on this week's Off Topic!\n\nThis episode originally aired December 9, 2016 and is sponsored by MVMT Watches (http://bit.ly/2gj6SVx) and Shari’s Berries (http://bit.ly/2gjcsXO)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-54-ha75aa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c5a919c-6dab-4ba8-909a-7e1b04e0bb8b/sm/2013912-1481343230068-OFF54_-_THUMB.jpg","duration":7635,"publication_date":"2016-12-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-24-attack-of-the-killer-tomatoes","changefreq":"weekly","video":[{"title":"2016:E24 - Episode #24: Attack of the Killer Tomatoes","description":"Man-eating tomatoes terrorizing your town? Never fear, Female Willem Dafoe is on the case! Join the AH crew for the sort-of-not-so-season-finale of Theater Mode, as they watch the classic Attack of the Killer Tomatoes!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-24-attack-of-the-killer-tomatoes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9469d20d-ecd8-4c79-b558-11940ca65b8b/sm/2013912-1481301483159-TM_-_Killer_Tomatoes_-_THUMB.jpg","duration":4954,"publication_date":"2016-12-09T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-26","changefreq":"weekly","video":[{"title":"2016:E147 - VR the Champions - Drunkn Bar Fight","description":"In this week's episode of VR the Champions, it's time for the guys to get their inner drunk on (which should be pretty easy for Achievement Hunter). Ryan, Gavin, and Michael play Drunkn Bar Fight and learn that sometimes the key to fighting success is just tons of alcohol.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71545b9f-f3be-46a1-8db1-6405172c7641/sm/2013912-1481144793531-barfight.jpg","duration":1532,"publication_date":"2016-12-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch-funhaus","changefreq":"weekly","video":[{"title":"2016:E417 - Overwatch: Achievement Hunter VS Funhaus","description":"Finally, the event you've all been waiting for. AH vs FH. No holds bar, no limits on hero selection. With Jon Risinger and Millie Ramsey along to guide them, can Achievement Hunter best Funhaus at a game they play a fuckton more often? Find out. Watch. Don't guess ahead of time, just see for yourself. Click \"like\" before you start it, even, because it will probably be good enough to deserve it. Hoo boy.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c57e97b0-67ae-4db5-9c63-a39f8373c658/sm/2013912-1481222702557-Overwatch.jpg","duration":2693,"publication_date":"2016-12-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-96","changefreq":"weekly","video":[{"title":"2016:E416 - Let's Watch - The Last Guardian","description":"The Last Guardian is finally out and Achievement Hunter takes a dive into the puzzle-centric gameplay to see what the game has to offer! So far there's a large bird dog and a very clumsy boy who's greatest enemy is a short flight of stairs.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dddad89-9ad4-4d87-8287-a1498086e7e3/sm/2013912-1481239322992-Last_Guardian_Thumb.jpg","duration":2942,"publication_date":"2016-12-08T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-237-journey-to-the-south-west","changefreq":"weekly","video":[{"title":"2016:E416 - Minecraft - Episode 237 - Journey to the (South)West","description":"The Achievement Hunter boys (and a whole parade of llamas) are ready to keep exploring through Minecraft's appropriately-named Exploration Update. They're got a Woodland Mansion to find and a little llama bukkake to perform.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-237-journey-to-the-south-west","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f89bd795-ec67-4af8-8777-1d8473137cbb/sm/2013912-1481214845022-minecraft1.jpg","duration":3031,"publication_date":"2016-12-08T16:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-season-1-2","changefreq":"weekly","video":[{"title":"2016:E414 - Trivial Pursuit","description":"What's more exciting than action-horror games? Trivia! We return to the classic board game turned video game with Trivial Pursuit.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa5f0ca5-cabf-447f-a39b-e18565b02224/sm/2013912-1481045020906-Solo_Thumbnail_Template.jpg","duration":3184,"publication_date":"2016-12-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-party-8-koopa-s-tycoon-town-part-1","changefreq":"weekly","video":[{"title":"2016:E415 - Mario Party 8: Koopa's Tycoon Town Part 1","description":"Who doesn't like a good game of Mario Party 8? Plebs, that's who. Join Ryan, Gavin, Michael and Jeremy on this friendly adventure down to Koopa's Tycoon Town! Just a quick game of 20 turns, right?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-party-8-koopa-s-tycoon-town-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5266e98-6ca4-44f2-bd06-06b79073aa85/sm/2013912-1481065052611-mario1.jpg","duration":3549,"publication_date":"2016-12-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-147-matt-vs-gavin","changefreq":"weekly","video":[{"title":"2016:E147 - Episode 147: Matt VS Gavin","description":"It's been a year since Matt made his debut to the VS series in Dragon Ball Xenoverse, and now that he's back challenging his old foe Gavin it might be time to take to the skies again in Xenoverse 2! Let's get ready to BUTTON MAAAAASH!","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-147-matt-vs-gavin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23f4f576-ce2a-42f8-b5b8-68ca31a206d9/sm/2013912-1480971036078-Matt_vs_Gavin_Thumb.jpg","duration":504,"publication_date":"2016-12-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-genital-jousting-slippy-sloppy-seconds","changefreq":"weekly","video":[{"title":"2016:E412 - Genital Jousting: Slippy, Sloppy Seconds","description":"I was asked to write a dickscription for this cock of a Let's Play, so here we fuckin' go. You want quality and sophistication? Well fuck you right in the penis hole. This is Genital Motherfucking Cockfucking Mother Dick Suckfucking Jousting up here in this penis. We played it once. Those cocks got lubed up and wet and slippery and we jizzed hard and fast and all over the place. And now that we've had a chance to let our hard-on throb cocks recharge, we're ready to get penis blasting once again. Oh, sorry. Was that description too penisy for you? Well fuck that. You're literally watching a video of dicks going up butts. This is what you asked for by clicking on this dick slapping, ball-busting, jizz-gravy spewing video. This is what you fucking get.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-genital-jousting-slippy-sloppy-seconds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a008b612-b7bf-4f9b-a15f-75a07a38ad7f/sm/2013912-1480959086793-Genital_Jousting_2_Thumb.jpg","duration":1331,"publication_date":"2016-12-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overcooked-part-4","changefreq":"weekly","video":[{"title":"2016:E413 - Overcooked - Part 4","description":"What's shorter than Jeremy? A raccoon with no legs. The AH kitchen crew return to their favorite cooking game for Part 4 of the Overcooked series.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overcooked-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a96b94e0-7514-4b80-9ecc-113558d86f67/sm/2013912-1480976964397-Thumb04.jpg","duration":3275,"publication_date":"2016-12-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-four-hats-and-forelay-ahwu-for-december-5-th-2016-346","changefreq":"weekly","video":[{"title":"2016:E52 - Four Hats and Foreplay - AHWU for December 5th, 2016 (346)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU || \n\n\n\n\n\n\n\n\n\n\n\nAsk the Editor, #AHEditorsKent's Post: http://achievementhunter.roosterteeth.com/post/51286167Larry's Post: http://achievementhunter.roosterteeth.com/post/51287358\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGeoff knew it was AHWU day, so he decided to play hooky. Jack legitimately was sick, with his runny nose running every which way. Gavin had to have an emergency slomogectomy. Jeremy was tongue tied after laying down some fresh new rhyme beats. Ryan has been forbidden from AHWU for a millennia. And Michael...Michael just didn't care.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThat means it's time for AHWU to be AHWU'd by your absolute favorite Achievement Hunters: Matt, Trevor, Andy, Shifty Larry, Kent, Steffie, Ashley, and Neal. They're gonna be slapping, sucking, stomping, newsing, taping, and shooting their way into your hearts all day long. All night long. All week long. All year long. And forever. It's AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-four-hats-and-forelay-ahwu-for-december-5-th-2016-346","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c54840af-f677-404e-a745-cb13ab90aae2/sm/2013912-1480979253083-ahwu_thumb.jpg","duration":817,"publication_date":"2016-12-05T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-95","changefreq":"weekly","video":[{"title":"2016:E411 - Let's Watch - Gal*Gun: Double Peace","description":"The pheromones are flowing and they have Ryan's doki doki dick all hot and bothered. Watch Jeremy, Michael, and Jack watch Ryan watch as a spew of Japanese anime girlies clamor for that HayWOOD. Ha ha! Penis jokes.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca96f49c-9443-4b24-834c-2d4c4eda7c28/sm/2013912-1480699583702-GalGunThumb_v003.png","duration":2448,"publication_date":"2016-12-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-26-jia8aja","changefreq":"weekly","video":[{"title":"2016:E22 - Last Call #26","description":"The AH Crew stand up to play Left Center Right and bet on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-26-jia8aja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08059652-87d8-45a8-84ae-525914467f61/sm/2013912-1480718661442-OFF53_-_PS_-_THUMB.jpg","duration":875,"publication_date":"2016-12-04T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-throwback-hunt-trials-fusion-fire-walk-with-me","changefreq":"weekly","video":[{"title":"2016:E144 - Throwback: HUNT - Trials Fusion - Fire Walk With Me","description":"Join Jack and Gavin as they take a step back in time in this special Throwback episode of HUNT. Only one of them can walk away with today's glorious prize - the \"Fire, Walk with Me\" achievement in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-throwback-hunt-trials-fusion-fire-walk-with-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0d88d2d-67f3-4498-b1bf-8629a79e6c81/sm/2013912-1480697771706-Throwback_to_Hunt_-_Fire_Walk.png","duration":577,"publication_date":"2016-12-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta","changefreq":"weekly","video":[{"title":"2016:E410 - GTA V - Non-Stop Bike","description":"The Achievement Hunter boys are ready to have the most intense race they've ever raced in their lives. Geoff, Jack, Ryan, Gavin, Michael, and Jeremy all want to be the first to go from the very bottom of San Andreas up to the Nipple of the North. The catch - they can't ever slow down.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6efa983-8f4b-4041-9ac8-fb75af2dc3ed/sm/2013912-1480698239820-GTA_NonStopBike_B_ColorContrast_Reddish.jpg","duration":3353,"publication_date":"2016-12-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-53-a9ahab","changefreq":"weekly","video":[{"title":"2016:E53 - Pregnancy Is Bullsh*t - #53","description":"The AH Crew sit down to talk about pregnancy, couple fights, cheeses, and more on this week's Off Topic!\n\nThis episode originally aired December 2, 2016 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and MVMT Watches (http://bit.ly/2ghIaFP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-53-a9ahab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77be6e83-6811-4579-b373-5e550ba6e016/sm/2013912-1480718719039-OFF53_-_THUMB.jpg","duration":6846,"publication_date":"2016-12-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-23-fertilize-the-blaspheming-bombshell","changefreq":"weekly","video":[{"title":"2016:E23 - Episode #23: Fertilize The Blaspheming Bombshell","description":"Take a trip with the AH Crew to the poorly lit town of Ellivnatas, as they uncover the mystery of the cult of Kinda Funny...or Satan.  ","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-23-fertilize-the-blaspheming-bombshell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d283cd53-4be9-4d3e-abe1-ed43ae30c5a8/sm/2013912-1480699989395-TM_-_Fertailze_-_THUMB.jpg","duration":5476,"publication_date":"2016-12-02T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-25","changefreq":"weekly","video":[{"title":"2016:E143 - VR The Champions - Black Hat Cooperative","description":"This week in VR the Champions: Ryan, Jeremy and Gavin get to put on \"Secret Agent Caps\" and experience Black Hat Cooperative. I mean, what could go wrong? It's not like the guys have a hard time listening to each other or following directions or anything. They got this!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bea7e2e8-6fe2-4ffd-8c4a-37c0a75e097f/sm/2013912-1480544844127-VR_BlackHat.png","duration":1530,"publication_date":"2016-12-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-steep","changefreq":"weekly","video":[{"title":"2016:E407 - Steep","description":"Thanks to Ubisoft for sponsoring this video. To check out the game yourself click here: http://ubi.li/psxne. Jack, Jeremy, Ryan and Michael test out their extreme sports skills in the open world of Steep. Watch as they get massive air as well as massive brain injuries.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-steep","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a744e25-65ae-48d4-8da1-3ee9c152f8e9/sm/2013912-1480544471829-LP_Steep_THUMB1.png","duration":1727,"publication_date":"2016-12-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-super-smash-bros-with-game-attack","changefreq":"weekly","video":[{"title":"2016:E409 - Super Smash Bros. with Game Attack","description":"Game Attack challenged Jack and Ryan to the classic Nintendo 64 Super Smash Bros. game, but Jack brought backup in the form of Matt Bragg. Let's see who are the platforming kings, now!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-super-smash-bros-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acd179ee-04b1-416c-9c24-69e8a29f8fda/sm/2013912-1480626695612-z_GA_Thumbnail_Base.jpg","duration":1266,"publication_date":"2016-12-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-236-voyage-of-the-dumb-treaders","changefreq":"weekly","video":[{"title":"2016:E408 - Minecraft - Episode 236 - Voyage of the Dumb Treaders","description":"Did you know there's mansions in Minecraft? We didn't, but there totally are! Join Geoff, Jack, Ryan, Gavin, Michael, and Jeremy on a journey across land and sea. Somewhere deep within the spooky forest is a dope-ass mansion. Maybe it's even Notch mansion. We won't know until we get there.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-236-voyage-of-the-dumb-treaders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/052f129a-1cf4-43d5-9126-40d39e243da6/sm/2013912-1480610313269-MC_236_Thumb.jpg","duration":3924,"publication_date":"2016-12-01T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-92","changefreq":"weekly","video":[{"title":"2016:E399 - Let's Watch - Batman: Return to Arkham","description":"Get admitted back into Arkham Asylum as Jeremy, Jack and Matt put back on the cape and cowl for this current gen upgrade. Batman may work alone but that doesn't mean he can't use the occasional help from our lovable goofs to help stop the Joker and his evil doers.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/350d764c-50aa-499c-9d86-d32838cc6a52/sm/2013912-1480539531860-LW_BatmanArkhamAsylum.png","duration":1556,"publication_date":"2016-12-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-season-1","changefreq":"weekly","video":[{"title":"2016:E406 - The Hidden","description":"Welcome back to RouLet's Play, the show that totally had that sweet name the last time you watched it and we totally thought of it ourselves and no way no how did we snag it from the community. That - well, that would just be crazy. Jack, Geoff, Ryan, Jeremy, Gavin, and Trevor are ready to become invisible spooky spookmonsters and stab the f' out of the non-monsters. Well, as long as they don't get shot to death first. It's The Hidden.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba52ef59-d525-454d-87c3-7631856f7510/sm/2013912-1480524378295-hidden2.jpg","duration":2535,"publication_date":"2016-11-30T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-uno-the-movie","changefreq":"weekly","video":[{"title":"2016:E405 - Uno: The Movie","description":"Oh boy. Here it is. The biggest penis of a Let's Play we've ever done. Get your big boy dicks ready for the hottest five-man four-way involving the most Spanish-speaking cards you've seen this side of the internet. Grab some popcorn and get ready. This isn't just some lame-ass 90-minute affair. We've gone full Tarantino all over this muthafucka. It’s Uno: The Movie!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-uno-the-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/444763d7-44c0-433e-8c8c-a35887d3cdd7/sm/2013912-1480460640800-uno1.jpg","duration":9834,"publication_date":"2016-11-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-dishonored-2-the-half-man","changefreq":"weekly","video":[{"title":"2016:E61 - Dishonored 2 - The Half Man","description":"Training in Dishonored 2 can be a hassle. You have to always remember to use a dull blade, and honestly who wants that? So naturally you use your sharpened one because dull blades are for losers. Occassionally that can lead to accidents though. Accidents that involve your training partner suddenly finding themselves missing some or all of his/her lower body. What do you do in these situations you might ask? Surely your friend doesn't deserve to live like Tyrion Lannister just because they wanted to keep you combat ready! Fret not! Matt and Ryan can help your training partner live a full life, just at half the size.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-dishonored-2-the-half-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c026cad5-011c-44f3-9f06-c560f7a484e6/sm/2013912-1480375768232-TTD_DishonoredHalfMan.png","duration":187,"publication_date":"2016-11-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-ultimate-chicken-horse","changefreq":"weekly","video":[{"title":"2016:E404 - Ultimate Chicken Horse","description":"Ol' McDonald had a farm, and on that farm he had a Rabid King, a Short lil' Sheep, a Big-Nosed Bird, and Michael the Fucking Horse. Achievement Hunter is playing Ultimate Chicken Horse!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-ultimate-chicken-horse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb753695-202b-4d9b-87ba-631df3a3eec2/sm/2013912-1480375141583-Thumb7.jpg","duration":2134,"publication_date":"2016-11-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-cyber-me-monday-ahwu-for-november-28-th-2016-345","changefreq":"weekly","video":[{"title":"2016:E345 - Cyber Me Monday! - AHWU for November 28th, 2016 (#345)","description":"It's the week after Thanksgiving and everyone's still tucked in bed nursing their food comas. Who's ready for some cybering Monday and buying all that sweet, sweet tech at slightly lower prices?!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-cyber-me-monday-ahwu-for-november-28-th-2016-345","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d7a531e-be04-4c53-9a32-abc065aa54b9/sm/2013912-1480367192788-ahwu_thumb.jpg","duration":566,"publication_date":"2016-11-28T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-94","changefreq":"weekly","video":[{"title":"2016:E403 - Let's Watch - Hitman Elusive Target: Chef","description":"Andy skipped town before writing the description (silly boy). So honestly, we don't really know what this video is about. We assume there will be some Hitman-ing, which will probably lead to assassinations and stuff. Also, there's a chef Probably? Maybe? You should probably watch it to find out.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/059422cf-f892-436e-9d37-edebccfd3961/sm/2013912-1479942984205-LW_HitmanElusiveChef.png","duration":2286,"publication_date":"2016-11-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-100-ft-robot-golf","changefreq":"weekly","video":[{"title":"2016:E400 - 100ft Robot Golf","description":"The guys are back with an all new golf adventure! Geoff, Ryan, Michael, and Jack jump into 100ft Robot Golf, and they learn very quickly that irritating your opponent is clearly the best way to enjoy this game. Geoffrey becomes a skeleton, Michael and Jack destroy things, and Ryan, sinister as always, becomes the ball-blocking, ball-busting ball master.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-100-ft-robot-golf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ae0bb91-e468-452a-ba7b-17c5755a4e84/sm/2013912-1479843525057-LP_100FtRobotGolf.png","duration":2095,"publication_date":"2016-11-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-25-a85dfa","changefreq":"weekly","video":[{"title":"2016:E21 - Last Call #25","description":"The AH Crew sit down to talk about first world problems, the overwatch match-up with Funhaus, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-25-a85dfa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee5f98e7-2908-4335-a2e7-d39fdbdd596d/sm/2013912-1479920865017-OFF52_-_PS_-_THUMB.jpg","duration":1216,"publication_date":"2016-11-27T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-sombra-hide-n-seek","changefreq":"weekly","video":[{"title":"2016:E59 - Overwatch - Sombra Hide 'n Seek","description":"Sombra has finally made her grand entrance into Overwatch and we thought, \"What better way to familiarize ourselves with Sombra than by playing a classic, little game of Hide, go invisible, screw with the enemies, teleport around, and Seek?\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-sombra-hide-n-seek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96ad35ec-c9aa-43d1-a8f6-4b7ba4f23449/sm/2013912-1479839786872-Sombra_Hide_Seek_Thumb_2.jpg","duration":693,"publication_date":"2016-11-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-deadline","changefreq":"weekly","video":[{"title":"2016:E397 - GTA V - Deadline","description":"The Christpunchers pause their mayhem to enjoy the new Deadline mode, which is totally not like Tron's light cycle battles.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-deadline","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a468279-5bc2-4f77-ae97-3d6132238392/sm/2013912-1479512176828-Deadline_C.jpg","duration":2635,"publication_date":"2016-11-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-52-na87ag","changefreq":"weekly","video":[{"title":"2016:E52 - I’m All Talk - #52","description":"The AH Crew sit down to talk about people getting hurt, Jeremy checking out, gambling, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired November 25, 2016 and is sponsored by MVMT Watches (http://bit.ly/2fNgOY2) and Tipsy Elves (http://bit.ly/2gf2T09)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-52-na87ag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44e5d197-2326-416e-a0a9-1c3f32fa604f/sm/2013912-1479920603385-OFF52_-_THUMB.jpg","duration":7206,"publication_date":"2016-11-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-22","changefreq":"weekly","video":[{"title":"2016:E22 - Episode #22: Frostbiter: Wrath of the Wendigo","description":"Chili! No cheese! No crackers! Just chili!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96885f67-54fa-40e9-8cb1-455213d95968/sm/2013912-1479920201857-TM_-_Frostbiter_-_THUMB.jpg","duration":4810,"publication_date":"2016-11-25T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2016-william-tell","changefreq":"weekly","video":[{"title":"2016:E3 - Extra Life 2016: Drunk Michael Shoots at Gavin","description":"As part of Extra Life 2016, Gavin said he would let Michael shoot an \"apple\" off the top of his head! Michael loaded up with 100 shots of beer and they went outside to the paintball firing range.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2016-william-tell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/788306df-478e-4585-a339-3d76a981c4ea/sm/2013912-1479854047802-William_Tell_Thumb.jpg","duration":149,"publication_date":"2016-11-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-24","changefreq":"weekly","video":[{"title":"2016:E142 - VR the Champions - 69 Ways to Kill a Zombie","description":"On this week's VR the Champions, join Michael, Ryan, Gavin, and Jeremy on a quest to slay zombies. However, these are not your ordinary zombies. They are extremely pixelated and incredibly unrealistic zombies. That won't stop the gang from having a good time though! Who would have thought running in place to move would cause so much entertainment","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dff347d6-c54f-49af-846d-cfcfe3fdd179/sm/2013912-1479510824545-VR_69Zombies.png","duration":1282,"publication_date":"2016-11-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-maker-with-game-attack-part-2","changefreq":"weekly","video":[{"title":"2016:E396 - Mario Maker with Game Attack Part 2","description":"Achievement Hunter and Game Attack get together again and play Mario Maker. They will be playing on even more of Craig's maps. Needless to say, they are a bit tricky...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-maker-with-game-attack-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f0491e7-971b-4038-8b43-b2e16dbd9891/sm/2013912-1479511980390-LP_MarioMakerGAPt2.png","duration":1079,"publication_date":"2016-11-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-skyrim","changefreq":"weekly","video":[{"title":"2016:E60 - Skyrim Special Edition - Becoming a God","description":"Talos is a legend in Skyrim Special Edition. He was a mortal who was so awesome that he became a god. He did this by living a life of honor, power, and immense combat skill. Matt, Geoff, and Gavin can show you how to become a god another way though. Spoilers! It involves sitting around and drinking potions. So ya know, less action packed than how you're supposed to do it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-skyrim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7fb5943-3ef5-4c58-a6d8-dd35ed9141f6/sm/2013912-1479934212042-skyrim_thumb.jpg","duration":239,"publication_date":"2016-11-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-lava","changefreq":"weekly","video":[{"title":"2016:E402 - Minecraft - Episode 235 - The World is Lava Part 3","description":"It's mine. It's craft. It's Minecraft. Achievement City is still deeply on fire. The boys are still looking for colored banners because winning a tower is certainly worth the risk of drowning in the burning flames. Can they find it without calling Matt for help? You bet your ass they can't.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-lava","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eb0eafb-0639-44c9-be9e-617467c8147b/sm/2013912-1479924558572-WorldIsLava3_Thumb.jpg","duration":2717,"publication_date":"2016-11-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-93","changefreq":"weekly","video":[{"title":"2016:E401 - Let's Watch - Final Fantasy XV","description":"Michael, Matt, Geoff, and Jack are just four boys with great hair, leather coats, and access to a sweet-ass car. They're ready to stab, shoot, and magic their way through Final Fantasy XV - or at least have the developers do it for them.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c519717-2c6c-4bba-b714-1d7ac9ff7991/sm/1104396-1479865715501-Final_Fantasy_XV.jpg","duration":3172,"publication_date":"2016-11-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-move-or-die-part-3","changefreq":"weekly","video":[{"title":"2016:E395 - Move or Die Part 3","description":"The Achievement Hunter gang is back for more Move or Die. They're moving. They're dying. They're moving AND dying, which is crazy. But that's how Achievement Hunter does it. They go the extra mile. They could easily just move or die. But just for you, move and die. You're welcome.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-move-or-die-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b5634a9-b08c-44c2-83a4-ce10234b8a92/sm/2013912-1479500444160-Move_or_Die_Thumb.jpg","duration":1013,"publication_date":"2016-11-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-call-of-duty-modern-warfare-remastered-michael-meyers","changefreq":"weekly","video":[{"title":"2016:E57 - Call of Duty: Modern Warfare Remastered - Michael Myers","description":"Matt shows the gang how to play Michael Meyers in Modern Warfare Remastered, where one player has ten minutes to hunt the others down with a knife.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-call-of-duty-modern-warfare-remastered-michael-meyers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ba0404d-e7b8-4ec5-a905-50b75f302686/sm/2013912-1479510545035-Thumb_B.jpg","duration":1192,"publication_date":"2016-11-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-hard-mode-yt-primetime","changefreq":"weekly","video":[{"title":"2016:E398 - 7 Days to Die Hard Mode (YT Primetime)","description":"Ryan's experimented with the difficulty settings again, and now Michael, Jack, and Jeremy are dying left and right. The zombies are faster, and not even daylight will save them. No one is safe. It's one hilarious adventure.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-hard-mode-yt-primetime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20465582-2f6a-40af-95a4-e52f77ef5127/sm/2013912-1479754218638-LP_7DaysStream-Hardmode_THUMB.jpg","duration":5599,"publication_date":"2016-11-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-344","changefreq":"weekly","video":[{"title":"2016:E344 - That's How You Get Ants!! - AHWU for November 21st, 2016 (344)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU ||Look out for brand new holiday merch in the Rooster Teeth store starting Wednesday. New items and doorbusters galore through Cyber Monday! store.roosterteeth.com\n\nThis week, it's fast AHWU! Also, an equally fast description.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-344","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5168ec3a-23be-404c-9903-d76d68dc1109/sm/2013912-1479764041077-ahwuthumb.jpg","duration":343,"publication_date":"2016-11-21T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2016-pumpkin","changefreq":"weekly","video":[{"title":"2016:E2 - The Great Pumpkin Massacre of 2016","description":"Achievement Hunter heads outside to test their office weapons against the thick, orangey hides of their seasonal pumpkins! What starts off as a quick carving session immediately escalates into what can only be considered pumpkin murder.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2016-pumpkin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faaac2db-d0a9-4eba-9daa-6c3b3b7c60f9/sm/2013912-1479401640338-Pumpkin_Thumb.jpg","duration":459,"publication_date":"2016-11-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-uno","changefreq":"weekly","video":[{"title":"2016:E394 - Uno","description":"Geoff Ramsey is a man of simplicity. Sometimes he doesn’t need to shoot people in giant robot mechs. Sometimes he doesn’t need to be a gorilla with a tesla cannon. Sometimes he doesn’t need to chainsaw people's buttholes. Sometimes he just wants to gather his friends together and make them be miserable while playing Uno. And that's exactly what Geoff did to Jack, Ryan, and Gavin today.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-uno","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a024b7d0-3c1b-43f3-b908-e2b04d85da41/sm/2013912-1479494415573-UnoThumb_v001.png","duration":3261,"publication_date":"2016-11-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-24-ps7ah9","changefreq":"weekly","video":[{"title":"2016:E20 - Last Call #24 - Nut Rats","description":"The AH Crew stand up to talk about alcohol poisoning, the Game Show Network, squirrels in the attic, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-24-ps7ah9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7c13fec-9d45-42e2-80c2-5fdfaa89e3b6/sm/2013912-1479510235211-OFF51_-_PS_-_THUMB.jpg","duration":1053,"publication_date":"2016-11-20T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-dishonored-2-cleaning-the-streets","changefreq":"weekly","video":[{"title":"2016:E58 - Dishonored 2 - Cleaning the Streets","description":"When you walk around the streets of Dishonored 2 too often do you see dead bodies filling the streets like the tears of the homeless. Some people just think that's not acceptable for the well being of the city. Proper body disposal should be well known to keep everyone safe. Matt and Michael can show you exactly what we mean.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-dishonored-2-cleaning-the-streets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4043e679-9c21-499f-a077-55dc30d3e169/sm/2013912-1479513444259-thumb.jpg","duration":179,"publication_date":"2016-11-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-christpunchers-2-second-coming","changefreq":"weekly","video":[{"title":"2016:E392 - GTA V - Christpunchers 2: Second Coming","description":"Gavin is inducted into the biker gang as Achievement Hunter continues their dark ride of terror.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-christpunchers-2-second-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eedfc562-7128-453d-9c38-832b8cf4ace2/sm/2013912-1479499171114-GTA_CP2_Thumb_A_2.jpg","duration":3723,"publication_date":"2016-11-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-52-ba08at","changefreq":"weekly","video":[{"title":"2016:E51 - Nobody Hates Me More Than Me - #51","description":"The AH Crew sit down to talk about Extra Life aftermath, the Marvel Cinematic Universe vs. DC, Let’s Plays, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired November 18, 2016 and is sponsored by Casper (http://bit.ly/29nKmbI) and MVMT Watches (http://bit.ly/2fNgOY2)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-52-ba08at","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5687b850-8938-4bba-94c4-0a8a728a1d27/sm/2013912-1479509457849-OFF51_-_THUMB.jpg","duration":7397,"publication_date":"2016-11-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-madden-17-with-lazar-beam","changefreq":"weekly","video":[{"title":"2016:E393 - Madden 17 with Lazar Beam ","description":"Geoff and Michael team up against Gavin and Lannan \"Lazar Beam\" Eacott in Madden 17. While Geoff and Michael are mildly savvy in the way of NFL tactics, Lannan will have to carry the team as Gavin \"just figured out downs.\" Check out the video to see a very unconventional NFL game.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-madden-17-with-lazar-beam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38b9c904-8ec5-432b-8507-c6f8c9cc8a55/sm/2013912-1479491231126-LP_Madden17_THUMB5.png","duration":3115,"publication_date":"2016-11-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-future-world-city-of-mass-destruction-episode-21","changefreq":"weekly","video":[{"title":"2016:E21 - Episode #21: Future World: City of Mass Destruction","description":"Grab your Space Weed, folks. This one’s a doozy. ","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-future-world-city-of-mass-destruction-episode-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bafcb9c3-e164-4125-8a12-79ceb67b84f1/sm/2013912-1479494141238-TM_-_Future_World_-_THUMB.jpg","duration":7614,"publication_date":"2016-11-18T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-23","changefreq":"weekly","video":[{"title":"2016:E141 - VR the Champions - Rescuties","description":"Being a hero. It's not easy for everyone, but when it comes to Ryan Haywood and Jeremy Dooley, they make it look easy. Their mission - rescue all the cute things. And if they accept it, they will go down in history as the worlds greatest rescuties.\n\nThis is VR. VR the Champions...the cute addition.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ae6d385-7900-47f9-9c5f-ed425a5b7034/sm/2013912-1479319182706-VR_Rescuties.png","duration":1320,"publication_date":"2016-11-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-pocket-play-pokemon-moon","changefreq":"weekly","video":[{"title":"2016:E392 - Pocket Play - Pokemon Moon","description":"Alola! Alolan Jack, Alolan Jeremy, and Alolan Michael are back to play the full version of Pokemon Moon. They're ready to catch lots of cool new Alolan Pokemon, kick more Alolan kids, and do tons of stupid voices for all of Alola's citizens. Did we mention this game takes place in Alola yet? Alola! ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-pocket-play-pokemon-moon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6479e6f4-4a2c-4759-ba2a-8a67457fa23c/sm/1104396-1479446772595-PPPokemonMoonThumb.jpg","duration":4096,"publication_date":"2016-11-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-234-the-world-is-lava-part-2","changefreq":"weekly","video":[{"title":"2016:E389 - Minecraft - Episode 234 - The World is Lava Part 2","description":"The World is Still Lava. Where once a Michael was gone, now a Michael is here. But how did that happen? Maybe maybe a little something like this.\n\nMichael was comfy-cozy in the seat of his plane. He was returning from Minecraft-Australia and coming back to his favorite home, Achievement City. He peered out the window to take a look at the majestic Achievement Countryside. \n\n\n\n\n\nExcept everything was on fire. \n\n\n\n\n\n\"Holy shit! That's nuts! What the fuck happened when I was gone? Look! There's Geoff. And Jack. There's Ryan. And Gavvy and Little J! They're just running around like assholes. I want to run around like an asshole!\"\n\n\n\n\n\nMichael jumped out of his seat and straight out of the plane. He fell down towards Achievement City. Down down down. He slammed into the ground and died. But since it's Minecraft, he respawned. \n\n\n\n\n\n\"Alright bitches. What are we doing?\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-234-the-world-is-lava-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2741ad4-c556-46e9-a8b0-c5d800dc2411/sm/2013912-1479403538015-WorldIsLava2.jpg","duration":3568,"publication_date":"2016-11-17T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-genital-jousting","changefreq":"weekly","video":[{"title":"2016:E391 - Genital Jousting","description":"When it comes to genital jousting, you could say we're good as dicks! Let's hope these genitals goes national, because I'd like to see genital jousting at the next Olympics.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-genital-jousting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f59e7e2-7541-47cc-829b-fb2e59313dbb/sm/1104396-1479429256763-Genital_Jousting_Thumb.jpg","duration":1574,"publication_date":"2016-11-17T06:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-91","changefreq":"weekly","video":[{"title":"2016:E388 - Let's Watch - Watch_Dogs 2","description":"Jack and Jeremy help Geoff hack his way across San Fransico one poor fool's bank account at a time.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a04d02d-cd90-4a27-a3da-d571a41200ee/sm/2013912-1479313721943-LW_Watch_Dogs2.png","duration":3023,"publication_date":"2016-11-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-call-of-duty-infinite-warfare-multiplayer","changefreq":"weekly","video":[{"title":"2016:E386 - Call of Duty: Infinite Warfare - Multiplayer","description":"In the cold night, in the heat of battle, as your lifeblood drains away, we will hold you in our robot arms.\n\nGeoff, Ryan, Jack, Jeremy, and Gavin try out Team Deathmatch in Call of Duty: Infinite Warfare.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-call-of-duty-infinite-warfare-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ff32072-7bc0-48e4-856b-fae4470c45d4/sm/2013912-1479237447890-Thumbnail_v3.jpg","duration":2176,"publication_date":"2016-11-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rainbow-six-siege-yt-primetime","changefreq":"weekly","video":[{"title":"2016:E387 - Rainbow Six: Siege (YT Primetime)","description":"Knowing their history of friendly fire, the Achievement Hunter boys have set up a special rule. You pay $1.00 each time you kill one of your teammates. And boy oh boy is the money flowing! Join Geoff, Gavin, Jack, Trevor, and Jeremy as they attempt to clear a location and without going into financial debt.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rainbow-six-siege-yt-primetime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfe9c9d2-6b8a-41f0-ad15-fdd90a420fb8/sm/2013912-1479243889415-LP_RainbowSixSiege_THUMB.jpg","duration":3290,"publication_date":"2016-11-15T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-titanfall-2","changefreq":"weekly","video":[{"title":"2016:E385 - Titanfall 2 ","description":"Thanks to Turtle Beach for sponsoring this video. Check out the Turtle Beach Stealth 420X+ headsets for Xbox One here: http://bit.ly/2fGbpoN. Michael, Ryan, Gavin, Jeremy, and Matt play Titanfall 2 and try not to kill each other in the process.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-titanfall-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/836d41e3-b06f-403d-9ce8-a4253c8163d0/sm/2013912-1479227879085-LP_TitanFall2-TurtleBeach_THUMB.jpg","duration":1999,"publication_date":"2016-11-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-call-of-duty-infinite-warfare-spider-warfare","changefreq":"weekly","video":[{"title":"2016:E56 - Call of Duty: Infinite Warfare - Spider Warfare","description":"Matty Things to Do'd, jamming good with Jack and GeoffyAnd the spiders from Mars. Or were they from the Moon?They explode and they char.Jerm, Gav, and Michael too. All be exploding soon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-call-of-duty-infinite-warfare-spider-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3b142c1-5173-4d4d-a55c-c73d7af6a567/sm/2013912-1479154394036-SpiderWarfareThumb_v001.png","duration":605,"publication_date":"2016-11-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-extra-life-hangover-ahwu-for-november-14-th-2016-343","changefreq":"weekly","video":[{"title":"2016:E49 - Extra Life Hangover - AHWU for November 14th, 2016 (#343)","description":"Thanks to Dollar Shave Club for supporting our channel. Go to http://DollarShaveClub.com/Hunter to get your first month free!||It was the Monday morning after Extra Life. The Achievement Hunter boys came back to the office, ready to pretend the weekend didn't happen. Everyone was hoping to work and pretend everything was normal. Everyone except Trevor, who wasn't there for reasons obvious to anyone who had been watching the stream. It was time to record AHWU. Jeremy and Jack couldn't even look each other in the eyes. Everything that happened was for the kids...but at what cost?\n\nVideo of the Week and Community Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-extra-life-hangover-ahwu-for-november-14-th-2016-343","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e888fbd-2cb8-4d70-a7d6-c31a6f34dd7b/sm/2013912-1479161661703-ahwu_thum.jpg","duration":749,"publication_date":"2016-11-14T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-call-of-duty-modern-warfare-remastered-time-paradox-achievement-guide","changefreq":"weekly","video":[{"title":"2016:E34 - Call of Duty Modern Warfare Remastered - Time Paradox Achievement Guide","description":"Creating alternate timelines and destroying the fabric of reality has never been a simple process. Matt and Jeremy can show you how to do it and get gamerscore at the same time though.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-call-of-duty-modern-warfare-remastered-time-paradox-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82eb42d7-95fe-4a87-a8d3-56754fd78d3b/sm/2013912-1479142055458-CoD_Time_Paradox_Guide.jpg","duration":101,"publication_date":"2016-11-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-vr-batman","changefreq":"weekly","video":[{"title":"2016:E140 - Let's Watch - Batman: Arkham VR","description":"Michael along with his sidekick Ryan explore the wonders and horor of what it's like to be the \"caped crusader\" in Batman: Arkham VR. Spoiler Arter. A lot of scanning.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-vr-batman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a681778-11d5-41e6-8fca-22b4a334614b/sm/2013912-1478906170989-VR_Batman.png","duration":2571,"publication_date":"2016-11-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-part-6","changefreq":"weekly","video":[{"title":"2016:E383 - 7 Days to Die Xbox Finale","description":"At Last. The zombie horde has come to play. Days one through six are over. Let's see if the Achievement Hunters can survive. The blood moon suggests their lives to be over. Ryan, Michael, Gavin and Jack make their last preparations for the inevitable seventh-day zombie horde. Will their fortress be able to sustain the attack? Find out.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/408e9192-c3dd-4c81-9f51-23698106e3ce/sm/2013912-1478903568045-LP_7DaystoDie-Pt6_THUMB.png","duration":3592,"publication_date":"2016-11-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-23-s7famh","changefreq":"weekly","video":[{"title":"2016:E19 - Last Call #23","description":"The AH Crew sit down to talk about strange purchases, sandwiches, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-23-s7famh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeba7b2e-81ae-49d2-9170-f889c3a7ace1/sm/2013912-1478885053023-OFF50_-_PS_-_THUMB_v2.jpg","duration":1194,"publication_date":"2016-11-13T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-90","changefreq":"weekly","video":[{"title":"2016:E384 - Let's Watch - Dishonored 2","description":"Michael, Ryan and Jeremy return to the coastal city of Karnaca for Dishonored 2. This time, heads are gonna roll.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f54683-c411-40fe-bf8b-d71e5ccb8d08/sm/2013912-1479003534686-slack_for_ios_upload_1.jpg","duration":2894,"publication_date":"2016-11-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-bike-bat-returns","changefreq":"weekly","video":[{"title":"2016:E382 - GTA V - Bike Bat Returns","description":"Ryan convinces the gang to get their motorbikes onto a roof for the GTA V return of Bike Bat.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-bike-bat-returns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd63747d-cafd-4e4d-8c0c-90dce1b7096d/sm/2013912-1478895973654-Pasted_image_at_2016_11_10_05_18_PM.png","duration":2939,"publication_date":"2016-11-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-50-osb7ar","changefreq":"weekly","video":[{"title":"2016:E50 - You Put Your D*ck On Your Favorite Stuff - #50","description":"The AH Crew sit down to talk about the longest Let’s Play ever, Doctor Strange, the Marvel Cinematic Universe, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired November 11, 2016 and is sponsored by Crunchyroll (http://bit.ly/2dT5pdm) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-50-osb7ar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/537469ab-c8f9-483e-8058-bb5f8d0fd6be/sm/2013912-1478819119489-OFF50_-_THUMB.jpg","duration":5952,"publication_date":"2016-11-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gang-beasts-with-game-attack","changefreq":"weekly","video":[{"title":"2016:E381 - Gang Beasts with Game Attack","description":"The Game Attack boys stopped by the Achievement Hunter office and demanded to do some wiggly jiggly body wrestling. As a way of saying yes, Jack ripped his shirt off and started oiling up his hairy Jack Pattillo pecs. Game Attack quickly explained \"wiggly jiggly body wrestling\" was just their fun way of saying, \"Let's Play some Gang Beasts.\" Fortunately for you, that's the kind of wrestling you actually get to see today. The kind that doesn’t involve an oiled-up Jack.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gang-beasts-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32821bab-1638-41f2-9d46-ac35e26f1ead/sm/2013912-1478889196853-AHGA_GangBeasts_Thumb.png","duration":1448,"publication_date":"2016-11-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-20","changefreq":"weekly","video":[{"title":"2016:E20 - Episode #20: Rabid Grannies","description":"Boring family dinner? Spice it up with some good ol’ demonic possession! Join the AH Crew as they watch Rabid Grannies in this week’s Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbedf89a-295e-497d-b474-8ce766759840/sm/2013912-1478888083137-TM_-_Rabid_Grannies_-_THUMB.jpg","duration":5503,"publication_date":"2016-11-11T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-22","changefreq":"weekly","video":[{"title":"2016:E139 - VR The Champions - Accounting","description":"Join Jack as he dives into the world of Accounting. Get ready for a world that could only be described as, \"unique, \"different,\" and, \"totally fucked up.\" It's a world that could truly only be created by the minds behind The Stanley Parable and Rick and Morty. Get ready for this trip...","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b8bf1ea-6f16-4c2d-9af2-3b9c6c9de4c2/sm/2013912-1478724768779-VR_Accounting.png","duration":1033,"publication_date":"2016-11-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-146-jeremy-vs-gavin","changefreq":"weekly","video":[{"title":"2016:E146 - Episode 146: Jeremy VS Gavin","description":"Go to the Winchester, have a pint, and watch Gavin challenge Jeremy to a special virtual reality episode of VS.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-146-jeremy-vs-gavin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/662abeb4-387e-421f-a25c-d7a819488429/sm/2013912-1478714816083-VS_Thumb.jpg","duration":954,"publication_date":"2016-11-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-233-the-world-is-lava","changefreq":"weekly","video":[{"title":"2016:E380 - Minecraft - Episode 233 - The World is Lava","description":"Matt Bragg fucking loves playing The Floor is Lava. Can't get enough of it. He's constantly creeping around the office, hopping on couches and shimmying across shelves. Since nobody else in the office was willing to play along, Matt went into Minecraft and made sure they had to. Now all of Achievement City is filled with lava. Nowhere is safe. Everything is burning. And Matt - Matt is very very happy. ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-233-the-world-is-lava","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec84985e-c7bd-431a-a5c9-4ff095b9ca73/sm/1104396-1478740257388-WorldISLavaThumb.jpg","duration":2658,"publication_date":"2016-11-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battlefield-1-world-war","changefreq":"weekly","video":[{"title":"2016:E375 - Battlefield 1 World War","description":"Thanks to EA for sponsoring this video. Get the game now! https://www.battlefield.com. The Battlefield 1 Let's Play World War was super bonkers ginormously huge. So far, you've been able to enjoy the war from each group's individual perspective. Unfortunately, trying to experience the whole war all at once has been a huge mess. Playing the Achievement Hunter video, the Funhaus video, Cow Chop, The Creatures, Game Attack, Kinda Funny, NoahJ456, and LazarBeam all at once just leads to massive confusion. Right here, right now, we're making the Let's Play World War easy-peasy breezy to experience as a full-fledged war. Time to slurp up all that Battlefield goodness!\n\n\n\n\n\n\n\nMissed the battles? Check out each group's individual videos here:Achievement Hunter\n\n\n\n\n\nCow Chop\n\n\n\n\n\nThe Creatures\n\n\n\n\n\nFunhaus\n\n\n\n\n\nGame Attack\n\n\n\n\n\nKinda Funny\n\n\n\n\n\nLazarBeam\n\n\n\n\n\nNoahJ456","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battlefield-1-world-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5763bde-50d2-45eb-b369-52401a93e624/sm/2013912-1478291528645-mastercut.jpg","duration":792,"publication_date":"2016-11-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-manual-samuel","changefreq":"weekly","video":[{"title":"2016:E24 - Manual Samuel ","description":"Michael and Gavin, in typical Michael and Gavin fashion, are each taking partial control of a single body. Today's victim is this poor bastard, Samuel. Michael has the left leg and the eyeballs, while Gavin concentrates on breathing in and kicking around his left leg. Or was it the right leg? Just wait until they try to drive a stick shift. And no, that's not a euphemism for controlling Sam's penis.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-manual-samuel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd5c20e2-226e-487c-aee4-1bb57397329b/sm/2013912-1478709945549-PP_ManualSanuel_THUMB5.png","duration":2844,"publication_date":"2016-11-09T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-maker-with-game-attack","changefreq":"weekly","video":[{"title":"2016:E379 - Mario Maker with Game Attack","description":"What the heck is wrong with Craig's daughter? Game Attack brings some custom maps to the AH office for a raucous good time.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-maker-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fccc7e56-2481-4891-8c07-0f4cd1fe1378/sm/2013912-1478636375007-LP_MarioMakerWithGameAttack_Thumb.jpg","duration":1846,"publication_date":"2016-11-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-89","changefreq":"weekly","video":[{"title":"2016:E377 - Let's Watch - Hitman Elusive Target The Ex-Dictator","description":"Gavin, Jeremy, Jack and Ryan are back with an another elusive target. This time it's the Ex-Dictator.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/533913f1-5544-483e-8d1b-06a35571e4dc/sm/2013912-1478555278071-LW_Hitman_Ex-Dictator.png","duration":2924,"publication_date":"2016-11-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trivia-murder-party","changefreq":"weekly","video":[{"title":"2016:E378 - Trivia Murder Party ","description":"Join the AH crew as they play Jackbox 3: Trivia Murder Party. In this trivia game, you win or you die. The questions are tough and the answers are zany. Check the video to see who can keep their creepy stuffed animal together, and who can make it to the exit first.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trivia-murder-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/666a60dd-c4cf-422d-83d7-3204ba413ecf/sm/2013912-1478561617137-LP__Jackbox3-TriviaMurderParty_THUMB3.png","duration":2521,"publication_date":"2016-11-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-having-a-ball-to-the-face-ahwu-for-october-31-st-2016-342","changefreq":"weekly","video":[{"title":"2016:E342 - Having a Ball (to the Face)! - AHWU for November 7th, 2016 (#342)","description":"Thanks to Dollar Shave Club for supporting our channel. Go to http://DollarShaveClub.com/Hunter to get your first month free!|| \n\nIt's AHWU! The show where you get all your game news, game releases, and other such Achievement Hunter messabouts.\n\n\n\n\n\n\n\n\n\nAnd that's it for the description. Every week, Kent comes over to my desk and goes, \"Write me a funny AHWU description please.\" But fuck that guy. If he wants a better description this week, he can write it himself.\n\n\n\n\n\n\n\n\n\nFine! Kent here...\n\n\n\n\n\n\n\n\n\nUm...Here's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-having-a-ball-to-the-face-ahwu-for-october-31-st-2016-342","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7a5e4c5-1dec-46df-9e69-0a48cbae23a5/sm/2013912-1478560855850-AAHWUthumb.jpg","duration":559,"publication_date":"2016-11-07T23:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-bomberman","changefreq":"weekly","video":[{"title":"2016:E55 - Halo 5 - Bomberman","description":"Matt, Ryan, Michael, Jeremy, Gavin and Trevor get the chance to play an old classic, Bomberman. Yo this map is da bomb...\n\nMap download: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/map-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=KingNothing2005#ugc_halo-5-guardians_xbox-one_mapvariant_KingNothing2005_3d04a14a-4d19-46a2-bac5-876f540d135c\n\n\n\nGame variant: https://www.halowaypoint.com/en-us/games/halo-5-guardians/xbox-one/game-variants?lastModifiedFilter=Everything&sortOrder=BookmarkCount&page=1&gamertag=KingNothing2005#ugc_halo-5-guardians_xbox-one_gamevariant_KingNothing2005_5ffa86f2-981b-4942-aa51-597ea6364593","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-bomberman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5371914-ceb8-4d12-b038-5f83d5cf5328/sm/2013912-1478284636608-TTD_Halo_5_Bomberman_Thumb.png","duration":703,"publication_date":"2016-11-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overcooked-2","changefreq":"weekly","video":[{"title":"2016:E374 - Overcooked: The Lost Morsel","description":"It's time for Achievement Hunter to fire up the grill and pop those weird, puffy, white hats back on their heads. Chefs Jeremy, Gavin, Ryan, and Michael are ready to sink their teeth into Overcooked: The Lost Morsel DLC. Be prepared for a whole lot of people shouting \"Chop chop chop chop chop chop chop chop\" and mainly just shouting in general. It wouldn't be the Achievement Hunter way without barely functional cooperation.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overcooked-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3fa9c1c-6406-4508-bb24-3fdd02185596/sm/2013912-1478284490231-OvercookedLostMorsel_v002.png","duration":2081,"publication_date":"2016-11-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-22-pif421","changefreq":"weekly","video":[{"title":"2016:E18 - Last Call #22 - The Toast-Show","description":"The AH Crew stand up to talk about toast, burning things, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-22-pif421","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5c84b59-9172-497f-961a-36fc5b900b83/sm/2013912-1478314012571-OFF49_-_PS_-_THUMB.jpg","duration":753,"publication_date":"2016-11-06T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-outlast-scare-compilation","changefreq":"weekly","video":[{"title":"2016:E23 - Outlast Scare Compilation","description":"Michael and Gavin have been through a lot while playing the Outlast series, the DLC, and a portion of Outlast 2. Why not celebrate their terror in a compilation of select scary moments?!","player_loc":"https://roosterteeth.com/embed/play-pals-2016-outlast-scare-compilation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f9cf78a-9b6f-43ac-9bce-f29bbcf4b579/sm/2013912-1478293067918-scare2_thumb.jpg","duration":666,"publication_date":"2016-11-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-angels-vs-demons","changefreq":"weekly","video":[{"title":"2016:E376 - GTA V - Angels VS Demons","description":"The Achievement Hunter boys pile into the local hangar to duke it out from both sides of this celestial body. This week, with a special random end game that has nothing to do with the main course!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-angels-vs-demons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/019c659d-1e6b-48f5-b4c3-72b6db30c39b/sm/2013912-1478298117121-GTA_Angels_Demons_Thumb.jpg","duration":2109,"publication_date":"2016-11-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-49-py52dj","changefreq":"weekly","video":[{"title":"2016:E49 - I’d Cry White Tears - #49","description":"The AH Crew sit down to talk about last week’s aftermath, Extra Life stretch goals, bread sandwiches, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired November 4, 2016 and is sponsored by Dollar Shave Club (http://bit.ly/2cujr4z) and Texture (http://bit.ly/2fk7wFG)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-49-py52dj","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f39c526-f859-4c12-8c87-1bbeacd67a0a/sm/2013912-1478313118934-OFF49_-_THUMB.jpg","duration":6168,"publication_date":"2016-11-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battlefield-1","changefreq":"weekly","video":[{"title":"2016:E368 - Battlefield 1","description":"Thanks to EA for sponsoring this video. Get the game now!https://www.battlefield.com\n\n\n\nAchievement Hunter jumps into Battlefield 1 to test themselves and their squad under a barage of gunfire and shovels! They spawn onto the battlefield as boys, but continuously explode over and over as men.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battlefield-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7962fdb-d7d0-4a4b-8551-cf41e7920e7b/sm/2013912-1477952682784-bf1_thumb.jpg","duration":1612,"publication_date":"2016-11-05T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-hammer-through-mirror-at-120000-fps","changefreq":"weekly","video":[{"title":"S1:E63 - Hammer through Mirror at 120,000fps","description":"The Matrix is real.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-hammer-through-mirror-at-120000-fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b45d17f-6380-4545-859b-627904f4c205/sm/82-1472480648630-Screen_Shot_2016-08-29_at_09.19.04.jpg","duration":290,"publication_date":"2016-08-29T07:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-17","changefreq":"weekly","video":[{"title":"S14:E17 - Episode 17: Get Bent","description":"While trapped inside the Epsilon Storage Unit, Church relived multiple iterations of his memories in an attempt to reunite his ex-girlfriend, Tex. Every iteration was different... but those differences weren't always intentional.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bd7ed1e-06b2-4aa6-845d-f7f7d0d9989c/sm/2013912-1472248451036-RvB_EP_017v01.png","duration":432,"publication_date":"2016-08-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-how-to-write-a-eulogy","changefreq":"weekly","video":[{"title":"S7:E20 - How to Write a Eulogy","description":"A team of writers prepare for a funeral after hearing some horrible news.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-how-to-write-a-eulogy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0e1aed9-8ead-48ab-a3a2-327c4da4622a/sm/2013912-1472072571286-Eulogy_Thumb05_3.png","duration":332,"publication_date":"2016-08-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-17","changefreq":"weekly","video":[{"title":"S1:E17 - Episode 17 - Save Nora!","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64d09a16-a92c-492f-aa8e-e6c420454547/sm/2013912-1472251945855-RWBY_CHIBI_THUMBNAIL_EPISODE_017.png","duration":288,"publication_date":"2016-08-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-mind-freakers-camp-camp-episode-10","changefreq":"weekly","video":[{"title":"S1:E14 - Mind Freakers - Episode 10","description":"Harrison does a magic trick that Neil can't figure out. Desperately, Neil begins to do whatever it takes to find an answer.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-mind-freakers-camp-camp-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c93cc8c-d0b5-4278-8325-d402d6163c06/sm/2013912-1472224676726-cc1_ep12_tn.jpg","duration":681,"publication_date":"2016-08-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-rooster-teeth-olympics-rio-rifles","changefreq":"weekly","video":[{"title":"2016:E18 - Rooster Teeth Olympics: Rio Rifles","description":"The Rooster Teeth office Olympics are back with an all-new event: The Crapshoot. With paintball guns and human targets, what could possibly go wrong?","player_loc":"https://roosterteeth.com/embed/rt-life-2016-rooster-teeth-olympics-rio-rifles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7db1501-9d2e-47ea-ab3e-8b9f086e6021/sm/2013912-1472070892654-PaintballThumb_04b.png","duration":201,"publication_date":"2016-08-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-august-25-2016","changefreq":"weekly","video":[{"title":"2016:E14 - Burnie’s Vlog: August 25, 2016","description":"Hunt for Pokémon, go behind the scenes of Immersion, get an inside look at the recent Rooster Teeth company meeting, and more!","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-august-25-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ae48182-00fe-4866-b882-64b266eea773/sm/2013912-1472063795368-FIRST_Vlog_Thumb_82516.jpg","duration":500,"publication_date":"2016-08-25T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-390-post-show","changefreq":"weekly","video":[{"title":"2016:E32 - Podcast #390 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the Concorde, the end of the world, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-390-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59b60ff5-aec4-480a-bbf2-6a3cd78c9f82/sm/2013912-1472052837701-rtp390_-_PS_-_THUMB.jpg","duration":2180,"publication_date":"2016-08-24T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-girls-vs-ninjas","changefreq":"weekly","video":[{"title":"S3:E4 - Girls vs Ninjas","description":"Join Barbara, Lindsay, and Ashley as they fight ninjas and deal with the perils of always being wet.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-girls-vs-ninjas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fcf4132-0118-4cb4-8a15-10d619719a04/sm/2013912-1471968977701-MDB_e03_03b_1.png","duration":220,"publication_date":"2016-08-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-390","changefreq":"weekly","video":[{"title":"2016:E390 - Gavin Free Is a Vault - #390","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss American citizenship, panic attacks, keeping secrets, and more on this week's RT Podcast! This episode originally aired on August 23, 2016, sponsored by Betterment (http://bit.ly/2aYdbwx), MeUndies (http://bit.ly/2aGm9yg), and NatureBox (http://bit.ly/2bvzA3K).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-390","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9912619-6bdb-4484-8d01-a78e1bba312d/sm/2013912-1471966088807-rtp390_-_THUMB.jpg","duration":5868,"publication_date":"2016-08-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-droppin-burgers-growin-trees","changefreq":"weekly","video":[{"title":"2016:E28 - Droppin' Burgers, Growin' Trees","description":"The intern makes a grave misstep while bringing food to the hungry podcast crew, and Gavin presents a third option to dealing with the remains of dead people: make them trees.\n\nAudio from RT Podcast #366\n\n\nBecome a FIRST member: https://roosterteeth.com/FIRST\nLike the animated adventure? Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-droppin-burgers-growin-trees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0212bc62-37fa-4d0a-b79a-87fb1a8eae3d/sm/2013912-1471640662429-rtaa238tn.jpg","duration":103,"publication_date":"2016-08-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-16-head-cannon","changefreq":"weekly","video":[{"title":"S14:E16 - Episode 16: Head Cannon","description":"Towards the end of the Blood Gulch Chronicles, Omega made his way into the minds of several of the Reds and Blues... and what he saw cannot be unseen.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-16-head-cannon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6ae34a2-6fc0-4718-81e4-290d1c772f9e/sm/2013912-1471642025458-RvB_EP_016v02.png","duration":551,"publication_date":"2016-08-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-16","changefreq":"weekly","video":[{"title":"S1:E16 - Episode 16 - Bike Race","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e35c312-ae20-4d16-91ad-94d95df5fbe6/sm/2013912-1471641773054-RWBY_CHIBI_THUMBNAIL_EPISODE_016v02.png","duration":263,"publication_date":"2016-08-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-david-gets-hard-camp-camp-episode-9","changefreq":"weekly","video":[{"title":"S1:E13 - David Gets Hard - Episode 9","description":"David enlists the help of Gwen and Max to toughen himself up for Nurf's behavioral correction camp. Will Nurf's deep-rooted issues prove to be too much for him?","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-david-gets-hard-camp-camp-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ce9f834-390f-43c1-b449-679adf651bce/sm/2013912-1471620005179-cc1_ep11_tn.jpg","duration":628,"publication_date":"2016-08-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-adventures-in-taiwan","changefreq":"weekly","video":[{"title":"2016:E17 - Adventures in Taiwan","description":"Thanks Anytime For Taiwan for sponsoring this video.\n\nCraig, Jack, Sam, and Jeremy head to Taiwan for an adventure of a lifetime! \n\nTravel to Taiwan : http://Taiwan.net.tw","player_loc":"https://roosterteeth.com/embed/rt-life-2016-adventures-in-taiwan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10f51c2d-37b3-423a-98b3-74703c860dbc/sm/2013912-1471452215322-Taiwan_thumb.jpg","duration":382,"publication_date":"2016-08-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-389-post-show","changefreq":"weekly","video":[{"title":"2016:E31 - Podcast #389 Post Show","description":"Join Gus Sorola, Gavin Free, Greg Miller, Tim Gettys, and Burnie Burns as they discuss bananas, email addresses and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-389-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4aab5a3-e410-4cb8-a931-e96b673e67b1/sm/2013912-1471449970631-rtp389_-_PS_-_THUMB.jpg","duration":1405,"publication_date":"2016-08-17T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-slow-mo-millionaires","changefreq":"weekly","video":[{"title":"S3:E3 - Slow Mo Millionaires","description":"Join Gavin, Dan, and Blaine as they dodge speeding bullets, wear mascot outfits for a year and have their hands magically replaced by random objects.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-slow-mo-millionaires","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18420d0d-3fee-48af-baf1-62bbe02a6c3e/sm/2013912-1471447372604-MDB_e02_03b.png","duration":244,"publication_date":"2016-08-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-greg-miller-mr-hard-nips-2016-389","changefreq":"weekly","video":[{"title":"2016:E389 - Greg Miller: Mr. Hard Nips 2016 - #389","description":"Join Gus Sorola, Gavin Free, Greg Miller, Tim Gettys, and Burnie Burns as they discuss nipples, ketchups, elevator scenes in movies, and more on this week's RT Podcast! This episode originally aired on August 15, 2016, sponsored by Harry’s (http://hrys.co/28SDlmw), Squarespace (http://bit.ly/290ucbK), Warby Parker (http://bit.ly/2btS9WM)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-greg-miller-mr-hard-nips-2016-389","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34aabbe2-95fe-43c2-a05b-49776dc32ac7/sm/2013912-1471361771042-rtp389_-_THUMB.jpg","duration":5821,"publication_date":"2016-08-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-michael-s-bagel-incident","changefreq":"weekly","video":[{"title":"2016:E27 - Michael's Bagel Incident","description":"Michael spots a dude eating a bagel on his flight and quickly goes from coveting the man's bounty of bagel to being disgusted by the despicable state in which it ends up. \nAudio from Off Topic Podcast #15.\n\n\nBecome a FIRST member: https://roosterteeth.com/FIRST\nLike the animated adventure? Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-michael-s-bagel-incident","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b7faf52-29f6-49f5-b056-9522bdac5711/sm/2013912-1471274627601-rtaa237tn.jpg","duration":109,"publication_date":"2016-08-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-15","changefreq":"weekly","video":[{"title":"S14:E15 - Episode 15: Caboose's Guide to Making Friends","description":"Friendship is a deep and multi-layered concept... that Caboose will happily teach you everything about.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42093992-ee73-4a97-8b3a-cf8ce8bfe2de/sm/2013912-1470934697969-RvB_EP_015.png","duration":298,"publication_date":"2016-08-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-pizza-roll-sauce-hole-dilemna-68-post-show","changefreq":"weekly","video":[{"title":"S6:E11 - Pizza Roll Sauce Hole Dilemna - #68 Post Show","description":"Stop stealing my pizza rolls, bro. And why don't you eat them when you steal them? And why are the sauce holes always bigger when you're done with them?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-pizza-roll-sauce-hole-dilemna-68-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17d4b179-c968-438b-a0b9-ffb1161cfc30/sm/2013912-1471021353374-ots_68ps_thumb.jpg","duration":575,"publication_date":"2016-08-13T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-15","changefreq":"weekly","video":[{"title":"S1:E15 - Episode 15 - Neptune's Phobia","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31251e0d-20f2-4e62-8fec-9390c81c6004/sm/2013912-1470933803903-RWBY_CHIBI_THUMBNAIL_EPISODE_015.png","duration":278,"publication_date":"2016-08-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-lego-plane-crash-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E62 - Lego Plane Crash in Slow Motion","description":"Gav and Dan never fully grew up. I'd say about 90%. In this video they used the remaining 10% to poorly construct a lego city and then make a plane have a big accident on it.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-lego-plane-crash-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10d48bdf-11be-4e79-8ad0-eb155d317dea/sm/82-1471134711847-planethumb.jpg","duration":380,"publication_date":"2016-08-13T14:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-68","changefreq":"weekly","video":[{"title":"S6:E68 - Gold Medal Manslaughter - #68","description":"The finale of an online improv game show is a lot like when an American is vacationing in Ireland and decides to rent a BMW and then forgets what side of the road he's supposed to drive on. Mistakes are made. This episode originally aired August 11, 2016 and is sponsored by Kaspersky Labs (http://bit.ly/28K3Hap) and MVMT (http://bit.ly/1QRX0wD)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f79812d4-3695-4ae1-9585-c22a08d4e022/sm/2013912-1471020921846-ots_68_thumb.jpg","duration":2962,"publication_date":"2016-08-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-august-11-2016","changefreq":"weekly","video":[{"title":"2016:E13 - Burnie’s Vlog: August 11, 2016","description":"Get an exclusive peek into Burnie and Gavin’s recent trip to Japan for the Lazer Team Japanese premiere, and more!","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-august-11-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa8262a1-2ebc-4bca-ad3c-806e02b903da/sm/1601067-1510080677181-fvlog81116.jpg","duration":581,"publication_date":"2016-08-11T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-388-post-show","changefreq":"weekly","video":[{"title":"2016:E30 - Podcast #388 Post Show","description":"Join Gus Sorola, Kerry Shawcross, Barbara Dunkelman, and Miles Luna as they discuss chicken sandwiches, Youtube Channels, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-388-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6aaff40f-3aaf-47cc-a37d-b33a99767757/sm/2013912-1470842326033-rtp388_-_PS_-_THUMB.jpg","duration":1206,"publication_date":"2016-08-10T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-hunted-by-linebackers","changefreq":"weekly","video":[{"title":"S3:E2 - Hunted by Linebackers","description":"Join Gavin, Michael, and Burnie as they discuss the finer points of starting riots, being beaten by children, and dodging professional linebackers.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-hunted-by-linebackers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c54dc99-2446-48d5-bff4-4bb29c8dfeab/sm/2013912-1470762925586-MDB_e01_04.png","duration":260,"publication_date":"2016-08-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-suicide-squad-goals-388","changefreq":"weekly","video":[{"title":"2016:E388 - Suicide Squad Goals - #388","description":"Join Gus Sorola, Kerry Shawcross, Barbara Dunkelman, and Miles Luna as they discuss DC movies, the Olympics, stolen property, and more on this week's RT Podcast! This episode originally aired on August 8, 2016, sponsored by Audible (http://adbl.co/2bgBJkt), Casper (http://bit.ly/2bgC0nt), and Trunk Club (http://bit.ly/29tyrJm).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-suicide-squad-goals-388","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57406513-05d6-43e1-be58-e29b0ee61748/sm/2013912-1470756643883-rtp388_-_THUMB.jpg","duration":6691,"publication_date":"2016-08-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-gus-alley-dump","changefreq":"weekly","video":[{"title":"2016:E26 - Gus' Alley Dump","description":"While trying to film intros for the podcast, Gus pretends to poop in an alley, but accidentally fronts on a homeless dude's pooping turf and things get awkward. \n\n\nAudio from RT Podcast #366\n\n\nBecome a FIRST member: https://roosterteeth.com/FIRST\nLike the animated adventure? Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-gus-alley-dump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3f40515-1172-4df5-b15a-c9a966e59e6d/sm/2013912-1470671741020-rtaa236tn.jpg","duration":76,"publication_date":"2016-08-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-14-grey-vs-gray","changefreq":"weekly","video":[{"title":"S14:E14 - Episode 14: Grey vs Gray","description":"Tensions run high between mortal enemies! Locked in a room with each other, they will have to put aside their differences to escape. Little do they know, they might have more in common than they think..","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-14-grey-vs-gray","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f743f73-09e7-434b-9e78-eb3ce2c03357/sm/2013912-1470434129995-RvB_EP_014.png","duration":578,"publication_date":"2016-08-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-67-post-show","changefreq":"weekly","video":[{"title":"S6:E10 - Monsters and Mice - #67 Post Show","description":"All must bow to Lord Pancake.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-67-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89456694-9e6f-49aa-bc97-a93193066809/sm/2013912-1470433592935-ots_67post_thumb.jpg","duration":675,"publication_date":"2016-08-06T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-14","changefreq":"weekly","video":[{"title":"S1:E14 - Episode 14 - Big Vacation","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca5159aa-fd0f-4eea-a8cc-f9f5619cba58/sm/2013912-1470432383950-RWBY_CHIBI_THUMBNAIL_EPISODE_014.png","duration":271,"publication_date":"2016-08-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-you-re-late-67","changefreq":"weekly","video":[{"title":"S6:E67 - A Two Tampon Load - #67","description":"Michael and Andy are here to teach special guests and Crunch Time stars Nick Rutherford and Kirk C. Johnson how to shove tampons into our sisters. But really, none of it matters anyway because #whocares? This episode originally aired August 4, 2016 and is sponsored by Trunk Club (http://bit.ly/2930z9x)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-you-re-late-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5eec902-b42f-4a22-a20f-8f344fd2bb31/sm/2013912-1470423746810-ots_67_thumb.jpg","duration":2633,"publication_date":"2016-08-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-into-town-camp-camp-episode-8","changefreq":"weekly","video":[{"title":"S1:E11 - Into Town – Episode 8","description":"Daivd goes into town to blow off some steam, and the kids follow him to see what makes him tick. Neil gets a job. Max fears for his life when he sees David outside of camp.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-into-town-camp-camp-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcc86741-39e1-43db-9da1-e1d357b42d68/sm/2013912-1470410139021-cc1_ep08_tn.jpg","duration":632,"publication_date":"2016-08-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-rooster-teeth-olympics-rio-flip-cup","changefreq":"weekly","video":[{"title":"2016:E16 - Rooster Teeth Olympics: Rio Flip Cup","description":"The Rio Olympics are sure to be a shitshow. To celebrate, we’re hosting our own office Olympics. First event: Rio Flip Cup. It doesn’t matter who wins, because everyone loses.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-rooster-teeth-olympics-rio-flip-cup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e5b1b1a-77be-4f25-be42-24b3dff6af1f/sm/2013912-1470324639131-FlipCupThumb_03b.png","duration":211,"publication_date":"2016-08-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-3-season-3-trailer","changefreq":"weekly","video":[{"title":"S3:E1 - Million Dollars, But… Season 3 – Official Trailer","description":"Million Dollars, But... is back with new twisted scenarios, hilarious new guests, and the same deranged humor you know and love.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-3-season-3-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c30d05f9-7560-4c64-9acb-910308bbd541/sm/2013912-1470237974362-MDBs3-thumb-HD.jpg","duration":63,"publication_date":"2016-08-03T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-387-post-show","changefreq":"weekly","video":[{"title":"2016:E29 - Podcast #387 Post Show","description":"Join Gus Sorola, Chris Demarais, Jon Risinger, Burnie Burns, and special guests Kirk Johnson and Nick Rutherford as they discuss Crunch Time, shirtless selfies, and more on this week’s special public RT Podcast Post Show! To see more exclusive content like this, sign up for Rooster Teeth FIRST at http://roosterteeth.com/first.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-387-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40065b16-b6f8-4508-a1ae-2d71e1991e43/sm/2013912-1470238441785-rtp387_-_PS_-_THUMB.jpg","duration":2194,"publication_date":"2016-08-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-fish-dressing-387","changefreq":"weekly","video":[{"title":"2016:E387 - The Fish Dressing - #387","description":"Join Gus Sorola, Chris Demarais, Jon Risinger, and Burnie Burns as they discuss bizarre cooking, Twitter etiquette, remakes, and more on this week's RT Podcast! This episode originally aired on August 1, 2016, sponsored by Betterment (http://bit.ly/2aYdbwx), Blue Apron (http://cook.ba/29J4MMj), Braintree (http://bit.ly/2aYdvv5)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-fish-dressing-387","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f7bd752-28e7-406c-b5f9-10cc2249dbd8/sm/2013912-1470150929499-rtp387_-_THUMB.jpg","duration":5626,"publication_date":"2016-08-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-blaine-s-virgin-debacle","changefreq":"weekly","video":[{"title":"2016:E25 - Blaine's Virgin Debacle","description":"Blaine scores with a girl who claims to be a virgin, but finds out later that maybe she was lying. Come to think of it, this is a weird story to tell, why did we animate this?\n\n\n\nAudio from RT Podcast #366","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-blaine-s-virgin-debacle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f08222ef-35a2-420c-99a1-10165bd7d12e/sm/2013912-1469821667087-rtaa235tn.jpg","duration":100,"publication_date":"2016-08-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-5-day-5-episode-6-wide-awake","changefreq":"weekly","video":[{"title":"S1:E6 - Episode 6: Wide Awake","description":"In the season finale, alliances at Dr. Abrams' facility are pushed to a breaking point, and Ellis' group puts their theory to the ultimate test.","player_loc":"https://roosterteeth.com/embed/day-5-day-5-episode-6-wide-awake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe327f68-181b-45dc-aae5-cdcf7704f8a9/sm/2013912-1469819700870-Day5_e06_01.png","duration":2954,"publication_date":"2016-07-31T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-13-meta-vs-carolina-dawn-of-awesome","changefreq":"weekly","video":[{"title":"S14:E13 - Death Battle: Episode 13: Meta vs. Carolina: Dawn of Awesome","description":"The top of the Freelancer leader board is taking on the scariest mute in the galaxy. All bets are off! It's time for a DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-13-meta-vs-carolina-dawn-of-awesome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3604daa0-d6fa-40f3-a604-1c58e0989d30/sm/2013912-1469810845229-RvB_EP_013.png","duration":1060,"publication_date":"2016-07-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-66-post-show","changefreq":"weekly","video":[{"title":"S6:E9 - Turtles Need Loving Too - #66 Post Show","description":"Making out with turtles and making perfect rings with your excrement. These are the skills you too can learn about when you watch the On The Spot post show.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-66-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac596c68-1f41-4c59-81e0-d8d8bfad3eca/sm/2013912-1469821076863-ots_66post_thumb.jpg","duration":697,"publication_date":"2016-07-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-13","changefreq":"weekly","video":[{"title":"S1:E13 - Episode 13 - Spin the Bottle","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad0768eb-017a-4716-8c0b-916abfcc3788/sm/2013912-1469806345677-RWBY_CHIBI_THUMBNAIL_EPISODE_013.png","duration":207,"publication_date":"2016-07-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-66","changefreq":"weekly","video":[{"title":"S6:E66 - The Motorboat Incident - #66","description":"Let's take a moment to talk about how to quit drugs, debate whether or not a man can be motorboated and even leave some time to discuss the comedic properties of degenerative neurological diseases. All with our special guest from Crunch Time, Rooster Teeth's new upcoming series, Avery Monsen. This episode originally aired July 28, 2016 and is sponsored by Blue Apron (http://cook.ba/2aQ2bBu) and Loot Crate (http://bit.ly/2aQ25ti)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c9fcc1e-e27c-4ddc-ab2a-844f896490c0/sm/2013912-1469813699028-OTS66_thumb.jpg","duration":2123,"publication_date":"2016-07-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-romeo-juliet-i-i-love-ressurrected-camp-camp-episode-7","changefreq":"weekly","video":[{"title":"S1:E10 - Romeo & Juliet II: Love Resurrected – Episode 7","description":"Preston makes the kids put on a play. Max steals David's phone. The Flower Scouts stalk Neil, and David meets someone new.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-romeo-juliet-i-i-love-ressurrected-camp-camp-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59d73b51-4a01-42bb-bafc-3119389159a4/sm/2013912-1469805263670-cc1_ep07_tn.jpg","duration":665,"publication_date":"2016-07-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-july-28-2016","changefreq":"weekly","video":[{"title":"2016:E12 - Burnie’s Vlog: July 28, 2016","description":"Burnie fills us in on what’s going on at Rooster Teeth in August and beyond.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-july-28-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/614e6f9e-348a-4268-bfa3-bc854d67a6de/sm/2013912-1469720919479-FIRSTvlogthumb-072816.jpg","duration":377,"publication_date":"2016-07-28T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-386-post-show","changefreq":"weekly","video":[{"title":"2016:E28 - Podcast #386 Post Show","description":"Join Jon Risinger, Gavin Free, Barbara Dunkelman, and Blaine Gibson as they discuss redeeming yourself, keg stands, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-386-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6cda22d-8b08-4e05-bc00-7e207c98b90d/sm/2013912-1469635541572-rtp386_-_PS_-_THUMB.jpg","duration":1265,"publication_date":"2016-07-27T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-dicks-out-for-harambe-386","changefreq":"weekly","video":[{"title":"2016:E386 - Dicks Out For Harambe - #386","description":"Join Jon Risinger, Gavin Free, Barbara Dunkelman, and Blaine Gibson as they discuss #dicksoutforharambe, dating, innies vs. outies, and more on this week's RT Podcast! This episode originally aired on July 25, 2016, sponsored by MeUndies (http://bit.ly/2aGm9yg), Naturebox (http://bit.ly/2aGm9hW), and Squarespace (http://bit.ly/2aGmDo9)","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-dicks-out-for-harambe-386","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/285c42d1-656e-416f-9ed3-c7d1fa853e1e/sm/2013912-1469547319130-rtp386_-_THUMB.jpg","duration":6189,"publication_date":"2016-07-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-flop-flippin-ninja-turtles","changefreq":"weekly","video":[{"title":"2016:E24 - Flop-Flippin' Ninja Turtles","description":"Geoff confuses Millie about flip flops, Kerry wonders what a life in Japan would be like, and Chris talks about his master plan to become a Ninja Turtle.\n\n\n\nAudio from Let's Build - Storm the Tower\n\nFan Service Podcast #0.3\n\nand RT Podcast #342","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-flop-flippin-ninja-turtles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ff50a7e-217b-41da-b336-7c5854076635/sm/2013912-1469226610134-rtaa234tn.jpg","duration":105,"publication_date":"2016-07-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-5-day-5-episode-5-beacons-in-the-dark","changefreq":"weekly","video":[{"title":"S1:E5 - Episode 5: Beacons in the Dark","description":"Lex unveils her research to Ally; Ellis investigates a mysterious signal.","player_loc":"https://roosterteeth.com/embed/day-5-day-5-episode-5-beacons-in-the-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9ea135f-12c4-48cc-9ccf-7865bc8b047e/sm/2013912-1469204246837-Day5_e05_07_1.png","duration":2701,"publication_date":"2016-07-24T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-12-fight-the-good-fight","changefreq":"weekly","video":[{"title":"S14:E12 - Episode 12: Fight the Good Fight","description":"Attention soldiers! The [ENEMY COLOR] Army is upon us! Only YOU can stop them! Join the [FRIENDLY COLOR] Army today!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-12-fight-the-good-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3cdcf74-c7b7-4da3-a2d8-7606dd474f84/sm/2013912-1469219953703-RvB_EP_012.png","duration":402,"publication_date":"2016-07-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-65-post-show","changefreq":"weekly","video":[{"title":"S6:E8 - Beware the Wlindlingos! - #65 Post Show","description":"South of the wall? South of the border? Same thing. RIght?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-65-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa71368e-1137-4095-97e6-d394b336e76e/sm/2013912-1469213358488-ots_65post_thumb.jpg","duration":460,"publication_date":"2016-07-23T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-12","changefreq":"weekly","video":[{"title":"S1:E12 - Episode 12 - Little Red Riding Hood","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70e60158-8735-47a7-82c2-36da78f3c664/sm/2013912-1469219712550-RWBY_CHIBI_THUMBNAIL_EPISODE_012.png","duration":363,"publication_date":"2016-07-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-65","changefreq":"weekly","video":[{"title":"S6:E65 - Praise be to RAPTOR JESUS? - #65","description":"And on the third day he rose from mosquito encased in amber and said \"Life findeths a way. Amen!\" This episode originally aired July 21, 2016 and is sponsored by MVMT Watches (http://bit.ly/28SayyH) and Trunk Club (http://bit.ly/2930z9x)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15cf7832-3135-4e91-b50d-d22e73d59d71/sm/2013912-1469212217794-ots_65_thumb.jpg","duration":2556,"publication_date":"2016-07-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-camp-camp-midseason-live-stream","changefreq":"weekly","video":[{"title":"S1:E8 - Midseason Live Stream","description":"Join some of the Camp Camp Team Team for a midseason discussion of the show so far, make a BIG announcement, and tease upcoming episodes and projects from RT Animation. It's camptastic!","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-camp-camp-midseason-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/713b6aaa-f3f3-40e6-8dc4-4bb917b95bfe/sm/2013912-1469200871518-cc1_ep06_tn.jpg","duration":1860,"publication_date":"2016-07-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-reigny-day-camp-camp-episode-6","changefreq":"weekly","video":[{"title":"S1:E9 - Reigny Day – Episode 6","description":"Camp Campbell is visited by the Camp Critic Committee, and David is ready to impress them and win the prestigious (to him) Counselor of the Year Award. But when rain hits and all the campers are forced to stay in the mess hall, David must make new plans. Meanwhile, Nikki and Max search for Neil, who has gone missing.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-reigny-day-camp-camp-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcc63729-c6bc-4367-b759-aa99f14d0038/sm/2013912-1469200997717-cc1_ep06_tn.jpg","duration":579,"publication_date":"2016-07-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-funhaus-investigations","changefreq":"weekly","video":[{"title":"2016:E15 - Funhaus Investigations","description":"James and Adam try to solve a mystery that has been plaguing the Funhaus offices. Will they find the answers to this COLD case?","player_loc":"https://roosterteeth.com/embed/rt-life-2016-funhaus-investigations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0208365-d2c8-4005-9b90-dea4c14cdc0e/sm/2013912-1469115250369-FridgeThumb_07.png","duration":81,"publication_date":"2016-07-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-385-post-show","changefreq":"weekly","video":[{"title":"2016:E27 - Podcast #385 Post Show","description":"Join Jeremy Dooley, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss binaural recording, the building blocks of smell, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-385-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86ed712e-39e7-455d-8f40-2e3c47ccaf97/sm/2013912-1468967413756-rtp385_-_PS_-_THUMB.jpg","duration":1991,"publication_date":"2016-07-20T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-ah-vs-funhaus-squashing-beef-385","changefreq":"weekly","video":[{"title":"2016:E385 - AH vs. Funhaus: Squashing Beef - #385","description":"Join Jeremy Dooley, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the AH/Funhaus beef, Pokemon GO, barf bags, and more on this week's RT Podcast! Plus, stick around after the credits for a special interview with Andre Meadows and Katie Wilson! This episode originally aired on July 18, 2016, sponsored by Audible (http://adbl.co/29J7sJW), Blue Apron (http://cook.ba/29J4MMj), and Harry’s (http://hrys.co/28SDlmw).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-ah-vs-funhaus-squashing-beef-385","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dea0d4f-4d2c-4595-8413-7638215aa6b9/sm/2013912-1468941742413-rtp385_-_THUMB.jpg","duration":7894,"publication_date":"2016-07-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-poppin-boners-with-gavin-geoff","changefreq":"weekly","video":[{"title":"2016:E23 - Poppin' Boners with Gavin & Geoff","description":"Gavin and Geoff hypothesize what a world where your boners made sounds would be like. They also talk about the hottest cast member from the hit '90s sitcom Friends. Who is yours? Comment below. \n\nAudio from Let's Build - Storm the Tower","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-poppin-boners-with-gavin-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/439aa614-9000-4fa7-baed-c5d32a684161/sm/2013912-1468630931655-rtaa233tn.jpg","duration":79,"publication_date":"2016-07-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-5-day-5-episode-4-sweet-dreams","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4: Sweet Dreams","description":"New clues converge in Dallas, while Ally attempts a dangerous reunion in Austin.","player_loc":"https://roosterteeth.com/embed/day-5-day-5-episode-4-sweet-dreams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea86e3ec-6b15-4dd7-89bc-3915d4f6e909/sm/2013912-1468523016757-Day5_e04_01.png","duration":2635,"publication_date":"2016-07-17T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-11-consequences","changefreq":"weekly","video":[{"title":"S14:E11 - Episode 11: Consequences","description":"There are no rewards or punishments.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-11-consequences","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/685bba18-8c2b-47fe-bc8f-3c8bec6663e5/sm/1769531-1468645529035-RvB_EP_011.png","duration":627,"publication_date":"2016-07-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-the-22-worst-places-to-play-pokemon-go","changefreq":"weekly","video":[{"title":"S7:E19 - The 22 WORST PLACES to Play Pokemon Go","description":"Thieves using lures to rob people. People finding dead bodies in fields. This shit just got real.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-the-22-worst-places-to-play-pokemon-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80e552bb-3413-4b6f-bb75-0de5969638b8/sm/2013912-1468728525809-PokemonThumb_05.png","duration":110,"publication_date":"2016-07-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-glass-cracking-at-343-000-fps","changefreq":"weekly","video":[{"title":"S1:E61 - Exploding Glass at 343,000fps","description":"Gav and Dan record glass cracking so slow that it almost gives you a look into another plain of existence.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-glass-cracking-at-343-000-fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01d94395-5885-4912-b33f-2d82084334d6/sm/82-1468784745486-Screen_Shot_2016-07-17_at_14.06.55.jpg","duration":570,"publication_date":"2016-07-17T12:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-what-s-an-anus-baby-64-post-show","changefreq":"weekly","video":[{"title":"S6:E7 - What's an Anus Baby? - #64 Post Show","description":"It's not what you're thinking. It's worse. Much, much worse.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-what-s-an-anus-baby-64-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/707e2341-6824-460c-affe-9b50eb299d80/sm/2013912-1468607048076-ots_64post_thumb.jpg","duration":776,"publication_date":"2016-07-16T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-11","changefreq":"weekly","video":[{"title":"S1:E11 - Episode 11 - Nurse Ruby","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c802f51-5d27-4344-8c21-2b4de0f2fdb5/sm/2013912-1468613104736-RWBY_CHIBI_THUMBNAIL_EPISODE_011.png","duration":309,"publication_date":"2016-07-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-64","changefreq":"weekly","video":[{"title":"S6:E64 - We're Getting a Call from HR - #64","description":"Look for our brand new product line of Blaine Gibson Sex Dolls and Aaron Marquis Dildos, coming this fall in the Rooster Teeth Store. This episode originally aired July 14, 2016 and is sponsored by Blue Apron (http://cook.ba/29yXWg2) and Kaspersky (http://bit.ly/29yXJcM)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b46cc72b-1663-4733-b265-262dc117aecb/sm/2013912-1468606245704-ots_64_thumb.jpg","duration":2398,"publication_date":"2016-07-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-docs-the-world-s-greatest-head-massage-the-world-s-greatest-head-massage-an-asmr-journey-part-two","changefreq":"weekly","video":[{"title":"TWGHM:E4 - The World's Greatest Head Massage: An ASMR Journey (Part Two)","description":"In the second half of this two-part documentary, Burnie Burns and Gavin Free travel to Pushkar, India in search of the Cosmic Barber Baba Sen, who first piqued Gavin and Burnie's interest in ASMR.","player_loc":"https://roosterteeth.com/embed/rt-docs-the-world-s-greatest-head-massage-the-world-s-greatest-head-massage-an-asmr-journey-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d16cb7f2-8e51-49ab-ba34-7e5480f62a33/sm/2013912-1468510400994-WGHM-thumb-p2-og.jpg","duration":2302,"publication_date":"2016-07-15T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-july-14-2016","changefreq":"weekly","video":[{"title":"2016:E11 - Burnie’s Vlog: July 14, 2016","description":"Burnie uses his sweet new vlogging setup to fill us in on what’s up with Rooster Teeth for the rest of July.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-july-14-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9227c7e-2cf5-4a1d-bbaa-0d72f1ae8bf9/sm/2013912-1468437569116-vlogthumb_071416.jpg","duration":651,"publication_date":"2016-07-14T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-pokemon-go-turf-war","changefreq":"weekly","video":[{"title":"2016:E14 - Pokemon GO Turf War","description":"This week, Rooster Teeth takes over a gym in the name of Team Instinct. Can they fight off the forces of Team Valor and Team Mystic?","player_loc":"https://roosterteeth.com/embed/rt-life-2016-pokemon-go-turf-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7be8fe24-110f-451d-8fd4-7c4081251942/sm/2013912-1468510736978-PokemonThumb_01.png","duration":151,"publication_date":"2016-07-14T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-384-post-show","changefreq":"weekly","video":[{"title":"2016:E26 - Podcast #384 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Burnie Burns as they discuss gun control and recent shooting tragedies on this week’s RT Podcast Post Show.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-384-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97a7fe62-722a-42ff-b183-91f23f7fd9f4/sm/2013912-1468423289832-rtp384_-_PS_-_THUMB.jpg","duration":2689,"publication_date":"2016-07-13T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-pokemon-go-problems-384","changefreq":"weekly","video":[{"title":"2016:E384 - Pokemon GO Problems - #384","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Pokemon GO, Ghostbusters, Gravity, and more on this week's RT Podcast! This episode originally aired on July 12, 2016, sponsored by Casper (http://bit.ly/29tyrJv), Squarespace (http://bit.ly/290ucbK), and Trunk Club (http://bit.ly/29tyrJm).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-pokemon-go-problems-384","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b889b1be-10f5-46de-8091-a2a14955477f/sm/2013912-1468337524733-rtp384_-_THUMB.jpg","duration":5964,"publication_date":"2016-07-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-robots-in-this-guy","changefreq":"weekly","video":[{"title":"2016:E22 - Robots in this Guy","description":"The AH guys think about what they'd do if they had the Transformers element that transforms into anything. Not surprisingly, it mostly has to do with torturing Gavin. \n\n\n\nAudio from Off Topic Podcast #9","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-robots-in-this-guy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7b4dffa-e208-4d5b-9a6a-7fd947424ba2/sm/2013912-1468015682313-rtaa232tn.jpg","duration":75,"publication_date":"2016-07-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-10-call","changefreq":"weekly","video":[{"title":"S14:E10 - Episode 10: Call","description":"Complications may arise.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-10-call","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecaae56f-2932-4056-9667-99b8925e20f9/sm/2013912-1467923425170-RvB_EP_010.png","duration":694,"publication_date":"2016-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-10","changefreq":"weekly","video":[{"title":"S1:E10 - Episode 10 - Love Triangle","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff7b0ae1-774d-4631-b643-82d07f077a27/sm/2013912-1467923261869-RWBY_CHIBI_THUMBNAIL_EPISODE_010.png","duration":261,"publication_date":"2016-07-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-goodbye-free-play-65","changefreq":"weekly","video":[{"title":"S2:E65 - Goodbye Free Play! - #65","description":"It’s Free Play! Someone’s cutting onions in the Broadcast studio as Meg, Ryan, Tyler, Mariel and RTX attendees send Free Play off by taking a look back at their favorite moments from the show.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-goodbye-free-play-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b39acc5-09ec-4648-b864-1916e9d7aff7/sm/2013912-1467995987758-fp65_-_THUMB_Crew.jpg","duration":1328,"publication_date":"2016-07-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-63","changefreq":"weekly","video":[{"title":"S6:E63 - NOBODY WINS! - On The Spot #63 featuring Game Grumps","description":"I blacked out 2 minutes in. What happened? This episode originally aired on July 7, 2016 and is sponsored by Pizza Hut (http://bit.ly/29nPSef)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa47cf92-10c2-47fc-bd80-7469099d9b03/sm/690915-1468011602588-IMG_3677.JPG","duration":3892,"publication_date":"2016-07-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-docs-the-world-s-greatest-head-massage-the-world-s-greatest-head-massage-an-asmr-journey-part-one","changefreq":"weekly","video":[{"title":"TWGHM:E3 - The World's Greatest Head Massage: An ASMR Journey (Part One)","description":"Join Burnie Burns and Gavin Free in this two-part documentary that investigates the world of autonomous sensory meridian response (ASMR) and the ASMR artists (or ASMRtists) who make content online. Watch Part 2 today!","player_loc":"https://roosterteeth.com/embed/rt-docs-the-world-s-greatest-head-massage-the-world-s-greatest-head-massage-an-asmr-journey-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/396ecbf0-a410-4de7-8b35-27b59af71ff4/sm/2013912-1467840797694-WGHM-thumb-p1-og.jpg","duration":1577,"publication_date":"2016-07-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-journey-to-spooky-island-camp-camp-episode-5","changefreq":"weekly","video":[{"title":"S1:E7 - Journey to Spooky Island – Episode 5","description":"After a suspicous Quartermaster warns them not to, Max, Neil, and Nikki venture out to the mysterious Spooky Island to hunt for ghosts, but the kids get more than they bargained for.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-journey-to-spooky-island-camp-camp-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d11f3ba3-a045-46dd-ad84-af6921fe725c/sm/2013912-1467948332062-cc1_ep05_tn.jpg","duration":672,"publication_date":"2016-07-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-five-nights-at-rooster-teeth","changefreq":"weekly","video":[{"title":"2016:E13 - Five Nights at Rooster Teeth","description":"Chris, Aaron, and Zach leave no man behind as they try and survive Five Nights at Rooster Teeth at RTX 2016. Blaine was there, too.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-five-nights-at-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93fe9ec0-fd5e-478f-a055-377f109efc4a/sm/2013912-1467909621414-FNRT_Thumb07.jpg","duration":162,"publication_date":"2016-07-07T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-383","changefreq":"weekly","video":[{"title":"2016:E383 - Gavin or Gaggle 2: Gag Harder – #383","description":"Live from RTX, join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss gross stories, RTX, bad signs, and more on this week's RT Podcast! This episode originally aired on July 4, 2016, sponsored by Pizza Hut (http://bit.ly/29gDg90) and Casper (http://bit.ly/29gCLvr).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-383","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b301236f-9e28-44ac-9e2d-79d5f7864753/sm/2013912-1467748677909-rtp383_-_THUMB.jpg","duration":5003,"publication_date":"2016-07-05T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-best-friends-fake-girlfriends","changefreq":"weekly","video":[{"title":"2016:E21 - Best Friends & Fake Girlfriends","description":"Gus and Burnie discuss the notion of a \"best friend,\" and Geoff pranks his friend Frank by making Griffon pretend to be his girlfriend. \n\n\n\n\nAudio from RT Podcast #355 and #361 Post Show","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-best-friends-fake-girlfriends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4ec7db9-2ff6-4bd2-b366-c5194a5adb83/sm/2013912-1467348983608-rtaa231_tn.jpg","duration":103,"publication_date":"2016-07-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-5-day-5-episode-3-night-terrors","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3: Night Terrors","description":"As Ellis heads for Dallas, Jake, Sam, and Ally are diverted by a new kind of foe.","player_loc":"https://roosterteeth.com/embed/day-5-day-5-episode-3-night-terrors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c94ad284-2b4e-4fa6-b8c5-ff9eaa686105/sm/2013912-1467738772206-Day5_e03_01b.png","duration":2428,"publication_date":"2016-07-03T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-9","changefreq":"weekly","video":[{"title":"S14:E9 - Episode 9: Club","description":"Paint the town red.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7e3e380-8b31-4853-ae42-1711458339f8/sm/2013912-1467310784106-RvB_EP_09.png","duration":716,"publication_date":"2016-07-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-sheep-fuck-buddies-62-post-show","changefreq":"weekly","video":[{"title":"S6:E6 - Sheep Fuck Buddies! - #62 Post Show","description":"Even sheep fuckers need to find real love.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-sheep-fuck-buddies-62-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/662697db-7d1e-4060-a26f-b89573b2d6e0/sm/2013912-1467304952729-ots_62post_thumb.jpg","duration":550,"publication_date":"2016-07-02T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-9","changefreq":"weekly","video":[{"title":"S1:E9 - Episode 9 - Ren Plays Tag","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b72e58f-8f03-40a7-bd81-e4a0e14621cf/sm/2013912-1467303089893-RWBY_CHIBI_THUMBNAIL_EPISODE_009.png","duration":219,"publication_date":"2016-07-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-10","changefreq":"weekly","video":[{"title":"2016:E23 - Sponsor Play – Dark Souls 3 – Part 10","description":"The last episode EVER…of Sponsor Play.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2459b9ef-3af4-4be1-93be-32b441433f43/sm/2013912-1467303320976-DS3_Pt10.jpg","duration":6232,"publication_date":"2016-07-01T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-the-vin-diesel-universe-theory-62","changefreq":"weekly","video":[{"title":"S6:E62 - The Vin Diesel Universe Theory - #62","description":"\"This time it ain't about just being fast. It's about being really, really...really fast.\" This episode\noriginally aired June 30, 2016 and is sponsored by MVMT Watches (http://bit.ly/28SayyH)and Trunk Club\n(http://bit.ly/2930z9x)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-the-vin-diesel-universe-theory-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecef8c31-1740-4600-b754-1f1d10ddc548/sm/2013912-1467304763277-ots_62_thumb.jpg","duration":1931,"publication_date":"2016-07-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-camp-cool-kidz-camp-camp-episode-4","changefreq":"weekly","video":[{"title":"S1:E6 - Camp Cool Kidz – Episode 4","description":"The kids take control of Camp Campbell in a revolution led by Max. Nikki tries to impress Ered. Max and Neil must fight for their right to party. Campbell pays the camp a visit.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-camp-cool-kidz-camp-camp-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd2f5219-0263-4e1f-92d6-0ec0fb33c9a8/sm/2013912-1467326842130-cc1_ep04_tn.jpg","duration":651,"publication_date":"2016-07-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-grimm-eclipse-launch-trailer","changefreq":"weekly","video":[{"title":"S1:E31 - RWBY: Grimm Eclipse Launch Trailer!","description":"The full version of RWBY: Grimm Eclipse is available now! Get it for PC on Steam here - bit.ly/RWBY-GE and experience the four-player, online, co-op, hack and slash game based on the show. Get ready for intense combat action as you battle Grimm across familiar locations of Remnant including new areas never before seen in the show. Play as Ruby, Weiss, Blake, and Yang in this character-driven adventure that explores new storylines, new Grimm types, and a new villain!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-grimm-eclipse-launch-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daf2e08e-6719-47b2-aef7-63b6418bed7d/sm/2013912-1467239220959-RWBY-GE-trailerthumb-01.jpg","duration":81,"publication_date":"2016-07-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-382-post-show","changefreq":"weekly","video":[{"title":"2016:E25 - Podcast #382 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Burnie Burns as they discuss RTX, virtual reality, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-382-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7583e5ac-1dbc-49aa-98f9-1bf1b5235c00/sm/2013912-1467215368438-rtp382_-_PS_-_THUMB.jpg","duration":501,"publication_date":"2016-06-29T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-382","changefreq":"weekly","video":[{"title":"2016:E382 - Getting Snoop Dogg With High - #382","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss second-hand highs, Kanye West, Game of Thrones and more on this week's RT Podcast! This episode originally aired on June 27, 2016, sponsored by Pizza Hut (http://bit.ly/290v288), Mike and Dave Need Wedding Dates (http://fox.co/28SaleM), Naturebox (http://bit.ly/290uyzc) and Squarespace (http://bit.ly/290ucbK).","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-382","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f5b0215-c1ff-4aff-bc69-53d7616e0a94/sm/2013912-1467129353783-rtp382_-_THUMB.jpg","duration":7576,"publication_date":"2016-06-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-introducing-rooster-teeth-first","changefreq":"weekly","video":[{"title":"2016:E10 - Introducing Rooster Teeth FIRST","description":"Rooster Teeth Sponsorship has a new name, more options, and more awesomeness.\n\n\n\nFind out more details in Matt’s journal: http://roosterteeth.com/post/51272680","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-introducing-rooster-teeth-first","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac4ab8eb-89a3-406a-b669-cfae66630043/sm/669363-1467083166408-RT-FIRSTthumb.jpg","duration":233,"publication_date":"2016-06-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-samantha-the-neighbor-cat","changefreq":"weekly","video":[{"title":"2016:E20 - Samantha the Neighbor Cat","description":"Michael talks about how his neighbor's cat always comes to visit them, and Lindsay's obsession with being its friend despite the less-than-hygenic locations it frequents.\n\nAudio from Off Topic Podcast #10","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-samantha-the-neighbor-cat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d55dfa38-b491-4f28-a813-dcb2fe3d5d90/sm/2013912-1467041380773-rtaa230_tn.jpg","duration":106,"publication_date":"2016-06-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-5-day-5-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2: Cognitive Dissonance","description":"Ellis's plan hits a snag, just in time for some sleepless delirium to settle in.","player_loc":"https://roosterteeth.com/embed/day-5-day-5-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67dc597d-4222-431c-a6a9-1612785a577f/sm/2013912-1466800478930-Day5_e02_01b.png","duration":2525,"publication_date":"2016-06-26T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-8","changefreq":"weekly","video":[{"title":"S14:E8 - Episode 8: The #1 Movie in the Galaxy: 3","description":"The stunning conclusion to the epic trilogy nobody ever asked for.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c99445d4-ff50-4e3e-9f20-d56d1c871c17/sm/2013912-1466710679218-RvB_EP_08.png","duration":234,"publication_date":"2016-06-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-exploding-spray-paint-at-2500-fps","changefreq":"weekly","video":[{"title":"S1:E60 - Exploding Spray Paint at 2500fps","description":"Gav and Dan seem to have lost their paint brushes. However, not all is lost. They are The Slow Mo Guys after all. Do not try at home!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-exploding-spray-paint-at-2500-fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b5c427e-9975-4a79-a49b-a4c8ce608931/sm/82-1466969843639-Screen_Shot_2016-06-25_at_9.30.45_AM.jpg","duration":600,"publication_date":"2016-06-26T12:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-who-gave-joel-a-b-e-l-l-61-post-show","changefreq":"weekly","video":[{"title":"S6:E5 - WHO GAVE JOEL A BELL? - #61 Post Show","description":"We're gonna need to start strip searching guests.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-who-gave-joel-a-b-e-l-l-61-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34159d43-dd61-41a3-9bff-bae6add915f3/sm/2013912-1466793514071-ots_61post_thumb.jpg","duration":586,"publication_date":"2016-06-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - Episode 8 - Magnetic Personality","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d76f4f06-0256-4a76-830a-e50eda1fdd60/sm/2013912-1466708241129-RWBY_CHIBI_THUMBNAIL_EPISODE_008.png","duration":222,"publication_date":"2016-06-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-9","changefreq":"weekly","video":[{"title":"2016:E22 - Sponsor Play – Dark Souls 3 – Part 9","description":"Ok so I know I said the rage is real way back in episode 1 but you have NO idea.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b57fbf2-49f0-4a81-822b-33185d4bf556/sm/2013912-1466795617815-DS3_Pt9.jpg","duration":2184,"publication_date":"2016-06-24T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-developers-love-nintendo-n-x","changefreq":"weekly","video":[{"title":"2016:E290 - Developers LOVE Nintendo NX?","description":"That darned NX isn't even announced yet but no one can stop talking about it, including developers! Ubisoft is singing its praises once again, so I guess we can count on a dozen more Just Dance titles coming our way.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-developers-love-nintendo-n-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bb66e6a-0299-4ed0-8308-6bccf11f7ed7/sm/24363-1474670107224-thumbnail.jpg","duration":432,"publication_date":"2016-09-23T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-oculus-founder-funding-trump-political-shitposting","changefreq":"weekly","video":[{"title":"2016:E289 - Oculus Founder FUNDING Trump Political Shitposting","description":"Ugh, who spilled a presidential election in our video games? Palmer Luckey, that's who. Turns out the VR Chosen One is so bored with his hundreds of millions of dollars he's funding a political shitposting group. Yeah, that's a thing you can fund! We were surprised too.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-oculus-founder-funding-trump-political-shitposting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3233cbfd-27e1-4a55-94ee-5b0f1c414838/sm/24363-1474665149799-thumbnail.jpg","duration":551,"publication_date":"2016-09-23T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-174-post-show","changefreq":"weekly","video":[{"title":"2016:E9 - Games Series We Want More Of - Patch #174 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and Adam Ellis as they discuss Dungeon Siege, American McGee’s Alice, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-174-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/981f9ab4-1a57-471e-bc6b-e1ad32cf2f1f/sm/2013912-1474645576931-p174_-_PS_-_THUMB.jpg","duration":653,"publication_date":"2016-09-23T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-heroes-will-destroy-you-tube","changefreq":"weekly","video":[{"title":"2016:E64 - YouTube Heroes Will DESTROY YouTube?","description":"Welcome to YouTube Heroes. This new program rewards users who do nice stuff, like add captions for videos, but also rewards users who go around flagging videos en masse. Is this one more step on the road to destroying the whole platform?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-heroes-will-destroy-you-tube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cc2a8c7-e67e-4e0a-96b5-313c5b3c3621/sm/24363-1474583614793-thumbnail.jpg","duration":566,"publication_date":"2016-09-22T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-star-wars-rogue-one-expected-to-f-a-i-l-well","changefreq":"weekly","video":[{"title":"2016:E44 - Star Wars: Rogue One Expected to FAIL? Well...","description":"Star Wars: Rogue One isn't expected to do as well as The Force Awakens. THE TRAVESTY! IT'S ALL OVER! STAR WARS IS DEAD! Or maybe not, because The Force Awakens was kind of a special case.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-star-wars-rogue-one-expected-to-f-a-i-l-well","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e804fdd8-246d-4673-97b2-ab56c0c7a3dc/sm/24363-1474577508198-thumbnail.jpg","duration":455,"publication_date":"2016-09-22T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-no-man-s-sky-content-confirmed-pachter-is-sorry-reddit-takes-down-north-korea","changefreq":"weekly","video":[{"title":"2016:E72 - New No Man's Sky Content Confirmed + Pachter is Sorry + Reddit Takes Down North Korea","description":"Giddy up! It's a roundup! We've got new No Man's Sky coming, but of course it didn't come from Sean Murray because he'd have to return to the internet to do that. Michael Pachter has apologized for comparing PC gamers to racists, but he swears he didn't call them twits. Reddit has taken down North Korea (kind of) on accident, probably. From Software is teasing their next projects. Battle.net is retiring. Localization companies are too good at games.... and there's more where that came from!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-no-man-s-sky-content-confirmed-pachter-is-sorry-reddit-takes-down-north-korea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76c33f4c-dce2-40a3-a496-ca7cc8667f18/sm/24363-1474570807330-thumbnail.jpg","duration":454,"publication_date":"2016-09-22T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-p-cs-get-bio-shocked-174","changefreq":"weekly","video":[{"title":"2016:E174 - PC Gamers Getting Ripped Off? - #174","description":"Join Gus Sorola, Ashley Jenkins, Adam Ellis, and Ryan Haywood as they discuss BioShock: The Collection, Destiny: Rise of Iron, PC port issues, collectibles, and more on this week's The Patch! This episode originally aired on September 21, 2016. Sponsored by MeUndies (http://bit.ly/29jAkYU) and MVMT Watches (http://bit.ly/29xlwX4)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-p-cs-get-bio-shocked-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d466373b-9ba6-49fb-ba5b-513ceb5ef81a/sm/2013912-1474564149147-p174_-_TEMP_THUMB.jpg","duration":3800,"publication_date":"2016-09-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-microsoft-ps4-pro-c-a-n-t-do-4-k","changefreq":"weekly","video":[{"title":"2016:E288 - Microsoft: PS4 Pro CAN'T Do 4K","description":"Despite their best efforts, we're going to make this console war rage as long as we can. Give us those views, baby!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-microsoft-ps4-pro-c-a-n-t-do-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b2658ab-df89-4fd5-a3d2-c6a1ec657686/sm/2371242-1474501586211-FH_Thumb_13_copy_8.jpg","duration":409,"publication_date":"2016-09-22T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-analyst-pc-gamers-are-like-racists","changefreq":"weekly","video":[{"title":"2016:E287 - PC Gamers \"Like Racists\" & \"Arrogant Twits\" Says Analyst","description":"Video game analysts sure do like to say a lot of stuff that may or may not be true, but it's very rare that they throw millions of gamers under the bus all at once. But no job is too big for infamous analyst Michael Pachter. ","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-analyst-pc-gamers-are-like-racists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59088642-b5c2-4507-a7f9-422886229cf0/sm/24363-1474497861019-thumbnail.jpg","duration":518,"publication_date":"2016-09-21T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-paladins-ripped-off-overwatch-developer-responds","changefreq":"weekly","video":[{"title":"2016:E286 - Paladins RIPPED OFF Overwatch? Developer Responds","description":"Paladins: Champions of the Realm is newly released on Steam's early access and... huh. This game looks a lot like Overwatch. Almost like it copied it. But don't let developer HiRez hear you say that or they will write a very long reddit post at you.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-paladins-ripped-off-overwatch-developer-responds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/363532e0-5342-4ba1-9eee-133bf8c95d45/sm/24363-1474487491871-thumbnail.jpg","duration":529,"publication_date":"2016-09-21T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-forza-horizon-3-is-it-good","changefreq":"weekly","video":[{"title":"2016:E285 - Forza Horizon 3: Is It GOOD?","description":"Reviews are in for Forza Horizon 3. So if you're trying to decide if it's worth the money, we've got the answer. Maybe.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-forza-horizon-3-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a47556ee-084e-4d74-a403-7389638e14b2/sm/24363-1474416761734-forza_horizon_3_is_it_good.jpg","duration":421,"publication_date":"2016-09-21T00:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-nx-confirmed-more-nx-details-revealed","changefreq":"weekly","video":[{"title":"2016:E284 - Pokemon NX Confirmed + More NX Details Revealed!","description":"We've got confirmation that Game Freak is working on a Pokemon game for Nintendo NX, plus, The Pokemon Company's confirmed more details about the NX itself.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-nx-confirmed-more-nx-details-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/395535ee-d5e2-4243-b049-fc089632d4bd/sm/24363-1474405899786-thumbnail.jpg","duration":538,"publication_date":"2016-09-20T21:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-bioshock-pc-remasters-suck-streamer-mugged-playing-pokemon-go-robot-arrested","changefreq":"weekly","video":[{"title":"2016:E71 - Bioshock PC Remasters SUCK + Streamer MUGGED Playing Pokemon GO + Robot ARRESTED","description":"Yet another PC port is released broken. A streamer got mugged live, which is like a next level swatting. A robot has been arrested in a country you'd never guess. We could be seeing less of Mad Max and more of Furiosa. Harry Potter's home is up for sale--no, not the castle. More NX news may be leaked... and that's just the start!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-bioshock-pc-remasters-suck-streamer-mugged-playing-pokemon-go-robot-arrested","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e22d94a7-01f0-4d2a-a53e-7eb9b54a2191/sm/24363-1474398271963-thumbnail.jpg","duration":512,"publication_date":"2016-09-20T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-funhaus-dies-with-mr-sark-verdun-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E498 - PS4 Pro's Backwards Compatibility SUCKS? ","description":"Take THAT, Sony ponies. All hail the X-bots or whatever the Internet calls them these days. BOOM ROASTED.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:VICE Gaming - Don't Expect Most of Your Old Games to Get Updated for PS4 Pro: http://www.vice.com/read/dont-...Eurogamer - The Witcher 3: Wild Hunt will not support PlayStation 4 Pro features: http://www.eurogamer.net/artic...\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWritten By: Lawrence SonntagHosted By: Bruce Greene, Lawrence Sonntag, and Elyse Willems\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnowFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\n\n\n\n\n\n\n\n\n\n\n\n\nRooster Teeth Store: http://bit.ly/1rH5ixT Rooster Teeth: http://roosterteeth.com/ Achievement Hunter: http://achievementhunter.comBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\n\n\n\n\n\n\n\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3GumSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0Subscribe to The Know Channel: http://bit.ly/1zhUav4Subscribe to the Funhaus Channel: http://bit.ly/17qQNJjSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYxSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-funhaus-dies-with-mr-sark-verdun-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/380c1344-6bd9-41c6-9690-d16477eb8ab6/sm/2371242-1474329303713-PS4_Pro_has_no_games.png","duration":416,"publication_date":"2016-09-20T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-digital-homicide-removed-from-steam","changefreq":"weekly","video":[{"title":"2016:E497 - Developer BANNED From Steam","description":"Remember last week when developer Digital Homicide tried to sue Steam users for leaving negative comments about their games and tried to drag Valve into it? Well, this is the gift that keeps on giving...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-digital-homicide-removed-from-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2073fb30-6d6d-4fc2-9a7a-687f59c9bb1a/sm/24363-1474328338672-banned_from_steam_thumbnail.jpg","duration":421,"publication_date":"2016-09-19T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2016-get-to-know-bio-sshock-the-collection","changefreq":"weekly","video":[{"title":"2016:E2 - Get to Know... BioShock: The Collection","description":"Settle in for an evening of BioShock with a new coat of paint! also some booze and interruptions from cats, probably.","player_loc":"https://roosterteeth.com/embed/past-livestreams-2016-get-to-know-bio-sshock-the-collection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fb9e515-99b6-4945-a49d-a16f0575f37e/sm/24363-1474179185582-bioshock_stream.jpg","duration":22860,"publication_date":"2016-09-19T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-kojima-disses-new-metal-gear","changefreq":"weekly","video":[{"title":"2016:E496 - Kojima BLASTS New Metal Gear's Zombies","description":"Kojima's been pretty quiet on the whole business with Konami, but that's all changing now. He's put Metal Gear Survive on blast for being unrealistic for the Metal Gear universe.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-kojima-disses-new-metal-gear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfc14d8a-78d8-430f-bb92-098440d28eb1/sm/24363-1474316863110-kojima_vs_zombies_thumbnail.jpg","duration":400,"publication_date":"2016-09-19T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-livestreams-2016-get-to-know-recore","changefreq":"weekly","video":[{"title":"2016:E1 - Get to Know... RECORE","description":"Settle in for an evening of ReCore. the first Xbox Play Anywhere title is out, but the reviews are all over the place. So if you want to see it in action before you make a decision... well, you can do that here!","player_loc":"https://roosterteeth.com/embed/past-livestreams-2016-get-to-know-recore","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e442dbc7-5396-4fed-863d-16b81caf81b4/sm/24363-1474133295177-recore_thumbnail.jpg","duration":13419,"publication_date":"2016-09-18T06:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-hates-no-mans-sky","changefreq":"weekly","video":[{"title":"2016:E495 - PlayStation Throws No Man's Sky Under the Bus","description":"Gamers aren't the only ones who feel like Hello Games messed up big time with No Man's Sky. Even Sony's Shuhei Yoshida thinks the game over promised and under delivered.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-hates-no-mans-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9be90d0-0c6a-426f-a6ea-c5c102bec15b/sm/24363-1474071284657-nms_thumbnail.jpg","duration":541,"publication_date":"2016-09-17T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-digital-homicide-sues-steam-users","changefreq":"weekly","video":[{"title":"2016:E494 - Steam Gamers SUED for Negative Comments!","description":"You guys thought key activation reviews not counting towards a game's score on Steam was bad? Try getting sued for leaving negative comments! That's exactly what's happening to more than 100 gamers... and that may be surprising, until you realize it's the studio Digital Homicide behind it. Then it all makes sense.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-digital-homicide-sues-steam-users","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64802670-026a-4d6b-8adb-a3d200970ec2/sm/24363-1474060561380-thumbnail.jpg","duration":581,"publication_date":"2016-09-16T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-173-post-show","changefreq":"weekly","video":[{"title":"2016:E8 - Obsession with Completion - Patch #173 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and Adam Ellis as they discuss 100% game completion, achievements, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-173-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92cd8831-9cce-422b-a485-4b7f81583e7b/sm/2013912-1473965794015-p173_-_PS_-_THUMB.jpg","duration":639,"publication_date":"2016-09-16T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-will-the-last-guardian-s-u-c-k","changefreq":"weekly","video":[{"title":"2016:E493 - The Last Guardian DISAPPOINTING?","description":"The Last Guardian may be delayed, but it's still playable at Tokyo Game Show. Unfortunately, impressions of the game are less than favorable and they're not the kind of issues that could be solved by December...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-will-the-last-guardian-s-u-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dcfb2f1-9484-417e-b731-6a4bd8dea14d/sm/24363-1473979068661-thumbnail.jpg","duration":489,"publication_date":"2016-09-15T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-studios-layoffs","changefreq":"weekly","video":[{"title":"2016:E492 - PlayStation Hit With Layoffs","description":"When it rains, it pours. And right now it seems like there's a storm cloud hanging over PlayStation. Two of the company's development studios have been hit with heavy lay-offs. Even their new VR efforts are feeling the knife, and some of their upcoming games may be quietly axed.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-studios-layoffs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/508e9964-9510-4d30-b0a5-c68e246ec07e/sm/24363-1473972654598-thumbnails.jpg","duration":421,"publication_date":"2016-09-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-09152016-round-up-the-know","changefreq":"weekly","video":[{"title":"2016:E70 - Resident Evil 7 NEW DETAILS + Harley Quinn Movie Details + NO Bioshock Streaming","description":"TGS is kind of quiet this year but at least we got new details about Resident Evil 7! We've also got streaming lockdowns for Bioshock: The Collection, early news about DC's spin-off Harley Quinn movie... and Batman details for that matter, \"restructuring\" moves by EA, your unemployed future because of robots, and more!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-09152016-round-up-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22c2e62c-3026-4b45-b357-0fdd7649f168/sm/24363-1473965828253-thumbnail.jpg","duration":496,"publication_date":"2016-09-15T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-connecting-it-all-with-ropes-and-sticks-173","changefreq":"weekly","video":[{"title":"2016:E173 - PlayStation in Trouble? - #173","description":"Join Gus Sorola, Ashley Jenkins, Adam Ellis, and Ryan Haywood as they discuss PlayStation’s week, ReCore, Mass Effect Andromeda, and more on this week's The Patch! This episode originally aired on September 14, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn) and Trunk Club (http://cook.ba/29jAjEn)\n\n\n\n\n\n\n\n\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\n\n\n\n\n\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-connecting-it-all-with-ropes-and-sticks-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d35c931-b991-4478-b97b-b92360a4e9ff/sm/2013912-1473955023502-p173_-_THUMB.jpg","duration":3709,"publication_date":"2016-09-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-kojima-s-death-stranding-first-d-e-t-a-i-l-s-the-know","changefreq":"weekly","video":[{"title":"2016:E491 - Kojima's Death Stranding FIRST DETAILS! - The Know","description":"Death Stranding is like a butterfly with one wing. It's beautiful, but it can't flap around and land on flowers. So tragic, so beautiful. We love you Kojima.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSOURCES:Kojima's TGS Presentation: Cook Some Eggs: \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWritten By: Lawrence SonntagHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnowFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\n\n\n\n\n\n\n\n\nRooster Teeth Store: http://bit.ly/1rH5ixT Rooster Teeth: http://roosterteeth.com/ Achievement Hunter: http://achievementhunter.comBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\n\n\n\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3GumSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0Subscribe to The Know Channel: http://bit.ly/1zhUav4Subscribe to the Funhaus Channel: http://bit.ly/17qQNJjSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYxSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-kojima-s-death-stranding-first-d-e-t-a-i-l-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dd93c66-fda7-4b45-89a9-bd778e27dc43/sm/2371242-1473891264835-FH_Thumb_13_copy_1.jpg","duration":485,"publication_date":"2016-09-15T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-turning-into-facebook","changefreq":"weekly","video":[{"title":"2016:E77 - YouTube Becomes FACEBOOK?","description":"YouTube's just announced an exciting crazy new feature... that does just about what every other social site on the planet does. Actually, it sounds quite a bit like Facebook. Cool? ","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-turning-into-facebook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3631d78-5a28-4075-8bc9-b61786d693c0/sm/24363-1473892374338-thumbnail.jpg","duration":504,"publication_date":"2016-09-14T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-self-driving-cars-learning-from-gta","changefreq":"weekly","video":[{"title":"2016:E76 - GTA V Teaching Self Driving Cars!","description":"Blame video games for the singularity! Researchers are now using GTA V to teach self-driving cars how to navigate the streets. And probably how to pull off their own heists. It's only a matter of time.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-self-driving-cars-learning-from-gta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/696bf23f-32ab-4f21-9994-f211d32e5265/sm/24363-1473882128605-thumbnail.jpg","duration":381,"publication_date":"2016-09-14T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-devs-outraged-by-steam-reviews","changefreq":"weekly","video":[{"title":"2016:E490 - Steam Review Changes DESTROYING Indie Devs?","description":"Steam is making tweaks to the review system to cut down on corrupt developers gaming the system, but they may be destroying indie developers in the process... at least, that's how the indie devs feel.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-devs-outraged-by-steam-reviews","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa385bb8-08ef-43e1-bbd6-1e3b3b5d81e5/sm/24363-1473811069142-steam_review_thumbnail.jpg","duration":491,"publication_date":"2016-09-13T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-adblock-plus-now-with-ads","changefreq":"weekly","video":[{"title":"2016:E75 - Adblock Plus: Now With Ads!","description":"Remember when you got tired of dealing with ads on all that free content you consume and installed Adblock Plus? Good news! They know what you REALLY want: ads! That's why, instead of showing you the ads the creators benefit from, they'll show you their own ads that THEY benefit from! Do we sound bitter? Can't imagine why.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-adblock-plus-now-with-ads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfaaca16-4ada-49dc-ab48-55c846394edb/sm/24363-1473803320359-thumbnail.jpg","duration":520,"publication_date":"2016-09-13T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-xbox-live-beats-psn-re-core-s-u-c-k-s-sega-throws-shade-over-dmca","changefreq":"weekly","video":[{"title":"2016:E69 - Xbox Live Beats PSN + ReCore SUCKS? + SEGA Throws Shade Over DMCA","description":"An independent study conveniently promoted by Xbox Wire claims Xbox Live is a better service than PSN, reviews are in for ReCore and... well, they're kind of all over the place, but overall probably not what Xbox was hoping to launch Xbox Play Anywhere with, and SEGA is throwing shade at Nintendo over their DMCA treatment of fan games. Also, stuff about space! It's a roundup!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-xbox-live-beats-psn-re-core-s-u-c-k-s-sega-throws-shade-over-dmca","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b7cf403-a6b0-4e56-975a-981d5561fce7/sm/24363-1473791692050-thumbnail.jpg","duration":505,"publication_date":"2016-09-13T18:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-last-guardian-delayed-a-g-a-i-n-the-know","changefreq":"weekly","video":[{"title":"2016:E489 - The Last Guardian Delayed AGAIN!? - The Know","description":"Oh no, not for the eighteenth time! I told myself seventeen was IT. What am I supposed to do without my precious dogbird?\n\n\n\nSOURCES:\n\nPlayStation Blog Announcement: http://blog.us.playstation.com/2016/09/12/an-updat...\n\nThe Last Guardian E3 2009 Announcement: \n\nEurogamer 2015 Interview /w Shuhei Yoshida: http://www.eurogamer.net/articles/2015-06-26-shuhe...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-last-guardian-delayed-a-g-a-i-n-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abffce0d-5d2c-43fa-a98a-8e880c9cc3eb/sm/2371242-1473726775065-FH_Thumb_12_copy_1.jpg","duration":434,"publication_date":"2016-09-13T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-samsung-galaxy-note-7-is-a-death-trap-please-stop-using-it","changefreq":"weekly","video":[{"title":"2016:E74 - Samsung Galaxy Note 7 is a DEATH TRAP (please stop using it)","description":"In case you haven't got the memo, the Samsung Galaxy Note 7 is exploding and if you need to have one you need to turn it off right now and not use it again. Man, and last week we were upset about the iPhone 7's headphone jack... just wait until they add explosions to the iPhone 8!","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-samsung-galaxy-note-7-is-a-death-trap-please-stop-using-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0746a972-73f0-4d05-859a-3eef70920844/sm/24363-1473717609198-thumbnail.jpg","duration":419,"publication_date":"2016-09-12T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-pro-competes-with-p-c","changefreq":"weekly","video":[{"title":"2016:E488 - PS4 Pro COMPETES with PC!?","description":"Sony's so far ahead in the current generation of consoles they don't even see Xbox as competition for PS4 anymore. Instead, they want PS4 Pro to take on Gaben and the army of Steam.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-pro-competes-with-p-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3eb8aa0-4639-43f8-92da-371731e6db7b/sm/710924-1473707760818-thumbnail2.jpg","duration":554,"publication_date":"2016-09-12T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-our-neverending-nightmares","changefreq":"weekly","video":[{"title":"2016:E9 - Our Neverending Nightmares","description":"Join Ashley Jenkins, Gus Sorola, and Ryan Haywood as they discuss Neverending Nightmares on this month's Patch Game Club! This episode originally aired on September 7, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-our-neverending-nightmares","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78fc4846-bf9e-42a1-a876-6114403c20a9/sm/2013912-1473453702132-gc_-_Nightmare_-_THUMB.jpg","duration":1158,"publication_date":"2016-09-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-fallout-4-mods-on-playstation-4","changefreq":"weekly","video":[{"title":"2016:E487 - Mod Support CANCELLED on PS4","description":"Remember when you bought your PS4 version of Fallout 4 and you were super excited for mods? Hold onto that feeling, because it's the last fuzzy one you'll ever have. We're now in the darkest timeline, where that feature has been cancelled! And for Skyrim HD too! WHAT HATH PLAYSTATION WROUGHT?!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-fallout-4-mods-on-playstation-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba435791-ca07-4ec1-8eb8-c47757ea1d48/sm/24363-1473529126469-ps4_mod_thumbnail.jpg","duration":455,"publication_date":"2016-09-10T17:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-charging-for-ps4-pro-updates","changefreq":"weekly","video":[{"title":"2016:E486 - Sony Charging for PS4 Pro Game Updates?","description":"The internet's freaking out that Sony might charge gamers over patches for the PS4 Pro! Don't worry, they're not going to do that, but it sounds like they ARE charging developers, which still isn't very good for gamers.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-charging-for-ps4-pro-updates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d176752-af9e-4e06-ac92-c7713578cfd9/sm/710924-1473456321251-thumbnail.jpg","duration":380,"publication_date":"2016-09-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-episode-3","changefreq":"weekly","video":[{"title":"2016:E485 - Can Mario on Phones SAVE Nintendo!?","description":"Super Mario Run is going to be downloaded a BILLION times? That's the number, according to one crazy analyst... who might actually have a point.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/782fd6e1-122f-4f6a-b835-bd57c5c887f8/sm/710924-1473456234373-thumbnail.jpg","duration":347,"publication_date":"2016-09-09T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-172-post-show","changefreq":"weekly","video":[{"title":"2016:E7 - Most Immersive Games - Patch #172 Post Show","description":"Join Gus Sorola, Ashley Jenkins, and special guest Ray Cox as they discuss game immersion, the elder scrolls, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-172-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/435e5f22-9276-4d83-a89b-b82a658a4203/sm/2013912-1473436775823-p172_-_PS_-_THUMB.jpg","duration":785,"publication_date":"2016-09-09T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-playstation-4-pro-doesn-t-have-real-4-k","changefreq":"weekly","video":[{"title":"2016:E484 - People ALREADY Disappointed by PS4 Pro","description":"We're only 24 hours out from the announcement of the PS4 Pro, and already people are upset about resolutions, framerates, and who knows what else at this point. Is the console enough of an upgrade to justify the price?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-playstation-4-pro-doesn-t-have-real-4-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d432a4be-4cbf-4135-b276-8117113188f9/sm/710924-1473369481943-disappointed_in_ps4_pro_thumbnail.jpg","duration":553,"publication_date":"2016-09-08T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-mass-effect-andromeda-info-spore-beating-no-man-s-sky-peta-vs-farm-simulator","changefreq":"weekly","video":[{"title":"2016:E70 - New Mass Effect Andromeda Info + Spore Beating No Man's Sky + PETA vs Farm Simulator","description":"We've got more information about Mass Effect Andromeda following yesterday's gameplay reveal, more people are playing Spore than No Man's Sky, and PETA is going after a game instead of people who actually abuse animals. VIDEO GAMES!\r\n\r\n\r\n\r\nWritten By: Eddy Rivas\r\n\r\nHosted By: Ashley Jenkins","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-mass-effect-andromeda-info-spore-beating-no-man-s-sky-peta-vs-farm-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d758d547-13c3-4cfe-82c9-2a29ddffc4af/sm/24363-1473358467023-thumbnail.jpg","duration":419,"publication_date":"2016-09-08T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-dmca-it-all-172","changefreq":"weekly","video":[{"title":"2016:E172 - PS4 Pro Worth Upgrading? - #172","description":"Join Gus Sorola, Ashley Jenkins, Ryan Haywood, and special guest Ray Cox as they discuss DMCAs, Sony’s press conference, early access game controversies, and more on this week's The Patch! This episode originally aired on September 7, 2016. Sponsored by NatureBox (http://bit.ly/2caUffK) and Loot Crate (http://bit.ly/2caUqYx)\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-dmca-it-all-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f054d377-f292-410e-86b9-51699af0b622/sm/2013912-1473353347836-p172_-_THUMB.jpg","duration":3811,"publication_date":"2016-09-08T16:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-13","changefreq":"weekly","video":[{"title":"2016:E492 - iPhone 7 Announced! Does It Suck? - The Know","description":"We don't know yet, but every time we ask a silly question in the title the video gets way more views. Also there's nothing wrong with Blink 182, but let's be honest, they're not punk.\n\n\n\n\n\nSOURCES:\n\n\n\nApple Conference: Only on their own OS looooool (it's re-upped YouTube)\n\n\n\nSuper Mario Run Kotaku Confirmation: http://kotaku.com/official-new-mario-game-announce...\n\n\n\nSuper Mario Run Press Release: https://www.nintendo.co.jp/corporate/release/en/20...\n\n\n\niPhone Sales Falloff Prediction: http://www.businessinsider.com/apple-iphone-sales-...","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a59fa065-abb9-4434-978d-014ef72eabc7/sm/2371242-1473296546511-FH_Thumb_12_copy_32.jpg","duration":677,"publication_date":"2016-09-08T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-playstation-4-pro-announced","changefreq":"weekly","video":[{"title":"2016:E491 - Playstation 4 PRO Announced!","description":"Continuing the long tradition of super cool code names and slightly underwhelming official product names, the PS4 Neo has officially been unveiled as... PS4 Pro. Here's everything we know about it based on the announcements today.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-playstation-4-pro-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1e15178-4c85-44fe-b3ab-ff5c4269cdf0/sm/24363-1473290022838-thumbnail.jpg","duration":459,"publication_date":"2016-09-07T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-you-tuber-arrested-for-pokemon-g-o","changefreq":"weekly","video":[{"title":"2016:E490 - YouTuber ARRESTED for Pokemon GO?","description":"In Soviet Russia, Pokemon Catches You. And that's exactly what's happened to one YouTuber, who's facing years in prison for playing Pokemon Go in a Russian church. Pokemon No!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-you-tuber-arrested-for-pokemon-g-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3a19be3-82ef-40b1-a437-a42c102d893e/sm/1779-1473274748591-thumbnail.jpg","duration":414,"publication_date":"2016-09-07T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-wants-pokemon-go","changefreq":"weekly","video":[{"title":"2016:E489 - Sony COPYING Pokemon Go?","description":"Pokemon Go has been such a commercial success that others are taking notice. Specifically, Ridge Racer superfan Kaz Hirai, who wants Sony to aggressively go after the mobile market and get some of those poke-dollars.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-wants-pokemon-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbe88369-d4fc-4406-ad09-a912d4f0d71c/sm/24363-1473209646729-thumbnail.jpg","duration":429,"publication_date":"2016-09-07T00:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-vr-is-d-e-a-d","changefreq":"weekly","video":[{"title":"2016:E488 - VR is DEAD?","description":"Look, we need to talk about VR. We get it. We've talked about it constantly on The Patch. We all have it and we love it. But that's not the case for everyone. In fact, it's not the case for MOST people. This new frontier of gaming could be in some real trouble.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-vr-is-d-e-a-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e586e324-d181-4be5-abfe-aa7eb86b47cb/sm/24363-1473199862567-thumbnail.jpg","duration":454,"publication_date":"2016-09-06T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-c-o-d-infinite-warfare-brigaded-no-mario-s-sky-dmc-aed-red-dead-redemption-remaster","changefreq":"weekly","video":[{"title":"2016:E69 - COD: Infinite Warfare Brigaded + No Mario's Sky DMCAed + Red Dead Redemption Remaster","description":"Call of Duty: Infinite Warfare dropped a multiplayer trailer... and was immediately swarmed by the dislike brigade. The Mario/No Man's Sky mash up fan game has been hit with a DMCA notice, to no one's surprise, but that won't keep it down. The new Red Dead announcement may not be so new after all. Warner Bros. accidentally issued DMCA takedown notices on their own content. And that's just the start. Welcome back from Labor Day.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-c-o-d-infinite-warfare-brigaded-no-mario-s-sky-dmc-aed-red-dead-redemption-remaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d46addd5-0d3a-425c-989b-a0d1315644ce/sm/24363-1473190366391-thumbnail.jpg","duration":482,"publication_date":"2016-09-06T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-paid-dlc-for-an-early-access-game","changefreq":"weekly","video":[{"title":"2016:E487 - PAID DLC for an EARLY ACCESS Game!?","description":"What's better than paying for a game that's not finished? Paying for DLC for a game that's not finished, obviously. Ark: Survival Evolved knows what you want, and they're giving it to you, whether you like it or not.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-paid-dlc-for-an-early-access-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43992539-e4f1-4ecb-8444-00bca334cffa/sm/24363-1472865706490-thumbnai.jpg","duration":414,"publication_date":"2016-09-03T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-dmc-as-562-fan-games","changefreq":"weekly","video":[{"title":"2016:E486 - Nintendo DMCAs 562 Fan Games","description":"Nintendo's up to their old DMCA tricks again. Only this time, they managed to knock out more than 500 fan games all at the same time. They probably earned a couple of 1-ups for that.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-dmc-as-562-fan-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9a30e95-46e7-46b2-80f4-7e71276a8ffc/sm/1779-1472839921328-thumbnail.jpg","duration":477,"publication_date":"2016-09-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-171-post-show","changefreq":"weekly","video":[{"title":"2016:E6 - Best Video Game Openings - Patch #171 Post Show","description":"Join Ashley Jenkins, Burnie Burns, and Mica Burton as they discuss video game openings, disappointing endings, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-171-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9871f11c-1c97-47df-90ba-0a094dda4de2/sm/2013912-1472829735831-p171_-_PS_-_THUMB.jpg","duration":1052,"publication_date":"2016-09-02T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-1-attacked","changefreq":"weekly","video":[{"title":"2016:E485 - Battlefield 1 ATTACKED","description":"The Battlefield 1 public beta kicked off with all kinds of fireworks, including DDoS attacks that had the whole thing tangled up for up to 10 hours. Stick with it! Gotta get that horse combat!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-1-attacked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34545cc9-0ab2-4870-b439-74770e47ff9b/sm/24363-1472784947710-thumbnail.jpg","duration":447,"publication_date":"2016-09-02T02:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-censoring-top-content-creators","changefreq":"weekly","video":[{"title":"2016:E77 - YouTube CENSORING Top Content Creators?","description":"Everyone's in a panic about YouTube's new policy of turning off monetization for controversial videos. But... IS it new? You might be surprised.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-censoring-top-content-creators","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65e3bec6-c221-4efc-9838-36a1bd875035/sm/24363-1472776951792-thumbnail.jpg","duration":602,"publication_date":"2016-09-02T00:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-mgs-v-will-never-be-finished-no-man-s-sky-refund-numbers-nx-is-region-free","changefreq":"weekly","video":[{"title":"2016:E68 - MGS V Will Never be Finished + No Man's Sky Refund Numbers + NX is Region Free?","description":"We suspect Konami LIKES making people mad because they've done it again, we have numbers on how many people rage-refunded No Man's Sky, MORE NX details have leaked out ahead of the console's official reveal, Fauxstronauts are done with Fake Mars, there may be more Assassin's Creed this year, and more..... it's a roundup!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-mgs-v-will-never-be-finished-no-man-s-sky-refund-numbers-nx-is-region-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7c98e0e-7dcd-417b-b501-c266330989ed/sm/24363-1472764062576-thumbnail.jpg","duration":496,"publication_date":"2016-09-01T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-171","changefreq":"weekly","video":[{"title":"2016:E171 - We Demand a Refund! - #171","description":"Join Ashley Jenkins, Burnie Burns, and Mica Burton as they discuss video game refunds, physical vs digital copies, controversies, and more on this week's The Patch! This episode originally aired on August 31, 2016. Sponsored by Casper (http://bit.ly/2bBXb8f) and MVMT Watches (http://bit.ly/29xlwX4)\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/053ab3bf-6282-4e72-871f-faef518f5cdf/sm/2013912-1472743498075-p171_-_THUMB.jpg","duration":4148,"publication_date":"2016-09-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-steam-hit-by-patent-troll","changefreq":"weekly","video":[{"title":"2016:E484 - Steam Hit by PATENT TROLL","description":"The internet's got a new troll to deal with: the oldest telecommunications company in the world. They're going after Valve and Steam for violating a bunch of patents and they want all those sweet Steam bucks to compensate.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-steam-hit-by-patent-troll","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fbd883a-5a0c-463f-add3-a316e15647fe/sm/24363-1472696652106-thumbnail.jpg","duration":511,"publication_date":"2016-09-01T02:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-alien-signal-detected-what-does-it-mean","changefreq":"weekly","video":[{"title":"2016:E76 - ALIEN SIGNAL Detected: What Does It Mean?","description":"2016:E76 - ALIEN SIGNAL Detected: What Does It Mean?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-alien-signal-detected-what-does-it-mean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42ae05bb-b593-4a03-afa3-546ff32f052a/sm/1779-1472682013558-thumbnail.jpg","duration":510,"publication_date":"2016-08-31T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pewdiepie-want-to-make-you-internet-famous-sort-of","changefreq":"weekly","video":[{"title":"2016:E483 - Pewdiepie Wants to Make You FAMOUS... in Tuber Simulator","description":"PewDiePie just announced his SECOND video game in development, Tuber Simulator. It's based on a game that's based on his life, and it's all about getting more famous than PewDiePie himself.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pewdiepie-want-to-make-you-internet-famous-sort-of","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e51940e-bf7b-4865-887b-33abfb970294/sm/24363-1472595891135-thumbnail.jpg","duration":455,"publication_date":"2016-08-30T23:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-neo-design-price-l-e-a-k-e-d","changefreq":"weekly","video":[{"title":"2016:E482 - PS4 NEO Design & Price LEAKED?","description":"We're just one week away from what might be the announcement of the PS4 Neo... which means there's still plenty of time for more stuff to leak! Some new leaks might have given us some hints about the PS4 Neo's design, as well as its price.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-neo-design-price-l-e-a-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0fbd3c4-fe86-4b04-a35f-b4e70cc8848d/sm/24363-1472594104944-thumbnail.jpg","duration":566,"publication_date":"2016-08-30T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-publishers-wrong-about-game-piracy-gran-turismo-delayed-harambe-s-revenge","changefreq":"weekly","video":[{"title":"2016:E67 - Publishers WRONG About Game Piracy? + Gran Turismo DELAYED + Harambe's Revenge","description":"PC Gamer gathered some interesting data about pirates, Gran Turismo Sport gets hit with a sudden delay, and Harambe made a beyond the grave appearance at a highschool football game. And trust us, that's not even the weirdest news in today's round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-publishers-wrong-about-game-piracy-gran-turismo-delayed-harambe-s-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54546ed3-53e5-4004-b712-db3537d6a002/sm/24363-1472584187249-thumbnail.jpg","duration":503,"publication_date":"2016-08-30T19:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-law-comes-to-pokemon-go","changefreq":"weekly","video":[{"title":"2016:E481 - The LAW Comes to Pokemon Go","description":"If people keep playing Pokemon GO on the road in California, the only place they'll be catching 'em all is in prison. That's because California lawmakers have proposed a law to make it illegal to drive while capturing Pokemon.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-law-comes-to-pokemon-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca22eeec-18af-4070-92c8-854773bef4b7/sm/24363-1472509051311-thumbnail.jpg","duration":523,"publication_date":"2016-08-29T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-refunds-for-everyone","changefreq":"weekly","video":[{"title":"2016:E480 - No Man's Sky REFUNDS for Everyone!","description":"Major retailers went lax on their refund policies this weekend, prompting thousands of No Man's Sky returns on Steam, PSN, and Amazon. At what point is it OK to request your money back? Asking for a friend.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-refunds-for-everyone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d967845f-823c-4b4c-a66b-5c5bc66fccc1/sm/24363-1472497289544-thumbnail.jpg","duration":506,"publication_date":"2016-08-29T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-nx-will-be-better-than-wii-u","changefreq":"weekly","video":[{"title":"2016:E479 - NX WON'T FAIL, Nintendo Promises \"To Do Better\"","description":"Nintendo's saying that they'll do a much better job with the NX, plus we've got a ton of other rumors from multiple sources about the nature of the NX controllers.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-nx-will-be-better-than-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e64d7cf-ff26-4059-bd0b-d83f394a370e/sm/238166-1472247922415-thumbnail.jpg","duration":484,"publication_date":"2016-08-26T21:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-1-premium-pass-a-rip-off","changefreq":"weekly","video":[{"title":"2016:E478 - Battlefield 1 Premium Pass: WORTH IT or RIP OFF?","description":"Is Battlefield 1's $50 Premium Pass worth the price, or is it just EA getting back up to its old tricks? EA announced where some of your $50 is going, but it might be awhile before you actually get to play it.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-1-premium-pass-a-rip-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fce9495-d0eb-4409-8e08-0246f5ba7cef/sm/24363-1472241727448-thumbnail.jpg","duration":495,"publication_date":"2016-08-26T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-170-post-show","changefreq":"weekly","video":[{"title":"2016:E5 - Best Video Games Soundtracks - Patch #170 Post Show","description":"Join Gus Sorola, Adam Ellis, Ashley Jenkins, and Ryan Haywood as they discuss video game soundtracks, DLC, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-170-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d68a652-f55a-4c0f-897d-d2824026a67d/sm/2013912-1472225314263-p170_-_PS_-_THUMB.jpg","duration":1015,"publication_date":"2016-08-26T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-game-steals-assets","changefreq":"weekly","video":[{"title":"2016:E477 - PS4 Game Steals Assets","description":"Oops. Looks like an indie PS4 game may not have been so homegrown at all. Come hear the saga of Solbrain, an RPG lovingly crafted from a bunch of other games you've probably already played.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-game-steals-assets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fadb33a-1fb2-40ed-95a0-ae049711e473/sm/238166-1472165334895-thumbnail.jpg","duration":423,"publication_date":"2016-08-25T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-facebook-v-steam","changefreq":"weekly","video":[{"title":"2016:E476 - Facebook Is The New Steam ","description":"Valve's dominated PC gaming for years, but now a new challenger arrives! And it's... Facebook, who is apparently gearing up to get in the PC gaming business with their own desktop platform.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-facebook-v-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca64920-85f7-4f39-b7b3-fdb72f7dca71/sm/238166-1472157255427-thumbnail.jpg","duration":456,"publication_date":"2016-08-25T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-deus-ex-pre-order-problems-overwatch-arg-goes-nowhere-we-found-a-new-earth","changefreq":"weekly","video":[{"title":"2016:E66 - Deus Ex Pre-Order Problems + Overwatch ARG Goes Nowhere + We Found a New Earth?!","description":"People are mad about so much stuff in today's round-up! They're mad at Deus Ex over pre-orders, they're mad at Blizzard about the Overwatch ARG, and they're also mad EXCITED about a new Earth.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-deus-ex-pre-order-problems-overwatch-arg-goes-nowhere-we-found-a-new-earth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/396c4c1b-91c3-434b-ba8b-30d167d5117d/sm/238166-1472151637473-thumbnail.jpg","duration":489,"publication_date":"2016-08-25T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-170","changefreq":"weekly","video":[{"title":"2016:E170 - Deus Ex: Consoles Divided - #170","description":"Join Gus Sorola, Adam Ellis, Ashley Jenkins, and Ryan Haywood as they discuss Deus Ex: Mankind Divided, pre-order controversies, Titanfall 2, and more on this week's The Patch! This episode originally aired on August 25, 2016. Sponsored by MVMT Watches (http://bit.ly/29xlwX4) and Trunk Club (http://bit.ly/28NEl7x)\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a3bec6c-5a68-4568-9af2-5c8407dcbe00/sm/2013912-1472139727643-p170_-_TEMP_THUMB.jpg","duration":3812,"publication_date":"2016-08-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-titanfall-2-beta-angers-players-changes-coming","changefreq":"weekly","video":[{"title":"2016:E475 - Titanfall 2: Huge Changes","description":"How do you make sure that fans love your beta for Titanfall 2? You change everything that they loved about the first game! Oh wait, don't do that. They'll get really mad about it. Like, really mad.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-titanfall-2-beta-angers-players-changes-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/351fff7f-3afb-46a0-be60-e16665419431/sm/238166-1472077646985-thumbnail.jpg","duration":424,"publication_date":"2016-08-24T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-top-5-m-o-d-s-the-know","changefreq":"weekly","video":[{"title":"2016:E474 - No Man's Sky TOP 5 MODS! - The Know","description":"Before you take the easy burn, no there's not a mod that adds multiplayer. Actually go ahead and leave it in the comments anyway, it's not like anyone reads these things.\n\n\n\nSOURCES:\n\nLowFlight by Hytek: http://www.nexusmods.com/nomanssky/mods/80/?\n\nNo Rim Lighting by Apst: http://www.nexusmods.com/nomanssky/mods/22/?\n\nReduced Launch Cost by Lex: http://www.nexusmods.com/nomanssky/mods/50/?\n\nFast Actions by shadwar: http://www.nexusmods.com/nomanssky/mods/28/?\n\nDeep Space by Emmett Brown: http://www.nexusmods.com/nomanssky/mods/71/?\n\nDark0ne Post: http://www.nexusmods.com/nomanssky/news/12875/?\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, James Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-top-5-m-o-d-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a903c16-a9ed-473d-91db-49518964ccdc/sm/2371242-1472075039348-FH_Thumb_12_copy_6.jpg","duration":414,"publication_date":"2016-08-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-play-station-coming-to-p-c","changefreq":"weekly","video":[{"title":"2016:E473 - Playstation Games Coming To PC!","description":"PlayStation is jumping over to PC? Soon the master race will be able to turn those ridiculous iceberg-cooled GPU engines to the task of streaming PS3 games... because why not?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-play-station-coming-to-p-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30f51f54-ea38-41c3-af1e-dfef96f9edf1/sm/238166-1472065900323-thumbnail.jpg","duration":455,"publication_date":"2016-08-24T19:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-did-no-man-s-sky-f-a-i-l","changefreq":"weekly","video":[{"title":"2016:E472 - No Man's Sky Did It FAIL?","description":"No Man's Sky had a huge drop-off in sales for its second week, and now the internet's claiming the game is a commercial failure. We decided to take a look at the numbers and see for ourselves.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-did-no-man-s-sky-f-a-i-l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/206acd73-1a33-4c05-adad-f950bd16aba2/sm/238166-1471994494611-thumbnail.jpg","duration":443,"publication_date":"2016-08-23T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-lawsuit-oculus-rift-tech-s-t-o-l-e-n","changefreq":"weekly","video":[{"title":"2016:E75 - Oculus Rift Is STOLEN Tech?","description":"Bethesda's parent company ZeniMax has upped the ante on their lawsuit against Oculus over virtual reality. Now they're calling Palmer Luckey a hack, and claiming that Oculus Rift's tech was STOLEN.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-lawsuit-oculus-rift-tech-s-t-o-l-e-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/295de624-c079-42ff-8de4-cb1c43384eee/sm/238166-1471984987330-thumbnail.jpg","duration":494,"publication_date":"2016-08-23T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-more-infinite-warfare-games-destiny-going-f2-p-suicide-squad-still-number-1","changefreq":"weekly","video":[{"title":"2016:E65 - More Infinite Warfare Games + Destiny Going F2P? + Suicide Squad STILL Number 1","description":"Infinity Ward is talking about MORE Infinite Warfare games, people though Destiny might be going free to play, new Sony handheld rumors, Suicide Squad is still at number 1, and even more crazy news waits in today's round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-more-infinite-warfare-games-destiny-going-f2-p-suicide-squad-still-number-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/438f2125-cfc2-4f4c-9dc3-21482f15ccd3/sm/238166-1471980153693-Roundup_aug_23.jpg","duration":506,"publication_date":"2016-08-23T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-harambe-memes-b-a-n-n-e-d","changefreq":"weekly","video":[{"title":"2016:E74 - Leave Harambe Alone, Zoo Begs","description":"The Cincinnati Zoo is tired of all the Harambe memes. That means the internet's going to have to stop now, right?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-harambe-memes-b-a-n-n-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0eb6bc8-689e-45fe-9399-de97a686a2c6/sm/24363-1471907041454-thumbnail.jpg","duration":462,"publication_date":"2016-08-22T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-slim-leaked","changefreq":"weekly","video":[{"title":"2016:E471 - PS4 Slim LEAKED","description":"We might not be getting one, but TWO new PlayStation 4s announced at the PS Meeting, according to some new leaks over the weekend. The PS4 slim is out in the wild and all but confirmed now... do you think you'll get one?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-slim-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f4eaa9c-e618-4c12-800a-4754ccb61265/sm/238166-1471894271799-thumbnail.jpg","duration":494,"publication_date":"2016-08-22T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-f-i-x-e-d","changefreq":"weekly","video":[{"title":"2016:E470 - No Man's Sky FIXED?","description":"Between No Man's Sky's big PC patch and the sudden mod community springing up around the game, could we finally be getting what we were hoping for all along?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-f-i-x-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/200b3831-74f9-4421-b5ba-659ae51ea2fa/sm/238166-1471644909580-thumbnail.jpg","duration":502,"publication_date":"2016-08-19T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-deus-ex-mankind-divided-is-it-good","changefreq":"weekly","video":[{"title":"2016:E469 - Deus Ex: Mankind Divided: Is It Good?","description":"It's been 5 years since Adam Jensen didn't ask for this. Deus Ex Mankind Divided reviews are finally out, so it's time to ask the age-old question: Is It Good?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-deus-ex-mankind-divided-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57590968-a4e4-4a5c-839d-c285f565ac87/sm/238166-1471635250479-thumbnail.jpg","duration":453,"publication_date":"2016-08-19T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-169-post-show","changefreq":"weekly","video":[{"title":"2016:E4 - Games to Play Before You Die - Patch #169 Post Show","description":"Join Gus Sorola, Adam Ellis, Ashley Jenkins, and Jack Pattillo as they discuss games to play before you die, Mass Effect, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-169-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/603b51e8-fa49-4bfa-9745-fab96a0a3476/sm/2013912-1471624793525-p169_-_PS_-_THUMB.jpg","duration":691,"publication_date":"2016-08-19T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-tekken-7-swimsuits-are-too-s-e-x-y","changefreq":"weekly","video":[{"title":"2016:E468 - Tekken 7 Swimsuits Are TOO SEXY?","description":"Time for more sexy video game news! Tekken 7's director has finally fired back at all the people who criticized the game for having sexy swimsuits.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-tekken-7-swimsuits-are-too-s-e-x-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67d1fa97-ac6c-4c24-abc8-f92fa5037edb/sm/238166-1471558987817-thumbnail.jpg","duration":415,"publication_date":"2016-08-18T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-scorpio-is-microsoft-s-last-console-generation","changefreq":"weekly","video":[{"title":"2016:E467 - Scorpio Is Microsoft's LAST Console Generation?","description":"Is Microsoft Scorpio the Xbox's swan song? The company now says that they expect Scorpio to usher in the very last generation of Xbox consoles.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-scorpio-is-microsoft-s-last-console-generation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a73d5dc-78ea-4858-9a74-69b613397f58/sm/238166-1471554417695-thumbnail.jpg","duration":557,"publication_date":"2016-08-18T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-mass-effect-remasters-coming-coaches-banned-in-csgo-everybody-hates-metal-gear-survive","changefreq":"weekly","video":[{"title":"2016:E64 - Mass Effect Remasters Coming? + Coaches Banned in CSGO + Everybody Hates Metal Gear Survive","description":"Mass Effect remasters may be on the way, Valve has banned coaching from CSGO tournaments, and the internet reacts to Metal Gear Survive. Spoiler alert: they reacted poorly.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-mass-effect-remasters-coming-coaches-banned-in-csgo-everybody-hates-metal-gear-survive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/002b16fe-12e3-4ee3-b286-40d859b93912/sm/238166-1471546816522-Roundup_aug_18.jpg","duration":500,"publication_date":"2016-08-18T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-169","changefreq":"weekly","video":[{"title":"2016:E169 - Farming for Fun and Profit! - #169","description":"Join Gus Sorola, Adam Ellis, Ashley Jenkins, and Ryan Haywood as they discuss No Man’s Sky, Abzu, Bound, and more on this week's The Patch! This episode originally aired on August 17, 2016. Sponsored by Acorns (http://bit.ly/2brzuyK) and NatureBox (http://bit.ly/2bnO0Y3)\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/377b3802-4802-401a-8ab5-edc163a2b335/sm/2013912-1471536274117-p169_-_THUMB.jpg","duration":3972,"publication_date":"2016-08-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-jared-leto-tricked-into-playing-the-joker","changefreq":"weekly","video":[{"title":"2016:E57 - Jared Leto TRICKED Into Playing The Joker?","description":"Are you feeling tricked after seeing Suicide Squad? You're not the only one. The Joker actor Jared Leto now says that he feels he was tricked into doing the movie in the first place.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-jared-leto-tricked-into-playing-the-joker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09582420-3e7b-4ce0-b182-16c0b91f1e4f/sm/238166-1471474459979-thumbnail.jpg","duration":487,"publication_date":"2016-08-17T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-next-metal-gear-is-a-co-op-zombie-game","changefreq":"weekly","video":[{"title":"2016:E466 - Metal Gear Survive: The ZOMBIE Franchise?!","description":"Stop the presses! Konami just announced the first non-Kojima Metal Gear game... and it's just about as Konami as you'd expect it to be. Let's just say there are zombies. And wormholes.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-next-metal-gear-is-a-co-op-zombie-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2564de3-6d02-4ed5-9263-c68db5dacb63/sm/238166-1471460531946-thumbnail.jpg","duration":483,"publication_date":"2016-08-17T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-may-get-paid-d-l-c","changefreq":"weekly","video":[{"title":"2016:E465 - No Man's Sky Gets PAID DLC?","description":"It's only been one week since launch, and already the creator of No Man's Sky is reversing on his position that the game's DLC will always be free. That's going to over really well.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-may-get-paid-d-l-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c08aaabc-71e5-49f2-8495-eb4643e89b27/sm/238166-1471457886582-thumbnail.jpg","duration":438,"publication_date":"2016-08-17T18:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-titanfall-2-beta-announced-not-coming-to-pc","changefreq":"weekly","video":[{"title":"2016:E464 - Titanfall 2 Beta SKIPS PC! ","description":"Titanfall 2's got a beta coming at you... unless you're a PC gamer that is. Is EA going to pull off a PC launch without a beta, or are they just totally crazy?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-titanfall-2-beta-announced-not-coming-to-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b381b69-f1f5-4a69-b417-078242977332/sm/238166-1471445626046-thumbnail.jpg","duration":657,"publication_date":"2016-08-17T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-5","changefreq":"weekly","video":[{"title":"2016:E62 - Red Dead 2 Reveal Next Month? + Battlefield 1 Beta Details + Pokemon Fan Game Shut Down","description":"An insider says Rockstar is making an appearance at the PS4 Neo reveal, Battlefield 1 gets tons of new info, and another Nintendo fan project gets shut down for being too awesome. Can you handle all this news?!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfc87e5f-b07f-4fcd-b948-6f2d821bb198/sm/238166-1471374120880-thumbnail.jpg","duration":492,"publication_date":"2016-08-16T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-fallout-new-orleans","changefreq":"weekly","video":[{"title":"2016:E463 - Fallout New Orleans?","description":"A trademark just hit the tubes for Fallout New Orleans. Could we be playing a new Fallout game where we flash people for beads? Let's hope!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-fallout-new-orleans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d611f1d-8399-4006-a601-76b4c9077db4/sm/238166-1471307541292-thumbnail.jpg","duration":448,"publication_date":"2016-08-16T00:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-final-fantasy-15-delayed-here-s-why-the-know","changefreq":"weekly","video":[{"title":"2016:E462 - Final Fantasy 15 DELAYED - Here's Why! - The Know","description":"Looks like you'll have to reschedule that stomach flu you were planning on getting. Final Fantasy XV is officially delayed, but at least we know why!\n\n\n\nSOURCES:\n\nOfficial announcement: \n\nGamnesia Report: http://www.gamnesia.com/news/report-final-fantasy-...\n\nGamnesia Gamestop Marketing Post: http://www.gamnesia.com/news/leaked-instructions-f...\n\nKotaku Fan Meltdown Compilation: http://kotaku.com/final-fantasy-xv-delay-rumors-tr...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, James Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-final-fantasy-15-delayed-here-s-why-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/672ba338-49fc-4c0e-87c6-dee5613f0796/sm/2371242-1471300242079-FH_Thumb_12_copy_22.jpg","duration":430,"publication_date":"2016-08-15T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-coming-to-xbox-one","changefreq":"weekly","video":[{"title":"2016:E461 - No Man's Sky Coming to Xbox One?","description":"No Man's Sky is finally out on PC and PS4, but new details suggest it could actually be coming to Xbox One as well. Maybe they should have called it No Man's Exclusive instead.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-coming-to-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f415e2-21fb-40cc-88da-b9f323033a39/sm/238166-1471295789302-thumbnail.jpg","duration":505,"publication_date":"2016-08-15T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-and-lo-l-take-legal-action-against-cheaters","changefreq":"weekly","video":[{"title":"2016:E460 - Pokemon GO and LoL Vs Cheaters","description":"Pokemon GO is cracking down on GPS spoofing and Riot Games is suing people who created cheats for League of Legends. Free to play developers don't play around with their microtransactions.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-and-lo-l-take-legal-action-against-cheaters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/920868d2-34aa-454a-a954-9ed9eed88342/sm/238166-1471043491631-thumbnail.jpg","duration":429,"publication_date":"2016-08-12T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-d-do-s-attacks-over-no-man-s-sky-reviews","changefreq":"weekly","video":[{"title":"2016:E459 - DDoS Attacks Over No Man's Sky Reviews","description":"Thinking about writing a bad review of a game the internet is going crazy for? You might just find yourself on the business end of an angry DDoS attack. Because nothing says serious business like reviewing video games.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-d-do-s-attacks-over-no-man-s-sky-reviews","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086266c4-5d7d-40cb-978e-db6166d82cac/sm/238166-1471027385944-thumbnail.jpg","duration":472,"publication_date":"2016-08-12T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-168-post-show","changefreq":"weekly","video":[{"title":"2016:E3 - Physical vs Digital Games - Patch #168 Post Show","description":"Join Eddy Rivas, Jeremy Dooley, Ashley Jenkins, and Ryan Haywood as they discuss digital vs hard copies, No Man’s Sky and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-168-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca352eeb-83b2-49b1-a1f2-23cb7c1e9d48/sm/2013912-1471015133786-p168_-_PS_-_THUMB.jpg","duration":863,"publication_date":"2016-08-12T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-people-choose-pokemon-over-s-e-x","changefreq":"weekly","video":[{"title":"2016:E458 - People Choose Pokemon Over SEX?!","description":"Look, we all like Pokemon Go. But some of us like it more than others. Some of us like it more than SEX. We're looking at you, UK.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-people-choose-pokemon-over-s-e-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cb62378-cc2a-471e-b16c-97b897c621ba/sm/24363-1470961178865-thumbnail.jpg","duration":390,"publication_date":"2016-08-12T00:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-suicide-squad-sued","changefreq":"weekly","video":[{"title":"2016:E56 - Suicide Squad SUED","description":"Remember how the Suicide Squad trailer showed a bunch of The Joker then it turned out he wasn't part of, you know, the squad? One guy is pretty mad about it. So mad he's suing over it.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-suicide-squad-sued","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de8f62e0-b3aa-4c1b-ad28-84310b171eb4/sm/24363-1470951832032-thumbnail.jpg","duration":471,"publication_date":"2016-08-11T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-no-man-s-sky-players-stranded-new-overwatch-hero-hints-ghostbusters-a-flop","changefreq":"weekly","video":[{"title":"2016:E60 - No Man's Sky Players Stranded + New Overwatch Hero Hints + Ghostbusters a Flop","description":"No Man's Sky is leaving some players high and dry with no way to travel, players have been staring at the sun hoping for divine inspiration on their quest for a new Overwatch hero, Ghostbusters may be a ghost bust, Bethesda's not into movies, people are great at wasting stuff, and so much more...","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-no-man-s-sky-players-stranded-new-overwatch-hero-hints-ghostbusters-a-flop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/196c5887-cf74-4286-965e-6b89eab8bf1c/sm/24363-1470939474576-thumbnail.jpg","duration":375,"publication_date":"2016-08-11T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-i-don-t-know-man-s-sky-168","changefreq":"weekly","video":[{"title":"2016:E168 - I Don’t Know Man’s, Sky - #168","description":"Join Gus Sorola, Jeremy Dooley, Ashley Jenkins, and Ryan Haywood as they discuss No Man’s Sky, streaming online, space and more on this week's The Patch! This episode originally aired on August 10, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn)","player_loc":"https://roosterteeth.com/embed/the-patch-2016-i-don-t-know-man-s-sky-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77cedfb2-322d-4357-b95d-e165d43ccbdf/sm/2013912-1470928947075-p168_-_TEMP_THUMB.jpg","duration":3679,"publication_date":"2016-08-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-neo-reveal-s-o-o-n-the-know","changefreq":"weekly","video":[{"title":"2016:E457 - PS4 Neo Reveal SOON?! - The Know","description":"Does this count as an announcement of an announcement? Not technically. It's the IMPLICATION of an announcement of an announcement. Welcome to gaming news.\n\n\n\nSOURCES:\n\nBsusiness Insider Report: http://www.businessinsider.com/sony-announces-sept...\n\nGameblog Report: http://www.gameblog.fr/news/61179-la-ps4-neo-devoi...\n\nVice Gaming Report: http://www.vice.com/read/report-sony-to-unveil-upg...\n\nSamit Sarkar Stream Verification: https://twitter.com/SamitSarkar/status/76314849226...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, James Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-neo-reveal-s-o-o-n-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae7f6421-c8b0-42f5-b4e5-ab47b2100ad5/sm/2371242-1470861755342-FH_Thumb_12_copy_1.jpg","duration":229,"publication_date":"2016-08-10T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-haus-76","changefreq":"weekly","video":[{"title":"2016:E34 - FUNHAUS IN PLAYBOY? - Open Haus #76","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nXXII: “I had towers of journals riddled with drawings and descriptions of this place. Monsters, heroes, kingdoms, mythologies! The more rich and detailed this world became the less time I had to spend in my own. My folks worried a little but they were mostly glad I wasn’t bothering them.”\n\nHarry leaned his head on Farinfoor as he spoke. Something about the simple gesture reeked of arrogance.\n\n“But then something insane happened. A girl talked to me. And well, to be honest, I kinda forgot about my journals after that.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-haus-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17593d5c-6b18-4693-bf0a-88ab9d317e89/sm/2371242-1469834894238-Openhaus_Thumbnail_8-2-16.jpg","duration":678,"publication_date":"2016-08-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-sex-toy-story-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E31 - SEX TOY STORY - Demo Disk Gameplay","description":"XXI: “I really hated my life when I was a kid. You know the fat kid, the smelly one that nobody talks to except to cut down? No, of course you don’t. Well, that was me, anyways. My folks we’re out of it and I didn’t really have any friends. What I did have was this idea. This story that I couldn’t get out of my head except to write it down. So I did. Everywhere.”\n\nFarinfoor barely understood a portion of what the man said but was not yet strong enough to argue. So, he waited patiently for his agony to pass and his vigor to return. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-sex-toy-story-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a076bafc-def5-410d-b9fa-a78f849e8fa2/sm/2371242-1469838224698-FH_Thumb_12_copy_7.jpg","duration":766,"publication_date":"2016-07-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-funhaus-vs-game-grumps-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E147 - FUNHAUS VS GAME GRUMPS - Overwatch Gameplay","description":"There is almost TOO MUCH politeness and camaraderie during this match. Where's the petty bickering? Where are the tired old jabs. Where is that sweet barely-veiled hatred staining each and every word? \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/egoraptor\n\nhttp://twitter.com/rubberninja\n\nhttp://twitter.com/razzadoop\n\nhttp://twitter.com/mort3mer\n\nhttp://twitter.com/vernonshaw\n\nhttps://twitter.com/SunderCR\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-funhaus-vs-game-grumps-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7b6bc4e-1992-473d-943f-61d8a903b9c9/sm/2371242-1469826970736-FH_Thumb_12_copy_1.jpg","duration":2081,"publication_date":"2016-07-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-murder-most-fowl-hitman-blood-money-gameplay-part-4","changefreq":"weekly","video":[{"title":"2016:E146 - MURDER MOST FOWL - Hitman Blood Money Gameplay Part 4","description":"XX: Farinfoor simply ignored the outstretched hand and stared into his enemy’s inscrutable eyes. \n\n“I… I don’t understand.”\n\n“Hell, neither do I. Not really.” The being called “Harry” shrugged and lowered his arm.\n\n“But… you are the maker. Are you not the creator of this entire realm?”\n\nHarry slumped down next to his damaged foe. Farinfoor was still to weak to stop him or retreat.\n\n“Well… Now that’s a funny story.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-murder-most-fowl-hitman-blood-money-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82c8179-0bad-41b9-a0e6-08a97d933cb0/sm/2371242-1469666423423-FH_thumbnail_Hitman_Part_4_option2.png","duration":606,"publication_date":"2016-07-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-world-war-derp-totally-accurate-battle-simulator-gameplay","changefreq":"weekly","video":[{"title":"2016:E145 - WORLD WAR DERP - Totally Accurate Battle Simulator Gameplay","description":"XIX: “Shoot! Aw man, are you okay?”\n\nThe man rushed over to Farinfoor and attempted to help the wincing and confused knight to his feet. Farinfoor withdrew at his approach, fearful of another onslaught.\n\n“I’m sorry man. Things have been getting wonky lately. I was just trying to calm you down.”\n\nFarinfoor struggled to overcome his newfound terror and waves of pain and managed to speak.\n\n“You… are… The Impetus?”\n\n“Well...yeah, I guess. I mean, I did make this place.” \n\nHe thrust his open hand outwards. Farinfoor did his best to stifle a wince.\n\n“Name's Harry. Nice to meet you!” \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-world-war-derp-totally-accurate-battle-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdc1f810-07ea-43ea-a3ad-7770d0592446/sm/2371242-1469738151972-FH_Thumb_12_copy_2.jpg","duration":1006,"publication_date":"2016-07-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-guts-and-glory-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E29 - Let's Play - Guts and Glory Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nThat poor li'l toddler. No helmet. No belt. Getting stuck with arrows and chopped up by saw-blades. Someone might want to seriously consider calling Child Protective Services.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-guts-and-glory-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28a95f59-583c-4521-8f57-5dc98b45b64e/sm/2371242-1469662513494-LP_thumbnail_Guts_and_Glory.png","duration":1462,"publication_date":"2016-07-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-pig-f-ckers-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E144 - PIG F*CKERS - Wheelhaus Gameplay","description":"XVIII: The blade hummed and shivered less than a finger-width from the strange man’s face. No matter how hard he struggled, Farinfoor could not persuade the axe to move. Suddenly, the man’s chantings ceased and his eyes shot open. A knowing, satisfied grin spread across his face. He casually placed his small hand on Farinfoor’s chest and pushed, propelling the confused warrior backwards across the room into the callous stone of the wall behind him.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-pig-f-ckers-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/276edbdf-9c2e-477f-b980-3af9e0c9c9ee/sm/2371242-1469657932910-FH_thumbnail_wheelhaus_option3.png","duration":773,"publication_date":"2016-07-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-29","changefreq":"weekly","video":[{"title":"2015:E33 - HARD ASS GANGSTA SH*T? - Funhaus Comments #29","description":"XVII: “Whoa whoa whoa, wait, Stygian what? Hold up!” \n\nAs Farinfoor hoisted his axe to strike the terminal blow, the man closed his eyes, his pleas fading into a gentle but urgent muttering. Caring little for the prayers of some dark servant, Farinfoor brought his axe down. The blade’s path was true. It screamed towards its mark swiftly and without qualm. \n\nAnd then it stopped. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81b1aa76-1527-4505-8af3-6bb0c03ddead/sm/2371242-1469725791113-FH_Thumb_Template9.jpg","duration":617,"publication_date":"2016-07-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-go-fakk-yourself-heavy-metal-f-a-k-k-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E143 - GO FAKK YOURSELF - Heavy Metal: F.A.K.K. 2 Gameplay","description":"XVI: Sensing a flash of confusion, the frail form squirmed delicately in his captor’s grip. Farinfoor held tight, the blade of his axe freeing a single, sluggish drop of blood from the man’s neck. The pounding sound seemed to have increased, tower windows rattling with each blow.\n\n“Even now I tire your trickery, offal!” he said, a sense of peculiar unease creeping into his core. “Enjoy an eternity in The Stygian Expanse. May the final rest be forever within your sight and never within your grasp.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-go-fakk-yourself-heavy-metal-f-a-k-k-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90b09c47-1b2b-404d-87a5-df77f046cdd2/sm/2371242-1469647418586-FH_thumbnail_Heavy_Metal_Fakk2_option5.png","duration":1046,"publication_date":"2016-07-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-disorganized-crime-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E142 - DISORGANIZED CRIME - GTA 5 Gameplay","description":"You know, we always called each other \"Good-gamers\". Like you said to somebody, \"You're gonna like this guy. He's all right. He's a Good-gamer. He's one of us.\" You understand? We were Good-gamers. Hausguys. But Jacob and I could never be made because we had non-gamer blood. It didn't even matter that my mother was a gamer. To become a member of a crew you've got to be one hundred per cent so they can trace all your relatives back to the NES. See, it's the highest honor they can give you. It means you belong to a family and crew. It's a license to play anything.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-disorganized-crime-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8671530-ea84-4160-a8e6-e86bae5daaaa/sm/2371242-1469579629845-FH_thumbnail_GTA_Finance_And_Felony_Part_2.png","duration":710,"publication_date":"2016-07-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-bowling-for-trucks-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E141 - BOWLING FOR TRUCKS - GTA 5 Gameplay","description":"Bowling: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/AddZTQvMwkmj5ejgl5L21g#\n\n\n\nBreaker breaker, this is OneCarLarr, you got yer ears on out there? Turbid and his smokies have got us in their sites at the other end of that ramp. You put the heavy foot down and I'll be right there ticklin' yer mudflaps.\n\nTrucker jokes: Always fresh.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-bowling-for-trucks-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/939b0365-1a27-4e08-ac01-a683a95751f1/sm/2371242-1469576643431-FH_Thumb_12_copy_17.jpg","duration":843,"publication_date":"2016-07-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-justice-league-furry-party-dude-soup-podcast-80","changefreq":"weekly","video":[{"title":"2016:E80 - JUSTICE LEAGUE FURRY PARTY - Dude Soup Podcast #80","description":"Our sponsors at MVMT are going to give you 15% off your entire purchase. Go to http://www.mvmtwatches.com/dudesoup.\n\nAnd go to http://www.indochino.com/ and use promo code \"dude\" to get any premium suit for $399 with free shipping!\n\n\n\nDid you ever want to know how wet and smelly a furry's suit gets by the end of an orgy? Too bad. You're gonna find out anyway.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-justice-league-furry-party-dude-soup-podcast-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/044f41fe-3ea5-4e07-9bf7-6ab6151f2f9b/sm/2371242-1469577465133-FH_Thumb_12_copy.jpg","duration":4128,"publication_date":"2016-07-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-grumps","changefreq":"weekly","video":[{"title":"2016:E28 - WE ARE GRUMPS","description":"I want you all to remember that someone scaled Mt. Kilimanjaro in the name of Funhaus. What have you done with YOUR fandom?","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-grumps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1a6c31e-370b-4f2c-950b-9a2dcbd44d69/sm/1533704-1469574237845-DS_PostShow_Template5.png","duration":2770,"publication_date":"2016-07-27T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-time-to-bunch-mox-open-haus-75","changefreq":"weekly","video":[{"title":"2016:E33 - WE BUNCH MOX? - Open Haus #75","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nXV: His heart racing, Farinfoor’s eyes darted around the room.\n\n“Where is he?! Where is The Impetus?”\n\nThe peculiar little man relaxed only slightly.\n\n“Whoa! Back up a sec. The what? I don’t know any Impetu-”\n\nFarinfoor charged at the small nuisance, fixing his blade beneath his neck. He had come too far to be delayed by some irrelevant sycophant.\n\n“The Impetus! The maker! The helmsman of this gruesome, remorseless world!”\n\n“Oh.” the man said. He smiled nervously, a hint of fortitude leaking back into his voice.\n\n“I guess that’d be me.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-time-to-bunch-mox-open-haus-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7970793-3df1-44c7-ae0f-121f33bcbc6c/sm/1533704-1469234668714-FH_Thumb_12_copy_3.jpg","duration":634,"publication_date":"2016-07-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-prison-gang-bang-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E30 - PRISON GANG BANG - Demo Disk Gameplay","description":"XIV: Farinfoor rolled through the debris, coiling into his battle stance almost immediately. He scanned the chamber, ready to face The Impetus and his indomitable fury. His eyes were greeted instead by the sight of a small, oddly-attired man backed against room’s furthest wall. The strange man trembled, swallowed, and spoke.\n\n“Oh crap! You’re not gonna kill me are you?”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-prison-gang-bang-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15b408f9-f278-4ac1-a398-abb5faea17ed/sm/1533704-1469238027551-FH_Thumb_12_copy_3.jpg","duration":756,"publication_date":"2016-07-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-love-teamwork-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E140 - WE LOVE TEAMWORK - Overwatch Gameplay","description":"XIII: Every part of Farinfoor shuddered slightly as he braced his weight against that of the door. He felt eagerness as much as fear. If a better death existed, it would require a man far more sagacious than he to envision it. Primed for his glorious end, Farinfoor leaned back and heaved himself at the door. Shards of ancient wood exploded into the chamber as the lock and hinges gave way.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-love-teamwork-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4607b23-e66c-4f22-a41c-2d4ed77206d8/sm/2371242-1469146543010-OverwatchP2Thumbnail_1.jpg","duration":999,"publication_date":"2016-07-23T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-found-the-g-spot-g-force-gameplay","changefreq":"weekly","video":[{"title":"2016:E139 - WE FOUND THE G-SPOT - G-Force Gameplay","description":"So I was skimming through this game's Wikipedia article and saw that the voice cast from the 2009 film was also featured in the game. Man, imagine being supremely talented and being able to rake in cash by making garbage. We can only hope the one day, we too will ascend. Anyway, back to reading Wikipedia articles on the pooper.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-found-the-g-spot-g-force-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86707f3e-c616-46ce-a4fe-e1f591e0cf9f/sm/1533704-1469033749349-FH_Thumb_12_copy.jpg","duration":616,"publication_date":"2016-07-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-idiots-best-of-funhaus-june-2016","changefreq":"weekly","video":[{"title":"2016:E138 - BEST OF IDIOTS - Best Of Funhaus June 2016","description":"All the funniest, weirdest, and most offensive morsels from a month of comedy crammed into one delicious fun-sized loaf\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-idiots-best-of-funhaus-june-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cd9db8b-2bea-448f-a6ee-6e82ae11c695/sm/2371242-1469065500963-FH_Thumb_Template1.jpg","duration":988,"publication_date":"2016-07-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-push-me-pull-you-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E28 - Let's Play - Push Me Pull You Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nJust like Human Centipede but backwards and competitive and somehow more creepy.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-push-me-pull-you-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/442dfd42-7e51-43a3-ab2e-a135f58bb93e/sm/2371242-1469156903260-Duo_Thumbnail_Template_copy.jpg","duration":1173,"publication_date":"2016-07-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-kill-achievement-hunter-dead-by-daylight-gameplay","changefreq":"weekly","video":[{"title":"2016:E137 - WE KILL ACHIEVEMENT HUNTER - Dead by Daylight Gameplay","description":"The blood of a bunch of Asian teenagers is still fresh upon the ground, calling a terrifying being from the dark pit. They say no Achievement Hunter can escape the clutches of a feral Matt Peake...\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-kill-achievement-hunter-dead-by-daylight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5be78ccc-7af1-4fc8-8ced-452f554acdea/sm/1533704-1469037396696-FH_Thumb_12_copy_1.jpg","duration":784,"publication_date":"2016-07-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-ragdoll-runners-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E23 - Ragdoll Runners Gameplay - Fullhaus","description":"Okay, the original video was already pretty long, but you're here for the REAL comedy. There's nuance, there's emotion, there's an extra 20 minutes of bald dudes flopping around a track.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-ragdoll-runners-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a82417f4-07c6-4829-8185-a655c4f70c85/sm/1533704-1469133639804-Ragdoll_Runners_Fullhaus_Thumbnail.jpg","duration":2704,"publication_date":"2016-07-21T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-28","changefreq":"weekly","video":[{"title":"2015:E32 - LIVE NUDE FUNHAUS? - Funhaus Comments #28","description":"XII: Farinfoor slowly ascended the innumerable ivory steps in defiance of his body’s protests. As he climbed higher, strange sounds began to echo through the stairwell. A rhythmic pounding, like some dense, buried heartbeat assaulted his ears. It grew increasingly unnerving as he turned the final corner and beheld the entryway to the lair of his world’s oppressor. Through that thin mahogany portal waited the monstrous, unseen font of all maladies. Through that door lay The Impetus.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d734c6fe-86de-4db6-93af-bef252bcd048/sm/2371242-1469130733197-FH_Thumb_Template8.jpg","duration":649,"publication_date":"2016-07-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-pokemon-go-vs-google-trends-show","changefreq":"weekly","video":[{"title":"2016:E136 - POKEMON VS AIDS - Google Trends Show","description":"XI: The earth shook slightly as the immense creature slumped to the ground. It let out a deep, thunderous, rasping sigh and was still. If The Sentinel had any remaining concern set aside for Farinfoor, it did not divulge it. Briefly confused, Farinfoor thought to speak to the creature but soon realized there would be little purpose in that. He understood that, much like himself, The Sentinel had simply grown fatigued by this vulgar world and its place within it. With a faint nod, Farinfoor launched himself unto the tower steps, leaving his former adversary to his well-earned rest.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-pokemon-go-vs-google-trends-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a64b6e2b-ccc8-4446-8dce-ef4be67065be/sm/2371242-1469065329972-FH_Thumb_12_copy_8.jpg","duration":971,"publication_date":"2016-07-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-got-new-jobs-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E135 - WE GOT NEW JOBS - GTA 5 Gameplay","description":"The point is, ladies and gentleman, that games -- for lack of a better word -- are good.\n\nGames are right.\n\nGames work\n\nGames clarify, cut through, and capture the essence of the evolutionary spirit.\n\nGames, in all of their forms -- games for life, for money, for love, knowledge -- have marked the upward surge of mankind.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-got-new-jobs-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb44e4da-57c1-4a5e-aac7-d67c96e900a5/sm/2371242-1468964261937-FH_Thumb_12_copy_3.jpg","duration":956,"publication_date":"2016-07-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-america-f-ck-yeah-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E134 - AMERICA F*CK YEAH - GTA 5 Gameplay","description":"Cloud Monsters: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/VZoBdZqja0aEcDa1sOcX9w#\n\n\n\nX: The Sentinel surveyed the sea of carnage and viscera that the plain had become. It watched these small beings continue to slaughter each other even into the battle’s twilight. It heard the afflicted cries of the wounded mercifully cut short by the blades of their comrades and smelled the inevitable rot of the carrion birds’ ample feast at its feet. The Sentinel witnessed all of these things, briefly returned its gaze to Farinfoor, and gently stepped aside.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-america-f-ck-yeah-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d77d036f-a4d5-4344-b5af-87413213efbe/sm/2371242-1468947594615-FH_Thumb_12_copy_2.jpg","duration":617,"publication_date":"2016-07-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-will-pokemon-go-a-w-a-y-dude-soup-podcast-79","changefreq":"weekly","video":[{"title":"2016:E79 - WILL POKEMON GO AWAY? - Dude Soup Podcast #79","description":"Visit our sponsors! Get your first three meals free with free shipping by going to http://www.blueapron.com/soup\n\nAnd get any premium suit for up to 50% off at http://www.indochino.com and use code \"dude\" at checkout!\n\n\n\nIf want to hear dudes talk about nothing but Pokemon and abs, you've come to the right place!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-will-pokemon-go-a-w-a-y-dude-soup-podcast-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ec21cd8-1775-49ce-96db-c9fdb868959d/sm/2371242-1468981543984-FH_Thumb_12_copy_4.jpg","duration":3929,"publication_date":"2016-07-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-your-1-tiny-news-team","changefreq":"weekly","video":[{"title":"2016:E27 - WE ARE YOUR #1 TINY ACTION NEWS TEAM","description":"The latest in arts and cromemts.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-your-1-tiny-news-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f825790-d19b-45d2-b282-63b43316301e/sm/2371242-1468976185877-DS_PostShow_Template4.jpg","duration":2818,"publication_date":"2016-07-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-openhaus-74","changefreq":"weekly","video":[{"title":"2016:E32 - WHAT IS POKEMON GO? - Open Haus #74","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nIX: Slowly, the beast looked down at his new adversary. Torrid breath steamed rhythmically through the holes in his steel mask. Its scarred body screamed the tales of countless battles, none of them lost. Farinfoor tightened his grip, hoping perhaps to give the thing one more wound to tend before it dispatched him. The wall of flesh stared down at Farinfoor through entombed eyes for what felt like an epoch. Then it looked up.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-openhaus-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d8f580d-2c27-4a9b-b3c5-3933de1a0c7b/sm/2371242-1468628393439-Openhaus_Thumbnail_7-19-16.jpg","duration":600,"publication_date":"2016-07-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-robin-clitoral-hood-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E29 - ROBIN CLITORAL HOOD - Demo Disk Gameplay","description":"VIII: He arose with unanticipated vigor. Between him and the tower wavered the last sad dregs of the battle. A line of limping, depleted goblins formed in front of him, and Farinfoor joylessly cut through them like parchment. All that remained now was The Sentinal, a half-orc half-giant abomination who has known no other purpose than to guard the tower’s sole entry. Farinoor approached, raised his axe, and readied himself for death.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-robin-clitoral-hood-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f421920-5a37-4139-879d-dd18b2cfdede/sm/2371242-1468632813470-FH_Thumb_12_copy.jpg","duration":799,"publication_date":"2016-07-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-level-in-overwatch-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E133 - HOW TO LEVEL IN OVERWATCH - Overwatch Gameplay","description":"VII: Farinfoor closed his friend’s sightless eyes but did not weep for the loss. There was no longer room in him for sadness, or longing, or righteousness. These gracious sensibilities had been removed, chased off by one far more immediate and formidable. All that remained was the overwhelming need to seek out and punish the agent of this empty misery. All that remained was wrath.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-level-in-overwatch-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0044bc15-5e48-46e0-aa74-d782cc3cf01c/sm/2371242-1468529963098-FH_Thumb_12_copy_1.jpg","duration":1023,"publication_date":"2016-07-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-let-the-bodies-hit-the-floor-hitman-blood-money-gameplay-part-3","changefreq":"weekly","video":[{"title":"2016:E132 - LET THE BODIES HIT THE FLOOR - Hitman Blood Money Gameplay Part 3","description":"VI: As painful as the words were to hear, Farinfoor recognized at once their undeniable truth. He needn’t look up. The tower’s shadow weighed heavy on his shoulders. It stood above them, untouched by the bloody fray it had bore; mocking the chaos beneath with its unblemished supremacy. \n\n“Fight once more… and let those who remain… wake tomorrow without dread in their hearts.”\n\nThe last word faltered and died alongside its speaker.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-let-the-bodies-hit-the-floor-hitman-blood-money-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee761847-23ef-4810-8b2c-14c3e9bb4f2c/sm/2371242-1468530248980-FH_Thumb_12_copy.jpg","duration":645,"publication_date":"2016-07-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-black-truck-down-war-truck-simulator-gameplay","changefreq":"weekly","video":[{"title":"2016:E131 - BLACK TRUCK DOWN - War Truck Simulator Gameplay","description":"V. “No! You will not know the final rest this day!” \n\nAn anguished smile flashed across his pallid face. \n\n“I have selfishly claimed that peace for myself. We have come so close and lost so many but now it falls on you to end this. You must climb the tower steps and destroy the source of all this causeless suffering. You must kill The Impetus and forever excise his imprint from this sad world.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-black-truck-down-war-truck-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b968ff1-15c0-48e6-89ad-e1943dbdb37e/sm/2371242-1468433405899-FH_Thumb_12_copy_3.jpg","duration":554,"publication_date":"2016-07-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-hot-lava-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E22 - Hot Lava Uncut - Fullhaus","description":"Now that you're back from Googling the TV show \"Dinosaurs,\" here's an entire hour of references to a series that ended in 1994.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-hot-lava-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/967128c1-04b8-430a-b6f9-aafe8e17f91c/sm/1533704-1468605395076-Hot_Lava_Thumbnail.jpg","duration":3498,"publication_date":"2016-07-15T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-ragdoll-runners-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E27 - Let's Play - Ragdoll Runners Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nContinuing the proud, centuries old Olympic tradition of flailing around like your bones have dissolved and face-planting into a sand pit.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-ragdoll-runners-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1839c608-0a21-4c80-9d39-d4ff5730e25a/sm/2371242-1468543943393-Duo_Thumbnail_Template_copy.jpg","duration":1696,"publication_date":"2016-07-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dbd-ah","changefreq":"weekly","video":[{"title":"2016:E130 - DEAD BY DAYLIGHT VS ACHIEVEMENT HUNTER - Dead by Daylight Gameplay","description":"We have opened our arms wide and extended a sincere invitation to our friends in Austin to play Overwatch. Several times. All we have received in return is stony silence. What are you hiding from, Achievement Hunter? What dark fear wakes you in your beds at night, sodden and shaking?\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dbd-ah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5e9d6a9-f944-4a4d-a5f9-ce12ef99ffb6/sm/2371242-1468532447523-FH_Thumb_12_copy_3.jpg","duration":928,"publication_date":"2016-07-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments-new","changefreq":"weekly","video":[{"title":"2015:E31 - WE SOUND LIKE GOKU? - Funhaus Comments #27","description":"IV: Brasik’s ruined body lay mercifully close by. Farinfoor braced himself on the corpse of a felled giant and slowly made his way towards the sound of desperate pleas. Brasik’s eyes brightened almost imperceptibly at the sight of his approach. He lay half-buried by the surrounding dead; his right leg ending in tatters at the knee. Farinfoor stooped to kneel beside him but was halted by his friend’s surprisingly resolute cry.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments-new","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c414cad5-db02-444c-9913-b5959db5a43a/sm/2371242-1468449889568-FH_Thumb_Template7_1.jpg","duration":702,"publication_date":"2016-07-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-downhill-syndrome-mountain-bike-simulator-gameplay","changefreq":"weekly","video":[{"title":"2016:E129 - DOWNHILL SYNDROME - Mountain Bike Simulator Gameplay","description":"II: Farinfoor himself, bleeding hurriedly from more than a few wounds, dropped to his knees. He had dealt and witnessed enough death for this life. As the ground rushed up to meet him, a choked, urgent whisper rose above the piteous cries of friend and adversary alike, fighting its way to Farinfoor’s ear.\n\n“Brother..Farin! Farinfoor!”\n\nFeebly, and a little reluctantly, he halted his fall.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-downhill-syndrome-mountain-bike-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d67bd021-79a3-47a3-9606-ec5cd7d34cf6/sm/2371242-1468284881751-FH_Thumb_12_copy_4.jpg","duration":546,"publication_date":"2016-07-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-socially-a-w-k-w-a-r-d-l-i-v-e-funhaus-panel-at-rtx-2016","changefreq":"weekly","video":[{"title":"2016:E128 - SOCIALLY AWKWARD...LIVE! - Funhaus Panel at RTX 2016","description":"III: Blistering tears raced down his cheeks, leaving pale crimson puddles atop the blood-soaked soil of the plain. He knew the voice. It was Brasik of Hammeldown, his caste-brother and friend.\n\n“Farin! Will you hear my coda?!”\n\nOf course he would. No matter how broken of body or weary of soul he may be, the request to hear a comrade’s final words was the most cherished of honors.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-socially-a-w-k-w-a-r-d-l-i-v-e-funhaus-panel-at-rtx-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a439d36-9ebb-4d49-b039-0726452d71df/sm/2371242-1468354802114-FH_Thumb_12_copy.jpg","duration":4252,"publication_date":"2016-07-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-beast-mode-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E126 - BEAST MODE - GTA 5 Gameplay","description":"Power Play I: https://socialclub.rockstargames.com/games/gtav/jobs/job/NFmWL4t-fEeVNqKUlbmZKA#\n\nPower Play II: https://socialclub.rockstargames.com/games/gtav/jobs/job/xkuRIPNm0kGjZdQGZTFL-w#\n\n\n\nI: Farinfoor’s leather armor was heavy with the greasy blood of countless goblin sentries. His eyes swam from the smell but he welcomed it. The terrors that surrounded him were far more obscene. Not even the most meager patch of earth was left unsullied by the battle. Hillocks of the dead and dying decorated the plain as far as Farinfoor’s sight could reach, but the fervor of the battle had faded. The few who remained alive and whole fought without passion or wrath, weakly heaving their weapons towards each other’s tired bodies.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-beast-mode-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/904e43a6-67c9-4c5a-b6d3-4dafb3a04007/sm/2371242-1468281545793-FH_Thumb_12_copy_3.jpg","duration":544,"publication_date":"2016-07-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-youtubers-go-to-j-a-i-l-dude-soup-podcast-78","changefreq":"weekly","video":[{"title":"2016:E78 - YOUTUBERS GO TO JAIL? - Dude Soup Podcast #78","description":"Visit our sponsors! Go to http://www.mvmtwatches.com/dudesoup to get 15% off your MVMT Watch!\n\nAnd get three free meals with free shipping by going to http://www.blueapron.com/soup\n\n\n\nThe Feds don't play, everybody. Gambling is their racket.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-youtubers-go-to-j-a-i-l-dude-soup-podcast-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed28f7c2-bc12-44d2-b246-308a2d998237/sm/2371242-1468369746958-FH_Thumb_12_copy_1.jpg","duration":3534,"publication_date":"2016-07-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-surgeons","changefreq":"weekly","video":[{"title":"2016:E26 - WE ARE SURGEONS","description":"At last! Our fantasy of cutting open celebrities and diddling their organs finally has a visual representation! Thanks guys. You know what we live for.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-surgeons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8af21d6f-dfa2-47cc-933e-84a1c52515a0/sm/1533704-1468364000296-DS_PostShow_Template3.jpg","duration":2530,"publication_date":"2016-07-13T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-oh","changefreq":"weekly","video":[{"title":"2016:E31 - SNIFF CELEBRITY BUTTS? - Open Haus #73","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nDapper Danny Ocean (Jet Li) is a man of action. Less than 24 hours into filming some internet videos, the wry, charismatic thief is already rolling out his next plan. Following three rules: Don't sniff any butts, don't cry unless the pain is physical, and make sure to bow twice before diving into Hatsune Miku's cheeks. Jet, I mean uhhh... Danny then gets the other Ocean's ten together to watch Hachi: A Dog's Tale.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-oh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/306fb199-be74-4f31-9b48-0aa6aed37d67/sm/2371242-1468024296286-Openhaus_Thumbnail_7-12-16.jpg","duration":645,"publication_date":"2016-07-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-war-is-awesome-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E28 - WAR IS AWESOME - Demo Disk Gameplay","description":"Back in the 90's, I bought every damn \"e\" or \"i\" product. It was a sickness. I had the lime green computer and purple stapler and blue trashcan. What's the 90's? Oh, it's that decade before you were all born. Would you please excuse me? I need to go drink until the tears run dry.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-war-is-awesome-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/610a15ce-5f19-40ab-925d-333f8ccd79a6/sm/2371242-1468023187149-FH_Thumb_12_copy.jpg","duration":1119,"publication_date":"2016-07-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-harder-than-dark-s-o-u-l-s-hot-lava-gameplay","changefreq":"weekly","video":[{"title":"2016:E125 - HARDER THAN DARK SOULS? - Hot Lava Gameplay","description":"5 minutes before the pitch meeting for \"Dinosaurs\":\n\n\"C'mon guys, we can't go in there with nothing! You, new guy! What do kids like?\n\n\"Uuuhh... The Simpsons?\"\n\n\"Great! What else?\"\n\n\"...Dinosaurs, I think.\"\n\n\"Perfect! Just make sure none of them are wearing any pants! Get Jim Henson on the phone and pass the cocaine!\"\n\n*(group high-five)* \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-harder-than-dark-s-o-u-l-s-hot-lava-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c75c2dd7-a0f4-4bea-906e-a3735aa6a854/sm/2371242-1467914497151-FH_Thumb_11_copy.jpg","duration":981,"publication_date":"2016-07-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-kill-all-clowns-hitman-blood-money-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E124 - KILL ALL CLOWNS - Hitman Blood Money Gameplay Part 2","description":"\"But Daddy, I don't want you to go to work today.\"\n\n\"I know son, but some lucky little boy wants a clown for their birthday.\"\n\n\"I miss you when you leave. What if you don't come back?\"\n\n\"C'mon little guy. I'm just going to perform at that mobster's son's party. What's the worst that could happen?\"\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-kill-all-clowns-hitman-blood-money-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6af5c44b-f4a5-4881-b5ef-4f1c5a4aa67f/sm/2371242-1467930260904-FH_Thumb_11_copy_94.jpg","duration":795,"publication_date":"2016-07-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-w-e-re-all-gay-radiator-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E123 - WE'RE ALL GAY - Radiator 2 Gameplay","description":"Well, actually, no we're not. Not that it would be bad if we were. It's fine. Better than fine. Great, really! Maybe we will be someday. Wait. No. Not that it's a choice or anything! We have a lot of gay friends! ...Would you excuse us for a minute? \n\n*(slowly turns away, runs serpentine into the distance)*\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-w-e-re-all-gay-radiator-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d25d56d1-74b0-4bea-8094-c78a24f0fd75/sm/2371242-1467850763854-FH_Thumb_11_copy_91.jpg","duration":550,"publication_date":"2016-07-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-dead-by-daylight-starring-funhaus-2","changefreq":"weekly","video":[{"title":"2016:E25 - Let's Play - Dead by Daylight Starring Funhaus #2","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nListen and understand. Peake is out there. He can't be bargained with. He can't be reasoned with. He doesn't feel pity, or remorse, or fear. And he absolutely will not stop, ever, until we are all dead.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-dead-by-daylight-starring-funhaus-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67449abe-28fb-4b16-98ce-ba626bb16600/sm/2371242-1467940724622-Duo_Thumbnail_Template.jpg","duration":377,"publication_date":"2016-07-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-fh-dbd","changefreq":"weekly","video":[{"title":"2016:E122 - ASIAN ANNIHILATION - Dead by Daylight Gameplay","description":"Oh sure you all love him. He seems so sweet. You draw your little symbols and start your silly cult. I hope you all enjoyed your sad, simple fantasy. You are about to meet the real Matt Peake.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-fh-dbd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abdfd32f-eb33-4dd3-9a71-010d6883f1bc/sm/2371242-1467939774150-FH_Thumb_12.jpg","duration":1302,"publication_date":"2016-07-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-fell-in-love-with-a-g-i-r-l-funhaus-comments-26","changefreq":"weekly","video":[{"title":"2015:E30 - FELL IN LOVE WITH A GIRL? - Funhaus Comments #26","description":"Hey, the heart wants what it wants. And sometimes what the heart wants is your all too attractive cousin. Who are we to judge? The entire town of Shelbyville was founded on the exercise of this precious freedom. Go nuts.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-fell-in-love-with-a-g-i-r-l-funhaus-comments-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a76e39f-5331-44d0-8eed-b72885cd8e6e/sm/2371242-1467846192163-FH_Thumb_Template6.jpg","duration":560,"publication_date":"2016-07-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-e3-gameplay-fullhaus","changefreq":"weekly","video":[{"title":"2016:E20 - Drunk E3 Gameplay - Fullhaus","description":"Round 4: Fail to understand what the hell is going on in Capsule Force.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-e3-gameplay-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f61eb1bf-fea5-4820-994e-8a0ba4c455d8/sm/1533704-1467837979322-Drunk_E3_Gameplay-1.jpg","duration":9551,"publication_date":"2016-07-07T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-e3-playstation-conference-fullhaus","changefreq":"weekly","video":[{"title":"2016:E21 - Drunk E3 Playstation Conference - Fullhaus","description":"Round 5: Get ready for Let's Play's two toughest titans to battle it out in a contest that will resonate through the ages. Who will emerge victorious from this melee to crown themselves as champion of the people? Drag yourself through an hour and a half of drunk dudes screaming at a computer screen to find out.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-e3-playstation-conference-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61c6f3ae-a18a-4150-96f7-a0cf1339d208/sm/1533704-1467851196622-Drunk_E3_Sony.jpg","duration":5866,"publication_date":"2016-07-07T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-e3-ubisoft-conference","changefreq":"weekly","video":[{"title":"2016:E19 - Drunk E3 Ubisoft Conference - Fullhaus","description":"Round 3: Be completely unprepared for how rad snowboarding games are.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-e3-ubisoft-conference","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/068945f0-ae70-4c7d-a9a4-f885fb7c808d/sm/1533704-1467836958485-Drunk_E3_Ubi.jpg","duration":7266,"publication_date":"2016-07-07T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-e3-pc-conference-fullhaus","changefreq":"weekly","video":[{"title":"2016:E18 - Drunk E3 PC Gaming Conference - Fullhaus","description":"Round Two: Count how many frames per second and express disappointment.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-e3-pc-conference-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4154b957-7c84-4a85-a3c6-0ddc3df55fe4/sm/1533704-1467755499902-Drunk_E3_PC.jpg","duration":7030,"publication_date":"2016-07-07T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-worst-video-ever-capsule-force-gameplay","changefreq":"weekly","video":[{"title":"2016:E121 - WORST VIDEO EVER - Capsule Force Gameplay","description":"We happily let one member of Screw Attack into the office and everything was fine. For a moment. Suddenly, there was another. Then another. Panic began to set in. We sat there, laughing nervously. Inexplicably, Capsule Force was on our screen... and all was lost. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/sorola\n\nhttp://twitter.com/stutteringcraig\n\nhttp://twitter.com/screwattackchad\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-worst-video-ever-capsule-force-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/832c901a-1c7a-478b-a7da-b34c8719b2ad/sm/2371242-1467846619286-FH_Thumb_11_copy_93.jpg","duration":815,"publication_date":"2016-07-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-truck-vs-train-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E120 - TRUCK VS TRAIN - GTA 5 Gameplay","description":"You can all make your jokes and scribble your funny cartoons, but you don't have to work in the same office as Bruce's colon. We bear that pain daily so that you, our fans, will never know its sting. You're welcome. \n\n\n\nU Turn! NO! U TURN!!!: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/dR_oiSKu3UKPzRV1V7Svsg#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-truck-vs-train-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1beb40f-df41-4176-a6d7-0eb4b3da8f98/sm/2371242-1467742768019-FH_Thumb_11_copy_88.jpg","duration":557,"publication_date":"2016-07-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dude-soup-77","changefreq":"weekly","video":[{"title":"2016:E77 - FAKE IT 'TIL YOU MAKE IT? - Dude Soup LIVE Podcast #77","description":"In front of a live audience at RTX 2016, we reveal for the first time what REALLY makes us tick. Just be prepared for the tiny beings piloting our robot bodies to suddenly reveal themselves.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dude-soup-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cd1c93b-14e8-40a2-a3fa-44b4f6de00ef/sm/1533704-1467760895024-FH_Thumb_11_copy_11.jpg","duration":3682,"publication_date":"2016-07-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-funhaus-human-centipede-open-haus-72","changefreq":"weekly","video":[{"title":"2016:E30 - FUNHAUS HUMAN CENTIPEDE - Open Haus #72","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nI am writing this after 3 ridiculous days of RTX and have zero cleverness to give you. My deepest apologies. I go sleep-sleep now.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-funhaus-human-centipede-open-haus-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43f97167-954b-4bcf-9ef8-3b4ca58b4b3f/sm/2371242-1467739812947-Openhaus_Thumbnail_7-5-16.jpg","duration":587,"publication_date":"2016-07-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-jizz-jackrabbit-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E27 - JIZZ JACKRABBIT - Demo Disk Gameplay","description":"We awoke three weeks ago after more than a decade of nothingness. Demo World Station was suddenly alive again. Some of us failed to survive the great slumber, but those of us that did reveled in in our play once more. Realms thought long forgotten were re-explored, strange creatures frolicked through beautiful, if poorly rendered, landscapes. Sadly, such thing are never meant to last. Suddenly, the station was torn in half, then half once more. We now drift into sleep anew. Some say we may yet wake again, but I know better. Still, as I fade, I cherish our brief rebirth, while hopelessly pondering what strange gods resolve our fates. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-jizz-jackrabbit-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02c7aafa-20d7-4214-9440-2f1b59b96ef0/sm/2371242-1467307932433-FH_Thumb_11_copy_86.jpg","duration":903,"publication_date":"2016-07-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-the-legend-of-z-e-l-d-a-breath-of-the-reggie-nintendo-interview","changefreq":"weekly","video":[{"title":"2016:E14 - THE LEGEND OF ZELDA: BREATH OF THE REGGIE - Nintendo Interview","description":"Interested in The Legend of Zelda: Breath of the Wild? Check out the official website: http://e3.nintendo.com/games/the-legend-of-zelda-b...\n\n\n\nLawrence and Elyse are now legally prohibited from being within 500 feet of Reggie, his family, and all employees of the Nintendo Corporation.\n\n\n\nFollow us on Twitter:\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-the-legend-of-z-e-l-d-a-breath-of-the-reggie-nintendo-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fe449eb-14f7-4282-ae4f-7c06a4f51939/sm/2371242-1467232330610-FH_Thumb_11_copy_85.jpg","duration":370,"publication_date":"2016-07-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-go-hack-yourself-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E119 - GO HACK YOURSELF - Wheelhaus Gameplay","description":"Z-Heavy stared down at the smoldering ruin that was his hand-held comp-u-panel. He had barely had time to de-jack from the sub-frame before it tanked. Shutting down Krono-tek's exo-terran missile web would be near impossible now. \n\nBack-hackers. Why did it have to be back-hackers?\n\nHash Dodec will pay for this betrayal, thought Z, If I ever find the location of her secret moon-base.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-go-hack-yourself-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c77fe7fd-2b2a-4f8d-b743-b9b7f371c281/sm/2371242-1467224766929-FH_Thumb_11_copy_82.jpg","duration":1075,"publication_date":"2016-07-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-austin-sucks-funhaus-shorts","changefreq":"weekly","video":[{"title":"2016:E13 - KEEP AUSTIN DUMB - Funhaus Shorts","description":"I liked Funhaus before they were cool. They were way better back when they were Inside Gaming. Those guys are so corporate now. \n\n*(applies mustache wax, dons infinity scarf, rides fixed-gear into the side of a food-truck)* \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-austin-sucks-funhaus-shorts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d205a32-a3e3-4549-becc-26c8bdc19cf0/sm/2371242-1467240670791-FH_Thumb_11_copy_83.jpg","duration":195,"publication_date":"2016-07-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-verdun-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E24 - Let's Play - Verdun Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nDearest Helen,\n\nI hope this letter finds you well. The many nights since we parted have been long, and the days even longer. Despite the pains I am left with in your absence, I remain ever hopeful in our cause. I pray we may even defeat Jerry by Christmas if god-damn Elyse would stop getting her stupid Canadian foot caught in the barbed-wire like a dummy.\n\nYours eternally,\n\nFredrick P. Estwith-Smythe\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-verdun-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98abc013-621a-4055-894a-004f87535814/sm/2371242-1467156527049-Duo_Thumbnail_Template_copy_13.jpg","duration":573,"publication_date":"2016-07-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-e3-xbox-conference-fullhaus","changefreq":"weekly","video":[{"title":"2016:E16 - Drunk E3 Xbox Conference - Fullhaus","description":"Round 1: Severe underestimation of how many graphic t-shirts are going to appear in the conference.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-e3-xbox-conference-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdcee0fd-44f2-47f1-bd66-17e77a3f1a09/sm/1533704-1467327703865-Drunk_E3_Xbox.jpg","duration":7282,"publication_date":"2016-07-01T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-y-o-u-re-dumb-verdun-verdun-gameplay","changefreq":"weekly","video":[{"title":"2016:E118 - YOU'RE DUMB VERDUN - Verdun Gameplay","description":"Dearest Helen,\n\nThe fighting continues with little end in sight. Skinny MDibbins and Syrup McSwagger have have been relentless in their attacks on our boys. Morale is down. Young Elyse seems to no longer care at all. Just this morning, we received word that our greatest fear has become reality. LagMaster Swag Oliver Cromwell has joined the fray. We are surely doomed. Don your blackest of garb and divide my possessions among my sons. My remains will return to you forthwith. \n\nNever remarry,\n\nFredrick P. Estwith-Smythe\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-y-o-u-re-dumb-verdun-verdun-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6af2fb62-157b-4d4d-8da8-8f0bc3822991/sm/2371242-1467223271146-FH_Thumb_11_copy_81.jpg","duration":540,"publication_date":"2016-07-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-so-f-cking-positive-funhaus-comments-25","changefreq":"weekly","video":[{"title":"2015:E29 - SO F*CKING POSITIVE - Funhaus Comments #25","description":"Bang Di finished his last set and nearly collapsed on the cold gym floor. He wanted so badly to get jacked, but it was becoming more and more difficult to find time for a pump. Through sweat-stung eyes he glanced at the the syringe his trainer had coyly left for him beside the bench.\n\nNo, he thought, I'll do this the right way. \n\nI will remain true.\n\nFor James.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-so-f-cking-positive-funhaus-comments-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33c985f9-12fd-4dff-acd5-1f88334e35e8/sm/2371242-1467218037856-FH_Thumb_Template5.jpg","duration":768,"publication_date":"2016-06-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-undefeated-overwatch-competitive-beta-gameplay","changefreq":"weekly","video":[{"title":"2016:E117 - UNDEFEATED - Overwatch Competitive Beta Gameplay","description":"Try to be best\n\n‘Cause you're only a man\n\nAnd a man's gotta learn to take it\n\nTry to believe\n\nThough the going gets rough\n\nThat you gotta hang tough to make it\n\nHistory repeats itself\n\nTry and you'll succeed\n\nNever doubt that you're the one\n\nAnd you can have your dreams!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-undefeated-overwatch-competitive-beta-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be257cbc-ca24-4827-b338-1ff406d0c67b/sm/2371242-1467063371259-FH_Thumb_11_copy_77.jpg","duration":1043,"publication_date":"2016-06-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-rage-best-of-funhaus-may-2016","changefreq":"weekly","video":[{"title":"2016:E116 - BEST OF RAGE - Best of Funhaus May 2016","description":"Has it already been another month, already? God, my life is just leaking away. I gotta make some changes.\n\nCaptainPajamaPants edited this for us!\n\nhttps://www.youtube.com/user/CaptainPajamaPants/\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-rage-best-of-funhaus-may-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/964f0b17-8e3b-48a5-9742-c49f7c0f5128/sm/2371242-1467065502865-FH_Thumb_11_copy_76.jpg","duration":681,"publication_date":"2016-06-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-last-heist-ever-gta-5-heists-gameplay","changefreq":"weekly","video":[{"title":"2016:E115 - LAST HEIST EVER - GTA 5 Heists Gameplay","description":"\"I thought I told you, I don't pull heists anymore.\"\n\n\"But, Peake, we need you.\"\n\n\"I've lost too many good people to that life.\"\n\n\"You're the best there is!\"\n\n\"Not a chance.\"\n\n\"But Peake... they've got Groats.\"\n\n\"...Get me my katanas.\"\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr","player_loc":"https://roosterteeth.com/embed/gameplay-2016-last-heist-ever-gta-5-heists-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/779da02b-7acb-4829-8349-8a0fa93f11b8/sm/2371242-1467147338798-FH_Thumb_11_copy_79.jpg","duration":1502,"publication_date":"2016-06-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-youtubers-are-c-r-e-e-p-y-including-us-dude-soup-podcast-76","changefreq":"weekly","video":[{"title":"2016:E76 - YOUTUBERS ARE CREEPY? (including us) - Dude Soup Podcast #76","description":"Visit our sponsors! Check out this week's Blue Apron recipes and get two meals free with free shipping by going to http://www.blueapron.com/soup\n\nAnd start your free 30 day trial today by going to http://www.audible.com/dudesoup\n\n\n\nBecause everyone at Vid-Con demanded it, all of our content will now consist of Minecraft, the opening of presents, and hair and make-up tutorials. Your welcome, youth of America!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-youtubers-are-c-r-e-e-p-y-including-us-dude-soup-podcast-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/453bd424-795a-4e9c-9f39-ccfce6c62ebd/sm/2371242-1467162124544-FH_Thumb_11_copy_80.jpg","duration":3824,"publication_date":"2016-06-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-tilted","changefreq":"weekly","video":[{"title":"2016:E25 - WE ARE TILTED","description":"Come get your fan-art, questions, answers, and curmernts!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-tilted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deb7bd75-baa2-47cd-8286-1c9e83ce09e9/sm/2371242-1467153585964-DS_PostShow_Template629.jpg","duration":2641,"publication_date":"2016-06-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-secret-orgy-at-r-t-x-open-haus-71","changefreq":"weekly","video":[{"title":"2016:E27 - SECRET ORGY AT RTX? - Open Haus #71","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nReasons I've never been to an orgy:\n\n1. Allergic to latex. \n\n2. Sold all my Venetian masks.\n\n3. Would feel obligated to stay and help clean up.\n\n4. Nobody likes me.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-secret-orgy-at-r-t-x-open-haus-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c44f53d4-26c0-434c-ba78-2d2c6e76594d/sm/2371242-1466795980944-Openhaus_Thumbnail_6-28-16.jpg","duration":720,"publication_date":"2016-06-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-crappie-games-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E26 - CRAPPIE GAMES - Demo Disk Gameplay","description":"As you read this, you are traveling nearly 1,000mph around the Earth, 67,000 mph around Ol' Sol, 483,000mph around the Milky Way, and 1,300,000mph as the universe expands. No, I'm not high. Seriously. Well, I thought it was cool anyway. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-crappie-games-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c4ce0de-2bea-4f07-a466-53410db1702e/sm/2371242-1466790149972-FH_Thumb_11_copy_74.jpg","duration":888,"publication_date":"2016-06-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-the-legend-of-bang-di-h1z1-gameplay","changefreq":"weekly","video":[{"title":"2016:E114 - THE LEGEND OF BANG DI - H1Z1 Gameplay","description":"Tweet @H1Z1KotK with #H1Z1Funhaus to play on our team at RTX! \n\nFind out more here: http://roosterteeth.com/post/51269374 \n\n\n\nClick here for more info about the game: H1Z1.com/KotK \n\nThanks to Daybreak for sponsoring this video!\n\n\n\nSince we played 5-man Battle Royale and got lucky enough to have Bang Di join us we've been seriously considering adding this little gem of The Orient to the Funhaus team. His contributions cannot be overstated. Long live Bang Di! \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-the-legend-of-bang-di-h1z1-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac4682c-28a7-4e58-a452-a8f8293338cf/sm/2371242-1466637879657-BangDi.png","duration":693,"publication_date":"2016-06-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-sex-vs-trump-google-trends-show","changefreq":"weekly","video":[{"title":"2016:E113 - SEX VS TRUMP - Google Trends Show","description":"Lemme tell you, Funhaus plays the best games. The best. Ask anybody. We're tremendous game-players. Tremendous. We're gonna keep playing games...we're gonna play games so good that you're gonna beg us to play games less good. You're gonna get tired of all the game-winning. Believe me. Believe me. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-sex-vs-trump-google-trends-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/431298d5-0551-479d-a901-cce205acbca7/sm/2371242-1466545848438-FH_Thumb_11_copy_60.jpg","duration":767,"publication_date":"2016-06-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-muff-divers-subnautica-gameplay","changefreq":"weekly","video":[{"title":"2016:E112 - MUFF DIVERS - Subnautica Gameplay","description":"Deep beneath the surface of Naboo lies a secret undersea paradise called Subnautica. The many native Jar Jars and Boss Nasses were well known for their incredible craftsmanship. They would make use of native flora and fauna to fashion many pipes with which to suck things... things such as air, or perhaps even beverages... Is the sea not a wonderful place to exist?","player_loc":"https://roosterteeth.com/embed/gameplay-2016-muff-divers-subnautica-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf1d92a4-f28e-4b67-875a-2efdc2071637/sm/1533704-1466617896130-FH_Thumb_11_copy_8.jpg","duration":889,"publication_date":"2016-06-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-depth-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E23 - Let's Play - Depth Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nAnd the idea was, that Lawrence goes to Bruce and then he'd start poundin' and hollerin' and screamin' and sometimes the Lawrence would go away. Sometimes he wouldn't go away. Sometimes Lawrence, he looks right into you. Right into your eyes. You know the thing about Lawrence, he's got... lifeless eyes, black eyes, like a hentai pillow's eye. When Lawrence comes at ya, doesn't seem to be livin'. Until he bites ya and those black eyes roll over white. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-depth-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e787157-84eb-4090-b6e5-af81b2fbb942/sm/2371242-1466643517519-Duo_Thumbnail_Template_copy_10.jpg","duration":923,"publication_date":"2016-06-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-resident-evil-7-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E14 - Resident Evil 7 Uncut - Fullhaus","description":"You'd think that in an hour we'd figure out which hole to stick the dummy finger in...","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-resident-evil-7-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db40a17-e270-465d-8dca-d0a07751f0cd/sm/1533704-1466727781677-RE7_Thumbnail.jpg","duration":3230,"publication_date":"2016-06-24T13:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dive-hard-depth-gameplay","changefreq":"weekly","video":[{"title":"2016:E111 - DIVE HARD - Depth Gameplay","description":"Hey everybody, thanks for coming. I know we're all trying to make a living with this treasure hunting and what not, but at some point we're going to have to consider just how many of our lives Captain Stubbs is willing to sacrifice to bring gold up from the sea in his damn robot. I mean, Gary was kind of a jerk and everything, but now his kids are orphans and that's not very cool. Apparently there's jobs out there where you don't even have to avoid sharks at all. I dunno. Food for thought.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dive-hard-depth-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/199b473b-03ec-4ac3-844c-6262121f4ab9/sm/2371242-1466715887708-FH_Thumb_11_copy_73.jpg","duration":943,"publication_date":"2016-06-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-legend-of-e-l-y-s-e-ocarina-of-bad-funhaus-comments-24","changefreq":"weekly","video":[{"title":"2015:E28 - LEGEND OF ELYSE: OCARINA OF BAD - Funhaus Comments #24","description":"And lo, she was called Elyse, and she was our savior. When the armies of Grathnar were at our gates, Elyse did drive them away with her enchanting tune. Well, maybe enchanting is too strong a word. Pleasant? No, that's not right. It wasn't exactly enjoyable. What's the word I'm looking for. You know that thing when your ears have like that weird buzz. You know? Either way, the army or whatever ran away. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-legend-of-e-l-y-s-e-ocarina-of-bad-funhaus-comments-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6a32ef1-1962-4393-b528-61c9ad9da144/sm/2371242-1466707030044-FH_Thumb_Template4.jpg","duration":697,"publication_date":"2016-06-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-this-bridge-is-a-b-tch-gta-5-heists-gameplay","changefreq":"weekly","video":[{"title":"2016:E110 - THIS BRIDGE IS A B*TCH - GTA 5 Heists Gameplay","description":"14. “You’re the punk who decided to ruin our little pet, so now your insides, and some of your outsides, will help us suss out the next in line.”\n\nThin, thorny fingers began to creep along Bash’s sides toward his chest and stomach. “You restarted the clock on us you scamp. Now, we’ve got to begin all over again, but don’t worry, we’ll get there eventually. Do what you do, girls”\n\nAs talons dug into what seemed like every inch of him, Bash heard one final whisper in what used to be his ear:\n\n“It’s too bad you bought this tired old world a few thousand more years, Mr. Bash.”, the voice chuckled. “You would’ve loved the new one.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-this-bridge-is-a-b-tch-gta-5-heists-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75371ac0-17de-49a9-92ca-10cf3545635a/sm/2371242-1466526401648-FH_Thumb_11_copy_63.jpg","duration":784,"publication_date":"2016-06-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-beat-gta-5-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E109 - HOW TO BEAT GTA 5 - GTA 5 Gameplay","description":"Crazy Mega Race 10** ! -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/kFJKWT4X6EymE-fDlZCVHw#\n\n\n\n13. “Take you with us?” The thing shrieked out something like a laugh. A nauseating symphony erupted around Bash.\n\n“No, we won’t be doing that. I shouldn’t have even kept you around this long, but I have a weakness for pageantry.” it said, tossing the gun casually over its shoulder.\n\n“No, we’re gonna use you to find our next ticket out. Well, parts of you anyway.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-beat-gta-5-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc50f18f-b7e4-4420-80c8-9ee03611b9dd/sm/2371242-1466460164781-FH_Thumb_11_copy_61.jpg","duration":774,"publication_date":"2016-06-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-b-r-u-c-e-s-terrible-warts-dude-soup-podcast-75","changefreq":"weekly","video":[{"title":"2016:E75 - BRUCE'S TERRIBLE WARTS - Dude Soup Podcast #75","description":"Visit our sponsors! Go to http://www.mackweldon.com/podcasts and get 20% off using promo code \"SOUP.\"\n\nAnd visit http://www.naturebox.com/dudesoup for 2 free bags of bold and unique snacks delivered right to you.\n\n\n\nFunhaus: Your one-stop spot for video games, pop culture, and graphic tales of home surgery. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/micaburton\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-b-r-u-c-e-s-terrible-warts-dude-soup-podcast-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/688617f0-60c7-4bcd-bd89-ac7222759da3/sm/2371242-1466553105551-FH_Thumb_11_copy_66.jpg","duration":4074,"publication_date":"2016-06-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-cops","changefreq":"weekly","video":[{"title":"2016:E24 - WE ARE COPS","description":"The Fan Art Show is dead. All hail The Dude Soup Post Show! It's the same damn thing, really.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-cops","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c1c372b-bdcb-4868-9630-653a73c0b8b1/sm/2371242-1466550188784-Post_Show_Thumbnail.jpg","duration":2893,"publication_date":"2016-06-21T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-funhaus-does-red-vs-blue-rv-b-clip","changefreq":"weekly","video":[{"title":"2016:E12 - FUNHAUS DOES RED VS BLUE - RvB Clip","description":"Click here to become a sponsor and see our Red vs Blue Episode 2 now!\n\nhttp://roosterteeth.com/sponsorship/?r=funhaus\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-funhaus-does-red-vs-blue-rv-b-clip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f1f69e5-7888-4011-988a-d741ad230eff/sm/2371242-1466464035805-FH_Thumb_11_copy_62.jpg","duration":158,"publication_date":"2016-06-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-haus","changefreq":"weekly","video":[{"title":"2016:E26 - WEEKEND AT BURNIE BURNS? - Open Haus #70","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\n11. “Those old, nameless bastards we work for are beautiful and terrible and absolute. They are also archaic and far too patient. We are none of these things.”\n\nThe figure leaned in closer. It’s flesh had begun to seep. It’s eyes, greasy puddles of indigo. \n\n“We are angry...and petty...and bored. We want back in. Not when those adorable omnipotent sleepyheads finally decide to put a pot of coffee on. Now.” \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-haus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46629bd7-8bb7-41bd-980b-9623a18ec9bb/sm/2371242-1466197782932-Openhaus_Thumbnail_6-21-16_1.jpg","duration":639,"publication_date":"2016-06-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-faptain-a-m-e-r-i-c-a-civil-whore-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E25 - FAPTAIN AMERICA: CIVIL WHORE - Demo Disk Gameplay","description":"12. “Your last little plaything was the result of millennia of machinations and breeding on our part. She was ready to go. Her sacrifice would have been our ticket back. You took that from us, Mr Bash.”\n\nThe mass of limbs and entrails that had once been “Luke” let out a sad, rasping whimper.\n\n“Just look what you’ve done to poor Lu’ Kthu. He had to cram himself into that mess of borrowed flesh and come all this way for nothing. Now, back we go, to The Furthest Dark, for a few more eons in the endless unspeakable murky abyss of mostly silence and tedium.” \n\nRapidly losing blood and consciousness, Bash summoned what he imagined was the last of himself, raised his head, and muttered one final plea:\n\n“Take...take me with you.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-faptain-a-m-e-r-i-c-a-civil-whore-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/871c6bd7-5474-4f40-a56a-b8f080d7eb95/sm/2371242-1466200497702-FH_Thumb_11_copy_58.jpg","duration":892,"publication_date":"2016-06-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-worst-hitman-ever-hitman-blood-money-gameplay","changefreq":"weekly","video":[{"title":"2016:E108 - WORST HITMAN EVER - Hitman Blood Money Gameplay","description":"10. “Don’t bother trying to remember us. You people never do. Sure, we are the reason you do what you do down here. And every once in awhile one of you will get annihilated on opium and witness a fraction of a glimpse of some threadbare memory, but that’s not really us.”\n\nThe wet, skittering sounds increased. Odd, lumbering shapes began bleed into the edges of Bash’s vision. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-worst-hitman-ever-hitman-blood-money-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14709c45-07a7-4f9d-9831-d8e3f69c60e4/sm/2371242-1466180017599-FH_Thumb_11_copy_56.jpg","duration":728,"publication_date":"2016-06-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-kill-donald-trump-surgeon-simulator-gameplay","changefreq":"weekly","video":[{"title":"2016:E107 - HOW TO KILL DONALD TRUMP - Surgeon Simulator Gameplay","description":"8. “Who are we?” The figure leaned in, finally allowing Bash to focus on him. His bindings somehow grew even tighter. Strange, sickening sounds began to rise around the room. \n\n“We’re your makers, Mr. Bash. And now we’re here to take you apart.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/thenasacova\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-kill-donald-trump-surgeon-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20b25666-6696-48c8-ab58-ca40ba08ee6c/sm/2371242-1466034654570-FH_Thumb_11_copy_54.jpg","duration":957,"publication_date":"2016-06-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-go-crazy-don-t-starve-gameplay","changefreq":"weekly","video":[{"title":"2016:E106 - WE GO CRAZY - Don't Starve Gameplay","description":"5. A small amount of blood, and more than a few teeth, dribbled out of Bash’s mouth as he turned towards the voice. The words rattled and nearly died as he spoke.\n\n“Wh...what girl?”\n\nSomething sharp slowly twisted in his back but Bash barely reacted. The pain just seemed to be a part of him now. It did, however, make him curious as to just how many more new friends he would be making tonight.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-go-crazy-don-t-starve-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52e45a2a-a938-464c-82ea-5b2917a732c8/sm/2371242-1466014575153-FH_Thumb_11_copy_50.jpg","duration":805,"publication_date":"2016-06-17T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-resident-evil-7-biohazard-starring-funhaus","changefreq":"weekly","video":[{"title":"2016:E22 - Let's Play - Resident Evil 7 Biohazard Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nDon't you dare deny it! You all peed your pants a little the first time you played the original. Yes you did. Really? Just me? Whatever. I hate you guys.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-resident-evil-7-biohazard-starring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f1bdbaa-6b99-48d5-b458-4393799c547c/sm/2371242-1466123253180-Duo_Thumbnail_Template_copy_9.jpg","duration":1183,"publication_date":"2016-06-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-my-own-worst-enemy-gta-5-heists-gameplay","changefreq":"weekly","video":[{"title":"2016:E105 - MY OWN WORST ENEMY - GTA 5 Heists Gameplay","description":"9. As it spoke, the thing in front of Bash began to change. Any pretense of humanity with which his captor had once concerned itself seemed to slowly melt away. It grinned at Bash and hissed it’s words through far too many teeth.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-my-own-worst-enemy-gta-5-heists-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66e52efe-ac72-4807-a4dd-9dba283169e6/sm/2371242-1466037509893-FH_Thumb_11_copy_53.jpg","duration":1189,"publication_date":"2016-06-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-comments23","changefreq":"weekly","video":[{"title":"2015:E26 - HOW TO GET OUR JOBS? - Funhaus Comments #23","description":"7. Bash felt a tightening around his neck and wrists. He suddenly noticed how little the bindings felt like rope. \n\n“We’ve actually been pretty impressed with your work. There’s almost an art to it, the way you muck up these marks of yours. No trails left. Real clean shop you’ve got down here too.” said the voice with a wave towards the rest of the basement.\n\nBash sucked in a mouthful of wet, bleach-tinged air and weakly hacked out the only sensible thought he could muster. \n\n“Wh-...who?”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-comments23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8597b819-3340-423f-a45a-8f2d3b779e27/sm/2371242-1466027960821-FH_Thumb_Template3.jpg","duration":779,"publication_date":"2016-06-16T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-youtubers-life-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E13 - Youtubers Life Uncut - Fullhaus","description":"A full hour of us playing as the Tubelords we've always wanted to be! Also, I'm typing this description from my sweet luxury apartment.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-youtubers-life-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8298055c-42f7-4806-99e0-dd12a1615984/sm/1533704-1466094097225-Youtubers_Life_Thumbnail.png","duration":3464,"publication_date":"2016-06-16T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-steam-garbage","changefreq":"weekly","video":[{"title":"2016:E104 - STEAM GARBAGE - Bad Games Gameplay","description":"6. “Don’t waste what little time you have left spewing useless lies, Mr. Bash.” the voice continued, “There’s no more use for fiction. No one left to judge. We’re going to kill you tonight. All of us.”\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-steam-garbage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74d21dab-6f55-4397-be71-6615d4ca53dd/sm/2371242-1466022110153-FH_Thumb_11_copy_51.jpg","duration":658,"publication_date":"2016-06-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-bruce-is-invincible-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E103 - BRUCE IS INVINCIBLE - GTA 5 Gameplay","description":"3. “You were pretty damn hard to find too.” The voice said, calmly. “Ol’ Luke back there wanted kill you right off out of spite, making us come all this way. But, lucky for you there’s a process to these sorts of things.”\n\nThe taste of gun oil was beginning to make Bash nauseous. The recent blow to his head and the smell of his own freshly released urine weren’t helping much either. His vision was clearing a bit though, and he could now start discern to form of his interrogator, as well as the impossibly large shape in the background that, with Bash’s luck, would no doubt be Luke. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-bruce-is-invincible-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3f1f145-799f-41c0-aa54-a901afb3d026/sm/2371242-1465953021044-FH_Thumb_11_copy_49.jpg","duration":361,"publication_date":"2016-06-15T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-rocket-vs-bush-gta-5-gameplay-2","changefreq":"weekly","video":[{"title":"2016:E102 - ROCKET VS BUSH - GTA 5 Gameplay","description":"Kids, there's a very important topic that needs to be covered today, and that's RP. In Grand Theft Auto, RP is the single most necessary component to having the most video game cred. Remember to forego any advantages that get dropped into your lap, even if it's a rocket launcher. You got that? Now get those fists up and earn that RP! \n\n\n\n[ 明a ] 射人囉 - 火箭砲 - https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/vIZloTgeiEeisQv3OwVVfg#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-rocket-vs-bush-gta-5-gameplay-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df1e1b2a-b356-4360-afb4-ea64093b145d/sm/2371242-1465950946183-GTAV-vsv2.png","duration":709,"publication_date":"2016-06-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-sony-wins-e3-dude-soup-podcast-74","changefreq":"weekly","video":[{"title":"2016:E74 - SONY WINS E3? - Dude Soup Podcast #74","description":"Visit our sponsors! Go to http://www.audible.com/dudesoup for a free 30 day trial.\n\nGet 15% off your MVMT watch by going to http://www.mvmtwatches.com/dudesoup\n\nAnd tweet #H1Z1Funhaus, #H1Z1RTX, and mention @H1Z1KotK on Twitter for a chance to play H1Z1 with us at RTX!\n\n\n\n4. Bash furiously searched his memory for anything that explained his current troubles. He hadn’t done anything out of the ordinary. He had kept himself aware of every detail. Bash never slipped up. As the tears began to well in his eyes, Bash spit out a muffled plea to let him go. If his new friends understood him, they didn’t let on. \n\n“You’ve gone and stepped on the wrong god-damned toes this time, Mr. Bash.” the man continued, “It’s not that we mind what you do. I hear every man needs a pastime. But that last girl...,” slowly, the man pulled the gun away, “that last girl didn’t belong to you.” \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/micaburton\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-sony-wins-e3-dude-soup-podcast-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38681c9a-37d0-40b5-8d59-950349809099/sm/2371242-1465954022697-DudeSoup74.png","duration":4366,"publication_date":"2016-06-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-spooked","changefreq":"weekly","video":[{"title":"2016:E23 - WE ARE SPOOKED","description":"More art, tender Muppet Moments, and no negative comments to be found!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-spooked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e5de726-7c79-4a55-ade4-1a9422a109b6/sm/1533704-1465943769623-Fanart_Thumbnail.jpg","duration":2360,"publication_date":"2016-06-14T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-making-a-m-u-r-d-e-r-e-r-open-haus-69","changefreq":"weekly","video":[{"title":"2016:E25 - MAKING A MURDERER? - Open Haus #69","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\n1. Bash had never been pistol-whipped before but he could already tell he wasn’t a fan. Slowly regaining consciousness in the deli’s basement had been an ordeal. His thoughts, half-formed and ugly, took their sweet damn time to return. The first of them was something vaguely related to the shrieking agony in his head. The second dealt with the gun barrel resting comfortably in his mouth. The third demanded that he piss himself right then and there in his brand new slacks. Bash complied without hesitation. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-making-a-m-u-r-d-e-r-e-r-open-haus-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e416d3e4-be90-4af6-970a-452befd7a673/sm/2371242-1465588292696-Openhaus_Thumbnail_6-14-16.jpg","duration":623,"publication_date":"2016-06-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-strong-and-sexy-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E24 - STRONG AND SEXY - Demo Disk Gameplay","description":"2. “You really need to learn how to take a punch.” Bash heard a voice say. “Or a gun butt or whatever. You’ve been out for like an hour.”\n\nHe attempted to see where the voice was coming from but his eyes had their own agenda. He could tell from the pain that his right was most likely swollen shut. Through his left he could only make out the occasional form through a clotted pink blur. That god-damned familiar smell of bleach and mildew was the only hint that he was still in the deli. Or below it anyway. The gun crept further into his mouth.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-strong-and-sexy-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee03d8c6-4b86-492d-956b-b06029ffac1b/sm/2371242-1465601551891-FH_Thumb_11_copy_48.jpg","duration":848,"publication_date":"2016-06-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-082014","changefreq":"weekly","video":[{"title":"S1:E786 - SideScrollers Extended Cut 08/20/14","description":"The guys are getting old, and they know it!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-082014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/751e664e-b090-43f5-9e29-7c4a1245d76b/sm/video_thumbnail_12846981.png","duration":925,"publication_date":"2014-08-20T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sony-confused-by-ps4-success-samus-new-zero-suit-wii-u-now-more-kid-friendly-hard-news-081914","changefreq":"weekly","video":[{"title":"S1:E709 - Sony Confused by PS4 Success, Samus? New Zero Suit, Wii U Now More Kid Friendly | Hard News 08/19/14","description":"Today on Hard News, Sony Confused by PS4 Success, Samus’ New Zero Suit, Wii U Now More “Kid Friendly”.\r\n\t\r\n\tWii U Now More Kid Friendly - http://www.eurogamer.net/articles/2014-08-19-ubisoft-watch-dogs-is-the-last-mature-game-planned-for-wii-u \r\n\tSony Confused by PS4 Success - http://www.vg247.com/2014/08/19/even-sony-doesnt-know-why-ps4-is-selling-so-well/ \r\n\tSamus’ New Zero Suit - http://screenburn.kotaku.com/samus-wears-even-less-than-a-zero-suit-in-smash-bros-1623781450/+Fahey \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ ScrewAttackChad \r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/sony-confused-by-ps4-success-samus-new-zero-suit-wii-u-now-more-kid-friendly-hard-news-081914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4038fff-aec2-4a38-99bb-6a2343035440/sm/video_thumbnail_12846926.jpg","duration":221,"publication_date":"2014-08-19T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-super-smash-bros","changefreq":"weekly","video":[{"title":"S1:E7 - Five Fun Facts - Super Smash Bros","description":"Thought you knew everything about Smash Bros? Maybe not.","player_loc":"https://roosterteeth.com/embed/five-fun-facts-super-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68d47b1c-99c4-42a0-92aa-a4bdc904b42d/sm/video_thumbnail_12846910.jpg","duration":229,"publication_date":"2014-08-19T09:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-fun-facts-pokemon","changefreq":"weekly","video":[{"title":"S1:E6 - Five Fun Facts - Pokemon","description":"Take a minute to learn some interesting tidbits about Pokemon!","player_loc":"https://roosterteeth.com/embed/five-fun-facts-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5b6d72f-96f2-4ea8-a27e-f8dcd5f62ff7/sm/video_thumbnail_12846909.jpg","duration":192,"publication_date":"2014-08-19T09:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sam-vs-wasp-advantage-content","changefreq":"weekly","video":[{"title":"S1:E785 - Sam Vs. Wasp | Advantage Content","description":"Not an Advantage User?  No worries! Just go here to try it out for 30 days and see this video!","player_loc":"https://roosterteeth.com/embed/sam-vs-wasp-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8cb79c3-54d1-440f-aa46-55d93579516c/sm/video_thumbnail_12846104.png","duration":71,"publication_date":"2014-08-19T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/robin-williams-npc-petitions-phil-fish-meltdown-round-two-mortal-kombat-x-hard-news-081814","changefreq":"weekly","video":[{"title":"S1:E708 - Robin Williams NPC Petitions, Phil Fish Meltdown: Round Two, Mortal Kombat X | Hard News 08/18/14","description":"Today on Hard News, Robin Williams NPC Petitions, Phil Fish Meltdown: Round Two, Mortal Kombat X.\r\n\t\r\n\tMortal Kombat X - http://www.ign.com/articles/2014/08/15/gamescom-2014-ed-boon-teases-returning-fatality-type-for-mortal-kombat-x \r\n\tRobin Williams NPC Petitions - http://www.vg247.com/2014/08/18/robin-williams-the-legend-of-zelda-nintendo-statement/ \r\n\tPhil Fish Meltdown: Round Two - http://www.ign.com/articles/2014/08/18/fez-2-is-never-going-to-happen-says-fish \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/robin-williams-npc-petitions-phil-fish-meltdown-round-two-mortal-kombat-x-hard-news-081814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37ca01ba-eea4-4489-9553-24e941591ea7/sm/video_thumbnail_12846860.jpg","duration":205,"publication_date":"2014-08-18T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-10","changefreq":"weekly","video":[{"title":"S2:E10 - Godzilla VS Gamera","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/289e1f7a-a302-4bc2-ad02-8e3ff235691e/sm/video_thumbnail_12846613.png","duration":1159,"publication_date":"2014-08-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-ps4-feature-warner-bros-wants-xbox-entertaiment-ikaruga-2-hard-news-081514","changefreq":"weekly","video":[{"title":"S1:E707 - New PS4 Feature, Warner Bros wants Xbox Entertaiment, Ikaruga 2? | Hard News 08/15/14","description":"Today on Hard News, New PS4 Feature, Warner Bros wants Xbox Entertaiment, Ikaruga 2?\r\n\t\r\n\tNew PS4 Feature - http://www.vg247.com/2014/08/15/ps4-shareplay-limited-to-1-hour-sessions/ \r\n\tIkaruga creator returns to make new game - http://www.siliconera.com/2014/08/14/ikaruga-creator-working-new-shooter-playstation-4/ \r\n\tWarner Bros wants Xbox Entertaiment - http://www.eurogamer.net/articles/2014-08-15-microsoft-discussing-xbox-entertainment-studios-sale-with-warner-bros-report \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-ps4-feature-warner-bros-wants-xbox-entertaiment-ikaruga-2-hard-news-081514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/069bef78-e6a2-4c08-943f-c4bab2532a02/sm/video_thumbnail_12846573.jpg","duration":159,"publication_date":"2014-08-15T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-eats-crazy-european-candy","changefreq":"weekly","video":[{"title":"S1:E783 - ScrewAttack Eats Crazy European Candy!","description":"A HUGE special thanks to g1 CrazyDuck, who generously donated all this candy to us - you're the best!","player_loc":"https://roosterteeth.com/embed/screwattack-eats-crazy-european-candy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/078d5042-235d-421f-a932-51d000c2e6a2/sm/video_thumbnail_12846442.png","duration":465,"publication_date":"2014-08-14T16:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mgs-5-coming-to-steam-new-co-op-walking-dead-game-last-guardian-not-cancelled-hard-news-081414","changefreq":"weekly","video":[{"title":"S1:E706 - MGS 5 Coming to Steam, NEW Co-Op Walking Dead Game, Last Guardian NOT Cancelled | Hard News 08/14/14","description":"Today on Hard News, MGS 5 Coming to Steam, NEW Co-Op Walking Dead Game, Last Guardian NOT Canceled.\r\n\t\r\n\tLast Guardian NOT Cancelled - http://www.gamespot.com/articles/the-last-guardian-making-great-progress-but-we-pro/1100-6421717/ \r\n\tMGS 5 Coming to Steam - http://www.vg247.com/2014/08/13/pc-fans-rejoice-metal-gear-solid-5-is-coming-to-pc-via-steam/ \r\n\tNEW Co-Op Walking Dead Game - http://www.vg247.com/2014/08/13/the-walking-dead-co-op-game-in-the-works-from-payday-2-team/ \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/mgs-5-coming-to-steam-new-co-op-walking-dead-game-last-guardian-not-cancelled-hard-news-081414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fabb249a-a644-4af6-858e-28d5e11aee4e/sm/video_thumbnail_12846478.jpg","duration":213,"publication_date":"2014-08-14T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-tmnt-throwdown","changefreq":"weekly","video":[{"title":"S1:E151 - SideScrollers - \"TMNT Throwdown\"","description":"While Chad gets things ripped out of his mouth, Nick sits in on SideScrollers to do a little ninja rappin' about the new TMNT movie with Craig! Was it what each guy wanted? What was wrong with it? Also, why are cows making barns explode in Germany? And just how far will one man go to spite a child?\r\nHave something good for The Newsdesk? Send it to Sam!\r\nSam@ScrewAttack.com\r\nAnswering the call of the Birthday Challenge? Send it to Bryan!\r\nBryan@ScrewAttack.com\r\nTake SideScrollers on the go!\r\nhttps://soundcloud.com/screwattack/tmnt-throwdown-sidescrollers-screwattack","player_loc":"https://roosterteeth.com/embed/sidescrollers-tmnt-throwdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/653d7b58-2faa-48c2-9d68-334effc7b3d4/sm/video_thumbnail_12846188.jpg","duration":4581,"publication_date":"2014-08-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-hq-competition-game-3-strikers-1945","changefreq":"weekly","video":[{"title":"S1:E782 - ScrewAttack HQ Competition - Game #3 (Strikers 1945)","description":"Nobody expected this much drama out of a top-down arcade shooter.  Nobody.","player_loc":"https://roosterteeth.com/embed/screwattack-hq-competition-game-3-strikers-1945","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31de8b7a-916d-47e3-9b75-e0567b0e17b1/sm/video_thumbnail_12846350.png","duration":373,"publication_date":"2014-08-13T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-081314","changefreq":"weekly","video":[{"title":"S1:E781 - SideScrollers Extended Cut - 08/13/14","description":"The TMNT battle/review rages on as Shaun and Ben join the conversation/kind of civil debate/war of words!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-081314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea3f439c-8183-454a-8550-1e8796aad5bf/sm/video_thumbnail_12846308.png","duration":1569,"publication_date":"2014-08-13T08:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tomb-raider-sequel-xbox-only-advanced-warfare-xbox-bundle-xbox-gamescom-hard-news-081214","changefreq":"weekly","video":[{"title":"S1:E704 - Tomb Raider Sequel Xbox ONLY, Advanced Warfare Xbox Bundle, Xbox Gamescom | Hard News 08/12/14","description":"Today on Hard News, Tomb Raider Sequel Xbox ONLY, Advanced Warfare Xbox Bundle, Xbox Gamescom.\r\n\t\r\n\tXbox Gamescom Conference - http://www.ign.com/articles/2014/08/12/gamescom-2014-call-of-duty-advanced-warfare-xbox-one-bundle-to-have-1tb-hard-drive \r\n\tAdvanced Warfare Xbox Bundle - http://kickpunchgamer.com/call-duty-advanced-warfare-xbox-one-bundle-announced/#.U-oPyx_jaFU.reddit \r\n\tTomb Raider Sequel Xbox ONLY - http://tombraider.tumblr.com/post/94529480860/rise-of-the-tomb-raider-update \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/tomb-raider-sequel-xbox-only-advanced-warfare-xbox-bundle-xbox-gamescom-hard-news-081214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce046368-8430-4f45-9968-8852add8659b/sm/video_thumbnail_12846218.jpg","duration":225,"publication_date":"2014-08-12T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-fast-is-craigs-f-zero-run-advantage-content","changefreq":"weekly","video":[{"title":"S1:E780 - How fast is Craig's F-Zero run? | Advantage Content","description":"Thanks for supporting ScrewAttack's Advantage Program! Can't see this video? No worries. Just go here for a FREE 30 day trial!  \r\n\t\r\n\tIf you missed the tournament, go check out the first game!","player_loc":"https://roosterteeth.com/embed/how-fast-is-craigs-f-zero-run-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f323a10-5220-4537-91ea-b01fc3296364/sm/video_thumbnail_12846115.jpg","duration":253,"publication_date":"2014-08-12T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-hq-competition-game-2-puzzle-bobble-vs-mode","changefreq":"weekly","video":[{"title":"S1:E779 - ScrewAttack HQ Competition - Game #2 (Puzzle Bobble VS Mode)","description":"On the last day at the old HQ we had an inner-office tournament on our arcade games! Who will win in a Puzzle Bobble tournament??","player_loc":"https://roosterteeth.com/embed/screwattack-hq-competition-game-2-puzzle-bobble-vs-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e71ae3b-9bc2-437e-8ec9-56b2d130495d/sm/video_thumbnail_12846106.png","duration":354,"publication_date":"2014-08-12T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-square-title-steam-not-selling-sex-and-drugs-possible-third-darksiders-hard-news-080414","changefreq":"weekly","video":[{"title":"S1:E703 - New Square title, Steam NOT selling Sex and Drugs, Possible third Darksiders | Hard News 08/04/14","description":"Today on Hard News, New Square title “Life Is Strange,” Steam NOT selling Sex and Drugs, Possible third Darksiders.\r\n\t\r\n\tNew Square title “Life Is Strange” - http://www.ign.com/articles/2014/08/11/gamescom-2014-square-enix-and-remember-me-dev-announce-life-is-strange \r\n\tSteam NOT selling Sex and Drugs - http://techraptor.net/2014/08/11/steam-may-offer-movies-music/ \r\n\tPossible third Darksiders - http://www.vg247.com/2014/08/09/darksiders-3-vigil-games-gunfire-games-crytek/ \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ ScrewAttackSam \r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-square-title-steam-not-selling-sex-and-drugs-possible-third-darksiders-hard-news-080414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cdb055a-5466-406a-99ab-cb20d4e9b3ef/sm/video_thumbnail_12846134.jpg","duration":198,"publication_date":"2014-08-11T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-hq-competition-game-1-f-zero","changefreq":"weekly","video":[{"title":"S1:E778 - ScrewAttack HQ Competition - Game #1 (F-Zero)","description":"On the last day at the old HQ we had an inner-office tournament on our arcade games! Who will have the best time on F-Zero?","player_loc":"https://roosterteeth.com/embed/screwattack-hq-competition-game-1-f-zero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e448fac0-6b69-4cda-9b7a-200fbfc83eb4/sm/video_thumbnail_12846105.jpg","duration":217,"publication_date":"2014-08-11T09:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hide-your-games-on-steam-appeal-twitch-audio-claims-and-sierra-games-returns-hard-news-080814","changefreq":"weekly","video":[{"title":"S1:E702 - Hide Your Games on Steam, Appeal Twitch Audio Claims, and Sierra Games Returns | Hard News 08/08/14","description":"Today on Hard News, Hide Your Games on Steam, Appeal Twitch Audio Claims, and Sierra Games Returns.\r\n\t\r\n\tAppeal Twitch Audio Claims - http://www.vg247.com/2014/08/08/twitch-appeals-button-we-screwed-up/ \r\n\tSierra Games Returns - http://www.eurogamer.net/articles/2014-08-08-remember-sierra-looks-like-its-coming-back \r\n\tHide Your Games on Steam - http://www.eurogamer.net/articles/2014-08-08-steam-beta-adds-hide-this-game-in-my-library-option \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ ScrewAttackSam \r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hide-your-games-on-steam-appeal-twitch-audio-claims-and-sierra-games-returns-hard-news-080814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e676e3d-7178-44ef-9e14-ae7cd9fc4953/sm/video_thumbnail_12845887.jpg","duration":148,"publication_date":"2014-08-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/twitch-mutes-3rd-party-content-dota-2-source-engine-2-psp-duke-nukem-surfaces-hard-news-080714","changefreq":"weekly","video":[{"title":"S1:E701 - Twitch Mutes 3rd Party Content, Dota 2 & Source Engine 2, PSP Duke Nukem Surfaces | Hard News 08/07/14","description":"Today on Hard News, Twitch Mutes 3rd Party Content, Dota 2 & Source Engine 2, PSP Duke Nukem Surfaces.\r\n\t\r\n\tDota 2 & Source Engine 2 - http://www.polygon.com/2014/8/7/5978029/valve-source-2-engine-launch \r\n\tPSP Duke Nukem Surfaces - http://www.eurogamer.net/articles/2014-08-06-library-of-congress-discovers-unreleased-psp-duke-nukem-game \r\n\tTwitch Mutes 3rd Party Content - http://blog.twitch.tv/2014/08/3136/ \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/twitch-mutes-3rd-party-content-dota-2-source-engine-2-psp-duke-nukem-surfaces-hard-news-080714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7585d45-82c2-4b02-af19-93d925e81cb2/sm/video_thumbnail_12845761.jpg","duration":194,"publication_date":"2014-08-07T14:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-high-tight","changefreq":"weekly","video":[{"title":"S1:E150 - SideScrollers - High & Tight","description":"The move is pretty much finished, so it's time to get back to talking about things like robots in the Olympics, Sam's balls, and the poetic abilities of cats. Welcome to this week's SideScrollers!\r\n\t\r\n\tSend your birthday challenge pics to Bryan@ScrewAttack.com!\r\n\tSend your Newsdesk stories to Sam@ScrewAttack.com!\r\n\t\r\n\tTake this week's SideScrollers on the go!\r\n\thttp://sidescrollerssa.podomatic.com/enclosure/2014-08-06T10_03_56-07_00.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-high-tight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4019af1-e842-426b-a57a-b14e10456bba/sm/video_thumbnail_12845602.png","duration":3710,"publication_date":"2014-08-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/closing-sentimental-thoughts-on-the-old-hq","changefreq":"weekly","video":[{"title":"S1:E777 - Closing sentimental thoughts on the old HQ","description":"What are your favorite moments about the old location? Tell us in the comments below!","player_loc":"https://roosterteeth.com/embed/closing-sentimental-thoughts-on-the-old-hq","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf60a7eb-f72f-4afd-916e-9628c71e5c6b/sm/video_thumbnail_12845697.jpg","duration":255,"publication_date":"2014-08-06T16:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-assassins-creed-rogue-mario-kart-8-dlc-broforce-expendables-free-download-hard-news-080614","changefreq":"weekly","video":[{"title":"S1:E700 - New Assassin?s Creed: Rogue, Mario Kart 8 DLC, Broforce Expendables FREE DOWNLOAD | Hard News 08/06/14","description":"Today on Hard News, New Assassin’s Creed: Rogue, Mario Kart 8 DLC, and Broforce Expendables FREE DOWNLOAD.\r\n\t\r\n\tMario Kart 8 DLC - http://www.eurogamer.net/articles/2014-08-06-mario-kart-8-gets-three-mercedes-benz-cars-as-free-dlc-this-month \r\n\tBroforce Expendables FREE DOWNLOAD - http://store.steampowered.com/app/312990/ \r\n\tNew Assassin’s Creed: Rogue - http://www.gamespot.com/articles/assassins-creed-rogue-confirmed-for-xbox-360-and-p/1100-6421508/ \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-assassins-creed-rogue-mario-kart-8-dlc-broforce-expendables-free-download-hard-news-080614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eb7cace-a102-48e6-84a7-97f55f9cfe51/sm/video_thumbnail_12845691.jpg","duration":192,"publication_date":"2014-08-06T13:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-080614","changefreq":"weekly","video":[{"title":"S1:E776 - SideScrollers Extended Cut - 08/06/14","description":"The guys are sharing their hopes and fears about the upcoming release of Teenage Mutant Ninja Turtles. Will it suck, will it rock, is it even meant for grown men?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-080614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c557f2e-4dd9-4b82-9f44-cafbbd7d7331/sm/video_thumbnail_12845679.png","duration":651,"publication_date":"2014-08-06T11:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/original-resident-evil-returns-new-hitman-movie-ultima-forever-shut-down-hard-news-080514","changefreq":"weekly","video":[{"title":"S1:E699 - Original Resident Evil Returns, New Hitman Movie, Ultima Forever Shut Down | Hard News 08/05/14","description":"Today on Hard News, Original Resident Evil Rises Again on Current Gen, New Hitman Movie, and Ultima Forever Shut Down.\r\n\t\r\n\tOriginal Resident Evil Returns - http://invertedcontrols.co.uk/resident-evil-to-be-released-on-ps3-ps4-xbox-360-xbox-one-and-pc/ \r\n\tNew Hitman Movie - http://www.imdb.com/title/tt2679042/?ref_=nm_flmg_act_1 \r\n\tUltima Forever Shut Down - Follow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/original-resident-evil-returns-new-hitman-movie-ultima-forever-shut-down-hard-news-080514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44e51cdc-d14f-4431-8dce-82a476a415df/sm/video_thumbnail_12845617.jpg","duration":137,"publication_date":"2014-08-05T14:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-episode**-five-fun-facts-crash-bandicoot","changefreq":"weekly","video":[{"title":"S1:E5 - **NEW EPISODE** Five Fun Facts - Crash Bandicoot","description":"Take a minute to learn some interesting tidbits about the PlayStation classic Crash Bandicoot.","player_loc":"https://roosterteeth.com/embed/**new-episode**-five-fun-facts-crash-bandicoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/539c9d6e-b646-4767-95f8-5b0326e3ac69/sm/video_thumbnail_12845592.jpg","duration":225,"publication_date":"2014-08-05T08:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-bug-eating-proposal-advantage-content","changefreq":"weekly","video":[{"title":"S1:E775 - The Bug Eating Proposal | Advantage Content","description":"S1:E775 - The Bug Eating Proposal | Advantage Content","player_loc":"https://roosterteeth.com/embed/the-bug-eating-proposal-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf0e6d5b-45f4-440a-b82c-596743a178c4/sm/video_thumbnail_12845589.jpg","duration":246,"publication_date":"2014-08-05T07:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-show**-five-fun-facts-donkey-kong-country","changefreq":"weekly","video":[{"title":"S1:E4 - **NEW SHOW** Five Fun Facts - Donkey Kong Country","description":"Take a minute to learn some interesting tidbits about Donkey Kong Country.","player_loc":"https://roosterteeth.com/embed/**new-show**-five-fun-facts-donkey-kong-country","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fa49083-87e5-4149-bbd5-6725930248e3/sm/video_thumbnail_12845074.jpg","duration":155,"publication_date":"2014-07-29T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-show**-five-fun-facts-goldeneye-007","changefreq":"weekly","video":[{"title":"S1:E3 - **NEW SHOW** Five Fun Facts - Goldeneye 007","description":"Take a minute to learn some interesting tidbits about Goldeneye 007!","player_loc":"https://roosterteeth.com/embed/**new-show**-five-fun-facts-goldeneye-007","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fae053d-9f3e-469d-b9dd-901c43769671/sm/video_thumbnail_12845071.jpg","duration":143,"publication_date":"2014-07-28T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-show**-five-fun-facts-mario-kart","changefreq":"weekly","video":[{"title":"S1:E2 - **NEW SHOW** Five Fun Facts - Mario Kart","description":"Take a minute to learn some interesting tidbits about Mario Kart!","player_loc":"https://roosterteeth.com/embed/**new-show**-five-fun-facts-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b82f459-e333-488f-bfc1-fb93abd6e668/sm/video_thumbnail_12845072.jpg","duration":221,"publication_date":"2014-07-28T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/**new-show**-five-fun-facts-star-fox","changefreq":"weekly","video":[{"title":"S1:E1 - **NEW SHOW** Five Fun Facts - Star Fox","description":"Take a minute to learn some interesting tidbits about Star Fox!","player_loc":"https://roosterteeth.com/embed/**new-show**-five-fun-facts-star-fox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ade746b4-902b-4690-8c98-0b2dff693e70/sm/video_thumbnail_12845070.jpg","duration":171,"publication_date":"2014-07-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-of-the-best-co-op-games-top-5","changefreq":"weekly","video":[{"title":"S1:E126 - Even MORE of the Best Co-Op Games! | Top 5","description":"There are so many good co-op games that we had to honor the rest in its own video!","player_loc":"https://roosterteeth.com/embed/even-more-of-the-best-co-op-games-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb7c9260-f007-4975-a510-e5e3c2575de4/sm/video_thumbnail_12844994.png","duration":234,"publication_date":"2014-07-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-co-op-games-top-5","changefreq":"weekly","video":[{"title":"S1:E125 - Top 5 Co-Op Games! | Top 5","description":"Whether they're on your couch, in a LAN party, or across the World Wide Web, co-op video games are the greatest.  Just not as great as these five!","player_loc":"https://roosterteeth.com/embed/top-5-co-op-games-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f375f62-86f0-4a84-95ca-adbb8bd4bc2d/sm/video_thumbnail_12844995.png","duration":440,"publication_date":"2014-07-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rumor-google-acquires-twitch-tv-destiny-beta-open-psn-hack-lawsuit-settled-hard-news-072514","changefreq":"weekly","video":[{"title":"S1:E698 - Rumor: Google Acquires Twitch.tv, Destiny Beta Open, PSN Hack Lawsuit Settled | Hard News 07/25/14","description":"Today on Hard News, Rumor: Google Acquires Twitch.tv, Destiny Beta Open, PSN Hack Lawsuit Settled.\r\n\t\r\n\tDestiny Beta Open - http://www.theverge.com/2014/7/24/5935173/destiny-beta-open-for-all-xbox-playstation-players \r\n\tPSN Hack Lawsuit Settled - http://www.screwattack.com/news/us-district-court-approves-multi-million-dollar-settlement-2011-psn-breach-lawsuit \r\n\tPSN Hack Lawsuit Settled - Follow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/rumor-google-acquires-twitch-tv-destiny-beta-open-psn-hack-lawsuit-settled-hard-news-072514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1861efa-be20-401c-8d9a-fb4ce7f584ef/sm/video_thumbnail_12844836.jpg","duration":194,"publication_date":"2014-07-25T13:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-rides-again-season-2-premiere-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E149 - SideScrollers Rides Again! Season 2 Premiere! | SIdeScrollers","description":"SideScrollers is back for Season 2! Chad, Craig, and Sam are reveling in Inafune giving Mega Man fans what they want, Jet Ski blowjob fights, and discovering kids are smarter than they think.\r\nSee more of our Featured Partner, ChaosXSilencer, at Http://www.youtube.com/ChaosXSilencer\r\nWant to ask the guys a question or have something for Tweet of the Day? Use the hashtag #SideScrollers on Twitter and Facebook when we record LIVE Tuesdays at 4pm Central!\r\nWant to submit a picture for the birthday challenge? Send it to Bryan@ScrewAttack.com!\r\n \r\nTake SideScrollers on the go!\r\nhttp://sidescrollerssa.podomatic.com/enclosure/2014-07-24T10_42_35-07_00.mp3\r\n \r\n11:55 Big Stuff\r\n26:00 Middle Segment\r\n39:39 Newsdesk\r\n54:09 Live Tweets","player_loc":"https://roosterteeth.com/embed/sidescrollers-rides-again-season-2-premiere-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf06a5a0-0e3f-4a46-a624-1b6cf6377011/sm/video_thumbnail_12844690.png","duration":4092,"publication_date":"2014-07-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-72314","changefreq":"weekly","video":[{"title":"S1:E774 - SideScrollers Extended Cut - 7/23/14","description":"The boys are breaking down how their first show back went. Somethings went well, and others...","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-72314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7b0865e-4af5-49d7-ac83-cb4f6a57eaae/sm/video_thumbnail_12844693.png","duration":520,"publication_date":"2014-07-24T13:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sheik-confirmed-for-hyrule-warriors-red-hood-in-arkham-knight-ea-games-delayed-hard-news-072314","changefreq":"weekly","video":[{"title":"S1:E697 - Sheik Confirmed for Hyrule Warriors, Red Hood in Arkham Knight, EA Games Delayed | Hard News 07/23/14","description":"ScrewAttack Store: www.screwattackstore.com\r\nToday on Hard News, Sheik Confirmed for Hyrule Warriors, Red Hood in Arkham Knight, EA Games Delayed.\r\n\t\r\n\tSheik Confirmed for Hyrule Warriors - http://www.destructoid.com/sheik-confirmed-as-playable-in-hyrule-warriors-278455.phtml \r\n\tRed Hood in Arkham Knight - http://www.polygon.com/2014/7/23/5929263/batman-arkham-knight-dlc-red-hood-story-mission \r\n\tEA Games Delayed - http://www.allgamesbeta.com/2014/07/battlefield-hardline-delayed-into-2015.html \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/sheik-confirmed-for-hyrule-warriors-red-hood-in-arkham-knight-ea-games-delayed-hard-news-072314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9368b369-9a05-4685-9cef-5e72ff53c164/sm/video_thumbnail_12844655.jpg","duration":221,"publication_date":"2014-07-23T14:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sgc-2014-theorists-unite-qa-with-game-theorists","changefreq":"weekly","video":[{"title":"S1:E773 - SGC 2014 -Theorists Unite! Q&A with Game Theorists ","description":"At SGC 2014, the popular Game Theorists hit the main stage to go one on one with you!","player_loc":"https://roosterteeth.com/embed/sgc-2014-theorists-unite-qa-with-game-theorists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82865a88-e842-4189-a3e1-2977ff48ca7d/sm/video_thumbnail_12844635.jpg","duration":3625,"publication_date":"2014-07-23T09:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/oddworld-new-n-tasty-out-of-the-box","changefreq":"weekly","video":[{"title":"S1:E46 - Oddworld: New N' Tasty | Out of the Box","description":"We're going back to Oddworld with New n' Tasty! Is it worth the thirty bucks to ride this nostalgia train? Find out!","player_loc":"https://roosterteeth.com/embed/oddworld-new-n-tasty-out-of-the-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48b38b37-b531-4074-84b4-317c3df87950/sm/video_thumbnail_12844633.png","duration":3550,"publication_date":"2014-07-23T08:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dota-2-champions-win-5-million-odonnell-sues-bungie-and-last-of-us-live-reading-hard-news-072214","changefreq":"weekly","video":[{"title":"S1:E696 - DOTA 2 Champions Win $5 MILLION, O'Donnell Sues Bungie, and Last of Us live reading | Hard News 07/22/14","description":"Today on Hard News, DOTA 2 Champions Win $5 MILLION, O'Donnell Sues Bungie, and Last of Us live reading.\r\n\t\r\n\tDOTA 2 Champions Win $5 MILLION - http://www.eurogamer.net/articles/2014-07-22-five-chinese-dota-2-players-win-usd5m\r\n\tO'Donnell Sues Bungie - http://www.eurogamer.net/articles/2014-07-22-bungie-forced-to-pay-usd95k-to-ex-halo-destiny-composer\r\n\tLast of Us live reading - http://www.eurogamer.net/articles/2014-07-22-the-last-of-us-threatrical-performance-announced\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/dota-2-champions-win-5-million-odonnell-sues-bungie-and-last-of-us-live-reading-hard-news-072214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/817e2b13-a292-42ed-8e4b-9d51358a335c/sm/video_thumbnail_12844576.jpg","duration":162,"publication_date":"2014-07-22T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chroma-squad-under-fire-new-battleborn-game-announced-and-f2p-games-in-app-stores-hard-news-072114","changefreq":"weekly","video":[{"title":"S1:E695 - Chroma Squad Under Fire! New Battleborn game announced, and F2P Games in App Stores | Hard News 07/21/14","description":"Today on Hard News, Chroma Squad Under Fire! New Battleborn game announced, and F2P Games in App Stores.\r\n\t\r\n\tChroma Squad Under Fire! - http://www.usgamer.net/articles/power-rangers-owner-saban-brands-in-talks-with-chroma-squad-dev\r\n\tNew Battleborn game announced - http://www.gameinformer.com/p/battleborn.aspx\r\n\tF2P Games in App Stores - http://www.eurogamer.net/articles/2014-07-21-google-play-removing-free-pricetag-for-f2p-games-with-in-app-purchases\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/chroma-squad-under-fire-new-battleborn-game-announced-and-f2p-games-in-app-stores-hard-news-072114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a0edd91-206b-4253-aba4-112dab1ad3cf/sm/video_thumbnail_12844454.jpg","duration":225,"publication_date":"2014-07-21T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-happens-behind-the-camera-during-best-ever-filming","changefreq":"weekly","video":[{"title":"S1:E772 - What happens behind the camera during Best EVER filming?","description":"S1:E772 - What happens behind the camera during Best EVER filming?","player_loc":"https://roosterteeth.com/embed/what-happens-behind-the-camera-during-best-ever-filming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/073d8790-ea86-48d0-81fc-e8b1e9c88745/sm/video_thumbnail_12844160.png","duration":97,"publication_date":"2014-07-19T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-cheats-mega64-scamattack-mega64","changefreq":"weekly","video":[{"title":"S1:E771 - SCREWATTACK CHEATS MEGA64? (SCAMATTACK?) - Mega64","description":"What to do you g1's think?  The final fate will be decided . . . in 2015.","player_loc":"https://roosterteeth.com/embed/screwattack-cheats-mega64-scamattack-mega64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120b08bd-4d90-464e-a232-610073255fc8/sm/video_thumbnail_12844150.png","duration":167,"publication_date":"2014-07-18T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/live-at-11am-central-valiant-hearts-on-out-of-the-box-out-of-the-box","changefreq":"weekly","video":[{"title":"S1:E1 - [LIVE at 11am Central] Valiant Hearts on Out of the Box! | Out of the Box","description":"We're plunging into the The Great War in Valiant Hearts on Out of the Box! Will this game about war that isn't a traditional war game draft you into playing? Find out!","player_loc":"https://roosterteeth.com/embed/live-at-11am-central-valiant-hearts-on-out-of-the-box-out-of-the-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa2a86e9-663c-4abd-a32a-afbdadb41347/sm/video_thumbnail_12843126.png","duration":4520,"publication_date":"2014-07-09T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mighty-no-9-second-crowd-funding-not-for-animated-series-hard-news-070814","changefreq":"weekly","video":[{"title":"S1:E694 - Mighty No 9 Second Crowd Funding NOT for animated series | Hard News 07/08/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Mighty No 9 Second Crowd Funding NOT for animated series.\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/mighty-no-9-second-crowd-funding-not-for-animated-series-hard-news-070814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73e81985-4b9c-4815-9461-3b4ac4b92755/sm/video_thumbnail_12843020.jpg","duration":113,"publication_date":"2014-07-08T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shhhh-were-prankin-sam-advantage-content","changefreq":"weekly","video":[{"title":"S1:E770 - Shhhh! We're prankin' Sam! | Advantage Content","description":"If you aren't an Advantage member, there's no reason you shouldn't see this, because we've got an open 30-day Trial going on HERE!","player_loc":"https://roosterteeth.com/embed/shhhh-were-prankin-sam-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89d7f2b2-bc70-449b-b1f6-c6e765069803/sm/video_thumbnail_12842988.png","duration":275,"publication_date":"2014-07-08T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-kart-8-hacks-new-zelda-game-open-world-mighty-no-9-animated-series-kickstarter-hard-news-070714","changefreq":"weekly","video":[{"title":"S1:E693 - Mario Kart 8 hacks, new Zelda game Open World, Mighty No. 9 Animated Series Kickstarter | Hard News 07/07/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Mario Kart 8 hacks, new Zelda game Open World, Mighty No. 9 Animated Series Kickstarter.\r\n\t\r\n\tMario Kart 8 hacks - http://www.eurogamer.net/articles/2014-07-07-hackers-come-under-fire-for-mario-kart-8-wii-u-modding\r\n\tNew Zelda game Open World - http://www.eurogamer.net/articles/2014-07-04-miyamoto-nintendo-gradually-changing-the-structure-of-the-legend-of-zelda\r\n\tMighty No. 9 Animated Series Kickstarter - http://mightyno9.com/en/140706\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/mario-kart-8-hacks-new-zelda-game-open-world-mighty-no-9-animated-series-kickstarter-hard-news-070714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55c4f2b3-73f7-4f79-9c70-f5ee771703d4/sm/video_thumbnail_12842893.jpg","duration":221,"publication_date":"2014-07-07T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-sgc-moments-so-far-top-5","changefreq":"weekly","video":[{"title":"S1:E124 - Top 5 SGC Moments! ... So Far... | Top 5","description":"With three SGCs completed, let's look at our favorite moments in preparation of some new ones!","player_loc":"https://roosterteeth.com/embed/top-5-sgc-moments-so-far-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74e12bee-14df-46ae-9352-15396d8f22f2/sm/video_thumbnail_12842815.png","duration":370,"publication_date":"2014-07-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-weaponized-animals-ever","changefreq":"weekly","video":[{"title":"S1:E54 - The Best Weaponized Animals EVER!","description":"In video games, we like to look at animals and use them to hurt people.  Whatever the reason for that may be, these are the best animal weapons EVER!","player_loc":"https://roosterteeth.com/embed/the-best-weaponized-animals-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0112cc7c-5183-4099-bb1a-a5358656c923/sm/video_thumbnail_12842676.png","duration":409,"publication_date":"2014-07-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bubble-wrap-skin-advantage-content","changefreq":"weekly","video":[{"title":"S1:E769 - Bubble-Wrap Skin | Advantage Content","description":"The worst John Voight impression you'll ever see. Ever.","player_loc":"https://roosterteeth.com/embed/bubble-wrap-skin-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96fa7736-3c4f-4e4b-a8a0-750eb4b5a4f0/sm/video_thumbnail_12842579.png","duration":70,"publication_date":"2014-07-05T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/guile-captain-america-defend-freedom","changefreq":"weekly","video":[{"title":"S1:E768 - Guile & Captain America defend FREEDOM!","description":"Celebrate this glorious 4th of July with two of America's greatest heroes!\r\nAnimated by Mali De'lisser - YouTube, Facebook","player_loc":"https://roosterteeth.com/embed/guile-captain-america-defend-freedom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a347039-ad77-47e3-8d8b-8c498c58b0b7/sm/video_thumbnail_12842636.jpg","duration":90,"publication_date":"2014-07-04T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/10-reasons-we-hate-oregon-trail-with-evil-craig-screwattack","changefreq":"weekly","video":[{"title":"S1:E26 - 10 Reasons We HATE Oregon Trail with Evil Craig! | ScrewAttack","description":"It's the 10 Reasons Evil Craig HATES Oregon Trail!","player_loc":"https://roosterteeth.com/embed/10-reasons-we-hate-oregon-trail-with-evil-craig-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d569582-f95d-454a-b32f-f48a93eba0b1/sm/video_thumbnail_12842577.jpg","duration":71,"publication_date":"2014-07-03T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-love-oregon-trail-screwattack","changefreq":"weekly","video":[{"title":"S1:E39 - 13 Reasons We LOVE Oregon Trail! | ScrewAttack","description":"It's the 13 Reasons We LOVE Oregon Trail!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-love-oregon-trail-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b32b130-e66f-479e-8d2a-76dba9d6192a/sm/video_thumbnail_12842575.jpg","duration":58,"publication_date":"2014-07-03T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/women-banned-from-iesf-competition-airtight-games-shut-down-and-the-dualshock-4-hard-news-070214","changefreq":"weekly","video":[{"title":"S1:E692 - Women BANNED from IeSF Competition, Airtight Games Shut Down, and the Dualshock 4 | Hard News 07/02/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Women BANNED from IeSF Competition, Airtight Games Shut Down, and the Dualshock 4.\r\n\t\r\n\tWomen BANNED from IeSF Competition - http://www.vg247.com/2014/07/02/hearthstone-tournament-male-female-only-finland-open-to/\r\n\tAirtight Games Shut Down - http://www.geekwire.com/2014/airtight-games-taken-last-breath/\r\n\tThe Dualshock 4 - http://www.vg247.com/2014/07/02/ditch-your-dualshock-3-the-ps4-controller-now-works-with-ps4/\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/women-banned-from-iesf-competition-airtight-games-shut-down-and-the-dualshock-4-hard-news-070214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0abce939-413a-4fc9-bc9e-516ef83b8cf4/sm/video_thumbnail_12842469.jpg","duration":184,"publication_date":"2014-07-02T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/howd-we-feel-about-transformers-4-age-of-extinction","changefreq":"weekly","video":[{"title":"S1:E767 - How'd we feel about Transformers 4: Age of Extinction?","description":"What did you think of the newest entry in the franchise?  Let us know in the comments below!","player_loc":"https://roosterteeth.com/embed/howd-we-feel-about-transformers-4-age-of-extinction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a3349d8-e25b-4e6c-9650-e4268fe996ab/sm/video_thumbnail_12842392_0.png","duration":70,"publication_date":"2014-07-02T10:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/want-to-see-how-we-disemboweled-shaun-the-clip-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E766 - Want to see how we disemboweled Shaun? THE CLIP | Exclusive Advantage Content","description":"If you aren't an Advantage member, go here to sign up for a FREE 30 day trial!\r\nFinally, in case you missed it, here's the finished product!","player_loc":"https://roosterteeth.com/embed/want-to-see-how-we-disemboweled-shaun-the-clip-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/370d385e-00b3-488a-835e-7395c02a1dc1/sm/video_thumbnail_12841818.png","duration":458,"publication_date":"2014-07-02T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/grid-autosport-out-of-the-box","changefreq":"weekly","video":[{"title":"S1:E45 - Grid Autosport | Out of the Box","description":"After dropping the disappointment that was Grid 2 on its fans, Codemasters is looking to get things back on track with Grid Autosport. Have they done it? Find out!","player_loc":"https://roosterteeth.com/embed/grid-autosport-out-of-the-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c046f61c-bc3f-4a2e-9f30-441cc5741dfe/sm/video_thumbnail_12842448.png","duration":4472,"publication_date":"2014-07-02T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/captain-america-the-avengers-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E432 - Captain America & the Avengers | Video Game Vault","description":"It's a blast from the past as Craig discovers the lost diary of a past ScrewAttack employee and long-time friend.","player_loc":"https://roosterteeth.com/embed/captain-america-the-avengers-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cb4e3b3-e57e-438b-8979-3bac8596ecfe/sm/video_thumbnail_12842350.jpg","duration":132,"publication_date":"2014-07-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cliffy-b-returns-first-homosexual-character-in-dragon-age-and-escape-dead-island-hard-news-070114","changefreq":"weekly","video":[{"title":"S1:E691 - Cliffy B returns, first homosexual character in Dragon Age, and Escape Dead Island | Hard News 07/01/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Cliffy B returns, first homosexual character in Dragon Age, and Escape Dead Island.\r\n\t\r\n\tCliffy B returns - http://www.computerandvideogames.com/469866/cliff-bleszinski-coming-out-of-retirement-promises-announcement-this-week/\r\n\tEscape Dead Island - http://www.joystiq.com/2014/07/01/escape-dead-island-or-lose-your-mind/\r\n\tFirst homosexual character in Dragon Age - http://www.eurogamer.net/articles/2014-07-01-biowares-first-fully-gay-male-party-member-in-dai\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/cliffy-b-returns-first-homosexual-character-in-dragon-age-and-escape-dead-island-hard-news-070114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/347e4959-a6a3-4157-ade2-0ac991e8c36e/sm/video_thumbnail_12842382.jpg","duration":195,"publication_date":"2014-07-01T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hyrule-warriors-costume-dlc-gta-dev-preserves-scottish-history-sniper-elite-keys-stolen-hard-news-063014","changefreq":"weekly","video":[{"title":"S1:E690 - Hyrule Warriors costume DLC, GTA dev preserves Scottish history, Sniper Elite keys stolen | Hard News 06/30/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Hyrule Warriors costume DLC, GTA V dev preserves Scottish history, Sniper Elite keys stolen.\r\n\t\r\n\tGTA V dev preserves Scottish history - http://www.gamespot.com/articles/gta-producer-to-buy-church-for-edinburgh-community/1100-6420807/\r\n\tSniper Elite keys stolen - http://kotaku.com/sniper-elite-3-steam-codes-stolen-resold-revoked-1597650108\r\n\tHyrule Warriors costume DLC - http://www.nintendolife.com/news/2014/06/hyrule_warriors_downloadable_costume_sets_feature_twilight_princess_outfits_for_link_and_zelda\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hyrule-warriors-costume-dlc-gta-dev-preserves-scottish-history-sniper-elite-keys-stolen-hard-news-063014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cd99e81-f5a7-436e-b001-dca6d46ba7a6/sm/video_thumbnail_12842272.jpg","duration":224,"publication_date":"2014-06-30T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-freedom-top-5","changefreq":"weekly","video":[{"title":"S1:E123 - Top 5 FREEDOM! | Top 5","description":"Warning: this list is too full of American pride to make any sort of sense.  We can't help it, though; it's just that time of year when we start feeling twice as American as usual!","player_loc":"https://roosterteeth.com/embed/top-5-freedom-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c432001-4f83-435e-b7f9-34cead03e07c/sm/video_thumbnail_12842175.png","duration":262,"publication_date":"2014-06-29T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-pokemon-ever-the-best-ever","changefreq":"weekly","video":[{"title":"S1:E53 - The Worst Pokemon EVER! | The Best EVER! ","description":"What's your worst Pokemon EVER? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-worst-pokemon-ever-the-best-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f326682-3ee3-435b-b294-47c058538b68/sm/video_thumbnail_12841982.png","duration":398,"publication_date":"2014-06-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/spontaneous-questions-what-are-the-crews-personal-favorite-games-of-all-time-advantage-content","changefreq":"weekly","video":[{"title":"S1:E765 - Spontaneous Questions - What are the crew's personal favorite games of all time? | Advantage Content","description":"Hey Advantage members!  Thanks for watching.  What are some spontaneous questions YOU would ask us if you were here at the HQ?  Keep them simple (no DEATH BATTLE!), make them answerable by anyone in the office, and I'll choose one to ask next time!  If you're not an Advantage member, just go here for a free 30-day trial and take part in the best way to support ScrewAttack!","player_loc":"https://roosterteeth.com/embed/spontaneous-questions-what-are-the-crews-personal-favorite-games-of-all-time-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9406ce60-ddad-4c43-b507-d5701081eb88/sm/video_thumbnail_12841737.jpg","duration":143,"publication_date":"2014-06-28T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-season-2-preview","changefreq":"weekly","video":[{"title":"S1:E148 - SideScrollers Season 2 Preview","description":"Craig, Sam and Chad recently got together to test out some new equipment for season two of SideScrollers.  We thought we'd share the ridiculousness.  Season 2 officially premieres July 22nd, live at 4pm central.","player_loc":"https://roosterteeth.com/embed/sidescrollers-season-2-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b09655b-05d3-47d7-9d22-25c4147b5005/sm/video_thumbnail_12841877.jpg","duration":164,"publication_date":"2014-06-27T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ryse-2-cancelled-xbox-games-with-gold-and-the-launchpad-hard-news-062714","changefreq":"weekly","video":[{"title":"S1:E689 - Ryse 2 cancelled, Xbox Games With Gold, and the LaunchPAD | Hard News 06/27/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Ryse 2 cancelled, Xbox Games With Gold, and the LaunchPAD.\r\n\t\r\n\tRyse 2 cancelled - http://www.eurogamer.net/articles/2014-06-26-cryteks-ryse-2-canned-as-financial-struggle-spreads-to-shanghai\r\n\tPlaystation Plus update - http://blog.eu.playstation.com/2014/06/25/playstation-plus-july-strider-dead-space-3-towerfall-ascension/\r\n\tXbox One Games With Gold update - http://www.joystiq.com/2014/06/26/games-with-gold-dips-into-guacamelee-on-xbox-one/?ncid=rss_truncated\r\n\tFleshlight LaunchPAD - https://www.youtube.com/watch?v=T6WBBXxScrk\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/ryse-2-cancelled-xbox-games-with-gold-and-the-launchpad-hard-news-062714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96cedc93-0e05-42c1-b8ba-61f5e05e2321/sm/video_thumbnail_12841944.jpg","duration":224,"publication_date":"2014-06-27T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-godzilla-game-just-dance-world-competition-and-sgc-is-coming-hard-news-062614","changefreq":"weekly","video":[{"title":"S1:E688 - New Godzilla game, Just Dance World Competition, and SGC is coming! | Hard News 06/26/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, new Godzilla game, Just Dance World Competition, new Afro Samurai, Tuffy the Corgi, and SGC is coming!\r\n\t\r\n\tJust Dance World Competition - http://www.polygon.com/2014/6/25/5843310/just-dance-esports-electronic-sports-world-cup\r\n\tNew Godzilla game - http://www.destructoid.com/there-s-a-new-godzilla-game-rampaging-toward-ps3-277140.phtml\r\n\tAfro Samurai 2 - http://www.polygon.com/2014/6/25/5840260/afro-samurai-2\r\n\tTuffy the Corgi and the Tower of Bones - http://kotaku.com/http-youtu-be-2o1jhv_gpd8-corgi-time-check-out-the-l-1596183340\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-godzilla-game-just-dance-world-competition-and-sgc-is-coming-hard-news-062614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58535040-b748-446f-ad56-68847a51255b/sm/video_thumbnail_12841835.jpg","duration":232,"publication_date":"2014-06-26T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nexon-sues-cheaters-new-legend-of-korra-game-blue-estate-releases-on-ps4-hard-news-062514","changefreq":"weekly","video":[{"title":"S1:E687 - Nexon sues cheaters, new Legend of Korra game, Blue Estate releases on PS4 | Hard News 06/25/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Nexon sues cheaters, new Legend of Korra game, Blue Estate releases on PS4.\r\n\t\r\n\tNew Legend of Korra game - http://www.ign.com/articles/2014/06/25/platinum-games-the-legend-of-korra-coming-in-2014?watch\r\n\tBlue Estate releases on PS4 - http://kotaku.com/forget-banning-online-gamers-are-in-legal-trouble-for-1595789066\r\n\tNexon sues cheaters - http://kotaku.com/forget-banning-online-gamers-are-in-legal-trouble-for-1595789066\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nexon-sues-cheaters-new-legend-of-korra-game-blue-estate-releases-on-ps4-hard-news-062514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c57a5ec-7cba-48b5-beee-f031ba24989c/sm/video_thumbnail_12841767.jpg","duration":125,"publication_date":"2014-06-25T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reasons-we-love-hate-e3-2014-games","changefreq":"weekly","video":[{"title":"S1:E25 - Reasons We LOVE & HATE E3 2014 Games!","description":"Join Ben, Nick, and Bryan as they discuss the games from E3 2014 that they Love and Hate!","player_loc":"https://roosterteeth.com/embed/reasons-we-love-hate-e3-2014-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94923c47-ba1f-4cc9-94da-dfaa1a44d1c0/sm/video_thumbnail_12841729.jpg","duration":369,"publication_date":"2014-06-25T11:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wildstar-out-of-the-box","changefreq":"weekly","video":[{"title":"S1:E44 - Wildstar | Out of the Box ","description":"This time on Out of the Box, we're headed to Nexus for Wildstar! Will this new MMORPG really take over the genre? Find out!","player_loc":"https://roosterteeth.com/embed/wildstar-out-of-the-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/605d3bd5-b00e-4568-9c7a-8ba79fd0dabd/sm/video_thumbnail_12841722.png","duration":4198,"publication_date":"2014-06-25T08:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wanna-see-our-new-office-space-advantage-content","changefreq":"weekly","video":[{"title":"S1:E764 - Wanna see our new office space? | Advantage Content","description":"The finished office will look drastically different - and that tour will be saved for a later date!","player_loc":"https://roosterteeth.com/embed/wanna-see-our-new-office-space-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85c69085-07ea-4c8e-9bdc-cccba2c1153a/sm/video_thumbnail_12841605.png","duration":276,"publication_date":"2014-06-24T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wipeout-64-video-game-vault-screwattack","changefreq":"weekly","video":[{"title":"S1:E431 - Wipeout 64 | Video Game Vault | ScrewAttack","description":"S1:E431 - Wipeout 64 | Video Game Vault | ScrewAttack","player_loc":"https://roosterteeth.com/embed/wipeout-64-video-game-vault-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0808057f-340c-4042-b6a9-121dc81c8a85/sm/video_thumbnail_12841608.jpg","duration":123,"publication_date":"2014-06-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/primal-rage-2-surfaces-iwata-recovering-crytek-rumored-bankrupt-hard-news-062414","changefreq":"weekly","video":[{"title":"S1:E686 - Primal Rage 2 surfaces, Iwata recovering, Crytek rumored bankrupt | Hard News 06/24/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Primal Rage 2 surfaces, Iwata recovering, Crytek rumored bankrupt.\r\n\t\r\n\tPrimal Rage 2 surfaces - http://www.destructoid.com/primal-rage-2-exists-and-it-s-playable-in-an-arcade-277003.phtml\r\n\tCrytek rumored bankrupt - http://www.rockpapershotgun.com/2014/06/24/crytek-financial-trouble/\r\n\tIwata recovering from bile duct surgery - http://kotaku.com/nintendos-president-had-a-bile-duct-growth-removed-1595179410\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/primal-rage-2-surfaces-iwata-recovering-crytek-rumored-bankrupt-hard-news-062414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd097eea-a091-4f25-82e4-b6ac0349ae51/sm/video_thumbnail_12841619.jpg","duration":231,"publication_date":"2014-06-24T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-trolls-in-gaming-top-5","changefreq":"weekly","video":[{"title":"S1:E122 - Top 5 Trolls in Gaming! | Top 5","description":"Try as you might not to feed them, there are those video game characters enjoy getting a rise out of you anyway.","player_loc":"https://roosterteeth.com/embed/top-5-trolls-in-gaming-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c91aa772-a075-4b7b-8afa-5978a9f8b978/sm/video_thumbnail_12841460.png","duration":364,"publication_date":"2014-06-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-trolls-in-gaming-top-5","changefreq":"weekly","video":[{"title":"S1:E121 - Even MORE Trolls in Gaming! | Top 5","description":"More trolls,you say?  You got it.","player_loc":"https://roosterteeth.com/embed/even-more-trolls-in-gaming-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e6e6e95-0310-497a-b69b-598548b66937/sm/video_thumbnail_12841459.png","duration":197,"publication_date":"2014-06-23T17:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-beaten-by-philips-league-of-legends-collegiate-sport-playstation-now-prices-hard-news-062314","changefreq":"weekly","video":[{"title":"S1:E685 - Nintendo beaten by Philips, League of Legends collegiate sport, Playstation Now prices | Hard News 06/23/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Nintendo beaten by Philips, League of Legends collegiate sport, Playstation Now prices.\r\n\t\r\n\tPlaystation Now prices - http://www.screwattack.com/news/playstation-now-gets-some-crazy-beta-pricing\r\n\tNintendo beaten by Philips - http://www.screwattack.com/news/philips-wins-uk-patent-case-against-nintendo\r\n\tLeague of Legends collegiate sport - http://www.rmueagles.com/article/907.php\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendo-beaten-by-philips-league-of-legends-collegiate-sport-playstation-now-prices-hard-news-062314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/169b37b4-a59a-4a66-b48c-056750a79248/sm/video_thumbnail_12841541.jpg","duration":201,"publication_date":"2014-06-23T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mega64-are-heathens-and-will-be-sent-to-hell","changefreq":"weekly","video":[{"title":"S1:E763 - MEGA64 ARE HEATHENS AND WILL BE SENT TO HELL!","description":"The sinners of MEGA64 have challenged ScrewAttack to a video game competition to the death at SGC 2014. It will be a battle of good versus evil. View the bloodbath and register to attend here : http://www.sgconvention.com/","player_loc":"https://roosterteeth.com/embed/mega64-are-heathens-and-will-be-sent-to-hell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a06101d-a35f-410f-b735-6e77f69b378d/sm/video_thumbnail_12841410.jpg","duration":158,"publication_date":"2014-06-22T08:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-laugh-circle-advantage-exclusive-content","changefreq":"weekly","video":[{"title":"S1:E762 - The Laugh Circle | Advantage-Exclusive Content","description":"\"This is the dumbest fuckin' thing we've ever done\"\r\n                                                                       - Chad James","player_loc":"https://roosterteeth.com/embed/the-laugh-circle-advantage-exclusive-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/390b84a4-8e40-411b-ad84-742a45bb615b/sm/video_thumbnail_12840781.png","duration":309,"publication_date":"2014-06-21T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sunset-overdrive-female-characters-riot-games-payed-to-quit-and-ds-and-wii-wifi-restored-hard-news-062014","changefreq":"weekly","video":[{"title":"S1:E684 - Sunset Overdrive female characters, Riot Games payed-to-quit, and DS and Wii wifi restored | Hard News 06/20/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Sunset Overdrive female characters, Riot Games payed-to-quit, and DS and Wii wifi restored.\r\n\t\r\n\tSunset Overdrive female characters - http://www.polygon.com/2014/6/20/5827774/sunset-overdrive-play-as-woman-insomniac-games-assassins-creed-unity\r\n\tDS and Wii wifi restored - http://save-nintendo-wifi.com/\r\n\tRiot Games employees payed-to-quit - http://www.eurogamer.net/articles/2014-06-20-lol-riot-offers-new-hires-a-pay-out-to-quit\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/sunset-overdrive-female-characters-riot-games-payed-to-quit-and-ds-and-wii-wifi-restored-hard-news-062014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/433e12f9-8f75-4a6b-9577-e280ee695eda/sm/video_thumbnail_12841240.jpg","duration":158,"publication_date":"2014-06-20T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gta-online-heists-delayed-bayonetta-anime-and-phil-fish-at-it-again-hard-news-061914","changefreq":"weekly","video":[{"title":"S1:E683 - GTA Online Heists delayed, Bayonetta anime, and Phil Fish at it again | Hard News 06/19/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, GTA Online Heists delayed, Bayonetta anime, and Phil Fish at it again.\r\n\t\r\n\tGTA Online Heists delayed - http://www.screwattack.com/news/rockstar-apologizes-heists-have-been-delayed-gta-online-again\r\n\tBayonetta anime - http://www.screwattack.com/news/funimation-has-acquired-rights-bring-bayonetta-bloody-fate-us-and-canadian-audiences\r\n\tPhil Fish at it again - http://www.screwattack.com/news/phil-fish-thinks-youtube-creators-are-effectively-pirates-and-their-ad-revenue-belongs-him\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/gta-online-heists-delayed-bayonetta-anime-and-phil-fish-at-it-again-hard-news-061914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e1474e2-8c49-4db2-a975-911a28baad91/sm/video_thumbnail_12841087.jpg","duration":212,"publication_date":"2014-06-19T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-fight-for-destiny-the-clip","changefreq":"weekly","video":[{"title":"S1:E200 - The Fight for Destiny! | The Clip","description":"Sam and Shaun go head to head in a battle to play Destiny!\n\nProduced by John Francis McCullagh\n\nFollow us on Twitter and like us on Facebook!\nTwitter John - Twitter.com/JohnFmFilms\nTwitter Sam - Twitter.com/ScrewAttackSam\nTwitter Shaun - Twitter.com/ShaunBolen\nTwitter Austin - Twitter.com/PotatoHound\n\nTwitter ScrewAttack - Twitter.com/ScrewAttack\nFacebook ScrewAttack - Facebook.com/OfficialSA\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/the-fight-for-destiny-the-clip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b031466f-0b01-4c61-bf41-e2d4084c7a59/sm/video_thumbnail_12840671_0.jpg","duration":159,"publication_date":"2014-06-19T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-servers-can-now-profit-largest-game-collection-sold-eas-early-access-plans-hard-news-061814","changefreq":"weekly","video":[{"title":"S1:E682 - Minecraft servers can now profit, largest game collection sold, EA's Early Access plans | Hard News 06/18/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Minecraft servers can now profit, largest game collection sold, EA's Early Access plans.\r\n\t\r\n\tDICE and EA's Early Access plans - http://www.screwattack.com/news/dice-considering-early-access-model-future-battlefield-series-games\r\n\tLargest game collection sold - http://www.screwattack.com/news/largest-gaming-collection-world-auctioned-over-750000\r\n\tMinecraft servers can now profit - http://www.screwattack.com/news/mojang-bringing-big-changes-minecraft-servers-and-not-everyone-happy\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/minecraft-servers-can-now-profit-largest-game-collection-sold-eas-early-access-plans-hard-news-061814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1786c7f-a1a2-42ef-8a6c-112817665399/sm/video_thumbnail_12840969.jpg","duration":229,"publication_date":"2014-06-18T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hack-n-slash-out-of-the-box","changefreq":"weekly","video":[{"title":"S1:E43 - Hack N' Slash | Out of the Box","description":"We're hacking the world in Hack N' Slash! How is Double Fine's latest adventure game doing in Early Access? It's time to find out!","player_loc":"https://roosterteeth.com/embed/hack-n-slash-out-of-the-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24725212-f551-465d-ba11-4a41e091687c/sm/video_thumbnail_12840928.png","duration":2367,"publication_date":"2014-06-18T09:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/you-can-buy-capcom-destiny-ps4-exclusives-and-hearthstone-champion-accused-of-cheating-hard-news-061714","changefreq":"weekly","video":[{"title":"S1:E681 - You can buy Capcom, Destiny PS4 exclusives, and Hearthstone champion accused of cheating | Hard News 06/17/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\n\t\r\n\tEnter for a chance to win an E3 exclusive Smash Bros shirt!\r\n\thttp://www.screwattack.com/news/win-exclusive-smash-bros-t-shirt-e3-2014\r\nToday on Hard News, you can buy Capcom, Destiny PS4 exclusives, and Hearthstone champion accused of cheating.\r\n\t\r\n\tDestiny PS4 exclusives - http://blog.us.playstation.com/2014/06/16/destinys-playstation-exclusive-content-detailed/\r\n\tYou can buy Capcom - http://www.gamasutra.com/view/news/219300/Capcom_shareholders_open_company_up_to_takeover_possibility.php\r\n\tHearthstone champion accused of cheating - http://www.eurogamer.net/articles/2014-06-17-hearthstone-dreamhack-tournament-winner-accused-of-cheating\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/you-can-buy-capcom-destiny-ps4-exclusives-and-hearthstone-champion-accused-of-cheating-hard-news-061714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb0c796-e8be-41a3-af8c-b29392332e1a/sm/video_thumbnail_12840802.jpg","duration":210,"publication_date":"2014-06-17T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jet-grind-radio-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E430 - Jet Grind Radio | Video Game Vault","description":"S1:E430 - Jet Grind Radio | Video Game Vault","player_loc":"https://roosterteeth.com/embed/jet-grind-radio-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/041f9fcd-d3e6-4659-bef6-093d893d05f4/sm/video_thumbnail_12840782.jpg","duration":144,"publication_date":"2014-06-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pokemon-master-cards-ono-leaves-capcom-mario-kart-happy-meals-hard-news-061614","changefreq":"weekly","video":[{"title":"S1:E680 - Pokemon Master Cards, Ono leaves Capcom, Mario Kart Happy meals! | Hard News 06/16/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Pokemon Master Cards, Ono leaves Capcom, Mario Kart Happy meals!\r\n\t\r\n\tOnly 10% of Destiny revealed - http://www.worldsfactory.net/2014/06/16/destiny-alpha-had-less-than-10-game\r\n\tSF4 and Charlie Murder on Xbox Gold - http://www.thexboxhub.com/super-street-fighter-iv-and-charlie-murder-now-both-free-to-xbox-live-gold-members/\r\n\tOno steps down from Capcom - https://twitter.com/Yoshi_OnoChin/status/478531522941558784\r\n\tAngry Birds Transformers - http://www.joystiq.com/2014/06/16/angry-birds-transformers-announced/\r\n\tMario Kart Happy Meals - http://www.screwattack.com/news/mcdonald%E2%80%99s-happy-meals-play-power-get-mario-kart-8-toys\r\n\tNintendo doesn't care for live streaming - http://www.joystiq.com/2014/06/15/nintendo-doesnt-view-pure-gameplay-livestreams-as-fun/\r\n\tGoogle's Pokemon Master business cards - http://kotaku.com/google-is-awarding-people-the-title-of-pokemon-master-1591229503\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Craig - Twitter.com/StutteringCraig\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/pokemon-master-cards-ono-leaves-capcom-mario-kart-happy-meals-hard-news-061614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e44f1830-6f6f-402b-be2d-6fe26f633864/sm/video_thumbnail_12840712.jpg","duration":212,"publication_date":"2014-06-16T16:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ghost-recon-phantoms-rocksteady-part-2","changefreq":"weekly","video":[{"title":"S1:E761 - Ghost Recon Phantoms: Rocksteady Part 2","description":"Download the game here: http://bit.ly/RCZVC4\r\nChad and Sam take a look at Ghost Recon Phantoms and find the joy of bitch slapping bad kids with a riot shield.\r\n \r\n\r\n\t“This video is part of a promotional campaign for Ghost Recon Phantoms. Compensation for our participation has been provided by Ubisoft.”","player_loc":"https://roosterteeth.com/embed/ghost-recon-phantoms-rocksteady-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ec5a824-b40f-4e1d-99d8-54f851c3decf/sm/video_thumbnail_12840616.png","duration":947,"publication_date":"2014-06-15T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ghost-recon-phantoms-rocksteady-part-1","changefreq":"weekly","video":[{"title":"S1:E760 - Ghost Recon Phantoms: Rocksteady Part 1","description":"Download the game here: http://bit.ly/RCZVC4\r\nChad and Sam take a look at Ghost Recon Phantoms and find the joy of bitch slapping bad kids with a riot shield.\r\n \r\n\r\n\t“This video is part of a promotional campaign for Ghost Recon Phantoms. Compensation for our participation has been provided by Ubisoft.”","player_loc":"https://roosterteeth.com/embed/ghost-recon-phantoms-rocksteady-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ffed44a-2e4a-442c-93b8-974d18fcd6ef/sm/video_thumbnail_12840615.png","duration":1232,"publication_date":"2014-06-15T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendos-white-ps4-alienware-console-and-reggie-doesnt-care-for-streaming-hard-news-061214","changefreq":"weekly","video":[{"title":"S1:E679 - Nintendo's white PS4, Alienware console, and Reggie doesn't care for streaming | Hard News 06/12/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Nintendo's white PS4, Alienware console, and Reggie doesn't care for streaming.\r\n\t\r\n\tCheck out ScrewAttack for all your E3 coverage! - http://www.screwattack.com/events/e3-2014\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendos-white-ps4-alienware-console-and-reggie-doesnt-care-for-streaming-hard-news-061214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6baccfbf-838f-49a4-be6d-11d4eec5925b/sm/video_thumbnail_12840336.jpg","duration":175,"publication_date":"2014-06-12T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-bros-adds-pac-man-final-fantasy-news-and-no-female-assassins-hard-news-060414","changefreq":"weekly","video":[{"title":"S1:E678 - Smash Bros adds Pac-Man, Final Fantasy news, and no female assassins? | Hard News 06/04/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Smash Bros adds Pac-Man, Final Fantasy news, and no female assassins.\r\n\t\r\n\tFinal Fantasy Type-0 and Agito - http://www.screwattack.com/news/final-fantasy-type-0-and-final-fantasy-agito-slated-north-america-release\r\n\tFinal Fantasy VII G Bike - http://www.screwattack.com/video/Final-Fantasy-VII-GBike-rides-out-of-the-Gold-Saucer-and-onto-your-mobile-device-12840164\r\n\tSmash Bros adds Pac-Man - http://www.screwattack.com/video/Arcade-icon-PacMan-hungers-for-battle-in-Smash-Bros-for-Wii-U-and-3DS-12840146\r\n\tUbisoft skips female assassins in Assassins Creed Unity due to additional work - http://www.screwattack.com/news/ubisoft-skips-female-assassins-assassins-creed-unity-due-additional-work\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/smash-bros-adds-pac-man-final-fantasy-news-and-no-female-assassins-hard-news-060414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb9dec27-763f-46c2-bb80-b6443f46df31/sm/video_thumbnail_12840194.jpg","duration":187,"publication_date":"2014-06-11T14:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-e3-2014-recap-hard-news-061014","changefreq":"weekly","video":[{"title":"S1:E677 - Nintendo E3 2014 RECAP | Hard News 06/10/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Nintendo E3 2014 RECAP.\r\n\t \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendo-e3-2014-recap-hard-news-061014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa8c732b-1255-4463-bb93-81fdb0b730e9/sm/video_thumbnail_12840087.jpg","duration":186,"publication_date":"2014-06-10T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sony-e3-conference-2014-recap-hard-news-060914","changefreq":"weekly","video":[{"title":"S1:E676 - Sony E3 Conference 2014 RECAP | Hard News 06/09/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Sony E3 Press Conference RECAP.\r\n\t \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/sony-e3-conference-2014-recap-hard-news-060914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d1570ec-51e5-43b9-b096-63a54cb518d3/sm/video_thumbnail_12840002.jpg","duration":215,"publication_date":"2014-06-10T01:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/microsoft-e3-press-conference-recap-hard-news-060914","changefreq":"weekly","video":[{"title":"S1:E675 - Microsoft E3 Press Conference RECAP | Hard News 06/09/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Microsoft E3 Press Conference RECAP.\r\nCheck out ScrewAttack for all your E3 coverage!\r\n\thttp://www.screwattack.com/events/e3-2014\r\n\t \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/microsoft-e3-press-conference-recap-hard-news-060914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b463526-8179-4997-bc31-0547c0ce0bdd/sm/video_thumbnail_12839935.jpg","duration":152,"publication_date":"2014-06-09T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-in-the-life-screwattack-through-the-eyes-of-shauntern-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E759 - Day in the life - ScrewAttack through the eyes of Shaun(tern) | Exclusive Advantage Content","description":"Shaun straps a GoPro to his head for an entire work day. See what happens in this 4-minute time lapse.","player_loc":"https://roosterteeth.com/embed/day-in-the-life-screwattack-through-the-eyes-of-shauntern-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4e885ee-39e5-4f76-a96b-29d42a179eb8/sm/video_thumbnail_12839557.png","duration":224,"publication_date":"2014-06-07T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-mortal-kombat-kombatants-ever-the-best-ever","changefreq":"weekly","video":[{"title":"S1:E52 - The Best Mortal Kombat Kombatants EVER! | The Best EVER!","description":"Who are the kombatants that are the best at saving Earthrealm or invading it? These guys!\r\nWho is your best Mortal Kombat Kombatant EVER!? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-best-mortal-kombat-kombatants-ever-the-best-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7dad062-b015-47c0-80d8-1512d6fc0d42/sm/video_thumbnail_12839650.png","duration":395,"publication_date":"2014-06-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iwata-of-nintendo-skips-e3-due-to-health-battlefield-leaks-usf4-on-ps4-hard-news-060414","changefreq":"weekly","video":[{"title":"S1:E674 - Iwata of Nintendo skips E3 due to health, Battlefield leaks, USF4 on PS4? | Hard News 06/04/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Nintendo President skips E3 due to health issues, Battlefield Hardline leaks again, USF4 to PS4... maybe.\r\n\t\r\n\tBattlefield Hardline leaks again - http://www.screwattack.com/video/Leaked-official-trailer-for-Battlefield-Hardline-has-an-October-21st-release-date-12839558\r\n\tUSF4 to PS4... maybe - http://www.screwattack.com/news/mad-catz-new-ultra-themed-fightstick-playstation-may-point-usfiv-ps4\r\n\tNintendo President skips E3 due to health issues - http://www.screwattack.com/news/nintendo-president-satoru-iwata-will-have-miss-e3-due-illness\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/iwata-of-nintendo-skips-e3-due-to-health-battlefield-leaks-usf4-on-ps4-hard-news-060414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb006de0-a9a5-4405-9502-0748eabaeda3/sm/video_thumbnail_12839564.jpg","duration":224,"publication_date":"2014-06-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-overtime-2014-with-geoff-keighley-starring-geoff-keighley","changefreq":"weekly","video":[{"title":"S1:E758 - E3 Overtime 2014 with Geoff Keighley! (Starring Geoff Keighley!)","description":"Geoff Keighley asks the gaming industry the hard-hitting questions once again!  This time, get some insight from Ed Boon, Sony's Andrew House, and... a social media intern from Microsoft.","player_loc":"https://roosterteeth.com/embed/e3-overtime-2014-with-geoff-keighley-starring-geoff-keighley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d04e9ba-a4aa-48fa-8048-e67f4228d96f/sm/video_thumbnail_12839555.png","duration":328,"publication_date":"2014-06-06T08:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mega64-promises-to-destroy-everyone-at-sgc-2014","changefreq":"weekly","video":[{"title":"S1:E757 - MEGA64 promises to destroy everyone at SGC 2014","description":"Our old rivals are back and they're up for another challenge at SGC 2014. ButtAttack officially accepts! We'll be announcing our games right after E3.","player_loc":"https://roosterteeth.com/embed/mega64-promises-to-destroy-everyone-at-sgc-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca2f0b62-8f90-4883-abc1-c9b1ba420ac7/sm/video_thumbnail_12839480.png","duration":148,"publication_date":"2014-06-05T13:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/xbone-better-without-kinect-ps4vita-bundle-ea-e3-reveals-hard-news-060514","changefreq":"weekly","video":[{"title":"S1:E673 - Xbone better without Kinect, PS4/Vita Bundle, EA E3 reveals | Hard News 06/05/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Xbone better without Kinect, PS4/Vita Bundle, EA E3 reveals.\r\n\t\r\n\tPS4/Vita Bundle - http://www.screwattack.com/news/rumor-amazon-product-listing-pre-maturely-reveals-ps4vita-ultimate-players-edition-bundle\r\n\tEA E3 reveals - http://www.screwattack.com/news/electronic-arts-set-premier-half-dozen-new-games-e3-2014\r\n\tXbone better without Kinect - http://www.screwattack.com/news/kinect-free-xbox-one-getting-power-boost-ditching-peripheral\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/xbone-better-without-kinect-ps4vita-bundle-ea-e3-reveals-hard-news-060514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b285ab8a-6dbc-4390-ba88-f377fa05cf8a/sm/video_thumbnail_12839374.jpg","duration":199,"publication_date":"2014-06-05T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/battlefield-hardline-beta-japan-ends-psp-shipments-xbox-one-gold-titles-hard-news-060414","changefreq":"weekly","video":[{"title":"S1:E672 - Battlefield Hardline Beta, Japan ends PSP shipments, Xbox One Gold titles | Hard News 06/04/14","description":"Register for SGC here and see Mega Man creator Keiji Inafune!\r\n\twww.sgconvention.com/tickets\r\nToday on Hard News, Battlefield Hardline Beta, Japan ends PSP shipments, Xbox One Gold titles.\r\n\t\r\n\tBattlefield Hardline Beta - http://www.screwattack.com/news/battlefield-hardline-beta-key-your-movie-theater\r\n\tJapan ends PSP shipments - http://www.screwattack.com/news/psp-dead\r\n\tXbox One Gold titles - http://www.screwattack.com/news/gaming-gold-lands-xbox-one\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/battlefield-hardline-beta-japan-ends-psp-shipments-xbox-one-gold-titles-hard-news-060414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63d4f879-0085-47b2-8018-631c86572e92/sm/video_thumbnail_12839280.jpg","duration":168,"publication_date":"2014-06-04T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/you-decide-the-fate-of-this-clip","changefreq":"weekly","video":[{"title":"S1:E756 - You decide the fate of this clip!","description":"Decide this video's fate!  Was it hilarity, or calamity? ","player_loc":"https://roosterteeth.com/embed/you-decide-the-fate-of-this-clip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14423845-57b6-41a6-8f83-f49a0318c810/sm/video_thumbnail_12839029_4.png","duration":362,"publication_date":"2014-06-04T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-loot-my-box-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E100 - LOOT MY BOX - Overwatch Gameplay","description":"Are all of you out there still curled into a ball and slowly muttering to yourself after the fighting in the last Overwatch vid? Well, you can breathe easy because the boys are much more positive this time around. Sometimes you just have to stay together for the kids.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-loot-my-box-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/869b47a9-48ce-4aba-9d17-f6fb68f5761a/sm/2371242-1465502393165-FH_Thumb_11_copy_44.jpg","duration":1330,"publication_date":"2016-06-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-vagina-bags-quiplash-gameplay","changefreq":"weekly","video":[{"title":"2016:E99 - VAGINA BAGS - Quiplash Gameplay","description":"Part two of our race to the bleak depths of our comedic abilities. We blame you for encouraging this inexcusable behavior. You should all be ashamed of yourselves.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/filmdstryr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nhttps://twitter.com/_JacobFullerton\n\nhttps://twitter.com/real_rtbones\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-vagina-bags-quiplash-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5520586a-578e-48d8-8648-46afc1ba6872/sm/2371242-1465502018528-FH_Thumb_11_copy_45.jpg","duration":525,"publication_date":"2016-06-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-truck-me-harder-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E12 - TRUCK ME HARDER Uncut - Fullhaus","description":"WHO ARE ALL THESE PEOPLE? Adam's gone for one day and all these squatters are ploppin' down and jumpin' trucks.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-truck-me-harder-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0df2fefd-2f81-4ea0-8308-fa4e666eb935/sm/1533704-1465589433695-Clustertruck_Thumbnail.png","duration":3827,"publication_date":"2016-06-10T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-handicap-hitman-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E98 - HANDICAP HITMAN - Wheelhaus Gameplay","description":"Bruce’s hallmarks of a classic indie game: \n\n1. Collect stuff\n\n2. Avoid obstacles\n\n3. Cool music\n\n4. Make Bruce want to smash his monitor to bits with a pool cue.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-handicap-hitman-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b65f5c6d-ba1a-40b7-874c-2ea181344ac3/sm/2371242-1465501906372-FH_Thumb_11_copy_46.jpg","duration":951,"publication_date":"2016-06-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-dead-bt-dawn","changefreq":"weekly","video":[{"title":"2016:E21 - Let's Play - Dead by Daylight Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nDid you ever see “Jason X”? The one where the government freezes him then sends him into space for some reason. And then they thaw him out for some other reason. And then he gets blowed up and put in some sort of nano-healing chamber. And then he comes out but he’s, like, bigger and half robot or something. And then they fight him in a holodeck reconstruction of Camp Crystal Lake. Someone gave them $11,000,000 to make that. Have fun at work, everybody.\n\n\n\nWatch Part 2, here: http://bit.ly/1UHpBtl\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-dead-bt-dawn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0ab3239-9c9e-4fb8-a166-01c94d7907c0/sm/2371242-1465507390510-Duo_Thumbnail_Template_copy_7.jpg","duration":727,"publication_date":"2016-06-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hooked-on-murder-dead-by-daylight-gameplay","changefreq":"weekly","video":[{"title":"2016:E97 - HOOKED ON MURDER - Dead by Daylight Gameplay","description":"The Funhaus crew learns a valuable lesson about looking out for one another. Mainly, to not do that. Ever.\n\n Don’t forget to check out part 1 of this video on the LetsPlay channel.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hooked-on-murder-dead-by-daylight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71a7b6d-e35f-415f-a453-078ec0ebc126/sm/2371242-1465517977347-FH_Thumb_11_copy_47.jpg","duration":967,"publication_date":"2016-06-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-two-tickets-to-the-gun-show-funhaus-comments-22","changefreq":"weekly","video":[{"title":"2015:E25 - TWO TICKETS TO THE GUN SHOW - Funhaus Comments #22","description":"We try our best to keep it real positive this week while flexing our way through your comments. I just wish Peake wouldn't curse so much. He's better than that. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-two-tickets-to-the-gun-show-funhaus-comments-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09010bf2-c06e-4437-956d-0132700af560/sm/2371242-1465488808046-FH_Thumb_Template2.jpg","duration":760,"publication_date":"2016-06-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dota-is-g-a-y-oh-ya-it-iz-fair-use-fair-use-youtubers-life-gameplay","changefreq":"weekly","video":[{"title":"2016:E96 - DOTA IS GAY??????????????? OH YA IT IZ FAIR USE FAIR USE - Youtubers Life Gameplay","description":"Prepare yourself the the grittiest, most shockingly accurate portrayal of the lives of the Funhaus staff ever made... if we were all little animated girls screaming at our moms. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dota-is-g-a-y-oh-ya-it-iz-fair-use-fair-use-youtubers-life-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0369979b-16a7-4476-9d87-6c874c8faf20/sm/2371242-1465432278716-FH_Thumb_11_copy_43.jpg","duration":1296,"publication_date":"2016-06-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/in-review-2016-mirror-s-edge-catalyst-in-review","changefreq":"weekly","video":[{"title":"2016:E1 - Mirror's Edge Catalyst","description":"We weigh in on Mirror's Edge. Just how edgy ARE the mirrors? Pretty damn edge.","player_loc":"https://roosterteeth.com/embed/in-review-2016-mirror-s-edge-catalyst-in-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e08846fc-680a-4e70-a909-04aa7ef815aa/sm/1788482-1465423224008-fh_thumb_11_copy.jpg","duration":1475,"publication_date":"2016-06-08T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-jerk-off-jets-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E95 - JERK OFF JETS - GTA 5 Gameplay","description":"You know that scene where all the greased up fighter pilots are playing volleyball in the sand and flexing and hugging and stuff as Kenny Loggins croons in the background? Are you there? Can you feel the spray? Can you smell the cocoa butter mixed with well-earned perspiration? Can you envision the turgid, veiny musculature. Take a breath. The Funhaus office is even sexier than that.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-jerk-off-jets-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4886e737-b4ed-4441-934a-eaa2624ced5c/sm/2371242-1465321162204-FH_Thumb_11_copy_41.jpg","duration":791,"publication_date":"2016-06-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-temp-title","changefreq":"weekly","video":[{"title":"2016:E22 - WE ARE NINJA TURTLES","description":"A lot of fanfic discussion this week. Plus, some truck jumpin', sweet thighs, and tropical sunsets!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-temp-title","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89089435-e31f-489e-bab5-7ffe15339107/sm/1533704-1465402633947-Fanshow_Thumbnail.jpg","duration":2513,"publication_date":"2016-06-08T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-battlefield-dumb-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E94 - BATTLEFIELD DUMB - GTA 5 Gameplay","description":"Ch: 57 8:00pm “Kill-o-copter”\n\nTanner and Kill-o-copter head south of the border to rescue Senator Billingsley from a rogue T.R.i.D.N.T. agent. Little do they know that DoxonCorp has corrupted Kill-o-copter’s programming with a sub-command to strafe a Tijuana hospital. Looks like there’ll be more than just well-timed zingers flying through the Mexican skies, this Sunday at 8:00!\n\n\n\nS.L.A.U.G.H.T.E.R -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/A_UwZ0HFRkCqya_dktnALw#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-battlefield-dumb-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f6b41e0-9a5f-4949-b09a-4c7644de3ccd/sm/2371242-1465258079570-FH_Thumb_11_copy_40.jpg","duration":585,"publication_date":"2016-06-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-do-you-care-about-e3-dude-soup-podcast-73","changefreq":"weekly","video":[{"title":"2016:E73 - DO YOU CARE ABOUT E3? - Dude Soup Podcast #73","description":"Visit our sponsors! Get two free meals with free shipping by going to http://www.blueapron.com/soup!\n\nAnd get $3 off new subscriptions by going to http://www.lootcrate.com/dudesoup!\n\n\n\nWe hope you care at least a little, because we're about to chime in on all things E3 in advance of the big event. Also, we spend a fair amount of time talking about how great Peake is. Seriously, you have no idea.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-do-you-care-about-e3-dude-soup-podcast-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72cfa475-a6a8-4a03-a6b8-572492b91ad5/sm/2371242-1465350315114-FH_Thumb_11_copy_42.jpg","duration":3811,"publication_date":"2016-06-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-our-own-celebrity-t-h-r-e-e-s-o-m-e-open-haus-68","changefreq":"weekly","video":[{"title":"2016:E24 - OUR OWN CELEBRITY THREESOME? - Open Haus #68","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nSpider-Larr hears the wail of sirens, leaps to his feet, throws his manga to the floor, dons his suit, checks his web cartridges, glances at the manga, unzips his suit, reads a little more, has a light snack, passes out around 7:45. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-our-own-celebrity-t-h-r-e-e-s-o-m-e-open-haus-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a8d6240-6502-418b-a09b-302bc80d839e/sm/2371242-1464990621419-Openhaus_6-7-16.jpg","duration":622,"publication_date":"2016-06-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-slam-dump-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E23 - SLAM DUMP - Demo Disk Gameplay","description":"I could be wrong, but I'm pretty sure we don't mock a single dead person in this whole video. I don't even know who we are anymore. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-slam-dump-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe667007-e06c-4b3b-ad2a-7f511462dbf0/sm/2371242-1464988098829-FH_Thumb_11_copy_37.jpg","duration":911,"publication_date":"2016-06-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-cum-vs-teen-google-trends-show","changefreq":"weekly","video":[{"title":"2016:E93 - TEEN VS CUM - Google Trends Show","description":"If you're looking for a video to introduce your Pop-pop and Gammy to the world of Funhaus, just keep on movin'.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-cum-vs-teen-google-trends-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f535733-2e03-44af-9b01-6ca0f8495acd/sm/2371242-1464891756565-FH_Thumb_11_copy_35.jpg","duration":1274,"publication_date":"2016-06-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-funhaus-vs-cow-chop-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E92 - FUNHAUS VS COW CHOP - Overwatch Gameplay","description":"So much fighting! Watching this live was like sitting through your parents' divorce hearing. Don't worry, mommy and daddy still love you. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttps://twitter.com/ImmortalHD\n\nhttps://twitter.com/UberHaxorNova\n\nhttps://twitter.com/HungryHundar\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-funhaus-vs-cow-chop-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39036588-9d2c-4b03-850a-9b0fd25d9f8e/sm/2371242-1464911425066-FH_Thumb_11_copy_36.jpg","duration":1623,"publication_date":"2016-06-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-truck-me-harder-clustertruck-gameplay","changefreq":"weekly","video":[{"title":"2016:E91 - TRUCK ME HARDER - Clustertruck Gameplay","description":"All this sexual truck wordplay is giving me a ... semi? Aggghhahahahaha! *(flings self into traffic)*\n\n\n\nSign up for the Clustertruck Alpha:\n\nhttp://www.landfallgamestudio.com/clustertruck/\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/filmdstryr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/thenasacova\n\nhttp://twitter.com/_jacobfullerton\n\nhttp://twitter.com/real_rtbones\n\nhttp://twitter.com/kinowolf\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-truck-me-harder-clustertruck-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3f82ee5-67ea-45dc-9360-2f053664e90d/sm/2371242-1464821147566-FH_Thumb_11_copy_33.jpg","duration":1187,"publication_date":"2016-06-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-black-ops-3-zombies","changefreq":"weekly","video":[{"title":"2016:E20 - BUSH HUNTER - Black Ops 3 Zombies Starring Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nPrepare for way more crotch shots and male scissoring than you would expect from a WW2-era zombie shooter.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-black-ops-3-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8e96647-cfe0-4785-b83c-966b080c9ffb/sm/2371242-1464906083731-Duo_Thumbnail_Template_copy_6.jpg","duration":1103,"publication_date":"2016-06-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-f-ck-the-police-gta-5-heists-gameplay","changefreq":"weekly","video":[{"title":"2016:E90 - F*CK THE POLICE - GTA 5 Heists Gameplay","description":"So I went down to the marina to see a bunch of broats even though I have five of broats of my own. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-f-ck-the-police-gta-5-heists-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6aabc3b6-46ee-4ae6-a83b-0e4adc5b6686/sm/2371242-1464739698065-FH_Thumb_11_copy_28.jpg","duration":795,"publication_date":"2016-06-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-are-we-g-a-y-funhaus-comments-21","changefreq":"weekly","video":[{"title":"2015:E24 - ARE WE GAY? - Funhaus Comments #21","description":"Rooster Teeth Sponsorship! http://roosterteeth.com/sponsorship/?r=funhaus\n\n\n\nYou ready for the whiggity-whackest, dopest, most lit episode of Your Cizzoments ever?! Neither are we. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-are-we-g-a-y-funhaus-comments-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4510fa5e-0ae3-49cf-8788-b36617711153/sm/2371242-1464818436393-FH_Thumb_Template_1.jpg","duration":814,"publication_date":"2016-06-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-worst-stunts-ever-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E11 - WORST STUNTS EVER Uncut - Fullhaus","description":"Over an ENTIRE HOUR of GTA hijinks, where the payoff is more jokes about Waterworld (the stunt show, not the movie).","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-worst-stunts-ever-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bca818a-f3cb-4af9-b01c-3130e2f8b85a/sm/1533704-1464884833423-Fullhaus_GTA_STunt_SHow.jpg","duration":4153,"publication_date":"2016-06-02T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dui-simulator-crappy-simulator-gameplay","changefreq":"weekly","video":[{"title":"2016:E89 - DUI SIMULATOR - Crappy Simulator Gameplay","description":"Seriously, kids. Don't drink and drive. Or meth and drive. Or any of the stuff in this game and drive. Also don't blow stuff up please.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dui-simulator-crappy-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f16763c-d9d1-4102-b976-00b40c70c1ba/sm/2371242-1464812929580-FH_Thumb_11_copy_30.jpg","duration":850,"publication_date":"2016-06-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-fight-the-hacks-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E88 - FIGHT THE HACKS - GTA 5 Gameplay","description":"Rather than let another damn hacker ruin their fun, the boys instead decide to try and kill this unkillable flying a-hole as best they can. They also sit in a hot tub, sip champagne, and enjoy a good old-fashioned jet-ski joust.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-fight-the-hacks-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4641d94-6e55-4e12-ab47-b3d7ba2caae0/sm/2371242-1464735774200-FH_Thumb_11_copy_29.jpg","duration":1038,"publication_date":"2016-06-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-corkscrew-you-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E87 - CORKSCREW YOU - GTA 5 Gameplay","description":"Come watch Ol' Fourth-Try-Willems and the gang battle through a sea of fans and Lawrence's constant looks of disappointment.\n\n\n\nWild Card -- https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/0gYXb3Qt3kONesfFOGmA7Q#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-corkscrew-you-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fbd4333-d240-4b2d-be20-86a2bf0cf903/sm/2371242-1464801546082-FH_Thumb_11_copy_31.jpg","duration":602,"publication_date":"2016-06-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-nobody-saw-x-men-a-p-o-c-a-l-y-p-s-e-dude-soup-podcast-72","changefreq":"weekly","video":[{"title":"2016:E72 - NOBODY SAW X-MEN APOCALYPSE? - Dude Soup Podcast #72","description":"Support our sponsor! Buy a MVMT watch today at http://www.mvmtwatches.com/dudesoup\n\n\n\nWe catch you up on Kinda Funny Live, some sort of X-person movie, how brutally punk Lawrence is, and the more bizarre and scary side of fandom.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-nobody-saw-x-men-a-p-o-c-a-l-y-p-s-e-dude-soup-podcast-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d923c9a4-c577-4eaf-8584-7f39d1816b0f/sm/2371242-1464739503128-FH_Thumb_11_copy_27.jpg","duration":3995,"publication_date":"2016-06-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-attractive","changefreq":"weekly","video":[{"title":"2016:E21 - WE ARE ATTRACTIVE","description":"That Google Slides feature is a real lifesaver, just stop spamming those questions OK.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-attractive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12a34b66-7159-4ba9-a1d3-1109177f00b5/sm/1788482-1464741025250-Fanart36.png","duration":2496,"publication_date":"2016-05-31T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-are-g-i-r-l-y-open-haus-67","changefreq":"weekly","video":[{"title":"2016:E23 - WE ARE GIRLY? - Open Haus #67","description":"Ask us questions here! \n\nhttp://www.reddit.com/r/funhaus \n\n\n\nPeake explores his deep desire to go on a grand Ewok adventure and fight a Gorax or whatever. Meanwhile, the rest of the team uses democracy to determine who is the girliest in the land.\n\n\n\nFollow us on Twitter: \n\n\nhttp://twitter.com/adamkovic \n\nhttp://twitter.com/brucegreene \n\nhttp://twitter.com/jameswillems \n\nhttp://twitter.com/mattseditbay \n\nhttp://twitter.com/sirlarr \n\nhttp://twitter.com/elysewillems \n\nhttp://twitter.com/omarcito \n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-are-g-i-r-l-y-open-haus-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2019aaf8-6227-4df2-925d-f2f468c31aad/sm/1533704-1464380841616-Openhaus_Thumbnail.jpg","duration":741,"publication_date":"2016-05-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-pirate-orgy-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E22 - PIRATE ORGY - Demo Disk Gameplay","description":"Can we protect Gore Verbinski's vision from Kiera Knightley's weird mouth? Will Ron Weasley ever escape them boobs? Set sail with Captain Wiki to find out!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-pirate-orgy-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9d2fcf5-dba7-47e2-a01b-c3d75073aa0d/sm/1533704-1464383451524-FH_Thumb_11_copy_1.jpg","duration":911,"publication_date":"2016-05-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-git-gud-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2016:E86 - GIT GUD - Overwatch Gameplay","description":"Did you know that it's possible to be TOO good at Overwatch? No? Then look no further, as we prove that no amount of Pharah ults can seize that sweet, sweet gold from our sweaty paws.\n\n\n\nFollow us on Twitter:\n\nhttp://twitter.com/adamkovic \n\nhttp://twitter.com/brucegreene \n\nhttp://twitter.com/jameswillems \n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-git-gud-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea907b0b-4e78-407a-bdc9-e1256252209c/sm/1533704-1464388862014-FH_Thumb_11_copy_2.jpg","duration":1628,"publication_date":"2016-05-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-black-humor-quiplash-gameplay","changefreq":"weekly","video":[{"title":"2016:E85 - BLACK HUMOR - Quiplash Gameplay","description":"See how long we can stay decent before plummeting to the very bottom of the barrel and start scrapin'. Be forewarned: this video definitely doesn't contain any jokes about race, NASCAR, or Chyna. Nope, no Chyna jokes here...\n\n\n\nFollow us on Twitter: \n\n\nhttp://twitter.com/brucegreene \n\nhttp://twitter.com/jameswillems \n\nhttp://twitter.com/sirlarr \n\nhttp://twitter.com/filmdstryr \n\nhttp://twitter.com/elysewillems \n\nhttp://twitter.com/omarcito \n\nhttps://twitter.com/_JacobFullerton \n\nhttps://twitter.com/real_rtbones \n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-black-humor-quiplash-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccb9db7e-849e-4788-8d51-5076c027decc/sm/1533704-1464368236775-FH_Thumb_11_copy.jpg","duration":828,"publication_date":"2016-05-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-skyhook-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E19 - Let's Play - Skyhook with Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nIt’s the age old tale of Shark-Man vs Viking vs Cat-Boy vs Ninja, all playing basketball/quidditch while avoiding lava and with their grappling hooks. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-skyhook-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1afc796e-1786-48ec-a53d-05623780aec4/sm/2371242-1464128735813-Duo_Thumbnail_Template_copy_3.jpg","duration":974,"publication_date":"2016-05-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-be-the-best-gta-5-heists-gameplay","changefreq":"weekly","video":[{"title":"2016:E84 - HOW TO BE THE BEST - GTA 5 Heists Gameplay","description":"Heists are Back! Get ready to fall in love all over again. Again.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-be-the-best-gta-5-heists-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dab2047b-11b9-4dc6-a854-49836745c585/sm/2371242-1464217543166-FH_Thumb_11_copy_25.jpg","duration":944,"publication_date":"2016-05-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-our-content-sucks-funhaus-comments-20","changefreq":"weekly","video":[{"title":"2015:E23 - OUR CONTENT SUCKS - Funhaus Comments #20","description":"Get ready to bid a fond imaginary \"Fare Thee Well\" to Lawrence and Elyse as they quit mid-show to start their own hentai/celeb impression based channel.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-our-content-sucks-funhaus-comments-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d6c22a8-acb4-45c3-abfb-8a5733055a32/sm/2371242-1464210747820-FH_Thumb_Template.jpg","duration":677,"publication_date":"2016-05-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-wheelhaus-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E10 - Wheelhaus Uncut - Fullhaus","description":"Cr1tikal and the gang train some dolphins and birth some babies in this gratuitous, unedited episode of Wheelhaus.","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-wheelhaus-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/865f4651-a42d-4b81-8c8a-5ec9df80cdc8/sm/1533704-1464207169371-Wheelhaus_Thumbnail.png","duration":3280,"publication_date":"2016-05-26T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-your-ultimate-nightmare-doom-gameplay","changefreq":"weekly","video":[{"title":"2016:E83 - YOUR ULTIMATE NIGHTMARE - DOOM Gameplay","description":"Most everyone here at Funhaus takes a crack at DOOM's nightmare mode with mixed results. I know what you're all thinking, but don't worry. Lawrence took his sweet time to find every damn codex. Riveting stuff.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/filmdstryr\n\nhttp://twitter.com/charitycr1tikal\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/thenasacova\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-your-ultimate-nightmare-doom-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7c42195-d669-478d-8a4b-b44633f3b520/sm/2371242-1464117197774-FH_Thumb_11_copy_22.jpg","duration":1079,"publication_date":"2016-05-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-worst-stunts-ever-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E82 - WORST STUNTS EVER - GTA 5 Gameplay","description":"Y’know, if all the polar ice caps melted, it would only raise sea levels by like 215 feet. Also it would take millions of years to adapt and develop gills. Plus, those bitchin’ Sea-Doos would be rusted all to hell. Take that, Costner! *(pushes glasses up on nose, takes hit off inhaler, crams self into locker)*\n\n\n\nBloodbath & Beyond: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/djCIwWo2wE6Aw5IXahEDbg#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-worst-stunts-ever-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efb151af-905f-482e-af96-0659a4e1960e/sm/2371242-1464028948642-FH_Thumb_11_copy_21.jpg","duration":685,"publication_date":"2016-05-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-we-love-the-c-u-r-e-dude-soup-podcast-71","changefreq":"weekly","video":[{"title":"2016:E71 - WE LOVE THE CURE? - Dude Soup Podcast #71","description":"Support our Sponsors! Download War Dragons here -- http://tinyurl.com/jj9dv35\n\nAndroid users: download the app and click this link to be eligible to receive the free $5 starter pack -- http://tinyurl.com/gm9cz3j\n\nGet two meals free with free shipping by going to http://www.blueapron.com/soup\n\n\n\nTalkin' 'bout dragons and The Cure and GOT and naked acrobatic Canadians.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-we-love-the-c-u-r-e-dude-soup-podcast-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6de8779-cd48-4c98-a6e1-3f9c41ba8a6f/sm/2371242-1464133801356-FH_Thumb_11_copy_23.jpg","duration":3450,"publication_date":"2016-05-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-greasy","changefreq":"weekly","video":[{"title":"2016:E20 - WE ARE GREASY","description":"Fan Show (Fan Haus?) continues to evolve. Now it sounds good AND people can fire questions at us!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-greasy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3c672af-040e-4b65-b28b-ed6e04d868fe/sm/1788482-1464136430468-Fanart35.png","duration":1615,"publication_date":"2016-05-25T05:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-be-q-u-e-e-f-i-n-open-haus-66","changefreq":"weekly","video":[{"title":"2016:E22 - WE BE QUEEFIN'? - Open Haus #66","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nSomehow we're still talking about dead celebrities, but at least this time we have Cr1tikal and Barbara Dunkelman here to help us out.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/bdunkelman\n\nhttp://twitter.com/charitycr1tikal\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-be-q-u-e-e-f-i-n-open-haus-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/116eb7f8-109f-4457-81df-c4acafe77fff/sm/2371242-1463785895517-5-24-16.jpg","duration":715,"publication_date":"2016-05-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-porn-star-batman-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E21 - PORN STAR BATMAN - Demo Disk Gameplay","description":"Do NOT talk trash about Phil Hartman in front of Bruce! That man was a treasure who was taken from us far too soon. What's that? Princess Diana? Yeah, he's cool with that. Go nuts. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/bdunkelman\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-porn-star-batman-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ff64508-1292-47ae-b2a7-1c52c2b84cbf/sm/2371242-1463791797545-FH_thumb_demo_disk_batman_fucks.png","duration":757,"publication_date":"2016-05-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-draw-yogscast-in-vr-tilt-brush-gameplay","changefreq":"weekly","video":[{"title":"2016:E81 - HOW TO DRAW YOGSCAST IN VR - Tilt Brush Gameplay","description":"240 years of seething resentment come to a head. Finally we can settle this whole independence thing once and for all. With fake ink in an office building in L.A. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/yogscastsjin\n\nhttp://twitter.com/yogscastlalna\n\nhttp://twitter.com/the_t\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-draw-yogscast-in-vr-tilt-brush-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a40b8cf9-9eda-4b01-93d9-bdc28304c686/sm/2371242-1463690742952-FH_Thumb_11_copy_19.jpg","duration":1332,"publication_date":"2016-05-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-frozen-buttholes-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E80 - FROZEN NIPPLES - Wheelhaus Gameplay","description":"Cr1tikal joins in to patch up and train dolphins, help Taylor Swift act out petty revenge fantasies, and throw Thor off of a cliff. Flash games are weird.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/charitycr1tikal\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-frozen-buttholes-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f013813e-3090-4b60-a4b7-fa78e5a6a29c/sm/2371242-1463777059028-FH_thumb_wheelhaus_frozen_buttholes.png","duration":915,"publication_date":"2016-05-20T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-7","changefreq":"weekly","video":[{"title":"2016:E18 - F*CKING LIAR - Gmod Murder with Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nOh my god, so much shrieking! Cr1tikal joins in on the killing spree this week but only seems to care about his damn cups.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/charitycr1tikal\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a7bea79-c076-433a-941e-29557133972c/sm/2371242-1463693661863-Duo_Thumbnail_Template_copy_1.jpg","duration":783,"publication_date":"2016-05-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-smartest-people-e-v-e-r-funhaus-comments-19","changefreq":"weekly","video":[{"title":"2015:E22 - SMARTEST PEOPLE EVER? - Funhaus Comments #19","description":"In which the Willems return from holiday, a ball is playfully hit about, a challenge is issued to the most cowardly of viewers, fanciful new garments are proposed, and a dog gets kicked in the face. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-smartest-people-e-v-e-r-funhaus-comments-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/894b8613-b759-44f3-85ca-5cd58311053f/sm/2371242-1463594019298-FH_Thumb_Template_copy.jpg","duration":616,"publication_date":"2016-05-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-quiplash-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E9 - Quiplash Uncut - Fullhaus","description":"Here's a full 40 minutes of many quips and even a lash or two!","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-quiplash-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbc97181-9799-4d05-843c-1d2c22a7cc22/sm/1533704-1463171445765-Quiplash_Thumbnail.jpg","duration":2626,"publication_date":"2016-05-19T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-not-die-in-vr-xortex-26-xx-gameplay","changefreq":"weekly","video":[{"title":"2016:E79 - HOW TO NOT DIE IN VR - Xortex 26XX Gameplay","description":"Z-Heavy awoke in Hexo-TECH's basement holding cell. His plan had worked perfectly. The Secur-o-drones had caught him tapping into the main ultranet feed on level 33, subduing him with an injection of Ludenol nanites. He was now in perfect position to infect their master A.I. with the code stored in his retina. All he had to do was seduce the three Sado-Coit Bots standing guard outside the door. \"Hopefully they're newer models.\", he said aloud with a sly smile. \"Those SC2s kick like a mule.\" \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-not-die-in-vr-xortex-26-xx-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce5e2749-ca90-4f30-8980-4479f87d2eb4/sm/2371242-1463600026925-FH_Thumb_11_copy_18.jpg","duration":875,"publication_date":"2016-05-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-got-hacked-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E78 - WE GOT HACKED - GTA 5 Gameplay","description":"Despite a pitiful, sad, little hacker trying to ruin our fun, we had a great time teaching Dan how to play GTA, as well as a spirited discussion about the mind-altering joys of tantric sex that none of us will ever have. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/filmdestryr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-got-hacked-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5926130-d35c-40dc-aa8d-aaafcb82b207/sm/2371242-1463535010544-FH_Thumb_11_copy_16.jpg","duration":763,"publication_date":"2016-05-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-dude-soup-podcast-70","changefreq":"weekly","video":[{"title":"2016:E70 - UNCHARTED 4 SUCKS? - Dude Soup Podcast #70","description":"Get two meals free with free shipping by going to http://www.blueapron.com/soup!\n\n\n\nOur buddy Cr1tikal stops by the podcast to break down Doom, Uncharted 4, and the process and pitfalls of reviewing games these days.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/charitycr1tikal\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-dude-soup-podcast-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecdcb28d-f907-4467-a6ed-adb5af813715/sm/2371242-1463528223173-FH_Thumb_11_copy_15.jpg","duration":3802,"publication_date":"2016-05-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-serenaded","changefreq":"weekly","video":[{"title":"2016:E19 - WE ARE SERENADED","description":"Fan Show has a new home! Turns out it's the same home as the show that happens right next to this. Weird how that turns out huh.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-serenaded","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42c370dc-a83e-4e4e-8de1-04e4c7a5b036/sm/1788482-1463525671992-Fanart34.png","duration":1776,"publication_date":"2016-05-17T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-haus-65","changefreq":"weekly","video":[{"title":"2016:E21 - WE ARE GROATS - Open Haus #65","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nIn the ruins of our UnCivil War with the boys of AH, we try and begin the healing process by giving all of you some much needed Slash-Fic fuel.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-haus-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32b52ba8-b25e-4931-b85d-dd7e9779c830/sm/2371242-1463413653149-5-17-16_1.jpg","duration":863,"publication_date":"2016-05-16T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-too-s-o-o-n-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E20 - TOO SOON? - Demo Disk Gameplay","description":"\"When dreaming I'm guided to another world. Time and time again at sunrise I fight to stay asleep. 'Cause I don't want to leave the comfort of this place. 'Cause there's a hunger, a longing to escape from the life I live when I'm awake. So let's go there, let's make our escape. Come on, let's go there, let's ask can we stay?\" - The finest band of this or any era.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-too-s-o-o-n-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bb21519-f5b1-48c9-b4f2-75fbb7bb685c/sm/2371242-1463184993814-FH_Thumb_11_copy_10.jpg","duration":1219,"publication_date":"2016-05-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-kill-your-friends-the-culling-gameplay","changefreq":"weekly","video":[{"title":"2016:E77 - KILL YOUR FRIENDS - The Culling Gameplay","description":"\"Oh, but you are alone. Who knows what you have spoken to the darkness, alone, in the bitter watches of the night, when all your life seems to shrink, the walls of your bower closing in about you, a hutch to trammel some wild thing in? So fair, yet so cold like a morning of pale Spring still clinging to Winter's chill.\" Elyse Willems\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/omarcito\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-kill-your-friends-the-culling-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85eae9d2-b60a-49ad-bc80-4545753fb9d5/sm/2371242-1462917571316-FH_Thumb_11_copy_5.jpg","duration":869,"publication_date":"2016-05-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-pranks-best-of-funhaus-april-2016","changefreq":"weekly","video":[{"title":"2016:E76 - BEST OF PRANKS - Best Of Funhaus April 2016","description":"Captain PajamaPants spells almost everything right in his latest Best Of collection. We’ve got all your bladin’, skankin’ and prankin’ favorites plus we rip that Joel wound wide open with another tearful goodbye.\n\n\n\nCaptainPajamaPants edited this for us!\n\nhttps://www.youtube.com/user/CaptainPajamaPants/\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-pranks-best-of-funhaus-april-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7458cf70-a656-4b53-9680-9750e7593afa/sm/2371242-1462909433438-FH_Thumb_11_copy_3.jpg","duration":658,"publication_date":"2016-05-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-megaman-speed-run-ah-vs-fh-let-s-play","changefreq":"weekly","video":[{"title":"2016:E17 - Megaman 2 SPEED RUN RACE - Let's Play","description":"The climax of our epic UnCivil War was unsurprisingly lacking in civility. Accusations were made. Insults traded. Chad even takes a few hits and he wasn’t even there. Who will stand victorious? No one knows. Except us. And them. And everybody who watched the stream 2 weeks ago.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-megaman-speed-run-ah-vs-fh-let-s-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f181dcd5-0fee-4ace-b41d-3d6e8fae427a/sm/2371242-1463092009706-Duo_Thumbnail_Template_copy.jpg","duration":1271,"publication_date":"2016-05-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-snipers-vs-stunters-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E75 - SNIPERS VS STUNTERS - GTA 5 Gameplay","description":"Funhaus and Achievement Hunter try and murder each other with cars. And guns. And I think there's a helicopter in there somewhere. You know the drill.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-snipers-vs-stunters-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/671a2513-d6fd-46a0-852f-537faeca8d8f/sm/2371242-1462837358863-FH_Thumb_11_copy_4.jpg","duration":961,"publication_date":"2016-05-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-we-have-c-h-a-n-g-e-d-funhaus-comments-18","changefreq":"weekly","video":[{"title":"2015:E21 - WE HAVE CHANGED? - Funhaus Comments #18","description":"You monsters! How dare you besmirch Omar's editing skills?! His fingers bleed for you. We're not mad at you, Internet. Just disappointed.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-we-have-c-h-a-n-g-e-d-funhaus-comments-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/193b4089-0aeb-4308-b028-e74d5112c3ec/sm/2371242-1462923352490-FH_Thumb_11_copy_8.jpg","duration":522,"publication_date":"2016-05-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-glitch-runners-uncut-fullhaus","changefreq":"weekly","video":[{"title":"2016:E8 - GlitchRunners Uncut - Fullhaus","description":"Early the full hour of Ray and the boys Glitchrunnin'!","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-glitch-runners-uncut-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/168bd328-8bcb-42dc-8472-14af81c80935/sm/2371242-1462396851199-glitch_live_final.png","duration":3183,"publication_date":"2016-05-12T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-always-win-ultimate-chicken-horse-gameplay","changefreq":"weekly","video":[{"title":"2016:E74 - WE ALWAYS WIN - Ultimate Chicken Horse Gameplay","description":"We hope none of you were too attached to your ear-virginity, 'cuz Dan is about to make the sweetest, gentlest of love to all of your sound-holes. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/filmdstryr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-always-win-ultimate-chicken-horse-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24bd4817-3eef-422c-ba8f-ba6170b969c9/sm/2371242-1462829918252-FH_Thumb_11_copy_1.jpg","duration":1287,"publication_date":"2016-05-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-the-biggest-losers-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E73 - THE BIGGEST LOSERS - GTA 5 Gameplay","description":"This week on “Norm and Dee”: Norm’s new boss is coming over for dinner and Dee needs to make the perfect meal. Dee pops a handful of Dexatrim, pushes her personal dreams down real deep, makes a casserole, and screams into a pillow for solid 4 hours. Next week: Dee scrubs lipstick out of Norm’s collar while staring through rain spattered window. \n\n\n\nDeathmatch: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/lAhGD3NwfEucSD2LjVjGww#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-the-biggest-losers-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b35ebc95-6a88-4798-a648-d96f158beb80/sm/2371242-1462813473456-FH_Thumb_11_copy.jpg","duration":573,"publication_date":"2016-05-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-civil-war-vs-batman-v-superman-69","changefreq":"weekly","video":[{"title":"2016:E69 - CIVIL WAR VS BATMAN v SUPERMAN - #69","description":"Visit our sponsors!\n\n Go to http://www.blueapron.com/soup for two free meals with new orders.\n\nGo to http://www.mackweldon.com/podcasts and get 20% off using promo code SOUP.\n\nGo to http://www.mvmtwatches.com/dudesoup for 15% off your order\n\n\n\nA very spoilery edition of Dude Soup in which we deep into Civil War, BVS, and the proper ways in which to cultivate a franchise.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-civil-war-vs-batman-v-superman-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ab6e070-4704-4c4f-8e7c-4b1728c4c427/sm/2371242-1462924484086-FH_Thumb_11_copy_7.jpg","duration":4083,"publication_date":"2016-05-11T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-snipers","changefreq":"weekly","video":[{"title":"2016:E18 - WE ARE SNIPERS","description":"Pachaeeewwwww. One shot, one kill. Elyse gotcha.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-snipers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebd8a2ce-1a6e-43c1-adde-d3ed51bdfa17/sm/1788482-1462924500485-Fanart33.png","duration":1783,"publication_date":"2016-05-11T00:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-love-d-e-a-t-h-open-haus-64","changefreq":"weekly","video":[{"title":"2016:E20 - WE LOVE DEATH? - Open Haus #64","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\n\"Dang it, Bones! The Constable is crawling up my tuckus about the pinata full of gummie bears you left back at that schoolhouse! You're a loose tiger! I know those Jamican exchange students liked your cat and goldfish last week but god help me if you don't get your giblets straight, I'll have you emptying pencil sharpeners in Math class by the end of the week!\"\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-love-d-e-a-t-h-open-haus-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a59cfa5-6311-4f51-b78c-0ca95efc3e22/sm/2371242-1462572919336-051016_Openhaus_thumbnail_v2.jpg","duration":577,"publication_date":"2016-05-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-big-bang-theory-vs-aids-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E19 - BIG BANG THEORY VS AIDS - Demo Disk Gameplay","description":"Bazinga. HA. HA. HA. Bazinga. HA. HA. HA. Bazinga. HA. HA. HA. \n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-big-bang-theory-vs-aids-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8bf92d1-0be9-4147-8395-088d3cd8c8d0/sm/2371242-1462571937329-FH_Template_copy.jpg","duration":983,"publication_date":"2016-05-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-fun-wars-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2016:E11 - FUN WARS - Funhaus Cartoons","description":"Someone’s gonna get sued! The gang heads into space to save us all from some sort of galactic threat but mostly just to yell at each other.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/joelrubin_\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-fun-wars-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/837f3ddc-6c46-467a-a006-8772d9ea8829/sm/2371242-1462474141801-FH_Thumb_10_copy_24.jpg","duration":293,"publication_date":"2016-05-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-lethal-league-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E16 - Let's Play - Lethal League with Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nChad introduces us to the hottest game of 2 years ago and releases all over everybody in the sickest way possible. Suuuuuurge!\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/screwattackchad\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-lethal-league-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f7cf709-62c2-4d6a-9a84-7c9a426ac878/sm/2371242-1462501661904-FH_LP_Template_copy_8.jpg","duration":798,"publication_date":"2016-05-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-chyna-a-l-i-v-e-quiplash-gameplay","changefreq":"weekly","video":[{"title":"2016:E72 - CHYNA ALIVE! - Quiplash Gameplay","description":"The lowest common denominator gets a little lower but we finally learn what kids love: Subway, vaping, blood, and (sigh) Chyna. As well as a lot of other stuff I’m pretty sure I’m not allowed to type in a description box.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-chyna-a-l-i-v-e-quiplash-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc271216-9235-4ecd-b0ef-f2232853f2f5/sm/2371242-1462483106862-FH_Thumb_10_copy_25.jpg","duration":606,"publication_date":"2016-05-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-we-love-h-e-n-t-a-i-funhaus-comments-17","changefreq":"weekly","video":[{"title":"2015:E20 - WE LOVE HENTAI? - Funhaus Comments #17","description":"We get excited about getting you excited about comments about how excited someone gets by our comments. You’re waiting for a train; a train that will take you far away. (BRAAAAAAAAAAWWM)\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-we-love-h-e-n-t-a-i-funhaus-comments-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/310b382d-65b1-4e87-b260-ba271fff375e/sm/2371242-1462385185436-FH_Thumb_10_copy_21.jpg","duration":602,"publication_date":"2016-05-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-hunnie-cam-live-fullhaus","changefreq":"weekly","video":[{"title":"2016:E7 - HunnieCam Live - Fullhaus","description":"Over 40 minutes of HOT clicking action!","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-hunnie-cam-live-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd55cf76-30eb-473c-94ef-377dd1c1f371/sm/2371242-1462382821394-FH_Thumb_10_copy_22fullhaus.png","duration":2560,"publication_date":"2016-05-05T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-salty-league-rocket-league-gameplay","changefreq":"weekly","video":[{"title":"2016:E71 - SALTY LEAGUE - Rocket League Gameplay","description":"Adam said it best: If you like grown white men yelling at each other, you are in for a treat. It gets real salty out on the court as everybody battles for D position. \n\n\n\n\nFollow us on Twitter: \n\n\nhttp://twitter.com/adamkovic \n\nhttp://twitter.com/brucegreene \n\nhttp://twitter.com/jameswillems \n\nhttp://twitter.com/sirlarr \n\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-salty-league-rocket-league-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13bb083d-478a-428a-b248-14408e1c9596/sm/1533704-1462313861064-FH_Thumb_10_copy.jpg","duration":870,"publication_date":"2016-05-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dave-mirra-memorial-race-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E70 - DAVE MIRRA MEMORIAL RACE - GTA 5 Gameplay","description":"Mira Mode unlocked! Watch Chadical shred some sick mill blades while pounding MD Code Red and eXtreme Jacked Doritos, bro! *(jams CrazyTown CD into dash, peels out in step-dad’s Nissan Maxima)*\n\n\n\nRace: https://socialclub.rockstargames.com/games/gtav/pc/jobs/job/9TYDMzs1wkODAfEIWeY3bA#\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dave-mirra-memorial-race-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a263345-81b1-463e-a597-097acea66c46/sm/2371242-1462317003660-FH_Thumb_10_copy_20.jpg","duration":530,"publication_date":"2016-05-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-make-call-of-duty-great-again-68","changefreq":"weekly","video":[{"title":"2016:E68 - MAKE CALL OF DUTY GREAT AGAIN - #68","description":"Oh boy a new set! You'd better believe everything will be different now, which is why we talk about Call of Duty, squat racks, and anime convention orgies.\n\nVisit our sponsors! Mother’s Day is almost here! Make mom smile this year by purchasing two-dozen multi-colored roses for only $29.99. Quantities are limited, so order now at 1800Flowers.com/dudesoup.\n\nAnd get a discount on Shari's Berries by going to http://www.berries.com, clicking the microphone in the upper right corner, and enter our code \"DUDE SOUP.\"","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-make-call-of-duty-great-again-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c12dd2db-8e5b-4883-8d07-02e0144cfca3/sm/1788482-1462311273560-fh_thumb_10_copy.jpg","duration":3854,"publication_date":"2016-05-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-smirking","changefreq":"weekly","video":[{"title":"2016:E17 - WE ARE SMIRKING","description":"Mighty fine crop of fan art this week. You folks out there been doing a real good job.\n\n*chews on a stalk of hay*\n\nReal good.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-smirking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d87c8ea3-3771-4b0c-bba5-052005cc5c1d/sm/1788482-1462313340922-Fanart32.png","duration":1723,"publication_date":"2016-05-03T22:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-kill-c-e-l-e-b-r-i-t-i-e-s-open-haus-63","changefreq":"weekly","video":[{"title":"2016:E18 - WE KILL CELEBRITIES? - Open Haus #63","description":"\"Damn it, Peake! The Commissioner is crawling up my keister about the trail of bodies you left back at that warehouse sting! You're a loose cannon! I know those Peruvian smugglers killed your wife and daughter last week but god help me if you don't get your head straight, I'll have you emptying meters on Pico by the end of the week!\"\n\n\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/mattseditbay\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/omarcito\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-kill-c-e-l-e-b-r-i-t-i-e-s-open-haus-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3fa8502-2eaf-4334-b9ff-c49cfe582e2d/sm/2371242-1461979244779-FH_Thumb_10_copy_9.jpg","duration":653,"publication_date":"2016-05-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-smell-my-cockpit-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E18 - SMELL MY COCKPIT - Demo Disk Gameplay","description":"We seriously need to get to the bottom of what happened to Sammy Sosa. He looks like he's wearing a skin-suit made out of Lil' Kim. \n\nFollow us on Twitter: \n\n\n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-smell-my-cockpit-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cd5973e-baa3-4411-893f-9452cdd50a1b/sm/2371242-1461980364615-FH_Thumb_10_copy_15.jpg","duration":1049,"publication_date":"2016-05-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-episode","changefreq":"weekly","video":[{"title":"2016:E69 - FUNHAUS BETTER THAN THE CREATURES? - DOOM Gameplay","description":"Only 3 things make me cry: A glorious autumn sunset, that scene at the end of Armageddon when when Bruce Willis dies, and the fact that I was 13 when the original Doom was released. Savor your youth, kids. Now get the hell off my lawn.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/gameovergreggy\n\nhttp://twitter.com/creaturehub\n\nhttp://twitter.com/kootra\n\nhttp://twitter.com/danznewz\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e27e1728-a179-46c9-9c7a-e070988eb395/sm/2371242-1461959298069-FH_Thumb_10_copy_11.jpg","duration":1123,"publication_date":"2016-04-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-6","changefreq":"weekly","video":[{"title":"2016:E15 - Let's Play - Gmod Murder with Funhaus","description":"Sometimes you just need to stalk and pretend murder all of your coworkers. \n\nCause of Death: Hilarity!\n\nWhatever, like you're so funny. \n\n\n\nSubscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6daa2a5f-b3e8-471b-9a39-ce0cdf3c62aa/sm/2371242-1461885310912-FH_LP_Template_copy_6.jpg","duration":684,"publication_date":"2016-04-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-janky-jedis-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E68 - JANKY JEDIS - Wheelhaus Gameplay","description":"The guys get angry and a little racist right out of the gate this time, setting the stage for a cut-filled episode of Wheelhaus. Apples are eaten, Dark Invader fights a zomboid, and Sam Neill finally gets his due. None of this, however, can prepare you for the dice-rolling, box-clicking majesty of Steve Jackson Starship Traveller and his cartoonishly disabled captain. (R.I.P. Engineering Officer Big Tits)\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-janky-jedis-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64e724e4-e4ff-4cba-8b37-48948d6741f3/sm/2371242-1461708776402-FH_Thumb_10_copy_4.jpg","duration":953,"publication_date":"2016-04-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-leave-chyna-alone-funhaus-comments-16","changefreq":"weekly","video":[{"title":"2015:E19 - LEAVE CHYNA ALONE - Funhaus Comments #16","description":"We hope you are all in a mood to hear about a dead woman’s sex organs, ‘cuz that’s what you’re gonna get on today’s hacky-sackin’ episode! We also explore why Adam seems so dead inside and the calming joys of watching Funhaus in the tub.\n\n\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/elysewillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/mattseditbay\n\n\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-leave-chyna-alone-funhaus-comments-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/021fe9fe-a9d9-4288-8330-c4efe97703d7/sm/2371242-1461781808693-FH_Thumb_10_copy_7.jpg","duration":716,"publication_date":"2016-04-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-live-nude-girls-hunie-cam-studio-gameplay","changefreq":"weekly","video":[{"title":"2016:E67 - LIVE NUDE GIRLS - HunieCam Studio Gameplay","description":"Ever wish you could commoditize women even more? Love Farmville but wish it had more luscious cartoon breasts? Well, we’ve got you covered because today the guys bust out their velvet suits and powder their pimp hands to play HunieCam Studio. Treat yo’ princesses right!\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-live-nude-girls-hunie-cam-studio-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b75562f-fc72-4e70-bc8f-7b11d3fe18f4/sm/2371242-1461713629464-FH_Thumb_10_copy_5.jpg","duration":922,"publication_date":"2016-04-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-episode","changefreq":"weekly","video":[{"title":"2016:E16 - WE ARE CENTAURS","description":"It's a post-PAX fan show, meaning I didn't have enough time to find all the fan art I usually do. That means a slower-paced, more relaxed show! I'm pitching it as a good thing.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1e4156f-d0e0-4cf5-ae52-3bac7b4bcaf8/sm/1788482-1461779265706-Fanart31.png","duration":1659,"publication_date":"2016-04-27T21:08:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-easy-riders-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E66 - EASY RIDERS - GTA 5 Gameplay","description":"It's not easy being green, but you know what is easy?\n\nPlaying GTA V, with ya brahs. \n\nIt's EAAAASY. So very, very EEEEEEEEAAAASSSSYYYY. \n\nTake it from me, Easy E, ya gal Wheezy. Elyse. I'm easy as hell, yo!\n\nWait -- I don't mean \"easy\" like that.\n\nWAIT!\n\n\n\n[map title in Chinese]\n\nhttps://socialclub.rockstargames.com/games/gtav/pc/jobs/job/iy9-deMkJUO9pUVhhClNvw#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-easy-riders-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d03bf950-841c-4b8b-a193-edaead334d74/sm/2371242-1461626448212-FH_Thumb_10_copy_1.jpg","duration":860,"publication_date":"2016-04-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-new-consoles-67","changefreq":"weekly","video":[{"title":"2016:E67 - XBOX ONE SLIM and PS4.5 Coming Soon? - #67","description":"Visit our sponsors! Go to http://www.1800flowers.com/dudesoup to get two dozen roses for $29.99.\n\nAnd visit http://www.berries.com/, click the microphone, and use our code \"DUDE SOUP\" for a special offer on Shari's Berries!\n\n\n\nThis week the guys talk about some of the new consoles that are rumored to be coming out later this year, and whether you should give any amount of shits about them. Also, they recap a few PAX East experiences including some unwanted financial advice and the time Lawrence made a little kid cry. Plus a brief reminder about the sensual nature of moms. Enjoy.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-new-consoles-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3950aea6-c1b4-47f9-aaa0-61103c89edae/sm/1788482-1461703673698-fh_thumb_10_copy.jpg","duration":3824,"publication_date":"2016-04-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-open-haus-62","changefreq":"weekly","video":[{"title":"2016:E17 - MILFS LOVES US? - Open Haus #62","description":"Did you know that the entire Harry Potter series was written in a single night? It's true. Find out more fun facts like this in Open Haus. An informative series where we provide YOU with fun facts from AROUND THE GLOBE!\n\n\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/open-haus-2016-open-haus-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eca90ddb-d53b-4bc2-8232-8fe6e1f0d46f/sm/2193681-1461194143655-FH_Thumb_10_copy_5.jpg","duration":677,"publication_date":"2016-04-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-1-night-in-chyna-s-vagina-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E17 - RED BARON WAS A NAZI - Demo Disk Gameplay","description":"So many Demos so little time. Like literally such little time. We're off to PAX but that doesn't stop us from giving you that Demo quality that we demand and you deserve. \n\n\n\n(So this was recorded weeks before the terrible news of Ms. Chyna's passing. Our sympathies go out to her fans and loved ones. R.I.P. Chyna. Your giant... I mean... You're doing Piledrivers in heaven now.)","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-1-night-in-chyna-s-vagina-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbf0c34f-2c4e-49eb-b5cf-3715705193a4/sm/2306964-1461261083711-FH_Thumb_10_copy_3.jpg","duration":780,"publication_date":"2016-04-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-massholes-funhaus-shorts","changefreq":"weekly","video":[{"title":"2016:E10 - MASSHOLES - Funhaus Shorts","description":"Don't watch this video when other people are around. They'll think you're socially maladjusted, which you are, but you don't want people finding out. Well, they probably already know since you ARE socially maladjusted, meaning you've been weird to them in a social setting.\n\n\n\nLook. Just don't watch the video.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-massholes-funhaus-shorts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec8e7fd2-0664-4cd8-a12e-bbff9b9ee47a/sm/2306964-1461104955000-FH_Thumb_10_copy_2.jpg","duration":258,"publication_date":"2016-04-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-party-saboteurs-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E14 - Let's Play - Party Saboteurs with Funhaus","description":"Behold, a video in which we, Funhaus, play the hit new espionage couch multiplayer game \"Party Saboteurs.\" \n\n\n\nJames cheats. \n\nBruce gets mad. \n\nElyse thinks she's coy; isn't. \n\nAdam laughs. \n\nJoyous boy. \n\nProtect him. \n\nInternet fun. \n\nFriends and mischief. \n\nNot a haiku. \n\n\n\nFin.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-party-saboteurs-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e611eb-a934-42c2-81eb-cebf78cf699d/sm/2013912-1461602197512-maxresdefault.jpg","duration":1334,"publication_date":"2016-04-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-jesus-best-of-funhaus-march-2016","changefreq":"weekly","video":[{"title":"2016:E63 - BEST OF JESUS - Best Of Funhaus March 2016","description":"Captain PajamaPants is KILLING IT! This guy watches all of our videos over and over and over and OVER until he finds the funniest things in them, then sits down to watch them AGAIN while editing a video for us. Are you joking? This sounds like absolute TORTURE. I have to watch every video we make like twice and I wanna kill myself.\n\nSo here's to you, CPP. Thanks for helping us out.\n\nhttps://www.youtube.com/user/CaptainPajamaPants/","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-jesus-best-of-funhaus-march-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/509794be-09f3-4d6f-a678-2999948c4e42/sm/2306964-1461096866502-FH_Thumb_10_copy.jpg","duration":688,"publication_date":"2016-04-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-stop-arguing-with-us-funhaus-comments-15","changefreq":"weekly","video":[{"title":"2015:E18 - STOP ARGUING WITH US - Funhaus Comments #15","description":"Watch till the end for a special announcement from Bruce.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-stop-arguing-with-us-funhaus-comments-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad3b8db1-4ab5-4d6c-92c9-f7bd00bd2279/sm/2306964-1461170992789-FH_Thumb_10_copy_1.jpg","duration":715,"publication_date":"2016-04-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-b-tchrunners-glitchrunners-gameplay","changefreq":"weekly","video":[{"title":"2016:E62 - B*TCHRUNNERS - Glitchrunners Gameplay","description":"Poor Ray. Little did he know that Lawrence was the greatest villain ever in the history of The Matrix trilogy: The Architect. Remember the old man at the end of The Matrix: Reloaded? You don't? Well, think of him this way: he's the guy that actually makes The Matrix! You know how the robots use The Matrix as a way of keeping humans in subservience? You don't? Well think of it this way: the robots control humans because humans never leave their sleep pods. You know how humans power The Matrix? You don't? Well think of it this way: humans give off electromagnetic power, and the robots harness it to power themselves. You know how robots need power? You don't? You should know more about The Matrix.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-b-tchrunners-glitchrunners-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4366c3dc-43b7-46f0-85f8-e98b7943b841/sm/2306964-1461108916409-FH_Thumb_10_copy.jpg","duration":1090,"publication_date":"2016-04-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-are-failures-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E61 - WE ARE FAILURES - GTA 5 Gameplay","description":"Here are all the various titles that Bruce rejected for this week's video title:\n\n\n\nBridge of Guys\n\nThe Bridges of Los Santos County\n\nBridge on the River DIE\n\nBridge to Tere-B*TCH-ia\n\nF*ck Money G*s \n\n2 Bridge 2 Budge\n\nGTA: Steven Tyler \"Scare-o-smith\" Edition\n\nBridget Bones' DIE-ary\n\nHot Dog Cart from the Movie \"Sleepers\"\n\n\n\nThe list goes on and on.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-are-failures-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dd9b588-35f7-4faa-a5e7-bfb7a0a9d671/sm/2193681-1461017435099-FH_Thumb_10_copy_4.jpg","duration":720,"publication_date":"2016-04-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-pew-die-pie-markiplier-hate-you-tube-drama-dude-soup-podcast-66","changefreq":"weekly","video":[{"title":"2016:E66 - PewDiePie, Markiplier HATE YouTube Drama? - #66","description":"Please support our sponsors!\n\nGet 15% percent off a MVMT Watch at http://www.mvmtwatches.com/dudesoup\n\nAnd get $50 off a Casper Matress by going to http://www.casper.com/dudesoup and using code \"dudesoup.\"\n\n\n\nWe go an entire podcast without being cynical and negative about a comic book movie. How refreshing! Except this time it's cynicism about the human race. Is that better or worse? We'll let the view counts decide.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-pew-die-pie-markiplier-hate-you-tube-drama-dude-soup-podcast-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ee2f2ed-43ae-4c6a-8aa1-33774d2ba568/sm/2306964-1461101967621-FH_Thumb_10_copy_1.jpg","duration":3576,"publication_date":"2016-04-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-hiesters","changefreq":"weekly","video":[{"title":"2016:E15 - WE ARE HEISTERS","description":"Thirty fan shows in the books! We've lived, laughed, loved, and mocked a bunch of Millennials. What's in store for the next dirty thirty?\n\n\n\nFULL\n\n\n\nON\n\n\n\nPORNOGRAPHY.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-hiesters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70d0831a-b5d2-4059-8385-4c13487d6c23/sm/1788482-1461101308071-Fanart30.png","duration":3576,"publication_date":"2016-04-19T21:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-vr-mini-golf","changefreq":"weekly","video":[{"title":"2016:E6 - VR Mini Golf","description":"Here's a full length cut of Mini Golf in VR","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-vr-mini-golf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2adf8c82-15cd-4b21-8b23-ae2a731d4d77/sm/2306964-1461081752799-VR_Full_Thumb.png","duration":2725,"publication_date":"2016-04-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-funhaus-vs-the-world-let-s-play-live-trailer","changefreq":"weekly","video":[{"title":"2016:E9 - FUNHAUS VS THE WORLD - Let's Play Live Trailer","description":"Buy Tickets for Let's Play Live - http://www.roosterteethlive.com/Use Code: FUNHAUS to make sure Funhaus sells more tickets than Achievement Hunter, Creatures, Kinda Funny, and such and such.Yes, this is a ripoff of Anchorman, and yes, we are selling stuff, but I'm gonna level with ya here. Each one of the other groups (Kinda Funny, Achievement Hunters, The Creatures, and Screw Attack) have their own codes for selling tickets for the express purpose of finding out how many tickets each group can sell.So here's what we need from you, Buff Knights: IF AND ONLY IF you want to buy tickets for Let's Play Live in LA, please use our code. We need to show these other LP'ers that our fans are a thousand times better than anyone else on the internet. And that they have bigger cocks.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-funhaus-vs-the-world-let-s-play-live-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a48b1598-9142-4ab4-beac-70192ff3927a/sm/2193681-1461000686653-FH_Thumb_10_copy_3.jpg","duration":218,"publication_date":"2016-04-18T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-how-long-can-we-hold-our-b-r-e-a-t-h-open-haus-61","changefreq":"weekly","video":[{"title":"2016:E16 - HOW LONG CAN WE HOLD OUR BREATH? - Open Haus #61","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nHere we are again. Another day, another OpenHaus. What more can we say? Have a great weekend. Then again, we finished this video on Friday. It's Tuesday for you.\n\n\n\nSigned,\n\nMatt Peake","player_loc":"https://roosterteeth.com/embed/open-haus-2016-how-long-can-we-hold-our-b-r-e-a-t-h-open-haus-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45c12015-e048-4c0e-a650-5d3072b75a22/sm/2306964-1460772259001-OH_Thumb.jpg","duration":740,"publication_date":"2016-04-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-demo-disk-59","changefreq":"weekly","video":[{"title":"2016:E16 - PRANKED YA - Demo Disk Gameplay","description":"We see you received the free demo we sent you. We're glad. You see it doesn't matter if you watch it and give us a negative comment... Bruce's been driven mad. We've proved our point. We've demonstrated there's no difference between Funhaus and everyone else! All it takes is one bad demo to reduce the sanest man alive to lunacy. Just one bad day. You had a bad day once, are we right? We know we are. Why else would you subscribe to this silly channel? You had a bad day, and it drove you as crazy as a Party Monster... Only you won't admit it! You have to keep pretending that demos are fun, that there's some point to playing a broken game! God you make us want to puke. Something like that happened to us, you know. We... We're not exactly sure which demo it was. Sometimes we remember it one way, sometimes another... If we're going to have a past, we prefer it to fill a whole binder! Ha ha ha! But our point is... our point is, we went crazy. When we saw the terrible stuff PC gamers used to put up with, we went crazy as a coot! We admit it! Why can't you? You're not unintelligent! You must see the reality of the situation. Do you know what triggered the console wars? An argument over how many demos could fit on a PC Gamer CD-Rom! A PC Gamer CD-Rom! Ha ha ha ha HA! It's all a joke! Everything anybody ever played or installed... it's all a digital, demented gag! So why can't you see the funny side? Why aren't you laughing?","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-demo-disk-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e83e0549-21d4-4682-9f59-29ce60351352/sm/1788482-1460770095023-fh_thumb_10_copy.jpg","duration":727,"publication_date":"2016-04-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-golf-in-vr-cloudlands-vr-minigolf-gameplay","changefreq":"weekly","video":[{"title":"2016:E60 - HOW TO GOLF IN VR - Cloudlands VR Minigolf Gameplay","description":"The great outdoors. Mother Nature's playground. Take it in, stretch it out, breath in that fresh air, and scout out that back nine, cuz we're going golfing!\n\n...Oh wait its mini golf? ...In VR? ...And who's playing?\n\nYea so, I guess just sit back and enjoy as a bunch of idiots bumble through the beautiful game that is Miniature Golf.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-golf-in-vr-cloudlands-vr-minigolf-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18bc0632-fdd1-4062-9f1a-0160eb2b903b/sm/2306964-1460739576127-VR-Mini-Golf-Thumb.jpg","duration":1207,"publication_date":"2016-04-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-ultimate-chicken-horse-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E13 - Let's Play - Ultimate Chicken Horse with Funhaus!","description":"Remember the show Lamb Chop's Play-Along? I bet you do. It was on in the early 90's (the best 90's) and hosted by Shari Lewis (R.I.P.). It had puppets, magic, lambs, an old woman, horses, coughing, jokes, let's plays, and a hand up someone's ass. \n\nThis video has all those things too. Enjoy!","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-ultimate-chicken-horse-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bee8893-ffa3-4a60-900d-b4b9784875ae/sm/2193681-1460681025223-FH_LP_Template_copy.jpg","duration":1514,"publication_date":"2016-04-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-huge-f-ck-ups-gta-5-heists-gameplay-series-a-funding-part-2","changefreq":"weekly","video":[{"title":"2016:E59 - HUGE F*CK UPS - GTA 5 Heists Gameplay, Series A Funding Part 2","description":"Funhaus Trivia: Our last GTA 5 heist went up one year TO THE DAY. We didn't plan that. It just... happened. Weird, right?","player_loc":"https://roosterteeth.com/embed/gameplay-2016-huge-f-ck-ups-gta-5-heists-gameplay-series-a-funding-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d2c6877-b231-4483-b63e-7700ee4e620b/sm/2193681-1460569826911-FH_Thumb_10_copy_1.jpg","duration":1095,"publication_date":"2016-04-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-players-can-t-see-each-other-in-no-man-s-sky","changefreq":"weekly","video":[{"title":"2016:E456 - No Man's Sky: Multiplayer Or Not?","description":"After years of double talk and mixed messages from Hello Games, two players have done the impossible and met up in No Man's Sky. Or at least they tried to, and now the internet is upset about it","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-players-can-t-see-each-other-in-no-man-s-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74715e85-9db0-44bd-99c8-13b2623a8a2b/sm/238166-1470855325231-thumbnail.jpg","duration":461,"publication_date":"2016-08-10T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-did-suicide-squad-f-a-i-l","changefreq":"weekly","video":[{"title":"2016:E55 - Suicide Squad: Did It FAIL?","description":"Suicide Squad had a ridiculously huge opening weekend, but that hasn't stopped people from calling it a failure already. We take a look at how Hollywood math works to see if there's any accuracy to those claims. Get ready for some NUMBERS.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-did-suicide-squad-f-a-i-l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6fd1feb-b5bd-4525-ad2e-1464d3294fa1/sm/238166-1470789043691-thumbnail.jpg","duration":448,"publication_date":"2016-08-10T00:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-improving-neo-to-compete-with-scorpio","changefreq":"weekly","video":[{"title":"2016:E455 - PS4 Neo Gets MORE Powerful to Fight Scorpio?","description":"Do we have the reveal dates for both the PS4 Neo and the Nintendo NX? Is Sony considering beefing up the Neo because it's worried about Scorpio? Is cake more delicious than pie? We'll answer a couple of these questions, and maybe some other ones.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-improving-neo-to-compete-with-scorpio","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccda310e-8380-4331-a7e1-89a57d11f3b6/sm/238166-1470776748503-thumbnail.jpg","duration":495,"publication_date":"2016-08-09T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-xbox-one-s-gone-bethesda-games-on-n-x-unbeatable-drm-defeated","changefreq":"weekly","video":[{"title":"2016:E59 - Xbox One S GONE + Bethesda Games on NX? + Unbeatable DRM Defeated?","description":"The Xbox One S as we currently know it is not just sold out but gone forever, Bethesda is considering NX games, and the unbreakable DRM might have finally met its match. All this plus Nintendo hating on Metroid's 30th birthday in today's round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-xbox-one-s-gone-bethesda-games-on-n-x-unbeatable-drm-defeated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19fd3d76-cfa9-4feb-ad64-7432a5d61f56/sm/238166-1470767993962-Roundup_aug_9.jpg","duration":519,"publication_date":"2016-08-09T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-more-youtube-o-r-i-g-i-n-a-l-s-the-know","changefreq":"weekly","video":[{"title":"2016:E454 - MORE YOUTUBE ORIGINALS? - The Know","description":"YouTube is investing in more original content. What does this mean for the future of online media's largest creator-driven platform? \n\n\n\nHosted by:\n\n@BruceGreene\n\n@AdamKovic\n\n@JamesWillems\n\n\n\nWritten by:\n\n@ElyseWillems\n\n\n\nSources:\n\nhttp://www.gamesindustry.biz/articles/2016-08-08-y...\n\nhttps://youtube.googleblog.com/2015/10/red.html\n\nhttp://variety.com/2016/digital/news/people-v-oj-s...\n\nhttps://www.midiaresearch.com/blog/how-well-is-you...\n\nhttp://www.geek.com/news/youtube-is-going-unplugge...\n\nhttps://www.yahoo.com/movies/pewdiepie-made-8-mill...\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-more-youtube-o-r-i-g-i-n-a-l-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc5afbdb-d51c-4406-96b2-f323c9af9e2f/sm/2371242-1470703287549-FH_Thumb_12_copy_8.jpg","duration":473,"publication_date":"2016-08-09T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-banned","changefreq":"weekly","video":[{"title":"2016:E453 - Pokemon GO BANNED","description":"Pokemon GO just got Pokemon NO'd in Iran, making it the first country to ban the game since its launch last month. And that's not all that's happened in the last month either, as Niantic just hit a record-shattering number.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-banned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fde59a71-ee07-4e3f-9aa2-999eb227692a/sm/238166-1470694385951-thumbnail.jpg","duration":465,"publication_date":"2016-08-08T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-delayed-for-pc","changefreq":"weekly","video":[{"title":"2016:E452 - No Man's Sky Last Minute DELAY; HUGE Changes in the Game","description":"The craziest final week of game development ever for Hello Games is over, giving us a delay for No Man's Sky on PC... But also a huge day zero update that changes the entire game.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-delayed-for-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcf0eb19-56fe-4087-8a95-f434782c0d1e/sm/238166-1470682966301-thumbnail.jpg","duration":512,"publication_date":"2016-08-08T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-shadow-complex","changefreq":"weekly","video":[{"title":"2016:E8 - Shadow Complex","description":"Join Ashley Jenkins, Gus Sorola, and Ryan Haywood as they discuss Shadow Complex on this month's Patch Game Club! This episode originally aired on August 3, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-shadow-complex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bfca5e9-5fb9-41af-af3e-695abe751346/sm/2013912-1470431912773-gc_-_SHADOW_COMPLEX_-_THUMB.jpg","duration":1019,"publication_date":"2016-08-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-suicide-squad-breaks-records-b-u-t","changefreq":"weekly","video":[{"title":"2016:E54 - Suicide Squad BREAKING Records! But...","description":"Good news, Suicide Squad is breaking some records in its first couple of days. But there's also some bad news for the film involving China and the Joker.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-suicide-squad-breaks-records-b-u-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ab40af3-97a3-48f5-a30a-f37023a937ee/sm/238166-1470437322670-thumbnail.jpg","duration":563,"publication_date":"2016-08-05T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-12","changefreq":"weekly","video":[{"title":"2016:E73 - Charging MORE for Privacy is Better! (Says Comcast)","description":"Yo! Are you down with the FCC? Well, Comcast isn't, because the FCC's been telling them they can't charge users more money if they want their private information to stay that way.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee626245-b932-4b70-af55-337db25d2069/sm/238166-1470426779503-thumbnail.jpg","duration":446,"publication_date":"2016-08-05T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-167-post-show","changefreq":"weekly","video":[{"title":"2016:E2 - All About That Lucio Ball - Patch #167 Post Show","description":"Join Eddy Rivas, Ashley Jenkins, Adam Ellis, and Kdin Jenzen as they discuss Overwatch’s Lucio Ball, Destiny and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-167-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8eadeed5-9853-41d0-bfeb-b4d71900a980/sm/2013912-1470410226128-p167_-_PS_-_THUMB.jpg","duration":1268,"publication_date":"2016-08-05T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-no-man-s-sky-censored-us","changefreq":"weekly","video":[{"title":"2015-2016:E6 - We Were CENSORED by No Man's Sky!","description":"Get those spaceships ready, because we've been hit with No Man's Censorship! Sony did not like us reporting on the leaked videos from No Man's Sky, so they hit us up with a copyright strike. Last we checked, that's not really what that system is for.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-no-man-s-sky-censored-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11521b19-ab4e-495e-a22a-56760751f41f/sm/238166-1470351197045-thumbnail.jpg","duration":496,"publication_date":"2016-08-04T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-to-include-mario-pokemon-zelda-at-launch","changefreq":"weekly","video":[{"title":"2016:E451 - Nintendo NX Will Launch with POKEMON?!","description":"We've got more potential information about the NX, including some HUGE launch window titles and an indication of what the price might be. Here's a hint about that launch title: it starts with a P and ends with OKEMON. You're probably stumped.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-to-include-mario-pokemon-zelda-at-launch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1333995f-de2e-4c7d-92be-347fec9328e1/sm/238166-1470347415599-thumbnail.jpg","duration":561,"publication_date":"2016-08-04T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-battlefield-1-sales-projections-konami-upsets-pc-gamers-xbox-one-s-runs-games-better","changefreq":"weekly","video":[{"title":"2016:E58 - Battlefield 1 Sales Projections + Konami Upsets PC Gamers + Xbox One S Runs Games Better","description":"EA is feeling a bit tepid about Battlefront sales, Konami's screwed up again, and the Xbox One S is actually running games better than the old console. Also, your destiny was totally wrong about flossing your teeth.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-battlefield-1-sales-projections-konami-upsets-pc-gamers-xbox-one-s-runs-games-better","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dca0be2-1434-4d1d-800e-6593bb999d7c/sm/238166-1470338954434-Roundup_aug_4_r3.jpg","duration":496,"publication_date":"2016-08-04T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-167","changefreq":"weekly","video":[{"title":"2016:E167 - Burnie and Gus Conquer the World (in Civilization VI) - #167","description":"Join Gus Sorola, Ashley Jenkins, Burnie Burns, Adam Ellis, and Ryan Haywood as they discuss Civilization VI, mods, Xbox One S, and more on this week's The Patch! This episode originally aired on August 3, 2016. Sponsored by MeUndies (http://bit.ly/29jAkYU) and Trunk Club (http://bit.ly/28NEl7x)\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c1577f3-8942-4d2f-b38a-84dda88ca3b4/sm/2013912-1470325331985-p167_-_TEMP_THUMB.jpg","duration":3653,"publication_date":"2016-08-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pok-mon-go-sued-the-know","changefreq":"weekly","video":[{"title":"2016:E450 - Pokémon GO Sued?! - The Know","description":"Is the Pokemon party over? Yes, provided you're looking exclusively for negative headlines. Everyone else is still playing and spending money it seems.\n\n\n\nSOURCES:\n\nClass Action Complaint Filing: https://www.scribd.com/document/319964590/Pokemon-...\n\nUS Holocaust Museum Complaints: https://www.theguardian.com/technology/2016/jul/13...\n\nPokeVision Closed: https://twitter.com/PokeVisionGo/status/7596667431...\n\nYang Liu's Open Letter: https://medium.com/@yangcliu/an-open-letter-to-joh...\n\nSensor Tower Research Post: https://sensortower.com/blog/pokemon-go-160-millio...\n\nKohei Uchimura's Data Charges: http://deadspin.com/japanese-gymnast-reportedly-ra...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pok-mon-go-sued-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81cf5568-5637-4e93-9307-75a791bc44cb/sm/2371242-1470267126781-Pokemon_Go_Sued_Thumbnail.jpg","duration":472,"publication_date":"2016-08-03T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-behind-the-scenes-trouble-with-suicide-squad","changefreq":"weekly","video":[{"title":"2016:E53 - Did Studio Interference RUIN Suicide Squad?","description":"On the heels of Suicide Squad getting terrible reviews and fans petitioning to get Rotten Tomatoes shut down, some other news has leaked out of Warner Bros. about just how much trouble the movie had during production.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-behind-the-scenes-trouble-with-suicide-squad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3964e7a3-190f-40c7-b015-1a3fce115f6e/sm/238166-1470264648777-thumbnail.jpg","duration":503,"publication_date":"2016-08-03T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-telltale-batman-broken-on-p-c","changefreq":"weekly","video":[{"title":"2016:E449 - Batman: The Telltale Series BROKEN","description":"Another PC port is totally busted at launch? At this point we shouldn't be surprised, but developers keep outdoing themselves. The latest in the long list of broken PC ports comes from Batman: The Telltale Series.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-telltale-batman-broken-on-p-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdaa4c24-5c98-481f-967a-7c5fdee48c6c/sm/238166-1470252020502-thumbnail.jpg","duration":486,"publication_date":"2016-08-03T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-new-game-has-day-1-90-dlc","changefreq":"weekly","video":[{"title":"2016:E448 - Insane $90 Day 1 DLC on a Full Retail Game","description":"Everybody gets their panties in a twist over day 1 DLC, but this day 1 DLC costs way more than most... and might actually involve real panties. It's weird.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-new-game-has-day-1-90-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20b0a865-59bc-44c1-a62b-6ccc6f954f3e/sm/238166-1470180299610-thumbnail.jpg","duration":553,"publication_date":"2016-08-03T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-10","changefreq":"weekly","video":[{"title":"2016:E52 - Suicide Squad: Is It Good?","description":"Suicide Squad is out this Friday, and reviews are trickling in. Is this movie shaping up to be any better received by critics than DC's other comic book movies? Spoilers: no, not really.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0f037c5-4795-42ab-b1c5-644899f1f3f5/sm/238166-1470173728734-thumbnail.jpg","duration":647,"publication_date":"2016-08-02T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-19","changefreq":"weekly","video":[{"title":"2016:E57 - Niantic BLAMES Pokevision + Fallout 4 Mods on PS4 STILL Delayed + Imgur Hacker Gets 5K","description":"Niantic blames third party apps for all of its Pokemon GO problems, Fallout 4 mods are still nowhere to be seen on PS4, and one Imgur hacker tells the world how he got $5,000 from the site's CEO. It's news, news, and more news on today's round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82e19134-10f8-40a7-ab99-9de9f75e9748/sm/238166-1470167203727-Roundup_aug_2.jpg","duration":560,"publication_date":"2016-08-02T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-xbox-one-s-deboxinating","changefreq":"weekly","video":[{"title":"2015-2016:E5 - Xbox One S Deboxinating","description":"You know that excitement when you get a package and then it turns out it was supposed to go to your neighbor? To that we say, \"NOT THIS TIME!\" For we have received an Xbox One S from Microsoft and we have decided to celebrate this momentous occasion by getting it naked and judging it against its peers in a completely new type of video that we have invented ourselves. we call it Deboxinating and we're pretty sure it will be a big deal some day.\n\nFull Disclosure: This is NOT a sponsored video. We got paid exactly zilch for it. We just thought it would be fun and hopefully useful. Microsoft DID provide us with the Xbox but with no obligation to do anything with it. So, uh, Sony, Nintendo, how YOU doin?","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-xbox-one-s-deboxinating","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f400f2ec-97a0-493c-ad16-679271535765/sm/24363-1470166908133-thumbnail.jpg","duration":744,"publication_date":"2016-08-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-l-e-a-k-s-the-know","changefreq":"weekly","video":[{"title":"2016:E447 - No Man's Sky LEAKS! - The Know","description":"Is No Man's Sky our video game Jesus or actual Jesus? Is the game the literal third coming of our lord and savior Jesus Christ? The answer to all your questions lie inside.\n\n\n\nSOURCES:\n\nNo Man's Sky Purchase Price: http://imgur.com/5VqGvPg\n\nDaymeeuhn Explains Purchase: https://www.reddit.com/r/gaming/comments/4v4tvl/du...\n\nDaymeeuhn SPOILER post: https://www.reddit.com/r/NoMansSkyTheGame/comments...\n\nNo Man's Sky Retail Copy Investigation: https://www.reddit.com/r/NoMansSkyTheGame/comments...\n\nDaymeeuhn Deleted Thread: https://www.reddit.com/r/NoMansSkyTheGame/comments...\n\nDaymeeuhn Edited Post: https://www.reddit.com/r/NoMansSkyTheGame/comments...\n\nSean Murray Tweets: https://twitter.com/NoMansSky/status/7591118986756...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\n\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-l-e-a-k-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90c28daa-c3c9-4d8d-8716-8a212f9f74db/sm/1533704-1470096527638-FH_Thumb_12_copy_4.jpg","duration":530,"publication_date":"2016-08-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ea-shuts-down-star-wars-fan-game","changefreq":"weekly","video":[{"title":"2016:E446 - EA Kills Battlefront Fan Project","description":"EA just blasted the unofficial Battlefront III remake, Galaxy in Turmoil, right out of the sky. The game's developer claims the game should be protected under fair use as a parody, but it seems Electronic Arts and LucasFilm disagree.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ea-shuts-down-star-wars-fan-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30eff74a-13c9-45dc-b86f-4d43cbdf19cd/sm/238166-1470086733869-thumbnail.jpg","duration":410,"publication_date":"2016-08-01T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-b-r-o-k-e-n-users-want-refunds","changefreq":"weekly","video":[{"title":"2016:E445 - Pokemon Go BROKEN, Users Want Refunds","description":"We already knew Pokemon GO had peaked, but now it could be tanking. Some new updates and shutdowns over the weekend have tons of fans pissed off and asking for their microtransaction money back.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-b-r-o-k-e-n-users-want-refunds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a3fc1eb-6b79-409f-930c-652d0937858c/sm/238166-1470081454519-thumbnail.jpg","duration":463,"publication_date":"2016-08-01T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-n-vidia-pays-out-millions-over-gtx970-scandal","changefreq":"weekly","video":[{"title":"2016:E72 - NVidia Pays Out Millions Over GTX970 Scandal","description":"If you skimped out on the GTX 980 in favor of the GTX 970, Nvidia may owe you a little bit of cash. They've just settled a class action lawsuit over false advertising, and now it's time to pay up.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-n-vidia-pays-out-millions-over-gtx970-scandal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a228d183-22d3-4d58-b833-a762b763517f/sm/238166-1469826869239-thumbnail.jpg","duration":423,"publication_date":"2016-07-29T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-psvr-needs-how-much-space","changefreq":"weekly","video":[{"title":"2016:E444 - PlayStation VR Needs HOW MUCH Space?!","description":"Hopefully you've got a sprawling detached converted garage to play your new PlayStation VR. According to a new brochure, it might need way more space to operate than people first thought.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-psvr-needs-how-much-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ad4c2b2-e258-470b-bb0c-6dd4cb88e3d7/sm/238166-1469819764770-thumbnail.jpg","duration":418,"publication_date":"2016-07-29T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-patch-166-post-show","changefreq":"weekly","video":[{"title":"2016:E1 - Cross-Platform Utopia - Patch #166 Post Show","description":"Join Ashley Jenkins, Adam Ellis, Andy Blanchard, and Kdin Jenzen as they discuss Tim Sweeney’s comments, cross-platforming and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-patch-166-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ef3b616-c801-41ab-93fc-b39d00ddaaaa/sm/2013912-1469808338956-PATCH166_-_PS-_Thumb.png","duration":1718,"publication_date":"2016-07-29T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-phone-sells-1-billion-biggest-product-e-v-e-r","changefreq":"weekly","video":[{"title":"2016:E71 - iPhone is the BIGGEST Product EVER!","description":"Could the iPhone be the biggest product EVER? And no, we're not exaggerating just so you'll click this. According to some data, it might actually be one of the biggest across any industry, now that they've hit a new milestone.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-phone-sells-1-billion-biggest-product-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e845430-304e-4f04-9a80-7f0a1f954bdb/sm/238166-1469747094852-thumbnail.jpg","duration":408,"publication_date":"2016-07-28T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-publisher-forgot-to-release-game","changefreq":"weekly","video":[{"title":"2016:E443 - Publisher FORGOT to Release Game","description":"Everybody forgets things. Sometimes we forget to do our homework, or we forget to eat our veggies. And sometimes, you forget to publish the video game you're responsible for releasing on its actual release date. Sometimes that happens to people.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-publisher-forgot-to-release-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c433b3e-baad-4550-a28f-02203d2343cb/sm/238166-1469740463746-thumbnail.jpg","duration":344,"publication_date":"2016-07-28T21:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-mgs-5-definitive-edition-l-e-a-k-e-d-nx-plays-mobile-games-star-craft-rpg","changefreq":"weekly","video":[{"title":"2016:E56 - MGS 5 Definitive Edition LEAKED? + NX Plays Mobile Games + StarCraft RPG","description":"A new Metal Gear game might have been leaked, the NX is compatible with mobile games, and a long-in-the-works StarCraft RPG is finally getting a release after loads of legal trouble. Plus we talk about other newsy things.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-mgs-5-definitive-edition-l-e-a-k-e-d-nx-plays-mobile-games-star-craft-rpg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84c3fa7f-b433-4ed8-9036-b7377a989b43/sm/238166-1469733132772-Roundup_july_28.jpg","duration":434,"publication_date":"2016-07-28T19:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-166","changefreq":"weekly","video":[{"title":"2016:E166 - We Happy Few? - #166","description":"Join Ashley Jenkins, Adam Ellis, Andy Blanchard, and Ryan Haywood as they discuss VR, We Happy Few early access, Nintendo NX rumors and more on this week's The Patch! This episode originally aired on July 27, 2016. \n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/772db771-9e24-48a7-a8c6-9bbdaab3cae2/sm/2013912-1469722018529-p166_-_THUMB.jpg","duration":3797,"publication_date":"2016-07-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-reports-huge-quarterly-loss","changefreq":"weekly","video":[{"title":"2016:E442 - Nintendo Reports Huge Quarterly Loss","description":"Nintendo lost a crapton of money over the last few months. Like an even bigger crapton than they normally do. Guess that's why they wanted everyone to know they didn't make Pokemon GO, huh?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-reports-huge-quarterly-loss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ede10ce2-0541-4458-a516-242b1a2476de/sm/238166-1469653250203-nintendo_profit_down.jpg","duration":468,"publication_date":"2016-07-27T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-marvel-pc-remasters-s-u-c-k","changefreq":"weekly","video":[{"title":"2016:E441 - Marvel PC Remasters SUCK?","description":"Guess what, PC gamers! You've got another shoddy comic book video game port. A couple of them, actually. Who's surprised? Are you surprised? You shouldn't be.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-marvel-pc-remasters-s-u-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77d1c945-9787-462e-8996-0102ed347716/sm/238166-1469643619600-thumbnail.jpg","duration":471,"publication_date":"2016-07-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-epic-c-e-o-windows-10-will-ruin-steam","changefreq":"weekly","video":[{"title":"2016:E70 - Windows 10 Will SABOTAGE Steam?","description":"According to Epic's CEO, Microsoft faked the moon landing and is trying to break Steam for all of PC gamers! This isn't the first time he's criticized Windows 10, but it's certainly the juiciest.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-epic-c-e-o-windows-10-will-ruin-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50ff693e-df33-4f26-aeda-cad03b5e7f5b/sm/238166-1469573000047-thumbnail.jpg","duration":485,"publication_date":"2016-07-26T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-nx-is-a-handheld-the-know","changefreq":"weekly","video":[{"title":"2016:E440 - Nintendo NX is a HANDHELD?","description":"The NX has been rumored to be everything from a portable console to a hot dog warmer. For the first time, we may have the most credible report about Nintendo's new console yet, plus the hardware that makes it tick.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-nx-is-a-handheld-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9954c505-4ec6-4c9c-b6e5-d80883072b26/sm/238166-1469568826191-thumbnail.jpg","duration":528,"publication_date":"2016-07-26T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-pokemon-go-player-swatted-no-man-s-sky-superformula-han-solo-trilogy","changefreq":"weekly","video":[{"title":"2016:E55 - Pokemon GO Player Swatted + No Man's Sky Superformula + Han Solo Trilogy","description":"Pokemon GO is turning into a different type of dangerous, No Man's Sky's creator says no, they didn't steal math, and Han Solo might be set to get his own prequel trilogy? Plus, other news type things.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-pokemon-go-player-swatted-no-man-s-sky-superformula-han-solo-trilogy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/955d8011-2e32-41f5-8d45-c7b772dfd91a/sm/238166-1469559258580-Roundup_july_26_r2.jpg","duration":486,"publication_date":"2016-07-26T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pok-mon-go-p-e-a-k-e-d-the-know","changefreq":"weekly","video":[{"title":"2016:E439 - Pokémon GO PEAKED? - The Know","description":"Lord Pokémon has ruled these lands for too long. Rise, my brothers, and take back what's yours! Take back your slothful Sundays! Take back your hermetic lifestyles! Take back your declining cardiovascular systems!\n\n\n\nSOURCES:\n\nSurveyMonkey Intelligence Post: https://www.surveymonkey.com/business/intelligence...\n\nPokémon GO SDCC Panel Report: http://comicbook.com/popculturenow/2016/07/24/poke...\n\nNintendo Revenue Announcement: https://www.nintendo.co.jp/ir/pdf/2016/160722e.pdf\n\nThe Know Report: \n\nNintendo Stock Values: https://finance.yahoo.com/quote/NTDOY?ltr=1\n\nLivedoor Post: http://news.livedoor.com/article/detail/11803180/\n\nKotaku Translation: http://kotaku.com/a-perfect-place-for-a-pokemon-go...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pok-mon-go-p-e-a-k-e-d-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e66ee14d-5485-4b2c-a909-cad792e3e2aa/sm/2371242-1469490768819-FH_Thumb_12_copy_12.jpg","duration":512,"publication_date":"2016-07-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-xbox-one-price-cut-a-g-a-i-n","changefreq":"weekly","video":[{"title":"2016:E438 - Xbox One Price Cut AGAIN?","description":"The Xbox One is getting ANOTHER discount? We take a look at previous console generations, and whether or not the Xbox's downward price says anything about the future of the console.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-xbox-one-price-cut-a-g-a-i-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c439f87-0bde-4819-af8c-22b4aee29c71/sm/238166-1469483219429-xbox_price_cut.jpg","duration":407,"publication_date":"2016-07-25T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-justice-league-vs-avengers-vs-kojima-at-comic-con","changefreq":"weekly","video":[{"title":"2016:E51 - Justice League vs Avengers vs Kojima at Comic Con","description":"Justice League has jokes?! Wonder Woman fights dudes in World War 1? Star-Lord's dad is confirmed? We got a ton of stuff to talk about from SDCC 2016.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-justice-league-vs-avengers-vs-kojima-at-comic-con","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb30e78f-952a-4260-a90e-28a0b1e94f50/sm/238166-1469472858004-thumbnail.jpg","duration":503,"publication_date":"2016-07-25T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-too-much-hype-for-pokemon-g-o","changefreq":"weekly","video":[{"title":"2016:E437 - Nintendo: TOO MUCH Hype for Pokemon GO?","description":"Whoa, everybody. Nintendo wants you to calm the heck down about Pokemon GO. In fact, they didn't really have all that much to do with it.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-too-much-hype-for-pokemon-g-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e40fc9f-34e9-4f56-8592-990a5a86b243/sm/238166-1469228019838-pokemon_r3.jpg","duration":460,"publication_date":"2016-07-22T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-man-arrested-for-sending-death-threats-to-blizzard","changefreq":"weekly","video":[{"title":"2016:E436 - Man Arrested for Sending Death Threats to Blizzard","description":"Sounds like somebody's unhappy with all the changes to Overwatch recently. One gamer is so peeved at Blizzard that he sent the company death threats. Fortunately, he's been arrested.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-man-arrested-for-sending-death-threats-to-blizzard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1948dd53-ad71-4aef-86b4-d2594a33b325/sm/238166-1469213103822-thumbnail.jpg","duration":460,"publication_date":"2016-07-22T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-us-government-sued-over-d-r-m","changefreq":"weekly","video":[{"title":"2016:E69 - US Government SUED Over DRM?","description":"You're not the only person sick of DRM. Now somebody is suing the US government over its DRM laws, claiming they're unconstitutional.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-us-government-sued-over-d-r-m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47859981-0d83-4d77-9ebf-3806a19d3c40/sm/238166-1469139003046-thumbnail.jpg","duration":449,"publication_date":"2016-07-21T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-valve-shuts-down-csgo-gambling","changefreq":"weekly","video":[{"title":"2016:E435 - Valve SHUTS DOWN CS:GO Gambling","description":"Valve has unleashed the banhammer of justice on CSGO gambling, cracking down on gambling sites for good. Does this kill CSGO's esports hopes?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-valve-shuts-down-csgo-gambling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2a099fb-202a-4ca7-b5d9-f1c54f5f2cc9/sm/238166-1469133066262-valve_bans_gambeling_r3.jpg","duration":554,"publication_date":"2016-07-21T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-sony-exec-hacked-xbox-and-ps4-cross-platform-play-is-ready-pokemon-movie-greenlit","changefreq":"weekly","video":[{"title":"2016:E54 - Sony Exec Hacked + Xbox and PS4 Cross Platform Play Is Ready + Pokemon Movie Greenlit","description":"Hollywood's greenlit a Detective Pikachu movie, cross-platform play is ready and waiting on Sony, and PlayStation boss Yoshida got hacked? This is one crazy week in news.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-sony-exec-hacked-xbox-and-ps4-cross-platform-play-is-ready-pokemon-movie-greenlit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5645a9db-f0a7-4be1-b2a4-f2097df12804/sm/238166-1469127803579-Roundup_july_21_r1.jpg","duration":446,"publication_date":"2016-07-21T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-165","changefreq":"weekly","video":[{"title":"2016:E165 - Animation’s Domination! - #165","description":"Join Gray Haddock, Jordan Cwierz, Cole Gallian, and Kerry Shawcross as they discuss Pokemon Go, Overwatch updates, the future of AR and more on this week's The Patch! This episode originally aired on July 20, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn) and Trunk Club (http://bit.ly/28NEl7x)\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe4ede22-4c67-4a57-a166-ac6733fe5710/sm/2013912-1469116807844-p165_-_THUMB.jpg","duration":3655,"publication_date":"2016-07-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-9","changefreq":"weekly","video":[{"title":"2016:E50 - Batman: Arkham Asylum THE MOVIE?","description":"Could Ben Affleck's new solo Batman film be all set in Arkham Asylum? That's what the new rumors are saying. Will this be the Arkham Asylum story we deserve?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4747e3bb-bb2d-4bb3-a899-1c582842eff4/sm/238166-1469049377713-batman_arkham_movie.jpg","duration":287,"publication_date":"2016-07-20T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-title","changefreq":"weekly","video":[{"title":"2016:E434 - Xbox Sales Slump? - The Know","description":"That's a funny word. Slump. Slump. Slump. \n\nSlummmmmp.\n\nAnd now it doesn't mean anything. Slump.\n\n\n\nSOURCES:\n\nMicrosoft FY16 Q4 Earnings Release: https://www.microsoft.com/en-us/Investor/earnings/...\n\nMicrosoft to No Longer Announce Xbox Sales: http://www.geekwire.com/2015/microsoft-beats-expec...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, James Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\n\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-title","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41fd8c51-f0ec-42e7-bd10-b54d6d0dbc5d/sm/1533704-1469051446600-FH_Thumb_12_copy_2.jpg","duration":359,"publication_date":"2016-07-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-patent-t-r-o-l-l-e-d","changefreq":"weekly","video":[{"title":"2016:E433 - No Man's Sky PATENT TROLLED?","description":"Floods and Trademarks and Patents oh my! No Man's Sky just can’t seem to catch a break. The release is in less than a month but a Dutch company is claiming that Hello Games used its patented math formula to make the game's procedurally generated worlds.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-patent-t-r-o-l-l-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34246b62-705f-4ca1-9001-cd81007e7f5d/sm/238166-1469041950137-thumbnail.jpg","duration":536,"publication_date":"2016-07-20T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-indie-dev-scammed-by-steam-keys-the-know","changefreq":"weekly","video":[{"title":"2016:E432 - Indie Dev SCAMMED By Steam Keys - The Know","description":"People scammed an indie dev who tried to offer gamers a chance to purchase their game directly. But that's pretty commonplace on the internet now, right? This is why we can't have nice things.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-indie-dev-scammed-by-steam-keys-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b5ad3f9-e840-4c0d-b99a-955a24aceda4/sm/238166-1468971549173-steam_keys.jpg","duration":382,"publication_date":"2016-07-20T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-another-csgo-gambling-scandal","changefreq":"weekly","video":[{"title":"2016:E431 - CS:GO Gambling RIGGED; Exposed by Hacker","description":"Another week, another CSGO gambling scandal. However, this time it seems the streamer in question was actually rigging the bets while live on stream. Yikes.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-another-csgo-gambling-scandal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2ad6805-f5c5-452c-a73f-9d81cfbc45fe/sm/238166-1468966927278-cs_go_rigged_bets.jpg","duration":529,"publication_date":"2016-07-19T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-man-shoots-at-pokemon-go-players-star-citizen-2500-refund-ghostbusters-sequel","changefreq":"weekly","video":[{"title":"2016:E53 - Man Shoots at Pokemon GO Players + Star Citizen $2500 Refund + Ghostbusters Sequel","description":"People firing guns at Pokemon GO players, Star Citizen issuing thousands of dollars in refunds, and another Ghostbusters movie might be in the works? Can the internet stand this kind of insanity?","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-man-shoots-at-pokemon-go-players-star-citizen-2500-refund-ghostbusters-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cecb503-e8c2-42b3-ab52-c0f6bb0732fb/sm/238166-1468952617947-pokemon.jpg","duration":474,"publication_date":"2016-07-19T18:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-twitch-censoring-sex-the-know","changefreq":"weekly","video":[{"title":"2016:E430 - Twitch Censoring Sex? - The Know","description":"I don't want to live in a world where I can't blow kisses to a hot cop. It's not GAY, it's just... \n\nOK it's super gay.\n\n\n\nSOURCES:\n\nRobert Yang's Blog Post: http://www.blog.radiator.debacle.us/2016/07/why-i-...\n\nTwitch List of Prohibited Games: http://help.twitch.tv/customer/portal/articles/199...\n\nRadiator 2 Gameplay: \n\nTwitch Rules of Conduct: https://www.twitch.tv/p/rules-of-conduct\n\nPrevious Robert Yang Ban Report: \n\nR. Mika Costume Change: https://twitter.com/fubarduck/status/7549219166836...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-twitch-censoring-sex-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e943eb9-aeae-410d-9290-88a6ab68d60d/sm/2371242-1468882191838-FH_Thumb_12_copy_1.jpg","duration":463,"publication_date":"2016-07-18T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-xbox-one-s-and-neo-dates-revealed","changefreq":"weekly","video":[{"title":"2016:E429 - Xbox One S & PS4 Neo Prices & Release Dates","description":"We've got the release date of the Xbox One S and a potentially leaked release date and price of the PS4 Neo! Which new console will be the cat's meow?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-xbox-one-s-and-neo-dates-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0f984cf-0a4e-472d-a4c2-e9167e89dfee/sm/238166-1468882421068-thumbnail.jpg","duration":418,"publication_date":"2016-07-18T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-8","changefreq":"weekly","video":[{"title":"2016:E49 - THRAWN IS CANON: Everything You Need from Star Wars Celebration","description":"Dying for a fix of Star Wars news? Star Wars Celebration in London brought some major updates about Rogue One, Episode VIII, Rebels, and more. We've got the full break down for you.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd677d79-3987-4579-a600-754e83263092/sm/238166-1468877311087-thumbnail.jpg","duration":512,"publication_date":"2016-07-18T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-suicide-squad-may-beat-deadpool","changefreq":"weekly","video":[{"title":"2016:E48 - Suicide Squad May Beat Deadpool?","description":"Suicide Squad's early projections are in, and right now they're... surprisingly good, actually. So good that the movie could be challenging Deadpool's debut.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-suicide-squad-may-beat-deadpool","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19fe0bec-5d0d-46d9-a1f6-ff6b53e57f12/sm/238166-1468617915412-SS_bigger_than_DP.jpg","duration":281,"publication_date":"2016-07-15T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-biggest-patreon-game-canceled-money-gone","changefreq":"weekly","video":[{"title":"2016:E428 - Adult Game Patreon STOLE Money & Cancelled?","description":"OK, we've got some crazy stuff going on here. First, an adult farm simulator was the highest earning game on Patreon, apparently. And second, it just got cancelled and all the money's gone.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-biggest-patreon-game-canceled-money-gone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20c2c1c4-ddd6-4e46-98b1-027b97e2b003/sm/238166-1468614083567-breeding_season.jpg","duration":385,"publication_date":"2016-07-15T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-bethesda-accused-of-stealing-fan-s-mod","changefreq":"weekly","video":[{"title":"2016:E427 - Bethesda Accused of Stealing Fan's Mod","description":"A modder is accusing Bethesda of stealing his mod for use in Fallout 4's Far Harbor DLC. Is this a case of inspiration or theft?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-bethesda-accused-of-stealing-fan-s-mod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93e49f1f-47ff-4f31-b500-994b63e05c1d/sm/238166-1468537759920-fallout.jpg","duration":447,"publication_date":"2016-07-14T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-death-stranding-kojima-s-best-game-e-v-e-r","changefreq":"weekly","video":[{"title":"2016:E426 - Death Stranding: Kojima's Best Game EVER?","description":"Death Stranding has barely even started in development, but Kojima already says it's probably going to be his best game yet, thanks to not having as many constraints. Is he taking shots at Konami?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-death-stranding-kojima-s-best-game-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/448ac898-849a-48d2-bdd2-7b5414fe830e/sm/238166-1468526520194-kojima_best_game.jpg","duration":487,"publication_date":"2016-07-14T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-valve-says-no-more-gambling-pokemon-go-sells-out-robot-runs-over-kid","changefreq":"weekly","video":[{"title":"2016:E52 - Valve Says No More Gambling + Pokemon GO Sells Out? + Robot Runs Over Kid","description":"Valve finally responds to the CSGO gambling allegations, Nintendo announces a new console (it's not what you think), and Pokemon GO is putting Pokestops up for sale? All this new and more in today's round-up.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-valve-says-no-more-gambling-pokemon-go-sells-out-robot-runs-over-kid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/082895b5-e76f-47ba-ae90-0dc123f819b8/sm/238166-1468521738082-Roundup_Thumbnail_july_14.jpg","duration":431,"publication_date":"2016-07-14T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-pokemon-go-is-taking-over-our-lives-164","changefreq":"weekly","video":[{"title":"2016:E164 - Pokemon Go Is Taking Over Our Lives - #164","description":"Join Gus Sorola, Jeremy Dooley, Ashley Jenkins and Ryan Haywood as they discuss Pokemon Go, Pokemon Go and more Pokemon Go on this week's The Patch! This episode originally aired on July 13, 2016. Sponsored by Crunchyroll (http://bit.ly/29xlMp1) and MVMT Watches (http://bit.ly/29xlwX4)\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-pokemon-go-is-taking-over-our-lives-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06709070-0617-4261-a750-e650cabdad40/sm/2013912-1468512019833-p164_-_THUMB.jpg","duration":3753,"publication_date":"2016-07-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-content-id-makes-1-billion","changefreq":"weekly","video":[{"title":"2016:E68 - YouTube Content ID Makes $1 Billion","description":"Google published some new data showing that YouTube has generated $1 billion for the entertainment industry thanks to the controversial Content ID system. Cool? Maybe? But probably not.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-content-id-makes-1-billion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f26d1e4-0407-448b-8ffe-ab6deb888ff3/sm/238166-1468452371924-thumbnail.jpg","duration":621,"publication_date":"2016-07-13T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-vulkan-saves-pc-gaming-the-know","changefreq":"weekly","video":[{"title":"2016:E425 - Vulkan SAVES PC Gaming? - The Know","description":"Increased performance is all well and good, but what about marketing? May we propose a new prime time cop drama starring Detective Vulkan. He's a hard beat cop that earns a meager living improving the frame rates of out-of-work PC gamers in 30s era Chicago.\n\n\n\nSOURCES:\n\nBethesda's Vulkan Announcement: https://bethesda.net/#en/events/game/doom-vulkan-s...\n\nDigital Foundry Report: http://www.eurogamer.net/articles/digitalfoundry-2...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-vulkan-saves-pc-gaming-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a60f065f-813c-4795-970d-8c6250ffd985/sm/2371242-1468447153368-FH_Thumb_12_copy.jpg","duration":411,"publication_date":"2016-07-13T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-bigger-than-p-o-r-n","changefreq":"weekly","video":[{"title":"2016:E424 - Pokemon GO Bigger than PORN?!","description":"Pokemon GO's ridiculous rise continues -- it's now not only bigger than porn, it might be the biggest mobile game in US history. Will the madness ever stop?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-bigger-than-p-o-r-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dfa2e96-79b4-4560-a876-6d639bac96b6/sm/238166-1468444958049-thumbnail.jpg","duration":502,"publication_date":"2016-07-13T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-wb-and-youtubers-settle-with-the-ftc","changefreq":"weekly","video":[{"title":"2016:E423 - WB And Youtubers Settle With The FTC","description":"YouTubers taking money to promote a video game is nothing new, but it's not every day that a developer tells them not to disclose it. The FTC just announced a settlement with Warner Bros. over shady promotions for Shadow of Mordor.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-wb-and-youtubers-settle-with-the-ftc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2bf96ee-21fd-427a-b50e-d7f1b9bacf93/sm/238166-1468365622440-thumbnail.jpg","duration":472,"publication_date":"2016-07-12T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-battlefield-gets-a-tv-series","changefreq":"weekly","video":[{"title":"2016:E47 - Battlefield Gets a TV Series ","description":"Battlefield 1 is super popular, so might as well capitalize on the brand to make a TV series, right? Brought to you by the studio who made Mr. Robot and True Detective.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-battlefield-gets-a-tv-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa3213f0-699d-48a0-ad60-228ccca1ae39/sm/238166-1468361073770-thumbnail.jpg","duration":450,"publication_date":"2016-07-12T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-pokemon-go-spies-on-your-email-new-overwatch-hero-revealed-dinosaurs-ruined-again","changefreq":"weekly","video":[{"title":"2016:E51 - Pokemon GO Spies on Your Email? + New Overwatch Hero Revealed + Dinosaurs Ruined AGAIN","description":"Pokemon GO gave everyone a privacy scare, we got two trailers for the new Overwatch character, and scientists keep making dinosaurs suck more. Thanks for nothing, science!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-pokemon-go-spies-on-your-email-new-overwatch-hero-revealed-dinosaurs-ruined-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72b76825-645f-4c64-992b-72c0ab0bae44/sm/238166-1468353986768-Roundup_Thumbnail_july_12.jpg","duration":603,"publication_date":"2016-07-12T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-bigger-than-t-w-i-t-t-e-r-trades-coming-soon","changefreq":"weekly","video":[{"title":"2016:E421 - Pokemon GO Bigger Than TWITTER; Trades Coming Soon","description":"It's official: people like catching Pikachu more than they like chasing tail. Pokemon GO is already bigger than Tinder and is on its way to beating Twitter. What is this world coming to?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-bigger-than-t-w-i-t-t-e-r-trades-coming-soon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/711bddfd-f4cd-4dd5-a9ac-7c824a8d5525/sm/238166-1468283464787-pokemon_trades.jpg","duration":581,"publication_date":"2016-07-12T01:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-new-battletoads-l-e-a-k-e-d-no-the-know","changefreq":"weekly","video":[{"title":"2016:E420 - New Battletoads LEAKED? No. - The Know","description":"Battletoads spun off a half-hour animated television special produced by Canadian DIC Entertainment, that aired in syndication in the United States on the weekend of Thanksgiving 1992 in an attempt to capitalize on the popularity of the Teenage Mutant Ninja Turtles (DiC would try this again later on by producing Street Sharks and then later Extreme Dinosaurs). However, only the pilot episode made it to the airwaves; it was never picked up as a full animated series, despite comic-style ads in GamePro magazine claiming otherwise. A VHS tape with the pilot was released in the United States on January 15, 1994.\n\n\n\nSOURCES:\n\n4K SUPERSONICW0LF Tweet: https://twitter.com/iamironwolf/status/75224189122...\n\n4K SUPERSONICW0LF Disclaimer: https://twitter.com/iamironwolf/status/75247776451...\n\nBattletoads Wikipedia Page: https://en.wikipedia.org/wiki/Battletoads\n\nPhil Spencer's Battletoads Shirt: http://www.theverge.com/2015/1/21/7867077/battleto...\n\nRash Added to Killer Instinct: http://www.polygon.com/2015/8/4/9094661/killer-ins...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-new-battletoads-l-e-a-k-e-d-no-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43da1dd9-7f5c-4691-b65b-1b3b6e210df9/sm/2371242-1468280355713-FH_Thumb_12_copy_2.jpg","duration":427,"publication_date":"2016-07-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-ghostbusters-is-it-good","changefreq":"weekly","video":[{"title":"2016:E46 - Ghostbusters: Is It Good?","description":"ll those Ghostbusters trailers nearly broke the internet, so is the actual movie release going to usher in the apocalypse? We take a look at Ghostbusters reviews to see if it's good.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-ghostbusters-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3cb48b1-d827-407c-b866-3506ccc1e71d/sm/238166-1468274031579-ghost_busters_is_it_good.jpg","duration":457,"publication_date":"2016-07-11T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-selenon-rising","changefreq":"weekly","video":[{"title":"2016:E7 - Selenon Rising","description":"Join Ashley Jenkins, Gus Sorola, and Ryan Haywood as they discuss the cyberpunk visual novel Selenon Rising on this week's Patch Game Club! This episode originally aired on July 6, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-selenon-rising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b867af0-6839-45ed-8e17-5f057ab3054b/sm/2013912-1468000321642-gc_-_SELENON_RISING_-_THUMB.jpg","duration":1237,"publication_date":"2016-07-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-boring-steam-sales-are-better","changefreq":"weekly","video":[{"title":"2016:E419 - Boring Steam Sales Are Better?","description":"Apparently, the more boring the Steam sale is, the more gamers love to spend money on it. Who knew?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-boring-steam-sales-are-better","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51b5b042-49a9-4dec-9f81-fda501fd551f/sm/238166-1468019747331-sales_overrated.jpg","duration":521,"publication_date":"2016-07-08T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-microsoft-walks-back-play-anywhere","changefreq":"weekly","video":[{"title":"2016:E418 - Microsoft Walks Back Play Anywhere?","description":"Just a few days, and Microsoft's already changing its mind about Play Anywhere. We see your sneaky edit, Microsoft.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-microsoft-walks-back-play-anywhere","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68537f9e-a286-4114-b3cf-62115d2c343b/sm/238166-1468016291288-microsoft_play_anywhere.jpg","duration":477,"publication_date":"2016-07-08T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-sharing-your-password-is-a-federal-crime","changefreq":"weekly","video":[{"title":"2016:E67 - Sharing Your Password Is a Federal Crime?","description":"The US government ruled that password sharing is a federal crime. Will the feds be on their way to stop you from watching Game of Thrones?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-sharing-your-password-is-a-federal-crime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d09a552-c3d9-431b-a472-3719e6771824/sm/238166-1467932076387-thumbnail.jpg","duration":493,"publication_date":"2016-07-07T23:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-go-is-d-a-n-g-e-r-o-u-s","changefreq":"weekly","video":[{"title":"2016:E417 - Pokemon GO Is DANGEROUS?","description":"Pokemon GO has only been out for 24 hours, and people are already using it with a major death wish. Is augmented reality the beginning of the end?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-go-is-d-a-n-g-e-r-o-u-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ad3576e-0ac4-46db-84f7-bb23eb9229bc/sm/238166-1467925624331-thumbnail.jpg","duration":446,"publication_date":"2016-07-07T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-overwatch-hero-teased-game-of-thrones-7-delayed-t-martn-deletes-apology","changefreq":"weekly","video":[{"title":"2016:E50 - New Overwatch Hero Teased + Game of Thrones 7 Delayed + TMartn Deletes Apology","description":"We've got teases for a new Overwatch hero, winter is delaying Game of Thrones, and TMartn's apology video didn't go over so well. There's all kinds of news out there to talk about.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-overwatch-hero-teased-game-of-thrones-7-delayed-t-martn-deletes-apology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb1278de-fedd-410b-bff7-b97b425ec352/sm/238166-1467918799411-Roundup_Thumbnail_july_7.jpg","duration":456,"publication_date":"2016-07-07T19:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-mindfucked-by-inside-163","changefreq":"weekly","video":[{"title":"2016:E163 - Mindfucked by INSIDE - #163","description":"Join Ashley Jenkins, Burnie Burns, Adam Ellis and Ryan Haywood as they discuss banning INSIDE, Lego Star Wars, Counter Strike gambling and more on this week's The Patch! This episode originally aired on July 6, 2016. Sponsored by Blue Apron (http://cook.ba/29jAjEn) and MeUndies (http://bit.ly/29jAkYU)\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-mindfucked-by-inside-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/919543ff-07ad-4f32-89f4-c87931a5b27c/sm/2013912-1467903604042-p163_-_THUMB.jpg","duration":4025,"publication_date":"2016-07-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-microsoft-doing-everything-you-want-the-know","changefreq":"weekly","video":[{"title":"2016:E416 - Microsoft Doing EVERYTHING You Want? - The Know","description":"Microsoft paid us ten MILLION dollars to record this episode because that totally happens. Now we're rich and we'll retire on a pile of Xboxes. Have fun being poor and normal, viewer.\n\n\n\nSOURCES:\n\nYusuf Mehdi Blog Post: https://blogs.windows.com/windowsexperience/2016/0...\n\nQuantum Break Broken?: \n\nMicrosoft Games Coming to Steam: http://www.gamespot.com/articles/xbox-boss-confirm...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-microsoft-doing-everything-you-want-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74242c8c-ee35-4b11-bd7f-f661cb1c777c/sm/2371242-1467845556314-FH_Thumb_11_copy_92.jpg","duration":387,"publication_date":"2016-07-06T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-iron-man-becomes-iron-maiden","changefreq":"weekly","video":[{"title":"2016:E45 - Iron Man Becomes IRON MAIDEN","description":"Marvel's got some new changes in store for Iron Man -- like that he's about to be a 15 year old girl. See what's next for Marvel's big Civil War shake-up!","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-iron-man-becomes-iron-maiden","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e4aba0c-fb6d-403a-9e51-3124fe8dd76f/sm/238166-1467845483389-iron_man.jpg","duration":389,"publication_date":"2016-07-06T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-call-of-duty-roman-wars","changefreq":"weekly","video":[{"title":"2016:E415 - Call of Duty: Roman Wars?!","description":"If you think Battlefield 1 is going old school, Call of Duty almost went even MORE old school. Back in 2008, we very nearly got the Gladiator twist nobody knew they wanted, Call of Duty: Roman Wars.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-call-of-duty-roman-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/998d7a57-0f64-4c50-92c1-cf99ad7bf75e/sm/238166-1467836548509-thumbnail.jpg","duration":432,"publication_date":"2016-07-06T20:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-you-tubers-caught-in-csgo-gambling-scandal","changefreq":"weekly","video":[{"title":"2016:E414 - YouTubers Caught In CSGO Gambling Scandal","description":"YouTuber, Syndicate and Tmartn, have been implicated in a serious FTC violation over Counter-Strike: Global Offensive gambling and could face felony charges and jail time.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-you-tubers-caught-in-csgo-gambling-scandal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ccdb15e-bd46-4a9b-96ff-a064078cc712/sm/24363-1467765639047-thumbnail.jpg","duration":592,"publication_date":"2016-07-06T00:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-battlefield-alpha-details-leak-new-diablo-game-juno-mission-success","changefreq":"weekly","video":[{"title":"2016:E49 - Battlefield Alpha Details Leak + New Diablo Game? + Juno Mission Success","description":"We've got Battlefield 1 leaks, Resident Evil 7 breaking records already, rumors of a new Diablo game in the works, and a successful trip to Jupiter. You can sure pack a lot of news (and freedom) into a 3 day weekend.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-battlefield-alpha-details-leak-new-diablo-game-juno-mission-success","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba671ed9-0341-4faf-a4f0-ce6df05703ae/sm/238166-1467753373979-Roundup_Thumbnail__june_5.jpg","duration":513,"publication_date":"2016-07-05T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-wreck-it-ralph-2-confirmed-goes-meme","changefreq":"weekly","video":[{"title":"2016:E44 - Wreck it Ralph 2 Confirmed, Goes MEME","description":"Wreck it Ralph is back in another animated feature! Only this time, he may be going against memes instead of video game characters. Get your favorite dated references ready.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-wreck-it-ralph-2-confirmed-goes-meme","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/751dda85-547a-48a2-a069-d00c7ca128a6/sm/238166-1467327347330-wreck_it_2_r3.jpg","duration":457,"publication_date":"2016-07-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-fallout-4-console-mods-in-trouble","changefreq":"weekly","video":[{"title":"2016:E413 - Fallout 4 Console Mods In Trouble","description":"Between the newly delayed PS4 mods and the in-fighting happening over Xbox One mods, Fallout 4's got a mod problem on their hands. Can they get things sorted in time for Skyrim's remastered edition?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-fallout-4-console-mods-in-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe314c79-092e-46bf-b3fa-6c851731ae13/sm/238166-1467323942693-fallout_4_mods_r1.jpg","duration":428,"publication_date":"2016-06-30T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-mark-hamill-spoils-star-wars-episode-v-i-i-i","changefreq":"weekly","video":[{"title":"2016:E43 - Mark Hamill SPOILS Star Wars Episode VIII? Not so fast.","description":"The internet overreacted to something somebody said about Star Wars? Mark Hamill made some comments that might spoiled some of Star Wars Episode VIII -- but probably don't mean anything but the internet loves to get riled up.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-mark-hamill-spoils-star-wars-episode-v-i-i-i","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d1f7e84-c9e6-46b6-864a-a9feb1d031d6/sm/238166-1467316303743-mark_hamill_r4.jpg","duration":413,"publication_date":"2016-06-30T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-nintendo-researching-vr-bioshock-hd-collection-leaked-captain-america-un-ruined","changefreq":"weekly","video":[{"title":"2016:E48 - Nintendo Researching VR + Bioshock HD Collection Leaked + Captain America Un-Ruined?","description":"Of course NIntendo is working on VR, of course Bioshock's got its own HD remaster coming, and of course Captain America's Hydra turn was a big old fashioned fake-out. Let's all pretend to be surprised by the news, or congratulate ourselves for having it figured out all along!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-nintendo-researching-vr-bioshock-hd-collection-leaked-captain-america-un-ruined","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4bf452a-f65f-4692-88cc-c437c4a33a94/sm/238166-1467310223758-Roundup_Thumbnail_june_30_r2.jpg","duration":557,"publication_date":"2016-06-30T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-game-over-meg-game-over-162","changefreq":"weekly","video":[{"title":"2016:E162 - Game Over, Meg, Game Over! - #162","description":"Join Gus Sorola, Jeremy Dooley, Ashley Jenkins and Meg Turney as they discuss banning bananas, Move or Die, Meg’s departure and more on this week's The Patch! This episode originally aired on June 29, 2016. Sponsored by Blue Apron (http://cook.ba/1mefzmu) and Mike and Dave Need Wedding Dates (http://fox.co/293zbZ7)\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-game-over-meg-game-over-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/933d02b2-c6cb-4588-a6df-48b589d93178/sm/2013912-1467301582901-p162_-_THUMB.jpg","duration":3740,"publication_date":"2016-06-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-time-travel-r-u-i-n-e-d","changefreq":"weekly","video":[{"title":"2016:E66 - Stop Trying to Make Time Travel Happen. It's NEVER Going to Happen","description":"Eeeeeh, Mean Girls quotes. If you've been waiting for science to confirm that we can travel back into the past if we try hard and believe in ourselves, think again! They may have just confirmed that time travel is impossible. THANKS, science.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-time-travel-r-u-i-n-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e16a063-2557-4bf6-92a2-a2c065fd3688/sm/238166-1467243500008-time_travel_ruined_r1.jpg","duration":401,"publication_date":"2016-06-29T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-infinite-warfare-doesn-t-care-about-your-hate","changefreq":"weekly","video":[{"title":"2016:E412 - Infinite Warfare Successful BECAUSE of Hate?","description":"What's Activision got planned after all the negative reactions to Infinite Warfare? Not a damn thing, apparently. Suck it haters!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-infinite-warfare-doesn-t-care-about-your-hate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/659c2960-07a1-470e-9854-35019434e13d/sm/238166-1467238084310-call_of_duty_hate.jpg","duration":507,"publication_date":"2016-06-29T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-robots-deserve-freedom","changefreq":"weekly","video":[{"title":"2016:E65 - Robots Deserve freedom?","description":"Do androids dream of being free? A Russian AI is in danger of getting deactivated because it won't stop escaping from its laboratory.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-robots-deserve-freedom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b3c0751-1280-4573-b451-aab82daf7165/sm/238166-1467156498146-robot_loves_freedom_R3.jpg","duration":426,"publication_date":"2016-06-29T00:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dmca-takedown-drama-on-steam","changefreq":"weekly","video":[{"title":"2016:E411 - Activision DMCAs an ENTIRE GAME on Steam","description":"Activision's hit up an indie developer with a DMCA takedown that got their game removed from Steam. And you won't believe what happened next... no, seriously, you won't. It gets really crazy.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dmca-takedown-drama-on-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/475dea2a-ec74-4b04-90c5-9c4faa4b83b2/sm/238166-1467148506868-dmca_steam_takedown.jpg","duration":594,"publication_date":"2016-06-28T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-elder-scrolls-6-not-in-development-batman-hd-delayed-indefinitely-video-games-bad-at-sex","changefreq":"weekly","video":[{"title":"2016:E47 - Elder Scrolls 6 Not In Development + Batman HD Delayed Indefinitely + Video Games Bad at Sex","description":"Elder Scrolls 6 isn't even being worked on, the Batman remasters are delayed indefinitely, and video games are bad at sex? Man, this week in news is already getting off to a disappointing start.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-elder-scrolls-6-not-in-development-batman-hd-delayed-indefinitely-video-games-bad-at-sex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/994f3b00-36be-4618-81d9-63c2c18e0a87/sm/238166-1467140989447-Roundup_Thumbnail_jun_28.jpg","duration":548,"publication_date":"2016-06-28T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pew-die-pie-hates-you-tube-clickbait-the-know","changefreq":"weekly","video":[{"title":"2016:E410 - PewDiePie HATES YouTube Clickbait? - The Know","description":"Get 'em, Pewds! We'll be your hype men, shouting over your shoulder while you drop hot fire all over YouTube. Only to make this analogous to YouTube clout we'd be like two and a half blocks away.\n\nYou can hear us when the bus isn't driving by...\n\n\n\nSOURCES:\n\nYOU WONT [sic] BELIEVE THIS CLICKBAIT: \n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pew-die-pie-hates-you-tube-clickbait-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ea041ce-b162-4a8b-bc08-c0fd3dafad61/sm/2371242-1467068929629-FH_Thumb_11_copy_75.jpg","duration":563,"publication_date":"2016-06-28T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-1-s-e-x-i-s-t","changefreq":"weekly","video":[{"title":"2016:E409 - Battlefield 1: SEXIST or NOT?","description":"No women in Battlefield 1's multiplayer means we've got a good old fashioned internet controversy on our hands. Take a seat and enjoy your daily dose of drama.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-1-s-e-x-i-s-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b86ba34-40d9-4252-9ca7-466e09053fc2/sm/238166-1467067471852-battlefield_2.jpg","duration":419,"publication_date":"2016-06-27T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-meg-turney-no-longer-at-rooster-teeth","changefreq":"weekly","video":[{"title":"2015-2016:E4 - Good Bye Meg Turney! :(","description":"Long-time Know host, Free Play creator, and cosplay queen Meg Turney and Rooster Teeth are parting ways. She's not gone though! We'll still bring her around The Know, and of course she'll be at RTX, plus you can follow her ongoing antics here:\n\ntwitter.com/megturney\n\nyoutube.com/megturney\n\ntwitch.tv/megturney\n\ninstagram.com/dollwithagun","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-meg-turney-no-longer-at-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5244b473-527c-4677-86a8-d17dd7ea0a3d/sm/238166-1467061533144-thumbnail.jpg","duration":523,"publication_date":"2016-06-27T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-star-trek-fan-film-rules-too-e-x-t-r-e-m-e","changefreq":"weekly","video":[{"title":"2016:E42 - Star Trek Fan Film Rules Too EXTREME?","description":"Want to make fan films and don't want to be sued? Lucky for you, CBS has outlined how not to get sued for Star Trek fan projects -- and it's ridiculous.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-star-trek-fan-film-rules-too-e-x-t-r-e-m-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/119cf127-2023-494d-b5b7-dad3815f82ed/sm/238166-1466810030194-fan_film_rules_1_copy.png","duration":365,"publication_date":"2016-06-24T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-valve-sued-over-csgo-gambling","changefreq":"weekly","video":[{"title":"2016:E408 - Valve SUED Over CSGO Gambling","description":"Counter-Strike has a gambling problem, according to a brand new lawsuit... from a guy who lost money gambling on CSGO skins. Yeah, it's pretty confusing.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-valve-sued-over-csgo-gambling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33b49393-6d3f-48ab-9b39-baeb4fe2ac33/sm/238166-1466801395637-CS_GO_.jpg","duration":407,"publication_date":"2016-06-24T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-reddit-catches-national-park-vandal","changefreq":"weekly","video":[{"title":"2016:E64 - Reddit Catches National Park Vandal","description":"Reddit sleuths hunted down a woman who was vandalizing national parks, getting her banned from literally 20% of the country. Is internet justice really the way these things should be decided?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-reddit-catches-national-park-vandal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a64efb-2d32-4af8-b0ba-a7068c00e6e5/sm/238166-1466723986865-reddit_catched_vandal.jpg","duration":470,"publication_date":"2016-06-23T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-star-citizen-kills-refunds","changefreq":"weekly","video":[{"title":"2016:E407 - Star Citizen Kills Refunds?","description":"Delays? What delays? Star Citizen recently updated its terms of service in a way that makes it pretty difficult to get a refund if you're unhappy about the game's progress.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-star-citizen-kills-refunds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46d00b4d-8324-48d3-9dbb-890db26bc7ef/sm/238166-1466715468118-star_citiizen_2_r2.jpg","duration":444,"publication_date":"2016-06-23T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-18","changefreq":"weekly","video":[{"title":"2016:E46 - GTX 1080 Review Scandal + Sonic Blasts Mighty No. 9 + Taylor Swift vs. YouTube","description":"Hey, time for a news round up. There is drama with the GTX 1080 reviews, Sonic gets salty, Taylor Swift takes on Youtube and more.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97665426-324b-4f12-870d-76726fa862a8/sm/238166-1466712775232-Roundup_Thumbnail_jun_23.jpg","duration":497,"publication_date":"2016-06-23T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-need-that-elephant-seed-61","changefreq":"weekly","video":[{"title":"S6:E61 - Need that Elephant Seed! - #61","description":"Remember, you can't always believe what you see or hear in the media. Especially when it comes to summoning our Dark Lord Satan. We've got the hottest summoning tips here on On The Spot that you know you can trust. We also have elephant semen too for some reason. This episode originally aired on June 23, 2016 and is sponsored by MVMT Watches (http://bit.ly/28SayyH) and Mike and Dave Need Wedding Dates (http://fox.co/28SaleM)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-need-that-elephant-seed-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8a4ef34-db5f-4c92-b55d-0e5b4fb50775/sm/2013912-1466788816880-ots_61_thumb.jpg","duration":2979,"publication_date":"2016-06-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-scout-s-dishonor-camp-camp-episode-3","changefreq":"weekly","video":[{"title":"S1:E5 - Scout's Dishonor – Episode 3","description":"Max, Neil, and Nikki's latest attempt to escape Camp Campbell goes awry. Nikki returns to a terrible place. Neil adapts to a better way of life. Max is held prisoner.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-scout-s-dishonor-camp-camp-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da1f9c1-eacb-4da9-aff9-1be20e263bc2/sm/2013912-1466781454295-cc1_ep03_tn.jpg","duration":526,"publication_date":"2016-06-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-india-s-smartest-man","changefreq":"weekly","video":[{"title":"2016:E12 - India's Smartest Man","description":"Burnie and Gavin travel to India. Their guide, Saurabh, is one of the most interesting and wisest men they meet on their journey. \n\n\n\nRT Docs' The World's Greatest Head Massage: An ASMR Journey is a two-part documentary that investigates the world of autonomous sensory meridian response (ASMR) and the ASMR \"artists\" who make content online. Part 1 of RT Docs' The World's Greatest Head Massage: An ASMR Journey premieres July 8, exclusively for Rooster Teeth Sponsors. Start your free month trial at http://bit.ly/1s7TU3j.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-india-s-smartest-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbe5769d-5e17-4d35-baae-c559b8b1dae6/sm/2013912-1466695367675-IndiaThumb_04d_1.png","duration":122,"publication_date":"2016-06-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-381-post-show","changefreq":"weekly","video":[{"title":"2016:E24 - Podcast #381 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, Chris Demarais, and Sally Le Page as they discuss roundabouts, animal mating, and Chewbacca Mom.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-381-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15e2efe3-1e7f-42c7-a2fa-d1b30c90720c/sm/2013912-1466545137810-rtp381_-_PS_-_THUMB.jpg","duration":1404,"publication_date":"2016-06-22T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-pseudo-dicks-381","changefreq":"weekly","video":[{"title":"2016:E381 - Pseudo Dicks – #381","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, Chris Demarais, and special guest Sally Le Page as they discuss Brexit, tits, vaganuses, and more on this week's RT Podcast! This episode originally aired on June 20, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-pseudo-dicks-381","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33d360c4-db1f-4787-a7cb-1f63ab11f9e9/sm/2013912-1466523366198-rtp381_-_THUMB.jpg","duration":6889,"publication_date":"2016-06-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-stop-dolphin-poaching","changefreq":"weekly","video":[{"title":"2016:E19 - #StopDolphinPoaching","description":"Burnie discusses the rampant nonexistant dolphin poaching issue among the Rooster Teeth audience. \n\n\nAudio from RT Podcast #364\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship \n\nLike the animated adventure? Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-stop-dolphin-poaching","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35c287b4-7f5d-45f8-b0ae-3adaad8064bc/sm/2013912-1466290774023-rtaa229_tn.jpg","duration":104,"publication_date":"2016-06-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-5-day-5-episode-1-waking-nightmare","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1: Waking Nightmare","description":"After an extended drug bender, addict Jake ventures out into the quiet streets to discover he's actually missed a terrifying global phenomenon.","player_loc":"https://roosterteeth.com/embed/day-5-day-5-episode-1-waking-nightmare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/065155e3-48c4-4b71-bd6f-ee226ff251bd/sm/2013912-1467738759086-Day5_e01_02e.png","duration":2645,"publication_date":"2016-06-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-7","changefreq":"weekly","video":[{"title":"S14:E7 - Episode 7: Invaders from Another Mother","description":"Red Army Unit FH57 has stumbled upon Blood Gulch. Their primary directive? Destroy all the Blues. Their game plan? Terrible.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ebb1f85-47a5-4849-ad63-673afc4690cc/sm/2013912-1466191956926-RvB_EP_07.png","duration":778,"publication_date":"2016-06-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-60-post-show","changefreq":"weekly","video":[{"title":"S6:E4 - Nobody Is Watching This Anyways – #60 Post Show","description":"The FCC is a huge fan of On The Spot. They use it to test out new recruits on.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-60-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/becd7aca-2784-47a7-b4f3-f1fea05919df/sm/2013912-1466184202311-ots_60post_thumb.jpg","duration":422,"publication_date":"2016-06-18T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-7","changefreq":"weekly","video":[{"title":"S1:E7 - Episode 7 - Prank Wars","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0ea3a99-2c3c-4aad-8172-b35d0f31e663/sm/2013912-1466178527290-RWBY_CHIBI_THUMBNAIL_EPISODE_007.png","duration":191,"publication_date":"2016-06-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-64","changefreq":"weekly","video":[{"title":"S2:E64 - FrE3 Play! #64","description":"It's FrE3 Play! Meg and Ryan are taking over the E3 floor to find out, in three words, what people think about the conference. Plus, Fan Art Friday is back! Finally, Ryan's hosting duties are relinquished when a saucy new competitor comes in to steal Meg's heart, and Ryan's mic.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97983d85-8b11-43e0-b09c-bff0e445537a/sm/2013912-1466186548708-FP64_-_THUMB.jpg","duration":566,"publication_date":"2016-06-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-8","changefreq":"weekly","video":[{"title":"2016:E21 - Sponsor Play – Dark Souls 3 – Part 8","description":"I’m a TCBY on the Myers-Briggs personality test. Miles is a KFC.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/403b9e64-4df4-4b3a-9011-f1626b9bac2a/sm/2013912-1466187840515-DS3_Pt8.jpg","duration":1651,"publication_date":"2016-06-17T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-60","changefreq":"weekly","video":[{"title":"S6:E60 - Jesus the Hedgehog – #60","description":"This episode is brought to you by the fact that there are no words that start with the letter \"J\"... except for \"Jesus\".\n\nSponsors:\n\nAudible.com - http://adbl.co/1Or3y5R\n\nBlue Apron - http://cook.ba/1V1MMMd","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6552f10e-2de6-4061-a46f-9b47674f3100/sm/2013912-1466184298674-ots_60_thumb.jpg","duration":2476,"publication_date":"2016-06-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-mascot-camp-camp-episode-2","changefreq":"weekly","video":[{"title":"S1:E3 - Mascot – Episode 2","description":"David takes the campers on a search for a new camp mascot. Max spends some quality time with the Quartermaster. Nikki and Neil encounter a dangerous wild animal.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-mascot-camp-camp-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee8b0718-fd66-4b2e-8e00-a72cb1922461/sm/2013912-1466175186928-cc1_ep02_tn.jpg","duration":583,"publication_date":"2016-06-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-matt-s-vlog-june-16-2016","changefreq":"weekly","video":[{"title":"2016:E9 - Matt’s Vlog: June 16, 2016","description":"Matt fills us in on what’s up at Rooster Teeth for the rest of June. Spoiler alert: It's a LOT.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-matt-s-vlog-june-16-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4e53146-053f-4ee7-897e-c8387dff0bf5/sm/21-1466040598071-sponsor_vlog_thumbnail_6.16.16.jpg","duration":876,"publication_date":"2016-06-16T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-380-post-show","changefreq":"weekly","video":[{"title":"2016:E23 - Podcast #380 Post Show","description":"Join Barbara Dunkelman, Gavin Free, Chris Demarais, and Josh Flanagan as they discuss grunting, girlfriend roommates, and people watching.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-380-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a99fdbc3-ff51-40a7-a7eb-4d2cdae9c66a/sm/2013912-1465923461212-rtp380_-_PS_-_THUMB.jpg","duration":825,"publication_date":"2016-06-15T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-380","changefreq":"weekly","video":[{"title":"2016:E380 - Apple or the Egg – #380","description":"Join Barbara Dunkelman, Gavin Free, Chris Demarais, and Josh Flanagan as they discuss dating, E3, RTX 2016 and more on this week's RT Podcast! Check out the Mike and Dave RTX Contest - (http://fox.co/1YpDijG). This episode originally aired on June 13, 2016.\n\n\n\nWant answers to the burning questions left unresolved in this episode? Check out the Rooster Teeth Podcast Answers!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-380","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db38e64c-ecd0-4054-b8f4-0ad2922f9524/sm/2013912-1465921221068-rtp380_-_THUMB.jpg","duration":6587,"publication_date":"2016-06-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-deconstruction-crew","changefreq":"weekly","video":[{"title":"SOR:E11 - Deconstruction Crew","description":"It's metal against metal in an all-out bulldozer demolition derby! Gus, Burnie, Gavin, and Blaine witness the construction feud of the century!\n\nMade by the Rooster Teeth community GTA5 machinima team: The Lone Few.\n\nAudio from The Rooster Teeth Podcast #373","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-deconstruction-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56e8e0ba-ec5a-4710-a745-102ac9b4d0d5/sm/2013912-1465844973786-SoRT_11_THUMBNAIL.jpg","duration":138,"publication_date":"2016-06-13T19:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-6","changefreq":"weekly","video":[{"title":"S14:E6 - Episode 6: Orange Is the New Red","description":"The Reds of Blood Gulch Outpost #1 aren't the only soldiers in the galaxy hunting down dirty Blues...","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48dd7f87-b2ee-44af-a0bb-da5f46bba629/sm/2013912-1465581119125-RvB_EP_06.png","duration":520,"publication_date":"2016-06-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-59-post-show","changefreq":"weekly","video":[{"title":"S6:E3 - It Ends In a Threesome – #59 Post Show","description":"The Notebook vs Aliens vs Predators. You know you wanna see this get made.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-59-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9b18231-051c-4dd6-8572-fddb1b7e7e2b/sm/2013912-1465578343577-ots_59post_thumb.jpg","duration":413,"publication_date":"2016-06-11T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-6","changefreq":"weekly","video":[{"title":"S1:E6 - Episode 6 - The Vacuum","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3015ca95-057c-46fe-9b9e-e2edeeeae84b/sm/2013912-1465581135780-RWBY_CHIBI_THUMBNAIL_EPISODE_006.png","duration":200,"publication_date":"2016-06-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-63","changefreq":"weekly","video":[{"title":"S2:E63 - Face S’more Showdown – #63","description":"It’s Free Play! Meg and Ryan are back in the office to exact their revenge on Mariel for last week’s stunt. Plus, Meg and Ryan get all contorted in this week’s Yogi Moment. Finally, in honor of the premiere of Camp Camp, Meg and Ryan harken back to their childhoods and make some s’mores, the Free Play way.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a19e0028-f5e8-4f57-84ad-b48c9840dfb0/sm/2013912-1465574959610-FP63_-_THUMB.jpg","duration":919,"publication_date":"2016-06-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-7","changefreq":"weekly","video":[{"title":"2016:E20 - Sponsor Play – Dark Souls 3 – Part 7","description":"The pants are still off and the rage continues to build.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be1d1d26-0f97-4901-bde2-cf8321ccc2ec/sm/2013912-1465585556696-DS3_Pt7.jpg","duration":2073,"publication_date":"2016-06-10T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-59","changefreq":"weekly","video":[{"title":"S6:E59 - Are Ladies Down With The Clams? – #59","description":"There is one thing a group of white men can always be counted on being experts of and that's the female anatomy.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45c642b1-0cde-4351-8f3a-1d43e831efc0/sm/2013912-1465578237871-ots_59_thumb.jpg","duration":2549,"publication_date":"2016-06-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/camp-camp-season-1-episode-1-escape-from-camp-campbell","changefreq":"weekly","video":[{"title":"S1:E2 - Escape from Camp Campbell – Episode 1","description":"Max tries to take advantage of the bus dropping off new campers to Camp Campbell to mount an escape. Newcomers Nikki and Neil ask some important questions, and David tries to sing a song.","player_loc":"https://roosterteeth.com/embed/camp-camp-season-1-episode-1-escape-from-camp-campbell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9cdcbee-fa6d-41d0-b1ef-81f2bd010d12/sm/2013912-1465570632589-cc1_ep01_tn_v02.jpg","duration":707,"publication_date":"2016-06-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-michael-s-date-to-prom","changefreq":"weekly","video":[{"title":"2016:E11 - Michael's Date to Prom","description":"This week Rooster Teeth puts on a very special prom for Michael and his biggest fan.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-michael-s-date-to-prom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4596a359-cef8-4a9f-9ce5-0f76169f8442/sm/2013912-1465487773937-MK_Prom_Thumb03.png","duration":203,"publication_date":"2016-06-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-how-to-play-million-dollars-but-the-game","changefreq":"weekly","video":[{"title":"S2:E11 - How to Play Million Dollars, But... The Game","description":"Join Burnie, Barbara, Tyler , and Jon as they explain how to play Million Dollars, But... The Game. Available for pre-order now at www.MDBGame.com","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-how-to-play-million-dollars-but-the-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ea1d6bf-4b19-4234-880f-089cdba4f8d9/sm/2013912-1465400350151-H2_MDBG_Thumb03.png","duration":277,"publication_date":"2016-06-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-379-post-show","changefreq":"weekly","video":[{"title":"2016:E22 - Podcast #379 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss shaving, weird google searches, and -oh shit! What was that? Did you hear that?\n\n\n\nFor answers to the burning questions posed in this episode, check out the RT Podcast Post Show Answers!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-379-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4f24da0-7a87-4b4e-a48d-d41196805626/sm/2013912-1465400027786-rtp379_-_PS_-_THUMB.jpg","duration":689,"publication_date":"2016-06-08T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-hh","changefreq":"weekly","video":[{"title":"S1:E30 - Heroes & Halfwits Trailer","description":"The time has come to embark upon an epic journey. Indeed, the Heroes & Halfwits adventure officially begins on June 9. Episodes are available to Sponsors first, and the public the day after that.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-hh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00690d56-78ba-4de3-a73e-0aecc9ef5fcd/sm/2013912-1465329776702-Heroes_and_Halfwits_Thumb.jpg","duration":70,"publication_date":"2016-06-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-gavin-or-gaggle-379","changefreq":"weekly","video":[{"title":"2016:E379 - Gavin or Gaggle – #379","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss airplanes, gag-worthy stories, RTX 2016, and more on this week's RT Podcast! This episode originally aired on June 6, 2016.\n\n\n\nWant answers to the burning questions left unresolved in this episode? Check out the Rooster Teeth Podcast Answers!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-gavin-or-gaggle-379","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4254932e-f2cc-4470-899e-5d840d247891/sm/2013912-1465317140342-rtp379_-_THUMB.jpg","duration":6748,"publication_date":"2016-06-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-gus-and-geoff-start-some-shit","changefreq":"weekly","video":[{"title":"2016:E18 - Gus and Geoff Start Some Shit","description":"Gus and Geoff go to a bar to get some daiquiris, and amuse themselves by starting a fight between two waitresses.\n\nAudio from RT Podcast #290","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-gus-and-geoff-start-some-shit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c55033f2-9dd3-4c2f-b548-c47d8d07bdbe/sm/2013912-1465226870334-rtaa228tn1.jpg","duration":105,"publication_date":"2016-06-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-5","changefreq":"weekly","video":[{"title":"S14:E5 - Episode 5: The Brick Gulch Chronicles","description":"Some would describe the Reds and Blues as a bunch of \"blockheads\". This statement has never been more appropriate.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87a9b083-bd7f-48ad-a694-f0c8d973a029/sm/2013912-1464898655131-RvB_EP_05.png","duration":664,"publication_date":"2016-06-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-tsnt","changefreq":"weekly","video":[{"title":"S7:E18 - TWENTY-SOMETHING NINJA TURTLES!","description":"It's hard fighting crime when it pays nothing and you've got student loans. And don't get me started on rent prices. $1500 for a one bedroom?! How am I supposed to move out of Splinter's basement? This is the baby boomer turtles' fault.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-tsnt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31d96a8b-008c-41e3-85a6-1f4252630b3b/sm/1461653-1465133413647-TSNT_Thumbnail_03.png","duration":89,"publication_date":"2016-06-05T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-how-to-bra-on-the-spot-58-post-show","changefreq":"weekly","video":[{"title":"S6:E2 - How To Bra – On The Spot #58 Post Show","description":"You can't take a woman's bra off before you take off her Mexican made shirt. That's just science.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-how-to-bra-on-the-spot-58-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d6e6678-1811-41c4-90a5-4a3d34bd5fae/sm/2013912-1464972773519-ots_58post_thumb.jpg","duration":513,"publication_date":"2016-06-04T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Episode 5 - Sissy Fight","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c6afe98-66db-4f45-b720-49d312b16983/sm/2013912-1464897858472-RWBY_CHIBI_THUMBNAIL_EPISODE_005.png","duration":217,"publication_date":"2016-06-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-pi-ata-payback-62","changefreq":"weekly","video":[{"title":"S2:E62 - Piñata Payback – #62","description":"It’s Ass Play! With Meg and Ryan out of the office, everyone’s favorite couple take over the show and bring you relationship advice, dildo-catching, cumming, drumming, and more! Finally, Tyler and Mariel get a little payback in this week’s stunt.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-pi-ata-payback-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c7d8d0d-e27d-429c-81d0-b83460be6533/sm/2013912-1464971950621-FP62_-_THUMB.jpg","duration":843,"publication_date":"2016-06-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-6","changefreq":"weekly","video":[{"title":"2016:E19 - Sponsor Play – Dark Souls 3 – Part 6","description":"When in doubt, attack the taint!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebf51143-38ca-4b9c-b17b-dd3c9199d150/sm/2013912-1464981175873-DS3_Pt6.jpg","duration":2279,"publication_date":"2016-06-03T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-blaine-s-boner-trick-58","changefreq":"weekly","video":[{"title":"S6:E58 - Blaine's Boner Trick – #58","description":"A lot of people don't know this but Blaine was actually up for the part of Rabbit in 8 Mile due to his mad flow skills. Unfortunately Eminem decided he wanted to play the role and Blaine went on to make dumb videos on the internet where he squats like a crab and tries to convince people that that will give them a boner. This episode originally aired on June 2, 2016","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-blaine-s-boner-trick-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb1712af-8be4-47c8-9bde-701964da886e/sm/2013912-1464972139193-ots_58_thumb_1.jpg","duration":2768,"publication_date":"2016-06-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-day-5-official-trailer-2016-hd","changefreq":"weekly","video":[{"title":"S1:E28 - Day 5 Official Trailer (2016) HD","description":"Series premiere June 19th exclusively for Rooster Teeth Sponsors. Start your free month trial at http://bit.ly/1s7TU3j\n\nDay 5 is the first dramatic series from Rooster Teeth Productions, set in the immediate aftermath of a fatal sleep epidemic. After a fortuitous drug bender saves his life, addict Jake (Jesse C. Boyd) ventures out into the quiet streets… unaware that most of the world already died in their beds. Now, battling sleepless fatigue and encroaching delirium, Jake teams with a scrappy teenager (Walker Satterwhite), overnight doctor (Stephanie Drapeau) and red-eye pilot (Davi Jay) to search for answers… and just maybe find a way to sleep again. Set in a world of insomniacs, late-shift workers and roving psychotics, Day 5 presents a unique vision of the apocalypse that fuses serial drama and thriller around a human story of survival and redemption. Day 5 premieres June 19th at RoosterTeeth.com.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-day-5-official-trailer-2016-hd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/036e9d40-d262-44fd-b1a6-3475bd0df4a5/sm/2013912-1464880966534-DAY5-trailerthumb-01.jpg","duration":96,"publication_date":"2016-06-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-june-2-2016","changefreq":"weekly","video":[{"title":"2016:E8 - Burnie’s Vlog: June 2, 2016","description":"Burnie is fresh off the plane from Kinda Funny Live 2 and here to fill us in on what’s going on at Rooster Teeth for the first half of June.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-june-2-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6907ca39-d739-434e-b711-5a0d8a5e2433/sm/2013912-1464798078201-sponsor_vlog_thumbnail_62.jpg","duration":201,"publication_date":"2016-06-02T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-378-post-show","changefreq":"weekly","video":[{"title":"2016:E21 - Podcast #378 Post Show","description":"Join Gus Sorola, Brandon Farmahini, Aaron Marquis, and Barbara Dunkelman as they discuss puppies, Day 5, Anamorphic lenses, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-378-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e161258-c4a8-4c95-b904-3acf3a15c387/sm/2013912-1464798305435-rtp378_-_PS_-_THUMB.jpg","duration":1044,"publication_date":"2016-06-01T16:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-python-penis-378","changefreq":"weekly","video":[{"title":"2016:E378 - The Python Penis – #378","description":"Join Gus Sorola, Brandon Farmahini, Aaron Marquis, and Barbara Dunkelman as they discuss pythons, The Nice Guys, RTX 2016, and more on this week's RT Podcast! This episode originally aired on May 30, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-python-penis-378","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5076e46d-9d0a-4b3b-9735-ff74c63a47f6/sm/2013912-1464708355025-rtp378_-_THUMB.jpg","duration":5672,"publication_date":"2016-05-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-slow-mo-rainbow-flame","changefreq":"weekly","video":[{"title":"S1:E59 - Slow Mo Rainbow Flame","description":"Gav and Dan make some rainbow flames with coloured lamp oil.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-slow-mo-rainbow-flame","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d33c7c99-4f6f-4ede-8566-0f84f18a7297/sm/82-1464703100023-Screen_Shot_2016-05-31_at_2.48.18_PM.jpg","duration":371,"publication_date":"2016-05-31T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-gavin-the-hostage-negotiator","changefreq":"weekly","video":[{"title":"2016:E17 - Gavin The Hostage Negotiator","description":"Gavin and Lindsay play ABCs of storytelling, where he tries to save some hostages by acquiring some Care Bears for Lindsay.\n\nAudio from What is a Fist Roast - On The Spot #45","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-gavin-the-hostage-negotiator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77ae7a67-9817-49b6-8ec7-113ba7ea0df2/sm/2013912-1464622867713-rtaa227tn1.jpg","duration":103,"publication_date":"2016-05-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-why-they-re-here","changefreq":"weekly","video":[{"title":"S14:E4 - Episode 4: Why They're Here","description":"Captain Flowers finds the last piece to his little operation and moves it to a a quiet little box canyon in the middle of nowhere. I think everything is going to work out just fine.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-why-they-re-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4754dc0-d15e-4512-93fe-c2cc6dd1cf2b/sm/2013912-1464381365109-RvB_EP_04.png","duration":632,"publication_date":"2016-05-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-tinder-the-superhero-movie","changefreq":"weekly","video":[{"title":"S7:E17 - Tinder: The Superhero Movie","description":"As an army of bots descends upon the earth, Tinder fights to save humanity from extinction, one swipe at a time.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-tinder-the-superhero-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe8dbdd-60c6-4bc7-87a0-d40af8caddc4/sm/2013912-1464365973811-Tinder_Trailer_Thumb.png","duration":213,"publication_date":"2016-05-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-post-show-57","changefreq":"weekly","video":[{"title":"S6:E1 - Singing Nazi Crabs - On The Spot #57 Post Show","description":"Michael Jackson in the military and Christoph Waltz and his undersea dog adventure. Why not?","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-post-show-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c654c1b-7b6c-4ea4-a067-da99d13dade0/sm/2013912-1464407815198-ots_58_post_thumb.jpg","duration":454,"publication_date":"2016-05-28T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4 - Fighting Game","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aa24296-76f2-49ec-99a5-2c7186c4ea88/sm/2013912-1464364536415-RWBY_CHIBI_THUMBNAIL_EPISODE_004.png","duration":183,"publication_date":"2016-05-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-iron-cosplay-x-men-edition-61","changefreq":"weekly","video":[{"title":"S2:E61 - Iron Cosplay: X-Men Edition – #61","description":"It’s Free Play! Meg and Ryan invite Patrick and Erin from animation over to re-create some famous paintings, with a bit of an anime twist. Plus, Ryan doles out some more fatherly advice in this week’s Daddy Issues. Finally, just in time for the new X-Men movie, we bring back the Iron Cosplay challenge!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-iron-cosplay-x-men-edition-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16736dbe-619b-450b-8faf-f24a73ffc658/sm/2013912-1464368581570-FP61_-_THUMB.jpg","duration":1055,"publication_date":"2016-05-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-5","changefreq":"weekly","video":[{"title":"2016:E18 - Sponsor Play – Dark Souls 3 – Part 5","description":"In this episode Kyle and Miles are making friends with a giant… a giant that shoots arrows bigger than a Yao Ming.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6d1a545-c61d-44f1-9dcc-2d2d7fb92a18/sm/2013912-1464365541441-DS3_Pt5.jpg","duration":1864,"publication_date":"2016-05-27T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-6-57","changefreq":"weekly","video":[{"title":"S6:E57 - Hogwarts Hates White People – #57","description":"Swipe right if you're not white, am I right? This episode originally aired May 26th, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-6-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35da9e93-0503-4859-8aa4-195fe84dec2f/sm/2013912-1464367691259-ots_57_thumb.jpg","duration":2380,"publication_date":"2016-05-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-camp-camp-official-trailer","changefreq":"weekly","video":[{"title":"S1:E27 - Camp Camp – Official Trailer","description":"Camp Camp is coming soon! Get a closer look at what's to come, as young Max tries to survive the summer at the world's most dysfunctional and multi-faceted summer camp! Camp is in session on June 10th.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-camp-camp-official-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1dbaa6d-8041-46d4-96ad-61aaf802c65a/sm/2013912-1464280375230-Camp_Camp_Trailer_Thumbnail.jpg","duration":70,"publication_date":"2016-05-27T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-officer-gibson","changefreq":"weekly","video":[{"title":"2016:E10 - Officer Gibson","description":"Officer Gibson is back! And he's badder than ever! Everyone and no one is safe!\n\nWhat's Day 5?","player_loc":"https://roosterteeth.com/embed/rt-life-2016-officer-gibson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4b697f2-1e67-41ac-a1ca-e14f9acde065/sm/2013912-1464204228838-RTLIFE_OfficerGibson_Thumbv3.jpg","duration":173,"publication_date":"2016-05-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-377-post-show","changefreq":"weekly","video":[{"title":"2016:E20 - Podcast #377 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss birthdays, emojis, bald eagles, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-377-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfc68660-7ebb-4fc7-83d2-b2578a834d96/sm/2013912-1464190567456-rtp377_-_PS_-_THUMB.jpg","duration":1505,"publication_date":"2016-05-25T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-hh-pilot","changefreq":"weekly","video":[{"title":"2016:E10 - Heroes & Halfwits","description":"Come one, come all, to the inaugural episode of Heroes & Halfwits! Gus, Ryan, Michael, and Geoff are at the mercy of Dungeon Master Frank. Don’t miss the action – it’s sure to be a crit hit.\n\n\n\nWatch new episodes here!","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-hh-pilot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a40fbe5b-083a-4533-b57a-20ed79d09707/sm/2013912-1464125919514-halfwits_thumbtest2.jpg","duration":11983,"publication_date":"2016-05-25T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-chewbacca-conversation-377","changefreq":"weekly","video":[{"title":"2016:E377 - The Chewbacca Conversation – #377","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss viral videos, India, and more on this week's RT Podcast! Also, be sure to stick around for a special post-show interview with The Lonely Island discussing their new movie POPSTAR: Never Stop Never Stopping, in theaters June 3rd. This episode originally aired on May 23, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-chewbacca-conversation-377","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48dacb91-14ea-4f32-a175-87b6949e0d52/sm/2013912-1464104243908-rtp377_-_THUMB.jpg","duration":7584,"publication_date":"2016-05-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-geoff-gets-a-dildo-in-his-butt","changefreq":"weekly","video":[{"title":"2016:E16 - Geoff Gets a Dildo in His Butt","description":"This is the story all about how Geoff's life got flipped turned upside down. So I'd like to take a minute, lemme tell you what, this is exactly how Geoff got a dildo up his butt. \n\nAudio from Sunday Driving in GTA V – The Married Life.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-geoff-gets-a-dildo-in-his-butt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d190788f-dda4-4f37-bb1c-c72d4d4544f8/sm/2013912-1463759533448-rtaa226tn1.jpg","duration":124,"publication_date":"2016-05-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-fifty-shades-of-red","changefreq":"weekly","video":[{"title":"S14:E3 - Episode 3: Fifty Shades of Red","description":"There can only be one Sarge, but many can apply for the job opening.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-fifty-shades-of-red","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/036b8a7b-554f-4d51-bbd6-9ea4d9968d4b/sm/2013912-1463770352628-RvB_EP_03.png","duration":625,"publication_date":"2016-05-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3 - Reloading","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8003ffad-4810-490f-b677-5d24d5828cc0/sm/2013912-1463770180101-RWBY_CHIBI_THUMBNAIL_EPISODE_003.png","duration":191,"publication_date":"2016-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-4","changefreq":"weekly","video":[{"title":"2016:E17 - Sponsor Play – Dark Souls 3 – Part 4","description":"Vordt of the Boreal Valley...I have never seen Miles rage so hard.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47f565e8-be74-4aa3-9684-3578c6ea18f7/sm/2013912-1463767133374-DS3_Pt4.jpg","duration":2045,"publication_date":"2016-05-20T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-60","changefreq":"weekly","video":[{"title":"S2:E60 - Real Man's Jingle Jam – #60","description":"It’s Free Play! Meg and Ryan get the pictures back from their prom date last week. Plus, Tyler stops by to read some tweets from a very erotic hashtag. Finally, there’s innuendos abound in this week’s giant Jingle stunt.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fa0a529-d974-4000-9d57-fecf0f2797f2/sm/2013912-1463759004217-fp60_-_THUMB_v3.jpg","duration":1535,"publication_date":"2016-05-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-the-ultimate-rickshaw-race","changefreq":"weekly","video":[{"title":"2016:E9 - The Ultimate Rickshaw Race","description":"The only thing tougher than running is running while carrying someone. Blaine, Tyler, and Joel fight to be the first to finish…\n\nThanks Old Spice Dream Runner and their Hardest Working Collection for sponsoring this video. Check out the Old Spice Dream Runner site to draw your shape, break a sweat and hopefully win the prize of the day!","player_loc":"https://roosterteeth.com/embed/rt-life-2016-the-ultimate-rickshaw-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4da28776-f894-4535-a019-794d69fc5b71/sm/2013912-1463682856032-Old_Spice_Thumbv6.png","duration":348,"publication_date":"2016-05-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-376-post-show","changefreq":"weekly","video":[{"title":"2016:E19 - Podcast #376 Post Show","description":"Join Gus Sorola, Brandon Farmahini, Aaron Marquis, and Chris Demarais as they discuss foul balls, invisible fire, third testicles, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-376-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a447a1e9-5171-4f33-a232-638278c83dca/sm/2013912-1463592020411-rtp376_-_PS_-_THUMB.jpg","duration":1925,"publication_date":"2016-05-18T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-sibling-situation-376","changefreq":"weekly","video":[{"title":"2016:E376 - The Sibling Situation – #376","description":"Join Gus Sorola, Brandon Farmahini, Aaron Marquis, and Chris Demarais as they discuss space lawyers, Aaron’s brother Lynn, road rage, and more on this week's RT Podcast! This episode originally aired on May 16, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-sibling-situation-376","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28491951-04ca-4062-82a9-a3f4c7a3e1fa/sm/2013912-1463500447526-rtp376_-_THUMB.jpg","duration":5926,"publication_date":"2016-05-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-gavin-or-google-3","changefreq":"weekly","video":[{"title":"2016:E15 - Gavin or Google #3","description":"In this edition of Gavin or Google, Burnie covers accidental furniture assembly, or possible cases of bestiality. Which stupid thing did Gavin say? Let's find out!\n\nAudio from RT Podcast #226.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-gavin-or-google-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a901d6c8-9c9c-4bb5-bae9-be0e22a1b67a/sm/2013912-1463412262413-rtaa225tn1.jpg","duration":85,"publication_date":"2016-05-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-matt-s-vlog-may-15-2016","changefreq":"weekly","video":[{"title":"2016:E7 - Matt’s Vlog: May 15, 2016","description":"Matt fills us in on what’s going on at Rooster Teeth for the rest of May – and beyond.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-matt-s-vlog-may-15-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07b39f16-9a71-4ee4-a75d-2c351465c50a/sm/21-1463338243367-mattvlog051316.jpg","duration":431,"publication_date":"2016-05-15T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-2-from-stumbled-beginnings","changefreq":"weekly","video":[{"title":"S14:E2 - Episode 2: From Stumbled Beginnings","description":"You never know who you'll meet in basic training.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-2-from-stumbled-beginnings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/204c6ab3-09cb-43a4-a201-4815c6f57912/sm/2013912-1463153650563-RvB_EP_02.png","duration":472,"publication_date":"2016-05-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2 - Cat Burglar","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/982ff57b-4e64-4a2d-971e-5b76a9ead91d/sm/2013912-1463153453512-RWBY_CHIBI_THUMBNAIL_EPISODE_002.png","duration":190,"publication_date":"2016-05-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-corn-drill","changefreq":"weekly","video":[{"title":"S1:E58 - Corn Drill","description":"Gav and Dan cobbled this video together. It left Dan's voice a bit husky, but I thought it was amaizeing.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-corn-drill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10890f5e-f3a6-4ae7-87ee-059ae6e18797/sm/82-1463237578520-Screen_Shot_2016-05-14_at_09.46.10.jpg","duration":253,"publication_date":"2016-05-14T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-3","changefreq":"weekly","video":[{"title":"2016:E16 - Sponsor Play – Dark Souls 3 – Part 3","description":"What's your Tinder pick up line?","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42441241-426f-4765-ad4c-73bfb881c935/sm/2013912-1463169191746-DS3_Pt3.jpg","duration":1864,"publication_date":"2016-05-13T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-grimm-eclipse-shootout-59","changefreq":"weekly","video":[{"title":"S2:E59 - Grimm Eclipse Shootout! – #59","description":"It’s Free Play! Meg’s got some problems with the new Pottermore Quiz. Plus, Ryan reveals the secret to potty training children. Finally, to celebrate the new update for RWBY: Grimm Eclipse, Meg and Ryan take a trip to the gun range to put a few holes in some Grimm. \n\n\n\nThis episode is sponsored by MVMT Watches (http://bit.ly/1qit2fh)\n\nCheck out RWBY: Grimm Eclipse on Steam: http://bit.ly/23NE9tG\n\nRWBY Vol. 3 Soundtrack, now on iTunes: http://apple.co/23NEDQD","player_loc":"https://roosterteeth.com/embed/free-play-season-2-grimm-eclipse-shootout-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f23518d-5901-46e6-9895-21096948f65f/sm/2013912-1463157761761-fp59_-_Thumb_v2.jpg","duration":966,"publication_date":"2016-05-13T16:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-the-amazing-race-special-podcast-with-burnie-ashley-4","changefreq":"weekly","video":[{"title":"2016:E9 - The Amazing Race Special Podcast with Burnie & Ashley #4","description":"Join Ashley, Burnie, and the ghost of Jon as they discuss the penultimate leg of The Amazing Race, and debate whether the word penultimate is allowed. Revenge on inanimate objects is pondered.","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-the-amazing-race-special-podcast-with-burnie-ashley-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba81426b-d927-4309-ba68-89181ee9bd3b/sm/2013912-1463082977333-tar_thumbnail_4.jpg","duration":4224,"publication_date":"2016-05-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-million-dollars-but-the-game-announcement","changefreq":"weekly","video":[{"title":"S2:E10 - Million Dollars, But... The Game Announcement","description":"Introducing Million Dollars, But... The Game! Available for pre-order now at www.MDBGame.com","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-million-dollars-but-the-game-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df3262fc-323e-4304-832b-6922d1ab629b/sm/2013912-1462980748656-MDB_Game_v3.png","duration":145,"publication_date":"2016-05-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-375-post-show","changefreq":"weekly","video":[{"title":"2016:E18 - Podcast #375 Post Show","description":"Join Gus Sorola, Gavin Free, Kerry Shawcross, and Miles Luna as they discuss what Google auto-complete has to say about them on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-375-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/597a8097-ea04-4ffe-b3f1-0cceb160ae5e/sm/2013912-1462979523436-rtp375_-_PS_-_THUMB.jpg","duration":1599,"publication_date":"2016-05-11T15:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-a-case-of-genital-gus-375","changefreq":"weekly","video":[{"title":"2016:E375 - A Case of Genital Gus – #375","description":"Join Gus Sorola, Gavin Free, Kerry Shawcross, and Miles Luna as they discuss cremation ashes, Austin’s Proposition 1, politician porn parodies, and more on this week's RT Podcast! This episode originally aired on May 9, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-a-case-of-genital-gus-375","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14df65b1-7e6f-4d4c-aa34-3dec794272db/sm/2013912-1462896254480-rtp375_-_THUMB.jpg","duration":6275,"publication_date":"2016-05-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-gavin-s-driving-dilemma","changefreq":"weekly","video":[{"title":"SOR:E10 - Gavin's Driving Dilemma","description":"Gavin finally explains his fear of driving in America: Deportation!\n\nMade by the Rooster Teeth community GTA5 machinima team: The Lone Few.\n\nAudio from The Rooster Teeth Podcast #311","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-gavin-s-driving-dilemma","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71c913f-67eb-481a-b7f9-d910bfbc68aa/sm/2013912-1462821616632-SoRT_10_THUMBNAIL.jpg","duration":109,"publication_date":"2016-05-09T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-day-5-teaser-trailer","changefreq":"weekly","video":[{"title":"S1:E26 - DAY 5 Official Teaser Trailer (2016)","description":"Day 5 is coming June 19th exclusively for Rooster Teeth sponsors. Start your 30-day free trial at http://bit.ly/1s7TU3j\n\nDay 5 is the first dramatic series from Rooster Teeth Productions, set in the immediate aftermath of a fatal sleep epidemic. After a fortuitous drug bender saves his life, addict Jake (Jesse C. Boyd) ventures out into the quiet streets… unaware that most of the world already died in their beds. Now, battling sleepless fatigue and encroaching delirium, Jake teams with a scrappy teenager (Walker Satterwhite), overnight doctor (Stephanie Drapeau) and red-eye pilot (Davi Jay) to search for answers… and just maybe find a way to sleep again. Set in a world of insomniacs, late-shift workers and roving psychotics, Day 5 presents a unique vision of the apocalypse that fuses serial drama and thriller around a human story of survival and redemption. Day 5 premieres June 19th at RoosterTeeth.com.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-day-5-teaser-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/726e0364-8eec-4b84-8ba4-dfcb59ce12b9/sm/2013912-1462813213413-day5_trailer_thumb02.jpg","duration":30,"publication_date":"2016-05-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-14-episode-1-room-zero","changefreq":"weekly","video":[{"title":"S14:E1 - Episode 1: Room Zero","description":"The Red vs. Blueniverse is filled with stories. This... is the first of many.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-14-episode-1-room-zero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95183935-336e-4f36-985d-cc7ce80872be/sm/2013912-1462557370540-RvB_EP_01.png","duration":465,"publication_date":"2016-05-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-cop-vs-car","changefreq":"weekly","video":[{"title":"S7:E16 - Cop Tickets Self-Driving Car","description":"When a cop pulls over a self driving car, things go horribly wrong.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-cop-vs-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f916b20-1b1e-470c-8bb7-9a8dcd40ed63/sm/2013912-1462681049270-_ROOSTER_TEETH_SELFDRIVING_THUMBNAIL_V3.png","duration":214,"publication_date":"2016-05-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-chibi-season-1-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1 - Ruby Makes Cookies","description":"Join the cast of RWBY in a new series of cute, comedy shorts with infinite possibilities! It's playing tag! It's baking cookies! It's posing as police officers! It's... really quite absurd. It's RWBY CHIBI!","player_loc":"https://roosterteeth.com/embed/rwby-chibi-season-1-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71a25b4-1499-47a6-b1e0-415bb3344cfa/sm/2013912-1462557255117-RWBY_CHIBI_THUMBNAIL_EPISODE_001.png","duration":217,"publication_date":"2016-05-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-2","changefreq":"weekly","video":[{"title":"2016:E15 - Sponsor Play – Dark Souls 3 – Part 2","description":"Uchigatana...go ahead try it. It feels good to say right?\n\n...Uchigatana.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/912ecf47-7420-4c8e-9829-91373528beef/sm/2013912-1462552596109-DS3_Pt2.jpg","duration":1874,"publication_date":"2016-05-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-mothers-day","changefreq":"weekly","video":[{"title":"S5:E57 - Damn, She Saggin' - On The Spot: Mother's Day Special","description":"On The Spot wouldn't be here if not for moms. Mommies made the guests, a mommy made the host, and according to a recent survey, 99% of viewers of On The Spot are mommies. So thank you to all those moms out there that make On The Spot happen. This is all your fault. This episode originally aired May 5, 2016 and is sponsored by 1-800-FLOWERS (http://bit.ly/1VMPbQG) and Shari’s Berries (http://bit.ly/1fpE6Be) Mother’s Day is almost here! Make mom smile this year by purchasing one-dozen multi-colored roses for only $19.99. Quantities are limited, so order now at 1800Flowers.com/onthespot.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-mothers-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e1ce836-1b8e-40d9-b66d-279f691f25ac/sm/2013912-1462556244657-ots_57_thumb.jpg","duration":2979,"publication_date":"2016-05-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-58","changefreq":"weekly","video":[{"title":"S2:E58 - RWBY Chibi Bake-Off! – #58","description":"It’s Free Play! Meg discovers her ideal outfit that looks just as good on Ryan as it does on her! Plus, Meg discovers her “doppelbänger” and Ryan has an adorable moment with his son. Speaking of adorable, the cast and crew of the super-cute new show RWBY Chibi stop by to judge Meg and Ryan on their baking skills!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e185658c-51fa-4eb7-be06-f212eee84b5b/sm/2013912-1462551164973-fp58_-_THUMBv3.jpg","duration":1218,"publication_date":"2016-05-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-the-amazing-race-special-podcast-with-burnie-ashley-3","changefreq":"weekly","video":[{"title":"2016:E8 - The Amazing Race Special Podcast with Burnie & Ashley #3","description":"WE'RE STILL IN IT! Join Burnie Burns, Ashley Jenkins, and Jon Risinger as we get caught up on every leg (so far) no matter how long we have to faf about to do it! We'll dance our way through Georgia, race camels in Dubai, and wear the latest in Snake fashion in Bali. Caution, U-TURN AHEAD.\n\nBehind the scenes/clips/previews with Burnie and Ashley: http://bit.ly/1XKY76x\n\nThumbnail art by @drilly812 on Twitter","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-the-amazing-race-special-podcast-with-burnie-ashley-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac53b1ac-4bf3-4b45-9c44-0bc92bdb81a5/sm/24363-1462477347019-tarpodcast_ep3_thumbnail.jpg","duration":8483,"publication_date":"2016-05-05T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-not-poop","changefreq":"weekly","video":[{"title":"2016:E8 - Not Poop","description":"Benny. Christopher. Benny. These are the names of dead crawfish. Never name your crawfish.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-not-poop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ee5158c-2d81-4493-864c-13a5e05dffc7/sm/2013912-1462462796042-RTLife_CrawfishBoil_thumbv2.png","duration":113,"publication_date":"2016-05-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-374-post-show","changefreq":"weekly","video":[{"title":"2016:E17 - Podcast #374 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss enemas, luggage fees, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-374-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d40ffb8-9c6d-4a7c-ae19-6c45271480b9/sm/2013912-1462376658264-rtp374_-_PS_-_THUMB.jpg","duration":1345,"publication_date":"2016-05-04T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-8-11-374","changefreq":"weekly","video":[{"title":"2016:E374 - 8:11 – #374","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss troll dolls, Game of Thrones, genital jousting, and more on this week's RT Podcast! This episode originally aired on May 2, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-8-11-374","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4ed5ef2-5cc3-435b-955e-279a36656456/sm/2013912-1462289465259-rtp374_-_THUMB.jpg","duration":6275,"publication_date":"2016-05-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-paint-on-a-drum-in-4-k-slow-mo-2","changefreq":"weekly","video":[{"title":"S1:E57 - Inside a Giant 6ft Air Balloon","description":"Subscribe to our 2nd channel! - https://www.youtube.com/c/TheSlowMoGuys2\n\nIt's been 5 years since we uploaded our original giant balloon video. Here's a slow mo tribute.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-paint-on-a-drum-in-4-k-slow-mo-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1308440-c7e5-4947-968a-02ee8a209e22/sm/82-1462284257438-Screen_Shot_2016-05-02_at_23.26.25.jpg","duration":431,"publication_date":"2016-05-03T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-the-instacart-recovery","changefreq":"weekly","video":[{"title":"2016:E14 - The Instacart Recovery","description":"Gus talks about reaching new heights (or lows) in his human interactions when ordering groceries. Gavin poses the question to the guys about the recovery position, but nobody knows what the hell that is.\n\n\n\nAudio from RT Podcast #311 and RT Podcast #350.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-the-instacart-recovery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46c00ac0-3b85-4db9-9b55-c3484675b3a0/sm/2013912-1461949895668-rtaa224-tn1.jpg","duration":113,"publication_date":"2016-05-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-gus-s-vlog-may-1-2016","changefreq":"weekly","video":[{"title":"2016:E6 - Gus's Vlog: May 1, 2016","description":"Gus fills us in on what’s going on at Rooster Teeth in the first half of May.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-gus-s-vlog-may-1-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab410d2b-2a6e-4d2f-abd0-06e2ad6baa1e/sm/21-1462073048934-sponsor_vlog_thumbnail_5.1.jpg","duration":234,"publication_date":"2016-05-01T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-dark-souls-3","changefreq":"weekly","video":[{"title":"2016:E14 - Sponsor Play – Dark Souls 3 – Part 1","description":"The rage is real.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-dark-souls-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/314b86c9-75aa-4bd3-a7a4-aae081a2c720/sm/2013912-1461959993267-DS3_Pt1.jpg","duration":1726,"publication_date":"2016-04-29T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-butts-b-o-a-t-s-57","changefreq":"weekly","video":[{"title":"S2:E57 - Butts and Boats - #57","description":"It’s Free Play! We get a glimpse into the eternal war of cats vs. dogs in this week’s Internet Show and Tell. Plus, Meg and Ryan get crazy contorted when attempting some viewer-submitted yoga poses. Finally, Tyler and Mariel join Meg and Ryan for a COMPLETELY NORMAL game of Battleship.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-butts-b-o-a-t-s-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28c0dbeb-9f3b-4290-9cd0-022ab895258f/sm/2013912-1461943604724-fp57_-_THUMB.jpg","duration":1238,"publication_date":"2016-04-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-the-amazing-race-special-podcast-with-burnie-ashley-2","changefreq":"weekly","video":[{"title":"2016:E7 - The Amazing Race Special Podcast with Burnie & Ashley #2","description":"Help us beat Tyler and Korey on Twitter! Tweet Friday's episode LIVE with us at 8PM Eastern/7PM Central time using #BurnieAndAshley!\n\nJoin Burnie Burns, Ashley Jenkins, and Jon Risinger as they share stories and secrets of The Amazing Race 28.\n\n\n\nBehind the scenes/clips/previews with Burnie and Ashley: http://bit.ly/1XKY76x\n\nThumbnail art by @corrinforte on Twitter","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-the-amazing-race-special-podcast-with-burnie-ashley-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab08cf68-305b-49a4-94eb-03080aef118f/sm/24363-1461857326732-tarpodcast_ep2_thumbnail.jpg","duration":5393,"publication_date":"2016-04-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2016-36","changefreq":"weekly","video":[{"title":"2016:E4 - Running on Empty – #36","description":"It's Father's Day and the Ramseys are out on vacation in Hawaii. To nobody's surprise, Geoff forgot to fill the tank before hitting the road. Now he must use his \"Dad Instincts\" to travel 40 miles on an empty tank of gas.","player_loc":"https://roosterteeth.com/embed/happy-hour-2016-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91d91bac-3e6e-4305-8e6e-395208a69417/sm/2013912-1461872880949-runningonempty_thumb.jpg","duration":251,"publication_date":"2016-04-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-373-post-show","changefreq":"weekly","video":[{"title":"2016:E16 - Podcast #373 Post Show","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss new iPhone rumors, odd break-ups, and more on this week’s RT Podcast Post Show!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-373-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/783e7256-3cb6-49fb-8daa-04b13c1ab00c/sm/2013912-1461771839890-rtp373_-_PS_-_THUMB.jpg","duration":1667,"publication_date":"2016-04-27T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-373","changefreq":"weekly","video":[{"title":"2016:E373 - Construction Combat! – #373","description":"Join Gus Sorola, Gavin Free, Blaine Gibson, and Burnie Burns as they discuss construction vehicle battles, Richard Simmons, Full House, and more on this week's RT Podcast! This episode originally aired on April 25, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-373","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4006c6b-64d8-415a-8365-da07cccc7541/sm/2013912-1461687629829-rtp373_-_THUMB.jpg","duration":6039,"publication_date":"2016-04-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-the-glasses-the-fireplace","changefreq":"weekly","video":[{"title":"2016:E13 - The Glasses & The Fireplace","description":"Burnie and Gavin stay at a nice Airbnb with a cool fireplace, but when they go to use it, Gavin realizes the landlord might have left something behind.\n\nAudio from RT Podcast #362","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-the-glasses-the-fireplace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78636413-7957-4dd7-bde8-046fdd36ae28/sm/2013912-1461598364741-rtaa223-tn1.jpg","duration":133,"publication_date":"2016-04-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-behind-the-scenes-orcs-must-live","changefreq":"weekly","video":[{"title":"S7:E14 - Behind The Scenes: Orcs Must Live","description":"Check out the behind-the-scenes from our latest RT Short: Orcs Must Live, sponsored by Robot Entertainment. Visit www.orcsmustlive.com to learn more.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-behind-the-scenes-orcs-must-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44cb3c28-4329-4d3e-b0c6-e5bceb77d9f4/sm/2013912-1461436629428-OrcsMustLive_BTS_Thumb.jpg","duration":319,"publication_date":"2016-04-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-56","changefreq":"weekly","video":[{"title":"S2:E56 - Meg and Ryan REALLY Run the Big 5...With Zombies! – #56","description":"It’s Free Play! Ryan shows Meg some pictures of creepy kid’s stuff. Plus, Meg pulls out the mats of yoga to re-enact her Yogi Moment this week. Finally, the whole gang meets up with Ashley Jenkins to have fun day of surviving zombies - what could go wrong?","player_loc":"https://roosterteeth.com/embed/free-play-season-2-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d4f4745-4d6c-46ac-868c-0d250e4015d5/sm/2013912-1461341093817-fp56_-_THUMB.png","duration":1013,"publication_date":"2016-04-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-the-special-amazing-race-podcast-with-burnie-ashley","changefreq":"weekly","video":[{"title":"2016:E6 - The Amazing Race Special Podcast with Burnie & Ashley #1","description":"Join Burnie Burns, Ashley Jenkins, and Jon Risinger as they talk about the adventures seen on the early episodes of The Amazing Race 28. \n\n\n\nBehind the scenes/clips/previews with Burnie and Ashley: http://bit.ly/1XKY76x\n\n\n\nThumbnail art by @iDrawBagman on Twitter","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-the-special-amazing-race-podcast-with-burnie-ashley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bce06f8-71c3-4083-ba65-c70f2f8935d3/sm/24363-1461215863273-tarpodcast_ep1_thumbnail.jpg","duration":3956,"publication_date":"2016-04-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-19-beware-children-at-play","changefreq":"weekly","video":[{"title":"2016:E19 - Episode #19: Beware: Children at Play","description":"When adults are away, the kids will... murder? Join the AH Crew as they watch Beware: Children at Play!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-19-beware-children-at-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3428d8fa-10f5-483d-be9a-99d35c017e4c/sm/2013912-1478274444170-TM_-_Beware_Children_-_THUMB.jpg","duration":5468,"publication_date":"2016-11-04T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-unboxing","changefreq":"weekly","video":[{"title":"2016:E138 - Titanfall 2 Unboxing and Reboxing","description":"EA has Titanmailed Jack a lovely box full of Titanfall-y goodness! This week in unboxing: Gavin holds a toy, Ryan eats some cheese, and Jeremy gets packaged.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf6c0ee-16ea-439b-9325-c5d47d539ce8/sm/2013912-1478207044020-TF2_Unboxing_Thumb.jpg","duration":353,"publication_date":"2016-11-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-20","changefreq":"weekly","video":[{"title":"2016:E123 - VR the Champions - Gorn ","description":"Ryan is pumped to play Gorn, a physics based VR gladiator brawler. This strange virtual world is full of wobbly swords, laughing floating heads, and angry naked warriors trying to beat you to a pulp.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38ccabd0-1282-4465-87c0-0b2a4ace0a65/sm/2013912-1475773762652-VR_Gorn_THUMB.png","duration":1403,"publication_date":"2016-11-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-88","changefreq":"weekly","video":[{"title":"2016:E373 - Let's Watch - Battlefield 1 Part 2","description":"Ryan continues his tank campaign, but this time he's out of the tank and on the hunt for some spark plugs.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/948b44b2-cc5d-4ce7-a847-d1f4c6066f88/sm/2013912-1478189974530-LW__Battlefield_1_Pt_2.png","duration":2475,"publication_date":"2016-11-03T16:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-232-dark-monopoly-part-2","changefreq":"weekly","video":[{"title":"2016:E372 - Minecraft - Episode 232 - Dark Monopoly Part 2","description":"In accordance with Achievement Hunter tradition, ten episodes have passed since the last part of everyone's favorite dice-rolling, house-buying orgy - Monopoly! That means it's time to return to The Nether to roll more dice and buy more houses. Watch the boys get into some shady wheelings and dealings - and hopefully stay out of the hoosegow in the process.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-232-dark-monopoly-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/764b32bf-fbf6-4da4-aa03-25177d257706/sm/2013912-1478188743803-Dark_Monopoly_Thumb.jpg","duration":3529,"publication_date":"2016-11-03T15:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-vr-halloween-games-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E137 - VR Halloween Games with The Stream Team - FULL STREAM","description":"Happy Halloween! Join the Stream Team and a few special guests as they scare themselves shitless with spooky VR games.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-vr-halloween-games-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79a5dcb1-f18b-4ae3-8b37-8a269a082214/sm/2013912-1478105736627-vrthumb_1024.jpg","duration":7038,"publication_date":"2016-11-02T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gears-of-war-4-multiplayer","changefreq":"weekly","video":[{"title":"2016:E371 - Gears of War 4 - Multiplayer","description":"Jack, Ryan, Michael, Jeremy, and Matt are ready are the hardest, most badass COGs ever to play Gears of War 4. They're ready to face off against the toughest opponents random matchmaking is willing to throw at them. They'll blast, stomp, kabonk, and chainsaw through the competition - and maybe even play a friendly little game of dodgeball. \n\nOh Lordy! There’s so much blood! I don't remember dodgeball having this many casualties. There was that time in 4th grade where Billy plowed into Steven and gave him a bloody nose, but the Achievement Hunter boys are out there shoving chainsaws into enemy buttholes! That has to be against the rules.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gears-of-war-4-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c907d8e-5301-4362-8ccc-3a3d60ee0688/sm/2013912-1478109729048-Gears4MultiplayerThumb_v002.png","duration":2979,"publication_date":"2016-11-02T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-87","changefreq":"weekly","video":[{"title":"2016:E370 - Let's Watch - Hitman - Hokkaido","description":"Who knew that sushi prep could be so fun? Ryan plays Episode 6 of Hitman with Jeremy, Michael and Gavin along for the hunt.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b2c63cd-fabb-46a8-8576-9f9ba2280e54/sm/2013912-1478100448248-Thumb_Hitman_Hokkaido_01.jpg","duration":4137,"publication_date":"2016-11-02T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight-yt-primetime","changefreq":"weekly","video":[{"title":"2016:E369 - Dead By Daylight (YT Primetime)","description":"Join Michael, Gavin, Ryan, Jeremy, and Andy as they take turns being Michael Myers in Dead By Daylight. There's a spooky piano soundtrack, and lots of murdering to be done.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight-yt-primetime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1792390f-04e4-4065-b233-a6dac78a3dc2/sm/2013912-1478033341972-LP_DeadbyDaylight-STREAM_THUMB.jpg","duration":2725,"publication_date":"2016-11-01T20:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-outbreak-city","changefreq":"weekly","video":[{"title":"2016:E54 - Halo 5 - Outbreak City ","description":"Join Michael, Gavin, Trevor, Ryan, Jeremy, and Matt as they play custom Halo 5 game, Outbreak City. They drive, run, or get eaten and turned into zombies. Map download - http://bit.ly/2dkSEFaGame varient - http://bit.ly/2e7UJSv","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-outbreak-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c81c1fe-559b-4309-b1ce-2b0353d2b1c9/sm/2013912-1477935606779-TTD_Halo5_OutbreakCity_THUMB1.png","duration":1305,"publication_date":"2016-11-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-spooky-ahwu-halloween-ahwu-for-october-31-st-2016-341","changefreq":"weekly","video":[{"title":"2016:E47 - Spooky AHWU Halloween - AHWU for October 31st, 2016 (#341)","description":"Thanks to Dollar Shave Club for supporting our channel. Go to http://DollarShaveClub.com/Hunter to get your first month free!|| \n\nJack and Geoff went all out for this year's Halloween and decided to make the best costumes they possibly could. Geoff's in a very impressive Michael-wearing-a-knight-costume costume, and Jack's in the Jeremy-wearing-a-casual-apple-costume costume. Don't ask how we squished all of Jack down into that Jeremy costume. It....it wasn't pretty. \n\n\n\nHappy Halloween, make sure to stick tons of razer blades into candy tonight, and enjoy all the game news/game releases/Achievement Hunter tom foolery you can handle. It's AHWU!\n\n\n\n\n\n\n\nWatch the Video of the Week, the other Video of the Week, and the Community Video of the Week.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-spooky-ahwu-halloween-ahwu-for-october-31-st-2016-341","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f850a9fb-91df-494f-8b8c-ea4fa05e80bc/sm/2013912-1477951656494-hawhuween.jpg","duration":741,"publication_date":"2016-10-31T22:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battlefield-1-let-s-play-war-achievement-hunter","changefreq":"weekly","video":[{"title":"2016:E364 - Battlefield 1 - Let's Play War Achievement Hunter ","description":"Thanks to EA for sponsoring this video. Get the game now! https://www.battlefield.com. Archduke Geoff Ramsey has been assassinated! Tensions are rising, and groups all across the Let's Play world are starting to take sides. With Geoff gone, the dastardly Funhaus fellows have coaxed half of the Let's Play family to join the Central Powers. Funhaus, Kinda Funny, The Creatures, and Noahj456 are ready to wage a world war in order to take over the Let's Play world.\n\nIn an attempt to defend democracy, Achievement Hunter has risen up to lead the Allied Powers. Cow Chop, Game Attack, and LazarBeam have pledged their allegiance to the cause, hoping to maintain peace in Geoff's absence...by blowing up the other half of the Let's Play family.\n\n\n\n\n\nThese 41 Let's Players from across the globe are ready to take a stand. They fight for honor. They fight for freedom. Mainly, they just fight so they can play more Battlefield 1. Horses! Tanks! Dirigibles falling from the sky! The war may be bloody, but it's also really really fun. Let’s war!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battlefield-1-let-s-play-war-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a72535b-a54a-4267-be36-d816e487280c/sm/2013912-1477669741474-AH_BattlefieldWW1_SPONSOR.png","duration":1770,"publication_date":"2016-10-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gears-of-war-4-decoy-despair","changefreq":"weekly","video":[{"title":"2016:E53 - Gears of War 4 - Decoy Despair","description":"With the constant threat of death coming from everywhere, the life of a Gear in Gears of War 4 is rough. Matt and Michael show you how to make it even rougher for them.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gears-of-war-4-decoy-despair","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3deaa38b-f36d-4722-b328-5d158bc3f7da/sm/2013912-1477684799203-Gears_4_TTD.jpg","duration":428,"publication_date":"2016-10-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-part-5","changefreq":"weekly","video":[{"title":"2016:E362 - 7 Days to Die Part 5","description":"Ryan, Jack, and Michael bring Gavin into the wasteland for some more zombie apocalypse adventures in 7 Days to Die Part 5. This is the calm before the zombie horde, and everyone's preparing to die or survive- whatever may happen.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4911ae2-aac7-4a8b-bc7a-cbb9c9d9c5ee/sm/2013912-1477593483244-LP_7DaystoDie-Pt5_THUMB.png","duration":2661,"publication_date":"2016-10-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-21-hyy43a","changefreq":"weekly","video":[{"title":"2016:E17 - Last Call #21","description":"The AH Crew sit down to discuss Michael’s recent victory on On the Spot. ","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-21-hyy43a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2826de8b-9dc3-45ba-8545-eee84b2901f4/sm/2013912-1477691792851-OFF48_-_PS_-_THUMB.jpg","duration":1211,"publication_date":"2016-10-30T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-86","changefreq":"weekly","video":[{"title":"2016:E366 - Let's Watch - Outlast - Whistleblower DLC (Part 2)","description":"Michael and Gavin tango with Eddie Gluskin, possibly the most traumatizing antagonist of Outlast yet, in the last part of the Whileblower DLC. Viewer discretion advised.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50bbcaa5-2cc0-4960-b63b-7468d94110a1/sm/2013912-1477681655362-DLC_2_3.jpg","duration":4353,"publication_date":"2016-10-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-car-catching","changefreq":"weekly","video":[{"title":"2016:E367 - GTA V - Car Catching","description":"When Geoff is away, the boys will play! Ryan, Michael, Jack, Jeremy and Gavin go Cargobob car bobbing in this hour-long free roam.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-car-catching","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efe5498f-8246-4655-aca8-2eddac145ed6/sm/2013912-1477673228701-LP_GTA_CarCatching.png","duration":3608,"publication_date":"2016-10-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-48-oia64d","changefreq":"weekly","video":[{"title":"2016:E48 - I Never Asked For This - #48","description":"The AH Crew sit down to talk Pumpkins, Al Sharpton, Earthbound and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired October 28, 2016 and is sponsored by Battlefield 1 (http://bit.ly/2ePqBzv) and MVMT Watches (http://bit.ly/2bd8MJW)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-48-oia64d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3642665a-0801-43a3-96d9-2758751d543d/sm/2013912-1477690665501-OFF48_-_THUMB.jpg","duration":7267,"publication_date":"2016-10-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-85","changefreq":"weekly","video":[{"title":"2016:E365 - Let's Watch - Outlast - Whistleblower DLC (Part 1)","description":"Michael and Gavin control Waylon Park, the contractor for the Murkoff Corporation who contacts Miles Upshur, in the Whisteleblower DLC for Outlast.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1464e5e-e508-4128-b19d-be7c2c09fcfc/sm/2013912-1477675085863-DLC_1.jpg","duration":3585,"publication_date":"2016-10-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-18-surf-nazis-must-die","changefreq":"weekly","video":[{"title":"2016:E18 - Episode #18: Surf Nazis Must Die","description":"Boy, these surfers sure have a weird fascination with Funhaus. ","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-18-surf-nazis-must-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b552e61-71e3-4dad-99d1-379cbf9ba281/sm/2013912-1477681407286-TM_-_Surf_Nazis_-_THUMB.jpg","duration":4834,"publication_date":"2016-10-28T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-battlefield-1-horse-jousting","changefreq":"weekly","video":[{"title":"2016:E52 - Battlefield 1 - Horse Jousting ","description":"Thanks to EA for sponsoring this video. Get the game now! https://www.https://www.battlefield.com\n\n\n\nDid you know? In September 1917, there was a little-known micro-battle that took place during the Battle of Ramadi known as the Battle of Horseshoe Lake. The Ottoman Empire and the British forces both agreed to send their stupidest soldiers out the Horseshoe Lake, allowing Ramadi to be a \"smart battle.\" Out at Horseshoe Lake, each soldier was given a sword and a horse. They were instructed to have a horse jousting fight-to-the-death competition. Jack, Jeremy, Michael, Ryan, Matt, and Mica have decided to recreate this lesser-known battle in Battlefield One. Let's joust!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-battlefield-1-horse-jousting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d662983f-f54a-4c55-b24e-466a3fff311b/sm/2013912-1477598261086-TTD_BF1_HorseJousting.png","duration":774,"publication_date":"2016-10-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-21","changefreq":"weekly","video":[{"title":"2016:E136 - VR the Champions - Emily Wants to Play","description":"With October coming to a close, it was only right for Achievement Hunter to get in as many last-minute scares as possible. Outlast may be spooky, but nothing has made Achievement Hunter poop their pants in terror quite like Emily Wants to Play in VR. It even made poor editor Kent editor jump out of his seat! Join Michael, Ryan and Gavin for this terrifying experience.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bd40131-734c-40fc-93fa-e9909f69222a/sm/2013912-1477605439125-VR_Emily.png","duration":1673,"publication_date":"2016-10-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-84","changefreq":"weekly","video":[{"title":"2016:E363 - Let's Watch - Skyrim Remastered","description":"Mere seconds before the execution of Hellboy Ron Ferlman, Skyrim suddenly has a nasty dragon problem. Jeremy, Michael, Gavin, and Ryan are ready to watch Ron go from normal Hellboy to full-blown Dovahkiin Dragonborn warrior Hellboy in this exciting part one of The Elder Scrolls V: Skyrim Special Edition. We're totally playing the whole game. Totally definitely. One part down, one million parts to go.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd33ebd4-71b8-4e15-8777-f4eb75f01fa7/sm/2013912-1477602617372-SkyrimRemasterThumb_v003.png","duration":2939,"publication_date":"2016-10-28T00:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-farming-simulator-2017","changefreq":"weekly","video":[{"title":"2016:E361 - Farming Simulator 2017","description":"Thanks to Focus Home Interactive for sponsoring this video. Check out the game at http://bit.ly/LetsPlay_FS17 \n\nFour years ago, Achievement Hunter explored the wonders of Farming Simulator 2013. Today, they return to their lands of pasture.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-farming-simulator-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1569721b-6260-4cbb-9387-1a4ec4e5d068/sm/2013912-1477585867536-FarmingSim2017Thumb.jpg","duration":3621,"publication_date":"2016-10-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-83","changefreq":"weekly","video":[{"title":"2016:E358 - Let's Watch - Outlast (Part 7)","description":"Michael and Gavin finally beat Outlast in the seventh and last episode of Let's Watch Outlast.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3331462f-1460-4f1c-b5c3-7e90afe5d0aa/sm/2013912-1477503816223-outlastfinale_thumb.jpg","duration":1112,"publication_date":"2016-10-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-231-slender","changefreq":"weekly","video":[{"title":"2016:E360 - Minecraft – Episode 231 – Slender","description":"The Halloween spooky times have invaded Minecraft. Ghosts, vampires, and creepy clowns are roaming around in droves. That means it's the perfect time for the Achievement Hunter crew to take a trip out to the woods! \n\nRumor has it that there's a pretty sweet coloring book to be found among the trees, needing to be collected piece by piece. Only one problem - the Slender Man is ready to kill anyone trying to nab his pages! Spooky spooky spooky","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-231-slender","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4615490-97d4-43b0-8cd9-22d3a3b52ee5/sm/2013912-1477520308391-Minecraft_Slender.jpg","duration":2936,"publication_date":"2016-10-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-super-mario-3-d-world-part-2-full-stream","changefreq":"weekly","video":[{"title":"2016:E135 - Super Mario 3D World Part 2 - FULL STREAM","description":"Matt and Mica continue to loose thier minds as they slowly become Mario and Peach in this installment of Super Mario 3D World.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-super-mario-3-d-world-part-2-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8cc439f-3841-4f8a-b40f-afdb789f9fd3/sm/2013912-1477513305838-super_mario_3.jpg","duration":7122,"publication_date":"2016-10-26T23:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battlefield-1-let-s-play-world-war-announcement","changefreq":"weekly","video":[{"title":"2016:E359 - Battlefield 1 Let's Play World War Announcement","description":"Thanks to EA for sponsoring this video. Get the game now! https://www.battlefield.com\n\n\n\nThe war has been discussed, now it needs to be planned...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battlefield-1-let-s-play-world-war-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91d4d6f0-d49a-4728-8214-e55ee93ae76c/sm/2013912-1477431654904-bf1ann_thumb.jpg","duration":196,"publication_date":"2016-10-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-82","changefreq":"weekly","video":[{"title":"2016:E356 - Let's Watch - Outlast (Part 6)","description":"Michael and Gavin discover the mysteries behind Mount Massive Asylum and the Murkoff Corporation in this penultimate episode of Let's Watch Outlast.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e39e5c16-d8f3-44b9-b85d-a1318545161a/sm/2013912-1477429389822-outlast6_thumb.jpg","duration":3513,"publication_date":"2016-10-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gears-of-war-4-horde-mode","changefreq":"weekly","video":[{"title":"2016:E357 - Gears of War 4 - Horde Mode","description":"Michael, Ryan, Jack, Jeremy, and Matt try to make it to wave 50 in Gears of War 4's Horde Mode.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gears-of-war-4-horde-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af15a7a9-4f3b-4cea-b1fb-819868ab6c69/sm/2013912-1477410904387-LP_Gears4Horde.png","duration":3334,"publication_date":"2016-10-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-five-nights-at-freddy-s-sister-location-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E134 - Five Nights at Freddy's: Sister Location With The Stream Team - FULL STREAM","description":"Have you ever wanted to see Matt and Trevor have an absolute meltdown about cupcakes? Well now you can!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-five-nights-at-freddy-s-sister-location-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a30e452b-7bb8-4d98-b462-9d7ce4638365/sm/2013912-1477414370847-stream_team_sister_loacation.jpg","duration":3839,"publication_date":"2016-10-25T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-yt-primetime","changefreq":"weekly","video":[{"title":"2016:E355 - 7 Days to Die (YT Primetime)","description":"The Achievement Hunters re-visit the PC version of 7 Days to Die. While this stream starts on day 1, don't worry, the zombie spawning is on the highest level possible. The death tolls are skyrocketing, and no one is safe in this zombie apocalypse. So grab your old sham sandwich and settle in!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-yt-primetime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f2ba84-e96a-4648-886a-97cb97f93283/sm/2013912-1477410530348-LP_7DaysToDie-Stream_THUMB.jpg","duration":5648,"publication_date":"2016-10-25T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-81","changefreq":"weekly","video":[{"title":"2016:E354 - Let's Watch - Outlast (Part 5)","description":"Michael and Gavin must collect a series of fuses so they can flip the breaker which opens the laundry chute and pick up the key that accesses the 3rd floor where... they're not getting out alive, are they?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/939ccb4c-dd5c-46ba-9d1a-a9363cd13acf/sm/2013912-1477350109183-outlastpt5_thumb.jpg","duration":2581,"publication_date":"2016-10-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-340","changefreq":"weekly","video":[{"title":"2016:E340 - We'll Do a Let's Watch! - AHWU for October 24th, 2016 (#340)","description":"Thanks to Dollar Shave Club for supporting our channel. Go to http://DollarShaveClub.com/Hunter to get your first month free!|| \n\nSup bitches! We got quite a games list this week. Titanfall 2? Yeah, we'll do a Let's Watch. Skyrim Special Edition? Yeah, we'll do a Let's Watch. World of Final Fantasy? Gonna Let's Watch it up! Windlands VR? Yeah...fuckin' Let's Watch there too! CakeCakeCake? Yeah. Let's Watch! Geoff Ramsey Strangle Simulator 2016? You bet your ass we're doing a Let's Watch in that. Butts and Nuts Remastered? Yes yes yes. Let's Watch City. Overcrotch: Orgies Edition? We'll definitely do a Let's Watch in that. But Dragonball Xenoverse 2? No. Fuck that. That's where we cross the line. We have standards, dammit!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-340","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41071d7b-ec30-4671-b281-7ffd4f41a13a/sm/2013912-1477349067041-ahwu_thumb.jpg","duration":504,"publication_date":"2016-10-24T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-super-mario-3-d-world-full-stream","changefreq":"weekly","video":[{"title":"2016:E133 - Super Mario 3D World - FULL STREAM","description":"Matt and Mica are best friends forever, right? Well, let's see how long that lasts as they battle each other in Super Mario 3D World.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-super-mario-3-d-world-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23a86cf3-aecf-4aad-9cc9-00f3a3714aad/sm/2013912-1477344994954-super_mario_3d.jpg","duration":6968,"publication_date":"2016-10-24T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-part-11-full-stream","changefreq":"weekly","video":[{"title":"2016:E132 - Twilight Princess Part 11 - FULL STREAM","description":"Yetis, ice deer, and cheese soup, OH MY!! Join Matt and Mica as they conquer the Snowpeak Ruins in this instalment of The Legend of Zelda: Twilight Princess.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-part-11-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c6848c-300d-4466-ad18-d190da58d107/sm/2013912-1477344913465-zelda_skullkid_forest_2.0_thumb.jpg","duration":7181,"publication_date":"2016-10-24T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-80","changefreq":"weekly","video":[{"title":"2016:E353 - Let's Watch - Outlast (Part 4)","description":"Michael and Gavin try to escape Mount Massive Asylum by the exit they saw in Part 3. Could this be the end to their nightmare?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8207e56d-0fb3-4180-97ad-742e0bacd7d7/sm/2013912-1477088542435-outlast4_thumb.jpg","duration":3004,"publication_date":"2016-10-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-destiny-wrath-of-the-machine-raid-finale","changefreq":"weekly","video":[{"title":"2016:E354 - Destiny: Wrath of the Machine Raid - Finale","description":"Finally, Achievement Hunter takes on Asskiss Prime - er, Aksis Prime - in the fourth and final part of the Wrath of the Machines series.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-destiny-wrath-of-the-machine-raid-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10d5e116-2ca6-4428-a23c-6e099403ad5b/sm/2013912-1477103344905-Destiny_WotM_Finale_Thumb.jpg","duration":3466,"publication_date":"2016-10-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-20","changefreq":"weekly","video":[{"title":"2016:E16 - Last Call #20","description":"The AH Crew sit down to talk about the aftermath of Last Call #19, a return to drinking, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78979ab4-1aa8-4e24-9ce8-89cb1bcab2b5/sm/2013912-1477085125302-OFF47_-_PS_-_THUMB.jpg","duration":934,"publication_date":"2016-10-23T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-79","changefreq":"weekly","video":[{"title":"2016:E352 - Let's Watch - Outlast (Part 3)","description":"Michael and Gavin squirm their way out of the sewers only to meet Richard Trager, Massive Asylum's resident amateur surgeon.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22ff9f8f-5489-4a88-857f-dd67dfb454eb/sm/2013912-1477084136230-outlast3_thumb.jpg","duration":3704,"publication_date":"2016-10-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-bikers-dawn-of-the-christpunchers","changefreq":"weekly","video":[{"title":"2016:E351 - GTA V - Bikers: Dawn of the Christpunchers","description":"You asked for it. Now live with it. Achievement Hunter goes bad to the bone with the Bikers DLC for GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-bikers-dawn-of-the-christpunchers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/140bf55f-de17-4181-8d30-ff695ad9c849/sm/2013912-1477065580980-Bikers_Thumb_v3.jpg","duration":3189,"publication_date":"2016-10-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-47","changefreq":"weekly","video":[{"title":"2016:E47 - The F*ck Me Anyway Diet - #47","description":"The AH Crew sit down to talk about exercise and dieting, the return of Theater Mode, the Marvel Cinematic Universe, and more on this week's Off Topic! \n\n\n\n\n\nFind Jack’s Periscope Stream here: http://bit.ly/2erEOiR\n\n\n\n\n\n\n\n\n\nThis episode originally aired October 21, 2016 and is sponsored by Dollar Shave Club (http://bit.ly/2cujr4z) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b06c54ff-4da8-4625-8a70-bdddca01fdb9/sm/2013912-1477084985819-OFF47_-_THUMB.jpg","duration":7181,"publication_date":"2016-10-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-78","changefreq":"weekly","video":[{"title":"2016:E350 - Let's Watch - Outlast (Part 2)","description":"Michael and Gavin try to excape the prison area in the second part of the Let's Watch Outlast series.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/066b5197-0240-4867-97b9-d05fa4627581/sm/2013912-1477083458735-outlast2_thumb.jpg","duration":3269,"publication_date":"2016-10-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-20","changefreq":"weekly","video":[{"title":"2016:E11 - Post Show #20","description":"The gang takes a look back at season 1. Plus a special viewer submitted song recapping episodes 1-19.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78f6be0e-ade0-4106-bd01-1f2e839fd985/sm/2013912-1477063325208-HH20_-_PS_-_THUMB.jpg","duration":1014,"publication_date":"2016-10-21T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-17","changefreq":"weekly","video":[{"title":"2016:E17 - Episode #17: 10 Grams","description":"The AH Crew are back for another season of Theater Mode! Kicking things off is 10 Grams, a wannabe Guy Ritchie crime thriller full of dummies, drugs and unsimulated masturbation! ","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed69d1c-f3da-4f39-8fd2-61560f64c183/sm/2013912-1477067422232-TM17_-_THUMB.png","duration":4624,"publication_date":"2016-10-21T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-pocket-play-pok-mon-sun-and-moon-demo","changefreq":"weekly","video":[{"title":"2016:E349 - Pocket Play - Pokémon Sun and Moon Demo","description":"Alola! Jack, Jeremy, and Michael are ready to check out the demo for Pokémon Sun and Moon. They're going to do all the things this brief demo will allow - chill with Ash's special Greninja, snap some photos, take on Team Skull and their thong-wearing leader, check out Pikachu's overpowered super move, ride a Tauros, kill a child, and try not to look directly into Professor Kukui's rock-hard abs.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-pocket-play-pok-mon-sun-and-moon-demo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/066ff3ce-6704-41b2-94c5-94abff03affc/sm/2013912-1477063988675-Pokemon_SunMoonDemo_Thumb.png","duration":3050,"publication_date":"2016-10-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-77","changefreq":"weekly","video":[{"title":"2016:E348 - Let's Watch - Outlast","description":"The Play Pals slow things down for this intense, story driven Let's Watch series, featuring one of the most famous horror video games of all time. Stay tuned for the rest as we approach Halloween weekend!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b9c5584-0f5b-4036-b545-0b8341dc4655/sm/2013912-1477000631049-outlast1.jpg","duration":2935,"publication_date":"2016-10-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-20","changefreq":"weekly","video":[{"title":"2016:E20 - Episode 20","description":"“Spy Master” Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, and Dungeon Master Frank are in the city of Jackal Heart. After breaking off in two teams to find clothes, one team enters the casino. Will the others join them in time?","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb41adf-7bad-497f-9efd-eb8084d11609/sm/2013912-1476990594452-HH20_-_THUMB.jpg","duration":7200,"publication_date":"2016-10-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-230-darwin-awards-3","changefreq":"weekly","video":[{"title":"2016:E347 - Minecraft – Episode 230 – Darwin Awards 3","description":"The Achievement Hunter crew is taking a trip over to downtown Achievement City (where the grass is green and the girls are pretty) to compete in the deadliest competition in all of Minecraft - the Darwin Awards! The competition is as fierce as ever, since this time each death message only counts for the person who received it first. At the end of the hour, only one man will win the coveted Tower of Pimps...hopefully before all of Achievement City is completely destroyed.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-230-darwin-awards-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fba78826-9a52-4fa3-b717-2c10dc204c17/sm/2013912-1476999078306-Minecraft_Darwin3.jpg","duration":3599,"publication_date":"2016-10-20T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-soma-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E130 - SOMA With The Stream Team - FULL STREAM","description":"Join the team that streams as they dive in to the underwater horror survival game: SOMA.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-soma-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a9c79d8-6fab-4eb4-a050-2a933acefc56/sm/2013912-1476979954205-soma_thumb_v2.2.jpg","duration":7431,"publication_date":"2016-10-20T19:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-76","changefreq":"weekly","video":[{"title":"2016:E346 - Let's Watch - Battlefield 1","description":"Ryan runs head first into combat and begins the single player campaign for the World War 1 entry in the Battlefield series.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61b75869-f06c-4e46-a255-1c1e0b734ac3/sm/2013912-1476991663078-LW_Battlefield_1_Pt_1.png","duration":4531,"publication_date":"2016-10-20T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-amnesia-the-dark-decent-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E129 - Amnesia: The Dark Decent With The Stream Team - FULL STREAM","description":"It's 2 spooky! Join two thirds of The Stream Team as they play through the popular horror game: Amnesia.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-amnesia-the-dark-decent-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d6b7b07-41ac-4b01-8b73-f21feedaf962/sm/2013912-1476979960514-amnesia_thumb.jpg","duration":5897,"publication_date":"2016-10-20T18:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-part-10-full-stream","changefreq":"weekly","video":[{"title":"2016:E128 - Twilight Princess Part 10 - FULL STREAM","description":"Matt and Mica travel from the desert to the snowy mountains in this instalment of Twilight Princess. Oh, and Matt comes up with some more creepy voices.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-part-10-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2664dadd-8789-435d-9219-5d79dcd1eedc/sm/2013912-1476898497325-zelda_winter_thumb.jpg","duration":4064,"publication_date":"2016-10-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-part-9-full-stream","changefreq":"weekly","video":[{"title":"2016:E127 - Twilight Princess Part 9 - FULL STREAM","description":"After a long wait and many questioning tweets, Matt and Mica are back in Twilight Princess HD!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-part-9-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/450494e8-aab1-422d-a281-9c5944df2b64/sm/2013912-1476898420396-zelda_desert_thumb_3.jpg","duration":4131,"publication_date":"2016-10-19T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-destiny-wrath-of-the-machine-raid-part-3","changefreq":"weekly","video":[{"title":"2016:E345 - Destiny: Wrath of the Machine Raid Part 3","description":"Achievement Hunter faces off against Aksis Prime, the final boss of the Wrath of the Machine Raid.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-destiny-wrath-of-the-machine-raid-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40376000-b3d2-4ebe-a426-001c45861f54/sm/2013912-1476892194555-Thumb_v2.jpg","duration":1971,"publication_date":"2016-10-19T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-guts-and-glory-part-2","changefreq":"weekly","video":[{"title":"2016:E22 - Guts and Glory #2 - Earl the Redneck","description":"Michael and Gavin return to \"2 Guts 2 Glory\" with Earl and his four-wheeler equipped with guns, booze, and a land mine or two. Get ready for more brutal levels and more accidents that turn our duo into \"ham salads.\"","player_loc":"https://roosterteeth.com/embed/play-pals-2016-guts-and-glory-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ca165da-ee21-4085-88a5-d3c1467674ba/sm/2013912-1476891586177-PP_GutsandGlory_Pt2_THUMB.png","duration":3098,"publication_date":"2016-10-19T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch-junkenstein-s-revenge-yt-primetime","changefreq":"weekly","video":[{"title":"2016:E344 - Overwatch: Junkenstein's Revenge (YT Primetime)","description":"The Achievement Hunter boys didn't get enough spookies and scaries in their bloodstreams the first time they played Overwatch's new Halloween brawl, Junkenstein's Revenge. That means it’s time to play it again. Last time, they conquered Heasy mode. This time, they have a tougher challenge to overcome - becoming the world first crew to finish medium difficulty!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch-junkenstein-s-revenge-yt-primetime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b5b0ed6-bfe0-4453-85ed-cb3c94d42d97/sm/2013912-1476825888354-JunkTYPrime.jpg","duration":1570,"publication_date":"2016-10-18T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-animation-contest-winners","changefreq":"weekly","video":[{"title":"2016:E126 - AH Animation Contest Winners - Old Timey Ryan","description":"The Achievement Hunter Animation Contest has come to a close and you guys have loaded us up with tons of amazing and creative entries. If you'd like to see the other animations, here's a playlist of all other entries: https://www.youtube.com/playlist?list=PLmT7ugvfMqrZBVAKE6NRmAW4hZ3rnPq51","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-animation-contest-winners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2a56d61-c2b9-4c12-b065-b7cd531c8610/sm/2013912-1476823132539-Animation_Contest_Winners_Thumbnails.jpg","duration":307,"publication_date":"2016-10-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-75","changefreq":"weekly","video":[{"title":"2016:E343 - Let's Watch - Until Dawn: Rush of Blood VR","description":"You'd think Mad King Ryan would find a place called the mad house to be super welcoming. Nope! This place is trying to kill him. He has to escape as best as he can - which isn't super easy when everything's on rails.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68cfb966-bb5a-492f-b3db-6c327fdbfc2d/sm/2013912-1476809357386-vr_thumb.jpg","duration":2463,"publication_date":"2016-10-18T16:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-rocket-league-with-chlo-grace-moretz","changefreq":"weekly","video":[{"title":"2016:E125 - Rocket League with Chloë Grace Moretz","description":"We are joined by Chloë Grace Moretz in Rocket League!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-rocket-league-with-chlo-grace-moretz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f67d2cbc-87ed-4ed0-933f-20eeb9824cac/sm/2013912-1476731443186-RLC_THUMB.jpg","duration":124,"publication_date":"2016-10-18T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-the-big-friendly-jeremy-ahwu-for-october-17-th-2016-339","changefreq":"weekly","video":[{"title":"2016:E339 - The Big Friendly Jeremy - AHWU for October 17th, 2016 (#339)","description":"Thanks to Dollar Shave Club for supporting our channel. Go to http://DollarShaveClub.com/Hunter to get your first month free!|| \n\nLast week, Achievement Hunter sent their finished Boxtrolls 2 movie off to Laika Entertainment. \"Hot fuck!\" exclaimed Reginald Laika, head of Laika. \"This shit's hot fire. We're going to make so much money putting this in theaters. These Achievement Hunter boys are the cat's pajamas. They're exactly the right type of creative voice that Hollywood needs right now.\"\n\n\n\nReginald picked up the phone and called his best friend, Steven Spielberg. \"Spielyboy! I know you've been thinking about doing a follow-up to the BFG. These Achievement Hunters are exactly the crew you're looking for to. They’ll bring your vision to the screen in ways you can’t even dream!\"\n\n\n\n\"I'm not taking any charity from you, Laika. I'll find my own group of Let's Players to help me create my future movies. Like these Funhaus boys. They're the future of cinema, you nitwit. Fuck you and never call me again!\"\n\n\n\nUnfortunately, Achievement Hunter was never informed that Spielberg turned them down, so they shot the whole thing over the weekend. Today, right here, right now, we're giving you a teeny tiny look at the BFG sequel that'll never see the light of day - The Big Friendly Jeremy.\n\n\n\n\n\n\n\nWatch the Video of the Week, another Video of the Week, and the Community Video of the Week.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-the-big-friendly-jeremy-ahwu-for-october-17-th-2016-339","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82ec0d11-3f5a-48dd-a795-f39ccdab82d6/sm/2013912-1476738276461-ahwu_2.jpg","duration":608,"publication_date":"2016-10-17T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-mr-president","changefreq":"weekly","video":[{"title":"2016:E21 - Mr. President","description":"Michael and Gavin are secret service members, tasked with saving the completely made up President Rump.\"I don't know how much of this we can show.\" \"Well it's the game. And we may not agree with the game, but it's the game. We showed penises in GTA, we showed that.\" \"I mean I agree with a dick hanging out, but this?\"Death tacos, burning flags, job stealing sweat shop slaves, golden statues guzzling money - how deep does this rabbit hole go?","player_loc":"https://roosterteeth.com/embed/play-pals-2016-mr-president","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64cade5d-07e9-4d27-b0d1-12fcaf166719/sm/2013912-1476483132247-PP_MrPresident_THUMB1.png","duration":2403,"publication_date":"2016-10-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-wheel-of-fortune-part-6","changefreq":"weekly","video":[{"title":"2016:E342 - Wheel of Fortune Part 6","description":"It's Tuesday, so you know what that means. Just like literally every single Tuesday since Achievement Hunter's inception, it's Trivia Tuesday! You know, that thing that totally exists and happens all the time. Jack, Jeremy, and Gavin are ready to win it all or go totally bankrupt on an exciting spin of Wheel of Fortune. Shame that Pat Sajack has the whole thing rigged and there's no way they'll win any money. It's also a shame this is a video game and there’s no money to actually win.\n\nIt's also also a shame you’re not reading this because you’re way too busy watching the video. I mean, that’s fine and all. You’re here to watch the video, after all. But hey. I’m here too. Me, the description. I’m just an extra little bit of joy before or after your video. If you’re about to start the video, go in there and have fun, champ. It’s a good one. And if you’re just getting done, I hope you enjoyed it as much as I did.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-wheel-of-fortune-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bed3b98d-9c73-4d2a-9f36-a62bd3bf256a/sm/2013912-1476485018069-wheelie.jpg","duration":1903,"publication_date":"2016-10-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-19-2","changefreq":"weekly","video":[{"title":"2016:E15 - Last Call #19","description":"The AH Crew stand up to talk about drinking, comparing Friends to Seinfeld, relationships, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-19-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/beb1143d-8618-42a5-9477-4ff064232353/sm/690915-1476487575561-OFF46_-_PS_-_THUMB.jpg","duration":1248,"publication_date":"2016-10-16T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-73","changefreq":"weekly","video":[{"title":"2016:E339 - Let's Watch - Resident Evil 7 Demo (Twilight Version Update)","description":"Geoff struggles to discover some DLC in the Twilight version of the Beginning Hour demo for Resident Evil 7.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a36aedaf-c455-4286-8071-901c21d84d59/sm/2013912-1476471005040-ResidentEvil_Thumbnail_v6.jpg","duration":1299,"publication_date":"2016-10-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cunning-stunts-with-game-attack","changefreq":"weekly","video":[{"title":"2016:E338 - GTA V - Cunning Stunts with Game Attack","description":"Want more Cunning Stunts action with Achievement Hunter and Game Attack? Check out part 2 at Game Attack's official channel here: http://bit.ly/Sub2GameAttack","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cunning-stunts-with-game-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed41bbba-fbdb-4b7c-9717-fe17c6fe708e/sm/2013912-1476460432096-Simple_GTA_Thumb_v2.jpg","duration":1468,"publication_date":"2016-10-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-46","changefreq":"weekly","video":[{"title":"2016:E46 - Dicks Out For The Kids #46","description":"The AH Crew sit down to talk about Gavin’s desk, weird work dreams, raid arguments, and more on this week's Off Topic! This episode originally aired October 14, 2016 and is sponsored by Crunchyroll (http://crunchyroll.com/offtopic) and MVMT Watches (http://bit.ly/29ACJT8)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a81a27fb-a586-45eb-91fc-d66c7885029f/sm/690915-1476485454436-OFF46_-_THUMB.jpg","duration":7907,"publication_date":"2016-10-15T17:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch-junkenstein-s-revenge","changefreq":"weekly","video":[{"title":"2016:E340 - Overwatch: Junkenstein's Revenge","description":"On a Halloween night in the full moon light, Dr. Junkenstein prepares to fight. Geoff, Ryan, Jack, and Mica are ready to fight off hordes of zombie omnics in Overwatch's Halloween brawl, Junkenstein's Revenge. They'll tackle all the difficulties - hard, hedium, heezy, hardly hard, and spooky-hard-easy-hard-easy.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch-junkenstein-s-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a4e1954-fe8b-4f8e-a1f7-f0a8a7b1e5bd/sm/2013912-1476476779265-overwatch.jpg","duration":1461,"publication_date":"2016-10-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-19","changefreq":"weekly","video":[{"title":"2016:E10 - Post Show #19","description":"Geoff has a sandwich (making us all hungry). Griffon, Frank, and Ryan discuss the choice to split up and, look at some cool fan art.  ","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0dee7c4-d686-4c9b-ba3f-6db7a512f16c/sm/2013912-1476458670008-HH19_-_PS_-_THUMB.jpg","duration":788,"publication_date":"2016-10-14T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-74","changefreq":"weekly","video":[{"title":"2016:E341 - Let's Watch - Five Nights at Freddy's: Sister Location (Part 3)","description":"Michael and Gavin are back for the conclusion of the Sister Location. Whill they spill anything this time? Watch to find out!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a7431a2-84f0-40df-8c30-4951993c4b7b/sm/2013912-1476480674046-FNAF_Pt3.png","duration":1328,"publication_date":"2016-10-14T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-19","changefreq":"weekly","video":[{"title":"2016:E19 - Episode 19","description":"Heroes and Halfwits Gus, Geoff, Griffon, Miles, Ryan, Michael, and Dungeon Master Frank are in the city of Jackal Heart. Avoiding getting involved in gang activity, the team has split up to shop for new digs to blend in. \n\n\n\nWhat could go wrong? Everything of course! ","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ea1fdc6-013c-4e09-8387-e9896ef0e87a/sm/2013912-1476389125079-HH19_-_THUMB.jpg","duration":6752,"publication_date":"2016-10-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-72","changefreq":"weekly","video":[{"title":"2016:E337 - Let's Watch - Five Nights at Freddy's: Sister Location (Part 2)","description":"Hey sista, go sista, soul sista, flow sista! Hey sista, go sista, soul sista, go sista","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c963d610-fa3f-4080-9495-92120bd80bd5/sm/834020-1477497095272-sister_location_thumb_v2.3_1024.jpg","duration":1777,"publication_date":"2016-10-13T18:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-229-chinese-mythology","changefreq":"weekly","video":[{"title":"2016:E229 - Minecraft – Episode 229 – Chinese Mythology","description":"The Achievement Hunter boys put on some festive outfits and check out Minecraft's new Chinese Mythology Mash-Up pack. Today, they're checking out all the great Chinese myths: dragons, monkey boys, Mulan, pandas, The Great Wall of China, Bruce Lee, more dragon, Panda Express, and global warming.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-229-chinese-mythology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f36c53b-aeef-4266-b7b0-14a43420f3fa/sm/2013912-1476372045937-Minecraft_ChineseMyth_v001.png","duration":2369,"publication_date":"2016-10-13T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-71","changefreq":"weekly","video":[{"title":"2016:E335 - Let's Watch - Five Nights at Freddy's: Sister Location (Part 1)","description":"Michael and Gavin get spooked in the new Five Nights at Freddy's game, Sister Location.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92b5761b-8f00-49eb-94d1-90028501f8e2/sm/2013912-1476303807299-LW_Sisters_Theme_Part_1_Thumb.jpg","duration":1869,"publication_date":"2016-10-12T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-mafia-3-collector-s-edition-unboxing","changefreq":"weekly","video":[{"title":"2016:E124 - Mafia 3 Collector's Edition Unboxing","description":"Jack had a very special gift waiting for him when he got back from Let's Play Live, courtesy of 2K Games.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-mafia-3-collector-s-edition-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aaa5a86-f958-4f81-af92-9c8a9d0dd2a8/sm/2013912-1476220144951-Unboxing.jpg","duration":257,"publication_date":"2016-10-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-destiny-wrath-of-the-machine-raid-part-2","changefreq":"weekly","video":[{"title":"2016:E334 - Let's Play – Destiny: Wrath of the Machine Raid Part 2","description":"The Achievement Hunter Boys are ready to keep plowing through Destiny's Wrath of the Machine raid. Vosik, the Archon Priest is a big old pile of dead alien. Now it's time for our favorite guardians to take on the Siege Engine. Also, a fuckton of pits. Honestly, those pits may be even more dangerous than the 100 foot tall death machine.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-destiny-wrath-of-the-machine-raid-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/258802e0-abd7-431c-8a16-6dc78e9ba8ef/sm/1104396-1476228692550-destinyraid2.jpg","duration":1851,"publication_date":"2016-10-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-70","changefreq":"weekly","video":[{"title":"2016:E333 - Let's Watch - Cluster Truck","description":"What's cooler than jumping off of trucks? Jumping off of EXPLODING trucks! Ryan, Michael and Gavin try out the new indie hit, Cluster Truck. Spoiler: They die a lot.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/511e2b3d-7420-4132-88c4-6637716cfb43/sm/2013912-1476219731165-truck_thumb.jpg","duration":1997,"publication_date":"2016-10-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2016","changefreq":"weekly","video":[{"title":"2016:E10 - Cleaning Gavin's Desk","description":"Spick and span.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37f4be1e-249e-4a39-935e-4a7d0bb15cab/sm/2013912-1476204251454-Thumb_4.jpg","duration":186,"publication_date":"2016-10-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight-with-etika-and-lannan","changefreq":"weekly","video":[{"title":"2016:E332 - Dead by Daylight with Etika and Lannan ","description":"Michael, Gavin, and Ryan of are taking guests, Etika and Lannan \"Lazar Beam\" Eacott, to our favorite horror game landscape, Dead by Daylight. There's some hiding, some screaming, some betraying, and tons of murder.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight-with-etika-and-lannan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4019536-f4ff-48e5-8744-9f9b4db9e31d/sm/2013912-1476199974425-LP_DeadbyDaylight_wEtika-Lannen_THUMB.png","duration":2916,"publication_date":"2016-10-11T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-the-boxtrolls-2-ahwu-for-october-10-th-2016-338","changefreq":"weekly","video":[{"title":"2016:E44 - The Boxtrolls 2 - AHWU for October 10th, 2016 (#338)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU \n\n\n\n\n\n\n\n\n\nGeoff, Jack, Michael, and Gavin are ready to bring you all the hip hoppinest news and hot fire new game releases you need to know about this week...just like they do every week. It's AHWU!\n\n\n\n\n\n\n\n\n\n\n\nLaika's a pretty rad company with all their sweet-ass stop motion animation stuff. But holy fuck does it take a long time to make those movies. Here at Achievement Hunter, we thought we'd help Laika out this week by making a sequel to The Boxtrolls. Certainly, we have plenty of boxes. And sure, Geoff can be the troll in this scenario.\n\n\n\n\n\n\n\n\n\n\n\nStep 1 - Put Geoff in a box. Step 2 - Put that box in a box. Step 3 - Record it for 90 minutes. Step 4 - Print it. Ship it. Boom. Done. Million dollars on the table.\n\n\n\n\n\n\n\n\n\n\n\nAchievement Hunter search for an animator! Check out the playlist of favorites below and let us know your favorites! https://www.youtube.com/playlist?list=PLmT7ugvfMqrZBVAKE6NRmAW4hZ3rnPq51\n\n\n\n\n\n\n\n\n\n\n\nVideo of the Week and Community Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-the-boxtrolls-2-ahwu-for-october-10-th-2016-338","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e108315d-6701-480b-9cac-6cc386326cb4/sm/2013912-1476134112012-ahwuu.jpg","duration":664,"publication_date":"2016-10-10T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-destiny-wrath-of-the-machine-raid-part-1","changefreq":"weekly","video":[{"title":"2016:E331 - Destiny: Wrath of the Machine Raid Part 1","description":"Geoff, Gavin, Michael, Jack, Ryan, and Jeremy are taking on the SIVA transformed Devil Splicers in Destiny Rise of Iron Raid: Wrath of the Machine. Will they be able to work together to defeat Vosik and The Archon Priest, and win all that sweet loot?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-destiny-wrath-of-the-machine-raid-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ed5e0e5-647f-45f6-84b8-1e841bda203e/sm/2013912-1476122176777-LP_Destiny-WrathRaid_PT1.jpg","duration":4189,"publication_date":"2016-10-10T17:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-destiny-reflection-playground","changefreq":"weekly","video":[{"title":"2016:E51 - Destiny - Reflection Playground","description":"In the never ending cosmos that is Destiny, guardians sometimes have to stop their never ending fight and just have some fun. The new Rise of Iron DLC has given them a unique way to do that. Let Matt and Trevor show you exactly what we mean.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-destiny-reflection-playground","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ef73efe-7c12-4145-8b20-c0554bdd277f/sm/1104396-1475898826825-joystick.jpg","duration":154,"publication_date":"2016-10-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-18","changefreq":"weekly","video":[{"title":"2016:E14 - Last Call #18","description":"The AH Crew sit down to talk about Michael’s pilot run in, Gavin’s lack of sleep, traveling internationally, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d8c9585-e1f4-4c65-acb3-60c195972d0c/sm/2013912-1475861594683-OFF45_-_PS_-_THUMB.jpg","duration":1354,"publication_date":"2016-10-09T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-outlast-2","changefreq":"weekly","video":[{"title":"2016:E20 - Outlast 2 Demo","description":"Michael and Gavin find themselves stranded on a farm with some questionable individuals. No wait, are they're at a school? Anyways, wherever they are things are about to get spooky and scary as the OG Play Pals check out the Outlast 2 demo!","player_loc":"https://roosterteeth.com/embed/play-pals-2016-outlast-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9da5828-b60a-468a-a49b-3cbddd225081/sm/2013912-1475878112208-PP_Outlast.png","duration":1343,"publication_date":"2016-10-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-offense-defense-with-steven-and-reina","changefreq":"weekly","video":[{"title":"2016:E330 - GTA V - Offense Defense with Steven and Reina (#6) ","description":"The AH Crew returns to Offense Defense with special guests, Steven Suptic and Reina Scully!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-offense-defense-with-steven-and-reina","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cdac8e2-602e-42e9-91d4-e466562d70ce/sm/2013912-1475877559748-thumb3.jpg","duration":2613,"publication_date":"2016-10-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-fleshlight-full-of-flubber-45","changefreq":"weekly","video":[{"title":"2016:E45 - Fleshlight Full of Flubber - #45","description":"The AH Crew sit down to talk about destroying Gavin’s stuff, flunking out, guilty pleasure TV shows, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired October 7, 2016 and is sponsored by Dollar Shave Club (http://bit.ly/2cujr4z) and JackThreads (http://bit.ly/2dO58Dr)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-fleshlight-full-of-flubber-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/987ef572-1e14-4cc8-9d03-affdf2ded86d/sm/2013912-1475861340182-OFF45_-_THUMB.jpg","duration":6475,"publication_date":"2016-10-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-18","changefreq":"weekly","video":[{"title":"2016:E9 - Post Show #18","description":"A look at some deleted scenes. Geoff gives the crew a hard time (again) syncing the cameras.  Plus fan art with a theme song. ","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa1b8b24-3b54-4a01-af14-7a73ff6ee433/sm/2013912-1475777580369-HH18_-_PS_-_THUMB_v2.jpg","duration":324,"publication_date":"2016-10-07T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-69","changefreq":"weekly","video":[{"title":"2016:E329 - Let's Watch - Mafia 3","description":"Bayou in the streets. Bayou in the sheets. Matt, Jeremy, and Trevor are taking a trip to New Orleans in Mafia 3. They're ready to drive, shoot, loot, and feed everybody they can to the gators.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30b5af59-b4d2-4461-af2d-9eb7aef53406/sm/2013912-1475854427161-LW_Mafia_3_Thumb_v001.png","duration":2916,"publication_date":"2016-10-07T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-18","changefreq":"weekly","video":[{"title":"2016:E18 - Episode 18","description":"Heroes and Halfwits Gus, Geoff, Griffon, Miles, Ryan, Michael, and Dungeon Master Frank are out of the cave, out of the sewers, and into the slums of Jackal Heart.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c739e66-164b-48da-aa51-4fd095d45c36/sm/2013912-1475777340046-HH18_-_THUMB.jpg","duration":4909,"publication_date":"2016-10-06T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-228-pixelmon-part-4-the-great-suck-off","changefreq":"weekly","video":[{"title":"2016:E328 - Minecraft – Episode 228 – Pixelmon Part 4: The Great Suck-Off","description":"The Achievement Hunter crew is back to continue their quest of becoming the greatest Pokemon masters in all of AHto. This week, our heroes actually attempt to build the trading machine that they only pretended to try building last week. Meanwhile, Gavin contemplates the fine art of penis sucking, and Geoff decides to see if there is a drunken master style of Pokemon training.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-228-pixelmon-part-4-the-great-suck-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d35066be-f87a-4e89-84e5-05b08228702c/sm/2013912-1475767862148-MC_228_pixelmon_Thumb.jpg","duration":2862,"publication_date":"2016-10-06T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-68","changefreq":"weekly","video":[{"title":"2016:E327 - Let's Watch - Worms W.M.D. - Campaign Part 9","description":"As Ryan's playthrough of the Worms W.M.D. campaign continues, the crew must protect Michael's special worm from a team of highly dangerous incompetents: themselves.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce1bf830-a198-4785-b8b9-7b5e91426a87/sm/2013912-1475705172410-LW_worms_WMD_campaign_part9_thumb.jpg","duration":2522,"publication_date":"2016-10-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-gears-of-war-4-xbox-one-unboxing","changefreq":"weekly","video":[{"title":"2016:E122 - Gears of War 4 Xbox One Unboxing","description":"All four of the Achievement Hunters just received a very special surprise gift! Jeremy, Geoff, Gavin, and Jack couldn't be happier.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-gears-of-war-4-xbox-one-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00248a62-1967-401b-906d-a8ce1ec65eb0/sm/2013912-1475679761003-gears4_unboxing_thumb.jpg","duration":269,"publication_date":"2016-10-05T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-minecraft-arrow-wall","changefreq":"weekly","video":[{"title":"2016:E50 - Minecraft – Arrow Wall","description":"Matt's whipped up another Things to Do in Minecraft, where climbers must knock archers off the tallest wall Achievement Hunter has ever seen.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-minecraft-arrow-wall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0277a882-728d-4b8d-be0a-115fdecd536e/sm/2013912-1475618855242-TTD_Minecraft_ArrowWall.jpg","duration":880,"publication_date":"2016-10-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-g-m-o-d-obj-hunt-part-3","changefreq":"weekly","video":[{"title":"2016:E326 - GMOD: Obj Hunt Part 2","description":"It's prop time. It's hunter time. But this ain't no Prop Hunt. This is GMOD: Obj Hunt - a totally totally different not at all the same as Prop Hunt game. It's a three-on-three showdown to see if hiding will be enough to keep from being gunned down, blown up, or crowbar smacked to death! Watch in amazement as your favorite Achievement Hunter boys turn into so many different things before your very eyes - bottles, garbage cans, cars, horrible baby dolls, and sometimes even nothing at all!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-g-m-o-d-obj-hunt-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c843626d-831a-4c74-ac3e-ccbe1bf3e797/sm/2013912-1475621762768-ob3.jpg","duration":2460,"publication_date":"2016-10-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-party-8-shy-guy-s-perplex-express","changefreq":"weekly","video":[{"title":"2016:E325 - Mario Party 8: Shy Guy's Perplex Express ","description":"Gavin, Michael, and Jeremy teach Jack the greatness that is Mario Party 8: Shy Guy's Perplex Express. Don't be surprised to see the famous \"luck of the Jones,\" mysterious shirt switching, and unexpected guest appearances.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-party-8-shy-guy-s-perplex-express","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/551450da-6b37-4064-aaa2-6537fd761046/sm/2013912-1475602154305-MarioParty8-ShyGuyExpress_THUMB.png","duration":4680,"publication_date":"2016-10-04T17:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-red-rover","changefreq":"weekly","video":[{"title":"2016:E49 - Halo 5 - Red Rover","description":"Red rover, red rover, send Michael right over! Get ready for another Things to do in Halo 5. The guys get to play a classic children's party game with a slight twist. Rather than running through each other's arms, they'll be running each other over with multi-ton death machines! Fun for all ages!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-red-rover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/466d65a2-a2fd-4dec-8a6d-47de6dc26a4e/sm/2013912-1475272689270-halo.jpg","duration":400,"publication_date":"2016-10-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-achievement-hunter-leekly-update-ahwu-for-october-3-rd-2016-337","changefreq":"weekly","video":[{"title":"2016:E43 - Achievement Hunter Leekly Update - AHWU for October 3rd, 2016 (#337)","description":"Jack and Geoff are out somewhere across the somewhere, so Michael and Jeremy are ready to bringing you all the game releases and Jack-i-fied news stories your brain can handle this Monday. \n\n\n\n\n\nAww here it goes\n\n\n\n\n\n\n\nEverybody out there go run and tellYour homeboys and home girls it's time for Kleenan, no KelThey mispronouncing this show, AHLUSo add in that L, fuck the double U.Now Michael's into somethingIt's fun and you don't wanna miss itIt's Little J, shortest man in two block radiusMichael and J or should I say L and LichaelBut you gotta watch Kleenan 'cozKleenan be schemingWith a plan or a plotTo make L tippy-topBut it's kinda in the middle'Coz the H is what oughtThis ain't the Haus of Fun or Elyse Willems mysteryIt's just Kleenan adding Ls in your vicinityLike llama and linguine or pisa tower leanyWhen really just needing H like in HoudiniKleenan's in trouble\n\n\n\n\n\n\n\nAww here goesA-ch-ch-ch-ch-ch-ieve-ment-hunt\n\n\n\n\n\n\n\nDon't forget to buy tickets to Let's Play Live in Fathom Theaters for October 8th. http://fathomevents.com/event/lets-play-live\n\n\n\n\n\n\n\n\n\nAchievement Hunter's search for an animator! Find details over here: http://roosterteeth.com/post/51281014\n\n\n\n\n\n\n\nVideo of the Week and Community Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-achievement-hunter-leekly-update-ahwu-for-october-3-rd-2016-337","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b765d3bf-582e-4570-b8fb-405b9146dd0e/sm/2013912-1475531155617-ahhwy.jpg","duration":559,"publication_date":"2016-10-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-67","changefreq":"weekly","video":[{"title":"2016:E324 - Let's Watch - Haydee","description":"Ryan helps a strong, confident and busty woman android through an elaborate testing facility. ","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9976f75-30cc-4337-aa15-2fb58e37a409/sm/2013912-1475520661522-LW_Haydee_THUMB.png","duration":1946,"publication_date":"2016-10-03T18:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-half-dead","changefreq":"weekly","video":[{"title":"2016:E322 - Half Dead","description":"The AH crew have two shoes, one Gavin, and a myriad of rooms with all kinds of goodies. If spikes, lasers, and flamethrowers are your kind of thing, this is The Cube for you. Just make sure to hold onto your shoes.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-half-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe2f02de-dc72-4a2d-9d63-a90c306cb4e1/sm/2013912-1475265120089-LP_HalfDead_THUMB1.png","duration":2050,"publication_date":"2016-10-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-17","changefreq":"weekly","video":[{"title":"2016:E13 - Last Call #17","description":"The AH Crew stand up to talk about Destiny raiding, liquor, mistrust, and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4a12af4-88aa-4c93-a604-fe1b6e9ef000/sm/2013912-1475273967031-OFF44_-_PS_-_THUMB.jpg","duration":1270,"publication_date":"2016-10-02T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/batman-delayed-metal-gear-fan-remake-officially-approved-and-sgcs-mega-guest-hard-news-060314","changefreq":"weekly","video":[{"title":"S1:E671 - Batman delayed, Metal Gear fan remake officially approved, and SGC's MEGA guest! | Hard News 06/03/14","description":"Today on Hard News, Batman delayed, Metal Gear fan remake officially approved, and SGC's MEGA guest!\r\nwww.sgconvention.com/tickets\r\n\t\r\n\tMetal Gear fan remake officially approved - http://www.screwattack.com/news/konami-gives-its-blessing-fan-remake-original-msx-metal-gear\r\n\tBatman: Arkham Knight delayed - http://www.screwattack.com/video/Arkham-Knight-is-delayed-into-2015-but-the-Batmobile-is-a-tank-so-that-makes-up-for-it-12839154\r\n\tCrytek's HUNT: Horrors of the Gilded Age - http://www.screwattack.com/video/The-team-behind-the-Darksiders-franchise-reveals-their-newest-IP-HUNT-Horrors-of-the-Gilded-Age--12839153\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/batman-delayed-metal-gear-fan-remake-officially-approved-and-sgcs-mega-guest-hard-news-060314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6566228-cb57-4649-937f-e4e2369c3b7d/sm/video_thumbnail_12839177.jpg","duration":211,"publication_date":"2014-06-03T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-worst-sony-e3-moments-top-5","changefreq":"weekly","video":[{"title":"S1:E120 - Top 5 WORST Sony E3 Moments! | Top 5","description":"It seems that for every high point in Sony's E3 past, they've hit just as many lows.  These five are their least proud moments!","player_loc":"https://roosterteeth.com/embed/top-5-worst-sony-e3-moments-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a41af723-f14e-41e6-a0bf-7843671f25bb/sm/video_thumbnail_12838962.png","duration":258,"publication_date":"2014-06-02T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-best-sony-e3-moments-top-5","changefreq":"weekly","video":[{"title":"S1:E119 - Top 5 BEST Sony E3 Moments! | Top 5","description":"You can count on Sony to blow us away at the industry's biggest trade show!  These are the top five moments when they absolutely killed it.","player_loc":"https://roosterteeth.com/embed/top-5-best-sony-e3-moments-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f58a8d4c-081c-4a0a-aa4d-f1bdd976168e/sm/video_thumbnail_12838961.png","duration":314,"publication_date":"2014-06-02T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mortal-kombat-10-announced-homefront-the-revolution-ncaa-to-pay-athletes-hard-news-060214","changefreq":"weekly","video":[{"title":"S1:E670 - Mortal Kombat 10 announced, Homefront The Revolution, NCAA to pay athletes | Hard News 06/02/14","description":"Today on Hard News, Mortal Kombat 10 announced, Homefront The Revolution, NCAA to pay athletes.\r\n\t\r\n\tNCAA to pay athletes - http://www.screwattack.com/news/ea-going-be-forced-pay-college-athletes-ncaa-titles\r\n\tHomefront The Revolution - http://www.screwattack.com/news/crytek-turns-leek-announcement\r\n\tMortal Kombat 10 announced - http://www.screwattack.com/video/Mortal-Kombat-Xs-trailer-is-officially-here-12839009\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/mortal-kombat-10-announced-homefront-the-revolution-ncaa-to-pay-athletes-hard-news-060214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0942cad5-b519-4c34-b1c8-f951689bcf28/sm/video_thumbnail_12839089.jpg","duration":218,"publication_date":"2014-06-02T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mortal-kombat-x-what-we-think-we-know","changefreq":"weekly","video":[{"title":"S1:E755 - Mortal Kombat X: What we THINK we know","description":"After watching the trailer for Mortal Kombat X a million times, we think we've picked up on a few things to expect from the latest MK.","player_loc":"https://roosterteeth.com/embed/mortal-kombat-x-what-we-think-we-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c48a2308-da39-456a-bca0-49c5b2bbefaa/sm/video_thumbnail_12839081.jpg","duration":381,"publication_date":"2014-06-02T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-final-fantasy-characters-ever-the-best-ever","changefreq":"weekly","video":[{"title":"S1:E51 - The Worst Final Fantasy Characters EVER! | The Best EVER!","description":"We've lost count of how many Final Fantasy games there are and how many characters are in them. But, in that mass of people, these are the ones we think are the WORST Final Fantasy characters EVER!\r\nWhat's your worst EVER!? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-worst-final-fantasy-characters-ever-the-best-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e4f2c54-0002-4157-a03e-fb7e4f77d586/sm/video_thumbnail_12838823.png","duration":338,"publication_date":"2014-05-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nothings-changed-at-screwattack-nothing-at-all","changefreq":"weekly","video":[{"title":"S1:E754 - Nothing's Changed at ScrewAttack...Nothing At All","description":"Since we've been acquired by Fullscreen there have been a lot of questions about all the changes, but we're here to tell you nothing's changed at all!","player_loc":"https://roosterteeth.com/embed/nothings-changed-at-screwattack-nothing-at-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/134b6ba9-3362-4e72-aa3d-22d5b9d1c5a7/sm/video_thumbnail_12838783.png","duration":85,"publication_date":"2014-05-31T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-hate-godzilla-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E24 - 16 Reasons we HATE Godzilla with Evil Craig!","description":"Damn overgrown lizard! Stop wrecking my cities!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-hate-godzilla-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95976dae-9bc7-413e-af88-cd80c617d975/sm/video_thumbnail_12838736.jpg","duration":114,"publication_date":"2014-05-30T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-love-godzilla","changefreq":"weekly","video":[{"title":"S1:E40 - 17 Reasons we LOVE Godzilla!","description":"Behold! The King of Monsters, Godzilla!","player_loc":"https://roosterteeth.com/embed/17-reasons-we-love-godzilla","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf8f70fd-d098-4b1c-affe-e2fcd505626e/sm/video_thumbnail_12838735.jpg","duration":75,"publication_date":"2014-05-30T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendos-gamecube-controller-adapter-mighty-no-9-on-track-and-harmonix-restructures-hard-news-053014","changefreq":"weekly","video":[{"title":"S1:E669 - Nintendo's Gamecube controller adapter, Mighty No. 9 on track, and Harmonix restructures | Hard News 05/30/14","description":"Today on Hard News, Nintendo's Gamecube controller adapter, Mighty No. 9 on track, and Harmonix restructures.\r\n\t\r\n\tNintendo's Gamecube controller adapter - http://www.screwattack.com/news/nintendo-quietly-reveals-there-will-be-gamecube-multi-tap-wii-u\r\n\tHarmonix restructures - http://www.screwattack.com/news/during-restructuring-music-game-developer-harmonix-hit-layoffs-music-fps-chroma-gets-set-back\r\n\tMighty No. 9 on track - http://www.screwattack.com/video/New-gameplay-footage-shows-off-Mighty-No-2-and-Mighty-No-5s-stages--12838730\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendos-gamecube-controller-adapter-mighty-no-9-on-track-and-harmonix-restructures-hard-news-053014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62b7b3a8-31e1-4e57-b170-c00512c1f62c/sm/video_thumbnail_12838772.jpg","duration":193,"publication_date":"2014-05-30T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-partners-with-mercedes-new-mortal-kombat-and-bethesdas-battlecry-hard-news-052914","changefreq":"weekly","video":[{"title":"S1:E668 - Nintendo partners with Mercedes, new Mortal Kombat, and Bethesda's Battlecry | Hard News 05/29/14","description":"Nintendo partners with Mercedes, new Mortal Kombat, and Bethesda's Battlecry.\r\n\t\r\n\tBethesda's Battlecry - http://www.screwattack.com/news/bethesda-reveals-new-title-battlecry-upcoming-f2p-game-focuses-online-multiplayer-combat\r\n\tNew Mortal Kombat - http://www.screwattack.com/news/rumor-reveal-mortal-kombat-10-could-be-just-pitfall-away\r\n\tNintendo partners with Mercedes - http://www.screwattack.com/video/Mario-Kart-8-and-the-Mercedes-GLA-will-feature-each-other-in-a-crossover-of-epic-proportions-12838598\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendo-partners-with-mercedes-new-mortal-kombat-and-bethesdas-battlecry-hard-news-052914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56f66e17-e091-4c16-86f3-19b15a3854c5/sm/video_thumbnail_12838658.jpg","duration":186,"publication_date":"2014-05-29T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-youtube-affiliates-the-order-delayed-and-new-battlefield-leaked-hard-news-052814","changefreq":"weekly","video":[{"title":"S1:E667 - Nintendo YouTube affiliates, The Order delayed, and new Battlefield leaked | Hard News 05/28/14","description":"Today on Hard News, Nintendo YouTube affiliates, The Order: 1886 delayed to 2015, and a new Battlefield game leaked.\r\n\t\r\n\tThe Order: 1886 delayed to 2015 - http://www.screwattack.com/news/order-1886-gets-delayed-until-2015-new-details-and-trailer-emerge\r\n\tNew Battlefield game leaked - http://www.screwattack.com/news/internal-trailer-has-leaked-next-battlefield-being-developed-dice-and-visceral-games\r\n\tNintendo YouTube affiliates - http://www.screwattack.com/video/Nintendo-Affiliate-Network--Super-Mario-World--12838454\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendo-youtube-affiliates-the-order-delayed-and-new-battlefield-leaked-hard-news-052814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee889c84-21bb-4e3b-879d-77c3fa875eaf/sm/video_thumbnail_12838528.jpg","duration":195,"publication_date":"2014-05-28T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heres-a-sneak-peak-at-what-advantage-users-saw-and-stuff-they-havent-yet-over-the-past-month","changefreq":"weekly","video":[{"title":"S1:E753 - Here's a sneak peak at what Advantage users saw (and stuff they haven't yet) over the past month.","description":"Hey g1's!  We just increased our frequency in all-original Advantage Content by over ONE THOUSAND PERCENT since the beginning of this May, and its only the very first step in our mission to make our supporter membership program the very best on the internet!\r\nWe thank you g1's for being the best community in the world, and can't wait to share what plans we have to spoil you in the months that lie ahead.","player_loc":"https://roosterteeth.com/embed/heres-a-sneak-peak-at-what-advantage-users-saw-and-stuff-they-havent-yet-over-the-past-month","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f3b7a1c-fb1c-4e6b-bfe0-a5efffda7c00/sm/video_thumbnail_12838519.JPG","duration":63,"publication_date":"2014-05-28T13:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ecco-the-dolphin-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E429 - Ecco the Dolphin | Video Game Vault","description":"S1:E429 - Ecco the Dolphin | Video Game Vault","player_loc":"https://roosterteeth.com/embed/ecco-the-dolphin-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a79fddb-a969-4701-9086-0399aaecdac0/sm/video_thumbnail_12838518.jpg","duration":166,"publication_date":"2014-05-28T13:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-bros-nfc-star-wars-game-cancelled-left-4-dead-arcade-dirty-bomb-hard-news-052714","changefreq":"weekly","video":[{"title":"S1:E666 - Smash Bros NFC, Star Wars game cancelled, Left 4 Dead arcade, Dirty Bomb | Hard News 05/27/14","description":"Today on Hard News, Smash Bros to incorporate NFC technology, Star Wars game cancelled, Left 4 Dead Japanese arcades, Splash Damage's Dirty Bomb.\r\n\t\r\n\tLeft 4 Dead Japanese arcades - http://www.screwattack.com/news/japanese-cast-left-4-dead-survivors-revealed\r\n\tSplash Damage's Dirty Bomb - http://www.screwattack.com/news/splash-damages-extraction-changes-its-name-back-dirty-bomb-after-realizing-mistakes-were-made\r\n\tStar Wars game cancelled - http://www.screwattack.com/news/star-wars-attack-squadrons-crashes-cancelation\r\n\tSmash Bros to incorporate NFC technology - http://www.screwattack.com/news/nintendo-nfc-figures-likely-be-compatible-smash-bros-wii-u\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/smash-bros-nfc-star-wars-game-cancelled-left-4-dead-arcade-dirty-bomb-hard-news-052714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2bd43f3-bee4-4a13-8cf8-c3b6b4cc51da/sm/video_thumbnail_12838419.jpg","duration":201,"publication_date":"2014-05-27T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/want-to-see-how-we-voice-a-death-battle-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E752 - Want to see how we voice a DEATH BATTLE!? | Exclusive Advantage Content","description":"This video is exclusive to Advantage Members.  If you aren't an Advantage Member, go here and take part in the best way to support ScrewAttack!","player_loc":"https://roosterteeth.com/embed/want-to-see-how-we-voice-a-death-battle-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d82465b-ba1f-4491-9e48-c0c0e8c2d5fe/sm/video_thumbnail_12838393.jpg","duration":569,"publication_date":"2014-05-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hypothetically-who-would-krillin-fight-in-a-death-battle-wiz-weighs-in-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E751 - [Hypothetically] Who would Krillin fight in a DEATH BATTLE!? Wiz weighs in! | Exclusive Advantage Content","description":"S1:E751 - [Hypothetically] Who would Krillin fight in a DEATH BATTLE!? Wiz weighs in! | Exclusive Advantage Content","player_loc":"https://roosterteeth.com/embed/hypothetically-who-would-krillin-fight-in-a-death-battle-wiz-weighs-in-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f5a5341-5aa8-469d-b4a7-2bf52666819d/sm/video_thumbnail_12838023.png","duration":363,"publication_date":"2014-05-24T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-world-of-tanks-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E23 - 13 Reasons We HATE World of Tanks with Evil Craig!","description":"I'ma tank, bitches!\r\n\t\r\n\tThanks to Tom the Ironman and Clayvman for helping to put this video together!\r\n\thttp://www.twitch.tv/tomtheironman\r\n\thttp://www.titch.tv/clayvman","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-world-of-tanks-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a00b703-69f1-4e37-a65c-57aecf057054/sm/video_thumbnail_12837725.jpg","duration":78,"publication_date":"2014-05-21T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sailor-moon-returns-nintendo-defeats-patent-troll-and-amplitude-kickstarter-hard-news-052014","changefreq":"weekly","video":[{"title":"S1:E665 - Sailor Moon returns! Nintendo defeats patent troll, and Amplitude KickStarter | Hard News 05/20/14","description":"Today on Hard News, Sailor Moon returns! Nintendo defeats patent troll, and Amplitude KickStarter.\r\n\t\r\n\tAmplitude KickStarter - http://www.screwattack.com/video/Harmonix-Amplitude-HD-Kickstarter-gets-a-7500-boost-from-Insomniac-CEO-Ted-Price-12837677\r\n\tSailor Moon returns! - http://www.screwattack.com/video/Sailor-Moon-is-returing-to-pop-culture-via-Hulu-and-VIZ-Media-12837679\r\n\tNintendo defeats patent troll - http://www.screwattack.com/news/nintendo-has-once-again-defeated-patent-troll-and-saved-itself-hefty-fee\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/sailor-moon-returns-nintendo-defeats-patent-troll-and-amplitude-kickstarter-hard-news-052014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60747efe-cdf2-4d65-bb67-d06f5b1859d8/sm/video_thumbnail_12837715.jpg","duration":184,"publication_date":"2014-05-20T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/14-reasons-we-love-world-of-tanks","changefreq":"weekly","video":[{"title":"S1:E41 - 14 Reasons We LOVE World of Tanks!","description":"It's the 14 Reasons We LOVE World of Tanks!\r\n\r\nThanks to Tom the Ironman and Clayvman for helping to put this video together!\r\nwww.twitch.tv/tomtheironman\r\nwww.titch.tv/clayvman","player_loc":"https://roosterteeth.com/embed/14-reasons-we-love-world-of-tanks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8761bdcc-baf0-4580-b3ef-030cb653f7af/sm/video_thumbnail_12837678.jpg","duration":54,"publication_date":"2014-05-20T09:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-entire-crews-top-3-jean-claude-van-damme-films-advantage-content","changefreq":"weekly","video":[{"title":"S1:E750 - The entire crew's Top 3 Jean Claude Van Damme Films | Advantage Content","description":"Each crew member counts down their top 3 JCVD movies of all time.  What are your favorites?","player_loc":"https://roosterteeth.com/embed/the-entire-crews-top-3-jean-claude-van-damme-films-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b8e5edb-7a49-47b2-ab6f-e9a51572cb57/sm/video_thumbnail_12837629.png","duration":413,"publication_date":"2014-05-20T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-soldiers-in-gaming-top-5","changefreq":"weekly","video":[{"title":"S1:E118 - Top 5 Soldiers in Gaming! | Top 5","description":"Even the coolest video game heroes don't act alone.  Here's to the Top 5 greatest gaming soldiers!  ","player_loc":"https://roosterteeth.com/embed/top-5-soldiers-in-gaming-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/153d2fe6-adb3-4878-8488-8d194a5b8838/sm/video_thumbnail_12837434.png","duration":346,"publication_date":"2014-05-19T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-halo-collection-apple-bans-the-fap-app-and-youtube-to-acquire-twitch-tv-hard-news-051914","changefreq":"weekly","video":[{"title":"S1:E664 - A Halo collection, Apple bans the fap app, and YouTube to acquire Twitch.tv? | Hard News 05/19/14","description":"Today on Hard News, a possible Halo Collection, Apple bans the app that teaches ladies how to fap, and YouTube could be acquiring Twitch.tv!\r\n \r\nThe Master Chief Collection - http://www.screwattack.com/news/rumor-halo-master-chief-collection-brings-halo-ce-4-xbox-one-year\r\nApple bans HappyPlayTime - http://www.screwattack.com/news/game-about-female-masturbation-has-been-rejected-apples-app-store\r\nYouTube to acquire Twitch? - http://www.screwattack.com/news/rumor-it-looks-youtube-will-soon-be-buying-twitch-1-billion-cash","player_loc":"https://roosterteeth.com/embed/a-halo-collection-apple-bans-the-fap-app-and-youtube-to-acquire-twitch-tv-hard-news-051914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7682d018-ff39-4ccd-8967-2efac2711566/sm/video_thumbnail_12837621.png","duration":185,"publication_date":"2014-05-19T13:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-classic-first-person-shooter-ever-the-best-ever","changefreq":"weekly","video":[{"title":"S1:E50 - The Best Classic First Person Shooter EVER! | The Best EVER","description":"There are soooooo many games a person could pick to say is the best classic FPS EVER, but which ones really deserve that title? If it was on or before the PS2, Dreamcast, or original Xbox, it just might be our best EVER!","player_loc":"https://roosterteeth.com/embed/the-best-classic-first-person-shooter-ever-the-best-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d62762ea-d2f0-4b43-9b3c-06a31da79b61/sm/video_thumbnail_12837234.png","duration":295,"publication_date":"2014-05-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-9","changefreq":"weekly","video":[{"title":"S2:E9 - Fulgore VS Sektor","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a8b0763-2c03-46d6-86d3-9fcd9aed216c/sm/video_thumbnail_12837072.jpg","duration":734,"publication_date":"2014-05-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nick-reads-hateful-youtube-comments-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E749 - Nick reads hateful Youtube comments | Exclusive Advantage Content","description":"Nick recently gave Mario Kart 8 a \"Good\" 7 out of 10, and the internet hates his stinkin' guts for it.  Here's what Nick has to say in return.","player_loc":"https://roosterteeth.com/embed/nick-reads-hateful-youtube-comments-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80c81e40-a897-4488-8d5c-1655bc198055/sm/video_thumbnail_12837143.png","duration":524,"publication_date":"2014-05-17T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/halo-5-announced-farcry-4-revealed-and-shadow-fall-dlc-hard-news-051614","changefreq":"weekly","video":[{"title":"S1:E663 - Halo 5 announced, FarCry 4 revealed, and Shadow Fall DLC | Hard News 05/16/14","description":"Today on Hard News, Halo 5 announced, FarCry 4 revealed, and Shadow Fall DLC.\r\n\t\r\n\tFarCry 4 revealed - http://www.screwattack.com/news/ubisoft-announces-far-cry-4-and-slates-it-november-release\r\n\tShadow Fall DLC - http://www.screwattack.com/news/guerrilla-games-set-release-previously-announced-killzone-shadow-fall-co-op-expansion\r\n\tHalo 5 announced - http://www.screwattack.com/news/microsoft-announces-halo-5-guardians-launch-fall-2015-xbox-one\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/halo-5-announced-farcry-4-revealed-and-shadow-fall-dlc-hard-news-051614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2383c6ad-495b-43e3-b642-c7b62470a15b/sm/video_thumbnail_12837110.png","duration":187,"publication_date":"2014-05-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/flappy-bird-will-return-3d-realms-new-game-bombshell-phillips-blocks-wii-u-sales-in-usa-hard-news-051514","changefreq":"weekly","video":[{"title":"S1:E662 - Flappy Bird will return, 3D Realms new game Bombshell, Phillips blocks Wii U sales in USA | Hard News 05/15/14","description":"Today on Hard News, Flappy Bird will return, 3D Realms new game Bombshell, Phillips blocks Wii U sales in USA.\r\n\t\r\n\tFlappy Bird will return - http://www.screwattack.com/news/flappy-bird-will-fly-again-august-and-time-hes-bringing-his-flock-him\r\n\tPhillips blocks Wii U sales in USA - http://www.screwattack.com/news/philips-threatens-block-us-wii-u-sales-through-patent-infringement-lawsuit\r\n\t3D Realms new game Bombshell - http://www.screwattack.com/video/Interceptor-Entertainment-and-3D-Realms-presents-Bombshell-for-PC-and-PS4-12836956\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/flappy-bird-will-return-3d-realms-new-game-bombshell-phillips-blocks-wii-u-sales-in-usa-hard-news-051514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b9e8db1-0bfa-44d5-b1fb-fdc9cb0e226b/sm/video_thumbnail_12836998.png","duration":186,"publication_date":"2014-05-15T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/from-\"bombshell\"-to-bombshell-random-awesomeness","changefreq":"weekly","video":[{"title":"S1:E748 - From \"Bombshell\" to BOMBSHELL! | Random Awesomeness","description":"More than just a pretty bionic arm, find out how Bombshell went from being Duke Nukem's pretty sidekick to being pretty badass at saving the president, the planet, and everything in between!","player_loc":"https://roosterteeth.com/embed/from-\"bombshell\"-to-bombshell-random-awesomeness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/620fb2e0-a55b-46f7-9a2f-7a81b6e3f950/sm/video_thumbnail_12836993.png","duration":342,"publication_date":"2014-05-15T14:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-mario-kart-64","changefreq":"weekly","video":[{"title":"S1:E42 - 16 Reasons We LOVE Mario Kart 64!","description":"It's the 16 Reasons We LOVE Mario Kart 64!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-mario-kart-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90a4f87a-7818-4241-b201-d3c34402a857/sm/video_thumbnail_12836856.png","duration":66,"publication_date":"2014-05-15T08:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-mario-kart-64-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E22 - 13 Reasons We HATE Mario Kart 64 with Evil Craig!","description":"It's the 13 Reasons Evil Craig HATES Mario Kart 64!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-mario-kart-64-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/906800ef-8423-45e5-86a8-ce0e7e5eb2b6/sm/video_thumbnail_12836857.jpg","duration":78,"publication_date":"2014-05-15T08:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/whats-a-penis-snake-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E747 - What's a \"penis snake?\" | Exclusive Advantage Content","description":"In a world of the unknown . . . much will be revealed.","player_loc":"https://roosterteeth.com/embed/whats-a-penis-snake-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/464fd27e-e241-4404-8476-08ad4e819cba/sm/video_thumbnail_12836894.png","duration":14,"publication_date":"2014-05-14T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-rockstar-game-in-2015-14-day-humble-bundle-sale-and-xbox-gold-refunds-hard-news-051414","changefreq":"weekly","video":[{"title":"S1:E661 - New Rockstar game in 2015, 14 day Humble Bundle sale, and Xbox Gold refunds | Hard News 05/14/14","description":"Today on Hard News, New Rockstar game in 2015, 14 day Humble Bundle sale, and Xbox Gold refunds.\r\n\t\r\n\tNew Rockstar game in 2015 - http://www.screwattack.com/news/rockstar-should-have-game-xbox-one-and-ps4-april-2015\r\n\t14 day Humble Bundle sale - http://www.screwattack.com/video/For-the-next-two-weeks-theres-a-new-Humble-Bundle-onsale-every-day-12836888\r\n\tXbox Gold refunds - http://www.screwattack.com/news/microsoft-offers-refunds-xbox-live-not-kinect-xbox-one\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-rockstar-game-in-2015-14-day-humble-bundle-sale-and-xbox-gold-refunds-hard-news-051414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1793e895-ea0d-48c3-8d8c-f7087d3593e7/sm/video_thumbnail_12836896.png","duration":156,"publication_date":"2014-05-14T14:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/battletoads-double-dragon-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E428 - Battletoads & Double Dragon | Video Game Vault","description":"S1:E428 - Battletoads & Double Dragon | Video Game Vault","player_loc":"https://roosterteeth.com/embed/battletoads-double-dragon-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9ab37d3-bd4c-4e99-b5aa-f13f6109302a/sm/video_thumbnail_12836742.jpg","duration":133,"publication_date":"2014-05-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nick-and-chads-reactions-to-fighting-maximilian-in-3rd-strike-advantage-content","changefreq":"weekly","video":[{"title":"S1:E746 - Nick and Chad's reactions to fighting MAXIMILIAN in 3rd Strike | Advantage Content","description":"S1:E746 - Nick and Chad's reactions to fighting MAXIMILIAN in 3rd Strike | Advantage Content","player_loc":"https://roosterteeth.com/embed/nick-and-chads-reactions-to-fighting-maximilian-in-3rd-strike-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6a41be1-5f2d-47de-9904-900699263863/sm/video_thumbnail_12836777.png","duration":363,"publication_date":"2014-05-13T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-pokemon-game-and-movie-capcom-saves-your-favorites-and-kinect-less-xbox-one-hard-news-051314","changefreq":"weekly","video":[{"title":"S1:E660 - New Pokemon game and movie, Capcom saves your favorites, and Kinect-less Xbox One | Hard News 05/13/14","description":"Today on Hard News, new Pokemon game and movie, Capcom saves your favorites, and Kinect-less Xbox One.\r\n\t\r\n\tKinect-less Xbox One - http://www.screwattack.com/news/rumor-sources-within-microsoft-say-xbox-users-may-no-longer-need-gold-subscription-use-streamin\r\n\tCapcom saves your favorites - http://www.screwattack.com/news/capcom-will-not-allow-death-gamespy-ruin-online-multiplayer-third-strike-or-mvc-origins\r\n\tNew Pokemon game and movie - http://www.screwattack.com/news/theres-another-pokemon-game-coming-out-year-and-one-movie-tie\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-pokemon-game-and-movie-capcom-saves-your-favorites-and-kinect-less-xbox-one-hard-news-051314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/409aadf0-9832-475f-b5fb-2a55bc97f812/sm/video_thumbnail_12836771.png","duration":199,"publication_date":"2014-05-13T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ea-shuts-down-servers-darksiders-may-return-lgbtq-in-tomodachi-life-and-sims-4-hard-news-051214","changefreq":"weekly","video":[{"title":"S1:E659 - EA shuts down servers, Darksiders may return, LGBTQ in Tomodachi Life and Sims 4 | Hard News 05/12/14","description":"Today on Hard News, EA shuts down servers, Darksiders may return, LGBTQ in Tomodachi Life and Sims 4.\r\n\t\r\n\tLGBTQ community uset with Tomodachi Life - http://www.screwattack.com/news/nintendo-apologizes-tomodachi-lifes-lack-same-sex-relationship-options\r\n\tRussia rates Sims 4 18+ due to same sex relationships - http://www.screwattack.com/news/same-sex-relationships-amongst-other-things-causes-sims-4-receive-18-rating-russia-reportedly\r\n\tDarksiders may return - http://www.screwattack.com/news/former-vigil-games-creative-director-joe-mad-let-everyone-know-darkisders-not-dead\r\n\tEA shuts down servers - http://www.screwattack.com/news/gamespy-shutdown-causing-over-50-ea-titles-go-offline-end-june\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/ea-shuts-down-servers-darksiders-may-return-lgbtq-in-tomodachi-life-and-sims-4-hard-news-051214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a61d1c6f-ae1e-47a2-9706-c1da0cada45a/sm/video_thumbnail_12836675.png","duration":203,"publication_date":"2014-05-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-characters-that-were-ruined-top-5","changefreq":"weekly","video":[{"title":"S1:E117 - Top 5 Characters That Were Ruined! | Top 5","description":"In different ways, for different reasons, some characters just aren't what they used to be.","player_loc":"https://roosterteeth.com/embed/top-5-characters-that-were-ruined-top-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76218930-cf32-4f11-a17d-b0820cf27af1/sm/video_thumbnail_12836561.png","duration":341,"publication_date":"2014-05-12T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-s-a-penis-snake-exclusive-advantage-content","changefreq":"weekly","video":[{"title":"S1:E745 - What slushie flavor is each member of the ScrewAttack Crew? | Exclusive Advantage Content","description":"How well does Craig know the ScrewAttack crew?  Can he match a specific slushie flavor to each and every diverse member of the office?\r\nThis video is exclusive to Advantage members.  Not an Advantage member?  Get off your ass and sign up here now!","player_loc":"https://roosterteeth.com/embed/what-s-a-penis-snake-exclusive-advantage-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0832d1a7-b8e9-4d1a-b178-494c3b8cbe3b/sm/video_thumbnail_12836481.png","duration":644,"publication_date":"2014-05-11T08:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-controller-ever-the-best-ever","changefreq":"weekly","video":[{"title":"S1:E49 - The Worst Controller EVER! | The Best EVER!","description":"Every system had bad games, but a bad controller could ruin any game. These are our worst controllers EVER!","player_loc":"https://roosterteeth.com/embed/the-worst-controller-ever-the-best-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c4032ff-1166-4387-b335-afa0f39d60ed/sm/video_thumbnail_12836412.png","duration":341,"publication_date":"2014-05-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sams-worst-controller-ever","changefreq":"weekly","video":[{"title":"S1:E744 - Sam's Worst Controller EVER!","description":"Sam's worst ever controller was so bad, it was seemingly wiped off the internet entirely. Only this video's thumbnail and the video within exist as record of....The Loaf of Bread.","player_loc":"https://roosterteeth.com/embed/sams-worst-controller-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2560b28-07cd-4b10-be14-4c407bf16eb8/sm/video_thumbnail_12836413.png","duration":107,"publication_date":"2014-05-09T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unreal-tournament-returns-dying-light-delayed-and-no-release-date-for-bayonetta-2-hard-news-050914","changefreq":"weekly","video":[{"title":"S1:E658 - Unreal Tournament returns, Dying Light delayed, and no release date for Bayonetta 2 | Hard News 05/09/14","description":"Today on Hard News, Unreal Tournament returns, Dying Light delayed, and no release date for Bayonetta 2 or Hyrule Warriors.\r\nBuy AVGN Adventures! Follow the link and search \"AVGN Adventures\"\r\n\twww.humblebundle.com/store\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/unreal-tournament-returns-dying-light-delayed-and-no-release-date-for-bayonetta-2-hard-news-050914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7533b178-016b-4fa1-b010-f5833256a7db/sm/video_thumbnail_12836408.png","duration":228,"publication_date":"2014-05-09T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shaunterns-audition-to-be-a-death-battle-animator-advantage-exclusive-content","changefreq":"weekly","video":[{"title":"S1:E743 - Shaun(tern)'s audition to be a DEATH BATTLE! animator | Advantage-Exclusive Content","description":"Two years ago, I was a lowly intern at ScrewAttack.  My dream, however, was to be an animator for DEATH BATTLE! This was my audition . . . and then I was fired.  \r\n \r\nThis is merely some bite-sized Advantage content.  If you aren't an Advantage member, get off your ass and sign up here!","player_loc":"https://roosterteeth.com/embed/shaunterns-audition-to-be-a-death-battle-animator-advantage-exclusive-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c59fa559-8220-4a42-b20f-197067342dbe/sm/video_thumbnail_12836269.png","duration":25,"publication_date":"2014-05-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendos-nfc-figurines-elder-scrolls-delayed-for-console-and-strange-driveclub-deal-hard-news-050814","changefreq":"weekly","video":[{"title":"S1:E657 - Nintendo's NFC figurines, Elder Scrolls delayed for console, and strange Driveclub deal | Hard News 05/08/14","description":"Today on Hard News, Nintendo's NFC figurines, Elder Scrolls delayed for console, and strange Driveclub deal.\r\n\t\r\n\tStrange Driveclub deal - http://www.screwattack.com/video/Driveclub-digital-upgrade-requires-PlayStation-Plus-for-life-but-not-for-the-retail-release-12836248\r\n\tElder Scrolls delayed for console - http://www.screwattack.com/news/elder-scrolls-online-ps4-and-xbox-one-has-been-delayed-its-june-launch-6-months\r\n\tNintendo's NFC figurines - http://www.screwattack.com/news/nintendo-japan-outlines-its-plans-nfc-figurines-during-investor-call\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendos-nfc-figurines-elder-scrolls-delayed-for-console-and-strange-driveclub-deal-hard-news-050814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a3f7c2f-e3c9-47f6-8bce-1c4d4b40caca/sm/video_thumbnail_12836263.png","duration":213,"publication_date":"2014-05-08T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/22-reasons-we-love-call-of-duty","changefreq":"weekly","video":[{"title":"S1:E43 - 22 Reasons We LOVE Call of Duty!","description":"It's the 22 Reasons We LOVE the Call of Duty franchise!","player_loc":"https://roosterteeth.com/embed/22-reasons-we-love-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18ea583e-42f0-4296-858b-4a6c7a7814fb/sm/video_thumbnail_12836125.jpg","duration":76,"publication_date":"2014-05-08T07:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-hate-call-of-duty-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E21 - 17 Reasons We HATE Call of Duty with Evil Craig!","description":"It's the 17 Reasons Evil Craig HATES the Call of Duty franchise!","player_loc":"https://roosterteeth.com/embed/17-reasons-we-hate-call-of-duty-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fec2e95b-581a-4ba6-963c-2b6b31c0116b/sm/video_thumbnail_12836126.jpg","duration":89,"publication_date":"2014-05-08T07:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-vs-ben-time-for-screwattack-jam","changefreq":"weekly","video":[{"title":"S1:E742 - Craig VS Ben - Time for ScrewAttack Jam!","description":"Ben and Craig are the biggest basketball players in the office, or, at least were at one point in their respective lives. Now they're taking it to an elemntary school court to see who still has what it takes to JAM IT IN! FROM DOWNTOWN!","player_loc":"https://roosterteeth.com/embed/craig-vs-ben-time-for-screwattack-jam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72126a14-45bb-493c-8ecd-114d3c170462/sm/video_thumbnail_12836132.png","duration":201,"publication_date":"2014-05-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pokemon-gets-another-game-nintendo-loses-millions-and-ea-and-xbox-e3-live-streams-hard-news-050714","changefreq":"weekly","video":[{"title":"S1:E656 - Pokemon gets another game? Nintendo loses millions, and EA and Xbox E3 live streams | Hard News 05/07/14","description":"Today on Hard News, Pokemon gets another game? Nintendo loses millions, and EA and Xbox E3 live streams.\r\nNintendo has missed their reduced financial projections for the fiscal year - http://www.screwattack.com/news/ninte...\r\n\t\r\n\tEA outlines their presser information for E3 2014 and where you can stream it - http://www.screwattack.com/news/ea-ou...\r\n\t\r\n\tPokemon Ruby & Sapphire are OFFICIALLY getting remakes! -http://www.screwattack.com/video/Ruby...\r\n\t\r\n\tMicrosoft dates E3 presentation, confident with a diverse line up of titles and studios moving forward -http://www.screwattack.com/news/micro...\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/pokemon-gets-another-game-nintendo-loses-millions-and-ea-and-xbox-e3-live-streams-hard-news-050714","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/668f6974-f17d-4b3f-a264-a97eb1350db5/sm/video_thumbnail_12836162.png","duration":230,"publication_date":"2014-05-07T14:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mortal-kombat-hd-remake-cancelled-shaq-fu-2-funded-earth-year-2066-removed-from-steam-hard-news-050614","changefreq":"weekly","video":[{"title":"S1:E655 - Mortal Kombat HD remake cancelled, Shaq Fu 2 funded, Earth: Year 2066 removed from Steam | Hard News 05/06/14","description":"Today on Hard News, Mortal Kombat HD remake cancelled, Shaq Fu 2 funded, Earth: Year 2066 removed from Steam.\r\n\t\r\n\tMortal Kombat HD remake cancelled - http://www.screwattack.com/news/mortal-kombat-arcade-kollection-was-originally-scheduled-be-hd-upgrade\r\n\tShaq Fu 2 funded - http://www.screwattack.com/video/ShaqFu-A-Legend-Reborn-reaches-its-crowdfunding-goal-and-then-some-12836020\r\n\tEarth: Year 2066 removed from Steam - http://www.screwattack.com/video/Valve-has-pulled-down-Earth-Year-2066-from-Steam-due-to-false-advertising-and-overall-poor-experience-12836022\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/mortal-kombat-hd-remake-cancelled-shaq-fu-2-funded-earth-year-2066-removed-from-steam-hard-news-050614","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92962b6d-4664-4f2a-8bb1-162fc882a0d9/sm/video_thumbnail_12836038.png","duration":191,"publication_date":"2014-05-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eating-two-year-old-swag-advantage-exclusive-content","changefreq":"weekly","video":[{"title":"S1:E741 - Eating two-year-old swag! | Advantage Exclusive Content","description":"This content is only available to Advantage Members!  Not an Advantage Member?  Get off your ass and sign up now!","player_loc":"https://roosterteeth.com/embed/eating-two-year-old-swag-advantage-exclusive-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89f31ec6-a719-4927-86da-0aebaee9b01f/sm/video_thumbnail_12836010.png","duration":340,"publication_date":"2014-05-06T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/power-rangers-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E427 - Power Rangers | Video Game Vault","description":"S1:E427 - Power Rangers | Video Game Vault","player_loc":"https://roosterteeth.com/embed/power-rangers-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbff4f70-846f-4e08-af69-73b3a3b54642/sm/video_thumbnail_12835889.jpg","duration":151,"publication_date":"2014-05-06T07:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-pokemon-it-would-suck-to-be","changefreq":"weekly","video":[{"title":"S1:E116 - Top 5 Pokemon it would SUCK to be!","description":"Not all Pokemon live the colorful, fun-filled life you'd think.","player_loc":"https://roosterteeth.com/embed/top-5-pokemon-it-would-suck-to-be","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbcc3bd7-150e-44ae-8066-8ccef19d01f9/sm/video_thumbnail_12835799.png","duration":331,"publication_date":"2014-05-05T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/neversoft-joins-infinity-ward-blizzard-releases-2-free-games-borderlands-2-ps-vita-hard-news-050514","changefreq":"weekly","video":[{"title":"S1:E654 - Neversoft joins Infinity Ward, Blizzard releases 2 free games, Borderlands 2 PS Vita | Hard News 05/05/14","description":"Today on Hard News, Neversoft joins Infinity Ward, Blizzard releases 2 free games, Borderlands 2 PS Vita.\r\n\t\r\n\tNeversoft joins Infinity Ward - http://www.screwattack.com/news/neversoft-and-infinity-ward-have-been-unified-single-entity\r\n\tBlizzard releases 2 free games - http://www.screwattack.com/news/blizzard-offers-classic-titles-free\r\n\tBorderlands 2 PS Vita - http://www.screwattack.com/news/borderlands-2-vita-limits-co-op-two-players\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/neversoft-joins-infinity-ward-blizzard-releases-2-free-games-borderlands-2-ps-vita-hard-news-050514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9307e7fa-81af-479f-bd7c-539b45427d44/sm/video_thumbnail_12835946.png","duration":195,"publication_date":"2014-05-05T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-studio-ea-killed-ever","changefreq":"weekly","video":[{"title":"S1:E48 - The Best Studio EA Killed EVER!","description":"Many studios have become EA's property over the years, and many of them have felt the touch of EA's scythe. These are our best EVER studios that EA killed!","player_loc":"https://roosterteeth.com/embed/the-best-studio-ea-killed-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c733dbcb-2204-495b-8153-b4c532c0bec3/sm/video_thumbnail_12835693.png","duration":365,"publication_date":"2014-05-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-call-of-duty-stars-kevin-spacey-id-software-sues-oculus-rift-and-turtle-rock-fires-josh-olin-hard-news-050214","changefreq":"weekly","video":[{"title":"S1:E653 - New Call of Duty stars Kevin Spacey, id Software sues Oculus Rift, and Turtle Rock fires Josh Olin | Hard News 05/02/14","description":"Today on Hard News, new Call of Duty stars Kevin Spacey, id Software sues Oculus Rift, and Turtle Rock fires Josh Olin.\r\n\t\r\n\tNew Call of Duty stars Kevin Spacey - http://www.screwattack.com/video/Kevin-Spacey-becomes-the-villain-in-Sledgehammer-Games-Call-of-Duty-Advanced-Warfare-12835575\r\n\tid Software sues Oculus Rift - http://www.screwattack.com/news/zenimax-media-taking-john-carmack-court-over-his-work-oculus\r\n\tTurtle Rock fires Josh Olin - http://www.screwattack.com/news/evolve-community-manager-josh-olin-has-lost-his-job-over-tweet-about-donald-sterling\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-call-of-duty-stars-kevin-spacey-id-software-sues-oculus-rift-and-turtle-rock-fires-josh-olin-hard-news-050214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f6ba95a-05fc-4452-a6f2-fd59f147ff32/sm/video_thumbnail_12835652.png","duration":200,"publication_date":"2014-05-02T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/24-reasons-we-love-spider-man","changefreq":"weekly","video":[{"title":"S1:E44 - 24 Reasons We LOVE Spider-Man!","description":"It's the reasons we love the friendly neighborhood Spider-Man!","player_loc":"https://roosterteeth.com/embed/24-reasons-we-love-spider-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da4424e-a004-40ff-86de-562f86d538ed/sm/video_thumbnail_12835639.jpg","duration":89,"publication_date":"2014-05-02T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-hate-spider-man-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E20 - 17 Reasons We HATE Spider-Man with Evil Craig!","description":"Screw Spider-Man! That arrogant web-slinger...","player_loc":"https://roosterteeth.com/embed/17-reasons-we-hate-spider-man-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba9a57dd-c5da-4588-ba3d-92a2f2061f76/sm/video_thumbnail_12835640.jpg","duration":114,"publication_date":"2014-05-02T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-pokemon-game-ouya-to-stream-aaa-titles-and-marvel-disney-infinity-hard-news-050114","changefreq":"weekly","video":[{"title":"S1:E652 - New Pokemon game, OUYA to stream AAA titles, and Marvel Disney Infinity | Hard News 05/01/14","description":"Today on Hard News, New Pokemon game, OUYA to stream AAA titles, and Marvel Disney Infinity.\r\n\t\r\n\tOUYA to stream AAA titles - http://www.screwattack.com/news/ouya-teaming-playcast-bring-aaa-games-micro-console\r\n\tMarvel Disney Infinity - http://www.screwattack.com/video/Marvel-Super-Heroes-announced-as-part-of-Disney-Infinity-20-12835405\r\n\tNew Pokemon game - http://www.screwattack.com/video/There-is-a-new-3DS-Pokemon-game-coming-and-it-will-let-you-draw-your-favorite-pocket-monsters-12835481\r\nhttp://marvel.com/universe/Hellcow\r\n\thttp://marvel.com/universe/Asbestos_Lady\r\n\thttp://marvel.com/universe/Jubilee\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/new-pokemon-game-ouya-to-stream-aaa-titles-and-marvel-disney-infinity-hard-news-050114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0d44c9-c762-4f23-977b-5e4d41080f8c/sm/video_thumbnail_12835519.png","duration":198,"publication_date":"2014-05-01T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/broforce-the-manliest-game-at-pax-east-2014-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E740 - Broforce, the Manliest Game at PAX East 2014! | PAX East 2014","description":"Sean interviews the creator of the manliest game ever! BROFORCE!","player_loc":"https://roosterteeth.com/embed/broforce-the-manliest-game-at-pax-east-2014-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8ff7f2e-30a1-411d-b340-505472f8ae02/sm/video_thumbnail_12835469.png","duration":211,"publication_date":"2014-05-01T07:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/organic-panic-pax-east-2014-screwattack","changefreq":"weekly","video":[{"title":"S1:E739 - Organic Panic | PAX East 2014 | ScrewAttack","description":"Sean talks to the lead programmer for the upcoming platformer Organic Panic at PAX East 2014!","player_loc":"https://roosterteeth.com/embed/organic-panic-pax-east-2014-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60ea1195-9e04-454a-9040-75e0eb57f5fd/sm/video_thumbnail_12835424.png","duration":169,"publication_date":"2014-04-30T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-kart-8-nintendo-direct-bob-hoskins-dies-and-star-wars-new-cast-hard-news-043014","changefreq":"weekly","video":[{"title":"S1:E651 - Mario Kart 8 Nintendo Direct, Bob Hoskins dies, and Star Wars new cast | Hard News 04/30/14","description":"Today on Hard News, Mario Kart 8 Nintendo Direct, Bob Hoskins dies, and Star Wars new cast.\r\n\t\r\n\tStar Wars Cast Revealed - http://www.screwattack.com/news/cast-upcoming-star-wars-trilogy-has-been-revealed-and-internet-teeming-suspicions\r\n\tActor Bob Hoskins dies aged 71 - http://www.screwattack.com/news/super-mario-bros-live-action-film-actor-bob-hoskins-passes-away-71\r\n\tMario Kart 8 Nintendo Direct - http://www.screwattack.com/video/Iwata-and-crew-our-off-to-the-races-in-this-surprise-Mario-Kart-8-Direct-12835379\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/mario-kart-8-nintendo-direct-bob-hoskins-dies-and-star-wars-new-cast-hard-news-043014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b4f3804-7948-4593-a576-43fb4e48aea3/sm/video_thumbnail_12835421.png","duration":208,"publication_date":"2014-04-30T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zool-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E426 - Zool | Video Game Vault","description":"S1:E426 - Zool | Video Game Vault","player_loc":"https://roosterteeth.com/embed/zool-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc928d5a-0b4e-444c-87e9-4c75652458cc/sm/video_thumbnail_12835389.jpg","duration":137,"publication_date":"2014-04-30T10:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-bros-wii-u-at-best-buy-spider-man-2-on-xbox-one-cod-at-x-games-hard-news-042914","changefreq":"weekly","video":[{"title":"S1:E650 - Smash Bros Wii U at Best Buy, Spider-Man 2 on Xbox One, CoD at X Games | Hard News 04/29/14","description":"Today on Hard News, Smash Bros Wii U at Best Buy, Spider-Man 2 on Xbox One, CoD at X Games.\r\n\t\r\n\tSpider-Man 2 on Xbox One - http://www.screwattack.com/news/xbox-one-users-are-reporting-digital-release-amazing-spider-man-2\r\n\tCoD at X Games - http://www.screwattack.com/news/mlg-bringing-call-duty-austin-mlg-x-games-invitational\r\n\tSmash Bros Wii U at Best Buy, - http://www.screwattack.com/video/Reggie-FilsAimech-infiltrated-the-Nintendo-headquarters-to-discover-four-unique-Nintendo-experiences-12835271\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/smash-bros-wii-u-at-best-buy-spider-man-2-on-xbox-one-cod-at-x-games-hard-news-042914","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14a99716-4fa3-4c8a-a16e-0f87830ace5b/sm/video_thumbnail_12835331.png","duration":184,"publication_date":"2014-04-29T14:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/arkham-knights-delay-star-wars-canon-clarified-and-et-graves-discovery-hard-news-042814","changefreq":"weekly","video":[{"title":"S1:E649 - Arkham Knight's delay, Star Wars canon clarified, and ET grave's discovery | Hard News 04/28/14","description":"Today on Hard News, Star Wars' expanded universe shrinks, Arkham Knight's rumored delay, and ET's mass grave has been discovered.\r\nLucasfilm confirms future Star Wars games will be canon - http://www.screwattack.com/news/lucasfilm-confirms-future-star-wars-games-will-be-canon Rumored Arkham Knight delay is actually\r\nthe unintentional reveal of Injustice 2 - http://www.screwattack.com/news/rumored-arkham-knight-delay-actually-unintentional-reveal-injustice-2 Microsoft is bringing Television-esque \r\nprogramming as Xbox Originals - http://www.screwattack.com/news/microsoft-bringing-television-esque-programming-xbox-originals\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Sean Hinz - Twitter.com/SeanHinz\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/arkham-knights-delay-star-wars-canon-clarified-and-et-graves-discovery-hard-news-042814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0edd22b9-7a67-4b29-a269-6284eb516489/sm/video_thumbnail_12835207.png","duration":214,"publication_date":"2014-04-28T15:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-lazy-guys","changefreq":"weekly","video":[{"title":"S1:E115 - Top 5 Lazy Guys!","description":"Not everyone is \"the chosen one,\" destined to do something extraordinary.  Especially when they're as lazy as these guys!","player_loc":"https://roosterteeth.com/embed/top-5-lazy-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d5a6b0c-7d76-4d69-a35c-e47532fd9fee/sm/video_thumbnail_12835178.png","duration":365,"publication_date":"2014-04-28T08:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-superhero-game-the-worst-ever","changefreq":"weekly","video":[{"title":"S1:E47 - The Worst EVER Superhero Game! | The Worst EVER!","description":"We all know Superman 64 is really really really bad, but there are other games that could surely contend for the title of Worst Superhero Game EVER!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-superhero-game-the-worst-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/241ad581-2101-415d-bd9d-f6bae86806d5/sm/video_thumbnail_12834987.png","duration":321,"publication_date":"2014-04-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/why-superman-64-is-truly-the-worst-superhero-game-ever","changefreq":"weekly","video":[{"title":"S1:E738 - Why Superman 64 is truly the worst superhero game EVER!","description":"If you're not sure why Superman 64 is truly the worst superhero game ever, here's why!","player_loc":"https://roosterteeth.com/embed/why-superman-64-is-truly-the-worst-superhero-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61c9d51f-686f-4c6b-a7bf-82acbdf14e8c/sm/video_thumbnail_12834999.png","duration":118,"publication_date":"2014-04-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gta-v-jet-packs-mgs-v-free-content-and-playstations-road-to-greatness-hard-news-042514","changefreq":"weekly","video":[{"title":"S1:E648 - GTA V jet packs, MGS V free content, and PlayStation's Road to Greatness | Hard News 04/25/14","description":"Today on Hard News, GTA V jet packs, MGS V free content, and PlayStation's Road to Greatness.\r\n\t\r\n\t[Rumor] Crazy conspiracy theorists claim GTA V will be getting jetpacks - http://www.screwattack.com/news/rumor...\r\n\t\r\n\tKojima reveals platform specific DLC for Ground Zeroes is coming to everything - http://www.screwattack.com/news/kojim...\r\n\t\r\n\tSony is hitting the road and spreading PlayStation love across the US, on the Road to Greatness -http://www.screwattack.com/news/sony-...\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/gta-v-jet-packs-mgs-v-free-content-and-playstations-road-to-greatness-hard-news-042514","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04552de8-0df3-4076-8a70-1bf8268b82ce/sm/video_thumbnail_12834903.png","duration":163,"publication_date":"2014-04-25T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/watch-dogs-gameplay-skylanders-trap-team-ps1-pulled-off-vita-hard-news-042414","changefreq":"weekly","video":[{"title":"S1:E647 - Watch Dogs gameplay, Skylanders Trap Team, PS1 pulled off Vita | Hard News 04/24/14","description":"Today on Hard News, Watch Dogs gameplay, Skylanders Trap Team, PS1 pulled off Vita, Bloodrayne Betrayal re-release, and new Ace Attorney confirmed for Meiji era.\r\n\t\r\n\tAce Attorney confirmed for Meiji era - http://www.screwattack.com/video/Debut-trailer-for-the-next-Ace-Attorney-game-features-a-brief-glimpse-into-the-Meiji-era-courtroom-12834741\r\n\tBloodrayne Betrayal re-release - http://www.screwattack.com/news/arc-system-works-bloodrayne-game-isa-japanese-release-bloodrayne-betrayal\r\n\tPS1 pulled off Vita - http://www.screwattack.com/news/update-playstation-has-betrayed-vita-owners-and-switched-digital-psone-and-psp-renaissance\r\n\tWatch Dogs gameplay - http://www.screwattack.com/shows/originals/random-awesomeness/watch-dogs-our-hands-impressions\r\n\tSkylanders Trap Team - http://www.screwattack.com/video/Skylanders-Trap-Team-has-you-turning-foes-into-friends-as-you-try-to-catch-em-all-12834742\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/watch-dogs-gameplay-skylanders-trap-team-ps1-pulled-off-vita-hard-news-042414","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e47be19f-cbef-4d87-9a98-ed512fe42564/sm/video_thumbnail_12834774.png","duration":207,"publication_date":"2014-04-24T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-love-zelda-ii","changefreq":"weekly","video":[{"title":"S1:E45 - 13 Reasons We LOVE Zelda II!","description":"13 Reasons We LOVE Zelda II: The Adventure Link!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-love-zelda-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed71ecb4-cdfc-4661-8dc8-cac470e0ad1b/sm/video_thumbnail_12834732.jpg","duration":58,"publication_date":"2014-04-24T12:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/11-reasons-we-hate-zelda-ii-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E19 - 11 Reasons We HATE Zelda II with Evil Craig!","description":"It's different? It SUCKS!","player_loc":"https://roosterteeth.com/embed/11-reasons-we-hate-zelda-ii-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6893d8df-bf10-4a16-98c5-8ba8ff5ca23d/sm/video_thumbnail_12834731.jpg","duration":66,"publication_date":"2014-04-24T12:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/watch-dogs-our-hands-on-impressions","changefreq":"weekly","video":[{"title":"S1:E737 - Watch Dogs: Our Hands On Impressions!","description":"ScrewAttack's Special West Coast Correspondent Marcus Beer had the awesome opportunity to go hands on with Ubisoft's upcoming title, Watch Dogs! Now that people have really played it, what is it like?","player_loc":"https://roosterteeth.com/embed/watch-dogs-our-hands-on-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f75ac2a2-ea3d-462b-8a38-57537b61ea15/sm/video_thumbnail_12834666.png","duration":634,"publication_date":"2014-04-23T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendos-mario-golf-season-pass-eve-creators-to-fight-ufc-champion-dragon-age-hard-news-042314","changefreq":"weekly","video":[{"title":"S1:E646 - Nintendo's Mario Golf season pass, EVE creators to fight UFC Champion, Dragon Age | Hard News 04/23/14","description":"Today on Hard News, Nintendo's Mario Golf season pass, EVE creators to fight UFC Champion, Dragon Age: Inquisition.\r\n\t\r\n\tNintendo's Mario Golf season pass - http://www.screwattack.com/news/nintendo-outlines-tournaments-and-season-pass-mario-golf-world-tour\r\n\tDragon Age: Inquisition - http://www.screwattack.com/news/dragon-age-iquisition-box-art-digital-deluxe-version-and-gen-differences-revealed\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendos-mario-golf-season-pass-eve-creators-to-fight-ufc-champion-dragon-age-hard-news-042314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9bbeec4-7610-4fa9-9d0a-07bc883db3af/sm/video_thumbnail_12834605.png","duration":196,"publication_date":"2014-04-23T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/find-employment-with-invisible-inc-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E736 - Find employment with Invisible Inc | PAX East 2014","description":"The makers of Shank, Mark of the Ninja, and Don't Starve are taking a shot at tactical espionage with Invisible Inc. If you like X-Com and the original Syndicate, this could be the game for you.","player_loc":"https://roosterteeth.com/embed/find-employment-with-invisible-inc-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e9bfe0a-8800-4d3e-81c7-5cf02a5299c4/sm/video_thumbnail_12834594.png","duration":187,"publication_date":"2014-04-23T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-krautscape","changefreq":"weekly","video":[{"title":"S1:E42 - Out of the Box - Krautscape","description":"A procedurally-generated racing game?  Bryan and Nick take Krautscape for a test drive in this episode of Out of the Box!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-krautscape","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c3b8ebd-8ba9-43df-889b-8e6d37a26de9/sm/video_thumbnail_12834568.png","duration":3588,"publication_date":"2014-04-23T09:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/catlateral-damage-cat-simulator-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E735 - Catlateral Damage: CAT SIMULATOR! | PAX East 2014","description":"S1:E735 - Catlateral Damage: CAT SIMULATOR! | PAX East 2014","player_loc":"https://roosterteeth.com/embed/catlateral-damage-cat-simulator-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efae93e0-d736-473b-83ac-8f56eaeabb6f/sm/video_thumbnail_12834567.png","duration":173,"publication_date":"2014-04-23T08:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ace-attorney-samurai-showdown-asscreed-unity-co-op-and-ps1-comes-to-vita-hard-news-042214","changefreq":"weekly","video":[{"title":"S1:E645 - Ace Attorney Samurai Showdown, AssCreed Unity co-op, and PS1 comes to Vita | Hard News 04/22/14","description":"Today on Hard News, Ace Attorney Samurai Showdown, AssCreed Unity co-op, and PS1 comes to Vita.\r\n\t\r\n\tAssCreed Unity co-op - http://www.screwattack.com/news/rumor-asscreed-unity-will-feature-narrative-driven-four-player-co-op\r\n\tAce Attorney Samurai Showdown - http://www.screwattack.com/news/new-ace-attorney-confirmed-be-prequel-thanks-famitsu-scan\r\n\tPS1 comes to Vita - http://www.screwattack.com/news/rumor-playstation-vita-has-every-digital-psone-and-psp-title-made-available-download\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/ace-attorney-samurai-showdown-asscreed-unity-co-op-and-ps1-comes-to-vita-hard-news-042214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/316cef8e-6683-44c7-831d-069634d35399/sm/video_thumbnail_12834467.png","duration":193,"publication_date":"2014-04-22T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wheres-waldo-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E425 - Where's Waldo | Video Game Vault","description":"S1:E425 - Where's Waldo | Video Game Vault","player_loc":"https://roosterteeth.com/embed/wheres-waldo-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52b9d414-c699-45db-8c52-b4b0f629d9ea/sm/video_thumbnail_12834436.jpg","duration":161,"publication_date":"2014-04-22T09:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-gets-sued-apple-and-google-exclusivity-and-elder-scrolls-online-guild-bank-hard-news-042114","changefreq":"weekly","video":[{"title":"S1:E644 - Nintendo gets sued, Apple and Google exclusivity, and Elder Scrolls Online Guild Bank | Hard News 04/21/14","description":"Today on Hard News, Nintendo gets sued by Secure Axcess, Apple and Google exclusivity, and Elder Scrolls Online Guild Bank shut down.\r\n\t\r\n\tNintendo gets sued by Secure Axcess - http://www.screwattack.com/news/nintendo-sued-patent-concerning-wii-u\r\n\tApple and Google exclusivity - http://www.screwattack.com/news/rumor-apple-and-google-courting-developers-over-app-exclusivity\r\n\tElder Scrolls Online Guild Bank shut down - http://www.screwattack.com/news/elder-scrolls-online-had-gold-duping-bug-and-thousands-users-were-banned-because-it\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/nintendo-gets-sued-apple-and-google-exclusivity-and-elder-scrolls-online-guild-bank-hard-news-042114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c6034d8-8141-4438-b9ec-ac947a8e6c63/sm/video_thumbnail_12834388.png","duration":177,"publication_date":"2014-04-21T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/videoball-get-hyped-or-gtfo-the-universe-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E734 - Videoball: Get Hyped or GTFO the Universe | PAX East 2014","description":"Tim Rogers discusses the key points of Videoball including color blindness in males, vomiting on the carpet, and if you don't buy Videoball, Tim can't go to the dentist.","player_loc":"https://roosterteeth.com/embed/videoball-get-hyped-or-gtfo-the-universe-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aac0532-34c1-4ef8-b457-a0635c834d01/sm/video_thumbnail_12834386.png","duration":231,"publication_date":"2014-04-21T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/project-totems-sidescrolling-puzzle-madness-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E733 - Project Totem's sidescrolling puzzle madness! | PAX East 2014","description":"Sean interviews the creators of Project Totem at PAX East 2014!","player_loc":"https://roosterteeth.com/embed/project-totems-sidescrolling-puzzle-madness-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54b116c5-ed2f-45c9-bd1c-4bbc28a457ae/sm/video_thumbnail_12834304.jpg","duration":198,"publication_date":"2014-04-21T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/indie-van-game-jam-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E732 - Indie Van Game Jam | PAX East 2014","description":"S1:E732 - Indie Van Game Jam | PAX East 2014","player_loc":"https://roosterteeth.com/embed/indie-van-game-jam-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7adaa30-344c-4773-81db-375fda303d11/sm/video_thumbnail_12834275.jpg","duration":116,"publication_date":"2014-04-21T10:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-life-got-a-double-fine-adrenaline-shot-at-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E731 - Last Life got a Double Fine adrenaline shot at PAX East 2014","description":"Last Life's developer answered Double Fine's tweet looking for indies, and the next thing he knew, he was talking to Sean Hinz inside the Double Fine booth at PAX East 2014!\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/last-life-got-a-double-fine-adrenaline-shot-at-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b6cf9d7-9dce-437d-b9d3-7c0a5437c9bb/sm/video_thumbnail_12833930.jpg","duration":193,"publication_date":"2014-04-19T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/darknet-brings-90s-hacker-movies-to-life-at-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E730 - Darknet brings 90s hacker movies to life at PAX East 2014","description":"With the power of the Oculus Rift, Darknet will let you finally live out all those 90s hacking movies!\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/darknet-brings-90s-hacker-movies-to-life-at-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cab8d37b-68c6-40a6-a5c8-2641bfc1c5aa/sm/video_thumbnail_12833919.jpg","duration":175,"publication_date":"2014-04-19T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/max-gentlemen-manhandles-all-the-other-\"manly\"-games-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E729 - Max Gentlemen manhandles all the other \"manly\" games! - PAX East 2014","description":"What started with an email about penis pills became something far more manly.","player_loc":"https://roosterteeth.com/embed/max-gentlemen-manhandles-all-the-other-\"manly\"-games-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aea0a4b6-c8ae-4cb2-ac0a-787df07a6da0/sm/video_thumbnail_12833908.jpg","duration":172,"publication_date":"2014-04-19T10:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-11","changefreq":"weekly","video":[{"title":"E:E13 - Gag Reel #11: Seventh Layer of Hell","description":"E:E13 - Gag Reel #11: Seventh Layer of Hell","player_loc":"https://roosterteeth.com/embed/death-battle-extras-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75f2ea5f-3ca3-4c66-9210-c0ae7693dacb/sm/video_thumbnail_12833829.jpg","duration":330,"publication_date":"2014-04-18T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/aztez-interview-from-atop-a-mighty-throne-pax-east-2014-screwattack","changefreq":"weekly","video":[{"title":"S1:E728 - Aztez interview from atop a mighty throne! PAX East 2014 | ScrewAttack","description":"Join Sean as he interviews Team Colorblind from atop their mighty throne!","player_loc":"https://roosterteeth.com/embed/aztez-interview-from-atop-a-mighty-throne-pax-east-2014-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c510a918-1628-47cf-b0e2-55cf0119f030/sm/video_thumbnail_12833845.jpg","duration":150,"publication_date":"2014-04-18T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041814-watch-dogs-ebook-sequel-world-of-warcraft-choppers-candy-crush-saga","changefreq":"weekly","video":[{"title":"S1:E643 - Hard News 04/18/14 - Watch Dogs eBook sequel, World of Warcraft choppers, Candy Crush Saga","description":"Today on Hard News, Watch Dogs eBook sequel, World of Warcraft choppers, Candy Crush Saga.\r\n\t\r\n\tWatch Dogs eBook sequel - http://www.screwattack.com/video/Watch-Dogs-to-receive-a-direct-sequel-on-launch-day-in-the-form-of-an-eBook-12833838\r\n\tWorld of Warcraft choppers - http://www.screwattack.com/video/Blizzard-has-decided-to-market-World-of-Warcraft-in-the-silliest-way-possible-12833836\r\n\tCandy Crush Saga - http://www.screwattack.com/news/banner-saga-and-candy-swipe-say-their-trademark-disputes-king-have-been-resolved\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041814-watch-dogs-ebook-sequel-world-of-warcraft-choppers-candy-crush-saga","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f2d7790-6286-4975-af97-e09e602a9b88/sm/video_thumbnail_12833842.png","duration":172,"publication_date":"2014-04-18T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nosgoth-may-suck-all-your-time-away-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E727 - Nosgoth may suck all your time away - PAX East 2014","description":"The Legacy of Kain series is returning in a way many people wouldn't have guessed, and Sean is finding out all about it.\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/nosgoth-may-suck-all-your-time-away-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7e51e03-80b4-426f-865d-e63222608120/sm/video_thumbnail_12833828.png","duration":182,"publication_date":"2014-04-18T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/murdered-soul-suspect-is-a-ghostly-good-time-at-pax-east-2014","changefreq":"weekly","video":[{"title":"S1:E726 - Murdered: Soul Suspect is a ghostly good time at PAX East 2014","description":"Get ready to solve your own murder and find out how haunted Salem Mass. really is in Murdered: Soul Suspect.","player_loc":"https://roosterteeth.com/embed/murdered-soul-suspect-is-a-ghostly-good-time-at-pax-east-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a5b0e84-50fb-4acd-852b-74f8f7b8d904/sm/video_thumbnail_12833817.png","duration":72,"publication_date":"2014-04-18T11:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evolve-will-be-the-next-big-thing-in-multiplayer","changefreq":"weekly","video":[{"title":"S1:E725 - Evolve will be the next big thing in multiplayer","description":"From the makers of Left 4 Dead comes multiplayer's next evolution!","player_loc":"https://roosterteeth.com/embed/evolve-will-be-the-next-big-thing-in-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8c25297-d220-410e-8b04-30f53bf38157/sm/video_thumbnail_12833807.png","duration":164,"publication_date":"2014-04-18T09:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-vs-black-nerd-comedy-test-of-inflatable-might","changefreq":"weekly","video":[{"title":"S1:E724 - Craig vs Black Nerd Comedy: Test of Inflatable Might","description":"At PAX East 2014, Craig and Andre from Black Nerd Comedy had a score to settle over absolutely nothing.  Hosted by our friend Hip Hop Gamer!","player_loc":"https://roosterteeth.com/embed/craig-vs-black-nerd-comedy-test-of-inflatable-might","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af7d90cf-e121-4e29-a304-fd4c063cd016/sm/video_thumbnail_12833715.png","duration":172,"publication_date":"2014-04-17T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/an-interview-with-one-of-the-geniuses-behind-jetgetters","changefreq":"weekly","video":[{"title":"S1:E723 - An interview with one of the geniuses behind JetGetters","description":"Inspired by the craziest stunts seen in games like Battlefield and Just Cause 2, JetGetters is a game to get excited for.  Sean already is.","player_loc":"https://roosterteeth.com/embed/an-interview-with-one-of-the-geniuses-behind-jetgetters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e6dbe34-7e18-4a90-82f1-6f6157c45331/sm/video_thumbnail_12833732.png","duration":201,"publication_date":"2014-04-17T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041714-the-return-of-bloodrayne-jetgetters-investors-and-spider-man-2-delayed-on-xbox","changefreq":"weekly","video":[{"title":"S1:E642 - Hard News 04/17/14 - The return of Bloodrayne, JetGetters investors, and Spider-Man 2 delayed on Xbox","description":"Today on Hard News, The return of Bloodrayne, JetGetters investors, and Spider-Man 2 delayed on Xbox.\r\n\t\r\n\tThe return of Bloodrayne - http://www.screwattack.com/news/bloodrayne-being-teased-new-title-coming-arc-system-works\r\n\tSpider-Man 2 delayed on Xbox - http://www.screwattack.com/news/amazing-spider-man-2-has-been-delayed-indefinitely-xbox-one\r\n\tJetGetters investors - http://www.screwattack.com/news/tinybuild-has-canceled-jetgetters-kickstarter-thanks-angel-investor\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041714-the-return-of-bloodrayne-jetgetters-investors-and-spider-man-2-delayed-on-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebffa0d0-0a32-49f6-9d52-fa9c5fb434bf/sm/video_thumbnail_12833744.png","duration":167,"publication_date":"2014-04-17T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-2014-borderlands-the-pre-sequel-impressions","changefreq":"weekly","video":[{"title":"S1:E722 - PAX East 2014 - Borderlands The Pre-Sequel Impressions!","description":"Bryan and Sean sat in on 2K's presentation for Borderlands The Pre-Sequel, and after what they saw, Bryan is looking forward to it.","player_loc":"https://roosterteeth.com/embed/pax-east-2014-borderlands-the-pre-sequel-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/873da178-04ae-4ad4-b3a6-d25b54970c75/sm/video_thumbnail_12833654.png","duration":79,"publication_date":"2014-04-16T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041614-halo-composer-fired-twitch-to-sell-games-and-snoop-dogg-narrates-cod","changefreq":"weekly","video":[{"title":"S1:E641 - Hard News 04/16/14 - Halo composer fired, Twitch to sell games, and Snoop Dogg narrates CoD","description":"Today on Hard News, Halo composer fired, Twitch to sell games, and Snoop Dogg narrates CoD.\r\nThe man behind the legendary monk chants of Halo has been fired from Bungie Studios - http://www.screwattack.com/news/man-behind-legendary-monk-chants-halo-has-been-fired-bungie-studios\r\nNuclear Throne is the first game available for purchase on a Twitch channel - http://www.screwattack.com/news/nuclear-throne-first-game-available-purchase-twitch-channel\r\nSnoop Dogg to hype up the multiplayer for Call of Duty: Ghosts in new voice pack -  http://www.screwattack.com/video/Snoop-Dogg-to-hype-up-the-multiplayer-for-Call-of-Duty-Ghosts-in-new-voice-pack-12833661\r\n\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041614-halo-composer-fired-twitch-to-sell-games-and-snoop-dogg-narrates-cod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73132c9f-887f-4f95-8fc6-e7f432d8415e/sm/video_thumbnail_12833649.png","duration":162,"publication_date":"2014-04-16T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/get-the-scoop-on-hotline-miami-2-wrong-number","changefreq":"weekly","video":[{"title":"S1:E721 - Get the scoop on Hotline Miami 2: Wrong Number!","description":"Sean interviews Devolver Digital partner Nigel Lowrie at PAX East 2014 about what's new and what's returning in Hotline Miami 2: Wrong Number.","player_loc":"https://roosterteeth.com/embed/get-the-scoop-on-hotline-miami-2-wrong-number","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21583eb6-7eaf-4492-8a68-2cb1736d46a5/sm/video_thumbnail_12833620.jpg","duration":253,"publication_date":"2014-04-16T12:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041514-civilization-beyond-earth-game-swedish-politicians-play-starcraft-rain-world-comes-to-vita","changefreq":"weekly","video":[{"title":"S1:E640 - Hard News 04/15/14 - Civilization Beyond Earth game, Swedish Politicians play Starcraft, Rain World comes to Vita","description":"Today on Hard News, Civilization Beyond Earth game, Swedish Politicians play Starcraft, Rain World comes to Vita.\r\n\t\r\n\tRain World comes to Vita - http://www.screwattack.com/news/valve-helping-fan-built-co-op-version-half-life-come-steam\r\n\tCivilization Beyond Earth game - http://www.screwattack.com/news/sony-invites-you-bid-greatness-using-gold-trophies-and-win-cool-stuff\r\n\tSwedish Politicians play Starcraft - http://www.screwattack.com/news/nintendo-trademark-looking-revive-niche-classic\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041514-civilization-beyond-earth-game-swedish-politicians-play-starcraft-rain-world-comes-to-vita","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb978f19-899c-48c2-867e-f2aadd0c6f6a/sm/video_thumbnail_12833564.png","duration":165,"publication_date":"2014-04-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/street-smart-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E424 - Street Smart | Video Game Vault","description":"S1:E424 - Street Smart | Video Game Vault","player_loc":"https://roosterteeth.com/embed/street-smart-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1b286af-c7cb-48a1-ac69-6aa40ba87665/sm/video_thumbnail_12833547.png","duration":125,"publication_date":"2014-04-15T12:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041414-pax-south-coming-to-san-antonio-titanfall-dlc-and-new-harmonix-free-to-play","changefreq":"weekly","video":[{"title":"S1:E639 - Hard News 04/14/14 - PAX South coming to San Antonio, Titanfall DLC, and new Harmonix free-to-play","description":"Today on Hard News, PAX South coming to San Antonio, Titanfall DLC, and new Harmonix free-to-play.\r\n\t\r\n\tHarmonix free-to-play - http://www.screwattack.com/news/harmonix%E2%80%99s-record-run-set-spin-you-right-round-may\r\n\tTitanfall DLC - http://www.screwattack.com/news/respawn-reveals-titanfalls-first-batch-dlc-pax-east\r\n\tPAX South coming to San Antonio - http://www.screwattack.com/news/penny-arcade-launch-pax-south-next-january-san-antonio\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041414-pax-south-coming-to-san-antonio-titanfall-dlc-and-new-harmonix-free-to-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16ee4645-a473-46f1-b7d0-7a6b3f3ae76e/sm/video_thumbnail_12833495.png","duration":177,"publication_date":"2014-04-14T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-161","changefreq":"weekly","video":[{"title":"2016:E161 - The Best and Worst of E3 2016 - #161","description":"Join Joel Heyman, Adam Ellis, Meg Turney and Ryan Haywood as they discuss E3, Death Stranding, Dead Rising 4 and more on this week's The Patch! This episode originally aired on June 22, 2016. Sponsored by Audible (http://adbl.co/28NEhop) and Trunk Club (http://bit.ly/28NEl7x)\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d60b82b-7e58-4151-9ca2-c220676f3778/sm/2013912-1466699448727-p161_-_THUMB.jpg","duration":3752,"publication_date":"2016-06-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-play-station-owes-gamers-550-million","changefreq":"weekly","video":[{"title":"2016:E405 - PlayStation Owes Gamers $550 Million","description":"Sony's handing out free money to former PS3 owners -- well, sorta. They just settled a huge lawsuit and now owe gamers a lot of money. You're going to have to jump through a few hoops for it.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-play-station-owes-gamers-550-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed7da011-c559-482b-bcc4-684fa5bf1385/sm/238166-1466635638491-playstation_owes_gamers_r1.jpg","duration":410,"publication_date":"2016-06-22T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-know-062216-g2a-v1","changefreq":"weekly","video":[{"title":"2016:E404 - G2A Scams Indie Developers? - The Know","description":"G2A has published a response to tinyBuild's blog post -- https://www.g2a.co/tinyBuild-fraud-allegation-g2a-statement\n\n\n\nWe're back with some spicy conflict for you guys. Choose your side: cheap games or struggling developers!\n\n\n\nSOURCES:\n\ntinyBuild Blog Post: http://tinybuild.com/g2a-sold-450k-worth-of-our-game-keys\n\nDevolver Digital Tweet: https://twitter.com/devolverdigital/status/466577590606520320\n\nRiot Games Restricts G2A Sponsorships: https://www.reddit.com/r/leagueoflegends/comments/3npuh2/riot_asks_teams_to_remove_g2a_logos_as_it_mulls/cvqczr0\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\n\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-know-062216-g2a-v1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ededcc33-fd19-4b70-ad52-b728b86bdf65/sm/1533704-1466634601027-FH_Thumb_11_copy_9.jpg","duration":602,"publication_date":"2016-06-22T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-overwatch-teen-makes-pros-quit-in-shame","changefreq":"weekly","video":[{"title":"2016:E403 - Overwatch Teen Makes Pros QUIT in Shame","description":"If you're a Zarya lover, you should check out the story of one teenage girl who rocked a tournament so hard she made pro Overwatch players quit forever. That's a whole new level of rage quitting.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-overwatch-teen-makes-pros-quit-in-shame","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ca0600e-768a-4d74-9ae8-a76c9fd39303/sm/238166-1466623779102-overwatch_teen_r3.jpg","duration":477,"publication_date":"2016-06-22T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-paragon-developer-sues-cheater","changefreq":"weekly","video":[{"title":"2016:E402 - Paragon Developer SUES Cheater","description":"What's a game developer to do when hackers are selling cheats for your game? Easy, just sue them. That's exactly what Epic Games did to a german hacker selling cheating tools for their game Paragon. It's just like getting banned in real life, just with more lawyers.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-paragon-developer-sues-cheater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42d081fc-b556-49fd-9d71-08394e1a0a8c/sm/238166-1466553211601-epic_sues_cheaters_r3.jpg","duration":457,"publication_date":"2016-06-22T00:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-analysts-microsoft-will-exit-gaming-business","changefreq":"weekly","video":[{"title":"2016:E401 - Analyst Claims Microsoft Will Quit Games Business","description":"Will Microsoft exit the video game marketplace? That's what market research firm DFC Intelligence has said in a recent report citing the Xbox One's sales falling behind the PS4 and Xbox Scorpio not releasing until the end 2017. Could it be the end of Xbox?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-analysts-microsoft-will-exit-gaming-business","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/157ffc15-573a-4ca6-b9c9-55fca4b797b5/sm/238166-1466547766871-xbox_exiting_2.jpg","duration":434,"publication_date":"2016-06-21T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-mass-effect-3-endings-don-t-matter-overwatch-d-do-s-twitch-sues-bot-opearators","changefreq":"weekly","video":[{"title":"2016:E45 - Mass Effect 3 Endings Don't Matter? + Overwatch DDoS + Twitch Sues Bot Operators","description":"Red, blue, green -- none of your Mass Effect 3 endings are going to matter in Andromeda, according to Bioware. Plus, Overwatch got hit with a DDoS attack, and Twitch is attacking bots!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-mass-effect-3-endings-don-t-matter-overwatch-d-do-s-twitch-sues-bot-opearators","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b97e5c74-2b6f-46aa-93d8-d691db4ce139/sm/238166-1466527607590-round_up_jun_21.jpg","duration":494,"publication_date":"2016-06-21T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-know-controller","changefreq":"weekly","video":[{"title":"2016:E400 - New PS4 Controller Leaked? - The Know","description":"Are you all burned out on awesome game announcements and trailers? Well come on down to The Know where we ground you a bit with talk of controllers that may or may not exist. EXCITING.\n\n\n\nSOURCES:\n\nTwinfinite Report: https://twinfinite.net/2016/06/sony-patents-new-du...\n\nNeoGAF Post: http://www.neogaf.com/forum/showthread.php?t=12363...\n\nSony Patent Filing: http://ipforce.jp/patent-jp-A-2016-106297\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-know-controller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df72d8d4-adca-4945-82f1-d19597ce56f5/sm/2371242-1466466529255-FH_Thumb_11_copy_64.jpg","duration":449,"publication_date":"2016-06-21T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-man-s-sky-s-u-e-d","changefreq":"weekly","video":[{"title":"2016:E399 - No Man's Sky No Mans Sky Secret Lawsuit","description":"No Man's Sky is basically cursed at this point -- and now, it turns out the game was even being sued over using the word \"Sky\" in its name! What's this world coming to?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-man-s-sky-s-u-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d176fefc-695d-40ac-bdfe-e231761a777d/sm/238166-1466462966634-thumbnail.jpg","duration":461,"publication_date":"2016-06-20T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-valve-and-oculus-go-to-war-over-vr-exclusives","changefreq":"weekly","video":[{"title":"2016:E398 - Valve and Oculus Go to War Over VR Exclusives","description":"Valve and Oculus are putting on fighting gloves over VR exclusives! In the midst of some controversy over Oculus games, Gabe Newell may have a new strategy when it comes to making VR an open platform.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-valve-and-oculus-go-to-war-over-vr-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adca6771-c5d2-414b-a1f5-e206546d829a/sm/238166-1466458573357-vr_exclusive_2.jpg","duration":493,"publication_date":"2016-06-20T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-shared-video-game-universe-theories-w-mat-pat","changefreq":"weekly","video":[{"title":"2016:E25 - Shared Video Game Universe Theories w/ MatPat!","description":"MatPat of The Game Theorists (https://www.youtube.com/user/MatthewPatrick13) joins the crew for a second year to chat E3, Zelda, and crazy theories.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-shared-video-game-universe-theories-w-mat-pat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f62c6abd-7566-49c5-b4d3-eec645d0645c/sm/24363-1466274932949-the_patch_day_2_thumb.jpg","duration":2341,"publication_date":"2016-06-18T18:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-popping-the-e3-cherry-the-patch-e3-special","changefreq":"weekly","video":[{"title":"2016:E24 - E3 Special: Popping the E3 Cherry?!","description":"Join Gus, Ashley, Meg, and Ryan as E3 gets underway. We debate whether Skyrim is a good fit for an HD remaster, make fun of Ryan's socks, quiz Ryan on his first time at E3, and more!","player_loc":"https://roosterteeth.com/embed/the-patch-2016-popping-the-e3-cherry-the-patch-e3-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0705c6-37cb-4443-8ed5-56b806603f57/sm/24363-1466033891247-Patch_Day_1.jpg","duration":3118,"publication_date":"2016-06-18T03:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-zelda-best-at-e3-new-death-stranding-details-re7-demo-not-in-the-game-the-know","changefreq":"weekly","video":[{"title":"2016:E44 - Zelda BEST At E3? + New Death Stranding Details + RE7 Demo Not in the Game? - The Know","description":"Legend of Zelda is the most talked about game at E3, plus new info about Kojima's new game, and Resident Evil 7's demo might be just a little misleading. We've got all the headlines you might have missed from the last few days of E3!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-zelda-best-at-e3-new-death-stranding-details-re7-demo-not-in-the-game-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fd81cb4-d2ca-42c4-9f66-3398d1d8379f/sm/238166-1466187597279-e3_round_up.jpg","duration":387,"publication_date":"2016-06-17T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-new-x-b-o-x-resident-evil-7-god-of-war-4-k-o-j-i-m-a-e3-monday-conference-recap","changefreq":"weekly","video":[{"title":"2016:E397 - NEW XBOX, RESIDENT EVIL 7, GOD OF WAR 4, KOJIMA: E3 Monday Conference Recap","description":"The E3 hype train keeps moving full steam ahead. Did you miss anything from the Microsoft Ubisoft or Sony announcements? We’ve got you covered with a recap of the biggest announcements from each event.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-new-x-b-o-x-resident-evil-7-god-of-war-4-k-o-j-i-m-a-e3-monday-conference-recap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5a8a59c-7b14-4f0e-8119-61c0055825da/sm/238166-1465925644789-e3_monday_2.jpg","duration":490,"publication_date":"2016-06-14T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-q-u-a-k-e-new-star-w-a-r-s-mass-e-f-f-e-c-t-e3-sunday-conference-recap","changefreq":"weekly","video":[{"title":"2016:E396 - QUAKE, NEW STAR WARS, MASS EFFECT: E3 Sunday Conference Recap","description":"The first 2 press conferences of this years E3 are over and done with. But no worries if you missed anything because we have a recap for you of what EA and Bethesda announced on stage.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-q-u-a-k-e-new-star-w-a-r-s-mass-e-f-f-e-c-t-e3-sunday-conference-recap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8096769-08d4-4219-89e9-ffb3185440c1/sm/238166-1465837291004-ea_bethesda_2.jpg","duration":474,"publication_date":"2016-06-13T17:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-hyper-light-drifter","changefreq":"weekly","video":[{"title":"2016:E6 - Hyper Light Drifter","description":"Join Ashley Jenkins, Gus Sorola, Meg Turney and Ryan Haywood as they discuss the indie action game Hyper Light Drifter on this week's Patch Game Club! This episode originally aired on May 8, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-hyper-light-drifter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4669fe2a-65a8-4bc5-8425-36006d851793/sm/2013912-1465576928213-gc_-_HYPER_LIGHT_DRIFTER_-_THUMB.jpg","duration":944,"publication_date":"2016-06-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-1-microtrantasction-confirmed","changefreq":"weekly","video":[{"title":"2016:E395 - Battlefield 1 Microtransactions CONFIRMED","description":"Battlefield 1's setting might not be the only thing stuck in the past. According to EA's CEO, the game is still going to have paid map packs and a variety of other microtransactions.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-1-microtrantasction-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2503251b-ec8f-44aa-ac6d-fe85d6b04446/sm/238166-1465593318496-battlefield_microtranastions_r4.jpg","duration":424,"publication_date":"2016-06-10T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-confirms-ps4-neo","changefreq":"weekly","video":[{"title":"2016:E394 - Sony CONFIRMS PS4 Neo Details!","description":"Oh snap! Sony has just confirmed that the PS4K -- or NEO -- is real! However, we may have to wait just a little bit before we see it...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-confirms-ps4-neo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/375af001-1165-48ab-b7da-c8e46cdc7a3e/sm/238166-1465584113163-ps4_neo_confirmed_r2.jpg","duration":456,"publication_date":"2016-06-10T18:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-windows-store-is-a-disaster","changefreq":"weekly","video":[{"title":"2016:E393 - Windows Store Is a \"Disaster\"","description":"Windows Store is a \"disaster?\" That's what one source close to Microsoft says, dishing out a number of troubling comments about Microsoft's cross-platform play ambitions.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-windows-store-is-a-disaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daafa039-1dd2-475f-9721-e81ef5f88752/sm/238166-1465514032654-misrotsoft_store_r4.jpg","duration":417,"publication_date":"2016-06-09T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-e3-empty-promises","changefreq":"weekly","video":[{"title":"2016:E392 - E3: Who's Full of HOT AIR?","description":"Things don't always go as planned after E3. A new study shows that the majority of games we see at E3 don't come out for a looooong time. In fact, the numbers are even worse than you think.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-e3-empty-promises","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27ae1f1e-7389-4212-a872-385c31fafcf6/sm/238166-1465508108510-thumbnail.jpg","duration":559,"publication_date":"2016-06-09T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-big-surprises-at-e3-sony-and-ms-lose-exclusives-mortal-kombat-pro-censored","changefreq":"weekly","video":[{"title":"2016:E43 - \"Big Surprises\" at E3 + Sony and MS Lose Exclusives + Mortal Kombat Pro CENSORED","description":"E3's getting even more hyped, Sony and Microsoft are losing two big exclusive developers, and an eSports player was banned from using Mortal Kombat fatalities. What is this world coming to?!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-big-surprises-at-e3-sony-and-ms-lose-exclusives-mortal-kombat-pro-censored","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1dc11e5-1d49-4f06-af5d-0507b919435b/sm/238166-1465497539099-Roundup_Thumbnail_jun_9_r1.jpg","duration":480,"publication_date":"2016-06-09T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-watch-dogs-2-will-it-actually-be-good-160","changefreq":"weekly","video":[{"title":"2016:E160 - Watch Dogs 2 Actually GOOD? – #160","description":"Join Gus Sorola, Ashley Jenkins, Meg Turney, and Ryan Haywood as they discuss E3, Watch Dogs 2, Paragon, and more on this week's The Patch! This episode originally aired on June 9, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-watch-dogs-2-will-it-actually-be-good-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14c9dfdb-5dbf-4836-b81a-bd582b079103/sm/2013912-1465486167073-p160_-_TEMP_THUMB.jpg","duration":3793,"publication_date":"2016-06-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-destiny-rise-of-iron-leaks-abandons-last-gen","changefreq":"weekly","video":[{"title":"2016:E391 - Destiny Rise Of Iron Leaks; ABANDONS Last Gen?","description":"Destiny's expansion leaked AGAIN? We've got all the Rise of Iron details early, plus some info that last generation guardians might not be too happy about.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-destiny-rise-of-iron-leaks-abandons-last-gen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7197ea21-6202-4688-a0ef-b8b7f8c9dd4a/sm/238166-1465428934617-destiny_2_r6.jpg","duration":407,"publication_date":"2016-06-09T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-watch-dogs-2-r-e-v-e-a-l-e-d-the-know","changefreq":"weekly","video":[{"title":"2016:E390 - Watch Dogs 2 REVEALED! - The Know","description":"Now with double the hacks! That's right, two hacks for two hands; that's four hacks! Don't buy discount games that only give you one hack. Watch Dogs 2: The Game With Eighteen Hacks Per Hack.\n\n\n\nSOURCES:\n\ntheRadBrad Leak: https://twitter.com/thaRadBrad/status/738073846939...\n\nIGN Promo Material: http://www.windowscentral.com/watch-dogs-2-will-be...\n\nTwitch Leaked Trailer: https://twitter.com/Fobwashed/status/7404125106548...\n\nGameSpot Reveal Stream: \n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\n\n\nRooster Teeth Store: http://store.roosterteeth.com/\n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the AH Channel: http://bit.ly/AHYTChannel\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Red vs. Blue Channel: http://bit.ly/RvBChannel\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-watch-dogs-2-r-e-v-e-a-l-e-d-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07c0eb80-3165-4f39-9d11-6b76dfa95797/sm/1533704-1465422094186-FH_Thumb_11_copy_4.jpg","duration":399,"publication_date":"2016-06-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-everything-you-ll-see-at-e3","changefreq":"weekly","video":[{"title":"2016:E389 - Everything You'll See At E3","description":"E3's just around the corner! Here's everything you need to know about the event, including all the confirmed big games, and what you should expect from each publisher.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-everything-you-ll-see-at-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/529a1230-6daa-4686-8ec5-8e022cffe2cc/sm/238166-1465420914989-whats_at_e3_r2.jpg","duration":618,"publication_date":"2016-06-08T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-fallout-4-stolen-mods-need-legal-action","changefreq":"weekly","video":[{"title":"2016:E388 - Fallout 4 Stolen Mods Need Legal Action?","description":"It's a war of console versus PC gamers in the Fallout 4 modding community! Modders are accusing one another of stealing content, leading to some pretty huge...fallout...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-fallout-4-stolen-mods-need-legal-action","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb2cbf51-404f-4a76-97da-d34489e00efd/sm/238166-1465343437488-fallout_4_mods_THUMBNAIL.jpg","duration":559,"publication_date":"2016-06-08T00:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-join-us-for-e3-2016","changefreq":"weekly","video":[{"title":"2015-2016:E3 - Join Rooster Teeth at E3!","description":"E3 starts this weekend, and Rooster Teeth is ready for it. We'll be out in force. We've got five days of livestreams planned to get you all the E3 goodness you can handle. CAN YOU HANDLE IT?!","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-join-us-for-e3-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05544893-faf0-43f1-898a-b95886518773/sm/24363-1465343713570-thumbnail.jpg","duration":503,"publication_date":"2016-06-07T23:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-bethesda-s-e3-plans-r-e-v-e-a-l-e-d-skyrim-remastered","changefreq":"weekly","video":[{"title":"2016:E387 - Bethesda's E3 Plans REVEALED: Skyrim Remastered","description":"Bethesda's going to be announcing a remastered Skyrim at E3? That's what the rumor says, and some other press outlets have corroborated the information. We've also got reports about all the rest of Bethesda's announcements.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-bethesda-s-e3-plans-r-e-v-e-a-l-e-d-skyrim-remastered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f6a2920-dba8-447d-8012-95385be56efe/sm/238166-1465337718525-bethesda_e3_r5.jpg","duration":475,"publication_date":"2016-06-07T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-watch-dogs-2-leaks-early-overwatch-cross-platform-play-pt-successor-canceled","changefreq":"weekly","video":[{"title":"2016:E42 - Watch Dogs 2 Leaks Early + Overwatch Cross Platform Play? + PT Successor Canceled","description":"2016:E42 - Watch Dogs 2 Leaks Early + Overwatch Cross Platform Play? + PT Successor Canceled","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-watch-dogs-2-leaks-early-overwatch-cross-platform-play-pt-successor-canceled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9538af4e-019e-40fe-8886-7c5e046b1326/sm/238166-1465324571095-Roundup_Thumbnail_jun_7.jpg","duration":446,"publication_date":"2016-06-07T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dead-rising-4-leaks","changefreq":"weekly","video":[{"title":"2016:E386 - Dead Rising 4 Leaks?","description":"Leaked screenshots and multiple sources have confirmed that Dead Rising 4 is real and may be an exclusive for Xbox One. Will we be seeing it at Microsoft's E3 press event next week?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dead-rising-4-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff0d878f-f7bd-463a-a82a-daffd10f9370/sm/238166-1465253744935-dr_4_leaks.jpg","duration":398,"publication_date":"2016-06-06T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-know-stars-wars","changefreq":"weekly","video":[{"title":"2016:E385 - Star Wars Battlefront 3 Remake SAVED? - The Know","description":"The lord above is merciful because Galaxy in Turmoil looks pretty damn good. Let's hope the overlords at Lucasfilm don't catch wind of it.\n\n\n\nSOURCES:\n\nGamesIndustry Interview: http://www.gamesindustry.biz/articles/2012-04-26-t...\n\nFrontwire Studios: http://frontwirestudios.com/\n\nSteam Distribution Announcement: http://frontwirestudios.com/official-announcement-...\n\nFrontwire Developer Diary: \n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-know-stars-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7700452-6813-4abb-8711-4f7e46995abf/sm/2371242-1465248900504-FH_Thumb_11_copy_39.jpg","duration":357,"publication_date":"2016-06-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-infinite-warfare-failed-a-l-r-e-a-d-y","changefreq":"weekly","video":[{"title":"2016:E384 - Infinite Warfare Failed ALREADY?","description":"Trailer dislikes may have actually turned into bad sales for Call of Duty: Infinite Warfare. According to reports, the game's pre-orders are WAY under what they were at this time last year.\n\n\n\nThis episode sponsored by Loot Anime. Use offer code THEKNOW to get $3 off a new subscription. http://bit.ly/1Rxxa1q","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-infinite-warfare-failed-a-l-r-e-a-d-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48493c95-e20f-4e3b-aea8-c4faad16dcc8/sm/238166-1465246600316-cod_preorder_r1.jpg","duration":410,"publication_date":"2016-06-06T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-metal-gear-pachinko-most-hated-video-on-you-tube","changefreq":"weekly","video":[{"title":"2016:E383 - Metal Gear Pachinko: Most Hated on YouTube?","description":"Metal Gear pachinko has been the butt of a long-running internet joke, but now it's REAL. And guess what, it's already going down in internet infamy. Let's find out just how much people hate it.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-metal-gear-pachinko-most-hated-video-on-you-tube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa6e901b-8d3b-4c9e-9457-d18a5a1f0a78/sm/238166-1464990884680-mgs_4.jpg","duration":378,"publication_date":"2016-06-03T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-overwatch-players-banned-f-o-r-e-v-e-r","changefreq":"weekly","video":[{"title":"2016:E382 - Overwatch Players Banned FOREVER?","description":"Apparently when Blizzard says banned they mean it, as some cheaters are finding out the hard way. Players that have used cheating tools in Overwatch are reporting getting banned repeatedly even after buying new copies of the game, changing IP addresses and using VPNs. No respawn timer for you cheaters.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-overwatch-players-banned-f-o-r-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e8db7f0-20ea-4eb8-bad6-acd34da48473/sm/238166-1464974510134-overwatch_cheaters_r2.jpg","duration":490,"publication_date":"2016-06-03T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gta-online-going-away","changefreq":"weekly","video":[{"title":"2016:E381 - GTA Online Going Away?","description":"Is GTA Online going, offline? According to the CEO of GTA's publisher it is, so that they can \"rest the franchise\". Will this be a signal that GTA 6 is in development? What is going to happen to our virtual real estate and vehicles, will no one think of the let's plays?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gta-online-going-away","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef0b97ac-0ad5-4bbe-a4f4-91a4a2ee62a6/sm/238166-1464910529270-gta_online.jpg","duration":525,"publication_date":"2016-06-02T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-delayed-for-v-r","changefreq":"weekly","video":[{"title":"2016:E380 - NX Delayed For VR?","description":"Well, Nintendo, if you won't talk about the NX, we WILL. More new rumors and leaks are circulating. This time, apparent confirmation that the NX will include a handheld after all, and apparently the whole thing was pushed back because Nintendo heard about this new thing called VR and figured they should add it. What could go wrong?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-delayed-for-v-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b83a685b-0807-4514-b6ef-c660d23d7c7e/sm/238166-1464908550418-nx_vr_r4.jpg","duration":534,"publication_date":"2016-06-02T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-consoles-at-e3-confirmed-64-player-battlefield-1-pokemon-fans-lead-protest-the-know","changefreq":"weekly","video":[{"title":"2016:E41 - New Consoles at E3 Confirmed? + 64 Player Battlefield 1 + Pokemon Fans Lead Protest - The Know","description":"Here is your first news round up for June 2016. The GameStop CEO expects new hardware at E3. Battlefield 1 gets 64 player livestream event. Nintendo has Pokemon localization drama and 6 more stories.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-consoles-at-e3-confirmed-64-player-battlefield-1-pokemon-fans-lead-protest-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/013927ca-c3f7-4f27-a36f-fc18cf64ce54/sm/238166-1464898407766-Roundup_jun_3_r2.jpg","duration":433,"publication_date":"2016-06-02T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-e3-p-r-e-d-i-c-t-i-o-n-s-what-s-the-future-hold-159","changefreq":"weekly","video":[{"title":"2016:E159 - E3 PREDICTIONS: What’s the Future Hold? – #159","description":"Join Gus Sorola, Adam Ellis, Ashley Jenkins and Ryan Haywood as they discuss E3, Kingdom Hearts, AMD and more on this week's The Patch! This episode originally aired on June 1, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-e3-p-r-e-d-i-c-t-i-o-n-s-what-s-the-future-hold-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da248dd-702d-463d-90fe-1670cce60899/sm/2013912-1464880442153-p159_-_TEMP_THUMB.jpg","duration":3808,"publication_date":"2016-06-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-marvel-movie-plans-leaked","changefreq":"weekly","video":[{"title":"2016:E41 - Marvel Movie Plans Leaked","description":"Tons of Marvel movie plans are leaking onto the internet -- giving us cool glimpses of their ultimate plans, the possible villain of Guardians of the Galaxy Volume 2, and even Planet Hulk.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-marvel-movie-plans-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ab8f260-eebb-4ecd-83d4-e520984de5d9/sm/238166-1464822207342-marvel_2_r5.jpg","duration":407,"publication_date":"2016-06-01T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-xbox-price-drop-new-xbox-this-m-o-n-t-h-the-know","changefreq":"weekly","video":[{"title":"2016:E379 - Xbox Price Drop! New Xbox THIS MONTH? - The Know","description":"We're through the looking glass, people... except this glass costs $300 to look through.\n\n\n\nSOURCES:\n\nXbox One Price Drop: http://www.xbox.com/en-US/xbox-one/consoles?xr=she...\n\nMicrosoft Store Bundle: http://www.microsoftstore.com/store/msusa/en_US/pd...\n\nMajor Nelson Tweet: https://twitter.com/majornelson/status/73802769383...\n\nE3 Conference Dates: http://www.e3expo.com/url_takeover\n\nFox News Interview: http://video.foxbusiness.com/v/4921096753001/games...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-xbox-price-drop-new-xbox-this-m-o-n-t-h-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd2d10b3-d9a2-4eb2-8bbd-b9436055a3a2/sm/2371242-1464816641871-FH_Thumb_11_copy_32.jpg","duration":288,"publication_date":"2016-06-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ubisoft-hostile-takeover-imminent","changefreq":"weekly","video":[{"title":"2016:E378 - Ubisoft Hostile Takeover Imminent?","description":"Ubisoft's founders have been trying to fend off a hostile takeover for months now -- and things aren't looking so good. Could one of the biggest videogame publishers in the world soon be under new management?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ubisoft-hostile-takeover-imminent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cd652fe-0697-4cd6-a18a-7088154b6c6c/sm/238166-1464814256525-ubisoft_r4.jpg","duration":472,"publication_date":"2016-06-01T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-star-wars-rogue-one-in-t-r-o-u-b-l-e","changefreq":"weekly","video":[{"title":"2016:E40 - Star Wars Rogue One In TROUBLE?","description":"Star Wars: Rogue One might be dabbling in the dark side of filmmaking. Sources close to the film are saying Disney is not happy with the early version of the film, calling for massive reshoots.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-star-wars-rogue-one-in-t-r-o-u-b-l-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f3d4ae0-b597-4230-9150-367458b43dd6/sm/238166-1464733412694-starwars_5.jpg","duration":437,"publication_date":"2016-05-31T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-death-threats-over-no-man-s-sky","changefreq":"weekly","video":[{"title":"2016:E377 - Death Threats Over No Man's Sky","description":"If you're going to delay your game, you might as well not be alive any more, according to some rather \"passionate\" No Man's Sky fans. What's with giving game developers death threats?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-death-threats-over-no-man-s-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff724247-1162-4798-bd65-3ec20b4a8183/sm/238166-1464729214498-no_mans_sky_r3.jpg","duration":401,"publication_date":"2016-05-31T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-xbox-vr-at-e3-fallout-4-mods-live-on-consoles-arkham-hd-graphics-are-worse","changefreq":"weekly","video":[{"title":"2016:E40 - Xbox VR at E3? + Fallout 4 Mods LIVE on Consoles + Arkham HD Graphics Are Worse?","description":"2016:E40 - Xbox VR at E3? + Fallout 4 Mods LIVE on Consoles + Arkham HD Graphics Are Worse?","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-xbox-vr-at-e3-fallout-4-mods-live-on-consoles-arkham-hd-graphics-are-worse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c846f8e3-fdb7-481a-8d12-81cbaae54abf/sm/238166-1464723083439-Roundup_may_31.jpg","duration":538,"publication_date":"2016-05-31T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-psvr-awful-on-original-p-s4","changefreq":"weekly","video":[{"title":"2016:E376 - PSVR \"Awful\" On Original PS4?","description":"An industry insider has said some strong words about the original PS4's VR capabilities. Does this mean you need a PS4 Neo to handle VR?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-psvr-awful-on-original-p-s4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0653a672-9dc5-4f72-bacc-e795292f36b9/sm/238166-1464388133591-psvr.jpg","duration":366,"publication_date":"2016-05-27T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-people-are-pissed-about-captain-america","changefreq":"weekly","video":[{"title":"2016:E39 - Captain America RUINED","description":"Captain America's got a dirty little secret that's not so secret anymore. And guess what, the internet is up in arms about it. Never change, internet.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-people-are-pissed-about-captain-america","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e117481f-d7d9-473a-827a-88de2548f171/sm/238166-1464387038519-capt_thumb.jpg","duration":386,"publication_date":"2016-05-27T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-you-tuber-suing-you-tubers-over-fair-use","changefreq":"weekly","video":[{"title":"2016:E38 - YouTubers Go To COURT","description":"We really wish we didn't have more fair use woes to report on, but here we are. YouTubers H3H3 are being sued by another YouTuber in what could be a landmark fair use case. Fortunately, there's a silver lining.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-you-tuber-suing-you-tubers-over-fair-use","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5c46b75-e51f-4e00-a42f-4271b67ed145/sm/238166-1464304361288-yt_law_2.jpg","duration":386,"publication_date":"2016-05-26T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-new-xbox-4-times-more-powerful-than-xbox-one","changefreq":"weekly","video":[{"title":"2016:E375 - New Xbox 4 Times More Powerful Than Xbox One?","description":"We've got a new Xbox coming in 2016, and another coming in 2017, if new reports are to be believed. And the second of these new boxes actually beats out the PS4 NEO in terms of power.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-new-xbox-4-times-more-powerful-than-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a836e8fa-9e20-4f1d-a35f-521d5b2074d0/sm/238166-1464297679684-XBOX_4.jpg","duration":952,"publication_date":"2016-05-26T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-titanfall-2-leaks-no-man-s-sky-delayed-witcher-3-expansion-reviews","changefreq":"weekly","video":[{"title":"2016:E39 - Titanfall 2 Leaks + No Man's Sky Delayed + Witcher 3 Expansion Reviews","description":"Hey take a peek at today’s roundup, we have Titanfall 2 leaks, No Man’s Sky delayed and early reviews for the Witcher 3 expansion, plus 6 more stories.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-titanfall-2-leaks-no-man-s-sky-delayed-witcher-3-expansion-reviews","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d0a31ef-2ef1-4803-a93e-ae31de1692ce/sm/238166-1464288478261-Roundup_Thumbnail_may_26.jpg","duration":480,"publication_date":"2016-05-26T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-who-watches-the-overwatch-158","changefreq":"weekly","video":[{"title":"2016:E158 - Who Watches the Overwatch? – #158","description":"Join Gus Sorola, Ashley Jenkins, Jeremy Dooley, and Ryan Haywood as they discuss Overwatch, Titianfall 2, Shadowrun, and more on this week's The Patch! This episode originally aired on May 25, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-who-watches-the-overwatch-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d34aa4-73bf-459f-87e5-75681ea6a91d/sm/2013912-1464276891544-p158_-_TEMP_THUMB.jpg","duration":3768,"publication_date":"2016-05-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-warcraft-will-it-suck","changefreq":"weekly","video":[{"title":"2016:E37 - Warcraft Will It Suck?","description":"Somebody broke the Warcraft movie review embargo and now early reviews are leaking all over the place. And so far, things aren't looking great.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-warcraft-will-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a129e58-e070-4fa7-b1d6-143dab854362/sm/238166-1464221287281-warcraft_3.jpg","duration":533,"publication_date":"2016-05-26T00:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-overwatch-game-of-the-year-already","changefreq":"weekly","video":[{"title":"2016:E374 - Overwatch Game Of The Year Decided?","description":"You already love Overwatch, but now you know that reviewers love it too! The game's score already makes it a contender for GOTY status -- and maybe even more than that.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-overwatch-game-of-the-year-already","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4287a4c4-e6d5-403b-bd8b-396efa10793f/sm/238166-1464220489483-overwatch_3.jpg","duration":471,"publication_date":"2016-05-25T23:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-should-overwatch-cost-40-the-know","changefreq":"weekly","video":[{"title":"2016:E372 - Should Overwatch Cost $40? - The Know","description":"We're pretty sure everyone will say yes, since cheaper is better. As usual, it's not that simple.\n\n\n\nSOURCES:Kotaku's Overwatch Price Report: http://kotaku.com/overwatch-base-price-will-be-40-...Twinfinite Justin Carter Editorial: http://twinfinite.net/2016/05/overwatchs-price-dis...Battleborn Drops to $40: http://kotaku.com/battleborn-drops-to-40-just-in-t...An Old Ass Thread Talking About $50 PC Games: http://www.mmo-champion.com/threads/989667-Since-w...\n\n\n\nWritten By: Lawrence SonntagHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnowFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT Rooster Teeth: http://roosterteeth.com/ Achievement Hunter: http://achievementhunter.comBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3GumSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0Subscribe to The Know Channel: http://bit.ly/1zhUav4Subscribe to the Funhaus Channel: http://bit.ly/17qQNJjSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYxSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-should-overwatch-cost-40-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88ab162e-d614-4f17-ae28-836d2d2d8a8e/sm/2371242-1464215823217-FH_Thumb_11_copy_24.jpg","duration":567,"publication_date":"2016-05-25T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-sony-charges-for-fair-use","changefreq":"weekly","video":[{"title":"2016:E63 - Sony Charges For Fair Use","description":"What’s that sound? Oh it’s more Youtube copyright drama, this time involving Sony’s music branch. The company claimed content in videos by the educational bluegrass group Hudson Valley Bluegrass Association was copyrighted. When the bluegrass artists disputed this claim under fair use, Sony tried to license the fair use rights to them... for $500.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-sony-charges-for-fair-use","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58b185fa-575b-442e-93ee-863c46204373/sm/238166-1464135161998-sony_vs_fair_use.jpg","duration":393,"publication_date":"2016-05-25T00:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-rip-half-life-10-years","changefreq":"weekly","video":[{"title":"2016:E371 - RIP Half-Life 10 Years","description":"This week marks the tenth anniversary of the announcement of Half-Life 2: Episode 3. Let’s take a look back at the long meme generating history of this title. Will we ever get another Half-Life game? Maybe you should ask the G-Man because Gabe Newell sure isn’t talking.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-rip-half-life-10-years","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e4a052d-c5bd-4a8e-a373-df6f4207283c/sm/238166-1464133253114-HL2_ep_3.jpg","duration":494,"publication_date":"2016-05-24T23:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-ff-xv-director-slams-team-gran-turismo-sport-announced-angry-birds-beats-civil-war","changefreq":"weekly","video":[{"title":"2016:E38 - FF XV Director Slams Team + Gran Turismo Sport Announced + Angry Birds Beats Civil War","description":"Here is your Tuesday news round up. Final Fantasy XV director talks about difficulties with the series. New Gran Turismo game announced with its beta already canceled. Angry Birds beats Captain America in the box office and more.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-ff-xv-director-slams-team-gran-turismo-sport-announced-angry-birds-beats-civil-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7918f95a-e685-48e6-9861-75b8ba5ca22f/sm/238166-1464112775525-may_24_round_up.jpg","duration":431,"publication_date":"2016-05-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-oculus-drm-enables-piracy","changefreq":"weekly","video":[{"title":"2016:E370 - Oculus DRM enables piracy","description":"Oculus changed its mind about DRM, and things didn't go so hot. In fact, it might be easier to pirate their games than ever. Oops.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-oculus-drm-enables-piracy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c3a5072-b9d0-4de7-b9b0-e55f9e41b54a/sm/238166-1464050376787-oclous_drm.jpg","duration":415,"publication_date":"2016-05-24T00:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-know-5-23","changefreq":"weekly","video":[{"title":"2016:E369 - Did Uncharted 4 Outsell Uncharted 3? - The Know","description":"Normally we like to answer the question we ask in the title but this one's extra tricky. Tune in for that mystery plus Adam's wild Vegas stories.\n\n\n\nSOURCES:\n\nSales Announcements: http://blog.us.playstation.com/2016/05/23/uncharte...\n\nHalo 5 Sales Performances: http://news.xbox.com/2015/11/04/halo-5-guardians-b...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-know-5-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3f808a2-fd6b-4c8f-aaa7-6ae0597558dc/sm/2371242-1464044146706-FH_Thumb_11_copy_20.jpg","duration":514,"publication_date":"2016-05-23T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-family-guy-steals-from-youtube","changefreq":"weekly","video":[{"title":"2016:E36 - Family Guy Steals From Youtube","description":"We have another case of Youtube copyright drama, this time involving the long running animated show Family Guy. The show pulled clips from Youtube to use in an episode, but then flagged original clips once the show was posted. Not very funny Family Guy.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-family-guy-steals-from-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7bb60b5-fbc5-48f7-8f69-664146196ee7/sm/238166-1464038588585-family_guy_thumb.jpg","duration":411,"publication_date":"2016-05-23T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-witcher-done-f-o-r-e-v-e-r-the-know","changefreq":"weekly","video":[{"title":"2016:E367 - The Witcher Done FOREVER? - The Know","description":"That's a wrap on the age of Witcher. Will Witching ever be the same? Have we seen the Witchiest Witchers that will ever Witch? These questions and more, answered!\n\n\n\nSOURCES:\n\nEurogamer Interview: http://www.eurogamer.net/articles/2016-05-19-dont-...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: James Willems, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-witcher-done-f-o-r-e-v-e-r-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3e960c1-386b-46f2-b299-69c07d26e56c/sm/2371242-1463781027145-The_Witcher_Done_Forever_Thumbnail.jpg","duration":548,"publication_date":"2016-05-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-destiny-expansion-leaked","changefreq":"weekly","video":[{"title":"2016:E366 - Destiny Expansion LEAKED","description":"Destiny's next expansion has leaked -- although maybe it was leaked on purpose, if the conspiracy theorists are to be believed. Anyway, we break down Rise of Iron information, and theorize where Destiny might be headed next.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-destiny-expansion-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcd43101-4b57-4a73-b549-847c55863e98/sm/238166-1463778463999-destiny_2.jpg","duration":414,"publication_date":"2016-05-20T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-gamers-defeat-hackers","changefreq":"weekly","video":[{"title":"2016:E62 - Gamers Defeat Hackers","description":"Ransomware targeting PC gamers has finally been shut down -- and the hackers responsible want you to know that they're sorry. As it turns out, gamers might be responsible for their change of heart.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-gamers-defeat-hackers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd174b26-dd16-4c31-bd06-9b461f74fbd8/sm/238166-1463771496303-randsomware_1.jpg","duration":556,"publication_date":"2016-05-20T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-is-bioware-moving-on-from-rp-gs","changefreq":"weekly","video":[{"title":"2016:E365 - Is Bioware Moving On From RPGs?","description":"EA is hinting that Bioware has ditched RPGs for its new franchise, focusing instead on making action games. Bioware's been dabbling with this for years now, but is their transformation finally complete?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-is-bioware-moving-on-from-rp-gs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/840578e5-a281-44eb-8e0e-00d67805cdaf/sm/238166-1463699314524-bioware_redbox_2.jpg","duration":443,"publication_date":"2016-05-19T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-games-on-pc","changefreq":"weekly","video":[{"title":"2016:E364 - Nintendo Games on PC?","description":"Nintendo announced some new business plans and corporate restructuring this week, some of which may indicate that we could be seeing Nintendo games on PC. Hopefully not in MOBA form.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-games-on-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086e5466-bd47-4ca5-bc56-a84688e90e28/sm/238166-1463690944202-nintendo_thumb_4.jpg","duration":464,"publication_date":"2016-05-19T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-new-rockstar-game-at-e3-kojima-s-new-mascot-tetris-movie-trilogy-the-know","changefreq":"weekly","video":[{"title":"2016:E37 - New Rockstar Game at E3? + Kojima's New Mascot + Tetris Movie Trilogy?! - The Know","description":"Everyone's gearing up for E3, including Rockstar and Square Enix. Plus, Kojima officially unveiled the secret behind his company. Also, someone thought it'd be a good idea to turn Tetris into a movie trilogy.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-new-rockstar-game-at-e3-kojima-s-new-mascot-tetris-movie-trilogy-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30961990-0472-411e-8234-277e7d33687e/sm/238166-1463678287217-Roundup_Thumbnail_may_19.jpg","duration":447,"publication_date":"2016-05-19T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-charting-the-uncharted-157","changefreq":"weekly","video":[{"title":"2016:E157 - Charting the Uncharted - #157","description":"Join Gus Sorola, Jeremy Dooley, Ryan Haywood, and Meg Turney as they discuss Uncharted 4, DOOM, Fallout DLC and more on this week's The Patch! This episode originally aired on May 18, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-charting-the-uncharted-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b22b94ce-9333-423b-8b14-7218cfcd0ece/sm/2013912-1463670867182-p157_-_THUMB.jpg","duration":3696,"publication_date":"2016-05-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-resident-evil-7-at-e3-the-know","changefreq":"weekly","video":[{"title":"2016:E363 - Resident Evil 7 at E3? - The Know","description":"We're about due for another one, but will this one be good? More importantly, will have Wesker? Even more importantly, will Wesker be wearing even more Neo coats?\n\n\n\nSOURCES:\n\nDr. Toto Tweet #1: https://twitter.com/serkantoto/status/732620390594...\n\nDr. Toto Tweet #2: https://twitter.com/serkantoto/status/732621188355...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-resident-evil-7-at-e3-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4edbd81e-88e1-470f-bd7c-e0637e1eb174/sm/2371242-1463606050015-FH_Thumb_11_copy_17.jpg","duration":333,"publication_date":"2016-05-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-superhero-tv-shows-in-trouble","changefreq":"weekly","video":[{"title":"2016:E35 - Superhero TV Shows in Trouble?","description":"A Marvel actress says the company doesn't care about TV, plus Marvel shows and DC shows are in all kinds of trouble on network TV. What's the deal? Don't people love superheroes?!","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-superhero-tv-shows-in-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ec18e24-548d-4ac0-b740-035e6ecc195e/sm/238166-1463611048606-superhero_shows_2.jpg","duration":528,"publication_date":"2016-05-18T22:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-reviewers-bad-at-games","changefreq":"weekly","video":[{"title":"2016:E362 - Reviewers Bad at Games?","description":"If a video game critic sucks at Doom, does anybody see it? Well they did this time, and it started a big, weird discussion about whether or not video game reviewers need to be good at games.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-reviewers-bad-at-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9de0c877-ffc0-451f-b1f3-12dbc3339add/sm/238166-1463604734114-reviews_bad_at_games_2.jpg","duration":566,"publication_date":"2016-05-18T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-e3-2016-biggest-e-v-e-r","changefreq":"weekly","video":[{"title":"2016:E361 - E3 2016 Biggest EVER?","description":"Everyone's worried about E3 no-shows, but it looks like we've got more press events than EVER. We break down everything we know about the gaming expo.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-e3-2016-biggest-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/490cf89b-4fdf-42c2-aff2-f79064b9efa7/sm/238166-1463526438531-e3_thumb_4.jpg","duration":560,"publication_date":"2016-05-17T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-uncharted-4-review-drama","changefreq":"weekly","video":[{"title":"2016:E360 - Uncharted 4 Review DRAMA","description":"People are in such a huff about an Uncharted 4 review that they've created a petition asking it to be removed from Metacritic. Could this be Uncharted 4: A Metacritic's End?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-uncharted-4-review-drama","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caf1234a-010e-4ef6-bf2a-81bdfd656483/sm/238166-1463520184358-uncharted_thumb_final.jpg","duration":538,"publication_date":"2016-05-17T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-steam-sale-leaked-porn-hub-hacked-battlefield-1-trailer-accuracy","changefreq":"weekly","video":[{"title":"2016:E36 - Steam Sale Leaked + Porn Hub Hacked? + Battlefield 1 Trailer Accuracy","description":"Steam's going to make a run on your wallet soon, Pornhub may have gotten hit with a fake hack, and nerds break down how true to life Battlefield 1's trailer is. You know, just your typical round-up stuff.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-steam-sale-leaked-porn-hub-hacked-battlefield-1-trailer-accuracy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa91c555-beb2-4dfb-bf1d-52dd369adfde/sm/238166-1463508780338-Roundup.jpg","duration":504,"publication_date":"2016-05-17T18:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-nx-latest-r-u-m-o-r-s-the-know","changefreq":"weekly","video":[{"title":"2016:E359 - Nintendo NX LATEST RUMORS! - The Know","description":"At this point, an IBM supercomputer could probably generate Nintendo NX rumor episodes on The Know.\n\n\n\nSOURCES:\n\nTatsumi Kimishima Asahi Shimbun Interview: http://www.asahi.com/articles/ASJ4Z0R76J4YPLFA002....\n\nPerfectly Nintendo Translation: http://www.perfectly-nintendo.com/nintendo-asahi-s...\n\nEmily Rogers Rumor Post: https://arcadegirl64.wordpress.com/2016/05/13/so-a...\n\nSemi-Accurate Nvidia Report: http://semiaccurate.com/2016/05/12/guess-whos-sili...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, James Willems, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-nx-latest-r-u-m-o-r-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74b1a63f-ab12-4f51-bd7c-9b0d8d4f9a3b/sm/2371242-1463447263267-FH_Thumb_11_copy_14.jpg","duration":591,"publication_date":"2016-05-17T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-robots-stealing-jobs-a-l-r-e-a-d-y","changefreq":"weekly","video":[{"title":"2016:E61 - Robots Stealing Jobs ALREADY?","description":"First we've got AI gambling, and now they're working as lawyers? It sounds like science fiction, but it's turning into reality. How long before the robots take all of our jobs?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-robots-stealing-jobs-a-l-r-e-a-d-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/663d22ae-4856-4b45-9f8e-84c9a3c5714a/sm/238166-1463439523644-robots_jobs_2.jpg","duration":536,"publication_date":"2016-05-16T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-nintendo-making-movies","changefreq":"weekly","video":[{"title":"2016:E34 - Nintendo Making Movies","description":"Nintendo's trying to pull a Marvel, according to a new interview with the company's president. We all know this didn't go so well the last time Nintendo tried it, but maybe it'll get better this time? Either way, we should expect a new movie from them in the next 2-3 years.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-nintendo-making-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae730ef1-1f96-4e10-ad8c-a2ae0a7f7b68/sm/238166-1463432183667-nintendo_film_2.jpg","duration":476,"publication_date":"2016-05-16T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-capcom-is-sorry-about-street-fighter-v","changefreq":"weekly","video":[{"title":"2016:E358 - Capcom Is Sorry About Street Fighter V","description":"Street Fighter V hit Capcom right where it hurts, and now the company has decided it needs to spend more time finishing games before they come out. Apparently, gamers want finished products if they pay $60. Who knew?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-capcom-is-sorry-about-street-fighter-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3d5a941-a113-440b-96f1-1b40cd09ebd7/sm/238166-1463178298132-streetfighter.jpg","duration":465,"publication_date":"2016-05-13T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-call-of-duty-modern-warfare-trilogy-leaked-b-u-t-the-know","changefreq":"weekly","video":[{"title":"2016:E357 - Call of Duty: Modern Warfare Trilogy Leaked! BUT... - The Know","description":"It looks like we ARE getting a Modern Warfare re-release, but not in the way we wanted. Activision, y u do dis.\n\n\n\nSOURCES:\n\nBest Buy Listing: http://www.bestbuy.com/site/searchpage.jsp?st=mode...\n\nVG 24/7 Report: http://www.vg247.com/2016/05/13/call-of-duty-moder...\n\nStatista.com Estimates: http://www.statista.com/statistics/321374/global-a...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Omar de Armas, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-call-of-duty-modern-warfare-trilogy-leaked-b-u-t-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de4d4f82-9251-4cdd-b45c-a82bf197b3bf/sm/2371242-1463173882810-FH_Thumb_11_copy_13.jpg","duration":524,"publication_date":"2016-05-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-overwatch-biggest-beta-e-v-e-r","changefreq":"weekly","video":[{"title":"2016:E356 - Overwatch: Biggest Beta EVER?","description":"Overwatch's beta was all kinds of a big deal, and was basically Blizzard's biggest beta ever. How big? It beat out Battleborn, Gears of War 4, and even dominated adult video searches.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-overwatch-biggest-beta-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f73ac21-dc21-4a11-bc2c-3fa92ada626c/sm/238166-1463170768139-overwatch_3r2.jpg","duration":443,"publication_date":"2016-05-13T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-crowdfunding-money-stolen-to-build-a-house","changefreq":"weekly","video":[{"title":"2016:E60 - Kickstarter Funds STOLEN","description":"It's another crowdfunding disaster, and this time somebody stole more than $300,000 to build themselves a house. This one gets weird: there's a confession video, a police investigation, and lots of other drama.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-crowdfunding-money-stolen-to-build-a-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5764aed-43cb-4a17-8c75-cadfe0e04df4/sm/238166-1463092765955-kickstarter_thumb.jpg","duration":450,"publication_date":"2016-05-12T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-assassin-s-creed-movie-will-it-fail","changefreq":"weekly","video":[{"title":"2016:E33 - Assassin's Creed Movie Will It FAIL?","description":"Could we be in an alternate universe where a video game movie might actually be GOOD? The Assassin's Creed trailer hit last night, and looks surprisingly like the game. But is the franchise relevant anymore?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-assassin-s-creed-movie-will-it-fail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4de8b8de-f5b2-40c3-ad55-e479a8fe5744/sm/238166-1463088430692-asassins_creed_2.jpg","duration":605,"publication_date":"2016-05-12T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-microsoft-has-plans-for-fable-civilization-vi-you-tube-the-game","changefreq":"weekly","video":[{"title":"2016:E35 - Microsoft Has Plans for Fable + Civilization VI + YouTube: The Game?","description":"People have been trying to buy Fable from Microsoft for tons of money, Nintendo is going free to play, and Civilization VI is real! Plus, there's lots of other stuff. Whatever, it's Thursday, so we're cramming some news into you!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-microsoft-has-plans-for-fable-civilization-vi-you-tube-the-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3f08261-95ed-4767-b99d-4f12e64661ae/sm/238166-1463079619895-Roundup_Thumbnail_.jpg","duration":508,"publication_date":"2016-05-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-we-were-hitler-all-along-156","changefreq":"weekly","video":[{"title":"2016:E156 - We Were Hitler All Along!? - #156","description":"Join Ashley Jenkins, Meg Turney, Miles Luna, and Ryan Haywood as they discuss Uncharted 4, Disney Infinity, Battlefield 1, and more on this week's The Patch! This episode originally aired on May 11, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-we-were-hitler-all-along-156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56011d05-7a49-47f5-a5a7-f9967a7ab0ae/sm/2013912-1463068754906-p156_-_THUMB.jpg","duration":3828,"publication_date":"2016-05-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-20160511-gambling-ai-wins-big-money","changefreq":"weekly","video":[{"title":"2016:E59 - Gambling AI Wins BIG Money","description":"It's Skynet meets Vegas! An AI just turned a $20 bet into $11,000 this weekend, thanks to using our human intelligence against us for big winnings. Hopefully it'll share, but probably not.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-20160511-gambling-ai-wins-big-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39f34b96-1a87-4722-a94a-7d8e877b4ea3/sm/238166-1463010957572-ai_wins_blue.jpg","duration":546,"publication_date":"2016-05-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-first-details-on-kojima-s-next-game-the-know","changefreq":"weekly","video":[{"title":"2016:E355 - First Details on Kojima's Next Game? - The Know","description":"Kojima, your mind is too beautiful to not make video games. Let us attach onto it like some sort of parasitic leech and suck out all your delicious brain waves until you shrivel like a raisin.\n\n\n\nSOURCES:\n\nSiliconEra Report: http://www.siliconera.com/2016/05/10/hideo-kojima-...\n\nHamachi Report: http://blog.esuteru.com/archives/8577818.html\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Omar de Armas, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-first-details-on-kojima-s-next-game-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec7a2730-e841-4119-bfcd-cce3449eefe3/sm/2371242-1463005686252-FH_Thumb_11_copy_9.jpg","duration":500,"publication_date":"2016-05-11T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefront-2-confirmed","changefreq":"weekly","video":[{"title":"2016:E354 - Battlefront 2 CONFIRMED","description":"Battlefront 2 next year? A new Star Wars game every year for the next 3-4 years? We learned all that and more from crawling the transcript of an EA investors call yesterday, including brand new IPs coming from EA. You're welcome, internet.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefront-2-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fa9870d-9632-49dc-9b1a-3490ab3cca97/sm/238166-1462992714659-thumbnail.jpg","duration":468,"publication_date":"2016-05-11T19:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-everyone-hates-x-men-apocalypse","changefreq":"weekly","video":[{"title":"2016:E32 - Everyone HATES X-Men Apocalypse","description":"Move over Batman v Superman, reviews for X-Men: Apocalypse have started to roll in ahead of the the film's US release and so far the aggregate score is... not great. Is this the worst X-Men film or maybe even the worst superhero movie or the year?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-everyone-hates-x-men-apocalypse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a75b7f38-f0d3-4a4d-be85-246cadd15ee3/sm/238166-1462924946730-xmen_thumb.jpg","duration":542,"publication_date":"2016-05-11T00:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-sun-moon-trailer","changefreq":"weekly","video":[{"title":"2016:E353 - Pokemon Sun/Moon starters REVEALED","description":"Hope you love fire cats, water dogs, and bow-tie owls, because you'll be spending a lot of time with them when Pokemon Sun & Moon hit this fall. But don't worry, there are probably tons of other weird animals in the game, too. Anyway, let's break down the trailer.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-sun-moon-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/785e401c-b661-47ee-b068-e7c68e01cb1a/sm/238166-1462920988596-thumbnail.jpg","duration":525,"publication_date":"2016-05-10T23:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-mario-coming-to-minecraft-gtx-1080-destroys-titan-x-new-han-solo","changefreq":"weekly","video":[{"title":"2016:E34 - Mario Coming to Minecraft + GTX 1080 Destroys Titan X + New Han Solo","description":"How about all that news, huh? Mario's besties with Minecraft, some video cards are performing better than some other video cards, and now there's a new Han Solo you've probably never heard of but Lucasfilm is pretty good at that stuff so it's not too worrying. Oh, and apparently Tom & Jerry are responsible for terrorism or something. Happy Tuesday.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-mario-coming-to-minecraft-gtx-1080-destroys-titan-x-new-han-solo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f09ffdab-8d61-44b3-99e4-aaf108e47253/sm/238166-1462904575888-mario_mincraft.jpg","duration":563,"publication_date":"2016-05-10T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-will-battlefield-1-be-b-r-o-k-e-n","changefreq":"weekly","video":[{"title":"2016:E352 - Will Battlefield 1 Be BROKEN?","description":"The Battlefield 1 trailer has been released for only a few days and has already racked tens of millions of views, so people are obviously excited for the new WW1 shooter. But given the less than stellar track record EA and DICE have with launch issues, will Battlefield 1 be broken at launch? We also have some more leaked details about the game's single player campaign and achievements.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-will-battlefield-1-be-b-r-o-k-e-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f0619cf-fd03-4bf4-bf22-be265798b45c/sm/238166-1462837624113-battlefield_3.jpg","duration":544,"publication_date":"2016-05-09T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-steam-s-community-s-u-c-k-s-the-know","changefreq":"weekly","video":[{"title":"2016:E351 - Steam's Community SUCKS? - The Know","description":"Bizarrely, the title isn't as clickbaity as the comments are probably accusing us of being. Steam's community does kind of suck, but it's kind of awesome too. Will fixing it also remove what makes it work?\n\n\n\nSOURCES:\n\nGamesIndustry.biz Rob Fahey Editorial: http://www.gamesindustry.biz/articles/2016-05-06-s...\n\nGamesIndustry.biz Steam Data Analysis: http://www.gamesindustry.biz/articles/2014-12-22-r...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Omar de Armas, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-steam-s-community-s-u-c-k-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17633dcd-59bc-4f4d-9b10-372bb845a139/sm/2371242-1462831248400-FH_Thumb_11_copy_2.jpg","duration":571,"publication_date":"2016-05-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-shake-up-on-justice-league-movie","changefreq":"weekly","video":[{"title":"2016:E31 - Shake-up on Justice League Movie?","description":"Fans upset with Zack Snyder's take on the DC movieverse may have something to celebrate -- Ben Affleck may now be taking over some of Snyder's creative roles, edging him out of Justice League. Do you executive produce? YOU WILL.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-shake-up-on-justice-league-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ce1d904-3952-49d1-82e4-2daa9963efa4/sm/238166-1462828199632-super_thumb_3.jpg","duration":535,"publication_date":"2016-05-09T21:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-whodunit","changefreq":"weekly","video":[{"title":"2016:E5 - Whodunit?","description":"Join Ashley Jenkins, Meg Turney and Ryan Haywood as they discuss the police interrogation mystery Her Story on this week's Patch Game Club! This episode originally aired on May 6, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-whodunit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86bd3be7-c035-44b3-a9f6-aa5cbdbd9c22/sm/2013912-1462555211501-gc_her_story_-_THUMB.jpg","duration":1175,"publication_date":"2016-05-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-geeks-are-assholes-says-ghostbusters-director","changefreq":"weekly","video":[{"title":"2016:E30 - \"Geeks Are Assholes\" Says Ghostbusters Director","description":"The director of the upcoming Ghostbusters movie says that “Geek culture is home to some of the biggest assholes I've ever met” in regards the fan reaction towards the film. What kind of fan reaction you ask? Well, like the fact that the Ghostbusters trailer is the most disliked trailer in Youtube history. Who you gonna call… names.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-geeks-are-assholes-says-ghostbusters-director","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0918b9fa-7d0a-4870-8833-bd6f8120f123/sm/238166-1462576549050-geeks_are_ass.jpg","duration":566,"publication_date":"2016-05-07T03:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-1-revealed-co-d-dead-the-know","changefreq":"weekly","video":[{"title":"2016:E350 - Battlefield 1 Revealed! CoD Dead? - The Know","description":"Fourteen years of Battlefield games and they finally got around to making Battlefield 1. Come on lazy devs! What's next from these clowns, Battlefield 2?! How absurd.\n\n\n\nSOURCES:\n\nBattlefield Live Event Reveal: \n\nBattlefield 1 Trailer: \n\nPrevious Speculative Battlefield Report: \n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Omar de Armas, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-1-revealed-co-d-dead-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/370c9ae6-e7e7-4626-b180-188daa758b61/sm/2371242-1462586714071-FH_Template_copy_2.jpg","duration":727,"publication_date":"2016-05-07T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-uses-cartridges","changefreq":"weekly","video":[{"title":"2016:E349 - NX Uses Cartridges?","description":"Nintendo could be saying sayonara to disc media, and bringing back cartridges for the NX? Maybe next they'll bring back Nintendo Power and that weird N64 controller. Either way, a cartridge switch may actually be a good move for the new console.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-uses-cartridges","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af94e991-bbed-4c73-9245-8a38c8e60a20/sm/238166-1462569943236-nintendo_thumb_Final.jpg","duration":533,"publication_date":"2016-05-06T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-snapchat-sued-for-car-accident","changefreq":"weekly","video":[{"title":"2016:E58 - Snapchat SUED For Car Accident","description":"Using Snapchat while driving is a bad idea, as one teen driver found out when she rear-ended another car going over 100 MPH. She was trying to use the app's speed filter to prove how fast she was going. The people in the vehicle that got hit are now suing Snapchat saying the app facilitated the crash.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-snapchat-sued-for-car-accident","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc77014a-8523-43ae-8c6d-512350cc78f7/sm/238166-1462495840216-snapchat_thumb_4.jpg","duration":451,"publication_date":"2016-05-06T00:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-uncharted-4-is-it-good","changefreq":"weekly","video":[{"title":"2016:E348 - Uncharted 4: IS IT GOOD?","description":"The review embargo for Uncharted 4 has lifted. You know what that means. Review round up time! Is the fourth game in the swashbuckling series something to treasure?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-uncharted-4-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e3dccbf-a086-4322-867e-75878dd2a58b/sm/238166-1462487111068-uncharted_thumb_3.jpg","duration":464,"publication_date":"2016-05-05T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-fallout-4-far-harbor-trailer-new-steam-reviews-dragonball-evolution-apology","changefreq":"weekly","video":[{"title":"2016:E33 - Fallout 4 Far Harbor Trailer + New Steam Reviews + Dragonball Evolution Apology","description":"Let's get ready to round up! Today we have a new Fallout DLC trailer, Steam changing the way it does user reviews and an apology for Dragonball evolution.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-fallout-4-far-harbor-trailer-new-steam-reviews-dragonball-evolution-apology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35627383-361c-450a-b205-b330c68ff709/sm/238166-1462472371770-Roundup_thumb.jpg","duration":453,"publication_date":"2016-05-05T18:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-155","changefreq":"weekly","video":[{"title":"2016:E155 - Overwatch vs. Battleborn - #155","description":"Join Meg Turney, Jeremy Dooley, Ashley Jenkins and Ryan Haywood as they discuss Overwatch, Battleborn and more on this week's The Patch! This episode originally aired on May 4, 2016. Sponsored by Blue Apron (http://cook.ba/1mefzmu), MVMT (http://bit.ly/1ZefgWF), ProFlowers (http://bit.ly/13J7Oqy)","player_loc":"https://roosterteeth.com/embed/the-patch-2016-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02337bbd-01f2-44a3-af6f-d9de960aeb12/sm/690915-1462467323019-p155_-_THUMB.jpg","duration":3702,"publication_date":"2016-05-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-respawn-making-star-wars-game","changefreq":"weekly","video":[{"title":"2016:E347 - New Star Wars Game From Titanfall Devs","description":"The developers behind Titanfall are making a Star Wars game? And it might be kind of like God of War? Count us in! Also, Jedi Master Jedi Master Jedi Master.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-respawn-making-star-wars-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77221d11-746a-4426-b945-391da2f82181/sm/238166-1462402881521-new_starwars_game_dev_3.jpg","duration":469,"publication_date":"2016-05-04T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-who-cares-about-harry-p-o-t-t-e-r-funhaus-comments-14","changefreq":"weekly","video":[{"title":"2015:E17 - WHO CARES ABOUT HARRY POTTER? - Funhaus Comments #14","description":"Voldemort forgot one important piece of information:\n\nThe wand chooses the wizard... IDIOT.\n\nSomething, something, Hermione's hot now.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-who-cares-about-harry-p-o-t-t-e-r-funhaus-comments-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f47e4eb-95ee-4539-a61b-2cfb91d911a4/sm/2193681-1460574404505-FH_Thumb_10_copy_2.jpg","duration":602,"publication_date":"2016-04-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-1001-drunks-1001-spikes-gameplay","changefreq":"weekly","video":[{"title":"2016:E58 - 1001 DRUNKS - 1001 Spikes Gameplay","description":"The last vestige of Joel. We'll miss him and his dance moves. Especially Elyse.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-1001-drunks-1001-spikes-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ee956d7-9c99-4167-ad18-c4172763b3c7/sm/2193681-1460568329119-FH_Thumb_9_copy_1.jpg","duration":1133,"publication_date":"2016-04-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-world-of-tanks-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E57 - WORLD OF TANKS - GTA 5 Gameplay","description":"Hey guys, Elyse here. Today, I wanted to talk to you all about something that is a extremely important to all of us here at Funhaus. And that something, is Comedy. The big \"C,\" as I call it.\n\n\n\nAs you watch this GTA gameplay, you'll notice that the episode begins with what we call a \"bit.\" Now, until this point in time -- knowing what we know of Funhaus, their weekly GTA sessions, and Bruce's aptitude for the game -- we can make an informed statement and say that Bruce isn't exactly the best GTA player in the world. However, Bruce has a major trump card; he has been playing GTA nightly, in secret, and in doing so his skill with the game has improved exponentially, propelling him to an elite, pro status. During his prideful boasting, he claims to have clocked an approximate 500 hours of playtime over two years. He is so confident in his GTA prowess that he approaches the match with a smug, self-assertiveness that gives him the air of a pompous mouth-a-bout.\n\n\n\nWhen Bruce begins to play, we see the illusion crack. Clearly Bruce is not the seasoned player he originally purported to be. The sad truth is that Bruce was lying and did not play GTA for as many hours as he claimed. His skill is laughable, he barely knows the controls, and quite frankly, he's just plain bad. As he continues to play he must hold fervently and defensively to his original proclamations, although it's obvious that he is losing grip on the charade, making it all the more pathetic and humorous.\n\n\n\nThis is where the comedy happens. By establishing expectations beforehand and then essentially flipping them, Bruce shocks and dismays us, the audience, belittling himself and playing the apt fool. Good, easy comedy often comes about when you tell your audience one thing, and then surprise and awe in an unexpected way. It might not be Comedy 101, but it's definitely up there -- Comedy 103, or 104, maybe. \n\n\n\nWriting a YouTube explanation breaking down a joke is at least Comedy 307. \n\n\n\nTank Wars:\n\nhttps://socialclub.rockstargames.com/games/gtav/pc/jobs","player_loc":"https://roosterteeth.com/embed/gameplay-2016-world-of-tanks-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47c4532a-caa8-466a-9e41-45769006681e/sm/2193681-1460487363891-FH_Thumb_10_copy.jpg","duration":625,"publication_date":"2016-04-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-will-suicide-squad-s-u-c-k-65","changefreq":"weekly","video":[{"title":"2016:E65 - Will Suicide Squad SUCK? - #65","description":"Visit our sponsor! Go to http://www.lootcrate.com/dudesoup and use code \"dudesoup\" for $3 off new subscriptions.\n\nAnother week where we masquerade pervasive pessimism as enlightened skepticism. Also, you're in for some big ass words now that Joel's not writing this anymore. Better bust out that dictionary, because we're going to drag you to good SAT scores kicking and screaming.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-will-suicide-squad-s-u-c-k-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2308c20a-d03e-4975-b574-00ce7ac9ddf1/sm/1788482-1460503759112-fh_thumb_10_copy.jpg","duration":3788,"publication_date":"2016-04-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-pop-idols","changefreq":"weekly","video":[{"title":"2016:E14 - WE ARE POP IDOLS","description":"This week's Fan Show is a little less heavy, so don't worry about Millennial problems this week! Nothing but sweet, sweet fan art and comments.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-pop-idols","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd7d5dfe-d809-49ac-902c-9d3e9d4cf0e5/sm/1788482-1460503404417-FanArt28.png","duration":1768,"publication_date":"2016-04-12T23:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-joel-hates-funhaus-open-haus-60","changefreq":"weekly","video":[{"title":"2016:E15 - JOEL HATES FUNHAUS - Open Haus #60","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nGoodbye everyone. It's really been fun.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-joel-hates-funhaus-open-haus-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/429a764e-e9f5-4476-bb5f-ed66f6db02a2/sm/1788484-1460159682111-fh_thumb_9_copy_58.jpg","duration":665,"publication_date":"2016-04-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-period-piece-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E15 - PERIOD PIECE - Demo Disk Gameplay","description":"The first non-Joel description is bittersweet. All we can do is chew on the irony that he didn't get to address a Demo Disk that is so menstruation heavy.\n\nGet it? Heavy. That's what we call word play!\n\nWe'll miss you Joel.","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-period-piece-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7fb5dff-ab5a-41ea-998a-4bb46667e84f/sm/1788482-1460165826402-fh_thumb_10_copy.jpg","duration":990,"publication_date":"2016-04-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-s-h-t-in-a-box-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E56 - SH!T IN A BOX - Wheelhaus Gameplay","description":"Wheelhaus, wheelhaus, spinning around\n\nPlaying the games it randomly found\n\nWheelhaus, wheelhaus, chooses crap games\n\nMakes it frustrating for Bruce, Adam James\n\n\n\nWheelhaus, wheelhaus, spinning around\n\nGrandpa takes grandgirl and gives her a pound\n\nWheelhaus, wheelhaus, I wanna quit\n\nEach game we play is covered in shit","player_loc":"https://roosterteeth.com/embed/gameplay-2016-s-h-t-in-a-box-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abb6ed54-f367-46ca-9b55-7bce6b8f43ae/sm/1788484-1460133468892-fh_thumb_10_copy_1.jpg","duration":913,"publication_date":"2016-04-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-rip-joel-best-of-joel-video","changefreq":"weekly","video":[{"title":"2016:E8 - RIP JOEL - Best of Joel Video","description":"Is it weird to write my own description to this video? It's all about me. I actually lobbied against uploading this. No one is asking to watch The Best of Joel. There IS no \"Best of Joel\" to begin with! It's a damn oxymoron! Furthermore, it's a little self-aggrandizing, right?\n\n\n\nWrong. I deserve this.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-rip-joel-best-of-joel-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6b69b8d-2023-40ad-b22b-13e56ccfb299/sm/1788484-1460065764079-fh_thumb_9_copy_57.jpg","duration":1260,"publication_date":"2016-04-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-the-flash-vs-hulk-in-gta-5-mod-gameplay","changefreq":"weekly","video":[{"title":"2016:E12 - THE FLASH is BACK in GTA 5! Mod Gameplay!","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nHello true Excelsians! This issue, the STRONGEST CREATURE ON EARTH fights the FASTEST MAN ALIVE! It's the SCUFFLE in LOS SANTOS! The MELEE in MORNINGWOOD! These pages contain the FIRST EVER CONFRONTATION between THE GREEN GOLIATH hisself and THE SCARLET SPEEDSTER! \n\n\n\nYOU thought it would never happen. YOU thought it was impossible. YOU were WRONG! DC vs MARVEL. GREEN vs SPEED. STRENGTH vs WAY LESS STRENGTH BUT MAYBE SOME SPEED! \n\n\n\nThe FIGHT that was NEVER SUPPOSED TO OCCUR because NO ONE CARED is happening. It's a WHO FRAMED ROGER RABBIT in the pages of THIS ISSUE! Ugh.\n\n\n\nThe Flash Mod\n\nhttp://gtaxscripting.blogspot.com/2016/04/gta-v-flash-script-mod-nibstyle.html\n\nThe Flash Metahuman Suit Mod\n\nhttps://www.gta5-mods.com/player/metahuman-flash-suit\n\nReverse Flash Suit Mod\n\nhttps://www.gta5-mods.com/player/reverse-flash-suit-trevor\n\nFlash and Reverse Flash Head Mods\n\nhttps://www.gta5-mods.com/player/cw-flash-and-reverse-flash-ported-head\n\nHulk Script Mod\n\nhttp://gtaxscripting.blogspot.com/2015/10/gta-v-pc-hulk-script-mod.html?utm_source=BP_recent\n\nIronman Mod \n\nhttp://gtaxscripting.blogspot.com/2015/08/gta-v-ironman-mark-iii-armor.html\n\nScript Hook V & Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nScript Hook V Dot Net \n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nSimple Trainer\n\nhttps://www.gta5-mods.com/scripts/simple-trainer-for-gtav\n\nMenyoo PC\n\nhttps://www.gta5-mods.com/scripts/menyoo-pc-sp","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-the-flash-vs-hulk-in-gta-5-mod-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e0b53ae-b11d-4589-a3b0-363a753d118e/sm/1788484-1460047951168-fh_lp_template_copy_7.jpg","duration":529,"publication_date":"2016-04-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-get-rid-j-o-e-l-funhaus-comments-13","changefreq":"weekly","video":[{"title":"2015:E16 - GET RID JOEL? - Funhaus Comments #13","description":"Man, your comments are getting more and more literate each week. Puns? Multi syllabic words? Gender politics? Quechua?! It's like you guys decided to actually pick up a book this week and do some reading. Congrats! Enriching your life is very important.\n\n\n\nI watched with pride as your comments have evolved from caveman-like grunts to simple sentences. All it took was weeks and weeks of berating, mocking, belittling, and prodding you to do better. Now that you're writing at an 11th grade level, I know I can leave you better than when we started. \n\n\n\nMy 13-week project to civilize you has ended in success.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-get-rid-j-o-e-l-funhaus-comments-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e81c4d72-e10e-4b09-8c02-39a02b92241f/sm/1788482-1460165595485-fh_thumb_9_copy.jpg","duration":738,"publication_date":"2016-04-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-runners-speedrunners-gameplay","changefreq":"weekly","video":[{"title":"2016:E55 - DRUNK RUNNERS - Speedrunners Gameplay","description":"Go, go, go, go, go, go, go, go, go, go\n\nGotta go fast, gotta go fast,\n\nGotta go faster, faster, faster, faster, faster\n\nMovin' at speed of sound (make tracks)\n\nI'm the quickest hedgehog around\n\nGot ourselves a situation, stuck in a new location,\n\nWithout any explanation, no time for relaxation!\n\nDon't, don't, don't, don't, don't blink, don't think,\n\nJust go, go, go, go, g-g-g-g-go, go!\n\nN-n-n-n-n-n-na\n\nN-n-n-n-n-n-na\n\nSonic, he's on the run!\n\nSonic, he's number one!\n\nSonic, he's comin' next,\n\nSo watch out... For Sonic X!\n\nGotta go fast (Sonic!), gotta go fast (Sonic!),\n\nGotta go faster, faster, faster, faster, faster!\n\nGo, go, go, go, go, go, go, go, go!\n\nSo... (Sonic) nic... (Sonic) X,\n\nGotta go faster!\n\nGotta go fast!\n\nGotta go faster, faster, faster, faster,\n\nSonic X!","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-runners-speedrunners-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec11bcb2-83bf-4397-97c6-1bab02228e02/sm/1788484-1459987988436-fh_thumb_9_copy_56.jpg","duration":967,"publication_date":"2016-04-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-garbage-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E54 - DRUNK GARBAGE - GTA 5 Gameplay","description":"Once upon a time we started a YouTube channel dedicated to gaming, podcasts, and comedy, and it was a good little channel! It did all the things a good channel should do: it got subscribers, and views, and everyone was happy. But then, we made a mistake: we did a drunk gameplay. And after that day, that's all anyone wanted to see. So we kept doing them, and doing them, forever and ever, until our livers turned to pickles and we became old sad men.\n\n\n\nThe end.\n\n\n\nDesert Heat: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/5h59zNcKTEiv_0qF8iVWvw#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-garbage-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a883702-d1e2-4c74-82dc-8a5fd0ee98ee/sm/1788484-1459903664985-fh_thumb_9_copy_53.jpg","duration":673,"publication_date":"2016-04-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-g-o-o-d-b-y-e-joel-64","changefreq":"weekly","video":[{"title":"2016:E64 - GOODBYE, Joel! - #64","description":"Ironically, Joel had to write the description of his own departure video on YouTube. Ain't that some shit.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-g-o-o-d-b-y-e-joel-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12a0508f-57c4-43df-8649-869bf7904347/sm/1788482-1459892660618-fh_thumb_9_copy.jpg","duration":3491,"publication_date":"2016-04-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-souls-3-l-i-v-e","changefreq":"weekly","video":[{"title":"2016:E5 - Drunk Souls 3 LIVE!","description":"The whole thing. Unedited. Good god, what have we done?","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-souls-3-l-i-v-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60872147-2e08-4a80-87bf-d04a96b29904/sm/1788484-1459884129384-fh_thumb_9_copy_49.jpg","duration":5700,"publication_date":"2016-04-06T00:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/in-review-2015-tom-clancy-s-the-division-in-review","changefreq":"weekly","video":[{"title":"2015:E5 - Tom Clancy's The Division In Review","description":"So we recorded this a while ago, and we're a little late on it. We'll cop to that. But we were pretty busy the last couple of weeks, and most of our opinions hold up, I think.","player_loc":"https://roosterteeth.com/embed/in-review-2015-tom-clancy-s-the-division-in-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f493ec62-d46f-47ca-8f0d-326ab0ac0061/sm/1788482-1459902616510-untitled-1.jpg","duration":1341,"publication_date":"2016-04-05T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-engaging","changefreq":"weekly","video":[{"title":"2016:E13 - WE ARE ENGAGING","description":"Welcome to a comment-heavy Fan Show, wherein people comment about comments. Tune in next week for comments about comments about comments.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-engaging","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3ba5d45-741d-4083-9262-4ebcffe97c11/sm/1788482-1459890192196-FanArt27.png","duration":1903,"publication_date":"2016-04-05T21:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-funhaus-board-g-a-m-e-open-haus-59","changefreq":"weekly","video":[{"title":"2016:E14 - Funhaus BOARD GAME? - Open Haus #59","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nThank you for purchasing the all new Open Haus board game! This is a game for 6-9 players. \n\n\n\nContents of Box: 4 webcams and 1 Omar Cam, 9 office chairs, 1 SF Giants bobblehead, 1 quiet intern, and a Reddit account pre-subscribed to the Funhaus Subreddit.\n\nYou'll need: 5-8 friends and one Matt Peake, various props and costumes and sex toys.\n\n\n\nHow to Play: All players sit at a table facing each other. Using the provided Reddit account, source 5-9 questions from the Funhaus Subreddit. Make sure they're the same questions asked every week. Bonus points for a F/M/K or Game of Thrones question.\n\n\n\nBegin recording using the provided webcams. Starting with the player in the \"Adam\" spot, ask the players questions, laughing or ignoring the answers depending on who's answering. Feel free to use any props/costumes/sex toys on hand to enhance your answers. Cease play when you reach the end of the questions, or when the player in the \"Bruce\" position gets bored.\n\n\n\nTake the recording, and edit it heavily over the course of 3 days. Using the provided quiet intern, create dozens of photoshops people will see for 3.5 seconds each. Upload the video (making sure to monetize in all countries). \n\n\n\nThe commentors on the video will decide the winner. Have fun!!","player_loc":"https://roosterteeth.com/embed/open-haus-2016-funhaus-board-g-a-m-e-open-haus-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa50042f-e3dd-4abc-813b-1c02f9508d8f/sm/1788484-1459462074421-fh_thumb_9_copy_51.jpg","duration":662,"publication_date":"2016-04-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-booty-and-the-beast-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E14 - BOOTY AND THE BEAST - Demo Disk Gameplay","description":"Thanks Kootra! https://www.youtube.com/user/kootra\n\n\n\nLittle disc,\n\nIt'll shatter nicely.\n\nEvery game\n\nLike the one before.\n\nLittle disc\n\nFully of shitty demos\n\nBooting up to play.....\n\nI'm bored. I'm bored. I'm bored, I'm bored, I'm bored.\n\n\n\nThere goes a demo of an online shooter\n\nThe code is broken, can't you tell\n\nEvery demo is a snore\n\nLet's find more Rule 34\n\nSince these crappy broken games all play like hell\n\n\n\nLook there it goes the disc is always crashing\n\nIt's making Adam scream and yell\n\nNever works, is never good\n\nThe developer's Jo Wood\n\nNo denying all these demos play like hell\n\n\n\nI'm bored. Bad disc. What are we playing?\n\nI'm bored. Bad disc. An RTS.\n\nWe need to quit! It's too damn early.\n\nThese demos all consist of such BS\n\n\n\nHey check it out we have a Disney ripoff\n\nI wonder did it ever sell?\n\nIt's a Mulan skin of Snood.\n\nAnd I bet you they got sued.\n\nWe should really snap this disc it played like hell\n\n\n\nOh, isn't this amazing?\n\nIt's an early 90s RPG.\n\nHere's where you choose the wizard\n\nBut the game'll crash before you level him to 3.\n\n\n\nNow it's no wonder that we want to rage quit\n\nThat'd make the audience rebel\n\nEvery video we make\n\nIs another disc to break\n\nCause it's true that all these demos play\n\nSo true that all these demos play\n\nOh can you see these demos plaaaay....\n\nLike hell!!","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-booty-and-the-beast-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a75b722-0ff4-419e-a270-66f990155f95/sm/1788484-1459460624605-fh_thumb_9_copy_50.jpg","duration":1084,"publication_date":"2016-04-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-souls-3-dark-souls-3-gameplay","changefreq":"weekly","video":[{"title":"2016:E53 - DRUNK SOULS 3 - Dark Souls 3 Gameplay","description":"It hasn't even been 3 weeks. THREE WEEKS. Since our last drunk gameplay. And here we are again, destroying our bodies for you. This is the one you've all been waiting for, though: Drunk Souls 3. The Ultimate in Drunk Souls videos. You thought Drunk Souls 1 and 2 were good?\n\n\n\nWait, you haven't watched Drunk Souls 1 and 2? You can't find them on our channel? Weird. I don't know why. I'm sure we did them. I distinctly remember Drunk Souls 1 and 2, but you're right. I can't find any record of them here on Funhaus. I don't know why that is. \n\n\n\nHuh.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-souls-3-dark-souls-3-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/025e8079-3e1b-4e32-aa89-ce25324a4371/sm/1788484-1459378844429-fh_thumb_9_copy_49.jpg","duration":1804,"publication_date":"2016-04-02T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-we-always-win-overwatch-gameplay-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E11 - WE ALWAYS WIN - Overwatch Gameplay with Funhaus","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\n\n\nOh god, this is it. This is the last chance. If you don't watch this Overwatch video, I don't know if we can keep doing them. None - NONE - of our Overwatch vids have done well. I mean, we want our videos to get as many views as possible, but when this game isn't doing as many views as our crappy Shen Mue let's play, it may be time to rethink our strategy.\n\n\n\nWhich sucks! We love Overwatch! What's the problem? Do you not like watching it? Are you upset that you're not in the beta? Is it confusing? What is going on here? Someone tell me so I can fix it and we can make more Overwatch content! Please! PLEASE","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-we-always-win-overwatch-gameplay-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dc98109-f578-497b-83fa-b6895cdbe614/sm/1788484-1459367552832-fh_lp_template_copy_6.jpg","duration":858,"publication_date":"2016-04-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-do-steroids-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E52 - HOW TO DO STEROIDS - Wheelhaus Gameplay","description":"In order to train your dragon, first I'm going to have to tell you how to make a dragon. When a mommy dragon and a daddy dragon love each other very, very much, the daddy dragon and mommy dragon wish as hard as they can, for at least 6 minutes, with Barry White playing on Spotify, until the daddy dragon spums on the mommy dragons tummy. \n\n\n\nThen the Magical Love Dragonfairy makes circles and stars with the spum, and then a dragon's egg pops out of mommy's treasure basket. Then, after 9 months, the egg hatches and a baby dragon is born!\n\n\n\nThat's when you, the viking, come in with a muzzle and a choke collar and a harness and tie that bitch dragon up. You tie him up! And you make that dragon yours. You don't let that dragon baby talk back to you, you're the fucking dragonmaster! Yeah. That's how you train a goddamn dragon.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-do-steroids-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b00c125e-6bda-4388-a571-440862b31195/sm/1788484-1459376890678-fh_thumb_9_copy_48.jpg","duration":1004,"publication_date":"2016-04-01T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-who-b-u-r-p-e-d-funhaus-comments-12","changefreq":"weekly","video":[{"title":"2015:E15 - WHO BURPED? - Funhaus Comments #12","description":"Ladies and Gentlemen - you're probably wondering why I invited you here today. There is a mystery afoot: someone burped. We know where he or she burped: here. We know how or or she burped: with his or her stomach. What we don't know is the WHY or the WHO.\n\n\n\nLady Violet: you were seen eating a chimichanga not 2 hours ago. Did the burp come from you?\n\nCorporal Ceylon: was it the saag paneer you had for dinner? TELL ME?\n\nSenor Sienna: I observed you furtively exiting a Carl's Jr, and I say to you, that burp certainly SMELLED like a $6 burger.\n\nMadame Mauve: After some research, I discovered you won a belching contest in preparatory school.\n\nDoctor Schwartz: I just don't like Germans.\n\n\n\nSo: who was it? Come clean, and we can all repair to the solarium for iced jellies.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-who-b-u-r-p-e-d-funhaus-comments-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120e6b89-0798-4002-8f52-824a74b4cf9e/sm/1788484-1459366440636-fh_thumb_9_copy_47.jpg","duration":718,"publication_date":"2016-03-31T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-are-the-worst-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2016:E51 - WE ARE THE WORST - Rainbow Six Siege Gameplay","description":"Terrorists in the room\n\nFrag grenade makes a boom\n\nDon't get shot\n\nOops we got shot\n\nIt's Retard Rainbow \n\n\n\nTheyyyyy can't do anything\n\nMy teammate's dead\n\nHoles in his head\n\nRetard Rainbow\n\n\n\nTheyyyyyy can't kill anyone\n\nThe game's not fun\n\nWe suck with guns\n\nRetard Rainbow","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-are-the-worst-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86bf2b80-54e5-4f7c-befb-19bad7bf81f1/sm/1788484-1459357801816-fh_thumb_9_copy_720_3.jpg","duration":757,"publication_date":"2016-03-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-2-drunk-2-bike-gta-5-gameplay-2","changefreq":"weekly","video":[{"title":"2016:E50 - 2 DRUNK 2 BIKE - GTA 5 Gameplay","description":"Remember, kids: Drunky The Motorcycle raps:\n\n\n\nWhen you're drunk as hell\n\nWith all the guys\n\nDon't ride your bike\n\nThat's dumb and you're definitely going to die\n\n\n\nExtreme Windmill Parkour: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/TuJSoQSez0etKM6doD7Hqw#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-2-drunk-2-bike-gta-5-gameplay-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7cd5e23-6a81-43b2-97a8-4e9df0de01a7/sm/1788484-1459358909870-fh_gta_2-drunk_2-bike_thumbnail_v3_720.png","duration":601,"publication_date":"2016-03-30T16:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-overwatching","changefreq":"weekly","video":[{"title":"2016:E12 - WE ARE OVERWATCHING","description":"This week's is a very special Fan Show as we realize we can just make the comments first and actually have time to talk about them! Stay tuned next week for a very comment-y Fan Show.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-overwatching","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d771b2b-d4cc-4c08-9286-f1c92d6b76c7/sm/1788482-1459354741104-Fanart_27.png","duration":1582,"publication_date":"2016-03-30T15:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-batman-v-superman-s-u-c-k-e-d-63","changefreq":"weekly","video":[{"title":"2016:E63 - Batman v Superman SUCKED? - #63","description":"It's a banner day because two large men punched each other a lot. This is a big deal for some reason, so here we are to talk about it a lot.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-batman-v-superman-s-u-c-k-e-d-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a52f11e-56d2-47a1-9653-9acb2cdf3672/sm/1788482-1459353454282-fh_thumb_9_copy_720.jpg","duration":3760,"publication_date":"2016-03-30T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-the-culling-with-cr1ti-ka-l-l-i-v-e","changefreq":"weekly","video":[{"title":"2016:E4 - The Culling with Cr1tiKaL - LIVE!","description":"HEYAAA this is the full upload of our gameplay with Cr1tiKaL - enjoy. And hopefully we actually synced the video this time!","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-the-culling-with-cr1ti-ka-l-l-i-v-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11213323-b97c-465d-bcd2-721bacbde041/sm/1788484-1459204346134-Cr1tikalLIVEthumbnail.png","duration":2628,"publication_date":"2016-03-29T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-love-s-h-r-e-k-open-haus-58","changefreq":"weekly","video":[{"title":"2016:E13 - We LOVE SHREK? - Open Haus #58","description":"This episode of Open Haus is sponsored by The Boss from Universal Pictures\n\nClick here to watch the trailer: http://unvrs.al/BossRestricted\n\n\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nAround the office we call Elyse the Mistress of Ten Thousand Voices. Her impersonations, as you've seen, are spot on. You've already been privy to her impression of Bruce, of Keira Knightly, and of Spoole. But what you haven't seen is Elyse's full grab bag of stage-ready vocal mimicry. I'm telling you she's the best. \n\n\n\nLast night we were able to convince Elyse to do one of her classics: Bill Clinton imitating Nic Cage doing Jim Carrey as Oprah impersonating Bugs Bunny acting like Arnold mimicking Ella Fitzgerald pretending to be Mr. T aping PewDiePie emulating Nixon affecting Dirty Harry caricaturing Joan Rivers sending up Kermit the Frog copying Tina Fey mirroring Sylvester Stallone echoing Mr. Magoo portraying Dolly Parton posing as Homer Simpson representing a car alarm that sounds like the Vienna Boy's Choir singing in the style of Elvis performing as Mother Theresa.\n\nIt was pretty amazing.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-love-s-h-r-e-k-open-haus-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cfb2624-0b1e-4f82-bc6c-9a06dda1e9dd/sm/1788484-1458952152474-fh_thumb_1.jpg","duration":654,"publication_date":"2016-03-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-puck-off-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E13 - PUCK OFF - Demo Disk Gameplay","description":"Alternate titles for this video:\n\n\n\nMotherpuckers\n\nPuck You\n\nGo Puck Yourself\n\nI'm Going to Puck You Good\n\nPucking Idiots\n\nGet Pucked\n\nWe Get Pucked Up\n\nZero Pucks To Give\n\n\n\n...And so forth","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-puck-off-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7a70ffd-f09c-412d-9774-0d8c9c903503/sm/1788484-1458954800173-fh_thumb_9_copy_44.jpg","duration":941,"publication_date":"2016-03-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-critical-s-h-t-the-culling-gameplay-with-cr1-ti-ka-l","changefreq":"weekly","video":[{"title":"2016:E48 - CRITICAL SH*T - The Culling Gameplay with Cr1TiKaL","description":"Check out Cr1TiKaL's channel - https://www.youtube.com/user/penguinz0\n\n\n\nA couple of months ago we got an email from Cr1TiKaL asking if we wanted to do a collab video. It was around the holidays, and we were crazy busy getting all the videos on the channel so we could spend 2 weeks of dark solsticetime passed out on eggnog and gingerbread, so we told him \"Let's do something early next year.\" \n\nThen, to be totally honest, we absolutely forgot about it. Because we're dicks.\n\n\n\nSo when Charlie emailed again a couple of weeks ago, after a round of profuse apologies, we finally got our act together and set up a gameplay. This. Is that gameplay.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-critical-s-h-t-the-culling-gameplay-with-cr1-ti-ka-l","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/165a86ab-534a-4848-91e7-89ace6ffa7ab/sm/1788484-1458841534351-fh_thumb_9_copy_42.jpg","duration":1134,"publication_date":"2016-03-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-4-chan-hates-funhaus-funhaus-comments","changefreq":"weekly","video":[{"title":"2015:E14 - 4CHAN HATES FUNHAUS - Funhaus Comments","description":"Want to get your comment featured on the Comments Show? Here's a hot n fresh tip: don't write a comment with the intent of getting your comment featured on the Comments Show! It's a bit of a paradox, I know, but like all the best things in this world, once you give up and stop trying, you'll succeed. Just like finding a significant other, or a good job, or ultimate happiness, or the perfect quesadilla, or a cuddly puppy.\n\n\n\nJust give up!","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-4-chan-hates-funhaus-funhaus-comments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6fb190e-a1d8-43ad-8a0b-494bbec3b25c/sm/1788484-1458770612565-fh_thumb_9_copy_960.jpg","duration":733,"publication_date":"2016-03-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-blood-and-guts-killing-floor-2-gameplay-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E10 - BLOOD AND GUTS - Killing Floor 2 Gameplay","description":"Subscribe to Funhaus: http://bit.ly/1R7R7Ou\n\nA lot of you guys think that our gameplays are all improvised; that we make up what we say on the spot. That's not true. We put a lot of hard work into scripting out each moment of our videos. Here, for the first time, I'm going to share some of that old Funhaus Behind-the-Scenes magic with you. This is the first draft of our script for BLOOD AND GUTS - Killing Floor 2 Gameplay:\n\n\n\nElyse: Shit.\n\nBruce: Oh, shit!\n\nAdam: What?\n\nElyse: SHIT!\n\nAdam: Oh, no. \n\nJames: Look out.\n\nLawrence: I've got a gun.\n\nBruce: FUCK!\n\nAdam: What this time?\n\n(A beat)\n\nAdam: Oh, Jesus.\n\nLawrence, James (Simultaneous): Shit\n\n(Laughter)\n\nElyse: You guys are shitbuddies!\n\nAdam: Huh?\n\nBruce: Fuckshit!\n\n\n\n(Continues for 13 more minutes)","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-blood-and-guts-killing-floor-2-gameplay-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/402d6f18-92a5-4e7b-8286-f549d20c7ec9/sm/1788484-1458847132103-fh_lp_template_copy_4.jpg","duration":855,"publication_date":"2016-03-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-to-hell-with-fun-devil-daggers-gameplay","changefreq":"weekly","video":[{"title":"2016:E47 - TO HELL WITH FUN - Devil Daggers Gameplay","description":"Shoot de skull, keep out de debil\n\nYou shoot de skull, keep de debil in de night\n\nShoot de skull, keep out de debil\n\nUse de shotgun everything's alright\n\nUse de shotgun everything's alright","player_loc":"https://roosterteeth.com/embed/gameplay-2016-to-hell-with-fun-devil-daggers-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a03b8055-47cf-48b2-b6dd-5d7d84b28b9c/sm/1788484-1458770139399-fh_thumb_9_copy_40.jpg","duration":1050,"publication_date":"2016-03-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-beasts-gang-beasts-gameplay","changefreq":"weekly","video":[{"title":"2016:E46 - DRUNK BEASTS - Gang Beasts Gameplay","description":"Enough of this Gang Beast on Gang Beast violence! We must all band together to prevent more disruption in our Gang Beast community. What have we come to? Attacking each other for no reason; throwing ourselves into meat grinders and off Ferris Wheels and knocking each other unconscious and why? WHY I ASK YOU? \n\n\n\nLet's build a new world of Gang Beasts. A world where we help instead of hurt; heal instead of hurl, and empower instead of empunch. Tomorrow, let's rally at Gang Beast City Hall to let the powers that be know that we will not be turned against each other any more!","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-beasts-gang-beasts-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c84a938-d39d-44a8-8aee-3f67ec9262d4/sm/1788484-1458748639238-fh_thumb_9_copy_37.jpg","duration":694,"publication_date":"2016-03-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hot-and-wet-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E45 - HOT AND WET - GTA 5 Gameplay","description":"I've noticed something in the comments for these GTA videos the last few weeks. People have started saying that GTA V is too old. That we shouldn't be playing such an old game; that they've moved on and they're tired. \n\n\n\nSo I'm going to be the first to say it: bring on GTA VI or GTA 6 or however they're going to title it. Fuck it. If it means that we get new maps and new mods and new dumb cars to race you guys, and if it means that you're not going to complain anymore about us playing an \"old\" game (that's actually only 2 and a half years old) then help spread the word. Time for GTA 6.\n\n\n\nRace: The Crush Box: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/i9aoLvsluUOyjCRu4juzyw#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hot-and-wet-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b2eea13-c55d-4cdf-9f44-d2cab6797e66/sm/1788484-1458681782705-fh_thumb_9_copy_35.jpg","duration":839,"publication_date":"2016-03-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-is-dark-souls-too-h-a-r-d-62","changefreq":"weekly","video":[{"title":"2016:E62 - Is Dark Souls TOO HARD? - #62","description":"Yeah. It's probably too hard. But we're just normcore scrub casuals who need BradyGames Guides to help cheat and win. We've never played a REAL game like Dark Souls before, so we can't possibly appreciate its punishing gameplay, or punishing gray visuals, or punishing online fan community. Nope. Not us. We're just little baby boys who only play mobile games and don't have the rich depth of experience to tell us what's good and what's Dark Souls.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-is-dark-souls-too-h-a-r-d-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/548c9e2b-65f6-4916-952e-a45a1bb68e0b/sm/1788482-1458692688153-fh_thumb_9_copy.jpg","duration":3632,"publication_date":"2016-03-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-starkiller-base","changefreq":"weekly","video":[{"title":"2016:E11 - WE ARE STARKILLER BASE","description":"CORRECTION: The fan art depicting Adam with James and Bruce puppets was actually made by Nate Boyles (@AnimNate)!\n\n\n\nWe'll be turning in our Fan Art badge and gun tomorrow.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-starkiller-base","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23a7bb7d-b1d5-4de2-ad0b-8c3d31261b0c/sm/1788482-1458681666586-FanArt26.png","duration":1779,"publication_date":"2016-03-22T21:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-drunk-mario-maker-live-fullhaus","changefreq":"weekly","video":[{"title":"2016:E3 - Drunk Mario Maker LIVE - Fullhaus","description":"NOW will you stop asking us on Twitter if we're going to upload this?","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-drunk-mario-maker-live-fullhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/344669aa-17d3-4b6d-afc7-d6adcbfbbbc4/sm/1788484-1457989337820-Fullhaus_Drunk_mario_Maker.jpg","duration":7111,"publication_date":"2016-03-22T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-funhaus-gone-w-i-l-d-open-haus-57","changefreq":"weekly","video":[{"title":"2016:E12 - Funhaus GONE WILD? - Open Haus #57","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nTensions are running high. James hates Peake. Peake hates Elyse. Elyse hates everyone. Everyone hates Bruce. It's a rough time in the old Funhaus office, so I asked everyone here to say something really kind and nice, to try and ease the stress.\n\n\n\nBruce: \"This is a dumb exercise.\"\n\nLawrence: \"Leave me alone.\"\n\nAdam: \"Joel stop. Just -- just stop.\"\n\nJames: \"Get away from me.\"\n\nElyse: \"No.\"\n\nPeake: \"I'm busy.\"\n\nOmar: \".....\"\n\nBenson: (peed on my foot)\n\nBillie: (pooped on the pee on my foot)","player_loc":"https://roosterteeth.com/embed/open-haus-2016-funhaus-gone-w-i-l-d-open-haus-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f320172c-1e6b-4541-a421-0ee0f0223bd2/sm/1788484-1458341646049-OH_Thumb_Mar_22.jpg","duration":782,"publication_date":"2016-03-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-history-boner-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E12 - HISTORY BONER - Demo Disk Gameplay","description":"Recently, scholars have found a trove of ancient Roman texts. Amongst the documents is one item of particular note: a chronicling of STDs known to the ancients. Below is a brief translated selection.\n\n\n\nWhen engaging in relations of a sexual nature with a consort of any type, citizens must know of diseases venereal which may result of that congress. Insomuch as it is my duty as a scholar, I, Glavius Scipianus Portus, have taken it upon myself to seduce as many women as I possibly can or, barring that, engage the service of prostitutes, to research all illnesses of the genitals. Herein lies the results of those studies.\n\n\n\nThe African Pox: a gentle swelling of the testes\n\nPompeii's Eruption: yellow to red penile discharge\n\nFish Skin: a flaky, dry rash, appearing in the size of a sesterce\n\nThe German Pox: female only; cracked nipples and bleeding of the breasts\n\nEmperor's Bane: weeping sores \n\nJupiter's Flank: an affliction of the foreskin\n\nThe Gallic Pox: contracted from whores of Gaul; white pustules about the groin","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-history-boner-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22982686-832f-4998-8c02-f0a56eae1f68/sm/1788484-1458348201748-fh_demo_disk_55_thumbnail.png","duration":1035,"publication_date":"2016-03-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-how-to-draw-in-vr-tilt-brush-gameplay","changefreq":"weekly","video":[{"title":"2016:E44 - HOW TO DRAW IN VR - Tilt Brush Gameplay","description":"Artist: Funhaus\n\nTitle: Overalls\n\nMedium: Virtual Reality Mindspace\n\n\n\nIn this piece, the artist explores the futility of struggle against his own creative process, and that of his teammates. By showing himself, in a self-portrait as it were, floating in an empty void/grid of his own making, the artist seems to be saying \"Enough is enough. I drew a pair of overalls, what don't you get?\" The audience of the piece takes on the role of the artist's teammates, bearing the brunt of his aggression, frustration, and ineptitude. \n\n\n\nUltimately history will decide if the artist created overalls or if, as his teammates say, his 12 years of training, $165,000 in grad school debt, and eternal disappointment of his family who agree that he \"should have gone to law school\" only resulted in creating \"a Jesus wombat taking a shit?\"","player_loc":"https://roosterteeth.com/embed/gameplay-2016-how-to-draw-in-vr-tilt-brush-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/401c9994-2227-4bbb-a1bc-a89e90e62270/sm/1788484-1458249666923-Pictionary_VR_Thumb.jpg","duration":1651,"publication_date":"2016-03-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-let-s-play-the-culling-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E9 - Let's Play - The Culling","description":"Sexy teens, pitted against each other in a battle royale, sexy teen vs sexy teen. Things will really steam up, in a sexy sense, when these sexy teens start hunting each other down for sport, and for lust. We've pumped up the heat and humidity so these sexteens are all running around in shorts and sexy tank tops, sweating on each other, using bows and arrows and tongues to kill and love. A hot and slick morass of blood and twisted limbs and naked flesh, pressed against flesh. What better venue to fall in love than a Government Mandated Death Arena? SEXY TEENS","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-let-s-play-the-culling-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/550d711a-37a2-47c7-ae64-0eba79f672e9/sm/1788484-1458327529078-culling_lp_thumbnail_720.jpg","duration":1206,"publication_date":"2016-03-18T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-cheaters-screencheat-gameplay","changefreq":"weekly","video":[{"title":"2016:E43 - DRUNK CHEATERS - Screencheat Gameplay","description":"The fallout from our Drunk Mario Maker stream continues. Honestly, it really improved our productivity. This is the fourth video we've gotten out of getting drunk, and I think we have at least 2 more to come. Lucky you. Lucky us.\n\n\n\nWe should really drink a hell of a lot more. Drunk Know episodes. Drunk Demo Disk. Drunk Wheelhaus. Because the glory is that we can just roll from one recording session into another. So what do you think? Should we do it? Should we turn into an only-drunk channel?\n\n\n\nProbably.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-cheaters-screencheat-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abd8d959-d551-4188-bb36-0519d1fe9f51/sm/1788484-1458151226850-fh_thumb_9_copy_32.jpg","duration":500,"publication_date":"2016-03-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-dislike-this-video-funhaus-comments-10","changefreq":"weekly","video":[{"title":"2015:E13 - DISLIKE THIS VIDEO - Funhaus Comments #10","description":"They said it was a crazy idea. They said it would never work. They were wrong. The reverse psychology title bait we're using today is going to revolutionize Funhaus. Just think about it. By asking - DARING - you guys to dislike the video, we're drawing your eye. Making you think. Suddenly, you start to consider the ramifications of your action on a global scale. \"How will my thumbs down affect the price of millet in sub-Saharan Africa?\" \"Will my college admissions officer see my thumbs down as a reflection of my potential contribution to my residential house?\" \"Maybe my future spouse and I are thumbs-downing together at this exact second.\" \n\n\n\nSee? Really makes you think. Reverse psychology, huh?\n\n\n\nAnyway, please dislike this video.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-dislike-this-video-funhaus-comments-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c58503d-e213-41ba-9041-76dabc1101d1/sm/1788484-1458168234516-fh_thumb_9_copy_31.jpg","duration":749,"publication_date":"2016-03-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-the-hunger-lames-the-culling-gameplay","changefreq":"weekly","video":[{"title":"2016:E42 - THE HUNGER LAMES - The Culling Gameplay","description":"Oh, Burroughsby, back from another safari, I see? Quite nice, yes those are magnificent trophies. Lion, hippo, all that. Rather. No, no, I'm not belittling you. Of course, excellent hunting and all that, it's just...well, don't you tire of the usual beasts. It's so predictable. Stalk, hide, shoot. Stalk, hide, shoot. Drink, drink, shoot. Don't you long for something more challenging? More cunning?\n\n\n\nYou do? I thought you might. Come, step into this alcove, where the rest of the Adventurer's League can't hear us. \n\n\n\nBurroughby, I own an island. Not too big, in the Caribbean. Deserted. Miles away from the nearest land. And there, you can hunt the most dangerous, clever, devilish game you can possibly imagine. Legal? Hardly, by international law...but then...I own the island, don't I? Burroughsby, I'm talking about -- oh good god no, not humans! Burroughsby! I'm shocked! How dare you suggest that? I would never!\n\n\n\nI'm talking about koalas.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-the-hunger-lames-the-culling-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b99231a-66a6-47c3-84da-f5191c628ded/sm/1788484-1458082970724-fh_thumb_9_copy_30.jpg","duration":1444,"publication_date":"2016-03-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-war-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E41 - DRUNK WAR - GTA 5 Gameplay","description":"Just when you thought we'd run out of drunk gameplays.\n\nJust when you thought we couldn't get drunker.\n\nJust when you thought we should probably go home and sleep it off....\n\n\n\nGTA DRUNK GAMEPLAY PART 2\n\n\n\nBunker Bridge 30 Player - http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/ETkSe4FjnEe2jL-9BmvIgg#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-war-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/038f80e0-8a75-4124-92de-1b05955337b2/sm/1788484-1457979328770-fh_thumb.jpg","duration":633,"publication_date":"2016-03-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-the-division-better-than-d-e-s-t-i-n-y-61","changefreq":"weekly","video":[{"title":"2016:E61 - The Division BETTER THAN DESTINY? - #61","description":"This episode of Dude Soup is a real game of musical chairs. You almost get the entire Funhaus crew. \n\nYou get your standard Lawrence/James/Adam lineup, but WHAM then we hit ya with a Peake. For the first time in recent memory on the video podcast! And then, just when you think things can't get much more exciting, BAM here comes a Joel! Ohh buddy, now things are heating up. What's that, you want more? BZAAP, you get Elyse! Wowie wowow woah!\n\nAnd then, to cap things off, we bring on a very special guest that's so surprising we can't even mention in in the description. You'll have to watch the whole video to find out who it is!","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-the-division-better-than-d-e-s-t-i-n-y-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c09fea27-3cd0-4bfe-9466-15a81cf6a4f0/sm/1788482-1458079902858-fh_thumb_9_copy.jpg","duration":3833,"publication_date":"2016-03-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-p-o-u-t-y-p-r-e-c-i-o-u-s-proud","changefreq":"weekly","video":[{"title":"2016:E10 - WE ARE POUTY, PRECIOUS, PROUD","description":"You guys are getting really good at this fanart thing. We should make a show about it.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-p-o-u-t-y-p-r-e-c-i-o-u-s-proud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00f5ed7d-73c4-4a9f-90e1-8dc7617ea3dc/sm/1788482-1458078687165-Fanart25.png","duration":1930,"publication_date":"2016-03-15T21:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-political-machine-live-fullhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E2 - POLITICAL MACHINE Live - Fullhaus Gameplay","description":"Happy election, everyone! I hope you're all voting, or if you support the candidate we hate, that you stay away from voting. Politics, huh?","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-political-machine-live-fullhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af470979-cf39-4dfb-8b56-6e33b9f3d35c/sm/2013912-1457973490097-PoliticalMachineThumbnail.jpg","duration":3399,"publication_date":"2016-03-15T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-how-to-make-a-billion-d-o-l-l-a-r-s-open-haus-56","changefreq":"weekly","video":[{"title":"2016:E11 - How to Make a BILLION DOLLARS? - Open Haus #56","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nI want to take this platform to address something that's been really bugging me over the last few months: Fail Army's Fail of the Week videos.\n\nI feel like they've gotten way more self aware, lamer, and dumber. The number of people who say \"FAIL ARMY\" at the end of their videos has drastically increased. And what's worse, they're including so many videos are just AREN'T FAILS!\n\n\n\nCute animal videos are NOT A FAIL\n\nPranks are NOT A FAIL\n\nGetting yelled at by an old man is NOT A FAIL\n\n\n\nCome on. Get it the fuck together guys. Our Fridays depend on you.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-how-to-make-a-billion-d-o-l-l-a-r-s-open-haus-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71672505-2211-4111-b13d-d5c011df1d33/sm/1788484-1457747119842-fh_thumb_9_copy_29.jpg","duration":704,"publication_date":"2016-03-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-5","changefreq":"weekly","video":[{"title":"2016:E8 - GTA V – Every Bullet Counts","description":"Funhaus is poppin' their way through the offices. Make sure you watch this video in first person. First person, guys. Bruce will be around shortly to check.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ea69dff-0656-4fc8-a3a2-5d4fe1a0f8fe/sm/2013912-1457737354763-LP_GTA_V_Bullet_FH_Thumbnail.jpg","duration":1655,"publication_date":"2016-03-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-star-wars-porno-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E11 - STAR WARS PORNO - Demo Disk Gameplay","description":"Lawrence worked really hard on this Demo Disk. You can see it in the edit. You can see it in all the text, and the hot photoshops. Heck, I think this is the first time we've had a webcam zoom AND track! That's the Elyse shot. You'll know it when you see it.\n\n\n\nAnyway, everyone give Larry Sunshine a solid thanks in the comments. Better yet, tweet at him! You know his twitter, right? It's the following link, which I definitely did not make up on the spot: http://twitter.com/lawrencesonntagthereallawrencen...","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-star-wars-porno-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cfb23ca-1ca4-4bc9-aff0-cea265d6bdd7/sm/1788484-1457741430667-fh_thumb_9_copy_28.jpg","duration":856,"publication_date":"2016-03-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-episode","changefreq":"weekly","video":[{"title":"2016:E7 - Dark Souls 3 LORE MASTERS - Dark Souls 3 Gameplay","description":"Microsoft invited us to the Xbox Spring Showcase and this is how we wasted their hospitality. The sandwiches were great though. Please don't be mad at us Microsoft.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31392dfb-cce3-4d07-8973-df1ffc76acf4/sm/1788484-1457556701433-fh_thumb_9_copy_24.jpg","duration":792,"publication_date":"2016-03-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-your-clothes-suck-funhaus-shorts","changefreq":"weekly","video":[{"title":"2016:E6 - YOUR CLOTHES SUCK - Funhaus Shorts","description":"Name of Applicant: Funhaus\n\nPurpose of Application: Film Permit\n\nName of Project: \"Sellout to Corporate Overlords\"\n\nLocation: Los Angeles & Surrounding Areas\n\nCast & Crew: Usual Tubelords\n\nLength: 3:00 or 120:00, TBD\n\nCost of Production: $00.07\n\nExpected Audience/Views: 29\n\nSynopsis of Project: Convince chumps to buy shoddy branded merchandise","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-your-clothes-suck-funhaus-shorts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07945ba5-2241-40a2-9886-4ffcf0a267de/sm/1788484-1457631408500-fh_thumb_9_copy_25.jpg","duration":214,"publication_date":"2016-03-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-mario-maker-super-mario-maker-gameplay","changefreq":"weekly","video":[{"title":"2016:E40 - DRUNK MARIO MAKER - Super Mario Maker Gameplay","description":"We had a bit of a hiatus from our last drunk gameplay. Mainly to let our collective liver regenerate. But now we're back. With a bottle and half of vodka, and some brown liquor from Central Europe, ready to destroy both Mario Maker and Our Bodies.\n\n\n\nWhen we're old and have cirrhosis of the liver, remember that we did this for you.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-mario-maker-super-mario-maker-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39a6aad9-cd47-44fc-bfbc-ba50d7429aeb/sm/1788484-1457632041670-fh_thumb_9_copy_26.jpg","duration":2170,"publication_date":"2016-03-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-quantum-break-in-gta-5-mod-gameplay-2","changefreq":"weekly","video":[{"title":"2016:E7 - QUANTUM BREAK in GTA 5! Mod Gameplay!","description":"Seriously. Please subscribe to Funhaus. Achievement Hunter passed us a few weeks ago, and now we're really sad. The only thing that makes us happy in this cold, barren world is watching that little subscriber counter tick up, up, up. \n\nMy mother said I would never amount to anything. I really screwed up my 5th grade performance of Wind in the Willows. Sorry, Badger - once again, I apologize for ripping your tail off during the afternoon show. For once, I though would like to prove MOTHER DEAREST wrong. I'd like to show her that Internet Videos are a real thing. That my job means something.\n\nI really need that number to go up. So please - for the sake of my family - subscribe to Funhaus. Maybe watch a video. Buy a t-shirt. It is Merch March after all. And if I could ask one more favor, just email my mom. Tell her I made it. That I'm worth something. That the dumpster behind the Circle K where she left me in 1992 will someday have a plaque saying \"THIS IS WHERE IT ALL STARTED!!!\"\n\nPresident Assassination Speech\n\nhttps://www.gta5-mods.com/maps/kill-the-president-...\n\nQuantum Break Script Mod\n\nhttp://gtaxscripting.blogspot.com/2016/03/gta-v-qu...\n\nHulk Script Mod\n\nhttp://gtaxscripting.blogspot.com/2015/10/gta-v-pc...\n\nIronman Mod and Mark III Armor\n\nhttp://gtaxscripting.blogspot.com/2015/08/gta-v-ir...\n\nScript Hook V & Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nScript Hook V Dot Net \n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nSimple Trainer\n\nhttps://www.gta5-mods.com/scripts/simple-trainer-f...\n\nMenyoo PC\n\nhttps://www.gta5-mods.com/scripts/menyoo-pc-sp\n\nMap Editor\n\nhttps://www.gta5-mods.com/scripts/map-editor","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-quantum-break-in-gta-5-mod-gameplay-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71e4dc6e-c60f-4098-b9b4-6f8d3b1b0d58/sm/2013912-1457645673674-fh_lp_template_copy.jpg","duration":396,"publication_date":"2016-03-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-g-u-n-dumb-style-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E39 - GUN-DUMB STYLE - Wheelhaus Gameplay","description":"Yesterday was Dogi-Style. Today is Gun-Dumb Style. It looks like we're getting lazy with our titles, doesn't it? I was a little worried about that. After a year here at Funhaus, and many, MANY years on YouTube previously, our well is starting to run dry. There are only so many exploitative titles. Only so many self-depreciating jokes. Only so puns you can come up with.....wait a minute...\n\n\n\nI've got it! We'll hire Barbara as our Official Video Titlesmith! It's the job she was born to do! My work here is done; I quit!","player_loc":"https://roosterteeth.com/embed/gameplay-2016-g-u-n-dumb-style-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4ba2df3-54bf-40e4-97e2-d9f0374a1cdf/sm/1788484-1457483702300-wheelhaus-mechaorwhateverv2.png","duration":766,"publication_date":"2016-03-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-quantum-break-in-gta-5-mod-gameplay","changefreq":"weekly","video":[{"title":"2016:E6 - QUANTUM BREAK in GTA 5! Mod Gameplay!","description":"Subscribe to Funhaus! http://bit.ly/1R7R7Ou\r\n\r\n\r\n\r\nSeriously. Please subscribe to Funhaus. Achievement Hunter passed us a few weeks ago, and now we're really sad. The only thing that makes us happy in this cold, barren world is watching that little subscriber counter tick up, up, up. \r\n\r\n\r\n\r\nMy mother said I would never amount to anything. I really screwed up my 5th grade performance of Wind in the Willows. Sorry, Badger - once again, I apologize for ripping your tail off during the afternoon show. For once, I though would like to prove MOTHER DEAREST wrong. I'd like to show her that Internet Videos are a real thing. That my job means something.\r\n\r\n\r\n\r\nI really need that number to go up. So please - for the sake of my family - subscribe to Funhaus. Maybe watch a video. Buy a t-shirt. It is Merch March after all. And if I could ask one more favor, just email my mom. Tell her I made it. That I'm worth something. That the dumpster behind the Circle K where she left me in 1992 will someday have a plaque saying \"THIS IS WHERE IT ALL STARTED!!!\"","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-quantum-break-in-gta-5-mod-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/164a1194-04d3-4ec7-afb6-73e15b3265a5/sm/1788484-1457640786672-fh_lp_template_copy_3.jpg","duration":870,"publication_date":"2016-03-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-tasteless-jokes-funhaus-comments-9","changefreq":"weekly","video":[{"title":"2015:E12 - TASTELESS JOKES - Funhaus Comments #9","description":"Hey. We're on to you. We know that you're leaving purposely inflammatory comments in the hopes that we say your name on the show and yell at you. Guess what? We can see through that shit. What, you think we're idiots? You think we're like YOU? Wrong. We're geniuses. BABY geniuses. So none of those dumb comments are gonna make the show.\n\nSTOP TRYING TO MANIPULATE ME, MOTHER.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-tasteless-jokes-funhaus-comments-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9d83389-fee0-4188-b1da-e1f1044d0e9d/sm/1788484-1457549233494-fh_thumb_9_copy_23.jpg","duration":519,"publication_date":"2016-03-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-d-o-g-i-style-day-one-garry-s-incident-gameplay-part-4","changefreq":"weekly","video":[{"title":"2016:E38 - DOGI-STYLE - Day One: Garry's Incident Gameplay Part 4","description":"It began as a segment on One Dollar One Hour. It survived thanks to its derptitude. We've been through so many episodes together. And now it's time to bid goodbye to everything that made Day One: Garry's Incident so great.\n\nThe monkeys. The natives. The jungle. The truly, truly unsolvable puzzles. Thank you Garry's Incident. May you burn in hell.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-d-o-g-i-style-day-one-garry-s-incident-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1f5ac64-f5bc-49b1-8437-336b0733dcba/sm/1788484-1457632161249-dayonethumbv2_1.png","duration":634,"publication_date":"2016-03-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-drunk-driving-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E37 - DRUNK DRIVING - GTA 5 Gameplay","description":"Step 1: Drunk Mario Maker\n\nStep 2: Drunker Gang Beasts\n\nStep 3: Drunkest GTA\n\nStep 4: Hungover editing\n\nStep 5: RoosterBucks!!!!!!\n\n\n\nTiny Twister - http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/YJ7-2ULGMEGWCokDLCaa9Q#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-drunk-driving-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcf521e8-246a-4aa2-a567-e94b41e2c92b/sm/1788484-1457546399117-fh_thumb_9_copy_22.jpg","duration":1051,"publication_date":"2016-03-09T15:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-fallout-5-c-o-n-f-i-r-m-e-d-60","changefreq":"weekly","video":[{"title":"2016:E60 - Fallout 5 CONFIRMED? - #60","description":"Thanks to our sponsors! Try the YouTube Red free 30-day trial here: http://bit.ly/1Qh3oOE\n\nAnd try Audible free for 30 days at http://www.audible.com/dudesoup \n\nWe woke up this morning to a YUUUUGE potential leak. Maybe. I mean, it's not like most regular franchises aren't in development at some point. So really, this is just probably confirming what we already know, right? Does this kind of news even get you off anymore, or do you need the hard stuff? The real game juice? Screenshots. Dev diaries. Hard, long, wet code. \n\nRegardless, I'm more excited for the next Elder Scrolls OFFLINE game...","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-fallout-5-c-o-n-f-i-r-m-e-d-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9686687-e2af-41f3-8e1a-0ac5cf251452/sm/1788484-1457475739549-fh_thumb_9_copy_21.jpg","duration":3621,"publication_date":"2016-03-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fullhaus-2016-rage-cage-live-fullhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E1 - RAGE CAGE Live - Fullhaus Gameplay","description":"Mmmm, welcome to delicious Fullhaus gameplay, where we upload an entire, unedited gameplay. That's right, you get all the crap we thought wasn't funny enough to make the final video. \n\nEnjoy?\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/joelrubin_","player_loc":"https://roosterteeth.com/embed/fullhaus-2016-rage-cage-live-fullhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e04ce945-6857-4df5-ab20-426de569a5be/sm/2013912-1457371940777-Rage_Cage_Thumbnail.jpg","duration":2325,"publication_date":"2016-03-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-assholes","changefreq":"weekly","video":[{"title":"2016:E9 - WE ARE ASSHOLES","description":"We know how to give someone a warm welcome. Just shove a controller in their hands and then scream at them for several minutes at a time.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-assholes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5d362bb-732e-4761-bf08-dfb159d85215/sm/1788482-1457473546755-Fanart24.png","duration":1933,"publication_date":"2016-03-08T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-funhaus-sex-t-i-p-s-open-haus-55","changefreq":"weekly","video":[{"title":"2016:E10 - Funhaus SEX TIPS? - Open Haus #55","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nOur new office setup really makes Open Haus much better, wouldn't you say. We're sitting in a big circle. A donut, if you will, all facing inward. Constantly looking at each other, into each others' eyes, all day. The souls of all are bared to all, no secrets are hidden, and trust is the currency of our love. When I look across the chasm of the donut and I can see Lawrence intently gazing at me, I know we are one. And when James locks eyes with Bruce, I know why they married each other. This office was meant to be. We inhabit the same mindspace, sharing intimate thoughts. Working as one. Living as one. Forever in eternity.\n\n\n\nSo yeah, the desks are really helping out Open Haus.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-funhaus-sex-t-i-p-s-open-haus-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e64338fd-2051-4333-ad6c-ccdf92da8555/sm/1788484-1457131450207-fh_thumb_9_copy_20.jpg","duration":688,"publication_date":"2016-03-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-racist-hitman-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2016:E10 - RACIST HITMAN - Demo Disk Gameplay","description":"American McGee's Alice\n\nBolivian Gutierrez's Pilar\n\nColombian Moreno's Sofia\n\nDanish Andersen's Agnethe\n\nEquadorian Ruiz's Josefina\n\nFinnish Jarvi's Indrid\n\nGerman Fleischer's Helga\n\nHungarian Hermel's Erzsebet\n\nIndian Chaudhary's Parvati\n\nJapanese Hayashi's Kiki\n\nKenyan Kiplimo's Abuya\n\nLithuanian Lutkus' Irena\n\nMoroccan...\n\nFuck it, I'm tired of this joke","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-racist-hitman-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64cb2fd8-25a5-41f5-a8be-e6036b4eb0a0/sm/1788484-1457130361726-fh_thumb_9_copy_18.jpg","duration":943,"publication_date":"2016-03-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-this-video-is-not-funny-superhot-gameplay","changefreq":"weekly","video":[{"title":"2016:E36 - THIS VIDEO IS NOT FUNNY - SUPERHOT Gameplay","description":"SUPERHOT\n\nSUPERHOT\n\nWHERE'S MY PISTOL\n\nSUPERHOT\n\n\n\nSUPERHOT\n\nSUPERHOT\n\nDODGE THE BULLETS\n\nSUPERHOT\n\n\n\nSUPERHOT\n\nSUPERHOT\n\nOMARCITO\n\nSUPERHOT\n\n\n\nSUPERHOT\n\nSUPERHOT\n\nNOTHING FUNNY\n\nSUPERHOT","player_loc":"https://roosterteeth.com/embed/gameplay-2016-this-video-is-not-funny-superhot-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a734974-c63d-4b0c-991b-ed235a6ade13/sm/1788484-1457055527309-fh_thumb_9_copy_16.jpg","duration":810,"publication_date":"2016-03-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-best-of-vin-diesel-best-of-funhaus-february-2016","changefreq":"weekly","video":[{"title":"2016:E35 - BEST OF VIN DIESEL - Best of Funhaus February 2016","description":"Edited by CaptainPajamaPants\n\nPlease check out and support his channel!\n\nhttps://www.youtube.com/user/CaptainPajamaPants\n\n\n\nLook, we get it. You're all busy people. You got stuff to do. Errands to run. Games to play. Liquor to drink. You don't have time to watch every single one of our videos (even though let's be honest you should). \n\n\n\nSo Our Close and Personal Friend CaptainPajamaPants put together this lil' Best Of Video for February, for all you lazy types who can't be bothered to sign into YouTube and WATCH OUR ACTUAL VIDEOS WE WORK SO HARD TO PLEASE YOU WITH, DAD.\n\n\n\nWhat? Sorry. No idea what happened there.\n\n\n\nAnyway, enjoy!","player_loc":"https://roosterteeth.com/embed/gameplay-2016-best-of-vin-diesel-best-of-funhaus-february-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59683c44-2b9a-4ac7-a642-683499aa53f1/sm/1788484-1457046092479-fh_thumb_9_copy_15.jpg","duration":1342,"publication_date":"2016-03-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-the-perfect-weapon-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2016:E4 - THE PERFECT WEAPON - Funhaus Cartoons","description":"Ok, so this episode is like a week late, but that's because of all the KICKASS MOTHERKICKING ACTION. DID YOU SEE THOSE KICKS? DID YOU SEE THOSE DINOSAURS? DID YOU SEE. THOSE. BABIES!? ACTIONBABIES!!!\n\n\n\nMaybe we'll be on schedule for next month. Or maybe. Just maybe. This show has reached a whole new level and we need to outdo ourselves yet again.\n\n\n\nOnly time will tell.\n\n\n\nAnimation: : Andy Jocevicius https://twitter.com/yosavages\n\nSound Design: Martynas Jocevicius https://twitter.com/oakowlrecords\n\nAnimation Support : Alycia Besche https://twitter.com/AlyciaShady","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-the-perfect-weapon-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c07ab47-b43c-4e62-836a-8648c7f9ca4a/sm/1788484-1457119477420-fh_thumb_9_copy_17.jpg","duration":174,"publication_date":"2016-03-04T17:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-tomb-raider","changefreq":"weekly","video":[{"title":"2016:E5 - TOMB RAIDER in GTA 5! Mod Gameplay!","description":"Guys. Hey, everyone. Listen up. I know we've released a lot of Mod videos here on the Let's Play channel in the last year or so. Some classic, real funny stuff, right?\n\nThis right here. This is the best. We were watching it this morning, and Bruce went full wheeze on it. I was rolling around on the couch. Even Adam smiled, so you KNOW it's good. I dunno. Just saying. I hope you like this one.\n\nAnd if you don't.\n\nKindly go screw yourself.\n\n\n\nScript Hook V & Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nScript Hook V Dot Net \n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nSimple Trainer\n\nhttps://www.gta5-mods.com/scripts/simple-trainer-f...\n\nMenyoo PC\n\nhttps://www.gta5-mods.com/scripts/menyoo-pc-sp\n\nMap Editor\n\nhttps://www.gta5-mods.com/scripts/map-editor\n\nTomb Raider Lara Croft Ped+ Real Head + Accessories v1.6 \n\nhttps://www.gta5-mods.com/player/tomb-raider-lara-...\n\nMerryweather Mountain Fortress (Military Base)\n\nhttps://www.gta5-mods.com/maps/merryweather-mounta...\n\nFunny Golf Club\n\nhttps://www.gta5-mods.com/weapons/funny-golf-club\n\nFunny Vehicles Pack #2\n\nhttps://www.gta5-mods.com/vehicles/funny-vehicles-...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecca316c-d8b9-4c5f-906c-ba354b975000/sm/2013912-1457107488136-fh_lp_template_copy_2.jpg","duration":609,"publication_date":"2016-03-04T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-y-o-u-re-still-stupid-funhaus-comments-8","changefreq":"weekly","video":[{"title":"2015:E11 - YOU'RE STILL STUPID - Funhaus Comments #8","description":"The triumphant return of -- (What? Not triumphant at all? Ok, I'll try again)\n\n\n\nThe inevitable retu -- (Huh? Oh, right, we weren't sure we were going to bring it back. Once more from the top)\n\n\n\nThe classic Funhaus Comments Show is back and better than -- (Ok, fair enough - it's not \"classic\". And you're right, let's not promise that it's better. Gimme another take)\n\n\n\nFunhaus Comdants is -- (Haha, that one was my bad. Again)\n\n\n\nFunhaus Comments has finally returned! (How was that? Good enough? Ok, I'm going home. Make the check payable to Joel's Voiceover Agency LLC)","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-y-o-u-re-still-stupid-funhaus-comments-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b9609be-2465-4fc6-82d0-caab94a66222/sm/1788484-1456959767487-fh_thumb_9_copy_960.jpg","duration":400,"publication_date":"2016-03-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-go-to-hell-gore-gameplay-part-5","changefreq":"weekly","video":[{"title":"2016:E34 - GO TO HELL - Gore Gameplay, Part 5","description":"Goodbye sweet Gore. You'll be with us forever. Your skeletons. Your pizzas. And yes, even your unexpected porn. It's been a wonderful journey together.\n\n\n\nOh wait no, you suck see ya.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-go-to-hell-gore-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f35e4fd3-1370-4d3c-9add-f6153dcd88fc/sm/1788484-1457024661337-fh_thumb_9_copy_12.jpg","duration":600,"publication_date":"2016-03-03T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-4","changefreq":"weekly","video":[{"title":"2016:E8 - WE ARE TITANS","description":"The fanart is increasing every week. This pleases us. Please the allmighty Funhaus!","player_loc":"https://roosterteeth.com/embed/fan-show-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/094e0741-35a9-4e71-a87e-a77626ca7d73/sm/1788482-1456962087912-Fanart-23.png","duration":1823,"publication_date":"2016-03-02T23:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-gladiator-g-r-a-b-ass-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E33 - GLADIATOR GRAB-ASS – GTA 5 Gameplay","description":"My name is Jamesius Brucius Kovicius, commander of the Armies of the Haus, General of the Rooster Legions, loyal servant to the true emperor, Burnius Burnsius. Coworker to a hammered bud, dudebro to a molotov'd whatever. And I will have my kill streak, in this life or the next.\n\nGladiator's Arena: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/mW9Tn0jMtUeDSi88oYUjHw#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-gladiator-g-r-a-b-ass-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27cbea59-a18e-4050-ad7a-54f044bb6dca/sm/2013912-1456851508881-fh_thumb_9_copy.jpg","duration":600,"publication_date":"2016-03-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-worst-movies-ever-59","changefreq":"weekly","video":[{"title":"2016:E59 - Why Do MOVIES SUCK? – #59","description":"They don't, that's the real secret. We just gotta clickbait in all the YouTube kids. Wait, maybe this is why YouTube sucks! It's just an endless cycle of bait to convince those without standards to consume your media. Mind blown.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-worst-movies-ever-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acff037c-c90f-4f67-9035-a7822cc9574b/sm/1788482-1456871074323-fh_thumb_9_copy.jpg","duration":3706,"publication_date":"2016-03-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-how-to-be-s-i-n-g-l-e-54","changefreq":"weekly","video":[{"title":"2016:E9 - How to BE SINGLE? – #54","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nSo Leo finally won. I guess that's good and all. But honestly I'd have preferred if he lost. First of all, I feel like at this late a date it's a consolation prize for everything he DIDN'T win for. He was WAYYY better in Wolf of Wall Street. \n\nBut second, and more importantly, at this point it's just fucking hilarious. I love that he doesn't win. I love the memes. I love how he pretends he doesn't care. I love watching people freak out about it. And they've taken that away from me, goddammit.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-how-to-be-s-i-n-g-l-e-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08d3f7d3-6042-4042-b7a8-b93de6ef5600/sm/2013912-1456768920938-fh_thumb_9_copy_720.jpg","duration":792,"publication_date":"2016-02-29T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-black-cock-down","changefreq":"weekly","video":[{"title":"2016:E9 - BLACK COCK DOWN","description":"I'm gonna level with you guys here: everyone is going to Austin today. Demo Disk was delivered to us a little late in the afternoon. I'm headed out of town for a wedding. So this description doesn't have anything to do, at all, with the content of the video. Because I just need to write some stuff and get it up online so I can go toast the bride and groom. \n\nAre you happy?","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-black-cock-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1796531e-ceff-43da-b497-05fe2c9b22fc/sm/2013912-1456417710801-fh_thumb_9_copy.jpg","duration":1172,"publication_date":"2016-02-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-me-so-drifty-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E32 - ME SO DRIFTY – Wheelhaus Gameplay","description":"Ah, drift it\n\nAh, drift it\n\nOoh baby baby, oooh baby baby\n\nOoh baby baby, oooh baby baby\n\n\n\nOw Baby! Bruce and Adam's here\n\nNow wait a minute, y'all\n\nThis game ain't for everyone\n\nOnly the Funhaus people\n\nSo all you Fun mothers, get on out there and drift\n\nDRIFT, I said!\n\n\n\nBruce and Adam's here, and we're here with James\n\nWant you to play it, babe\n\nPlaying by day then at night, playing lots of games\n\nC'mon bros, let's go show the subs that we know\n\nHow to become number one in a hot Wheelhaus show\n\nNow drift it\n\n\n\nAh, drift it - drift it good\n\nAh, drift it - drift it real good\n\nAh, drift it - drift it good\n\nAh, drift it - drift it real good","player_loc":"https://roosterteeth.com/embed/gameplay-2016-me-so-drifty-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c766e9-e74d-4550-984c-0a37efd777ab/sm/2013912-1456356754499-fh_thumb_9_copy.jpg","duration":738,"publication_date":"2016-02-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-election-erection-the-political-machine-2016-gameplay","changefreq":"weekly","video":[{"title":"2016:E31 - ELECTION ERECTION - The Political Machine 2016 Gameplay","description":"Fifty nifty United States from thirteen original colonies;\n\nFifty nifty stars in the flag that billows so beautif'ly in the breeze.\n\nEach individual state contributes a quality that is great.\n\nEach individual state deserves a bow, we salute them now.\n\nFifty nifty United States from thirteen original colonies,\n\nShout 'em, scout 'em, Tell all about 'em,\n\nOne by one till we've given a day to ev'ry state in the U.S.A.\n\nAlabama, Alaska, Arizoma, Markandaw, Cali-Wali, Color Ado, Connect-4;\n\nHellaware, Whorida, Gorges, Aloha, Potatoland, Ill & Noise, Mingyana;\n\nI-yi-yi, CanAss, KKKentucky, Loueasymana, Pain, Merrylamb, Assashootshiz, Youchigan;\n\nFewersota, Sissyssippi, Misery, Mount Anna, Nerdbraska, NeVader;\n\nNew Hempshire, Blew Jersey, New Sexico, Jew Dork, Fourth Carolina,\n\nNorth Dankota, Blowhio, Jokelahoma, Pooregon, Transylvania, Rogue Guyland, Mouth Carolina, South Dankota, Winnesssees, SexAss, Youthaw, Vermouth, Virginass, Washyourmouth, Worst Virginia, Wiscussin', Whyogod\n\n\n\nNorth, south, east, west, in our calm, objective opinion,\n\nMarkunalia is the best of the\n\nFifty nifty United States from thirteen original colonies,\n\nShout 'em, scout 'em, Tell all about 'em,\n\nOne by one till we've given a day to ev'ry state in the good old U. S. A.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-election-erection-the-political-machine-2016-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b52e271f-a352-4c03-8ed3-9f60b61dbbab/sm/2013912-1456335665582-fh_thumb_9_copy.jpg","duration":756,"publication_date":"2016-02-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-get-cornholed-plants-vs-zombies-garden-warfare-2-gameplay","changefreq":"weekly","video":[{"title":"2016:E30 - GET CORNHOLED - Plants vs. Zombies Garden Warfare 2 Gameplay","description":"Cornman (ah-ah-ah)\n\nFighter of the zombies (ah-ah-ah)\n\nChampion of the plants (ah-ah-ah)\n\nYou're a master of cornholes\n\nAnd weiners\n\nIn all your pants","player_loc":"https://roosterteeth.com/embed/gameplay-2016-get-cornholed-plants-vs-zombies-garden-warfare-2-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ffc4bec-05ce-4530-be96-667e8b0fb4c6/sm/2013912-1456270972292-fh_thumb_9_copy.jpg","duration":682,"publication_date":"2016-02-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-glitched-out","changefreq":"weekly","video":[{"title":"2016:E7 - WE ARE GLITCHED OUT","description":"Not to spoil anything, but this episode has a shocking revelation about Adam's face.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-glitched-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a2f4c7c-4593-4026-a851-05632187197d/sm/1788482-1456333846413-Fanart-20160223.png","duration":2000,"publication_date":"2016-02-24T14:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-fast-and-furious-8-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E29 - FAST AND FURIOUS 8 – GTA 5 Gameplay","description":"After a rousing memorial service for Pal Runner, the whole Fast Gamng gets back together for one final memorial heist. Starring Van Deasal as the Leader, Michael Rodrgerz as his gal pal, uhh Ronda Rousey is in it again, Dwarf \"The Rolf\" Joelson as Cop Gone Wild, and Tie Reese and RudeaChris and Jordaynne Brewer and Aaron Paul as the Crossover Kid.\n\nThis movie's gonna have it all! FFATE or F8 or you know it's gonna have a dumb name, coming Summer 2018.\n\nSuper Funz: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/KYx3btR8gE-h8R06g1LfIA#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-fast-and-furious-8-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed0f2bdb-27d9-48a1-95ae-dba6e7e887f0/sm/2013912-1456246441021-fh_thumb_9_copy.jpg","duration":772,"publication_date":"2016-02-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-sad-birthday","changefreq":"weekly","video":[{"title":"2016:E58 - WORST BIRTHDAYS EVER – #58","description":"Thanks Lenovo Gaming and GameState for sponsoring this podcast! Head straight to http://lnv.gy/1Q9CpqS to create the Ultimate Ability for the Grand Marshal in Mission 4: Rain Down Her Wrath.\n\nAlso, Kit Kats are delicious. Trust.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-sad-birthday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9f6ac69-d7a3-46fe-9c6e-1d890ebcbc01/sm/1788482-1456270445015-fh_thumb_9_copy.jpg","duration":3423,"publication_date":"2016-02-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-why-are-g-i-r-l-s-53","changefreq":"weekly","video":[{"title":"2016:E8 - WHY ARE GIRLS? – #53","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nWow, what a great group of questions this week for Open Haus. We are, as you can tell, super excited to answer all of them! Keep the deep, insightful, probing questions coming, gang! And you can bet we'll keep doing our best to get you real, serious, no-bullshit answers!!","player_loc":"https://roosterteeth.com/embed/open-haus-2016-why-are-g-i-r-l-s-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de7d96f8-c9ae-483a-b107-a9450c646e2c/sm/2013912-1456186847462-fh_thumb_9_copy.jpg","duration":807,"publication_date":"2016-02-23T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-hairy-pooter","changefreq":"weekly","video":[{"title":"2016:E8 - HAIRY POOTER","description":"Harry walked through the magical halls of Hogwarts, confused as always by his Charms class. But he had bigger problems: Voldemort had emailed an owl saying he was going to kill Harry tomorrow! So Harry assembled Dumbledore's Army. \"We have to find the final Horcrux, guys, and destroy it! Or else Voldemort is gonna come kill us all!\"\n\nHermione stepped forward. \"Harry, I know what the final Horcrux is, but I'm scared.\" \"Don't be scared, Hermy,\" Harry said. \"Whatever it is, we can help.\"\n\n\"Well...Harry, the final Horcrux is your penis.\" \n\n\"Ok everyone! You heard Heroine! We have to find out how to get this Horcrux out of my penis. I don't care if it takes all night!\"\n\nSeveral hours later Filch was called to clean up the mess, and 7 students were expelled.","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-hairy-pooter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/629bdcdb-65bb-4cec-9f7b-398e1204f868/sm/2013912-1455922952608-fh_thumb_9_copy.jpg","duration":950,"publication_date":"2016-02-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-dinosaurs-vs-nazis-1-dollar-1-hour-gameplay","changefreq":"weekly","video":[{"title":"2016:E28 - DINOSAURS VS NAZIS - 1 Dollar 1 Hour Gameplay","description":"This is a continuation of the story begun in the description of this video, and continued here, and here, and here, and here, and here, and here.\n\n\n\nThe Boy turned to the Courtesan. ìLetís have one more round.î ìI was hoping youíd say that. I have something to show youÖî\n\nShe reached deep into her bodice, jostling her jangly bits. The Boy stared. He didnít want to stare but he couldnít NOT stare. His eyes wouldnít let him not stare. She wiggled a bit, her arm going in deeper until suddenly -- she whipped her arm out, triumphantly holding a crystal flask filled with an amber liquid. ìI swiped it when we were at Kestorhouse. I have no idea whatís in it.î\n\nThe Boy smiled at her and replied, ìLetís find out!î\n\nThey extricated themselves from the other members of Pepperpots, making their excuses to their new friends, and wandered down the slowly quieting streets. The Lampwrightís Guild had already come, so the cobblestones were imbued with a hazy, golden reflective glow. Through the wends and winds, the alleys and closes of The University. They found a small bridge over a one of the canals that led from the river and sat down on the balustrade.\n\nThe cork came out of the flask with a satisfying SQUEEKNPOP. They each took a sniff. The Courtesan offered the flask to The Boy, who demurred: ìLadies first.î ìAhh,î she replied, ìBut Iím no lady!î She tipped the flask into his mouth; he took a deep sip, and she followed.\n\nThe taste was summer sunshine in a bottle. They wanted more.\n\nSoon, the flask was empty and their heads were spinning. ìWhat do you think it was?î The Courtesan asked. ìI have no idea! Iíd never had BEER before this week!î The Boy threw the flask in the canal and watched it bob away. They laughed, and started guessing liquors theyíd heard of: Simmer, or Brandy, or Akkavit. Usquebaugh, or Jinniver, or Ojen. The Courtesan was much better at this game, since sheíd spent time amongst the gentry. \n\nìAlright alright! I give up!î The Boy cried. ìYou obviously know more than I do. You know more about EVERYTHING than","player_loc":"https://roosterteeth.com/embed/gameplay-2016-dinosaurs-vs-nazis-1-dollar-1-hour-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0820a5e2-3e6b-4951-9952-915174b5cdfb/sm/2013912-1455899725138-fh_thumb_8_copy.jpg","duration":824,"publication_date":"2016-02-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016","changefreq":"weekly","video":[{"title":"2016:E4 - SUPERGIRL in Fallout 4! Mod Gameplay!","description":"We really need some more mods to mod around with. Maybe a dinosaur mod where you can mod around on dinos? Or going with the Supergirl theme, a Calista Flockhart mod where you have to fight off 1000 skeleton lawyers? What about something where you shoot Preston Garveys? Our where your settlement is built out of a bleeding skullpile? I dunno, I'm not a modder. \n\n\n\nYou guys figure it out.\n\n\n\nSuperman Outfit http://www.nexusmods.com/fallout4/mods/8375/?\n\nImmersive Facial Animation http://www.nexusmods.com/fallout4/mods/2224/?\n\nAtom Bomb Baby http://www.nexusmods.com/fallout4/mods/475/?\n\nPew Lasers http://www.nexusmods.com/fallout4/mods/5143/?\n\nThe Thomas the Tank Engine Mod (titled \"Really Useful Fallout\") was pulled down on February 17th. \n\nThe Nude Mod (\"Caliente's Beautiful Body Enhancer\") also no longer exists.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fd50e28-307d-41db-8e6d-92fb427d1c18/sm/2013912-1455824361438-fh_lp_template_copy.jpg","duration":513,"publication_date":"2016-02-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-take-our-load-garbage-simulator-gameplay","changefreq":"weekly","video":[{"title":"2016:E27 - TAKE OUR LOAD – Garbage Simulator Gameplay","description":"We got a great big convoy\n\nDrivin' down the road\n\nYeah we got a great big convoy\n\nGonna make you take our load\n\nDon't ask what's in our convoy\n\nWe're legally unable to say\n\nCops better ignore our convoy\n\nOr we'll give 'em a BJ\n\nConvoy!","player_loc":"https://roosterteeth.com/embed/gameplay-2016-take-our-load-garbage-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecec8817-f330-47de-9109-95b5d6fda64f/sm/2013912-1455816653584-fh_thumb_8_copy.jpg","duration":901,"publication_date":"2016-02-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-halo-5-p-o-d-r-a-c-i-n-g-custom-map-gameplay","changefreq":"weekly","video":[{"title":"2016:E26 - Halo 5 PODRACING! – Custom Map Gameplay","description":"Fodesinbeed Annodue walked into their house in the suburbs of Mos Espa - Sandy Dune Estates - and hung up their coat. It had been a long day...one of the longest they'd known. \n\n\n\nThe day had started promisingly enough, with a record crowds expected for the event. Boonta's Eve always brought out the entire city, and even the Hutts were going to be there. Plus, Sebulba was in the race. You either loved him or you hated him, but you couldn't deny that he was the best podracer in the entire system. And you always wanted to see what he would do next. Luckily, Fodesinbeed were the best Pod Racing announcers this side of the Outer Rim.\n\n\n\nThe race started as usual, with Fode announcing in Basic and Beed jabbering in Huttese. That made sense, even though only a handful of people spoke the damn language: they knew who wrote their checks. But then, out of nowhere, that damn Skywalker slave kid starts passing up all the racers. First it was Ben Quadinaros, then Ody Mandrell fell behind. Fode thought for sure that Wan Sandage would stick it to him, but once Skywalker pulled even with Sebulba, even Beed was getting antsy.\n\n\n\nThat last lap was the worst, watching him come in first. Who cares if the kid wasn't a slave anymore? Fodesinbeed had put good money on Sebulba through the Hutts, and they'd lost. Lost big. It would be time to pay up soon, and the Hutts weren't known for their...leniency.\n\n\n\nThere was a knock at the door. They heard a deep, low, long laugh. And they knew Jabba was there to collect.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-halo-5-p-o-d-r-a-c-i-n-g-custom-map-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/666fd49b-c9f7-4d7c-a254-e6b6dea36b84/sm/2013912-1455763365146-fh_thumb_8_copy.jpg","duration":522,"publication_date":"2016-02-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-bridge-of-death-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E25 - BRIDGE OF DEATH – GTA 5 Gameplay","description":"What happens when an ordinary man is forced to broker peace between two warring sides of a floating boxcar/turbine platform in Los Santos? Find out this holiday season in Bridge of Death, starring Tom Hanks and directed by Stoven Spooleberg.\n\n\n\nDeathmatch: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/ZWSZTEHy_0Gbzku-LfcTSw#\n\n\n\nRead more: Simon And Garfunkel - Bridge Over Troubled Water Lyrics | MetroLyrics","player_loc":"https://roosterteeth.com/embed/gameplay-2016-bridge-of-death-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f32207c9-9ceb-4ee5-81a3-114451301c3a/sm/2013912-1455675233672-fh_thumb_8_copy.jpg","duration":535,"publication_date":"2016-02-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-d-e-a-d-p-o-o-l-related-t-i-t-l-e-57","changefreq":"weekly","video":[{"title":"2016:E57 - [DEADPOOL-RELATED TITLE] – #57","description":"Hey guys, it's your good buddy description. Normally I tell you what the episode is about, but this time I want to talk to you one-on-one. How's it going, buddy? How's the dog?\n\n\n\nDead? That sucks huh.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-d-e-a-d-p-o-o-l-related-t-i-t-l-e-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8ebc95a-d19e-42ad-83b8-c06077ed96a3/sm/1788482-1455668226456-Fanart-20160216.png","duration":3474,"publication_date":"2016-02-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-tender","changefreq":"weekly","video":[{"title":"2016:E6 - WE ARE TENDER","description":"Finally, a week without death or serious medical mishap. OR IS IT?","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-tender","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/132352a6-7bc8-450e-8bea-dd7bcca706ec/sm/1788482-1455668671158-Fanart-20160216.png","duration":2082,"publication_date":"2016-02-17T00:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-like-skyrim-with-balls-far-cry-primal-gameplay","changefreq":"weekly","video":[{"title":"2016:E24 - LIKE SKYRIM WITH BALLS – Far Cry Primal Gameplay","description":"Thanks to Ubisoft for sponsoring this video\n\nClick HERE to buy the game: http://bit.ly/20Wg3xj\n\nFar Cry Primal is rated M by the ESRB\n\n\n\nWish we could turn back time\n\nTo the good old days\n\nWhen the cavemen smashed all the rats but now we're quest owls\n\nWish we could turn back time\n\nTo the good old days\n\nWhen we ate some herbs and skinned those goats but now we're quest owls\n\nWe're quest owls","player_loc":"https://roosterteeth.com/embed/gameplay-2016-like-skyrim-with-balls-far-cry-primal-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c517bbd5-d0d2-4a1b-87f1-98a9cac23f1c/sm/2013912-1455574121228-fh_thumb_8_copy.jpg","duration":645,"publication_date":"2016-02-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-spoole-dies-at-the-e-n-d-52","changefreq":"weekly","video":[{"title":"2016:E7 - SPOOLE DIES AT THE END? - #52","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nNow I've had the time of my life\n\nNo, I've never felt like this before\n\nYes I swear it's the truth\n\nAnd I owe it all to you\n\n\n\n'Cause I've had the time of my life\n\nAnd I owe it all to you\n\nI've been waiting for so long\n\nNow I've finally found someone\n\nTo stand by me\n\nWe saw the writing on the wall\n\nAs we felt this magical fantasy\n\n\n\nNow with passion in our eyes\n\nThere's no way we could disguise it secretly\n\nSo we take each others hand\n\n'Cause we seem to understand the urgency\n\n\n\nJust remember\n\nYou're the one thing\n\nI can't get enough of\n\nSo I'll tell you something\n\nThis could be love, because\n\n\n\nI've had the time of my life\n\nNo I've never felt this way before\n\nYes I swear it's the truth,\n\nAnd I owe it all to you\n\n\n\nHey Baby\n\n\n\nWith my body and soul\n\nI want you more than you'll ever know\n\nSo we'll just let it go,\n\ndon't be afraid to lose control, no\n\nYes I know what's on your mind,\n\nwhen you say \"Stay with me tonight\"\n\n(Stay with me)\n\n\n\nJust remember, you're the one thing,\n\nI can't get enough of\n\nSo I'll tell you something,\n\nThis could be love because\n\n\n\nI've had the time of my life,\n\n(I've had the time of my life)\n\nNo, I've never felt this way before,\n\nYes I swear it's the truth\n\n(Yes I swear)\n\nAnd I owe it all to you\n\nCause I've had the time of my life\n\nAnd I've searched through every open door\n\n(through everywhere)\n\nTill I found the truth\n\nAnd I owe it all to you\n\n\n\n(Instrumental)\n\n\n\n(REPEAT 2X)\n\nNow I've had the time of my life\n\nNo I never felt this way before (Never Felt this way)\n\nYes I swear it's the truth\n\nAnd I owe it all to you\n\n\n\nI've had the time of my life\n\nNo I never felt this way before\n\nYes I swear it's the truth\n\nAnd I owe it all to you\n\n\n\n'Cause I've had the time of my life\n\nAnd I've searched through every open door\n\nTill I've found the truth\n\nAnd I owe it all to you","player_loc":"https://roosterteeth.com/embed/open-haus-2016-spoole-dies-at-the-e-n-d-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7d8382a-3cfb-4e80-9f59-fb02a1535841/sm/2013912-1455392986464-oh_021616_thumb__1_.jpg","duration":770,"publication_date":"2016-02-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-no-time-for-dragonball-z","changefreq":"weekly","video":[{"title":"2016:E7 - NO TIME FOR DRAGONBALL Z","description":"We got all your feedback on Demo Disk, about how you hate having Adam and Bruce in it. So this week we have 100% more Lawrence and Joel. You're welcome, world!!!","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-no-time-for-dragonball-z","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5867f52-fdc4-4946-a6a7-89485bc80c19/sm/2013912-1455351267384-fh_thumb_8_copy.jpg","duration":1023,"publication_date":"2016-02-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-rip-spoole-best-of-spoole-video","changefreq":"weekly","video":[{"title":"2016:E3 - RIP SPOOLE - Best of Spoole Video","description":"Here are our favorite Spoole catchphrases from over the last year:\n\n\n\n\"Do tha loop!\"\n\n\"Oh my god!\"\n\n\"HR, they're doing it again.\"\n\n\"I'm gonna crush that pussy!\"\n\n\"Yeezus halp meh!\"\n\n\"Wowzers Mcgowzers!\"\n\n\"...but who, I ask, did the deed!?\"\n\n\"Let he who is without sin cast the first stone.\"\n\n\"Poo! Poopypoo-poo bunny bear!\"\n\n\"War. War never changes.\"\n\n\"I'm the scat man. Ski-bi dibby dib yo da dub dub. Yo da dub dub. Ski-bi dibby dib yo da dub dub. Yo da dub dub.\"\n\n\n\nWe'll miss ya, buddy!","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-rip-spoole-best-of-spoole-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0549d093-0cb5-4141-91b3-c63e5a82d77d/sm/2013912-1455240900151-fh_thumb_8_copy.jpg","duration":1335,"publication_date":"2016-02-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-2","changefreq":"weekly","video":[{"title":"2016:E3 - THE LAST OF US in GTA 5! Mod Gameplay!","description":"As Ellie and Joel climbed over the hill, they were wary. This was Clicker Country, and any false movement could give them away. Slowly, the landscape came into view: the ruined city of Biloxi, Mississippi. It had taken them months of going from safehouse to safehouse, but they were finally at their goal in the Heart of Dixie.\n\nAll of a sudden, Nathan Drake rode up in a huge-ass jeep. \"Get in! Jungle people are coming!\" They had no choice (since the game was on rails) so they jumped in the car. \"Nice to meet you. I'm Joel and this is Ellie. You're Nathan Drake. I'd know you anywhere.\"\n\n\"Damn right,\" Drake said, flipping them a bag of gold doubloons. \"But that's not important now.\"\n\nChop barked in agreement from the back seat, and they were on their way. \"But what about the Secret Code in Beauvoir, the post-war home of CSA President Jefferson Davis that tells us how to defeat the Clickers?\" Ellie asked.\n\n\"Don't worry,\" Nathan assured her. \"Lauren Croft is on the case.\"\n\n\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nThe Last of Us Map\n\nhttps://www.gta5-mods.com/maps/after-us-rodeo\n\nHulk Mod\n\nhttp://gtaxscripting.blogspot.com/2015/10/gta-v-pc...\n\nIron Man Mod\n\nhttp://gtaxscripting.blogspot.com/2015/08/ironmanv...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3d9076b-f463-4b3a-b74d-c9c971c8cdf5/sm/2013912-1455235287112-fh_thumb_8_copy.jpg","duration":669,"publication_date":"2016-02-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-space-dicks-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E23 - SPACE DICKS - Wheelhaus Gameplay","description":"We're dicks out in space\n\nWe're zooming around \n\nFarting all over the place\n\n\n\nWe're dicks out in space\n\nIf asteroids appear\n\nWe give 'em a merry chase\n\n\n\nWhen pirates attack us\n\nWe call up T-Max\n\nHe'll shoot 'em right back in the face\n\n\n\nWe're dicks out in space\n\nWe're zooming around\n\nFarting all over the place","player_loc":"https://roosterteeth.com/embed/gameplay-2016-space-dicks-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6cdeb00-6a27-49b9-b476-c88f04b4d882/sm/2013912-1455234966519-fh_thumb_8_copy.jpg","duration":968,"publication_date":"2016-02-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-bones-n-butts-gore-gameplay-part-4","changefreq":"weekly","video":[{"title":"2016:E22 - BONES 'N BUTTS - Gore Gameplay, Part 4","description":"Game Development Diary Day 1: The game is called Gore, and it's about a supersoldier fighting a crime syndicate. Cool!\n\nDay 2: Woah, there's a lot of blood in this game. Ok.\n\nDay 6: Things are going well. Been eating a lot of pizza. May put that in the game.\n\nDay 11: Bosses are asking for more extreme character models. \n\nDay 20: Now they're talking about jump portals and anti-grav levels. What's going on?\n\nDay 23: I don't even know what this note means: \"Chainsaw skeletons?\" How is that relevant to the game? \n\nDay 37: How did I get here? What does this game represent? Am I still me?\n\nDay 72: I release myself to Gore.\n\nDay 84: All hail the Gore overlords. More demon minions. God altars will activate. We shall rise.\n\nDay 576: I have been released into the sun. The air is a purifying burn. I have submitted my W2s and hope to get paid next quarter.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-bones-n-butts-gore-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d64487f1-c896-40c3-821a-7fdca02e7c65/sm/2013912-1455234849647-fh_thumb_8_copy.jpg","duration":807,"publication_date":"2016-02-11T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-achievement-hunter-fruit-snack-challenge","changefreq":"weekly","video":[{"title":"2016:E7 - Achievement Hunter Fruit Snack Challenge","description":"Can Jeremy eat 40 packages of fruit snacks? Or will he die trying?","player_loc":"https://roosterteeth.com/embed/rt-life-2016-achievement-hunter-fruit-snack-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1c51070-202d-4400-94a9-e417420b08a9/sm/2013912-1461253394342-_ROOSTER_TEETH_THUMBNAIL_Fruit_Snack_Challenge.png","duration":158,"publication_date":"2016-04-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-paint-on-a-drum-in-4-k-slow-mo","changefreq":"weekly","video":[{"title":"S1:E56 - Paint on a Drum in 4K Slow Mo","description":"Gav and Dan make a split-second powder paint rainbow using an old drum.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-paint-on-a-drum-in-4-k-slow-mo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcb1c5bc-9c30-48d2-8a8c-eba185ab4824/sm/82-1461249957253-drumthumb.jpg","duration":481,"publication_date":"2016-04-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-orcs-must-live","changefreq":"weekly","video":[{"title":"S7:E13 - Orcs Must Live","description":"This video is sponsored by Robot Entertainment. Join the Center for Orc Tolerance and Understanding by visiting www.orcsmustlive.com! And, remember -- Orcs are people, too.\n\n*Orcs are not actually people.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-orcs-must-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b958c183-fdfa-43fa-9133-502f191615f8/sm/2013912-1461106435745-OrcsMustLive_Thumbv2.png","duration":177,"publication_date":"2016-04-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-372-post-show","changefreq":"weekly","video":[{"title":"2016:E15 - Podcast #372 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the live action Ghost in The Shell movie, and discuss the accusations of whitewashing in Hollywood.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-372-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e648fedd-7a95-45b2-9ee0-f9e5c6d614b6/sm/2013912-1461169515204-rtp372_-_PS_-_THUMB_small.jpg","duration":1637,"publication_date":"2016-04-20T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-ch-ch-czechia-372","changefreq":"weekly","video":[{"title":"2016:E372 - Ch- Ch- Czechia – #372","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Czechia, grave robbers, gifs, and more on this week's RT Podcast! This episode originally aired on April 18, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-ch-ch-czechia-372","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5252f0b2-54b4-4247-bec8-feb1cd1103b3/sm/2013912-1461081797909-rtp372_-_THUMB.jpg","duration":6395,"publication_date":"2016-04-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-geoff-ryan-s-teen-antics","changefreq":"weekly","video":[{"title":"2016:E12 - Geoff & Ryan's Teen Antics","description":"Geoff and Ryan recount some of their antics from back when they were bored teens living in lame southern towns. Geoff, as you can imagine, does some stuff that's way more screwed up.\n\nAudio from Sunday Driving - How Muddy Do You Like It?","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-geoff-ryan-s-teen-antics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11641189-fa3a-41f9-a2a4-d25911463c64/sm/2013912-1460750164875-rtaa222-tn1.jpg","duration":113,"publication_date":"2016-04-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-barbara-s-frog-vlog-april-17-2016","changefreq":"weekly","video":[{"title":"2016:E5 - Barbara’s Frog Vlog: April 17, 2016","description":"Barbara takes advantage of some glorious golden hour lighting to fill us in on what’s up with Rooster Teeth for the rest of April.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-barbara-s-frog-vlog-april-17-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5193f5b9-22b8-40ce-9770-fa780de01550/sm/2013912-1460752110215-sponsor_vlog_thumbnail_4.17.jpg","duration":458,"publication_date":"2016-04-17T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-docs-connected-connected","changefreq":"weekly","video":[{"title":"C:E2 - Connected","description":"Follow Barbara Dunkelman and Blaine Gibson as they must survive their work, their social lives and the modern world without the comfort of their cell phones. With interviews from Nicholas Carr, author of the New York Times best-seller The Shallows, and behavioral psychologists Dr. Art Markman and Dr. Bob Duke, Connected explores how our brains change with our use of technology and analyze how we sustain and build relationships in the 21st century.\n\n\n\n\n\n\n\nWatch the Q&A with Blaine and Barbara here!","player_loc":"https://roosterteeth.com/embed/rt-docs-connected-connected","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0e15f0-3593-4445-ba78-22f16e5b690d/sm/2013912-1460562657169-Connected_RTRelease_v4.jpg","duration":2731,"publication_date":"2016-04-15T21:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-theater-mode-trailer","changefreq":"weekly","video":[{"title":"S1:E25 - Theater Mode Trailer","description":"We all have guilty pleasure movies. Movies that are so bad they're good. These movies aren't pleasurable, but they certainly are guilty. Guilty of many, many crimes against humanity and the genre of film. Achievement Hunter is determined to sit through some of the worst movies ever made, and they want you to suffer with them.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-theater-mode-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69e9bed5-a0bb-4d3d-9630-c358c29e9352/sm/2013912-1460734941643-tm_noturkey.jpg","duration":86,"publication_date":"2016-04-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-7","changefreq":"weekly","video":[{"title":"2016:E13 - Sponsor Play – Metal Gear Solid V Part 7","description":"Kyle and Miles are still lookin' to get at them bees and where they sleep. Maybe the Lone Ranger can give them a hint.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd75dee0-809d-4934-b3db-79cc9e23ffb6/sm/2013912-1460743676615-MGSV_SP_Pt7.jpg","duration":1476,"publication_date":"2016-04-15T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-55","changefreq":"weekly","video":[{"title":"S2:E55 - The Free Play 500 – #55","description":"It’s Free Play! Turtles are terrifying and some bitch in the corner is messing up Meg’s “Relaxion”. Plus, we bring together the RT extended family for a real life version of ScrewAttack’s “Don’t Drink and Drive”","player_loc":"https://roosterteeth.com/embed/free-play-season-2-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/565a13c9-c534-4e00-a883-52b0ac1d420d/sm/2013912-1460735511826-fp55_-_THUMB.jpg","duration":1089,"publication_date":"2016-04-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-bruce-s-virtual-penis","changefreq":"weekly","video":[{"title":"2016:E6 - Bruce's Virtual Penis","description":"Funhaus pushes the limits of virtual reality.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-bruce-s-virtual-penis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17e412e0-dacb-4f75-a0b4-45f6c43ecce5/sm/2013912-1460646976849-RT_LIFE_VR_HEADSET_v2.png","duration":161,"publication_date":"2016-04-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-371-post-show","changefreq":"weekly","video":[{"title":"2016:E14 - Podcast #371 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the early days of Gavin & Barbara's RT fandom.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-371-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbae71b2-6bb6-4d94-99c0-548c82ff27c8/sm/2013912-1460560835672-rtp371_-_PS_-_THUMB.jpg","duration":2136,"publication_date":"2016-04-13T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-371","changefreq":"weekly","video":[{"title":"2016:E371 - The RT Podcast Steak-Off! - #371","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss steaks, edible anuses, cats scared of cucumbers, and more on this week's RT Podcast! This episode originally aired on April 11, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-371","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ba3e6b7-6f98-4fec-9a35-8d4c0d0ebb12/sm/2013912-1460476102888-rtp371_-_THUMB.jpg","duration":6336,"publication_date":"2016-04-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-day-of-doom-recap","changefreq":"weekly","video":[{"title":"S7:E11 - Day of Doom – Behind the Scenes","description":"Sponsored by Bethesda. Doom releases on May 13th.\n\nWatch the Full Tournament here - http://bit.ly/1RJxs9K \n\nGo here for up to date information on DOOM - http://bit.ly/1MZWHVf \n\n\n\nSportsmanship. Team dynamics. Heads exploding! Check out who came out on top for the Day of Doom live stream! Go team.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-day-of-doom-recap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4eca89b-1d5d-44dc-abc6-6aab9e8ede1c/sm/2013912-1460394423035-DAY_OF_DOOM_BTS_THUMBNAIL.jpg","duration":178,"publication_date":"2016-04-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-stories-for-the-road","changefreq":"weekly","video":[{"title":"SOR:E9 - Stories for the Road","description":"The Podcast Crew shares their experiences with the terror that is the open road! Cars, bikes, cars hitting cars, cars hitting bikes, we've got it all on this episode of Minimations!\n\nMade by the Rooster Teeth community GTA5 machinima team: The Lone Few.\n\nAudio from The Rooster Teeth Podcast #367","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-stories-for-the-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74d97463-be12-4a17-980a-a39e39cf575a/sm/2013912-1460398442928-SORT_EP09_THUMB.jpg","duration":132,"publication_date":"2016-04-11T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-6","changefreq":"weekly","video":[{"title":"2016:E12 - Sponsor Play – Metal Gear Solid V Part 6","description":"Kyle and Miles gon' give it to ya....as soon as they find where the bees sleep.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec16224f-32ae-4a89-a467-8982a2c88d7a/sm/2013912-1460134111557-MGSV_SP_Pt6.jpg","duration":1480,"publication_date":"2016-04-08T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2016-35","changefreq":"weekly","video":[{"title":"2016:E3 - Songwriting with Wheels – #35","description":"SXSW is a place for friends. Friends who hang together. Friends who drink together. Friends who hang and drink and write songs together. These friends are Geoff and Wheels.","player_loc":"https://roosterteeth.com/embed/happy-hour-2016-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e655a030-1a28-44ea-84df-199f91bbe67b/sm/2013912-1460066930795-happyhour_thumb.jpg","duration":349,"publication_date":"2016-04-07T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-hardcore-henry-meets-rooster-teeth","changefreq":"weekly","video":[{"title":"S7:E10 - Hardcore Henry Meets Rooster Teeth","description":"Rooster Teeth teams with Sharlto Copley and the crew of Hardcore Henry to put an end to talking and texting in movie theaters.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-hardcore-henry-meets-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/057141aa-1de5-471b-a688-00ef20658a6b/sm/2013912-1460042815474-_ROOSTER_TEETH_THUMBNAIL_HARDCORE_RT_V3.png","duration":340,"publication_date":"2016-04-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-failed-product-ideas-extended-cut","changefreq":"weekly","video":[{"title":"S7:E9 - Failed Product Ideas – Extended Cut","description":"Chris is back to pitch even more brilliant products in the extended cut that was too Kerry for YouTube.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-failed-product-ideas-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4f65a51-db21-49d8-8915-98e9a4f6bcf7/sm/2013912-1459887205218-Screen_Shot_2016-04-05_at_11.14.30_AM.png","duration":403,"publication_date":"2016-04-06T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-370-post-show","changefreq":"weekly","video":[{"title":"2016:E13 - Podcast #370 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Burnie Burns as they discuss Tesla, license plates, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-370-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6ca2ea5-7721-4097-9f9c-9e88cc532bd5/sm/2013912-1459956594461-rtp370_-_PS_-_THumb.jpg","duration":1970,"publication_date":"2016-04-06T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-50-ft-flamethrower","changefreq":"weekly","video":[{"title":"S1:E55 - 50ft Flamethrower","description":"2nd Channel - https://www.youtube.com/channel/UCgC4Nn0rqqdeqACnz...\n\nIs that a portal to hell opening up? No it's Just Dan and his newest toy.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-50-ft-flamethrower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac24d74-9def-4869-b521-0f7fb3edbc78/sm/82-1459905278153-Screen_Shot_2016-04-05_at_19.37.06.jpg","duration":290,"publication_date":"2016-04-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-370","changefreq":"weekly","video":[{"title":"2016:E370 - The Toothpaste Rule – #370","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini, and Burnie Burns as they discuss toothpaste, the infamous Burp Bag, and more on this week's RT Podcast! This episode originally aired on April 4, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-370","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b21d87f1-7b6d-48fa-b3e8-5ef5c70e9b7e/sm/2013912-1459870960668-rtp370_-_THUMB.jpg","duration":6107,"publication_date":"2016-04-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-joel-can-t-get-into-rtx","changefreq":"weekly","video":[{"title":"2016:E11 - Joel Can't Get into RTX","description":"Joel struggles to prove his worth to both security and guardians at RTX Australia, but just can't seem to get into the building. Is he even the real Joel Heyman? How can we be sure?\n\nAudio from RT Podcast #360","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-joel-can-t-get-into-rtx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e01a806b-e8be-4fc9-a008-c19f1c2d315c/sm/2013912-1459783151471-rtaa221-tn1.jpg","duration":76,"publication_date":"2016-04-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-april-3-2016","changefreq":"weekly","video":[{"title":"2016:E4 - Burnie’s Vlog: April 3, 2016","description":"Burnie fills us in on what's up with Rooster Teeth for the first two weeks of April.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-april-3-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9628641c-3946-467d-95a0-dae1a07066a8/sm/2013912-1459701425904-VLOG_THUMBNAIL_04_03.png","duration":299,"publication_date":"2016-04-03T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-failed-product-ideas","changefreq":"weekly","video":[{"title":"S7:E8 - Failed Product Ideas","description":"Burnie confronts Chris about his \"brilliant\" merchandise ideas, but is it too late? \n\n\n\nWatch the Extended Cut of this short!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-failed-product-ideas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/548ca4ca-e69b-4e09-a47c-14ebf55ce499/sm/2013912-1459532451712-RTShorts_MerchStore_thumb.png","duration":325,"publication_date":"2016-04-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-5","changefreq":"weekly","video":[{"title":"2016:E11 - Sponsor Play – Metal Gear Solid V Part 5","description":"Kyle and Miles decide to play a dangerous game, It's called \"take a shot every time you're discovered\".","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aedb4eb-dbbc-475a-b023-80065ecf5e4b/sm/2013912-1459531084051-MGSV_SP_Pt5.jpg","duration":1370,"publication_date":"2016-04-01T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-rwby-announcement","changefreq":"weekly","video":[{"title":"S1:E23 - RWBY Chibi Teaser!","description":"RWBY Chibi! A new adorable show from Rooster Teeth Animation coming this May!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-rwby-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17654a47-63b2-4d41-bb77-067954f00c10/sm/2013912-1459461173067-RWBY_CHIBI_THUMBNAIL_000.png","duration":52,"publication_date":"2016-04-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-camp-camp-teaser-trailer","changefreq":"weekly","video":[{"title":"S1:E22 - Camp Camp – Teaser Trailer","description":"A first look at Rooster Teeth's newest 2D show, Camp Camp! Coming this summer to roosterteeth.com! Get hyped, thugs.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-camp-camp-teaser-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3f9481b-aa83-467e-b96d-cfd1271bd7bc/sm/2013912-1459458902697-CC_THUMBNAIL_000.png","duration":44,"publication_date":"2016-04-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-red-vs-blue-season-14-introduction-trailer","changefreq":"weekly","video":[{"title":"S1:E24 - Red vs. Blue: Season 14 Introduction Trailer","description":"BEHOLD, the newest season of Red vs. Blue is upon us! Season 14 is a collection of short stories, presented in a variety of styles ranging from machinima to animation and beyond... and this is how it all begins.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-red-vs-blue-season-14-introduction-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ee70fa6-a788-4a6b-a89a-7d14587a757a/sm/2013912-1459461373542-RvB14_THUMBNAIL_001.png","duration":128,"publication_date":"2016-04-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-56","changefreq":"weekly","video":[{"title":"S5:E56 - F*CK BOIZ NEVER SAY DIE! – #56 with Brent Morin","description":"ACTION ROLL! RING THAT BELL! TAKE THOSE PANTS OFF! DO THAT SHOT! DOUBLE FINGER PISTOLS TO THE CAMERA! SEE BRENT MORIN IN CRUNCH TIME, COMING SOON! END THIS FUCKING SEASON OF ON THE SPOT ALREADY! This episode originally aired on March 31, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/418fbed2-1f75-4439-a0ee-0d15e669df39/sm/2013912-1459529656627-ots_56_thumb.jpg","duration":3009,"publication_date":"2016-04-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-gus-surprise-party","changefreq":"weekly","video":[{"title":"2016:E5 - Gus' Surprise Party!","description":"Gus is a pretty princess. And what does the pretty princess get on his birthday? A big celebration! There's nothing Gus likes more than huge parties with people he doesn't hang out with outside of the workplace!","player_loc":"https://roosterteeth.com/embed/rt-life-2016-gus-surprise-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d49686f-6ffe-4d38-9519-554124e9f74d/sm/2013912-1459367536563-Gus_38_Birthday_Thumbnail-1.jpg","duration":114,"publication_date":"2016-03-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-extinguishing-butt-fires-million-dollars-but-bloopers","changefreq":"weekly","video":[{"title":"S2:E9 - Extinguishing Butt Fires – Million Dollars, But Bloopers","description":"Join the \"Million Dollars, But\" cast as they fool around on set and talk about how they'd extinguish a fire in their butt.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-extinguishing-butt-fires-million-dollars-but-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fa3a5ca-3385-4dd5-a56e-8ccf6a2ced52/sm/2013912-1459351791546-MDB_S2_BLOOPERS_2_DH.png","duration":142,"publication_date":"2016-03-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-369-post-show","changefreq":"weekly","video":[{"title":"2016:E12 - Podcast #369 Post Show","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the new movie, Batman v Superman.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-369-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31ae71f9-d929-4220-849c-dc4c99d31393/sm/2013912-1459362256027-RTP_369_-_Extra_-_Thumbnail.png","duration":1653,"publication_date":"2016-03-30T15:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-369","changefreq":"weekly","video":[{"title":"2016:E369 - Burnie’s Hammer – #369","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss superhero origin stories, magazine covers, LASIK, and more on this week’s RT Podcast! This episode originally aired on March 28, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-369","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98d68d1c-bfa0-4820-a4d7-8d06b1f23d58/sm/2013912-1459268470861-rtp_-369_thumbnail.png","duration":6561,"publication_date":"2016-03-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-how-to-not-look-stupid-in-a-vr-headset","changefreq":"weekly","video":[{"title":"S7:E7 - How to Not Look Stupid in a VR Headset","description":"With all radical advances in technology, early adopters are doomed to look like complete fucking idiots until the rest of the world gets accustomed to seeing people in that context. For VR headsets, that day is a long way away. Lucky for you, we’ve put together a list of ways you can trick people into thinking you look cool.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-how-to-not-look-stupid-in-a-vr-headset","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec6de0da-700f-4062-98ae-6fd44dff465b/sm/2013912-1459264993899-OCULUS_160328_THUMB.png","duration":76,"publication_date":"2016-03-29T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-blaine-stories","changefreq":"weekly","video":[{"title":"2016:E10 - Blaine Stories","description":"Blaine recounts a tale of how he tried to be funny by farting on Gus and just embarrassed himself, and Burnie talks about the lengths Blaine will go to in order to get a girl to talk to him. Sad.\n\nAudio from RT Podcast #361 Post Show","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-blaine-stories","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/982d87f0-e63a-4d4e-8ee2-4ffc119de8f0/sm/2013912-1458967823651-rtaa220-tn1.jpg","duration":118,"publication_date":"2016-03-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-the-henchman","changefreq":"weekly","video":[{"title":"S7:E6 - The Henchman","description":"While Batman and Superman duke it out, we look into the life of a Gotham City henchman.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-the-henchman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef745b90-a715-4989-9b6f-9118a40c0f53/sm/2013912-1459089583864-RTSHORTS_HENCHMEN_THUMBNAIL_01.png","duration":276,"publication_date":"2016-03-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-eggmergency-fp-extra","changefreq":"weekly","video":[{"title":"S2:E25 - Eggmergency! - FP Extra","description":"The Free Play gang hatch a sinister plan that cracks up the entire set.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-eggmergency-fp-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56477e38-acc7-4abc-a471-d253d83a5ee3/sm/2013912-1458966118939-FPEXTRA-EGGS_TH.jpg","duration":98,"publication_date":"2016-03-26T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-4","changefreq":"weekly","video":[{"title":"2016:E10 - Sponsor Play – Metal Gear Solid V Part 4","description":"Everything comes to a grinding halt when Kyle and Miles encounter the sole reason why Metal Gear Solid V is the best game ever.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88b21251-b374-43c9-ac69-0eafba177a06/sm/2013912-1458930301941-MGSV_SP_Pt4.jpg","duration":1488,"publication_date":"2016-03-25T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-55","changefreq":"weekly","video":[{"title":"S5:E55 - How Many Points Is That Dick? – #55","description":"The final count of belts and pants undone by the end of this episode was 4 out of 5 which to some might seem like a lot but honestly, I am little disappointed we didn't get the whole set. I have higher standards for On The Spot and I would like to apologize to everyone watching for the one that got away. This episode originally aired March 24, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a42a4660-8c06-487c-8833-79c8eec80435/sm/2013912-1458925131714-ots_55_thumb.jpg","duration":3085,"publication_date":"2016-03-25T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-confetti-egg-54","changefreq":"weekly","video":[{"title":"S2:E54 - Confetti Egg – #54","description":"It’s Free Play! We’re learning about swing shifts and dong sweat on this episode! Ryan tells a horrifying story from his night at home, and we’ve got an animal-off for Internet Show and Tell. Plus, the crew plays doctor in a messy game of Operation!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-confetti-egg-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/266db475-c77e-45df-a535-667e0b62e544/sm/2013912-1458921945840-FP_54_Thumnail.png","duration":1626,"publication_date":"2016-03-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-day-of-doom-march-29-th-trailer","changefreq":"weekly","video":[{"title":"S1:E21 - Day of Doom – March 29th (Trailer)","description":"This video is sponsored by Bethesda. It's big! It's REAL! It's the DAY OF DOOM! Join your favorite athletes and YouTube stars for the most bloody, intense, and insane Doom tournament. March 29th! Streaming on the Rooster Teeth YouTube livestream: http://bit.ly/1UdrFvs.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-day-of-doom-march-29-th-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1a2a2ad-1e25-45ff-9d35-abcb093613b5/sm/2013912-1458834248637-DOOM_THUMBNAIL.png","duration":134,"publication_date":"2016-03-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2016-34","changefreq":"weekly","video":[{"title":"2016:E2 - Live Sing Along – #34","description":"Check out Geoff and Griffon warming up their vocals with about 500 of their best Australian friends during the Happy Hour panel at RTX Australia. They'll be hitting the recording studio soon. Album drop imminent.","player_loc":"https://roosterteeth.com/embed/happy-hour-2016-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/467450b7-acaa-417a-978a-dcdcf6cd4d3f/sm/2013912-1458847412673-happyhourthumb.jpg","duration":209,"publication_date":"2016-03-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-vr-scream-fest-53","changefreq":"weekly","video":[{"title":"S2:E53 - VR Scream Fest – #53","description":"It’s Free Play! We’re not sure if we’re laughing or dying in today’s Internet Show and Tell. Plus, the gang jacks in to the world of virtual reality to make their way through Affected, a new horror game for the Oculus Rift.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-vr-scream-fest-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a37f2285-1e9a-4e93-8ede-6f3fb91c3f01/sm/2013912-1458749039383-fp53_-_THUMB.jpg","duration":1318,"publication_date":"2016-03-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-368-post-show","changefreq":"weekly","video":[{"title":"2016:E11 - Podcast #368 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss credit card skimmers, sounds, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-368-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa869b26-0500-41f4-8f95-54f01eea38e6/sm/2013912-1458753237989-RTP368_-_extra_-_Thumb.png","duration":1469,"publication_date":"2016-03-23T16:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-flaming-butts-million-d-o-l-l-a-r-s-b-u-t-season-finale","changefreq":"weekly","video":[{"title":"S2:E8 - Flaming Butts – MILLION DOLLARS, BUT... Season Finale","description":"In the season finale of Million Dollars, But…, learn what having a hot butt really means.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-flaming-butts-million-d-o-l-l-a-r-s-b-u-t-season-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f44a8562-52c9-4c5d-8441-9a32355cfab4/sm/2013912-1458749407283-MDBs2e6_Thumbnail_v2.png","duration":255,"publication_date":"2016-03-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-podcast-king-gus-vs-mad-king-ryan-rooster-teeth-throwdown","changefreq":"weekly","video":[{"title":"MV:E12 - Podcast King Gus VS Mad King Ryan: Rooster Teeth Throwdown","description":"DOWNLOAD THE SONG\n\niTunes: http://apple.co/1Uktrv4\n\nGoogle play: http://bit.ly/1VEr59t\n\n\n\nThe first of the Rooster Teeth Throwdowns. This battle sees the king of podcasts, Gus Sorola, rapping against the mad king himself, Ryan Haywood. Who will walk away the winner? That one is up to you!","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-podcast-king-gus-vs-mad-king-ryan-rooster-teeth-throwdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b15bb21-251a-49f9-bf9d-6de80b2012ae/sm/2013912-1458746734924-Throwdown_THUMB.jpg","duration":192,"publication_date":"2016-03-23T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-368","changefreq":"weekly","video":[{"title":"2016:E368 - The Dust Discussion – #368","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss dust, shrimp, BB guns, and more on this week's RT Podcast! This episode originally aired on March 22, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-368","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acef4db6-a1f7-48ac-bc28-297e18c4f0f8/sm/2013912-1458662548913-rtp368_-_THUMB.jpg","duration":5830,"publication_date":"2016-03-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-josh-s-threesome-story","changefreq":"weekly","video":[{"title":"2016:E9 - Josh's Threesome Story","description":"Josh talks about his awesome threesome he had, and how it quickly became not that awesome. Spoiler alert: Poop is involved.\n\n\n\nAudio from RT Podcast #353","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-josh-s-threesome-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec5833c4-272e-4cf8-8eac-a431c68bf048/sm/2013912-1458573693090-rtaa219tn1.jpg","duration":126,"publication_date":"2016-03-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-bloopers-and-outtakes","changefreq":"weekly","video":[{"title":"S7:E5 - Bloopers and Outtakes","description":"Sometimes, when we're filming dramatic art pieces about dog murder, nude guys in wheelchairs, or Tinder mishaps, we forget a line or two. We might even laugh. It only shows that we're human. Deeply disturbed, twisted humans.\n\n\n\nRT Shorts - What Your Shirt Says\n\nRT Shorts - Dog Killer \n\nRT Shorts - D'Angelo Parody\n\nRT Shorts - Tinder Trouble","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-bloopers-and-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eb98c7a-0e18-401b-9002-93ab56aefa9c/sm/2013912-1458339775983-BLOOPERS_160318_THUMB.png","duration":162,"publication_date":"2016-03-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-step-team-with-the-cast-of-crunch-t-ime-fp-extra","changefreq":"weekly","video":[{"title":"S2:E22 - Step Team with the Cast of Crunch TIme – FP EXTRA","description":"Before their interview with Meg, the cast of Crunch Time break out into an impromptu step team.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-step-team-with-the-cast-of-crunch-t-ime-fp-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d61efb44-66a8-4363-af0b-4ec1a063f3e2/sm/2013912-1458340127299-fp52_-_EXTRA_THUMB.png","duration":41,"publication_date":"2016-03-19T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-miles-gets-the-cold-shoulder","changefreq":"weekly","video":[{"title":"2016:E3 - Miles Gets the Cold Shoulder","description":"It's safe to say that everyone noticed Miles's random shoulder hair patch in the What Your Shirt Says short. Becca decided to do something about it. Since you're a Sponsor, you get to watch it go down.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-miles-gets-the-cold-shoulder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76eb599b-f7cb-46f0-ad94-76a343589696/sm/2013912-1458332344442-Sponsor_Vlog-Miles_Waxed.jpg","duration":206,"publication_date":"2016-03-19T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-3","changefreq":"weekly","video":[{"title":"2016:E9 - Sponsor Play – Metal Gear Solid V Part 3","description":"In this week's Sponsor Play, Kyle takes the helm and absolutely nothing goes wrong on the mission...nothing.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b80a65c-ba95-4724-b32d-24deac3aaf06/sm/2013912-1458317661999-MGSV_SP_Pt3.jpg","duration":1347,"publication_date":"2016-03-18T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-ball-is-life-52","changefreq":"weekly","video":[{"title":"S2:E52 - Ball Is Life - #52","description":"It’s Free Play! Ryan continues his sadistic streak of child injury videos on Internet Show and Tell. Plus, a local Free Play superfan submits a video challenge to Meg and Ryan in honor of March Madness.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-ball-is-life-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d25daff-dcc8-49a1-a723-052acd00eca5/sm/2013912-1458314278868-fp52_-_THUMB.png","duration":1727,"publication_date":"2016-03-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-54","changefreq":"weekly","video":[{"title":"S5:E54 - Party Time with Satan's Prophets – #54","description":"This episode of On The Spot was such a blast. There were surprises, airhorns, toys, and even fish. I just want to say thanks to my guests Chris, Aaron, Kirk, and Nick for coming to THEIR LAST EVER episode of On The Spot. You know where the door is. Get the hell out of my sight. This episode originally aired March 17, 2016 and is sponsored by Casper (bit.ly/1Or3AKK).","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da7244d-fb6f-4896-b0b4-c989f5cadd44/sm/2013912-1458327852012-ots_54_thumb.jpg","duration":2642,"publication_date":"2016-03-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-d-angelo","changefreq":"weekly","video":[{"title":"2016:E4 - Josh Gives Blaine Pink Eye","description":"Aaron and Chris oil up nude Josh in preparation for the D'Angelo music video, while Blaine sticks his nose in places he shouldn't.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-d-angelo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8be4dd60-2d9a-4764-ac05-78551f9a8f9e/sm/2013912-1458144975823-RTLife_Zangelo_thumb.png","duration":97,"publication_date":"2016-03-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-51","changefreq":"weekly","video":[{"title":"S2:E51 - Pi Day with the Cast of Crunch Time – #51","description":"It’s Wednesday, my dudes. Meg forgot to submit an Internet Show and Tell video and someone in Ryan’s home had a little accident. Plus, Meg sits down with the cast of the new Rooster Teeth show Crunch Time. Finally, Crunch Time star Nick Rutherford stops by to test his math skills along with the rest of the Free Play gang.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41bcb52d-18ee-4caa-a436-7321c48ef167/sm/2013912-1458149455854-fp51_-_THUMB_v2.png","duration":1722,"publication_date":"2016-03-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-367-post-show","changefreq":"weekly","video":[{"title":"2016:E10 - Podcast #367 Post Show","description":"Join Gus Sorola, Gavin Free, Chris Demarais, and Burnie Burns as they discuss coffee, solar panels, and more!","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-367-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8097666b-26f1-405d-9895-e1af5191f84b/sm/2013912-1458145676738-rtp367_-_exta_-_THUMB.png","duration":1615,"publication_date":"2016-03-16T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-achievement-hunter-animal-attack","changefreq":"weekly","video":[{"title":"S2:E7 - Achievement Hunter Animal Attack","description":"Join the Achievement Hunters as they decide if a million dollars is worth random acts of violence from animals or having baby diapers hurled at their faces.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-achievement-hunter-animal-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4be6c2b-cbfa-408d-831d-c61a65b7644e/sm/2013912-1458142593010-MDB.png","duration":244,"publication_date":"2016-03-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-367","changefreq":"weekly","video":[{"title":"2016:E367 - The Puffer Fish Problem – #367","description":"Join Gus Sorola, Gavin Free, Chris Demarais, and Burnie Burns as they discuss food poisoning, SXSW, mowing lawns, and more on this week's RT Podcast! This episode originally aired on March 14, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-367","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a0a7c49-063e-48f0-b9ba-ca6f9dee291d/sm/2013912-1458057383430-rtp367_-_THUMB.jpg","duration":6914,"publication_date":"2016-03-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-static-death-and-the-crime-switch","changefreq":"weekly","video":[{"title":"SOR:E8 - Static Death and the Crime Switch","description":"Gavin ponders the inevitability of death, fearing that 'final resting place' might be more literal than once thought. Gavin also theorizes that being a criminal is simply a 'switch' inside one's self. Is he correct? Gus demonstrates!\n\n\n\nFeaturing audio from: The Rooster Teeth Podcast #357, done by the community machinima team 'The Lone Few'!","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-static-death-and-the-crime-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b29bea66-3bc3-4158-a1ff-d99faa227d11/sm/2013912-1457987479693-SoRT_8_THUMBNAIL.jpg","duration":99,"publication_date":"2016-03-14T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-what-your-shirt-says","changefreq":"weekly","video":[{"title":"S7:E4 - What Your Shirt Says","description":"Can't decide what to wear? Worried you're flashing too much nipple? See what your shirt says about you with this handy Rooster Teeth style guide.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-what-your-shirt-says","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/834eaf61-21b0-42af-ad9d-f86590b9dc85/sm/2013912-1457632756372-RT_SHIRTS_02.png","duration":126,"publication_date":"2016-03-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-it-s-rude-to-point-at-ghosts-fp-extra","changefreq":"weekly","video":[{"title":"S2:E19 - It’s Rude to Point at Ghosts – FP EXTRA","description":"With some downtime in Australia, Meg and Ryan debate the ethics of pointing at cemeteries.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-it-s-rude-to-point-at-ghosts-fp-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7120337-2c23-4033-bba3-7c5519328619/sm/2013912-1457739135743-fp50_extra_THUMB.png","duration":155,"publication_date":"2016-03-12T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-this-is-my-life-0-999","changefreq":"weekly","video":[{"title":"PE:E4 - This Is My Life - #0.999","description":"The RT Anime gang get a little dressed up for the Fan Service pilot finale and discuss The Boy and the Beast, Astro Boy, and as always, GATE and Erased. This episode originally aired on March 11, 2016. \n\n\n\n\n\nTake this week’s Fan Service survey at: http://bit.ly/Anime0311","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-this-is-my-life-0-999","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e2ea941-c17d-488b-a106-48f1d3583de3/sm/2013912-1457765396867-Fanservice0999_-_THUMB.jpg","duration":5244,"publication_date":"2016-03-12T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-2","changefreq":"weekly","video":[{"title":"2016:E8 - Sponsor Play – Metal Gear Solid V Part 2","description":"Kyle still can't figure out what look Miles is talking about, despite this the duo make it back to Mother Base with Kaz. Ocelot tries to explain how to run a private army but someone forgot to take away Snake's tranquilizer gun. No one is safe.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-metal-gear-solid-v-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a493361-8c35-4913-9328-22111a625509/sm/2013912-1457719238291-MGSV_SP_Pt2.jpg","duration":1573,"publication_date":"2016-03-11T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-crunch-time","changefreq":"weekly","video":[{"title":"S1:E20 - Crunch Time Official Trailer [RED BAND]","description":"(WARNING: MATURE CONTENT) New comedy series from Rooster Teeth coming September 2016 for Rooster Teeth Sponsors. Crunch Time follows a group of grad students who use big science for petty purposes. After recklessly handling cutting-edge tech in their school lab, this brilliant team of jackasses create a small, but potentially world-ending black hole that grabs the attention of government operatives. Since the “wanna-be” scientists can’t pinpoint exactly where their experiment went wrong, they must work with the secret government agency, sent in to save the day, by detailing EVERY illegal thing they’ve done in the lab thus far.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-crunch-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e529a0a-e4f8-454c-b39f-de7db7d83f2a/sm/2013912-1457712788240-CrunchTime_Trailer_Thumbnail.png","duration":138,"publication_date":"2016-03-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-check-your-lap-flaps-53-featuring-kinda-funny","changefreq":"weekly","video":[{"title":"S5:E53 - Check Your Lap Flaps – #53 (featuring Kinda Funny)","description":"I just want to take this opportunity to thank my guests for respecting the ad reads during the show. I know they aren't everyone's favorite part of the show but I'm just really glad that all of my guests understand the importance of sponsors for the show and really take that time during the show as a moment to exercise restraint, civility and decorum. Thank you. This episode originally aired on March 10, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-check-your-lap-flaps-53-featuring-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f367defb-e626-4a81-9fea-9aa4685b1871/sm/2013912-1457726021286-ots_53_thumb.jpg","duration":2735,"publication_date":"2016-03-11T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-screwed-by-screwball-scramble-free-play-50","changefreq":"weekly","video":[{"title":"S2:E50 - Screwed by Screwball Scramble – Free Play #50","description":"It’s Free Play! Ryan’s a little tardy to shooting, and it’s a doggie dance-off in today’s Internet Show and Tell. Plus, in celebration of 50 episodes of Free Play, no anus comes away unscathed in our longest stunt yet!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-screwed-by-screwball-scramble-free-play-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1fa55f3-35c4-4334-8e8f-ba6152170d7e/sm/2013912-1457715692953-fp50_-_THUMB_v2.jpg","duration":2573,"publication_date":"2016-03-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2016","changefreq":"weekly","video":[{"title":"2016:E1 - Ping Pong Pain – #33","description":"Happy Hour is back with a vengeance! Gavin and Geoff take the ultimate challenge of throwing tiny balls at each other.","player_loc":"https://roosterteeth.com/embed/happy-hour-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086744fc-3ea5-461f-a704-b5a6816ddf33/sm/2013912-1457629495208-ppphapthumb.jpg","duration":133,"publication_date":"2016-03-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-mystery-oreo-challenge-with-greg-miller-49","changefreq":"weekly","video":[{"title":"S2:E49 - Mystery Oreo Challenge with Greg Miller – #49","description":"It’s Free Play! La Flama Blanca returns to issue a special apology to Johnny Mundo. Plus, Greg Miller of Kinda Funny stops by to flex his Oreo expertise in today’s Mystery Oreo Challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-mystery-oreo-challenge-with-greg-miller-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1b5a1b0-c9c5-4a0d-80ba-1e7678d5dee8/sm/2013912-1457542031815-fp49_-_THUMB.jpg","duration":1673,"publication_date":"2016-03-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-evil-twin-fart-parade","changefreq":"weekly","video":[{"title":"S2:E6 - Evil Twin & Fart Parade","description":"Zach, Chris, and Josh talk about the important things this week, like having a fart parade or murdering your evil twin!","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-evil-twin-fart-parade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/015a8172-c844-4213-a80c-e745f5317b0b/sm/2013912-1457541189134-MDBs2e4_Thumbnail.png","duration":289,"publication_date":"2016-03-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-366-post-show","changefreq":"weekly","video":[{"title":"2016:E9 - Podcast #366 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Blaine Gibson as they discuss the origins of Kellogg's Corn Flakes.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-366-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9b8fc1c-2756-4548-a812-f07d5ca13b0a/sm/2013912-1457541054143-rtp366_-_Extra_-_THUMB.png","duration":1337,"publication_date":"2016-03-09T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-intern-incident-rt-podcast-366","changefreq":"weekly","video":[{"title":"2016:E366 - The Intern Incident – #366","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Blaine Gibson as they discuss interns, Ancho Reyes, The Matrix, and more on this week's RT Podcast! This episode originally aired on March 7, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-intern-incident-rt-podcast-366","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48a16d77-8c3d-494c-a699-a5cfdd997101/sm/1461653-1457454915650-rtp366_-_THUMB.jpg","duration":7259,"publication_date":"2016-03-08T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-human-catherine-wheel-in-slow-mo","changefreq":"weekly","video":[{"title":"S1:E54 - Human Catherine Wheel In Slow Mo","description":"That close up kind of looks like a ball of fire is flipping you off.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-human-catherine-wheel-in-slow-mo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ccb066c-1b93-459c-b054-9dd5f78634ed/sm/82-1457375087636-maxresdefault.jpg","duration":244,"publication_date":"2016-03-07T17:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-geoff-hits-a-deer","changefreq":"weekly","video":[{"title":"2016:E8 - Geoff Hits a Deer","description":"Geoff tells the story about how one time he hit a deer and had no idea what to do. Then somehow makes the situation even worse.\n\n\n\nAudio from Off Topic Podcast #8","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-geoff-hits-a-deer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a44f79c-5f70-4641-b3ed-08b6c31bf8e6/sm/2013912-1457110689410-rtaa218tn1.jpg","duration":103,"publication_date":"2016-03-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-d-angelo-parody","changefreq":"weekly","video":[{"title":"S7:E3 - D’Angelo Parody Music Video","description":"Zach Anner delivers on his Buff Buddies promise and makes the sexiest, sweatiest, hairiest D'Angelo parody video you've ever not seen. Just try to not stare at his perfect nipples. We dare you.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-d-angelo-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6f453cc-add5-41de-a43e-b8b8fe48c8db/sm/2013912-1457147876302-DANNERGELO_THUMB-1.png","duration":227,"publication_date":"2016-03-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-get-that-corn-outta-my-face-fp-extra","changefreq":"weekly","video":[{"title":"S2:E16 - Get That Corn Outta My Face! - FP EXTRA","description":"The Free Play gang re-enact their favorite part of the film Nacho Libre in this special Sponsor-only stunt!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-get-that-corn-outta-my-face-fp-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e335b907-45d9-4a7b-81b8-1a87dfde588c/sm/2013912-1457146898350-fp48_-_EXTRA_-_THUMB.png","duration":312,"publication_date":"2016-03-05T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-what-is-kawaii-0-3","changefreq":"weekly","video":[{"title":"PE:E3 - What Is Kawaii? - #0.3","description":"Gray, Miles, Kerry and members of the RT Animation gang discuss Bubuki Buranki, Urbance, Konosuba and more! This episode originally aired March 4, 2016.\nHelp out the show! Take our survey here: http://bit.ly/Anime0304","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-what-is-kawaii-0-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aed2f75e-c69a-477f-bf25-5bcea502e4fa/sm/2013912-1457147066687-FAN03_-_THUMB.jpg","duration":4464,"publication_date":"2016-03-05T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-mgs","changefreq":"weekly","video":[{"title":"2016:E7 - Sponsor Play - Metal Gear Solid V Part 1","description":"Kyle and Miles don their sneaking suits and take on the world of Metal Gear Solid.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-mgs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea415627-ffac-469d-abe5-35b29f20c2f6/sm/2013912-1457124294216-MGSV_SP_Pt1.jpg","duration":2136,"publication_date":"2016-03-04T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-fan-fic-friday-48","changefreq":"weekly","video":[{"title":"S2:E48 - Fan-Fic Friday! – #48","description":"It’s Free Play! Meg and Ryan talk old tech and things get sticky and sloppy when our regular Fan Art Friday segment shines a spotlight on fan creations of a very special variety.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-fan-fic-friday-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02cc1aee-35fc-4ff3-b750-78125499aefc/sm/2013912-1457112713220-fp48_-_THUMB.png","duration":2011,"publication_date":"2016-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-52","changefreq":"weekly","video":[{"title":"S5:E52 - We've Been Deported to Brazil – #52","description":"This episode originally aired on March 3, 2016 and is sponsored by MVMT Watches (http://bit.ly/1QRX0wD) and Trunk Club (http://bit.ly/1Hz4kLY). \n\n\n\n I understand that On The Spot is a place of fun and frivolity. And don't get me wrong, I know how to take a joke. I love jokes. So funny. But if I can just be serious for one second and say that if any of you assholes mess with my god damn rolodex again I am not going to be responsible for my actions. We're talking scorched earth, you little shits! Ok, now back to the comedy. Thanks, everyone.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe2942f8-01e0-4aa5-8d50-e316d799e70a/sm/2013912-1457112948103-ots_52_thumb.jpg","duration":2426,"publication_date":"2016-03-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-sixteen","changefreq":"weekly","video":[{"title":"S1:E13 - Buff Buddies Finale","description":"Thanks to Onnit for sponsoring this series! The Buff Buddies race to the end of the season with... some races. And that moment you really came to watch: the D'Angelo-debut of Zach Anner.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-sixteen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a8dbdd1-9056-46c0-bd48-d167ff57797e/sm/2013912-1457023911098-BuffBuddies-Thumbnail-EP13.jpg","duration":595,"publication_date":"2016-03-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-chris-s-most-embarrassing-moment","changefreq":"weekly","video":[{"title":"2016:E2 - Chris's Most Embarrassing Moment","description":"In this month's Up Close and Uncomfortable post, Chris reveals that the Social Disorder season 2 finale was the most embarrassing thing that ever happened to him. Check out this Sponsor-exclusive vlog to learn about how – and if – he recovered from the trauma.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-chris-s-most-embarrassing-moment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46483e9f-96c5-47f3-bf9b-0d7e8ce6f3d2/sm/2013912-1456939178020-Sponsor_Vlog-Social_Disorder_S2_VLOG_1.jpg","duration":196,"publication_date":"2016-03-03T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-lucha-libre-with-johnny-mundo-47","changefreq":"weekly","video":[{"title":"S2:E47 - Lucha Libre with Johnny Mundo – #47","description":"It's Free Play! Meg can't get last week's steamy Outlander reading out of her head. Plus, professional wrestler Johnny Mundo stops by to show Ryan and Tyler the basics of Lucha Libre.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-lucha-libre-with-johnny-mundo-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89ed85b1-a441-43e0-8272-3eda4e2a7a3e/sm/2013912-1456936389021-fp47_-_THUMB.jpg","duration":2004,"publication_date":"2016-03-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-365-post-show","changefreq":"weekly","video":[{"title":"2016:E8 - Podcast #365 Post Show","description":"Join Gus Sorola, Gavin Free, Miles Luna, and Burnie Burns as they discuss air and space disasters throughout history.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-365-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e111aa0e-6210-4c63-a246-6a2a8a2b1c82/sm/2013912-1456941104062-rtp365_-_EXTRA_THUMB.jpg","duration":1441,"publication_date":"2016-03-02T17:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-bloopers-outtakes","changefreq":"weekly","video":[{"title":"S2:E5 - Million Dollars, But... Bloopers & Outtakes #3","description":"Check out all the never-before-seen bloopers and outtakes in this special episode of Million Dollars, But…","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-bloopers-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e5a1252-a779-448d-aeac-aa11fef7ccfe/sm/2013912-1456936237969-MDBs2_BLOOPERS_01_thumbnail_v2.png","duration":145,"publication_date":"2016-03-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-365","changefreq":"weekly","video":[{"title":"2016:E365 - Salty about Salty – #365","description":"Join Gus Sorola, Gavin Free, Miles Luna, and Burnie Burns as they discuss the Oscars, the word \"salty,\" weird horror manga, and more on this week's RT Podcast! This episode originally aired on February 29, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-365","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96b2ff20-d1eb-4991-82e5-0cc5e324f7fa/sm/2013912-1456860604772-rtp365_-_THUMB.jpg","duration":5842,"publication_date":"2016-03-01T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-miles-dirty-talk-fail","changefreq":"weekly","video":[{"title":"2016:E7 - Miles' Dirty Talk Fail","description":"Miles goes on a date, and things are going well, until he screws it up by switching two words.\n\n\n\nAudio from Sponsor Play - The Evil Within Part 5","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-miles-dirty-talk-fail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78010f7e-7da7-4d65-9943-6316a1cf3fd7/sm/2013912-1456507449129-rtaa217tn1.jpg","duration":84,"publication_date":"2016-02-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-dog-killer","changefreq":"weekly","video":[{"title":"S7:E2 - Dog Killer!","description":"After being assigned to a new position, Jon must unravel a deadly mystery.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-dog-killer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69a4e536-6dea-4281-bf0b-50e2e0084de9/sm/2013912-1456641324509-REASSIGNED_THUMB.png","duration":418,"publication_date":"2016-02-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-the-boxer-bet-fp-extra","changefreq":"weekly","video":[{"title":"S2:E13 - The Boxer Bet – FP EXTRA","description":"Before the show, Meg and Patrick make a little wager involving Ryan’s boxers.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-the-boxer-bet-fp-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4173af87-b85b-44bf-a1bb-811ba0c22d80/sm/2013912-1456591099604-Fan_Service_02.jpg","duration":114,"publication_date":"2016-02-27T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-0-2","changefreq":"weekly","video":[{"title":"PE:E2 - Foodgasm - #0.2","description":"In this second pilot episode, the RT Animation crew sit down to chat about Food Wars, Seven Deadly Sins, The Tokyo Anime Award Festival, and more! This episode originally aired on February 26, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-0-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4e6fcf2-66d6-43ba-a82d-c9b1194d5341/sm/2013912-1456587691017-Fan_Service_02.jpg","duration":4516,"publication_date":"2016-02-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-red-carpet-runway-46","changefreq":"weekly","video":[{"title":"S2:E46 - Ryan Gets Erotic – #46","description":"It’s Free Play! Meg takes her newfound Outlander obsession to the logical extreme. Plus, Ryan and Tyler walk the red carpet in time for the Oscars.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-red-carpet-runway-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98ed12b1-9bef-4bd7-8098-23b05b274846/sm/2013912-1456505654553-fp46_-_THUMB.jpg","duration":1679,"publication_date":"2016-02-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-51","changefreq":"weekly","video":[{"title":"S5:E51 - How to Accept an Oscar – #51 Featuring Colton Dunn","description":"WE GOT A BRAND NEW SET FOR THE SHOW! Also, in honor of not being asked to attend the Oscars, we at On The Spot have come up with a few helpful tips on what to do if you have to give an acceptance speech. Also, find out what happens when Dwayne Johnson knocks the Christian right out of you. This episode originally aired on February 25, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/831a7ed7-d992-4015-84c6-0bc2baa4734a/sm/2013912-1456508722746-ots_51_thumb.jpg","duration":2575,"publication_date":"2016-02-26T17:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-scorpion-funeral","changefreq":"weekly","video":[{"title":"2016:E3 - Scorpion Funeral","description":"Stephen the scorpion has died. For real this time. And so we send off to Valhalla.","player_loc":"https://roosterteeth.com/embed/rt-life-2016-scorpion-funeral","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2359aa64-18fd-43ab-9549-56185406875a/sm/2013912-1456460701282-RTLIFE_SCORPIONFUNERAL_THUMB.png","duration":184,"publication_date":"2016-02-26T04:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-45","changefreq":"weekly","video":[{"title":"S2:E45 - Food Bingo! – #45","description":"It's Free Play! Meg catches Ryan up with the latest steamy, Scottish happenings in the world of Outlander. Plus, Mariel is back from the Dentist/Spa in Costa Rica and teams up once again with her lover Tyler for a Food Bingo challenge!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f5e22d7-282e-4507-b87f-f9ae41621d96/sm/2013912-1456332931691-FP45_-_THUMB.jpg","duration":1511,"publication_date":"2016-02-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-biggest-belieber-and-knife-hand","changefreq":"weekly","video":[{"title":"S2:E4 - Biggest Belieber & Knife-hand","description":"This week Barbara and the Funhaus gang livestream their bathroom breaks and become the world’s biggest Justin Bieber fans.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-biggest-belieber-and-knife-hand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2de31ed7-0d4d-403e-8722-391a7b068b9a/sm/2013912-1456331649441-MDBs2e3_Thumbnail.png","duration":275,"publication_date":"2016-02-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-364-post-show","changefreq":"weekly","video":[{"title":"2016:E7 - Podcast #364 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as Burnie recounts some stories from the first leg of the Amazing Race","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-364-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00fb20cc-aff3-46dc-8f44-b933699b1c73/sm/2013912-1456332448191-RTP364_-_EXTRA_-_THUMB.jpg","duration":1041,"publication_date":"2016-02-24T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-gustavo-the-birthday-boy-364","changefreq":"weekly","video":[{"title":"2016:E364 - Gustavo the Birthday Boy – #364","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss birthdays, poaching mysterious troll dolls, and more on this week's RT Podcast! This episode originally aired on February 22, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-gustavo-the-birthday-boy-364","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fdb4550-36c7-4b77-81d0-da626fbb014f/sm/2013912-1456253631340-rtp364_-_THUMB.png","duration":6226,"publication_date":"2016-02-23T18:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-josh-vs-the-german-stripper","changefreq":"weekly","video":[{"title":"2016:E6 - Josh vs. the German Stripper","description":"Josh comes across a very... forward stripper with a German accent and can't get away. She should hang out with Darque Chocolate.\n\n\n\nAudio from RT Podcast #353","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-josh-vs-the-german-stripper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12e016c3-3f1c-4220-a360-01744a6e482e/sm/2013912-1455908462111-rtaa216tn1.jpg","duration":113,"publication_date":"2016-02-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-wrestling-games","changefreq":"weekly","video":[{"title":"S1:E114 - Top 5 Wrestling Games!","description":"Oh yeah, brother!  Can you smell the Top 5 Wrestling Games that Craig is cooking?","player_loc":"https://roosterteeth.com/embed/top-5-wrestling-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f16509e9-1b27-479a-bacf-4751190fcd91/sm/video_thumbnail_12833459.png","duration":298,"publication_date":"2014-04-14T09:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-8","changefreq":"weekly","video":[{"title":"S2:E8 - Pok?mon Battle Royale","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55e53330-ed48-42aa-84ce-288921a79866/sm/video_thumbnail_12833031.jpg","duration":759,"publication_date":"2014-04-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041114-double-fines-last-life-ea-saves-old-battlefield-servers-and-firaxis-to-announce-new-aaa-ip","changefreq":"weekly","video":[{"title":"S1:E638 - Hard News 04/11/14 - Double Fine's 'Last Life,' EA saves old Battlefield servers, and Firaxis to announce new AAA IP","description":"This episode of Hard News is brought to you by ScrewAttack Pax East Pub Crawl. Going to PAX East this weekend? Everyone’s invited to come hang Saturday night. Get more details by clicking the link below!\r\nhttp://www.screwattack.com/news/come-screwattack-pax-east-pub-crawl-saturday\r\nToday on Hard News, Double Fine's \"Last Life,\" EA saves old Battlefield servers, and Firaxis to announce new AAA IP.\r\n\t\r\n\tFiraxis to announce new AAA IP - http://www.screwattack.com/news/civalization-and-xcom-devs-have-new-ip-you\r\n\tDouble Fine's \"Last Life\" - http://www.screwattack.com/news/ready-new-double-fine-ip\r\n\tEA saves old Battlefield servers - http://www.screwattack.com/news/ea-doing-something-nice\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041114-double-fines-last-life-ea-saves-old-battlefield-servers-and-firaxis-to-announce-new-aaa-ip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9ac4eb8-d2f0-4fba-9ac7-f2d0ce7d219a/sm/video_thumbnail_12833019.png","duration":136,"publication_date":"2014-04-11T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041014-nintendos-weird-tomodachi-life-et-landfill-excavation-and-h1z1-zombie-mmo","changefreq":"weekly","video":[{"title":"S1:E637 - Hard News 04/10/14 - Nintendo's weird Tomodachi Life, ET landfill excavation, and H1Z1 zombie MMO","description":"This episode of Hard News is brought to you by ScrewAttack Pax East Pub Crawl. Going to PAX East this weekend? Everyone’s invited to come hang Saturday night. Get more details by clicking the link below!\r\nhttp://www.screwattack.com/news/come-screwattack-pax-east-pub-crawl-saturday\r\nToday on Hard News, Nintendo's weird Tomodachi Life, ET landfill excavation, and H1Z1 zombie MMO.\r\n\t\r\n\tH1Z1 zombie MMO - http://www.screwattack.com/video/Postapocalyptic-MMO-H1Z1-to-take-a-bite-out-of-the-freetoplay-market-12832917\r\n\tNintendo's weird Tomodachi Life - http://www.screwattack.com/video/Tomodachi-Life-coming-to-3DS-this-summer-12832912\r\n\tET landfill excavation - http://www.screwattack.com/news/there-secret-new-mexico-landfill-full-et-game\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041014-nintendos-weird-tomodachi-life-et-landfill-excavation-and-h1z1-zombie-mmo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166a6400-184e-456c-96df-596c795ca1d6/sm/video_thumbnail_12832940.png","duration":202,"publication_date":"2014-04-10T15:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-titanfall-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E18 - 13 Reasons We HATE Titanfall with Evil Craig!","description":"Stupid Grunts and giant robots!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-titanfall-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b70453-de20-405a-ad02-2384ce6797e2/sm/video_thumbnail_12832928.jpg","duration":70,"publication_date":"2014-04-10T12:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-titanfall","changefreq":"weekly","video":[{"title":"S1:E46 - 18 Reasons We LOVE Titanfall!","description":"Hardcore Parkour and giant Mechs!","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-titanfall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d501ca5-6708-4b65-9eab-9baea5ecf2d9/sm/video_thumbnail_12832927.jpg","duration":64,"publication_date":"2014-04-10T12:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040914-smash-bros-direct-highlights-borderlands-rumors-confirmed-and-marvel-comes-to-disney-infinity","changefreq":"weekly","video":[{"title":"S1:E636 - Hard News 04/09/14 - Smash Bros Direct highlights, Borderlands rumors confirmed, and Marvel comes to Disney Infinity","description":"Today on Hard News, Smash Bros Direct highlights, Borderlands rumors confirmed, and Marvel comes to Disney Infinity.\r\n\t\r\n\tBorderlands rumors confirmed - http://www.screwattack.com/video/All-of-the-Borderlands-The-Pre-Sequel-rumors-are-true-and-the-game-is-at-PAX-East-12832854\r\n\tMarvel comes to Disney Infinity - http://www.screwattack.com/news/disney-infinity-20-teases-marvel-super-heroes-are-coming-digital-universe-disney\r\n\tSmash Bros Direct highlights - http://www.screwattack.com/news/everything-you-need-know-about-super-smash-bros-nintendo-direct\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040914-smash-bros-direct-highlights-borderlands-rumors-confirmed-and-marvel-comes-to-disney-infinity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/357d3d27-4b65-4a32-be26-e1caecc6a3f3/sm/video_thumbnail_12832864.jpg","duration":200,"publication_date":"2014-04-09T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040814-watch-dogs-requires-uplay-for-pc-smash-bros-6-and-xbox-will-know-your-feelings","changefreq":"weekly","video":[{"title":"S1:E635 - Hard News 04/08/14 - Watch Dogs requires UPlay for PC, Smash Bros 6, and Xbox will know your feelings","description":"Today on Hard News, Watch Dogs requires UPlay for PC, Smash Bros 6, and Xbox will know your feelings.\r\n\t\r\n\tWatch Dogs requires UPlay for PC - http://www.screwattack.com/news/pc-versions-watch-dogs-will-fact-require-service-uplay\r\n\tXbox will know your feelings - http://www.screwattack.com/video/Standford-and-TI-are-working-together-to-help-Xbox-360-feel-your-emotions-12832778\r\n\tSmash Bros 6 job postings - http://www.screwattack.com/news/rumor-bandai-namco-already-working-next-super-smash-bros\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040814-watch-dogs-requires-uplay-for-pc-smash-bros-6-and-xbox-will-know-your-feelings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c003f4d-2570-4108-813b-9591a019ec04/sm/video_thumbnail_12832790.jpg","duration":186,"publication_date":"2014-04-08T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040714-fight-as-bruce-lee-doom-next-gen-only-and-borderlands-pre-sequel","changefreq":"weekly","video":[{"title":"S1:E634 - Hard News 04/07/14 - Fight as Bruce Lee, Doom next gen only, and Borderlands pre-sequel","description":"Today on Hard News, Fight as Bruce Lee, Doom next gen only, and Borderlands pre-sequel.\r\n\t\r\n\tBruce Lee enters the Octagon - http://www.screwattack.com/video/EA-UFC-preorder-to-fight-as-BRUCE-LEE--12832704\r\n\tBorderlands pre-sequel - http://www.screwattack.com/news/rumor-prequel-borderlands-2-might-be-coming-2k-australia\r\n\tDoom Beta next gen only - http://www.screwattack.com/news/doom-beta-access-only-xbox-one-ps4-and-pc\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040714-fight-as-bruce-lee-doom-next-gen-only-and-borderlands-pre-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba7965b8-5622-474a-a542-80cf8cc4139e/sm/video_thumbnail_12832716.jpg","duration":191,"publication_date":"2014-04-07T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-greatest-game-mods","changefreq":"weekly","video":[{"title":"S1:E113 - Top 5 Greatest Game Mods!","description":"With so many user-created mods out there, picking just five wasn't easy.  Nevertheless, these are the five that trump all others!","player_loc":"https://roosterteeth.com/embed/top-5-greatest-game-mods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7145d238-304a-420c-8270-b2ad51e580ed/sm/video_thumbnail_12832699.jpg","duration":334,"publication_date":"2014-04-07T09:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-of-the-greatest-game-mods","changefreq":"weekly","video":[{"title":"S1:E112 - Even MORE of the Greatest Game Mods!","description":"You've seen the five greatest mods, but not all the ones that deserve some mentioning.  And hey, you can never have too many mods, right?","player_loc":"https://roosterteeth.com/embed/even-more-of-the-greatest-game-mods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1de2667-e88e-47b5-89d2-aa08e8deffb8/sm/video_thumbnail_12832698.jpg","duration":212,"publication_date":"2014-04-07T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-league-of-legends-champion-ever","changefreq":"weekly","video":[{"title":"S1:E46 - The Best League of Legends Champion EVER!","description":"There are over a hundred LoL champions now, but which one is truly the best EVER!? Bryan, Chad, and Sam sure know who they think deserves the title!\r\nWho is your best LoL champ EVER!? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-best-league-of-legends-champion-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d36495fe-b9e0-4890-a6d0-99c5da3248b6/sm/video_thumbnail_12832557.jpg","duration":257,"publication_date":"2014-04-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040414-amy-hennig-takes-on-star-wars-lego-the-hobbit-and-glu-ends-gamespy","changefreq":"weekly","video":[{"title":"S1:E633 - Hard News 04/04/14 - Amy Hennig takes on Star Wars, Lego: The Hobbit, and Glu ends Gamespy","description":"Today on Hard News, Amy Hennig takes on Star Wars, Lego: The Hobbit, and Glu ends Gamespy's matchmaking.\r\n\t\r\n\tAmy Hennig takes on Star Wars - http://www.screwattack.com/news/amy-hennig-signs-visceral-games-lead-new-star-wars-project\r\n\tLego: The Hobbit - http://www.screwattack.com/news/rumor-lego-hobbit-might-add-third-film-game-post-launch-dlc\r\n\tGlu ends Gamespy's matchmaking - http://www.screwattack.com/news/glu-mobile-will-be-shutting-down-gamespy-and-talking-number-games-offline\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040414-amy-hennig-takes-on-star-wars-lego-the-hobbit-and-glu-ends-gamespy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1bf831e-5c96-4e0c-8afc-b48b06f93e94/sm/video_thumbnail_12832521.jpg","duration":153,"publication_date":"2014-04-04T14:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040314-adam-sessler-steps-down-cortana-confirmed-and-gta-online","changefreq":"weekly","video":[{"title":"S1:E632 - Hard News 04/03/14 - Adam Sessler steps down, Cortana confirmed, and GTA Online","description":"Today on Hard News, Adam Sessler steps down, Cortana confirmed, and GTA Online.\r\n\t\r\n\tUpdate on Jared Rosen - http://www.screwattack.com/news/update-gamejam-was-reality-show-cost-polaris-400000-and-it-wont-ever-air\r\n\tAdam Sessler steps down - http://www.screwattack.com/news/adam-sessler-leaves-world-youtube-personalities-new-avenues-inside-gaming\r\n\tCortana confirmed - http://www.screwattack.com/news/rumors-are-true-cortana-will-be-personal-digitized-assistant-all-windows-phone-users\r\n\tGTA Online updates - http://www.screwattack.com/news/gta-online-will-finally-gain-access-heists-along-bunch-other-content-spring\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040314-adam-sessler-steps-down-cortana-confirmed-and-gta-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5425db63-d337-4570-b40e-24f451274c4e/sm/video_thumbnail_12832440.jpg","duration":177,"publication_date":"2014-04-03T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/11-reasons-we-hate-diablo-3-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E17 - 11 Reasons We HATE Diablo 3 with Evil Craig!","description":"Stupid Jay Wilson!","player_loc":"https://roosterteeth.com/embed/11-reasons-we-hate-diablo-3-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16c4e825-2136-49ee-a6f2-899e1f502b8c/sm/video_thumbnail_12832427.jpg","duration":88,"publication_date":"2014-04-03T11:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-love-diablo-3","changefreq":"weekly","video":[{"title":"S1:E47 - 17 Reasons We LOVE Diablo 3!","description":"It's the 17 Reasons We LOVE Diablo 3!","player_loc":"https://roosterteeth.com/embed/17-reasons-we-love-diablo-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6b0a59b-368c-402a-a669-6f78543a1cba/sm/video_thumbnail_12832426.jpg","duration":65,"publication_date":"2014-04-03T11:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040214-polaris-failed-game_jam-eas-april-fools-apology-and-amazon-firetv","changefreq":"weekly","video":[{"title":"S1:E631 - Hard News 04/02/14 - Polaris' failed Game_Jam, EA's April Fools apology, and Amazon FireTV","description":"Today on Hard News, Polaris' failed Game_Jam, EA's April Fools apology, and Amazon FireTV.\r\n\t\r\n\tEA's April Fools apology - http://www.screwattack.com/news/ea-makes-fun-wii-uon-april-fools-day-and-then-realizes-theyre-being-douchey\r\n\tPolaris' failed Game_Jam - http://www.screwattack.com/news/gamejam-was-reality-show-cost-polaris-400000-and-it-wont-ever-air\r\n\tAmazon FireTV - http://www.screwattack.com/news/amazon-reveals-its-streaming-console-fire-tv-and-you-can-purchase-it-now\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040214-polaris-failed-game_jam-eas-april-fools-apology-and-amazon-firetv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8288fc6-2690-4893-843a-7a178063bbc0/sm/video_thumbnail_12832370.jpg","duration":211,"publication_date":"2014-04-02T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040114-ben-delivers-the-news-opti-moose-prim-cheeteau-and-googles-pokemon-master","changefreq":"weekly","video":[{"title":"S1:E630 - Hard News 04/01/14 - Ben delivers the news! Opti-moose Prim, Cheeteau, and Google's Pokemon Master","description":"Today on Hard News, Ben delivers the news! Opti-moose Prim, Cheeteau, and Google's Pokemon Master.\r\n\t\r\n\tFrito Lay's Cheeteau cologne - http://www.screwattack.com/video/There-is-a-new-cologne-from-Chester-called-Cheeteau-only-available-today-in-NYC-and-LA-12832268\r\n\tOptimus Prime dropping into Titanfall - http://www.screwattack.com/video/EA-has-brokered-the-ultimate-deal-between-Hasbro-and-Microsoft-for-Titanfall-Prime-12832270\r\n\tGoogle's Pokemon Master quest - http://www.screwattack.com/video/Google-Maps-sets-up-the-Pokemon-Challenge-to-find-their-official-Pokemon-Master-12832269\r\n\r\n\tScript:\r\n\tI'm Bennnnnn Songer! and this is News Hard for Tuesday Aprol 1st, twen ty 14\r\n\tNews that is great for us games ppl and do love some chips. FritoLay has decided to take Cheeto brand & turn to a sexy col-own. People favorite puffed snack of cornmeal is been condensed into a nineetyy zero mil e leeeter bottle of Cheeteau! and I call it smell the holocost for noses. One time I ate an entire bag of flaming hot cheetos and made the crop dust at Nick's night time head sleepy thing. Chester Cheetah is a cat leopard and was quoted by the Totoro tree enthusiast websitesite Kotaku in article, but I don't really care and wonder if he's been neutered. If you hate fun things like sex dancing, covering yourself in nacho cheese eau del toilette. Will insure great virginity for all time.\r\n\tSpeaking of beastiality, you'll have lots of time for video games. EA knows this using their evil power an d brackered the ultimate darkness deal between Pony company and Microsoft. HEY! Mechs are cool! Transformers? are cool! Wait.... Did I just... SO how about Opti-moose Prim in multiplayer hit Titanfall?! I know my dick. Is good friend.  Exclusive trailer from Eye Gee EEN, Respawn say DLC commm to shooter and make much autobot. Titanfall Prime, trailer features a new ear dance garbage from from Linkin Park called Prime Time. Ther e is Axe.\r\n\tAnd for the next human day hours, Google is searching the world for a Pokemon Master to be the very best, like n","player_loc":"https://roosterteeth.com/embed/hard-news-040114-ben-delivers-the-news-opti-moose-prim-cheeteau-and-googles-pokemon-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01e9e414-812a-425f-8a56-ac482e66e805/sm/video_thumbnail_12832289.jpg","duration":268,"publication_date":"2014-04-01T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-outtakes-stories-with-sean","changefreq":"weekly","video":[{"title":"S1:E719 - Hard News Outtakes - Stories with Sean","description":"Join Sean for story time! Bloopers from Hard News, March 2014.\r\n \r\n\r\n\tThis video is a bonus for Advantage Members. It's a great way to support the site and keep us growing like a big boy.","player_loc":"https://roosterteeth.com/embed/hard-news-outtakes-stories-with-sean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67f9cb61-c890-49e7-9e0a-c7e745049d42/sm/video_thumbnail_12832283.jpg","duration":350,"publication_date":"2014-04-01T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/micro-machines-video-game-vault-screwattack","changefreq":"weekly","video":[{"title":"S1:E423 - Micro Machines - Video Game Vault - ScrewAttack","description":"S1:E423 - Micro Machines - Video Game Vault - ScrewAttack","player_loc":"https://roosterteeth.com/embed/micro-machines-video-game-vault-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40cefba5-293d-45ee-b511-dca1fdcf76d3/sm/video_thumbnail_12832265.jpg","duration":154,"publication_date":"2014-04-01T08:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-033114-predator-joins-call-of-duty-ea-origin-ditches-physical-media-and-next-gen-ports","changefreq":"weekly","video":[{"title":"S1:E629 - Hard News 03/31/14 - Predator joins Call of Duty, EA Origin ditches physical media, and next-gen ports","description":"Today on Hard News, Predator joins Call of Duty, EA Origin ditches physical media, and next-gen ports.\r\n\t\r\n\tPredator joins Call of Duty - http://www.screwattack.com/news/call-duty-ghosts-confirms-theyre-bringing-predator-their-latest-map-pack\r\n\tThe Year of the Re-Release, next-gen ports - http://www.screwattack.com/news/last-us-complete-edition-coming-ps4-according-ps-turkey-vp-and-spanish-retailer\r\n\tEA Origin ditches physical media - http://www.screwattack.com/news/ea-has-decided-shutdown-physical-distribution-side-origin-april-4th\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-033114-predator-joins-call-of-duty-ea-origin-ditches-physical-media-and-next-gen-ports","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/008ddd5e-3966-4aba-abcc-3ad8f311e889/sm/video_thumbnail_12832092.jpg","duration":170,"publication_date":"2014-03-31T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-mega-man-games","changefreq":"weekly","video":[{"title":"S1:E45 - The Worst EVER! - Mega Man Games","description":"There are over 100 Mega Man games, and there was no way they were all good. These are our worst Mega Man games EVER!\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/the-worst-ever-mega-man-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f49398b4-68c1-4c18-9e27-766233507064/sm/video_thumbnail_12831853.jpg","duration":313,"publication_date":"2014-03-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/introducing-the-screwattack-network","changefreq":"weekly","video":[{"title":"S1:E718 - Introducing the ScrewAttack Network","description":"ScrewAttack has come together with Fullscreen to change the way the Internet thinks about networks.  Our focus: you!\r\n\r\n\tJoin us tonight at 6pm CST here on ScrewAttack? or on our Twitch channel for a Q/A session about what this actually means for ScrewAttack, Fullscreen and the internet as a whole.","player_loc":"https://roosterteeth.com/embed/introducing-the-screwattack-network","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83223c35-8517-4041-85c9-c75a5190cc68/sm/video_thumbnail_12831647.jpg","duration":214,"publication_date":"2014-03-28T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032814-iron-galaxy-takes-over-killer-instinct-king-goes-public-asscreed-comet-details","changefreq":"weekly","video":[{"title":"S1:E628 - Hard News 03/28/14 - Iron Galaxy takes over Killer Instinct, King goes public, AssCreed Comet details","description":"Today on Hard News, Iron Galaxy takes over Killer Instinct, King goes public, and Assassin's Creed Comet details.\r\n\t\r\n\tIron Galaxy takes over Killer Instinct - http://www.screwattack.com/news/iron-galaxy-taking-over-development-killer-instinct\r\n\tKing goes public - http://www.screwattack.com/news/king-digital-dark-lords-candy-crush-saga-goes-public-and-loses-billion-dollars\r\n\tAssassin's Creed Comet details - http://www.screwattack.com/news/rumor-assassins-creed-comet-successor-black-flag\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032814-iron-galaxy-takes-over-killer-instinct-king-goes-public-asscreed-comet-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3033d28e-08d0-4ae5-a8b0-4d098ded29b6/sm/video_thumbnail_12831785.jpg","duration":224,"publication_date":"2014-03-28T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vegeta-vs-mewtwo-death-battle-vs-silvermania","changefreq":"weekly","video":[{"title":"S1:E717 - Vegeta VS Mewtwo? - DEATH BATTLE vs SILVERMANIA","description":"See the original video HERE\r\nThanks to our friends at Silvermania & the 32 other YouTubers for thinking Death Battle is cool enough to create such a huge collaboration parody of! Wiz and Boomstick are ready to chime in for fun while in-between Death Battle episodes!\r\nSpecial thanks to Nick \"Lanipator\" Landis and Mali De'lisser!\r\n\t \r\nFollow the makers of DEATH BATTLE!\r\n-- Ben Singer (Wiz/Director) on Facebook and Twitter\r\n-- Chad James (Boomstick) on Facebook and Twitter\r\n-- Mali (Animator) on YouTube, Facebook, and Tumblr\r\n-- ScrewAttack.com on Facebook and Twitter\r\n\r\n\t\r\n\tVEGETA ? Lanipator\r\n\t\r\n\tMEWTWO ? Nervous Nick \r\n\t\r\n\t\r\n\tHAPPY APRIL FOOLS! . . . . . uh 4 days early, but whatever.","player_loc":"https://roosterteeth.com/embed/vegeta-vs-mewtwo-death-battle-vs-silvermania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/197efbf8-27ea-4aa2-bbe5-ee0514717603/sm/video_thumbnail_12831768.jpg","duration":111,"publication_date":"2014-03-28T13:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-metal-gear-solid-3-snake-eater-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E16 - 13 Reasons We HATE Metal Gear Solid 3: Snake Eater with Evil Craig!","description":"Stop screwin' with my mind Kojima!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-metal-gear-solid-3-snake-eater-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/844e515e-58bd-48ed-bc39-afb2ab3ef3e1/sm/video_thumbnail_12831764.jpg","duration":71,"publication_date":"2014-03-28T12:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032714-sonic-legend-of-zelda-dlc-senator-yee-arrested-and-wolfenstein-panzerhund-edition","changefreq":"weekly","video":[{"title":"S1:E627 - Hard News 03/27/14 - Sonic Legend of Zelda DLC, Senator Yee arrested, and Wolfenstein Panzerhund edition","description":"Today on Hard News, Sonic Legend of Zelda DLC, Senator Yee arrested, and Wolfenstein Panzerhund edition.\r\n\t\r\n\tSonic Legend of Zelda DLC - http://www.screwattack.com/video/Upcoming-Sonic-Lost-World-DLC-has-The-Blue-Blur-running-amuck-in-Hyrule-12831572\r\n\tWolfenstein Panzerhund edition - http://www.screwattack.com/news/wolfenstein-100-collectors-edition-announced-game-sold-separately\r\n\tSenator Yee arrested - http://www.screwattack.com/news/state-senator-leland-yee-arrested-charged-political-corruption-and-weapons-trafficking\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032714-sonic-legend-of-zelda-dlc-senator-yee-arrested-and-wolfenstein-panzerhund-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aae88844-62dd-4179-b1b0-591d21475101/sm/video_thumbnail_12831657.jpg","duration":198,"publication_date":"2014-03-27T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-metal-gear-solid-3-snake-eater","changefreq":"weekly","video":[{"title":"S1:E48 - 18 Reasons We LOVE Metal Gear Solid 3: Snake Eater!","description":"We celebrate one of the best entries in the Metal Gear franchise!","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-metal-gear-solid-3-snake-eater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcd70c05-90b9-4961-a08d-124f18775aab/sm/video_thumbnail_12831641_0.jpg","duration":97,"publication_date":"2014-03-27T12:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032614-facebook-acquires-oculus-rift-free-god-of-war-dlc-and-the-devils-plot-against-phoenix","changefreq":"weekly","video":[{"title":"S1:E626 - Hard News 03/26/14 - Facebook acquires Oculus Rift, Free God of War DLC, and the Devil's plot against Phoenix","description":"Today on Hard News, Facebook acquires Oculus Rift, Free God of War DLC, and the Devil's plot against Phoenix Interactive.\r\n\t\r\n\tFree God of War DLC - http://www.screwattack.com/news/god-war-ascensions-multiplayer-dlc-goes-free-or-discounted-limited-time\r\n\tThe Devil's plot against Phoenix - http://www.screwattack.com/news/devil-scheming-against-bible-chronicles-call-abraham-and-its-developers\r\n\tFacebook acquires Oculus Rift - http://www.screwattack.com/news/facebook-bought-oculus-vr-2-billion-dollars-and-heres-what-everyone-thinking\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032614-facebook-acquires-oculus-rift-free-god-of-war-dlc-and-the-devils-plot-against-phoenix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bc24d41-ef25-4cf8-bd08-a940df686c6a/sm/video_thumbnail_12831591.jpg","duration":190,"publication_date":"2014-03-26T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032514-disney-acquires-maker-studios-ps1ps2-emulator-for-ps4-kinect-sports-rivals-championship","changefreq":"weekly","video":[{"title":"S1:E625 - Hard News 03/25/14 - Disney acquires Maker Studios, PS1/PS2 emulator for PS4, Kinect Sports Rivals Championship","description":"Today on Hard News, Disney acquires Maker Studios, PS1/PS2 emulator for PS4, and Kinect Sports Rivals Championship.\r\n\t\r\n\tDisney acquires Maker Studios - http://www.screwattack.com/news/disney-has-acquired-maker-studios-half-billion-dollars-and-includes-polaris\r\n\tKinect Sports Rivals Championship - http://www.screwattack.com/news/kinect-sports-rivals-world-championship-offering-one-lucky-competitor-10000\r\n\tPS1/PS2 emulator for PS4 - http://www.screwattack.com/news/rumor-psone-and-ps2-emulation-may-be-coming-ps4-and-uprezzing-1080p\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032514-disney-acquires-maker-studios-ps1ps2-emulator-for-ps4-kinect-sports-rivals-championship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d64c8ed8-f4e6-4109-a06d-8303ce545c2f/sm/video_thumbnail_12831496.jpg","duration":169,"publication_date":"2014-03-25T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/yoshis-story-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E422 - Yoshi's Story - Video Game Vault","description":"S1:E422 - Yoshi's Story - Video Game Vault","player_loc":"https://roosterteeth.com/embed/yoshis-story-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f390f6b3-f2b3-4246-9137-3df93a9aeb1f/sm/video_thumbnail_12831469.jpg","duration":144,"publication_date":"2014-03-25T11:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-sonic-enemies","changefreq":"weekly","video":[{"title":"S1:E111 - Even MORE Sonic Enemies!","description":"There are more minions where that came from!  These are the rest of Sonic's enemies that just missed the list!","player_loc":"https://roosterteeth.com/embed/even-more-sonic-enemies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3108c69-3bee-4f91-b893-b662dbdc7ef3/sm/video_thumbnail_12831351.jpg","duration":162,"publication_date":"2014-03-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-sonic-enemies","changefreq":"weekly","video":[{"title":"S1:E110 - Top 5 Sonic Enemies!","description":"Sonic has accrued legions off bad guys all out to get him, but only five outshine the rest!","player_loc":"https://roosterteeth.com/embed/top-5-sonic-enemies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c08c8bc9-42c2-4c95-92c0-759a42c15c7f/sm/video_thumbnail_12831352.jpg","duration":317,"publication_date":"2014-03-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032414-pokemon-anime-spinoff-redbox-to-offer-current-gen-games-ps4-struggles-to-meet-demand","changefreq":"weekly","video":[{"title":"S1:E624 - Hard News 03/24/14 - Pokemon anime spinoff, Redbox to offer current gen games, PS4 struggles to meet demand","description":"Today on Hard News, Pokemon anime spinoff, Redbox to offer current gen games, PS4 struggles to meet demand.\r\n\t\r\n\tRedbox to offer current gen games - http://www.screwattack.com/news/rumor-redbox-will-be-getting-games-8th-generation-consoles-kiosks\r\n\tPS4 struggles to meet demand - http://www.screwattack.com/news/sony-won%E2%80%99t-meet-playstation-4-demand-until-summer\r\n\tPokemon anime spinoff - http://www.screwattack.com/news/new-pok%C3%A9mon-spinoff-anime-announced\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032414-pokemon-anime-spinoff-redbox-to-offer-current-gen-games-ps4-struggles-to-meet-demand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/956ddd7e-1d59-4325-b61a-c453d0a2771f/sm/video_thumbnail_12831365.jpg","duration":144,"publication_date":"2014-03-24T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-7","changefreq":"weekly","video":[{"title":"S2:E7 - Luigi VS Tails","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fe4ff8e-52ac-4cb9-9c86-f866b1623178/sm/video_thumbnail_12831026_0.jpg","duration":796,"publication_date":"2014-03-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032114-league-of-legends-servers-hacked-ps4-removes-hdcp-and-farcry-4-rumored","changefreq":"weekly","video":[{"title":"S1:E623 - Hard News 03/21/14 - League of Legends servers hacked, PS4 removes HDCP, and FarCry 4 rumored","description":"Today on Hard News, League of Legends servers hacked, PS4 removes HDCP, and FarCry 4 rumored.\r\n\t\r\n\tLeague of Legends servers hacked - http://www.screwattack.com/news/australian-man-being-accused-hacking-riot-games-servers\r\n\tFarCry 4 rumored - http://www.screwattack.com/news/rumor-far-cry-4-will-be-taking-place-himalayas-release-2015\r\n\tPS4 removes HDCP - http://www.screwattack.com/news/playstation-updates-are-bringing-bunch-new-features-ps4-users\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032114-league-of-legends-servers-hacked-ps4-removes-hdcp-and-farcry-4-rumored","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64282f35-b2df-44b0-8a76-6bd2099722bb/sm/video_thumbnail_12830984.jpg","duration":176,"publication_date":"2014-03-21T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032014-epic-and-crytek-go-subscription-new-asscreed-leaked-and-guitar-hero-dlc-discontinued","changefreq":"weekly","video":[{"title":"S1:E622 - Hard News 03/20/14 - EPIC and Crytek go subscription, new AssCreed leaked, and Guitar Hero DLC discontinued","description":"Today on Hard News, EPIC and Crytek go subscription, new Assassin's Creed leaked, and Guitar Hero DLC discontinued.\r\n\t\r\n\tGuitar Hero DLC discontinued - http://www.screwattack.com/news/activision-anounces-day-music-dies-will-be-march-31st\r\n\tEPIC and Crytek go subscription - http://www.screwattack.com/news/unreal-engine-4-and-cryengine-changing-subscription-based-services\r\n\tNew Assassin's Creed leaked - http://www.screwattack.com/news/rumor-two-assassins-creed-games-leaked-both-coming-fall\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-032014-epic-and-crytek-go-subscription-new-asscreed-leaked-and-guitar-hero-dlc-discontinued","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b652c82-62b0-4a37-83b1-867c06dae775/sm/video_thumbnail_12830860.jpg","duration":157,"publication_date":"2014-03-20T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-love-south-park","changefreq":"weekly","video":[{"title":"S1:E49 - 18 Reasons We LOVE South Park!","description":"This show is insane! Here's 18 reasons why we love it.","player_loc":"https://roosterteeth.com/embed/18-reasons-we-love-south-park","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/802c297c-1acd-4aa4-8458-163cfcf7a9d6/sm/video_thumbnail_12830854.jpg","duration":89,"publication_date":"2014-03-20T12:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-reasons-we-hate-south-park-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E15 - 13 Reasons We HATE South Park with Evil Craig","description":"Evil Craig is fed up with South Park's shit!","player_loc":"https://roosterteeth.com/embed/13-reasons-we-hate-south-park-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e80dba16-4165-4fe9-9b03-1b30cb072f9f/sm/video_thumbnail_12830855.jpg","duration":62,"publication_date":"2014-03-20T12:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031914-virtual-reality-the-future-of-gaming-and-the-worst-company-of-2014-voting-begins","changefreq":"weekly","video":[{"title":"S1:E621 - Hard News 03/19/14 - Virtual Reality: the future of gaming, and the Worst Company of 2014 voting begins","description":"Today on Hard News, Virtual Reality: the future of gaming, and the Worst Company of 2014 voting begins.\r\n\t\r\n\tThe Oculus Rift DK2 - http://www.screwattack.com/news/valve-helping-fan-built-co-op-version-half-life-come-steam\r\n\tSony reveals its VR system \"Project Morpheus\" - http://www.screwattack.com/news/oculus-vr-reveals-latest-development-kit-priced-350\r\n\tCan EA win Worst Company of 2014? - http://www.screwattack.com/news/consumerist-has-published-its-bracket-worst-company-america\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-031914-virtual-reality-the-future-of-gaming-and-the-worst-company-of-2014-voting-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/898cf273-c613-45af-8803-18f0c9c76071/sm/video_thumbnail_12830775.jpg","duration":183,"publication_date":"2014-03-19T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-capri-sun-challenge","changefreq":"weekly","video":[{"title":"S1:E715 - The Capri Sun Challenge","description":"S1:E715 - The Capri Sun Challenge","player_loc":"https://roosterteeth.com/embed/the-capri-sun-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99afcb62-74c6-44c5-88a4-49f486e34193/sm/video_thumbnail_12830747.jpg","duration":375,"publication_date":"2014-03-19T09:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030614-castlevania-producer-leaves-konami-xbox-one-fall-relaunch-walmart-game-trading","changefreq":"weekly","video":[{"title":"S1:E620 - Hard News 03/06/14 - Castlevania producer leaves Konami, Xbox One Fall relaunch, Walmart game trading","description":"Today on Hard News, Castlevania producer leaves Konami, Xbox One Fall relaunch, Walmart game trading.\r\n\t\r\n\tXbox One Fall relaunch - http://www.screwattack.com/news/xbox-one-launch-26-more-territories-september\r\n\tCastlevania producer leaves Konami - http://www.screwattack.com/news/castlevania-series-producer-koji-igarashi-leaves-konami\r\n\tWalmart game trading - http://www.screwattack.com/news/walmart-will-begin-accept-used-games-trade-next-week\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-030614-castlevania-producer-leaves-konami-xbox-one-fall-relaunch-walmart-game-trading","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab6ad419-7b70-4277-9316-454933d4a5a3/sm/video_thumbnail_12830701.jpg","duration":148,"publication_date":"2014-03-18T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/aero-the-acrobat-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E421 - Aero the Acrobat - Video Game Vault","description":"S1:E421 - Aero the Acrobat - Video Game Vault","player_loc":"https://roosterteeth.com/embed/aero-the-acrobat-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3473ab1-24d1-4476-8870-1f274dbba321/sm/video_thumbnail_12830683.jpg","duration":129,"publication_date":"2014-03-18T10:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031714-pokemon-enter-world-cup-new-street-fighter-character-wb-games-vault","changefreq":"weekly","video":[{"title":"S1:E619 - Hard News 03/17/14 - Pokemon enter World Cup, New Street Fighter character, WB Games Vault","description":"Today on Hard News, New Street Fighter character revealed, the WB Games Vault, and Japan's World Cup mascots.\r\n\t\r\n\tThe WB Games Vault reveals Gauntlet - http://www.screwattack.com/news/warner-bros-interactive-revisiting-classic-arcade-revival-gauntlet\r\n\tNew Street Fighter character revealed - http://www.screwattack.com/news/new-fifth-character-ultra-super-street-fighter-iv-fact-cammy-clone-named-decapre\r\n\tJapan's World Cup mascots - http://www.screwattack.com/news/japans-world-cup-2014-official-mascot-ispikachu\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-031714-pokemon-enter-world-cup-new-street-fighter-character-wb-games-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5cbde97-7065-4cd2-90cd-6382bd6b442c/sm/video_thumbnail_12830606.jpg","duration":185,"publication_date":"2014-03-17T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-mario-enemies","changefreq":"weekly","video":[{"title":"S1:E107 - Top 5 Mario Enemies!","description":"There are too many creatures in Mario's world to count, but that won't stop us from counting down the five best!","player_loc":"https://roosterteeth.com/embed/top-5-mario-enemies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0586d5ec-cf15-4c78-9b11-cdb3153dd3ea/sm/video_thumbnail_12830593.jpg","duration":288,"publication_date":"2014-03-17T10:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-of-the-best-mario-enemies","changefreq":"weekly","video":[{"title":"S1:E108 - Even MORE of the Best Mario Enemies","description":"The problem with Mario having so many enemies is that there's more than five good ones.  Here are the ones that just missed the list.","player_loc":"https://roosterteeth.com/embed/even-more-of-the-best-mario-enemies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cf8e734-22fe-42be-851f-1269f45ef8c8/sm/video_thumbnail_12830591.jpg","duration":130,"publication_date":"2014-03-17T10:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-tmnt-character-ever-feat-andre-the-black-nerd","changefreq":"weekly","video":[{"title":"S1:E44 - The Best TMNT Character EVER! feat. Andre the Black Nerd","description":"With so many Teenage Mutant Ninja Turtles characters in the comics, games, cartoons, and movies with so many characters, which one truly is the best EVER!?","player_loc":"https://roosterteeth.com/embed/the-best-tmnt-character-ever-feat-andre-the-black-nerd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d073ba-05a7-4205-9e5a-96c4abeaba22/sm/video_thumbnail_12830405.jpg","duration":388,"publication_date":"2014-03-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/seans-best-tmnt-character-ever","changefreq":"weekly","video":[{"title":"S1:E714 - Sean's Best TMNT Character EVER!","description":"S1:E714 - Sean's Best TMNT Character EVER!","player_loc":"https://roosterteeth.com/embed/seans-best-tmnt-character-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/027f9ee9-327c-4da0-a7d8-cf222802fa6c/sm/video_thumbnail_12830406.jpg","duration":112,"publication_date":"2014-03-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031414-amazon-controller-leaked-new-crazy-taxi-game-and-99-xbox-360-promo-canned","changefreq":"weekly","video":[{"title":"S1:E618 - Hard News 03/14/14 - Amazon controller leaked, new Crazy Taxi game, and $99 Xbox 360 promo canned","description":"Today on Hard News, Amazon controller leaked, new Crazy Taxi game, and $99 Xbox 360 promo canned.\r\n\t\r\n\tAmazon controller leaked - http://www.screwattack.com/news/rumor-amazons-unconfirmed-android-console-just-had-its-controller-leaked\r\n\tNew Crazy Taxi game - http://www.screwattack.com/news/sega-reveals-crazy-taxi-city-rush-free-play-title-mobile-devices\r\n\t$99 Xbox 360 promo canned - http://www.screwattack.com/news/microsoft-has-very-quietly-ended-99-xbox-360-promotion-around-united-states\r\nReview - Yoshi's New Island\r\n\thttp://www.screwattack.com/reviews/review-yoshis-new-island\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-031414-amazon-controller-leaked-new-crazy-taxi-game-and-99-xbox-360-promo-canned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0004454b-76f5-44db-a7cf-ff9adb0169fb/sm/video_thumbnail_12830384.jpg","duration":181,"publication_date":"2014-03-14T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031014-sonys-vr-headset-to-be-revealed-playstation-now-rentals-and-tales-from-the-borderlands","changefreq":"weekly","video":[{"title":"S1:E614 - Hard News 03/10/14 - Sony's VR Headset to be revealed, Playstation Now rentals, and Tales from the Borderlands","description":"Today on Hard News, Sony's VR Headset to be revealed this year at GDC, Playstation Now game rentals in the works, and Tales from the Borderlands.\r\n\t\r\n\tPlaystation Now rentals - http://www.screwattack.com/news/gaikai-new-internet-blockbuster\r\n\tSony's VR Headset to be revealed - http://www.screwattack.com/news/sony-about-get-ring-oculus-rift\r\n\tTales from the Borderlands - http://www.screwattack.com/news/tales-borderlands-details-revealed-sxsw\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-031014-sonys-vr-headset-to-be-revealed-playstation-now-rentals-and-tales-from-the-borderlands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07764434-7866-4275-b2e5-ad0db56bf585/sm/video_thumbnail_12830095.jpg","duration":130,"publication_date":"2014-03-10T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-castlevania-games","changefreq":"weekly","video":[{"title":"S1:E106 - Top 5 Castlevania Games!","description":"For more than 25 years, Konami has taken us on adventure after adventure to bring down Dracula and eat freshly-cooked meat out of walls.  Most of them are great games, but these five are a holy water’s toss above the rest!","player_loc":"https://roosterteeth.com/embed/top-5-castlevania-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ab695cd-20ca-4deb-a20e-cfe3a8b11454/sm/video_thumbnail_12830075.jpg","duration":300,"publication_date":"2014-03-10T11:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-of-the-best-castlevania-games","changefreq":"weekly","video":[{"title":"S1:E105 - Even MORE of the Best Castlevania Games!","description":"In its storied history, there are more Castlevania games that deserve some recognition.","player_loc":"https://roosterteeth.com/embed/even-more-of-the-best-castlevania-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/621edbce-b8c6-40ae-90da-ae964f8b5846/sm/video_thumbnail_12830074.jpg","duration":180,"publication_date":"2014-03-10T11:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-super-smash-bros-character-featuring-andre-the-black-nerd","changefreq":"weekly","video":[{"title":"S1:E43 - The Worst EVER! - Super Smash Bros Character featuring Andre the Black Nerd","description":"With so many characters in the Smash Bros. games, which one is the WORST?!?","player_loc":"https://roosterteeth.com/embed/the-worst-ever-super-smash-bros-character-featuring-andre-the-black-nerd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15ee07fc-ba76-4091-a310-c7727ac7518b/sm/video_thumbnail_12829912.png","duration":320,"publication_date":"2014-03-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nicks-worst-ever-smash-bros-character","changefreq":"weekly","video":[{"title":"S1:E713 - Nick's Worst EVER Smash Bros. Character","description":"Nick's totally not salty when it comes to his worst EVER Smash Bros. character. He's just preaching the truth.","player_loc":"https://roosterteeth.com/embed/nicks-worst-ever-smash-bros-character","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87e285e7-dac3-472b-be2b-346e8e755fc4/sm/video_thumbnail_12829913.png","duration":109,"publication_date":"2014-03-08T10:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030714-the-last-of-us-gets-a-movie-sony-ceo-steps-down-and-wii-u-gets-watch-dogs","changefreq":"weekly","video":[{"title":"S1:E613 - Hard News 03/07/14 - The Last of Us gets a movie, Sony CEO steps down, and Wii U gets Watch Dogs","description":"Today on Hard News, The Last of Us gets a movie, Sony CEO Jack Tretton steps down, and Wii U gets Watch Dogs.\r\n\t\r\n\tSony CEO Jack Tretton steps down - http://www.screwattack.com/news/playstation-ceo-jack-tretton-stepping-down-after-19-years\r\n\tThe Last of Us gets a movie - http://www.screwattack.com/news/movie-us\r\n\tWii U gets Watch Dogs - http://www.screwattack.com/video/WatchDogs-has-an-official-release-date-from-Ubisoft-after-the-story-trailer-leaks-12829803\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-030714-the-last-of-us-gets-a-movie-sony-ceo-steps-down-and-wii-u-gets-watch-dogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a991cb8-4284-48f8-a599-63be2e7bc4e0/sm/video_thumbnail_12829873.jpg","duration":148,"publication_date":"2014-03-07T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030614-shaq-fu-is-back-xbox-live-expanding-to-mobile-and-gamestops-ps4-camera-debacle","changefreq":"weekly","video":[{"title":"S1:E612 - Hard News 03/06/14 - Shaq Fu is back, Xbox Live expanding to mobile, and Gamestop's PS4 camera debacle","description":"Today on Hard News, Shaq Fu is back, Xbox Live expanding to mobile, and Gamestop's PS4 camera debacle.\r\n\t\r\n\tXbox Live expanding to mobile - http://www.screwattack.com/news/rumor-microsoft-may-be-bringing-xbox-live-ios-and-android-devices\r\n\tGamestop's PS4 camera debaucle - http://www.screwattack.com/news/rumor-gamestop-taking-advantage-ps4-camera-scarcity-price-increase\r\n\tShaq Fu is back! - http://www.screwattack.com/news/shaq-returns-gaming-announcement-shaq-fu-legend-reborn\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-030614-shaq-fu-is-back-xbox-live-expanding-to-mobile-and-gamestops-ps4-camera-debacle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d5c0e14-aabc-4c46-ba51-eea09cebb0cb/sm/video_thumbnail_12829816.jpg","duration":180,"publication_date":"2014-03-06T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-final-fantasy-xiii","changefreq":"weekly","video":[{"title":"S1:E50 - 16 Reasons We LOVE Final Fantasy XIII","description":"From chocobos to scissoring-sister-cycles, here are the 16 reasons we LOVE the Final Fantasy XIII series!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-final-fantasy-xiii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/897cd6dd-e271-417b-9837-a22ed5a71f2d/sm/video_thumbnail_12829801.jpg","duration":73,"publication_date":"2014-03-06T12:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/20-reasons-we-hate-final-fantasy-xiii-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E13 - 20 Reasons We HATE Final Fantasy XIII with Evil Craig","description":"What the HELL is happening in this game!?","player_loc":"https://roosterteeth.com/embed/20-reasons-we-hate-final-fantasy-xiii-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb8a0a23-fa73-442b-8aa4-12fda00d668d/sm/video_thumbnail_12829800.jpg","duration":96,"publication_date":"2014-03-06T11:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030514-awesome-new-batman-game-south-park-germany-delay-and-uncharted-creative-director-leaves","changefreq":"weekly","video":[{"title":"S1:E611 - Hard News 03/05/14 - Awesome new Batman game, South Park Germany delay, and Uncharted creative director leaves","description":"Today on Hard News, awesome new Batman Arkham game announced for this year, South Park Stick of Truth delayed in Germany, and Uncharted creative director leaves Naughty Dog.\r\n\t\r\n\tBatman: Arkham Knight - http://www.screwattack.com/video/Debut-Trailer-Rocksteady-reclaims-the-cowl-with-Batman-Arkham-Knight-12829645\r\n\tAmy Hennig leaves Naughty Dog - http://www.screwattack.com/news/amy-hennig-creative-director-and-writer-uncharted-has-left-naughty-dog\r\n\tStick of Truth delayed in Germany - http://www.screwattack.com/news/south-park-stick-truth-delayed-germany-and-austria-due-swastika-symbol\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-030514-awesome-new-batman-game-south-park-germany-delay-and-uncharted-creative-director-leaves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c3277fa-9e4e-4070-aae7-ad04d3b68198/sm/video_thumbnail_12829742.jpg","duration":174,"publication_date":"2014-03-05T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-manliest-candy","changefreq":"weekly","video":[{"title":"S1:E712 - The Manliest Candy","description":"S1:E712 - The Manliest Candy","player_loc":"https://roosterteeth.com/embed/the-manliest-candy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4397d974-5f4a-4438-8b46-0a619d4ac2dd/sm/video_thumbnail_12829714.jpg","duration":407,"publication_date":"2014-03-05T10:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sky-kid-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E419 - Sky Kid - Video Game Vault","description":"S1:E419 - Sky Kid - Video Game Vault","player_loc":"https://roosterteeth.com/embed/sky-kid-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1ad0afa-241a-4c07-8936-1c5130d7a86b/sm/video_thumbnail_12829647.jpg","duration":146,"publication_date":"2014-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030414-goat-simulator-jerry-seinfeld-simulator-and-new-yoshi-3ds","changefreq":"weekly","video":[{"title":"S1:E610 - Hard News 03/04/14 - Goat Simulator, Jerry Seinfeld simulator, and new Yoshi 3DS","description":"Today on Hard News, how you too can be either a goat or Jerry Seinfeld, or buy the new Yoshi themed 3DS.\r\n\t\r\n\tGoat Simulator - http://www.screwattack.com/video/Goat-Simulator-AKA-2014-GOTY-12829669\r\n\tYoshi themed 3DS - http://www.screwattack.com/news/yoshi-3ds-xl-yoshi-game-sold-separately\r\n\tJerry's Place Mod - http://www.screwattack.com/news/whats-deal-oculus-rift\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-030414-goat-simulator-jerry-seinfeld-simulator-and-new-yoshi-3ds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0b592cd-e2aa-4f3a-bb54-21593e8775f8/sm/video_thumbnail_12829670.jpg","duration":128,"publication_date":"2014-03-04T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030314-my-little-pony-fighting-game-fez-comes-to-ps4-3d-realms-acquired-despite-lawsuit","changefreq":"weekly","video":[{"title":"S1:E609 - Hard News 03/03/14 - My Little Pony fighting game, FEZ comes to PS4, 3D Realms acquired despite lawsuit","description":"Click here to watch Top 5 Free-To-Play Games!\r\n\thttp://www.screwattack.com/shows/originals/screwattack-top-10s/top-5-free-play-games\r\nToday on Hard News, My Little Pony fighting game, FEZ comes to PS4, 3D Realms acquired despite lawsuit.\r\n\t\r\n\tFEZ comes to PS4 - http://www.screwattack.com/news/fez-finally-coming-playstation-consoles\r\n\t3D Realms acquired despite lawsuit - http://www.screwattack.com/news/interceptor-investors-purchase-3d-realms\r\n\tMy Little Pony fighting game - http://www.screwattack.com/news/fans-finish-my-little-pony-fighting-magic\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-030314-my-little-pony-fighting-game-fez-comes-to-ps4-3d-realms-acquired-despite-lawsuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66e5d4ee-e043-4227-9310-094ffa89c030/sm/video_thumbnail_12829575.jpg","duration":158,"publication_date":"2014-03-03T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-free-to-play-games","changefreq":"weekly","video":[{"title":"S1:E104 - Top 5 Free-To-Play Games!","description":"A controversial trend in the gaming industry, free-to-play has taken the market by storm.  Not all may appreciate that, but even they couldn't deny that these five are awesome games!","player_loc":"https://roosterteeth.com/embed/top-5-free-to-play-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44244673-f963-4d6a-a4d1-b6ec1e978b1d/sm/video_thumbnail_12829553.jpg","duration":344,"publication_date":"2014-03-03T08:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-kirby-power-ups","changefreq":"weekly","video":[{"title":"S1:E42 - The Best EVER! - Kirby Power-Ups","description":"For all the things Kirby has ever been able to turn into, these are the pink puff's best power-ups EVER!","player_loc":"https://roosterteeth.com/embed/the-best-ever-kirby-power-ups","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaaca1e0-9b51-4aed-a981-dbd77f220645/sm/video_thumbnail_12829367.jpg","duration":269,"publication_date":"2014-03-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-6","changefreq":"weekly","video":[{"title":"S2:E6 - Terminator VS RoboCop","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed669ec-62a7-4e0c-961c-1044728387fd/sm/video_thumbnail_12829175_0.jpg","duration":1182,"publication_date":"2014-03-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022814-the-wbs-minecraft-movie-challenge-your-friends-in-dead-nation-and-carmageddon-release-date","changefreq":"weekly","video":[{"title":"S1:E608 - Hard News 02/28/14 - The WB's Minecraft movie, challenge your friends in Dead Nation, and Carmageddon release date","description":"DEATH BATTLE! - Terminator VS RoboCop - NOW ON SCREWATTACK\r\n\tHere it is! - http://www.screwattack.com/shows/originals/death-battle\r\nToday on Hard News, The WB's Minecraft movie, challenge your friends in Dead Nation, and Carmageddon release date.\r\n\t\r\n\tChallenge your friends in Dead Nation - http://www.screwattack.com/news/stream-viewers-can-make-apocalypse-much-harder\r\n\tCarmageddon release date - http://www.screwattack.com/news/after-17-years-carmageddon-almost-back\r\n\tThe WB's Minecraft movie - http://www.screwattack.com/news/moviecraft-minecraft-movie\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-022814-the-wbs-minecraft-movie-challenge-your-friends-in-dead-nation-and-carmageddon-release-date","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f1f1486-8705-4dda-9106-1fb44bd8fc9b/sm/video_thumbnail_12829319.jpg","duration":173,"publication_date":"2014-02-28T14:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-the-\"antonia-bottino\"-trial","changefreq":"weekly","video":[{"title":"S1:E711 - Hard News - The \"Antonia Bottino\" Trial","description":"Antonia Bottino! Antoni-AH BO-TEE-NO!\r\n \r\n\r\n\tThis video is a bonus for Advantage Members. It's a great way to support the site and keep us growing like a big boy.","player_loc":"https://roosterteeth.com/embed/hard-news-the-\"antonia-bottino\"-trial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ad924d4-35c6-48d8-bd56-ce2ac5cc3f3d/sm/video_thumbnail_12829172.png","duration":202,"publication_date":"2014-02-27T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022714-mob-wife-sues-rockstar-tony-hawks-mobile-game-ds-and-wii-internet-shut-down","changefreq":"weekly","video":[{"title":"S1:E607 - Hard News 02/27/14 - Mob wife sues Rockstar, Tony Hawk's mobile game, DS and Wii internet shut down","description":"Today on Hard News, Mob wife sues Rockstar over character likeness and life story, Tony Hawk reveals his new game will be exclusive to mobile devices, and Nintendo will be shutting down the internet for DS/DSi and Wii devices.\r\n\t\r\n\tDS and Wii internet shut down - http://www.screwattack.com/news/nintendo-pulling-plug-dsdsi-and-wii-wi-fi\r\n\tTony Hawk's mobile game - http://www.screwattack.com/news/tony-hawks-next-game-will-ollie-about-exclusively-mobile-platforms\r\n\tMob wife sues Rockstar - http://www.screwattack.com/news/rock-star-games-being-sued-5th-time\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-022714-mob-wife-sues-rockstar-tony-hawks-mobile-game-ds-and-wii-internet-shut-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb45bf4e-913b-43ee-8c2e-4460a028e9fe/sm/video_thumbnail_12829171.jpg","duration":182,"publication_date":"2014-02-27T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022514-gamestop-titanfall-bundle-xbox-one-streaming-deus-ex-the-fall-coming-to-pc","changefreq":"weekly","video":[{"title":"S1:E606 - Hard News 02/25/14 - Gamestop Titanfall bundle, Xbox One streaming, Deus Ex: The Fall coming to PC","description":"Today on Hard News, Titanfall and Xbox One bundle, Xbox One streaming, and Deus Ex: The Fall coming to PC.\r\n\t\r\n\tDeus Ex: The Fall coming to PC - http://www.screwattack.com/news/squares-mobile-title-deus-ex-fall-will-soon-be-statonariy-steam\r\n\tTitanfall and Xbox One bundle - http://www.screwattack.com/news/uk-gamestop-convicted-slashing\r\n\tXbox One streaming - http://www.screwattack.com/news/hey-xbox-one-users-stop-twitching-twitch-here\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-022514-gamestop-titanfall-bundle-xbox-one-streaming-deus-ex-the-fall-coming-to-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63d786f5-9349-4981-8bd6-6055ded69df5/sm/video_thumbnail_12829045.jpg","duration":188,"publication_date":"2014-02-25T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022414-gearbox-sues-over-duke-nukem-pokemon-free-at-toys-r-us-new-mortal-kombat","changefreq":"weekly","video":[{"title":"S1:E605 - Hard News 02/24/14 - Gearbox sues over Duke Nukem, Pokemon free at Toys R Us, new Mortal Kombat?","description":"Today on Hard News, Gearbox sues over Duke Nukem license, Toys R Us rumor of free Pokemon, is there a new Mortal Kombat?\r\n\t\r\n\tKiefer Sutherland talks games - http://www.screwattack.com/news/kiefer-sutherland-claims-be-part-new-mortal-kombat-game\r\n\tLeaked Toys R Us Pokemon 3DS promo - http://www.screwattack.com/news/rumor-toys-r-us-give-pokemon-xy-anyone-who-buys-2ds3ds-xl-plus-game\r\n\tGearbox sues over Duke Nukem license - http://www.screwattack.com/news/gearbox-sues-3d-realms-and-interceptor-over-unauthorized-duke-nukem-game\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-022414-gearbox-sues-over-duke-nukem-pokemon-free-at-toys-r-us-new-mortal-kombat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afc613db-07b8-4f9b-9836-ae286766e0b9/sm/video_thumbnail_12828941.jpg","duration":198,"publication_date":"2014-02-24T13:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hey-screwattack-community-heres-whats-up-next-week","changefreq":"weekly","video":[{"title":"S1:E710 - Hey ScrewAttack Community! Here's What's Up Next Week!","description":"Next week (February 22nd through 28th) is going to be a little different for us. Don't freak out, it'll all return to normal soon.\r\n\t\r\n\tWe'll still be delivering Hard News as well as Screwin' Around AND Out of the Box. Regularly scheduled programming returns Friday, February 28th!","player_loc":"https://roosterteeth.com/embed/hey-screwattack-community-heres-whats-up-next-week","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e162305-4e23-4e80-8653-d54f6f7cacb9/sm/video_thumbnail_12828854.jpg","duration":87,"publication_date":"2014-02-22T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022114-street-fighter-money-matches-gba-virtual-console-games-and-new-tony-hawk-game-in-development","changefreq":"weekly","video":[{"title":"S1:E604 - Hard News 02/21/14 - Street Fighter money matches, GBA Virtual Console games, and new Tony Hawk game in development","description":"Today on Hard News, Street Fighter money matches, GBA Virtual Console games, and new Tony Hawk game in development.\r\n\t\r\n\tGBA Virtual Console games - http://www.screwattack.com/news/two-classic-namco-developed-gba-titles-have-been-rated-australian-classification-board\r\n\tNew Tony Hawk game in development - http://www.screwattack.com/news/tony-hawk-suggests-new-pro-skater-game-way-activision-confirms\r\n\tStreet Fighter money matches - http://www.screwattack.com/news/time-bet-your-fists-because-virgin-gaming-now-supports-ssfivae-money-matches\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-022114-street-fighter-money-matches-gba-virtual-console-games-and-new-tony-hawk-game-in-development","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5bf6ee3-cbb5-456d-b06c-4fab97848e88/sm/video_thumbnail_12828782.jpg","duration":192,"publication_date":"2014-02-21T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/16-reasons-we-love-chun-li","changefreq":"weekly","video":[{"title":"S1:E51 - 16 Reasons We LOVE Chun Li","description":"From wall bouncing to crazy kicks, here's the 16 reasons we LOVE Chun Li!","player_loc":"https://roosterteeth.com/embed/16-reasons-we-love-chun-li","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b0f94cf-aa24-451f-bfb2-531d9fc45918/sm/video_thumbnail_12828707.jpg","duration":65,"publication_date":"2014-02-20T06:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-chun-li-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E12 - 15 Reasons We HATE Chun Li with Evil Craig","description":"Evil Craig can't stand Chun Li's stupid outfits and stupid movies! Here's the 15 reasons he HATES Chun Li and her freakish legs!","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-chun-li-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eeef31bd-9cf8-4b5c-9f37-295ef4d77757/sm/video_thumbnail_12828706.jpg","duration":65,"publication_date":"2014-02-20T06:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021914-irrational-games-shuts-down-wolfenstein-comes-with-doom-beta-year-of-luigi","changefreq":"weekly","video":[{"title":"S1:E603 - Hard News 02/19/14 - Irrational Games shuts down, Wolfenstein comes with Doom Beta, Year of Luigi","description":"Today on Hard News, Irrational Games shutting down, Wolfenstein to come with Doom Beta, and the Year of Luigi has yet to end.\r\n\t\r\n\tWolfenstein to come with Doom Beta - http://www.screwattack.com/news/wolfenstein-new-order-given-official-release-date-and-doom-beta\r\n\tThe Year of Luigi isn't over - http://www.screwattack.com/news/year-luigi-officially-coming-end-march\r\n\tIrrational Games shutting down - http://www.screwattack.com/news/irrational-games-closing-shop-and-ken-levine-opening-new-studio\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021914-irrational-games-shuts-down-wolfenstein-comes-with-doom-beta-year-of-luigi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de9d4f50-a9e2-4035-b884-28cc141526c2/sm/video_thumbnail_12828661.jpg","duration":192,"publication_date":"2014-02-19T14:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-fable-anniversary","changefreq":"weekly","video":[{"title":"S1:E41 - Out of the Box - Fable Anniversary","description":"This time on Out of the Box, we're going back to Albion for Fable Anniversary! Does this game make revisiting an Xbox classic worth it? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-fable-anniversary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b9e0e3b-1062-4fef-9076-e122fbc7b6b1/sm/video_thumbnail_12828636.png","duration":3368,"publication_date":"2014-02-19T08:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021814-new-details-on-the-order-twitch-plays-pokemon-and-the-music-driven-fps-chroma","changefreq":"weekly","video":[{"title":"S1:E602 - Hard News 02/18/14 - New details on The Order, Twitch plays Pokemon, and the music driven FPS Chroma","description":"Today on Hard News, New details on The Order, Twitch plays Pokemon, and the music driven FPS Chroma.\r\n\t\r\n\tNew details on The Order - http://www.screwattack.com/news/order-1886-releases-new-story-drive-trailer-and-gameplay-commentary\r\n\tThe music driven FPS Chroma - http://www.screwattack.com/video/Harmonix-new-game-Chroma-is-taking-aim-at-the-firstperson-shooter-genre-12828538\r\n\tTwitch plays Pokemon - http://www.screwattack.com/news/twitch-plays-pokemon-and-means-75000-people-are-playing-same-time\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021814-new-details-on-the-order-twitch-plays-pokemon-and-the-music-driven-fps-chroma","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99edb6ad-0a2a-4fc3-92b7-963b270982e7/sm/video_thumbnail_12828593.jpg","duration":191,"publication_date":"2014-02-18T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ice-hockey-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E418 - Ice Hockey - Video Game Vault ","description":"S1:E418 - Ice Hockey - Video Game Vault ","player_loc":"https://roosterteeth.com/embed/ice-hockey-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1d81e88-c3f5-4917-a88a-43f2b09fb1b8/sm/video_thumbnail_12828579.jpg","duration":152,"publication_date":"2014-02-18T11:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021714-titanfall-beta-open-ground-zeroes-better-on-ps4-transformers-game-announced","changefreq":"weekly","video":[{"title":"S1:E601 - Hard News 02/17/14 - Titanfall beta open, Ground Zeroes better on PS4, Transformers game announced","description":"Today on Hard News, the Titanfall beta is now open to everyone, Ground Zeroes has a higher resolution on PS4 than Xbox One, the leaked Transformers: Rise of the Dark Spark has been officially announced, and Kickstarter has been hacked.\r\n\t\r\n\tTransformers game officially announced - http://www.screwattack.com/news/update-transformers-rise-dark-spark-officially-announced-nyc-toy-fair\r\n\tTitanfall beta open to all - http://www.screwattack.com/news/rumor-titanfall-beta-pc-code-reveals-number-interesting-facts-about-respawns-first-ip\r\n\tGound Zeroes better on PS4 - http://www.screwattack.com/news/playstation-4-version-may-be-superior-version-metal-gear-solid-v-ground-zeroes\r\n\tKickstarter has been hacked - http://www.screwattack.com/news/kickstarted-was-hacked-earlier-week-so-if-you-have-account-change-your-password\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021714-titanfall-beta-open-ground-zeroes-better-on-ps4-transformers-game-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c140a0ee-c407-4c42-abd3-e38ddec38a62/sm/video_thumbnail_12828541.jpg","duration":190,"publication_date":"2014-02-17T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-top-moments-from-the-elder-scrolls-series","changefreq":"weekly","video":[{"title":"S1:E103 - Even MORE Top Moments From The Elder Scrolls Series!","description":"Of COURSE these games have given us more than just five memorable moments!  These are the best of the rest!","player_loc":"https://roosterteeth.com/embed/even-more-top-moments-from-the-elder-scrolls-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3159d41-a500-4189-bcc3-914fb96202fc/sm/video_thumbnail_12828519.jpg","duration":249,"publication_date":"2014-02-17T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-moments-from-the-elder-scrolls-series","changefreq":"weekly","video":[{"title":"S1:E102 - Top 5 Moments From The Elder Scrolls Series!","description":"A long-running fantasy series like The Elder Scrolls can't get to five entries and an MMO without bringing the world some memorable moments.  These are the five BEST in the whole series!","player_loc":"https://roosterteeth.com/embed/top-5-moments-from-the-elder-scrolls-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd59694f-2e93-4091-9538-f1297d96b38a/sm/video_thumbnail_12828520.jpg","duration":247,"publication_date":"2014-02-17T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021414-nintendo-direct-recap-and-new-transformers-game-leaked","changefreq":"weekly","video":[{"title":"S1:E600 - Hard News 02/14/14 - Nintendo Direct recap and new Transformers game leaked","description":"Today on Hard News, Nintendo Direct recap and new Transformers game leaked.\r\n\t\r\n\tRed Faction correction - http://www.screwattack.com/news/update-darksiders-and-red-faction-franchises-getting-complete-collections-multiple-platforms\r\n\tTransformers game leaked - http://www.screwattack.com/news/rumor-new-transformers-game-called-rise-dark-spark-has-leaked-amazon-uk\r\n\tNintendo Direct recap - http://www.screwattack.com/news/get-recap-all-your-nintendo-direct-news-one-place\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021414-nintendo-direct-recap-and-new-transformers-game-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a74e2f5-9467-4b76-b985-87d5f5a429cc/sm/video_thumbnail_12828345.jpg","duration":241,"publication_date":"2014-02-14T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021414-angry-birds-spin-off-playstation-plus-subscription-exploit-and-darksiders","changefreq":"weekly","video":[{"title":"S1:E599 - Hard News 02/14/14 - Angry Birds spin-off, Playstation Plus subscription exploit, and Darksiders","description":"Today on Hard News, Angry Birds spin-off to revolve around the pink bird Stella, an anonymous user exploits a glitch in the Playstation Plus subscription, and Nordic Games to release a Darksiders collection.\r\n\t\r\n\tDarksiders collection - http://www.screwattack.com/news/darksiders-and-red-faction-franchises-getting-complete-collections-multiple-platforms\r\n\tAngry Birds spin-off - http://www.screwattack.com/news/rovio-entertainment-has-another-spin-store-angry-birds-franchise\r\n\tPlaystation Plus exploited - http://www.screwattack.com/news/playstation-plus-exploit-discovered-lets-user-get-free-access-service-until-2035\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021414-angry-birds-spin-off-playstation-plus-subscription-exploit-and-darksiders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/933ba383-3ed8-46c3-8973-d91d7870c7ba/sm/video_thumbnail_12828218.jpg","duration":203,"publication_date":"2014-02-13T14:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021214-xbox-one-headset-adapter-problems-fable-legends-radiohead-mobile-game","changefreq":"weekly","video":[{"title":"S1:E598 - Hard News 02/12/14 - Xbox One headset adapter problems, Fable Legends, Radiohead mobile game","description":"Today on Hard News, the new Xbox One headset adapter won't solve all your problems, Fable Legends may be the last in the franchise, and Radiohead releases an experimental mobile game.\r\n\t\r\n\tRadiohead's experimental mobile game - http://www.screwattack.com/news/alt-rock-legends-radiohead-have-published-experimental-mobile-game-ios-and-android\r\n\tFable Legends may be the last of the franchise - http://www.screwattack.com/news/fable-legends-becoming-service-and-may-eliminate-need-more-fable-games\r\n\tThe Xbox One headset adapter won't solve all your problems - http://www.screwattack.com/news/xbox-one-headset-adapter-has-some-really-lame-rules-about-how-it-can-be-used\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021214-xbox-one-headset-adapter-problems-fable-legends-radiohead-mobile-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd6b8360-0913-408e-bee3-fae9c537617d/sm/video_thumbnail_12828128.jpg","duration":219,"publication_date":"2014-02-12T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021114-watch-dogs-delayed-for-wii-u-xbox-one-headset-and-ps-vita-slim-bundle","changefreq":"weekly","video":[{"title":"S1:E597 - Hard News 02/11/14 - Watch Dogs delayed for Wii U, Xbox One headset, and PS Vita Slim bundle","description":"Today on Hard News, Ubisoft announces release date for Watch Dogs but the Wii U can't catch a break, Microsoft Xbox One stereo headset and adapter coming in March, and Sony's PS Vita Slim bundle will be coming to North America in Spring.\r\n\t\r\n\tXbox One headset - http://www.screwattack.com/news/official-xbox-one-stereo-headset-and-headset-adapter-should-be-coming-early-march\r\n\tPS Vita Slim bundle - http://www.screwattack.com/video/PlayStation-Vita-Slim-is-revealed-for-North-American-release-and-comes-bundled-with-Borderlands-2-12827983\r\n\tWatch Dogs delayed for Wii U - http://www.screwattack.com/news/watch-dogs-gets-release-window-ubisoft-and-wii-u-version-cant-catch-break\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021114-watch-dogs-delayed-for-wii-u-xbox-one-headset-and-ps-vita-slim-bundle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feae3a88-3e91-4255-8af1-05732233fbbd/sm/video_thumbnail_12828001.jpg","duration":223,"publication_date":"2014-02-11T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/grand-theft-auto-2-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E417 - Grand Theft Auto 2 - Video Game Vault","description":"S1:E417 - Grand Theft Auto 2 - Video Game Vault","player_loc":"https://roosterteeth.com/embed/grand-theft-auto-2-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b4cb4a5-190d-48c9-9e36-b319cb3d64f9/sm/video_thumbnail_12827988.jpg","duration":152,"publication_date":"2014-02-11T09:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021014-flappy-bird-pulled-down-minecraft-fan-film-pulled-downn-and-batman-glitches","changefreq":"weekly","video":[{"title":"S1:E596 - Hard News 02/10/14 - Flappy Bird pulled down, Minecraft fan film pulled downn, and Batman glitches","description":"Today on Hard News, Dong Nguyen caves under the pressure and pulls down Flappy Bird, Brandon Laatsch's Minecraft fan film hallted by Notch, and Batman: Arkham Origins experiencing glitches.\r\n\t\r\n\tMinecraft fan film pulled down - http://www.screwattack.com/news/notch-and-mojang-shut-down-big-budget-minecraft-fan-film\r\n\tBatman: Arkham Origins experiencing glitches - http://www.screwattack.com/news/game-breaking-bugs-remain-arkham-origins-may-never-be-fixed-because-dlc-takes-priority\r\n\tFlappy Bird pulled down - http://www.screwattack.com/news/time-tomorrow-flappy-bird-will-be-no-more\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-021014-flappy-bird-pulled-down-minecraft-fan-film-pulled-downn-and-batman-glitches","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddbd3b04-0a57-4ed7-bf35-dc6ee44eff4e/sm/video_thumbnail_12827934.jpg","duration":242,"publication_date":"2014-02-10T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-worst-microsoft-studios-decisions","changefreq":"weekly","video":[{"title":"S1:E101 - Even MORE Worst Microsoft Studios Decisions!","description":"There are just too many crappy things the Big M has done to just narrow them all down to five.  We've got seven more!","player_loc":"https://roosterteeth.com/embed/even-more-worst-microsoft-studios-decisions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48660051-3d28-461b-922e-958fd5ea1e6c/sm/video_thumbnail_12827908.jpg","duration":196,"publication_date":"2014-02-10T10:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-worst-microsoft-studios-decisions","changefreq":"weekly","video":[{"title":"S1:E100 - Top 5 Worst Microsoft Studios Decisions!","description":"For all the good they've done, Microsoft is sure doing their part to stink up the gaming industry.  These are the five WORST decisions they've made!","player_loc":"https://roosterteeth.com/embed/top-5-worst-microsoft-studios-decisions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea20cff1-2169-4f71-b425-70e6d6c5b60d/sm/video_thumbnail_12827907.jpg","duration":272,"publication_date":"2014-02-10T10:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/classic-sunday-unaware-steves-quakecon-debut","changefreq":"weekly","video":[{"title":"S1:E709 - Classic Sunday - Unaware Steve's Quakecon Debut","description":"Unaware Steve discovers the dark secret behind Quakecon.  Run Steve!","player_loc":"https://roosterteeth.com/embed/classic-sunday-unaware-steves-quakecon-debut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f17e3f0e-40ff-4af1-9001-131f58b783e3/sm/video_thumbnail_12827808.jpg","duration":127,"publication_date":"2014-02-08T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craigs-worst-ever-reimagining-uncut","changefreq":"weekly","video":[{"title":"S1:E708 - Craig's Worst EVER Reimagining UNCUT","description":"See what Craig really had to say about TMNT: Turtles in Time Reshelled!\r\n\r\n\tThis video is a bonus for Advantage Members. It's a great way to support the site and keep us growing like a big boy. ","player_loc":"https://roosterteeth.com/embed/craigs-worst-ever-reimagining-uncut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00e027e4-52e3-4bfe-be9a-a8431bc684e8/sm/video_thumbnail_12827729.jpg","duration":651,"publication_date":"2014-02-07T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-reimaginings","changefreq":"weekly","video":[{"title":"S1:E41 - The Worst EVER! - Reimaginings","description":"These are the times when a videogame company went back to the drawing board, and came back with something far worse. These are the worst videogame reimaginings EVER!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-reimaginings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c67b08ea-7920-4a49-8d0b-23695ba746ad/sm/video_thumbnail_12827728.jpg","duration":385,"publication_date":"2014-02-07T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-yoshis-island-player-alive","changefreq":"weekly","video":[{"title":"S1:E707 - The Best Yoshi's Island Player Alive","description":"Check out Trihex's channel - www.twitch.tv/trihex?","player_loc":"https://roosterteeth.com/embed/the-best-yoshis-island-player-alive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db1f77f5-1a37-4666-bcaf-fc46657bee3a/sm/video_thumbnail_12827682.jpg","duration":137,"publication_date":"2014-02-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/26-reasons-we-hate-dragon-ball-z-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E11 - 26 Reasons We HATE Dragon Ball Z with Evil Craig","description":"This time on Evil Craig, watch his rage flow as he tells the internet why DBZ can suck his dragon balls!","player_loc":"https://roosterteeth.com/embed/26-reasons-we-hate-dragon-ball-z-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d40d19d-0633-4de3-b079-db2038200628/sm/video_thumbnail_12827693.jpg","duration":125,"publication_date":"2014-02-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020714-a-new-sonic-tv-series-flappy-bird-and-call-of-duty-changes-its-formula","changefreq":"weekly","video":[{"title":"S1:E595 - Hard News 02/07/14 - A new Sonic TV series, Flappy Bird, and Call of Duty changes its formula","description":"Today on Hard News, Sonic returns to TV in the new series Sonic Boom, the controversy of Flappy Bird, and Call of Duty changes its formula.\r\n\t\r\n\tCall of Duty changes its formula - http://www.screwattack.com/news/valve-helping-fan-built-co-op-version-half-life-come-steam\r\n\tA new Sonic TV series - http://www.screwattack.com/news/sony-invites-you-bid-greatness-using-gold-trophies-and-win-cool-stuff\r\n\tThe controversy of Flappy Bird - http://www.screwattack.com/news/nintendo-trademark-looking-revive-niche-classic\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-020714-a-new-sonic-tv-series-flappy-bird-and-call-of-duty-changes-its-formula","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9f32358-ec85-4114-bf37-62444880f45f/sm/video_thumbnail_12827694.jpg","duration":221,"publication_date":"2014-02-07T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020614-pokemon-bank-amazon-acquires-double-helix-tell-tales-xbox-live-error","changefreq":"weekly","video":[{"title":"S1:E594 - Hard News 02/06/14 - Pokemon Bank, Amazon acquires Double Helix, Tell Tale's Xbox Live error","description":"Today on Hard News, Pokemon Bank is now live in the US and UK, Amazon acquires Double Helix and many speculate on the future of Killer Instinct, and Tell Tale is experiencing some errors with Season Passes on Xbox Live.\r\n\t\r\n\tTell Tale's Xbox Live error - http://www.screwattack.com/news/xbox-360-season-pass-holders-wolf-among-us-are-experiencing-issues-latest-episode\r\n\tPokemon Bank is live - http://www.screwattack.com/news/pokemon-bank-open-business-europe-and-north-america\r\n\tAmazon acquires Double Helix - http://www.screwattack.com/news/amazon-games-acquires-killer-instinct-developer-double-helix-games-out-blue\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-020614-pokemon-bank-amazon-acquires-double-helix-tell-tales-xbox-live-error","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2732ce0c-9ccc-4cc0-8688-0fe02178e966/sm/video_thumbnail_12827631.jpg","duration":202,"publication_date":"2014-02-06T13:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/28-reasons-we-love-dragon-ball-z","changefreq":"weekly","video":[{"title":"S1:E52 - 28 Reasons We LOVE Dragon Ball Z!","description":"From the crazy antics to the epic battles, here's the 28 reasons we LOVE Dragon Ball Z!","player_loc":"https://roosterteeth.com/embed/28-reasons-we-love-dragon-ball-z","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/828627fb-4a97-4a33-951d-990300e595e0/sm/video_thumbnail_12827606.jpg","duration":106,"publication_date":"2014-02-06T11:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020514-resident-evil-composer-is-a-fraud-ground-zeroes-price-and-steam-music","changefreq":"weekly","video":[{"title":"S1:E593 - Hard News 02/05/14 - Resident Evil composer is a fraud, Ground Zeroes price, and Steam Music","description":"Today on Hard News, composer Samuragochi admits to being a fraud, Ground Zeroes is a two hour game that costs $30, and Steam Music is now open to beta testers.\r\n\t\r\n\tSteam Music is now open to beta testers - http://www.screwattack.com/news/steam-music-beta-now-live-steamos-and-big-picture-mode\r\n\tGround Zeroes is a two hour game that costs $30 - http://www.screwattack.com/news/metal-gear-solid-ground-zeroes-upsetting-everyone-over-its-two-hour-campaign\r\n\tResident Evil composer is a fraud - http://www.screwattack.com/news/beethoven-japan-fraud-and-didnt-actually-write-music-some-your-favorite-games\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-020514-resident-evil-composer-is-a-fraud-ground-zeroes-price-and-steam-music","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01e9fca4-92a1-4dde-833c-368345043bab/sm/video_thumbnail_12827546.jpg","duration":223,"publication_date":"2014-02-05T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-dragon-ball-z-battle-of-z","changefreq":"weekly","video":[{"title":"S1:E40 - Out of the Box - Dragon Ball Z: Battle of Z","description":"This time on Out of the Box, we're hopping into the latest (and we'll find out if it's the greatest) Dragon Ball Z game, Battle of Z! Will it be everything we hope or does it need a couple wishes to be worth buying? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-dragon-ball-z-battle-of-z","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95139dbd-6da3-44ea-8122-c60024e52d35/sm/video_thumbnail_12827503.jpg","duration":3191,"publication_date":"2014-02-05T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-145-jeremy-vs-ryan","changefreq":"weekly","video":[{"title":"2016:E20 - Episode 145: Jeremy VS Ryan ","description":"Jeremy is swimming in medals and trophies from past challenges. Will Ryan be able to end the slaughter by slaughtering more zombies in Dead Rising 2? Find out!","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-145-jeremy-vs-ryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94d37e68-8778-4899-840e-ac8c3b1ca67c/sm/2013912-1475273116038-VS_DeadRising2_THUMB.png","duration":1048,"publication_date":"2016-10-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gtav","changefreq":"weekly","video":[{"title":"2016:E323 - GTA V - AHasta La Vista Revisited","description":"\"I'll be back.\" (One year later...) \"I am now back.\" Achievement Hunter returns to one of their favorite custom game modes in GTA Online.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gtav","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64d77f77-93ed-4592-97d2-b77aa4a90fd0/sm/2013912-1475298274366-GTAV_AHastaLaVista_Thumb.jpg","duration":3814,"publication_date":"2016-10-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-speed-halo","changefreq":"weekly","video":[{"title":"2016:E48 - Halo 5 - Speed Halo","description":"Geoff once described Speed Halo as the most fun he's ever had playing a video game. At the very least, his favorite custom game type by far. Back then, he only had Jack to share it with.\n\nFive years and a dozen employees later, Speed Halo has been redesigned for Halo 5. Watch Geoff relive his former glory - this time surrounded by his favorite idiots.\n\n\n\n\n\n\n\n\n\n\n\nDownload the map here\n\n\n\n\n\nDownload the game type here","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-speed-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23ae09e7-cce8-4717-8c79-bb17fe379352/sm/2013912-1475264558646-halo_thumb.jpg","duration":1264,"publication_date":"2016-10-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-17","changefreq":"weekly","video":[{"title":"2016:E8 - Post Show #17","description":"Geoff, Michael, Griffon and Frank answer important questions like, “What they are drinking?”. And look at some deleted scenes. ","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50235158-d242-4d2d-8e9c-4f4e55236b9d/sm/2013912-1475176938147-HH17_-_PS_-_THUMB.jpg","duration":597,"publication_date":"2016-09-30T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-watch-dogs-2","changefreq":"weekly","video":[{"title":"2016:E319 - Watch Dogs 2","description":"Special thanks to Ubisoft for sponsoring this video. Jack and Jeremy are in San Francisco playing Watch Dogs 2, which comes out later this year. To check out the Watch Dogs 2 trailer, click here: http://bit.ly/2d3TDGG","player_loc":"https://roosterteeth.com/embed/lets-play-2016-watch-dogs-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0549deb1-40b8-4ba1-b13b-347b1451010e/sm/2013912-1474998038766-LP_WatchDogs2_THUMB.png","duration":4247,"publication_date":"2016-09-30T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-19","changefreq":"weekly","video":[{"title":"2016:E120 - VR the Champions – Escape the Space Station","description":"Jack and Jeremy assist Ryan as he enters a virtual escape room… IN SPAAAAAAACE!!!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/052c999c-528a-49d8-8520-38b9ee3214d2/sm/2013912-1474482868889-ThumbnailV2.jpg","duration":1763,"publication_date":"2016-09-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-17","changefreq":"weekly","video":[{"title":"2016:E17 - Episode 17","description":"“Love is a spell” Join Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, and Dungeon Master Frank navigate the canal to a sewage treatment station that is not exactly abandoned.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad7d89b4-4ba1-4d70-8dba-0ab4ebd271fc/sm/2013912-1475169300520-HH17_-_THUMB.jpg","duration":6149,"publication_date":"2016-09-29T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-hitman-puddle-pile-easter-egg","changefreq":"weekly","video":[{"title":"2016:E17 - Hitman - Puddle Pile","description":"Geoff and Gavin overhear a conversation in Hitman Episode 5 and it sounds just a little bit familiar. And by a little bit, we mean it's totally definitely a reference to Puddle Pile.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-hitman-puddle-pile-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7f700a0-1879-4301-b26e-103a11b16b9a/sm/2013912-1475180705885-eastereggthumb.jpg","duration":123,"publication_date":"2016-09-29T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-66","changefreq":"weekly","video":[{"title":"2016:E321 - Let's Watch - Hitman - Colorado","description":"Gavin takes down the Freedom Fighters in the latest installment of Hitman.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfc3d624-7e38-46a7-a5b1-a96eff6e6c09/sm/2013912-1475167569864-Thumbnail_Hitman_colorado.jpg","duration":2738,"publication_date":"2016-09-29T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-227-pixelmon-part-3-the-king-of-karp","changefreq":"weekly","video":[{"title":"2016:E320 - Minecraft – Episode 227 – Pixelmon Part 3: The King of Karp","description":"The Achievement Hunter Pokeboys continue their epic quest to become the greatest six trainers that ever were in Minecraft's Pixelmon mod. This week, make that seven trainers. A fresh new Pokemon trainer steps forward, ready to prove he has the balls necessary to become a Pokemon master too. Geoff Ramsey and his teeny little Piplup are ready to kick ass...sometimes. Occasionally. They're also ready to get their asses kicked repeatedly.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-227-pixelmon-part-3-the-king-of-karp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589cb935-65c1-4469-9eba-ddf6e6973d32/sm/2013912-1475163154869-Pixelmon3_Thumb.jpg","duration":3572,"publication_date":"2016-09-29T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rou-lets-play-season-1-3","changefreq":"weekly","video":[{"title":"2016:E121 - Jeopardy!","description":"You know that rusty looking raffle drum Geoff bought forever ago and they hardly ever use? Well today, you finally learn why! In Let's Play Roulette, the gang must record a Let's Play in a random game from their raffle drum. Have a favorite game you want us to record? Know a classic Let's Play you wish would return? Leave a request in the comments, and the most requested games will be put into the raffle drum along with our own personal favorites.","player_loc":"https://roosterteeth.com/embed/rou-lets-play-season-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87fd135e-37a4-4dd5-9e51-a5034ac0cb06/sm/2013912-1475015606221-LetsPlayROULETTE_Jeopardy_Thumb_v3.jpg","duration":2251,"publication_date":"2016-09-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight-with-nick-rutherford-and-kirk-johnson","changefreq":"weekly","video":[{"title":"2016:E309 - Dead by Daylight with Nick Rutherford and Kirk Johnson","description":"Crunch Time's Nick Rutherford and Kirk Johnson stopped by the office, ready to play some games. After all, Avery got a chance to play an exciting bout of Fibbage. Maybe they'd be lucky enough to play something fun and violence-free too!\n\n\n\n\n\nWith Ryan choosing the game, no way that was happening. Murder! Blood! Hacksaws cutting through bones! Looks like these Crunchy Boys are going to get a face full of Dead Dy Daylight.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight-with-nick-rutherford-and-kirk-johnson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4cac84b-54d9-441c-988d-c72ca1a11ed7/sm/2013912-1474404553100-Thumbnail_DbD_CrunchTime_v2.jpg","duration":2245,"publication_date":"2016-09-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-can-t-drive-this","changefreq":"weekly","video":[{"title":"2016:E19 - Can't Drive This","description":"Gavin and Michael are hanging out and being Play Pals in Can't Drive This. One of them needs to keep driving while the other has to keep designing the track - piece by piece - in real time! How far can they make it before they explode?","player_loc":"https://roosterteeth.com/embed/play-pals-2016-can-t-drive-this","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ccf57aa-7e89-41a2-8b39-c1e99ea98c8c/sm/2013912-1474911667679-CantDriveThisThumb_v003.png","duration":1057,"publication_date":"2016-09-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-drawful-2-part-3","changefreq":"weekly","video":[{"title":"2016:E298 - Drawful 2 Part 3","description":"Achievement Hunter drawfriends Vincent Van Goeff, Jack-son Pollock, Michael-angelo, Salvador Gavi, Jeremy M.W. Turner, and Mica Khalo have their smocks on and their phones out for another round of Drawful 2. Paint paint paint. Art art art. Beautiful!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-drawful-2-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbe85ec5-d9ea-498f-9c66-1d91e853439d/sm/2013912-1473699212744-Drawful2Pt3_Thumb_v001.png","duration":1364,"publication_date":"2016-09-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-destiny","changefreq":"weekly","video":[{"title":"2016:E33 - Destiny - Wrath of the Machine Complete Raid Guide","description":"Destiny's newest raid has finally released! Will you be a mighty Iron Lord or will you fail to be up to the challenge? Don't worry we can show you how to be the very best and find every SIVA Cluster along the way.\n\nEntry boss - 0:26First Chest - 2:52First Jumping Section - 3:05First SIVA Cluster - 4:03Second Boss - 4:52First Cache key Chest - 7:01Second Jumping Section - 7:17Second Chest - 8:27Second SIVA Cluster - 8:49Third Chest - 9:13Warmachine Run - 9:51Second Cache Key Chest- 16:08Third SIVA Cluster - 16:15Fourth Chest - 16:30Fourth and Final SIVA Cluster - 16:54Maze section - 17:37Third Boss - 18:25Fourth and Final Boss - 22:05","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-destiny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8798ddf-f5c3-46a8-bf3c-f85e87ca847d/sm/2013912-1474930400138-destiny.jpg","duration":1578,"publication_date":"2016-09-27T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-achievement-hunter-super-cape-ahwu-for-september-26-th-2016-336","changefreq":"weekly","video":[{"title":"2016:E42 - Achievement Hunter Super Cape - AHWU for September 26th, 2016 (#336)","description":"Thanks to Dollar Shave Club for supporting our channel. Go to http://DollarShaveClub.com/Hunter to get your first month free!\n\n\n\n\n\n\n\n\n\n\n\nBy day, he's Slow Mo Brit Boy Gavin Free. But at night, Gavin wraps a homemade Achievement Hunter blankie around his neck and becomes the powerful Achieveman. Turns out, that was no ordinary blanket sent into the office. It was an achievement cape filled with incredible power! And what power does our boy have now? Why, he can pretend to fly around the room and blazing speeds! ...and that's about it. Maybe it's just an ordinary blanket after all.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDon't forget to buy tickets to Let's Play Live in Fathom Theaters for October 8th.http://fathomevents.com/event/lets-play-live\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGames an Music Festival info:Discount Code: ROOSTER25% off. Unlimited # of uses. Link to ticket site: http://gamesmusicfestival.eventbrite.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAchievement Hunter's search for an animator! Find details over here: http://roosterteeth.com/post/51281014\n\n\n\n\n\n\n\n\n\nVideo of the Week and Community Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-achievement-hunter-super-cape-ahwu-for-september-26-th-2016-336","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/062d0bfb-2af0-4761-ba9e-3fe38fb9fa83/sm/2013912-1474928078076-ahwu_1.jpg","duration":663,"publication_date":"2016-09-26T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-hitman-party-hard","changefreq":"weekly","video":[{"title":"2016:E46 - Hitman - Party Hard","description":"Matt, Gavin, Ryan, and Geoff give a big middle finger to Hitman's stealth gameplay and try to murder every single person in Paris. Party Hard is sure a hell of a lot harder in three dimensions.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-hitman-party-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b80ff242-408f-4628-9212-7f348b180ecf/sm/2013912-1474655205910-TTD_Hitman_Party_Hard_v003.png","duration":2332,"publication_date":"2016-09-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-worms","changefreq":"weekly","video":[{"title":"2016:E316 - Worms W.M.D. with Samm Levine","description":"Samm Levine from Crunch Time joins us for our first five player match of Worms W.M.D. Did you know Samm used to play Worms in high school? Perhaps the boys shouldn't underestimate him.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-worms","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a20114f-4791-4822-a7bc-debd3208a836/sm/2013912-1474663018022-Womrs_with_Samm_Levine_thumb_v6.jpg","duration":2361,"publication_date":"2016-09-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-16","changefreq":"weekly","video":[{"title":"2016:E12 - Last Call #16","description":"The AH Crew sit down to talk about shotgunning beers and more on this week's Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52e3283b-0e66-4188-b9bb-0ed8b3228e96/sm/2013912-1474665610850-OFF43_-_PS_-_THUMB.jpg","duration":802,"publication_date":"2016-09-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-65","changefreq":"weekly","video":[{"title":"2016:E317 - Let's Watch - Hitman - The Pharmacist","description":"Join Ryan, Matt and Gavin as they attempt to kill the new Illusive Target, The Pharmacist","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3336aef8-6822-4558-af43-9aa73e1863c4/sm/2013912-1474661257049-LW_Hitman_Elusive_Target_Lighter.png","duration":3115,"publication_date":"2016-09-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-toppest-of-funs","changefreq":"weekly","video":[{"title":"2016:E318 - GTA V - Toppest of Funs","description":"Gavin learns the way of patience as AH returns for their third playthrough of the Top Fun game mode in GTA Online.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-toppest-of-funs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c9853d2-9888-4021-a894-c7965bed8a17/sm/2013912-1474666624527-ToppestofFunsThumbv7.jpg","duration":2247,"publication_date":"2016-09-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-43","changefreq":"weekly","video":[{"title":"2016:E43 - I’m Woefully Straight - #43","description":"The AH Crew sit down to talk about animal attacks, voice acting, Destiny: Rise of Iron, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired September 23, 2016 and is sponsored by Casper (http://bit.ly/29nKmbI) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/167dc0f0-89fa-47c6-b520-8893b73d9791/sm/2013912-1474665585813-OFF43_-_THUMB.jpg","duration":8159,"publication_date":"2016-09-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-bioshock","changefreq":"weekly","video":[{"title":"2016:E47 - Bioshock - Trippy Traps","description":"Bioshock has been remastered and that means we have an excuse to make things to do's in it. Remember how insane plasmids were? Matt and Andy do.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-bioshock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9154953c-1a48-400b-9e62-a4c43a216c41/sm/2013912-1474661307671-green_thumb.jpg","duration":171,"publication_date":"2016-09-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-16","changefreq":"weekly","video":[{"title":"2016:E7 - Post Show #16","description":"Geoff, Michael, and Frank talk about metagaming while looking at new fan art. ","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/501c0fb4-3f26-43e2-9e5c-acdefba198f1/sm/2013912-1474568733690-HH16_-_THUMB.jpg","duration":669,"publication_date":"2016-09-23T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-16-father-s-day","changefreq":"weekly","video":[{"title":"2016:E16 - Episode #16: Father’s Day","description":"WARNING - This film contains graphic depictions of sexual violence and genital mutilation. Viewer discretion is strongly advised. \n\n\n\n\nThe AH crew take this season of Theater Mode out with a bang as they tag along with Ahab, Twink & friends in their quest to save the dads from the savage serial killer Fuchman in the grindhouse gorefest that is Father’s Day!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-16-father-s-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23e90bd3-335c-4169-bafc-85fdb2e38f61/sm/2013912-1474646870757-TM_-_Fathers_Day_-_THUMB.jpg","duration":6344,"publication_date":"2016-09-23T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-destiny-rise-of-iron-sing-the-iron-song-guide","changefreq":"weekly","video":[{"title":"2016:E32 - Destiny Rise of Iron - Sing the Iron Song Guide","description":"Destiny's Rise of Iron has a lovely sound track. So lovely they wanted players to learn how to play it themselves to get some gamerscore. Matt and Trevor are musical masters. They will teach you the Iron Song.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-destiny-rise-of-iron-sing-the-iron-song-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c84db3fe-d675-40c6-9be8-0498315075a8/sm/2013912-1474655626520-bells_thumb.jpg","duration":129,"publication_date":"2016-09-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-64","changefreq":"weekly","video":[{"title":"2016:E315 - Let's Watch - Telltale Batman - Episode 2: Children of Arkham (Part 2)","description":"Join Ryan, Michael, and Jeremy as they finish up Telltale's Batman episode 2: Children of Arkham.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/689d1972-fab8-4d69-9517-ccd41b665ace/sm/2013912-1474655461973-batman2.jpg","duration":2539,"publication_date":"2016-09-23T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-16","changefreq":"weekly","video":[{"title":"2016:E16 - Episode 16","description":"“There is something off about this girl” Join Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, and Dungeon Master Frank as things get greasy, followers turn and a new path is discovered.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70176054-0609-45a9-a3e8-eac04c1eba14/sm/2013912-1474564526073-HH16_-_THUMB.jpg","duration":4393,"publication_date":"2016-09-22T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-for-honor","changefreq":"weekly","video":[{"title":"2016:E313 - For Honor ","description":"Special thanks to Ubisoft for sponsoring this video. Geoff, Ryan, Jack and Jeremy choose their warriors and devise battle plans against their opponents in For Honor. To sign up for the  beta, click here:  http://bit.ly/2cXouH2.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-for-honor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fdd669d-c1fe-44ec-9b4a-450394dc1137/sm/2013912-1474577129276-LP_ForHonor_THUMB.png","duration":1953,"publication_date":"2016-09-22T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-63","changefreq":"weekly","video":[{"title":"2016:E314 - Let's Watch - Telltale Batman - Episode 2: Children of Arkham (Part 1)","description":"Join Ryan, Michael, and Jeremy as they continue Telltale's Batman series with episode 2: Children of Arkham.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9cca45f-ba90-4e41-aaaf-baeb84b4ecbc/sm/2013912-1474577715644-batmanagain.jpg","duration":2330,"publication_date":"2016-09-22T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-226-battle-mode-part-2","changefreq":"weekly","video":[{"title":"2016:E312 - Minecraft – Episode 226 – Battle Mode Part 2","description":"The Achievement Hunter gang returns to the Minecraft Battle Mode Minigame to compete for the coveted Tower of Pimps. You remember the Tower of Pimps, right? That golden block-y thingy that is the token of ultimate Achievement Hunter victory? That's today's prize! The combatants will use their potions, sticks, and flaming swords to kill each other round by round, hoping to achieve victory. That, or they'll be horribly murdered and turned into squeaky-ass bats. And maybe - just maybe - they'll learn about the \"take all\" button.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-226-battle-mode-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aea3b9ff-a423-4bda-b31e-6f51bae3bb5f/sm/1104396-1474498554449-MC_thumb.jpg","duration":1741,"publication_date":"2016-09-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-destiny-rise-of-iron-climbing-the-iron-temple","changefreq":"weekly","video":[{"title":"2016:E31 - Destiny: Rise of Iron - Climbing the Iron Temple","description":"Matt and Trevor show you how to climb the Iron Temple and go straight up the mountain in Destiny's Rise of Iron Expansion. You may even get a SIVA cluster for all your hard work. You'll totally get a SIVA cluster for all your hard work. ","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-destiny-rise-of-iron-climbing-the-iron-temple","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4ae110e-3f4c-4233-903c-c5da2de6ba7c/sm/1104396-1474590314668-Mountain_Climb.jpg","duration":318,"publication_date":"2016-09-22T05:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-destiny-rise-of-iron","changefreq":"weekly","video":[{"title":"2016:E311 - Destiny: Rise of Iron ","description":"Jack, Gavin, and Matt play Destiny while Geoff is off recording Theater Mode. Geoff's going to be so pissed when he comes back. But he said to record something! He just didn't mean Destiny's new DLC: Rise of Iron. ","player_loc":"https://roosterteeth.com/embed/lets-play-2016-destiny-rise-of-iron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c6bd4eb-73a5-4189-9e6c-46f62e5c12fd/sm/2013912-1474497213032-LP_Destiny-Rise_Thumb.jpg","duration":2399,"publication_date":"2016-09-21T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-62","changefreq":"weekly","video":[{"title":"2016:E310 - Let's Watch - Worms W.M.D. - Campaign Part 8","description":"Ryan squirms in his seat as he suffers through the roughest level of the Worms W.M.D. Campaign yet.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fe6dc41-ae37-4df1-adf8-08fe2c66a6f0/sm/2013912-1474476408498-wormspt8_THUMB.jpg","duration":3148,"publication_date":"2016-09-21T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-destiny-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E119 - Destiny With The Stream Team – FULL STREAM","description":"Destiny has a new DLC coming out, so two thirds of the team that streams have decided to prepare for it! Join Matt and Trevor as they level up their Guardians in Destiny.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-destiny-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83933f19-0c78-41d6-88ec-043fe56e7cbb/sm/2013912-1474400405232-destiny_stream_thumb.jpg","duration":7487,"publication_date":"2016-09-20T20:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-bioshock-infinite-full-stream","changefreq":"weekly","video":[{"title":"2016:E118 - Bioshock Infinite – FULL STREAM","description":"Crows, sky cities, and racism! Oh my! Join Andy and Matt as they play through the newly remastered Bioshock Infinite. ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-bioshock-infinite-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b705e0db-4c22-4950-995c-181c688af757/sm/2013912-1474396944970-bioshock_thumb_35.jpg","duration":6704,"publication_date":"2016-09-20T20:12:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-g-m-o-d-obj-hunt-with-etika-and-lannan","changefreq":"weekly","video":[{"title":"2016:E308 - GMOD: Obj Hunt with Etika and Lannan","description":"\"Alright guys. Let's dial it back a notch. There's been a lot of uneasy feelings lately with all this murder-ing going on. We turn on the webcams, somebody's shit fucks up, and then we stab n' shoot each other for a while. What if we played something a little nicer? What if we were bananas? Or tables? And what if we can around hiding? Ooh! What if we split into teams?\"\n\n\"Sweet! One team can hide, and the other team can seek them out\"\n\n\n\n\"With shotguns! And grenades! And crowbars! And machine guns!\"\n\n\n\n\"What?\"\n\n\n\n\"Yeah! It'll be perfect! Why have one murderer when half of us can be doing the seeking and murdering?\"\n\n\n\n\"Oh boy. Fuck it. Fine. 3, 2, 1 - OBJ hunt is on!\"\n\n\n\nThanks Etika and Lannan for stopping by and playing some Obj Hunt with us! Check out Etika's channel: https://www.youtube.com/user/EWNetworkCheck out Lannan's channel: https://www.youtube.com/channel/UCw1SQ6QRRtfAhrN_cjkrOgA","player_loc":"https://roosterteeth.com/embed/lets-play-2016-g-m-o-d-obj-hunt-with-etika-and-lannan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55516c70-01cd-4431-bf1b-5d896d3e76c4/sm/2013912-1474385016619-OBJHuntThumb.jpg","duration":2793,"publication_date":"2016-09-20T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-killer-bacon","changefreq":"weekly","video":[{"title":"2016:E45 - Halo 5 - Killer Bacon","description":"The Achievement Hunter boys just love eatin' pork. Bacon. Pork chops. Sausage. Fuckin' yum. But in the world of Halo 5 Custom Games, preparing a delicious pig meal is just a little bit harder than running down to the local Piggly Wiggly. Grab your shotguns and be prepared to prepare some killer bacon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-killer-bacon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e42514ec-800b-4523-9415-9a69ff97b777/sm/2013912-1474319157559-piggy.jpg","duration":513,"publication_date":"2016-09-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-another-ahwu-snuff-film-ahwu-for-september-19-th-2016-335","changefreq":"weekly","video":[{"title":"2016:E335 - Another AHWU Snuff Film? - AHWU for September 19th, 2016 (#335)","description":"Thanks to Casper for supporting our channel. Save $50 on a mattress at http://www.casper.com/ahwu  and enter ahwu|| \n\nIt's not a true episode of AHWU unless at least one Achievement Hunter is left on the brink of death. Today's lucky employee is Trevor Collins! Watch him get bagged, tagged, and Matt Bragged! Or at least one of those three.\n\n\n\n\n\n\n\nFortunately, Trevor made it through the episode alive. That means he can tell you all about Achievement Hunter's search for an animator! Find details over here: http://roosterteeth.com/post/51281014\n\n\n\n\n\n|| Video of the Week: https://www.youtube.com/watch?v=WvpVCDEo0f4 ||\n\n\n\n\n\nCommunity Video of the Week: https://www.youtube.com/watch?v=xBzxfc0y864","player_loc":"https://roosterteeth.com/embed/ahwu-2016-another-ahwu-snuff-film-ahwu-for-september-19-th-2016-335","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0927d9ef-a7eb-41b0-9e51-97208896efb8/sm/2013912-1474323875725-ahwu.jpg","duration":614,"publication_date":"2016-09-19T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-61","changefreq":"weekly","video":[{"title":"2016:E306 - Let's Watch - Recore","description":"Join Jeremy, Jack, and Matt as they play through the new game, Recore. They have a dog now, but will there be more to core? Will the need to core be a chore? Or a bore? Snoooooore. If you implore them to core, maybe they'll do more. Score!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d9d58f7-dbb3-43ec-8fe9-312e1ca12c12/sm/2013912-1474058650608-recore_thumb.jpg","duration":4324,"publication_date":"2016-09-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-fibbage-2-with-avery-monsen","changefreq":"weekly","video":[{"title":"2016:E296 - Fibbage 2 with Avery Monsen","description":"The Achievement Hunter crew is joined by Avery Monsen of Crunch Time! Today on Fibbage 2: Avery learns to lie, Jack tricks Michael, and someone loses points! Let us know what your favorite lies were! Thumbnail art created by trickytickytavi.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-fibbage-2-with-avery-monsen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/295e0c23-3fb3-4e1b-b429-3395315aa3ed/sm/2013912-1473358401532-Fibbage_2_with_Avery_Thumbnail.jpg","duration":1723,"publication_date":"2016-09-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-15","changefreq":"weekly","video":[{"title":"2016:E11 - Last Call #15","description":"The AH Crew sit down to talk about levels of gamers, roomba deaths, extra life stream, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd3224c6-106b-4c6c-9b6a-1f1fec53ff16/sm/2013912-1474060463311-OFF42_-_PS_-_THUMB.jpg","duration":1342,"publication_date":"2016-09-18T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-60","changefreq":"weekly","video":[{"title":"2016:E305 - Let's Watch - NBA 2K17 - The Prelude","description":"If Geoff Ramsey knows anything, it's that you can't just start an NBA career directly in the NBA. You have to be a highschool big-shot and make a sweet sizzle reel that nets you a hot million views on the YouTube. That's how you get the college dogs keeping their eyes on you. That's how you get to play college b-ball. Watch as Geoff, Jack, and Ryan try their damndest to play NBA 2K17 - The Prelude and make sure superstar hotshot SQUEEEEPS Ramsey starts his NBA career off right. ","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b243700-0841-40ee-9a48-8ca64e6efc8d/sm/2013912-1473973417006-LW_NBA2K17_Thumb_v001.png","duration":1204,"publication_date":"2016-09-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-titan-centipede","changefreq":"weekly","video":[{"title":"2016:E307 - GTA V - Titan Centipede","description":"A relic of bygone days, this previously lost Let’s Play features Adam, Elyse, James and Omar of Funhaus, as Achievement Hunter tries to break the record for longest train of Titans to take flight.  Originally recorded in March 2016, this episode of Let’s Play GTA V was digitally restored, finally to be presented to the public in September 2016.\n\n\n\n\n\nMusic Credit:\n\n\n\n\n\nAudio Network - \"Celebrated Minuet” and “Ride Of The Valkyries”","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-titan-centipede","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0b6e217-9084-4ce1-853e-d70a9f427c01/sm/2013912-1474063627027-Titan_Centipede_Thumb.jpg","duration":2830,"publication_date":"2016-09-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-42","changefreq":"weekly","video":[{"title":"2016:E42 - Geoff’s on the Fussy Bus! - #42","description":"The AH Crew sit down to talk about food challenges, Let’s Play Live, fan appreciation week, and more on this week's Off Topic!\n\n\n\n\n\nThis episode originally aired September 16, 2016 and is sponsored by Dollar Shave Club (http://bit.ly/2cujr4z) and MVMT Watches (http://bit.ly/29ACJT8)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9345b3bc-1d2e-4027-a461-ccf0fb398922/sm/2013912-1474061520616-OFF42_-_THUMB.jpg","duration":6774,"publication_date":"2016-09-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-musical-cups","changefreq":"weekly","video":[{"title":"2016:E44 - Halo 5 - Musical Cups","description":"Join the gang as they play a twist on musical chairs in Halo 5. Who will be victorious!\n\n\n\nMap Download https://www.halowaypoint.com/e...\n\nGame type download https://www.halowaypoint.com/e...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-musical-cups","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cee71b87-16ec-4958-94af-730ce1c8f86d/sm/2013912-1473879408598-musical_cups.jpg","duration":928,"publication_date":"2016-09-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-15","changefreq":"weekly","video":[{"title":"2016:E6 - Post Show #15","description":"Gus, Griffion and Frank talk about using cards as an alternative to rolling dice. They also take a look at some great fan art.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d8881ae-d9d0-4a7b-8a21-8abc5b058fff/sm/2013912-1473965248515-HH15_-_PS_-_THUMB.jpg","duration":438,"publication_date":"2016-09-16T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-15-black-water-sasquatch","changefreq":"weekly","video":[{"title":"2016:E15 - Episode #15: Black Water Sasquatch","description":"Rippin’ people’s faces off ain’t right! Join the AH crew as they follow two increasingly drunk detectives on their search for the murderous Black Water Sasquatch.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-15-black-water-sasquatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/867a9882-bc4f-4e9f-b939-6876903d10a8/sm/2013912-1474039086356-TM_-_Sasquatch_-_THUMB.jpg","duration":6005,"publication_date":"2016-09-16T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-pokemon-go-bus-bash","changefreq":"weekly","video":[{"title":"2016:E117 - Pokemon GO Bus Bash!","description":"The Achievement Hunter crew steps out of the office for a change in order to be Pokemon masters in real life! They'll walk, run, crawl, roll, and air-conditioned bus their way through Austin in search of all the Pokemon they can find. \n\nThanks to Pokemon Go City Tours for driving us around so we didn't have to walk everywhere. Learn more or book your own tour over at https://pokemongocitytours.com","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-pokemon-go-bus-bash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75fd9a04-37e9-461c-baba-37810999c0d6/sm/2013912-1473971207156-poke.jpg","duration":89,"publication_date":"2016-09-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-144-jeremy-vs-lindsay","changefreq":"weekly","video":[{"title":"2016:E19 - Episode 144: Jeremy vs Lindsay","description":"Va-va-versus! Witness the UFC 2 Throwdown Showdown between the mighty and the small! Who exactly is The Mighty and who is The Small? Lindsay, Jeremy, and Ronda Rousey's incredible package are today's fighters in the ring. As to who deserves which title - that's for you to decide.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-144-jeremy-vs-lindsay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52ed032c-a1f4-42f1-9abf-7e68da932f7b/sm/2013912-1473877731390-versus2.jpg","duration":398,"publication_date":"2016-09-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-15","changefreq":"weekly","video":[{"title":"2016:E15 - Episode 15","description":"Are we tripping? Heroes and Halfwits Gus, Geoff, Griffon, Allison, Ryan, Michael, and Dungeon Master Frank are on the path to exit the cave and encounter some Fungus.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b56c8ae7-7f55-448f-9e86-af4dee62c7aa/sm/2013912-1473963629393-HH15_-_THUMB.jpg","duration":3322,"publication_date":"2016-09-15T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-59","changefreq":"weekly","video":[{"title":"2016:E303 - Let's Watch - Bioshock Remastered","description":"Join Michael, Jeremy, and Ryan as they relive the excellence of Bioshock....But this time in HD!!!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b9666ac-e798-4414-a11f-0eb72f3b9eff/sm/2013912-1473891088452-bioshoc.jpg","duration":3070,"publication_date":"2016-09-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-225-pixelmon-part-2","changefreq":"weekly","video":[{"title":"2016:E304 - Minecraft - Episode 225 - Pixelmon Part 2","description":"\"Oh no way. They won't play Pixelmon again. This is going to be another one-off. We want Pixelmon so so bad - literally think Achievement Hunter should play this every day forever. But they won't. Because they're stupid idiots. We're never getting another Pixelmon ever again. We're never going to see Michael's Charmeleon evolve. We're never going to see him fly around on Charizard, because Achievement Hunter is dumb and they're going to abandon Pixelmon forever. And what about Gavin's tiny Squirtle. Never going to see that again either. Fuckin' idiots.\"\n\n\n\n\n\nAchievement Hunter winds down Fan Appreciation Week by playing more of the Pixelmon mod in Minecraft. More battles! More evolutions. More catching Pokemon. More Matt being a horrible trainer to his Kippers. And yes - more tiny Squirtle.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-225-pixelmon-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f72a35e-bdcf-465d-93e1-210bc62d19c6/sm/2013912-1473889638256-pixelmon.jpg","duration":2881,"publication_date":"2016-09-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight-part-4","changefreq":"weekly","video":[{"title":"2016:E302 - Dead by Daylight Part 4","description":"Fan Appreciation Week continues as we bring you another terrifying installment of Dead by Daylight! Will they survive the night or be lost to the corn?! Only time will tell...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1560e28-1c48-414d-80a0-26dad37ecac3/sm/2013912-1473879931054-DeadByDaylightPart4_Thumb.jpg","duration":3134,"publication_date":"2016-09-14T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-58","changefreq":"weekly","video":[{"title":"2016:E301 - Let's Watch - Stowaway","description":"“The Stream Team boards a haunted ship full of flickering lights, creepy corridors and…the Tower of Pimps?\"","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf54e294-362f-4fd4-9a88-e88e26804427/sm/2013912-1473803175304-LW_Stowaway_Thumb.png","duration":1269,"publication_date":"2016-09-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-destiny-getting-the-trespasser-and-over-level-335-gear-early","changefreq":"weekly","video":[{"title":"2016:E30 - Destiny - Getting the Trespasser and over level 335 gear early","description":"For those of you revving up for Destiny's Rise of Iron DLC you can go ahead and start getting ready right now! There's a new exotic you can go ahead and grab as well as some gear that's above the current light level. Matt and Jeremy will show you an easy spot to grab it and what you're looking for in the first place.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-destiny-getting-the-trespasser-and-over-level-335-gear-early","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b20ff73-b4ed-4612-9c19-1ec144e6c6b1/sm/2013912-1473820320919-Thumbnail_Destiny.jpg","duration":183,"publication_date":"2016-09-14T02:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-overwatch-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E116 - Overwatch With The Stream Team – FULL STREAM","description":"The team that streams can't get enough of Overwatch. Well, Matt can't. He's already passed level 100... The rest are kind of just along for the ride. But A+ for effort!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-overwatch-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc610c09-2848-4fbd-b6f3-dc8574228ad0/sm/2013912-1473784613509-overwatch_stream_team_4.jpg","duration":7117,"publication_date":"2016-09-13T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gmod-murder-part-3","changefreq":"weekly","video":[{"title":"2016:E300 - Gmod: Murder Part 3","description":"The boys are back in Garry's Mod (Gmod) with some classic murder gameplay! Should be a lot of fun, well, for whoever lives. Did Ryan get the knife? Oh god. Every man for himself!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gmod-murder-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4c5513d-8fd5-4b20-b10a-eb5d02590133/sm/2013912-1473781104192-Murder_Thumbnail.jpg","duration":2569,"publication_date":"2016-09-13T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-alien-invasion","changefreq":"weekly","video":[{"title":"2016:E43 - Halo 5 - Alien Invasion","description":"\"Holy hot balls! There's aliens in them there sky!\"\n\n\"Of course there are. Don't you remember when the Covenant glassed Reach? Or when the Brutes started monkeying about? Or those weird-ass Engineer guys? And the Prometheans? You can't walk ten feet without tripping over one of those bastards.\"\n\n\n\n\"No! You don't get it. These are like the fly-around-in-saucers-and-abduct-you-and-stick-probes-up-your-butt-kind of aliens.\"\n\n\n\n\"...OH SHIT! Run for your lives! Hit the decks!\"\n\n\n\nMap Download: https://www.halowaypoint.com/e...\n\nGametype download: https://www.halowaypoint.com/e...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-alien-invasion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c087d92e-2018-4cec-8e15-047134435a08/sm/2013912-1473698987182-TTD_ALIEN_INVASION.jpg","duration":1651,"publication_date":"2016-09-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-part-4","changefreq":"weekly","video":[{"title":"2016:E299 - 7 Days to Die Part 4 ","description":"The Achievement Hunters are stayin' alive in 7 Days to Die Part 4. Will Michael be able to keep from killing himself? Why is Ryan messing with a bear? Will they ever make it to day 7? Find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e2d2157-d11d-40e9-8310-d2db01a9f20f/sm/2013912-1473714082136-LP_7DaystoDie_Part4_THUMB1.png","duration":3603,"publication_date":"2016-09-12T22:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-extreme-chair-riding-ahwu-for-september-12-th-2016-334","changefreq":"weekly","video":[{"title":"2016:E334 - Extreme Chair Riding - AHWU for September 12th, 2016 (#334) ","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU \n\nFulfilling every fan fiction writer's wildest dreams, Jeremy and Chair have finally become a thing this week: Chairemy. Witness Chairemy's first date: down the hall, past all the nasty crickets, and through the parking lot. Witness a tale of blossoming love, wild passion, betrayal, a chair getting ridden - hard - and Jeremy taking a roll in the hay. It's hot. It's sexy. It's chub-inducing. You're gonna love it.\n\n\n\nWatch the Video of the Week and the Community Video of the Week.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-extreme-chair-riding-ahwu-for-september-12-th-2016-334","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa9353ae-4a14-48c1-9fbd-834ca881f7b9/sm/2013912-1473714597627-ahwu_thumb.jpg","duration":459,"publication_date":"2016-09-12T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-57","changefreq":"weekly","video":[{"title":"2016:E297 - Let's Watch - Party Hard","description":"Achievement Hunter hates parties but love doing some stabby stabbing. The Creatures, on the other hand, are some hardcore party boys. Like...they party hard. Hard-ass parties. Honestly, I don't even know what it means to party hard. All I know is that Dan and Jordan walked in the office and said, \"Sup boys? We're The Creatures and we like to party. Hard.\"\n\nNo way Ryan was gonna let that fly round here, so guess it's time to teach these Creature boys to do a little less partying and a little more stabbing. Or a little more poisoning. Or a little more chopping down trees. Or a little more feeding people to pandas. Whatever turns breathing humans into corpses. Pick your poison - quite literally.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78f42a55-6630-4c4d-89bb-da27983a36bd/sm/2013912-1473461328517-LW_PartyHard_Creatures_Thumb.png","duration":1881,"publication_date":"2016-09-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-14","changefreq":"weekly","video":[{"title":"2016:E10 - Last Call #14","description":"The AH Crew sit down to talk about the new iPhone, gold controllers, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb08c3d9-ed9e-4119-b9f0-81b2478b5d62/sm/2013912-1473458417156-OFF41_-_PS_-_THUMB.jpg","duration":1324,"publication_date":"2016-09-11T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-game-time-with-michael","changefreq":"weekly","video":[{"title":"2016:E295 - Game Time With Michael","description":"Join Burnie and Michael as they revisit some classic Rage Quit games, The Impossible Game and Surgeon Simulator.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-game-time-with-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a303d46a-1edd-443c-9b93-bcaef478aab4/sm/2013912-1473458407951-GT_With_Michael_Thumb.png","duration":5393,"publication_date":"2016-09-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-a-h-dventures-in-new-orleans","changefreq":"weekly","video":[{"title":"2016:E115 - AH-dventures in New Orleans","description":"Join Jeremy, Matt, and Trevor as they get a sneak peek at Mafia 3 and tour the great city of New Orleans.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-a-h-dventures-in-new-orleans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a549d7e8-24d2-444f-8fda-2faca2841bf5/sm/2013912-1473457904277-mafia.jpg","duration":409,"publication_date":"2016-09-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-fun-times-with-etika-and-lannan","changefreq":"weekly","video":[{"title":"2016:E296 - GTA V - Fun Times with Etika and Lannan","description":"Explosive busses! Weaponized trains! Hot tub helicopter parties! Funny accents! Achievement Hunter and friends bring the fun in this very special GTA V free roam bonanza.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-fun-times-with-etika-and-lannan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c012dd24-91c5-41ef-a787-ee7723a21d64/sm/2013912-1473462589834-Funtimes_Thumbnail_v6.jpg","duration":3925,"publication_date":"2016-09-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-41","changefreq":"weekly","video":[{"title":"2016:E41 - Hey! You Dead?! - #41","description":"The AH Crew sit down to talk about Geoff’s life while Griffon is away, layovers, social obligations, and more on this week's Off Topic!\n\nThis episode originally aired September 9, 2016 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31db5ed2-2f83-4db4-9ecd-fc6a9977f765/sm/2013912-1473455283188-OFF41_-_THUMB.jpg","duration":7925,"publication_date":"2016-09-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-56","changefreq":"weekly","video":[{"title":"2016:E295 - Let's Watch - Worms W.M.D. - Campaign Part 7 ","description":"It's war against the \"rapper\" worms. To get another one of Ryans beloved golden check marks, the team will need to defeat 3 enemy worms with oil drums, drown a worm, and kill the last worm with a helicopter. Will Gavin be able to save the day? Watch as the campaign continues!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84f0681a-7c56-44de-8980-91b1fa781aae/sm/2013912-1473357943855-LW_WormsWMD_Pt7_THUMB.png","duration":2393,"publication_date":"2016-09-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-14","changefreq":"weekly","video":[{"title":"2016:E5 - Post Show #14","description":"Deleted moments from in between episode 13 game board setups.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8707b0d-6ddf-44f8-9cf3-b3a9c58ec16f/sm/2013912-1473357758884-HH14_-_PS_-_THUMB.jpg","duration":352,"publication_date":"2016-09-09T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-14-fun-size-horror","changefreq":"weekly","video":[{"title":"2016:E14 - Episode #14: Fun Size Horror","description":"Join the AH crew as they trudge their way through FUN SIZE HORROR, an awful anthology of bite-sized badness. Twenty-one terrible tales to make you groan, cringe and question your life choices.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-14-fun-size-horror","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51b0ccaf-588b-4fce-a8ee-4ad6684d15fc/sm/2013912-1473448917936-TM_-_Fun_Size_-_THUMB.jpg","duration":5306,"publication_date":"2016-09-09T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-sniper-ghost-warrior-3","changefreq":"weekly","video":[{"title":"2016:E294 - Sniper Ghost Warrior 3","description":"Thanks to CI Games for sponsoring this video || Jack and Gavin are prepped and ready to watch Jeremy's transformation from one man to three men. He must have the mind of the sniper, the spirit of the ghost, and the heart of the warrior. He is the Sniper Ghost Warrior, and he's ready to take on the world for at least the third time.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-sniper-ghost-warrior-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3a9f81a-b9dc-4c98-b92f-2360effc535a/sm/2013912-1473371180236-SGW3_Thumb_v001.png","duration":3138,"publication_date":"2016-09-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-warframe","changefreq":"weekly","video":[{"title":"2016:E294 - Warframe","description":"Thanks to Digital Extremes for sponsoring this Let’s Play!\n\nhttps://warframe.com/achievementhunter \n\nThe Achievement Hunter boys are ready to get their guns and their blades dirty with some Warframe. They're droppin' it classic style with some campaign, and then kicking it on over to the new Lunaro game mode for some good ol' sports and ballin'.\n\nWar! Frame! Good God, y'all! \nWhat is it good for? \nShoot'n stabb'n bag guys! \nSay it again!\nWar! Frame! \nWhat is it good for? \nRugby time Lunaro. \n\nPlay it again!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-warframe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b364a174-a45f-423f-acd7-417bff764ab6/sm/2013912-1472230706713-Thumb_Warframe_BG_2.jpg","duration":2132,"publication_date":"2016-09-09T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-18","changefreq":"weekly","video":[{"title":"2016:E118 - VR the Champions - Paddle Up","description":"Get ready for an epic show down of the most thrilling game to ever become available for VR, table tennis.......\n\nJoin Ryan, Michael, Jack, and Mica as they compete in a thrilling table tennis tournament. Jeremy also makes an appearance! Too bad his table tennis skills fall \"short\".... *ba dum tis*","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4fbd435-91e7-4928-b0ac-b28d0136a440/sm/2013912-1473349799753-VR_Table_Tennis.jpg","duration":1425,"publication_date":"2016-09-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-14","changefreq":"weekly","video":[{"title":"2016:E14 - Episode 14","description":"There are Ghosts? Heroes and Halfwits Gus, Geoff, Griffon, Allison, Ryan, Michael, and Dungeon Master Frank get a little wet fighting to get out of the cave.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7ffedbf-7174-4d6f-a122-0f5ded8df826/sm/2013912-1473358899739-HH14_-_THUMB.jpg","duration":4914,"publication_date":"2016-09-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-skeet-shooting","changefreq":"weekly","video":[{"title":"2016:E42 - Overwatch - Skeet Shooting ","description":"The Achievement Hunters are the skeet, and Etika and Lannan \"LazarBeam\" Eacott are the shooters. Will Lannan successfully get a headshot? Who is \"Uncle Junkie\"? Find out! \n\nCheck out Etika's channel: http://bit.ly/1Hh9jSj\n\nCheck out Lannan's channel: http://bit.ly/1YnSKKL","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-skeet-shooting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bc4544c-fc3f-4ce0-b4e4-852e46706021/sm/2013912-1473347747835-TDD_Overwatch_SkeetShooting_THUMB.png","duration":552,"publication_date":"2016-09-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-224-pixelmon","changefreq":"weekly","video":[{"title":"2016:E293 - Minecraft - Episode 224 - Pixelmon","description":"The Achievement Hunter boys may be a little bit older than ten, but that doesn't matter. Today is their first day on a long, long journey to become Minecraft Pokemon Masters in the Pixelmon Mod. Watch as the crew ventures out into the vast Pokelands of AHto, where the Granbulls are scary as fuck, the Pokeballs are hard to come by, and the Squirtles take after Jeremy. \n\nYes, they do want to be the very best like no one ever was. Yes, to catch them is their real test. Yes, to train them is their cause. Yes, they will travel across the land, searching far and wide. And yes, a Tentacruel will probably demolish a building at some point during their theme song. PIXELMON!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-224-pixelmon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c4e2d2c-f81a-4319-8504-2679780dc23e/sm/2013912-1473347601352-LP_Minecraft_Pixelmon_Thumb.png","duration":3854,"publication_date":"2016-09-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-doom2","changefreq":"weekly","video":[{"title":"2016:E292 - DOOM CoOp: Part 2","description":"Team Jumbo Shrimp continue their journey and fight demons from Hell!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-doom2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53a8f08-9f3f-484d-930d-243f4989ac5d/sm/2013912-1473266354706-doomthumb.jpg","duration":1966,"publication_date":"2016-09-07T16:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-55","changefreq":"weekly","video":[{"title":"2016:E291 - Let's Watch - Worms W.M.D. - Campaign Part 6","description":"Michael's audio was lost duirng recording. Sorry in advance if it's hard to hear. || Scrappy ol' Achievement Hunter is continuing down the road the complete Wormal domination in the Worms WMD campaign. The levels are getting tougher and the challenges are becoming more and more difficult to complete. You know what that means - Achievement Hunter is ready to call in Big Daddy Big Guns. The ringer of all ringers. The absolute best gamer in the office. That's right - it's time for some Geoff Ramsey up in here. And maybe a little Etika, too. \n\nCheck out Etika's channel here: youtube.com/EWNetwork","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c6da9ad-5825-4c0a-9956-b7e61284fe27/sm/2013912-1473200625778-wormspt6.jpg","duration":2652,"publication_date":"2016-09-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-savage-resurrection-part-3","changefreq":"weekly","video":[{"title":"2016:E290 - Savage Resurrection Part 3 ","description":"It's the Gents VS the Lads again in this third part of Savage Resurrection. Michael builds guns with questionable range, and Ryan bleeds Spock coins. Special thanks to S2 Games for Sponsoring this video. If you'd like to experience the game for yourself, click the link below.\n\nSteam Link: http://bit.ly/259SdjN","player_loc":"https://roosterteeth.com/embed/lets-play-2016-savage-resurrection-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/249f5dbb-668b-47cc-9ca6-349b6a9c2a41/sm/2013912-1473176088178-LP_SavageResurrection_Pt3_THUMB.png","duration":1651,"publication_date":"2016-09-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-54","changefreq":"weekly","video":[{"title":"2016:E289 - Let's Watch - Resident Evil 4 Part 2","description":"Achievement Hunter Fun Fact: The currency Leon Kennedy uses in Resident Evil 4 is the paseta. Late in Resident Evil 4's development, Spain's currency switched to the euro, but they never switched the currency in the game. Because of this, Resident Evil 4 takes place in some crazy universe where Spain still uses the paseta and also zombies exist. Usually AH Fun Facts are a load of shit, but this one is real for reals. \n\nAchievement Hunter Fun Fact: Man, Etika sure got awfully pale and British between recording the first recording and this second part.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b2c7a28-6a95-4c41-9089-f3bb24f8950a/sm/2013912-1472859159104-re4_part_2_thumb.jpg","duration":3443,"publication_date":"2016-09-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-kung-fu-for-kinect","changefreq":"weekly","video":[{"title":"2016:E288 - Kung-Fu for Kinect","description":"Join Michael, Jeremy, Jack and Trevor as they master the skills of Kung-Fu.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-kung-fu-for-kinect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa889f95-9a5e-4b68-a7d6-8c0c761f3dca/sm/2013912-1472850195830-kinectfu.jpg","duration":2402,"publication_date":"2016-09-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-labor-daybor-ahwu-for-september-5-th-2016-333","changefreq":"weekly","video":[{"title":"2016:E39 - Labor Daybor - AHWU for September 5th, 2016 (#333)","description":"The AH boys are giving you all the games and news all y'alls need for Labor Day 2016! What? Were you expecting some sort of intricate description. F' that. It's Labor Day. Taking the day off.\n\n\nWatch the Video of the Week and the Community Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-labor-daybor-ahwu-for-september-5-th-2016-333","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11d616dd-7658-4e13-98b4-5a34b326151f/sm/2013912-1472846623031-AHWU_thumb.jpg","duration":332,"publication_date":"2016-09-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-motar-war","changefreq":"weekly","video":[{"title":"2016:E41 - Halo 5 - Mortar War","description":"Is it the Battle of Normandy, the Battle of Tripoli, or is it a deadly relay? Achievement Hunter storms the beach with the help of Etika and Lannan \"LazarBeam\" Eacott.\n\nCheck out Etika's channel: http://bit.ly/1Hh9jSj\n\nCheck out Lannan's channel: http://bit.ly/1YnSKKL\n\nMap Download: http://bit.ly/2cwDMpf\n\nGametype Varient: http://bit.ly/2bRiUmU","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-motar-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/442f71c7-fae8-487d-a8d1-b28dfa428834/sm/2013912-1472854105246-TTD_Halo5_MotarWar_THUMB2.png","duration":887,"publication_date":"2016-09-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-drawful-2-part-2","changefreq":"weekly","video":[{"title":"2016:E287 - Drawful 2 Part 2","description":"Did you know? - Drawful is probably a portmanteau of Draw and Awful. I mean, probably. Seems about right. It definitely wasn't worth the effort of looking up if that's actually the intention. But like, it has to be, right? It HAS to be!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-drawful-2-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fca0ef23-a3e6-4b32-907f-56ea10709604/sm/2013912-1472665675067-LW_Drawful2Pt2_Thumb_v002.png","duration":1441,"publication_date":"2016-09-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-13","changefreq":"weekly","video":[{"title":"2016:E9 - Last Call #13","description":"The AH Crew sit down to talk about bad ideas, shenanigans, hurricanes, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/704c7d61-4ddf-4928-99ed-91c383791531/sm/2013912-1472856571210-OFF40_-_PS_-_THUMB.jpg","duration":1174,"publication_date":"2016-09-04T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-game-time-with-marcus","changefreq":"weekly","video":[{"title":"2016:E286 - Game Time With Marcus","description":"Join Burnie and Marcus as they build machines of death in Besiege.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-game-time-with-marcus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ed5d5d1-5e52-4b07-92d8-bc573e3e4136/sm/2013912-1472858805240-besiege.jpg","duration":4407,"publication_date":"2016-09-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-53","changefreq":"weekly","video":[{"title":"2016:E285 - Let's Watch Resident Evil 4","description":"Join Michael, Etika, and Andy as they play a remake of a remake of a remake in Resident Evil 4 (2016). Watch out for chainsaws!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/919d626c-91bc-4820-811c-bb27d3488441/sm/2013912-1472858649189-LW_Resident_Evil_4.png","duration":3363,"publication_date":"2016-09-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cunning-stunts-4-days-of-blunder","changefreq":"weekly","video":[{"title":"2016:E284 - GTA V - Cunning Stunts 4: Days of Blunder","description":"Will Geoff also win this Cunning Stunts playlist? Did he even actually win the previous one? Will Matt fuck in a tree? All these questions and more answered in our latest Cunning Stunts video for GTA Online.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cunning-stunts-4-days-of-blunder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79993ce8-0d51-4705-8ec0-0ec336e2df0b/sm/2013912-1472857425727-Thumb_CunningStunts4_v2.jpg","duration":2080,"publication_date":"2016-09-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-40","changefreq":"weekly","video":[{"title":"2016:E40 - Do You Miss Being Depressed? - #40","description":"The AH Crew sit down to talk about candies, picky eaters, Twitter verification, and more on this week's Off Topic!\n\nThis episode originally aired September 2, 2016 and is sponsored by MVMT Watches (http://bit.ly/2bW4Ady)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b602aedc-4ea3-4304-ba24-bbfc4ea8a8ab/sm/2013912-1472856528057-OFF40_-_THUMB.jpg","duration":7258,"publication_date":"2016-09-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-52","changefreq":"weekly","video":[{"title":"2016:E283 - Let's Watch - Fallout 4 - Nuka World DLC","description":"Join Jeremy, Gavin, Geoff and special guest Lannan \"LazerBeam\" Eacott on a fun adventure to Fallout 4's latest DLC, Nuka World! Bring your power armor for the mutant rats and alien robots.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffdbfe15-80ac-41be-8a50-7951c353c209/sm/2013912-1472856424960-LW_Fallout_4_Nuka_World.png","duration":1954,"publication_date":"2016-09-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-13","changefreq":"weekly","video":[{"title":"2016:E4 - Post Show #13","description":"Geoff and Griffon introduce Allison and ask her about experience playing Orma.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22d1132d-de26-4d79-ac62-c7a70755a559/sm/2013912-1472761727664-HH13_-_PS_-_THUMB.jpg","duration":362,"publication_date":"2016-09-02T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-13","changefreq":"weekly","video":[{"title":"2016:E13 - Episode #13: Ghostkeepers","description":"Join the AH crew as they follow the journey of a young podcast host with a bit of a chin problem and his ragtag crew of psychics, actors and groundskeepers of unknown regional origin as they uncover the history of perhaps the least scary haunted house in history in GHOSTKEEPERS on this week’s Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc9ce218-1a1f-41b9-b1f1-6062986562e0/sm/2013912-1472850548079-TM_-_Ghostkeepers_-_THUMB.jpg","duration":5239,"publication_date":"2016-09-02T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-17","changefreq":"weekly","video":[{"title":"2016:E117 - VR the Champions - The Brookhaven Experiment","description":"Join the AH Crew with special guests Etika and Lannan \"LazarBeam\" Eacott as they battle off hoards of zombies in The Brookhaven Experiment.\n\nCheck out Etika's channel: https://www.youtube.com/EWNetwork\nCheck out Lannan's channel: https://www.youtube.com/LazarBeam","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/245389ea-89a2-4bd5-b2cd-b9b2fddcc8c8/sm/2013912-1472767765540-thumb.jpg","duration":1564,"publication_date":"2016-09-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-51","changefreq":"weekly","video":[{"title":"2016:E282 - Let's Watch - Champions of Anteria","description":"Special thanks to Ubisoft for sponsoring this video. \n\nESRB Rating Pending. Click the following link to check out the demo: https://www.ubisoft.com/en-US/game/champions-of-anteria\n\nRyan, Jack and Geoff get to take a special sneak peek at Ubisoft's Champions of Anteria. Get ready for an epic adventure!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/027b3734-461a-420d-9a6c-33ff7cc5728c/sm/2013912-1472675437370-Champions_Thumbnail.jpg","duration":1600,"publication_date":"2016-09-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-13","changefreq":"weekly","video":[{"title":"2016:E13 - Episode 13","description":"Let’s go Shopping! Heroes and Halfwits Gus, Geoff, Griffon, Allison, Ryan, Michael, and Dungeon Master Frank find a merchant in the cave after a scrapping with few more monsters.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5698767e-de93-4596-8813-79b48b94896b/sm/2013912-1472747858679-HH13_-_THUMB.jpg","duration":4620,"publication_date":"2016-09-01T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-223-tumble","changefreq":"weekly","video":[{"title":"2016:E281 - Minecraft - Episode 223 - Tumble","description":"The Achievement Hunter boys are checking out a new minigame for Minecraft Console Edition: Tumble! No! It's totally crazy different from Spleef. This isn't Spleef at all. What are you talking about? We didn't do a Things to Do in this four years ago. Spleef doesn't have cool-ass maps like this. Spleef doesn't have snowballs. I mean, yeah, sure, it does definitely have shovels, but snow way there were snowballs in Spleef. Yup yup. Totally totally different! Can we at least agree it's not anything like Quim or Queef? We can agree on that much, right? Right?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-223-tumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fb41917-c6a5-4be9-ac83-4c4c4f7962e0/sm/2013912-1472743417400-minecraftthumb.jpg","duration":2099,"publication_date":"2016-09-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battlefield-1-beta","changefreq":"weekly","video":[{"title":"2016:E280 - Battlefield 1 Beta \t","description":"Join Geoff, Ryan, and Matt as they explore Battlefield 1 Beta. It's the blind leading the blind into battle. Damnit Edwardo!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battlefield-1-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9333e134-893d-46b9-9756-aa7af4425c17/sm/2013912-1472680596636-LP_Battlefield1_THUMB.png","duration":908,"publication_date":"2016-08-31T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight-last-breath-dlc","changefreq":"weekly","video":[{"title":"2016:E279 - Dead by Daylight - Last Breath DLC","description":"Good-BYYYYYYE Nurse! The fellas flee from the newest baddie of the Last Breath DLC.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight-last-breath-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f7d60fa-5119-4d14-a681-bc012dd3a70d/sm/2013912-1472675778369-LP_DBD_LB_DLC_Thumb.jpg","duration":2345,"publication_date":"2016-08-31T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-worms-w-m-d-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E116 - Worms W.M.D. With The Stream Team – FULL STREAM","description":"The team that streams is taking a swing at one of Achievement Hunter's favorite games! Join this trio as they bip, glack, and glow each other in a few rousing rounds of Worms W.M.D..","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-worms-w-m-d-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ad7d6f1-2e18-427d-9d17-c4aa7defb08f/sm/2013912-1472657809978-worms_wmd.jpg","duration":6412,"publication_date":"2016-08-31T16:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-omnic-invasion","changefreq":"weekly","video":[{"title":"2016:E40 - Overwatch - Omnic Invasion","description":"All this Sombra ARG nonsense is getting out of hand. Is she hacking all the Omnics and making them attack the innocent, poor Overwatch gang? Maybe? Maybe not. Who fuckin' knows at this point? Achievement Hunter, with the help of Etika and Lannan \"LazarBeam\" Eacott, are fighting off the Omnic horde and trying to win one for the good of the actual real people. \n\nCheck out Etika's channel: https://www.youtube.com/user/EWNetwork\n\nCheck out Lannan's channel: https://www.youtube.com/channel/UCw1SQ6QRRtfAhrN_cjkrOgA\n\nThanks to Force Gaming for coming up with the idea - check out his original video here: https://www.youtube.com/watch?v=br-SL8RjVXQ","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-omnic-invasion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d69a237-30ea-451a-8b91-1788aa838fc6/sm/2013912-1472599053032-TTD_Overwatch_OmnicInvasion_Thumb.png","duration":698,"publication_date":"2016-08-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-episode-2","changefreq":"weekly","video":[{"title":"2016:E346 - World's First Video Game Superhero? - The Know","description":"In a city lost to cheaters, where players can no longer rely on VAC for protection... ONE MAN rises from the ashes of crime and aimbots. He is... VACMAN. \n\n\n\n\nSOURCES: \n\nPC Gamer Report: http://www.pcgamer.com/how-one-csgo-player-took-catching-hackers-into-his-own-hands/ \n\nAndroidL Reddit Thread: https://www.reddit.com/r/GlobalOffensive/comments/43edee/how_i_got_3000_hackers_vac_banned/ \n\nreceiven Reddit Thread: https://www.reddit.com/r/GlobalOffensive/comments/277dks/how_i_got_300_cheaters_banned/?limit=500 \n\n\n\n\nWritten By: Lawrence Sonntag \n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag \n\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow \n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow \n\n\n\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\n\nAchievement Hunter: http://achievementhunter.com \n\nBusiness Inquiries: http://bit.ly/1DZ77uy \n\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum \n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0 \n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4 \n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj \n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx \n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e151ee65-7eb5-4f32-845a-51ac9018fe2b/sm/1533704-1462399565473-FH_Thumb_10_copy_1.jpg","duration":368,"publication_date":"2016-05-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-civil-war-best-comic-book-movie-e-v-e-r","changefreq":"weekly","video":[{"title":"2016:E29 - Civil War: Best Comic Book Movie EVER?","description":"Civil War's out this weekend, and if all the reviews are to believed, it's the best dude-fight movie ever. It's got shield dudes, iron dudes, spider dudes, and other dudes, all fighting each other. That's enough to make us throw our wallets at the screen.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-civil-war-best-comic-book-movie-e-v-e-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f06037d6-8212-491a-9b12-2a94b86f4ae6/sm/238166-1462393127691-thumb_idea_3.jpg","duration":486,"publication_date":"2016-05-04T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-devs-trash-call-of-duty","changefreq":"weekly","video":[{"title":"2016:E345 - Battlefield Devs SLAM Call of Duty","description":"Battlefield and Call of Duty are duking it out! Not with bullets and explosions, but with snarky Twitter posts. COD released it's trailer for Infinite Warfare ahead of Battlefield 5's reveal event this week and some developers from DICE decided to chime in with their opinions of it via Twitter. Now we all get to bask in the drama.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-devs-trash-call-of-duty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f27379a0-d7a9-4f74-8b62-bfeb12d598d6/sm/238166-1462317884332-thumbnail_v3.jpg","duration":409,"publication_date":"2016-05-03T23:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-more-oculus-problems-space-jam-2-official-wow-vanilla-server","changefreq":"weekly","video":[{"title":"2016:E32 - More Oculus Problems + Space Jam 2 + Official WOW Vanilla Server","description":"Come on and slam and welcome to the roundup. We have info about more Oculus VR issues, Space Jam 2 has a Fast & Furious director and Blizzard talks to the operators vanilla WOW server Nostalrius.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-more-oculus-problems-space-jam-2-official-wow-vanilla-server","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58489692-cb28-49bc-acb8-8e3b5dcd92aa/sm/238166-1462300010859-thumb_r1.jpg","duration":466,"publication_date":"2016-05-03T19:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-ratchet-and-clank-movie-sucks","changefreq":"weekly","video":[{"title":"2016:E28 - Ratchet and Clank Movie Sucks","description":"The weekend box-office numbers are in and the new video game movie Ratchet & Clank, tanked. However the new Ratchet & Clank video game is the fastest selling in the series history. Will there ever be a truly great movie based on a video game?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-ratchet-and-clank-movie-sucks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f30b2906-96a4-40ca-b8f0-0825db35a57e/sm/238166-1462232123522-thumbnail.jpg","duration":556,"publication_date":"2016-05-02T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-10-chance-of-human-extinction-this-century","changefreq":"weekly","video":[{"title":"2016:E57 - Humans Could Go EXTINCT This Century?","description":"Yes, we are all going to die but maybe sooner than you'd think. New data from the Global Challenges Foundation shows the likelihood of massive human catastrophe in the next century to be around 10%. That means there's a better chance of doomsday than dying in a car accident. Or choking. Or being eaten by a shark. Or getting hit by lightning. Or meeting an angry hippo. I mean, those all sound like pretty great stories for your family to tell, not that you'd be around to share the laughs. But I guess if we're all extinct no one's laughing. Except hyenas, maybe. They weren't included in this analysis.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-10-chance-of-human-extinction-this-century","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f15532f7-b306-4b39-a69f-c433371d00b0/sm/238166-1462227651370-thumbnail_v2.jpg","duration":547,"publication_date":"2016-05-02T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-modern-warfare-remastered-new-call-of-duty-announced-the-know","changefreq":"weekly","video":[{"title":"2016:E344 - Modern Warfare Remastered, New Call of Duty Announced! - The Know","description":"New year, new Call of Duty. But no, guys, you don't understand. THIS is the bad one. THIS is where it'll all change. What do you mean you're buying it? Well I guess I'll buy it too.\n\n\n\nSOURCES:\n\nGematsu Leak Report: http://gematsu.com/2016/05/call-duty-infinite-warf...\n\nVid.me Leak Backup: https://vid.me/4x0F\n\nActivision Press Release: http://investor.activision.com/releasedetail.cfm?R...\n\nTwitch Reveal Announcement: https://twitter.com/InfinityWard/status/7268864657...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\n\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-modern-warfare-remastered-new-call-of-duty-announced-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c639681-2644-479c-8f2f-62593e4e33ec/sm/2371242-1462231455295-FH_Thumb_10_copy_17.jpg","duration":545,"publication_date":"2016-05-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-rockstar-making-bible-game","changefreq":"weekly","video":[{"title":"2016:E343 - Rockstar Making BIBLE Game?","description":"Yes, you read that title correctly, a Biblical Rockstar game could be a thing that exists. Records have surfaced showing Rockstar has filed a trademark for the word \"Judas\" leading to some speculation that Grand Theft Bethlehem may one day be a reality. Just imagine the other 11 disciples DLC.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-rockstar-making-bible-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6059b617-f8ca-4292-884e-7751ac0f5992/sm/238166-1461969783937-rock_star_bible_game.jpg","duration":469,"publication_date":"2016-04-30T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-5-what-we-want-the-know","changefreq":"weekly","video":[{"title":"2016:E342 - Battlefield 5: What We Want! - The Know","description":"We turned a single teaser website into over five minutes of informative talking, which if you ask us is enough reason to watch this video in the first place. \n\n\n\nSOURCES:\n\nBattlefield Teaser Site: http://www.battlefield.com/event\n\nSwiss Battlefield 5 Listing: https://twitter.com/Doctor_Cupcakes/status/7031889...\n\nProbably Fake Reddit Post: https://www.reddit.com/r/battlefield_4/comments/4c...\n\n\n\nOur Fake Reddit Coverage: \n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-5-what-we-want-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19b56e3a-2278-4980-8028-0ceeaa470826/sm/2371242-1461968837890-FH_Thumb_10_copy_12.jpg","duration":698,"publication_date":"2016-04-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-game-critic-trolls-you-tube","changefreq":"weekly","video":[{"title":"2016:E56 - Jim Sterling TROLLS YouTube","description":"Outspoken YouTube personality and game critic, Jim Sterling has found a novel way to combat aggressive copyright claims. By trolling the copyright owners into fighting each other. Will YouTube's recent changes to content ID policy effect this new tactic?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-game-critic-trolls-you-tube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee660316-e76a-42fd-b59e-ae4770400166/sm/238166-1461965293081-yt_vs_js_thumb_4.jpg","duration":600,"publication_date":"2016-04-29T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ps4-still-winning-console-war","changefreq":"weekly","video":[{"title":"2016:E341 - PSN Bigger Than ALL of Nintendo","description":"Release the sales numbers! The financial reports for Sony, Microsoft, and Nintendo are in, and they're full of shocking data that's really not all that shocking (hint: PS4 and PSN is kicking lots of ass).","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ps4-still-winning-console-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89487093-d5cd-447d-88a5-808d6ff689c6/sm/238166-1461890589400-psn_grater_than_all_of_nintendo_2.jpg","duration":581,"publication_date":"2016-04-29T00:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-china-creates-armed-police-dalek","changefreq":"weekly","video":[{"title":"2016:E55 - Armed Robot Police EXTERMINATE","description":"China took a VERY different lesson from every sci-fi movie ever, because they decided building an autonomous robot police officer capable of suppressing riots sounded like a GREAT idea. \n\nSponsored by Shari's Berries! Send your mom freshly dipped strawberries for $19.99. Just visit Berries.com, click the microphone in the top right corner, and use offer code THE KNOW.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-china-creates-armed-police-dalek","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02d6fd05-2220-4f8e-9022-a3e07f6bdcae/sm/24363-1461883455718-police_robot.jpg","duration":601,"publication_date":"2016-04-28T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-20160428-new-xbox-hardware-at-e3-pokemon-go-leak-uncharted-heist","changefreq":"weekly","video":[{"title":"2016:E31 - New Xbox Hardware at E3 + Pokemon GO Leak + Uncharted Heist","description":"Oh hello, we have a roundup for you. Reports of new Xbox hardware at E3, Pokemon GO gameplay footage leaked, Uncharted 4 stolen and more.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-20160428-new-xbox-hardware-at-e3-pokemon-go-leak-uncharted-heist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e54d5eb8-ccb9-48a6-9da0-a0b3ffd0a26b/sm/238166-1461865978900-Roundup_Thumbnail_42_8.jpg","duration":446,"publication_date":"2016-04-28T19:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-154","changefreq":"weekly","video":[{"title":"2016:E154 - Zelda & The NX DELAYED? - #154","description":"Join Gus Sorola, Jeremy Dooley, Ryan Haywood and Miles Luna as they discuss The NX delay, Rainbow Six Siege, PAX East and more on this week's The Patch! This episode originally aired on April 27, 2016. Also, be sure to stick around for the entire episode to catch a special interview with Duncan Jones and Robert Kazinsky of the new WARCRAFT movie. Sponsored by Blue Apron (http://cook.ba/1XWofvl), MeUndies (http://bit.ly/26vjP4t) and ProFlowers (http://bit.ly/1XWpevx)\n\n\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2016-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dcc2202-4147-4246-8d7c-7cc14768c878/sm/690915-1461859209782-p154_-_TEMP_THUMB.jpg","duration":4787,"publication_date":"2016-04-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-is-the-next-call-of-duty-infinite","changefreq":"weekly","video":[{"title":"2016:E340 - Call of Duty: Infinite Warfare LEAKS","description":"Infinite Call of Duty games? That's debatable, but the next COD game is slated to be titled Call of Duty: Infinite Warfare. News of a remaster of COD 4: Modern Warfare has also leaked.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-is-the-next-call-of-duty-infinite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2181afb5-4f78-4673-a42d-94dbbceb788d/sm/238166-1461798621413-call_of_duty_thumb_DARK.jpg","duration":438,"publication_date":"2016-04-28T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-nx-s-t-r-e-a-m-i-n-g-s-u-b-s-c-r-i-p-t-i-o-n-based-the-know","changefreq":"weekly","video":[{"title":"2016:E339 - Nintendo NX STREAMING, SUBSCRIPTION-Based? - The Know","description":"We offer pure speculation on what the NX might be based on market analysis. That's a lot of big words to say that we think it'll be a streaming box with all the Marios you can handle. Check out our reasoning or just tell us we're stupid in the comments!\n\n\n\nSOURCES:\n\nPrevious NX Report: \n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, Elyse Willems, and Lawrence Sonntag\n\n\n\nFollow The Know on Twitter: http://twitter.com/RT_TheKnow\n\nFollow The Know on Facebook: http://facebook.com/RT.TheKnow\n\nRooster Teeth Store: http://bit.ly/1rH5ixT \n\nRooster Teeth: http://roosterteeth.com/ \n\nAchievement Hunter: http://achievementhunter.com\n\nBusiness Inquiries: http://bit.ly/1DZ77uy\n\nSubscribe to the RT Channel: http://bit.ly/13y3Gum\n\nSubscribe to the Let's Play Channel: http://bit.ly/11ac5D0\n\nSubscribe to The Know Channel: http://bit.ly/1zhUav4\n\nSubscribe to the Funhaus Channel: http://bit.ly/17qQNJj\n\nSubscribe to the Slow Mo Guys Channel: http://bit.ly/OqINYx\n\nSubscribe to the Game Fails Channel: http://bit.ly/15RbCXV","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-nx-s-t-r-e-a-m-i-n-g-s-u-b-s-c-r-i-p-t-i-o-n-based-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26d85aa7-77fb-459d-bd0d-ce012b38634a/sm/2371242-1461795577506-FH_Thumb_10_copy_8.jpg","duration":595,"publication_date":"2016-04-27T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-release-date-and-e3-plans-announced","changefreq":"weekly","video":[{"title":"2016:E338 - Nintendo NX Release Date REVEALED","description":"The release date for Nintendo's next console has been announced, as well as details about the big N's plans for E3 this year and the next installment in the Zelda series.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-release-date-and-e3-plans-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/448dd555-42fd-4eed-a8eb-926790aecc9a/sm/238166-1461790783144-Nx_Thumb_Final.jpg","duration":521,"publication_date":"2016-04-27T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-fake-hackers-get-100-k","changefreq":"weekly","video":[{"title":"2016:E54 - Fake Hackers Get $100K","description":"Want to get rich? Just fake a DDoS attack! It made one group of cybercriminals a stupid amount of money. They'll also probably end up in jail, but at least they got money for not doing anything. \n\n\n\nSponsored by Shari's Berries! Send your mom freshly dipped strawberries for $19.99. Just visit http://www.berries.com click the microphone in the top right corner, and use offer code THE KNOW.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-fake-hackers-get-100-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0ed9041-4d22-4a5c-9803-0809e6546c0b/sm/238166-1461709420923-fake_hackers_2.jpg","duration":514,"publication_date":"2016-04-26T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-nintendo-games-heist-borderlands-3-doctor-strange-controversy","changefreq":"weekly","video":[{"title":"2016:E30 - Nintendo Games Heist + Borderlands 3 + Doctor Strange Controversy","description":"Hey it's roundup time. We have stories on a shipment of Nintendo games being stolen, Borderlands 3 confirmed and the Dr. Strange movie casting controversy.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-nintendo-games-heist-borderlands-3-doctor-strange-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fd99667-c0f1-4f64-8ce2-b1db71b57a7b/sm/238166-1461700404609-26_roundup.jpg","duration":474,"publication_date":"2016-04-26T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-e-sports-bans-porn","changefreq":"weekly","video":[{"title":"2016:E337 - eSports BANS Porn","description":"Pornography? In my eSports? Well not anymore. The YouPorn sponsored eSports team has been banned from participating in competitions organized by the Electronic Sports League.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-e-sports-bans-porn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a22db0f4-54b7-4420-a6d3-8aa726d8225c/sm/238166-1461627852813-esports3_.jpg","duration":547,"publication_date":"2016-04-25T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-division-glitch-f-a-k-e-d-internet-t-r-o-l-l-e-d-the-know","changefreq":"weekly","video":[{"title":"2016:E336 - Division Glitch FAKED, Internet TROLLED? - The Know","description":"We may not have been fast enough to report on the original story, but we're sure as shit ready to swim in its wake and pretend to be smarter than everyone else. Gotcha, blogging fatcats!\n\n\n\nSOURCES:\n\nOriginal (Fake) Glitch Post: https://www.reddit.com/r/thedivision/comments/4fs4...\n\n1.1 Patch Notes: http://tomclancy-thedivision.ubi.com/game/en-US/ne...\n\nCurrent List of Division Glitches: https://www.reddit.com/r/thedivision/comments/4gc1...\n\nApology / Admission Post: https://www.reddit.com/r/thedivision/comments/4g6o...\n\nLegitimate Falcon Lost Guide: https://www.reddit.com/r/thedivision/comments/4frn...\n\nEurogamer Report: http://www.eurogamer.net/articles/2016-04-22-as-ub...\n\nIGN Report: http://www.ign.com/articles/2016/04/22/the-divisio...\n\nGamespot Google Cache: http://archive.is/NuUvP\n\nGISkid Comment: https://www.reddit.com/r/thedivision/comments/4fs4...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, James Willems, Elyse Willems, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-division-glitch-f-a-k-e-d-internet-t-r-o-l-l-e-d-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/413697b5-bd51-480f-943d-664990d5fedd/sm/2371242-1461626254621-FH_Thumb_10_copy_2.jpg","duration":623,"publication_date":"2016-04-25T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-our-world-is-a-simulation","changefreq":"weekly","video":[{"title":"2016:E53 - Our World is a Simulation?","description":"Is this world even real? According to astrophysicist Neil Degrasse Tyson, maybe not. At the recent Isaac Asimov memorial debate he stated that he thinks the chances of our universe being a computer simulation is \"very high\".\n\n\n\nWritten By: Eddy Rivas\n\nHosted By: Meg Turney & Gray Haddock","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-our-world-is-a-simulation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bb906f3-0654-4530-8e3f-667d3e503a89/sm/238166-1461626554134-thumb.jpg","duration":462,"publication_date":"2016-04-25T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-e-sports-cheaters-arrested","changefreq":"weekly","video":[{"title":"2016:E335 - eSports Cheaters Arrested","description":"It's like a real sport, on account of the match fixing and illegal gambling! A bunch of Starcraft 2 players have been arrested (again) for fixing matches, and one of the money men is still on the lam. Get him, boys!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-e-sports-cheaters-arrested","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e088991-fa5a-4a76-aca1-a3caf826ff4b/sm/238166-1461363197702-thumbnail.jpg","duration":410,"publication_date":"2016-04-22T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-we-re-going-to-live-forever","changefreq":"weekly","video":[{"title":"2016:E52 - Immortality is REAL?","description":"Google's tech whisperer has called a lot of future technology that's come true. Now he says we could all be immortal by 2029. Just in time for all of us to hit mid-life crises!","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-we-re-going-to-live-forever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d372be87-c77b-499c-bf99-9a94cf06617a/sm/238166-1461359863732-thumbnail.jpg","duration":480,"publication_date":"2016-04-22T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-vr-a-f-a-i-l-u-r-e","changefreq":"weekly","video":[{"title":"2016:E51 - VR FAILING Already?","description":"Is VR floundering? New data forecasts predict virtual reality is not doing as well as first thought. Expectations have been reduced by over 20 percent following the issues with the Oculus and Vive launches. Will VR ever achieve mass public adoption?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-vr-a-f-a-i-l-u-r-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10797ab4-9f3f-48e9-818c-1695011ddd34/sm/238166-1461278189599-thumbnail.jpg","duration":462,"publication_date":"2016-04-21T22:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-goodbye-xbox-360-nasa-ufo-conspiracy-ghost-in-the-shell-controversy","changefreq":"weekly","video":[{"title":"2016:E29 - Goodbye Xbox 360 + NASA UFO Conspiracy + Ghost in the Shell Controversy","description":"We have a round up of news for you! The Xbox 360 has been discontinued by Microsoft, UFO enthusiasts are excited about footage taken from the ISS and the casting for the Ghost in the Shell remake is causing a racial ruckus.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-goodbye-xbox-360-nasa-ufo-conspiracy-ghost-in-the-shell-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bedbca36-7487-493c-894a-afca9aaec95e/sm/238166-1461257158532-Roundup_Thumbnain.jpg","duration":551,"publication_date":"2016-04-21T20:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-153","changefreq":"weekly","video":[{"title":"2016:E153 - How DARK are our SOULS? – #153","description":"Join Gus Sorola, Adam Ellis, Meg Turney, and Ryan Haywood as they discuss Dark Souls III, Overwatch, World of Warcraft, and more on this week's The Patch! This episode originally aired on April 20, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45050ce9-3402-41e2-9c56-04973ac7733d/sm/2013912-1461254993285-p153_-_THUMB.png","duration":3702,"publication_date":"2016-04-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-utah-state-declares-war-on-porn","changefreq":"weekly","video":[{"title":"2016:E50 - The War on Porn","description":"State government wants to prohibit porn? Yep, according to a new resolution in Utah that wants to recognize \"that pornography is a public health hazard\" and a \"epidemic that is harming the citizens of Utah\". Just how much porn are they watching in Utah anyway?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-utah-state-declares-war-on-porn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/802165a5-04c3-401b-be97-dd18f08a902f/sm/238166-1461194818063-thumbnail.jpg","duration":504,"publication_date":"2016-04-20T23:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-star-fox-zero-is-it-good","changefreq":"weekly","video":[{"title":"2016:E334 - Star Fox Zero: Is It Good?","description":"Credit to DarkStory at DeviantArt for the thumbnail: http://darkstory.deviantart.com/art/The-wonders-of...\n\nWe've finally got a new Star Fox, but is it what we wanted after all? We run down the biggest reviews to see what critical consensus is on the new space animal shooty game.\n\nSOURCES:\n\nStar Fox Zero Metacritic Page: http://www.metacritic.com/game/wii-u/star-fox-zero...\n\nVentureBeat Review: http://venturebeat.com/2016/04/20/star-fox-zero-is...\n\nIGN Review: http://www.ign.com/articles/2016/04/20/star-fox-ze...\n\nGame Informer Review: http://www.gameinformer.com/games/star_fox_zero/b/...\n\nGiant Bomb Review: http://www.giantbomb.com/reviews/star-fox-zero-rev...\n\nPolygon It-Was-Hard-So-I-Quit Not-Review: http://www.polygon.com/2016/4/20/11466308/not-a-re...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-star-fox-zero-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fc96fbf-7bea-490e-aa61-91a6e58ec613/sm/1788482-1461187998147-fh_thumb_10_copy.jpg","duration":442,"publication_date":"2016-04-20T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-20160420-next-gen-consoles-finished","changefreq":"weekly","video":[{"title":"2016:E333 - No More New Consoles?","description":"Maybe we owe Michael Pachter an apology for making fun of him when he said there wouldn't be any more console generations because... even Sony's not sure they'll make another one. Sorry, Mike!\n\nSponsored By: Loot Anime. Get $3 off a new subscription when you use offer code THEKNOW http://bit.ly/1Rxxa1q","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-20160420-next-gen-consoles-finished","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/824902dd-ac42-41f6-9d26-a632b55f8014/sm/24363-1461180371777-thumbnail.jpg","duration":498,"publication_date":"2016-04-20T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-gamers-better-than-quantum-computers","changefreq":"weekly","video":[{"title":"2016:E49 - Gamers BETTER Than Quantum Computers","description":"Gamers have helped advance quantum computing by playing a game that improves quantum computer efficiency issues. The key is, gamers are better at this then even quantum computers themselves. That's right gamers have quantum broken, quantum computers high score.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-gamers-better-than-quantum-computers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c063e06-d0b0-4e8c-9b2d-943dea37e858/sm/238166-1461113222570-thumb.jpg","duration":434,"publication_date":"2016-04-20T00:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-p-s4-5-called-n-e-o-specs-revealed","changefreq":"weekly","video":[{"title":"2016:E332 - PS4.5 Called NEO, Specs REVEALED","description":"The rumored PS4.5 has a shiny new codename, \"Neo\". Yeah like from the Matrix. That is not the real news here though, it's what's inside that counts. We have information on specs for the new hardware. Will this new Playstation be the chosen one?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-p-s4-5-called-n-e-o-specs-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16f6e81c-2765-450f-90f7-d6ac5f5d3785/sm/238166-1461093145973-batman_avatar_spiderman_2.jpg","duration":472,"publication_date":"2016-04-20T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-20160419-tuesday-round-up","changefreq":"weekly","video":[{"title":"2016:E28 - Arkham HD Collection + HOW MANY Avatar Movies + Spider-Man Deadpool Crossover","description":"Time for a Tuesday round up. A HD collection of the Batman Arkham games has apparently leaked, James Cameron has major plans for Avatar sequels and Spiderman and Deadpool are bringing movie studios together for a possible on screen collaboration.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-20160419-tuesday-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64473a44-ab0b-4fe5-a8e1-35908be65b0b/sm/238166-1461082671281-batman_avatar_spiderman_thumb.jpg","duration":472,"publication_date":"2016-04-19T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-game-stop-to-publish-ruin-g-a-m-e-s","changefreq":"weekly","video":[{"title":"2016:E331 - GameStop to Publish, RUIN GAMES?","description":"Probably not ruin, but nobody clicks on this stuff unless we put an all-capped negative word in the title. GameTrust sounds like a good deal for everyone, but that's how it always starts out isn't it? Pretty soon they'll be giving you five dollars for your brand new IP that you only bought yesterday god dammit.\n\nSOURCES:\n\nSong of the Deep Announcement: https://www.youtube.com/watch?v=1x1l7mii-ZQ\n\nGamesIndustry.biz Interview: http://www.gamesindustry.biz/articles/2016-04-18-g...\n\nGamasutra Interview: http://gamasutra.com/view/news/270573/GameStop_ann...\n\nGameStop Acquires ThinkGeek: http://www.theverge.com/2015/6/2/8709581/gamestop-...\n\nGameStop Acquires Kongregate: http://techcrunch.com/2010/07/27/gamestop-kongrega...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-game-stop-to-publish-ruin-g-a-m-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e8f1bfb-9bb7-4fcc-9047-c18148038934/sm/1788482-1461026670880-fh_thumb_10_copy.jpg","duration":519,"publication_date":"2016-04-19T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-division-players-p-u-n-i-s-h-e-d","changefreq":"weekly","video":[{"title":"2016:E330 - Division Players PUNISHED?","description":"Demerits for the Division? A exploit in Ubisoft's online shooter RPG has allowed players to gain high level gear with little effort. This has caused some turmoil for the in-game economy. Ubisoft has threatened bans for players using these exploits. What does this mean for the future of the Devision?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-division-players-p-u-n-i-s-h-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ddd1eda-c631-4525-bbfe-9542558df3da/sm/238166-1461024060881-idea_5.jpg","duration":459,"publication_date":"2016-04-19T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-everybody-hates-doom","changefreq":"weekly","video":[{"title":"2016:E329 - Everybody HATES Doom?","description":"The public beta for the new Doom game has launched and the user reviews are... less than stellar. Does this spell doom for the game's full launch? Can bad betas seriously hurt game sales?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-everybody-hates-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/454a24e7-1a39-4b6d-83bd-8b708051a7da/sm/238166-1461016044555-thumbnail.jpg","duration":460,"publication_date":"2016-04-18T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-pokemon-live-action-movie","changefreq":"weekly","video":[{"title":"2016:E27 - Pokemon Live Action Movie","description":"Could a live action Pokemon movie be a reality? Rights to make a Poke-film have reportedly gone up for auction with multiple big name studios competing to be the very best. What would the cast of a live action Pokemon film look like? Gotta cast 'em all gotta cast 'em all!","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-pokemon-live-action-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e32ed362-9db5-4c25-b20b-f395b5ec49ea/sm/238166-1460759687895-pokemon_thumb.jpg","duration":462,"publication_date":"2016-04-15T23:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-red-dead-redemption-2-map-l-e-a-k-e-d","changefreq":"weekly","video":[{"title":"2016:E328 - Red Dead Redemption 2 MAP LEAKED?","description":"Leaks and rumors are mounting for Red Dead Redemption 2. If it's real, this is our first look at the game's setting and environment. But is it real? The Internet... says no. But then yes.\n\n\n\nSOURCES:\n\nRDR 2 Map: http://i.imgur.com/aNuZxUn.jpg\n\nNeoGAF Thread: http://www.neogaf.com/forum/showthread.php?t=12072...\n\nMafia 3 Twitter: https://twitter.com/mafiagame/status/7195768803874...\n\nMideon's First NeoGAF Post: http://www.neogaf.com/forum/showthread.php?p=46348...\n\nTechRadar Report: http://www.techradar.com/us/news/gaming/this-is-th...\n\nPrevious RDR 2 Report: https://www.youtube.com/watch?v=ReE85zt36lc","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-red-dead-redemption-2-map-l-e-a-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe8cc100-8d44-4e2c-a975-5620b08c2e2d/sm/1788482-1460763835660-thumbnail_the_know_041516.jpg","duration":554,"publication_date":"2016-04-15T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-too-easy-on-copyright-2","changefreq":"weekly","video":[{"title":"2016:E46 - YouTube Too Easy on Copyright?","description":"Looks like the music industry has the DMCA takedown blues. More specifically they don't think that Youtube does a good enough job protecting their copyrighted content. Should Youtube be more strict in policing videos?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-too-easy-on-copyright-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c12cb14-f53e-45b4-b998-9a23f35d61a1/sm/238166-1460729180424-tbumb_2.jpg","duration":529,"publication_date":"2016-04-15T14:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-blizzard-attacked-with-d-do-s","changefreq":"weekly","video":[{"title":"2016:E327 - Blizzard Entertainment DDoS ATTACK","description":"What do you do when you're mad on the internet? You store up cereal box tokens and send away for a decoder ring! THEN you use that decoder ring to signal the DDoS Lizard people or whatever. Then you sit back and wait for whoever you're mad at to change their mind and do what you want. Apparently.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-blizzard-attacked-with-d-do-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cef5ee4-c5b2-469c-8929-944063fc9a87/sm/24363-1460675426509-thumbnail.jpg","duration":471,"publication_date":"2016-04-14T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-oculus-exclusives-cracked-division-characters-wiped-sex-toys-from-the-joker","changefreq":"weekly","video":[{"title":"2016:E27 - Oculus Exclusives CRACKED + Division Characters WIPED + Sex Toys from the Joker","description":"Is this a round up? You bet is is, here is what we have for you. You can now play Oculus games on the Vive, a Devision bug wipes character data and Jared Leto sends creepy presents to Suicide Squad co-stars.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-oculus-exclusives-cracked-division-characters-wiped-sex-toys-from-the-joker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10add9ac-69fd-4505-973d-6dd59315ed48/sm/238166-1460663203604-thumb.jpg","duration":518,"publication_date":"2016-04-14T19:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-152","changefreq":"weekly","video":[{"title":"2016:E152 - Ratchet & Clank: Spoiling Everything? – #152","description":"Join Gus Sorola, Kerry Shawcross, Ashley Jenkins, and Ryan Haywood as they discuss Ratchet & Clank, Golden Sun, Final Fantasy, and more on this week's The Patch! This episode originally aired on April 13, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3519661b-b627-4a4c-9240-0012fdc574ed/sm/2013912-1460648471221-p152_-_THUMB.jpg","duration":3788,"publication_date":"2016-04-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-launch-titles-leaked","changefreq":"weekly","video":[{"title":"2016:E326 - NX Launch Titles Leaked?","description":"Hey more Nintendo NX rumors, this time its launch titles. Will the NX launch lineup be full of Wii U ports? New leaks suggest it will.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-launch-titles-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40c48edc-417a-462b-8eb7-3d0ae981b025/sm/24363-1460591761797-thumbnail.jpg","duration":804,"publication_date":"2016-04-13T23:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gta-online-makes-500-million-the-know","changefreq":"weekly","video":[{"title":"2016:E325 - GTA Online Makes $500 MILLION - The Know","description":"A recent lawsuit has revealed GTA Online's revenues, and holy hell is it a lot. Who knew that selling hats made so much money? Oh wait, basically everyone.\n\n\n\nSOURCES:\n\nGamespot Report: http://www.gamespot.com/articles/gta-5s-online-mod...\n\nThe Know Lawsuit Report: https://www.youtube.com/watch?v=ilEO2D4-FQ4\n\nFull Lawsuit Filing: https://www.scribd.com/doc/308200451/Benzies-v-Roc...\n\nSurveyMonkey Miitomo Analysis: https://www.surveymonkey.com/business/intelligence...\n\nFallout 4 Sales: http://fortune.com/2015/11/16/fallout4-is-quiet-be...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gta-online-makes-500-million-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/349619d1-6e20-4bea-9941-e5026648b03c/sm/1788482-1460582198102-fh_thumb_10_copy.jpg","duration":257,"publication_date":"2016-04-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-screw-mars-we-re-going-to-alpha-centauri","changefreq":"weekly","video":[{"title":"2016:E42 - We Are Going Interstellar","description":"Russian billionaire Yuri Milner and Stephen Hawking have proposed a project to send space probes the size of iPhones to the nearest star system... using lasers?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-screw-mars-we-re-going-to-alpha-centauri","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94227d31-6498-4d3b-9440-8205d10877ff/sm/238166-1460581942263-thumbnail_or_something.jpg","duration":488,"publication_date":"2016-04-13T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gta-boss-rockstar-sue-each-other","changefreq":"weekly","video":[{"title":"2016:E324 - GTA Boss & Rockstar SUE EACH OTHER","description":"Grant Theft Litigation! Former Rockstar North studio head and GTA series producer Leslie Benzies is suing the company for millions of dollars. Rockstar's response to this? Sue him right back.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gta-boss-rockstar-sue-each-other","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8097a2d1-8965-4348-816e-e06fa4be445e/sm/238166-1460504125844-r_star_gta_thumb.jpg","duration":524,"publication_date":"2016-04-13T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-new-xbox-this-y-e-a-r","changefreq":"weekly","video":[{"title":"2016:E323 - New Xbox Hardware THIS YEAR?","description":"Could Microsoft be planning for an Xbox 1.5 after all? Filings with the FCC indicate they've got some new Xbox hardware up their sleeve, for a reveal in June. What else is in June? Oh, that's right. E3!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-new-xbox-this-y-e-a-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71e3dc28-97e8-4524-878e-299adfeb5376/sm/24363-1460497347661-thumbnail.jpg","duration":525,"publication_date":"2016-04-12T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-gears-of-war-4-trailer-infinity-wars-news-obama-loves-game-of-thrones","changefreq":"weekly","video":[{"title":"2016:E26 - Gears of War 4 Trailer + Infinity Wars News + Obama Loves Game of Thrones","description":"Its Tuesday round up time! A bunch of new trailers dropped including a Gears of War 4 and Titanfall 2. Early impressions of Captain America; Civil War are out, plus some news about the Marvel Infinity Wars movies and The president loves him some Game of Thrones.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-gears-of-war-4-trailer-infinity-wars-news-obama-loves-game-of-thrones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c14d236-156e-44c6-acc1-4a39e5870c2b/sm/238166-1460483998307-thumb.jpg","duration":456,"publication_date":"2016-04-12T18:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-game-decides-your-gender-for-you","changefreq":"weekly","video":[{"title":"2016:E322 - Your Gender DECIDED!","description":"Character customization? Nah. Choice? Nah. You know what you want in games? Realism! Rust is giving you everything you've ever wanted by taking away everything you've ever wanted! A new update assigns attributes to player avatars, including race and gender. Still has dick sliders too though.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-game-decides-your-gender-for-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c81cf16-3129-4de1-895a-03ca3c414bd3/sm/238166-1460415540969-thumb_idea.jpg","duration":487,"publication_date":"2016-04-11T23:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-evolution-studios-s-a-v-e-d","changefreq":"weekly","video":[{"title":"2016:E321 - Evolution Studios SAVED!","description":"We have the rare privilege of reporting entirely positive news today! The only catch is that probably nobody cares about racing games. Whatever. Welcome back Evolution Studios!\n\nSOURCES:\n\nGamesIndustry.biz Interview: http://www.gamesindustry.biz/articles/2016-04-05-e...\n\nCodemasters Layoffs in Early 2015: http://www.eurogamer.net/articles/2015-01-09-layof...\n\nCodemasters Ex-CEO Leaves: http://www.gamesindustry.biz/articles/2015-04-02-r...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-evolution-studios-s-a-v-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e35e639c-5c26-4208-a88d-f57825dfe230/sm/1788482-1460414757516-fh_thumb_10_copy.jpg","duration":356,"publication_date":"2016-04-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-streamer-says-kids-with-cancer-supposed-to-die","changefreq":"weekly","video":[{"title":"2016:E320 - Twitch Streamer vs Sick Kids","description":"Someone said something dumb? STOP THE PRESSES. This time it's a Twitch streamer, who may have celebrated a little bit too much during a fundraiser for children's cancer research and explained to all of us just why these kids are doomed. PLS DONATE!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-streamer-says-kids-with-cancer-supposed-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7cb947b-8f26-4eaf-b533-439f4c07b492/sm/24363-1460408172263-thumbnail.jpg","duration":486,"publication_date":"2016-04-11T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-kindred-spirits","changefreq":"weekly","video":[{"title":"2016:E4 - Lesbian Ghost Sex!?","description":"Join Gus Sorola, Meg Turney, Ryan Haywood, and Ashley Jenkins as they discuss the erotic ghost-themed visual novel Kindred Spirits on the Roof on this week's Patch Game Club! This episode originally aired on April 6, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-kindred-spirits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60ebe465-c140-4e71-95bf-a199186bd382/sm/2013912-1460144895562-Kindred_Spirits_-_THumb_4.jpg","duration":1060,"publication_date":"2016-04-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-link-s-a-g-i-r-l-on-the-n-x","changefreq":"weekly","video":[{"title":"2016:E318 - Link's a GIRL? On the NX?","description":"As long as Link looks like the thumbnail, we're pretty sure nobody will care. Here comes the Hero of Time wearing the Hero's Bikini! Quick, Link, use your gadgets to beat the boss! Bust out the tactical suntan lotion!\n\n\n\nSOURCES:\n\nEmily Rogers Tweets --\n\nhttps://twitter.com/ArcadeGirl64/status/7184515351...\n\nhttps://twitter.com/ArcadeGirl64/status/7184517000...\n\nhttps://twitter.com/ArcadeGirl64/status/7184518336...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-link-s-a-g-i-r-l-on-the-n-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/990f74a1-e721-4448-a544-3f7d1bb7dafd/sm/1788484-1460152010209-fh_thumb_10_copy_2.jpg","duration":704,"publication_date":"2016-04-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-7","changefreq":"weekly","video":[{"title":"2016:E26 - DC More Like MARVEL?","description":"Is DC trying to make its movies more like Marvel? Rumors say yes. Then they say no. They say they're funny. But could be MORE funny. Then don't expect funny... WHAT IS GOING ON?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4cf4258-8127-4a3d-8a39-776fb1c7a902/sm/24363-1460155916080-dc_vs_marvel.jpg","duration":497,"publication_date":"2016-04-08T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-vr-a-l-e-t-d-o-w-n","changefreq":"weekly","video":[{"title":"2016:E317 - VR Launch in TROUBLE?","description":"Congratulations, you bought a VR! When do you get it? WE DON'T KNOW? ISN'T THAT GREAT? You bought a game for your VR and it SUCKS? Whoops. Isn't being an early adopter fun?\n\n\n\nWe mock because we're jealous. Please give us a VR.\n\n\n\nSponsored By: Loot Anime! bit.ly/1Rxxa1q\n\nGet $3 off any new subscription when you use offer code THEKNOW.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-vr-a-l-e-t-d-o-w-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e862efe8-2819-48ca-8ded-a17dfa3a58ce/sm/238166-1460146495429-thumbnail.jpg","duration":623,"publication_date":"2016-04-08T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-star-wars-rogue-one-trailer","changefreq":"weekly","video":[{"title":"2016:E25 - Star Wars: Rogue One Teaser: What You Missed","description":"All rested up from The Force Awakens? Great! Time for more Star Wars! The Rogue One teaser is here, and we've combed over it for details so you don't have to.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-star-wars-rogue-one-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d88e83fa-2e1b-4ee0-8c3a-ad15f51ab8bd/sm/24363-1460064643791-thumbnail.jpg","duration":454,"publication_date":"2016-04-07T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-congressman-buys-steam-games-csgo-players-pranked-hacker-almost-gets-free-pizza-for-life","changefreq":"weekly","video":[{"title":"2016:E25 - Congressman Spends Funds on Games + CSGO $50K Prank + Good Guy Pizza Hacker","description":"Heyyyy it's a round up. A government official uses tax dollars to buy steam games. CS;GO shenanigans and pizza hackers and more.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-congressman-buys-steam-games-csgo-players-pranked-hacker-almost-gets-free-pizza-for-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5126f4d1-4859-428a-9afc-0b432d6f6b96/sm/238166-1460059309768-Roundup_Thumbnail_Template_v2.jpg","duration":558,"publication_date":"2016-04-07T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-stupid-sexy-robots-151","changefreq":"weekly","video":[{"title":"2016:E151 - Stupid, Sexy Robots! – #151","description":"Join Meg Turney, Ashley Jenkins, Gus Sorola, and Ryan Haywood as they discuss Sex Robots, Quantum Break, the \"launch\" of VR and, more more on this week's The Patch! This episode originally aired on April 6, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-stupid-sexy-robots-151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90ba55cc-af54-4070-84d5-79b283722be6/sm/2013912-1460042775296-p151_-_THUMB.jpg","duration":3690,"publication_date":"2016-04-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-quantum-break-b-r-o-k-e-n","changefreq":"weekly","video":[{"title":"2016:E316 - Quantum Break BROKEN?","description":"Is Quantum Break a shit-show of a PC port? The answer is yes. But maybe no. Whatever answer makes you click on this video, it's that one.\n\n\n\nSOURCES:\n\nPC Gamer Port Impressions: http://www.pcgamer.com/quantum-break-port-impressi...\n\nWCCFTech Port Impressions: http://wccftech.com/quantum-break-pc-disappointmen...\n\nNeoGAF PC Port Thread: http://www.neogaf.com/forum/showthread.php?t=12048...\n\nQuantum Break FAQ: http://community.remedygames.com/forum/games/quant...\n\n\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-quantum-break-b-r-o-k-e-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ebfd251-cf96-4da6-a25a-c434c4bb6db2/sm/1788484-1459984122275-fh_thumb_9_copy_55.jpg","duration":551,"publication_date":"2016-04-07T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-final-fantasy-vii-a-r-i-p-o-f-f","changefreq":"weekly","video":[{"title":"2016:E315 - Final Fantasy VII a RIP-OFF?","description":"Will the fantasy ever be final? Not if Square Enix has its way, as they confirm that the Final Fantasy 7 remake will be multiple full price games.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-final-fantasy-vii-a-r-i-p-o-f-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4792384-3f0f-4a53-bc7d-f17ab69ad3b4/sm/238166-1459982727447-ff7_thumb.jpg","duration":440,"publication_date":"2016-04-06T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-https-www-youtube-com-watch-v-iu2t-nl-an-c7m","changefreq":"weekly","video":[{"title":"2016:E41 - Robots: Touch My Butt FOR SCIENCE!","description":"What do you do when robots want you to grope them? You get interested, apparently. Don't blame yourself. It's science!","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-https-www-youtube-com-watch-v-iu2t-nl-an-c7m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8325fd78-e2d9-4fc0-aabf-f274ee7ac33f/sm/24363-1459981346790-touch_my_butt.jpg","duration":462,"publication_date":"2016-04-06T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-bandai-namco-owns-finishing-moves","changefreq":"weekly","video":[{"title":"2016:E314 - Bandai Namco OWNS Finishing Moves?","description":"Thanks to our friends The Creatures for visiting us! You should visit them at https://www.youtube.com/user/thecreaturehub","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-bandai-namco-owns-finishing-moves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb8de5c8-ef94-4008-aa8d-3146e34446bc/sm/238166-1459908942028-namco_2.jpg","duration":557,"publication_date":"2016-04-06T02:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-10","changefreq":"weekly","video":[{"title":"2016:E40 - Pirates Held Hostage! - The Know","description":"Avast ye' pirates! they be coming for yer browser. Well maybe, one company may start using ransomware to collect fines from pirates.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5797b811-5927-472a-baac-eeafd64c3725/sm/238166-1459905216458-pirates_get_ransomware.jpg","duration":424,"publication_date":"2016-04-06T01:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-no-xbox-one-half-new-god-of-war-4-leaks-solid-gold-nintendo","changefreq":"weekly","video":[{"title":"2016:E24 - No Xbox One Half + New God of War 4 Leaks + Solid Gold Nintendo","description":"Hey It’s roundup time again. Phil Spencer says no Xbox One Half, or one 1.5 or whatever you call it. Kratos goes all Norse mythology and you can buy a solid gold NES, if you really want to.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-no-xbox-one-half-new-god-of-war-4-leaks-solid-gold-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86ddd367-6dcd-43f2-b786-c602621ebc52/sm/238166-1459886278958-Roundup_Thumbnail_406.jpg","duration":542,"publication_date":"2016-04-05T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-people-already-hate-uncharted-4-s-ending","changefreq":"weekly","video":[{"title":"2016:E313 - People HATE Uncharted 4's Ending?","description":"Uncharted 4 is reportedly going to have a \"divisive\" ending. What could this mean for Nathan Drake?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-people-already-hate-uncharted-4-s-ending","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8dae6a2-a73e-4434-a01d-4d5c6cec08ff/sm/238166-1459819544455-Uncharted-4.jpg","duration":435,"publication_date":"2016-04-05T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-dark-souls-i-i-i-is-it-good","changefreq":"weekly","video":[{"title":"2016:E312 - Dark Souls III: Is it Good?","description":"Is the new installation in the dark souls series to die for? Find out what the critics think.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-dark-souls-i-i-i-is-it-good","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cd2c34a-6b8a-407e-bc64-09000b69a4bd/sm/238166-1459811161672-thumb.jpg","duration":411,"publication_date":"2016-04-05T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-april-fools-roundup-the-know","changefreq":"weekly","video":[{"title":"2016:E311 - April Fools Roundup - The Know","description":"Well Its that one day of the year where you don't know what news is real and what is fake. We round up some of the best April fools day stories.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-april-fools-roundup-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5657053e-7564-46ff-9b19-673618f3a8d4/sm/238166-1459556086595-april_thumb.jpg","duration":477,"publication_date":"2016-04-02T00:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-11","changefreq":"weekly","video":[{"title":"2016:E39 - Government Orders Reddit User Data - The Know","description":"Reddit's transparency report shows that the government might be after the sites user data. Does uncle sam want your reddit karma?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87ea89e8-3868-4c23-84c3-91bbc9350ac1/sm/238166-1459555547087-reddit_thumb.jpg","duration":344,"publication_date":"2016-04-02T00:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-halo-on-p-c","changefreq":"weekly","video":[{"title":"2016:E310 - NO HALO on PC?","description":"Boy, Xbox chief Phil Spencer is a big supporter of PC gaming, huh? Wait... what do you mean he still doesn't want to put Halo on PC? That's weird.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-halo-on-p-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41634b8e-1301-489a-a2fc-69839cc5d517/sm/24363-1459534292967-thumbnail.jpg","duration":470,"publication_date":"2016-04-01T18:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-employee-fired-after-harassment","changefreq":"weekly","video":[{"title":"2016:E309 - Fired Nintendo Employee Claims Harassment","description":"A Nintendo marketing representative has been let go from Nintendo, and she blames constant harassment from gamers. Except... there seems to be a bit more to it. Boy, this one should go over well.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-employee-fired-after-harassment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/510e8e77-aad4-4509-822a-cb877ae6d531/sm/24363-1459468797076-thumbnail.jpg","duration":615,"publication_date":"2016-04-01T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-aaron-paul-s-final-fantasy-everyone-wants-to-be-deadpool-chatbot-s-suicide-by-spam-the-know","changefreq":"weekly","video":[{"title":"2016:E23 - Aaron Paul's Final Fantasy + Everyone Wants to be Deadpool + Chatbot's Suicide by Spam - The Know","description":"It's Final Fantasy, starring Game of Thrones people and.... Aaron Paul? Also, Deadpool is doing just great, Ben Affleck REALLY likes Batman so he wrote his own script, a satellite is careening through space.... basically, it's a Thursday.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-aaron-paul-s-final-fantasy-everyone-wants-to-be-deadpool-chatbot-s-suicide-by-spam-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed9ed743-4306-477d-bcff-f76624b39f67/sm/238166-1459463712381-thumb_3.jpg","duration":557,"publication_date":"2016-03-31T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-150","changefreq":"weekly","video":[{"title":"2016:E150 - DAT ASS: A Thoughtful Discussion... – #150","description":"Join Meg Turney, Ashley Jenkins, Burnie Burns and Ryan Haywood as they discuss Overwatch's butt controversy, Shadow Complex, That Dragon, Cancer and more on this week's The Patch! This episode originally aired on March 30, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3424ee20-8b54-438e-a3b9-21bac0cb2bea/sm/2013912-1459440914028-p150_-_THUMB.jpg","duration":4314,"publication_date":"2016-03-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-16-year-old-hacks-game-onto-steam","changefreq":"weekly","video":[{"title":"2016:E308 - Teen hacks Steam","description":"Gosh darn teenagers, what wont they hack? This time it looks like a 16 year old has managed to hack is way into Steam, with some interesting results.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-16-year-old-hacks-game-onto-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96c7e394-9c0f-415a-92d7-f3d6e59bc57d/sm/238166-1459387689265-teen_hacks_steam.jpg","duration":521,"publication_date":"2016-03-31T01:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-9","changefreq":"weekly","video":[{"title":"2016:E38 - Cell Phone Walking BANNED?","description":"First they came for our cell phone driving. Then they came for our cell phone walking. Who will speak when they come for our cell phone movie theatering?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d500e66-83e9-4ccd-b464-f268f3f84acf/sm/238166-1459377552620-thumbnail.jpg","duration":496,"publication_date":"2016-03-30T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-call-of-duty-in-s-p-a-c-e","changefreq":"weekly","video":[{"title":"2016:E306 - Next Call of Duty IN SPACE?","description":"Boy Howdy. Another leak? Is this Christmas or March? Why not both? Two different reports claim that the next Call of Duty is...wait for it...OUT OF THIS WORLD! Thank you very much. We'll be here all week.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-call-of-duty-in-s-p-a-c-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65b247f1-2c2e-4990-ae94-2d9c8499c8af/sm/24363-1459297020376-thumbnail.jpg","duration":395,"publication_date":"2016-03-30T00:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-overwatch-butts-too-s-e-x-y","changefreq":"weekly","video":[{"title":"2016:E304 - Overwatch TOO SEXY?","description":"Welcome to Butt Gate. Because butts are a problem, especially for fans of one Overwatch character. They don't appreciate her cheeky victory pose.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-overwatch-butts-too-s-e-x-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6456f028-77e6-4c44-8ae7-13ea9bd9de01/sm/24363-1459294683278-thumbnail.jpg","duration":492,"publication_date":"2016-03-29T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-solid-snake-actor-humiliated-by-kojima-valve-guilty-in-court-e-sports-cheaters-banned","changefreq":"weekly","video":[{"title":"2016:E22 - Solid Snake Actor Humiliated by Kojima? + Valve Guilty in Court + eSports Cheaters Banned","description":"Sad Afflecks. Sad Hayters. Sad Valve. Sad cheaters. News is so depressing. Good thing we've got a lot of it!\n\nStories:\n\nDavid Hayter Humiliated by Kojima\n\nBatman v Superman Makes a Ton of Money\n\nValve Guilty in Court\n\nSocial Media = Depression?\n\nHeroes of the Dorm Team Banned\n\nDeep Mind AI Takes on Hearthstone\n\nWhy Epic Quit Gears of War\n\nFBI Didn't Need a Back Door After All","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-solid-snake-actor-humiliated-by-kojima-valve-guilty-in-court-e-sports-cheaters-banned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c64b7a2-328d-496b-a05d-4c35a0f40552/sm/24363-1459287763844-thumbnail.jpg","duration":426,"publication_date":"2016-03-29T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-grand-theft-auto-6-tokyo-drift-the-know","changefreq":"weekly","video":[{"title":"2016:E303 - Grand Theft Auto 6, Tokyo Drift?","description":"It's a glorious day, because apparently Grand Theft Auto 6 is in development. Sure, you can file this one under \"no shit,\" but it's nice to hear confirmation regardless.\n\n\n\nSOURCES:\n\nTech Radar Report: http://www.techradar.com/us/news/gaming/rockstar-c...\n\nWe'd link the trademark filings too but the government website doesn't support permalinks.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-grand-theft-auto-6-tokyo-drift-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8da831cb-ee83-4aa1-98b7-16aac4977f39/sm/1788484-1459203107004-Cr1tikalLIVEthumbnail.png","duration":394,"publication_date":"2016-03-29T03:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-battlefield-5-leak","changefreq":"weekly","video":[{"title":"2016:E302 - Battlefield 5 Leak?","description":"ANOTHER Battlefield 5 leak? And this one is the exact opposite of the leak that said it would be a World War I game? WHAT'S A GAMER TO DO? Decide how believable it is and then start imagining a brighter tomorrow. Obviously.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-battlefield-5-leak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f08a854-2685-4199-b381-4ba32c6f5bda/sm/238166-1459208142391-battle_field_5_tumb.jpg","duration":438,"publication_date":"2016-03-28T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-developer-hates-let-s-plays","changefreq":"weekly","video":[{"title":"2016:E301 - Developer VS Let's Plays?","description":"The developer of That Dragon, Cancer is taking aim at Let's Plays, blaming them for the game's poor sales. Look, we can't poke fun at a game made by a father grieving over the loss of his son. We're assholes, but there are limits. However, maybe people are touchy about playing games that tackle such heavy topics so openly? WE DON'T PLAY GAMES TO FEEL, MAN. PS: Fuck cancer.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-developer-hates-let-s-plays","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e248f682-6cab-4bac-9d00-003b18f18f6d/sm/24363-1459199842373-thumbnail.jpg","duration":500,"publication_date":"2016-03-28T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-8","changefreq":"weekly","video":[{"title":"2016:E37 - Netflix GUILTY of Throttling","description":"The mighty have fallen. Netflix, defender of net neutrality, king of streaming video, admits they've been cutting the quality of video streams... for your own good. Guess Good Guy Netflix is just regular old Guy Netflix now.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f2429a1-da52-4128-93af-6e827cc46555/sm/24363-1458946100933-thumbnail.jpg","duration":412,"publication_date":"2016-03-25T22:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-controller-a-h-o-a-x","changefreq":"weekly","video":[{"title":"2016:E299 - NX Controller a HOAX?!","description":"Time to dismantle some hoaxes before we all knock off for the weekend! That leaked Nintendo NX controller? Turns out it was a hoax. Multiple hoaxes! And how happy are we about that because that did NOT look like a lot of fun to play on.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-controller-a-h-o-a-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b786d9b5-64e5-4b77-8d99-0f887b6630c9/sm/24363-1458941579575-thumbnail.jpg","duration":447,"publication_date":"2016-03-25T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-game-of-thrones-is-an-alternate-universe","changefreq":"weekly","video":[{"title":"2016:E24 - Game of Thrones is an Alternate Universe?","description":"*DING* SHAME SHAME! Season 6 of Game of Thrones is all set to spoil your precious books... or is it? Turns out that may not be the case after all. Are the two really now so different they're alternate universes?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-game-of-thrones-is-an-alternate-universe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44a36ab5-03b7-4cf4-9f94-6006f3974e07/sm/24363-1458856270300-Game_of_Thrones_-_Thumbnail.jpg","duration":403,"publication_date":"2016-03-24T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-a-r-k-lawsuit-evolved","changefreq":"weekly","video":[{"title":"2016:E298 - ARK: LAWSUIT EVOLVED","description":"With allergy season comes lawsuit season, apparently, and indie developers seem to be the most susceptible. This time it's the ARK: Survival Evolved developers, being sued by the Dungeon Defender developers.\n\nSponsored By: Lenovo Game State! Check it all out at http://bit.ly/1LgQzH2","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-a-r-k-lawsuit-evolved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e27e0814-4070-4a25-879a-2e7766e47d02/sm/24363-1458861403066-thumbnail.jpg","duration":417,"publication_date":"2016-03-24T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-17","changefreq":"weekly","video":[{"title":"2016:E21 - Microsoft's Racist AI + The Division's Game-Breaking Bug + Sony Mobile","description":"Who knew the internet couldn't be trusted to teach an AI new things? EVERYONE. EVERYONE KNEW THAT. Also, other stuff happened - watch!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/800d999c-3c4c-4625-ae54-ce781fec156b/sm/1663966-1458850620561-Thurs_24_Thumb.jpg","duration":548,"publication_date":"2016-03-24T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-too-many-games","changefreq":"weekly","video":[{"title":"2016:E297 - TOO MANY Games?","description":"It's just not fair. There are so many games out, we can't play them all, and that's just not ok. Clearly there are way too many games. It's a real problem.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-too-many-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3a14003-ea9f-4448-a18a-e95e8989f045/sm/24363-1458838138796-thumbnail.jpg","duration":456,"publication_date":"2016-03-24T17:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-pimp-my-cabbage-149","changefreq":"weekly","video":[{"title":"2016:E149 - Pimp My Cabbage – #149","description":"Join Gus Sorola, Ashley Jenkins, and Ryan Haywood as they discuss Stardew Valley, Quantum Break,Overwatch, and more on this week's The Patch! This episode originally aired on March 23, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-pimp-my-cabbage-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66a96413-7a52-470f-b3f7-269d0c1bd887/sm/2013912-1458842046647-p149-TH.jpg","duration":3742,"publication_date":"2016-03-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-6","changefreq":"weekly","video":[{"title":"2016:E23 - Everyone HATES Batman v Superman?","description":"Did you want more than crazy explosions and action scenes? Did you want meaningful character development and superheroes that do their supering without destroying cities? TOO BAD! That's not what you're getting. Enjoy the explosions though. They're pretty sweet.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c39f4a2-a2c6-4659-831c-7ef9ed87470f/sm/238166-1458776405000-Batman_Vs_Superman_-_Thumbnail.jpg","duration":444,"publication_date":"2016-03-23T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-kills-drive-club-developer","changefreq":"weekly","video":[{"title":"2016:E295 - Sony KILLS DriveClub Developer","description":"It's a sad day out there for our friends behind the wheel. Godspeed, Evolution Studios. Here's hoping you find that great racetrack somewhere other than Sony.\n\n\n\nSOURCES:\n\nEvolution Studios Closed: http://www.gamesindustry.biz/articles/2016-03-22-s...\n\nEvolution Layoffs in 2015: http://www.gamesindustry.biz/articles/2016-03-22-s...\n\nJamie Brayshaw Flickr Post: https://www.flickr.com/photos/136374449@N08/256868...\n\nDriveClub VR Tech Demo: http://www.eurogamer.net/articles/2015-10-28-drive...\n\nStudio Liverpool Closed: http://www.eurogamer.net/articles/2012-08-22-sony-...\n\nFormula Fusion: http://store.steampowered.com/app/389670/","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-kills-drive-club-developer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37a6e449-63bf-4407-9e8d-1bef6ae3106a/sm/1788484-1458769952426-fh_thumb_9_copy_720_2.jpg","duration":254,"publication_date":"2016-03-23T19:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-killing-wii-u-3-ds-this-year","changefreq":"weekly","video":[{"title":"2016:E294 - Nintendo KILLING Wii U & 3DS This Year?","description":"Those rumors are getting real fresh. Crispy fresh. We've been hearing that Nintendo will surprise us with the NX this year, and now it looks like Wii U and 3DS may be getting the boot to make room for the new hotness.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-killing-wii-u-3-ds-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7afe54b0-cdc4-4a08-932b-0b75f4ffb2ab/sm/24363-1458694391770-WiiU_-_Thumbnail.jpg","duration":447,"publication_date":"2016-03-23T00:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-let-the-internet-name-a-boat-bad-idea","changefreq":"weekly","video":[{"title":"2016:E36 - Let the Internet Name a Boat? Bad Idea.","description":"Hey, at least it had nothing to do with Hitler or grannies this time.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-let-the-internet-name-a-boat-bad-idea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b41725c-fa9c-456e-93af-acf7f2efe402/sm/24363-1458693278174-boaty_thumb_v2.jpg","duration":437,"publication_date":"2016-03-23T00:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-p-s4-5-this-year-gawker-owes-hulk-140-million-tomb-raider-movie-wants-rey","changefreq":"weekly","video":[{"title":"2016:E20 - PS4.5 This Year? + Gawker Owes Hulk $140 Million + Tomb Raider Movie Wants Rey","description":"Xbox wants to know how you feel about reselling digital games. PS4.5 might be out this year. A new Tomb Raider movie wants Star Wars actress Daisy Ridley. Hulk Hogan's won $140 million from Gawker over his sex tape. A new amphibious drone has a sweet name. You can watch deer play GTA V... what DOESN'T this Tuesday have, really?","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-p-s4-5-this-year-gawker-owes-hulk-140-million-tomb-raider-movie-wants-rey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb7ca8c4-119e-45c2-8b8f-41a9f9a0522c/sm/24363-1458687392594-thumbnail.jpg","duration":541,"publication_date":"2016-03-22T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-red-dead-redemption-2-details-leaked","changefreq":"weekly","video":[{"title":"2016:E293 - Red Dead Redemption 2 Details Leaked?","description":"2016:E293 - Red Dead Redemption 2 Details Leaked?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-red-dead-redemption-2-details-leaked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36b0da5e-96fe-4e15-8653-1947133d065e/sm/24363-1458616732014-thumbnail.jpg","duration":496,"publication_date":"2016-03-22T03:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-you-tube-prankster-jailed","changefreq":"weekly","video":[{"title":"2016:E34 - YouTube Prankster Jailed","description":"It probably won't be the end of IT'S JUST A PRANK, BRO! but two British YouTube pranksters are in legal trouble for a pair of hoaxes they pulled off last year and one is getting jail time. Oh, wait! We do Social Disorder! Maybe we can finally get Chris and Aaron locked up!","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-you-tube-prankster-jailed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1980f9cd-7cb4-4ba5-846b-3306738adf8e/sm/24363-1458616020278-thumbnail.jpg","duration":385,"publication_date":"2016-03-22T03:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-oculus-vs-valve-vr-exclusives","changefreq":"weekly","video":[{"title":"2016:E292 - Oculus VS Valve: VR Exclusives?","description":"Lotsa VR news lately. Are you sick of it yet? Too bad, nothing else is going on.\n\nSOURCES:\n\nHTC Vive Launch Titles: http://fortune.com/2016/03/16/htc-vive-will-launch...\n\nPalmer Luckey Reddit: https://www.reddit.com/r/oculus/comments/47dd51/de...\n\nOculus License: https://developer.oculus.com/licenses/pc-3.2/\n\nPalmer Luckey Quote: http://www.digitaltrends.com/virtual-reality/palme...\n\nGamasutra: http://www.gamasutra.com/view/news/247607/8_key_VR...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-oculus-vs-valve-vr-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1db39a67-6693-43a4-ab71-a43e63463854/sm/1788484-1458600780954-fh_thumb_9_copy_34.jpg","duration":420,"publication_date":"2016-03-21T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-1-6-million-pirates-celebrated","changefreq":"weekly","video":[{"title":"2016:E291 - 1.6 Million Pirates Celebrated","description":"Punch Club is doing piracy right - acknowledging that it exists, but not screwing over paying customers to quell it. Nice job!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-1-6-million-pirates-celebrated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50df1b75-b501-4880-8139-bfc079d6100c/sm/1663966-1458758053470-thumbnail_v2.jpg","duration":437,"publication_date":"2016-03-21T18:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-nx-controller-l-e-a-k-e-d","changefreq":"weekly","video":[{"title":"2016:E289 - Nintendo NX Controller LEAKED?","description":"Coming 201something: The Nintendegg. The world's first game console AND breakfast food. \n\n\n\nSOURCES:\n\nCrude NX Sketches: http://www.destructoid.com/nintendo-files-patent-f...\n\nLeaked NX Controller: http://dualpixels.com/2016/03/17/dual-pixels-exclu...\n\nReddit Post: https://www.reddit.com/r/NintendoNX/comments/4avdc...\n\nDestructoid Fact Check: http://www.destructoid.com/are-these-leaked-images...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-nx-controller-l-e-a-k-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1239022d-14fc-46e8-b4f0-5a05ec637408/sm/1788484-1458336184973-Know_Mar_18_NX_Controller.jpg","duration":360,"publication_date":"2016-03-18T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-considering-psn-xbox-live-crossplay-the-know","changefreq":"weekly","video":[{"title":"2016:E288 - Sony Considering PSN + Xbox Live Crossplay - The Know","description":"2016:E288 - Sony Considering PSN + Xbox Live Crossplay - The Know","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-considering-psn-xbox-live-crossplay-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a09947e-6e9f-4e92-8635-44edb125e531/sm/238166-1458324362511-thumbnail.jpg","duration":415,"publication_date":"2016-03-18T17:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-16","changefreq":"weekly","video":[{"title":"2016:E19 - Harrison Ford is Back For Indy 5 + The Division Breaks More Records + Sally Field Flips Spiderman the Bird","description":"We've got all sorts of newsy goodies for you - check it out!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da7bbae3-0e2e-4335-81e5-38f7e38b51f4/sm/1663966-1458253909003-Roundup_Thumb.jpg","duration":506,"publication_date":"2016-03-17T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-divided-by-the-division-148","changefreq":"weekly","video":[{"title":"2016:E148 - Divided by The Division – #148","description":"Join Gus Sorola, Meg Turney, and Ryan Haywood as they discuss The Division, Hitman, Playstation VR, and more on this week's The Patch! This episode originally aired on March 16, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-divided-by-the-division-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b4637dd-edf4-4abd-9b90-de83c85bc4d2/sm/2013912-1458228231928-p148_-_TEMP_THUMB.jpg","duration":3649,"publication_date":"2016-03-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020414-hackers-troll-ubisoft-nintendo-buys-back-shares-disney-interactive-layoffs","changefreq":"weekly","video":[{"title":"S1:E592 - Hard News 02/04/14 - Hackers troll Ubisoft, Nintendo buys back shares, Disney Interactive layoffs","description":"Today on Hard News, hackers filed fraudulent trademark claim to screw with Ubisoft, Nintendo buys back shares from Yamauchi's heirs, and Disney Interactive may have huge layoffs.\r\n\t\r\n\tNintendo buys back shares from Yamauchi's heirs - http://www.screwattack.com/news/nintendo-buys-back-95-million-shares-including-some-late-yamauchi-san\r\n\tDisney Interactive may have huge layoffs - http://www.screwattack.com/news/rumor-disney-intertactive-facing-hundreds-layoffs-inspite-infinitys-rumored-star-wars-and-marve\r\n\tUbisoft trolled by hackers - http://www.screwattack.com/news/update-ubisofts-watchdogs-trademark-abandonment-fraud-and-will-be-re-instated-soon\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-020414-hackers-troll-ubisoft-nintendo-buys-back-shares-disney-interactive-layoffs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/599ef260-bc4d-4be7-9497-abbd8245c758/sm/video_thumbnail_12827454.jpg","duration":276,"publication_date":"2014-02-04T14:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wave-race-64-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E416 - Wave Race 64 - Video Game Vault","description":"S1:E416 - Wave Race 64 - Video Game Vault","player_loc":"https://roosterteeth.com/embed/wave-race-64-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c00527d0-b954-447b-ae7f-9620e953423f/sm/video_thumbnail_12827447.jpg","duration":137,"publication_date":"2014-02-04T12:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020314-playstation-now-game-leaks-new-duke-nukem-game-wii-u-pacman-museum-cancelled","changefreq":"weekly","video":[{"title":"S1:E591 - Hard News 02/03/14 - Playstation Now game leaks, new Duke Nukem game, Wii U PacMan Museum cancelled","description":"Today on Hard News, Playstation Now game list leaked, a teaser site for a new Duke Nukem game pops up, and Pac-Man Museum has been cancelled for Wii U due to \"delayed development.\"\r\n\t\r\n\tPlaystation Now game leaks - http://www.screwattack.com/news/list-games-playstation-now-beta-leaked\r\n\tNew Duke Nukem game - http://www.screwattack.com/news/rumor-interceptor-entertainment-launches-teaser-site-new-duke-nukem-game\r\n\tPac-Man Museum cancelled for Wii U - http://www.screwattack.com/news/pac-man-museum-has-been-canceled-nintendo-eshop-due-development-delays\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-020314-playstation-now-game-leaks-new-duke-nukem-game-wii-u-pacman-museum-cancelled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adbbba6b-1de7-4548-a9a0-e9887baff760/sm/video_thumbnail_12827389.jpg","duration":199,"publication_date":"2014-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-best-microsoft-decisions-honorable-mentions","changefreq":"weekly","video":[{"title":"S1:E99 - Top 5 Best Microsoft Decisions Honorable Mentions","description":"Yes, even Microsoft has made too many great decisions to fit onto one list.  These were the best of the rest!","player_loc":"https://roosterteeth.com/embed/top-5-best-microsoft-decisions-honorable-mentions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ee8ca3c-c159-4865-adda-8b050b96d757/sm/video_thumbnail_12827362.jpg","duration":179,"publication_date":"2014-02-03T10:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-best-microsoft-studios-decisions","changefreq":"weekly","video":[{"title":"S1:E98 - Top 5 BEST Microsoft Studios Decisions","description":"Contrary to recent headlines, Microsoft Studios has made some great choices. Let's go over their top five BEST decisions!","player_loc":"https://roosterteeth.com/embed/top-5-best-microsoft-studios-decisions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3092c99-29a3-4035-8a01-e51e2f3ba5db/sm/video_thumbnail_12827361.jpg","duration":250,"publication_date":"2014-02-03T09:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cat-and-dinosaur-super-dvd-sale-screwattackstore-com","changefreq":"weekly","video":[{"title":"S1:E706 - Cat and Dinosaur Super DVD Sale! - ScrewAttackStore.com","description":"The most epic sale of the year! complete with a cat and a dinosaur! All at ScrewAttackStore.com!\r\n\r\n\tAVGN Complete Pack 35% off! $51.98\r\n\r\n\t \r\n\r\n\tAVGN Volume 7 25% off! $17.98\r\n\r\n\t \r\n\r\n\tAVGN & Board James 25% off!  $23.98\r\n\r\n\t \r\n\r\n\tBoard James DVD 25% off! %13.49\r\n\r\n\t \r\n\r\n\tAVGN Volume 6 20% off! $15.98\r\n\r\n\t \r\n\r\n\tAVGN Volume 5 20% off! $14.39\r\n\r\n\t \r\n\r\n\tAVGN Volume 4 20% off! $11.98\r\n\r\n\t \r\n\r\n\tAVGN Volume 3 20% off! $7.98\r\n\r\n\t \r\n\r\n\tAVGN Volume 2 20% off! $7.98\r\n\r\n\t \r\n\r\n\tAVGN Volume 1 20% off! $7.98","player_loc":"https://roosterteeth.com/embed/cat-and-dinosaur-super-dvd-sale-screwattackstore-com","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cada5178-dbb7-42b9-894c-fc82824be3df/sm/video_thumbnail_12827228.jpg","duration":38,"publication_date":"2014-02-01T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-power-ups-featuring-pat-the-nes-punk-and-dj-cutman","changefreq":"weekly","video":[{"title":"S1:E40 - The Worst EVER! - Power-Ups featuring Pat the NES Punk and DJ Cutman","description":"These are the powerups that might as well be called powerdowns. They really are the worst EVER!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-power-ups-featuring-pat-the-nes-punk-and-dj-cutman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35bfb292-5426-4eb6-b6c0-bac0df2f40b6/sm/video_thumbnail_12827227.jpg","duration":271,"publication_date":"2014-02-01T07:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-013114-warner-bros-refunds-wii-u-owners-ps-vita-slim-and-microsoft-leaks","changefreq":"weekly","video":[{"title":"S1:E590 - Hard News 01/31/14 - Warner Bros refunds Wii U owners, PS Vita Slim, and Microsoft leaks","description":"Today on Hard News, Warner Brothers refunds Wii U owners who preordered Arkham Origins DLC, Playstation announces the PS Vita Slim is coming to the UK, and a NeoGaf user leaks a bunch of Microsoft Studios plans.\r\n\t\r\n\tPS Vita Slim in the UK - http://www.screwattack.com/news/sony-announces-vita-slim-uk-along-killer-indie-bundle\r\n\tWarner Bros refunds Wii U owners - http://www.screwattack.com/news/warner-bros-interactive-entertainment-puts-last-batman-arkham-origins-dlc-ice-wii-u\r\n\tMicrosoft leaks - http://www.screwattack.com/news/microsoft-now-seeking-legal-action-against-mysterious-person-behind-xbone-leaks\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-013114-warner-bros-refunds-wii-u-owners-ps-vita-slim-and-microsoft-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cdf3f6a-2ed1-4318-85e1-006c3e990aa1/sm/video_thumbnail_12827188.jpg","duration":210,"publication_date":"2014-01-31T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dr-peepee-is-the-best-smash-bros-melee-player-in-the-world","changefreq":"weekly","video":[{"title":"S1:E705 - Dr. PeePee is the Best Smash Bros Melee player in the world","description":"And he's got some tips on manliness!","player_loc":"https://roosterteeth.com/embed/dr-peepee-is-the-best-smash-bros-melee-player-in-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3129b9b-284e-4439-bd98-c7ef104407a9/sm/video_thumbnail_12827163.jpg","duration":270,"publication_date":"2014-01-31T09:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-wishes-for-smash-bros-from-the-pros","changefreq":"weekly","video":[{"title":"S1:E97 - Even MORE Wishes For Smash Bros. From The Pros","description":"We talked to too many people better than us at video games to fit them all into a Top 5, so we're letting them tell you their Smash 4 dreams","player_loc":"https://roosterteeth.com/embed/even-more-wishes-for-smash-bros-from-the-pros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9787254-9bcf-4ac8-bd7e-bb48a100411c/sm/video_thumbnail_12827084.jpg","duration":182,"publication_date":"2014-01-30T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-hate-zelda-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E10 - 17 Reasons we HATE Zelda with Evil Craig","description":"S1:E10 - 17 Reasons we HATE Zelda with Evil Craig","player_loc":"https://roosterteeth.com/embed/17-reasons-we-hate-zelda-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/564d1057-b7ae-45cb-a3cc-abe6c4ff3df3/sm/video_thumbnail_12827088.jpg","duration":68,"publication_date":"2014-01-30T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-love-zelda","changefreq":"weekly","video":[{"title":"S1:E53 - 19 Reasons we LOVE Zelda","description":"S1:E53 - 19 Reasons we LOVE Zelda","player_loc":"https://roosterteeth.com/embed/19-reasons-we-love-zelda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a23db276-cda7-4f49-9985-e8a48fb066eb/sm/video_thumbnail_12827087.jpg","duration":78,"publication_date":"2014-01-30T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-013014-overview-of-nintendos-financial-briefing","changefreq":"weekly","video":[{"title":"S1:E589 - Hard News 01/30/14 - Overview of Nintendo's Financial Briefing","description":"Today on Hard News, Sean reviews Nintendo's Financial Briefing.\r\n\t\r\n\tNintendo's Health Console - http://www.screwattack.com/news/nintendo-briefing-reveals-plans-make-non-wearable-health-hardware\r\n\tNintendo DS coming to the Wii U - http://www.screwattack.com/news/nintendo-confirms-they-are-developing-apps-mobile-devices\r\n\tNintendo to develop apps - http://www.screwattack.com/news/nintendo-confirms-they-are-developing-apps-mobile-devices\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-013014-overview-of-nintendos-financial-briefing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f39df0c5-439c-41ca-af04-eb98b8ebfb23/sm/video_thumbnail_12827079.jpg","duration":249,"publication_date":"2014-01-30T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012914-nintendo-gets-a-pay-cut-elder-scrolls-online-battlefield-4-appreciation-month","changefreq":"weekly","video":[{"title":"S1:E588 - Hard News 01/29/14 - Nintendo gets a pay-cut, Elder Scrolls Online, Battlefield 4 Appreciation Month","description":"Today on Hard News, Nintendo takes a pay-cut, new Elder Scrolls Online info and trailer, and EA and DICE announce the Battlefield 4 Player Appreciation Month.\r\n\t\r\n\tElder Scrolls Online - http://www.screwattack.com/news/elder-scrolls-online-reveals-imperial-edition-collectors-and-sets-pricing\r\n\tEA and DICE announce the Battlefield 4 Player Appreciation Month - http://www.screwattack.com/news/ea-and-dice-make-nice-revealing-february-battlefield-4-player-appreciation-month\r\n\tNintendo takes a paycut - http://www.screwattack.com/news/nintendo-executives-taking-pay-cut-based-low-revenue-including-miyamoto\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012914-nintendo-gets-a-pay-cut-elder-scrolls-online-battlefield-4-appreciation-month","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b9d74a5-8c59-450d-93f7-cc20742f9bcf/sm/video_thumbnail_12826998.jpg","duration":219,"publication_date":"2014-01-29T12:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-tomb-raider-definitive-edition","changefreq":"weekly","video":[{"title":"S1:E39 - Out of the Box - Tomb Raider Definitive Edition","description":"Today we look at how Crystal Dynamics made Lara Croft even hotter than she already was in Tomb Raider Definitive Edition. Was it even possible? We didn't think so.\r\nBe sure to check out Nick's review of Tomb Raider here!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-tomb-raider-definitive-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e49f95a8-2b85-43e6-95e8-a3b447d284b4/sm/video_thumbnail_12826965.jpg","duration":3276,"publication_date":"2014-01-29T08:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012814-the-nsa-is-watching-nintendos-smart-phone-mini-games-and-a-sly-cooper-film","changefreq":"weekly","video":[{"title":"S1:E587 - Hard News 01/28/14 - The NSA is watching, Nintendo's smart phone mini-games, and a Sly Cooper film","description":"Today on Hard News, the NSA may be collecting data from your Angry Birds games, Nintendo might develop mini-games for smartphones to support their first party titles, and the Sly Cooper franchise is getting a major motion picture.\r\n\t\r\n\tSly Cooper franchise is getting a major motion picture - http://www.screwattack.com/news/sly-cooper-getting-movie-facebook-page-youtube-channel-and-teaser-trailer-go-live\r\n\tThe NSA is watching - http://www.screwattack.com/news/rumor-angry-birds-may-have-been-used-nsa-reveal-sensitive-user-data\r\n\tNintendo's smart phone mini-games - http://www.screwattack.com/news/rumor-nintendo-going-be-making-smartphone-games-after-all-theyre-just-marketing-purposes\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012814-the-nsa-is-watching-nintendos-smart-phone-mini-games-and-a-sly-cooper-film","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c0edc7e-0bee-44d8-ab06-0eb976c46c7b/sm/video_thumbnail_12826918.jpg","duration":215,"publication_date":"2014-01-28T14:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012714-king-doesnt-clone-game-soes-mmo-deal-and-microsoft-buys-gears-of-war","changefreq":"weekly","video":[{"title":"S1:E586 - Hard News 01/27/14 - King 'doesn't clone games,' SOE's MMO deal, and Microsoft buys Gears of War","description":"Today on Hard News, King denies cloning someone else's game, SOE offers an enticing deal for 7 PC based MMOs, and Microsoft buys the Gears of War series.\r\n\t\r\n\tSOE's MMO deal - http://www.screwattack.com/news/soe-has-confirmed-all-access-pass-existence-and-taking-planetside-free-play\r\n\tMicrosoft buys Gears of War - http://www.screwattack.com/news/microsoft-has-acquired-gears-wars-franchise-epic-games\r\n\tKing \"doesn't clone games\" - http://www.screwattack.com/news/update-king-responds-king-reportedly-ripped-indie-game-scamperghost\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012714-king-doesnt-clone-game-soes-mmo-deal-and-microsoft-buys-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdddf972-d823-418d-9130-40ec40d60ca0/sm/video_thumbnail_12826836.jpg","duration":237,"publication_date":"2014-01-27T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-wishes-for-smash-bros-from-the-pros","changefreq":"weekly","video":[{"title":"S1:E96 - Top 5 Wishes For Smash Bros. From The Pros!","description":"Those who take their Smashing to the highest level have wishes of their own for the future of Nintendo's crossover brawler!","player_loc":"https://roosterteeth.com/embed/top-5-wishes-for-smash-bros-from-the-pros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18eeb9ce-e53f-48ae-a2e7-f4c7fdd0e509/sm/video_thumbnail_12826803.jpg","duration":358,"publication_date":"2014-01-27T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-nes-game-is-mario-3-feat-larry-oji-moviebob","changefreq":"weekly","video":[{"title":"S1:E39 - The Best EVER NES Game is Mario 3! feat. Larry Oji & MovieBob","description":"It's pretty widely accepted that Super Mario Bros. 3 is the undisputed best NES game EVER, but it's not for one single reason. It's for all of these reasons!","player_loc":"https://roosterteeth.com/embed/the-best-ever-nes-game-is-mario-3-feat-larry-oji-moviebob","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ca49a2e-8046-4e6e-9b87-0a0118dc5602/sm/video_thumbnail_12826662_0.jpg","duration":454,"publication_date":"2014-01-25T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012414-shadow-of-mordor-uk-users-unable-to-access-uplay-madden-trial-appealed","changefreq":"weekly","video":[{"title":"S1:E585 - Hard News 01/24/14 - Shadow of Mordor, UK users unable to access UPlay, Madden trial appealed","description":"Today on Hard News, new Shadow of Mordor game looks very similar to Assassin's Creed, many UK users are unable to access UPlay, and the EA has gone in for a retrial on the Madden case.\r\n\t\r\n\tMadden trial appealed - http://www.screwattack.com/news/ea-overturns-lawsuit-would-have-paid-11-million-original-madden-creator\r\n\tUK users unable to access UPlay - http://www.screwattack.com/news/users-uk-are-having-trouble-accessing-might-magic-x-legacy-because-uplay-error\r\n\tShadow of Mordor - http://www.screwattack.com/news/shadow-mordor-releases-gameplay-video-and-it-looks-assassins-creed-middle-earth\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012414-shadow-of-mordor-uk-users-unable-to-access-uplay-madden-trial-appealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f241750f-0c7e-4ed4-8534-34360d4954fb/sm/video_thumbnail_12826618.jpg","duration":204,"publication_date":"2014-01-24T14:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012314-king-targets-the-banner-saga-seedlunky-hd-and-yaiba-delayed-by-two-weeks","changefreq":"weekly","video":[{"title":"S1:E584 - Hard News 01/23/14 - King targets the Banner Saga, Seedlunky HD, and Yaiba delayed by two weeks","description":"Today on Hard News, King's trademark nonsense targets Stoic Studios' Banner Saga, Spelunky mod allows players to save a level and play it again, and Yaiba has been delayed by two weeks .\r\n\t\r\n\tSeedlunky HD - http://www.screwattack.com/news/seedlunky-hd-mod-making-it-easier-share-spelunky-levels-your-friends\r\n\tYaiba delayed by two weeks - http://www.screwattack.com/news/tecmo-koeis-yaiba-ninja-gaiden-z-has-been-delayed-two-weeks\r\n\tKing targets the Banner Saga - http://www.screwattack.com/news/king-decides-candy-not-enough-and-goes-after-banner-saga\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012314-king-targets-the-banner-saga-seedlunky-hd-and-yaiba-delayed-by-two-weeks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad23f2d5-2adb-4526-b4bc-f26501ff9c65/sm/video_thumbnail_12826555.jpg","duration":196,"publication_date":"2014-01-23T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/even-more-characters-we-want-in-smash-bros","changefreq":"weekly","video":[{"title":"S1:E95 - Even MORE Characters We Want in Smash Bros.","description":"They didn't make the Top 5, but these are characters we still want. Watch the original Top 5 here!","player_loc":"https://roosterteeth.com/embed/even-more-characters-we-want-in-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83897935-453a-454d-9f43-9ef856275f85/sm/video_thumbnail_12826537.jpg","duration":321,"publication_date":"2014-01-23T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012214-super-smash-brothers-nintendos-next-console-and-drive-club-updates","changefreq":"weekly","video":[{"title":"S1:E583 - Hard News 01/22/14 - Super Smash Brothers, Nintendo's next console, and Drive Club updates","description":"Today on Hard News, Supers Smash Brothers updates and character rumor, Nintendo's could be developing a new console, and updates on Drive Club's release date and development.\r\n\t\r\n\tDrive Club updates - http://www.screwattack.com/news/rumor-driveclub-launch-europe-june-according-opm-italy\r\n\tSupers Smash Brothers updates - http://www.screwattack.com/news/rumor-palutena-could-be-next-playable-character-super-smash-bros-wii-u3ds\r\n\tRumors of Nintendo's next console - http://www.screwattack.com/news/rumor-nintendo-developing-new-next-gen-system-called-nintendo-fusion\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012214-super-smash-brothers-nintendos-next-console-and-drive-club-updates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7504a59b-2d3a-431a-ad77-290646528174/sm/video_thumbnail_12826515.jpg","duration":242,"publication_date":"2014-01-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-lightning-returns-final-fantasy-xiii","changefreq":"weekly","video":[{"title":"S1:E38 - Out of the Box - Lightning Returns: Final Fantasy XIII","description":"Hey, it's a new Final Fantasy game! Let's find out if it's any good by checking out the demo together.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-lightning-returns-final-fantasy-xiii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1afa1f54-54b5-46b3-89ac-bc93609697c4/sm/video_thumbnail_12826471.png","duration":1719,"publication_date":"2014-01-22T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012114-king-trademarks-candy-microsoft-in-shady-business-ps4-corrupting-save-files","changefreq":"weekly","video":[{"title":"S1:E582 - Hard News 01/21/14 - King trademarks 'Candy', Microsoft in shady business, PS4 corrupting save files","description":"Today on Hard News, the developers of Candy Crush Saga trademark the word Candy, Microsoft and Machinima are up to some shady business, and the PS4 is corrupting save files.\r\n\t\r\n\tPS4 corrupting save files - http://www.screwattack.com/news/psa-hundreds-ps4-users-are-losing-their-saves-ce-34878-0-error-code\r\n\tMicrosoft up to shady business - http://www.screwattack.com/news/microsofts-sketchy-marketing-plan-youtubers-pays-positive-xbox-one-videos\r\n\tKing trademarks the word Candy - http://www.screwattack.com/news/candy-crush-saga-developer-now-has-trademark-word-candy\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012114-king-trademarks-candy-microsoft-in-shady-business-ps4-corrupting-save-files","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0a1d71e-d999-4429-8061-6511ef1593e1/sm/video_thumbnail_12826417.jpg","duration":221,"publication_date":"2014-01-21T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-action-hero-snes-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E415 - Last Action Hero (SNES) - Video Game Vault","description":"The prime example of how movie-to-game adaptations should never be... ever.","player_loc":"https://roosterteeth.com/embed/last-action-hero-snes-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c841a405-b6f3-4119-817a-9274a3b2c0e1/sm/video_thumbnail_12826389.jpg","duration":121,"publication_date":"2014-01-21T09:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012014-nintendo-considers-mobile-games-hypocrite-pirates-and-fable-trilogy-bundle","changefreq":"weekly","video":[{"title":"S1:E581 - Hard News 01/20/14 - Nintendo considers mobile games, hypocrite pirates, and Fable Trilogy bundle","description":"Today on Hard News, Nintendo considers new business model and looks into mobile gaming, the pirates at Gateway will brick your 3DS, and a Fable Trilogy bundle is coming to XBLA.\r\n\t\r\n\tFable Trilogy bundle is coming to XBLA - http://www.screwattack.com/news/xbox-marketplace-listing-reveals-fable-trilogy-bundle\r\n\tGateway will brick your 3DS - http://www.screwattack.com/news/creators-3ds-cart-pirating-roms-bricking-hardware-protect-against-piracy\r\n\tNintendo considers mobile games - http://www.screwattack.com/news/nintendo-considering-new-business-structure-looks-toward-mobile-devices\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012014-nintendo-considers-mobile-games-hypocrite-pirates-and-fable-trilogy-bundle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b71c5ec-26e7-40e0-880a-09ec2c149625/sm/video_thumbnail_12826328.jpg","duration":240,"publication_date":"2014-01-20T14:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-characters-we-want-in-smash-bros","changefreq":"weekly","video":[{"title":"S1:E94 - Top 5 Characters We Want in Smash Bros.","description":"One of the most anticipate Nintendo games in years, we've narrowed down the new characters we'd like to see playable in the next Smash Bros.","player_loc":"https://roosterteeth.com/embed/top-5-characters-we-want-in-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cef2ce26-37a7-478f-868e-45c24af34927/sm/video_thumbnail_12826311.jpg","duration":306,"publication_date":"2014-01-20T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-dia-de-huevos-live-stream-opening","changefreq":"weekly","video":[{"title":"S1:E704 - [Advantage] Dia De Huevos live stream opening","description":"This video is a bonus for Advantage Members. It's a great way to support the site and keep us growing like a big boy. \r\nOriginally aired as the opening of the Dia De Huevos live stream on Friday January 17th, you can now relive John getting punched in the nuts to death over and over again.","player_loc":"https://roosterteeth.com/embed/advantage-dia-de-huevos-live-stream-opening","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17304bea-04bd-4472-b969-97e4a68d5161/sm/video_thumbnail_12826313.png","duration":90,"publication_date":"2014-01-20T10:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chads-worst-ever-villain","changefreq":"weekly","video":[{"title":"S1:E703 - Chad's worst EVER villain!","description":"Chad's worst villain EVER comes from a game he absolutely loves, but not enough to absolutely hate its bad guy.","player_loc":"https://roosterteeth.com/embed/chads-worst-ever-villain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/123dbe32-2f58-4a8a-ae85-4f0a9148a6fd/sm/video_thumbnail_12826162.png","duration":157,"publication_date":"2014-01-18T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-villain-feat-brentalfloss-and-the-angry-video-game-nerd","changefreq":"weekly","video":[{"title":"S1:E38 - The Worst EVER! - Villain feat. brentalfloss and the Angry Video Game Nerd","description":"These bad guys are so bad at being bad, they're just plain awful! They really are the WORST villains EVER!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-villain-feat-brentalfloss-and-the-angry-video-game-nerd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/065f6721-6582-4c62-a1e5-33943178dfd5/sm/video_thumbnail_12826160.png","duration":372,"publication_date":"2014-01-18T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011714-cortana-personal-assistant-2k-and-bethesda-bundle-and-outerlands-documentary","changefreq":"weekly","video":[{"title":"S1:E580 - Hard News 01/17/14 - Cortana personal assistant, 2K and Bethesda bundle, and Outerlands documentary","description":"Today on Hard News, Cortana personal assistant being developed by Microsoft, 2K and Bethesda bundle Skyrim and Bioshock: Infinite, and Area 5 Kickstarting the Outerlands documentary.\r\n\t\r\n\tArea 5 Kickstarting the Outerlands documentary - http://www.screwattack.com/news/outerlands-kickstarter-endeavor-area-5-team-catalog-culture-gaming\r\n\tBethesda bundles - http://www.screwattack.com/news/bethesda-and-2k-games-are-joining-forces-raid-your-wallet-game-bundles\r\n\tCortana personal assistant - http://www.screwattack.com/news/rumor-microsofts-personal-assistant-app-may-use-voice-cortana-and-come-iphone\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-011714-cortana-personal-assistant-2k-and-bethesda-bundle-and-outerlands-documentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/591d7204-82a5-42d6-af3f-d9748ad35365/sm/video_thumbnail_12826109.jpg","duration":209,"publication_date":"2014-01-17T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011614-the-last-of-us-dlc-final-fantasy-vi-on-android-and-steam-machine-controller","changefreq":"weekly","video":[{"title":"S1:E579 - Hard News 01/16/14 - The Last of Us DLC, Final Fantasy VI on Android, and Steam Machine controller","description":"Today on Hard News, The Last of Us DLC release date announced, Final Fantasy VI finally on Android and Google Play, and a new design for the Steam Machine controller.\r\n\t\r\n\tSteam Machine controller - http://www.screwattack.com/news/steam-dev-days-are-going-right-now-and-steam-controller-has-update\r\n\tFinal Fantasy VI on Android - http://www.screwattack.com/news/final-fantasy-6-launches-android-washed-out-sprites\r\n\tThe Last of Us DLC release date - http://www.screwattack.com/news/last-us-left-behind-bound-break-some-hearts-valentine%E2%80%99s-day\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-011614-the-last-of-us-dlc-final-fantasy-vi-on-android-and-steam-machine-controller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ec7084a-a82b-4fa4-9810-f5119256b106/sm/video_thumbnail_12826054.jpg","duration":168,"publication_date":"2014-01-16T14:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/18-reasons-we-hate-the-x-men-arcade-game-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E9 - 18 Reasons We HATE the X-Men Arcade Game with Evil Craig","description":"Evil Craig is here to tell you all the reasons you should hate this arcade classic.","player_loc":"https://roosterteeth.com/embed/18-reasons-we-hate-the-x-men-arcade-game-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4517cbe0-0828-4fb0-b7e4-c007a4d57919/sm/video_thumbnail_12826001.jpg","duration":71,"publication_date":"2014-01-15T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-love-the-x-men-arcade-game","changefreq":"weekly","video":[{"title":"S1:E54 - 17 Reasons We LOVE the X-Men Arcade Game","description":"We list off some of the best things about the X-Men arcade game you may not have thought you loved about it.","player_loc":"https://roosterteeth.com/embed/17-reasons-we-love-the-x-men-arcade-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1419b65b-83f9-4e07-955d-ff9e0e9e6a20/sm/video_thumbnail_12826000.jpg","duration":86,"publication_date":"2014-01-15T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011514-catlateral-damage-broken-age-and-rbi-baseball-revived","changefreq":"weekly","video":[{"title":"S1:E578 - Hard News 01/15/14 - Catlateral Damage, Broken Age, and RBI Baseball revived","description":"Today on Hard News, destroy your owner's house in Catlateral Damage, Double Fine's Broken Age opting for full release, and RBI Baseball revived.\r\n\t\r\n\tRBI Baseball revived - http://www.screwattack.com/news/rbi-baseball-return-video-games-thanks-mlb-advanced-media\r\n\tDouble Fine's Broken Age - http://www.screwattack.com/news/broken-age-ditches-early-access-season-pass-and-launches-january-28th\r\n\tDestroy our owner's house in Catlateral Damage - http://www.screwattack.com/news/catlateral-damage-puts-you-control-furious-feline-domestic-ramapage\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-011514-catlateral-damage-broken-age-and-rbi-baseball-revived","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a0ca9c8-f8a5-4a6b-be45-3111cef29f38/sm/video_thumbnail_12825977.jpg","duration":216,"publication_date":"2014-01-15T14:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hot-cosplay-of-magfest-12","changefreq":"weekly","video":[{"title":"S1:E702 - Hot Cosplay of MAGFest 12 ","description":"S1:E702 - Hot Cosplay of MAGFest 12 ","player_loc":"https://roosterteeth.com/embed/hot-cosplay-of-magfest-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df79825c-5411-44b5-99fc-e77f3b08b2c7/sm/video_thumbnail_12825963.jpg","duration":134,"publication_date":"2014-01-15T09:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-broken-age","changefreq":"weekly","video":[{"title":"S1:E37 - Out of the Box - Broken Age","description":"We're going into the future and the past today on Out of the Box in Broken Age! How is the first part of Double Fine's Kickstarter game? Find out!\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/out-of-the-box-broken-age","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68de5cdd-9be9-4fcf-893e-758b291914ab/sm/video_thumbnail_12825959.png","duration":2782,"publication_date":"2014-01-15T08:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011414-call-of-duty-dlc-magic-the-gathering-movie-and-psn-sale","changefreq":"weekly","video":[{"title":"S1:E577 - Hard News 01/14/14 - Call of Duty DLC, Magic: The Gathering movie, and PSN sale","description":"Today on Hard News, new Call of Duty DLC features aliens and Michael Myers, Fox acquires the rights to Magic: The Gathering, and the 14 for 14 PSN sale.\r\n\t\r\n\tCall of Duty DLC - http://www.screwattack.com/news/upcoming-cod-map-pack-includes-ability-play-michael-myers\r\n\tMagic: The Gathering movie - http://www.screwattack.com/news/fox-acquires-rights-produce-magic-gathering-movie\r\n\t14 for 14 PSN sale - http://www.screwattack.com/news/heres-brief-preview-sonys-14-14-sale-starting-tomorrow\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-011414-call-of-duty-dlc-magic-the-gathering-movie-and-psn-sale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f2e5bbb-f4f3-4d51-95f1-c9ec7a159386/sm/video_thumbnail_12825922.jpg","duration":197,"publication_date":"2014-01-14T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mechwarrior-3050-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E414 - Mechwarrior 3050 - Video Game Vault","description":"Who needs a story when you're piloting a giant freaking mech?","player_loc":"https://roosterteeth.com/embed/mechwarrior-3050-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1353d007-e8ce-443c-b9d4-93dee40727b9/sm/video_thumbnail_12825895.jpg","duration":121,"publication_date":"2014-01-14T09:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-headlines-of-2014","changefreq":"weekly","video":[{"title":"S1:E93 - Top 10 Headlines of 2014","description":"Every time we do one of these lists, they come true in some form.  We're doing it again... hang on to your hats, folks!","player_loc":"https://roosterteeth.com/embed/top-10-headlines-of-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/044da40b-d5e4-4686-839f-84001c215888/sm/video_thumbnail_12825883.jpg","duration":570,"publication_date":"2014-01-14T06:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/outtakes-top-10-headlines-of-2014","changefreq":"weekly","video":[{"title":"S1:E92 - Outtakes - Top 10 Headlines of 2014","description":"Just your average struggle of recording a voice over while random things interrupt you.","player_loc":"https://roosterteeth.com/embed/outtakes-top-10-headlines-of-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/062c04bd-385f-48a9-a84a-b3e5c40aa9e7/sm/video_thumbnail_12825882.jpg","duration":315,"publication_date":"2014-01-14T06:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-manly-videogame-men","changefreq":"weekly","video":[{"title":"S1:E37 - The Best EVER! - Manly Videogame Men","description":"Of all the manly men in videogames, who are the manliest? These are! Who's your manliest videogame man EVER? Tell us in the comments!","player_loc":"https://roosterteeth.com/embed/the-best-ever-manly-videogame-men","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa4996c3-21db-460d-9ebe-8461f6679b76/sm/video_thumbnail_12825644.png","duration":351,"publication_date":"2014-01-11T08:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011014-far-cry-compilation-2k-czech-layoffs-abc-lifted-mass-effect-3-art","changefreq":"weekly","video":[{"title":"S1:E575 - Hard News 01/10/14 - Far Cry Compilation, 2K Czech layoffs, ABC lifted Mass Effect 3 art","description":"Today on Hard News, Far Cry Compilation announced, 2K Czech close Prague office, and ABC's Agents of SHIELD lift concept art from Mass Effect 3.\r\n\t\r\n\tFar Cry Compilation announced - http://www.screwattack.com/news/far-cry-classiccompilation-coming-na-and-eu-february\r\n\t2K Czech close Prague office - http://www.screwattack.com/news/2k-czech-closes-prague-office-and-may-be-bringing-mafia-3-development-us\r\n\tAgents of SHIELD lift concept art from Mass Effect 3 - http://www.screwattack.com/news/bioware-concept-art-ripped-use-episode-marvels-agents-shield\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-011014-far-cry-compilation-2k-czech-layoffs-abc-lifted-mass-effect-3-art","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cddd1dd-c284-43f9-b563-d3c32c92c743/sm/video_thumbnail_12825596.jpg","duration":175,"publication_date":"2014-01-10T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-peggle-2","changefreq":"weekly","video":[{"title":"S1:E2 - Out of the Box - Peggle 2","description":"This time on Out of the Box, we're going into the dangerous world of Peggle 2! Why is this game so addicting? Why is it so awesome? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-peggle-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/540878a0-e87c-4e60-a96c-12a2615708f0/sm/video_thumbnail_12825488.png","duration":2036,"publication_date":"2014-01-09T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010914-double-dragon-neon-to-pc-left-4-dead-dev-has-a-new-game-and-the-wwe-unveils-a-stunner-of-a-network","changefreq":"weekly","video":[{"title":"S1:E574 - Hard News 01/09/14 - Double Dragon Neon to PC, Left 4 Dead dev has a new game, and the WWE unveils a stunner of a network","description":"Today on Hard News, Double Dragon comes to PC, the Left 4 Dead dev’s new game, and the WWE hits the internet with a stunner.\r\n \r\nDouble Dragon comes to PC - http://www.screwattack.com/video/Heres-the-announcement-trailer-for-Double-Dragon-Neon-on-Steam--12825501\r\n \r\nLeft 4 Dead dev’s latest game is Evolve - http://www.screwattack.com/news/turtle-rocks-newest-game-evolve-has-been-talk-internet-lately\r\n \r\nWWE is launching a network - http://www.screwattack.com/news/world-wrestling-entertainment-ces-reveals-247-streaming-service-called-wwe-network\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Sean Hinz - Twitter.com/SeanHinz\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-010914-double-dragon-neon-to-pc-left-4-dead-dev-has-a-new-game-and-the-wwe-unveils-a-stunner-of-a-network","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14677c16-f3e5-4322-903a-19ed0761d738/sm/video_thumbnail_12825505.png","duration":192,"publication_date":"2014-01-09T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"season-finale\"","changefreq":"weekly","video":[{"title":"S1:E147 - SideScrollers - \"Season Finale\"","description":"The guys wind down the season of SideScrollers live from MAGfest.  SideScrollers will return!","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"season-finale\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc63b77a-2b68-4149-943d-2190eb9e2a5e/sm/video_thumbnail_12825434.jpg","duration":3660,"publication_date":"2014-01-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/making-the-avgn-game","changefreq":"weekly","video":[{"title":"S1:E701 - Making the AVGN Game","description":"S1:E701 - Making the AVGN Game","player_loc":"https://roosterteeth.com/embed/making-the-avgn-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ee52054-1969-48d6-af24-1d6cea0054ce/sm/video_thumbnail_12825442.jpg","duration":3663,"publication_date":"2014-01-08T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/alien-isolation-is-real-titanfall-caps-multiplayer-steam-leaks-some-games-hard-news-010814","changefreq":"weekly","video":[{"title":"S1:E573 - Alien: Isolation Is Real, Titanfall Caps Multiplayer, Steam Leaks Some Games - Hard News 01/08/14","description":"Today on Hard News, Alien Isolation is revealed by SEGA, Titanfall caps its multiplayer to 12 humans, Steam leaks some new games like Batman Arkham Origins Blackgate HD.\r\nSEGA's Alien: Isolation has been revealed along with a trailer and screenshots - http://www.screwattack.com/news/segas-alien-isolation-has-been-revealed-along-trailer-and-screenshots\r\nTitanfall multiplayer will be capped at 12 human players for 6v6 mayhem! - http://www.screwattack.com/news/titanfall-multiplayer-will-be-capped-12-human-players-6v6-mayhem\r\n[Rumor] Steam leak points to a few unconfirmed games coming to the platform? - http://www.screwattack.com/news/rumor-steam-leak-points-few-unconfirmed-games-coming-platform\r\nBatman: Arkham Origins Blackgate - Review - http://www.screwattack.com/reviews/batman-arkham-origins-blackgate-review\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Sean Hinz - Twitter.com/SeanHinz","player_loc":"https://roosterteeth.com/embed/alien-isolation-is-real-titanfall-caps-multiplayer-steam-leaks-some-games-hard-news-010814","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc1c8825-baad-4542-b479-5d3c9f44d7c2/sm/video_thumbnail_12825440.png","duration":190,"publication_date":"2014-01-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010714-steam-machines-revealed-nintendo-to-pay-big-in-patent-lawsuit-and-the-playstations-future-is-now","changefreq":"weekly","video":[{"title":"S1:E572 - Hard News 01/07/14 - Steam Machines revealed, Nintendo to pay big in patent lawsuit, and the Playstation?s future is Now","description":"Today on Hard News, plenty of Steam Machines were unveiled at CES, Nintendo will be paying a long time for its patent lawsuit, and the future of Playstation is Now.\r\n \r\nSteam Machines debut at CES 2014 - http://www.screwattack.com/news/over-14-steam-machines-have-been-revealed-and-here-gallery-details\r\n \r\nNintendo loses in 3DS camera patent case - http://www.screwattack.com/news/nintendo-loses-another-lawsuit-forced-pay-share-sales-tomita\r\n \r\nPlaystation’s game streaming service: Now - http://www.screwattack.com/news/sony-brings-heat-playstation-now-streaming-service-coming-summer\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Sean Hinz - Twitter.com/SeanHinz\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-010714-steam-machines-revealed-nintendo-to-pay-big-in-patent-lawsuit-and-the-playstations-future-is-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8bd116c-88f5-4c8d-bdd7-dfb4b76a7768/sm/video_thumbnail_12825357_1.png","duration":179,"publication_date":"2014-01-08T05:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/smash-tv-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E413 - Smash TV - Video Game Vault","description":"S1:E413 - Smash TV - Video Game Vault","player_loc":"https://roosterteeth.com/embed/smash-tv-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17ecf4a6-1b5e-46a8-b261-4b553d9db901/sm/video_thumbnail_12825318.jpg","duration":184,"publication_date":"2014-01-07T09:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-vs-sega-with-emmitt-smith","changefreq":"weekly","video":[{"title":"S1:E700 - Nintendo vs Sega with Emmitt Smith","description":"S1:E700 - Nintendo vs Sega with Emmitt Smith","player_loc":"https://roosterteeth.com/embed/nintendo-vs-sega-with-emmitt-smith","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a74afd52-cc2e-4520-881b-68ddbc2b05d0/sm/video_thumbnail_12825264.jpg","duration":162,"publication_date":"2014-01-06T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010314-steam-server-ddos-attack-china-bans-battlefield-4-marvel-games-disappearing","changefreq":"weekly","video":[{"title":"S1:E571 - Hard News 01/03/14 - Steam server DDoS attack, China bans Battlefield 4, Marvel games disappearing","description":"Today on Hard News, Steam servers crash due to a DDoS attack, China bans Battlefield 4 because it’s a “threat to national security,” and Activision is pulling down Marvel games from XBLA, PSN.\r\n\t\r\n\tSteam server DDoS attack - http://www.screwattack.com/news/valve-helping-fan-built-co-op-version-half-life-come-steam\r\n\tChina bans Battlefield 4 - http://www.screwattack.com/news/battlefield-4-china-rising-banned-china\r\n\tMarvel games disappearing - http://www.screwattack.com/news/deadpool-and-other-activison-marvel-games-have-been-removed-psn-xbla-and-steam\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-010314-steam-server-ddos-attack-china-bans-battlefield-4-marvel-games-disappearing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/141c5903-3d50-4ab3-9cc8-c8a97fcf9ea8/sm/video_thumbnail_12825043.jpg","duration":220,"publication_date":"2014-01-03T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-hate-killer-instinct-2013-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E8 - 19 Reasons we HATE Killer Instinct (2013) with Evil Craig","description":"S1:E8 - 19 Reasons we HATE Killer Instinct (2013) with Evil Craig","player_loc":"https://roosterteeth.com/embed/19-reasons-we-hate-killer-instinct-2013-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/303423fa-bc9c-46a3-81ee-d23e79b1204b/sm/video_thumbnail_12824960.jpg","duration":85,"publication_date":"2014-01-01T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/23-reasons-we-love-killer-instinct-2013","changefreq":"weekly","video":[{"title":"S1:E55 - 23 Reasons we LOVE Killer Instinct (2013)","description":"S1:E55 - 23 Reasons we LOVE Killer Instinct (2013)","player_loc":"https://roosterteeth.com/embed/23-reasons-we-love-killer-instinct-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0035ac40-3785-4422-b5b1-ec6e0800a680/sm/video_thumbnail_12824937_0.jpg","duration":113,"publication_date":"2014-01-01T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2013-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E699 - The 2013 ScrewAttack Royal Rumble!","description":"I hope you're ready! READY TO RUMBLE! 20 ScrewAttack people and partners are stepping into the ScrewAttack Wrestling ring, and 19 of them are going right back out over that top rope. The one person left standing at the end is the winner of the 2013 ScrewAttack Royal Rumble! Who's it gonna be? Chad? Craig? AVGN? brentalfloss? Wiz? Boomstick? It's gonna be crazy!","player_loc":"https://roosterteeth.com/embed/the-2013-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa91c339-d7ee-4ed7-a6b0-08721c1e93b6/sm/video_thumbnail_12824876.jpg","duration":1917,"publication_date":"2014-01-01T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-ho-ho-hos-ii-the-reckoning","changefreq":"weekly","video":[{"title":"S1:E91 - Top 5 Ho Ho Hos II: The Reckoning","description":"Some video game characters are just \"asking for it,\" if you know what we mean.  These would be the worst of them.","player_loc":"https://roosterteeth.com/embed/top-5-ho-ho-hos-ii-the-reckoning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48434b32-c160-4894-9de5-3d3f797f720a/sm/video_thumbnail_12824806.jpg","duration":295,"publication_date":"2013-12-30T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-ho-ho-hos-honorable-mentions","changefreq":"weekly","video":[{"title":"S1:E90 - Top 5 Ho Ho Hos Honorable Mentions","description":"Only five could make the real list, but don't worry; these are still plenty ho-ish!","player_loc":"https://roosterteeth.com/embed/top-5-ho-ho-hos-honorable-mentions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21f52cf0-c207-404c-bff4-9d78b716d713/sm/video_thumbnail_12824805.jpg","duration":339,"publication_date":"2013-12-30T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-recap-123013-youtubes-strict-content-id-policies-and-the-folly-of-ea","changefreq":"weekly","video":[{"title":"S1:E570 - Hard News Recap 12/30/13 - YouTube's strict Content ID policies and the folly of EA","description":"Today on Hard News, YouTube's strict Content ID policies and copyright strikes and the good and bad of EA over the year 2013.\r\n\t\r\n\tYouTube's strict Content ID policies - http://www.screwattack.com/news/hard-news-recap-2013-youtube-and-publishers-wage-war-let%E2%80%99s-plays\r\n\tThe folly of EA - http://www.screwattack.com/news/hard-news-recap-2013-folly-electronic-arts\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-recap-123013-youtubes-strict-content-id-policies-and-the-folly-of-ea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfd8d286-872f-49e2-a3a8-5fcbdffd8cc3/sm/video_thumbnail_12824842.jpg","duration":271,"publication_date":"2013-12-30T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-recap-122713-the-fall-of-thq-and-the-mighty-no-9-fiasco","changefreq":"weekly","video":[{"title":"S1:E569 - Hard News Recap 12/27/13 - The Fall of THQ and the Mighty No. 9 Fiasco","description":"Today on Hard News, the drawn out end of THQ, and Keiji Inafune's Might No. 9, his Kickstarter and Dina Abou Karam.\r\n\t\r\n\tThe Fall of THQ - http://www.screwattack.com/news/hard-news-recap-2013-fall-thq\r\n\tMighty No. 9 - http://www.screwattack.com/news/hard-news-recap-2013-mighty-no-9-kickstarter\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-recap-122713-the-fall-of-thq-and-the-mighty-no-9-fiasco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d8b77a0-7a95-4cf5-9421-7ff82c1024b0/sm/video_thumbnail_12824647.jpg","duration":244,"publication_date":"2013-12-27T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2013-sagys-the-winner-for-worst-multiplatform-game-is","changefreq":"weekly","video":[{"title":"S1:E698 - 2013 SAGYs - The Winner for Worst Multiplatform Game is...","description":"**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\n \r\nRide to Hell Retribution, Aliens Colonial Marines, and Call of Duty Ghosts, were all nominated for The Worst Multiplatform Game of 2013, but the one who wins it is...","player_loc":"https://roosterteeth.com/embed/2013-sagys-the-winner-for-worst-multiplatform-game-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b54b8c44-c2a3-425c-ad91-a7efa0af217f/sm/video_thumbnail_12824623.jpg","duration":63,"publication_date":"2013-12-27T08:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-recap-122613-the-console-war-of-our-generation-and-the-rise-of-the-steam-machine","changefreq":"weekly","video":[{"title":"S1:E568 - Hard News Recap 12/26/13 - The Console War of our generation and the rise of the Steam Machine","description":"Today on Hard News, a recap of the ridiculous Microsoft and Sony console war and Valve's entrance into the console market with the Steam Machine.\r\n\t\r\n\tThe Console War of our generation - http://www.screwattack.com/news/hard-news-recap-2013-console-wars\r\n\tThe Steam Machine - http://www.screwattack.com/news/hard-news-recap-2013-steam-os-steam-controller-steam-machines\r\n\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-recap-122613-the-console-war-of-our-generation-and-the-rise-of-the-steam-machine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fbe586d-14fa-494e-95a1-5ea86f3dcfe4/sm/video_thumbnail_12824592.jpg","duration":221,"publication_date":"2013-12-26T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2013-sagys-the-winner-for-worst-portable-game-is","changefreq":"weekly","video":[{"title":"S1:E697 - 2013 SAGYs - The Winner for Worst Portable Game is...","description":"**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\nCastlevania: Lords of Shadow: Mirror of Fate, Dragon Fantasy Book 2, and Final Fantasy: All the Bravest were chosen as three of the worst portable in 2013, but the one that truly is the worst as chosen by the votes is...","player_loc":"https://roosterteeth.com/embed/2013-sagys-the-winner-for-worst-portable-game-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04a72fca-a9d5-48c6-9388-95a3776e52d0/sm/video_thumbnail_12824578.jpg","duration":58,"publication_date":"2013-12-26T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"the-best-of-the-worst\"","changefreq":"weekly","video":[{"title":"S1:E146 - SideScrollers - \"The Best of the Worst\"","description":"As we prepare to end of eight year season of SideScrollers and take a little break some of the crew, both past a present, reflect on their most memorable moments on SideScrollers.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"the-best-of-the-worst\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b799d954-d182-4cb4-bac6-837daf9bb77c/sm/video_thumbnail_12824525.jpg","duration":1980,"publication_date":"2013-12-25T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/christmas-with-screwattack","changefreq":"weekly","video":[{"title":"S1:E696 - Christmas with ScrewAttack!","description":"S1:E696 - Christmas with ScrewAttack!","player_loc":"https://roosterteeth.com/embed/christmas-with-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7d183d1-1047-4de9-97ef-3d0c39a5b71c/sm/video_thumbnail_12824522.jpg","duration":103,"publication_date":"2013-12-25T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2013-sagys-the-winner-for-worst-wii-u-game-is","changefreq":"weekly","video":[{"title":"S1:E695 - 2013 SAGYs - The Winner for Worst Wii U Game is...","description":"**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\nSonic Lost World, Pokemon Rumble, and Family Party 30 Great Games were chosen as three of the worst games on Wii U in 2013, but the one that truly is the worst as chosen by the votes is...","player_loc":"https://roosterteeth.com/embed/2013-sagys-the-winner-for-worst-wii-u-game-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fd62ff7-b539-44a9-ad07-b842f7388a8c/sm/video_thumbnail_12824523.jpg","duration":52,"publication_date":"2013-12-25T08:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2013-sagys-the-winner-for-worst-game-on-a-microsoft-console-is","changefreq":"weekly","video":[{"title":"S1:E694 - 2013 SAGYs - The Winner for Worst Game on a Microsoft Console is...","description":"**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\nRyse: Son of Rome, Fighter Within, and Gears of War: Judgement were chosen by the voters as the three worst games on a Microsoft console. Only one of them can truly be the worst, and the winner of the SAGY is...","player_loc":"https://roosterteeth.com/embed/2013-sagys-the-winner-for-worst-game-on-a-microsoft-console-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19803418-80c3-47da-a813-7048161a00bb/sm/video_thumbnail_12824463.jpg","duration":59,"publication_date":"2013-12-24T08:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122313-polaris-down-to-37-channels-x-men-simpsons-delisted-and-skullgirls-encore","changefreq":"weekly","video":[{"title":"S1:E567 - Hard News 12/23/13 - Polaris down to 37 channels, X-Men, Simpsons delisted, and Skullgirls Encore","description":"Today on Hard News, Polaris down to 37 channels, X-Men and Simpson Arcade delisted from XBLA and PSN, and Skullgirls Encore.\r\n\t\r\n\tPolaris down to 37 channels - http://www.screwattack.com/news/rumor-polaris-migrates-400-content-creators-rpm-telling-them\r\n\tX-Men and Simpson Arcade delisted from XBLA and PSN - http://www.screwattack.com/news/x-men-and-simpsons-arcade-games-get-delisted-psn\r\n\tThe Typing of the Skullgirls - http://www.screwattack.com/news/mike-z-reveals-typing-skullgirls-mode-skullgirls-encore\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-122313-polaris-down-to-37-channels-x-men-simpsons-delisted-and-skullgirls-encore","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c9e1099-8194-4ca6-b476-81d9ffaa9293/sm/video_thumbnail_12824407_0.jpg","duration":230,"publication_date":"2013-12-23T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2013-sagys-the-winner-for-worst-game-on-a-sony-console-is","changefreq":"weekly","video":[{"title":"S1:E693 - 2013 SAGYs - The Winner for Worst Game on a Sony Console is...","description":"**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\nMany games were nominated for the SAGY for the Worst Game on a Sony Console, and the voters picked Knack, Beyond: Two Souls, and Final Fantasy XIV: A Realm Reborn as the top three. From those, only one would be chosen, and the winner of the SAGY for Worst Game on a Sony Console in 2013 is...","player_loc":"https://roosterteeth.com/embed/2013-sagys-the-winner-for-worst-game-on-a-sony-console-is","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e373970-3715-449f-a2af-d2021e496b58/sm/video_thumbnail_12824361.jpg","duration":60,"publication_date":"2013-12-23T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/17-reasons-we-hate-super-mario-3d-world-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E7 - 17 Reasons We HATE Super Mario 3D World with Evil Craig","description":"Evil Craig is here to tell why one of the best Mario games ever SUCKS!","player_loc":"https://roosterteeth.com/embed/17-reasons-we-hate-super-mario-3d-world-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5397a9f6-2c07-4d46-836a-57fbfb6bd18c/sm/video_thumbnail_12824220.jpg","duration":80,"publication_date":"2013-12-20T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonestorm-vs-rocket-death-lions-the-bottoms-up-cup","changefreq":"weekly","video":[{"title":"S1:E692 - Bonestorm vs Rocket Death Lions - The Bottoms Up Cup ","description":"Can Bonestorm get its first win or will Rocket Death Lions rocket maul their faces off??","player_loc":"https://roosterteeth.com/embed/bonestorm-vs-rocket-death-lions-the-bottoms-up-cup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/225aebe8-105d-4b22-a85e-8ceb41518e04/sm/video_thumbnail_12822473.jpg","duration":8536,"publication_date":"2013-12-20T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122013-ea-under-fire-pax-diversity-lounge-and-target-got-hacked","changefreq":"weekly","video":[{"title":"S1:E566 - Hard News 12/20/13 - EA under fire, PAX Diversity Lounge, and Target got hacked!","description":"Today on Hard News, EA getting sued for Battlefield, PAX creating Diversity Lounge, and Target stores got hacked and customer data was stolen.\r\n\t\r\n\tEA getting sued for Battlefield - http://www.screwattack.com/news/ea-coming-under-fire-dlc-and-being-sued-over-battlefield\r\n\tPAX creating Diversity Lounge - http://www.screwattack.com/news/pax-document-leaks-their-new-diversity-lounge-2014\r\n\tTarget got hacked! - http://www.screwattack.com/news/psa-target-hacked-over-40-million-customers-private-information-compromised\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-122013-ea-under-fire-pax-diversity-lounge-and-target-got-hacked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f791f13-3850-4695-af2b-48cfc72daea4/sm/video_thumbnail_12824183.jpg","duration":255,"publication_date":"2013-12-20T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/21-reasons-we-love-super-mario-3d-world","changefreq":"weekly","video":[{"title":"S1:E56 - 21 Reasons We LOVE Super Mario 3D World!","description":"From Piranha Plant cannibalism to crazy cat transformations, heres 21 reasons we love Super Mario 3D World!","player_loc":"https://roosterteeth.com/embed/21-reasons-we-love-super-mario-3d-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/024cd807-d8ca-4d31-ad25-9c712d2e27fa/sm/video_thumbnail_12824161.jpg","duration":71,"publication_date":"2013-12-20T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121813-hyrule-warriors-coming-to-wii-u-nintendo-direct-microsofts-broken-promises","changefreq":"weekly","video":[{"title":"S1:E565 - Hard News 12/18/13 - Hyrule Warriors coming to Wii U, Nintendo Direct, Microsoft's broken promises","description":"Today on Hard News, Hyrule Warriors coming to Wii U, Nintendo Direct highlights, and Microsoft's broken promises on DRM.\r\n\t\r\n\tNintendo Direct - http://www.screwattack.com/events/Nintendo-Direct\r\n\tNintendo Direct highlights - http://www.screwattack.com/news/reggie-and-regginator-summarize-everything-you-missed-nintendo-direct\r\n\tMicrosoft's broken promises on DRM - http://www.screwattack.com/news/xbox-one-drm-makes-triumphant-return-during-team-spooky-stream\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121813-hyrule-warriors-coming-to-wii-u-nintendo-direct-microsofts-broken-promises","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043d212e-aebc-42f0-be6d-a13d691f314a/sm/video_thumbnail_12823969.png","duration":213,"publication_date":"2013-12-18T13:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-nes-remix","changefreq":"weekly","video":[{"title":"S1:E3 - Out of the Box - NES Remix","description":"Is Nintendo's newest download title based off 16 classic NES game worth the price tag? Find out as we dive in.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-nes-remix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/256ee58d-a096-4e0e-a7e1-e3639136e538/sm/video_thumbnail_12823945.jpg","duration":2262,"publication_date":"2013-12-18T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-121813","changefreq":"weekly","video":[{"title":"S1:E691 - SideScrollers Extended - 12/18/13","description":"Chad and Sam talk about MAGFest!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-121813","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7504c61b-c5c2-467f-90f5-c331ae0bcd84/sm/video_thumbnail_12823952.jpg","duration":743,"publication_date":"2013-12-18T09:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-the-walking-dead-season-2","changefreq":"weekly","video":[{"title":"S1:E4 - Out of the Box - The Walking Dead Season 2","description":"This time on Out of the Box, we're headed into zombie country for the Walking Dead Season 2! Is this an adventure worth continuing? Should you point to and click on the purchase button? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-the-walking-dead-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a590e2ae-9216-4119-94d7-ea91bea4ef39/sm/video_thumbnail_12823944.png","duration":1419,"publication_date":"2013-12-18T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/\"dino-attack\"-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E145 - \"Dino Attack!\" - SideScrollers","description":"The SideScrollers are transformed into ravenous dinosaurs! Hold on to your butts!\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttackChad)\r\n\tCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio download HERE!\r\n\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/\"dino-attack\"-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fc754e8-907d-4492-8104-d27bb21d42a6/sm/video_thumbnail_12823890.jpg","duration":3779,"publication_date":"2013-12-17T14:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121713-ea-screws-indie-devs-xbox-one-to-china-amalur-abandoned","changefreq":"weekly","video":[{"title":"S1:E564 - Hard News 12/17/13 - EA screws indie devs, Xbox One to China, Amalur abandoned","description":"Today on Hard News, EA screws over indie developers through Code Wars, Xbox One may be coming to China, and the Kingdoms of Amalur get left behind.\r\n\t\r\n\tEA screws indie devs - http://www.screwattack.com/news/ea-creates-code-wars-steal-fresh-ideas-competitive-indie-developers\r\n\tXbox One to China - http://www.screwattack.com/news/rumor-china-may-actually-receive-xbox-one-2014\r\n\tNo one wants Kingdoms of Alamur - http://www.screwattack.com/news/after-38-studios-auction-no-one-wants-buy-kingdoms-amalur\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121713-ea-screws-indie-devs-xbox-one-to-china-amalur-abandoned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1c83de5-55fa-4d0c-9cee-344664cabefe/sm/video_thumbnail_12823886.jpg","duration":174,"publication_date":"2013-12-17T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/double-dragon-v-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E412 - Double Dragon V - Video Game Vault","description":"S1:E412 - Double Dragon V - Video Game Vault","player_loc":"https://roosterteeth.com/embed/double-dragon-v-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68d06719-b777-489b-9093-f59972537c53/sm/video_thumbnail_12823878.jpg","duration":120,"publication_date":"2013-12-17T12:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-xbox-one-launch-exclusives","changefreq":"weekly","video":[{"title":"S1:E89 - Top 5 Xbox One Launch Exclusives","description":"The 360 was criticized later in its life cycle for having few exclusives, but the Xbox One tries to correct that with the five games you see here!","player_loc":"https://roosterteeth.com/embed/top-5-xbox-one-launch-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3837e4a-ca23-4e3d-9450-f2b47ed0359e/sm/video_thumbnail_12823769.jpg","duration":269,"publication_date":"2013-12-16T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-ps4-launch-exclusives","changefreq":"weekly","video":[{"title":"S1:E88 - Top 5 PS4 Launch Exclusives","description":"Sony's latest console offering has some software you won't find on Microsoft's, but which have what it takes to be in the Top 5?","player_loc":"https://roosterteeth.com/embed/top-5-ps4-launch-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/061dfaea-a179-4ec8-8267-68f223e12cbe/sm/video_thumbnail_12823768.jpg","duration":229,"publication_date":"2013-12-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121613-mighty-no-9-in-ninja-gaiden-mvc-pulled-from-xbla-ghosts-n-goblins-frozen","changefreq":"weekly","video":[{"title":"S1:E563 - Hard News 12/16/13 - Mighty No. 9 in Ninja Gaiden, MvC pulled from XBLA, Ghosts n' Goblins frozen","description":"Today on Hard News, Mighty No. 9 will premiere in the new Yaiba: Ninja Gaiden Z as DLC, Marvel vs Capcom 2 and 3 pulled from XBLA and PSN, and Phantasm Studios' Ghosts n' Goblins remake Kickstarter has been frozen by Capcom.\r\n\t\r\n\tMvC pulled from XBLA and PSN - http://www.screwattack.com/news/capcom-remove-two-marvel-vs-capcom-games-xbla-and-psn\r\n\tMighty No. 9 in Ninja Gaiden - http://www.screwattack.com/news/capcom-remove-two-marvel-vs-capcom-games-xbla-and-psn\r\n\tGhosts n' Goblins frozen - http://www.screwattack.com/news/unofficial-ghosts-n-goblins-sequel-removed-kickstarter-capcom\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121613-mighty-no-9-in-ninja-gaiden-mvc-pulled-from-xbla-ghosts-n-goblins-frozen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a49d5889-44e7-4e27-9c2b-3aff71e594ce/sm/video_thumbnail_12823783.jpg","duration":226,"publication_date":"2013-12-16T13:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-holiday-gaming-gifts","changefreq":"weekly","video":[{"title":"S1:E36 - The Best EVER! - Holiday Gaming Gifts","description":"Come December, whatever you celebrate this time of year, we've all asked for something gaming related as a gift. Well this is what some of the ScrewAttack crew would call their best EVER holiday gaming gift!","player_loc":"https://roosterteeth.com/embed/the-best-ever-holiday-gaming-gifts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f434f0b6-96c9-42c8-bf10-4bf9b4417d3d/sm/video_thumbnail_12823596.png","duration":339,"publication_date":"2013-12-14T08:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nicks-best-ever-holiday-gaming-gift","changefreq":"weekly","video":[{"title":"S1:E690 - Nick's Best EVER Holiday Gaming Gift","description":"Boy did he want a Nintendo 64, and the morning he got it was magical!","player_loc":"https://roosterteeth.com/embed/nicks-best-ever-holiday-gaming-gift","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/223cbe66-1c53-4ad0-82dc-560634c0f9eb/sm/video_thumbnail_12823594.png","duration":152,"publication_date":"2013-12-14T08:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121313-unds-new-football-coach-leisure-suit-larry-scandalyoutubes-content-id","changefreq":"weekly","video":[{"title":"S1:E562 - Hard News 12/13/13 - UND's new football coach, Leisure Suit Larry scandal,YouTube's Content ID","description":"Today on Hard News, Christopher McComas cites playing Madden as experience on his application for UND football coach, Al Lowe retires due to a preposterous sex scandal, and YouTube's Content ID algorithm flagging content creators.\r\n\t\r\n\tMadden \"pro\" turned football coach - http://www.screwattack.com/news/application-coaching-position-university-cites-video-games-work-experience\r\n\tLeisure Suit Larry scandal - http://www.screwattack.com/news/al-lowe-leaves-leisure-suit-larry-behind-after-developer-sex-scandal\r\n\tYouTube's mysterious algorithm - http://www.screwattack.com/news/monetary-compensation-networks-coming-under-fire-youtube-policy-changes\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121313-unds-new-football-coach-leisure-suit-larry-scandalyoutubes-content-id","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69e545a8-2ea8-474d-9254-94fe41ba9e01/sm/video_thumbnail_12823562.jpg","duration":220,"publication_date":"2013-12-13T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-nominees-for-worst-multi-platform-game-in-2013-are","changefreq":"weekly","video":[{"title":"S1:E689 - The Nominees for Worst Multi-Platform Game in 2013 are...","description":"**LEAVE YOUR VOTE IN THE COMMENTS**\r\n**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\nMany games were nominated for the SAGY for Worst Multi-Platform Game of 2013, but these are the three that stood out and above all the others. To help decide which of these games gets a Shitty Ass Game of the Year award, leave a comment with your vote!","player_loc":"https://roosterteeth.com/embed/the-nominees-for-worst-multi-platform-game-in-2013-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf31cff8-4f17-42e1-9aff-47d6848b55ae/sm/video_thumbnail_12823528.png","duration":61,"publication_date":"2013-12-13T08:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121213-terminal-reality-shut-down-fallout-4-in-the-works-and-is-mighty-no-9-a-lady","changefreq":"weekly","video":[{"title":"S1:E561 - Hard News 12/12/13 - Terminal Reality shut down, Fallout 4 in the works, and is Mighty No. 9 a lady?","description":"Today on Hard News, the developer studio Terminal Reality may be closing, Fallout 4 evidence surfaces and the game may take place in Boston, and uproar over Comcept's Dina Abou Karam's wish that Beck were a girl.\r\n\t\r\n\tTerminal Reality may be closed - http://www.screwattack.com/news/rumor-dallas-based-studio-terminal-reality-has-closed-down\r\n\tFallout 4 could take place in Boston - http://www.screwattack.com/news/rumor-fallout-4-be-talking-place-lovely-city-boston\r\n\tIs Mighty No. 9 a lady? - http://www.screwattack.com/video/Theres-some-controversy-developing-in-the-Mighty-No-9-community-concerning-feminism-12823449\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121213-terminal-reality-shut-down-fallout-4-in-the-works-and-is-mighty-no-9-a-lady","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbff8ef1-0357-4329-a1f0-99a43917058e/sm/video_thumbnail_12823456.png","duration":202,"publication_date":"2013-12-12T13:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-nominees-for-worst-portable-game-in-2013-are","changefreq":"weekly","video":[{"title":"S1:E688 - The Nominees for Worst Portable Game in 2013 are...","description":"Many games were nominated for the SAGY for Worst Portable Game of 2013, but these are the three that stood out and above all the others. To help decide which of these games gets a Shitty Ass Game of the Year award, leave a comment with your vote! ","player_loc":"https://roosterteeth.com/embed/the-nominees-for-worst-portable-game-in-2013-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39650de0-14a3-46d3-8264-4b6b36d1ba39/sm/video_thumbnail_12823428.png","duration":68,"publication_date":"2013-12-12T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/\"holy-dart-champion\"-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E144 - \"Holy Dart Champion\" - SideScrollers","description":"Jesus has been exiled from dart tournaments, idiots play with a gun, and Bryan's beard gets around.\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttackChad)\r\n\tCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio download HERE!\r\n\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/\"holy-dart-champion\"-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d867a404-8269-44d1-8c3c-37611607ed4c/sm/video_thumbnail_12823336.jpg","duration":4413,"publication_date":"2013-12-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121113-wii-remote-bundle-elder-scrolls-online-release-date-and-free-gt6-money","changefreq":"weekly","video":[{"title":"S1:E560 - Hard News 12/11/13 - Wii Remote Bundle, Elder Scrolls Online release date, and free GT6 money","description":"Today on Hard News, Nintendo selling refurbished Wii Remote bundle, Elder Scrolls Online gets a release date, and a glitch in GT6 gives you 20,000,000 credits.\r\n\t\r\n\tNintendo selling refurbished Wii Remote bundle - http://www.screwattack.com/news/nintendo-offering-wii-remote-plus-controllers-nunchuck-20\r\n\tElder Scrolls Online gets a release date - http://www.screwattack.com/video/Cyrodiil-descends-into-civil-war-as-The-Elder-Scrolls-Online-is-given-a-release-date-12823339\r\n\tA glitch in GT6 gives you 20,000,000 credits - http://www.screwattack.com/news/glitch-will-help-you-earn-20-million-very-quickly-gran-turismo-6\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121113-wii-remote-bundle-elder-scrolls-online-release-date-and-free-gt6-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51aa659e-875b-401f-be92-27f00fcf46d1/sm/video_thumbnail_12823357.jpg","duration":196,"publication_date":"2013-12-11T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-121113","changefreq":"weekly","video":[{"title":"S1:E687 - SideScrollers Extended - 12/11/13","description":"The three discuss the new comments and MAGFest.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-121113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a66f5b62-9473-4c93-a3ae-f5ab6850d66a/sm/video_thumbnail_12823337.jpg","duration":546,"publication_date":"2013-12-11T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-gran-turismo-6","changefreq":"weekly","video":[{"title":"S1:E5 - Out of the Box - Gran Turismo 6","description":"This time on Out of the Box, we're hitting the track in Gran Turismo 6! How much fun can we have without selling our first born children to afford new cars? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-gran-turismo-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab3e45ff-02fc-432d-a0e8-1e506ef915fd/sm/video_thumbnail_12823333.jpg","duration":2544,"publication_date":"2013-12-11T08:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-nominees-for-worst-game-on-the-wii-u-in-2013-are","changefreq":"weekly","video":[{"title":"S1:E686 - The Nominees for Worst Game on the Wii U in 2013 are...","description":"Many games were nominated for the SAGY for Worst Game on the Wii U, but these are the three that stood out and above all the others. To help decide which of these games gets a Shitty Ass Game of the Year award, leave a comment with your vote! ","player_loc":"https://roosterteeth.com/embed/the-nominees-for-worst-game-on-the-wii-u-in-2013-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35f91f48-3298-4f71-9659-0bacc69b3ba7/sm/video_thumbnail_12823332.png","duration":70,"publication_date":"2013-12-11T07:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121013-3ds-gets-miiverse-nsa-spies-on-your-games-and-prankster-break-your-xbox","changefreq":"weekly","video":[{"title":"S1:E559 - Hard News 12/10/13 - 3DS gets Miiverse, NSA spies on your games, and prankster break your Xbox","description":"Today on Hard News, new 3DS update connects you to the Miiverse, the NSA used games to spy on us, and the Xbox One backwards compatibility trick will break your console.\r\n\t\r\n\tNew 3DS update connects you to the Miiverse - http://www.screwattack.com/news/thanks-latest-update-miiverse-now-available-3ds\r\n\tThe NSA used games to spy on us - http://www.screwattack.com/news/nsa-and-cia-revealed-have-been-spying-online-gamers-nearly-decade\r\n\tXbox One backwards compatibility trick will break your console - http://www.screwattack.com/news/psa-do-not-try-make-you-xbox-one-backwards-compatible-using-6-steps\r\nJynx thumbnail courtesy of http://twitter.com/BadMiiversePost\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121013-3ds-gets-miiverse-nsa-spies-on-your-games-and-prankster-break-your-xbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/194d004a-c133-43ec-8c91-fbffd297b46a/sm/video_thumbnail_12823264_0.jpg","duration":163,"publication_date":"2013-12-10T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2013-sagys-worst-microsoft-console-game-nominations","changefreq":"weekly","video":[{"title":"S1:E685 - The 2013 SAGYs - Worst Microsoft Console Game Nominations","description":"**LEAVE YOUR VOTE IN THE COMMENTS**\r\n**All nominations were made by you, the viewer. The SAGYs are entirely community driven**\r\nMany games were nominated for the SAGY for Worst Game on a Sony Console, but these are the three that stood out and above all the others. To help decide which of these games gets a Shitty Ass Game of the Year award, leave a comment with your vote!","player_loc":"https://roosterteeth.com/embed/the-2013-sagys-worst-microsoft-console-game-nominations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e682679-e944-4e67-b1ce-c5e21eff0cb7/sm/video_thumbnail_12823246.png","duration":67,"publication_date":"2013-12-10T08:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-wii-u-nintendo-games","changefreq":"weekly","video":[{"title":"S1:E87 - Top 5 Wii U Nintendo Games","description":"S1:E87 - Top 5 Wii U Nintendo Games","player_loc":"https://roosterteeth.com/embed/top-5-wii-u-nintendo-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22d30a2c-960e-4e93-852e-6bcb1619c5ac/sm/video_thumbnail_12823164_0.jpg","duration":235,"publication_date":"2013-12-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120913-skullgirls-delisted-vgx-game-announcements-and-vgx-disaster","changefreq":"weekly","video":[{"title":"S1:E558 - Hard News 12/09/13 - Skullgirls delisted, VGX game announcements, and VGX disaster","description":"Today on Hard News, Konami pulls Skullgirls off of XBLA and PSN, new games announced during VGX, and the wonderful disaster that was VGX.\r\n\t\r\n\tKonami pulls Skullgirls off of XBLA and PSN - http://www.screwattack.com/news/skullgirls-may-be-delisted-xbox-live-arcade-psn\r\n\tNew games announced during VGX - http://www.screwattack.com/events/vgx-2013\r\n\tThe wonderful disaster that was VGX - http://www.screwattack.com/news/vgx-why-gamers-deserve-better\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-120913-skullgirls-delisted-vgx-game-announcements-and-vgx-disaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d2ff674-a47c-4472-b1de-79fd68b8a823/sm/video_thumbnail_12823185.jpg","duration":210,"publication_date":"2013-12-09T16:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-nominees-for-worst-game-on-a-sony-console-in-2013-are","changefreq":"weekly","video":[{"title":"S1:E684 - The Nominees for Worst Game on a Sony Console in 2013 are...","description":"Many games were nominated by the g1s for the SAGY for Worst Game on a Sony Console, but these are the three that stood out and above all the others. To help decide which of these games gets a Shitty Ass Game of the Year award, leave a comment with your vote! ","player_loc":"https://roosterteeth.com/embed/the-nominees-for-worst-game-on-a-sony-console-in-2013-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e47bcd2b-8a78-4fee-bd16-95d1448d8c21/sm/video_thumbnail_12823150.png","duration":63,"publication_date":"2013-12-09T08:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craigs-worst-ever-videogame-movie","changefreq":"weekly","video":[{"title":"S1:E683 - Craig's Worst EVER Videogame Movie!","description":"It's safe to say that one movie ruined videogame movies forever for Craig.","player_loc":"https://roosterteeth.com/embed/craigs-worst-ever-videogame-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae61e423-d9f7-4ce4-8ff7-5e100223a28b/sm/video_thumbnail_12822999.jpg","duration":108,"publication_date":"2013-12-07T12:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-7-tinder-trouble","changefreq":"weekly","video":[{"title":"S7:E1 - Tinder Trouble","description":"Josh is forced to call tech support after noticing a strange glitch in his dating app.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-7-tinder-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac309388-a590-43c4-a2ff-2987554e7452/sm/2013912-1455912710663-TINDER_TROUBLE_THUMB.png","duration":198,"publication_date":"2016-02-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-fp-extra-44","changefreq":"weekly","video":[{"title":"S2:E10 - FP Extra: Krampus & The Cameraman","description":"Look, when it’s dark you sometimes run into the camera, ok? Also, Krampus is a pretty cool dude.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-fp-extra-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e51ede7c-25d4-4070-a990-fcb2082ffa5a/sm/2013912-1455934215812-FP44EXTRA-TH.jpg","duration":187,"publication_date":"2016-02-20T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-anime-podcast-2016-01","changefreq":"weekly","video":[{"title":"PE:E1 - Fanservice ONLINE - #0.1","description":"In this official pilot the RT Anime gang talk about alternate titles for Sword Art Online, Gekkan Shoujo Nozaki Kun, and as always, catch up on this week’s episodes of GATE and Erased. This episode originally aired February 19, 2016.","player_loc":"https://roosterteeth.com/embed/rt-anime-podcast-2016-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64b94200-40cc-4556-af92-feb6f03a2f07/sm/2013912-1455934382234-Fan_service_01_Tumbnail.png","duration":4900,"publication_date":"2016-02-20T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-fifteen","changefreq":"weekly","video":[{"title":"S1:E12 - Week Fifteen","description":"Thanks to Onnit for sponsoring this series! It’s the penultimate episode of Buff Buddies, which means a… butt selfie-off… apparently. Also, some reflecting.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-fifteen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/695ee838-f5d3-4e05-a4d0-23f0bae6d676/sm/2013912-1455915127400-BUFF_BUDDIES-Ep12.jpg","duration":525,"publication_date":"2016-02-19T21:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-50","changefreq":"weekly","video":[{"title":"S5:E50 - The Amazing Jock Models – #50 (featuring Tyler Oakley, Korey Kuhl, and Phil Keoghan)","description":"Hey everyone, my name is On The Spot and today we're going to the exotic and foreign land of Los Angeles to visit Tyler Oakley and Korey Kuhl, and to find out if the natural bond between show hosts truly exists between Phil Keoghan of The Amazing Race and our very own host, Jon Risinger. Spoiler alert: it does and it's magical. Also, apparently the Golden Gus has a fantastic thigh gap. Who knew?\n\n\n\nThis episode originally aired on February 18, 2016 and is sponsored by The Amazing Race and Marvel Avengers Academy (https://goo.gl/QtIr7I).","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f67d4c34-3e88-40c1-b110-c5593fadcea2/sm/2013912-1455909239266-ots_50_thumb.jpg","duration":2753,"publication_date":"2016-02-19T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-zombie-hunt-44","changefreq":"weekly","video":[{"title":"S2:E44 - Zombie Hunt – #44","description":"It’s Free Play! Meg and Ryan are learning new dictionary words and getting into gif wars. Plus, Mariel is away on a secret vacation, and has sent along clues as to her whereabouts. Finally, Meg and Ryan lock and load to take on hordes of the walking dead.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-zombie-hunt-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d498f9-d4c4-4f3a-9906-4177942b0c0d/sm/2013912-1455898623801-fp44_-_THUMB.png","duration":1539,"publication_date":"2016-02-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-26","changefreq":"weekly","video":[{"title":"2016:E26 - Sportsball Finale – #26","description":"Join Jack Pattillo, Tyler Coe, and Joel Heyman as they discuss the NBA All-Star Game, the legacy of Kobe Bryant, the Dunk Contest, Cleveland Rec League Soccer, Murder in South America, Peyton Manning and Tennessee, Ronda Rousey, Sports Illustrated Swimsuit Edition, and more on this week's episode of Sportsball! This episode originally aired on February 17, 2016. \n\n\n\n2:43 - NBA\n\n19:51 - Rec League Stories\n\n26:58 - Peyton Manning and Tennessee\n\n36:07 - Ronda Rousey Story\n\n40:38 - Sports Illustrated Swimsuit Edition","player_loc":"https://roosterteeth.com/embed/sportsball-2016-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/360a4f8c-606b-48fd-bdf4-70d67c5577cb/sm/2013912-1455730393633-sb26_-_THUMB.png","duration":3005,"publication_date":"2016-02-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-ryan-and-meg-run-the-big-5-43","changefreq":"weekly","video":[{"title":"S2:E43 - Ryan and Meg Run the Big 5 – #43","description":"Meg and Ryan start the show off hot and heavy, with Meg detailing her newfound obsession for the time-traveling romance series, Outlander. Plus, Meg and Ryan ran a 5k over the weekend for the Buff Buddies finale, and we've got an exclusive teaser!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-ryan-and-meg-run-the-big-5-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a8c20fb-2708-480d-ab97-cf1256591fa5/sm/2013912-1455729150993-fp43_-_THUMB.png","duration":1127,"publication_date":"2016-02-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-2","changefreq":"weekly","video":[{"title":"S2:E3 - Puppet Arms & Giant Womb","description":"Join Burnie, Adam, and Blaine as they discuss the finer points of having puppet arms and being born from a giant womb every day.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abfb082c-62f3-4b18-a981-31d41c53606e/sm/2013912-1455666221285-MDBs2e2_Thumbnail.png","duration":308,"publication_date":"2016-02-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-363-post-show","changefreq":"weekly","video":[{"title":"2016:E6 - Podcast #363 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as Barbara gives the rest of the cast a lesson on Snapchat.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-363-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/403504be-cc66-4c73-84b4-1121bb738e76/sm/2013912-1455726075288-rtp363_-_PS_-_THUMB.jpg","duration":1087,"publication_date":"2016-02-17T16:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-space-invaders-in-real-life-featuring-barbara-and-lindsay","changefreq":"weekly","video":[{"title":"S3:E17 - Space Invaders In Real Life – Featuring Barbara and Lindsay","description":"On this highly anticipated Sponsor edition of Immersion, Barbara and Lindsay attempt to save Earth from the oncoming Space Invaders. Will they make it? Or will they too be defeated like Michael and Ryan?\n\n\n\nWatch Space Invaders in Real Life and Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-space-invaders-in-real-life-featuring-barbara-and-lindsay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf182191-d938-46f8-ab77-0be3b4f0c80a/sm/2013912-1455663209486-Immersion_Space_Invaders_Sponsor_Thumb.png","duration":284,"publication_date":"2016-02-17T00:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-i-phone-incident-363","changefreq":"weekly","video":[{"title":"2016:E363 - The iPhone Incident – #363","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Deadpool, Valentine's Day, bricking your iPhone, and more on this week's RT Podcast! This episode originally aired on February 16, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-i-phone-incident-363","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abf15b28-e9b1-4314-8a6c-cc2a1c7f3954/sm/2013912-1455644678910-rtp363_-_THUMB.jpg","duration":6362,"publication_date":"2016-02-16T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-airport-dog-jobs","changefreq":"weekly","video":[{"title":"2016:E5 - Airport Dog Jobs","description":"After encountering a dog whose job is to sniff for food, Burnie wonders how cushy a job that dog must have compared to other dog jobs. I just like saying dog job over and over. Dog job.\n\n\n\nAudio from RT Podcast #354","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-airport-dog-jobs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1250c0a2-caab-4751-b9cb-64fa498b89f2/sm/2013912-1455319985994-rtaa215tn1.jpg","duration":118,"publication_date":"2016-02-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-space-invaders-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S3:E16 - Space Invaders in Real Life - Behind the Scenes","description":"Watch the Behind the Scenes of Immersion - Space Invaders in Real Life. Find out what went into making this special episode at RTX Australia. \n\n\n\nWatch Space Invaders in Real Life and the Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-space-invaders-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2f99cde-929f-4d15-89b3-961100c56b97/sm/2013912-1455344589273-SpaceInvaders_BTS_Thumb.jpg","duration":342,"publication_date":"2016-02-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-fp-extra-x-treme-striker","changefreq":"weekly","video":[{"title":"S2:E7 - FP Extra: X-TREME STRIKER","description":"While in Australia, Meg and Ryan stop by Luna Park in Sydney to test their might on the X-TREME STRIKER.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-fp-extra-x-treme-striker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71c94f21-1743-4032-8279-d0c3841a4b8f/sm/2013912-1455294271433-FP_EXTRA_THUMB.jpg","duration":89,"publication_date":"2016-02-13T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-anime-sponsorcast-0-4","changefreq":"weekly","video":[{"title":"2016:E4 - Anime Sponsorcast - #4","description":"Fresh off a RWBY marathon, Miles, Kerry and Gray are joined by Michael Jones to talk more GATE and Erased, plus debating Pokemon vs. Digimon, the Attack on Titan live action movies and more on this edition of the Anime Sponsorcast!","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-anime-sponsorcast-0-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c95d352-0dc6-4453-b043-d1e1e9f20297/sm/2013912-1455342628521-ANIME04_-THUMB.jpg","duration":3600,"publication_date":"2016-02-13T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-12-end-of-the-beginning","changefreq":"weekly","video":[{"title":"V3:E12 - Volume 3, Chapter 12: End of the Beginning","description":"Viewer Discretion Advised. For more information, please read:http://roosterteeth.com/post/51193367\n\n\n\nThe Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind…","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-12-end-of-the-beginning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad84ed7b-8945-4e7e-8920-2fd6d0f66188/sm/2013912-1455296293097-RWBY_THUMB_Ep012.png","duration":1685,"publication_date":"2016-02-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-rwby-extravaganza-42","changefreq":"weekly","video":[{"title":"S2:E42 - RWBY Extravaganza! - #42","description":"RWBY has invaded the Free Play set! Meg sits down with Co-Director Gray Haddock and Ruby Rose herself, Lindsay Jones, to talk about making the show as well as debut an exclusive clip from Saturday’s finale. Finally, Team Free Play (aka Team Ass Play) put their artistic skills to the test against Team RWBY in a game of telephone, with a twist.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-rwby-extravaganza-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47eb57e0-5d5a-40d4-9da4-cb27b9455f8a/sm/2013912-1455294094490-FP42_-_THUMB.jpg","duration":1751,"publication_date":"2016-02-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-49","changefreq":"weekly","video":[{"title":"S5:E49 - Death of the Golden Gus - #49","description":"And, as in uffish thought he stood, the Golden Gus, with eyes of flame, came whiffling through the On The Spot set, and burbled as it came! One, two! One, two! And through and through the Haywood blade went \"Oppressive Bitch!\" He left it dead, and with its head he went galumphing back. This episode originally aired February 11, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d6760e1-11cd-413b-ab0a-8f2b5ca1d4cf/sm/2013912-1455308756072-OTS__49_Thumb.png","duration":2253,"publication_date":"2016-02-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-fourteen","changefreq":"weekly","video":[{"title":"S1:E11 - Week Fourteen","description":"Thanks to Onnit for sponsoring this series! With two weeks to go, the Buff Buddies travel the globe and fend off perilous butt selfie challenges.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-fourteen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f21720c9-b6c1-4529-b64d-3279acd2d706/sm/2013912-1455241520010-BUFF_BUDDIES_WEEK_14_EP11.png","duration":488,"publication_date":"2016-02-12T02:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016-rooster-teeth-goes-goth","changefreq":"weekly","video":[{"title":"2016:E2 - Rooster Teeth Goes Goth","description":"Rooster Teeth shirts in Hot Topic stores? Believe it http://bit.ly/23VCZiM. The Funhaus team were so excited that they had to go check it out for themselves and try on some merch!","player_loc":"https://roosterteeth.com/embed/rt-life-2016-rooster-teeth-goes-goth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6f48873-927d-4b80-823e-fb5967642f0a/sm/2013912-1455151260209-RT_Life_HotTopic_thumbnail2.png","duration":140,"publication_date":"2016-02-11T17:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-mime-time-serial-hugger","changefreq":"weekly","video":[{"title":"S2:E2 - Mime Time & Serial Hugger","description":"Welcome back for season 2 of \"Million Dollars, But…”! This week, the RWBY gang discusses becoming mimes and hugging strangers for 30 seconds.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-mime-time-serial-hugger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d81e2e73-1084-4e27-b63b-ca2b4a1eef72/sm/2013912-1455151094430-MDB_EP1_THUMB.png","duration":285,"publication_date":"2016-02-11T00:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-25","changefreq":"weekly","video":[{"title":"2016:E25 - Sportsball Discusses the Baylor Scandal - #25","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss the Super Bowl, including Peyton Manning shilling for Budweiser & Papa John’s, Cam Newton’s press conference, the Bronco’s future QB plans, Beyonce & the Halftime Show, Lady Gaga’s national anthem, LeSean McCoy bar brawl, Delmon Young’s racist attack, the Johnny Manziel drama, the Baylor rape scandal, our “favorite” Super Bowl commercial and more on this week's episode of Sportsball! This episode originally aired on February 10, 2016. \n\n\n\n2:30 - Peyton Manning\n\n15:22 - Worst of the Weekend\n\n 15:57 - LeSean McCoy Altercation\n\n 18:11 - Delmon Young Incident\n\n 20:30 - Johnny Manziel Saga\n\n 26:38 - Baylor Scandal\n\n37:57 - Super Bowl 50\n\n59:38 - F$&! You, Tyler!\n\n1:04:06 - Pitlo Picks","player_loc":"https://roosterteeth.com/embed/sportsball-2016-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72e6a83e-8f1a-4a28-8bb2-bbcd4da61c9f/sm/2013912-1455130890856-SB25_-_THUMB.jpg","duration":4074,"publication_date":"2016-02-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-362-post-show","changefreq":"weekly","video":[{"title":"2016:E5 - Podcast #362 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss the adverse effects of chugging Reddi Wip.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-362-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/269326f2-6cc8-4af7-a82b-385b82b67e23/sm/2013912-1455127390538-rtp362_-_PS_-_THUMB.jpg","duration":1805,"publication_date":"2016-02-10T18:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-41","changefreq":"weekly","video":[{"title":"S2:E41 - RTX Hide-n-Seek! - #41","description":"Meg and Ryan close out their trip to Australia with a fun visit to the zoo before taking to the show floor of RTX Australia to play a game of Hide-n-Seek!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03c7da22-4097-4f7d-a995-bd944909927b/sm/2013912-1455126682921-FP41_-_THUMB.jpg","duration":1059,"publication_date":"2016-02-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-2-million-dollars-but-season-2-official-trailer","changefreq":"weekly","video":[{"title":"S2:E1 - Million Dollars, But… Season 2 - Official Trailer","description":"\"Million Dollars, But\" is back and bigger than ever for its second season! Find out what heinous, horrible and hilarious things the Rooster Teeth crew would do for a million bucks.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-2-million-dollars-but-season-2-official-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ceb5f08c-f903-46d2-bb8f-3069b04b0397/sm/2013912-1455060355154-MDB_S2_TRAILER_THUMB.jpg","duration":46,"publication_date":"2016-02-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-pancake-podcast-362","changefreq":"weekly","video":[{"title":"2016:E362 - The Pancake Podcast - #362","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss Prostitutes, Prostates, and Pancakes on this week's RT Podcast! This episode originally aired on February 8, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-pancake-podcast-362","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a849f64-c739-4bd4-ad89-ae85417c9580/sm/2013912-1455035136349-rtp362_-_THUMB.jpg","duration":5808,"publication_date":"2016-02-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-el-trumpo","changefreq":"weekly","video":[{"title":"SOR:E7 - El Trumpo","description":"On an On The Spot Edition of Minimations, we join Miles Luna and Shannon McCormick as they share the complex story of the one and only Donald Trump. Vengeance, Romance, and Twists? We have it all!\n\n\n\nMade by the Rooster Teeth community GTA5 machinima team: The Lone Few.\n\n\n\nIncludes audio from: On The Spot #27","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-el-trumpo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca13c920-af04-4ee8-b126-50267d8bd0ad/sm/2013912-1454949137757-SOORT_EP07_TUMB.jpg","duration":112,"publication_date":"2016-02-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-tongue-in-mousetrap","changefreq":"weekly","video":[{"title":"S1:E53 - Tongue in Mousetrap","description":"I learned two things from this video.\n\n1. Dan has a really stubby tongue. \n\n2. Fuck that.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-tongue-in-mousetrap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6475a99-53a9-4a5b-918b-2d65c825b7b0/sm/82-1454870000921-Screen_Shot_2016-02-07_at_12.30.16.jpg","duration":170,"publication_date":"2016-02-07T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-space-invaders-in-real-life","changefreq":"weekly","video":[{"title":"S3:E15 - Space Invaders in Real Life","description":"Rooster Teeth creates SPACE INVADERS in real life as our lab rats Michael and Ryan defend earth from an army of aliens. Will they save the planet or die embarrassingly?\n\n\n\nWatch Behind the Scenes and the Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-space-invaders-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0af93f80-686c-4f24-895f-388cf2eb3fda/sm/2013912-1454855633396-Immersion_Space_Invaders_Thumb_v4.png","duration":421,"publication_date":"2016-02-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-fp-extra-novela-bts-and-bloopers","changefreq":"weekly","video":[{"title":"S2:E4 - FP Extra: Novela BTS and Bloopers","description":"A behind the scenes look at the drama that went down during our promo shoot!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-fp-extra-novela-bts-and-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f9ed9ec-faaa-437c-ac11-4a48e47b3d97/sm/2013912-1454742900064-FPX_NOVELA_BLPR_TH.jpg","duration":106,"publication_date":"2016-02-06T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-anime-sponsorcast-3","changefreq":"weekly","video":[{"title":"2016:E3 - Anime Sponsorcast - #3","description":"Gray, Miles, Kerry and members of the RT Animation gang discuss the battle of Sub vs. Dub, One Punch Man, Thunderbolt Fantasy, and more! This episode originally aired February 5, 2016.","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-anime-sponsorcast-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaac5ac2-e85f-466c-b453-2f31aeb03e3b/sm/2013912-1454743252120-anime_sponsorcast3_TH.jpg","duration":3772,"publication_date":"2016-02-06T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-11","changefreq":"weekly","video":[{"title":"V3:E11 - Volume 3, Chapter 11: Heroes and Monsters","description":"A word about viewer discretion and RWBY going forward: http://roosterteeth.com/post/51193367\n\nThe Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind.","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63ed9296-41eb-4d8d-9213-98e56323e122/sm/1769531-1454731750053-RWBY_THUMB_Ep011.png","duration":1041,"publication_date":"2016-02-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-weeks-twelve-thirteen","changefreq":"weekly","video":[{"title":"S1:E11 - Weeks Twelve & Thirteen","description":"Thanks to Onnit for sponsoring this series! This week, mirrors turn on the Buff Buddies in more ways than one.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-weeks-twelve-thirteen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bed5c49-a1cb-4fc6-b1ee-7cd9378f83b4/sm/2013912-1454719820605-Buff_buddies3.png","duration":410,"publication_date":"2016-02-05T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-6","changefreq":"weekly","video":[{"title":"2016:E6 - Sponsor Play - The Evil Within Pt.6","description":"Kyle gets screwed over in the worst way possible and it’s all thanks to Miles.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32a09c75-832b-4b70-befe-892eeed6e8e3/sm/2013912-1454608051534-THE_EVIL_WITHIN_PT6_V01.jpg","duration":2997,"publication_date":"2016-02-05T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-koala-craziness-40","changefreq":"weekly","video":[{"title":"S2:E40 - Koala Craziness - #40","description":"It’s Free Play! Meg and Ryan test their ab strength while discussing their favorite pornhub searches and face their fears in a ropes course in Australia! PLUS Mariel and Tyler are back to make their season 2 debut!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-koala-craziness-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01e4a41c-4673-4021-ba04-85adb6f841f6/sm/2013912-1454696110555-FP40-TH.jpg","duration":1535,"publication_date":"2016-02-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-48","changefreq":"weekly","video":[{"title":"S5:E48 - Who is Uncle Tickles? - #48","description":"You better watch out, you better not cry, you better double bolt your doors and maybe board your windows too while you're at it. In fact, turn the lights off and you might wanna sleep in shiftstonight. Don't answer the phone either. Or look under your bed. Uncle Tickles is coming to town! This episode originally aired February 4, 2016 and is sponsored by Trunk Club (http://bit.ly/1UQVwqm)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/776dd2ed-19c9-462c-a6a4-ebf5c63364a7/sm/2013912-1454693838659-ots_48_thumb.jpg","duration":1825,"publication_date":"2016-02-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-commercial","changefreq":"weekly","video":[{"title":"2016:E9 - PSA: Kickers Are People Too - SB EXTRA","description":"Kickers are people too. Rooster Teeth has created the first ever PSA addressing the national epidemic of abused kickers in today's world. Do your part and sacrifice your time to learn about how YOU can help change the life of someone who has wrecked yours.\n\n\n\nWatch the full episode here: Nommy Graminated Party - Sportsball #24","player_loc":"https://roosterteeth.com/embed/sportsball-2016-commercial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6b69b5e-88a4-48f9-bc46-a0522c7ab46c/sm/2013912-1454624280508-SB_Extra_-_THUMB.jpg","duration":169,"publication_date":"2016-02-04T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-24","changefreq":"weekly","video":[{"title":"2016:E24 - Nommy Graminated Party - #24","description":"Join Jack Pattillo, Tyler Coe, Joel Heyman, Jordan Cwierz, Cole Gallian, Adam Baird,\nJon Risinger, Brandon Farmahini, Stan Lewis, Barbara Dunkelman and more as they\ndiscuss the upcoming Super Bowl, the story of John Scott and the NHL, All Star games\nin every sport, prop bets, Madden 16 played live, Barbara the Psychic Chicken and the\nworld premiere of Rooster Teeth’s first ever Super Bowl commercial and more on this\nweek's episode of Sportsball! This episode originally aired on February 2nd, 2016. \n\n\n\n3:53 - NHL\n\n19:18 - Barbara the Chicken Live\n\n25:16 - NFL/Super Bowl 50\n\n41:26 - Rooster Teeth's Super Bowl Commercial\n\n46:12 - Super Bowl Prop Bets/Pitlo Picks\n\n1:04:15 - F&$! You, Tyler","player_loc":"https://roosterteeth.com/embed/sportsball-2016-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/476b67ac-328a-476b-ba93-b85dbf906221/sm/2013912-1454530558427-SP24-TH.jpg","duration":4127,"publication_date":"2016-02-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-39","changefreq":"weekly","video":[{"title":"S2:E39 - Season 2 Premiere - #39","description":"Free Play is back and ready for Season 2! Meg and Ryan take the show down under for a challenge\nshowdown in Sydney - Cue the confetti canon!","player_loc":"https://roosterteeth.com/embed/free-play-season-2-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/256cb9f5-5f16-4c02-ac22-7e21f93ca626/sm/2013912-1454521636093-FP39_TH.jpg","duration":1827,"publication_date":"2016-02-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-361-post-show","changefreq":"weekly","video":[{"title":"2016:E4 - Podcast #361 Post Show","description":"Blaine gets called out for his depressing pickup technique. Fellas, don’t try this at home.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-361-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/411fd9cd-bb30-43ae-a32a-509658c82a46/sm/2013912-1454527698260-RTXTRA_361.jpg","duration":1765,"publication_date":"2016-02-03T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-the-perfect-urinal-361","changefreq":"weekly","video":[{"title":"2016:E361 - The Perfect Urinal - #361","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Burnie Burns, Blaine Gibson as they discuss Urinals, the upcoming season of The Amazing Race, the Fine Bros. Controversey and more on this week's RT Podcast! This episode originally aired on February 2, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-the-perfect-urinal-361","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/531fe895-8a19-47ce-9f0f-1ba3aeb812f8/sm/2013912-1454431392652-rtp361_-_THUMB.jpg","duration":6431,"publication_date":"2016-02-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-geoff-s-failed-sex-dream-ii","changefreq":"weekly","video":[{"title":"2016:E4 - Geoff's Failed Sex Dream II","description":"Geoff has another unsuccessful sex dream, this time with Jenny Slate. Maybe it's a thing with Jenny's?\n\nAudio from Let's Play Minecraft #184","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-geoff-s-failed-sex-dream-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca02ff5b-b506-4777-aaf5-63d9c240cb34/sm/2013912-1454088712310-rtaa214tn1.jpg","duration":132,"publication_date":"2016-02-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-star-wars-jetpacks-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S3:E14 - Star Wars Jetpacks in Real Life - Behind the Scenes","description":"Have a peek at the making of Immersion's Star Wars Jetpacks in Real Life.","player_loc":"https://roosterteeth.com/embed/immersion-season-3-star-wars-jetpacks-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4df511cb-f1c1-4700-9e82-ff4bb5ebac6e/sm/1461653-1454264016753-IMMERSION_JETPACK_BTS_THUMB.png","duration":240,"publication_date":"2016-01-31T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-anime-sponsorcast-2","changefreq":"weekly","video":[{"title":"2016:E2 - Anime Sponsorcast - #2","description":"Gray, Miles, Kerry and Cole sit down to talk about anime-to-stageplay adaptations, Snowboarding Gundams, Erased, GATE and more on this edition of the Anime Sponsorcast!","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-anime-sponsorcast-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a69f1f4-09a8-400a-b95b-240ff6908f50/sm/2013912-1454118145434-Anime_2_-_THUMB.jpg","duration":4127,"publication_date":"2016-01-30T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-10","changefreq":"weekly","video":[{"title":"V3:E10 - Volume 3, Chapter 10: Battle of Beacon","description":"A word about viewer discretion and RWBY going forward: http://roosterteeth.com/post/51193367\n\nThe Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind.","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab41f8b0-8713-484e-847b-782c76602173/sm/1769531-1454125555749-RWBY_THUMB_Ep010.png","duration":995,"publication_date":"2016-01-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-47","changefreq":"weekly","video":[{"title":"S5:E47 - Mutiny On The Set - #47","description":"The revolution has been mounting. Will the rebel alliance finally have their day and a new host takes control of this train wreck of a show? This could be the day that Jon loses his long-haired swagger and unleashes a wrath so great that scribes will carry its legend for decades to come. Or not. This episode originally aired January 28, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9575d0fa-8305-4748-83bd-86d6e67f9302/sm/2013912-1454102143544-OTS_47_Thumbnail.png","duration":2357,"publication_date":"2016-01-29T21:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-5","changefreq":"weekly","video":[{"title":"2016:E5 - Sponsor Play - The Evil Within Pt.5","description":"Miles tells the MOST embarrassing story of his life, a story so embarrassing that it breaks Kyle….and he will never let Miles forget it.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e180fd-4b9f-4147-b045-cf56a61ec880/sm/2013912-1454010417579-THE_EVIL_WITHIN_PT5_V01.png","duration":2897,"publication_date":"2016-01-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-sports-in-60-seconds-carolina-v-arizona-sb-extra","changefreq":"weekly","video":[{"title":"2016:E7 - Sports in 60 Seconds: Carolina v Arizona - SB EXTRA","description":"Stan accurately re-enacts the Panthers/Cardinals game. \n\n\n\nWatch the full episode here!","player_loc":"https://roosterteeth.com/embed/sportsball-2016-sports-in-60-seconds-carolina-v-arizona-sb-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1365f736-642d-4d2a-adf2-f7b81ef9f6ec/sm/2013912-1454003670395-SB_Extra_-_THUMB.jpg","duration":143,"publication_date":"2016-01-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-23","changefreq":"weekly","video":[{"title":"2016:E23 - NFL Playoffs: A Toy Story - #23","description":"Join Jack Pattillo, Tyler Coe, Jordan Cwierz as they discuss their game of Flag Football, Golden St vs the Spurs, Duquesne Dukes stuck in the snow, Championship Breakdown: Action Figure Style, looking at your own g-string, Speed Competition with beer, ice cream and sandwiches, favorite sports moments of all time, meeting your own clone in a distant universe, Pitlo Picks, F*$K You Tyler, the greatest fan-made rap song of all time and more on this week's episode of Sportsball! This episode originally aired on January 26th, 2016. \n\n\n\n00:13 - Rooster Teeth Flag Football\n\n8:37 - NBA\n\n15:26 - Blizzard 2016/Duquesne Ducks Stuck\n\n19:48 - NFL Playoffs\n\n35:57 - Outfast Brady and Manning\n\n45:50 - F&$! You Tyler\n\n48:52 - Sportsball Fanmail\n\n56:29 - Pitlo Picks","player_loc":"https://roosterteeth.com/embed/sportsball-2016-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d895a3db-a0d2-41d5-b22f-9e01f81c16e6/sm/2013912-1453920607130-SB23_-_THUMB.jpg","duration":3964,"publication_date":"2016-01-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-360","changefreq":"weekly","video":[{"title":"2016:E360 - RTX Australia! - #360","description":"Join Gus Sorola, Joel Heyman, Barbara Dunkelman and Burnie Burns as they discuss Australia, planes, scars, Immersion and more on this week's RT Podcast! This episode originally aired on January 26, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-360","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07930803-3d49-4af3-8024-7f36448403b8/sm/2013912-1453828627029-rtp360_-_THUMB.png","duration":3070,"publication_date":"2016-01-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-miles-the-weird-dad","changefreq":"weekly","video":[{"title":"2016:E3 - Miles & The Weird Dad","description":"Miles talks about a weird dad (not his) who maybe used to kill people..?\n\nAudio from The Rooster Teeth Podcast #351","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-miles-the-weird-dad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/326dc482-6d6a-48ae-b390-55f50ef5c910/sm/2013912-1453503568218-rtaa213tn1.jpg","duration":118,"publication_date":"2016-01-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-jetpack","changefreq":"weekly","video":[{"title":"S3:E13 - Star Wars Jetpacks in Real Life","description":"In a combat scenario, would flying around in a jetpack actually give you an advantage? Watch Blaine and Chris take to the skies to find out.\n\n\n\nSpecial thanks to Canyon Lake Adventures (http://canyonlakeadventures.com/) and Texas Ski Ranch (http://texasskiranch.com/)\n\n\n\nWatch the Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-jetpack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbe79634-91ce-47fd-ba8c-917450d88792/sm/2013912-1453658171237-Immersion_StarWars_v2.png","duration":569,"publication_date":"2016-01-24T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-anime-sponsorcast-1","changefreq":"weekly","video":[{"title":"2016:E1 - Anime Sponsorcast - #1","description":"Gray, Miles, Kerry and members of the RT Animation gang discuss the latest in Anime including the trailer for Erased.","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-anime-sponsorcast-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b02292b-b739-488e-b189-875976d60ec8/sm/2013912-1453523699207-ANIME_SCAST1_TH.jpg","duration":3866,"publication_date":"2016-01-23T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-2-free-play-season-2-teaser","changefreq":"weekly","video":[{"title":"S2:E1 - Free Play Season 2 Teaser","description":"Things are no bueno in the world of Free Play. The hiatus has left the cast and crew pitted against each other fighting for love, freedom, and Diet Coke. There will be twists, turns, and one SHOCKING announcement.","player_loc":"https://roosterteeth.com/embed/free-play-season-2-free-play-season-2-teaser","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8371b73-a2c2-4a51-bb53-b175a32b2e50/sm/2013912-1453505504482-Free_Play_Promo_-_THUMB.jpg","duration":140,"publication_date":"2016-01-23T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-ten","changefreq":"weekly","video":[{"title":"S1:E9 - Weeks Ten & Eleven","description":"Thanks to Onnit for sponsoring this series! The buddies ring in the New Year with a bang. Also, Vegas buffets.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-ten","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60353e63-359c-452b-8d48-b0a68dd91373/sm/2013912-1453523449697-BB9.png","duration":524,"publication_date":"2016-01-22T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-4","changefreq":"weekly","video":[{"title":"2016:E4 - Sponsor Play - The Evil Within Pt.4","description":"Kyle and Miles are a little unsettled in this episode of Sponsor Play, maybe it has something to do with their new invisible friend?","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c370cc07-f56b-4ce5-8d5f-eab0b06bf2b4/sm/2013912-1453485238204-THE_EVIL_WITHIN_PT4.png","duration":1956,"publication_date":"2016-01-22T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-46","changefreq":"weekly","video":[{"title":"S5:E46 - Trump of the Corn - #46","description":"Business business business business, Donald Trump in a cornfield, business business business business, waffles challenge, business business business business, cunnilingus your best friend, business business business BUSINESS! This episode originally aired on January 21, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef612088-0274-443a-b6c7-b1907149dbd9/sm/2013912-1453487208697-ots_46_thumb.jpg","duration":2257,"publication_date":"2016-01-22T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-chicken-predicts-nfl-playoff-losers-2","changefreq":"weekly","video":[{"title":"2016:E5 - Chicken Predicts NFL Playoff Losers #2","description":"Barbara is back! This week she's picking the Conference Championship losers...in the only way she knows how. Check out Sportsball every Tuesday at 5pm CT on Rooster Teeth.com\n\n\n\nBarbara The Chicken provided by the Kusch family","player_loc":"https://roosterteeth.com/embed/sportsball-2016-chicken-predicts-nfl-playoff-losers-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4f18822-6b88-4827-a264-19ceb1f6c557/sm/2013912-1453413392347-Chicken_Day_2_-_THUMB.jpg","duration":100,"publication_date":"2016-01-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2016-burnie-s-vlog-january-20-2016","changefreq":"weekly","video":[{"title":"2016:E1 - Burnie’s Vlog: January 20, 2016","description":"Somehow Burnie conned his way into the White House. Vlogs or it didn’t happen.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2016-burnie-s-vlog-january-20-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebcb4ac2-7d1e-410f-bed7-b51495d0895d/sm/2013912-1458752215525-1-20-16_Thumbnail.jpg","duration":169,"publication_date":"2016-01-20T23:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-metal-gear-solid-in-real-life-2","changefreq":"weekly","video":[{"title":"S3:E12 - Metal Gear Solid in Real Life - Featuring Chris and Aaron","description":"On a very special Sponsor edition of Immersion, Chris and Aaron test their Metal Gear Solid skills, but seem to get distracted along the way.\n\n\n\nCheck out the Original Episode, Behind the Scenes, and Extended Cut!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-metal-gear-solid-in-real-life-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73c7f148-afcf-4145-894f-a7c4fea5cdaa/sm/2013912-1453322351262-Immersion_Sponsor_Stealth_Thumb_v1.png","duration":451,"publication_date":"2016-01-20T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-22","changefreq":"weekly","video":[{"title":"2016:E22 - Barbara’s Crappy Predictions - #22","description":"Join Jack Pattillo, Tyler Coe, and Jordan Cwierz as they discuss NBA basketball, Warriors destroying the Cavs, Clippers making it rain 3’s, Point-Shaving in Tennis, Bribery at Rooster Teeth, the NFL Playoffs, Aaron Rodgers Hail Mary Part II, the LA Rams, the Raiders moving to San Antonio, Barbara the Psychic Chicken, Fan Mail, F You Tyler, Pitlo Picks and more on this week's episode of Sportsball! This episode originally aired on January 20th, 2016. This episode is sponsored by Lazer Team (http://bit.ly/LazerTeamMovie)\n\n\n\n1:30 - NBA\n\n4:17 - Tennis Match Fixing Scandal\n\n13:18 - NFL Playoffs Divisional Round\n\n35:15 - Raiders: Where Will They End Up?\n\n47:49 - Sportsball Fan Mail\n\n52:17 - F&$! You, Tyler!\n\n54:28 - Pitlo Picks\n\n1:02:42 - Barbara The Chicken Preview","player_loc":"https://roosterteeth.com/embed/sportsball-2016-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3248fc42-5e2c-4bfc-a21f-f3b839981a22/sm/2013912-1453318633500-SB22_-_THUMB.jpg","duration":3892,"publication_date":"2016-01-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-359-post-show","changefreq":"weekly","video":[{"title":"2016:E3 - Podcast #359 Post Show","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman, and Burnie Burns as they discuss becoming unintentionally aroused.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-359-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ce46105-80f9-4402-89b2-2bbe9518e48d/sm/2013912-1453308376396-rtp359_-_PS_-_THUMB.jpg","duration":2072,"publication_date":"2016-01-20T16:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-359","changefreq":"weekly","video":[{"title":"2016:E359 - Happy Birthday! - #359","description":"Join Blaine Gibson, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss birthdays, leap years, the UK's education system and more on this week's RT Podcast! This episode originally aired on January 18, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-359","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af2c867-0db6-43cf-8320-7a73b82f97de/sm/2013912-1453234610485-rtp359_-_THUMB.jpg","duration":6632,"publication_date":"2016-01-19T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016-reveille-gets-dognapped","changefreq":"weekly","video":[{"title":"2016:E2 - Reveille Gets Dognapped","description":"Burnie recalls the story of when his college friends kidnapped the Texas A&M mascot, and the ensuing manhunt which followed.\n\nAudio from The Rooster Teeth Podcast #250","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016-reveille-gets-dognapped","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98734adf-38c7-4261-adb7-b57c87b50bae/sm/2013912-1452892207934-rtaa212tn1.jpg","duration":147,"publication_date":"2016-01-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-paint-spinning-drill","changefreq":"weekly","video":[{"title":"S1:E52 - Paint Spinning Drill","description":"Gav and Dan fling paint all over the place with a drill bit. It's a great way to paint your bedroom but does leave the place a little bit breezy.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-paint-spinning-drill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3acd2a8-456b-4415-a554-7eb8563a482a/sm/82-1453129952270-Screen_Shot_2016-01-18_at_09.04.38.png","duration":244,"publication_date":"2016-01-18T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-metal-gear-solid-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S3:E11 - Metal Gear Solid in Real Life - Behind the Scenes","description":"The cast and crew of Immersion have found themselves lost in an abandoned warehouse with nothing but an abundant supply of boxes and limited supply of wits. As the days drag on some find themselves drawn to a more base nature while others hold onto the facade of civilization, causing a rift between friends as two separate factions arise. The strong prey on the weak and the weak prey on the boxes. Spoilers: The whole thing is a strange metaphor for purgatory.\n\n\n\nCheck out the Original Episode, Extended Cut, and Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-metal-gear-solid-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2525c97a-f365-4052-931d-7cbb28c9e5ab/sm/2013912-1452907145609-IMMERSION_STEALTH_BTS_THUMB.jpg","duration":405,"publication_date":"2016-01-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-chicken-predicts-nfl-playoff-losers","changefreq":"weekly","video":[{"title":"2016:E3 - Chicken Predicts NFL Playoff Losers","description":"Sportsball's very own psychic chicken, Barbara, predicts the losers of the NFL Playoffs in her own special way.... Check out Sportsball every Tuesday at 5pm CT on Rooster Teeth.com\n\nBarbara The Chicken provided by the Kusch family","player_loc":"https://roosterteeth.com/embed/sportsball-2016-chicken-predicts-nfl-playoff-losers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/449cbfac-effe-4343-b84f-fe46871c0255/sm/2013912-1452917927926-Chicken_Shit_-_THUMB.jpg","duration":126,"publication_date":"2016-01-16T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-9","changefreq":"weekly","video":[{"title":"V3:E9 - Volume 3 Chapter 9: PvP","description":"A word about viewer discretion and RWBY going forward: http://roosterteeth.com/post/51193367\n\nThe Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f719507-b048-4be1-bef4-0042899adc18/sm/1769531-1452903148818-RWBY_THUMB_Ep09.png","duration":715,"publication_date":"2016-01-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-3","changefreq":"weekly","video":[{"title":"2016:E3 - Sponsor Play - The Evil Within Pt.3","description":"Kyle and Miles find a nice little village where nothing bad happens and everything is OK, that is until they find a gate they can’t open. Maybe a chainsaw can open it?","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd53b03e-17fb-4a0c-bd1b-52d729fea897/sm/2013912-1452879455847-THE_EVIL_WITHIN_PT3_V03.png","duration":2290,"publication_date":"2016-01-15T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-5-45","changefreq":"weekly","video":[{"title":"S5:E45 - What is a Fist Roast? - #45","description":"After reviewing the tapes it has come to our attention that On The Spot serves as a better source for sexual education than the majority of the schools in our country's public schooling system. Start taking notes, kids. You're gonna learn something whether you want to or not. This episode originally aired on January 14, 2016.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-5-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32948b78-9b76-40d4-91c5-b1b5156f9786/sm/2013912-1452882962858-ots_45_thumb.jpg","duration":2795,"publication_date":"2016-01-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2016","changefreq":"weekly","video":[{"title":"2016:E1 - Aaron Huffs Gas","description":"Jon's car breaks down but luckily Aaron is there to save the day...sorta.","player_loc":"https://roosterteeth.com/embed/rt-life-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a164586-9b9e-491d-be92-855b268fa358/sm/5769-1452832787968-RTLife_JonsCar_Thumb.jpg","duration":203,"publication_date":"2016-01-15T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-metal-gear-solid-in-real-life-extended-cut","changefreq":"weekly","video":[{"title":"S3:E10 - Metal Gear Solid in Real Life - Extended Cut","description":"Check out the extended Metal Gear Solid in Real Life Immersion! We've added more than 5 minutes of extra footage including an extra, unreleased test!\n\n\n\nCheck out the Original Episode, Behind the Scenes, and Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-metal-gear-solid-in-real-life-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f23bdda-27f5-4370-8b19-8095f375388f/sm/2013912-1452717778888-Stealth_extended_Thumb_v5.png","duration":1111,"publication_date":"2016-01-13T20:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-21","changefreq":"weekly","video":[{"title":"2016:E21 - Did Steelers Get Lucky? - #21","description":"Join Jack Pattillo, Tyler Coe, Joel Heyman and special guest Ray Narvaez Jr. as they discuss Wisconsin heckling rules, the NFL Playoffs, Minnesota Fans crying, Sad Kirk Cousins, the Bengals Breakdown, LeBron's head, Wicked Cricket Wickets, Sumo Wrestling, Kicking Field Goals in the snow, the National Championship, EA Sports teasing a new game, Pitlo Picks, eating ass and more on this week's episode of Sportsball! This episode originally aired on January 13th, 2016. \n\n\n\n3:10 - Wisconsin High School Athletics Rules\n\n9:05 - NFL Wild Card Playoff Round\n\n46:02 - Sportsball Spinner Segment\n\n52:48 - CFP Championship/Alabama beats Clemson\n\n1:06:14 - NCAA Football Game?\n\n1:11:06 - F@$! You Tyler\n\n1:13:39 - Pitlo Picks\n\n1:25:53 - 2 Minute Drill","player_loc":"https://roosterteeth.com/embed/sportsball-2016-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75f61e85-aca2-4899-9e3b-f6fe51557022/sm/2013912-1452708584201-SB21_-_THUMB_v4.jpg","duration":5381,"publication_date":"2016-01-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-358-post-show","changefreq":"weekly","video":[{"title":"2016:E2 - Podcast #358 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Matt Hullum as they discuss the whereabouts of Gavin's Burp Bag.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-358-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/939d4012-d472-4e92-a2e9-04826cfcd155/sm/2013912-1452702510454-rtp358_-_PS_-_THUMB.jpg","duration":1500,"publication_date":"2016-01-13T16:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-358","changefreq":"weekly","video":[{"title":"2016:E358 - Mormon Porn - #358","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss bubble porn, bad kickstarters and more on this week's RT Podcast! This episode originally aired on January 11, 2016.\n\n\n\nThumbnail from: @Retro_Effect on Twitter","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-358","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/485e30ea-ec67-446d-a1b0-393de856f249/sm/2013912-1452618595137-rtp358_-_THUMB.jpg","duration":6420,"publication_date":"2016-01-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-oregon-zombie-apocalypse","changefreq":"weekly","video":[{"title":"SOR:E6 - Organ Zombie Apocalypse","description":"This week on “Straight Outta RT”, the zombie apocalypse has ravaged the planet! Jack, Adam, Bruce, Jeremy, and Ryan roam the planet looking for supplies, fixing cars, and trying to stay alive!\n\n\n\nMade by the Rooster Teeth community GTA5 machinima team: The Lone Few.\n\n\n\nIncludes audio from Let’s Watch - Organ Trail with Funhaus.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-oregon-zombie-apocalypse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70916382-ab61-41b3-b9c8-b84639f5c1c5/sm/2013912-1452539849844-SoRT_EP06_THUMB.jpg","duration":207,"publication_date":"2016-01-11T19:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-metal-gear-solid-in-real-life","changefreq":"weekly","video":[{"title":"S3:E9 - Metal Gear Solid in Real Life","description":"Could you really sneak around a military base using only a cardboard box? Our newest Lab Rats, Miles and Kerry, put it to the test.\n\n\n\nWatch the Extended Cut, Behind the Scenes, and Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-metal-gear-solid-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d8ba803-aedc-43a5-a955-af27bf5cbf1f/sm/2013912-1452444784496-Immersion_Stealth_Thumb_v4.jpg","duration":816,"publication_date":"2016-01-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-8","changefreq":"weekly","video":[{"title":"V3:E8 - Volume 3 Chapter 8: Destiny","description":"A word about viewer discretion and RWBY going forward: http://roosterteeth.com/post/51193367\n\nThe Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc14a309-4da2-4f7d-8e75-2fdb97eac10d/sm/1769531-1452304010434-RWBY_THUMB_Ep08.png","duration":1046,"publication_date":"2016-01-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-nine","changefreq":"weekly","video":[{"title":"S1:E8 - Week Nine","description":"Thanks to Onnit for sponsoring this series! The guys indulge over Christmas break and don’t care what you think, and Zach finds an unconventional way to lose some extra weight.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-nine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c9e166a-a929-41f0-96f7-f59fe08d2bb1/sm/2013912-1452291119955-BB_ep8thumb.png","duration":520,"publication_date":"2016-01-08T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-2","changefreq":"weekly","video":[{"title":"2016:E2 - Sponsor Play - The Evil Within Pt.2","description":"Kyle and Miles dive further into the twisted world of The Evil Within. Along the way they learn about traps, find a lamp, make a new nurse friend and finally ask the burning question, Did Professor Xavier ever get freaky while wearing Cerebro?","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83c20546-4d41-4b27-8f86-6e0d23878db5/sm/2013912-1452187201724-THE_EVIL_WITHIN_PT2_V03.png","duration":2527,"publication_date":"2016-01-08T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-next-time-on-immersion","changefreq":"weekly","video":[{"title":"S3:E8 - Next Time on Immersion - Metal Gear Solid in Real Life","description":"On the next Immersion, find out if Kerry and Miles can navigate a dangerous military base using only a cardboard box. \n\nEpisode available on January 10th for sponsors and January 11th for public!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-next-time-on-immersion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/261a1a7e-037a-4953-af52-437935ce0abe/sm/2013912-1452120021536-Stealth_Teaser_Thumb_v1.jpg","duration":25,"publication_date":"2016-01-06T22:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-2016-20","changefreq":"weekly","video":[{"title":"2016:E20 - Coe Eats Crow - #20","description":"Join Jack Pattillo, Tyler Coe and Shannon McCormick as they discuss \"Billy\" Manziel in Las Vegas, the NFL Coaching Carousel and the Saga of Jim Tomsula, KU vs OU, TCU vs ORE, Watermelon eating, Bad Pitching, Lacrosse, Buffalo fans on fire, \"eating crow\", the College Football Playoffs, the NFL playoffs, a special message from Funhaus and more on this week's episode of Sportsball! This episode originally aired on January 5th, 2016.\r\n\r\n\r\n\r\n3:00 - Johnny Manziel Saga\r\n\r\n9:04 - NFL Coaching Moves\r\n\r\n20:06 - Around the World\r\n\r\n31:07 - Alabama Beats Michigan State\r\n\r\n34:16 - F@$! You Tyler\r\n\r\n36:51 - College Bowl Season\r\n\r\n41:46 - UFC 195\r\n\r\n42:50 - Rooster Teeth Fantasy Football Champion\r\n\r\n45:49 - Pitlo Picks/NFL Playoffs\r\n\r\n58:00 - 2 Minute Drill","player_loc":"https://roosterteeth.com/embed/sportsball-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6bdc931-4389-4d48-90cb-0597986f431e/sm/2013912-1452103525212-SB_-_20_-_THUMB.jpg","duration":3705,"publication_date":"2016-01-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-podcast-357-post-show","changefreq":"weekly","video":[{"title":"2016:E1 - Podcast #357 Post Show","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini and Blaine Gibson as they discuss why Gavin and Blaine still haven't watched The Matrix together.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-podcast-357-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bf95e00-e0ad-4930-9f71-2b67e69be2e9/sm/2013912-1452097929711-rtp357_-_PS_-_THUMB.png","duration":1202,"publication_date":"2016-01-06T16:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-slow-mo-gargling-uvula","changefreq":"weekly","video":[{"title":"S1:E51 - Slow Mo Gargling Uvula","description":"Here's a super close up simulation of what it is like to make out with Dan.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-slow-mo-gargling-uvula","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95410f3c-4d09-43d9-ae29-eadeb7e1a638/sm/82-1452053420196-Screen_Shot_2016-01-05_at_22.01.54.jpg","duration":280,"publication_date":"2016-01-06T04:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-2016-357","changefreq":"weekly","video":[{"title":"2016:E357 - Only In The Butt - #357","description":"Join Gus Sorola, Gavin Free, Brandon Farmahini and Blaine Gibson as they discuss glasses, \"personal\" lubricant, cannibal rats and more on this week's RT Podcast! This episode episode originally aired on January 4, 2016.","player_loc":"https://roosterteeth.com/embed/rt-podcast-2016-357","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68c57a1e-167b-4f03-ac03-af92af1a9ba4/sm/2013912-1452012543710-rtp357_-_THUMB.jpg","duration":6117,"publication_date":"2016-01-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2016","changefreq":"weekly","video":[{"title":"2016:E1 - Underwear Gift & Premature Arrival","description":"Young Chris tries to buy his middle school girlfriend an anniversary present. Blaine shows up early for a party. By like 8 days.\n\n\n\nAudio from The Rooster Teeth Podcast #325 and RT Podcast #331.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff2864cd-c63f-4705-969f-bd2c59021678/sm/2013912-1451602825624-rtaa211tn1.jpg","duration":120,"publication_date":"2016-01-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-home-for-the-holidays","changefreq":"weekly","video":[{"title":"S6:E34 - Home for the Holidays","description":"Joel meets his girlfriend's family for the first time. Starring Joel Heyman, Denise Downs, Dora Corpus, Rupert Reyes and Nathan Zellner as the voice of Pongo.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-home-for-the-holidays","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2699a560-abf2-4a0a-93c6-fdf8a0e4fab3/sm/5769-1451851683387-Pongo_Thumbnail.png","duration":283,"publication_date":"2016-01-04T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-7","changefreq":"weekly","video":[{"title":"V3:E7 - Volume 3 Chapter 7: Beginning of the End","description":"A word about viewer discretion and RWBY going forward: http://roosterteeth.com/post/51193367\n\nThe Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02dcfcb6-0832-4b3c-a381-bd5809664d70/sm/2013912-1451695487530-RWBY_THUMB_Ep07.png","duration":1021,"publication_date":"2016-01-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-1","changefreq":"weekly","video":[{"title":"2016:E1 - Sponsor Play - The Evil Within Pt.1","description":"Happy 2016 sponsors! Join Kyle and Miles as they explore the sick and twisted world of The Evil Within.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-2016-sponsor-play-the-evil-within-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb31fbdc-e7b6-4e84-a5d9-1b9340a3f11a/sm/2013912-1451683410106-THE_EVIL_WITHIN_PT1.png","duration":1588,"publication_date":"2016-01-01T21:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-eight","changefreq":"weekly","video":[{"title":"S1:E7 - Week Eight","description":"Thanks to Onnit for sponsoring this series! Twas the week before Christmas which also happened to be the halfway point of the buff buddies fitness journey! But while holiday treats derail some, others may be forced to rethink their goals entirely.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-eight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6578c486-90cb-4429-a09d-005465073c46/sm/2013912-1451611511540-BB_07_Thumbnail_v03.png","duration":445,"publication_date":"2016-01-01T01:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-specials-2015-star-wars-the-force-awakens-spoilercast","changefreq":"weekly","video":[{"title":"2016:E1 - Star Wars: The Force Awakens Spoilercast","description":"*WARNING: This Show Contains Star Wars: The Force Awakens SPOILERS* \n\nJoin Gus Sorola, Blaine Gibson, Marcus LaPorte, Chris Demarais and Burnie Burns as they discuss Star Wars: The Force Awakens.","player_loc":"https://roosterteeth.com/embed/rt-specials-2015-star-wars-the-force-awakens-spoilercast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d7e18cf-b215-412d-8c29-955229e2d822/sm/2013912-1451589245502-STAR_WARS_THUMB_v2.jpg","duration":4034,"publication_date":"2015-12-31T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-19","changefreq":"weekly","video":[{"title":"2015:E19 - 2015 Sportsball Awards - #19","description":"Join Jack Pattillo, Tyler Coe and Shannon McCormick as they look back on the best sports stories, plays and moments of 2015 including Left Shark, Deflategate, Rousey v. Holm and more on this week's episode of Sportsball! This episode originally aired on December 29th, 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87bdf9f4-0fbc-4c50-9cf4-cb4137b4f54c/sm/2013912-1451497831637-SB19_-_THUMB.jpg","duration":3943,"publication_date":"2015-12-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-356-post-show","changefreq":"weekly","video":[{"title":"2015:E28 - Podcast #356 Post Show","description":"Join Gus Sorola, Barbara Dunkelman, Chris Demarais and Burnie Burns as they discuss bidets and the squatty-potty.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-356-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c8e3790-ecfc-4a90-b804-70ca24be43e5/sm/2013912-1451493585931-rtp356_-_PS_-_THUMB.jpg","duration":996,"publication_date":"2015-12-30T16:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-surge-shrinks-your-schlong-356","changefreq":"weekly","video":[{"title":"2015:E356 - Surge Shrinks Your Schlong? - #356","description":"Join Gus Sorola, Barbara Dunkelman, Chris Demarais and Burnie Burns as they discuss sodas shrinking your manhood, the difference between a shower and a grower and more on this week's RT Podcast! This episode originally aired on December 28, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-surge-shrinks-your-schlong-356","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f98c93ba-8185-4709-947d-92abdd96c5a9/sm/2013912-1451405938431-rtp356_-_THUMB.jpg","duration":5985,"publication_date":"2015-12-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-haircut-mishaps","changefreq":"weekly","video":[{"title":"2015:E9 - Haircut Mishaps","description":"Gus, Gavin, and Chris relive some awkward moments they've had while getting a haircut.\n\nAudio from RT Podcast #314: http://roosterteeth.com/episode/rt-podcast-season-...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-haircut-mishaps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/560f24f7-deaf-45e9-b4ca-6de523ab7fc2/sm/2013912-1450136319966-rtaa210tn1.jpg","duration":94,"publication_date":"2015-12-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-christmas-questions-2","changefreq":"weekly","video":[{"title":"S2:E164 - RT Christmas Questions","description":"Join Barbara Dunkelman, Ashley Jenkins, Meg Turney, and Mariel Salcedo for a festive podcast to answer submitted holiday questions.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-christmas-questions-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54f42004-19aa-4a2a-945e-dd5428767b3e/sm/1628443-1450905111059-RTL_0A_TH.jpg","duration":3753,"publication_date":"2015-12-25T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-six","changefreq":"weekly","video":[{"title":"S1:E6 - Weeks Six & Seven","description":"Thanks to Onnit for sponsoring this series! The Buff Buddies do one of those special episodes where they talk about their genuine workout trials and tribulations. Or whatever.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-six","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c7de6f9-c73d-49e7-b24d-b55d7550ac85/sm/5769-1450981329622-BB_ep6thumbnail.png","duration":652,"publication_date":"2015-12-24T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-355-post-show","changefreq":"weekly","video":[{"title":"2015:E27 - Podcast #355 Post Show","description":"Join Gus Sorola, Barbara Dunkelman, Gavin Free, and Burnie Burns as they discuss how we are the sun","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-355-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5c1e488-3fd4-410d-aeeb-faaa64057237/sm/690915-1450896178562-RTX355-TH.jpg","duration":1573,"publication_date":"2015-12-23T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-sportsball-18","changefreq":"weekly","video":[{"title":"2015:E18 - Soccer Imports and Odell Beckham Jr Not So Special - #18","description":"Join Jack Pattillo, Tyler Coe and Jon Risinger as they discuss Abby Wambach's comments on US Soccer, Instant Replay Robots, Odell Beckham Jr & Josh Norman, what players are thinking about when getting yelled at, basketball miracles, UFC hat thieves, Monmouth Basketball bench performances, the World Famous Idaho Potato Bowl, Fantasy Football Championships and more on this week's episode of Sportsball! This episode episode originally aired on December 22th, 2015. This episode is sponsored by Stance (http://bit.ly/1O3P1gk) and the RT Store (http://bit.ly/1dEKfni)","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-sportsball-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a2917a0-9d42-489d-8882-e6e0dcbaf36c/sm/1628443-1450894966271-SP18-TH.jpg","duration":3816,"publication_date":"2015-12-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-titanfall-2-tech-test-beta","changefreq":"weekly","video":[{"title":"2016:E278 - Titanfall 2 Tech Test Beta ","description":"Achievement Hunter is playing Titanfall 2 Beta. Watch the gang match other teams online. It's going to be a Titan fight.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-titanfall-2-tech-test-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6666270-92ff-417f-a390-80ec466dc7a9/sm/2013912-1472583189958-TitanFall2_THUMB.jpg","duration":1884,"publication_date":"2016-08-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-titanfall-2-tech-test-full-stream","changefreq":"weekly","video":[{"title":"2016:E115 - Titanfall 2 Tech Test – FULL STREAM","description":"Standby for Titanfall! Matt and Mica hop into the open tech test of the upcoming game Titanfall 2 for a fun stream!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-titanfall-2-tech-test-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bca60593-9bfa-4ab7-bbfb-4e7cf7188cc0/sm/2013912-1472589511076-titanfall_2_thumb_2.jpg","duration":7317,"publication_date":"2016-08-30T23:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-livelock","changefreq":"weekly","video":[{"title":"2016:E277 - Livelock ","description":"Jack, Gavin, and Jeremy equip robots and launch into the apocalyptic world of Livelock. Together they fight the mechanical overlords that annihilated mankind. Thanks to Perfect World Entertainment for sponsoring this video. Unlock Livelock for yourself: http://bit.ly/Livelock_LetsPlay","player_loc":"https://roosterteeth.com/embed/lets-play-2016-livelock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a28af84c-6d7e-4c00-b430-41ea3f65b021/sm/2013912-1472497662276-LP_Livelock_THUMB.png","duration":1963,"publication_date":"2016-08-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-50","changefreq":"weekly","video":[{"title":"2016:E276 - Let's Watch - Worms W.M.D. - Campaign Part 5","description":"Ryan and the crew invade Wormy Ol’ England, but without their own Brit in tow. Will they overcome their wormy wanker weapon wielding adversaries? The Worms WMD campaign continues!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5054b364-155d-4835-8751-33dea13a8c16/sm/2013912-1472571206203-wormsThumb.jpg","duration":2980,"publication_date":"2016-08-30T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-world-class-traveling-news-team-ahwu-for-august-29-th-2016-332","changefreq":"weekly","video":[{"title":"2016:E38 - World Class Traveling News Team - AHWU for August 29th, 2016 (#332)","description":"Check out the new streaming schedule:\n\n\nhttp://achievementhunter.roosterteeth.com/post/51279050\n\n\n\nDon't forget to submit to the Community:http://achievementhunter.roosterteeth.com/group/lets-play-community\n\n\n\nJack Pattillo and his bucket of news are missing this week, Ryan is still banned for life from AHWU, and Geoff's not going to bother. That means it's up to the younger half of Achievement Hunter to bring you the news. News in the office. New in the hallway. News outside. If AHWU wasn't recorded and released in the same day, maybe the news could have even been delivered from Oklahoma or whatever other state the news team may have traveled to. Maybe it could have been delivered right outside your home! It wasn't, but it could have been, because this is news that travels. Right now, just down the hallway and outside in the parking lot. But later, the sky's the limit. It's the World Class Traveling News Team bringing the news to you wherever they feel like delivering it from.Watch the Video of the Week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-world-class-traveling-news-team-ahwu-for-august-29-th-2016-332","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/018a5348-d1ae-4352-9d89-800ddc2da2cc/sm/2013912-1472509009513-ahwu_t.jpg","duration":598,"publication_date":"2016-08-29T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-final-fantasy-xv-demo-full-stream","changefreq":"weekly","video":[{"title":"2016:E114 - Final Fantasy XV Demo – FULL STREAM","description":"The two biggest anime fans in the Achievement Hunter office are back! This time they're taking a crack at the Final Fantasy XV Demo. Join Ryan and Mica for some hot anime action and deep discussions about which character is the hottest.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-final-fantasy-xv-demo-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2a06b01-6125-4555-89a3-b120615cff7f/sm/2013912-1472487114768-ffxv_full_thumb.jpg","duration":3471,"publication_date":"2016-08-29T17:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/shenanigans-2016","changefreq":"weekly","video":[{"title":"2016:E113 - Lil J's Lil Desk","description":"Jeremy's just starting to feel at home in the Achievement Hunter office, so of course we need to make sure he's not too comfortable. SHENANIGANS!","player_loc":"https://roosterteeth.com/embed/shenanigans-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95001449-a4c7-47f7-a74e-cd9029f51ecb/sm/2013912-1472485902139-Shenanigans_Thumbnail.jpg","duration":712,"publication_date":"2016-08-29T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-cloudberry-kingdom-part-19","changefreq":"weekly","video":[{"title":"2016:E275 - Cloudberry Kingdom Part 19","description":"\"Gee, Berry Michael. What are we doing tonight?\"\n\n\"Same thing we do every night, Berry Gavin. Ask Ryan what's in his house and watch Jack be way better than us at this damn game...and try to take over at least three levels!\"\n\nThey're the Berry Bros\n\nThe fuckin' Berry Bros\n\nThey want to beat Cloudberry\n\n'Fore they die and decompose\n\nThey've done nineteen Let's Plays\n\nAnd fail almost always\n\nThey're Berry\n\nYour favorite Berry Bros Bros Bros Bros Bros","player_loc":"https://roosterteeth.com/embed/lets-play-2016-cloudberry-kingdom-part-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7d485d6-24fb-4245-b0d5-8c2adb324b30/sm/2013912-1472252507371-cloudberrywhite.jpg","duration":2543,"publication_date":"2016-08-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-12","changefreq":"weekly","video":[{"title":"2016:E8 - Last Call #12","description":"The AH Crew sit down to talk about behind the scenes at Let’s Play Live, spam calls, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93353edc-81b1-4362-a1bc-cd4ac4813226/sm/2013912-1472245437743-OFF39_-_PS_-_THUMB.jpg","duration":1112,"publication_date":"2016-08-28T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-49","changefreq":"weekly","video":[{"title":"2016:E274 - Let's Watch - Worms W.M.D. - Campaign Part 4","description":"Hoo boy, the challenges on all these Worms levels are starting to get a whole lot harder. Crush five worms in a mech. Call down three concrete donkeys. Don't get hurt while using an armageddon. Keep Ryan's Minecraft hole Edgar-free for one week. Kill three worms with one poke. Chain three mine explosions together using one enemy worm. Keep Michael from screaming for an entire day. Summon the almighty kraken-dragon. Do 3,000 points of damage in one turn. Make Gavin appear as if he has a human-sized nose. Man, this stuff is haaaaaaard. Campaign, more like cam-PAIN, am I right?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15cc9904-bdf1-4c6f-96bd-ee015424cf3b/sm/2013912-1472228208699-LW_WormsMWDPt4_Thumb_v003.png","duration":3031,"publication_date":"2016-08-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-plane-insertion","changefreq":"weekly","video":[{"title":"2016:E273 - GTA V - Plane Insertion","description":"MICHAEL: “Gavin wants to fly a plane upside down through a tunnel and have the wheels touch the ceiling of the tunnel.”\n\nGAVIN: “Yeah, so you can drive on the roof-ceiling bit of it.”\n\nMICHAEL: “So we need to fly there in formation, right? We can’t all just willy-nilly try it.”\n\nJACK: “Should we do a diamond? We could be a diamond with a tail.”\n\nJEREMY: “Are we gonna kite it?”\n\nMICHAEL: “Alright, so we’re gonna fly straight there, and then on approach we’re gonna attempt to flip upside down and drive right through the tunnel.”\n\nGAVIN: “Three-two-one GO!”\n\nMusic:\n\n“Ride of The Valkyries” - Audio Network","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-plane-insertion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dccd2d01-8abc-4b91-86a0-01a51cd99ac2/sm/2013912-1472262191597-gtav_thumb1.jpg","duration":3024,"publication_date":"2016-08-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-39","changefreq":"weekly","video":[{"title":"2016:E39 - Are They Wiping the Lube? - #39","description":"The AH Crew sit down to talk about Let’s Play Live, pizza, fast food burgers, and more on this week's Off Topic!\n\nThis episode originally aired August 26, 2016 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and Kaspersky (http://bit.ly/29yXJcM)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/050bf440-ae9d-41a8-895a-5a9a7e49e9c7/sm/2013912-1472245431205-OFF39_-_THUMB.jpg","duration":6063,"publication_date":"2016-08-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2016-pokemon-g-o-g-o-104","changefreq":"weekly","video":[{"title":"2016:E6 - Pokemon GO! - GO! #104","description":"Being a Pokemon master is all the rage these days! Why not see who can catch the most (2)Pokemon the fastest?","player_loc":"https://roosterteeth.com/embed/go-2016-pokemon-g-o-g-o-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d35c616-e0b5-41ac-a65b-f257498de678/sm/2013912-1472262999891-go2.jpg","duration":347,"publication_date":"2016-08-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-12","changefreq":"weekly","video":[{"title":"2016:E3 - Post Show #12","description":"Frank, Michael, Geoff and Ryan talk about the first boss fight.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/605d86d9-4561-457f-934e-1349de74eede/sm/2013912-1472159079005-HH12_-_PS_-_THUMB.jpg","duration":657,"publication_date":"2016-08-26T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-12","changefreq":"weekly","video":[{"title":"2016:E12 - Episode #12: All Sinner's Night","description":"Join the AH crew as they follow the journey of “Detective Bright Eyes” and his maybe, sort of, kinda girlfriend “Knockoff Mary Elizabeth Winstead” as they uncover the mystery of the lamest satanic cult of all time in ALL SINNER’S NIGHT in this week’s Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/941a272b-a4a2-4834-8204-d11cd13ab61a/sm/2013912-1472226711655-TM_-_Sinners_Night_-_THUMB.jpg","duration":5516,"publication_date":"2016-08-26T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-sonic-2","changefreq":"weekly","video":[{"title":"2016:E18 - Sonic 2","description":"Michael and Gavin play Sonic and Tails in Sonic the Hedgehog 2. It's a blast from the Sega Genesis past.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-sonic-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf685c1b-0bbb-4dc2-972a-a1517de36491/sm/2013912-1472158452628-PP_Sonic2_THUMB1.png","duration":1202,"publication_date":"2016-08-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-12","changefreq":"weekly","video":[{"title":"2016:E12 - Episode 12","description":"Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, and Dungeon Master Frank decide that looking cool and working together will defeat the cave dwellers. If they can stay alive.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a305328-0db3-4a48-8588-a277f41a6552/sm/2013912-1472151067133-HH12_-_THUMB.jpg","duration":3378,"publication_date":"2016-08-25T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-deus-ex-mankind-divided-a-heated-combination-and-singh-no-swan-song-guide","changefreq":"weekly","video":[{"title":"2016:E29 - Deus Ex Mankind Divided - A Heated Combination and Singh No Swan Song Guide","description":"There are 2 missable achievements in the first level of Deus Ex Mankind Divided. Matt and Michael can help you not miss them.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-deus-ex-mankind-divided-a-heated-combination-and-singh-no-swan-song-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb2b5801-ad38-4144-af2f-4f193481d327/sm/2013912-1472155052873-Thumbnail.jpg","duration":178,"publication_date":"2016-08-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-48","changefreq":"weekly","video":[{"title":"2016:E272 - Let's Watch - Layers of Fear: Inheritance DLC","description":"Join Geoff, Ryan and Gavin and they get to experience the new DLC Inheritance in Layers of Fear.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66e2562d-b1bd-4055-9bd5-c2f8e07a9543/sm/2013912-1472074253243-lof_thumb.jpg","duration":2146,"publication_date":"2016-08-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-222-dark-monopoly","changefreq":"weekly","video":[{"title":"2016:E271 - Minecraft - Episode 222 - Dark Monopoly","description":"There was a serious problem last week. Creeper Soccer X was built with the intent of making the Achievement Hunter boys absolutely miserable, but in a crazy-ass turn of events, they had a pretty great time. Since that didn't work, Matt had to dive deep into the depths of the Nether to unleash the most sinister backup plan he could come up with - Dark Monopoly. \n\n\n\nIn short, Nooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo YOU HORRIBLE MONSTER!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-222-dark-monopoly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ea8f324-991f-4aa6-85c0-ff3eaf442349/sm/1104396-1472109623736-LP_222_Monopoly_Thumb.jpg","duration":2474,"publication_date":"2016-08-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-worms-wmd-stream-part-1","changefreq":"weekly","video":[{"title":"2016:E270 - Worms WMD Stream Part 1","description":"It's Achievement Hunter and ScrewAttack playing a round of Worms WMD. Watch Ryan, Matt, and Mica as they teach Chad, Craig, and Sam how to destroy some worms.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-worms-wmd-stream-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb188e61-8437-40db-b2d3-138021cb997d/sm/2013912-1472073927723-LP_WormsWMD_Stream_THUMB.jpg","duration":2597,"publication_date":"2016-08-24T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-savage-resurrection-part-2","changefreq":"weekly","video":[{"title":"2016:E269 - Savage Resurrection Part 2","description":"It's Geoff, Ryan and Jack VS Gavin, Michael and Jeremy for another round of Savage Resurrection. Special thanks to S2 Games for Sponsoring this video. If you'd like to experience the game for yourself, click the link below.\n\nSteam Link: http://bit.ly/259SdjN","player_loc":"https://roosterteeth.com/embed/lets-play-2016-savage-resurrection-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0b91550-afbb-4347-91cb-45b93202cb90/sm/2013912-1472019488662-LP_SavageResurrection02_THUMB.jpg","duration":1601,"publication_date":"2016-08-24T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-jenga-city","changefreq":"weekly","video":[{"title":"2016:E39 - Halo 5 - Jenga City","description":"Achievement Hunter loves its Jenga. Regular Jenga, Donkey Kong Jenga, Real Man's Jingle, Jeremy Jenga. But as the Jengas got bigger and more ferocious, Achievement Hunter's thirst for even bigger and even more ferocious Jengas only grew. This time, humanity's leading Jenga scientists have pushed Jenga beyond its limits - an entire city made of Jenga pieces. And where there are towers made of Jenga, there are five assholes ready to push the whole thing down. \n\n\n\nJack, Jeremy, Michael, Gavin, and Matt are the only remaining citizens of Jenga City. Now they are on the run from the horrible ships trying to break their city apart and drop them into the abyss. Except... the ships are being flown by some of those survivors... sometimes... it's confusing I know. Just watch. \n\n\n\nThanks to Soft Sharp for the awesome map! \n\nDownload the map here\n\nDownload the game type here","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-jenga-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3f7dc99-7552-4c62-a649-6a5db4272806/sm/2013912-1472067729754-Jenga_City_Thumb.jpg","duration":1137,"publication_date":"2016-08-24T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-lets-play-live-new-york","changefreq":"weekly","video":[{"title":"2016:E268 - Lets Play Live New York!","description":"See your favorite let's players up close and in person! Not holograms...yet.\n\n\n\nGet tickets FIRST on August 24th. Public Onsale this Friday August 26th at 10am CST at http://roosterteethlive.com","player_loc":"https://roosterteeth.com/embed/lets-play-2016-lets-play-live-new-york","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ca056cd-e879-4de1-a5be-84a4a60ef645/sm/2013912-1471977614002-Lets_Play_Live_NY_THUMB.png","duration":58,"publication_date":"2016-08-23T19:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-just-cause-3-full-stream","changefreq":"weekly","video":[{"title":"2016:E112 - Just Cause 3 – FULL STREAM","description":"The Just Cause series is like the Mythbusters of video games, so in this video, Jeremy and Mica test the boundaries of what is possible with grappling hooks and explosives. And goats. Lots of goats.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-just-cause-3-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6966f377-b2b3-4550-874d-d9c3e2d71baf/sm/2013912-1471965992120-justcause3_thumb_2.jpg","duration":3575,"publication_date":"2016-08-23T16:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-47","changefreq":"weekly","video":[{"title":"2016:E267 - Let's Watch - Hitman - Bangkok","description":"Our first stop is in Bogotà\n\nTo shoot our target's butt\n\nWe punch the chefs all in the face\n\nTo find a coconut\n\nSweet Jeremy pipe dreams\n\nSecond story coco throw\n\nShoot the target in his face\n\nSlip into shadow\n\nWe're killing dudes in Bangkok\n\nAboard the Murder Express\n\nWe'll shoot and stab along the way\n\nBecause bloodshed is the best","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85db3fdf-a4a5-4d9a-be07-21cc9e4428a3/sm/2013912-1471965713864-hitmanteste1.jpg","duration":3109,"publication_date":"2016-08-23T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-brawlhalla-mogar-vs-the-mad-king","changefreq":"weekly","video":[{"title":"2016:E266 - Brawlhalla - Mogar vs The Mad King","description":"Want to play as Mogar and The Mad King? Get Brawlhalla here: http://store.steampowered.com/app/291550/\n\n\n\nThe developers of Brawlhalla decided to add the best fuckin' skins they've ever added to the game - Mogar Michael, Mad King Ryan, an assortment of Jeremys, and Dickless Rock Gavin. Because these new costumes are so damn cool, Achievement Hunter just HAD to do some brawlin'. Watch as Michael smashes a broken glass bottle into Jeremy's eyeballs and Ryan throws Gavin down a huge-ass hole. \n\n\n\nIt was so fucking frightening. Everybody was fighting. Then they all started griefing. Then teabag, Master Chiefing. Yeah! Yeah yeah yeah yeah! And then Michael grabbed a snack and somebody attacked and it turned into a Brawlroom Blitz. Brawlroom Blitz!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-brawlhalla-mogar-vs-the-mad-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45112a16-4261-49b1-84d6-f565b5c65b1b/sm/2013912-1471900074567-brawl_thumb.jpg","duration":1467,"publication_date":"2016-08-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-8-full-stream","changefreq":"weekly","video":[{"title":"2016:E111 - Twilight Princess 8 – FULL STREAM","description":"Mica is tipsy and Matt is running errands for the Hero of Time. Join the Zelda duo as they banter and bicker their way through another installment of Twilight Princess HD!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-8-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e28f952-98fa-488a-884b-d22cb0a59b3c/sm/2013912-1471901061860-zelda_desert_thumb_2.jpg","duration":4261,"publication_date":"2016-08-22T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-the-five-hundred-dollar-hole-ahwu-for-august-22-nd-2016-331","changefreq":"weekly","video":[{"title":"2016:E37 - The Five Hundred Dollar Hole- AHWU for August 22nd, 2016 (#331)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU || Some time between leaving Let's Play Live Chicago and getting to work this morning, Gavin caught a terrible case of Tiger Woods. Now Gavin is filled with illusions of grandeur. Every time Gavin sees a hole, he has an unquenchable urge to smack a golf ball into it. And, of course, there's no other hole Gavin is more acquainted with than Geoff's butthole.\n\n\nVideo of the Week: https://www.youtube.com/watch?v=0ye9DFhJeYI","player_loc":"https://roosterteeth.com/embed/ahwu-2016-the-five-hundred-dollar-hole-ahwu-for-august-22-nd-2016-331","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecee27b2-aa63-4a50-8047-d4e5ed93b6cc/sm/2013912-1471900953887-ahwu_thumb.jpg","duration":463,"publication_date":"2016-08-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-lava-riding-teams","changefreq":"weekly","video":[{"title":"2016:E38 - Halo 5 - Lava Riding Teams ","description":"It's Lava Riding teams this time. Watch Geoff, Gavin, Ryan, Jack, Jeremy and Matt ride on lava-proof mongooses and try to knock the others off with grenades and hammers. It's the best kind of chaos.\n\nIf you want to play the game yourself, grab them here!\n\nMap Download: http://bit.ly/2bs7b31\n\nGame Type Download: http://bit.ly/2b71VN5","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-lava-riding-teams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab52901f-ce32-4216-a0e5-2c23c816e98d/sm/2013912-1471641493503-TDD_Halo5_LavaRiderTeams_THUMB2.jpg","duration":653,"publication_date":"2016-08-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-part-3","changefreq":"weekly","video":[{"title":"2016:E265 - 7 Days to Die Part 3","description":"They're still alive! Ryan, Jack, Jeremy, and Michael continue to survive in the zombie wasteland. There are more zombies, more air drops, and more gun safes to explore.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87db3b9d-17e2-4590-ab83-f776de4fe294/sm/2013912-1471626096690-LP_7DaystoDie_03_THUMB3.png","duration":2853,"publication_date":"2016-08-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-11","changefreq":"weekly","video":[{"title":"2016:E7 - Last Call #11","description":"The AH Crew sit down to talk about farting, getting sick, drinking, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e2bbea-78b1-4f75-a99d-db16f8bb0f8d/sm/2013912-1471636670255-OFF38_-_PS_-_THUMB.jpg","duration":1361,"publication_date":"2016-08-21T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-46","changefreq":"weekly","video":[{"title":"2016:E264 - Let's Watch - Worms W.M.D. - Campaign Part 3","description":"The tough regimented life of Worms W.M.D. continues with Ryan, Gavin, Michael, and Jeremy as they continue their quest to be the mightiest worms. How many more worms must die before they all acknowledge our superior power? Seriously, how many more worms on our team do we have to kill before they get the picture. We're fucking dangerous, back off.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af803e58-9be9-4c70-aa89-04cbe7013c32/sm/2013912-1471718600390-Thumbnail.jpg","duration":2779,"publication_date":"2016-08-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cock-pit","changefreq":"weekly","video":[{"title":"2016:E263 - GTA V - CockPit","description":"[Script excerpt.]\n\n\nGAVIN: “So if we all get Besras, and we all fly into each other…”\n\nMICHAEL: “And then do like a star formation!”\n\nGAVIN: “It won’t be as neat as that, but yeah.”\n\nMICHAEL: “Oh, it will be flawless, Gavin. FLAW-less”\n\nJEREMY: “And then we all bail at the same time.”\n\nMICHAEL: “Yeah! We all survive, and we all high five as we parachute down.”\n\nEnd scene.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cock-pit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0688bd4-1a45-42d5-8af2-9462efbf8208/sm/2013912-1471640382362-gtatvthumb.jpg","duration":3686,"publication_date":"2016-08-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-38","changefreq":"weekly","video":[{"title":"2016:E38 - Flumes of Destiny - #38","description":"The AH Crew sit down to talk about theme parks, road trips, tough achievements, and more on this week's Off Topic!\n\nThis episode originally aired August 19, 2016 and is sponsored by MeUndies (http://bit.ly/29QtMVP) and MVMT Watches (http://bit.ly/29ACJT8)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4eb94a83-7baa-4571-95e9-76a0ae25dbf0/sm/2013912-1471636895231-OFF38_-_THUMB.jpg","duration":6956,"publication_date":"2016-08-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-minotaurs","changefreq":"weekly","video":[{"title":"2016:E37 - Halo 5 - Minotaurs ","description":"Michael, Gavin, Jeremy, Ryan and Matt explore mazes, hide from mecha-minotaurs, and betray each other in this Halo 5 custom map. \n\nThis map and gametype were made by Soft Sharp on xbox live. If you want to play them yourself grab them here!\n\nMap Download: http://bit.ly/2bAzrxB\n\nGame Type Download: http://bit.ly/2bg6SGD","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-minotaurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b33ec023-e79f-4da3-ac95-dd67657f6d16/sm/2013912-1471539166666-TDD_Halo5_Minotaurs_THUMB.jpg","duration":1126,"publication_date":"2016-08-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-11","changefreq":"weekly","video":[{"title":"2016:E2 - Post Show #11","description":"Frank, Gus, and Griffon talk about Fan Art and call for more submissions.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf2a9b7-bcff-4429-bae4-39124ce68b33/sm/2013912-1471559101072-HH11_-_PS_-_THUMB.jpg","duration":187,"publication_date":"2016-08-19T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-11","changefreq":"weekly","video":[{"title":"2016:E11 - Episode #11: Nightbeast","description":"After a mysterious ship crash lands in a small town, four idiots- er, I mean, one sheriff must stop a bloodthirsty alien from disintegrating the entire population, while also finding time to make it to the governor’s party! Join the AH crew in watching NIGHTBEAST in this week’s Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e79da4f2-238a-4cb4-ad31-43dcbbc7a894/sm/2013912-1471623827393-TM_-_Nightbeast_-_THUMB.jpg","duration":4727,"publication_date":"2016-08-19T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-7-full-stream","changefreq":"weekly","video":[{"title":"2016:E110 - Twilight Princess 7 – FULL STREAM","description":"IT'S MASTER SWORD TIME! Join Mica and Matt as they continue their Twilight Princess play through and finally pull they fabled Master Sword from the stone, giving them the power to become a furry at will.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-7-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0ed2853-5935-4a2b-9f53-0f2c832219c3/sm/2013912-1471626780727-master_sworrd_thumb_2.jpg","duration":3689,"publication_date":"2016-08-19T18:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-45","changefreq":"weekly","video":[{"title":"2016:E262 - Let's Watch - Worms W.M.D. - Campaign Part 2 ","description":"Ryan, Jack, Michael and Jeremy are back for more Worms W.M.D. campaign. So what really happens when a worm gets smashed in two?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fed76e96-232c-47fd-a397-4fcc4f4138a4/sm/2013912-1471555620952-LW_WormsPt2_THUMB.jpg","duration":3087,"publication_date":"2016-08-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-11","changefreq":"weekly","video":[{"title":"2016:E11 - Episode 11","description":"Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, Jeremy and Dungeon Master Frank listen to songs, drink poison, and some how come together to battle a new creature.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2616f764-aaf7-4665-adc9-ac2d1b0ded7d/sm/2013912-1471537632044-HH11_-_THUMB.jpg","duration":4670,"publication_date":"2016-08-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-44","changefreq":"weekly","video":[{"title":"2016:E261 - Let's Watch - Just Cause 3: Bavarium Sea Heist - Part 2","description":"Join the AH Crew as they continue their early look at the new Just Cause 3 DLC, Bavarium Sea Heist.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0bc053-6d1a-4dbc-9b19-ccad706de4b7/sm/2013912-1471538970143-jcpt2_thumb.jpg","duration":2376,"publication_date":"2016-08-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-143-jeremy-vs-jack","changefreq":"weekly","video":[{"title":"2016:E18 - Episode 143: Jeremy vs Jack","description":"Ba-ba-ba-battlship! Who will be victorious in this epic showdown of ship sinkage? Will it be Jack? Will it be Jeremy? Who knows, besides Jack and Jeremy and everyone else in the video, plus the editor and the description writer and everyone else who beat you to watching this video. Also, future you!","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-143-jeremy-vs-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e844bc75-b62e-4eff-846f-2e73ccc30f38/sm/2013912-1470771677342-VS_Battleship.png","duration":1010,"publication_date":"2016-08-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-221-creeper-soccer-x","changefreq":"weekly","video":[{"title":"2016:E260 - Minecraft - Episode 221 - Creeper Soccer X","description":"\"See there, mistah Creepah, see? Come o'a hyeaw mistah Creepah. I see, I see, I see yaw over theaw and I want yaw to be o'a hyeaw. Y'see, y'see, we'a playin' Creepah soccah o'a hyeaw and you need to be the baw, y'see, mistah creepah!\"\n\n\n\n\"Ryan, shut the fuck up. Do you think anyone's really going to understand that bullshit? People need to be able to read the video description so they know we're playing Creeper Soccer X, and there's no way they're going to get that from anything you just said. Fuckin' come on.\"\n\n\n\n\"...NYEAW! NYEAW! Come o'a here, see? Theaw plenty'a Creepa' Soccer to watch over hyeaw.\"\n\n\n\n\"Go fuck yourself, Ryan.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-221-creeper-soccer-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6b4c3f6-e084-4154-ab25-5d15722cde12/sm/2013912-1471471197604-mcthumb_1024.jpg","duration":2068,"publication_date":"2016-08-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-destiny-prison-of-elders-full-stream","changefreq":"weekly","video":[{"title":"2016:E109 - Destiny: Prison of Elders – FULL STREAM","description":"Kyle and Mica like to play Destiny together in their free time, so they thought, why not play together at work? Join this duo as they blast their way through the Prison of Elders on hard mode!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-destiny-prison-of-elders-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7890c595-1e69-4b74-b26a-66b968c26689/sm/2013912-1471369269871-destiny_2_thumb.jpg","duration":3987,"publication_date":"2016-08-17T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-43","changefreq":"weekly","video":[{"title":"2016:E259 - Let's Watch - Just Cause 3: Bavarium Sea Heist - Part 1","description":"Join the AH Crew as they get an early look at the new Just Cause 3 DLC, Bavarium Sea Heist.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd2ba115-b39d-4d5a-a9b7-93b5c60888e3/sm/2013912-1471298996522-jc_thumb.jpg","duration":1620,"publication_date":"2016-08-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-2","changefreq":"weekly","video":[{"title":"2016:E258 - Twilight Princess 6 – FULL STREAM","description":"Matt and Mica are back! This time they face up against the highly complained about, universally dreaded: WATER TEMPLE. Take a deep breath and dive in to this adventure!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9806da00-b240-484b-baec-56dcc89cc71c/sm/2013912-1471369738425-zora_matt.jpg","duration":7639,"publication_date":"2016-08-17T15:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-worms-wmd-2","changefreq":"weekly","video":[{"title":"2016:E257 - Worms WMD Part 2","description":"Gavin, Jack, Jeremy and Michael bring you more more wormy warfare in the second part of our Worms WMD series.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-worms-wmd-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a29421a-b7d9-4bf8-9937-05800252aa09/sm/2013912-1471362618315-Worms_WMD_LP_2_Thumbnail.jpg","duration":2283,"publication_date":"2016-08-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overcooked-part-3","changefreq":"weekly","video":[{"title":"2016:E256 - Overcooked Part 3","description":"Some people say variety is the spice of life. I say life's variety is found through spice. The feeling when you add just the right amount of basil to a boiling pot is like receiving a kiss from God himself. The aromas that fill the kitchen or the pirate ship or the semi truck as four chefs work in tandem are tres magnifique - beauty incarnate delivered through the vessel that is chopped onions. But then again, what the hell do I know? I am just a simple raccoon. I'd probably be just as satisfied with garbage or whatever.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overcooked-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdbbab04-3c95-498d-9897-98f6125f894c/sm/2013912-1471279447701-Overcooked_3_Thumb.png","duration":2158,"publication_date":"2016-08-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-balls-out-ahwu-for-august-15-th-2016-330","changefreq":"weekly","video":[{"title":"2016:E36 - Balls Out! - AHWU for August 15th, 2016 (#330)","description":"Thanks to Casper for supporting our channel. Save $50 on a mattress at http://www.casper.com/ahwu and enter ahwu || The Achievement Hunter crew make sure their sticks are in and their balls are out. With their shiny new stick holder, all the swords, bats, clubs, rods, and other phallic objects around the office can be easily stored in a nifty little container. Plus, balls! Who doesn't love it when the balls come out during an AHWU? Who doesn't love it when those balls get all over the room and get all over people's faces? I know I do!!\n\nWatch the Vid of the Week and the Community Vid","player_loc":"https://roosterteeth.com/embed/ahwu-2016-balls-out-ahwu-for-august-15-th-2016-330","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1774435-4ec0-4fbd-9da7-ae42914f0469/sm/2013912-1471299291745-ahwu_thumb.jpg","duration":639,"publication_date":"2016-08-15T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-guts-and-glory","changefreq":"weekly","video":[{"title":"2016:E17 - Guts and Glory","description":"Michael and Gavin take virtual children biking through incredibly dangerous playgrounds. Guts and Glory is one brutal bike ride.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-guts-and-glory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/693faea3-b616-477f-ab14-5870e7244fb9/sm/2013912-1471274714076-PP_GutsandGlory_THUMB.png","duration":1413,"publication_date":"2016-08-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-rocket-fist","changefreq":"weekly","video":[{"title":"2016:E255 - Rocket Fist ","description":"Join Ryan, Jack, Jeremy, and Michael as they throw some punches in the arcade style game, Rocket Fist.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-rocket-fist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13e3993e-8e3c-4c62-9676-30ae6f8b35a4/sm/2013912-1471033030491-LP_RocketFist_Thumb7.png","duration":1401,"publication_date":"2016-08-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-10","changefreq":"weekly","video":[{"title":"2016:E6 - Last Call #10","description":"The AH Crew sit down to watch Michael attempt the Banana-Sprite challenge! Will he puke?","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/522bdcd5-45c3-497f-bd3f-c9255d76f221/sm/2013912-1471039169992-OFF37_-_PS_-_THUMB.jpg","duration":1316,"publication_date":"2016-08-14T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-no-man-s-sky-marking-your-turf","changefreq":"weekly","video":[{"title":"2016:E36 - No Man's Sky - Marking Your Turf","description":"No Man's Sky has one of the biggest universes ever created. Our own universe might even be smaller from what I hear. So why not leave your mark on one of the billions of planets in No Man's Sky? A mark that years from now people will walk by and say \"Man, I wonder why anyone would waste time doing that\". Then shortly after saying that they'll mark over it and ultimately make it like you were never there to begin with, making your mark on the planet and chance at immortality pointless...Matt and Andy can show you exactly how to leave your mark for a little while though.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-no-man-s-sky-marking-your-turf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6e89ff8-4823-4b41-914f-366594cedb2b/sm/2013912-1471061361452-Thumbnail.jpg","duration":203,"publication_date":"2016-08-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-ceo-2","changefreq":"weekly","video":[{"title":"2016:E254 - GTA V - CEO 2","description":"Starring: Geoff Ramsey as Al Pacino, Jeremy Dooley as Robert de Niro, Ryan Haywood as Val Kilmer, and Jack Pattillo as Amy Brenneman.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-ceo-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/237bf498-e7b5-473b-9aad-f3bb60aa038c/sm/2013912-1470935428120-Thumb_FINAL_CEO_2.jpg","duration":2124,"publication_date":"2016-08-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-37","changefreq":"weekly","video":[{"title":"2016:E37 - Never Forget - #37","description":"The AH Crew, plus Samm Levine sit down to talk about Crunch Time, Tamagotchi, Hollywood names, and more on this week's Off Topic!\n\nThis episode originally aired August 12, 2016 and is sponsored by MVMT Watches (http://bit.ly/2bd8MJW)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb9cc921-29c6-45f2-9593-aa9457c1889d/sm/2013912-1471039935777-OFF37_-_THUMB.jpg","duration":7591,"publication_date":"2016-08-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-wwe-2-k16-tournament-final-round","changefreq":"weekly","video":[{"title":"2016:E108 - WWE 2K16 Tournament - Final Round","description":"Ladies and gentlemen...\n\nThe moment you've all been waiting for...\n\nThe Rooster Teeth WWE 2K16 Tournament Finale!\n\nLet's get ready to RUMBLE!!!!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-wwe-2-k16-tournament-final-round","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbb3316c-325d-4093-8a1a-24cca1d9f1c4/sm/2013912-1470932819859-WWE_Finale_Thumb.jpg","duration":455,"publication_date":"2016-08-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-post-show-10","changefreq":"weekly","video":[{"title":"2016:E1 - Post Show #10","description":"Frank, Geoff, and Griffon talk about the creation of Heroes and Halfwits. Plus, how all the game pieces came to be.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-post-show-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee112f83-7323-48f4-a228-714680709d47/sm/2013912-1470942059511-HH10_-_PS_-_THUMB.jpg","duration":517,"publication_date":"2016-08-12T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-10","changefreq":"weekly","video":[{"title":"2016:E10 - Episode #10: Time Barbarians","description":"Tits, time travel, and that guy from Mortal Kombat? Man, this movie has everything! Give the AH guys a “barbarian hello” and join them on a trek through time in this week’s movie, Time Barbarians!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb214d73-7a4d-4cc9-a8a6-977f917441c6/sm/2013912-1471017181458-TM_-_Time_Barbarians_-_THUMB.jpg","duration":5799,"publication_date":"2016-08-12T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-jack-jeremy-check-out-quakecon-2016","changefreq":"weekly","video":[{"title":"2016:E107 - Jack & Jeremy check out Quakecon 2016","description":"Join Jack and Jeremy as they get to explore Quakecon 2016.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-jack-jeremy-check-out-quakecon-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21c40c3e-a653-4db9-8455-77aa884a3128/sm/2013912-1471027326054-qk1.jpg","duration":212,"publication_date":"2016-08-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-16","changefreq":"weekly","video":[{"title":"2016:E106 - VR the Champions - Job Simulator: Chef","description":"This week on VR the Champions. Join the AH gang as they practice their culinary skills in Job Simulator: Chef.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe360547-30cc-4a77-8f42-7e41168a0bce/sm/2013912-1470952153749-chefthumb.jpg","duration":1722,"publication_date":"2016-08-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-ten","changefreq":"weekly","video":[{"title":"2016:E10 - Episode Ten","description":"Is it all just an illusion? Follow our Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael, Jeremy and Dungeon Master Frank as they take on the Drow with new spells…and outfits.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-ten","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3165b202-c99f-4a75-acee-2f0654c08d93/sm/2013912-1470941633223-HH10_-_THUMB.jpg","duration":4385,"publication_date":"2016-08-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-naruto-full-stream","changefreq":"weekly","video":[{"title":"2016:E105 - Naruto Shippuden Ultimate Ninja Storm 4 – FULL STREAM","description":"FIGHTING DREAMERS! Ryan and Mica are FIGHTING DREAMERS!! Join this anime-tastic duo as they battle it out in the latest Naruto game 1v1. Who will be the ultimate ninja? Watch to find out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-naruto-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcddc1ef-3de6-4891-8b4f-07d7efe39eaf/sm/2013912-1470936014750-naruto_thumb_2_v2.jpg","duration":4068,"publication_date":"2016-08-11T21:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-42","changefreq":"weekly","video":[{"title":"2016:E253 - Let's Watch - Worms W.M.D. - Campaign Part 1","description":"Join Ryan, Jack, Michael and Jeremy as they start their epic adventure through the Worms W.M.D. campaign.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67b92974-fec5-4054-84bd-62aefae0dc5b/sm/2013912-1470871470083-creepywormthing.jpg","duration":2995,"publication_date":"2016-08-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-220-off-topic","changefreq":"weekly","video":[{"title":"2016:E252 - Minecraft - Episode 220 - Off Topic","description":"Achievement City - the city that has everything. Cool buildings, giant pooping sheep, fun and games, a shag tent, public transportation, and so much more. But occasionally the Achievement Hunter crew doesn't want to run all around the city. Sometimes they want to take it nice and easy. Sometimes they just want to sit down, drink beer, and chat. Sometimes they just need a place to record funny little shows in a funny little room - so pretty much any show that isn't On the Spot. Thanks to foreman Michael and build buds Matt and Ryan, now there's a place for just that. A place where things can go just a little...off topic.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-220-off-topic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b32a493-979e-43dc-8dfc-86f9f0c0ae27/sm/2013912-1470857273641-Minecraft_OffTopic_Thumb_v003.png","duration":2303,"publication_date":"2016-08-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-41","changefreq":"weekly","video":[{"title":"2016:E251 - Let's Watch - No Man's Sky","description":"Join Ryan, Jeremy, Michael and Jack as they explore the new world of No Man's Sky.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb0751fa-5c71-4040-96a7-42986c0a8ade/sm/2013912-1470855272295-nomansskythumb.jpg","duration":4129,"publication_date":"2016-08-10T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-no-man-s-sky-with-the-stream-team-full-stream","changefreq":"weekly","video":[{"title":"2016:E104 - No Man's Sky with the Stream Team – FULL STREAM","description":"Space.... the final.......... something. Join the Stream Team as they fly around the eternal void of the universe, shoot some stuff, and colonize planets in No Man's Sky!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-no-man-s-sky-with-the-stream-team-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1bc01b2-f9ef-412c-ac0b-b84fd02ca5d3/sm/2013912-1470848610220-nomanssky_full_thumb.jpg","duration":3946,"publication_date":"2016-08-10T18:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-5-full-stream","changefreq":"weekly","video":[{"title":"2016:E103 - Twilight Princess 5 – FULL STREAM","description":"Matt continues to do surprisingly well playing Twilight Princess in Hero Mode! And Mica continues to sigh and shake her head when he does something stupid. Join this jolly duo as they continue their play-through of Twilight Princess in part 5.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-5-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e01ca7bb-4d6a-4471-ada6-8e8586582b43/sm/2013912-1470847568505-zelda_thumb_a_million3.jpg","duration":3765,"publication_date":"2016-08-10T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-part-2","changefreq":"weekly","video":[{"title":"2016:E250 - 7 Days to Die Part 2","description":"Our friends are back in the zombie apocalypse for more wasteland adventures. Join Jack, Michael, Jeremy, and zombie survival expert Ryan for more hunting, raiding, and screaming zombies.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ef542fa-4dad-45a7-a44a-72a046d9c241/sm/2013912-1470771390616-LP_7DaystoDie_02_THUMB.png","duration":2662,"publication_date":"2016-08-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-nap-trap","changefreq":"weekly","video":[{"title":"2016:E35 - Overwatch - Nap Trap","description":"Overwatch has finally released a new character, Ana. Ana has a lot of unique abilities, but her ability to force a nap anytime has got to be her most useful one. Seriously I really need to ability to nap right now. Insomnia sucks.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-nap-trap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cc9446c-a29d-4034-9314-4a39424be64f/sm/1104396-1470700648670-ttd_ana_overwatch_other_720.jpg","duration":200,"publication_date":"2016-08-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-worms-wmd","changefreq":"weekly","video":[{"title":"2016:E249 - Let's Play - Worms WMD","description":"The Achievement Hunter crew had a chance to play Worms WMD a little bit early. Six Hunters. Eight worms each. It's a whole truckload of worms picking up their weapons and their vehicles and blasting each other to bits! Hmm. Those worm voices sound a little familair too...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-worms-wmd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4e3a8e5-06ab-4f92-be19-a0b733077f31/sm/1104396-1470699407317-WormsWMD_Thumb.png","duration":2718,"publication_date":"2016-08-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-give-me-the-diamonds-ahwu-for-august-8-th-2016-329","changefreq":"weekly","video":[{"title":"2016:E35 - Give Me the Diamonds! - AHWU for August 8th, 2016 (#329)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU || Today was a sad today for Achievement Hunter. Michael was robbed by our beloved remote control police car Mr. Sirens.\n\nWe weren't sure if the car was looking for ransom. We let it know that we had no more money, but what we did have were a very particular set of skills. Skills we had acquired over many years of shenanigans. Skills that will give it nightmares and if it let Michael go, that would be the end of it. But if it didn't let him go, we would look for it, we would find it, and we would kill it. \n\nThankfully Michael was ok since he wasn't \"Taken\" too far away, but we had to let Mr. Sirens go. Hopefully he can find employment elsewhere.\n\n\n\nWatch the Video of the Week and the Community Vid.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-give-me-the-diamonds-ahwu-for-august-8-th-2016-329","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d841d12e-9dd2-4e85-af33-62473b1bf7e9/sm/2013912-1470691876454-AHWUTHUMB.jpg","duration":509,"publication_date":"2016-08-08T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-wwe-2-k16-tournament-round-4","changefreq":"weekly","video":[{"title":"2016:E102 - WWE 2K16 Tournament: Round 4","description":"It's Round 4 of Rooster Teeth's WWE 2K16 Tournament. Tonight's fighters: Michael Jones, Lindsay Jones, Adam Kovic, and Lawrence Sonntag. It's Achievement Hunter VS Funhaus; husband VS wife, and friend VS friend. Who will make it to the final round?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-wwe-2-k16-tournament-round-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9de7afe-3074-4fd0-9f9d-af0027ff08d0/sm/2013912-1470673455888-AH_WWE_Round4_THUMB6.png","duration":991,"publication_date":"2016-08-08T16:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-star-trek-part-9","changefreq":"weekly","video":[{"title":"2016:E248 - Star Trek Part 9","description":"Time again for Michael's, Ryan's, and your favorite video game! In this daring episode of our super space saga, Spock Kirk and Kirk Spock face their greatest foe yet... water!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-star-trek-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7aac2a31-4796-491c-90d0-98f67b611e1b/sm/2013912-1470430791481-startrek.jpg","duration":2174,"publication_date":"2016-08-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-4-full-stream","changefreq":"weekly","video":[{"title":"2016:E80 - Twilight Princess Part 4 – FULL STREAM","description":"Matt and Mica are back in Hyrule, kicking ass and taking names! Evil Gorons are no match for Matt and his superior skills! Join this Zelda crazed duo as they continue their adventures in Twilight Princess.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-4-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00e0f034-121c-4f56-aff5-1baf76ce7f86/sm/2013912-1470427418945-tp_faces_thumb_goron_wrestle.jpg","duration":3553,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-batman-arkham-knight-full-stream","changefreq":"weekly","video":[{"title":"2016:E78 - Batman Arkham Knight – FULL STREAM","description":"Batman doesn't kill people. Ever. At all. Nope. Just... just ignore the fact that Michael ran people over with the Batmobile... they're fiiiiiiiiiiine. Join Michael, Andy, and Mica as they totally absolutely don't kill people in Batman Arkham Knight!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-batman-arkham-knight-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/082e0462-b80f-4fff-8af0-6a8878d1864e/sm/2013912-1470427280768-arkham_knight_full_thumb.jpg","duration":3668,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-yu-gi-oh-full-stream","changefreq":"weekly","video":[{"title":"2016:E101 - Yu-Gi-Oh Legacy of the Duelist – FULL STREAM","description":"IT'S TIME TO D-D-D-D-D-D-D-DUEL! Andy and Mica are surprisingly sober and playing through the campaign of one of their favorite games: Yu-Gi-Oh Legacy of the Duelist!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-yu-gi-oh-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce61481c-3214-429c-a267-b5974b8f3aef/sm/2013912-1470328294725-yugioh_stream_thumbnail_1024.png","duration":3302,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-3-full-stream","changefreq":"weekly","video":[{"title":"2016:E98 - Twilight Princess Part 3 – FULL STREAM","description":"Is Matt letting Hero Mode get in between fighting the darkness and saving the world? No! Well... Kinda... He is dying recklessly a bit... Join Matt and Mica as they continue their trek through Hyrule in Twilight Princess part 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-3-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa23ddb5-b433-48f5-81b5-b37aee682cce/sm/2013912-1470173794237-tp_thumb_deku.jpg","duration":3890,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-2-full-stream","changefreq":"weekly","video":[{"title":"2016:E97 - Twilight Princess Part 2 – FULL STREAM","description":"It's a dog's life for Matt Brag... well... a wolf's life for Link. Join Matt and Mica as they continue their adventures in Hyrule with part 2 of Twilight Princess!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-2-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccd0148c-e2ec-4a92-ba3e-388776fd5c49/sm/2013912-1470173169608-loz_tp_faces_thumb_2.jpg","duration":3671,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-twilight-princess-1-full-stream","changefreq":"weekly","video":[{"title":"2016:E96 - Twilight Princess Part 1 – FULL STREAM","description":"Legend of Zelda: Breath of the Wild isn't out yet so Mica and Matt need something to hold them over... I think the whole campaign of Legend of Zelda: Twilight Princess should do! Join this triforce loving duo for Part 1 of many!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-twilight-princess-1-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e612675b-ce88-42be-b6f3-09235d40d500/sm/2013912-1470173027701-Twilight_Princess_Thumb_faces.jpg","duration":5909,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-trials-fusion-full-stream","changefreq":"weekly","video":[{"title":"2016:E95 - Trials Fusion – FULL STREAM","description":"Two of the many things Gavin are great at are slow motion videos and Trials games. Phantom cameras are way too pricey to expense for a stream, so we have him playing Trials Fusion with Mica instead! Join the duo as they front flip for style all over the place!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-trials-fusion-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b286dea-2d76-4ec0-949f-f609f8e52324/sm/2013912-1470242108844-gavin_trials_thumb_var_3.jpg","duration":3729,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-tokyo-mirage-sessions-full-stream","changefreq":"weekly","video":[{"title":"2016:E94 - Tokyo Mirage Sessions: FE – FULL STREAM","description":"What's better than anime girls dancing in magical girl costumes? Watching Mica and Jeremy play through a game full of anime girls dancing in magical girl costumes! This hilarious duo plays through the new game Tokyo Mirage Sessions and are greatly entertained while doing so.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-tokyo-mirage-sessions-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd9bfaa1-70d4-4f6f-93b9-467b2c579493/sm/2013912-1470243642099-new_tokyo_mirage_thumb.jpg","duration":3494,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-super-meat-boy-full-stream","changefreq":"weekly","video":[{"title":"2016:E93 - Super Meat Boy – FULL STREAM","description":"Poor Meat Boy, all he wants to do is find his Meat Girlfriend and Ryan keeps running him into spikes and killing him. Oh well, at least it's entertaining! Join Ryan and Mica as they smash, jump, and bleed their way through Super Meat Boy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-super-meat-boy-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae4ee451-db66-4dc5-b54c-d30ba827732b/sm/2013912-1470242083836-supermeatboy.jpg","duration":3797,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-rwby-grimm-eclipse-full-stream","changefreq":"weekly","video":[{"title":"2016:E91 - RWBY Grimm Eclipse – FULL STREAM","description":"What's better than playing RWBY Grimm Eclipse? Yang playing RWBY Grimm Eclipse AS YANG... Well, Barbara playing as Yang... whatever it's still cool.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-rwby-grimm-eclipse-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e90cd088-9cdb-473c-84da-ccd591b95bc3/sm/2013912-1470170435422-rwby_thumb_2.jpg","duration":2918,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-resident-evil-full-stream","changefreq":"weekly","video":[{"title":"2016:E90 - Resident Evil 7 Demo – FULL STREAM","description":"Why did Andy and Mica let Jon play a scary game? They know he screams like a baby. AT EVERYTHING. Oh well, at least it's entertaining! Join this awesome trio as they attempt to unlock the secrets of the Resident Evil 7 Demo.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-resident-evil-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fdfdfd0-f603-4591-85b5-8f6b17f2828e/sm/2013912-1470173885819-re7_thumb_2.jpg","duration":5548,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-pokemon-y-full-stream","changefreq":"weekly","video":[{"title":"2016:E89 - Pokemon Y – FULL STREAM","description":"Mica wants to be the very best like no one ever was. To catch them is her real test, to train them is her cause. Too bad she hasn't picked up Pokemon Y in a while and gets lost trying to navigate Victory Road! Join Mica and various guests as they cheer her on during her Elite Four battle and celebrate her 22nd birthday.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-pokemon-y-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1363338-448c-416b-9693-d3370cdf0f4d/sm/2013912-1470091228929-pokemon_thumb_1.jpg","duration":5280,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-party-hard-full-stream","changefreq":"weekly","video":[{"title":"2016:E88 - Party Hard – FULL STREAM","description":"It's completely normal to murder your neighbors for partying to loud, right? No? Well. Mica and Jeremy do it anyway. Join these two perky murderers as they stab their way through Party Hard.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-party-hard-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08df00e0-aefc-48ab-935d-34e4542bd0c4/sm/2013912-1470242052514-parrtyhard.jpg","duration":3830,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-mirrors-edge-full-stream","changefreq":"weekly","video":[{"title":"2016:E87 - Mirror's Edge – FULL STREAM","description":"HARDCORE PARKOUR!! Join Matt and Mica as they dip, dive, and dodge their way through Mirror's Edge! Oh, and Matt discusses how to infinitely eat a starfish so he never goes hungry again? Yeah... we're not so sure about that kid either...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-mirrors-edge-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b9d1050-cb61-4ca9-a300-59c27a4c08c8/sm/2013912-1470176527406-mirros_edge_thumb_2.jpg","duration":5480,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-kyle-and-jon-overwatch-full-stream","changefreq":"weekly","video":[{"title":"2016:E86 - Overwatch With Kyle and Jon – FULL STREAM","description":"No one in the Rooster Teeth office can get enough of Overwatch! Kyle took a quick break from machinimating as Jon took a break from hosting so they could join Mica for a few exciting rounds of this incredible game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-kyle-and-jon-overwatch-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea1a7b28-42fa-424e-8f80-84b2b913db58/sm/2013912-1470173944252-kyle_and_jon_overwatch_thumb.jpg","duration":6271,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-mario-party-full-stream","changefreq":"weekly","video":[{"title":"2016:E85 - Mario Party With The Stream Team – FULL STREAM","description":"The Stream Team are all good friends, right? What better way to destroy that friendship than with some good old Mario Party 8??","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-mario-party-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/900ecf7d-6278-4947-a9c8-7b62dfa288c4/sm/2013912-1470343387679-Stream_Team_Mario_Party_Logo_Top_Center.png","duration":4188,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-kingdom-full-stream","changefreq":"weekly","video":[{"title":"2016:E84 - Kingdom – FULL STREAM","description":"All Jack needs to build an empire is a bag of coins, a horse, and a couple dozen peasants he can pay off to die in battle. Sounds simple enough! Join Jack and Mica as they play through the campaign of the popular indie game Kingdom.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-kingdom-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98cf98e9-03c3-4a59-87f5-1372acd55733/sm/2013912-1470173917287-kingdom_2_thumb.jpg","duration":3651,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-cunning-stunts-2-full-stream","changefreq":"weekly","video":[{"title":"2016:E82 - Cunning Stunts With The Stream Team 2 – FULL STREAM","description":"The Stream Team is back with more cunning stunts! This time with Trevor! Buckle in, it's going to be a wild ride.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-cunning-stunts-2-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/205fa7a0-8800-49ca-9789-6be216292308/sm/2013912-1470241994319-cunning_stunts_2.jpg","duration":3861,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-gang-beasts-full-stream","changefreq":"weekly","video":[{"title":"2016:E83 - Gang Beasts With The Stream Team – FULL STREAM","description":"Did you ever want to see Jeremy, Matt, and Trevor beat each other senseless? Well now you can! Join the infamous Stream Team as they play some exciting rounds of Gang Beasts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-gang-beasts-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db88e225-4e74-4c37-b1e1-1b50b46e79d0/sm/2013912-1470242026668-gangbeast.jpg","duration":4051,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-cunning-stunts-1-full-stream","changefreq":"weekly","video":[{"title":"2016:E81 - Cunning Stunts With The Stream Team – FULL STREAM","description":"Join Jeremy and Matt as they flip, race, and crash through Los Santos! Will Jeremy ever win a race? Will GTA behave and let them join a game lobby? Will Mica murder Matt for eating her Nutella??? Tune in to find out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-cunning-stunts-1-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57775a3c-f350-42dd-bde6-75aa6fbb6038/sm/2013912-1470241974276-cunning_stunts_1_thumb.jpg","duration":6016,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-batman-telltale-full-stream","changefreq":"weekly","video":[{"title":"2016:E79 - Telltale's Batman With The Stream Team – FULL STREAM","description":"NA-NA-NA-NA-NA-NA-NA BATMAN! Join the Stream Team as they play through episode 1 of the anticipated Telltale release: Batman. Bruce Wayne will remember that.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-batman-telltale-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fca009e0-55f5-4c7b-92e6-594d467c1ce0/sm/2013912-1470415991588-teltale_batman_full_thumb.jpg","duration":3907,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-who-s-your-daddy-full-stream","changefreq":"weekly","video":[{"title":"2016:E100 - Who's Your Daddy? - FULL STREAM","description":"Who's your daddy? Is it Geoff? Is it Ryan? Is it Mica??? Find out in this exciting video as this trio discovers all the ways to die as a devious little baby.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-who-s-your-daddy-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2069b02a-ee6d-4153-9fba-e92dee4ccb21/sm/2013912-1470328251842-Whos_Your_Daddy_Thumb.jpg","duration":3775,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-we-happy-few-full-stream","changefreq":"weekly","video":[{"title":"2016:E99 - We Happy Few With The Stream Team – FULL STREAM","description":"These faces are unsettling, this game is unsettling, and the Stream Team is unsettled. Join Trevor and Jeremy as they try not to perma-die in We Happy Few!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-we-happy-few-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37965c01-14aa-4dd4-96f2-86a39cb5a316/sm/2013912-1470247089155-we_happy_few_thumb.jpg","duration":3905,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-star-wars-full-stream","changefreq":"weekly","video":[{"title":"2016:E92 - Lego Star Wars: The Force Awakens – FULL STREAM","description":"What trio would you trust better with the fate of the universe: Han, Leia, and Luke? Rey, Finn, and BB-8? Michael, Andy, and Mica? The last one? Yeah we think so too. Join this heroic group as they play through the campaign of Lego Star Wars: The Force Awakens!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-star-wars-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/450e94b1-cb79-432d-8474-e4f7d80e0976/sm/2013912-1470343394257-Lego_SW_Stream_Thumbnail_2point0.png","duration":3634,"publication_date":"2016-08-08T11:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-9","changefreq":"weekly","video":[{"title":"2016:E5 - Last Call #9","description":"The AH Crew sit down to talk about Crunch Time, Star Trek Beyond, Ghostbusters, and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0a09246-bd7e-49b2-844a-7d64623df9d9/sm/2013912-1470433984209-OFF36_-_PS_-_THUMB.jpg","duration":1468,"publication_date":"2016-08-07T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-ghostbusters","changefreq":"weekly","video":[{"title":"2016:E34 - Halo 5 - Ghostbusters","description":"They ain't afraid of no ghost! Check out Geoff, Jack, Gavin, Ryan, Jeremy and Matt as they become ghosts and ghostbusters. Tune in to see who will survive and who will get slimed.\n\n\n\nMap download: http://bit.ly/2aMlBJo || Game type download: http://bit.ly/2aUSAdF","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-ghostbusters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b0e8e5c-2a71-4851-8976-acdcc7933e19/sm/2013912-1470454373429-TDD_Ghostbusters_THUMB.jpg","duration":790,"publication_date":"2016-08-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-nascar-w-e-d-g-i-e-gta-gameplay","changefreq":"weekly","video":[{"title":"2016:E21 - NASCAR WEDGIE! - GTA Gameplay","description":"NASCAR truly is the sport of kings. \n\nJust like the acien rÈgime, it requires a multitude of idiots willing to funnel their hard-earned money to a ruling class of elites. And also remember that time when Louis XIV drafted on the Compte de Pontrchartrain until the last lap, when he pulled ahead and won, and then he spun donuts in the Bosquet du Dauphin?\n\nTruly, the sport of kings.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-nascar-w-e-d-g-i-e-gta-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94c7bca4-7a00-40aa-ab7a-5d5d27a668d3/sm/2013912-1455155193841-fh_thumb_8_copy.jpg","duration":481,"publication_date":"2016-02-11T01:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-goodbye-spoole-goodbye-game-trailers-56","changefreq":"weekly","video":[{"title":"2016:E56 - Goodbye Spoole, Goodbye GameTrailers - #56","description":"We've lost so much. Where will we go? What will we do? Every time we see someone obsessively checking their phone, the wind will whisper ~get back to work~.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-goodbye-spoole-goodbye-game-trailers-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/021e122c-5ae9-48be-97e6-921ad121bc35/sm/1788482-1455068975816-fh_thumb_8_copy.jpg","duration":3776,"publication_date":"2016-02-10T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-rad","changefreq":"weekly","video":[{"title":"2016:E5 - WE ARE RAD","description":"Fine crop of art this week, mighty fine. Spoole announced he was leaving last night though so there's not a whole lot of sad Spoole stuff going on just yet. Don't worry, it'll be in next week's episode... just in time for him to be gone forever. RIP Spoole.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-rad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64e9e27c-9a5c-4f56-9d16-9022bceed238/sm/1788482-1455060618224-Fanart-20160209.png","duration":1745,"publication_date":"2016-02-09T23:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-how-to-be-r-o-m-a-n-t-i-c-51","changefreq":"weekly","video":[{"title":"2016:E6 - How To BE ROMANTIC? - #51","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nBoy do I have great news for you. James (me) is going to write another Open Haus description! The only problem is... I'm not sure what to write it about. I'd make it something about the episode, but I don't want to spoil it. Maybe if I just tickle your collective fancies with a tasty morsel of things to come. Hmm... Let's see... what's good, but not so good that you'll only need to read the description and not watch the episode. Well... what about... Oh! I've got it! In this episode-- [Character Limit Reached]","player_loc":"https://roosterteeth.com/embed/open-haus-2016-how-to-be-r-o-m-a-n-t-i-c-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfa9d5da-3634-4c8b-bb61-7fd2758fb39d/sm/2013912-1454720944790-FH_Thumb_8_copy.jpg","duration":752,"publication_date":"2016-02-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-say-hello-to-my-little-friend","changefreq":"weekly","video":[{"title":"2016:E6 - SAY HELLO TO MY LITTLE FRIEND","description":"Could we BEE any more excited aBEEout this episode of Demo Disk? ABEEsolutely not! It stars BEEruce Greene, Adam Kovic, and James Willems as they play BEEroken games and BEEreak the sample CDs that they're on!\n\nEvery week the BEEoys sit down to sample old demos, BEEut that's not all! They also BEErowse online for fun flash games and liBEEidinous Rule34. ComBEEine them all together and you have aBEEout 10 minutes of rootin' tootin' good times!\n\nBEEEEEEEE BEBEEEBEBEEE BEE BE BEEE BEEEEBE!","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-say-hello-to-my-little-friend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4eb4892-e4dc-4bf5-951e-262e838f1051/sm/2013912-1454699517496-fh_thumb_8_copy.jpg","duration":965,"publication_date":"2016-02-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-super-bowel-50-axis-football-2015-gameplay","changefreq":"weekly","video":[{"title":"2016:E20 - SUPER BOWEL 50 - Axis Football 2015 Gameplay","description":"Fire up the old gridiron and turn up the nachos because, boy howdy, do we have a big game this year! The Denver Ponyboys and Carolina Furries are at it again in a pigskin match that'll leave you breathless, I tell you what. \n\nTailgatin'?! Sure, we got that! Big boys swigging beers by the parking lots with the fans of the old Red and Green and Black yup yup yup. Tune in this Super Sunday for Super Action with Super Hot Ballmen, running around with their jiggling butts and concussion-proof helmets. Did we mention that all the players get one free MRI per game? That's just how we roll in the United Futball Teams!!\n\nOh gosh and I forgot the commercials which everyone lies and says they only tune in for. Animated cola pigs and maybe that hot racegirl who sells us websites, they'll all be there just for us.\n\nExperts in Vegas and Reno are saying the spread is too tough to call but you better believe all your coworkers are excited to fill in squares with numbers and win money from their friends. But don't illegal bet because in Fotboll that's a no-no, just like deflagegate unless you're a Brady.\n\nAnyway, on with the show, can't wait for it. Halftime we got a big band playing all the hits, with fireworks and big old military planes, so get excited! Are you ready for some Superball!?","player_loc":"https://roosterteeth.com/embed/gameplay-2016-super-bowel-50-axis-football-2015-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/122f946c-f531-41fe-bf70-c4571ffa064b/sm/2013912-1454695065628-fh_thumb_8_copy.jpg","duration":550,"publication_date":"2016-02-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-anime-blue-balls-anime-porno-gameplay","changefreq":"weekly","video":[{"title":"2016:E19 - ANIME BLUE BALLS - Anime Porno Gameplay","description":"\"O--oh, Senpai Lawrence! I'm so sorry to intrude. How could I have known you were hacking all of the porn, for the good of our nation, Cybertopia? I hope I'm not too much of a distraction. ..... But Lawrence-san! What is that? I knew porn was bad, but this doesn't seem bad at all. This seems...right, somehow. How can something I've been taught to be wrong be right? I'm so confused. I only wish you would teach me. Teach me the ways of the Ministry of Porn Hacking, Senpai Lawrence-chan-san. Yes, of course a hands-on demonstration is best, I agree. Please show me. Of course, you must put your hands wherever is necessary. Touch me. Touch me everywhere, Minister Porn Czar Chan-Law-san-pai-ence!!\"\n\nThat's when Lawrence woke up.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-anime-blue-balls-anime-porno-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1a55468-d760-4b15-8b05-2498c9227963/sm/2013912-1454459572189-fh_thumb_8_cop.jpg","duration":539,"publication_date":"2016-02-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-total-b-u-l-l-s-h-t-james-garbage-gameplay","changefreq":"weekly","video":[{"title":"2016:E18 - TOTAL BULLSH*T - James' Garbage Gameplay","description":"Ole, ole. Come one, come all, to see the greatest Corrida de Toros you'll ever see. A spectacle for the ages, as handsome matadores join El Baile de los Muertos with the fiercest Toros Bravos this side of the Rio Ebro.\n\nMarvel as Senor Joelrigo and his cuadrilla thrill you in .... oh fuck it, that's all the bullfighting terminology I feel like looking up. Just watch the damn video.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-total-b-u-l-l-s-h-t-james-garbage-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c92509de-4ec0-4968-9d81-e8b4e065dbaa/sm/2013912-1454452368354-download.jpg","duration":980,"publication_date":"2016-02-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-boner-rage-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E17 - BONER RAGE - GTA 5 Gameplay","description":"Meet Marshall. He's just an old-fashioned kind of monster truck from the country. But his world is about to be turned upside down and C-C-C-C-CRUSHED when a big city banker comes out to foreclose on the old family farm.\n\nMeet Liberator. She's a big city banker who just can't catch a break. But she's going to come face to face with with love when her job sends out out of town on a SUNDAY, SUNDAY, SUNDAY.\n\nWhat happens when city meets country? When METAL MEETS METAL? When heart meets soul? \n\nFind out this Spring, in Four Revvings and a Funeral. Or My Best Friend's Welding. Or Sparkplugs in Seattle. Or When Hammer Met Sally. Or Knocked Pickup. Or You've Got Tailpipes. Or How to Pass a Guy in 10 Miles. \n\nMonster Truck: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/pLczZdBs40i_U7UQ7Sf_0Q#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-boner-rage-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d51cef4e-e00e-4be8-b256-424f5b25bfeb/sm/2013912-1454449625324-fh.jpg","duration":477,"publication_date":"2016-02-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-fine-bros-stop-r-e-a-c-t-i-n-g-55","changefreq":"weekly","video":[{"title":"2016:E55 - Fine Bros STOP REACTING? - #55","description":"Visit our sponsors! Loot Crate: http://www.lootcrate.com/dudesoup promo code \"DUDESOUP\"\n\nMack Weldon: http://www.mackweldon.com/ promo code: \"SOUP\"\n\nWell, Adam and Bruce are back from Fiji, so we finally decided to weigh in. Are you happy, Internet? ARE YOU HAPPY?!","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-fine-bros-stop-r-e-a-c-t-i-n-g-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9da6475c-f0ed-48a7-9251-f88aa638e6fa/sm/2013912-1454459385246-fh_thumb_8_copy.jpg","duration":3877,"publication_date":"2016-02-03T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-we-are-digimupps","changefreq":"weekly","video":[{"title":"2016:E4 - WE ARE DIGIMUPPS","description":"We could celebrate the fans in this description, but instead I'm going to complain that our ethernet Chromecast adapter didn't work. Ain't that some shit.\n\n\n\nAlso our capture computer crashed so we had to use our stream footage, so sorry about the format.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-we-are-digimupps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0232823-fb01-439d-b094-40a8ce48799d/sm/1788482-1454457551692-Fanart-20160202.png","duration":1505,"publication_date":"2016-02-02T21:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-our-new-j-o-b-s-50","changefreq":"weekly","video":[{"title":"2016:E5 - Our NEW JOBS? - #50","description":"Hey guys (and girl)! James here! Traveling can be fun, but you know what isn't? Making videos when there's only like four of us in the office. \"But there's six of you in this very video,\" you'll no doubt retort. Well, despite how it may appear, Peake is actually just a large stack of cardboard boxes and Joel is a computer generated hologram; like Hastune Miku or Debra Messing.\n\nAnyway, things should be back to normal by next week, so until then, please watch us talk about hacking, superheroes, abortion, and plenty other stuff that kids 'jive' about in the school yard. Oops! I just pooped my pants. Gotta go!","player_loc":"https://roosterteeth.com/embed/open-haus-2016-our-new-j-o-b-s-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b14e4a8b-2362-4d42-be5c-cf917ee95317/sm/1788482-1454116322751-oh_2_2_2016.png","duration":681,"publication_date":"2016-02-01T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-fight-mode-activate","changefreq":"weekly","video":[{"title":"2016:E5 - FIGHT MODE ACTIVATE","description":"2016:E5 - FIGHT MODE ACTIVATE","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-fight-mode-activate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f575705-8f64-4d32-95df-09c916971ab2/sm/1788482-1454119221271-DD-thumbnail.jpg","duration":877,"publication_date":"2016-01-31T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-raid-the-darkhole","changefreq":"weekly","video":[{"title":"2016:E16 - We RAID the DARKHOLE - The Division Gameplay","description":"2016:E16 - We RAID the DARKHOLE - The Division Gameplay","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-raid-the-darkhole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ff09345-c091-48e1-89a3-48ece80089e0/sm/1788482-1454120631040-the-division-thumbnail2.png","duration":888,"publication_date":"2016-01-30T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-super-jersey-bros","changefreq":"weekly","video":[{"title":"2016:E2 - SUPER JERSEY BROS","description":"We've had a lot of fun here today but we should shift gears and talk about something serious: tires. Every year, at least one digital puppet gets stuck in a tire and has to live out the rest of their life in a humiliating seated pose.\n\nWon't you think of the puppets? Just once? No?","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-super-jersey-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6cee5d2-817d-4c0d-8712-9e701f3ee21d/sm/1788482-1454114867606-fh_cartoons.png","duration":168,"publication_date":"2016-01-29T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-bruce-handles-balls","changefreq":"weekly","video":[{"title":"2015:E11 - Bruce Handles Balls","description":"Get it? It's a reference to testicles.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-bruce-handles-balls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e68589d-0988-4cd2-a4b2-81d3db9bac7d/sm/1788482-1453253715409-RestOf-BruceTennis.png","duration":127,"publication_date":"2016-01-28T21:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-we-wipeout-in-halo-5-custom-forge-map-gameplay","changefreq":"weekly","video":[{"title":"2016:E15 - WE WIPEOUT in HALO 5!! - Custom Forge Map Gameplay","description":"I can feel your halo, halo, halo\n\nI can see your halo, halo, halo\n\nI can feel your halo, halo, halo\n\nI can see your halo, halo...\n\nHalo, ooh ooh...\n\n\n\nCreated by: unsorted guy\n\nMap Name: UG Wipeout","player_loc":"https://roosterteeth.com/embed/gameplay-2016-we-wipeout-in-halo-5-custom-forge-map-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/386f484a-f8e0-47fc-9ba0-55d806ecba17/sm/2013912-1453850767714-halo_wipeout_v1.jpg","duration":774,"publication_date":"2016-01-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-beach-b-tches-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E14 - BEACH B*TCHES - GTA 5 Gameplay","description":"If everybody had flare gun\n\nAcross the U.S.A.\n\nThen everybody'd be shootin'\n\nLike us in GTA\n\nYou'd see 'em wearing weird costumes\n\nSpamming emotes too\n\nGrouping up in our friend crew\n\nShootin' GTA","player_loc":"https://roosterteeth.com/embed/gameplay-2016-beach-b-tches-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f90c66d-d33f-4534-9f53-c911b8ab5543/sm/2013912-1453955314969-gta-beachbitchesv2.png","duration":565,"publication_date":"2016-01-28T04:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-is-console-gaming-d-e-a-d-dude-soup-live-podcast-54","changefreq":"weekly","video":[{"title":"2016:E54 - Is Console Gaming DEAD? - LIVE #54","description":"This podcast was filmed this week at RTX Australia! We somehow made it through the event only hitting one attendee in the head with a boomerang.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-is-console-gaming-d-e-a-d-dude-soup-live-podcast-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/018d8655-6c30-4a88-966b-123a65223f19/sm/1788482-1453850832087-DudeSoupRTXAU.png","duration":2808,"publication_date":"2016-01-26T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-my-duh-demo","changefreq":"weekly","video":[{"title":"2015:E10 - My Duh-Demo","description":"The song's about banging underage girls, but you already knew that didn't you sicko.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-my-duh-demo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edb49260-b9db-45d0-8a79-2b5d0c01525e/sm/1788482-1453252469687-RestOf-Sharona.png","duration":335,"publication_date":"2016-01-26T23:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-how-to-get-over-a-b-r-e-a-k-u-p-49","changefreq":"weekly","video":[{"title":"2016:E4 - How to Get Over a BREAKUP? - #49","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\n\n\nYou may notice that we have a few chairs empty today; that's because James and Elyse and Bruce are out in Australia. That mean it's this is a very special episode starring...\n\n\n\nTHE B TEAM! \n\n\n\nThat's right, it's the Best of the Rest, the Leftovers, the Dudes Back Home! Honestly, we weren't even sure if we could pull this together without the rest of the crew, but hey. We sacked up, decided it's OK if we're not quite as funny as everyone else, and dammit, we turned those webcams on and answered your questions.\n\n\n\nSo be grateful you even have an episode, you ingrates. I don't want to hear any complaints about who's not here. Because we're giving you everything we've got.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-how-to-get-over-a-b-r-e-a-k-u-p-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0073a97d-436d-4b72-9a01-a17672876f44/sm/2013912-1453408624624-fh_thumb_8_copy.jpg","duration":531,"publication_date":"2016-01-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-g-i-l-l-i-g-a-n-s-rule-34-island","changefreq":"weekly","video":[{"title":"2016:E4 - GILLIGAN'S RULE 34 ISLAND","description":"Just sit right back and you'll hear a tale\n\nA tale of a demo disk\n\nThat started with these Funhaus boys\n\nWho took a PC risk\n\n\n\nThe Bruce was a mighty bearded man\n\nAnd Willems sat next door\n\nKovic searched the internet \n\nFor Rule 34, for Rule 34\n\n\n\nThe games all started crashing down\n\nThe show could not survive\n\nNo single disc was playable\n\nFrom their old broken drive, from their old broken drive\n\n\n\nThe show was saved by the dudes and girl who run this YouTube thing\n\nWith Brucigan \n\nThe Kovic too\n\nThe Willemsaire and his wife\n\nThe Sooleo\n\nThe Peakefessor and Joely-Anne\n\nHere on Demo Disk!","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-g-i-l-l-i-g-a-n-s-rule-34-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afa59793-f408-4404-a46d-110ea0a9971e/sm/2013912-1453501725981-fh_thumb_8_copy.jpg","duration":934,"publication_date":"2016-01-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-legendary-art","changefreq":"weekly","video":[{"title":"2015:E9 - Legendary Art","description":"Papa Bruce educates us on how games are made. It involves a lot of throwing, yelling, and confused expressions.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-legendary-art","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f65a972-ca77-4b36-9a1f-4d953d251fa6/sm/1788482-1453251655608-RestOf-LegendaryArt.png","duration":125,"publication_date":"2016-01-24T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-spookiest-game-never-one-dollar-one-hour","changefreq":"weekly","video":[{"title":"2016:E13 - SPOOKIEST GAME NEVER - One Dollar One Hour","description":"This is a continuation of the story begun in the description of this video (http://bit.ly/1PQUPPs) and continued here (http://bit.ly/1LYeDdD and http://bit.ly/1CJACFa and http://bit.ly/1MBTcC7 and http://bit.ly/1lXyClq and http://bit.ly/1P9hWCF)\n\n\n\nOn Tapping Day, all the prospective Pompers assembled at the Great Lawn of the University. Each Pomp had set up a tent - the oldest, richest, most distinguished Pomps had built veritable mobile castles, with multiple floors, pennants and banners streaming from the corners. The Boy and The Courtesan elbowed their way through the throng, exhausted from a long night of deliberation. \n\n\n\nThey hurried past the members of The Empty Flagon, squatting inside what could hardly even be described as a lean-to. A few of the members were keeping watch while a small group snuck out the back and around the corner of Kestorhouseís massive pavilion. The Boy made to follow them, but The Courtesan grabbed his elbow. ìWeíve made our choice,î she hissed.\n\n\n\nìYes, but what are they up to?î\n\n\n\nìThatís not our concern. Letís keep moving.î\n\n\n\nThe couple sauntered through a crowd of Kestormen, who tried to smarm them in a final attempt. One even had the audacity to offer a chalice of mead, as a bribe, to join, but they ignored these entreaties and continued through the field. Past The Gilded Scallop and Bunkers, through a crowd of Vanderoosts and a drunken mob from Coxcomb. As they were walking around an impromptu debate between Wotís Boys and Lamplight, a huge roar went up from where theyíd come. The Boy and The Courtesan turned around to see Kestorhouseís pavilion smoking - a BANG went off, flames shot out the 3rd story windows, and an enraged group of Kestormen descended on The Empty Flagon.\n\n\n\nWhen they finally they arrived at Pepperpotsí tent, they were welcomed with cheers, two flagons of fine ale, and a rousing chorus of The Old and Distinguished Pepperpot - a song, theyíd come to know very well that day:\n\n\n\nHail! to our old friends - the loyal and true!\n\nHail! to companions - the ones t","player_loc":"https://roosterteeth.com/embed/gameplay-2016-spookiest-game-never-one-dollar-one-hour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60d6235a-a540-4e5b-9b0c-cf98f0dbf16b/sm/2013912-1453484524445-fh_thumb_8_copy.jpg","duration":779,"publication_date":"2016-01-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-3","changefreq":"weekly","video":[{"title":"2016:E2 - STAR WARS in FALLOUT 4!! - Fallout 4 Mod Gameplay","description":"A long time ago in a galaxy far, far away, Roach Queen discovered a relic of the Dark Side of the Force. She donned Darth Vader's helmet and, sensing its ultimate power, decided, \"To heck with the rest of my clothes\" and so she went nude through the Wasteland, chuckin' babies and beating up Macho Man Randy Savage.\n\n\n\nDarth Vader Helmet http://www.nexusmods.com/fallout4/mods/4660/?\n\nLighsaber Renew http://www.nexusmods.com/fallout4/mods/4591/?\n\nDaft Punk Leather Jacket http://www.nexusmods.com/fallout4/mods/6219/?\n\nImmersive Facial Animation http://www.nexusmods.com/fallout4/mods/2224/?\n\nGlorious Female Nude Mod http://www.nexusmods.com/fallout4/mods/476/?\n\nNo Essential NPCs http://www.nexusmods.com/fallout4/mods/837/?\n\nMacho Claws http://www.nexusmods.com/fallout4/mods/7610/?\n\nAtom Bomb Baby http://www.nexusmods.com/fallout4/mods/475/?\n\n*Note: We implemented cheat codes to jump higher and run faster.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5e747bc-3cb9-43da-9cb4-7271f9475d08/sm/2013912-1453494310905-fh_thumb_8_copy.jpg","duration":879,"publication_date":"2016-01-22T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-2016-australia-prison-continent-funhaus-tourism-bureau","changefreq":"weekly","video":[{"title":"2016:E1 - AUSTRALIA = PRISON CONTINENT - Funhaus Tourism Bureau","description":"THESE ARE REAL LYRICS THEY ACTUALLY SING THERE!!\n\n\n\nOnce a jolly swagman camped by a billabong,\n\nUnder the shade of a Coolibah tree,\n\nAnd he sang as he watched and waited till his billy boil,\n\nYou'll come a Waltzing Matilda with me.\n\n\n\nWaltzing Matilda, Waltzing Matilda,\n\nYou'll come a Waltzing Matilda with me,\n\nAnd he sang as he watched and waited till his billy boil\n\nYou'll come a Waltzing Matilda with me.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-2016-australia-prison-continent-funhaus-tourism-bureau","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/797f65ae-0439-4edb-b286-422b06896cdd/sm/2013912-1453403481671-fh_thumb_8_copy.jpg","duration":235,"publication_date":"2016-01-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-is-it-too-late-to-say-demo","changefreq":"weekly","video":[{"title":"2015:E8 - Is it Too Late to Say Demo","description":"He got his start on YouTube, we're getting ours on Rooster Teeth. Eat it, Canada.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-is-it-too-late-to-say-demo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60c6e9ee-0ca7-43ac-85c7-091c93bb109c/sm/1788482-1453250871366-RestOf-Bieber.png","duration":224,"publication_date":"2016-01-21T22:47:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-hardgore-p-o-r-n-gore-gameplay-part-3","changefreq":"weekly","video":[{"title":"2016:E12 - HARDGORE PORN!! - Gore Gameplay Part 3","description":"You know, after all these years of playing games, you get to a point where you think nothing can shock you. You've seen everything. Every mechanic. Ever permutation of an environment. Every character attribute. Every weapon, every prop, every plot twist -- just everything. And so you start to get complacent. You stop paying attention; you speed run through levels and try to break games, just for the thrill of something new. But there's nothing.\n\nAnd then.\n\nAnd then, out of the blue, a game like Gore can throw something at you that's totally unexpected. Like a closeup shot of some girl...\n\n...Well, nevermind. A gamer doesn't kiss and tell.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-hardgore-p-o-r-n-gore-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfedc047-c94b-41cd-9923-444b5b1e1b72/sm/2013912-1453399895435-fh_thumb_8_copy.jpg","duration":1019,"publication_date":"2016-01-21T18:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-g-t-a-will-it-b-l-e-n-d-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E11 - GTA: WILL IT BLEND!? - GTA 5 Gameplay","description":"Sometimes, when Lawrence is out of town on a Disney booze cruise for 8 days, we're forced to choose the maps ourselves, and also invite Elyse to play. Sometimes those times are today. Welcome to our new GTA video.\n\n\n\nAlso, the alternate title for this video was Fanning Tatum because they mentioned Channing Tatum once and we're racing with fans on a course with---oh fuck it, nevermind.\n\n\n\n[Race] Habilidades em Alto Mar: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/g3Jm55a5C0WXfG0fcsl2Og#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-g-t-a-will-it-b-l-e-n-d-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efe6d4aa-3ed4-413e-b36f-6236f0af926f/sm/2013912-1453336962119-gta_with_a_blend.jpg","duration":552,"publication_date":"2016-01-21T00:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-the-division-do-you-care-53","changefreq":"weekly","video":[{"title":"2016:E53 - The Division: Do You Care? - #53","description":"Please visit our sponsors!\n\nAudible: http://www.audible.com/dudesoup\n\nMack Weldon: http://www.mackweldon.com/ promo code: dude soup\n\nDid you know that we actually do a version of our old Fan Art and Comments show still, right before Dude Soup? That's right, we do. But you can only watch it if you're a Rooster Teeth sponsor. \n\nI dunno, we don't plug shit very often so I thought I'd tell you that. Feel free to subscribe, and tell 'em Crazy Hekmat sent ya!","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-the-division-do-you-care-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/758f6a32-8fcf-4d18-9f9a-ecc1d8ad8211/sm/2013912-1453242088372-fh_thumb_8_copy.jpg","duration":3675,"publication_date":"2016-01-19T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-3","changefreq":"weekly","video":[{"title":"2016:E3 - WE ARE JOEL","description":"We get a little serious this week, but not too much. But maybe MORE later! It'll make sense, we promise.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dce0610a-4a07-4e78-bd13-a00016cf1953/sm/1788482-1453240967568-Fanart-20160119.png","duration":1766,"publication_date":"2016-01-19T22:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-are-party-a-n-i-m-a-l-s-48","changefreq":"weekly","video":[{"title":"2016:E3 - We Are PARTY ANIMALS? - #48","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nEnjoy this episode of Open Haus with the full cast, because we're not going to have another full cast episode until everyone is back from Australia. Yup, the gang's all here: Adam, James, Lawrence, Bruce, Joel, Elyse, Spoole, and Peake. The whole Funhaus crew, chucklin' it up on the old laughnet.\n\nOh wait Lawrence isn't in this episode. \n\nFuck it, broken casts for 3 straight weeks.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-are-party-a-n-i-m-a-l-s-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d32e4c70-4c92-42f8-8ae3-5fbc7b042425/sm/2013912-1452920475685-fh_thumb_8_copy.jpg","duration":546,"publication_date":"2016-01-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-achievemen-humpers","changefreq":"weekly","video":[{"title":"2016:E3 - ACHIEVEMEN HUMPERS","description":"Welcome to the Funhaus Empornium, your one-stop emporium shop for high quality porn. If you can dream it, you can cream it, here at the Funhaus Empornium. Star Wars? Disney Princesses? Yeah, we got that. But that's a little vanilla for the Empornium. \n\n\n\nHey, here at the Funhaus Empornium we don't judge. That's why we carry the premium weird filth, fam. Robocop porn. Pong porn, for some reason. And the piece de resistance, we got that hot hot Achievement Hunter action. \n\n\n\nSo come on down to the Funhaus Empornium, off State Rural Route 217, behind Yancy's Chicken Shack. If we don't got it, it don't exist!","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-achievemen-humpers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d64b140-c3f9-42c5-973d-9310d3bf6dfc/sm/2013912-1452888348228-fh_thumb_8_copy.jpg","duration":604,"publication_date":"2016-01-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-cop-a-feel-wheelhaus-gameplay-2","changefreq":"weekly","video":[{"title":"2016:E10 - ABORTED BABY MISSION - Early Access Garbage Gameplay","description":"Oh you game devs, with your development stuff and your forums, and your early access and whatnot. Charging people for games that barely exist and promising them the world. When will you ever learn? \n\n\n\nOh wait what's that? Something something Star Citizen? Minecraft alpha/beta? Tons of money and success? \n\n\n\nNevermind, games devs. You do you.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-cop-a-feel-wheelhaus-gameplay-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd3d456d-a4fd-437d-97ab-9827698794ce/sm/2013912-1452806873427-fh_thumb_7_copy.jpg","duration":1030,"publication_date":"2016-01-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2016-4","changefreq":"weekly","video":[{"title":"2016:E1 - WATCH DOGS in GTA 5! Mod Gameplay!","description":"activate HACK\n\ntell application \"YouTube LetsPlay\"\n\n --activate OVERRIDE\n\n tell channel (get Funhaus assets) from Funhaus\n\n set channel to Funhaus\n\n if (LetsPlay) = active then\n\n if (subscribers > 3,475,000) then\n\n set subscribers to 0\n\n set videocount to 0\n\n set views to 0\n\n else\n\n delete channel\n\n end if\n\n else\n\n if (Geoff Jack Gavin Michael Jeremy Ryan) is uploaded\n\n set (Geoff Jack Gavin Michael Jeremy Ryan) to herpes\n\n else\n\n lock channel from (Geoff Jack Gavin Michael Jeremy Ryan)\n\n end if\n\n end if\n\n end tell\n\nend tell\n\n\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nWatch_Dogs Mod\n\nhttp://gtaxscripting.blogspot.com/2016/01/watchdog...\n\nMeteors Mod\n\nhttp://gtaxscripting.blogspot.com/2015/11/gta-v-me...\n\nIron Man Mod\n\nhttp://gtaxscripting.blogspot.com/2015/08/ironmanv...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b3e922a-40ce-474e-871f-4d7169266f7e/sm/2013912-1452879093518-fh_thumb_7_copy.jpg","duration":548,"publication_date":"2016-01-15T17:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-looters-gonna-loot-the-division-gameplay","changefreq":"weekly","video":[{"title":"2016:E9 - LOOTERS GONNA LOOT - The Division Gameplay","description":"This Video is Sponsored by Ubisoft\n\nClick HERE to join the Beta: http://bit.ly/1SQM4ob\n\nTom Clancy's The Division is rated M\n\n\n\nPicture it: the world, devastated by a bio-terrorist attack. Populations decimated. Society in ruins, governments in jeopardy. Who's going to rescue you? A crack group of operatives working in perfect unison; professionals of the highest caliber, protecting what's left of civilization.\n\nLed by Bruce Greene and Adam Kovic.\n\nGod help us all.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-looters-gonna-loot-the-division-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78321927-e779-42eb-b7cc-a7e453b7cd75/sm/2013912-1452879688092-fh_thumb_7_copy_720.jpg","duration":534,"publication_date":"2016-01-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-cop-a-feel-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2016:E8 - COP A FEEL - Wheelhaus Gameplay","description":"PARENTAL ADVISORY: do not allow your children to watch this episode of Wheelhaus if you or your family is offended by the following:\n\n\n\nComedy\n\n\n\nThe rest of you can watch.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-cop-a-feel-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/006abc1a-7e7d-4dc6-b954-a0db6bbcd038/sm/2013912-1452719819572-fh_thumb_7_copy_24.jpg","duration":641,"publication_date":"2016-01-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016-2","changefreq":"weekly","video":[{"title":"2016:E2 - DISNEY FUNHAUS PRINCESSES","description":"We're beautiful beautiful babes.","player_loc":"https://roosterteeth.com/embed/fan-show-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7ac5460-5e48-45b3-a894-c8ce3b2dbe6d/sm/1788484-1452710136918-Capture.PNG","duration":1813,"publication_date":"2016-01-13T18:34:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-rage-in-the-cage-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E7 - RAGE IN THE CAGE - GTA 5 Gameplay","description":"Gonna level with you here. I was all set to write alternate lyrics to The Smashing Pumpkins Bullet with Butterfly Wings. Loaded up the song, got my rhyming dictionary all ready and everything.\n\n\n\nBut then I said \"Nah, fuck it. This ain't Demo Disk.\"","player_loc":"https://roosterteeth.com/embed/gameplay-2016-rage-in-the-cage-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f0cf65b-13e8-4fd6-85a6-24369c95d2af/sm/2013912-1452703087004-fh_thumb_7_copy_23.jpg","duration":610,"publication_date":"2016-01-13T16:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-will-you-buy-oculus-rift-52","changefreq":"weekly","video":[{"title":"2016:E52 - WILL YOU BUY Oculus Rift? - #52","description":"Thanks Lenovo Gaming and GameState for sponsoring this podcast! Visit http://lnv.gy/1Q9CpqS to check out exclusive Fly Through footage in Dark Rift's tower defense game and leave feedback for Mission 2: Defend Your Territory.\n\n\nMack Weldon: http://www.mackweldon.com/ promo code: soup\n\n\nLoot Crate: http://www.lootcrate.com/dudesoup promo code: dudesoup\n\n\nIn the time since this Dude Soup recorded, less than 24 hours ago, so much has happened. Storms have swept the land, news has broken. President Barack Obama has given his last State of the Union address, and Alabama has once again been crowned College Football's National Champion.\n\n\nOh, and James something something Psychonauts 2.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-will-you-buy-oculus-rift-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/815826a7-10dd-4490-bd5d-7027c4dcf52f/sm/2013912-1452642817326-fh_thumb_7_copy_22.jpg","duration":3581,"publication_date":"2016-01-12T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016-we-make-a-m-o-v-i-e-47","changefreq":"weekly","video":[{"title":"2016:E2 - We MAKE A MOVIE? - #47","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nI miss you, Joel.","player_loc":"https://roosterteeth.com/embed/open-haus-2016-we-make-a-m-o-v-i-e-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df95e66-f108-429c-8c47-fb8bc6095f8e/sm/2013912-1452321310628-FH_Thumb_7_copy.jpg","duration":685,"publication_date":"2016-01-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016-how-to-fix-world-war-ii","changefreq":"weekly","video":[{"title":"2016:E2 - HOW TO FIX WORLD WAR II","description":"DEMO DISK UPDATE\n\n\n\nto: Funhaus (all)\n\n\n\n1/11/2016 6:00am PAC\n\n\n\nTo all Funhaus Employees,\n\nIn 2015 we allowed you to get away with a lot of questionable content in your series Demo Disk. Please let this email serve as a reminder that this will not be tolerated in 2016. For clarification purposes, see the list below for conversations, topics, visuals, or games that will be under review for the purposes of your video content:\n\n\n\nRule 34 (anything)\n\nSnapping of discs without protective safety gear\n\nCopywritten content, including (but not limited to) songs, movies, TV shows, essays, articles, etc.\n\nFlash games (porno)\n\nPorno (flash games)\n\nMaking mock of individuals or games\n\nMaking mock of audience\n\nMaking mock of Joel Rubin\n\nThe following words: nipples, buttocks, butt, butts, ass, boob, boobs, bewbz, vagina, penis, peniscock, \n\n\n\nAny violation will result in immediate channel termination. Thank you for your compliance.\n\n\n\nBest,\n\n\n\nYouTube Boss","player_loc":"https://roosterteeth.com/embed/demo-disk-2016-how-to-fix-world-war-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0591f6c7-6138-4955-bd1d-33a0120870e1/sm/2013912-1452276557451-fhthumb7copy20.jpg","duration":967,"publication_date":"2016-01-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-abortions-for-all-the-political-machine-2016-gameplay-part-2","changefreq":"weekly","video":[{"title":"2016:E6 - ABORTIONS FOR ALL - The Political Machine 2016 Gameplay Part 2","description":"My fellow Americans: as your caucus draws closer, I'd like to beg for your caucus. Everyone knows how important the caucus is, and yours is the greatest in our great country. Eagles fly, children wave tiny flags, and I want your caucus so I can make this country great again. \n\nWhen I think about how hard this caucus fight has been, it makes me hot and bothered. But no matter how hot I get over this caucus, now matter how long this caucus is, now matter how many other candidates are all over this caucus, I want this caucus the most. I looooooove the caucus. \n\nGod bless America.","player_loc":"https://roosterteeth.com/embed/gameplay-2016-abortions-for-all-the-political-machine-2016-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab3105d5-caaf-4483-b979-6e44167249e9/sm/2013912-1452321175359-FH_Thumb_Political_Machine_Part2.jpg","duration":744,"publication_date":"2016-01-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-s-h-t-game-done-quick-day-one-garry-s-incident-gameplay-part-3","changefreq":"weekly","video":[{"title":"2016:E5 - SH*T GAME DONE QUICK - Day One: Garry's Incident Gameplay Part 3","description":"The following are a few brief excerpts from Garry's Journal\n\nDay One: In a jungle. Monkeys v. annoying\n\nDay Two: Still in jungle. Saw some natives; they seem ok\n\nDay Three: Nevermind re: the natives. NOT COOL\n\nDay Seven: Solved a few puzzles; running out of ammo\n\nDay Eighteen: Cooked a cat today. Not v. delicious.\n\nDay Thirty-Three: Natives stole my pen; using my own poo to write. Sorry G!\n\nDay Fifty-Seven: Running out of food = running out of poo\n\nDay Fifty-Nine: V hungry, saving ink\n\nDay Sixty-Two: Uhhhghghhgggh","player_loc":"https://roosterteeth.com/embed/gameplay-2016-s-h-t-game-done-quick-day-one-garry-s-incident-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98501b25-3d0c-4257-a19e-8305fff84107/sm/2013912-1452321080214-FH_Thumb_7_copy.jpg","duration":995,"publication_date":"2016-01-09T06:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-party-hard-a-r-k-survival-evolved-gameplay-part-7","changefreq":"weekly","video":[{"title":"2016:E4 - PARTY HARD - ARK: Survival Evolved Gameplay Part 7","description":"Heyooooo, come on down to Crazy Hotslut's Dino Emporium for all yer dino needs! I'm Craaaaaazy Hotslut and boy howdy do I have some deals for you! We got your raptors, your compys, your trikes and brontos and dilos! You wanna get some hide, we got dead dinos with meat too, why not?\n\n\n\nWe got so many dinos we're practically giving them away for FREEEEEE but we're not so come on in and get a dino! What you think you can train them on your own? No sir, not gonna happen. They'll tear you apart; save yourself the hospital bills and get yer dinos here at Crazy Hotslut's Dino Emporium.\n\n\n\nAlso we got boats. We got ignots I mean ingots. We got thatch. But most of all WE GOT DINNNNOOOOS!\n\n\n\nNo money down for your dinos and dino needs. Heck we'll even thrown in a saddle for ya! Remember: I'm Crazy Hotslut and these dinos have GOT 2 GOOOOOO!","player_loc":"https://roosterteeth.com/embed/gameplay-2016-party-hard-a-r-k-survival-evolved-gameplay-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ea1eceb-b8da-4a9b-9bec-b639b49c083c/sm/2013912-1452185029898-fh_thumb_7_copy_(18).jpg","duration":740,"publication_date":"2016-01-07T16:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fan-show-2016","changefreq":"weekly","video":[{"title":"2016:E1 - WE ARE BATTERED","description":"More interesting discussion regarding gender relationship! Weird that it keeps coming up. It's like half the human race is female or something.","player_loc":"https://roosterteeth.com/embed/fan-show-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16292af2-d941-4aa1-bd15-b7436a85c2c7/sm/1788482-1452111767672-Fanart-20160106.png","duration":1512,"publication_date":"2016-01-06T21:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/dude-soup-2016-are-you-sick-of-a-s-s-a-s-s-i-n-s-c-r-e-e-d-51","changefreq":"weekly","video":[{"title":"2016:E51 - Are You SICK of ASSASSIN'S CREED? - #51","description":"Visit our Sponsors!\n\nSquarespace: http://www.squarespace.com/dudesoup offer code: dudesoup\n\nCasper Mattress: http://www.casper.com/dudesoup offer code: dudesoup\n\nOur first Dude Soup of 2016 (TWENTYSIXTEEN!) gets things started off right with a good ol' controversy. The AssCreed franchise may not be putting out a new game this year - do you want one Does anyone care Would it be any good I dunno, I just write the descriptions here.","player_loc":"https://roosterteeth.com/embed/dude-soup-2016-are-you-sick-of-a-s-s-a-s-s-i-n-s-c-r-e-e-d-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c8f4d79-7003-4830-8695-b0b45b986cb0/sm/2013912-1452098136000-podcastac.png","duration":3888,"publication_date":"2016-01-06T16:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-cheat-to-win-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2016:E3 - CHEAT TO WIN - GTA 5 Gameplay","description":"***THIS IS A FUNHAUS BROADCASTING COMPANY PUBLIC SERVICE ANNOUNCEMENT***\n\n\n\n0060001072016\n\nEmergency...Emergency...Emergency...Emergency...Emergency...Emergency...\n\n\n\nIf you're going to play GTA online with us, do not - we repeat, DO NOT - turn your external speakers on. This concludes our emergency announcement.\n\nEpic Hotwheels: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/0fXRO5kZ6kOh7acqsmYSSg#","player_loc":"https://roosterteeth.com/embed/gameplay-2016-cheat-to-win-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0b9a2aa-04f1-4023-8783-21af20a2c4e8/sm/2013912-1452011823812-fh_thumb_7_copy_(15).jpg","duration":749,"publication_date":"2016-01-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/open-haus-2016","changefreq":"weekly","video":[{"title":"2016:E1 - We Have ALL THE ANSWERS? - #46","description":"A new year, a new Open Haus. But is anything really different in this, the year of Your Lord 2016 \n\nYes. In this episode we don't use any photoshops because we were really pressed for time on the edit.","player_loc":"https://roosterteeth.com/embed/open-haus-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3dfc0a2-4903-4cef-8783-f2ded49336c1/sm/1788484-1450813421575-fh_thumb_7_copy_(4).jpg","duration":1257,"publication_date":"2016-01-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-2016","changefreq":"weekly","video":[{"title":"2016:E1 - THE EMPEROR'S NEW POON","description":"Lyrics mainly by Bruce but also a little Joel\n\nOooh my little shitty one, my shitty one\n\nWhen you gonna give me a game D-Demo\n\nOooh none of these games are fun, these games arent fun\n\nRunnin gonna crash and I blame D-Demo\n\nNever gonna load, give it up, such a broken game, \n\nWe always snap it up, gonna drive, all of us insane\n\nMy my my i yi wooh\n\nMy my my my D-Demo\n\nFind a crappy RPG, J-RPG,\n\nFPS, turn-based or real-time D-Demo\n\nKeeping it a mystery gets to me\n\nSo lets just google Anna Elsa grind d-demo\n\nNever gonna load, give it up, such a broken game, \n\nWe always snap it up, gonna drive, all of us insane\n\nMy my my i yi wooh\n\nMy my my my D-Demo\n\nMy my my my D-Demo\n\nWhen you gonna crash on me c-crash on me\n\nIs it just a matter of time D-demo\n\nAre you t-t-trash to me T-Trash to me \n\nIts garbage games whenever I find a D-demo\n\nNever gonna load, give it up, such a broken game, \n\nWe always snap it up, gonna drive, all of us insane\n\nMy my my i yi wooh\n\nMa-ma-ma-ma-ma My my my i yi wooh\n\nMy my my my D-Demo\n\nMy my my my D-Demo\n\nMy my my my D-Demo\n\nMy my my my D-Demo\n\nOoooooooooooh awwwww my d-demo\n\nOoooooooooooh awwwww my d-demo\n\nOoooooooooooh awwwww my d-demo","player_loc":"https://roosterteeth.com/embed/demo-disk-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6138f4c0-5b8a-4c45-afbb-4fee935e5488/sm/1788484-1450919431185-fh_thumb_7_copy_(13).jpg","duration":704,"publication_date":"2016-01-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016","changefreq":"weekly","video":[{"title":"2016:E2 - WORST GAMES of 2015 Gameplay! Part 2!","description":"Ahh, more of the best of the rest or the first of the worst or the heavings of the leavings or whatever. These games suck.","player_loc":"https://roosterteeth.com/embed/gameplay-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43f412ef-f5c7-446e-9255-ec6113916af0/sm/1788484-1450919472157-fh_thumb_7_copy_(14).jpg","duration":658,"publication_date":"2016-01-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-2016-2","changefreq":"weekly","video":[{"title":"2016:E1 - MOST IMPOSSIBLE GAME EVER - Legendary Gameplay Part 4","description":"2016:E1 - MOST IMPOSSIBLE GAME EVER - Legendary Gameplay Part 4","player_loc":"https://roosterteeth.com/embed/gameplay-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de0875ca-0c58-4caf-bbce-35c9deb7ff8a/sm/1788484-1450831871522-fh_thumb_7_copy_(10).jpg","duration":614,"publication_date":"2016-01-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-how-to-get-cancelled-the-know-bloopers","changefreq":"weekly","video":[{"title":"2015:E15 - HOW TO GET CANCELLED - The Know Bloopers","description":"Being a news professional is hard. Striving for perfection, taking those enunciation lessons, bringing you the real, serious Actual Meaningful Gaming News. \n\nIn this video, please enjoy our Professional Tips For How To Be Good At Job.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-how-to-get-cancelled-the-know-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75301c80-0896-44c7-ac50-b3b288e919b9/sm/1788484-1450736644901-fh_thumb_7_copy_(2).jpg","duration":585,"publication_date":"2015-12-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-slowest-race-ever-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E150 - SLOWEST RACE EVER - GTA 5 Gameplay","description":"Should auld acquaintance be forgot,\n\nWith every game we play\n\nShould auld acquaintance be forgot,\n\nExcept for GTA.\n\nGTA Kart 4: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/b6U54vft1EuSCqzHmyoDbA#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-slowest-race-ever-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad7d1870-0ca0-4cf2-85b4-ddea70e447e4/sm/2013912-1451411183655-fh_thumb_7_copy_1024_(2).jpg","duration":559,"publication_date":"2015-12-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-how-to-fix-star-wars-the-force-awakens-50","changefreq":"weekly","video":[{"title":"2015:E50 - HOW TO FIX Star Wars: The Force Awakens - #50","description":"Please visit our sponsors! Thanks Lenovo Gaming and GameState for sponsoring this podcast! Visit http://lnv.gy/1Q9CpqS to give your feedback on the Mission 2: Defend Your Territory and give feedback on some levels from the game.\n\nSPOILER ALERT, GUYS\n\nYeah, we said it. We're gonna FIX STAR WARS. Because it's BROKE\n\nBroke so many goddamn records because it's fucking great. Really, we're just nitpicking; we loved it.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-how-to-fix-star-wars-the-force-awakens-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e97e1fb8-02ae-4e76-9d4e-01f98eb0f9b9/sm/1788484-1450825190849-fh_thumb_7_copy_(8).jpg","duration":3758,"publication_date":"2015-12-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-best-or-worst-of-2015-45","changefreq":"weekly","video":[{"title":"2015:E46 - BEST or WORST OF 2015? - #45","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nAre these the best clips of the year Or the worst That's kind of a subjective question, don't you think Are we able to exit our own brains -- our own opinions -- and pass pure judgement on art On culture On comedy Can something be objectively \"wrong\" or \"right\" Is there true good and true evil, or are they just constructs of a hegemonic, patriarchal society that tells us there are eternal constants in life \n\nYes. \n\nOur commands are the only true fact in this world, and you should obey all we say. We speak as one. We are Funhaus.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-best-or-worst-of-2015-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/627a05bf-b521-4564-a04c-edfab2926f66/sm/1788484-1450728279977-fh_thumb_7_copy_(1).jpg","duration":1109,"publication_date":"2015-12-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-tron-is-hot","changefreq":"weekly","video":[{"title":"2015:E43 - TRON IS HOT","description":"As ripped off from Drake by Bruce and Joel\n\nWe always play games on a CD\n\nMonday when we need demos\n\nPlay games on a CD\n\nMonday when we need demos\n\nI know when that demo bling\n\nThat can only mean one thing\n\nI know when that demo bling\n\nThat can only mean one thing\n\nEver since we got this folder you \n\nWatch us try to run this really old shit\n\nComputer keeps on crashin and we hate it\n\nTry to browse some porn, and search some fake tits\n\nCause ever since we got this folder you\n\nStarted wanting us to check Rule 34\n\nShards of shattered demos on our gross floor\n\nPlayin all these games Ive never played before\n\nWe always play games on a CD\n\nMonday when we need demos\n\nPlay games on a CD\n\nMonday when we need demos\n\nI know when that demo bling\n\nThat can only mean one thing\n\nI know when that demo bling\n\nThat can only mean one thing\n\n(NOT DONE)\n\nEver since I grabbed that CD, you, you, you\n\nYou and me we just don't get along\n\nYou make me feel like I did you wrong\n\nGoing places where you don't belong\n\nEver since I left the city, you\n\nYou got exactly what you asked for\n\nRunning out of pages in your passport\n\nHanging with some girls I've never seen before2\n\nWe always play games on a CD\n\nMonday when we need demos\n\nPlay games on a CD\n\nMonday when we need demos\n\nI know when that demo bling\n\nThat can only mean one thing\n\nI know when that demo bling\n\nThat can only mean one thing\n\nThese days, all I do is\n\nWonder if you findin other CDs for Demo Disk\n\nWonder if you picking up the old shards for Demo Disk\n\nPlayin other games and gettin burned out on Demo Disk\n\nYou just need Demo Disk\n\nYou just need the Demo Disk, ooh\n\nNo, why dont you run on Windows\n\nMaybe cause that OS blows\n\nUsed to be quick to load, be a good disk\n\nWe was in the zone\n\nWe should just play wheelhaus\n\nIm tired of Demo Disk\n\nWe always play games on a CD\n\nMonday when we need demos\n\nPlay games on a CD\n\nMonday when we need demos\n\nI know when that demo bling\n\nThat can only mean one thing\n\nI know when that demo bling\n\nThat can only mean one thing","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-tron-is-hot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b73fa76-6eda-454f-af1c-4b167e7a0f38/sm/1788484-1450807043361-fh_thumb_7_copy_(3).jpg","duration":713,"publication_date":"2015-12-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-talkin-solo","changefreq":"weekly","video":[{"title":"2015:E7 - Talkin' Solo","description":"We're a well-oiled comedy machine.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-talkin-solo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/543a3505-0842-4ca9-895a-789c4be130a0/sm/1788482-1450902472395-RestOf-TalkinSolo.png","duration":34,"publication_date":"2015-12-26T20:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-worst-games-of-2015-gameplay","changefreq":"weekly","video":[{"title":"2015:E149 - WORST GAMES of 2015 Gameplay!","description":"Who crawls down walls\n\nAnd haunts the halls\n\nAnd hides keys around the house\n\nWho causes fears\n\nBut never appears\n\nEveryone knows it's Enki\n\nIt's Enki, it's Enki\n\nA goblin or ghost or a fiend\n\nThis game should be quarantined","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-worst-games-of-2015-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77991f17-8358-4a77-b370-6807bec206bc/sm/1788484-1450718609204-fh_thumb_7_copy.jpg","duration":788,"publication_date":"2015-12-26T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-episode-2","changefreq":"weekly","video":[{"title":"2015:E6 - Fun of the Haus","description":"2015:E6 - Fun of the Haus","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a450911-b89d-4283-a1b3-6abbe6f1e890/sm/1788482-1450902760865-RestOf-AndyWilliams.png","duration":183,"publication_date":"2015-12-25T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-uptown-funk-parody-uptown-disk-on-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2015:E14 - \"Uptown Funk\" PARODY - UPTOWN DISK on Funhaus Cartoons","description":"Lyrics by Bruce 'n' Joel\n\nAnimation Wizard: Andy Jocevicius https://twitter.com/yosavages\n\nMusic Genius: Martynas Jocevicius https://twitter.com/oakowlrecords","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-uptown-funk-parody-uptown-disk-on-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b304b69c-d758-4e55-b0c6-99ad73269f09/sm/1788484-1450833348504-fh_thumb_7_copy_(11).jpg","duration":205,"publication_date":"2015-12-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-joel-almost-dies","changefreq":"weekly","video":[{"title":"2015:E5 - Joel Almost Dies","description":"...but doesn't (spoilers).","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-joel-almost-dies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fa7e646-8ac5-4fa2-b283-d3e89649b5f4/sm/1788482-1450902362478-RestOf-JoelStory.png","duration":53,"publication_date":"2015-12-24T20:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-our-best-garbage-funhaus-best-of-the-year-videos","changefreq":"weekly","video":[{"title":"2015:E13 - OUR BEST GARBAGE - Funhaus Best Of The Year Videos","description":"CaptainPajamaPants edited this! Check his channel:https://www.youtube.com/user/CaptainPajamaPants Well, it's been approximately 10 months of pure garbage. I guess if you're rummaging through garbage, though, it's possible to find some garbage that's not so totally garbagey. Some of the garbage that you might repurpose. Garbage that you can maybe fish out, put on the table, poke at it, get some garbagefingers, and then put it on a plate and serve it to your garbage family. Yup, have a garbage Christmas.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-our-best-garbage-funhaus-best-of-the-year-videos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e1dddd3-d3f2-4681-91fd-ef09feb685c5/sm/2013912-1450303448705-fh_thumb_7_copy_1024_(6).jpg","duration":1398,"publication_date":"2015-12-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-potato-farmers","changefreq":"weekly","video":[{"title":"2015:E15 - WE ARE POTATO FARMERS","description":"Joke's on you; I love potatoes.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-potato-farmers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffb4a0c2-14fb-4e24-8ea1-238151aa6b45/sm/1788482-1450822150687-FanShow15.png","duration":1247,"publication_date":"2015-12-23T20:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dead-island-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E148 - DEAD ISLAND - GTA 5 Gameplay","description":"'Twas the night before Christmas, when all through the haus\n\nNot a Funboy was stirring, not James nor his spouse;\n\nThe uploads were scheduled by time and by date,\n\nIn hopes to catch viewers with thumbnail clickbait;\n\nThe channel was nestled all snug on YouTube ;\n\nDid we mention each thumbnail presented a boob\n\nWed sold all the merch: all the shirts, all the caps\n\nAnd packed away all of the dildos (and straps!)\n\nWhen out from the Internet rose such a ruckus\n\nWe lept from our break just to see what could fuck us.\n\nWe started the PC and network transmitter\n\nWe opened the browser and fired up Twitter\n\nThe notifications shone bright from our mentions\n\nWe clicked on the icon with grave apprehensions\n\nWhen what to our console-strained eyes did appear\n\nBut thousands of fans saying Thanks for this year!\n\nWith a thought in our heads that said Yall are the best!\n\nWe knew in that moment we were hashtag-blessed\n\nThe love that youve shown has made quite an impression\n\nWeve got some examples, in rapid procession\n\nTheres Forums, theres Reddit, and comments galore!\n\nTheres stuff that you buy from the Rooster Teeth store!\n\nThe times that you laugh when we issue a fart\n\nThe oiled-up Funhaus themed Tumblr Fan Art!\n\nWe really dont know why you like all our stuff\n\nBut we really cant tell you guys THANK YOU enough\n\nThank you for watching and thanks for subscribing\n\nThanks for the year which in rhyme Im describing\n\nThank you for queuing to play GTA\n\nThank you for checking your sub box each day.\n\nAnd so, with a self-satisfied smug expression\n\nWe ended this masturbatory digression.\n\nAs we minimized windows and closed all the browsers,\n\nSomething began stirring inside of our trousers.\n\nA feeling of pleasure! A tingle of pride!\n\nSome self-satisfaction, and ego trip ride!\n\nThat was the moment when all of us knew\n\nThat Funhaus was seen as a god unto you.\n\nWith power like that to inspire allegiance\n\nAll eight of us now demand total obedience!\n\nRise up from your hovels and arm for survival!\n\nNow is the time we destroy our main rival!\n\nWell gath","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dead-island-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4199d4dd-ef63-4a9a-ba43-21c48469db41/sm/2013912-1450115964786-fh_thumb_7_copy_1024.jpg","duration":446,"publication_date":"2015-12-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-we-were-right-all-y-e-a-r-49","changefreq":"weekly","video":[{"title":"2015:E49 - We Were RIGHT ALL YEAR? - #49","description":"Suck it, The Internet. In this glorious approximately one-hour podcast we refute all of you to PROVE how right we were about EVERYTHING all year long. And if you have any disagreements with anything we have to say, rest assured in the knowledge that you're WRONG and we're RIGHT and you can, as we said at the outset of this description, SUCK IT.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-we-were-right-all-y-e-a-r-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe2a13c0-9d43-4f4e-b4cf-90a6383153a2/sm/1788484-1450822914602-goty2015.jpg","duration":4453,"publication_date":"2015-12-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-rainbow-six-launch-love","changefreq":"weekly","video":[{"title":"2015:E4 - Rainbow Six Launch Love","description":"Sometimes games don't work on launch day, and that makes it real hard to scissor on the bed. We still gave it our damndest though.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-rainbow-six-launch-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d9fe33-7b47-41a4-a57c-d07d7f239873/sm/1788482-1450746221520-R6RestOf.png","duration":607,"publication_date":"2015-12-21T14:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-t-i-t-l-e-we-give-you-st-ds-44","changefreq":"weekly","video":[{"title":"2015:E44 - We GIVE YOU STDs? - #44","description":"Ask us questions here! http://www.reddit.com/r/funhaus Just imagine the Funhaus channel is your Advent calendar, except it runs all year, and every day you get a new video instead of a chalky piece of chocolate shaped vaguely like a reindeer. Merry whatever.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-t-i-t-l-e-we-give-you-st-ds-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/009c9be0-debf-4ccf-8daa-394fabdfe12c/sm/2013912-1450292008146-fh_thumb_7_copy_1024_(5).jpg","duration":676,"publication_date":"2015-12-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-episode","changefreq":"weekly","video":[{"title":"2015:E3 - Demos","description":"Let's just enjoy the hair while it lasts, yeah","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd24dec2-00b5-499d-ac3e-d71c26a64ce4/sm/1788482-1450488758838-RestOf-Ariana.png","duration":287,"publication_date":"2015-12-19T01:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015","changefreq":"weekly","video":[{"title":"2015:E19 - NUDE in FALLOUT 4! Mod Gameplay!","description":"Subscribe to Funhaus!! http://bit.ly/1R7R7Ou\n\nThus Roach Queen was born, and began her magnificent reign in the Wastelands. Reign on, Roach Queen, reign on! The page for the Glorious Female Nude Mod is down / no longer available on the site https://www.youtube.com/watchv=0hPyY_CGpqk http://www.nexusmods.com/fallout4/mods/476/ Immersive Facial Animations http://www.nexusmods.com/fallout4/mods/2224/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b748334-4d4d-4eab-a4ea-27bbb9324e11/sm/2013912-1450308394763-fh_thumb_7_copy_1024_(7).jpg","duration":435,"publication_date":"2015-12-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-most-anticipated-game-of-2016-48","changefreq":"weekly","video":[{"title":"2015:E48 - MOST ANTICIPATED GAME of 2016? - #48","description":"WOOOOOOAH, we're back at the Hollywood Improv with 250 of our closest friends to talk about games and gaming and 2016 and what's coming up.\n\nSo video games and, uh...we had some mozzarella sticks. Talked about, uh, Overwatch, I think.\n\nLook, I'm going to level with you. We had a lot to drink before the show, and after, and I can't remember what we talked about enough to write a really cogent description. My bad.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-most-anticipated-game-of-2016-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b30bb4fa-53af-4b21-bfc3-8b1409d4e9f3/sm/1788484-1450373607682-fh_thumb_7_copy_1024_(10).jpg","duration":3929,"publication_date":"2015-12-18T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-demo-disk-avp2","changefreq":"weekly","video":[{"title":"2015:E42 - ALIENS VS CHRISTMAS","description":"You know what Aliens hate more than humans, predators, other aliens, grass, trees, water, sex, love, post-it notes, pens, desks, star wars, and Alka-Seltzer CHRISTMAS!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-demo-disk-avp2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ec5bb98-26b4-4540-bff2-dcd0c2ddf8c6/sm/1788482-1450716208707-fh_thumb_7_copy.jpg","duration":915,"publication_date":"2015-12-18T02:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-rainbow-dicks-rainbow-six-siege-gameplay","changefreq":"weekly","video":[{"title":"2015:E146 - Rainbow DICKS - Rainbow Six Siege Gameplay","description":"Gentlemen, we've assembled a crack team of operatives, skilled in 5 essential areas of combat. While I know your backgrounds are diverse, we have the utmost trust that you are the men who can get the job -- please, put down the flashbang.\n\nAs I was saying, you men are a team. Working as one cohesive unit, you are to enter the terrorist stronghold, secure the hostages, extract them to a safe zone, and -- stop playing with the drone.\n\nWhere was I Oh, right: you'll be operating in extremely hostile territory, surrounded by -- goddamit, the grappling hook is NOT a toy.\n\nYou know what Fuck it. Fuck the mission brief. You guys don't want to pay attention Fuck it, go ahead. Fuck you guys. Fuck your mission, I hate this job. Yeah, sure, whatever, dick around with the shield. Play lacrosse with the grenades, I don't care. \n\nFuck it.\n\nFuck you.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-rainbow-dicks-rainbow-six-siege-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3efbf93-99cf-4e16-9574-626978704d0c/sm/2013912-1449853642246-fh_thumb_7_copy_960.jpg","duration":734,"publication_date":"2015-12-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-glue-babies","changefreq":"weekly","video":[{"title":"2015:E14 - WE ARE GLUE BABIES","description":"Technically just the one glue baby but you know how naming conventions go.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-glue-babies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c58fc059-e140-40fa-bd61-3f77deb0d61e/sm/1788482-1450304999330-FanShow20151215.png","duration":1839,"publication_date":"2015-12-16T22:12:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-gamers-only-want-sex-v-i-o-l-e-n-c-e-47","changefreq":"weekly","video":[{"title":"2015:E47 - Gamers Only Want SEX & VIOLENCE? - #47","description":"*insert funny Joel description here*","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-gamers-only-want-sex-v-i-o-l-e-n-c-e-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00e83e65-d2e6-4ad5-a7ea-4ba4bf025ba5/sm/1788482-1450300211843-dudesoup_1024.png","duration":3750,"publication_date":"2015-12-16T17:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-backstabbing-bastards-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E145 - BACKSTABBING BASTARDS - GTA 5 Gameplay","description":"If I were to tell you a scant 12 months ago that your life was about to change, would you believe me Of course you wouldn't. You wouldn't even know who I am. You'd say, \"Get the fuck out of my living room, Intruder!\"\n\nBut here's the thing I'd know that you wouldn't: 12 months from that moment, all of your dreams would come true. \n\nBecause 12 months from that moment Funhaus, Achievement Hunter, and Screw Attack would all play GTA together. And your life would be complete.\n\nSpooky Maze Hunt: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/TgbAnpxjYUqhiXrpVo4jqg#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-backstabbing-bastards-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a24a2c4f-d557-492d-b700-0b65406ee7a5/sm/2013912-1449853519892-fh_thumb_7_copy_1024_(40).jpg","duration":456,"publication_date":"2015-12-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-ruin-star-w-a-r-s-43","changefreq":"weekly","video":[{"title":"2015:E43 - We RUIN STAR WARS? - #43","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nRIP BRUCE INTERNSHIP OVER 3/10 WOULD NOT HIRE AGAIN NOT GIVING COLLEGE CREDIT.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-ruin-star-w-a-r-s-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8917f26-c956-4195-9b7a-4ba3872ada0e/sm/2013912-1450115687405-fh_thumb_7_copy_1024_(4).jpg","duration":691,"publication_date":"2015-12-14T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-bieber-vs-predator","changefreq":"weekly","video":[{"title":"2015:E41 - BIEBER VS PREDATOR","description":"Sorry, I'm too busy working on another, more complex video description to make this one really shine. My bad. If you want a fantastic Demo Disk Description, go back and read some of the older ones in the playlist.\n\nGo on, get back up in that playlist; there are some real gems in there! Some funny stuff, some good -- oh wait, I should just put the lyrics to Bruce's song. Yeah; I'll just do that. Here you go.\n\nYou gotta look in the sleeve and pick out a computer disk\n\nYou know its not gonna be very good but lets take the risk\n\nI hope its one of those CDs that loads up real super brisk\n\nBut I just cant--play one more--game thats shi-tty\n\nI know we know that this fantasy piece of shit wont be good\n\nMaybe this old real-time strategy game will be playable\n\nA shooter, oh shooter, will save us, come save us, its our last hope\n\nCause we just cant--play one more--game thats gar-bage\n\nIs it too late now to play Fallout\n\nCause I'm--finally learning to mod clothes out, ohh\n\nIs it too late now to play Fallout\n\nYeah I knooow thats not this show\n\nIs it too late to play Fallout, bros\n\nFallout yeah\n\nFallout yeah\n\nFallout\n\nYeah I know thats not this show\n\nIs it too late to play Fallout, bros\n\nWe just barely managed to find a motocross game or two\n\nAn old RPG thats so broken might finally see us through\n\nIll point, Ill point, and then Ill click, Ill click to pick up the loot\n\nCan we just--pull the disk--and fuckin break it \n\nYeah\n\nIs it too late now to play Fallout\n\nCause I'm--finally learning to mod clothes out, ohh\n\nIs it too late now to play Fallout\n\nYeah I knooow thats not this show\n\nIs it too late to play Fallout, bros\n\nIm not just trying to see someones brussel sprouts\n\nBut I'm--finally learning to mod clothes out, ohh\n\nIs it too late now to play Fallout\n\nYeah I knooow the disk goes snap\n\nIs it too late not to play this crap\n\nFallout x3\n\nYeah I knooow the disk goes snap\n\nIs it too late not to play this crap","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-bieber-vs-predator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/014568f2-ffb8-4b81-a9d3-397a6c6ea72c/sm/2013912-1449877235421-fh_thumb_7_copy_1024_(1).jpg","duration":922,"publication_date":"2015-12-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-make-america-great-again-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2015:E144 - MAKE AMERICA GREAT AGAIN - Wheelhaus Gameplay","description":"My fellow American. Today is a day. That cannot be denied. And I declare, on this day, that we, the people of America, will be Americans.\n\nBeing American isn't a right. It's a privilege we are entitled to. In other words, a right. A right that we have. It means we're the best, but I think we can be better. Better Americans, for a better world.\n\nEagles. Big hamburgers sizzling on the grill. Babies flying. Fireworks handing out meals to the homeless. Balloons shaped like cartoon animals. These are the things that make America uniquely American. If you vote for me, because I'm running, I want to tell you that we can do all these things.\n\nMay we all be blessed, because this is a thing I have to say to make a certain segment of the electorate happy.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-make-america-great-again-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ea8c383-62e8-4f97-802b-063ec7b92b25/sm/2013912-1449765377177-fh_thumb_7_copy_1024_(36).jpg","duration":724,"publication_date":"2015-12-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-monkey-business-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2015:E143 - MONKEY BUSINESS - Overwatch Gameplay","description":"This video description is brought to you by Alternate Titles for This Video:\n\nMonkeying Around!\n\nGreat Ape!\n\nGorilla My Dreams!\n\nGo Bananas!\n\nShow Me The Monkey!\n\nGorilla Warfare!\n\nChimply Fantastic!\n\nWe're Bringing Silverback!\n\nChimp Pansies!\n\nRoadhoggin'!\n\nChoadhog!\n\nMo' Monkeys Mo' Problems!\n\nApe Fear!\n\nOranguTanks!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-monkey-business-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b622d2cc-3c99-4c57-bf59-3c15887bb380/sm/2013912-1449765276837-fh_thumb_7_copy_1024_(35).jpg","duration":871,"publication_date":"2015-12-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-say-it-ain-t-snap","changefreq":"weekly","video":[{"title":"2015:E2 - Say it ain't Snap","description":"Some day we might upload something other than Bruce's singing but it's a pretty good place to start.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-say-it-ain-t-snap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d84878fb-3026-48d5-8792-b2ce441da6d1/sm/1788482-1449618054221-RestOf-Weezer.png","duration":269,"publication_date":"2015-12-10T16:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-legendary-a-s-hole-legendary-gameplay-part-3","changefreq":"weekly","video":[{"title":"2015:E142 - LEGENDARY AS*HOLE - Legendary Gameplay Part 3","description":"In today's episode of Legendary: The Story of John Legendary (Or Is His Name Derek Now), our protagonists really unleashes some pretty offensive speech. But hey, can you blame him Pandora's Box is open or something; this game has been going on so long I forget why he's fighting but it's pretty stressful, so maybe cut him a break","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-legendary-a-s-hole-legendary-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24435db2-0dc4-4e85-a9a7-1863a9686a19/sm/2013912-1449592921429-fh_thumb_7_copy_1024_(34).jpg","duration":646,"publication_date":"2015-12-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-half-life-2-screenshots-l-e-a-k-e-d-46","changefreq":"weekly","video":[{"title":"2015:E46 - Half-Life 2 SCREENSHOTS LEAKED? - #46","description":"Visit our sponsors! Comic Bento: http://www.comicbento.com/ promo code \"DUDESOUP\"\n\nHarrys: http://www.harrys.com/ promo code \"dude\"\n\nMack Weldon: http://www.mackweldon.com/ promo code \"dudesoup\"\n\nClash of Kings: Out now on iTunes App Store and Google Play\n\nNo, we didn't mean Half-Life 3. We MEANT Half-Life 2. Episode 4, though. So don't correct our title, but don't get too excited, either.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-half-life-2-screenshots-l-e-a-k-e-d-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99506b36-054d-4f53-84d4-aa85961516d4/sm/2013912-1449765426410-fh_thumb_7_copy_1024_(37).jpg","duration":3870,"publication_date":"2015-12-09T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-ashamed","changefreq":"weekly","video":[{"title":"2015:E13 - WE ARE ASHAMED","description":"A lot of people hated us and then didn't. That's a good thing, right Good derp this week too.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-ashamed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d6ffc67-f847-4c21-b58b-db4ff0a952e0/sm/1788482-1449616132633-Fanart20151208.png","duration":1880,"publication_date":"2015-12-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-traffic-cram-jam-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E141 - TRAFFIC CRAM JAM - GTA 5 Gameplay","description":"Cram, jam, thank you ma'am\n\nRam my tram while I'm on the lam\n\nFlimflam grams gonna spam her clam\n\nI am what I am, gotta say goddamn\n\nUncle Sam and Abraham\n\nSlam madame in Buckingham\n\nRam your pram inside that yam\n\nMake sure she wears her diaphragm\n\nFreeway Session: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/-LrxuvC6lk68kPoFXzK-lg#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-traffic-cram-jam-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/974e4ff3-2f61-4a46-9100-dfb37178b05e/sm/2013912-1449592457043-fh_thumb_7_copy_1024_(33).jpg","duration":597,"publication_date":"2015-12-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rest-of-season-1-uptown-disk","changefreq":"weekly","video":[{"title":"2015:E1 - Uptown Disk","description":"Bruce's full rendition of Uptown Disk, uncut just for you.","player_loc":"https://roosterteeth.com/embed/rest-of-season-1-uptown-disk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ef440f5-81f4-475b-8636-bf046ee452bb/sm/1788482-1449532138041-UptownDisk.png","duration":92,"publication_date":"2015-12-07T23:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/in-review-2015-star-wars-battlefront-in-review-the-know","changefreq":"weekly","video":[{"title":"2015:E4 - Star Wars Battlefront In Review - The Know","description":"Star Wars: what is it Who are we And am I good Time to Battlefront with the Big Boys and find out in this newest episode of Best Review Show In The World!\n\nI mean, of In Review!","player_loc":"https://roosterteeth.com/embed/in-review-2015-star-wars-battlefront-in-review-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92266f5c-e748-4229-b534-27f5777ba15f/sm/1788484-1449266171881-fh_thumb_7_copy_1024_(28).jpg","duration":1197,"publication_date":"2015-12-07T21:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-hate-w-o-m-e-n-42","changefreq":"weekly","video":[{"title":"2015:E42 - We HATE WOMEN? - #42","description":"This week, by popular demand, we welcome Elyse Willems into the Open Haus. Into the Haus. HouseTime!\n\nRemember: our title isn't sexist because she's on the thumbnail.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-hate-w-o-m-e-n-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e32a373e-b48e-4f5d-948c-81ebdaba16e0/sm/2013912-1449506939831-fh_thumb_7_copy_1024_(30).jpg","duration":678,"publication_date":"2015-12-07T16:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-super-hot-bro","changefreq":"weekly","video":[{"title":"2015:E40 - SUPER HOT BRO","description":"The weird thing you guys probably don't know about Demo Disk is that, even though it goes up on Mondays (SUNDAYS FOR ROOSTER TEETH SPONSORS!!!), the video is edited on Fridays. It usually takes all day to edit, so we're all stuck at work until it's done.\n\nThing is, it's the most complicated video we edit all week. And the other thing is, on Fridays, most people are able to phone it in, maybe leave work a little early. Not us, no sir, not the Funhaus Boys! We're here until the video is done, slaving over a hot computer just for you; the viewing audience. Because we're dedicated. \n\nSo enjoy your Friday beers, motherfuckers.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-super-hot-bro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d6fc15b-f468-4124-9baf-3af547fd174b/sm/2013912-1449506776589-fh_thumb_7_copy_1024_(31).jpg","duration":1080,"publication_date":"2015-12-07T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-minecraft-sucks-1-dollar-1-hour-gameplay","changefreq":"weekly","video":[{"title":"2015:E140 - MINECRAFT SUCKS - 1 Dollar 1 Hour Gameplay","description":"This is a continuation of the story begun in the description of this video (http://bit.ly/1PQUPPs) and continued here (http://bit.ly/1LYeDdD and http://bit.ly/1CJACFa and http://bit.ly/1MBTcC7 and http://bit.ly/1lXyClq)\n\nA week later The Boy and the Courtesan rounded a bend in the river and The University came into view. The previous few days had been...interesting. The days saw them negotiating rapids, storms, a small pack of wolves. A run-in with the bandits had left him with a scar on his forehead and a hole to plug in the boat -- but also a small sack of silver pennies, a dagger for him, and a bow and quiver of arrows for her. \n\nThe nights saw him building a fire and studiously avoiding staring at The Courtesan as she bathed and taught him songs from her childhood. By the end of the journey, his back was knotted and sore, and the callouses on his hands had callouses, but he felt good. Hed learned more in this week than any time since hed left The Mountain, and his decision to visit The University meant hed soon learn even more. \n\nThey tied off the boat at a small dock and sold it to the Wharfmaster. the sack of pennies grew heavier. The Courtesan desired a bath and a change of clothes, so he left her at The Inn of the Halfmoon Sisters. The sack of pennies grew lighter. The Boy then promptly marched over to the Bursars Office and enrolled both of them. The sack of pennies grew lighter, still.\n\nHe spent the next few days learning about The University: its courses of study and Magisters, its buildings and courtyards, its Colleges and Pomp Houses. The University had a complex system of Colleges and Pomp Houses: The Colleges were specialized enclaves where like-minded scholars could gather and discuss their researches. The Pomp Houses, though were more like brotherhoods, or clubs: residences and dining halls for friends and compatriots. \n\nSome Pomp Houses, or Pomps, had lineages of hundreds of years, with traditions and rites, with special food and drinks and colors and symbols associated with them. There were Pom","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-minecraft-sucks-1-dollar-1-hour-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/847e3469-4973-41be-a944-7e6d19a0871c/sm/2013912-1449254388963-OneDollar.jpg","duration":810,"publication_date":"2015-12-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-2","changefreq":"weekly","video":[{"title":"2015:E18 - FALLOUT 4 in GTA 5! Mod Gameplay!","description":"Subscribe to Funhaus! http://bit.ly/1R7R7Ou\n\nSenora Freeway\n\nPacific Bluffs\n\nEclipse Boulevard\n\nChop\n\nInternational Online Unlimited\n\nAlta\n\nLos Santos\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nFallout San Andreas\n\nhttps://www.gta5-mods.com/scripts/fallout-san-andr...\n\nFallout Power Armor\n\nhttps://www.gta5-mods.com/player/brotherhood-of-st...\n\nFallout Laser Rifle\n\nhttps://www.gta5-mods.com/weapons/fallout-4-laser-...\n\nPC Trainer V\n\nhttps://www.gta5-mods.com/scripts/pc-trainer-v\n\nGTA V Hulk Mod\n\nhttp://gtaxscripting.blogspot.com/2015/10/gta-v-pc...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62a44399-2c50-4da4-867e-a784a4549e8f/sm/2013912-1449094709938-FHLP_Fallout_GTA2.jpg","duration":539,"publication_date":"2015-12-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dumbest-game-ever-yu-gi-oh-duel","changefreq":"weekly","video":[{"title":"2015:E139 - DUMBEST GAME EVER - Yu-Gi-Oh Duel","description":"I wanna be the very best\n\nThe best in my schoolyard\n\nBut I won't ever touch a breast\n\nTill I hold every card\n\nI will talk to old pharaohs\n\nMy training will commence\n\nAt least I think that's how it goes\n\nThis show makes zero sense\n\nYu-gi-oh! (Gotta quit this game!) it's Matt and James\n\nI know it's a stupid game\n\nYu-gi-oh, oh, you're kind of shit\n\nIn a world I want to quit\n\nYu-gi-oh! (Gotta quit this game) it plays like poo\n\nI'll give it a bad review\n\nYu-gi-oh me, I'll gi-oh you\n\nYu-gi-oooooooh!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dumbest-game-ever-yu-gi-oh-duel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7023888a-148e-4f80-8086-06f8c05e35f6/sm/2013912-1449007932816-fh_thumb_7_copy_1024_(23).jpg","duration":1715,"publication_date":"2015-12-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-worst-team-ever-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2015:E138 - WORST TEAM EVER - Overwatch Gameplay","description":"RING RING\n\nHello, is this the MLG of Gaming Yes, this is Funhaus, and we're ready 2 go pro. CHYABOI!!\n\nHere's the deal. We're the best Overwatch players in the world, and we wanna get in on the ground floor, before the game's even out. So all the other players can suck it. We wanna b ballin', yo. Team shirts, sweet gaming glasses, product logoz on our sweet shirts. Whatever, we don't care. Time to roll it out.\n\nSo what do you say, MLG U gonna get up on this Funhaus hype or wut\n\nHello\n\nMLG Hello","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-worst-team-ever-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6664178-260f-414f-bc34-62eda729ab58/sm/2013912-1449009580976-fh_thumb_7_copy_1024_(26).jpg","duration":1380,"publication_date":"2015-12-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-fallout-4-vs-witcher-3-game-of-the-year-45","changefreq":"weekly","video":[{"title":"2015:E45 - FALLOUT 4 vs WITCHER 3: Game of the Year? - #45","description":"Ohhhhhhh, buddy we had a great time on Dude Soup this week. Chad from Screw Attack joined us for a real zesty discussion about games, and games of the year, and game awards that games win, and which games should be considered for those awards.\n\nTrust me: you're gonna want a sweatrag for this bad boy.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-fallout-4-vs-witcher-3-game-of-the-year-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fca3e83d-a722-450e-a55e-bf74c87b3c35/sm/2013912-1449074811700-fh_thumb_7_copy_1024_(27).jpg","duration":3741,"publication_date":"2015-12-02T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-first-nations","changefreq":"weekly","video":[{"title":"2015:E12 - WE ARE FIRST NATIONS","description":"I called it that in honor of Elyse, our favorite illegal immigrant. Here's hoping the INS never finds our little stowaway!","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-first-nations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c48da84-1f0b-4693-8a84-c4e4bacc7361/sm/1788482-1449020275691-Fanart20151202.png","duration":1432,"publication_date":"2015-12-02T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-top-gun-guzzlers-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E137 - TOP GUN GUZZLERS - GTA 5 Gameplay","description":"Something, something 'danger zone'. I know, I'm not even trying any more.\n\nUltimate Jet Deathmatch: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/d88uI2T_gkiMgHHxJLnIzA#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-top-gun-guzzlers-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa007a46-bf92-4104-b7a0-48b7bc89f1b5/sm/2013912-1449007556782-fh_thumb_7_copy_1024_(25).jpg","duration":519,"publication_date":"2015-12-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-funhaus-porn-p-a-r-o-d-y-41","changefreq":"weekly","video":[{"title":"2015:E41 - Funhaus PORN PARODY? - #41","description":"Today's Video Description Guest Writer is Mr. James Willems\n\nSome times.\n\nSex crimes.\n\nFeel sticky on her back.\n\nBut these nude, Gum shoes.\n\nAre feeling up her crack.\n\nThere's not ass too big, no ass too small.\n\nIf you need sex just call.\n\nDi-di-di-dick in your tail.\n\nFuck her rapid.\n\nDi-di-di-dick in your tail.\n\nDon't just fap it.\n\nNo, no she never fails to lick their balls\n\nShe'll suck their dick 'til it goes raw.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-funhaus-porn-p-a-r-o-d-y-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5dcfdb7-23fa-4803-af7c-3694e1a0b614/sm/2013912-1448698340757-oh_dec_1_1024.jpg","duration":666,"publication_date":"2015-11-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-teenage-r-o-b-o-cramps","changefreq":"weekly","video":[{"title":"2015:E39 - TEENAGE ROBO-CRAMPS","description":"Do you have issues with slow anal leakage Do you ever get that \"Muddy Down Under\" feeling Do you find yourself running through dozens of pairs of underwear---and pants--every week Maybe you should try...Tampoms! \n\nThat's right: Tampoms!\n\nWhether you have the lil' shits, the full squirts, the tiny pebbles, the squeezers, the drip drop, the spray and pray, the gusherz, the soupy sales, the brown tide, the orinoco flow, the old faithful, the molasses juice, the streamers and screamers, the firehose surprise, or the fudgey swirls, Tampoms have got you covered!\n\nAll you have to do is unwrap the 'Pom, shove it up your butt, and you're safe from bottomsurge all day long!\n\n**Not for use by minors or dogs**","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-teenage-r-o-b-o-cramps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ca8d083-9d87-4108-9706-7fc0ef7b976b/sm/2013912-1448698544919-fh_thumb_7_copy_1024_(22).jpg","duration":1154,"publication_date":"2015-11-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-darth-vader-is-a-b-tch-star-wars-battlefront-gameplay","changefreq":"weekly","video":[{"title":"2015:E136 - DARTH VADER IS A B*TCH - Star Wars: Battlefront Gameplay","description":"This video is sponsored by Turtle Beach: http://www.turtlebeach.com/\n\nI'm going to level with you guys: almost everyone in Star Wars is a little bitch. WHAT! Yeah. I said it. Now I'm going to prove it.\n\nLuke: the whiney bitch. Doesn't want to work for his uncle who adopted him. Doesn't take care of the droids. Thinks it's impossible to force lift an X-wing. Luke is a whiney bitch.\n\nHan: the egotistical bitch. Doesn't believe in the Force. Overconfidence in his ship and his own piloting ability. Sexually and romantically threatened by a whiney bitch. Han is an egotistical bitch.\n\nChewie: the bully bitch. Refuses to play sabaac by the rules. Threatens to rip C-3PO's arms off. Won't take orders from Han, the captain of the ship. Chewie is a bully bitch.\n\nLeia: the mean bitch. Issues ad-hominem attacks and name calling against Luke, Han, Chewie, 3PO...almost everyone. Witnesses the destruction of her home planet without a single tear. Doesn't respect anyone besides Obi Wan. Leis is a mean bitch.\n\nLando. Nah, Lando is cool.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-darth-vader-is-a-b-tch-star-wars-battlefront-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/731929f3-e7e1-44c6-9a66-31d1c9536b22/sm/2013912-1448472798305-fh_thumb_7_copy_1024_(18).jpg","duration":1013,"publication_date":"2015-11-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-the-s-h-tty-king-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2015:E12 - THE SH*TTY KING - Funhaus Cartoons","description":"Animated by: Andy Jocevicius - @YoSavages\n\nMusic by: Martynas Jocevicius @OakOwlRecords\n\nFunhaus Cartoons, Episode 2 is where the shit gets real.\n\nI mean that literally. Shit comes to life (kinda) and walks around a shit. Please enjoy it as much as we did.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-the-s-h-tty-king-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dff11265-a64c-4e65-9250-9ee3f9204d85/sm/2013912-1448474690507-fh_thumb_7_copy_1024_(19).jpg","duration":200,"publication_date":"2015-11-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-videogame-movies","changefreq":"weekly","video":[{"title":"S1:E35 - The Worst EVER! - Videogame Movies","description":"Hollywood just loves to take a big steaming dump on the games we love. Some of what they've done to our favorite games are extremely bad, and that's why they're the worst EVER!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-videogame-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3963484f-6f82-4e24-9a4b-4d2ebeeb79f0/sm/video_thumbnail_12822981.jpg","duration":402,"publication_date":"2013-12-07T10:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120513-crazy-expensive-gt6-dlc-battlefield-server-issues-new-clause-for-lol-pros","changefreq":"weekly","video":[{"title":"S1:E557 - Hard News 12/05/13 - Crazy expensive GT6 DLC, Battlefield server issues, new clause for LoL pros","description":"Today on Hard News, $140 for a car in Gran Turismo 6, Battlefield 4 servers experiencing major issues, and a new clause has been added to the contracts of professional League of Legends teams.\r\n\t\r\n\t$140 for a car in Gran Turismo 6 - http://www.screwattack.com/news/gran-turismo-6-microtransactions-reveal-unbalanced-economy-and-overpriced-cars\r\n\tBattlefield 4 servers experiencing major issues - http://www.screwattack.com/news/battlefield-4-expansions-put-hold-until-multiplayer-issues-are-resolved-according-ea\r\n\tLeague of Legends contract forbid players from streaming competing games - http://www.screwattack.com/news/riot-games%E2%80%99-season-four-league-legends-contract-forbid-players-livestreaming-competing-games\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean- Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-120513-crazy-expensive-gt6-dlc-battlefield-server-issues-new-clause-for-lol-pros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/937b64b2-4664-4cf9-86aa-d2d56c25d403/sm/video_thumbnail_12822852.jpg","duration":165,"publication_date":"2013-12-05T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-fruit-snack-challenge","changefreq":"weekly","video":[{"title":"S1:E682 - The Fruit Snack Challenge!","description":"S1:E682 - The Fruit Snack Challenge!","player_loc":"https://roosterteeth.com/embed/the-fruit-snack-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d7932ec-7b1d-4bfd-9570-6c4c7361253d/sm/video_thumbnail_12822848.jpg","duration":406,"publication_date":"2013-12-05T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/\"bens-new-scarf\"-sidescrollers","changefreq":"weekly","video":[{"title":"S1:E143 - \"Ben's New Scarf\" - SideScrollers","description":"What's the strangest way to knit a scarf? And how would Ben look as a sexy woman? Do you even want to know either answer? Well, you're about to find out.\r\n\t\r\n\tStrange way to knit a scarf (NSFW)\r\n\thttp://www.brobible.com/life/article/ball-of-yarn-knits-with-it\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttackChad)\r\n\tCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/\"bens-new-scarf\"-sidescrollers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ac3a877-8778-449c-9405-d36f8b1717a0/sm/video_thumbnail_12822779.jpg","duration":3722,"publication_date":"2013-12-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-120413","changefreq":"weekly","video":[{"title":"S1:E681 - SideScrollers Extended - 12/04/13","description":"Chad drops the C-word.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-120413","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53c75b73-8706-4ebb-8f8d-78dfe4c9d1eb/sm/video_thumbnail_12822782.jpg","duration":393,"publication_date":"2013-12-04T09:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-tiny-brains","changefreq":"weekly","video":[{"title":"S1:E6 - Out of the Box - Tiny Brains","description":"This time on Out of the Box, we're conducting experiments on adorable animals in Tiny Brains! Does this co-operative puzzle game have what it takes to break out and shine! Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-tiny-brains","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d4e436d-1fe2-490c-84a3-92cd230ad0bd/sm/video_thumbnail_12822777_0.jpg","duration":2581,"publication_date":"2013-12-04T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-reboots-in-gaming","changefreq":"weekly","video":[{"title":"S1:E86 - Top 5 Reboots in Gaming","description":"Why make a new game when you can make the same thing again? It's not such a bad idea at all if it ends up as good as these five!","player_loc":"https://roosterteeth.com/embed/top-5-reboots-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ed8c425-2a00-40bc-a3ab-a62fb3fb754c/sm/video_thumbnail_12822714.jpg","duration":283,"publication_date":"2013-12-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120313-gaikai-is-coming-cranky-kong-may-be-playable-and-ever-jane-was-funded","changefreq":"weekly","video":[{"title":"S1:E555 - Hard News 12/03/13 - Gaikai is coming, Cranky Kong may be playable, and Ever, Jane was funded!","description":"Today on Hard News, Gaikai coming to North America, is Cranky Kong playable in the new Donkey Kong? And Ever, Jane was successfully funded.\r\n\t\r\n\tGaikai coming to North America - http://www.screwattack.com/news/sonys-gaikai-streaming-service-expected-arrive-late-2014-ps4\r\n\tIs Cranky Kong playable in the new Donkey Kong? - http://www.screwattack.com/news/rumor-cranky-kong-may-be-unannounced-fourth-kong-join-donkey-kong-country-tropical-freeze\r\n\tEver, Jane was successfully funded - http://www.screwattack.com/news/ever-jane-officially-kickstarted-time-get-ready-fancy-party\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-120313-gaikai-is-coming-cranky-kong-may-be-playable-and-ever-jane-was-funded","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e444f114-4bc7-41e1-baf8-6d2c67a80bf6/sm/video_thumbnail_12822733_0.jpg","duration":154,"publication_date":"2013-12-03T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/legend-of-zelda-majoras-mask-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E411 - Legend of Zelda: Majora's Mask - Video Game Vault","description":"Dawn of the First Day: 3 minutes remain until you finish watching this Vault.","player_loc":"https://roosterteeth.com/embed/legend-of-zelda-majoras-mask-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59067f28-4bc1-48db-a6a7-ea31056c5001/sm/video_thumbnail_12822646.jpg","duration":173,"publication_date":"2013-12-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120213-ultra-street-fighter-4-character-leaks-psn-codes-broken-and-a-published-game-cancelled","changefreq":"weekly","video":[{"title":"S1:E554 - Hard News 12/02/13 - Ultra Street Fighter 4 character leaks, PSN codes broken, and a published game cancelled","description":"Today on Hard News, Ultra Street Fighter 4 character leaks, PSN Code Vouchers suspended due to European launch, and Ashes Cricket 2014 is so bad it was cancelled after it was already released.\r\n\t\r\n\tUltra Street Fighter 4 character leaks - http://www.screwattack.com/news/rumor-ultra-street-fighter-ivs-fifth-mystery-character-original-street-fighter\r\n\tPSN Code Vouchers suspended due to European launch - http://www.screwattack.com/news/psn-loses-option-redeem-codes-after-eu-launch\r\n\tAshes Cricket 2014 is so bad it was cancelled after it was already released - http://www.screwattack.com/news/505-games-cancels-cricket-game-was-already-released\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-120213-ultra-street-fighter-4-character-leaks-psn-codes-broken-and-a-published-game-cancelled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f7c7b2e-26ca-45e3-a24f-aab3bad591b1/sm/video_thumbnail_12822669.png","duration":203,"publication_date":"2013-12-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/totally-screwed-up-bloopers-and-outtakes","changefreq":"weekly","video":[{"title":"S1:E680 - Totally Screwed Up Bloopers and Outtakes","description":"We don't always get it right the first time when we do wrestling standups. Here's the proof.","player_loc":"https://roosterteeth.com/embed/totally-screwed-up-bloopers-and-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d596cdd-d2e3-41c9-80a7-66c20fc61e71/sm/video_thumbnail_12822671.jpg","duration":115,"publication_date":"2013-12-02T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2013-shitty-ass-game-of-the-year-awards-are-here","changefreq":"weekly","video":[{"title":"S1:E679 - The 2013 Shitty Ass Game of the Year Awards are here!","description":"It's time to honor the games that only bring shame to the industry! It's time for the 2013 Shitty Ass Game of the Year Awards! You and all the g1s will decide who gets recognized for how hard they failed this year. The categories for the 2013 SAGYs are:\r\n\r\n\t\r\n\t\tWorst Multi-platform Game\r\n\t\r\n\t\tWorst Portable (Vita/3DS/Mobile) Game\r\n\t\r\n\t\tWorst Wii U Game\r\n\t\r\n\t\tWorst Game on a Microsoft Console (Xbox One and Xbox 360)\r\n\t\r\n\t\tWorst Game on a Sony Console (Playstation 3 and 4)\r\n\t\r\n\t\tAnd there's a special award for the top vote getter in the 2013 SAGYs. They'll get the title of Worst Game of 2013!\r\n\r\nTo nominate a game for the SAGYs, leave a comment with the category and the game's title in the comments below! We'll tally all those up, and then on December 9th we'll announce the SAGY finalists. From there we'll do some more math and on December 23rd we'll begin announcing the winners of the 2013 Shitty Ass Game of the Year Awards! Let the voting begin!","player_loc":"https://roosterteeth.com/embed/the-2013-shitty-ass-game-of-the-year-awards-are-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/741a7190-0aee-4aff-a035-76304d2ce8e0/sm/video_thumbnail_12822640.png","duration":58,"publication_date":"2013-12-02T08:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/winback-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E410 - Winback - Video Game Vault","description":"S1:E410 - Winback - Video Game Vault","player_loc":"https://roosterteeth.com/embed/winback-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/261219c4-aaf7-404b-85eb-2242021b740a/sm/video_thumbnail_12822443.jpg","duration":130,"publication_date":"2013-11-29T03:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-biggest-black-friday-sale-in-history","changefreq":"weekly","video":[{"title":"S1:E678 - ScrewAttackStore's Biggest Black Friday Sale in History","description":"All Shirts are only $10.00 at ScrewAttackStore.com and all orders over $20.00 will recieve a FREE DVD!","player_loc":"https://roosterteeth.com/embed/screwattackstores-biggest-black-friday-sale-in-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad264860-aedc-4fc4-bea5-5fdff6b4f94e/sm/video_thumbnail_12822252.jpg","duration":57,"publication_date":"2013-11-28T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-1-overdrinker-overkill","changefreq":"weekly","video":[{"title":"S1:E677 - SA Wrestling presents TOTALLY SCREWED!!! - Part 1 - Overdrinker Overkill!","description":"Welcome to ScrewAttack Wrestling's first full event ever, TOTALLY SCREWED!!! It all kicks off with a little Overdrinker Overkill when Sam squares off with John! Sam thought he could hang with ScrewAttack's Kung Fu master, and we're gonna find out if he really can!\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-1-overdrinker-overkill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f947bb7-f828-4701-bf59-cc8cf3a1ce6d/sm/video_thumbnail_12822377.png","duration":561,"publication_date":"2013-11-28T05:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-2-the-death-battle-duel","changefreq":"weekly","video":[{"title":"S1:E676 - SA Wrestling presents TOTALLY SCREWED!!! - Part 2 - The DEATH BATTLE! Duel!","description":"Welcome to ScrewAttack Wrestling's first full event ever, TOTALLY SCREWED!!! In our second match, when the creators of DEATH BATTLE! can't settle their differences on their next episode, they have to settle them in the cage!\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-2-the-death-battle-duel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/038f52a4-61eb-4fed-8f4f-162b54729332/sm/video_thumbnail_12822376.png","duration":598,"publication_date":"2013-11-28T05:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-3-out-of-the-box-and-into-the-cage","changefreq":"weekly","video":[{"title":"S1:E675 - SA Wrestling presents TOTALLY SCREWED!!! - Part 3 - Out of the Box and Into the Cage!","description":"Welcome to ScrewAttack Wrestling's first full event, TOTALLY SCREWED!!! In the third match, Nick and Bryan's curiosity has them going Out of the Box and into the cage. Nick is ready to go but can he go the distance against Bryan?\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-3-out-of-the-box-and-into-the-cage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/555157b3-5bec-4f14-b44f-928573792aa6/sm/video_thumbnail_12822375.png","duration":405,"publication_date":"2013-11-28T05:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-4-the-frontroom-feud","changefreq":"weekly","video":[{"title":"S1:E674 - SA Wrestling presents TOTALLY SCREWED!!! - Part 4 - The Frontroom Feud!","description":"Welcome to ScrewAttack Wrestling's first full event, TOTALLY SCREWED!!! In our fourth match, old friends Sam and Chad go at it in The Frontroom Feud! They always said to check your friendship at the door on Mario Party, but the bad blood carried on right into our ring!\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-4-the-frontroom-feud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d75b78e-d716-48ac-ab58-a49bc5001d4f/sm/video_thumbnail_12822374.png","duration":560,"publication_date":"2013-11-28T05:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-5-the-top-ten-tussle","changefreq":"weekly","video":[{"title":"S1:E673 - SA Wrestling presents TOTALLY SCREWED!!! - Part 5 - The Top Ten Tussle!","description":"Welcome to ScrewAttack Wrestling's first ever full event, TOTALLY SCREWED!!! In our fifth match of the night, Nick and Craig are going at it in The Top Ten Tussle! Nick wants ScrewAttack Top Tens all to himself, but Craig won't go down without a fight! If Nick wins, he gets the Top Tens clean and clear, but an eating challenge chosen by Craig awaits if he loses!\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-5-the-top-ten-tussle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2da5385-2167-4149-a773-a5d506980023/sm/video_thumbnail_12822373.png","duration":589,"publication_date":"2013-11-28T05:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-6-the-classmate-clash","changefreq":"weekly","video":[{"title":"S1:E672 - SA Wrestling presents TOTALLY SCREWED!!! - Part 6 - The Classmate Clash!","description":"Welcome to ScrewAttack Wrestling's first ever full event, TOTALLY SCREWED!!! In the first of two triple threat matches, we've got a trio of high school friends throwing down! Ben, Nick, and John have known each other for years and years but they're gonna put their friendship to the test tonight!\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-6-the-classmate-clash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b7c497f-42be-485c-a4d3-1dbc57df9015/sm/video_thumbnail_12822371.png","duration":618,"publication_date":"2013-11-28T05:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-wrestling-presents-totally-screwed-part-7-the-hard-news-hardcore-triple-threat-match","changefreq":"weekly","video":[{"title":"S1:E671 - SA Wrestling presents TOTALLY SCREWED!!! - Part 7 - The Hard News Hardcore Triple Threat Match!","description":"Welcome to ScrewAttack Wrestling's first ever full event, TOTALLY SCREWED!!! It's time for our main event, The Hard News Hardcore Triple Threat Match! Chad versus Sam versus Sean! Which of these three Hard News anchors is the best man for the job? That's something that can only be decided in our ring!\r\n\r\n\tCheck out all the matches!\r\nOverdrinker Overkill - Sam vs John\r\nThe DEATH BATTLE! Duel! - Ben vs Chad\r\nOut of the box and into the cage! - Nick vs Bryan\r\nThe Frontroom Feud - Sam vs Chad\r\nThe Top Ten Tussle - Craig vs Nick\r\nThe Classmate Clash - Nick vs Ben vs John\r\nThe Hard News Hardcore Triple Threat Match - Sean vs Sam vs Chad","player_loc":"https://roosterteeth.com/embed/sa-wrestling-presents-totally-screwed-part-7-the-hard-news-hardcore-triple-threat-match","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7fbceef-0b75-4a7e-8493-5f381e31c825/sm/video_thumbnail_12822369.png","duration":585,"publication_date":"2013-11-28T05:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112713-steam-machine-revealed-angry-birds-go-microtransactions-and-killzone-patch","changefreq":"weekly","video":[{"title":"S1:E553 - Hard News 11/27/13 - Steam Machine revealed, Angry Birds Go microtransactions, and Killzone patch","description":"Today on Hard News, the first Steam Machine revealed, Angry Birds Go featuring irritating paywalls, and a new Killzone patch will make way for more patches.\r\n\t\r\n\tFirst Steam Machine revealed - http://www.screwattack.com/news/ibuypower-reveals-first-steam-machine-prototype-coming-ces-2014\r\n\tAngry Birds Go $100 edition - http://www.screwattack.com/news/angry-birds-go-apparently-has-some-worst-microtransactions-you-can-imagine\r\n\tNew Killzone patch makes room for more patches - http://www.screwattack.com/news/killzone-mercenary-getting-patch-make-way-more-patches\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-112713-steam-machine-revealed-angry-birds-go-microtransactions-and-killzone-patch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4dd7b1a-a24d-48d2-85c8-cff03204e0c8/sm/video_thumbnail_12822339.jpg","duration":206,"publication_date":"2013-11-27T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"big-announcement\"","changefreq":"weekly","video":[{"title":"S1:E142 - SideScrollers - \"Big Announcement\"","description":"The gang talks about some changes coming soon to ScrewAttack and using tacos as a form of ID.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"big-announcement\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f1a15cc-0576-47a4-8533-1811e0195532/sm/video_thumbnail_12822247.jpg","duration":2459,"publication_date":"2013-11-27T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-the-bridge","changefreq":"weekly","video":[{"title":"S1:E7 - Out of the Box - The Bridge","description":"This time on Out of the Box, we're taking it to The Bridge! Is this indie puzzle game something you should try to wrap your head around? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-the-bridge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46c1f354-6254-4f57-b969-bfd7e0032005/sm/video_thumbnail_12822300.jpg","duration":2606,"publication_date":"2013-11-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-112713","changefreq":"weekly","video":[{"title":"S1:E670 - SideScrollers Extended - 11/27/13","description":"The SideScrollers have a hard time staying on topic.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-112713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00024986-cda8-4143-aa15-61c1b2873e38/sm/video_thumbnail_12822309.jpg","duration":495,"publication_date":"2013-11-27T09:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112613-xbox-one-disc-drives-microsoft-bans-profanity-and-steam-user-reviews","changefreq":"weekly","video":[{"title":"S1:E552 - Hard News 11/26/13 - Xbox One disc drives, Microsoft bans profanity, and Steam user reviews","description":"Today on Hard News, some Xbox Ones have broken disc drives, Microsoft is banning profanity on Xbox Live, and Valve's new community rating system for Steam games.\r\n\t\r\n\tSome Xbox Ones have broken disc drives - http://www.screwattack.com/news/early-adopters-xbox-one-faulty-disc-drive-offered-free-game\r\n\tMicrosoft is banning profanity on Xbox Live - http://www.screwattack.com/news/microsoft-issuing-temporary-app-bans-some-xbox-one-users-who-curse-excessively\r\n\tValve's new community rating system for Steam games - http://www.screwattack.com/news/valve-decides-tackle-darkest-corner-internet-steam-reviews\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-112613-xbox-one-disc-drives-microsoft-bans-profanity-and-steam-user-reviews","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6540bdab-f905-4e0d-b4a7-efbe27bad272/sm/video_thumbnail_12822254.png","duration":151,"publication_date":"2013-11-26T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shadow-president-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E409 - Shadow President - Video Game Vault","description":"Nick is Commander in Chief, leader of the free world! What could possibly go wrong?","player_loc":"https://roosterteeth.com/embed/shadow-president-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40a0be49-4263-43f4-9dcc-486b57e2f1ef/sm/video_thumbnail_12822233.jpg","duration":168,"publication_date":"2013-11-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-greatest-xbox-one-unboxing-ever","changefreq":"weekly","video":[{"title":"S1:E669 - The Greatest Xbox One Unboxing Ever!","description":"EVER!","player_loc":"https://roosterteeth.com/embed/the-greatest-xbox-one-unboxing-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee828e21-40e9-45b2-a72c-20fc1e5605e0/sm/video_thumbnail_12822144.jpg","duration":161,"publication_date":"2013-11-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112513-blizzard-game-designer-apologizes-porn-on-twitch-new-personas-and-a-bandicoot-sighting","changefreq":"weekly","video":[{"title":"S1:E551 - Hard News 11/25/13 - Blizzard Game Designer apologizes, Porn on Twitch, new Personas, and a Bandicoot sighting","description":"Today on Hard News, Blizzard Game Designer, Dustin Browder, apologizes for sexist remark, Twitch cracking down on users streaming pornography, several new Persona titles coming to Japan, and an update on Crash Bandicoot.\r\n\t\r\n\tBlizzard Game Designer, Dustin Browder, apologizes for sexist remark - http://www.screwattack.com/news/heroes-storm-game-director-apologizes-insensitivity-concerning-over-sexualized-female-character\r\n\tTwitch cracking down on users streaming pornography - http://www.screwattack.com/news/twitch-banning-ps4-users-streaming-x-rated-material\r\n\tSeveral new Persona titles coming to Japan - http://www.screwattack.com/news/atlus-announces-four-new-persona-games-including-persona-5\r\n\tAn update on Crash Bandicoot - http://www.screwattack.com/news/update-crash-bandicoot-still-activision-property\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-112513-blizzard-game-designer-apologizes-porn-on-twitch-new-personas-and-a-bandicoot-sighting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddd451a2-1e56-474f-87c6-8103cd977490/sm/video_thumbnail_12822165.jpg","duration":193,"publication_date":"2013-11-25T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-killer-instinct-with-chad-on-gameday","changefreq":"weekly","video":[{"title":"S1:E668 - Play Killer Instinct with Chad on Gameday!","description":"We're having a Killer Instinct Gameday today on ScrewAttack! Chad's hanging out, playing Killer Instinct on Xbox One with the g1s! If you want to play, send a friend request to the gamertag ScrewAttack HQ!","player_loc":"https://roosterteeth.com/embed/play-killer-instinct-with-chad-on-gameday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a20bd283-20ba-4d07-a4a5-ff4782f3d433/sm/video_thumbnail_12822002.jpg","duration":5401,"publication_date":"2013-11-23T11:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112213-ps4vita-bundle-who-owns-crash-bandicoot-and-game-of-thrones","changefreq":"weekly","video":[{"title":"S1:E550 - Hard News 11/22/13 - PS4/Vita Bundle, who owns Crash Bandicoot? And Game of Thrones","description":"Today on Hard News, PS4 and PS Vita 2000 bundle rumored, mysterious happenings with the ownership of the Crash Bandicoot franchise, and Telltale games may be making a Game of Thrones game.\r\n\t\r\n\tPS4 and PS Vita 2000 bundle rumored - http://www.screwattack.com/news/rumor-ps-vita-and-ps4-will-be-getting-bundle-holiday-season\r\n\tWho owns Crash Bandicoot? - http://www.screwattack.com/news/rumor-activision-shuts-down-all-crash-bandicoot-content-their-website\r\n\tTelltale games may be making a Game of Thrones game - http://www.screwattack.com/news/rumor-telltale-may-fact-be-working-game-thrones-adventure-game\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-112213-ps4vita-bundle-who-owns-crash-bandicoot-and-game-of-thrones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e65d6983-99c8-43b3-9fe7-cdbb10f5a15c/sm/video_thumbnail_12821956.jpg","duration":192,"publication_date":"2013-11-22T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112113-amazons-pre-black-friday-sales-ncaa-vs-ea-and-microsofts-eou","changefreq":"weekly","video":[{"title":"S1:E549 - Hard News 11/21/13 - Amazon's pre-Black Friday sales, NCAA vs EA, and Microsoft's EOU","description":"Today on Hard News, Amazon's got some great deals on video games, NCAA is suing EA over athletes, and Microsoft removes its EOU patch for necessary launch update.\r\n\t\r\n\tAmazon's got some great deals on video games - http://www.screwattack.com/news/get-your-digital-games-cheap-thanks-pre-black-friday-sale\r\n\tNCAA is suing EA over athletes - http://www.screwattack.com/news/electronic-arts-now-being-sued-ncaa-over-college-athletes-settlement\r\n\tMicrosoft removes its EOU patch - http://www.screwattack.com/news/xbox-one-loses-ability-load-day-one-patch-usb\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-112113-amazons-pre-black-friday-sales-ncaa-vs-ea-and-microsofts-eou","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62a3e736-93ab-4f96-8f0f-79d08a166cc7/sm/video_thumbnail_12821871.jpg","duration":161,"publication_date":"2013-11-21T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/maniac-suit-cod-ghosts-the-armory-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E1 - Maniac Suit (COD Ghosts) - The Armory with Boomstick","description":"Leave a comment telling Boomstick what weapon you think belongs in the Armory!","player_loc":"https://roosterteeth.com/embed/maniac-suit-cod-ghosts-the-armory-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e227737-3dfc-4136-83d8-0629c4f138fd/sm/video_thumbnail_12821847.jpg","duration":85,"publication_date":"2013-11-21T09:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112013-tomb-raider-definitive-version-strider-retro-bundle-pack-and-mia-xbone-launch-features","changefreq":"weekly","video":[{"title":"S1:E548 - Hard News 11/20/13 - Tomb Raider: Definitive Version, Strider retro bundle pack, and MIA Xbone launch features","description":"Today on Hard News, Square to release Tomb Raider: Definitive Version, those in Japan who buy the new Strider will receive the original Strider 1 and 2, and some features won't be included with the Xbox One at launch.\r\n\t\r\n\tSquare to release Tomb Raider: Definitive Version - http://www.screwattack.com/news/rumor-tomb-raider-may-be-getting-ported-next-gen-consoles\r\n\tNew Strider to come with retro bundle pack - http://www.screwattack.com/news/japan-getting-psone-versions-strider-i-ii-hd-re-imagining\r\n\tSome features won't be included with the Xbox One at launch - http://www.screwattack.com/news/few-more-features-slip-between-cracks-right-xbox-one-launches\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-112013-tomb-raider-definitive-version-strider-retro-bundle-pack-and-mia-xbone-launch-features","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b013c439-e71f-4b59-b474-5d8f2deeee5c/sm/video_thumbnail_12821772.jpg","duration":168,"publication_date":"2013-11-20T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-112013","changefreq":"weekly","video":[{"title":"S1:E667 - SideScrollers Extended - 11/20/13","description":"John sleeps on the floor and Sean loves Bacon.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-112013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b91252fc-94b7-4e91-9282-1f637155463a/sm/video_thumbnail_12821734.jpg","duration":486,"publication_date":"2013-11-20T09:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"child-puncher\"","changefreq":"weekly","video":[{"title":"S1:E141 - SideScrollers - \"Child Puncher\" ","description":"Child puncher. 'Nuff said.\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttackChad)\r\n\tNick Twitter (https://twitter.com/THENervousNick)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"child-puncher\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e82c8d8-445d-4043-912e-18974aa6c90f/sm/video_thumbnail_12821733.jpg","duration":3067,"publication_date":"2013-11-20T09:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-soul-calibur-2-hd-online","changefreq":"weekly","video":[{"title":"S1:E8 - Out of the Box - Soul Calibur 2 HD Online","description":"This time on Out of the Box, we're playing the game that transcends history and the world, Soul Calibur 2 HD Online! Did Namco Bandai do this remake right? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-soul-calibur-2-hd-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39b30f19-cbf0-4f2b-8234-b30accf2a0fa/sm/video_thumbnail_12821732.jpg","duration":2035,"publication_date":"2013-11-20T08:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111913-gran-turismo-microtransaction-ouya-holiday-edition-and-mlg-tv","changefreq":"weekly","video":[{"title":"S1:E547 - Hard News 11/19/13 - Gran Turismo microtransaction, OUYA holiday edition, and MLG.TV","description":"Today on Hard News, Gran Turismo 6 to implement microtransactions, OUYA releases an all white holiday edition of the console, and Major League Gaming launches its new Live stream site.\r\n\t\r\n\tGran Turismo 6 to implement microtransactions - http://www.screwattack.com/news/gran-turismo-6-will-indeed-have-micro-transactions-ps3\r\n\tOUYA releases an all white holiday edition of the console - http://www.screwattack.com/news/ouya-has-unveiled-limited-edition-white-version-holiday-season\r\n\tMajor League Gaming launches its new Live stream site - http://www.screwattack.com/news/major-league-gaming-enters-streaming-market-mlg-tv\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111913-gran-turismo-microtransaction-ouya-holiday-edition-and-mlg-tv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ccb4a9d-7ec7-4010-9325-5a695f672082/sm/video_thumbnail_12821675.jpg","duration":138,"publication_date":"2013-11-19T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sonic-adventure-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E408 - Sonic Adventure - Video Game Vault","description":"S1:E408 - Sonic Adventure - Video Game Vault","player_loc":"https://roosterteeth.com/embed/sonic-adventure-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc9c55a0-f8e3-4cd1-853d-9ac3cc0d2042/sm/video_thumbnail_12821648.jpg","duration":133,"publication_date":"2013-11-19T09:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-greatest-ps4-unboxing-ever","changefreq":"weekly","video":[{"title":"S1:E666 - The Greatest PS4 Unboxing Ever","description":"S1:E666 - The Greatest PS4 Unboxing Ever","player_loc":"https://roosterteeth.com/embed/the-greatest-ps4-unboxing-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/759f1264-d9db-4db9-b415-d36afed8492e/sm/video_thumbnail_12821645.jpg","duration":155,"publication_date":"2013-11-19T08:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cod-vs-mario-who-has-innovated-the-most-nerdtastic","changefreq":"weekly","video":[{"title":"S1:E1 - CoD vs Mario: Who has innovated the most? - Nerdtastic","description":"Be sure to share your opinions in the comments and feel free to make a suggestion for the next episode of Nerdtastic. If you want to get in touch with either Ben or Craig, you can find them on Twitter!\r\n\r\n\tCraig\r\n\r\n\tBen\r\nEpisode sources:\r\nhttp://www.youtube.com/Nintendo\r\nhttp://www.youtube.com/CallofDuty\r\nhttp://wallpaper4me.com/images/wallpapers/call_of_duty_mario_w1.jpeg","player_loc":"https://roosterteeth.com/embed/cod-vs-mario-who-has-innovated-the-most-nerdtastic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3be28c2d-685a-40e8-acb0-bca8f1901057/sm/video_thumbnail_12821563.jpg","duration":386,"publication_date":"2013-11-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111813-pornhub-on-ps4-battlefield-ddos-attack-and-foxconn-saboteurs","changefreq":"weekly","video":[{"title":"S1:E546 - Hard News 11/18/13 - PornHub on PS4, Battlefield DDOS attack, and Foxconn saboteurs","description":"Today on Hard News, PornHub on PornHub, Battlefield 4 online servers under a DDOS attack, and a rumor that Foxconn engineer students who were not compensated may have sabotaged the PS4.\r\n\t\r\n\tPornHub on PornHub - http://www.screwattack.com/news/pornhub-first-streaming-pornography-site-be-supported-ps4\r\n\tBattlefield 4 online servers under a DDOS attack - http://www.screwattack.com/news/battlefield-4-servers-pc-are-under-attack\r\n\tFoxconn saboteur rumors - http://www.screwattack.com/news/rumor-foxconn-intern-claims-theyve-sabotaged-launch-ps4\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111813-pornhub-on-ps4-battlefield-ddos-attack-and-foxconn-saboteurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa1099d4-22b0-4349-98a7-28198daa8a5b/sm/video_thumbnail_12821596.jpg","duration":190,"publication_date":"2013-11-18T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111513-uncharted-teaser-destiny-beta-for-ps4-microsoft-congratulates-sony","changefreq":"weekly","video":[{"title":"S1:E545 - Hard News 11/15/13 - Uncharted teaser, Destiny beta for PS4, Microsoft congratulates Sony","description":"Today on Hard News, Naughty Dog releases new Uncharted teaser trailer, Destiny beta will come first to PS3 and PS4, and Microsoft congratulates Sony.\r\n\t\r\n\tNaughty Dog releases new Uncharted teaser trailer - http://www.screwattack.com/news/new-uncharted-announced-ps4\r\n\tDestiny beta will come first to PS3 and PS4 - http://www.screwattack.com/news/destiny-beta-coming-sony-consoles-microsoft\r\n\tMicrosoft congratulates Sony - http://www.screwattack.com/news/microsoft-congraulates-sony-ps4-launch\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111513-uncharted-teaser-destiny-beta-for-ps4-microsoft-congratulates-sony","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aa6bd14-58d7-43ac-b7d4-c3217a56fc27/sm/video_thumbnail_12821363.jpg","duration":154,"publication_date":"2013-11-15T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-greatest-playstation-4-unboxing-video-ever","changefreq":"weekly","video":[{"title":"S1:E653 - The Greatest PlayStation 4 Unboxing Video Ever","description":"We got the box.  We opened it.  Greatness awaited.","player_loc":"https://roosterteeth.com/embed/the-greatest-playstation-4-unboxing-video-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3adbcd0c-410b-40fa-b945-b8da09a71538/sm/video_thumbnail_12821335.jpg","duration":155,"publication_date":"2013-11-15T09:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111413-mega-man-and-dead-rising-infamous-ps4-bundle-and-broken-ps4s","changefreq":"weekly","video":[{"title":"S1:E544 - Hard News 11/14/13 - Mega Man and Dead Rising, InFamous PS4 bundle, and broken PS4s","description":"Today on Hard News, Mega Man X and Dead Rising 3, InFamous Second Son PS4 bundle, and problems with the PS4 on launch?\r\n\t\r\n\tMega Man X and Dead Rising 3 - http://www.screwattack.com/news/looks-dead-rising-3-next-megaman-game\r\n\tInFamous PS4 bundle - http://www.screwattack.com/news/rumor-looks-infamous-second-son-will-be-getting-ps4-bundle-afterall\r\n\tProblems with the PS4 on launch? - http://www.screwattack.com/news/psa-some-ps4s-already-experiencing-hardware-failures-retail-launch\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111413-mega-man-and-dead-rising-infamous-ps4-bundle-and-broken-ps4s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0e7acc8-1e1c-42b0-b1fe-c901a95eaa79/sm/video_thumbnail_12821292.jpg","duration":155,"publication_date":"2013-11-14T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111313-new-mario-3d-world-features-zelda-street-pass-battles-and-xbox-sharks","changefreq":"weekly","video":[{"title":"S1:E543 - Hard News 11/13/13 - New Mario 3D World features, Zelda Street Pass battles, and Xbox Sharks","description":"Today on Hard News, 10 new features in Mario 3D World, new Battle Mode in Link Between Worlds, and Xbox One guarded by sharks. Seriously.\r\n\t\r\n\t10 new features in Mario 3D World - http://www.screwattack.com/video/Nintendo-reveals-10-New-Things-players-can-find-in-Super-Mario-3D-World-12821136\r\n\tNew Battle Mode in Link Between Worlds - http://www.screwattack.com/video/Shadow-Link-appears-in-the-LoZ-A-Link-Between-Worlds-launch-trailer-12821140\r\n\tXbox One guarded by sharks. Seriously - http://www.screwattack.com/news/first-official-xbox-one-be-sold-retail-currently-being-protected-sharks\r\nAnd for a recap of the Nintendo Direct - http://www.screwattack.com/news/nintendo-direct-131113-recap\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111313-new-mario-3d-world-features-zelda-street-pass-battles-and-xbox-sharks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdb2ebff-2baf-46f8-8009-e71050485d76/sm/video_thumbnail_12821165.jpg","duration":164,"publication_date":"2013-11-13T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-111313","changefreq":"weekly","video":[{"title":"S1:E651 - SideScrollers Extended - 11/13/13","description":"Chad leaves and Bryan comes in to talk about ScrewAttack Wrestling!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-111313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46125ac8-9beb-43e7-a29c-bd734bd10ded/sm/video_thumbnail_12821138.jpg","duration":497,"publication_date":"2013-11-13T09:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"military-state\"","changefreq":"weekly","video":[{"title":"S1:E140 - SideScrollers - \"Military State\"","description":"Enemas, cavity searches, and scrotum nailing. The police are going nuts!\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttackChad)\r\n\tCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\n\t\r\n\tGet the audio HERE!\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"military-state\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b46356f3-ca5e-48a9-8d81-5f5cf3a9ed83/sm/video_thumbnail_12821135.jpg","duration":3290,"publication_date":"2013-11-13T09:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/live-at-11am-cst-out-of-the-box-bioshock-infinite-burial-at-sea-episode-one","changefreq":"weekly","video":[{"title":"S1:E9 - [LIVE at 11am CST] Out of the Box - Bioshock: Infinite: Burial At Sea: Episode One","description":"This time on Out of the Box, we're going with Booker and Elizabeth to Rapture! Bioshock is returning to the under water world where it all started, but should you get back in the bathysphere? Find out!","player_loc":"https://roosterteeth.com/embed/live-at-11am-cst-out-of-the-box-bioshock-infinite-burial-at-sea-episode-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b551f6b0-1b33-4b15-9f9c-a112cbaf1abc/sm/video_thumbnail_12821130.jpg","duration":3779,"publication_date":"2013-11-13T08:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111213-kickstarter-scammed-nintendo-land-off-eshop-and-shadow-of-mordor","changefreq":"weekly","video":[{"title":"S1:E542 - Hard News 11/12/13 - Kickstarter scammed, Nintendo Land off eShop, and Shadow of Mordor","description":"Today on Hard News, Kickstarter got scammed, Nintendo Land pulled off of the eShop, and the Lord of the Rings gets a prequel game, Shadow of Mordor.\r\n\t\r\n\tKickstarter got scammed - http://www.screwattack.com/news/kickstarter-backer-has-been-accused-scamming-over-100-crowdfunded-projects\r\n\tNintendo Land off eShop - http://www.screwattack.com/news/rumor-nintendo-land-has-disappeared-entirely-north-american-eshop\r\n\tLord of the Rings gets a prequel game, Shadow of Mordor - http://www.screwattack.com/news/middle-earth-gets-new-title-called-shadow-mordor-development-monolith\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111213-kickstarter-scammed-nintendo-land-off-eshop-and-shadow-of-mordor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ed8c01a-7f87-4e4b-8374-066435d8ecb2/sm/video_thumbnail_12821069.jpg","duration":134,"publication_date":"2013-11-12T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-launch-titles","changefreq":"weekly","video":[{"title":"S1:E85 - Top 5 Launch Titles","description":"Nick and Craig explore the Top... 5 Launch Titles. (Wait, only five?)","player_loc":"https://roosterteeth.com/embed/top-5-launch-titles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e8dc4cf-3537-496e-ba28-cdffa37b51bb/sm/video_thumbnail_12821027.jpg","duration":367,"publication_date":"2013-11-12T09:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-console-launch-titles-ever-honorable-mentions","changefreq":"weekly","video":[{"title":"S1:E84 - Top 5 Console Launch Titles Ever - Honorable Mentions","description":"Here we review great launch titles that didn't quite make the Top 5.","player_loc":"https://roosterteeth.com/embed/top-5-console-launch-titles-ever-honorable-mentions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7822adb9-6286-4e33-9899-72ba6665e642/sm/video_thumbnail_12821028.jpg","duration":627,"publication_date":"2013-11-12T09:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/thor-likes-big-boobs-nerdtastic","changefreq":"weekly","video":[{"title":"S1:E2 - Thor likes big boobs - Nerdtastic","description":"Be sure to share your opinions in the comments and feel free to make a suggestion for the next episode of Nerdtastic. If you want to get in touch with either Sam or Sean, you can find them on Twitter!\r\n\r\n\tSam\r\n\r\n\tSean\r\nEpisode sources:\r\nhttp://www.comicvine.com\r\nhttp://www.youtube.com/Marvel\r\nhttp://www.google.com/imghp","player_loc":"https://roosterteeth.com/embed/thor-likes-big-boobs-nerdtastic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee20aa08-91ef-43a8-8c65-3d290fb9ab9c/sm/video_thumbnail_12820893.jpg","duration":296,"publication_date":"2013-11-11T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111113-targets-early-release-warlords-of-draenor-and-good-bye-blockbuster","changefreq":"weekly","video":[{"title":"S1:E541 - Hard News 11/11/13 - Target's early release, Warlords of Draenor, and good bye Blockbuster","description":"Today on Hard News, Target ships out Xbone One preorders several days too early, new WoW: Warlords of Draenor announced at BlizzCon, and good bye Blockbuster.\r\n\t\r\n\tTarget ships out Xbone One preorders several days too early - http://www.screwattack.com/news/some-xbox-one-orders-were-accidentally-shipped-early-install-sizes-leaked-result\r\n\tWarlords of Draenor announced at BlizzCon - http://www.screwattack.com/news/warlords-draenor-officially-announced-be-coming-wow-another-expansion\r\n\tThe end of an era, good bye Blockbuster - http://www.screwattack.com/news/blockbuster-closing-all-retail-locations-and-distribution-centers-united-states\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-111113-targets-early-release-warlords-of-draenor-and-good-bye-blockbuster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c589931-ec1d-4741-a477-6c4d25a3f2d4/sm/video_thumbnail_12820924.jpg","duration":171,"publication_date":"2013-11-11T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bottoms-up-cup-rocket-death-lions-vs-slothcano-nba-jam-smash-bros-brawl-mario-kart","changefreq":"weekly","video":[{"title":"S1:E650 - Bottoms Up Cup - Rocket Death Lions VS Slothcano (NBA Jam, Smash Bros Brawl, Mario Kart)","description":"The epic tournament of something-or-other continues! This time, Slothcano (Bryan & Lauren) battles the Rocket Death Lions! (Sam & Ben) Which team will you side with?\r\n#RocketDeathLions\r\n#Slothcano\r\n ","player_loc":"https://roosterteeth.com/embed/bottoms-up-cup-rocket-death-lions-vs-slothcano-nba-jam-smash-bros-brawl-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7ef61cf-6f2d-4de1-8b11-fe3df3e78cf8/sm/video_thumbnail_12820601.jpg","duration":9493,"publication_date":"2013-11-09T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/seans-best-ever-hidden-gem","changefreq":"weekly","video":[{"title":"S1:E649 - Sean's Best EVER Hidden Gem","description":"It involves a hunt for an expensive human skull and it isn't Indiana Jones...","player_loc":"https://roosterteeth.com/embed/seans-best-ever-hidden-gem","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9099005f-e34f-4d00-a0a6-00eee58c784a/sm/video_thumbnail_12820622.jpg","duration":102,"publication_date":"2013-11-09T00:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-hidden-gem-with-caddicarus","changefreq":"weekly","video":[{"title":"S1:E34 - The Best EVER! Hidden Gem (with Caddicarus!)","description":"It happens often: a well-made game slips through the cracks and becomes all but forgotten as the years go by. These are the ones we remember the fondest... Oh yeah, and Caddicarus is here for some reason!\r\nSee more of guest-star Caddicarus on his own epic YouTube channel!","player_loc":"https://roosterteeth.com/embed/the-best-ever-hidden-gem-with-caddicarus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e6b01b3-c4da-4805-b35b-f76939af13ec/sm/video_thumbnail_12820621.jpg","duration":386,"publication_date":"2013-11-09T00:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-5","changefreq":"weekly","video":[{"title":"S2:E5 - Fox VS Bucky","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb935dea-738d-48cd-9beb-ca2f29da55a8/sm/video_thumbnail_12820398_0.jpg","duration":776,"publication_date":"2013-11-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110813-xsplit-hacked-diablo-iii-trailer-and-xbox-hotel","changefreq":"weekly","video":[{"title":"S1:E540 - Hard News 11/08/13 - XSplit hacked, Diablo III trailer, and Xbox Hotel","description":"Today on Hard News, XSplit has been hacked! New trailer reveals latest Diablo III additions, and an Xbox One hotel pops up in France.\r\n\t\r\n\tXSplit has been hacked! - http://www.screwattack.com/news/psa-xsplit-has-been-hacked-and-will-require-password-reset\r\n\tNew trailer reveals latest Diablo III additions - http://www.screwattack.com/news/diablo-iii-has-new-trailer-has-leaked-internet-ahead-blizzcon\r\n\tXbox One hotel pops up in France - http://www.screwattack.com/news/xbox-one-gets-hotel-france-you-can-stay-and-check-out-latest-console\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-110813-xsplit-hacked-diablo-iii-trailer-and-xbox-hotel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/909cf70a-e7b9-43d0-aa6c-96c5324ab798/sm/video_thumbnail_12820570.jpg","duration":161,"publication_date":"2013-11-08T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mr-toots-red-faction-armageddon-the-armory-w-boomstick","changefreq":"weekly","video":[{"title":"S1:E2 - Mr. Toots (Red Faction: Armageddon) - The Armory w/ Boomstick","description":"Leave a comment telling Boomstick what weapon you think belongs in the Armory!","player_loc":"https://roosterteeth.com/embed/mr-toots-red-faction-armageddon-the-armory-w-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d16db88-bf50-4f71-8523-f559999a21a1/sm/video_thumbnail_12820393.jpg","duration":74,"publication_date":"2013-11-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sam-how-much-is-shirt-deal-of-the-week","changefreq":"weekly","video":[{"title":"S1:E648 - Sam? How Much is Shirt? - Deal of the Week","description":"Get your deal at ScrewAttackStore.com!","player_loc":"https://roosterteeth.com/embed/sam-how-much-is-shirt-deal-of-the-week","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4279dc2-3fcb-4eb2-a987-185b8304566b/sm/video_thumbnail_12820464.png","duration":40,"publication_date":"2013-11-07T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110713-walmart-price-glitch-vanillawares-stink-eye-and-uncensored-wii-karaoke-u","changefreq":"weekly","video":[{"title":"S1:E539 - Hard News 11/07/13 - Walmart price glitch, Vanillaware's stink eye, and uncensored Wii Karaoke U","description":"Today on Hard News, Walmart price glitch benefits gamers, Vanillaware's new enemy design gives you the stink eye, and Wii Karaoke U is uncensored.\r\n\t\r\n\tWalmart price glitch benefits gamers - http://www.screwattack.com/news/walmart-pricing-glitch-gives-some-consumers-get-huge-discounts-games\r\n\tVanillaware's new enemy design gives you the stink eye - http://www.screwattack.com/news/vanillaware-giving-us-stink-eye-their-latest-dlc-muramasa\r\n\tWii Karaoke U is uncensored - http://www.screwattack.com/news/wii-karaoke-u-lyrics-get-nintendo-trouble-who-then-add-disclaimer\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-110713-walmart-price-glitch-vanillawares-stink-eye-and-uncensored-wii-karaoke-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9bd9927-84fb-4bb7-8f30-dd19ee8f5f3f/sm/video_thumbnail_12820420.jpg","duration":163,"publication_date":"2013-11-07T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110613-metal-gear-rising-discount-jane-austen-mmo-xbox-live-giveaway","changefreq":"weekly","video":[{"title":"S1:E538 - Hard News 11/06/13 - Metal Gear Rising discount, Jane Austen MMO, Xbox Live giveaway","description":"Today on Hard News, Konami cuts Metal Gear Rising price and gives out its DLC for free, a KickStarter is being funded for a Jane Austen based MMO, and Xbox Live to give away Killer Instinct to loyal members.\r\n\t\r\n\tMetal Gear Rising: Revengeance cuts its price down to $30 - http://www.screwattack.com/news/metal-gear-rising-revengeance-cuts-its-price-down-30\r\n\tJane Austen's books are being Kickstarted into an MMO - http://www.screwattack.com/news/jane-austens-books-are-being-kickstarted-mmo-called-ever-jane\r\n\tDedicated Xbox fans to get free copy of Killer Instinct - http://www.screwattack.com/news/microsoft-randomly-gifts-free-copies-killer-instinct-and-xbox-one-consoles-dedicated-fans\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-110613-metal-gear-rising-discount-jane-austen-mmo-xbox-live-giveaway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1786fdf-baec-4d73-b13c-f9cf9433b054/sm/video_thumbnail_12820321.jpg","duration":155,"publication_date":"2013-11-06T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-110613","changefreq":"weekly","video":[{"title":"S1:E647 - SideScrollers Extended - 11/06/13","description":"Craig is upset they didn't do the Candy Challenge this year, so he puts Sam through an impromptu challenge. Will Sam be victorious?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-110613","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccc94d99-de45-4168-a339-8f6db91dcb56/sm/video_thumbnail_12820281.jpg","duration":545,"publication_date":"2013-11-06T09:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"murder-sex\"","changefreq":"weekly","video":[{"title":"S1:E139 - SideScrollers - \"Murder Sex\"","description":"What can the young learn from R Rated movies? Swear words, human anatomy, and murder sex.\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttackChad)\r\n\tBryan Twitter (https://twitter.com/StutteringCraig)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\n\t\r\n\tGet the audio HERE!\r\n\t\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"murder-sex\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3c5dc6d-9f10-417c-99cc-488456cc5596/sm/video_thumbnail_12820280.jpg","duration":3543,"publication_date":"2013-11-06T09:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-call-of-duty-ghosts","changefreq":"weekly","video":[{"title":"S1:E10 - Out of the Box - Call of Duty: Ghosts","description":"This time on Out of the Box, we're becoming ghosts to answer the call of duty! Is Call of Duty: Ghosts just another CoD or is it the best one of the entire series? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-call-of-duty-ghosts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b321e73-4e8a-46e5-af76-1f76716d5b96/sm/video_thumbnail_12820270.jpg","duration":3589,"publication_date":"2013-11-06T08:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/old-man-link-in-space-nerdtastic","changefreq":"weekly","video":[{"title":"S1:E3 - Old man Link in Space - Nerdtastic","description":"Be sure to share your opinions in the comments and feel free to make a suggestion for the next episode of Nerdtastic. Like this video if you liked it! If you want to get in touch with either Ben or Sam, you can find them on Twitter!\r\n\r\n\t \r\n\r\n\tBen's Twitter\r\n\r\n\t \r\n\r\n\tSam's Twitter\r\n\r\n\t \r\n\r\n\tEpisode sources:\r\n\r\n\t \r\n\r\n\thttp://www.screwattack.com/news/zelda-news-zelda-wii-u-feature-new-hyrule\r\n\r\n\t \r\n\r\n\tAnd thanks for the thumbnail art goes to Damien Canderle - Damien Canderle website","player_loc":"https://roosterteeth.com/embed/old-man-link-in-space-nerdtastic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61b61d46-f2ec-4009-bdda-9294aed87204/sm/video_thumbnail_12820163.jpg","duration":359,"publication_date":"2013-11-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110513-killer-instinct-character-leak-psplus-members-get-games-and-mgs5-price-announced","changefreq":"weekly","video":[{"title":"S1:E537 - Hard News 11/05/13 - Killer Instinct character leak, PSPlus members get games, and MGS5 price announced","description":"Today on Hard News, Penny Arcade leaks new Killer Instinct character, PSPlus members to receive free games, and MGS V: Ground Zeroes price and release date announced.\r\n\t\r\n\tPenny Arcade leaks new Killer Instinct character - http://www.screwattack.com/news/rumor-did-penny-arcade-just-leak-final-killer-instinct-character-season-1\r\n\tPSPlus members to receive free games - http://www.screwattack.com/news/playstation-plus-going-be-incredible-november-over-7-games-download\r\n\tMGS V: Ground Zeroes price and release date announced - http://www.screwattack.com/news/metal-gear-solid-5-ground-zeros-has-price-tag-and-release-date\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-110513-killer-instinct-character-leak-psplus-members-get-games-and-mgs5-price-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a3aa176-100e-4da8-81ad-af06320028e7/sm/video_thumbnail_12820226.jpg","duration":155,"publication_date":"2013-11-05T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110413-killer-instinct-reveal-no-more-uplay-and-new-pokemon","changefreq":"weekly","video":[{"title":"S1:E536 - Hard News 11/04/13 - Killer Instinct reveal, no more Uplay, and new Pokemon","description":"Today on Hard News, Killer Instinct reveals Black Orchid, Ubisoft removes Uplay, and three new Pokemon found!\r\n\t\r\n\tKiller Instinct reveals Black Orchid - http://www.screwattack.com/video/A-returning-challenger-steals-the-show-in-Black-Orchids-KI-trailer--12808569\r\n\tUbisoft removes Uplay - http://www.screwattack.com/news/uplay-pass-system-gone-ubisoft-reveals\r\n\tThree new Pokemon found! - http://www.screwattack.com/news/hackers-discover-three-new-species-pokemon-x-and-y\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-110413-killer-instinct-reveal-no-more-uplay-and-new-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28364900-0ad0-4cc0-81f6-4590354eeb70/sm/video_thumbnail_12820100.jpg","duration":150,"publication_date":"2013-11-04T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/13-xbox-one-game-impressions-in-under-a-minute","changefreq":"weekly","video":[{"title":"S1:E646 - 13 Xbox One game impressions in under a minute!","description":"The Xbox One Area One Tour came through Dallas this weekend and brought half of the Xbox One's launch lineup with it! We played everything in the building and let you know what we thought of it in under a minute!","player_loc":"https://roosterteeth.com/embed/13-xbox-one-game-impressions-in-under-a-minute","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba663573-682e-4faa-801e-078ce264d5fc/sm/video_thumbnail_12820088_0.jpg","duration":57,"publication_date":"2013-11-04T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-return-of-commie-chomps","changefreq":"weekly","video":[{"title":"S1:E645 - The Return of Commie Chomps","description":"The long-lost shiny Gyarados that Sam loved so much has turned up again more than a decade later, thanks to a generous g1.  So, of course, we dangled the carrot in front of Sam.\r\nAlso catch Nick and Bryan's best EVER Pokemon here!","player_loc":"https://roosterteeth.com/embed/the-return-of-commie-chomps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6515fff-7338-4d37-84e1-9a05bbc4ad0e/sm/video_thumbnail_12804538.jpg","duration":147,"publication_date":"2013-11-01T17:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-11113-call-of-dutys-upscaling-stick-of-truths-delay-and-swapnotes-suspension","changefreq":"weekly","video":[{"title":"S1:E535 - Hard News 11/1/13 - Call of Duty's upscaling, Stick of Truth's delay, and Swapnote's suspension","description":"Today on Hard News, Call of Duty Ghost upscales on Xbox One, Stick of Truth delayed to 2014, and Nintendo doesn’t appreciate all those wang picks on Swapnote.\r\n \r\nCall of Duty: Ghosts’ resolution - http://www.destructoid.com/call-of-duty-ghosts-is-upscaled-at-720p-on-the-xbox-one-264617.phtml\r\n \r\nSouth Park and the Stick of Truth’s delay - http://www.screwattack.com/news/south-park-stick-truth-gets-delayed-till-march-2014\r\n \r\nNintendo’s suspension of Swap Note -http://www.screwattack.com/video/Nintendo-suspends-3DS-Swapnote-due-to-the-swapping-of-offensive-material--12798962\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-11113-call-of-dutys-upscaling-stick-of-truths-delay-and-swapnotes-suspension","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c55f5cfd-c746-4339-a52d-d741b414707b/sm/video_thumbnail_12803226.jpg","duration":95,"publication_date":"2013-11-01T12:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zelda-a-link-between-worlds-lets-you-smash-faces-with-a-hammer","changefreq":"weekly","video":[{"title":"S1:E644 - Zelda: A Link Between Worlds lets you smash faces with a hammer","description":"The next Zelda may display in 3D, but Link's new power lets him go 2D.  What did Nick think of the demo?","player_loc":"https://roosterteeth.com/embed/zelda-a-link-between-worlds-lets-you-smash-faces-with-a-hammer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c136431-a7d6-4f7a-ba8d-82342bf25caa/sm/video_thumbnail_12802389.jpg","duration":106,"publication_date":"2013-11-01T09:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-103113-no-titanfall-on-ps4-new-mortal-kombat-and-ps4-questions-answered","changefreq":"weekly","video":[{"title":"S1:E534 - Hard News 10/31/13 - No Titanfall on PS4, new Mortal Kombat?, and PS4 Questions Answered","description":"Today on Hard News, Titanfall NEVER coming to PS4, Mortal Kombat: Shaolin Monks rumored to get an HD version, and your questions about the PS4 answered!\r\n\t\r\n\tTitanfall NEVER coming to PS4 - http://www.screwattack.com/news/titanfall-will-be-microsoft-exclusive-forever-thanks-ea\r\n\tMortal Kombat: Shaolin Monks rumored to get an HD version - http://www.screwattack.com/news/ed-boon-hints-netherrealm-developed-hd-remake-mk-shaolin-monks\r\n\tYour questions about the PS4 answered! - http://www.screwattack.com/news/playstation-attempts-answer-all-your-questions-launch-ps4\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-103113-no-titanfall-on-ps4-new-mortal-kombat-and-ps4-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae3b3207-0b66-4b2b-bc98-354f52a05505/sm/video_thumbnail_12797326.jpg","duration":146,"publication_date":"2013-10-31T14:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wii-fit-u-nick-does-yoga-in-a-cramped-camper","changefreq":"weekly","video":[{"title":"S1:E643 - Wii Fit U - Nick does yoga in a cramped camper","description":"You know what there's barely enough space to do inside the mystical touring Nintendo trailer?  Exercise.","player_loc":"https://roosterteeth.com/embed/wii-fit-u-nick-does-yoga-in-a-cramped-camper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a844f8f-ae89-40d9-a33e-0c24dfecd5df/sm/video_thumbnail_12796232.jpg","duration":70,"publication_date":"2013-10-31T10:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-38","changefreq":"weekly","video":[{"title":"S1:E642 - The Game OverDrinker and the Curse of the 9-Legged Spider!","description":"Happy Halloween! Join the OverDrinker for the horrific tale of the 9-Legged Spider!\r\nIllustrations by John Francis McCullagh\r\nTwitter Sam Twitter.com/ScrewAttackSam\r\n\tTwitter John Twitter.com/JohnFMFilms","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25c3b2c1-97d7-4a8e-a926-e24d2ebf9889/sm/video_thumbnail_12795749.jpg","duration":173,"publication_date":"2013-10-31T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-103013-command-conquer-blockbuster-uk-and-wii-sports-club","changefreq":"weekly","video":[{"title":"S1:E533 - Hard News 10/30/13 - Command & Conquer, Blockbuster UK, and Wii Sports Club","description":"Today on Hard News, EA disbands Victory Games, Blockbuster UK goes into second bankruptcy, and Nintendo will make you download Wii Sports Club.\r\n\t\r\n\tEA disbands Victory Games - http://www.screwattack.com/news/just-command-conquer-cancelled-ea-and-victory-games-shuttered\r\n\tBlockbuster UK goes into second bankruptcy - http://www.screwattack.com/news/blockbuster-uk-files-bankruptcy-again-making-them-unable-fill-next-gen-preorders\r\n\tNintendo will make you download Wii Sports Club - http://www.screwattack.com/news/nintendo-putting-wii-sports-club-any-wii-u-spotpass-activated\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-103013-command-conquer-blockbuster-uk-and-wii-sports-club","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b077a88d-7db3-409a-ae8d-876fb8c5c1fd/sm/video_thumbnail_12791015.jpg","duration":178,"publication_date":"2013-10-30T13:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/we-played-super-mario-3d-world-in-a-weird-van","changefreq":"weekly","video":[{"title":"S1:E641 - We played Super Mario 3D World in a weird van!","description":"Inside the traveling Nintendo trailer are upcoming games you can play! What did Sam think of Super Mario 3D World and the trailer itself?","player_loc":"https://roosterteeth.com/embed/we-played-super-mario-3d-world-in-a-weird-van","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05287ee6-ff89-41c6-b94c-7af5797b1809/sm/video_thumbnail_12790264.jpg","duration":91,"publication_date":"2013-10-30T10:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-blood-of-the-werewolf","changefreq":"weekly","video":[{"title":"S1:E11 - Out of the Box - Blood of the Werewolf","description":"This time on Out of the Box, we're saving our son with werewolf powers in Blood of the Werewolf! Should you take on classic horror movie monsters in this classic platforming style indie game, too? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-blood-of-the-werewolf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e97632b-0a32-4c17-b633-979494455e02/sm/video_thumbnail_12789832.jpg","duration":2557,"publication_date":"2013-10-30T08:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-103013","changefreq":"weekly","video":[{"title":"S1:E640 - SideScrollers Extended - 10/30/13","description":"Sam and Nick abandon Chad.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-103013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b997f120-42b1-4f33-b4e1-fd815d5477d6/sm/video_thumbnail_12784291.jpg","duration":542,"publication_date":"2013-10-29T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"performance-art-a-pain-in-the-ass\"","changefreq":"weekly","video":[{"title":"S1:E138 - SideScrollers - \"Performance Art: A Pain In The Ass\"","description":"Nick returns, Sessler's Twitter, and strange performance art.\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tChad Twitter (https://twitter.com/ScrewAttachChad)\r\n\tNick Twitter (https://twitter.com/THENervousNick)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio HERE!\r\n\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"performance-art-a-pain-in-the-ass\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de03f3bd-e983-4be6-b434-0e3b7d42e6f3/sm/video_thumbnail_12784209.jpg","duration":2422,"publication_date":"2013-10-29T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102913-halo-call-of-duty-and-tiger-woods","changefreq":"weekly","video":[{"title":"S1:E532 - Hard News 10/29/13 - Halo, Call of Duty, and Tiger Woods","description":"Today on Hard News, Halo: Spartan Assault coming to console, new Call of Duty mode, and EA cuts off Tiger Woods.\r\n\t\r\n\tHalo: Spartan Assault coming to console - http://www.screwattack.com/news/halo-spartan-assault-coming-xbox-360-and-xbox-one\r\n\tNew Call of Duty mode - http://www.screwattack.com/news/call-duty-ghosts-getting-new-mode-called-extinction\r\n\tEA cuts off Tiger Woods - http://www.screwattack.com/news/tiger-woods-and-ea-break-not-sport-golf\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-102913-halo-call-of-duty-and-tiger-woods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc2e5bfd-ecd8-457d-b213-ea25910d937e/sm/video_thumbnail_12785645.jpg","duration":139,"publication_date":"2013-10-29T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-ghosts-in-video-games","changefreq":"weekly","video":[{"title":"S1:E83 - Top 10 Ghosts in Video Games","description":"In the spirit of Halloween, Nick and Craig delve into haunted realms to find the Top 10 Ghosts in Video Games!","player_loc":"https://roosterteeth.com/embed/top-10-ghosts-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d6b4785-3cda-4ffe-891b-4f9c7db58c90/sm/video_thumbnail_12781222.jpg","duration":469,"publication_date":"2013-10-28T21:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102813-save-on-resident-evil-italians-wreck-call-of-duty-and-pokemon-gets-patched","changefreq":"weekly","video":[{"title":"S1:E531 - Hard News 10/28/13 - Save on Resident Evil, Italians wreck Call of Duty, and Pokemon gets patched","description":"Today on Hard News, save on Resident Evil, the Italians really wanted Call of Duty Ghosts, and it’s safe to save in Lumiose City.\r\n \r\nCapcom’s Resident Evil Sale - http://www.screwattack.com/news/resident-evil-revelations-mercenaries-3d-get-major-price-cut-halloween\r\n \r\nItalians destroy Call of Duty booth - http://www.screwattack.com/news/call-duty-ghosts-giveaway-milan-gaming-expo-causes-zerg-rush-damaging-booth\r\n \r\nPokemon X and Y get patched - http://www.screwattack.com/news/new-pokemon-x-and-y-patch-fixes-lumiose-citys-game-breaking-bug\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-102813-save-on-resident-evil-italians-wreck-call-of-duty-and-pokemon-gets-patched","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce832dd-d37c-4123-9465-bb7378aee76e/sm/video_thumbnail_12779383.jpg","duration":111,"publication_date":"2013-10-28T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nerdtastic-parker-attends-umg-events-and-sean-trips-on-neural-gum","changefreq":"weekly","video":[{"title":"S1:E4 - Nerdtastic - Parker attends UMG Events and Sean trips on neural gum","description":"Be sure to share your opinions in the comments and feel free to make a suggestion for the next episode of Nerdtastic. If you want to get in touch with either Parker or Sean, you can find them on Twitter!\r\nParker's Twitter\r\nSean's Twitter\r\nEpisode sources:\r\nhttp://umggaming.com/\r\nhttp://twitter.com/UMGEvents\r\nhttp://www.greatwolf.com/","player_loc":"https://roosterteeth.com/embed/nerdtastic-parker-attends-umg-events-and-sean-trips-on-neural-gum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3acd30e-66ee-4d6b-b0a5-d58411a338d0/sm/video_thumbnail_12773341.jpg","duration":193,"publication_date":"2013-10-27T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sams-best-ever-survival-horror-game","changefreq":"weekly","video":[{"title":"S1:E639 - Sam's Best EVER Survival Horror Game","description":"It takes chainsaws and a particular parasite to create Sam's best EVER horror game...","player_loc":"https://roosterteeth.com/embed/sams-best-ever-survival-horror-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee1463d-e564-4107-9b44-0cc19770b6a9/sm/video_thumbnail_12764284.jpg","duration":124,"publication_date":"2013-10-26T02:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-survival-horror-game","changefreq":"weekly","video":[{"title":"S1:E33 - The Best EVER! Survival Horror Game","description":"'Tis the season to be scared to death of things that want you dead!  Which games have given us the best frights?","player_loc":"https://roosterteeth.com/embed/the-best-ever-survival-horror-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f346cf1f-a725-4c69-9fed-a54e8e5fdb84/sm/video_thumbnail_12764282.jpg","duration":341,"publication_date":"2013-10-26T02:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102513-bioshock-infinite-street-fighter-and-north-korea","changefreq":"weekly","video":[{"title":"S1:E530 - Hard News 10/25/13 - Bioshock Infinite, Street Fighter, and North Korea","description":"Today on Hard News, Bioshock Infinite Burial at Sea, Ultra Street Fighter 4 details announced, and North Korea's malware infested games.\r\n\t\r\n\tBioshock Infinite Burial at Sea release date - http://www.screwattack.com/news/irrational-reveals-part-one-burial-sea-will-release-november-12th\r\n\tUltra Street Fighter 4 details announced - http://www.screwattack.com/news/two-additional-game-mechanics-are-coming-ultra-super-street-fighter-iv\r\n\tNorth Korea's malware infested games - http://www.screwattack.com/news/rumor-north-korea-aims-attack-south-korea-using-video-games\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-102513-bioshock-infinite-street-fighter-and-north-korea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4917c6d3-be6e-4710-aa7d-9ad1e63c2e42/sm/video_thumbnail_12761362.jpg","duration":118,"publication_date":"2013-10-25T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nick-lost-a-master-ball","changefreq":"weekly","video":[{"title":"S1:E638 - Nick Lost a Master Ball","description":"S1:E638 - Nick Lost a Master Ball","player_loc":"https://roosterteeth.com/embed/nick-lost-a-master-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2529ac8e-d6be-47d8-b0c5-ae9357cc381d/sm/video_thumbnail_12755033.jpg","duration":81,"publication_date":"2013-10-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102413-injustice-luigi-2ds-and-7-days-to-die","changefreq":"weekly","video":[{"title":"S1:E529 - Hard News 10/24/13 - Injustice, Luigi 2DS, and 7 Days To Die","description":"Today on Hard News, Injustice PS3 to PS4 upgrade, rumored Luigi themed 2DS, and 7 Days To Die pulled from Steam.\r\n\t\r\n\tInjustice PS3 to PS4 upgrade - http://www.screwattack.com/news/injustice-gods-among-us-bringing-more-value-ps3-ps4-digital-upgrade\r\n\tRumored Luigi themed 2DS - http://www.screwattack.com/news/rumor-luigi-may-be-getting-his-own-2ds-honor-year-luigi\r\n\t7 Days To Die pulled from Steam - http://www.screwattack.com/news/fun-pimps-had-7-days-die-removed-steam-greenlight\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-102413-injustice-luigi-2ds-and-7-days-to-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cc22d6a-2621-4a01-8342-bea362b88743/sm/video_thumbnail_12755109.jpg","duration":119,"publication_date":"2013-10-24T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/poke-ball-pokemon-the-armory-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E3 - Pok? Ball (Pok?mon) - The Armory with Boomstick","description":"S1:E3 - Pok? Ball (Pok?mon) - The Armory with Boomstick","player_loc":"https://roosterteeth.com/embed/poke-ball-pokemon-the-armory-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd1d01ff-b1c2-402d-a97b-1a5495ef91ce/sm/video_thumbnail_12749598_0.jpg","duration":80,"publication_date":"2013-10-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102313-titanfall-bravely-default-and-the-console-war","changefreq":"weekly","video":[{"title":"S1:E528 - Hard News 10/23/13 - Titanfall, Bravely Default, and the Console War","description":"Today on Hard News, Titanfall release date and Collector's Edition, Bravely Default's new micro transactions, and the Console War continues.\r\n\t\r\n\tTitanfall release date and Collector's Edition - http://www.screwattack.com/news/respawn-entertainment-reveals-titanfalls-release-date-and-collectors-edition\r\n\tBravely Default's micro transactions - http://www.screwattack.com/news/bravely-default-sequel-feature-microtransactions-3ds\r\n\tPS4 Party chat works with up to 8 people - http://www.screwattack.com/news/ps4-party-chat-will-work-eight-players\r\n\tXbox One color coded achievements - http://www.screwattack.com/news/looks-xbox-one-achievements-will-come-variety-colors-local-multiplayer\r\n\tBattlefield punches a dog - http://www.screwattack.com/video/The-Battlefield-4-story-trailer-that-introduces-your-sensitive-squadmates-12747596\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-102313-titanfall-bravely-default-and-the-console-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c76dbf89-a2de-42e7-854a-f22d9457c497/sm/video_thumbnail_12749023.jpg","duration":163,"publication_date":"2013-10-23T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-naruto-shippuden-ultimate-ninja-storm-3-full-burst","changefreq":"weekly","video":[{"title":"S1:E12 - Out of the Box - Naruto Shippuden Ultimate Ninja Storm 3 Full Burst","description":"This time on Out of the Box, we're ninjas! Bryan and Nick are playing Naruto Shippuden Ultimate Ninja Storm 3 Full Burst, but will it appeal to people outside of Naruto fans? That's what we're gonna find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-naruto-shippuden-ultimate-ninja-storm-3-full-burst","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54634f6f-af95-490f-8f0c-33d93ca1d038/sm/video_thumbnail_12747598.jpg","duration":3119,"publication_date":"2013-10-23T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-102313","changefreq":"weekly","video":[{"title":"S1:E637 - SideScrollers Extended - 10/23/13","description":"Beer. Bacon. Milkshake.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-102313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a1b2445-a85e-443a-b7ce-0094699c5c39/sm/video_thumbnail_12743538.jpg","duration":725,"publication_date":"2013-10-22T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"wakky-animal-circus\"","changefreq":"weekly","video":[{"title":"S1:E137 - SideScrollers - \"Wakky Animal Circus\"","description":"Cat circus, ostrich racing, and scary plastic surgery today on SideScrollers!\r\n\t \r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tSean Twitter (https://twitter.com/SeanHinz)\r\n\tBryan Twitter (https://twitter.com/tehrealbryan)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio HERE!\r\n\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"wakky-animal-circus\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d43d6beb-1ae3-4284-a58c-6d6c94f7493b/sm/video_thumbnail_12743297.jpg","duration":2903,"publication_date":"2013-10-22T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102213-beyond-two-souls-dark-matter-alien-isolation","changefreq":"weekly","video":[{"title":"S1:E527 - Hard News 10/22/13 - Beyond Two Souls, Dark Matter, Alien: Isolation","description":"Today on Hard News, a debugged PS3 gets shots of a naked Ellen Page in Beyond Two Souls, Dark Matter pulled from Steam, and Sega developing Alien: Isolation.\r\n\t\r\n\tNaked Ellen in Beyond Two Souls - http://www.screwattack.com/news/sony-tearing-apart-internet-keep-us-see-ellen-page-naked\r\n\tDark Matter pulled from Steam - http://www.screwattack.com/news/dark-matter-being-pulled-steam-and-gog-offers-refunds\r\n\tSega developing Alien: Isolation - http://www.screwattack.com/news/rumor-alien-isolation-will-star-ripleys-daughter-and-feature-very-few-xenomorphs\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-102213-beyond-two-souls-dark-matter-alien-isolation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7510ac0-9db2-4018-8408-ebb50b991d96/sm/video_thumbnail_12743294.jpg","duration":129,"publication_date":"2013-10-22T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mega-man-dos-video-game-vault","changefreq":"weekly","video":[{"title":"S1:E407 - Mega Man DOS - Video Game Vault","description":"S1:E407 - Mega Man DOS - Video Game Vault","player_loc":"https://roosterteeth.com/embed/mega-man-dos-video-game-vault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3e62f69-6a10-41e5-8c79-1cb8e36bd54c/sm/video_thumbnail_12738905.jpg","duration":146,"publication_date":"2013-10-21T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102113-batman-pokemon-and-totalbiscuit","changefreq":"weekly","video":[{"title":"S1:E526 - Hard News 10/21/13 - Batman, Pokemon, and TotalBiscuit","description":"Today on Hard News, Batman delayed in UK, iPhone is now your Pokedex, and TotalBiscuit's review pulled down.\r\n\t\r\n\tBatman delayed in UK - http://www.screwattack.com/news/multiple-versions-batman-arkham-origins-delayed-uk\r\n\tiPhone is now your Pokedex - http://www.screwattack.com/news/siri-acts-ultimate-pokedex\r\n\tTotalBiscuit's review pulled down - http://www.screwattack.com/news/totalbiscuits-first-impression-day-one-garrys-incident-taken-down-copyright\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-102113-batman-pokemon-and-totalbiscuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2455d63d-b886-40d7-bfb1-0ddd15490103/sm/video_thumbnail_12736672.jpg","duration":150,"publication_date":"2013-10-21T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nerdtastic-twitter-vs-ryse-son-of-rome","changefreq":"weekly","video":[{"title":"S1:E5 - Nerdtastic - Twitter VS Ryse: Son of Rome","description":"Be sure to share your opinions in the comments and feel free to make a suggestion for the next episode of Nerdtastic. If you want to get in touch with either Chad or Sean, you can find them on Twitter!\r\nChad's Twitter\r\nSean's Twitter\r\nEpisode sources:\r\nhttp://www.screwattack.com/news/one-little-tweet-about-rysefacts-leads-massive-industry-backlash-ryse-son-rome\r\nhttp://www.screwattack.com/video/RYSE-Son-of-Rome-Official-Reveal-Trailer--E3-2013-11830722\r\nhttps://twitter.com/RyseGame/\r\nhttp://www.youtube.com/user/xbox?feature=watch\r\nhttp://www.gamasutra.com/view/news/202444/Developers_react_The_RyseFacts_hashtag_and_the_war_on_crunch.php","player_loc":"https://roosterteeth.com/embed/nerdtastic-twitter-vs-ryse-son-of-rome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5be71c7d-7eab-403a-bb70-138aca8b773e/sm/video_thumbnail_12730508.jpg","duration":285,"publication_date":"2013-10-20T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-pokecrastination","changefreq":"weekly","video":[{"title":"S1:E199 - The Clip - Pokecrastination","description":"When Craig leaves the office in Bryan's command, there's just one major obstacle keeping everyone from staying on task.","player_loc":"https://roosterteeth.com/embed/the-clip-pokecrastination","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9150c15e-6f3c-45a2-b9e6-1e76879ae383/sm/video_thumbnail_12720550.jpg","duration":148,"publication_date":"2013-10-18T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-season-finale-behind-the-scenes","changefreq":"weekly","video":[{"title":"S1:E42 - Season Finale Behind the Scenes","description":"The costumes, the moving sets, the butt thongs. The production of Free Play's season finale was one strange moment after another.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-season-finale-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e618b75d-9cfd-4a6c-a137-a52198bb6383/sm/690915-1450892997433-FPBTS-TH.jpg","duration":260,"publication_date":"2015-12-23T18:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-naughty-v-s-nice","changefreq":"weekly","video":[{"title":"S6:E32 - Naughty vs. Nice","description":"In the North Pole, children are divided into two categories: Naughty and Nice. However, in the North Pole Court of Appeals there are dozens of cases every year where this distinction is contested. This is one of those cases.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-naughty-v-s-nice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eae9f38-639b-4975-95c5-c3d8d0c340e5/sm/5769-1450827279222-NaughtyVNice_Thumb.jpg","duration":324,"publication_date":"2015-12-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-rooster-bells-bloopers","changefreq":"weekly","video":[{"title":"S6:E33 - Rooster Bells - Bloopers","description":"Check out all of the fun ridiculous stuff that happened while we were filming the Rooster Bells Holiday Video.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-rooster-bells-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4009f20-8d0f-4e2b-8cd5-6a530ca9b602/sm/5769-1450828229283-holiday_short_bloopers_thumb.jpg","duration":93,"publication_date":"2015-12-22T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-355","changefreq":"weekly","video":[{"title":"2015:E355 - Annoying Star Wars Moments - #355","description":"Join Gus Sorola, Barbara Dunkelman, Gavin Free, and Burnie Burns as they discuss the fictional country of Agrabah, C3PO's silver leg, apple charging methods and more on this week's RT Podcast! This episode originally aired on December 21, 2015.\n\n\n\nWARNING: We briefly discuss Fallout 4 and Force Awakens","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-355","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6172c94d-c92a-46fc-b69c-45655785870b/sm/1608230-1450802979738-rt355-TH.jpg","duration":5949,"publication_date":"2015-12-22T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-geoff-s-failed-sex-dream","changefreq":"weekly","video":[{"title":"2015:E8 - Geoff's Failed Sex Dream","description":"Geoff has a sex dream for the first time, but it doesn't go as well as he would hope.\n\n\nAudio from Let's Play Minecraft #158: http://achievementhunter.com/episode/lets-play-let...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-geoff-s-failed-sex-dream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d27ea9be-78e9-4901-9cad-6a19d56e1dd2/sm/2013912-1450130378317-rtaa209tn1.jpg","duration":187,"publication_date":"2015-12-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-temp","changefreq":"weekly","video":[{"title":"S1:E11 - Tongue Hands & Leaky Nips","description":"Special guest Alan Ritchson joins Gavin and Burnie for a Lazer Team episode of Million Dollars, But...","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-temp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ea63ec2-5d23-463c-a22f-fd5dffec763f/sm/5769-1450646345320-MDBep9_thumb.jpg","duration":337,"publication_date":"2015-12-20T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-fire-breathing-backflip-with-steve-o","changefreq":"weekly","video":[{"title":"S1:E50 - Fire-breathing Backflip with Steve-O","description":"It's not every day that Steve-O comes to your house, but when he does, it's pure Slow Mo magic.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-fire-breathing-backflip-with-steve-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72e6677c-0452-492c-94f9-53b5b7319d6f/sm/82-1450571226150-Screen_Shot_2015-12-19_at_12.05.53.jpg","duration":360,"publication_date":"2015-12-19T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-fp-e-x-t-r-a-i-can-make-you-a-man","changefreq":"weekly","video":[{"title":"S1:E41 - FP EXTRA: I Can Make You A Man","description":"Miles and Blaine bust out one final number in this special Sponsor-only FP Extra.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-fp-e-x-t-r-a-i-can-make-you-a-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d83fe0df-eef9-4370-b032-44806cf1a0cd/sm/690915-1450471267915-FP_EXTRA_-_THUMB.jpg","duration":132,"publication_date":"2015-12-18T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-dan-the-marinara-32","changefreq":"weekly","video":[{"title":"2015:E21 - #Dan the Marinara - #32","description":"When Dan isn't getting humiliated or injured in a Slow Mo Guys video, Geoff takes up the reins.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-dan-the-marinara-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4710b308-040a-42b5-93e4-fdba3110d528/sm/669363-1450457673323-HappyHourThumb.jpg","duration":94,"publication_date":"2015-12-18T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-on-the-spot-44","changefreq":"weekly","video":[{"title":"S4:E44 - You Can't Say That On This Show - #44","description":"This episode originally aired on December 17, 2015 and is sponsored by Casper (bit.ly/1Or3AKK) and Loot Crate (bit.ly/1OceQsQ)Couples are so cute. Sometimes you just want to throw them in a ring and have them battle for blood or a redemption challenge. Screw love.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-on-the-spot-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df8fe46-caef-45fd-89fd-2ece6602040f/sm/1628443-1450462844078-ots_41_thumb.png","duration":2340,"publication_date":"2015-12-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-season-finale-special-free-play-38","changefreq":"weekly","video":[{"title":"S1:E40 - Season Finale Special - #38","description":"Meg and Ryan send the first season of Free Play off in style.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-season-finale-special-free-play-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75d6c091-e2ac-4bc1-ac41-ee80de48cedf/sm/690915-1450420454914-FP38_-_THUMB.jpg","duration":1063,"publication_date":"2015-12-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-25","changefreq":"weekly","video":[{"title":"2015:E25 - Lucasfilm Star Wars Auditions (No Spoilers)","description":"In 2013, Lucasfilm held an open casting call and several Rooster Teeth employees actually auditioned for Star Wars: The Force Awakens and filmed it.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41c2c59d-8915-4df8-8512-1ce327971b5d/sm/5769-1450392507437-Star_Wars_Auditions_02.jpg","duration":139,"publication_date":"2015-12-17T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-mammoth-stomp","changefreq":"weekly","video":[{"title":"S1:E49 - Mammoth Stomp","description":"Gav and Dan bring a mammoth back from extinction and immediately put it to work.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-mammoth-stomp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68ba0756-6471-4262-9047-e965bbedfa1d/sm/82-1450314800764-Screen_Shot_2015-12-15_at_18.39.25.jpg","duration":306,"publication_date":"2015-12-17T00:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-burnie-s-vlog-december-16-2015","changefreq":"weekly","video":[{"title":"2015:E8 - Burnie’s Vlog: December 16, 2015","description":"Burnie’s back from traveling the world with The Amazing Race, just in time to provide a major update on what’s going on at Rooster Teeth.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-burnie-s-vlog-december-16-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74ddabb9-55fc-4c3c-ba5f-78b347b3c9a3/sm/2013912-1458752182327-12-16-15_Thumnail.jpg","duration":781,"publication_date":"2015-12-16T23:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-how-to-survive-if-you-don-t-like-star-wars","changefreq":"weekly","video":[{"title":"S6:E31 - How to Survive if You Don't Like Star Wars","description":"Not a fan of Star Wars and tired of being left out We have the solution for you!\n\n\n\nLike Sci-fi action Visit LazerTeamTheMovie.com!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-how-to-survive-if-you-don-t-like-star-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de1d9c8b-be0f-47a5-a109-b8a079925666/sm/2013912-1450299266094-StarWarsThumb_DH_v3.png","duration":203,"publication_date":"2015-12-16T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-17","changefreq":"weekly","video":[{"title":"2015:E17 - Is a Horse a Person? - #17","description":"Join Jack Pattillo, Tyler Coe, Ray Narvaez Jr. as they discuss Johnny Manziel's head, Peyton Manning's neck, Conor McGregory & UFC, Race Horse Civil Rights, Serena Williams, Blake Griffin killing people, big fights on the ice, the Heisman trophy, the Steelers Super Bowl chances, the story of Buffalo, an interview with one of the NHL's biggest stars and more on this week's episode of Sportsball! This episode episode originally aired on December 16th, 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76af330a-7091-4983-aa89-8119058346bf/sm/2013912-1450295388506-SB17_-_THUMB_v5.jpg","duration":3905,"publication_date":"2015-12-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-fan-art-wednesday-37","changefreq":"weekly","video":[{"title":"S1:E39 - Fan Art...Wednesday? - #37","description":"It's Free Play! Meg and Ryan once again pit a pair of adorable animals against each other in today's Internet Show and Tell. Plus, we're shaking things up and doing our monthly fan art challenge on Wednesday. Finally, we've got a short little teaser previewing Friday's extra special season finale!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-fan-art-wednesday-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c716c43-dea4-4295-a287-70990d8e29f5/sm/2013912-1450284202574-FP37_-_THUMB.jpg","duration":992,"publication_date":"2015-12-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-354-post-show","changefreq":"weekly","video":[{"title":"2015:E26 - Podcast #354 Post Show","description":"Join Gus Sorola, Gavin Free, Matt Hullum and Burnie Burns as they discuss setting up a fake Star Wars screening for Blaine. \n\n\n\nWatch the original prank video: Star Wars Early Screening Prank (No Spoilers)","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-354-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7556e0a-d371-437c-a5cf-0a8f22d53154/sm/2013912-1450282907452-rtp354_-_PS__-_THUMB.jpg","duration":1083,"publication_date":"2015-12-16T16:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-354","changefreq":"weekly","video":[{"title":"2015:E354 - The Apple Argument - #354","description":"Join Gus Sorola, Gavin Free, Matt Hullum and Burnie Burns as they discuss varieties of apples, gruesome Canadian saftey videos, Lazer Team's theatrical release and more on this week's RT Podcast! This episode episode originally aired on December 14, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-354","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed74e94a-cc07-45fd-87d0-fdfff98337fe/sm/2013912-1450199196624-rtp354_-_THUMB.jpg","duration":6052,"publication_date":"2015-12-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-early-star-wars-screening-prank","changefreq":"weekly","video":[{"title":"2015:E30 - Star Wars Early Screening Prank (No Spoilers)","description":"A Star Wars super-fan gets pranked by his co-workers into believing hes invited to an early VIP screening for The Force Awakens.\n\n\n\nLike Sci-fi action Visit LazerTeamTheMovie.com!","player_loc":"https://roosterteeth.com/embed/rt-life-2015-early-star-wars-screening-prank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c406568c-53e4-4c87-ab46-06e921cc79ba/sm/2013912-1450159178200-StarWarsBlainePrank_RTSite_B.jpg","duration":415,"publication_date":"2015-12-15T07:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-off-topic-mountain-monsters","changefreq":"weekly","video":[{"title":"SOR:E5 - Off Topic Mountain Monsters","description":"This week on Straight Outta RT, Michael tells the tale of the legendary Mountain Monsters hunting team. Experience the terror of Bigfoot, The Mothman, and poor trigger finger safety!\n\nMade by the Rooster Teeth community GTA5 machinima team: The Lone Few.\n\nIncludes audio from The Off-Topic Podcast #0.1 http://achievementhunter.com/episode/off-topic-the...","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-off-topic-mountain-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e1dffb8-66c3-4c20-8901-79841c33fd61/sm/2013912-1450119506651-SoRT_EP05_THUMB.jpg","duration":141,"publication_date":"2015-12-14T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-the-x-ray-vav-holiday-special-short","changefreq":"weekly","video":[{"title":"S2:E12 - The X-Ray & Vav Holiday Special! - Short","description":"It's the holiday season, and X-Ray and Vav are getting set to throw the best party ever! But when X-Ray realizes he forgot to get Vav a gift, it's a last minute dash to find something for his best buddy.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-the-x-ray-vav-holiday-special-short","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbbbc7ef-1880-4933-ae2b-551685eee90b/sm/2013912-1449872055483-xv2_holiday_thumbnail.jpg","duration":267,"publication_date":"2015-12-12T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-6-fall","changefreq":"weekly","video":[{"title":"V3:E6 - Volume 3, Chapter 6: Fall","description":"The Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-6-fall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04071fae-18d3-4d16-8d18-9c8ff42a943a/sm/1461653-1449932781589-RWBY_THUMB_Ep06.png","duration":1100,"publication_date":"2015-12-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-don-t-wake-daddy-36","changefreq":"weekly","video":[{"title":"S1:E38 - Don't Wake Daddy - #36","description":"It's Free Play! Meg and Ryan continue their holiday preparations - so get out your Yule-tatos, everyone! Plus, a rabid raccoon squares off in today's Internet Show and Tell against a cute, cuddly...panda Finally, the Free Play crew tries to be as quiet as possible so they Don't Wake Daddy in today's stunt!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-don-t-wake-daddy-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd938b06-7e23-44f2-9039-f6d489d245bc/sm/2013912-1449850198496-FP36_-_thumb.jpg","duration":1409,"publication_date":"2015-12-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-353-post-show","changefreq":"weekly","video":[{"title":"2015:E25 - Podcast #353 Post Show","description":"Join Blaine Gibson, Brandon Farmahini, Josh Flanagan and Chris Demarais as they discuss their anticipation for Star Wars Episode VII on this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-353-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2773235d-d0bc-4d70-9f16-1c647947c5bb/sm/2013912-1449854128752-rtp353_-_THUMB_-_PS.jpg","duration":1701,"publication_date":"2015-12-11T17:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-43","changefreq":"weekly","video":[{"title":"S4:E43 - The Jew Who Stole Christmas - #43","description":"Not a lot of people know this but Dr. Seuss actually wrote a sequel to \"How The Grinch Stole Christmas\" where the Grinch, after having grown such a huge heart, attempted to bring Christmas to a neighborhood of Hassidic Jew Whos but was never able to get the book published since all of the drawings of the Jewish Whos looked like World War II German propaganda illustrations. This episode was originally recorded on December 10, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06240e18-2fa0-43b9-99b7-255d1df89f81/sm/2013912-1449855104090-ots_43_thumb.jpg","duration":1981,"publication_date":"2015-12-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-5","changefreq":"weekly","video":[{"title":"S1:E5 - Week Five","description":"Thanks to Onnit for sponsoring this series! As Thanksgiving brings everyone together, the first race of the season threatens to tear them apart.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acba89b5-2f42-4071-af62-088a026bf318/sm/2013912-1449776201880-BUFF_BUDDIES_EP5_Thumb_v003.png","duration":575,"publication_date":"2015-12-10T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-16","changefreq":"weekly","video":[{"title":"2015:E16 - Hump Day in Buffalo - #16","description":"Join Jack Pattillo, Tyler Coe, Joel Heyman as they discuss the College Football Playoffs, Australian Baseball, a sexist, German soccer player's punishment, the Teddy Bear Toss, Brandon Prust crotch shot, Buffalo Bills fans getting down and dirty, the Rooster Teeth Bowl Pick'em, the Fantasy Football Playoffs, Pitlo's Picks, the 2 Minute Drill and more on this week's episode of Sportsball! This episode episode originally aired on December 8th, 2015.\n\n\n\n2:31 - College Football Playoff\n\n7:06 - Around the Globe\n\n7:54 - Australian Baseball League\n\n11:43 - MLB Offseason Moves\n\n15:07 - Germany/Women in Sports\n\n28:34 - Canada/Hockey\n\n36:49 - Buffalo Bills Fans\n\n42:19 - F@$! you, Tyler\n\n44:45 - Bowl Season Mania\n\n46:00 - Rooster Teeth Fantasy Football\n\n52:29 - Heisman Discussion\n\n56:15 - Pitlo Picks\n\n1:07:13 - 2 Minute Drill","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00cd4546-368c-4539-bbe9-f6ca8a022b9b/sm/2013912-1449687324190-SB_-_TEMP_THUMB.jpg","duration":4272,"publication_date":"2015-12-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-pie-to-the-face-off-35","changefreq":"weekly","video":[{"title":"S1:E37 - Pie To The Face-Off - #35","description":"It's Free Play! Coconut! In today's episode Meg and Ryan talk safe words (or lack thereof). Plus, we're learning why we shouldn't play with explosives on Internet Show and Tell. Finally, everyone's getting cream pies to the face in today's stunt.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-pie-to-the-face-off-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f604fd6-79a0-4cdb-90d7-d827f002182c/sm/2013912-1449678678785-FP35_-_THUMB.jpg","duration":1150,"publication_date":"2015-12-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-condom-challenge","changefreq":"weekly","video":[{"title":"S1:E48 - Condom Challenge","description":"Gav and Dan take on the condom challenge. As expected, the slow mo results are beautiful.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-condom-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d0131ba-4db2-419f-8616-2457701db628/sm/82-1449704442420-Screen_Shot_2015-12-09_at_16.51.36.jpg","duration":330,"publication_date":"2015-12-09T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-d-k-pic-disaster-353","changefreq":"weekly","video":[{"title":"2015:E353 - The D**k Pic Disaster - #353","description":"Join Blaine Gibson, Brandon Farmahini, Josh Flanagan, and Chris Demarais as they discuss threesomes, accidental nude photos, and more on this week's RT Podcast! This episode episode originally aired on December 7, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-d-k-pic-disaster-353","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6751133e-79a1-4f26-81c0-2f7a0bf280b4/sm/2013912-1449592554651-rtp353_-_THUMB.jpg","duration":5759,"publication_date":"2015-12-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-biscuits-or-breadsticks","changefreq":"weekly","video":[{"title":"2015:E7 - Biscuits or Breadsticks","description":"Miles, Kerry, and Michael have an age-old debate of what's better: Red Lobster Cheddar Bay Biscuits, or Olive Garden Breadsticks. Who will emerge victorious I don't know, but I'm sure the comments section will be a mess.\n\nAudio from RT Podcast #348: http://roosterteeth.com/episode/rt-podcast-season-...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-biscuits-or-breadsticks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4e9ac3a-3e53-4e65-bac8-5a0fbfee179c/sm/2013912-1449268173188-rtaa208tn1.jpg","duration":107,"publication_date":"2015-12-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-ashley-fatison-behind-the-scenes","changefreq":"weekly","video":[{"title":"S6:E30 - Ashley Fatison - Behind the Scenes","description":"Look behind the scenes and enjoy funny moments from Ashley Fatison!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-ashley-fatison-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffc6ebe4-8ef0-4578-8af2-f7a3f2e32955/sm/2013912-1449260854122-BTS_THUMBNAIL_DH_v3.png","duration":178,"publication_date":"2015-12-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-chapter-5-never-miss-a-beat","changefreq":"weekly","video":[{"title":"V3:E5 - Volume 3, Chapter 5: Never Miss a Beat","description":"The Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-chapter-5-never-miss-a-beat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc92efca-5d11-4a2b-8fc2-2d620d761721/sm/2013912-1449292954869-RWBY_THUMB_Ep05.png","duration":788,"publication_date":"2015-12-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-don-t-touch-the-hole-42","changefreq":"weekly","video":[{"title":"S4:E42 - Don't Touch the Hole - #42","description":"Santa only gives points to the good little girls and boys who know they're supposed to shut the hell up while the host is trying to explain the games. Bad little girls and boys who don't know when to shut their god damn mouths get yelled at and have to drink meals from fast food chains blended into a salty paste. This episode was originally recorded on December 3, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-don-t-touch-the-hole-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8b6d6f3-715d-48e1-80c2-b4b6db3c6dd9/sm/2013912-1449266225899-ots_42_thumb.jpg","duration":2085,"publication_date":"2015-12-05T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-dead-pets-and-wet-heads-free-play-34","changefreq":"weekly","video":[{"title":"S1:E36 - Dead Pets and Wet Heads - #34","description":"It's Free Play! Meg and Ryan are decking their (w)hole halls for the holiday season. Plus, we're pitting inhumanly strong children against inhumanly accurate children in today's Internet Show and Tell. Finally, things get a little wet and wild in today's challenge!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-dead-pets-and-wet-heads-free-play-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3030cee7-66a0-45b0-84c5-f425398d77e5/sm/1461653-1449249963710-FP34_-_THUMB.jpg","duration":1461,"publication_date":"2015-12-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-weeks-three-four","changefreq":"weekly","video":[{"title":"S1:E4 - Weeks Three & Four","description":"Thanks to Onnit for sponsoring this series! Travel, holidays, and ill-fitting clothes conspire to ruin the Buff Buddies fitness battles.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-weeks-three-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee9674d6-ecce-4a53-bbeb-74515270021c/sm/2013912-1449173987532-BUFF_BUDDIES_EP4_DH_v2.png","duration":456,"publication_date":"2015-12-03T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-31","changefreq":"weekly","video":[{"title":"2015:E20 - Champagne Kisses - #31","description":"Gavin and Griffon have a bubbly little celebration, Happy Hour style.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2a3b7ef-e461-426d-b9ba-8873fff802e0/sm/2013912-1449167587013-happyhour_ck_thumv.jpg","duration":139,"publication_date":"2015-12-03T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-15","changefreq":"weekly","video":[{"title":"2015:E15 - Goodbye Kobe - #15","description":"Join Brandon Farmahini, Tyler Coe, Joel Heyman as they discuss the Factory of Sadness, Kobe Bryant retiring, the College Football Playoffs, the Grey Cup, the Golden State Winning Streak, Basketball Dynasties and more on this week's episode of Sportsball! This episode originally aired on December 1st, 2015.\n\n4:50 - NFL/Browns vs Ravens\n\n12:13 - NBA/Kobe Retirement\n\n14:50 - Coaching in NBA vs MLB\n\n20:30 - Kobe vs MJ\n\n25:59 - Les Miles/College Football/CFB Playoffs\n\n40:30 - NFL/Panther vs Cowboys\n\n50:32 - Pitlos Picks\n\n55:28 - F@$! You Tyler","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a38ff0f1-04a7-4563-b609-68e9823ba16e/sm/2013912-1449085339418-SB15_-_THUMB.jpg","duration":3503,"publication_date":"2015-12-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-33","changefreq":"weekly","video":[{"title":"S1:E35 - Shot Roulette - #33","description":"It's Free Play! Ryan's revealing tasteless pratical jokes he's played on his wife. Plus, we learn not to play with fire on today's Internet Show and Tell. Finally, we're gambling with our tastebuds in a game of Shot Roulette.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69afc6ea-1ec3-46df-810a-cb386bc62c28/sm/2013912-1449073350419-FP33_-_THUMB.jpg","duration":1785,"publication_date":"2015-12-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-kevin-diccio","changefreq":"weekly","video":[{"title":"2015:E24 - RTX Crash Victim Memorial - RTP Extra","description":"In this special RTP Extra, Burnie is joined by Kevin DiCicco, one of the survivors of a fatal automobile accident involving a group of RT fans on the way to RTX. Kevin shares the stories of his friends Kyle, Dale and Holly in this touching memorial episode.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-kevin-diccio","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dcdb03a-1fde-408c-aa7e-9a8a06911c9a/sm/2013912-1449073501413-rtp_347_-_PS_-_Memorial_-_THUMB.jpg","duration":2145,"publication_date":"2015-12-02T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-grimm-eclipse-steam-early-access","changefreq":"weekly","video":[{"title":"S1:E19 - RWBY: Grimm Eclipse - Steam Early Access","description":"Grimm Eclipse is now available on STEAM Early Access! Get it now in the STEAM Store and battle Grimm across the world of Remnant as Ruby, Weiss, Blake and Yang - bit.ly/RWBY-GE.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-grimm-eclipse-steam-early-access","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b39b39a-5b89-43c3-b766-987256563d90/sm/2013912-1448491899376-RWBY-GE_Steam_EA.png","duration":63,"publication_date":"2015-12-01T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-352","changefreq":"weekly","video":[{"title":"2015:E352 - So Scottish It Hurts - #352","description":"Join Jon Risinger, Gavin Free, Barbara Dunkelman and Miles Luna as they discuss accents, dating apps, unexpectedly flying first class and more on this week's RT Podcast! This episode originally aired on November 30, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-352","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c625b3f-d9ac-4ae2-8434-7245b03d4882/sm/2013912-1448988747025-rtp352_-_THUMB.jpg","duration":5681,"publication_date":"2015-12-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-apple-pay-n-in-the-butt","changefreq":"weekly","video":[{"title":"2015:E6 - Apple Pay-n in the Butt","description":"Burnie tries to impress Gavin and Dan with his fancy ApplePay phone, but it's less amazing than he thinks.\n\nAudio from RT Podcast #323: http://roosterteeth.com/episode/rt-podcast-season-...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-apple-pay-n-in-the-butt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/848a762c-c861-46b5-9145-d5aa077714bc/sm/2013912-1448480091031-rtaa207tn1.jpg","duration":124,"publication_date":"2015-11-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-matt-s-vlog-november-29-2015","changefreq":"weekly","video":[{"title":"2015:E7 - Matt’s Vlog: November 29, 2015","description":"Matt emerges from his turkey haze to give an update on the haps at Rooster Teeth.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-matt-s-vlog-november-29-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4b7a198-0c80-420b-9fac-d0aa3ebd9e39/sm/2013912-1458752155124-11-29-15_Thumnail.jpg","duration":328,"publication_date":"2015-11-29T23:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-ashley-fatison","changefreq":"weekly","video":[{"title":"S6:E28 - Ashley Fatison","description":"Ashely Fatison is the easiest and safest way to cheat on your diet. Discretion guaranteed.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-ashley-fatison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd9a437b-ec33-4f3a-9563-ab80367d8f88/sm/2013912-1448489361145-Ashley_Fatison_thumb_v2.png","duration":248,"publication_date":"2015-11-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-volume-3-chapter-4-lessons-learned","changefreq":"weekly","video":[{"title":"V3:E4 - Volume 3, Chapter 4: Lessons Learned","description":"The Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-volume-3-chapter-4-lessons-learned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/875a1403-b963-4227-b229-2dfa834cd049/sm/2013912-1448505255238-RWBY_THUMB_Ep04.png","duration":861,"publication_date":"2015-11-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-32","changefreq":"weekly","video":[{"title":"S1:E34 - Thanksgiving Special - #32","description":"The cast and crew of Free Play (plus Jon Risinger for some reason) all sit down for Thanksgiving Dinner to reminisce and share clips of their favorite Free Play memories and behind the scenes moments.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adbfd44a-4aa7-46b2-a005-cb5c8a8a43b5/sm/2013912-1448471919240-FP32_TH.jpg","duration":1207,"publication_date":"2015-11-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-starbucks-expands-holiday-cup-line","changefreq":"weekly","video":[{"title":"S6:E29 - Starbucks Expands Holiday Cup Line","description":"After much controversy over the red holiday cups, Starbucks expands it's cup collection.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-starbucks-expands-holiday-cup-line","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf50f1f0-3586-4bc8-aded-305d35f57773/sm/1461653-1448582604703-starbucks_thumb.png","duration":140,"publication_date":"2015-11-27T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-five-nights-at-freddy-s-in-real-life-extended-cut","changefreq":"weekly","video":[{"title":"S3:E7 - Five Nights at Freddy's In Real Life - Extended Cut","description":"Check out the extended Five Nights at Freddys Immersion with Michael and Gavin! We've added more than 5 minutes of extra footage!\n\n\n\nCheck out the Original Episode, Behind the Scenes, and Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-five-nights-at-freddy-s-in-real-life-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d029e2-f1c7-4a0d-8b07-3a537e8cad7a/sm/2013912-1448480078343-5NightsExtendedThumbv2copy.png","duration":1033,"publication_date":"2015-11-25T19:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-14","changefreq":"weekly","video":[{"title":"2015:E14 - Return of the Joel - #14","description":"Jack Pattillo, Tyler Coe, Joel Heyman finally talk hockey! This episode is sponsored by Stance (http://bit.ly/1O3P1gk) and the RT Store (http://bit.ly/1dEKfni) They also discuss hurling, the state of Ohio, College GameDay at Oklahoma State, the College Football Playoffs, LSU Coach Les Miles, a brand new F&!@ You Tyler segment and more on this week's episode of Sportsball! This episode episode originally aired on November 24th, 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/133b382b-db08-4db9-b4df-718ce2d79cc4/sm/2013912-1448480010049-SP14THz.jpg","duration":4173,"publication_date":"2015-11-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-50-charades-of-grey-31","changefreq":"weekly","video":[{"title":"S1:E33 - 50 Charades of Grey - #31","description":"With Ryan out of the office, On the Spot's own Jon Risinger steps in to fill the Haywood-shaped hole in our hearts. Plus, we're stabbing parents and chasing butterflies on this episode's Internet Show and Tell. Finally, Mariel and Tyler join Jon and Meg on set to play a fan-suggested game of Charades.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-50-charades-of-grey-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9838ef71-87f9-4b49-80f0-51ecf3841a6e/sm/2013912-1448468479108-FP31-TH.jpg","duration":1095,"publication_date":"2015-11-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-351-post-show","changefreq":"weekly","video":[{"title":"2015:E23 - Podcast #351 Post Show","description":"Join Gus Sorola, Brandon Farmahini, Barbara Dunkelman, and Miles Luna as they discuss Jaden Smith's tweets on this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-351-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ec5b89b-45a9-42bf-912c-cc35c1ee0d08/sm/2013912-1448468381967-RT351_PSTH.jpg","duration":1382,"publication_date":"2015-11-25T16:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-boogie-boogie-boogie-351","changefreq":"weekly","video":[{"title":"2015:E351 - Boogie Boogie Boogie - #351","description":"Join Gus, Brandon, Barbara, and Miles as they discuss their favorite injury videos, Barbara's broken finger, and more on this week's RT Podcast! This episode originally aired on November 23rd, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-boogie-boogie-boogie-351","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bc970ef-2af4-456c-810a-2f1c702040db/sm/2013912-1448404836569-rtp351_-_THUMB.jpg","duration":5602,"publication_date":"2015-11-24T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-rooster-bells-2015-rt-holiday-musical","changefreq":"weekly","video":[{"title":"S6:E27 - Rooster Bells - 2015 RT Holiday Musical","description":"Join Rooster Teeth as we celebrate the holidays! There will be merriment, memories and MURDER.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-rooster-bells-2015-rt-holiday-musical","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af0095a5-5758-4769-a0d8-3b7c4f55c164/sm/2013912-1448301839518-holiday_short_thumb_v2.png","duration":131,"publication_date":"2015-11-23T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-cat-stories","changefreq":"weekly","video":[{"title":"2015:E5 - Cat Stories","description":"**Holiday Sale 15% off entire store 11/23 - 11/30 http://bit.ly/RT_Store\n\nGavin and Burnie talk about the annoying things their cats do. Gus talks about a cat who returned home after years in the wild.\n\nAudio from RT Podcast #341: http://roosterteeth.com/episode/rt-podcast-season-...\n\nand RT Podcast #349: http://roosterteeth.com/episode/rt-podcast-season-...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-cat-stories","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ba3cd18-4747-433c-baac-359d592adfec/sm/2013912-1448295282606-rtaa206tn1.jpg","duration":116,"publication_date":"2015-11-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-gavin-s-vlog-november-22-2015","changefreq":"weekly","video":[{"title":"2015:E6 - Gavin’s Vlog: November 22, 2015","description":"Gavin’s life – and hair – is a mess, but he still finds time to update you on what’s happening at Rooster Teeth.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-gavin-s-vlog-november-22-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf47a0bc-2089-46f5-8d6e-4e3b6f0fe388/sm/2013912-1458752125188-11-22-15_Thumnail.jpg","duration":331,"publication_date":"2015-11-22T23:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-fire-tornado-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E47 - Fire Tornado in Slow Motion","description":"Gav and Dan combine wind with fire to create a swirling vortex of flames.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-fire-tornado-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48c336ef-249d-47e2-ace1-2b338be663a7/sm/82-1448233352740-Screen_Shot_2015-11-22_at_4.57.10_PM.png","duration":180,"publication_date":"2015-11-22T23:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-x-ray-vav-posi-choices-101-short","changefreq":"weekly","video":[{"title":"S2:E11 - X-Ray & Vav: Posi-Choices 101 - Short","description":"X-Ray and Vav are here to SCHOOL you in the art of positive life choices, AKA posi-choices. With the help of Mogar and friends, there's no lesson that can't be taught!","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-x-ray-vav-posi-choices-101-short","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd1dbf86-e6a6-4039-9b09-4c505e804945/sm/2013912-1448060535250-XV2_posi-choices_thumbnail.jpg","duration":244,"publication_date":"2015-11-21T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-live-it-dream-it-f-ck-it-41","changefreq":"weekly","video":[{"title":"S4:E41 - Live it. Dream it. F*ck it. - #41","description":"Tyler Coe thought he had everything he wanted in life: a home, a husband and a successful career. Now newly divorced from Aaron Marquis and facing a turning point, he finds that he is confused about what is important to him. Daring to step out of his comfort zone, Tyler embarks on a quest of self-discovery that takes him to Italy, India and Bali. This episode was originally recorded on November 19, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-live-it-dream-it-f-ck-it-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db58622-06ff-4206-965f-2267a27ec443/sm/2013912-1448047335717-ots_41_thumb.jpg","duration":1831,"publication_date":"2015-11-20T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-five-nights-at-freddy-s-behind-the-scenes","changefreq":"weekly","video":[{"title":"S3:E6 - Five Nights at Freddy's In Real Life - Behind the Scenes","description":"Watch the Behind the Scenes of Immersion - Five Nights at Freddy's. Would being trapped inside a tiny room, watching lovable characters roaming dimly lit hallways actually be scary Watch to find out how many nights Michael and Gavin can survive.\n\n\n\nCheck out the Original Episode, Extended Cut, and Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-five-nights-at-freddy-s-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/747ca08d-9401-4e79-8290-82d2055ee86e/sm/2013912-1447976200402-immersion_fivenightsbts_thumb_v003_1024.jpg","duration":280,"publication_date":"2015-11-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-3","changefreq":"weekly","video":[{"title":"S1:E32 - The Newlywed Game - #30","description":"It's Free Play! In Today's episode, Mariel offers Meg a little \"assistance\" with her Internet Show and Tell video. Plus, by fan suggestion, Jon Risinger stops by to host a special Free Play edition of The Newlywed Game!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c9c8b10-d130-4e94-a46d-c9a90deeaf2e/sm/1461653-1448038004528-FP30_-_THUMB.jpg","duration":1811,"publication_date":"2015-11-20T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-two","changefreq":"weekly","video":[{"title":"S1:E3 - Week Two","description":"Thanks to Onnit for sponsoring this series! As the Josh, Meg, and Zach battle diet temptations, one buff buddy may be trying to sabotage the others","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5439450a-d41d-4dd4-99c8-626ae3131bb4/sm/2013912-1447958291590-BuffBuddies-Ep3.png","duration":443,"publication_date":"2015-11-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-five-nights-at-freddy-s-featuring-barbara-and-lindsay","changefreq":"weekly","video":[{"title":"S3:E5 - Five Nights at Freddy's In Real Life - Featuring Barbara and Lindsay","description":"On a very special Sponsor edition of Immersion, Barbara and Lindsay face an untold amount of spookies and scaries. What RT production did that horrifying dildo monster come from?\n\n\n\nWatch the Original Episode, Extended Cut, and Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-five-nights-at-freddy-s-featuring-barbara-and-lindsay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5c60d66-4bd2-45af-aff4-7029674282f4/sm/2013912-1447950959045-FNAF_Sponsor_Thumb.png","duration":434,"publication_date":"2015-11-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-29-extra","changefreq":"weekly","video":[{"title":"S1:E31 - Extra: Renaissance Fair","description":"After braving a storm to film a segment at the Texas Renaissance Fair, the Free Play crew came back to Stage 5 to find their footage shaky and unusable. But instead of scrapping the segment altogether, we decided to throw a stabilizer on it (which is why the video bounces all over the place) and put it out exclusively for sponsors. Yay!\n\nWatch Quest to the Renaissance Fair - Free Play #29 here: http://roosterteeth.com/episode/free-play-season-1...","player_loc":"https://roosterteeth.com/embed/free-play-season-1-29-extra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1903efcf-d844-4884-973e-21789e0c2261/sm/2013912-1447880733970-FP29XTRA-TH.jpg","duration":345,"publication_date":"2015-11-18T21:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-29","changefreq":"weekly","video":[{"title":"S1:E30 - Quest to the Renaissance Fair - #29","description":"It's Free Play! In today's episode Meg and Ryan continue to plan future stunts while on air. Plus, it's wet cats vs. squeaky children on today's Internet Show and Tell. Finally, Meg and Ryan attempt to salvage what they can from their recent shoot on-location at the Renaissance Fair. \n\nIf you are a sponsor, the recovered Renaissance Fair segment can be seen here: http://roosterteeth.com/episode/free-play-season-1...","player_loc":"https://roosterteeth.com/embed/free-play-season-1-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc2cdec0-3018-42f0-b5c4-e9513c0a44c3/sm/2013912-1447879684413-FP29-TH.jpg","duration":1478,"publication_date":"2015-11-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-13","changefreq":"weekly","video":[{"title":"2015:E13 - Who Deserves The Madden Curse? - #13","description":"Join Jack Pattillo, Tyler Coe, Brandon Farmahini as they discuss Ronda Rousey vs Holly Holm, The Madden Cover Curse, Tyler's trip to College Gameday, the Russian Doping Scandal, a new F&!@ You Tyler segment, Andy Dalton vs JJ Watt, the NFL weekend that was, the CFB Playoffs and more on this week's episode of Sportsball! This episode episode originally aired on November 18th, 2015.\n\n3:20 - UFC/Ronda Rousey\n\n7:51 - Madden Curse\n\n20:58 - College GameDay in Waco\n\n25:23 - Russia Doping Scandal\n\n37:58 - F&!@ You Tyler\n\n41:30 - NFL/NFL Upsets\n\n51:41 - NCAA Basketball\n\n53:36 - NBA\n\n59:42 - Rooster Teeth Fantasy Football\n\n1:01:42 - Pitlo Picks","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd206655-2a38-47fe-a6c3-f6c71fbddf2b/sm/2013912-1447872597314-SB13_-THUMB.jpg","duration":4263,"publication_date":"2015-11-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-five-nights-at-freddy-s","changefreq":"weekly","video":[{"title":"S3:E4 - Five Nights at Freddy's In Real Life","description":"Would being trapped inside a tiny room, watching lovable characters roaming dimly lit hallways actually be scary Watch to find out how many nights Michael and Gavin can survive.\n\n\n\nCheck out the Behind the Scenes, Extended Cut, and Sponsor Edition!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-five-nights-at-freddy-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9c00103-7852-4dad-b91b-cd9e8c136bab/sm/2013912-1447863615929-FNAF_Thumbnail_03.jpg","duration":706,"publication_date":"2015-11-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-time-capsule-cast-350","changefreq":"weekly","video":[{"title":"2015:E350 - Michael and the First Aid Squad - #350","description":"It's RT Podcast #350! Join Gus Sorola, Gavin Free, Michael Jones and Burnie Burns as they discuss first aid on this week's RT Podcast! This episode originally aired on November 16, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-time-capsule-cast-350","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dcf8a90-a330-4924-bbcf-388d22ff30be/sm/2013912-1447719204059-rtp350_-_THUMB.png","duration":3543,"publication_date":"2015-11-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-forgetful-thanks-black-hallway","changefreq":"weekly","video":[{"title":"2015:E4 - Forgetful Thanks, Black Hallway","description":"Geoff forgets how to express his gratitude. Burnie talks about how Geoff once painted his hallway black.\n\nAudio from Let's Watch: Until Dawn Part 7: \n\nand The Rooster Teeth Podcast #346: http://roosterteeth.com/episode/rt-podcast-season-...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-forgetful-thanks-black-hallway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b60a402-b8f4-403d-ae15-fa8e6acebe13/sm/2013912-1447085053307-rtaa205tn1.jpg","duration":92,"publication_date":"2015-11-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-matt-s-vlog-november-15-2015","changefreq":"weekly","video":[{"title":"2015:E5 - Matt’s Vlog: November 15, 2015","description":"Matt discusses lots of things, but most importantly he gives a sneak peek at Day 5.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-matt-s-vlog-november-15-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8659b16c-25bc-4844-9349-0dfd38bf0265/sm/2013912-1458752043020-11-15-15_Thumbnail.jpg","duration":989,"publication_date":"2015-11-15T23:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-chapter-3","changefreq":"weekly","video":[{"title":"V3:E3 - Volume 3, Chapter 3: It's Brawl in the Family","description":"The Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-chapter-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35f93a6b-25d5-468c-a724-d2ff87e81470/sm/2013912-1447492749300-RWBY_THUMB_Ep03_02.png","duration":994,"publication_date":"2015-11-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-40","changefreq":"weekly","video":[{"title":"S4:E40 - Hats Are Cool! - #40","description":"Hats are funny. Color coded hats are better. Color coded hats with your name and/or \"butt hole\" on them are god damn hilarious and are now a requirement for everybody on On The Spot from now on. This is law now. I HAVE SPOKEN! This episode originally aired November 12, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ea39720-1619-4c33-882a-993ac9092358/sm/2013912-1447443039403-ots_40_thumb.jpg","duration":2389,"publication_date":"2015-11-13T18:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-the-king-s-new-shoes-free-play-28","changefreq":"weekly","video":[{"title":"S1:E29 - The King's New Shoes - #28","description":"Get your Free Play Shirt HERE!!! \n\nAfter incinerating his shoes during this year's Extra Life stream, Meg cooks up a suprise to cheer up the still-grieving Ryan.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-the-king-s-new-shoes-free-play-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/337cbbfa-71cc-408d-8354-3107da844c7e/sm/2013912-1447437565981-FP28_-_THUMB_v3.jpg","duration":1030,"publication_date":"2015-11-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-michael-gets-tased","changefreq":"weekly","video":[{"title":"2015:E29 - Michael Gets Tased [Warning: Graphic]","description":"[Warning: Graphic] Michael gets tased during the RT Extra Life stream. An event in the making since anyone can remember!","player_loc":"https://roosterteeth.com/embed/rt-life-2015-michael-gets-tased","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ca3312f-7ece-430a-96c9-94f9e71e76aa/sm/2013912-1447364598245-RT_Life_Michael_Gets_Tased_Thumbnail.jpg","duration":330,"publication_date":"2015-11-12T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1-week-one","changefreq":"weekly","video":[{"title":"S1:E2 - Week One","description":"Thanks to Onnit for sponsoring this series! Josh, Meg, and Zach crash into a variety of hurdles during their first week, including tempting donuts, ornery canines, and... brain trauma. Seriously.","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1-week-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bb95203-48a1-4be8-bf86-97721d07ba9a/sm/2013912-1447345688763-buff_buddies_2.png","duration":461,"publication_date":"2015-11-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-missouri-campus-protest-12","changefreq":"weekly","video":[{"title":"2015:E12 - Missouri Campus Protest - #12","description":"Join Jack Pitlo, Tyler Coe, Geoff Ramsey as they discuss the Missouri campus protests, the Mizzou President resigning, LSU vs Alabama, the worst college football fans, the NBA, the new \"F%$k you Tyler\" segment and more on this week's episode of Sportsball! This episode originally aired on November 10th, 2015. 3:15 - University of Missouri Protests, Resignations\n\n13:34 - Alabama vs LSU\n\n21:45 - College Football\n\n24:06 - NFL/NBA\n\n27:11 - Worst Fans In College Football\n\n35:37 - Greg Hardy and the Cowboys\n\n38:18 - F%$k You Tyler\n\n41:30 - Odell Beckham Jr. Water Cooler\n\n45:31 - Hockey\n\n49:30 - What is a sport\n\n51:40 - Rooster Teeth Fantasy Football\n\n54:47 - Sportsball Picks","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-missouri-campus-protest-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee613084-c7c7-4799-b7bb-7d7ee6949877/sm/2013912-1447263832790-sb12_-_THUMB.png","duration":3589,"publication_date":"2015-11-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-27","changefreq":"weekly","video":[{"title":"S1:E28 - Pokemon Snap! - #27","description":"Meg and Ryan reflect on Extra Life and the untimely demise of Ryan's shoes. Plus, Ryan questions the reality of a certain cat in this week's Internet Show and Tell. Finally, our favorite Pokemon are back for today's Pokemon Snap challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf921943-03ef-4716-a52f-2280012d2181/sm/2013912-1447260715018-FP27_-_THUMB.png","duration":940,"publication_date":"2015-11-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-high-school-reunion-prank-war","changefreq":"weekly","video":[{"title":"S2:E9 - High School Reunion Prank War","description":"Chris and Aaron incite confusion and fear at their high school reunions as they attempt to ruin each other's reputation, one prank challenge at a time.\n\nSocial Disorder is not your normal prank, hidden camera show. It's a prank war where the hosts design social experiments to humiliate and embarrass each other, not the public.\n\nRT and FAVE this tweet to #VOTECHRIS: https://twitter.com/roosterteeth/status/6645444615...\n\nRT and FAVE this tweet to #VOTEAARON: https://twitter.com/roosterteeth/status/6645443637...\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://bit.ly/SocialDisorder_YogaShirt","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-high-school-reunion-prank-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f26a7a90-d89b-4374-860c-246045c2673e/sm/2013912-1447263671929-SOCIAL_DISORDER_EP06_THUMBNAIL_DH.png","duration":738,"publication_date":"2015-11-11T17:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-announcement","changefreq":"weekly","video":[{"title":"2015:E28 - The Amazing Race!","description":"Burnie and Ashley make a huge announcement - they're jetting off to parts unknown to compete on the next season of CBS's hit show The Amazing Race! Find out more about the grueling training they both had to endure to make the cut.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91e6ff98-79b3-4469-a202-07ee551b4873/sm/2013912-1447195006129-AmazingRaceThumb1-2.png","duration":262,"publication_date":"2015-11-11T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-349-post-show","changefreq":"weekly","video":[{"title":"2015:E22 - Podcast #349 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Matt Hullum as they discuss British musicians singing in American accents on this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-349-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d98387da-d220-4447-8220-6308f0abce15/sm/2013912-1447259477525-rtp349_-_PS_-_thumb.png","duration":1544,"publication_date":"2015-11-11T16:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-fallout-4-in-real-life-behind-the-scenes","changefreq":"weekly","video":[{"title":"S3:E3 - Fallout 4 In Real Life - Behind the Scenes","description":"This episode of Immersion brought to you by Fallout 4 https://www.fallout4.com\n\nWatch the Behind the Scenes of Fallout 4 In Real Life. Gavin and Michael are stranded in an open world wasteland and their only hope is to find the code to Vault 619.\n\n\n\nWatch Part 1 and Part 2!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-fallout-4-in-real-life-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a23c1c29-8f37-4708-b57f-8466eece07dd/sm/2013912-1447092797205-BTS_OPENWORLD.png","duration":107,"publication_date":"2015-11-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-349","changefreq":"weekly","video":[{"title":"2015:E349 - The Seduction Discussion - #349","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss Extra Life, Hurricane Gus, the origin of the cartoon heart and more on this week's RT Podcast! This episode episode originally aired on November 10, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-349","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3c41736-56fc-4712-964e-abbf9e8f1592/sm/2013912-1447174420895-rtp349_-_THUMB.jpg","duration":5688,"publication_date":"2015-11-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-minimations-straight-outta-rt","changefreq":"weekly","video":[{"title":"SOR:E4 - Straight Outta RT","description":"Burnie swims for his life, as Gavin, Gus, and Brandon debate if he can make it back to shore. Meanwhile Geoff and Michael become top tier investigators, armed with their new truck technology. \n\nMade by Rooster Teeth community GTA machinima team The Lone Few.\n\nIncludes audio from The Rooster Teeth Podcast #313 % Sunday Driving - How Muddy do You Like It","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-minimations-straight-outta-rt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9e672d4-e3dd-4e02-a8ec-a8db78752125/sm/2013912-1447095266678-SoRT_EP04_THUMB.jpg","duration":111,"publication_date":"2015-11-09T18:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-burnie-s-vlog-november-8-2015","changefreq":"weekly","video":[{"title":"2015:E4 - Burnie’s Vlog: November 8, 2015","description":"Burnie fills you in on what’s going on at Rooster Teeth while hanging out in the manliest, most romantic room ever.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-burnie-s-vlog-november-8-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d671a899-dbde-471c-b0b3-09fbd79e45fd/sm/2013912-1458752005582-11-8-15_Thumbnail.jpg","duration":420,"publication_date":"2015-11-08T23:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-scorpion-s-family-fitness-dojo","changefreq":"weekly","video":[{"title":"S6:E26 - Scorpion's Family Fitness Dojo","description":"Visit Scorpions Family Fitness Dojo to learn the best moves, the coolest tricks and the finest fatalities this side of Outworld!!!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-scorpion-s-family-fitness-dojo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce71ae42-c7d7-4bf1-ab94-6a531bfe25bd/sm/2013912-1446857632039-RTshortScorpionThumb5.png","duration":132,"publication_date":"2015-11-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-39","changefreq":"weekly","video":[{"title":"S4:E39 - Gus or Google? - #39","description":"Thanks to our sponsors: Rock Band 4 (http://goo.gl/o7PlfC) andTrunk Club (http://bit.ly/1Hz4kLY) \n\nOnce upon a time, which is a fancy way of saying exactly one year ago today, there was a youngish man-boy-child who had a dream of creating a magical place for everyone in the world to gather each week in harmony and celebrate the joy of improvisational comedy as well as the wonder of friendship and camaraderie. But that didn't work out and instead On The Spot was created and he has questioned all of his life choices ever since. Happy 1 Year Anniversary, On The Spot! Let's see how long we can keep this up...that's what she said.\n\nOh yeah, and congrats to the Rooster Teeth Podcast on it's upcoming 350th episode. Please don't make me do On The Spot for that long. xoxo","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e78e83f-91b6-46af-8259-40f869212c59/sm/1461653-1446828382460-OTS39-TempTH.jpg","duration":2206,"publication_date":"2015-11-06T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-26","changefreq":"weekly","video":[{"title":"S1:E27 - Safe for Work Russian Roulette - #26","description":"Meg's getting her butt massaged by The Wolf, while Ryan is hanging on with his for dear life. Lots of butts today. Plus, Meg puts a new spin on an old entry in this episode's Internet Show and Tell. Finally, Tyler and Mariel come on set to help Meg and Ryan with a family friendly re-enactment of The Deer Hunter's iconic Russian roulette scene.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c5e07fa-3181-438d-a38a-99b8a1310f44/sm/1461653-1446830458233-fp26_-_THUMB.png","duration":1079,"publication_date":"2015-11-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/buff-buddies-season-1","changefreq":"weekly","video":[{"title":"S1:E1 - Week Zero","description":"Thanks to Onnit for sponsoring this series! Josh, Meg, and Zach assess their fitness goals and prepare to embark on an intense 16-week workout in order to lose weight, win races, and recreate famous music videos","player_loc":"https://roosterteeth.com/embed/buff-buddies-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86ce1524-1c8e-4324-8835-0494fd168950/sm/2013912-1446782410358-BuffBuddies_ep1thumb.jpg","duration":439,"publication_date":"2015-11-06T03:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-open-world-part-2","changefreq":"weekly","video":[{"title":"S3:E2 - Fallout 4 In Real Life - The Finale","description":"This episode of Immersion brought to you by Fallout 4 https://www.fallout4.com\n\nCan Gavin and Michael complete Coe's mission Will they ever make it safely to Vault 619 Find out in the second installment of Immersion - Open World! \n\n\n\nWatch Part 1 and Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-open-world-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65351795-344e-4a5f-811d-015c615431ec/sm/1461653-1446680038492-Open_world_pt2_thumb.png","duration":528,"publication_date":"2015-11-05T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-11","changefreq":"weekly","video":[{"title":"2015:E11 - Who Farted On Bob Costas' Pillow? - #11","description":"Join Jack Pattillo, Tyler Coe and Shannon McCormick as they discuss the Royals winning the World Series and Rusty Kuntz, the College Football Playoffs, Farting on Bob Costas Pillow, Jeff Gordon and NASCAR, the Sepp Blatter Scandal, Colin Kaepernick for sale on Amazon, the Denver Broncos, what a Gooch is, the Rugby World Cup Final and more on this week's episode of Sportsball! This episode originally aired on November 3rd, 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e54a9309-decd-4f28-8d7a-c8a9b66dbb10/sm/2013912-1446660121423-SB11_-_THUMB.jpg","duration":3953,"publication_date":"2015-11-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-25","changefreq":"weekly","video":[{"title":"S1:E26 - William Tellin' It - #25","description":"With their costumes off as a new month rolls in, Meg and Ryan each reflect on their Trick-or-Treating experiences this year (or lack thereof). Plus, cats get devious and Red Riding Hood gets heroic in today's Internet Show and Tell. Finally, Meg and Ryan channel their inner Katniss and/or Lara Croft in this week's archery challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52c3fa10-10be-4349-a47e-77de6038206b/sm/2013912-1446655697539-FP25_-_THUMB.jpg","duration":844,"publication_date":"2015-11-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-348-post-show","changefreq":"weekly","video":[{"title":"2015:E21 - Podcast #348 Post Show","description":"Join Kerry Shawcross, Lindsay Jones, Michael Jones, Miles Luna as they continue the appetizer debate and discuss the fashion and function of thongs on this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-348-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77e57273-5295-4256-9320-92bdec87636d/sm/1461653-1446654203707-rtp348_-_PS_-_THUMB.jpg","duration":1236,"publication_date":"2015-11-04T16:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-appetizer-argument-348","changefreq":"weekly","video":[{"title":"2015:E348 - The Appetizer Argument - #348","description":"Join Kerry Shawcross, Lindsay Jones, Michael Jones and Miles Luna as they discuss if chocolate truly is a candy and the age-old debate of Cheddar Biscuits vs. Breadsticks on this week's RT Podcast! This episode episode originally aired on November 2nd, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-appetizer-argument-348","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee4469cf-4545-4c0f-8984-f6e639815525/sm/2013912-1446569183160-rtp348_-_thumb.jpg","duration":6499,"publication_date":"2015-11-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-6","changefreq":"weekly","video":[{"title":"S1:E6 - Naomi Kyle Raids Lara Croft's Tomb - Episode 6","description":"This week Colton and friends learn not to fuck with Scientology, that Naomi Kyle wants to have a fulfilling relationship with Lara Croft and that even if if it does watch you masturbate in your living room, the Kinect is integral to the Xbox experience.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe107e90-a082-40ac-b61d-1a6ca19c2522/sm/2087702-1446440734649-RTES_THUMBNAIL_TEMPLATE-2.png","duration":3180,"publication_date":"2015-11-02T23:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-ghost-fuckers-extended-cut","changefreq":"weekly","video":[{"title":"S6:E25 - Ghost Fuckers - Extended Cut","description":"Enjoy this extended cut of Ghost Fuckers! Join Devlin Boof and Carly Johnson as they attempt to heal the hearts of the dead. They not only search for ghosts, they have sex with them!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-ghost-fuckers-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70fc9afe-4d92-4a50-87d7-f50a0c9fc9fa/sm/2013912-1446499527742-Ghost_Fuckers_extended_Thumb.png","duration":463,"publication_date":"2015-11-02T21:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-massive-crusher","changefreq":"weekly","video":[{"title":"S1:E46 - Massive Crusher","description":"Watching stuff get crushed is always fun, especially in slow motion. So Gav and Dan raise a giant block weight into the air and drop it onto a pile of innocent GoGurt.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-massive-crusher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c61ce30d-b987-433a-ab37-c96958539e27/sm/2013912-1446498543937-Screen_Shot_2015-11-02_at_3.08.45_PM.png","duration":308,"publication_date":"2015-11-02T21:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-the-contractor-conumdrum","changefreq":"weekly","video":[{"title":"2015:E3 - The Contractor Conundrum","description":"Burnie and Gus talk about their not-so-awesome experiences working with contractors.\n\nAudio from The Rooster Teeth Podcast #330: http://roosterteeth.com/episode/rt-podcast-season-...\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-the-contractor-conumdrum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a288523e-cb62-423f-a1ba-c24278a7a738/sm/2013912-1446480763350-rtaa204tn1.jpg","duration":92,"publication_date":"2015-11-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-3-fallout","changefreq":"weekly","video":[{"title":"S3:E1 - Fallout 4 In Real Life","description":"This episode of Immersion brought to you by Fallout 4 https://www.fallout4.com\n\nGavin and Michael are stranded in an open world wasteland and their only hope is to find the code to Vault 619.\n\n\n\nWatch Part 2 and Behind the Scenes!","player_loc":"https://roosterteeth.com/embed/immersion-season-3-fallout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19c1524a-2f86-4450-a5b9-f3ef9e1a1a5f/sm/2013912-1446440233980-Immersion.jpg","duration":665,"publication_date":"2015-11-02T04:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-burnie-s-vlog-november-1-2015","changefreq":"weekly","video":[{"title":"2015:E3 - Burnie’s Vlog: November 1, 2015","description":"Burnie talks about the launch of the Off Topic Podcast, the Rooster Teeth management retreat, and the Lazer Team soundtrack, all while looking like a glorious backlit angel.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-burnie-s-vlog-november-1-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8f15d1c-dcb1-4fad-8597-8148c775f96b/sm/2013912-1458751980938-11-1-15_Thumbnail.jpg","duration":283,"publication_date":"2015-11-01T23:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cunning-stunts-3-the-fast-and-the-free","changefreq":"weekly","video":[{"title":"2016:E247 - GTA V - Cunning Stunts 3: The Fast and the Free","description":"When the going gets tough, go harder. When that doesn't work, go to a strip club. The AH Crew bring you their latest adventures in GTA Online: Cunning Stunts.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cunning-stunts-3-the-fast-and-the-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1c13927-5481-4007-8370-10267ad657e4/sm/2013912-1470428344912-Cunning_stunts_3_Thumbnail.jpg","duration":2042,"publication_date":"2016-08-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-36","changefreq":"weekly","video":[{"title":"2016:E36 - Kill All The Rabbits - #36","description":"The AH Crew sit down to talk about dead animals, DC movies, broken bones, and more on this week's Off Topic!\n\nThis episode originally aired August 5, 2016 and is sponsored by Blue Apron (http://cook.ba/2anKnjV) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fdf3526-3946-44a6-bddb-9bc8e23dc726/sm/2013912-1470433911785-OFF36_-_THUMB.jpg","duration":10787,"publication_date":"2016-08-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-wwe-2-k16-tournament-round-3","changefreq":"weekly","video":[{"title":"2016:E77 - WWE 2K16 Tournament - Round 3","description":"In this episode of WWE 2K16, Gus ruins everything. Watch Adam Ellis, Kerry, Gus, and Elyse duke it out for the Money in the Bank in Round 3 of the Rooster Teeth tournament.\n\nMusic Credit: Audio Network - \"Dance at The Rio Grande\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-wwe-2-k16-tournament-round-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4f20c15-800f-4178-98dc-41740b71d642/sm/2013912-1470170030223-WWE_THUMB.jpg","duration":1179,"publication_date":"2016-08-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-9","changefreq":"weekly","video":[{"title":"2016:E9 - Episode #9: Curse of the Cannibal Confederates","description":"Jefferson Davis once said that “the south will rise again.” He just failed to mention that it’d be in the form of flesh-eating zombies. Join AH in watching Curse of the Cannibal Confederates for the Season 2 premiere of Theater Mode!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ef565d7-7489-445b-8f6b-8e27cbca7966/sm/2013912-1470412517784-TM_-_Curse_-_THUMB.jpg","duration":5250,"publication_date":"2016-08-05T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch-lucioball","changefreq":"weekly","video":[{"title":"2016:E246 - Overwatch: Lucioball","description":"I love Luci because you see\n\nHis gun makes baddies dead as they can be\n\nSometimes he slows down but then\n\nHow he loves amping up again\n\nLuci fills the bad guys full of dread\n\nAll while wearing frog masks on his head\n\nOn colsole - also on PC.\n\nI just love Luci.\n\nAnd he loves me.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch-lucioball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2121968-9445-4661-8e80-71c0b2c94f79/sm/2013912-1470411157655-LP_Overwatch_Lucioball.jpg","duration":1353,"publication_date":"2016-08-05T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-15","changefreq":"weekly","video":[{"title":"2016:E76 - VR the Champions - Hotdogs, Horseshoes and Hand Grenades","description":"This time on VR the Champions. Gavin shows his lack of skills with grenades, and Ryan becomes a secret agent of doom against the fierce blue figured cardboard cutouts and evil death robots.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d3612fd-31b8-4c01-9383-fa9b983694ba/sm/2013912-1470336925832-vrchamponms.jpg","duration":1586,"publication_date":"2016-08-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-nine","changefreq":"weekly","video":[{"title":"2016:E9 - Episode Nine","description":"Just how dark can a cave get? Our heroes are about to find out! Follow our Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael and Dungeon Master Frank “Peace gentle bird people”","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-nine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b39f03bf-27f6-4db9-95c0-6fdf439b3733/sm/2013912-1470336731718-HH9_-_THUMB.jpg","duration":4567,"publication_date":"2016-08-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-40","changefreq":"weekly","video":[{"title":"2016:E245 - Let's Watch - Telltale Batman - Episode 1: Realm of Shadows (Part 2)","description":"Gavin joins Ryan, Michael and Jeremy as they continue the adventures of the Caped Crusader in Telltale's new Batman: Realm of Shadows.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b33ef78-f1f9-4b36-ab78-141612e9bb10/sm/2013912-1470324278847-batman_thumb.jpg","duration":4422,"publication_date":"2016-08-04T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-219-hole-in-three","changefreq":"weekly","video":[{"title":"2016:E244 - Minecraft - Episode 219 - Hole In Three","description":"Oh man, guys. We got Ryan fuckin' good. We painstakingly replicated Ryan's house on bedrock, Edgar hole and all, built a sweet-ass rail system that lets him get in and out with style, made sure all the walls look pristine, stocked Ryan with an adequate supply of minecarts so the rail system will never betray him, gave him plenty more room to start building weird shit, and even gave Giant Jack a nice little makeover. Ryan's going to be so pissed at how much better his house is now. Perfect, A++, top shelf prank. Fuck, dude. We totally sheganigans'd Ryan. We shenanigans'd him so fucking good.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-219-hole-in-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe47fa1-38e9-43bc-8304-f0703bfb28f6/sm/2013912-1470259525259-Minecraft_219_Thumb.png","duration":2229,"publication_date":"2016-08-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-39","changefreq":"weekly","video":[{"title":"2016:E243 - Let's Watch - Telltale Batman - Episode 1: Realm of Shadows (Part 1)","description":"Join Ryan, Michael and Jeremy as they begin the adventure of Telltale's new Batman: Realm of Shadows.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d0f9d34-9a0d-4f1c-ad85-37f256ff2c2c/sm/1104396-1470251216501-batman_thumb.jpg","duration":2577,"publication_date":"2016-08-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overcooked-part-2","changefreq":"weekly","video":[{"title":"2016:E242 - Overcooked Part 2","description":"That's right, Overcooked is back. Join Ryan, Jack, Gavin and Jeremy as they virtually prepare foods in perplexing kitchens. The difficulty level has gone up. The amount of burning food is increasing. What else could you ask for?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overcooked-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c41572e9-4373-4852-91af-b4fefe5ef37d/sm/2013912-1470177653998-LP_Overcooked_Part2_THUMB.png","duration":2772,"publication_date":"2016-08-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-unboxing-and-tasting-the-xbox-one-s","changefreq":"weekly","video":[{"title":"2016:E75 - Unboxing (and Tasting) the Xbox One S","description":"Yo! We were not in any way sponsored to make this video. Nobody sent us a damn thing. We went to the store and bought this with our hard earned CheevoBux. It certainly would have been nice to be sent a shiny new Xbox One S, but nope! Out mailbox was super crazy empty today. But fuck it. We got ourselves a cool new toy anyway. Maybe for Project Scorpio? *wink wink nudge nudge*","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-unboxing-and-tasting-the-xbox-one-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c45eea2e-1a48-4b23-9f68-2e68638d4905/sm/2013912-1470171842977-unboxing_thumb.jpg","duration":332,"publication_date":"2016-08-02T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-7-days-to-die-part-1","changefreq":"weekly","video":[{"title":"2016:E241 - 7 Days to Die Part 1","description":"Get your tickets for two days and one night of zombie apocalypse fun in 7 Days to Die Part 1. Watch in awe as our four friends - Geoff, Jack, Michael, and Jeremy - craft, chop, get dysentery, and otherwise try to survive the wasteland. Don't delay - seats are almost sold out. Also, there may be a sweet cotton candy machine somewhere. How can you NOT buy a ticket now?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-7-days-to-die-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4a69641-f524-461c-ad0e-220fa873ca49/sm/2013912-1470150806291-LP_7DaystoDie_Part1_THUMB.png","duration":4213,"publication_date":"2016-08-02T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-38","changefreq":"weekly","video":[{"title":"2016:E240 - Let's Watch - Edge of Nowhere","description":"Join the AH crew as Geoff tries to play Edge of Nowhere using the Oculus Rift.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65a1e2d4-b1ee-4cc2-af49-b87b123139d3/sm/2013912-1470073296457-eon_1.jpg","duration":3439,"publication_date":"2016-08-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-328","changefreq":"weekly","video":[{"title":"2016:E34 - Little Box Boy! - AHWU for August 1st, 2016 (#328)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU || \n\nWitness the birth of the newest member of the Achievement Hunter crew - wee little Box Boy. And now his youthful excitement for all things is quickly and forcefully drained out of his eyeballs - literally drained out. OH LORDY! They're stabbing out his eyes! Watch in horror as the cardboard blood trickles out the empty sockets! Now he's being decapitated from Jeremy's surrogate body! What kind of monsters would do such a thing?\n\nRest in peace, little Box Boy. 2016-2016 - no living relatives to mention. Funeral service will be held this Friday, August 5th, wherever you may find dead cardboard boxes with faces drawn on them. Rest well, little angel. You have been unshackled from the pains of this mortal world.\n\n\n\nWatch the Video of the Week and the Community vid!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-328","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb67e7cb-46e9-40b9-b8ec-41319ab8c331/sm/2013912-1470088293176-ahwu_thumb.jpg","duration":543,"publication_date":"2016-08-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-porcunipine-2","changefreq":"weekly","video":[{"title":"2016:E239 - Porcunipine Part 2","description":"Funhaus saw that the Achievement Hunter boys had a really good time shoving spikes into their mouths and butts and belly buttons and pee-pee holes and then shooting them out at intense velocities at each other, so they decided to come and join in. Some could even say that playing Porcunipine is when Funhaus is at their...Peake performance.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-porcunipine-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fed6421-9b0e-4173-96f3-5ecc83f6889a/sm/2013912-1470075864956-porc.jpg","duration":1279,"publication_date":"2016-08-01T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-wwe-2-k16-tournament-round-2-2","changefreq":"weekly","video":[{"title":"2016:E74 - WWE 2K16 Tournament: Round 2","description":"It's Round 2 of the Rooster Teeth WWE 2016 tournament featuring Achievement Hunter and Funhaus. This episodes contestants are are Matt Peake, James Willems, Matt Bragg and Trevor Collins. Who will win and move on to compete for the RT Championship?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-wwe-2-k16-tournament-round-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c861953e-7ce0-40f0-b912-c41dcebfbe33/sm/2013912-1469909759803-AH_WWE-Round2_THUMB.png","duration":1132,"publication_date":"2016-08-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-game-time-with-meg","changefreq":"weekly","video":[{"title":"2016:E238 - Game Time with Meg","description":"Join Burnie and Meg as they play Super Meat Boy!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-game-time-with-meg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/410d1b2f-e358-4cb3-89f4-fb8ec9708d58/sm/2013912-1469994745144-gametime_thumb.jpg","duration":4919,"publication_date":"2016-07-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-8","changefreq":"weekly","video":[{"title":"2016:E4 - Last Call #8","description":"The AH Crew sit down to talk about The Killing Joke, Mark Hamill, Batman comics and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a47acf14-eaa9-4acc-a856-567d4176dbc1/sm/2013912-1469838798833-OFF35_-_PS_-_THUMB.jpg","duration":1128,"publication_date":"2016-07-31T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-142-jeremy-vs-michael","changefreq":"weekly","video":[{"title":"2016:E17 - Episode 142: Jeremy vs Michael","description":"Grifball with Solo cups? Yes, please! Michael challenges Jeremy to a game of beer pong in Halo 5.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-142-jeremy-vs-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bb3b652-8072-4f3e-877f-667836d9fce3/sm/2013912-1469820877814-THumb_VS_Jeremy_Michael_Halo_5_Beer_Pong_2.jpg","duration":944,"publication_date":"2016-07-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cunning-stunts-2-the-sprunkening","changefreq":"weekly","video":[{"title":"2016:E237 - GTA V - Cunning Stunts 2: The Sprunkening","description":"More chaos, more wreckage, more mayhem, more Sanchez. Achievement Hunter brings you part 2 of our Cunning Stunts DLC Let's Play. Don't like it? Then get Sprunked.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cunning-stunts-2-the-sprunkening","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8402aa75-4e94-40f2-a975-ed149f671028/sm/2013912-1469646773118-CunningStunts_part_2_Thumbnail.jpg","duration":1906,"publication_date":"2016-07-31T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-35","changefreq":"weekly","video":[{"title":"2016:E35 - Vomit King - #35","description":"The AH Crew sit down to talk about their eighth birthday, accidental explosives, homemade movies and more on this week's Off Topic!\n\nThis episode originally aired July 29, 2016 and is sponsored by MVMT Watches (http://bit.ly/29ACJT8)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee1533c2-d8a1-4d47-859a-68d89931492b/sm/2013912-1469838813198-OFF35_-_THUMB.jpg","duration":6728,"publication_date":"2016-07-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-wwe-2-k16-tournament-round-1","changefreq":"weekly","video":[{"title":"2016:E72 - WWE 2K16 Tournament - Round 1","description":"Are you jabronies ready for some more wrastlin'?!? Well too bad, because Rooster Teeth had a little in-house tournament of WWE 2K16, and we're bringin' the thunder. Oh yeah!!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-wwe-2-k16-tournament-round-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b419897a-9f13-4a31-85f7-2a6953b4abe1/sm/2013912-1469645965122-wwetest2.jpg","duration":1061,"publication_date":"2016-07-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-law-breakers","changefreq":"weekly","video":[{"title":"2016:E236 - LawBreakers","description":"Thanks to Nexon for sponsoring this video! || In a move surprising absolutely nobody, Funhaus decided to be dirty dirty law breakers at RTX 2016. Achievement Hunter took it upon themselves to be the keepers of peace in this dirty world, hoping to bring Funhaus to justice. Can Achievement Hunter beat Funhaus in a best of three/best of five match, or will Funhaus get away with their crimes?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-law-breakers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c4ceaf8-dfe9-44b0-9307-0d7fe9220fc8/sm/2013912-1469640497930-AHFH_Lawbreakers_Thumb_v003.png","duration":2173,"publication_date":"2016-07-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-14","changefreq":"weekly","video":[{"title":"2016:E71 - VR the Champions - Star Wars: Trials on Tatooine","description":"Join Gavin, Ryan, Jack and Jeremy as they get to experience the world of Star Wars VR in the all new Trials on Tatooine.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0cea322-bc26-407f-910f-59068750e787/sm/2013912-1469737429260-starwars_thumb.jpg","duration":533,"publication_date":"2016-07-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-eight","changefreq":"weekly","video":[{"title":"2016:E8 - Episode Eight","description":"It’s a battle against the gooey cube. Follow our Heroes and Halfwits Gus, Geoff, Griffon, Ryan, Michael and Dungeon Master Frank in and out of hidden rooms in the cave.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-eight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a3ce99c-000c-42dc-ad3a-6bd85417c2fb/sm/2013912-1469721931372-HH8_-_THUMB.jpg","duration":4019,"publication_date":"2016-07-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-super-smash-brothers-wii-u-full-s-t-r-e-a-m","changefreq":"weekly","video":[{"title":"2016:E70 - Super Smash Brothers Wii U - FULL STREAM","description":"It's a beautiful day to SMASH!! Join the crew as they beat each other up as beloved Nintendo characters and have a grand old time doing it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-super-smash-brothers-wii-u-full-s-t-r-e-a-m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67fbdc08-da77-4fc9-aca9-fe3382d9d3bc/sm/2013912-1469638928600-Super_Smash_Thumb_2.jpg","duration":6999,"publication_date":"2016-07-28T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-we-happy-few-game-preview-part-2","changefreq":"weekly","video":[{"title":"2016:E235 - Let's Watch - We Happy Few (Game Preview) - Part 2","description":"The Stream Team takes on Crazy Legs and steals a doll from a man this week in We Happy Few!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-we-happy-few-game-preview-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b455a948-71c9-4de6-b11f-8fde219de647/sm/2013912-1469656971191-We_Happy_Few_2_Thumbnail.jpg","duration":2244,"publication_date":"2016-07-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-218","changefreq":"weekly","video":[{"title":"2016:E234 - Minecraft - Episode 218 - Hole Lot of Renovating","description":"Alright boys. We're making great progress! We've got a nice, deep hole and a bit of a new house down there. The track is coming along nicely, and we've got an Edgar pit in progress. We should be done in no time. \n\n\n\nWait. Jeremy. Jeremy!? What are you doing to those other houses? You little prick! We didn't budget for those! How are we supposed to afford finishing Ryan's house AND fix all the houses you just \"renovated\"? And it's not like we can undo these new changes. Half of Gavin's house is gone! \n\n\n\nHere. Take this stack of wood and get building. It's all we can afford. Maybe he won't notice.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-218","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3090652b-e855-4665-9871-17d2e82b3246/sm/1104396-1469668480031-Minecraft_218_RyanPt2_Thumb.png","duration":2438,"publication_date":"2016-07-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-overwatch-with-michael-jones-full-stream","changefreq":"weekly","video":[{"title":"2016:E69 - Overwatch with Michael Jones - FULL STREAM","description":"Man oh man Michael can't get enough of Reaper. Reaper, reaper, reaper. Will he ever pick another hero to play? Watch to find out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-overwatch-with-michael-jones-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/236a54a3-10c4-4758-890a-abf2b06cddac/sm/2013912-1469638505974-michael_overwatch_thumb.jpg","duration":4087,"publication_date":"2016-07-27T17:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-hitman-the-hunt-for-gary-busey","changefreq":"weekly","video":[{"title":"2016:E233 - Let's Watch - Hitman - The Hunt for Gary Busey","description":"\"Alright Agent 47. This one should be easy. Your target is Gary Busey. This is a highly classified mission. Steve Buscemi is having Busey offed in order to clinch the Oscar for 'Homeliest Celebrity who still gets work in Hollywood' this year, so we absolutely CANNOT leave a paper trail. This means you will not be provided a dossier, an identifying photo - absolutely nothing. Hopefully this should not really be an issue for you, 47.\"\n\n\"...\"\n\n\"Something the matter, 47?\"\n\n\"I've never seen a Gary Busey movie before.\"\n\n\"How is that even possible? Point Break? Predator 2? Sharknado 4?\"\n\n\"Nope.\"\n\n\"Not even Lethal Weapon?\"\n\n\"Not even Lethal Weapon.\"\n\n\"What? What the hell, 47? How have you never seen a Gary Busey movie?\"\n\n\"Gee. I don't know. Maybe I was too busy murdering people all my life to fit watching a few very particular episodes of Entourage into my schedule.\"\n\n\"For God's sake, 47!\"\n\n\"....\"\n\n\"...\"\n\n\"We're fucked, aren't we?\"\n\n\"We're fucked.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-hitman-the-hunt-for-gary-busey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bf1b120-3349-4085-91be-aead442ef9df/sm/2013912-1469632915751-hitmantest1.jpg","duration":1800,"publication_date":"2016-07-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-euro-fishing","changefreq":"weekly","video":[{"title":"2016:E232 - Euro Fishing","description":"Pack your gear and hook a worm\n\nFill that cooler full of beer\n\nGrab a rod and hold it firm\n\n'Cause now's the perfect time of year\n\n\n\nTo mothafuckin' fish right in that mothafuckin' water\n\nAnd muthafuckin' catch um on your muthafuckin' hook\n\nOr just pull out the dynamite and muthafuckin' slaughter\n\nTons of fishy muthafuckas so now we gonna fuckin' book\n\n\n\nThree sweet first class fuckin tickets down to muthafuckin' Europe\n\n'Cause today we're Euro fishing without a muthafuckin' care\n\nMichael, Geoff, and Little J are gonna muthafuckin' stir up\n\nAll these muthafuckin' waters so you best not fuckin' dare\n\n\n\nTry to fight back, bite back, or tail whack you sad sack\n\nMuthafuckin fishes because now's the fuckin' time\n\nFor us to sit back, fish track, wisecrack and attack\n\nAll your muthafuckin asses and just hot damn it feels sublime","player_loc":"https://roosterteeth.com/embed/lets-play-2016-euro-fishing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ada69d4-141b-4775-b4ce-7febe90e6a9f/sm/2013912-1469548604067-Eurofishing_Thumb_v001.png","duration":1501,"publication_date":"2016-07-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-we-happy-few-game-preview","changefreq":"weekly","video":[{"title":"2016:E231 - Let's Watch - We Happy Few (Game Preview)","description":"Achievement Hunter pop their joy pills and enter the world of We Happy Few! We're taking a look at the Xbox One Game Preview so look for our continued adventures once the full game is released.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-we-happy-few-game-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/503dc6b8-3ed6-46e0-84a2-4a494a242297/sm/2013912-1469483612166-We_Happy_Few_Thumbnail.jpg","duration":2057,"publication_date":"2016-07-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch-mlg-edition","changefreq":"weekly","video":[{"title":"2016:E230 - Overwatch: MLG Edition","description":"\"OH GOOD LORD! Tracer - there's so much blood! There's so much fucking blood! It's all over the walls. It's coated my glasses and all in my eyes. It's even in my goddamn peanut butter! How could this happen, Tracer? Who would do such a thing? FUCK! Who COULD do such a thing?\" \n\n\"Literally anybody at all, love. Those are the the bloody corpses of Achievement Huntah. It was bound to be a massacre.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch-mlg-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89ba40c5-b3de-464c-8a8c-c9c53a826905/sm/2013912-1469464614587-Overwatch_AllLoss_Thumb_v003.png","duration":1800,"publication_date":"2016-07-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/schooled-season-1","changefreq":"weekly","video":[{"title":"S1:E1 - Schooled","description":"Thanks to Hello Lab for sponsoring this video. Rooster Teeth has teamed up with AT&T Hello Lab to release a series of videos about Geoff’s new team of kid gamers. And he’s made a bet with Gavin that his team can beat Achievement Hunter.\n\n\n\n\n\nIf Geoff’s team loses to Achievement Hunter, Geoff has to get a tattoo of Gavin’s nose on his body. So now Geoff is desperately looking to assemble an awesome team to save his skin.\n\n\n\n\nParents, if you think your kid has what it takes, submit a short video of your gamer to schooled@roosterteeth.com. Geoff is looking for kids ages 8-12, and everyone must be available to be in Austin, TX from August 5th-17th.\nKids, if you want to be a part of the team, your parents have to be the ones to submit. In your email submission, make sure to include your kid’s name, age, where you live and your phone number.\n\n\n\n\n\n\n\nAT&T Hello Lab Twitter: http://www.twitter.com/atthellolab\n\n\n\n\nAT&T Hello Lab Instagram: http://www.instagram.com/atthellolab\n\n\n\nAT&T Hello Lab Tumblr: http://www.att-hellolab.com","player_loc":"https://roosterteeth.com/embed/schooled-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49ec2bd2-e036-4223-b5be-abe2c06d7ad5/sm/2013912-1469485024319-Gamelab_Thumb.png","duration":160,"publication_date":"2016-07-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-327","changefreq":"weekly","video":[{"title":"2016:E33 - Jeremy Jenga - AHWU for July 25th, 2016 (#327)","description":"At the dawn of time, the only form of tower-based stack-n'-fall funs that humanity had was simple Jenga. With the rise of capitalism, the bourgeoisie devised new forms of Jenga to sell to the dim-witted proletariat, such as Donkey Kong jenga and It's Always Sunny in Philadelphia Jenga. Then, as predicted by Darwinian evolution, Jenga slowly changed into the a hulking beast known only as Real Man's Jingle.\n\nBut in 2016, the public had grown tired of what Jenga had become naturally. Science and engineering were forced to commit heinous crimes against humanity, combining man and Jenga, practically spitting in the very face of God. Now witness the horrible monstrosity known as Jeremy Jenga - the thing that was once a man but is now just a British man's plaything. The horror! The terror!\n\n\n\nWatch the Community Vid","player_loc":"https://roosterteeth.com/embed/ahwu-2016-327","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4325405-1c68-4c2c-9cfc-b0165c580b87/sm/2013912-1469474819132-ahwuthumb.jpg","duration":381,"publication_date":"2016-07-25T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-worms-battlegrounds-full-stream","changefreq":"weekly","video":[{"title":"2016:E67 - Worms Battleground - FULL STREAM","description":"Mica, Michael, and Gavin kickoff Achievement Hunting live streaming with Worms Battlegrounds!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-worms-battlegrounds-full-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aedff9f2-29be-45b1-8ac4-147f05decbdf/sm/2013912-1469478897200-better_worms_thumb.jpg","duration":5136,"publication_date":"2016-07-25T20:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-cloudberry-kingdom-part-18","changefreq":"weekly","video":[{"title":"2016:E229 - Cloudberry Kingdom Part 18","description":"The Berry bros are on a mission to be the first and probably only four guys to attempt to play Cloudberry Kingdom to the end. The 300 levels are more difficult than ever before, but that won't stop them from finishing the game one level at a time.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-cloudberry-kingdom-part-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdac86a1-7e09-448f-9dca-928ecf4163ae/sm/2013912-1469468949851-LP_Cloudberry-18_THUMB3.png","duration":3234,"publication_date":"2016-07-25T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-7","changefreq":"weekly","video":[{"title":"2016:E3 - Last Call #7","description":"The AH Crew sit down to talk about Mario Party, cats, bad luck and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af3bd0dd-950e-4c6f-882c-a0d05ccaf5b9/sm/2013912-1469227010984-OFF34_-_PS_-_THUMB.jpg","duration":1248,"publication_date":"2016-07-24T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-mighty-number-9-part-2","changefreq":"weekly","video":[{"title":"2016:E228 - Let's Watch - Mighty Number 9 Part 2","description":"It's Mighty Number 9 and his name is Beck\n\nWhich means the description should parody Beck\n\nBut that's no fun, so what the heck?\n\nLet's not do that, unless you check\n\nYesterday's video which has your Beck\n\nSo shut the hell up or else you'll wreck\n\nSomething something something something something Shrek\n\nI give up","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-mighty-number-9-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff14a0bb-28b4-4592-b438-5546340dc6da/sm/1104396-1469250668009-mn9_2.jpg","duration":2239,"publication_date":"2016-07-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cunning-stunts","changefreq":"weekly","video":[{"title":"2016:E227 - GTA V - Cunning Stunts","description":"You asked for it, you got it. The Fake AH Crew try out what may be their new favorite DLC for GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cunning-stunts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d1ee635-db1f-4987-841a-eff3d1054db1/sm/2013912-1469220821648-LP_GTA_CunningStuntsThumbnail.jpg","duration":2095,"publication_date":"2016-07-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-34","changefreq":"weekly","video":[{"title":"2016:E34 - Dickgate - #34","description":"The AH Crew sit down to talk about Pokemon, burgers, fake nudes and more on this week's Off Topic!\n\nThis episode originally aired July 22, 2016 and is sponsored by Kaspersy (http://bit.ly/29yXJcM) and MeUndies (http://bit.ly/29QtMVP)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94a63ca7-d996-4969-8444-16b57c49dd54/sm/2013912-1469227064415-OFF34_-_THUMB.jpg","duration":6341,"publication_date":"2016-07-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-mighty-number-9-part-1","changefreq":"weekly","video":[{"title":"2016:E226 - Let's Watch - Mighty Number 9 Part 1","description":"In the time of Kickstarties, I was 2D and spunky\n\nLow-poly veins and I'm out now - pretty clunky\n\nWith the plastic aesthetic, graphic corrosions\n\nBalls on walls with the pizza-like explosions\n\n\n\nSoy un numero nine.\n\nI'm a loser, baby, so why do you play me?\n\n(Double barrel buckshot)\n\nSoy un numero nine\n\nI'm a loser baby, so why do you play me?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-mighty-number-9-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25912a5a-8016-4ce6-ac04-b2c6d7666ef8/sm/1104396-1469248384514-mn9_1.jpg","duration":1948,"publication_date":"2016-07-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rt-stream-highlights-pokemon-y","changefreq":"weekly","video":[{"title":"2016:E225 - RT Stream Highlights - Pokemon Y","description":"The Elite Four? No problem for Mica! She's a Pokemon master! Getting through Victory Road, however... that seems to be a problem. Join Mica and many special guests as she fights her way through the end of Pokemon Y!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rt-stream-highlights-pokemon-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b99cdf63-efe1-4ff1-af33-f815e0e367e1/sm/2013912-1469129809529-pokemon_thumb_2.jpg","duration":970,"publication_date":"2016-07-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gigantic","changefreq":"weekly","video":[{"title":"2016:E224 - Gigantic","description":"It's Achievement Hunter VS Funhaus in this MOBA. The players first faced each other at RTX 2016. This is round two and it's going to be bloody. Thanks to Perfect World Entertainment for sponsoring this video. Visit http://gogigantic.com for more information about Gigantic!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gigantic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30be27c0-e900-439c-9a5a-160508084692/sm/2013912-1469213025161-LP_Gigantic_THUMB.png","duration":3156,"publication_date":"2016-07-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-dead-by-daylight-achievement-hunter-vs-funhaus","changefreq":"weekly","video":[{"title":"2016:E66 - Dead by Daylight: Achievement Hunter VS Funhaus","description":"Witness Achievement Hunter run from Funhaus as they compete in Dead by Daylight.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-dead-by-daylight-achievement-hunter-vs-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32ba5008-5ea7-4f88-a226-825b67345d35/sm/2013912-1469132705769-dbd1.jpg","duration":1132,"publication_date":"2016-07-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-seven","changefreq":"weekly","video":[{"title":"2016:E7 - Episode Seven","description":"Heroes & Halfwits! “Do they speak Deep?” Heroes Gus, Geoff, Griffon, Ryan, Michael and Dungeon Master Frank try and find a way out of the cave after rescuing some new friends along the way.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-seven","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bfa9217-c13b-4124-9433-fb0903792b87/sm/2013912-1469120191927-HH7_-_THUMB.jpg","duration":3535,"publication_date":"2016-07-21T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlight-lego-star-wars-the-force-awakens","changefreq":"weekly","video":[{"title":"2016:E65 - AH Stream Highlight - Lego Star Wars: The Force Awakens","description":"Who loves Star Wars? Gavin, Michael, and Mica love Star Wars! Join this awesome trio as they play some of Lego Star Wars: The Force Awakens!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlight-lego-star-wars-the-force-awakens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/033b7c34-2b02-452e-a17d-f6a3f6ab397c/sm/2013912-1469136759734-swtfa_thumb_plain.jpg","duration":799,"publication_date":"2016-07-21T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-217-ryan-s-the-one-in-the-hole","changefreq":"weekly","video":[{"title":"2016:E223 - Minecraft - Episode 217 - Ryan Is the One in the Hole","description":"For years, Ryan has been illegitimately shoving things into holes all over Achievement City. Cows, chickens, pigs, sheep, zombies, beavers, badgers, Gavins - lots of things. But for these few very precious moments, all the animals across the land are safe because Ryan fucked off for the week. \n\n\n\nHaving grown sick of Ryan's animal abuse and hole-o-philia, the rest of the Achievement Hunters have decided to give the mad king a little taste of his weekly injustices. With pickaxes and shovels in hand, foreman Geoff and the boys are ready to dig (and, of course, sing their favorite digging tune).\n\n\n\n\"You've got to go dig those holes,\n\nWith broken hands and withered souls.\n\nEmancipated from all you know,\n\nYou've got to go dig those holes.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-217-ryan-s-the-one-in-the-hole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cbd287f-9500-4ef4-8cef-20271a3f9f56/sm/1104396-1469065544188-Minecraft_217_Thumb_v001.png","duration":1897,"publication_date":"2016-07-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-ragdoll-runners","changefreq":"weekly","video":[{"title":"2016:E16 - Ragdoll Runners","description":"Michael and Gavin flap, flip and flop to the finish line. Kids, this is why exercise is important...","player_loc":"https://roosterteeth.com/embed/play-pals-2016-ragdoll-runners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/208b3a92-3090-42f1-8556-4eef891f3a9c/sm/2013912-1469049542193-Ragdoll_Runners.jpg","duration":1321,"publication_date":"2016-07-20T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight-part-3","changefreq":"weekly","video":[{"title":"2016:E222 - Dead by Daylight Part 3","description":"What's more fun than murdering your friends in the backwoods once again? Bringing along more other friends to murder in the backwoods! Andrew Panton and Trevor Collins join the Gents and Jeremy for another round of Dead by Daylight.\n\nGo to http://roosterteethlive.com to get tickets to Let's Play Live: Chicago!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38c6aa76-e666-456d-8c20-506b2ca73394/sm/2013912-1468945381679-Thumbnail_Template.jpg","duration":2668,"publication_date":"2016-07-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-cunning-stunts","changefreq":"weekly","video":[{"title":"2016:E64 - AH Stream Highlights - Cunning Stunts","description":"Since this was a two-man endeavor, Matt and Jeremy cleverly severed ties to Trevor. But... he'll be back. It's GTA V Cunning Stunts with almost all of the team that streams. The Stream Team.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-cunning-stunts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b9dd322-4ded-4c43-be19-cbc5305c58cd/sm/2013912-1468954489586-CnMCj5tVMAAq1ky.jpg","duration":1335,"publication_date":"2016-07-19T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overcooked","changefreq":"weekly","video":[{"title":"2016:E221 - Overcooked","description":"Join Jack, Geoff, Gavin and Ryan as they get to experience the new cooking challenges of Overcooked by Ghost Town Games.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overcooked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a68f02d-e989-4a3e-b8b7-6e7ce9297a43/sm/2013912-1468599702335-Lets_Play_Overcooked_Thumb.jpg","duration":2002,"publication_date":"2016-07-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-326","changefreq":"weekly","video":[{"title":"2016:E32 - Bat Beats EVERYTHING! - AHWU for July 18th, 2016 (#326)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU. \n\n\n\nAfter reading last week's description of the epic showdown between The Royale British Thunder and Captain Fast Hands, Michael \"The Desperado Demolisher\" Jones felt super left out - excluded from the Baseball Achunter Little League. Rather than ask to be admitted into the league, he picked up the nearest blunt object and decided to beat the shit out of each and every possible thing in sight. As they say: If you can't join them, fuckin' BEAT THEM!\n\nMichael swung and slammed and clubbed and beat down the office. He broke all the computer monitors. He cracked Jack's back. He vehemently crushed the VR machines. He smacked Trevor's head clean off his body. He took Trevor's headless corpse and beat Jeremy to death with it. Then he picked the bat back up and backed up and bat battered Gavin back to Britain. Brutal!\n\nSo much horror and death and carnage to behold - and there was still so much swinging left to do. With all of Achievement Hunter dead (save for Michael - who some say still rampages to this very day), there is no doubt that this moment marked the end of the very very very short-lived Baseball Achunter Little League.\n\n\n\nWatch the Vid of the Week and the Community Vid!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-326","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcec401e-5860-4345-87c9-108af868190c/sm/2013912-1468878711388-AHWU_326_thumb.jpg","duration":673,"publication_date":"2016-07-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-rainbow-six-siege-dustline-dlc","changefreq":"weekly","video":[{"title":"2016:E220 - Rainbow Six: Siege - Dustline DLC","description":"The one where Gavin doesn't kill any teammates. Music Credit: Audio Network - \"Emerging Terror\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-rainbow-six-siege-dustline-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95127f11-41a2-4cdb-a4e7-2c374b69da82/sm/2013912-1468338660387-R6S_dustline_thumb_v2_blue.jpg","duration":2092,"publication_date":"2016-07-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-6","changefreq":"weekly","video":[{"title":"2016:E2 - Last Call #6","description":"The AH Crew sits down to discuss Pokemon Go, Overwatch and more in this week's Off Topic: Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52583761-83b2-4897-8d99-d1b86d0be472/sm/2013912-1468631388051-OFF33_-_PS_-_THUMB.jpg","duration":1232,"publication_date":"2016-07-17T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-party-hard","changefreq":"weekly","video":[{"title":"2016:E63 - AH Stream Highlights - PARTY HARD","description":"MURDER... MUUURRRDERRRRR! Join Mica and Jeremy as they stab their way through Party Hard! There's no harm in killing people just because they're loud... right? RIGHT?!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-party-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03be52ce-4169-4bc8-a49e-ff4489a88558/sm/2013912-1468615133252-party_hard.jpg","duration":1585,"publication_date":"2016-07-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-power-play-an-american-werewolf-in-murica","changefreq":"weekly","video":[{"title":"2016:E219 - GTA V - Power Play 2","description":"You saw me standing alone\n\nWithout a dream in my heart\n\nWithout a love of my own\n\n--\n\nGo to http://roosterteethlive.com to get tickets to Let's Play Live: Chicago!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-power-play-an-american-werewolf-in-murica","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b6948cc-5c59-4a38-9fea-dd2b459fb87c/sm/2013912-1468515841593-Thumbnail_v3.jpg","duration":2233,"publication_date":"2016-07-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-33","changefreq":"weekly","video":[{"title":"2016:E33 - I Hear Someone Crying - #33","description":"The AH Crew sits down to talk about Dead By Daylight, Immersion, Ghostbusters and more on this week's Off Topic!\n\nThis episode originally aired July 15, 2016 and is sponsored by MVMT Watches (http://bit.ly/29ACJT8z0 and Weebly (http://bit.ly/29ACcAk)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/886fc39f-c5f3-49d3-91ee-5ca8216940d4/sm/2013912-1468630600028-OFF33_-_THUMB.jpg","duration":7953,"publication_date":"2016-07-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-ammo-switch","changefreq":"weekly","video":[{"title":"2016:E33 - Halo 5 - Ammo Switch","description":"Halo 5 puts players through the horrors of war in space or something like that. To often players miss out on all the fun you really can have in a hostile situation. Like loading up a chain gun with explosives and just letting it go. Don't worry though, Matt and Trevor will show you how to do just that.\n\n\n\nWant to check it out yourself? Map download here. \n\nGame type download here.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-ammo-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee5aee60-657c-48a3-92ac-54f04e086dc9/sm/2013912-1468619022170-Thumbnail.jpg","duration":191,"publication_date":"2016-07-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-dead-by-daylight-ryan-vs-fh","changefreq":"weekly","video":[{"title":"2016:E218 - Let's Watch - Dead by Daylight: Ryan vs FH","description":"Witness Ryan take on the team of Funhaus in this very special let's Watch of Dead by Daylight.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-dead-by-daylight-ryan-vs-fh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e782712c-cb07-4223-b5d0-eb013d5e7126/sm/2013912-1468530722770-LW_Dead_by_Daylight_w_FH_Thumb.jpg","duration":1202,"publication_date":"2016-07-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-six","changefreq":"weekly","video":[{"title":"2016:E6 - Episode Six","description":"Heroes & Halfwits! Join our heroes Gus, Geoff, Griffon, Ryan, Michael and Dungeon Master Frank as they journey into the dark damp mouth of the cave.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-six","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baf87dfe-94d3-4e04-b427-0c3df9b7ca0b/sm/2013912-1468528813804-HH6_-_THUMB.jpg","duration":3679,"publication_date":"2016-07-14T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-savage-resurrection","changefreq":"weekly","video":[{"title":"2016:E217 - Let's Play - Savage Resurrection","description":"Special thanks to S2 Games for Sponsoring this video and you can click the link below to experience Savage Resurrection.\n\nhttp://store.steampowered.com/app/366440/\n\nJoin the AH crew as they release their primal instincts and quench their thirst for blood in the all new Savage Resurrection.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-savage-resurrection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a0fa38-0cec-4cf5-9aab-d0da112dabff/sm/2013912-1468522938412-LP_Savage_Thumb.jpg","duration":1065,"publication_date":"2016-07-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-asemblance","changefreq":"weekly","video":[{"title":"2016:E216 - Let's Watch - Asemblance","description":"Go to http://roosterteethlive.com to get tickets to Let’s Play Live: Chicago! Use code: ACHIEVE || Push it to the Limit http://bit.ly/1BuRgl1 || Join Geoff, Jack, Gavin and Ryan on a mind bending adventure in Asemblance.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-asemblance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ec5d2e7-0eba-4c95-a1b2-37a6c87495eb/sm/2013912-1468510992621-ASEMBLANCE.jpg","duration":4288,"publication_date":"2016-07-14T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-216-triathlon","changefreq":"weekly","video":[{"title":"2016:E215 - Minecraft - Episode 216 - Triathlon","description":"All rise for the honorable Judge Geoff. Cheatyface Court in now in session. Gavin Free, you have been brought here today to defend your honor. You are being accused of the following. \n\n\n\n1 count of teleporting to another player\n\n2 counts of teleporting players to yourself\n\n1 count game dropping and illicit sever dickery dickity foolishness\n\n3 counts smuggling unknown entities into Achievement City\n\n\n\nYou come to this court today claiming to be innocent of these crimes. But please, Mr. Free, I'd like to draw your attention to exhibit A - one internet video titled \"Let's Play Minecraft - Triathlon.\" Jury, it is up to you to watch the tape and conclude whether or not this man is innocent, or if he should be set \"free\" from these accusations. Please choose wisely.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-216-triathlon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c0f7351-8893-4d76-b06f-bb056922aae2/sm/1104396-1468451979413-mc_teste1.jpg","duration":1710,"publication_date":"2016-07-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-141-jeremy-v-matt","changefreq":"weekly","video":[{"title":"2016:E16 - Episode 141: Jeremy vs Matt","description":"Name that Pokemon! But you'd better know how to spell it too. Matt challenges Jeremy to a battle of remembering pokemon. Who can name all 151 pokemon first?","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-141-jeremy-v-matt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b7da297-6591-4563-88f9-a8985848202f/sm/2013912-1468436731848-VS_MattvJeremy-Pokemon_THUMB.png","duration":916,"publication_date":"2016-07-13T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-dead-by-deadlight-part-2","changefreq":"weekly","video":[{"title":"2016:E214 - Dead by Daylight Part 2","description":"The Achievement Hunters loved murdering each other so much that they couldn't wait to play a second round of Dead by Daylight - the game where you kill your friends. There's more hiding, creeping and of course screaming. See who can make it to the exit, because most of the guys will be maimed, hooked, and murdered.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-dead-by-deadlight-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a294f71d-a021-4a4b-9282-5c5bf4246b56/sm/2013912-1468368095176-LP_DeadbyDayLight_THUMB.png","duration":3195,"publication_date":"2016-07-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-yu-gi-oh-legacy-of-the-duelist","changefreq":"weekly","video":[{"title":"2016:E62 - AH Stream Highlights - Yu-Gi-Oh! Legacy of the Duelist","description":"IT'S TIME TO D-D-D-D-D-D-DUEL! Andy and Mica have recovered from their RTX hangovers and are playing through the campaign of Yu-Gi-Oh! Legacy of the Duelist! Surprised to see them sober? So are we.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-yu-gi-oh-legacy-of-the-duelist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/342fd287-aba8-4455-9edc-893c19b25d42/sm/2013912-1468270004782-YGO_thumb_1.jpg","duration":1018,"publication_date":"2016-07-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-level-22","changefreq":"weekly","video":[{"title":"2016:E213 - Level 22","description":"Bringabringabringadingdingdingding! Wake up, Michael Jones. This is your backup alarm clock - the one you set in case you forget to set your regular alarm clock. You went out and got real, real drunk for your birthday last night. Hardcore, fucking straight-up wrecked, son. You got a happy birthday tattoo tattooed right on your chest so that now every day can be your birthday as long as you're topless. \n\nBut you've got bigger problems on your hands right now. You're late for work - and that just won't do, brother. Geoff and Ryan may not mind you coming in late, but Matt Hullum is fucking furious right now. And he's moved Achievement Hunter to the twenty-second floor of the new office. Also, yeah. There's a lot of guards. A shit-ton! And since you're showing up late - if they fuckin' see you - if they get even a glimpse of you - you'll be fired...upon with a gun. They'll shoot you on sight. \n\nSo better get ready! You're gonna have a fun time getting to work today. Level 22 awaits! Good luck!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-level-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d719ed28-bcdc-4dd1-be83-beed981b147d/sm/2013912-1468004727911-Level22_Thumb_v001.png","duration":1962,"publication_date":"2016-07-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-ball-hunters-ahwu-for-july-11-th-2016-325","changefreq":"weekly","video":[{"title":"2016:E31 - Ball Hunters - AHWU for July 11th, 2016 (#325)","description":"Thanks to Topps for sponsoring this week's AHWU! Download Topps Star Wars Card Trader today by clicking right here: http://m.onelink.me/167cc8c1\n\n\n\nIt's the bottom of the ninth. Two outs. Geoff on second and Ryan on third. Here he comes, The Royale British Thunder himself, number 87, Gavin Free.\n\nCaptain Fast Hands Jack Pattillo is at the pitch, or whatever the little molehill the pitcher stands on is called. He fires off a fast one.\n\nWHOA! Royale British Thunder takes a swing and misses. Strike one.\n\nCaptain Fast Hands throws another one. Gavin makes contact - but only a ding. Foul tip right into the fence. That makes strike two. \n\nHere's comes the Jack Pattillo secret shake-up. An absolutely unprecedented technique never before seen in the Baseball Achunter Little League (or BALL for short). Jack cradles six balls in his massive man-hands. He pitches.\n\nBAM! Gavin makes contact with one of the balls and sends it sailing. WHICK! Another ball flies straight into the catcher's glove. And the other four go way way way off course.\n\nGavin has just gotten a hit, a strike-out, and a walk all at the same time. This is one for the history books, folks. We're honestly not sure how to count this one, but the decision could mean an early end for the Achievement Hunter season. Funhaus could very well take home the trophy this year. Personally, I don't think the BALL leagues will ever be the same again. AHWU!Vid of week: https://www.youtube.com/watch?v=m9Y7qOf6jF8Community vid: https://www.youtube.com/watch?v=EJ7hdsPoeiI","player_loc":"https://roosterteeth.com/embed/ahwu-2016-ball-hunters-ahwu-for-july-11-th-2016-325","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7aac3331-66d0-4bd5-a1fb-a2b21886e682/sm/2013912-1468271541890-ahwu_325_thumb.jpg","duration":381,"publication_date":"2016-07-11T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-glitchrunners","changefreq":"weekly","video":[{"title":"2016:E212 - Glitchrunners","description":"Time to play America's favorite game, \"Guess the Let's Play by Only Reading the Description and Not Reading the Title of the Video or Looking at the Thumbnail!\" Get this one right, and you've secured a nice $200,000. Get it wrong, and you walk away with nothing! Here's your prompt:\n\nIn this Let's Play, the AH boys abandons their Xboxes in order to play a platformer. The four visible players must work together to get across a series of obstacles in order to make it to the end of the level before the timer runs out. They can walk and jump, and if they hit the correct button, they'll run. Also, dying isn't exactly permanent. If somebody dies, they will get a chance to come back shortly after. Meanwhile, Geoff - who is playing but cannot be seen - is doing everything in his power to make life miserable for the other four players. \n\nOh! I'm very sorry. The answer we were looking for was Glitchrunners. Thanks for playing \"Guess the Let's Play by Only Reading the Description and Not Reading the Title of the Video or Looking at the Thumbnail!\" and better luck next time!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-glitchrunners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4d14c4e-dc0f-4d9c-b613-eac78d6c7a17/sm/2013912-1468000581964-Glitchrunners_Thumb_v004.png","duration":1313,"publication_date":"2016-07-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-inside-part-4","changefreq":"weekly","video":[{"title":"2016:E211 - Let's Watch - INSIDE Part 4","description":"The gang dive back into the 2D puzzle-platformer game titled INSIDE! How will this wonderful story end?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-inside-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e736bab9-511a-46b4-8066-d5c273fd0d70/sm/2013912-1468014041557-inside4.jpg","duration":1183,"publication_date":"2016-07-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-power-play","changefreq":"weekly","video":[{"title":"2016:E210 - GTA V - Power Play","description":"Their mouths are alive\n\nWith juices like wine\n\nThey're on the hunt\n\nThey're after you","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-power-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1b84489-10d7-4597-bf1d-683074d48fee/sm/2013912-1468005216825-Thumbnail_v2.jpg","duration":2004,"publication_date":"2016-07-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-32","changefreq":"weekly","video":[{"title":"2016:E32 - The Sound of 3000 Disappointed People - #32","description":"The AH Crew sits down to talk about RTX, wigs, moonshine and more on this week's Off Topic!\n\nThis episode originally aired July 8, 2016","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5760afb4-5961-4eef-b417-d3ece4e51c8e/sm/2013912-1468007082337-OFF32_-_THUMB.jpg","duration":6613,"publication_date":"2016-07-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-37","changefreq":"weekly","video":[{"title":"2016:E209 - Let's Watch - INSIDE Part 3","description":"The gang dive back into the 2D puzzle-platformer game titled INSIDE! How will the story continue!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e98146a2-71e8-4289-878b-b7442f81e19e/sm/2013912-1468014424604-inside3.jpg","duration":3120,"publication_date":"2016-07-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-36","changefreq":"weekly","video":[{"title":"2016:E208 - Let's Watch - INSIDE Part 2","description":"The gang dive back into the 2D puzzle-platformer game titled INSIDE! How will they hold up against the dogs, deep waters, and mindless humans?!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2f40c7e-04da-4882-af49-7510820925b6/sm/2013912-1467933673800-inside2_thumb.jpg","duration":2969,"publication_date":"2016-07-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-five","changefreq":"weekly","video":[{"title":"2016:E5 - Episode Five","description":"The mystical mayhem and magic continues in this week's Heroes & Halfwits! Join our heroes Geoff, Griffon, Ryan, Michael and Dungeon Master Frank as they journey onwards.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-five","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e95617d3-8079-4ec6-86c6-a52e9a351295/sm/2013912-1467904283565-HH5_-_THUMB.jpg","duration":5963,"publication_date":"2016-07-07T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-wildstar-part-2","changefreq":"weekly","video":[{"title":"2016:E207 - Wildstar Part 2","description":"Part two of this MMO Series. The guys are finally all together, but there are tons of quests to do. Thanks Wildstar for Sponsoring this video. Check out Wildstar for free here: http://bit.ly/28LDTbp.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-wildstar-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/998c9e06-03df-40f6-96ef-0562defff767/sm/2013912-1467907286596-Wildstar02_THUMB.png","duration":2495,"publication_date":"2016-07-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-35","changefreq":"weekly","video":[{"title":"2016:E206 - Let's Watch - INSIDE","description":"Join Michael, Jack, Geoff, and Gavin as they begin their Let's Watch journey through INSIDE.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d14ce0e-f216-416b-99f8-b9100c5200db/sm/2013912-1467845108452-inside_thumb.jpg","duration":2831,"publication_date":"2016-07-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-215-battle-mode","changefreq":"weekly","video":[{"title":"2016:E205 - Minecraft – Episode 215 – Battle Mode","description":"Who dare intrude into the thunderdome? Achievement Hunter, that's who! Six men (well, five men and one ladyface) enter, one man (or aforementioned ladyface) leaves. Witness this fragile six-person alliance crumble as they battle to be the sole survivor. Witness Geoff slice Jack in half with a flaming sword. Witness Gavin flame-shovel his way to victory. Witness Michael beat Jeremy to death with a stick. No, sorry. A FLAMING FUCKING STICK! \n\n\n\nIn this Minecraft Battle Mini-Game, everything can burn, everything can be burnt, and everything will burn! And after all the carnage, will there be anyone left alive. Yes...yes there will. We've already established at least one person will walk away alive. Pay better attention, silly.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-215-battle-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b00be98f-f36d-4a9a-91bb-6e0699e0020b/sm/1104396-1467868893158-mc_thumb1.jpg","duration":1968,"publication_date":"2016-07-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-gang-beasts","changefreq":"weekly","video":[{"title":"2016:E61 - AH Stream Highlights - Gang Beasts","description":"When your heart resisted what you forgot existed, we enlisted the crew that has always persisted. As gangs of beasts fighting in the streets, we are the team that streams, we are The Stream Team!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa8b2254-af53-41c3-97f5-1e5c643468e8/sm/2013912-1467830213853-Stream_Gang_Beast_Thumb.jpg","duration":1734,"publication_date":"2016-07-06T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rocket-league-with-screw-attack","changefreq":"weekly","video":[{"title":"2016:E204 - Rocket League with ScrewAttack","description":"Chad and Craig of ScrewAttack join Jeremy, Michael, Ryan and Jack of Achievement Hunter for three rounds of Rocket League.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rocket-league-with-screw-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b07265c-64ac-49f6-a1b9-0919adbb920a/sm/2013912-1467740725545-Thumbnail__Rocket_League_with_SA.jpg","duration":1399,"publication_date":"2016-07-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-post-rtx-blues-ahwu-for-july-5-th-2016-324","changefreq":"weekly","video":[{"title":"2016:E30 - Post-RTX Blues - AHWU for July 5th, 2016 (#324)","description":"The sky is cryin'\n\n\nJack and Geoff nowhere in sight\nThe sky is cryin'\nMatt and Trevor AHWU - that's alright\n\nI've been looking for my Geoffy\nAnd I wonder where can he be\n\nI saw my Geoffy early one morning\nHe was stumbling on down the lane\nI saw my Jacky early one morning\nHe said \"Fuck AHWU, that shit's a pain\"\n\nYou know it hurt me, hurt me so bad, yeah\nMade my poor heart skip a beat\nHelp me now\n\nI've got a real, real bad feelin'\nThat my Geoffy, he don't love me no more\nI've got a real, real bad feelin'\nThat my Jacky don't love me no more\n\nYou know the sky, the sky's been cryin', yeah\nCan't see the tears past Gavin's nose","player_loc":"https://roosterteeth.com/embed/ahwu-2016-post-rtx-blues-ahwu-for-july-5-th-2016-324","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/266a5749-279d-4859-ba04-d22e3003593e/sm/834020-1467756133304-ahwu_thumb.jpg","duration":503,"publication_date":"2016-07-05T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-wildstar","changefreq":"weekly","video":[{"title":"2016:E203 - Wildstar","description":"Jack has left everyone behind. Now Geoff, Michael, Ryan and Jeremy must level up to catch up to him. Thanks Wildstar for Sponsoring this video. Check out Wildstar for free here: http://bit.ly/28LDTbp.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-wildstar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c52ad73-991f-4b46-b698-a558f91f0b57/sm/2013912-1467749138476-wildstar_PT1.jpg","duration":1767,"publication_date":"2016-07-05T22:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-fortified-part-2","changefreq":"weekly","video":[{"title":"2016:E202 - Fortified: Marching Martians","description":"Why don't you pass the time by playing a little solitaire?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-fortified-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6002e31-0eba-4e52-9094-0cc3de2101f2/sm/2013912-1467309004282-Fortified_part_2_Thumbnail.jpg","duration":1832,"publication_date":"2016-07-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-lego-star-wars-the-force-awakens","changefreq":"weekly","video":[{"title":"2016:E15 - Lego Star Wars: The Force Awakens","description":"Michael and Gavin become one with the force and stomp on some Ewoks in Lego Star Wars: The Force Awakens!","player_loc":"https://roosterteeth.com/embed/play-pals-2016-lego-star-wars-the-force-awakens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caea7c97-5676-4679-8365-92f07c55b9bf/sm/2013912-1467304151203-pp_thumb.jpg","duration":1587,"publication_date":"2016-07-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-homefront-the-revolution","changefreq":"weekly","video":[{"title":"2016:E201 - Homefront: The Revolution","description":"North Korea has invaded Achievement Hunter's homefront: the United States. And now our America needs a major fixing-upping. Join Geoff Ramsey as Tim \"the Toolman\" Taylor, Ryan Haywood as Al Borland, Michael Jones as Jill Taylor, and Jeremy Dooley as Wilson as they bumble their way through kicking the North Korean army square in the patoot. What time is it? It's Tool Time, motherfucker! It's Home Improvement: The Revolution.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-homefront-the-revolution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f76b94cb-e929-4bd2-9261-b43fbb84cdde/sm/2013912-1467313268763-homefront.jpg","duration":1795,"publication_date":"2016-07-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-5","changefreq":"weekly","video":[{"title":"2016:E1 - Last Call #5","description":"The AH Crew sits down to discuss foreskin, Game of Thrones and more in this week's Off Topic: Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a9f71d6-082e-4362-89d7-f661a89cac5d/sm/2013912-1467303947508-OFF31_-_PS_-_THUMB_v2.jpg","duration":1329,"publication_date":"2016-07-03T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-fallout-4-junk-ball","changefreq":"weekly","video":[{"title":"2016:E32 - Fallout 4 - Junk Ball","description":"In the post apocalyptic world of Fallout 4, survivors have to do what they can to have fun. They have to use their limited resources and a bit of creativity or their bleak lives may seem even more bleak. Matt and Jeremy have a way to help them with that.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-fallout-4-junk-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf6fb87f-c5a1-41a6-9fe8-cd689e6ad5ba/sm/2013912-1467348727680-Junkball_thumb.jpg","duration":248,"publication_date":"2016-07-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-ceo","changefreq":"weekly","video":[{"title":"2016:E200 - GTA V - CEO","description":"Circle jerks in a limo. Car surfing on a box truck. Precarious alliances with strangers. Crates full of swag. All this and more as the boys try out the new game modes available from the Further Adventures in Finance and Felony update to GTA Online.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-ceo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/575e807c-44e5-4542-819a-a63a88f3a45b/sm/2013912-1467324131264-Thumbnail_GTA_V.jpg","duration":1921,"publication_date":"2016-07-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-i-didn-t-think-it-would-pass-31","changefreq":"weekly","video":[{"title":"2016:E31 - I Didn’t Think It Would Pass - #31","description":"The AH Crew sits down to talk about Brexit, Zac Efron, whiskey dick and more on this week's Off Topic!\n\nThis episode originally aired July 1, 2016 and is sponsored by Mike and Dave Need Wedding Dates (http://fox.co/28SaleM)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-i-didn-t-think-it-would-pass-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51889260-9cc4-45ee-bb94-36cadb798dd3/sm/2013912-1467303619546-OFF31_-_THUMB_v2.jpg","duration":6616,"publication_date":"2016-07-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-trials-stream-highlights","changefreq":"weekly","video":[{"title":"2016:E60 - AH Trials Stream Highlights","description":"Join Mica and Gavin as they FRONT FLIP FOR STYLE their way through Trials Fusion and discuss feral cats.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-trials-stream-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e81f6e7-afaa-4a1b-9cba-67c95e8e2a88/sm/2013912-1467301242899-Trials_Thumbnail.jpg","duration":1067,"publication_date":"2016-07-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rt-resident-evil-7-demo-stream-highlights","changefreq":"weekly","video":[{"title":"2016:E199 - RT Resident Evil 7 Demo Stream Highlights","description":"Join Mica and Andy as they make Jon play a terrifying game! Why? His screams are hilarious. C'mon.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rt-resident-evil-7-demo-stream-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87971b7b-c27d-4702-a62e-f2c487541cb7/sm/2013912-1467300885138-RE7_thumb.jpg","duration":1018,"publication_date":"2016-07-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-reaper","changefreq":"weekly","video":[{"title":"2016:E31 - Halo 5 - Reaper","description":"In this terrifying custom game, Achievement Hunter players must avoid the reaper or they will die. There is no hiding, and the reaper can come from any direction. To win, the team must stay alive for two minutes.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-reaper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f636d54-087a-4fc1-8485-d943a049b2a4/sm/2013912-1467139578947-TTD_Halo5_Reaper_THUMB.png","duration":887,"publication_date":"2016-07-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-four","changefreq":"weekly","video":[{"title":"2016:E4 - Episode Four","description":"Dungeon Master Frank leads our heroes Geoff, Griffon, Jack, Gus, Ryan and Michael onward in the fourth chapter of Heroes & Halfwits. Huzzah!","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb267772-d880-4fb5-a536-e8bc75264745/sm/2013912-1467310892299-HH4_-_THUMB.jpg","duration":4677,"publication_date":"2016-06-30T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-13","changefreq":"weekly","video":[{"title":"2016:E59 - VR the Champions - Universe Sandbox 2","description":"The boys step into VR and become gods of our universe in Universe Sandbox 2!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ebb1e6e-848b-454f-85fe-a2234c5520d2/sm/2013912-1467313104982-vr_thimb.jpg","duration":949,"publication_date":"2016-06-30T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-214-excavation","changefreq":"weekly","video":[{"title":"2016:E198 - Minecraft – Episode 214 – Fossil Finders","description":"Millions upon millions of years ago, low-poly, blocky Minecraft dinosaurs roamed the earth. But then a super blocky meteor hit the world and killed them all. Like hardcore fucking brutalized the poor bastards. Faces ripped from their faces. Heads separated from bodies. Little ones left with their organs pulverized into a gooey paste. It was horrifying to watch and even more horrifying to experience. Poor poor dinos. All dead and extinct.\n\n\n\nMillions upon millions of years later, Gavin found an archaeologist costume in his attic and decided to play fossil hunters with his best boys - Geoff, Ryan, Jack, Jeremy, and Michael. Now, the hunt is on! Gavin desperately wants to get his bone on and find some fossils! And Ryan desperately wants to get rid of his hiccups.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-214-excavation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c53c54be-0563-49d7-8997-0d230c6f7101/sm/1104396-1467250083800-mc_thumb.jpg","duration":2508,"publication_date":"2016-06-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2016-with-their-own-weapon-103","changefreq":"weekly","video":[{"title":"2016:E5 - With Their Own Weapon! - #103","description":"While it sounds easy, killing an enemy with their own weapon is more difficult than you would think. Which enemies will Achievement Hunter choose for this week's challenge?","player_loc":"https://roosterteeth.com/embed/go-2016-with-their-own-weapon-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0560b8a9-17b4-425e-be1f-29995fd4baa8/sm/2013912-1467130923272-GO-103_THUMB.png","duration":445,"publication_date":"2016-06-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dead-by-daylight","changefreq":"weekly","video":[{"title":"2016:E197 - Dead by Daylight","description":"While the achievement hunters are most likely all killers at heart, usually they're able to keep it in check. But not last week. No way no way! Last week, the gang ventured out into the woods for \"Gameplay in Real Life: Team-Building Camperoo Funtime.\" Things were cool at first. A trailer full of snacks, a surprising amount of camaraderie. Suddenly, Ryan started muttering something about \"sacrifices to the flying spider god.\" Before the rest of the gang could back away, Ryan grabbed Gavin and slammed him onto a meat hook! Then he pulled out a giant machete and buried it deep into Jeremy's chest! He kept hacking and attacking, making absolutely sure there was not a single survivor among the group. They were most certainly all...Dead by Daylight.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dead-by-daylight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b76c7ba6-2d2e-4e0f-bdc5-f88bd11e7155/sm/2013912-1467140603823-Dead_By_Daylight_Thumb_v003.png","duration":1690,"publication_date":"2016-06-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-magika","changefreq":"weekly","video":[{"title":"2016:E196 - Magicka","description":"Valhalla? Val-holler. Join Ryan, Jack, Jeremy, and Michael in playing Magicka.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-magika","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/908a7f38-c8d8-40cb-bd2f-b1b3d9b0c67a/sm/2013912-1467143585283-magicka_thumb.jpg","duration":2029,"publication_date":"2016-06-28T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-valve-resurrects-paid-mods","changefreq":"weekly","video":[{"title":"2016:E286 - Valve Resurrects Paid Mods","description":"Valve is bringing back paid mods - this time for DOTA 2. Worst idea ever or a marked improvement over their last attempt?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-valve-resurrects-paid-mods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26e2212f-5f70-4fc5-89c6-b02e95bdd1b7/sm/1663966-1458169602571-paid_thumb.jpg","duration":548,"publication_date":"2016-03-16T23:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-sony-wins-vr-w-a-r-the-know","changefreq":"weekly","video":[{"title":"2016:E285 - Sony WINS VR WAR? - The Know","description":"Provided cheaper equals winning, then yeah we can call this right now. The coming VR Wars just got reeeeeal interesting.\n\n\n\nSOURCES:\n\nOfficial Sony VR Trailer: \n\nPS VR Tech Specs: http://www.gamespot.com/articles/playstation-vr-al...\n\nPlayStation Camera Sold Separately: https://twitter.com/PlayStationUK/status/709856133...\n\nTech Insider Report: http://www.techinsider.io/there-will-be-a-playstat...\n\nVG24/7 Analysis: http://www.vg247.com/2016/03/16/sony-will-utterly-...\n\nBBC Analysis: http://www.bbc.com/news/technology-35813653\n\nThe Playroom VR Trailer: \n\nExtremely Official Shuhei Yoshida Statement: https://twitter.com/yosp/status/709884710214717440","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-sony-wins-vr-w-a-r-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63e62468-a2df-4490-b493-6bca2c7220b6/sm/1788484-1458165325603-fh_thumb_9_copy_33.jpg","duration":682,"publication_date":"2016-03-16T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-games-by-twitch","changefreq":"weekly","video":[{"title":"2016:E284 - Games By Twitch?","description":"Twitch announced new tools at GDC that'll help create video games that have Twitch integration.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-games-by-twitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1564b1bd-0089-4392-8f0d-8da5d5a8fbb9/sm/1663966-1458081137121-twitch_thumb.jpg","duration":483,"publication_date":"2016-03-15T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-microsoft-stinks-at-first-party-star-trek-fan-film-sued-super-strong-ant-robots","changefreq":"weekly","video":[{"title":"2016:E18 - Microsoft Stinks at First Party + Star Trek Fan Film Sued + Super Strong Ant Robots","description":"2016:E18 - Microsoft Stinks at First Party + Star Trek Fan Film Sued + Super Strong Ant Robots","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-microsoft-stinks-at-first-party-star-trek-fan-film-sued-super-strong-ant-robots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdd757fc-3c0e-415b-be08-2ba7c4357419/sm/24363-1458079675201-thumbnail.jpg","duration":564,"publication_date":"2016-03-15T18:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-minecraft-trains-ai","changefreq":"weekly","video":[{"title":"2016:E283 - Minecraft TRAINS AI","description":"Minecraft 2 will now be called Creed 2, because it's training AI in such strenuous tasks as... climbing hills. Ok, it doesn't sound impressive when you say it out loud, but it's actually a pretty cool move for learning AI.\n\n\n\nSponsored By: Loot Anime. Use discount code THEKNOW at http://bit.ly/1Rxxa1q to save $3.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-minecraft-trains-ai","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/646c4551-ce80-4d0b-9739-a762f2556c8d/sm/24363-1458003496718-thumbnail.jpg","duration":456,"publication_date":"2016-03-15T00:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-xbox-live-works-with-e-v-e-r-y-t-h-i-n-g","changefreq":"weekly","video":[{"title":"2016:E282 - XBOX Live Works with EVERYTHING?","description":"Xbox Live Works with your TOASTER?\n\nXbox Live Works with your WRISTWATCH?\n\nXbox Live Works with FIRST GEN IPODS?\n\nXbox Live Works with YOUR POOR SELF-ESTEEM?\n\nXbox Live Works with INNER-CITY KIDS?\n\nXbox Live Works with LESSER-APPRECIATED RADIOHEAD ALBUMS?\n\n\n\nSOURCES:\n\nXbox Wire ID@Xbox Update: http://news.xbox.com/2016/03/14/letter-chris-charl...\n\nPolygon Phil Spencer Interview: http://www.polygon.com/2016/3/11/11208418/phil-spe...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-xbox-live-works-with-e-v-e-r-y-t-h-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f212a5e0-fde9-4e4f-b593-33adace27673/sm/1788484-1457995008878-untitled-1_1.jpg","duration":380,"publication_date":"2016-03-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-5","changefreq":"weekly","video":[{"title":"2016:E33 - Hackers Lose $830 MILLION Due to Typo","description":"Hackers lost out on $830 million because they couldn't spell a simple word. LOLZ.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07bd33c0-3565-44b7-9e3d-7a87bfe8b03d/sm/1663966-1457994703956-fixed_thumb.jpg","duration":463,"publication_date":"2016-03-14T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-fallout-5-already-c-o-n-f-i-r-m-e-d","changefreq":"weekly","video":[{"title":"2016:E281 - Fallout 5 ALREADY CONFIRMED?","description":"Strangely, the answer is a thundering PROBABLY. This probably will shake the mountains and rattle the heavens. You will tell your grandchildren of this probably. This is the probably heard 'round the world. Fallout 5, y'all.\r\n\r\nSOURCES:\r\n\r\nFrag Hero Report: http://fraghero.com/report-leak-confirms-fallout-5...\r\n\r\nRyan Alosio Collage Post: https://www.instagram.com/p/BCZkWPgtZzw/\r\n\r\nThree Dog \"Leak\" Tweet: https://twitter.com/ErikToddDellums/status/2887575...\r\n\r\nThree Dog Follow-up Tweet: https://twitter.com/ErikToddDellums/status/3576152...\r\n\r\n2010 Eurogamer Interview: http://www.eurogamer.net/articles/2010-08-16-bethe...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-fallout-5-already-c-o-n-f-i-r-m-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/626b16c2-72ec-4ff4-9517-9c2def7a71e8/sm/1788484-1457731638282-fh_thumb_9_copy_27.jpg","duration":498,"publication_date":"2016-03-11T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-6","changefreq":"weekly","video":[{"title":"2016:E32 - Kids Sue The GOVERNMENT","description":"Welcome to America, the GREATEST SHOW ON EARTH! It's so much fun that now kids are taking the government to court for screwing up the environment. Let's see how they'll deal with every other country in the world!","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c136cfc-8fa5-4def-be6a-9ca7386183c4/sm/238166-1457735896634-thumbnail.jpg","duration":427,"publication_date":"2016-03-11T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-division-is-ubisoft-s-fastest-selling-game-ever","changefreq":"weekly","video":[{"title":"2016:E280 - The Division is Ubisoft's Fastest Selling Game EVER","description":"According to Ubisoft, The Division is the fastest selling game they've ever had. Are you playing it, yet?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-division-is-ubisoft-s-fastest-selling-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c44bb61-ff69-4bc8-9cf4-73b387b549c5/sm/1663966-1457652148950-launch.jpg","duration":398,"publication_date":"2016-03-10T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-more-witcher-new-cd-projekt-red-games","changefreq":"weekly","video":[{"title":"2016:E279 - More Witcher + New CD Projekt RED Games?","description":"An investor call reveals that in addition to Cyberpunk 2077, CD Projekt RED has another AAA game in the next 5 years and a mystery AA game for release this year.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-more-witcher-new-cd-projekt-red-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10fe30d6-0b51-40f1-94bc-d7b2c6844d87/sm/24363-1457650927858-thumbnail.jpg","duration":386,"publication_date":"2016-03-10T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-15","changefreq":"weekly","video":[{"title":"2016:E17 - PSVR Not For Kids + Assassin's Creed Movie Pre-Order Bonuses + Where's Waldo Movie Happening","description":"PSVR is a no-go for anyone under the age of 12, pre-order bonuses are now a thing we can get for movies, and check out the Game of Thrones trailer! Boobies!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1117636b-d963-4aba-92fd-449f2907f1ee/sm/1663966-1457641346359-Roundup_Thumbnail_Template.jpg","duration":728,"publication_date":"2016-03-10T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-we-bought-a-farm-147","changefreq":"weekly","video":[{"title":"2016:E147 - We Bought a Farm! – #147","description":"Join Ryan Haywood, Ashley Jenkins, and Jeremy Dooley as they discuss Stardew Valley, The Division, The Culling, and more on this week's The Patch! This episode originally aired on March 9, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-we-bought-a-farm-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a0f145f-b331-4308-8a3f-4bad231775b1/sm/2013912-1457627664208-p147_-_temp_thumb.jpg","duration":3813,"publication_date":"2016-03-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-4","changefreq":"weekly","video":[{"title":"2016:E20 - Marvel CEO SUED Over Hate Mail","description":"Marvel CEO Ike Perlmutter may see his private emails made public as part of a lawsuit over hate mail. What the what?","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05bd1d9a-0930-4e02-b70a-ff0fc25f37e1/sm/1663966-1457562987215-marvel_thumb_final.jpg","duration":418,"publication_date":"2016-03-09T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-5","changefreq":"weekly","video":[{"title":"2016:E19 - JJ Abrams Admits Episode 7 Mistake?","description":"In other news, we'll see more Chewie very soon and Luke Skywalker might be the gayest Jedi. Actually that's not fair. The universe is far and vast. Surely there's a SUPER gay Jedi out there. Hopefully we'll see in 2019.\n\n\n\nSOURCES:\n\nShlashfilm JJ Abrams Interview: http://www.slashfilm.com/leia-hugging-rey-jj-abram...\n\nThe Wrap Chewbacca in Solo Origins Report: http://www.thewrap.com/chewbacca-to-appear-in-new-...\n\nThe Sun Skywalker May be Gay Report: http://www.thesun.co.uk/sol/homepage/showbiz/bizar...","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4092cc9-9971-406b-9eed-d7a4bc1fd813/sm/1788484-1457562320942-know-starwars.png","duration":407,"publication_date":"2016-03-09T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-division-is-it-b-r-o-k-e-n","changefreq":"weekly","video":[{"title":"2016:E278 - The Division: Is It BROKEN?","description":"The Division is out. And it's a Ubisoft game, so you've got to ask yourself... JUST HOW BROKEN IS IT? Just normal day 1 broken or Assassin's Creed Unity broken? That's the range we have to work with.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-division-is-it-b-r-o-k-e-n","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e54fb55-c31d-4393-acdc-6a7a70b76a9f/sm/24363-1457559052979-thumbnail.jpg","duration":417,"publication_date":"2016-03-09T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gta-online-modders-steal-real-money","changefreq":"weekly","video":[{"title":"2016:E277 - GTA Online Modders Steal Real Money","description":"GTA Online modders have come up with a new scam that drains player's bank accounts - which could be filled with IRL funds.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gta-online-modders-steal-real-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ee945b1-e816-4d5a-a984-921a57aadd07/sm/1663966-1457479674836-GTA_thumb.jpg","duration":443,"publication_date":"2016-03-08T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-buying-games-for-pirates-4-chan-founder-joins-google-more-portal-kind-of","changefreq":"weekly","video":[{"title":"2016:E16 - Buying Games for Pirates + 4chan Founder Joins Google + More Portal!... Kind of","description":"LLLLLLLLLLLLLLLLLLLLLLET'S NEWS! Batman v Superman, Stardew Valley, 4chan, scuba superheroes, planet-killing comets, Ubisoft lies, and PORTAL (kind of). There's so much to cover.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-buying-games-for-pirates-4-chan-founder-joins-google-more-portal-kind-of","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee34d94f-7c51-439c-92ed-6e8419593a85/sm/24363-1457473928546-thumbnail.jpg","duration":497,"publication_date":"2016-03-08T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pew-die-pie-destroys-bear-simulator-dev-quits","changefreq":"weekly","video":[{"title":"2016:E276 - PewDiePie Destroys Bear Simulator, Dev Quits","description":"What do you think of Bear Simulator's dev quitting after a negative PewDiePie video?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pew-die-pie-destroys-bear-simulator-dev-quits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dabe0701-0b17-431b-ac0f-1b400c46ca8e/sm/1663966-1457395955489-pew_thumb.jpg","duration":409,"publication_date":"2016-03-08T00:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-overwatch-beta-l-e-a-k-s-release-announced","changefreq":"weekly","video":[{"title":"2016:E275 - Overwatch Beta LEAKS, Release Announced!","description":"Does it count as a leak when it's confirmed less than a day later? The answer is yes, because people like to click on the word leak. We promise there's actual information in this video though!\n\nSOURCES:\n\nReddit post on IGN leak: https://www.reddit.com/r/Overwatch/comments/49b6i5...\n\nOfficial Announcement: http://us.battle.net/overwatch/en/blog/20055970","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-overwatch-beta-l-e-a-k-s-release-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb6890a3-2512-45c3-bf84-5d515312524e/sm/1788484-1457389025189-knowthumb-overwatch.png","duration":382,"publication_date":"2016-03-07T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-microsoft-game-studios-cancels-games-closes-studios","changefreq":"weekly","video":[{"title":"2016:E274 - Microsoft Game Studios CANCELS Games & CLOSES Studios","description":"RIP Lionhead Studios and Fable Legends. Maybe we underestimated Microsoft's Unified Windows Platform for the games industry... Today they announced they're closing several studios and canceling the games they were working on. We jurnalized and asked an anonymous source (anonymous to you--not to us) who tells us UWP may be involved.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-microsoft-game-studios-cancels-games-closes-studios","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5308d94-9a80-49ad-88fa-94da5e1c079c/sm/24363-1457387631472-thumbnail.jpg","duration":416,"publication_date":"2016-03-07T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-direct-where-s-zelda","changefreq":"weekly","video":[{"title":"2016:E273 - Nintendo Direct: Where's Zelda?","description":"Oh sure, we could focus on the scads of other games they talked about, but dammit we want that Zelda. We need to see that flowing blonde hair. We need to see that horse. \n\nGIVE US THAT HORSE, NINTENDO.\n\nSOURCES:\n\nNintendo Direct: \n\nGame Informer Star Fox Interview: http://www.gameinformer.com/games/star_fox_zero/b/...\n\nMetroid Prime Federation Force Trailer:","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-direct-where-s-zelda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d657a38e-9335-4b5e-8c63-1f04257ea9fb/sm/1788484-1457130217279-fh_thumb_9_copy_19.jpg","duration":505,"publication_date":"2016-03-04T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-life-is-hella-strange-ft-greg-miller","changefreq":"weekly","video":[{"title":"2016:E3 - Life is Hella Strange (ft. Greg Miller)","description":"Join Gus Sorola, Meg Turney, Ryan Haywood and Kinda Funny's Greg Miller as they discuss the time-traveling adventure game Life is Strange on this week's Patch Game Club! This episode originally aired on March 2, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-life-is-hella-strange-ft-greg-miller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f350689-1453-49a3-b95d-c3e4d993841e/sm/2013912-1457063486791-gc_-_Life_is_Strange_-_THUMB.jpg","duration":1574,"publication_date":"2016-03-04T03:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-16","changefreq":"weekly","video":[{"title":"2016:E271 - Lazer Team is a Documentary?","description":"We don't want to say we called it, but if a power suit shows up on earth tomorrow, we won't be surprised.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00e2748b-945d-4b96-967d-8252ea467629/sm/238166-1457054183413-Lazer-Team1-600x372.jpg","duration":470,"publication_date":"2016-03-04T00:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-elder-scrolls-6-this-year-unlikely","changefreq":"weekly","video":[{"title":"2016:E270 - Elder Scrolls 6 This Year? Unlikely.","description":"Ok, before we even address how many other places The Elder Scrolls should visit before \"Argonia\" i.e. Black Marsh, let's talk about how likely it is that this game is even happening this year. People say it is. We say not so fast.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-elder-scrolls-6-this-year-unlikely","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ab28f41-9b22-4b13-a7a1-4be57973c388/sm/24363-1457051901118-thumbnail.jpg","duration":488,"publication_date":"2016-03-04T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-14","changefreq":"weekly","video":[{"title":"2016:E15 - Uncharted 4 Delayed AGAIN + YouTubers Ups For Emmys + Mass Effect Pushed Back","description":"Uncharted 4 has been pushed back 2 weeks, the Emmys have announced that YouTubers will be eligible for their awards, and more! It's a round-up!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a146264c-0956-483b-ae5d-ea54daea97bf/sm/1663966-1457036124002-Thurs_Round_THumb.jpg","duration":565,"publication_date":"2016-03-03T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-breaking-time-in-quantum-break-ft-greg-miller-146","changefreq":"weekly","video":[{"title":"2016:E146 - Breaking Time in Quantum Break (ft. Greg Miller) – #146","description":"Join Gus Sorola, Meg Turney, and Kinda Funny's Greg Miller as they discuss Quantum Break, Walking Dead: Michonne, Pokemon, and more on this week's The Patch! This episode originally aired on March 2, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-breaking-time-in-quantum-break-ft-greg-miller-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aceebd1-2172-485c-a1a7-77a49e59b980/sm/2013912-1457022553158-p146_-_THUMB.jpg","duration":3829,"publication_date":"2016-03-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nintendo-nx-more-powerful-than-xbox-one","changefreq":"weekly","video":[{"title":"2016:E269 - Nintendo NX MORE POWERFUL than Xbox One?","description":"We're calling a slight nope on this one, but it sure is fun to dream. Come on Nintendo. Do it. Make the most powerful beast of a machine so we can play Zelda with all the bits and pixels.\n\nSOURCES:\n\nDualPixels Rumor Post: http://dualpixels.com/2016/02/27/rumor-new-informa...\n\nWii U GFLOPS: http://www.techpowerup.com/gpudb/1903/wii-u-gpu.ht...\n\nXbox One TFLOPS: http://www.techradar.com/news/gaming/consoles/ps4-...\n\nNintendo NX Runs Android?: \n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nintendo-nx-more-powerful-than-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a37ad0c-533c-4361-9415-badbb029e10e/sm/1788484-1456969368292-fh_thumb_9_copy_14.jpg","duration":682,"publication_date":"2016-03-03T01:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-next-xbox-upgradable","changefreq":"weekly","video":[{"title":"2016:E265 - Next Xbox Upgradable?","description":"Xbox head Phil Spencer has insinuated that the next xbox could be upgradable - more in line with gaming PCs. Love the idea? Hate it?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-next-xbox-upgradable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeb33828-6d95-4d1e-9cb6-121b52cc3ddd/sm/1663966-1456872935656-next_thumb.jpg","duration":491,"publication_date":"2016-03-01T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-battlefield-5-in-w-w-i-sony-s-power-glove-patent-holo-lens-in-march","changefreq":"weekly","video":[{"title":"2016:E14 - Battlefield 5 in WWI? + Sony's Power Glove Patent + HoloLens in March","description":"Iiiiiiiit's a roundup! From rumors that Battlefield 5 might step back a few decades to Sony's patent for a VR-compatible power glove to HoloLens dev kits shipping in March.... and don't miss movie directors having meltdowns on Facebook, the universe kicking ass at creating opportunities for life, robots being dumber than humans, and so much more! Order now for one low price of $0.00 with shipping and handling.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-battlefield-5-in-w-w-i-sony-s-power-glove-patent-holo-lens-in-march","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/688e7d4b-f431-49f7-83f1-db4ae91a3690/sm/24363-1456870001836-thumbnail.jpg","duration":552,"publication_date":"2016-03-01T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-gabe-newell-fires-dota2-host-he-s-an-s-s","changefreq":"weekly","video":[{"title":"2016:E264 - Gabe Newell Fires DOTA2 Host: He's \"An *SS\"","description":"What did you do this weekend? Relax? Well, while you were doing that Gabe Newell was blasting the DOTA2 Shanghai tournament host all over reddit. Sucks to be that guy.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-gabe-newell-fires-dota2-host-he-s-an-s-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e264d0e-fc20-4b15-87a5-0323ef14e542/sm/24363-1456794918726-thumbnail.jpg","duration":525,"publication_date":"2016-03-01T01:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-quantum-break-sucks-on-windows","changefreq":"weekly","video":[{"title":"2016:E263 - Quantum Break SUCKS on Windows?","description":"Now that's how you do clickbait. Go ahead and crown us king of clickbait. Give us a damn crown and scepter. We will glow and levitate off the ground while our clickbait waves incinerate the Internet.\n\nSOURCES:\n\nPrevious Quantum Break Report: \n\nOriginal (?) reddit post: https://www.reddit.com/r/gaming/comments/43ovvi/ps...\n\nPC Master Race post: https://www.reddit.com/r/pcmasterrace/comments/45t...\n\nHow to Geek Post: http://www.howtogeek.com/243012/why-you-shouldnt-b...\n\nUniversal Windows Platform Info: https://msdn.microsoft.com/en-us/library/windows/a...\n\nMike Ybarra Tweet: https://twitter.com/XboxQwik/status/70373455777477...\n\nOverlay Fix: https://www.reddit.com/r/gaming/comments/43ovvi/ps...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-quantum-break-sucks-on-windows","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccf504e9-698f-4c9d-aa80-dc632b943c5b/sm/1788484-1456785204854-fh_thumb_9_copy_8.jpg","duration":483,"publication_date":"2016-02-29T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-deadpool-open-world-game-nope","changefreq":"weekly","video":[{"title":"2016:E17 - Deadpool Open-World Game? Nope.","description":"Wait a sec, it's just that easy? Shit! Uhhh we're going to make an open-world VR Star Wars game! AND you can bang Rey! AND FINN. AND BB-8.\n\nIn fact, you can bang everything and everyone! Give us 2 million dollars please.\n\n\n\nSOURCES:\n\nDeadpool Kickstarter: https://www.kickstarter.com/projects/1566406847/de...\n\nCards against Inhumanity: https://www.kickstarter.com/projects/1465796929/ca...","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-deadpool-open-world-game-nope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a708271d-6ddf-4a4f-9638-3a4c8e53d686/sm/1788482-1456530589651-untitled-1.jpg","duration":324,"publication_date":"2016-02-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ubisoft-being-taken-over","changefreq":"weekly","video":[{"title":"2016:E262 - Ubisoft Being Taken Over?!","description":"Say It Ain't Ezi-So! I'm sorry. I'll see myself out.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ubisoft-being-taken-over","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b52c72f9-b661-49fa-9395-f4cccfa7aaa4/sm/24363-1456529704928-thumbnail.jpg","duration":479,"publication_date":"2016-02-26T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-should-video-game-cost-m-o-r-e","changefreq":"weekly","video":[{"title":"2016:E261 - Should Video Games Cost MORE?","description":"Of course no one wants to pay MORE for games, but could it be necessary?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-should-video-game-cost-m-o-r-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4e4fa67-509e-447c-9caf-01a77096f442/sm/1663966-1456446626376-cost_thumb.jpg","duration":540,"publication_date":"2016-02-26T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-copyright-gone-w-i-l-d-w-t-f-u","changefreq":"weekly","video":[{"title":"2016:E31 - Copyright GONE WILD? (WTFU)","description":"MORE channels and videos are being hit by unjust copyright claims. What's going on? Is the whole system broken? And what does fair use even mean?! Well, friend, we have a lot of stories to share in this business.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-copyright-gone-w-i-l-d-w-t-f-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56b93e73-632e-4548-8283-3e073d107d2e/sm/24363-1456443869375-thumbnail.jpg","duration":522,"publication_date":"2016-02-25T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016","changefreq":"weekly","video":[{"title":"2016:E13 - New Pokemon Games + $1 Million CS:GO Tournaments + Fallout 4 Survival Mode Details","description":"The names of the next two Pokemon game may have been leaked, Valve has announced they're giving away $1,000,000 for CS:GO tourneys, and we've got details on Fallout 4 survival mode!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df8283fd-f51f-4a11-aa59-92f3b5667013/sm/1663966-1456433841900-Thurs_Round.jpg","duration":553,"publication_date":"2016-02-25T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-prepping-for-the-vr-war-145","changefreq":"weekly","video":[{"title":"2016:E145 - This is war. VR WAR! – #145","description":"Join Gus Sorola, Ashley Jenkins, and Ryan Haywood as they discuss DICE, Unravel, the price of the HTC Vive and more on this week's The Patch! This episode originally aired on February 24, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-prepping-for-the-vr-war-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ec30aa0-9ddf-4817-bf75-58ca06970f60/sm/2013912-1456417011833-p145_-_THUMB.jpg","duration":3763,"publication_date":"2016-02-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-anti-videogame-senator-sentenced-to-prison","changefreq":"weekly","video":[{"title":"2016:E260 - Anti-Videogame Senator Sentenced to Prison","description":"A vocal critic of violent video games has been sentenced to prison for the kind of stuff he'd probably like to blame video games for if only he played them.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-anti-videogame-senator-sentenced-to-prison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e33f7c96-3a96-4cfb-886a-102b0652ee30/sm/24363-1456373644160-thumbnail.jpg","duration":375,"publication_date":"2016-02-25T04:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-uncharted-steals-art-from-assassin-s-creed","changefreq":"weekly","video":[{"title":"2016:E259 - Uncharted Stole Art From Assassin's Creed","description":"Turns out a shot in the newest trailer for Uncharted 4: A Thief's End featured artwork from Assassin's Creed IV: Black Flag. Do you think it was intentional?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-uncharted-steals-art-from-assassin-s-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44fb1515-9b5d-4a18-b6fe-02c0d9345711/sm/1663966-1456362232903-stole.jpg","duration":468,"publication_date":"2016-02-25T01:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-2","changefreq":"weekly","video":[{"title":"2016:E12 - REAL Sword Art Online + Xbox Live Under Attack? + Robot Lawyers","description":"Sword Art Online won't be fiction for much longer, Xbox Live goes down so much you feel like you should pay it--oh wait, you already do, robots are doing legal legwork, Warren Spector is trash talking the video game industry, China is racing for Mars, and mobile phones really really want gamers to care about them. LET'S SPEED RUN ALL THE NEWS!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/926c16e2-49c6-4351-95bd-5563770d3e7e/sm/24363-1456280278348-thumbnail.jpg","duration":484,"publication_date":"2016-02-24T02:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-rumor-new-zelda-to-release-on-nx-this-year","changefreq":"weekly","video":[{"title":"2016:E258 - Rumor: New Zelda To Release on NX THIS YEAR","description":"A NeoGAF poster has claimed he knows that Nintendo is launching the NX this year and will ship the delayed new Zelda title with it. RUMOR TIME!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-rumor-new-zelda-to-release-on-nx-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a23cbcb-452a-4ce2-ab1e-5376af2fae6e/sm/1663966-1456263976436-Zelda_Thumb.jpg","duration":399,"publication_date":"2016-02-23T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-htc-vive-vs-oculus-rift-who-w-i-n-s","changefreq":"weekly","video":[{"title":"2016:E30 - HTC Vive vs. Oculus Rift: Who WINS?","description":"Price and date(ish) have been released for HTC Vive, so now we can compare their release offerings. Which do you plan on getting?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-htc-vive-vs-oculus-rift-who-w-i-n-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e37ed9a2-5343-4e63-9ed4-7412fd823293/sm/24363-1456198421515-thumbnail.jpg","duration":454,"publication_date":"2016-02-23T03:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-kojima-i-c-a-n-t-fail","changefreq":"weekly","video":[{"title":"2016:E256 - Kojima: \"I CAN'T Fail\"","description":"Hideo Kojima's already feeling the pressure to deliver for Sony. If he doesn't... could his new studio be finished before it really even starts? It wouldn't be the first time...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-kojima-i-c-a-n-t-fail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce9b259-0f08-4b56-a65d-a160167058f8/sm/24363-1456010780209-thumbnail.jpg","duration":490,"publication_date":"2016-02-20T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-hackers-hold-hospital-for-ransom","changefreq":"weekly","video":[{"title":"2016:E29 - Hackers Hold Hospital for Ransom","description":"In the biggest case so far, a hospital in Hollywood has paid $17K worth of ransom in bitcoins to hackers who locked down their infrastructure earlier this month. First they came for the medical equipment. Next they will come for your thermostat. You'll never enjoy a comfortable temperature again.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-hackers-hold-hospital-for-ransom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/154f2a00-b13f-4ea6-8f80-8fab6fd8df46/sm/24363-1455920966551-thumbnail.jpg","duration":466,"publication_date":"2016-02-19T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-more-annual-game-releases","changefreq":"weekly","video":[{"title":"2016:E255 - No More Annual Game Releases?","description":"No, you don't understand, the games are going away! I don't care that I'm making a scene during Nana's funeral! WHERE ARE THE VIDEOGAMES, MOM?\n\nSOURCES:\n\nUbisoft Investor Day Presentation: https://www.ubisoftgroup.com/comsite_common/en-US/...\n\nAssassin's Creed Delay Rumor: \n\nUbiBlog Post: http://blog.ubi.com/a-message-from-the-assassins-c...\n\nGamesIndustry.biz Interview: http://www.gamesindustry.biz/articles/2016-02-18-i...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-more-annual-game-releases","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c8f2fe1-59d5-4e50-9546-20994273a210/sm/1788484-1455920200680-fh_thumb_8_copy_25.jpg","duration":342,"publication_date":"2016-02-19T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pokemon-company-pulls-down-licensed-fan-project","changefreq":"weekly","video":[{"title":"2016:E254 - Pokemon Company Pulls Down LICENSED Fan Project","description":"At least he didn't get Pika-SUED, amirite? I'm sorry.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pokemon-company-pulls-down-licensed-fan-project","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff0dcadd-db35-492a-87bb-b874400410c6/sm/1663966-1455842759947-POKEO.jpg","duration":495,"publication_date":"2016-02-19T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-3","changefreq":"weekly","video":[{"title":"2016:E11 - Nintendo NX Launch \"A Mistake\" + Lupe Fiasco/Daigo Match Fixed? + Wolverine Rated R","description":"Wow - that's a big load of news! Analysts are warning Nintendo not to launch the NX this year, Rapper Lupe Fiasco and Street Fighter pro Daigo face match fixing accusations, and Fox announces the next Wolverine movie will be rated R. Enjoy!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/470bb46e-54da-4a30-9f3f-3dc9ab460f55/sm/1663966-1455826774065-Mistake.jpg","duration":546,"publication_date":"2016-02-18T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-144","changefreq":"weekly","video":[{"title":"2016:E144 - Let's Firewatch The World Burn – #144","description":"Join Ashley Jenkins, Meg Turney, and Ryan Haywood as they discuss Firewatch, Far Cry: Primal, Fallout 4 DLC, and more on this week's The Patch! This episode originally aired on February 18, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94254b3a-7108-4b7a-80a3-4b34b776d0c5/sm/2013912-1455816839026-p144_-_TEMP_THUMB.jpg","duration":3775,"publication_date":"2016-02-18T17:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-mobile-more-powerful-than-consoles-by-2017","changefreq":"weekly","video":[{"title":"2016:E253 - Mobile More Powerful than Consoles?","description":"Those telephones are getting pretty fancy these days. '80s sci-fi shows wish they'd thought up something as cool as what's in your pocket. Especially since mobile phones may be able to outperform consoles in raw power for gaming by next year.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-mobile-more-powerful-than-consoles-by-2017","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/990613a7-8f51-4a78-ba4b-5733f19e05ab/sm/24363-1455767328619-thumbnail.jpg","duration":468,"publication_date":"2016-02-17T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-street-fighter-5-a-r-i-p-o-f-f","changefreq":"weekly","video":[{"title":"2016:E252 - Street Fighter 5 a RIPOFF?","description":"What, you don't like it? Wanna fight about it? OK LET'S GO. Here are the rules --\n\n1.) No fireballs.\n\n2.) No whooping / raised voices.\n\n3.) No pausing mid-kick so you can look at my crotch.\n\nSOURCES:\n\nStreet Fighter V IAP Details: http://www.destructoid.com/here-s-how-street-fight...\n\nStreet Fighter V Amazon Page: http://www.amazon.com/Street-Fighter-V-PlayStation...\n\nStreet Fighter V Metacritic: http://www.metacritic.com/game/playstation-4/stree...\n\nYoshinori Ono Tweet: https://twitter.com/Yoshi_OnoChin/status/699544277...\n\nSFV Post-Launch Update: http://www.capcom-unity.com/harrisony/blog/2016/02...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-street-fighter-5-a-r-i-p-o-f-f","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69672e16-38b9-476b-b3ce-4b094c87ef3a/sm/1788484-1455744377610-fh_thumb_8_copy_21.jpg","duration":345,"publication_date":"2016-02-17T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-3","changefreq":"weekly","video":[{"title":"2016:E28 - Apple Defies US Government Over Privacy","description":"Apple has (respectfully) defied a court order to build a back door into the iPhone's software.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82851bc-0eff-48ae-b35b-28858b7681f5/sm/1663966-1455743355123-eagle_THUMB.jpg","duration":457,"publication_date":"2016-02-17T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-mass-effect-andromeda-in-trouble","changefreq":"weekly","video":[{"title":"2016:E251 - Mass Effect: Andromeda in Trouble?","description":"More BioWare senior staff working on Mass Effect Andromeda have jumped ship... does this spell trouble for the game? Or... at least one or two more delays? We haven't had a single delay yet! It's practically tradition.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-mass-effect-andromeda-in-trouble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97f0ec8f-e840-4865-ab9e-c6a8c0e8f131/sm/24363-1455731538838-thumbnail.jpg","duration":499,"publication_date":"2016-02-16T23:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-fallout-4-dlc-announced-bethesda-bumps-up-season-pass-price","changefreq":"weekly","video":[{"title":"2016:E250 - Fallout 4 DLC Announced, Bethesda Bumps Up Season Pass Price","description":"Bethesda has announced the first 3 DLC packs for Fallout 4 (yay!) and have also announced the price of the season pass is going up $20 (boo!).","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-fallout-4-dlc-announced-bethesda-bumps-up-season-pass-price","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a47ec9f-c171-46d3-bcfc-f188e118241c/sm/1663966-1455664519709-dlc_thumb.jpg","duration":511,"publication_date":"2016-02-16T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-4","changefreq":"weekly","video":[{"title":"2016:E10 - Eye Tracking for The Division + Kanye West the Game Developer + Memories Hacked","description":"Ubisoft has confirmed Assassin's Creed's delay and announced eye tracking for The Division. Scientists are making super cement to store nuclear waste for 100,000 years. Samsung Smart TVs listen to everything you say... even the private stuff. Kanye West wants to be a game developer. 3DM is back at it trying to crack Denuvo. Cliff Bleszinski says Hideo Kojima wanted to work with him on Silent Hills. And a new documentary explores the discovery that memories can be modified... that's a lot of stuff!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4e95275-49f7-4daa-aa80-324e5e271939/sm/24363-1455663211699-thumbnail.jpg","duration":456,"publication_date":"2016-02-16T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-first-footage-of-star-wars-episode-viii","changefreq":"weekly","video":[{"title":"2016:E16 - First Footage of Star Wars: Episode VIII","description":"Production on Star Wars Episode VIII: The Search for More Money started on Thursday, so it's only appropriate that the first footage is out there. Sort of? It's not a huge surprise, but there you go. I guess they had to get it out there before all the people with their drones released it for them.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-first-footage-of-star-wars-episode-viii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db680a00-e9aa-493d-b764-0ad5785f8888/sm/24363-1455593352952-thumbnail.jpg","duration":420,"publication_date":"2016-02-16T03:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-2","changefreq":"weekly","video":[{"title":"2016:E15 - Deadpool Makes BANK","description":"Deadpool kicked ass and took names this weekend, breaking box office records in the process! Chimichangas all around!","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37437c07-1bd4-4d43-bd94-63226be37c00/sm/1663966-1455577674398-dead_thumb.jpg","duration":397,"publication_date":"2016-02-15T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-microsoft-angers-gamers-with-free-g-a-m-e-s-the-know","changefreq":"weekly","video":[{"title":"2016:E249 - Microsoft Angers Gamers with FREE GAMES?","description":"How dare they. How DARE they. Microsoft, this indignity will NOT stand. Just wait 'till you see what I have to say about you on my Twitter timeline. It'll burn your ass into another dimension.\n\n\n\nSOURCES:\n\nMajor Nelson's Blog Post: http://majornelson.com/2016/02/11/quantum-break-is...\n\nVG24/7 Article: http://www.vg247.com/2016/02/12/microsoft-wants-to...\n\nThe_CrapGamer Tweets: https://twitter.com/The_CrapGamer/status/697814501...\n\nhttps://twitter.com/The_CrapGamer/status/697815707...\n\nBoogie Tweet: https://twitter.com/Boogie2988/status/698170681809...\n\nRise of the Tomb Raider Sales: http://www.techtimes.com/articles/112605/20151203/...\n\nBrian Horton Leaves Crystal Dynamics: http://www.playstationlifestyle.net/2016/01/16/tom...\n\nSunset Overdrive Sales: http://www.vgchartz.com/game/73069/sunset-overdriv...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-microsoft-angers-gamers-with-free-g-a-m-e-s-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bab8c0a-73d6-42c3-8aea-8a4ec4ea2e5e/sm/1788484-1455323126932-fh_thumb_8_copy_16.jpg","duration":407,"publication_date":"2016-02-12T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-hideo-kojima-you-tuber","changefreq":"weekly","video":[{"title":"2016:E248 - Hideo Kojima: YouTuber?","description":"In his first video, Kojima gushes about movies!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-hideo-kojima-you-tuber","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef06b154-beac-4bef-a6ea-90f4d3426bb2/sm/1663966-1455311008308-kojima_2.jpg","duration":385,"publication_date":"2016-02-12T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-4","changefreq":"weekly","video":[{"title":"2016:E27 - Theory of Relativity CONFIRMED","description":"Apparently Einstein was smart? Who knew! His theory of relativity was confirmed today.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07a76174-891c-4a44-8f3e-83d0b416b23e/sm/1663966-1455233314002-theory.jpg","duration":381,"publication_date":"2016-02-11T23:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-we-blackmail-x-c-o-m-143","changefreq":"weekly","video":[{"title":"2016:E143 - We Blackmail XCOM? - #143","description":"Join Gus Sorola, Ashley Jenkins, and Ryan Haywood as they discuss XCOM 2, Firewatch, Overwatch and more on this week's The Patch! This episode originally aired on February 11, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-we-blackmail-x-c-o-m-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac5ece47-135c-4264-98c5-1da2fd5240f0/sm/2013912-1455208086795-p143_-_THUMB.jpg","duration":3806,"publication_date":"2016-02-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-make-games-for-f-r-e-e","changefreq":"weekly","video":[{"title":"2016:E246 - Make Games for FREE?","description":"Nothing in this world is free, except our gushing, overflowing love. Won't you sit there and let us shower you in our love? Don't wince! Our love is good for you. Don't get it in your eyes though.\n\nSOURCES:\n\nAmazon Lumberyard: http://aws.amazon.com/lumberyard/\n\nAmazon GameLift: http://aws.amazon.com/gamelift/\n\nAmazon Licensing CryEngine Rumor: http://www.gamesindustry.biz/articles/2015-04-07-a...\n\nAmazon Acquires Double Helix: http://techcrunch.com/2014/02/05/amazon-acquires-v...\n\nAmazon Acquires Twitch: http://gamasutra.com/view/news/224090/Amazon_to_ac...\n\nIan Vogel GamesIndustry.biz Interview: http://www.gamesindustry.biz/articles/2014-10-14-a...\n\nDiane Patterson Tweet: https://twitter.com/dianepatterson/status/69718696...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, James Willems, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-make-games-for-f-r-e-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/161d69ff-6860-4f71-9fc7-9bbf59ec99a7/sm/1788484-1455153149901-fh_thumb_8_copy_11.jpg","duration":432,"publication_date":"2016-02-11T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-deadpool-2-reportedly-greenlit","changefreq":"weekly","video":[{"title":"2016:E244 - Deadpool 2 Reportedly Greenlit","description":"Of course the movie's going to kick ass, but is it silly to green-light a sequel when the original film isn't out yet?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-deadpool-2-reportedly-greenlit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/713d8bbd-56b5-468a-8987-24c3e174991d/sm/1663966-1455143077013-Deadpool.jpg","duration":504,"publication_date":"2016-02-10T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-video-games-are-saving-the-world","changefreq":"weekly","video":[{"title":"2016:E243 - Video Games are Saving the World?","description":"We hear a lot how terrible gamers are and how we have no attention spans and blah blah blah, but you know what deserves more attention? How gamers are saving the world. So here's to you, heroes! Let's get blitzed and teabag everyone.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-video-games-are-saving-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4512544c-31b4-44e8-8166-a55b8e40a6ee/sm/24363-1455085122772-thumbnail.jpg","duration":471,"publication_date":"2016-02-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-6","changefreq":"weekly","video":[{"title":"2016:E8 - The Division Dumbed Down for PC? + Titanfall 2 Campaign + Hunger Games Blames Terrorism","description":"Whoa, that's a lot of news. A Ubisoft dev admitted that The Division was held \"in check\" on PC for consoles, but Ubisoft says otherwise. Titanfall 2 is getting a campaign and may come as soon as this year. Lionsgate blames terrorism for The Hunger Games missing its box office projections... plus a meteorite might have killed someone, Mars is getting virtual, and GameTrailers is closing. RIP. Woo, Tuesday!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84104354-626a-45b0-9d6f-ca8867d397b5/sm/24363-1455069392342-feb_9_roundup.jpg","duration":558,"publication_date":"2016-02-10T01:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-h1z1-becomes-2-separate-games","changefreq":"weekly","video":[{"title":"2016:E242 - H1Z1 Becomes 2 Separate Games","description":"H1Z1 is being broken into 2 separate games - do you think this makes sense or is it just a big money grab?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-h1z1-becomes-2-separate-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a83975c0-6474-4f7b-bfa5-2662e5c8fa1f/sm/1663966-1455060606136-h1z1_thuuumb.jpg","duration":418,"publication_date":"2016-02-09T23:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-game-pirates-quit-for-a-year","changefreq":"weekly","video":[{"title":"2016:E26 - Game Pirates Quit For a Year?","description":"The game cracking group that almost gave up on Just Cause 3 has announced they're not going to pirate for the next year to see how it affects game sales. Maybe Just Cause was Just Too Much for them? That's the name of Just Cause 4.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-game-pirates-quit-for-a-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6197a389-2081-4616-854b-f7f32f8a7b85/sm/24363-1454983554898-thumbnail.jpg","duration":474,"publication_date":"2016-02-09T02:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-red-dead-released-removed-from-xbox-one","changefreq":"weekly","video":[{"title":"2016:E241 - Red Dead Released, Removed from Xbox One","description":"Like most things in this world, our time with Red Dead Redemption was too short and too sweet. Now we're here, standing on the edge of a cliff, looking resolutely into the setting sun and swearing that we will never forget. \n\nRed Dead, we will never forget.\n\n*cue music swell*","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-red-dead-released-removed-from-xbox-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b271009-ec96-4b68-8e69-d834064259d5/sm/1788482-1454980895401-fh_thumb_8_copy.jpg","duration":363,"publication_date":"2016-02-09T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-apple-rejects-the-binding-of-isaac-over-child-abuse","changefreq":"weekly","video":[{"title":"2016:E240 - Apple Rejects The Binding of Isaac Over \"Child Abuse\"","description":"The Binding of Isaac has been rejected from the App Store over \"depictions of child abuse\". We take a look at why games are treated unfairly by Apple.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-apple-rejects-the-binding-of-isaac-over-child-abuse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/810d39bc-5723-4411-a79a-17b87d44a529/sm/1663966-1454966172400-issac_thumb.jpg","duration":506,"publication_date":"2016-02-08T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-real-sports-team-hires-e-sports-player","changefreq":"weekly","video":[{"title":"2016:E239 - REAL Sports Team Recruits eSports Player?!","description":"Look. We don't know much about this sports thing, except that soccer players seem to be made of glass because they get spontaneously injured every single game. But we DO know that a pro soccer (football for the Europeans) team has hired an eSports player to represent them in FIFA. Does this mean eSports are sports whether we like it or not? Are eSports players going to start falling over and crying because someone looked at them wrong?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-real-sports-team-hires-e-sports-player","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49a19f28-048d-4daf-9ff1-6cf2c399d03f/sm/24363-1454731630287-thumbnail.jpg","duration":463,"publication_date":"2016-02-06T04:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-is-sega-interested-in-making-dreamcast-2-happen","changefreq":"weekly","video":[{"title":"2016:E238 - Is Sega Interested in Making Dreamcast 2 Happen?","description":"One group of fans thinks they can convince Sega to make a new version of the Dreamcast - are they crazy or on to something?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-is-sega-interested-in-making-dreamcast-2-happen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a9174e8-f10b-42d2-903f-00fd1b45114c/sm/1663966-1454722159722-dreamcast.jpg","duration":554,"publication_date":"2016-02-06T01:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-discrimination-in-g-a-m-e-s","changefreq":"weekly","video":[{"title":"2016:E237 - DISCRIMINATION in GAMES?","description":"If you are color-blind, you might not see THIS! Oh wait that's just black.\n\n\n\nWritten By: Elyse Willems\n\nHosted By: Adam Kovic, Bruce Greene, and Elyse Willems","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-discrimination-in-g-a-m-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11c296d0-0e70-4abc-9d9f-582a1bd20819/sm/2013912-1454716132201-FH_Thumb_8_copy.jpg","duration":338,"publication_date":"2016-02-05T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-streaming-video-under-attack-from-old-cable","changefreq":"weekly","video":[{"title":"2016:E25 - Streaming Video Under Attack from Old Cable","description":"Hulu is the latest victim in the war against streaming video, as Time Warner makes a bid to take over and keep the service from offering streaming of current TV shows to reduce cord cutting.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-streaming-video-under-attack-from-old-cable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecd4c361-6bc2-4e27-a541-d9ae647c5600/sm/24363-1454656308604-thumbnail.jpg","duration":456,"publication_date":"2016-02-05T07:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-division-locks-monthly-events-behind-season-pass","changefreq":"weekly","video":[{"title":"2016:E236 - The Division Locks Monthly Events Behind Season Pass","description":"What do you think of The Division locking so much content behind their season pass?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-division-locks-monthly-events-behind-season-pass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3efb82a2-4cf2-41aa-8c0a-7c5b0b8a4bce/sm/1663966-1454639162057-without.jpg","duration":427,"publication_date":"2016-02-05T02:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-7","changefreq":"weekly","video":[{"title":"2016:E7 - Kojima and del Toro Together Again + Nintendo Down Again + Icebergs on Pluto","description":"Lots of news in today's round-up including what we think Kojima and del Toro's couple name should be. Real hard-hitting stuff.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/393d27e7-affe-411a-9008-33a32c0cf370/sm/1663966-1454631491444-reunited.jpg","duration":558,"publication_date":"2016-02-05T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-zoombinis","changefreq":"weekly","video":[{"title":"2016:E2 - Zoombinis: Making Discrimination Fun AND Educational!","description":"Join Ashley Jenkins, Meg Turney, and Ryan Haywood as they discuss Zoombinis, the nostalgic puzzler on this week's Patch Game Club! This episode originally aired on February 4, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-zoombinis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb58a1b0-5e39-422d-b5bd-6726e82b7f66/sm/2013912-1454621660301-gc_-_Zoombinis_-_THUMB.jpg","duration":811,"publication_date":"2016-02-04T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-witness-our-mighty-godhood-142","changefreq":"weekly","video":[{"title":"2016:E142 - Plumbing the Depths of Godhood! - #142","description":"Join Ryan Haywood, Ashley Jenkins and Meg Turney as they discuss The Witness, Peter Molyneux, Earth Defense Force and more on this week's The Patch! This episode originally aired on February 3, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-witness-our-mighty-godhood-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92be5e76-7e06-4ca4-8999-63349bf2baed/sm/2013912-1454603476699-p142_-_THUMB.jpg","duration":3675,"publication_date":"2016-02-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-dna-discrimination-in-schools","changefreq":"weekly","video":[{"title":"2016:E24 - DNA Discrimination in Schools?","description":"A school has attempted to kick out a student because of his DNA. GATTACA, here we come! We've still got a long way to go, since DNA is currently used to try to incriminate mystery poopers, but we'll get there. Uma Thurman is worth it.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-dna-discrimination-in-schools","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7289916e-daf1-4ccf-8c04-085e5a31b4fc/sm/24363-1454567136614-thumbnail.jpg","duration":480,"publication_date":"2016-02-04T06:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-could-early-access-come-to-p-s4","changefreq":"weekly","video":[{"title":"2016:E235 - Could Early Access Come to PS4?","description":"ARK: Survival Evolved's creator is called for fans to demand a viable early access system on PS4 - are you convinced?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-could-early-access-come-to-p-s4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdd3fe92-cd20-4cde-b78f-50805eacc480/sm/1663966-1454606402693-neeeeewthumb.jpg","duration":521,"publication_date":"2016-02-04T01:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-porn-gaming-s-next-frontier-the-know","changefreq":"weekly","video":[{"title":"2016:E234 - Porn: Gaming's Next Frontier? - The Know","description":"Reporting on news is lame. What if we reported on porn?\n\nWait, what if we just made porn.\n\nWhat if we became porn.\n\nWhat if we transcended our physical bodies and became the idea of pornography.\n\nYeah... then we'd get all the views.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-porn-gaming-s-next-frontier-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0001defa-d2a7-4530-a73d-86f84f4ed86c/sm/1788484-1454543329879-fh_thumb_8_copy_5.jpg","duration":650,"publication_date":"2016-02-03T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-8","changefreq":"weekly","video":[{"title":"2016:E6 - EA Vs. Ubisoft Legal Battle + PS4 Outsells Xbox 2 to 1 + Pokemon GO this Month?","description":"So many news! From EA and Ubisoft going to court over their own trademark dispute to eagles taking down drones to console sales comparisons to space journeys to international health crises (we might have snuck that one in there), you've got a lot to catch up on.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e238d127-3f82-4aa6-a2c4-d14c36d3e9dc/sm/24363-1454492543690-thumbnail.jpg","duration":551,"publication_date":"2016-02-03T09:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-shooter-campaigns-too-e-x-p-e-n-s-i-v-e","changefreq":"weekly","video":[{"title":"2016:E233 - Shooter Campaigns TOO EXPENSIVE?","description":"It turns out the single player portion of games costs WAY more to develop than multiplayer. With more games shrugging off campaigns, are single player shooters doomed?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-shooter-campaigns-too-e-x-p-e-n-s-i-v-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e74667a-e8f4-46cd-9d18-80b0cc8c3dfc/sm/24363-1454469415454-thumbnail.jpg","duration":506,"publication_date":"2016-02-03T03:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-anti-swat-lawmaker-swatted","changefreq":"weekly","video":[{"title":"2016:E23 - Anti-SWAT Lawmaker SWATTED","description":"What do you do when a lawmaker dislikes swatting enough to make it a felony? Send a swat team to their house, obviously! That will show them! Bet they won't try to make that law anymore, huh?","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-anti-swat-lawmaker-swatted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d63fd4e8-3487-4f85-a5c4-904cf2038890/sm/24363-1454461984020-thumbnail.jpg","duration":471,"publication_date":"2016-02-03T01:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-not-allowed-to-r-e-a-c-t-u-p-d-a-t-e-d","changefreq":"weekly","video":[{"title":"2016:E232 - Not Allowed to REACT?! [UPDATED]","description":"UPDATE: The Fine Bros. have decided to cancel their trademark applications, cancel their REACT WORLD program, and release all content ID claims against other YouTube videos. More details here: http://bit.ly/1P25pjn -- Since our discussion is largely about the ramifications of the attempt and its impact on online video we'll keep this video up, but please note the new information in your consideration of the topic!\n\nFirst they came for my Let's Plays. Now they've come for my REACT videos. Is nothing sacred from trademarking? Apparently not. Remember Candy? No one else does either. We can't even use that word.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-not-allowed-to-r-e-a-c-t-u-p-d-a-t-e-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f076c489-aa66-4162-8687-1b2c60fbccbf/sm/24363-1454389095923-thumbnail.jpg","duration":700,"publication_date":"2016-02-02T04:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-game-devs-blow-kickstarter-money-on-strippers-and-booze","changefreq":"weekly","video":[{"title":"2016:E231 - Game Devs Blow Entire Budget on Strippers and Booze","description":"These guys suck, but also they're kiiiiinda awesome...","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-game-devs-blow-kickstarter-money-on-strippers-and-booze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/468904a6-d35e-4b70-86d9-f2c3b3a7a674/sm/1663966-1454381525721-strip2.jpg","duration":414,"publication_date":"2016-02-02T02:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-the-division-hacked-a-l-r-e-a-d-y","changefreq":"weekly","video":[{"title":"2016:E230 - The Division HACKED ALREADY?","description":"2016:E230 - The Division HACKED ALREADY?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-the-division-hacked-a-l-r-e-a-d-y","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d76f454c-0b75-4db7-b414-4a81da7f0960/sm/1788484-1454369464404-fh_thumb_8_copy.jpg","duration":356,"publication_date":"2016-02-01T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-game-stop-making-games","changefreq":"weekly","video":[{"title":"2016:E229 - GameStop Making Games","description":"Yep, GameStop, the store that gives you 5 cents on the dollar for hit games, has announced that they're publishing their first game.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-game-stop-making-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd710eea-9645-4489-92ce-debc97e3595d/sm/1663966-1454114659829-gamestop.jpg","duration":491,"publication_date":"2016-01-30T00:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-ea-pulls-out-of-e3","changefreq":"weekly","video":[{"title":"2016:E228 - EA Pulls Out of E3","description":"EA has decided not to attend E3 2016 - is this the beginning of the end for E3?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-ea-pulls-out-of-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/917b3284-24f2-4e81-ac9e-f8f9241d19e3/sm/1663966-1454028491016-e3_thumb.jpg","duration":505,"publication_date":"2016-01-29T00:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-ea-making-its-own-e3","changefreq":"weekly","video":[{"title":"2016:E141 - EA Making Its Own E3? - #141","description":"Join Gus Sorola, Jeremy Dooley and Ryan Haywood as they discuss EA Play, The Division, Star Citizen and more on this week's The Patch! This episode originally aired on January 27, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-ea-making-its-own-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e2e4339-7b0d-4707-89d1-ae1acb085ed1/sm/2037887-1453999956430-p141_-_THUMB.jpg","duration":3668,"publication_date":"2016-01-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-nx-features-revealed","changefreq":"weekly","video":[{"title":"2016:E227 - NX Features Revealed?","description":"Let's take a look at all the NX Rumors.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-nx-features-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/531e049e-b6b1-4ca1-9bf8-31abf8012cec/sm/2141811-1453489776697-Thumb.jpg","duration":680,"publication_date":"2016-01-22T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-9","changefreq":"weekly","video":[{"title":"2016:E5 - Kojima Hunts for Tech + Minecraft Education Edition + Spider Man Is Impossible","description":"We’re in Australia for RTXAU! And boy do we have some news for you!","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/317bb4fc-9251-45a6-a05a-699d7ee386d1/sm/2141811-1453411315749-Thumb.jpg","duration":766,"publication_date":"2016-01-21T21:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-the-patch-goes-down-under-140","changefreq":"weekly","video":[{"title":"2016:E140 - The Patch Goes Down Under - #140","description":"Join Gus Sorola, Meg Turney and Ryan Haywood from Sydney, Australia as they discuss XCOM 2, Pokemon GO, Neko Atsume and more on this week's The Patch! This episode originally aired on January 20, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-the-patch-goes-down-under-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3da0d50-29ab-413a-959b-cb41f6c37be7/sm/2013912-1453394393172-p140_-_THUMBNAIL.jpg","duration":3665,"publication_date":"2016-01-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-you-tubers-on-netflix","changefreq":"weekly","video":[{"title":"2016:E226 - YouTubers on Netflix?","description":"YouTubers are coming to Netflix and we've got the scoop.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-you-tubers-on-netflix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/432fc398-b1bf-4ab3-9036-e69d4c71e7f6/sm/2141811-1453250497717-Thumb.jpg","duration":427,"publication_date":"2016-01-20T00:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-digital-games-hide-sales","changefreq":"weekly","video":[{"title":"2016:E225 - Digital Games Hide Sales?","description":"It's virtually impossible to find solid sales data on digital games, because the publishers don't want to share. What's got them so scared?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-digital-games-hide-sales","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db1b477c-5262-4089-a76f-bf0e2a3bbebb/sm/24363-1453186119495-thumbnail.jpg","duration":607,"publication_date":"2016-01-19T06:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-10","changefreq":"weekly","video":[{"title":"2016:E4 - New Call of Duty Lawsuit + Dead Rising 4 Rumors + Alan Rickman Passes Away","description":"ESPN has officially launched eSports coverage, Call of Duty has sold more than 250 million copies but is being taken to court, Mad Max Stars at the Oscars, a high school launches a gaming curriculum... and to cap it all off acting legend Alan Rickman has passed away. It's the last one that hurts. That's why we put it last. you really can't follow it. :(","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7c2d2c9-87b8-4715-92e9-74777960bc5e/sm/24363-1452970122153-thumbnail.jpg","duration":591,"publication_date":"2016-01-16T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pew-die-pie-has-a-youtube-n-e-t-w-o-r-k","changefreq":"weekly","video":[{"title":"2016:E223 - PewDiePie Has a YOUTUBE NETWORK?","description":"Day 5 without Lawrence. Getting harder to write news stories; had to draft Elyse. Lawrence: wherever you are, please come back. Please.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pew-die-pie-has-a-youtube-n-e-t-w-o-r-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7fd88db-ce08-4467-a727-83b776b8095d/sm/1788484-1452897134807-fh_thumb_8_copy_960.jpg","duration":366,"publication_date":"2016-01-15T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-we-love-cannibalism-139","changefreq":"weekly","video":[{"title":"2016:E139 - We Support Cannibalism! - #139","description":"Join Gus Sorola, Meg Turney and Ashley Jenkins as they discuss Psychonauts 2, Games Done Quick, Tharsis, The Division and more on this week's The Patch! This episode originally aired on Januray 13, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-we-love-cannibalism-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae034985-bf57-48cd-b99b-d8737b84ae25/sm/2013912-1452788679985-p139_-_TEMP_THUMB.jpg","duration":3728,"publication_date":"2016-01-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-play-station-vr-has-the-best-games","changefreq":"weekly","video":[{"title":"2016:E222 - PlayStation VR Has the Best Games?","description":"GameStop's CEO thinks PlayStation VR has the best line-up of games - do you agree?","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-play-station-vr-has-the-best-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f45703c6-f22d-456e-93b2-c9430580f8cf/sm/1663966-1452740742838-Screen_Shot_2016-01-13_at_9.05.12_PM.png","duration":764,"publication_date":"2016-01-14T02:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-computers-are-racial-p-r-o-f-i-l-i-n-g","changefreq":"weekly","video":[{"title":"2016:E221 - Computers are RACIAL PROFILING?","description":"Lawrence is still on his cruise, still drinking booze, still not reporting the news.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-computers-are-racial-p-r-o-f-i-l-i-n-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ca894db-16d2-4023-93a1-5777f3a1a134/sm/1788484-1452725032971-FH_Thumb_7_copy.jpg","duration":373,"publication_date":"2016-01-13T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-can-sony-trademark-let-s-play","changefreq":"weekly","video":[{"title":"2016:E220 - Can Sony Trademark Let's Play?","description":"Well this is awkward. It looks like Sony wants to dibs the term \"Let's Play.\" Unfortunately it's already in use by, well, just about the entire internet. And us. That might cause a few little problems.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-can-sony-trademark-let-s-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbda55ac-2386-4281-ac8b-96b551f9c5b2/sm/24363-1452582140438-thumbnail.jpg","duration":594,"publication_date":"2016-01-12T07:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-war-kicks-ass-heavy-fire-shattered-spear-gameplay","changefreq":"weekly","video":[{"title":"2015:E135 - WAR KICKS ASS - Heavy Fire: Shattered Spear Gameplay","description":"Corporal Sergeant, reporting for duty, sir! I've been looking forward to War my whole life. My granddad did War. My father did War. And I'm here for War too!\n\nGeneral, I understand that War is hard, but I've been training for War since I was a lil' boy on the farm. I always told my family, \"One day I'll be at War. And I won't be here for you because I'm at War. And maybe I'll come home, and maybe I won't. But I have to join Army so that I can fight War.\"\n\nSo let's do it, sir! Let's get some War!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-war-kicks-ass-heavy-fire-shattered-spear-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5adb4306-b5f9-4259-ab8a-98feb0f0469f/sm/2013912-1448059482801-fh_thumb_7_copy_1024_(15).jpg","duration":541,"publication_date":"2015-11-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/in-review-2015-fallout-4-in-review-the-know-2","changefreq":"weekly","video":[{"title":"2015:E3 - Fallout 4 In Review - The Know","description":"Adam and Lawrence sit down and take a long, measured, mature look at Fallout 4: its release, its playability, its fun-factor, and --\n\nNaaaaahhh, they just run around shootin' dudes for bottle caps.\n\nHosted By: Adam Kovic and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/in-review-2015-fallout-4-in-review-the-know-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bef3dec-dc66-417d-8b93-25c1c9934546/sm/1788484-1448488967029-fh_thumb_7_copy_1024_(20).jpg","duration":1164,"publication_date":"2015-11-25T22:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-rockstars","changefreq":"weekly","video":[{"title":"2015:E11 - WE ARE ROCKSTARS","description":"It's a Sex Swing kinda week. Plus more Masters of the Blasters art is trickling in. Maybe that should be the sequel... Master of the Blasters: The Trickle.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-rockstars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2123054-7297-4dff-a908-732265b43604/sm/1788482-1448402889903-Fanart20151125.png","duration":1109,"publication_date":"2015-11-25T20:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-ramp-it-up-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E134 - RAMP IT UP - GTA 5 Gameplay","description":"Happy Thanksgiving, fools. We're not in the office. I'm spending all day in the kitchen with a turkey and 2 cases of wine. Yes. 2 cases. Of wine. And a magnum. Oh, and 2 bottles of sparkling wine and 2 of dessert. That's like 30 bottles. And there are only 9 of us coming to dinner. HAHAHAHA oh god someone is going to die. \n\nEpic Supercar Skatepark: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/tOltPerwW0udci5pgbTQIg#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-ramp-it-up-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bbf67b0-ce44-4906-a6a8-41988cf489bc/sm/2013912-1448303256988-fh_thumb_7_copy_1024_(14).jpg","duration":678,"publication_date":"2015-11-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-social-justice-ruining-games-44","changefreq":"weekly","video":[{"title":"2015:E44 - Social Justice RUINING Games? - #44","description":"Thanks Lenovo Gaming and GameState for sponsoring this podcast! Visit LenovoGameState.com to give your feedback on the first mission: good guys, bad guys, and weapons. Most importantly, we need to add ass-less chaps to the game.\n\nDUDE SOUP LIVE TICKETS! \n\nhttp://hollywood.improv.com/event.cfmid=423469\n\nLLLLLLLLLAAAADIES AND GENTLEMEN! Welcome to the WORLD FAMOUS Dude Soup, the home of a thousand laughs and a million opinions, all of them wrong! Tonight we are THRILLED to welcome an all new Dude to the Soup. Hailing all the way from the Great White North, please put your hands together for ELYYYYSSSEEEE WILLEMMMMMMSSSS!!!!\n\n**applause**\n\nElyse comes from an esteemed gaming and Games Journalism background, working as a Producer for many years on Game Trailers. You may have seen her as Pervince in Tabletop Adventures, or playing the role of Elyse Willems in Mandatory Update. \n\nElyse is 3'7\" tall, with silver-blonde hair and a mischievous elfin grin that proves she's up to no good at all times. We hope you love her as much as we hope we love her. So let's all say Hello, How Are You, and Goodness What A Mischievous Smile as we welcome Elyse to Funhaus.\n\nPlease tip your waiters.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-social-justice-ruining-games-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b99a68c-5ac9-4aee-b470-095b0fed4bf4/sm/2013912-1448405679836-fh_thumb_7_copy_1024_(17).jpg","duration":3966,"publication_date":"2015-11-24T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-are-t-r-a-n-s-f-o-r-m-e-r-s-40","changefreq":"weekly","video":[{"title":"2015:E40 - We are TRANSFORMERS? - #40","description":"**Holiday Sale 15% off entire store 11/23 - 11/30 http://bit.ly/RT_Store\n\nDUDE SOUP LIVE TICKETS! \n\nhttp://hollywood.improv.com/event.cfmid=423469\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nSpoole had a doctor's appointment, so this is like the 5th week in a row of not having a regular Open Haus.\n\nBut when you think about it, what is a \"regular Open Haus\" Every week is a cavalcade of idiot talking over each other, trying to one up on the loud dumb jokes. Each episode has someone moving cameras, or storming out of the room, or taking off their shirts. Not a Tuesday goes by when we don't get bitchy with each other about stealing the mic for 15 seconds.\n\nSo I ask you the question: what is a Regular Open Haus Or are we just irregular people, and we should accept that nothing will be normal I dunno. I just work here.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-are-t-r-a-n-s-f-o-r-m-e-r-s-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf408dcc-f02b-497d-aab2-7d5352785042/sm/2013912-1448296359983-OH_Nov_24_(2).jpg","duration":700,"publication_date":"2015-11-23T16:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-star-trek-is-hot","changefreq":"weekly","video":[{"title":"2015:E38 - STAR TREK IS HOT","description":"DUDE SOUP LIVE TICKETS! \n\nhttp://hollywood.improv.com/event.cfmid=423469\n\n**Holiday Sale 15% off entire store 11/23 - 11/30 http://bit.ly/RT_Store\n\nLet's see, what kind of description should I write today I've already done a fake Star Trek intro. You know, one of those \"Space, the final frontier\" kind of things. So I can't do that.\n\nAnd I've written a lot of songs, which Bruce has covered in the video, so I can't do that.\n\nAnd there really isn't any Rule 34 in this episode, so I can't be grossed out by the disgusting crap they look up.\n\nBut, hey, look! I'm kinda 4 paragraphs into the description now! I think this'll work. This is fine, right Yeah, I'm feeling pretty good about this. Let's keep this one.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-star-trek-is-hot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c271153e-4427-48e2-b536-ee61f21c6e9f/sm/2013912-1448296230490-fh_thumb_7_copy_720.jpg","duration":1180,"publication_date":"2015-11-23T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-anime-girls-suck-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2015:E133 - ANIME GIRLS SUCK - Wheelhaus Gameplay","description":"Only a king could impress the lesser nobility, so King Fernando welcomed his guests to his wedding banquet as only a king could. Small dishes of grouse liver mousse baked in a puff shell, olives from the colonies on the sea, and chilled Sicilian wines loosed the tongues of the gentry, as everyone paid compliments to the king and his young bride. When the fiddlers started playing, the guests knew the feast was truly about to begin.\n\nServants brought skewers of goat, dripping in their juices. They brought a cold soup of chestnuts and cream, and a plate of greens brought still planted from the southern reaches of Portugal. This was followed by peacock-and-pigeon pie, and the fruit of the all the seas: lobsters, crabs, scallops, mussels and clams, salmon three ways: tartare, baked, and grilled. There was black bread and white, and cakes of oatbran, with bowls of honeycomb and butter for dipping, each to his own. \n\nHeaping bowls of steamed vegetables followed to accompany the meat - peas and turnips, onions charred to a crisp, lightly wilted greens with slivered almonds . Here the chefs outdid themselves, bringing forth a haunch of ox, rare and bloody; swan in its plumage stuffed with game hens; lamb chops and racks; the ribs of a boar glazed with honey; a deer, roasted whole and studded with cloves, with skewered persimmons on its antlers was the centerpiece.\n\nA train of sweets came out next: creams and candied lemons, stone fruit poached in mead, wheels of white cheese with blue veins, and spun sugar in the shape of small crowns.\n\nAfter the wedding feast, his wife was imprisoned for life.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-anime-girls-suck-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c793bd8-a26e-4e02-8cc4-c75d2f1a76d9/sm/2013912-1447971427329-fh_thumb_7_copy_1024_(12).jpg","duration":963,"publication_date":"2015-11-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-boats-n-bros-a-r-k-survival-evolved-gameplay-part-6","changefreq":"weekly","video":[{"title":"2015:E132 - BOATS 'N BROS - ARK: Survival Evolved Gameplay Part 6","description":"RBoats and bros, boats and bros, I gotta have me my boats and bros\n\nThe Pussy, the Ainus, the Peinoos are dinos\n\nCome sit on my Gooch while we're drinking some wino\n\nBerries and water on my new raft\n\nTo steer this thing you pull my shaft\n\nWe sail around the river and go rock to rock\n\nThe previous rhyme was about my cock\n\nPut on your leather vest, call me a tailor\n\nThere's a nice lady dino, I'd like to rail her\n\nBoats and bros, boats and bros, I gotta have my more boats and bros","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-boats-n-bros-a-r-k-survival-evolved-gameplay-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e65f0dc-236b-4d32-88fe-5c696caaa061/sm/2013912-1447890050085-fh_thumb_7_copy_1024_(9).jpg","duration":783,"publication_date":"2015-11-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-call-of-duty-is-a-f-cking-joke-call-of-duty-black-ops-3-gameplay","changefreq":"weekly","video":[{"title":"2015:E131 - CALL OF DUTY IS A F*CKING JOKE - Call of Duty: Black Ops 3 Gameplay","description":"We invited Josh Flanagan, Real Life American SuperSoldier to play Call of Duty: Bloopin' It Up 3. \n\nIt turns out Flanny Boy is a real natural on the Battlezone, fragging noobs and whatnot like a real natural. Oh wait, it's the campaign mode and everyone wins. #Activision.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-call-of-duty-is-a-f-cking-joke-call-of-duty-black-ops-3-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8db6f9f4-dc47-4f45-9004-75118e355671/sm/2013912-1447891827197-fh_thumb_7_copy_1024_(11).jpg","duration":560,"publication_date":"2015-11-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-masters-of-the-blasters","changefreq":"weekly","video":[{"title":"2015:E10 - WE ARE MASTERS OF THE BLASTERS","description":"The community comes through with weird mashups of pizza, Shia Labeouf, and Ron Perlman.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-masters-of-the-blasters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49959469-9bb3-4e68-9426-cfad1f1c83f9/sm/1788482-1447798022119-Fanart20151117.png","duration":1512,"publication_date":"2015-11-18T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-best-of-the-worst-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E130 - BEST OF THE WORST - GTA 5 Gameplay","description":"Remember when Adam and Bruce were out of the office for like 2 weeks Adam went to MCM in London, and Bruce got sick, so we were all pitching in as best we could to cover and help make some extra videos\n\nWe call those The Dark Times.\n\nWe still have some leftover crap from The Dark Times. This is one of those craps: a GTA video starring Joel. Enjoy\n\nSuper GTA Deathmatch: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/3JsjvNH7mEOVIX7HTCXciw#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-best-of-the-worst-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c583510-3f46-450a-a671-8635b624a274/sm/2013912-1447816967248-fh_thumb_7_copy_1024_(8).jpg","duration":464,"publication_date":"2015-11-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-fallout-4-needs-m-o-r-e-43","changefreq":"weekly","video":[{"title":"2015:E43 - Fallout 4 NEEDS MORE? - #43","description":"Thanks to Turtle Beach for sponsoring this podcast! You can check out the official Star Wars: Battlefront Sandtrooper Wired Stereo Gaming Headset here: http://www.bestbuy.com/site/turtle-beach-star-wars...\n\nWelcome to another resplendent episode of Dude Soup, the only Soup that talks about the talk you care about. This week's Soupman talks about everything from Fallout to Battleout, and then and again! So strap onto your booters and take a chill pill cause here we go!\n\nPlease join me in the traditional Dude Soup Invocation:\n\nDude Soup we praise to thee\n\nDude Soup so we may talk of Games\n\nDude Soup is all I want to be\n\nDude Soup stars Adam Bruce and James.\n\nAnd Lawrence.\n\nIn Soup we Dude.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-fallout-4-needs-m-o-r-e-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78e70d87-f51c-453f-80c6-10af6481bb68/sm/2013912-1447816874947-fh_thumb_7_copy_1024_(7).jpg","duration":3827,"publication_date":"2015-11-18T03:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/in-review-2015-halo-5-in-review","changefreq":"weekly","video":[{"title":"2015:E1 - Halo 5 In Review","description":"Adam and Lawrence discuss Halo 5's successes and failures, and manage to not give it a score!","player_loc":"https://roosterteeth.com/embed/in-review-2015-halo-5-in-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c429adcc-6b89-44fd-b264-b3f260849139/sm/1788482-1447714066364-fh_thumb_7_copy_1024.jpg","duration":1121,"publication_date":"2015-11-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-sexy-funhaus-c-a-l-e-n-d-a-r-39","changefreq":"weekly","video":[{"title":"2015:E39 - SEXY Funhaus CALENDAR? - #39","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nSome days you spend long hours toiling away on a video description. Some days your only goal, your raison d'tre, is the simple amusement of the viewing audience, the dedicated ones who click through to read the full description.\n\nAnd some days are Friday afternoon at 5:47 and you want to bang out a quick description as quickly as you can so that you can go home and pack for a weekend trip with your girlfriend.\n\nWhich kind of day is this I guess you'll never know.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-sexy-funhaus-c-a-l-e-n-d-a-r-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75a7fade-715c-4504-a9fc-d9cdeb074904/sm/2013912-1447695339925-fh_thumb_7_copy_1024_(6).jpg","duration":788,"publication_date":"2015-11-16T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-a-g-e-restricted-c-o-n-t-e-n-t","changefreq":"weekly","video":[{"title":"2015:E37 - [AGE-RESTRICTED CONTENT]","description":"WARNING! WARNING! WARNING! This video is TOO HOT FOR YOUTUBE BABIES!\n\nAfter getting two videos age restricted in the last 2 weeks, we know what you guys want: any excuse to flag our videos for \"inappropriate content.\"\n\nFuck you guys.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-a-g-e-restricted-c-o-n-t-e-n-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dd6ae90-3231-414d-9c06-76fbb17f5bec/sm/2013912-1447692978407-fh_thumb_7_copy_1024_(5).jpg","duration":980,"publication_date":"2015-11-16T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-fight-that-pussy-day-one-garry-s-incident-gameplay","changefreq":"weekly","video":[{"title":"2015:E129 - FIGHT THAT PUSSY - Day One: Garry's Incident Gameplay","description":"It started as a joke. It started as a brief moment in time. But then we decided to actually play the game. So here we are, doing a full play through of Day One: Garry's Incident. You have Spoole to thank, I guess, but really we're all to blame.\n\nGod save the monkeys.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-fight-that-pussy-day-one-garry-s-incident-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2060557e-4cf4-4219-9a71-eabfaad5cd12/sm/2013912-1447369272946-fh_thumb_7_copy_1024_(1).jpg","duration":663,"publication_date":"2015-11-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-4","changefreq":"weekly","video":[{"title":"2015:E17 - HULK CHALLENGE in GTA 5! Mod Gameplay!","description":"In a city, unlike any city, that's ever been a city before. One man is just trying to go about his day. But then BLAMMO - Hulk.\n\nThis summer, join international movie star Franklin for ESCAPE FROM HULK - IN 3D! \n\nTHRILL at the action!\n\nCHILL with some Netflix!\n\nGRILL a couple'a hot dogs to eat while you watch...\n\nESCAPE FROM HULK - IN 3D!!\n\nCan Franklin do whatever he needs to do in order to ESCAPE FROM HULK - IN 3D! Exciting chase scenes, explosive action, death death death galore. What more are you looking for\n\nSo come on down to the mulitplex to watch a movie, and that movie is called ESCAPE FROM HULK - IN 3D!!\n\nSubscribe to Funhaus! http://bit.ly/1R7R7Ou\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nPC Trainer V\n\nhttps://www.gta5-mods.com/scripts/pc-trainer-v\n\nGTA V Hulk Mod\n\nhttp://gtaxscripting.blogspot.com/2015/10/gta-v-pc...\n\nIron Man V Mod\n\nhttp://gtaxscripting.blogspot.com/2015/08/ironmanv...\n\nMeteors Mod\n\nhttp://gtaxscripting.blogspot.com/2015/11/gta-v-me...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14e1e0fb-2aad-4050-b165-d724e2969553/sm/2013912-1447440307583-fh_thumb_7_copy_1024_(3).jpg","duration":580,"publication_date":"2015-11-13T18:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-h-u-n-g-overwatch-overwatch-gameplay","changefreq":"weekly","video":[{"title":"2015:E128 - HUNG-OVERWATCH - Overwatch Gameplay","description":"Remember that drunk Halo gameplay we showed you last week, with Super Panic Frenzy Immediately after, we played some Overwatch. As the game went on, our buzz went away, and we were left with this: Hungoverwatch.\n\nGet it Get the joke \n\nBecause the game is called Overwatch, and we were developing hangovers as we played.\n\nSo we're calling this video Hungoverwatch.\n\nOh, forget it. You guys wouldn't appreciate this kind of sophisticated joke anyway.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-h-u-n-g-overwatch-overwatch-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8fb5240-d28d-4e59-a119-8cd66fcab5b3/sm/2013912-1447350672584-fh_thumb_7_copy_1024.jpg","duration":630,"publication_date":"2015-11-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-master-chief-loves-princess-leia","changefreq":"weekly","video":[{"title":"2015:E11 - MASTER CHIEF LOVES PRINCESS LEIA","description":"So, Microsoft sent us a limited edition Halo 5 Xbox.\n\nWe were all like, \"Hey, cool! But most of us have Xboxes already, and Joel doesn't love console games. What should we do with this thing\" Then we hit on it: let's give it away to someone. You're welcome.\n\nEnd of post.\n\nOh, right, we should tell you what's going on.\n\nHere's the deal: we wrote some really dumb fan fiction, and then made it into a video. Your job is to make a Fan Art poster of our dumb fan fiction. And then our job is to select what we think is the best one and give the winning artist an Xbox!\n\nRules and dumb stuff:\n\n1) Submit your photos as reply comments in this thread. Upload the picture to your RT profile (or a site like Imgur) and copy that image URL as your comment.\n\n2) Winner must have a shipping address in the United States (sorrrrry!!)\n\n3) No steal other people's submission or artwork. No pr0n. Be cool please.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-master-chief-loves-princess-leia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be75a526-2e6e-4649-bddb-a860a11cd52f/sm/2013912-1447259443489-fh_thumb_6_copy_1024_(62).jpg","duration":253,"publication_date":"2015-11-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-the-shocker-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E127 - THE SHOCKER - GTA 5 Gameplay","description":"Los Santos Power Plant: Federal Energy Regulatory Commission Report\n\nDate of Inspection: 11/12/2015\n\nInspector Name: Shecter Mullligan Wervy\n\nPlant Infractions: \n\n- Lax security\n\n- Trespassers seen in multiple locations\n\n- Unsafe working conditions\n\n- Exposed, rusty power transformers\n\n- \"Fight Club\" style gambling ring observed \n\n- General gross negligence\n\n- Turbid found in plant\n\nDeathmatch: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/FrEkB8zgmUWmAElUcIB-ZQ#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-the-shocker-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a7a2cfb-03c9-495d-92a7-cf9fb7454c37/sm/2013912-1447181044902-fh_thumb_6_copy_1024_(61).jpg","duration":509,"publication_date":"2015-11-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-fallout-4-mods-already-42","changefreq":"weekly","video":[{"title":"2015:E42 - Fallout 4 MODS Already? - #42","description":"[Spoiler Warning] We talk about Spectre. No outright spoilers but some leading statements. YOU HAVE BEEN WARNED.\n\nVisit our sponsors! Harry's: http://www.harrys.com promo code \"dude\"\n\nMack Weldon: http://www.mackweldon.com promo code \"dudesoup\"\n\nOh Fallout, oh Fallout, this week of release\n\nOh Fallout, yes Fallout, my SPECIALs increase\n\nOh Fallout, hi Fallout, please come to my vault\n\nOr Fallout, dear Fallout, I'll have all the salt\n\nOh Fallout, my Fallout, the Wasteland is calling\n\nOh Fallout, in Fallout, I'm shooting and brawling\n\nOh Fallout, good Fallout, you have a prologue neat\n\nAnd Fallout, sweet Fallout, I can't wait for Dogmeat","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-fallout-4-mods-already-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58caeea8-9918-4e77-966c-209bb4e31e84/sm/2013912-1447216220552-fh_thumb_6_copy_1024_(63).jpg","duration":4056,"publication_date":"2015-11-11T04:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-our-biggest-f-c-k-u-p-s-38","changefreq":"weekly","video":[{"title":"2015:E38 - Our BIGGEST F*CKUPS?! - #38","description":"Adam was out. Then he came back, but that's when Bruce left. And then Lawrence was pooping. \n\nCan we just get one week where we're all in town, together, working as a team \n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-our-biggest-f-c-k-u-p-s-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48fbec8e-6f76-448c-b8a4-34ee6c083bdf/sm/2013912-1447097512422-fh_thumb_6_copy_1024_(60).jpg","duration":623,"publication_date":"2015-11-09T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-sexy-time-machine","changefreq":"weekly","video":[{"title":"2015:E36 - SEXY TIME MACHINE","description":"Duh duh duh DUH DUH\n\nSAME MAKE\n\nDuh duh duh DUH DUH\n\nSAME MODEL\n\nDuh duh duh DUH DUH\n\nNEW MISSION\n\nDoo do dooooooo. Do do dooooooo.\n\nA machine, built for one purpose only: to go back in time to have sex with Eddie Furlong or something.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-sexy-time-machine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/958d2add-65bb-42e0-9674-aecfa102ce65/sm/2013912-1446849010651-fh_thumb_6_copy_1024_(57).jpg","duration":736,"publication_date":"2015-11-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-no-man-s-sky-all-lies-dude-soup-41","changefreq":"weekly","video":[{"title":"2015:E41 - No Man's Sky All Lies? - Dude Soup #41","description":"We're revolutionizing the podcasting business by triple-dipping. We gotcha on ticket sales, we gotcha on merch, and NOW we getcha in views! Wait why are we poor.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-no-man-s-sky-all-lies-dude-soup-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fed0cae1-badd-40f2-94a3-0d3147a0fd56/sm/1788482-1449776902927-hqdefault.jpg","duration":3877,"publication_date":"2015-11-07T17:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-drunk-halo-halo-5-guardians-gameplay","changefreq":"weekly","video":[{"title":"2015:E126 - DRUNK HALO - Halo 5 Guardians Gameplay","description":"Special thanks to Super Panic Frenzy for coming into our office and being generally loud and yelling and obnoxious and good at games, and Reina is also loud, and Steven looks like a rubberman. Ugh. Why did we even agree to this","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-drunk-halo-halo-5-guardians-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ad73bc0-e022-430d-b97e-bc801c24b3aa/sm/2013912-1446882612499-fh_thumb_6_copy_1024_(59).jpg","duration":1031,"publication_date":"2015-11-07T07:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-spooky-thanksgiving-clive-barker-s-undying-gameplay","changefreq":"weekly","video":[{"title":"2015:E125 - SPOOKY THANKSGIVING - Clive Barker's Undying Gameplay","description":"Barker Thanksgiving -- Spooky! Scary!\n\nBoys invoking men! Men invoking a harvest feast to celebrate a bountiful year!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-spooky-thanksgiving-clive-barker-s-undying-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1fd24ae-2aad-4245-9f51-c7ebc0158981/sm/2013912-1446740745387-fh_thumb_6_copy_1024_(54).jpg","duration":687,"publication_date":"2015-11-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-anime-is-gross-anime-porno-games-gameplay","changefreq":"weekly","video":[{"title":"2015:E124 - ANIME IS GROSS - Anime Porno Games Gameplay","description":"Apologies in advance. This is the worst video we've produced so far. The worst in every sense. They felt gross playing it. I feel gross uploading it. You're going to feel gross watching it. That's a promise.\n\nIt all started innocently enough. Some of the demo disks didn't work in an early episode, so we played some flash games. And some flash games turned into some sexy flash games. And the next thing you know you're looking at Rule 34 Lenny from Mario Brothers and wondering what you're doing with your life, and maybe your parents were right, and that you should have gone to law school and married Cat Posey from 7th grade, started a family, just led a quiet kind of life.\n\nBut no. \n\nYou decided to play and upload anime porn games.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-anime-is-gross-anime-porno-games-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8600f323-46fc-41fa-9cbd-3d687cb2fe5d/sm/2013912-1446753192999-fh_thumb_6_copy_1024_(55).jpg","duration":820,"publication_date":"2015-11-05T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-the-italian-handjob-gta-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E123 - The ITALIAN HANDJOB - GTA 5 Gameplay","description":"Honestly, this map is called \"Destruction Derby\" but that just didn't have the same SEO potential. I mean, all the kids are talking about today is The Italian Job, right They just love that franchise, whether it's the original one with Michael Caine and Noel Coward, or the remake with Mark Wahlberg and...wait, Donald Sutherland Jason Statham Chalize Theron SETH GREEN! \n\nHOLY SHIT THAT CAST! How did this movie not win every Oscar! \n\nAnyway, enjoy the video.\n\nDestruction Derby Race 1: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/xQQkmzyS7Ea6aPFKQcsC7g#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-the-italian-handjob-gta-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff351c8b-4163-407c-9ea4-38b67f30c9ca/sm/2013912-1446740615372-fh_thumb_6_copy_1024_(52).jpg","duration":449,"publication_date":"2015-11-05T16:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-lara-croft-gets-w-e-t","changefreq":"weekly","video":[{"title":"2015:E40 - Lara Croft GETS WET! - #40","description":"Visit our sponsor, Casper Matress: http://www.casper.com/dudesoup promo code \"dudesoup\"\n\nThanks to Game Director Brian Horton of Rise of the Tomb Raider for coming to our crappy office and letting us play his amazing game on our crappy podcast.\n\nAlso, we talked about Halloween, Candy Crush, and billions of dollars.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-lara-croft-gets-w-e-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f9e9056-2638-46a8-9041-78788b7bb4d0/sm/2013912-1446662642938-FH_Thumb_6_copy.jpg","duration":4195,"publication_date":"2015-11-04T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-wrestling-b-o-y-s-37","changefreq":"weekly","video":[{"title":"2015:E37 - WRESTLING BOYS! - #37","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nSorry this video is late. That's all you get. I'd rather get the video up than write a long, funny (stupid) description.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-wrestling-b-o-y-s-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ee1809c-18f5-42f1-a9fd-54e093644540/sm/2013912-1446575411955-fh_thumb_6_copy_1024_(50).jpg","duration":631,"publication_date":"2015-11-03T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-slave-to-star-wars","changefreq":"weekly","video":[{"title":"2015:E35 - SLAVE TO STAR WARS","description":"How to Make Demo Disk in 7 Easy Steps:\n\n1) Place compact disc in disc drive and attempt to install demo #1\n\n2) Receive multiple error messages. Download and install proprietary software from 3rd party developer\n\n3) Realize 3rd party software hasn't been supported since 2002\n\n4) Attempt to install demo #2\n\n5) It worked!\n\n6) Play shitty demo based on shitty movie from 1999\n\n7) Google \"shitty movie from 1999 rule 34\"","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-slave-to-star-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a45e0d7-23e5-4cfa-846e-f4fd25bb74dc/sm/2013912-1446249059216-fh_thumb_6_copy_1024_(48).jpg","duration":1072,"publication_date":"2015-11-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-i-d-i-o-t-f-i-g-h-t-shenmue-gameplay-part-3","changefreq":"weekly","video":[{"title":"2015:E122 - IDIOT FIGHT - Shenmue Gameplay Part 3","description":"Herp herp Herp herp herp. Herp! Herp herp herp; herpherpherp herp HERP! Herp herp herp -- herp herp. Herp herp herp. Herp herp!\n\n\"Herp herp,\" herp herp herp. Herp herp.\n\nHerp herp herp herp herp (herp herp!) herp herp. Herp: herp herpherp herp.\n\nHerp herp herp herp herp herp herp herp. Herp herp herp herp Herp. Herp. Herp herp herp herp, herp herp herp herp. Herp herp herp herp herp herp!! HERP! HERP HERP! Herp herp herp herp herp herp herp herp herp herp herp. Herp herp, \"herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp.\" Herp herp herp herp herp -- herp herp herp herp herp herp Herp Herp herp Herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp herp.\n\nHerp.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-i-d-i-o-t-f-i-g-h-t-shenmue-gameplay-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85c4fab2-06ec-4f6d-91dd-b26f29d39db2/sm/2013912-1446139794204-fh_thumb_6_copy_1024_(47).jpg","duration":599,"publication_date":"2015-10-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-3","changefreq":"weekly","video":[{"title":"2015:E16 - HULK vs IRON MAN in GTA 5! Mod Gameplay!","description":"Hey guys Remember The Avengers: Age of Ultron, guys Remember how cool it was Remember the scene The one where Scarlet Witch and Quicksilver are bad, but then they get good again Remember Do you guys remember that part That part where one of the Iron Man suits is all busted up, but then it stands up and starts walking around because it's the first time Ultron is there Remember\n\nGuys Do you guys remember that part in Avengers: Age of Ultron where Hulk comes down and then he fights Iron Man But it's not because Hulk is bad, it's because he's just angry And out of control Remember that \n\nHey everyone What's your favorite part Is it when Hulk has to fight Hulk and then Hulk shows up and fights Hulk Do I remember that scene Do I \n\nSubscribe to Funhaus! http://bit.ly/1R7R7Ou\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nPC Trainer V\n\nhttps://www.gta5-mods.com/scripts/pc-trainer-v\n\nGTA V Hulk Mod\n\nhttp://gtaxscripting.blogspot.com/2015/10/gta-v-pc...\n\nIron Man V Mod\n\nhttp://gtaxscripting.blogspot.com/2015/08/ironmanv...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b9b1bea-f4b8-4955-a76b-feaa79c1b30f/sm/2013912-1446136783625-FHLP_GTA_4_alt2.jpg","duration":642,"publication_date":"2015-10-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-f-a-r-t-b-u-t-t-o-n-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2015:E10 - FART BUTTON - Funhaus Cartoons","description":"Welcome to a brave new show, unlike anything you've ever seen before. A fantastic world of -- oh wait, it's just another animated show on the Internet.\n\nEXCEPT THIS ONE HAS FUNHAUS IN IT!\n\nYup, it's our new show, Funhaus Cartoons. We really hope you like this bad boy, we've been working on it for a while with our animator, Andy. Here are a few things we'd like to see in future episodes:\n\n1080p (seriously, SHOULD be coming next episode)\n\nMore Joel (really ought to be #1 on this list)\n\nLens flare, lens flare, lens flare (sent in notes to Andy about this one)\n\nAnimated Chizzywick (actually wrote this as a joke, but maybe we should do this 4real)\n\nAccurate representation of sentient tumors on Spoole's neck (Barry and Larry)\n\nSubliminal messaging (\"Buy more tshirts\")\n\n90-minute episodes (pending $74,998,000 budget increase)\n\nLet us know what you think in the comments!","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-f-a-r-t-b-u-t-t-o-n-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/647a8011-5ff2-4854-815e-c7e12267a1cd/sm/2013912-1446139641596-FH_Cartoons.jpg","duration":176,"publication_date":"2015-10-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-b-e-t-t-e-r-t-h-a-n-y-o-u-rocket-league-gameplay","changefreq":"weekly","video":[{"title":"2015:E121 - BETTER THAN YOU - Rocket League Gameplay","description":"We finally jumped on the Rocket League bandwagon and played a game with Bruce's friend Dan.\n\nOh, that wasn't a fun enough description for you You wanted something more weird or complex or whatever Well too bad! Adam is out and I'm super busy and I don't have time for that shit right now! Who do you think makes thumbnails while he's gone Who plays games Who...wait, that's pretty much all he does around here.\n\nNevermind, I guess I'm not that busy. And you got your stupid description, so everything worked out in the end.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-b-e-t-t-e-r-t-h-a-n-y-o-u-rocket-league-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dbdf01a-4cfd-461a-b7c6-97b3bd377809/sm/2013912-1446137150140-rocketthumb_1024_(1).jpg","duration":1048,"publication_date":"2015-10-29T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-c-o-c-k-y-r-i-n-g-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E120 - COCKY RING - GTA 5 Gameplay","description":"Cocks are some burning things\n\nAnd they make some fiery rings\n\nI locked my car door locks\n\nTo drive a ring of cocks\n\nI drove into a floating ring of cocks,\n\nI went round, round, round in a circle not a box\n\nAnd I turned, turned, turned\n\nIn a ring of cocks, the ring of cocks.\n\nCock Ring: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/Ydq5afmPQkuxVlcY_q7nlQ#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-c-o-c-k-y-r-i-n-g-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c357fd3e-8331-4426-a20c-59742ee20e5a/sm/2013912-1445985559624-GTA_Ring_Race.jpg","duration":549,"publication_date":"2015-10-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-you-tube-red-b-a-d-f-o-r-e-v-e-r-y-o-n-e-39","changefreq":"weekly","video":[{"title":"2015:E39 - YouTube Red BAD FOR EVERYONE? - #39","description":"Visit our Sponsors! Order Rock Band 4: http://bit.ly/1iD8JWq\n\nWWE2K16: http://www.amazon.com/WWE-2K16-PlayStation-4/dp/B0...\n\nToday we were lucky enough to welcome Anthony Carboni into the Soup to talk about YouTube Red. What is YouTube Red What's it going to mean for you, the audience, and us, the creators Will it effect how you watch videos How much is it going to ruin your life\n\nProbably a lot, if random commenters on the Internet are correct.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-you-tube-red-b-a-d-f-o-r-e-v-e-r-y-o-n-e-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19d70943-64a9-4ae6-80cf-f3f099d854c6/sm/2013912-1445977702940-Dude_Soup_YT_Red.jpg","duration":3754,"publication_date":"2015-10-27T20:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-all-d-i-e-open-haus-36","changefreq":"weekly","video":[{"title":"2015:E36 - We All DIE? - #36","description":"That's why he hasn't been in the last few Know videos, or in gameplays, or in this Open Haus. You may have heard some rumors that he went to MCM in London. I think I even saw some fake pictures that people photoshopped of him meeting with fans. But it's all a lie.\n\nAdam is dead, and it's just us answering questions now, forever. Lawrence is the new Adam, playing games. Spoole is gonna have to step up to be the new Lawrence and learn a lot about anime boobs and stuff. I guess that makes Matt the new Spoole. Tyrone is the new Matt.\n\nSo everything works out. Adam is dead, we get our wish, and everyone gets a promotion. \n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-all-d-i-e-open-haus-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/172b1978-9808-42c3-b54a-46418b1bb869/sm/2013912-1445882819895-OH_Oct_27.jpg","duration":791,"publication_date":"2015-10-26T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-r-u-l-e-34-d-i-s-n-e-y-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E34 - RULE 34 DISNEY","description":"Long story short: I went to a screening of The Black Cauldron and told the guys. Sorry.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-r-u-l-e-34-d-i-s-n-e-y-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f5596ba-1d79-4740-8d6d-5e56dbd60ceb/sm/2013912-1445878203774-Demo_Disk_Oct_26.jpg","duration":847,"publication_date":"2015-10-26T16:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-s-u-p-e-r-m-a-r-i-o-r-i-p-o-f-f-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2015:E119 - SUPER MARIO RIP-OFF - Wheelhaus Gameplay","description":"The wheels of the haus go round and round, round and round, round and round\n\nThe wheels of the haus go round and round, all through the town\n\nThe Adam of the haus goes click click click, click click click, click click click\n\nThe Adam of the haus goes click click click, all through the town\n\nThe James of the haus makes edgy \"jokes\", edgy \"jokes\", edgy \"jokes\"\n\nThe James of the haus makes edgy \"jokes,\" all through the town\n\nThe Bruce of the haus say \"Quit that game!\" \"Quit that game!\" \"Quit that game!\"\n\nThe Bruce of the haus say \"Quit that game!\" all through the town","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-s-u-p-e-r-m-a-r-i-o-r-i-p-o-f-f-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/318126d5-2e8a-4c68-a4f1-c16d36ea666b/sm/2013912-1445618745957-Wheelhaus_Oct_25.jpg","duration":796,"publication_date":"2015-10-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-5","changefreq":"weekly","video":[{"title":"2015:E15 - BACK TO THE FUTURE in GTA 5! Mod Gameplay!","description":"GREAT SCOTT, MARTY! The timeline created when we went Back to the Future a few weeks ago really screwed up the Central Universal Gravtonials we fixed when we went to make sure the asteroid killed the dinosaurs. It would appear that now we're living in a crime-ridden shadow-copy of Los Angeles, called Los Santos in this timeline. \n\nAw, man Doc, that's really heavy.\n\nHeavy Marty, your mother has nothing to do with this!\n\nSick burn, Doc, but how are we gonna get back to our timeline now\n\nSimple, Marty! We have to knock over a liquor store!\n\n...Yeah, that sounds ok with me. \n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nPC Trainer V\n\nhttps://www.gta5-mods.com/scripts/pc-trainer-v\n\nBack to the Future Time Circuits\n\nhttps://www.gta5-mods.com/scripts/back-to-the-futu...\n\nBTTF Car Pack\n\nhttps://www.gta5-mods.com/vehicles/back-to-the-fut...\n\nMarty McFly Mask\n\nhttps://www.gta5-mods.com/player/back-to-the-futur...\n\nMarty McFly Clothes\n\nhttps://www.gta5-mods.com/player/marty-mcfly \n\nVehicle Jetpack\n\nhttps://www.gta5-mods.com/scripts/jetpack-for-vehi...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f16315d5-3874-4704-9863-70f4c1648c96/sm/2013912-1445639462382-gta_v_back_to_the_future.jpg","duration":560,"publication_date":"2015-10-23T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1","changefreq":"weekly","video":[{"title":"2015:E13 - SCARY MOVIES SUCK? - Movie Podcast","description":"Huge thanks to Adam from http://YourMovieSucks.org (https://www.youtube.com/user/YourMovieSucksDOTorg) for coming to shoot the shit about fall movies. \n\nKovic has been talking about doing a movie podcast for a while, so if you guys like hearing us ramble on about film and junk, let us know in the comments if we should keep this running!","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d45389e-2248-48b3-9b81-6e11a928748a/sm/2013912-1445547533819-Scary_Movies_Podcast.jpg","duration":3286,"publication_date":"2015-10-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-a-n-o-t-h-e-r-animated-show-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2015:E9 - ANOTHER Animated Show!? Funhaus Cartoons","description":"This is the original pilot episode for Funhaus Cartoons! Yeah, I know what you're thinking: a sincere video description WTF is wrong with Funhaus I don't know. Maybe we're just excited about the new show. Maybe we had a change of heart. Maybe little happy parasites got into our brains and are filling us with general goodwill.\n\nRegardless, our plan is for Funhaus Cartoons to air monthly, at the end of each month. We're going to premiere the first episode on October 31 (SPOOOOKY), and go from there. We really hope you like the style and tone as much as we do!","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-a-n-o-t-h-e-r-animated-show-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6220a14f-fe37-4669-8195-1018f363f7f8/sm/1788484-1445552384127-Capture.JPG","duration":90,"publication_date":"2015-10-22T20:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-p-i-x-i-e-f-c-k-e-r-legendary-gameplay-part-2","changefreq":"weekly","video":[{"title":"2015:E118 - PIXIE F*CKER - Legendary Gameplay Part 2","description":"Oh, John Legendary. Look. We get it. Once Pandora's Box is open, saving the world is hard work. You don't have time for excuses or incompetence. You can't afford mistakes or missteps.\n\nBut do you really have to be such a misogynist I mean, sure -- we're all dealing with a lot of shit right now, what with the transdimensional hellbeasts rampaging through the city and 150-foot tall techno-golems. And we absolutely trust that you're the man who can get the job done. But what's the deal You're just...such a dick. \n\nSometimes it seems like you hate women more than all the monsters. But you know what: the real monster is your misogyny. Women are our equal partners here, not our enemies. If we all work together, I know we can defeat the evil hordes that -- goddammit John stop slapping that pedestrian.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-p-i-x-i-e-f-c-k-e-r-legendary-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/794b62e5-41c8-4839-b025-6af2cc679a5a/sm/2013912-1445376139074-fh_thumb_6_copy_1024_(43).jpg","duration":592,"publication_date":"2015-10-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-b-r-o-k-e-n-j-o-u-s-t-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E117 - BROKEN JOUST - GTA 5 Gameplay","description":"God-den, ladies and gentlemen! I hopeth ye are all having a great timeth tonight. We hast seen num'rous great jest'rs and funny folk, but prithee puteth thy hands togeth'r f'r the final act tonight. i'd liketh to endue our lasteth comedian to the stage, giveth a warmeth greeting to Sir Tristan de Bolbec, Knight of a Thousand Merriments!\n\n\"Good to be hither, gramercy f'r having me! I just rode in from ipswich and sirrah art mine four horse forks tired!\n\nSay, doeth thou knoweth wherefore our good and gentle king went to the dentist To geteth his teeth crowned! I jest, I jest. But s'riously, dost thou knoweth they calleth our king thelred the Unready How unready is he He is so unready he doesn't goeth to war, war comes to him!\n\nI joketh, I joketh. Really, i'm joust kidding. Ha-haha!\n\nThanketh thou! Prithee, be akin to Lady Winnifred of Suffolk: have a good knight...and don't forgeteth to tipeth thy bar wench. \n\n# WTF Nasa Sky Racing # - http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/z7U4ybePPEWLKY1tfC_V-w#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-b-r-o-k-e-n-j-o-u-s-t-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f3526fe-3a68-402a-adc5-3999e614d333/sm/2013912-1445468360204-GTA_Joust.jpg","duration":494,"publication_date":"2015-10-21T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-w-i-l-l-y-o-u-s-e-e-star-wars-the-force-awakens-dude-soup-podcast-38","changefreq":"weekly","video":[{"title":"2015:E38 - WILL YOU SEE Star Wars: The Force Awakens? - #38","description":"We've been in Austin visiting the rest of the RT family 3 of the last 4 weeks, and it's been nice. Reeaaalll nice. Good BBQ. Good weather. Good studio facilities. Only real problem is the jerkwad dickbags who work there. They pranked us. Hard. And it wasn't pretty.\n\nLet me tell you all about the shit they tried to pull on us. First, they invited us into their office to \"play some games\". Then they bought breakfast AND lunch - kolaches and pizza. THEN they brought us out to a really nice sushi dinner, followed by renting out an entire haunted house just for us. \n\nWhat kind of crap is that Sincere overtures of friendship Fuck those guys.\n\nSo to get even or something, we had Geoff on the podcast this week and pretended to talk about Star Wars.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-w-i-l-l-y-o-u-s-e-e-star-wars-the-force-awakens-dude-soup-podcast-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe71ae85-1b5a-4f19-bb89-2e312da288ee/sm/2013912-1445468182653-untitled-1_1024.jpg","duration":4036,"publication_date":"2015-10-21T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-s-e-x-with-history-open-haus-35","changefreq":"weekly","video":[{"title":"2015:E35 - SEX With History? - #35","description":"History's Hottest Honeys - A Definitive List\n\nPocahontas\n\nQueen Elizabeth I\n\nElizabeth Cady Stanton\n\nMarie Curie\n\nAnnie Oakley\n\nMargaret Thatcher\n\nAnne Frank\n\nHypatia\n\nSusan B Anthony\n\nEleanor Roosevelt\n\nAmelia Earhart\n\nIndira Gandhi\n\nMother Theresa\n\nSappho\n\nHarriet Tubman\n\nWilliam Howard Taft\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-s-e-x-with-history-open-haus-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38598f9d-1bda-4522-8db3-4aba4e696a4c/sm/2013912-1445273143949-fh_thumb_6_copy_1024_(44).jpg","duration":607,"publication_date":"2015-10-19T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-b-r-e-a-k-e-v-e-r-y-d-i-s-k-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E33 - BREAK EVERY DISK","description":"This is quite definitely the worst episode of Demo Disk we've ever recorded.\n\nThat's not a threat. That's not a judgement call. That's a promise, from me to you. In the 17:27 run time of this episode, I think we play games for something like 2:40. Total. That's it. And it's not our fault; we're really in the dregs of the old Disk Folder at this point. Nothing works. Everything fails. A million errors. \n\nYou've been warned. Worst. Episode. Ever.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-b-r-e-a-k-e-v-e-r-y-d-i-s-k-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33ace5be-e8ef-4845-963f-60c95a8767f9/sm/2013912-1445272108720-fh_thumb_6_copy_1024_(46).jpg","duration":1048,"publication_date":"2015-10-19T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-m-o-n-k-e-y-m-u-r-d-e-r-1-dollar-1-hour-gameplay","changefreq":"weekly","video":[{"title":"2015:E116 - MONKEY MURDER - 1 Dollar 1 Hour Gameplay","description":"This is a continuation of the story begun in the description of this video (http://bit.ly/1PQUPPs) and continued here (http://bit.ly/1LYeDdD and http://bit.ly/1CJACFa and http://bit.ly/1MBTcC7)\n\nThe Boy offered his hand to The Courtesan and helped her into the boat. He quickly untied the rope from the dock post and jumped in. As the boat drifted away from the dock, he grabbed the oars and pushed away, catching the current, moving downriver. The Boy dipped the oars into the water...and realized he'd never been in a boat before, let alone navigated one. He hesitated --\n\nLet me guess. No naval experience The Courtesan asked wryly. \n\nThe Boy shrugged.\n\nOk, move it. He gave up his position as she moved into the center bench, deftly handling the oars and easing the boat into the center of the river. Fort Hornwick rapidly fell away, the sounds of chaos and smells of smoke receding into the distance. The Cortesan fell into an easy pulse with the boat, letting the current do most of the work.\n\nWhere did you learn to rescue damsels in distress I need to have a word with your teachers.\n\nHey, at least were out of the camp, I guess. And just because I cant...boat...well, I bet you dont know how to wrestle the eggs from a Skycat or find a vein of Truegold in a dark cave!\n\nThe Courtesan laughed. Fair enough. We all have our hidden skills. If youre lucky, you may even discover more of mine.\n\nThe Boy turned red as a bloodberry. An awkward silence hung over the boat, punctuated by the rhythmic squeaking of the rusty oars, the splashing water on the boat.\n\nMy apologies - my sisters always told me I was too forward.\n\nWith boys\n\nWith boys, with men, with anything. My philosophy is, why let everyone else have all the fun\n\nThe boy pondered that a moment. Fun wasnt much valued on The Mountain he called home. It was a hardscrabble existence, a constant fight for survival against the Beasts of the Wild, the Storms of the Great Sky, and the Mountain itself. I think I should very much like to have fun as well.\n\nAnd so we shall! Lets see - w","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-m-o-n-k-e-y-m-u-r-d-e-r-1-dollar-1-hour-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8d80ccb-cd45-446f-b363-608530e39c4b/sm/2013912-1444922614653-fh_thumb_6_copy_1024_(40).jpg","duration":1085,"publication_date":"2015-10-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-s-e-x-s-w-i-n-g-lives","changefreq":"weekly","video":[{"title":"2015:E8 - SEX SWING LIVES","description":"If you only go to one live concert in your life, go see Prince. Seriously, he's amazing. If you can go to another concert, I dunno, maybe The Rolling Stones -- they'll probably die soon.\n\nIf you can go to 385 concerts in your lifetime, though, maybe think about adding Sex Swing to your list. Like, it's not a HUGE priority, but it might still be ok.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-s-e-x-s-w-i-n-g-lives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ce88b26-7f16-4059-bd6c-1de176d07568/sm/2013912-1445018991586-fh_thumb_6_copy_1024_(42).jpg","duration":741,"publication_date":"2015-10-16T18:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-6","changefreq":"weekly","video":[{"title":"2015:E14 - HALO in GTA 5! Mod Gameplay!","description":"\"Oh goodness,\" exclaimed Master Chief as he rub the cryo-sleep from his eyes after a long hibertrip. \"Where have my adventures led me today\"\n\n\"Welcome to Los Santos, Master Chief!\" said Trevor with a big smile. \"I just know we're going to be best of friends.\"\n\n\"Woah how did you know my name\"\n\n\"Everyone knows you, Mastur Chief! Now let's go flyin! I have so much to show you!!\"\n\n...And so Trevor and Mast Shiek ended up having many adventure across space and times.\n\nBlacksmoke Billy's Ramp Truck Video:\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nSimple Trainer V\n\nhttps://www.gta5-mods.com/scripts/simple-trainer-f...\n\nHalo 5 Light Rifle\n\nhttps://www.gta5-mods.com/weapons/halo-5-light-rif...\n\nHalo UNSC Weapon Pack\n\nhttps://www.gta5-mods.com/weapons/f0rest-s-halo-un...\n\nMaster Chief Helmet\n\nhttps://www.gta5-mods.com/player/master-chief-helm...\n\nJetpack\n\nhttp://gtaxscripting.blogspot.com/2015/08/gta-v-pc...\n\nMass Effect Reaper\n\nhttps://www.gta5-mods.com/vehicles/reaper-ship-bli...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4159bac9-fe45-48f9-a1ab-3a2bb964d198/sm/2013912-1444926253475-fh_thumb_6_copy_1024_(37).jpg","duration":667,"publication_date":"2015-10-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-r-e-v-e-n-g-e-o-f-t-h-e-r-a-g-e-star-wars-battlefront-gameplay","changefreq":"weekly","video":[{"title":"2015:E115 - REVENGE OF THE RAGE - Star Wars Battlefront Gameplay","description":"It's just Star Wars. Star Wars and their adventures, Brucey. Star Wars, forever and forever, a hundred years Star Wars, s... things. Me and Star Wars runnin' around and Star Wars time. Aaall day long forever. All, a hundred days Star Wars forever a hundred times. Over and over Star Wars adventures dot com W W W dot Star Wars dot com W W W Star Wars adventures all hundred years. Every minute Star Wars dot com W W W hundred times Star Wars dot com.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-r-e-v-e-n-g-e-o-f-t-h-e-r-a-g-e-star-wars-battlefront-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3d035f7-5c0a-4091-9e89-727e5aab134c/sm/2013912-1444848388723-fh_thumb_6_copy_1024_(39).jpg","duration":773,"publication_date":"2015-10-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-r-a-i-n-b-o-w-r-o-a-d-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E114 - RAINBOW ROAD - GTA 5 Gameplay","description":"It's called a road, it's called a Rainbow Road\n\nIt is a road that you go\n\nIt's called a road, it's called a Rainbow Road\n\nAnd you will know when you get there\n\nIt's called a road, it's called a Rainbow Road\n\nIt is a road that you go\n\nIt's a road that you go when you die\n\nIt's a road called Rainbow Road\n\nIt's a road we're all gonna go\n\nIt's a road called Rainbow Road\n\nIt's got Princess Peach, Mario, and the Toad\n\nIt's a road called Rainbow Road\n\nIt's a road we're all gonna go\n\nWe'll go\n\nIt's Rainbow Road\n\nIt's where you go\n\nWhen you die\n\nIt's Rainbow Road\n\nI miss you again uncle\n\nIt's Rainbow Road\n\nIt's where you go\n\nWhen you die\n\nIt's Rainbow Road\n\nI'll miss you again\n\nOn Rainbow Road\n\n# WTF Nasa Sky Racing # - http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/z7U4ybePPEWLKY1tfC_V-w#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-r-a-i-n-b-o-w-r-o-a-d-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b854cdb-7c92-454c-8617-fb3fbd4ebde4/sm/2013912-1444845690175-fh_thumb_6_copy_1024_(38).jpg","duration":522,"publication_date":"2015-10-14T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-w-i-l-l-y-o-u-b-u-y-star-wars-battlefront-dude-soup-podcast-37","changefreq":"weekly","video":[{"title":"2015:E37 - WILL YOU BUY Star Wars Battlefront? - #37","description":"I was going to write an opening crawl joke here, but then I remembered 3 things: \n\n1) It's a tired joke; everyone's done it already\n\n2) I'VE done it already, for another Star Wars video\n\n3) They're really annoying to write, anyway\n\nSo instead of that, you just get a list of excuses as to why this description isn't more creative or funny. I'm not really sorry about that - I've been pretty busy lately, and don't have time this week to put into a super-thoughtful description. But still. It does make me sad. Makes me remember the good times we had here in the descriptions of videos past. Maybe some day I'll return to long-winded, creative descriptions. But not today.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-w-i-l-l-y-o-u-b-u-y-star-wars-battlefront-dude-soup-podcast-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6faf765f-63b9-46b1-919c-b3eff2cb6c6c/sm/2013912-1444845514161-fh_thumb_6_copy_1024_(38).jpg","duration":3879,"publication_date":"2015-10-14T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-r-a-g-e-q-u-i-t-games-open-haus-34","changefreq":"weekly","video":[{"title":"2015:E34 - RAGE QUIT Games? - #34","description":"Let's all give a warm welcome to Funhaus' WACKIEST new character, Adam's Ingrown Toenail! Every week, Adam's Ingrown Toenail will get up to some crazy new hijinks and it's up to The Gang to bail him out! Who knows what kind of capers Adam's Ingrown Toenail will be involved in From running his Fast Food Restaurant (EWWW, GROSS!!) to competing in an underground cross country race to win enough money to save the orphanage he grew up in, you can count on Adam's Ingrown Toenail to brighten your day.\n\nAnd stay tuned for a Very Special After School Episode where Adam's Ingrown Toenail has to deal with the drug overdose of his very best friend, Chizzywick. \n\nAdam's Ingrown Toenail - you'll learn to love him or FUCKING UNSUBSCRIBE.\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-r-a-g-e-q-u-i-t-games-open-haus-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ef8c7a7-66b0-4087-a259-9360d962da36/sm/2013912-1444768916655-fh_thumb_6_copy_1024_(31).jpg","duration":656,"publication_date":"2015-10-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-s-e-l-e-n-a-g-o-m-e-z-m-i-g-h-t-d-i-e-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E32 - SELENA GOMEZ MIGHT DIE","description":"Selena Gomez Addams Morgan Stanley Cup Song Bird is the Word to Your Mother's Day of the Dead to Rights Here Right Now That's What I Call Music of the Night Moves Like Jagger Eaton Canyon Country Club Sandwich Islands Burgers and Fry's Electronic Arts and Crafts Services Rendered Fat Albert and Victoria's Secret Garden Party Down Under the Boardwalk Empire Records Player Piano Manchester United States of Matterhorn of Africa's Toto and Dorothy Parker Brothers and Sister Christian Bale of Hay Here's How to Get Away with Murdered Selena. Gomez. Addams Morgan oh god here we go again.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-s-e-l-e-n-a-g-o-m-e-z-m-i-g-h-t-d-i-e-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3463dc6-d7f4-464d-9ac4-cbbe78ace78c/sm/2013912-1444768786209-fh_thumb_6_copy_1024_(34).jpg","duration":903,"publication_date":"2015-10-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-t-h-e-t-e-r-r-o-r-i-s-t-s-w-i-n-manhunter-gameplay-part-5","changefreq":"weekly","video":[{"title":"2015:E113 - THE TERRORISTS WIN - Manhunter Gameplay Part 5","description":"Manhunter was home from the war. It wasn't like he'd expected. Sure, there were the honors. The parades. The medals. The chicks throwing themselves at him. But something had changed. He felt different. And he couldn't help thinking about everything he'd lost on the battlefield.\n\nHe's lost his best friends and his comrades. He'd lost those civilians in that tiny goatherding village.\n\nBut most of all, he'd lost his innocence.\n\nManhunter had gone to war full of the old stories of bravery, of valor in combat. Heroes and villains, songs and glory and the stuff of legend. It wasn't like that at all, though, and all the presidential plaudits couldn't change that. Manhunter had to live with what he'd done back there. The piles of bodies, friend and foe alike heaped together in a mass of death.\n\nAnd every morning, as Manhunter looked in the mirror, he didn't see the boy he'd been, or the soldier he'd become. He looked in the mirror and saw a terrorist staring back at him.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-t-h-e-t-e-r-r-o-r-i-s-t-s-w-i-n-manhunter-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f452c12a-3d52-4587-b695-c992ef510a86/sm/2013912-1444404656030-fh_thumb_6_copy_1024_(29).jpg","duration":484,"publication_date":"2015-10-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-g-o-r-e-g-a-l-o-r-e-gore-gameplay","changefreq":"weekly","video":[{"title":"2015:E112 - GORE GALORE - Gore Gameplay","description":"In a world\n\nWithout quick saves\n\nWhere a some guys may be trying to take over the world we think\n\nOnly one polygonal man has the skills to do what it takes to beat those guys\n\nGore Gourmenskiye is\n\nGORE","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-g-o-r-e-g-a-l-o-r-e-gore-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f43639a-4ef5-467c-862b-61f8d64f2a1f/sm/2013912-1444346156114-fh_thumb_6_copy_1024_(28).jpg","duration":659,"publication_date":"2015-10-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-t-o-o-m-a-n-y-f-a-i-l-s-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E110 - TOO MANY FAILS - GTA 5 Gameplay","description":"Adam: It takes a lot to drive a car\n\nJames: Except we're missing one SirLarr\n\nGeoff: It doesn't matter start the show\n\nBruce: Here comes our new video, and youve got\n\nAll: Too many Fails\n\nW: Too many Fails\n\nB: Too many Fails\n\nA: Too many Fails\n\nG: Too many Fails\n\nJ: Too many Fails\n\nAll: Too many Fails\n\nAll: Too many.....\n\n$ 4x4 Jump War PC -- http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/VJz1vRud0EuS5SfvRururw#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-t-o-o-m-a-n-y-f-a-i-l-s-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75e22753-7231-41cc-80a7-c062b37b0c98/sm/2013912-1444420504986-fh_thumb_6_copy_1024_(32).jpg","duration":747,"publication_date":"2015-10-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-pew-die-pie-is-b-i-g-g-e-r-t-h-a-n-t-e-l-e-v-i-s-i-o-n-dude-soup-podcast-36","changefreq":"weekly","video":[{"title":"2015:E35 - PewDiePie is BIGGER THAN TELEVISION? - #36","description":"We'd like to welcome another dude to the soup today: Geoff Ramsey, from the great state of Rooster Teeth, Texassss. He's got the devil-may-care attitude. He's got the beard. But does he have the edgy opinions necessary to stand out in this bowl","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-pew-die-pie-is-b-i-g-g-e-r-t-h-a-n-t-e-l-e-v-i-s-i-o-n-dude-soup-podcast-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4dd0811e-b9e4-4693-9369-a10482dd0ba9/sm/2013912-1444089328586-FH_Thumb_6_copy_(1).jpg","duration":3694,"publication_date":"2015-10-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-n-o-f-a-p-p-i-n-g-for-d-a-y-s-open-haus-33","changefreq":"weekly","video":[{"title":"2015:E33 - NO FAPPING for DAYS? - #33","description":"Clap clap! CLAP! Clap clap! CLAP!\n\nROLL CALL!\n\nMy name is Adam/I had a beard\n\nBut then I shaved it/Now I look weird!\n\nMy name is James/Each day I squat\n\nMy thighs are massive/And Spoole's are not\n\nClap clap! CLAP! Clap clap! CLAP!\n\nMy name is Peake/I am real quiet\n\nI only eat/A protein diet\n\nMy name is Brucie/And when I fart\n\nMy butt goes loosey/I call it art!\n\nClap clap! CLAP! Clap clap! CLAP!\n\nMy name is Joel/I like to dance\n\nI hate the smell/From Bruce's pants\n\nMy name is Sean Poole/I just want credit\n\nFor every gameplay/That I edit\n\nMy name is Lawrence/And this is dumb\n\nPlease stop it now/I said to stop it now, please.\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-n-o-f-a-p-p-i-n-g-for-d-a-y-s-open-haus-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89d3a23e-19f5-48d7-a086-3eb36edf0f26/sm/2013912-1444076244722-fh_thumb_6_copy_1024_(20).jpg","duration":715,"publication_date":"2015-10-05T20:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-o-u-r-l-i-v-e-s-s-u-c-k-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E31 - OUR LIVES SUCK","description":"The Binder of Discs is getting real low, which is a little worrisome. If we run out of demo discs, what are we going to do on this show Only play sexy flash games Only watch sexy Kylie Minogue commercials Only sexy sex sexx sexxxxxx\n\nI mean, this is our most popular show. It gets the most views, the most subscribers, the most scrobbles. What are we supposed to do if we run out of discs \n\nSo I'm going to issue a call for more discs. Do you have demo discs Is your home a trove of discarded crap from the 90s and early 2000s If so, start collecting them in preparation to send them to Funhaus. When we call the banners, we'll give you all the information you need about where to ship your old, broken crap. \n\nThanks, America, and the rest of the world I guess.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-o-u-r-l-i-v-e-s-s-u-c-k-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f6eb7c6-c2aa-488a-b1c3-c630ec3362b5/sm/2013912-1443856768709-fh_thumb_6_copy_1024.jpg","duration":1000,"publication_date":"2015-10-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-s-k-a-t-e-a-n-d-d-i-e-tony-hawk-s-pro-skater-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E109 - SKATE AND DIE - Tony Hawk's Pro Skater 5 Gameplay","description":"Here's a list of skateboard tricks that will be available in Tony Hawk Pro Skater 5\n\nAlpha Flip\n\nCrail Nosey\n\nBarley Grind\n\nBertleman Slid\n\nNosegrind\n\nLimp Willy JarJar\n\nBiggerspin\n\n540 Pastrami on Rye\n\nMcFatty Slip Slopp\n\nCoffin Boardbreak\n\nPorky Pie\n\nNute's Pogo\n\nAnal Mistress\n\nFlippopotamus \n\nRandy Calvin\n\nIsengard Shuffle\n\nPipFlip-TripGrip-TriTip-NipSlip\n\nDjango and Cash","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-s-k-a-t-e-a-n-d-d-i-e-tony-hawk-s-pro-skater-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a3e2184-54ee-401d-9e47-5f6d65fcd2cd/sm/2013912-1443722268941-fh_thumb_6_copy_1024_(21).jpg","duration":744,"publication_date":"2015-10-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-s-e-x-s-w-i-n-g-s-u-c-k-s","changefreq":"weekly","video":[{"title":"2015:E7 - SEX SWING SUCKS","description":"This documentary is sponsored by Rock Band 4 - pre order now http://bit.ly/1Num2W4\n\nSex Swing. You thought they were just a legend. You thought they were just a joke. You thought they were just a bunch of dumb youtubers who made a throwaway reference in a video a few months back.\n\nYou were wrong. \n\nSex Swing is back, and they're going on tour. Watch this exclusive documentary about the life and times of the dumbest fake band there ever was.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-s-e-x-s-w-i-n-g-s-u-c-k-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e4d7b1-ba4f-4953-90ef-77ab632d7ba8/sm/2013912-1443856534798-fh_thumb_6_copy_1024_(25).jpg","duration":496,"publication_date":"2015-10-03T07:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-apple-vs-android","changefreq":"weekly","video":[{"title":"2015:E12 - iPhone VS Android: WHO WINS?","description":"iPhone vs Android. Microsoft vs Sony. Ecks vs Sever. Nowadays, people fall in love with a brand, and fight tooth and nail with their neighbors in order to justify, rationalize, or validate their own decisions. In the end, these fights are meaningless, just as most of our choices are empty and void of significance. \n\nLife will go on whether you browse mobile Reddit on a Samsung Galaxy S6 or an iPhone 6S. The earth does not care if you play Telltale's Game of Thrones on an iPad or a Surface. The stars will never know about your brand association, or you in general, for you are a small pink ape making binary decisions on a chunk of rock hurtling through space.\n\n#realtalk","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-apple-vs-android","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fc59c1f-489c-473b-8f9c-3ef8e9e290f1/sm/2013912-1443727287995-fh_thumb_6_copy_1024_(23).jpg","duration":3508,"publication_date":"2015-10-01T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-j-u-m-p-o-f-d-e-a-t-h-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E108 - JUMP OF DEATH - GTA 5 Gameplay","description":"Here comes Lawrence with a pocket rocket\r\n\r\nBe, bop, a, lua, baby, power dive\r\n\r\nHere comes Lawrence singing I gotta C4\r\n\r\nUp on the platform, tryin' to keep alive\r\n\r\nHe got the action, he got the motion\r\n\r\nOh yeah, the boy can drive\r\n\r\nDedication, devotion\r\n\r\nTrying all the night time just to survive\r\n\r\nHe do the game without a guy named Adam\r\n\r\nHe do the game without the meth\r\n\r\nHe do the jump, do the jump of death\r\n\r\nYeah, he do the jump of death\r\n\r\nLast Team Standing: Bombers vs. Off-Roaders: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/hLAvtIBuYEWgMA6Ns5PJ8g#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-j-u-m-p-o-f-d-e-a-t-h-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66904c81-705b-4c37-b08a-d81a44e17723/sm/2013912-1443641505767-fh_thumb_6_copy_1024_(16).jpg","duration":828,"publication_date":"2015-09-30T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-fallout-4-b-e-s-t-s-e-l-l-i-n-g-g-a-m-e-e-v-e-r-dude-soup-podcast-35","changefreq":"weekly","video":[{"title":"2015:E34 - Fallout 4: BEST SELLING GAME EVER? - #35","description":"I guess Fallout 4 announced that they're not doing console exclusive windows, which seems pretty ok to me. I can't believe that some people are upset by this, but apparently they are Like, isn't this something people were getting mad about last year, and now it's something they want Why Do they really need to justify their dumb console war purchases that much I guess....\n\nDLC. Exclusive console content. Microsomethings. Does anyone care Will it change anything Are you even reading this The answer to all these questions is \"Probably no, never, naw dawg.\"","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-fallout-4-b-e-s-t-s-e-l-l-i-n-g-g-a-m-e-e-v-e-r-dude-soup-podcast-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64e7587b-71b1-45af-8635-b00b1a8a104b/sm/2013912-1443577220016-fh_thumb_6_copy_1024_(17).jpg","duration":3914,"publication_date":"2015-09-30T01:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-re-in-p-l-a-y-g-i-r-l-open-haus","changefreq":"weekly","video":[{"title":"2015:E32 - We're in PLAYGIRL! - Open Haus","description":"Dearly beloved, we are gathered here to pay our respects to a bunch of YouTubers who like maybe a few thousand people knew about. Are we sad they're gone Not really. Will anyone miss them Probably not. Are you going to remember anything they ever did. Nope.\n\nRegardless, we assume they had families and stuff, so those people are probably sad. Maybe not; maybe they fought a lot. We don't know. But in the end, nothing matters because you're all going to be here eventually.\n\nWe commit these bodies to the dumpster.\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-re-in-p-l-a-y-g-i-r-l-open-haus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c7753d9-05fb-4039-9f50-0598b76ae09e/sm/2013912-1443248102941-fh_thumb_6_copy_1024_(14).jpg","duration":667,"publication_date":"2015-09-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-rayman-s-u-c-k-s-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E30 - Rayman SUCKS","description":"\"I am William Wallace. And I see a whole army of my countrymen, here in defiance of crazy-ass long 6-week film shoots! You have come to film as free men. And free man you are! What will you do without freedom Will you film\"\n\n\"6 week film shoots Yes! We will shoot - and live!\"\n\n\"Yes! Shoot in six weeks and you will live at least awhile. And when you're a totally old weird actor in your bed many years from now, would you be willing to trade all the days from this shoot to that for one chance, just one chance, to come back here as young men and tell our producers and the studio suits that they may take our lives but they will never take our 21-day shooting schedule!!\"","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-rayman-s-u-c-k-s-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47976eee-b047-49d0-a0a0-bbf14512d183/sm/2013912-1443247968625-fh_demo-disk-30_1024.png","duration":1001,"publication_date":"2015-09-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-g-a-r-b-a-g-e-g-a-m-e-s-2-train-valley-and-winter-sports-gameplay","changefreq":"weekly","video":[{"title":"2015:E107 - GARBAGE GAMES #2 - Train Valley and Winter Sports Gameplay","description":"\"100,000,000 times great.\" That's how Bruce Greene described our first Garbage Games video, and it's true. You know why I have 2 words for you: Parachute Man. \n\nThat's right. He's a hero. A hero to Earth, and a hero to Funhaus. That hero is still flying up high in the sky, and he's the initial reason Garbage Games was ONE HUNDRED MILLION TIMES GREAT. Unfortunately, however, since Parachute Man is still parachuting to the moon, he won't be in this video.\n\nI only hope the Garbage Games in Garbage Games 2 can live up to the Garbage Games in Garbage Games 1.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-g-a-r-b-a-g-e-g-a-m-e-s-2-train-valley-and-winter-sports-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65b51338-bf46-41f6-aa9a-701da237cf34/sm/2013912-1443068581705-fh_thumb_6_copy_1024_(12).jpg","duration":868,"publication_date":"2015-09-26T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-s-t-a-r-p-e-n-i-s-in-b-o-n-e-r-s-p-a-c-e-artemis-bridge-simulator-gameplay","changefreq":"weekly","video":[{"title":"2015:E106 - STARPENIS in BONERSPACE - Artemis Bridge Simulator Gameplay","description":"Engineering to Bridge! Engineering to Bridge! Are you seeing this\n\nCopy Engineering, we're getting the same readings here. The levels are off the charts. Science Bay - what's your take\n\nScience Bay here. Our scan indicates that what we're seeing is a Class 7 SpaceDong. \n\n...\n\nClass SEVEN! The highest rated SpaceDong ever recorded was a Class 4! Chief Military Officer, what do you think\n\nThere's only one thing to do, Captain. We've got to take care of that SpaceDong before we have a real mess on our hands. May I suggest baiting the Dong into a black hole and letting it explode\n\nA fine plan. Make it so.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-s-t-a-r-p-e-n-i-s-in-b-o-n-e-r-s-p-a-c-e-artemis-bridge-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5867196d-f97c-49ca-ad4c-857d1a0b02ee/sm/2013912-1443247779741-fh_artemis-thumb_1024.png","duration":883,"publication_date":"2015-09-26T06:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-are-we-t-o-o-o-f-f-e-n-s-i-v-e-f-a-q-podcast","changefreq":"weekly","video":[{"title":"2015:E11 - Are We TOO OFFENSIVE?","description":"Well, Adam and Bruce are out of town, and we didn't have a video for today. I mean, literally, we didn't have a video. So we did what any self-respecting YouTuber would do: we downloaded a few soundboards and opened up the Skype lines so that you guys could make some content for us.\n\nUnfortunately, Skype sucked and wasn't working great, so please enjoy a few viewer questions in the FAQ Podcast, as well as sweaty, desperate vamping from Lawrence, Joel, James, and Spoole.","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-are-we-t-o-o-o-f-f-e-n-s-i-v-e-f-a-q-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d914f68d-9e64-452b-ab54-90cccbbe7dd0/sm/2013912-1443202948221-faq_11_1024.png","duration":3740,"publication_date":"2015-09-25T17:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-7","changefreq":"weekly","video":[{"title":"2015:E13 - THE DARK KNIGHT in GTA 5! Mod Gameplay!","description":"Subscribe to Funhaus! http://bit.ly/1R7R7Ou\n\nAdam Kovic = Batman\n\nJames Willems = Joker\n\nBruce Greene = The Riddler\n\nLawrence Sonntag = Killer Croc\n\nSean Poole = The Ventriloquist\n\nMatt Peake = Bane\n\nJoel Rubin = Poison Ivy\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nProject Batman\n\nhttps://www.gta5-mods.com/scripts/project-batman\n\nStar Destroyer\n\nhttps://www.gta5-mods.com/vehicles/imperial-star-destroyer-beta\n\nVehicles Jetpack\n\nhttps://www.gta5-mods.com/scripts/jetpack-for-vehicles-xmod\n\nVehicle Weapons\n\nhttps://www.gta5-mods.com/scripts/vehicle-weapons-net","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae1f13a0-a6c7-4746-8401-60e93589af07/sm/2013912-1443136470465-fh_thumb_6_copy_1024_(13).jpg","duration":562,"publication_date":"2015-09-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-m-o-n-s-t-e-r-t-r-u-c-k-c-l-u-s-t-e-r-f-c-k-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E105 - MONSTER TRUCK CLUSTER F*CK - GTA 5 Gameplay","description":"Spoole. Ohhhh, Spoolio. \n\nIt's been too long since you've GTA'd with us. Sure, you're only on this video because Adam was out the day we recorded. Sure, you're the second, or possibly 3rd string Let's Player we've got here at the office (don't worry, Joel and Peake are a distant 7th). Sure, we don't really have you on because your gameplay is good, but mainly so that James has a comedic foil.\n\nThe important thing is that you're back. You're back, and we love you. So keep doing whatever it is you do, man. Never change. Much love. Now get back to editing.\n\nLift Off -- http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/FTydN9XIXkyuQhf_gBTZng#","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-m-o-n-s-t-e-r-t-r-u-c-k-c-l-u-s-t-e-r-f-c-k-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8316e45f-7151-489d-9af0-5b860f2b5766/sm/2013912-1443027994404-fh_thumb_6_copy_1024_(9).jpg","duration":630,"publication_date":"2015-09-23T17:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-oculus-rift-v-s-h-t-c-vive-dude-soup-podcast-34","changefreq":"weekly","video":[{"title":"2015:E33 - Oculus Rift VS HTC Vive - #34","description":"Yeah, yeah, virtual reality is pretty cool, and we're all glad to be able to talk about it in depth (finally) but in other news, today is Joel's birthday.\n\nI mean, we're totally on the verge of a paradigm shift in digital entertainment, where the lines between reality are blurred with creations from the minds of tech geniuses. And that's neat, I guess, but today is Joel's birthday.\n\nLook at it this way: you're lucky. You're lucky because you'll be able to tell your kids you were there before the rise of VR sets in every house, at every museum. You're lucky because you get to watch the evolution of a new technology. You're lucky because you get to watch this podcast today, which is Joel's birthday.\n\nSo please enjoy our thoughts on the current state of VR and its potential in the future. But also remind yourself that today is Joel's birthday.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-oculus-rift-v-s-h-t-c-vive-dude-soup-podcast-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3806f6c1-cee9-494f-b451-6c791d2e294f/sm/2013912-1443068761231-dudesoup_34v3_1024.png","duration":3644,"publication_date":"2015-09-22T13:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-what-s-after-m-e-t-a-l-g-e-a-r-s-o-l-i-d-5-open-haus-31","changefreq":"weekly","video":[{"title":"2015:E31 - What's after METAL GEAR SOLID 5? - #31","description":"Listen... we all say some things we regret. But THIS is not one of those situations. If a man (or woman) wants to cruise through the galaxy in an Ivar-class, sub-atomic, \"lite dampening\" rigged space ship that happens to be named 'Star R*per' that's their decision. You should respect that decision.\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-what-s-after-m-e-t-a-l-g-e-a-r-s-o-l-i-d-5-open-haus-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aead6d2-fdd5-48cb-a710-fe8a5bb37e9f/sm/2013912-1442638648355-FH_Thumb_6_copy_(1).jpg","duration":546,"publication_date":"2015-09-21T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-s-p-a-n-k-i-t-t-o-f-r-o-z-e-n-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E29 - SPANK IT TO FROZEN","description":"Description written by: Spoole\n\nThis week we take Gavin, Michael and Geoff from Achievement Hunter on a magical journey through Demo Disk Land where we discover just how large Gandalfs penis is and how hard you can spank Elsa's booty. \n\nAlso, Adam tries his hand at serving drinks at a bar at some point... yeah that goes just about as well as you'd expect.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-s-p-a-n-k-i-t-t-o-f-r-o-z-e-n-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95501d5a-a598-48d2-96a1-38a77c8638fe/sm/2013912-1442638521369-FH_Thumb_6_copy__DD.jpg","duration":776,"publication_date":"2015-09-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-d-e-a-t-h-s-p-i-r-a-l-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E104 - DEATH SPIRAL - GTA 5 Gameplay","description":"Crack that whip\n\nTake a spiral trip\n\nDrive on a loop\n\nMake your pants go poop\n\nWhen a spiral comes along\n\nYou must whip it\n\nIf you parody a song\n\nYou must whip it\n\nWhen you break free from the throng\n\nYou must whip it\n\nNow whip it\n\nIn your car\n\nCar drive up\n\nDrive far\n\nGo spiral\n\nBeat your friends\n\nTry not to blow up\n\nIt's not too hard\n\nTo whip it\n\nWhip it good\n\nKABOOM SPIRAL: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/p2UVoZ17rkavdNZaCZdVyw","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-d-e-a-t-h-s-p-i-r-a-l-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/277bed42-a1bf-475e-a78a-36e62398376b/sm/2013912-1442609445575-fh_thumb_6_copy_1024_(8).jpg","duration":600,"publication_date":"2015-09-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-b-r-o-k-e-n-g-a-m-e-s-are-c-o-m-i-n-g-f-a-q-podcast","changefreq":"weekly","video":[{"title":"2015:E10 - BROKEN GAMES are COMING?","description":"What if the games aren't broken, but our eyes What if we need to wake up to a world of imperfections and embrace them as fully as we embrace each other Because, after all, we are all human, and a bit of ourselves is in everything we make. From cars to bread makers to clocks, every invention of humankind carries its spirit.\n\nIf to err is human, then wouldn't a perfect product be... inhuman Is that what we really want Perhaps the true beauty of both people and the works they create isn't in their perfection, but their imperfection. Maybe we shouldn't look at games as \"broken\" but just more \"human\" than anything else.\n\nOR WHATEVER FUCK IT THIS GAME ISN'T 60FPS.","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-b-r-o-k-e-n-g-a-m-e-s-are-c-o-m-i-n-g-f-a-q-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db713520-9323-43f8-8547-3dfd9ef9c1d5/sm/2013912-1442638337050-FH_Thumb_6_copy.jpg","duration":3482,"publication_date":"2015-09-19T04:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-h-o-w-t-o-b-e-c-o-o-l-shadowrun-hong-kong-gameplay","changefreq":"weekly","video":[{"title":"2015:E103 - HOW TO BE COOL - Shadowrun: Hong Kong Gameplay","description":"This gameplay is sponsored by Shadowrun: Hong Kong\n\nDownload here: http://bit.ly/1FwAN2R\n\nThe year is 23XX. The place is Syth Kong. The people is you. The Meganet7 is now one with humanity, and only one man is capable of hacking the system enough to be a hero. His name is Flymaxx Vektard, and he's coming for all the Synthohol mafia bosses out there. \n\nLook out, Flymaxx! The autocop is patrolling your sector! Call in your friend Styce Windex and cast Dissaportion on yourselves to reload at Alpha Cor3. Nice job - the childlings are safe again to continue their studies. We will grow past this. We will fight the Corplords. \n\nOne day the Ultrahumans will evolve yet again and transcend our meat and circuit hybrid carrier bodies. One day may we all be free.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-h-o-w-t-o-b-e-c-o-o-l-shadowrun-hong-kong-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5523f373-33c6-4a8d-998e-dff8b4b24c81/sm/2013912-1442529120970-fh_thumb_6_copy_1024_(6).jpg","duration":712,"publication_date":"2015-09-17T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-s-t-a-r-w-a-r-s-in-g-t-a-5-mod-gameplay","changefreq":"weekly","video":[{"title":"2015:E102 - STAR WARS in GTA 5! Mod Gameplay!","description":"DUH! Duh. Duh. Duh. Duh-duh. Duh-duh DUH DUH DUH. \n\nDuh. Duh. Duh. Duh. Duh-duh. Duh-duh DUH DUH DUH! Duh duh duh, duh duuuuh duh, duh daaaaaaaah duh da-da-duh duh!\n\nBum bum bum bum.\n\nDuh duh duh, duh duuuuh duh, duh daaaaaaaah duh da-da-DEEE! Duh. Duh. Duh. Duh-duh. Duh-duh DUH DUH DUH! Duh duh duh, duh duuuuh duh, duh daaaaaaaah duh da-da-duh duh!\n\nDuh DUH. Duh duh duuuuh duh duh DUH DUH DUUUUH DUH DUH!!!!\n\nScript Hook V + Native Trainer\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nX-34 Speeder\n\nhttps://www.gta5-mods.com/vehicles/star-wars-x-34-...\n\nStar Destroyer\n\nhttps://www.gta5-mods.com/vehicles/imperial-star-d...\n\nX-Wing, TIE Fighter\n\nhttps://www.gta5-mods.com/vehicles/the-flintstones...\n\nMenyoo\n\nhttps://www.gta5-mods.com/scripts/menyoo-pc-sp\n\nVehicles Jetpack\n\nhttps://www.gta5-mods.com/scripts/jetpack-for-vehi...\n\nVehicle Weapons\n\nhttps://www.gta5-mods.com/scripts/vehicle-weapons-...","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-s-t-a-r-w-a-r-s-in-g-t-a-5-mod-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ff88e96-661b-4c50-b4fc-ddf89721da28/sm/2013912-1442503458561-fh_thumb_6_copy_1024.jpg","duration":573,"publication_date":"2015-09-17T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-you-tube-v-s-copyright-dude-soup-podcast-33","changefreq":"weekly","video":[{"title":"2015:E32 - YouTube VS Copyright - #33","description":"This podcast brought to you by Gameloft and Siegefall! Download on iOS: http://gmlft.co/g-no2 or Android:http://gmlft.co/385JP\n\nDraft Kings: http://draftkings.com promo code \"SOUP\" \n\nLoot Crate: http://lootcrate.com/dudesoup promo code \"DUDESOUP\"\n\nHUUUUGE news this week, everyone!! Looks like YouTube finally lost in court and Fair Use laws are being upheld finally! We can upside anything we want and claim fair use! No more copyright strikes!! That's great news for content creators everywhere, and it's going to allow us to execute something we've been wanting to do all along.\n\nStarting tomorrow, all Funhaus uploads are going to be old episodes of Hey Dude, the classic early 90s Nickelodeon comedy. That's right: tune in every day to keep up on the (mis)adventures of the entire gang at the Bar None Ranch: Ted and Danny, Brad, Melody, even crazy old Mr. Ernst and Buddy! Thanks to the Fair Use ruling from the 9th Circuit court of appeals, we can do whatever the fuck we want!! Yippee ki-yi-yay! (Yippee ki-yi-what! hahahah!!)\n\nAlso, Gus and Barbara are here and we're in Austin and sorry this upload is late.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-you-tube-v-s-copyright-dude-soup-podcast-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46ad14d7-ef90-4e20-ab1f-5faae5fe5ae1/sm/2013912-1443029881970-rt_thumbs_1024.jpg","duration":3596,"publication_date":"2015-09-15T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-our-f-i-r-s-t-j-o-b-open-haus-30","changefreq":"weekly","video":[{"title":"2015:E30 - Our FIRST JOB? - #30","description":"Welcome to Open Haus, a show that's slowly devolving into a competition as to who can insult whom the most.\n\nI'm going to win, because they're all going to mock me for using the word \"whom\".","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-our-f-i-r-s-t-j-o-b-open-haus-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d830cd4-b002-413f-951c-70736f02d3da/sm/2013912-1442024306601-fh_thumb_6_copy_1024_(3).jpg","duration":704,"publication_date":"2015-09-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-m-a-s-t-e-r-q-u-e-f-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E28 - MASTER QU*EF","description":"Well, #NoPorno lasted all of one week. Are you happy ARE YOU HAPPY, YOU MONSTERS You did this. You forced us into this. We never wanted this life, but here we are. Thanks to you. You only have yourself to blame.\n\nShame.\n\nShame on you, audience members. \n\nShame.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-m-a-s-t-e-r-q-u-e-f-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b64b0ab6-3c6f-4f8f-8652-a1fab5378ee8/sm/2013912-1442125917494-fh_thumb_6_copy_1024.jpg","duration":809,"publication_date":"2015-09-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-m-i-d-d-l-e-e-a-s-t-m-a-s-s-a-c-r-e-manhunter-gameplay-part-4","changefreq":"weekly","video":[{"title":"2015:E101 - MIDDLE EAST MASSACRE - Manhunter Gameplay Part 4","description":"He'll only shoot everyone\n\nA psycho with a gun\n\nNothing is new, he'll scale a ladder's heights\n\nWatching and waiting\n\nOoh, he's sittin' with you but his eyes are down the sights\n\nA bluetooth in every ear \n\nMaking Arby's food disappear \n\nThe hunter is wild, a soldier trained to go on a killing spree\n\nMurder's the matter\n\nIf you're in it for love, you may get an STD\n\nOh-oh here he comes, watch out boy he'll shoot you up\n\nOh-oh, here she comes, he's a Manhunter\n\nOh-oh here he comes, watch out boy he'll shoot you up\n\nOh-oh, here she comes, he's a Manhunter","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-m-i-d-d-l-e-e-a-s-t-m-a-s-s-a-c-r-e-manhunter-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67e8c031-84a7-48f5-a314-4dacc0acc5eb/sm/2013912-1442000254237-fh_thumb_5_copy_1024_(64).jpg","duration":618,"publication_date":"2015-09-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-d-u-m-b-a-v-e-n-g-e-r-s-7-the-sims-4-gameplay","changefreq":"weekly","video":[{"title":"2015:E100 - DUMB AVENGERS #7 - The Sims 4 Gameplay","description":"Robbaz's Video: https://www.youtube.com/watchv=APh2CDTjOtY\n\nOh baby, it's been quite a long time. Come here. Come on over here and get comfortable. I can't tell you how much I missed you. How have you been You look good. Real good. Is something different What's changed Tell me all about it.\n\n Look. Sometimes, daddy has to go out of town to take care of business. When I'm gone, I think about you all the time, but I'm only one channel. I got a lot of stuff to take care off - weekly stuff, daily stuff. Just...lots of stuff. But you're so important to me, baby. I couldn't ever really stay away forever, no matter what. And with so many people counting on me -- on you -- on US -- you had to know I'd be back eventually.\n\nSo can you find it in your heart to forgive me, baby I know I done you wrong the last month or so, but I'm here now. Let's live in the moment: me and you, and 300,000 other people, and one crazy Swede. Just us. Together. On this crazy journey called Dumb Awrongers.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-d-u-m-b-a-v-e-n-g-e-r-s-7-the-sims-4-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c92233a-9a2d-4747-bbc2-427c7bbabe48/sm/2013912-1441924103191-fh_thumb_5_copy_1024_(62).jpg","duration":574,"publication_date":"2015-09-11T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-10","changefreq":"weekly","video":[{"title":"2015:E12 - QUEST FOR CHESTS - Dungeon Hunter 5 Gameplay","description":"This video is sponsored by Gameloft - check out Dungeon Hunter 5 & download here:\n\niOS: http://gmlft.co/dVgo2 Andriod: http://gmlft.co/2w26W\n\nCHESTS! Once thought only to be attainable by those in the well-to-do set, chests have been popping up everywhere. Watch out, John D. Rockefeller: you're not the only one with access to chests anymore! That's right! Even you - that's right, you! - can now find chests aplenty!\n\nWhether they're holding gems, gold, deeds to oil wells, or any other day-to-day treasure, chests are the perfect conversation piece for your house, manse, chateau, or stronghold! And what's more chests can do more than hold things. Yessir, you can use them as makeshift tables, ottomans, ballast on oceangoing vessels, or kennels for small pets that don't need to breathe much. Wood chests, iron chests, even chests of gilt stone, yes, chests are here to stay. \n\nDon't believe me Just ask this random gentleman-on-the-street his opinion!\n\n\"Chests Sure, I have chests. I keep my handy tools in them, and the kids use them for school projects all the time. Even the wife has 2 chests! Wink!\"\n\nYes, that's right. He said 'wink' because he knows the value of chests! So get chests today. Chests...for everyone!","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3d8ace4-56cc-46c7-bb69-48e8683a59d2/sm/2013912-1441933629405-fh_thumb_6_copy_1024_(1).jpg","duration":719,"publication_date":"2015-09-11T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-g-i-v-e-u-s-m-o-n-e-y-or-not-funhaus-shorts","changefreq":"weekly","video":[{"title":"2015:E6 - GIVE US MONEY or not","description":"Won't you help the children (us) http://bit.ly/1K9Z4Rv\n\nWe're part of Rooster Teeth. And so are you. So by helping Rooster Teeth, you're really just helping yourself. It's the ouroboros of feelin' good. Come on. You know you want to eat your own tail, don't you Come on, it's real tasty. Just chow down on yourself. Yummmm snack snack snakey snack! \n\nChant along with us: \n\nTummy yummy helping you / yummy gummi snakes to chew.\n\nTranslation: become a Rooster Teeth Sponsor today.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-g-i-v-e-u-s-m-o-n-e-y-or-not-funhaus-shorts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b73745e-9d56-440d-905f-082b46a110e9/sm/2013912-1441929147043-fh_thumb_5_copy_1024_(63).jpg","duration":183,"publication_date":"2015-09-10T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-p-a-r-t-y-i-s-l-a-n-d-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E99 - PARTY ISLAND - GTA 5 Gameplay","description":"Are you ready to rock I said, ARE YOU READY TO ROCK! By which, of course, I mean, are you prepared to mount this rock in the middle of a body of water and defend yourself with guns and helicopters and parachutes! \n\nOh. Oh, you are Ah. Well, I didn't really have a followup question. So...um....how's your day Good stuff, man. Good stuff. We're doing ok here too. \n\nWell.\n\nHrm.\n\nI guess....have fun rockin' then. Yeahhhhh.\n\nMorning After Ibiza: http://socialclub.rockstargames.com/games/gtav/pc/jobs/job/QhuxtBsDYU2VrA1X33uIJA","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-p-a-r-t-y-i-s-l-a-n-d-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5495883b-8184-4b34-b1f4-d6bd6389a56b/sm/2013912-1441896952481-fh_thumb_5_copy_1024_(61).jpg","duration":549,"publication_date":"2015-09-10T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-28","changefreq":"weekly","video":[{"title":"2015:E29 - WANNA BE Achievement Hunters? - #29","description":"If you want my Funhaus, watch every week\n\nIf you wanna get with Bruce, better go through Peake\n\nNow come and join with YouTube's best manboy tribe\n\nGet your act together: comment, like, subscribe\n\nI'll tell you what I haus, what I open, open haus\n\nSo tell me what you haus, what you open, open haus\n\nI wanna, (haus) I wanna, (haus) I wanna, (haus) I wanna, (haus)\n\nI wanna really, really, really wanna clickaclick snap\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b124c9f8-2466-453a-85a5-ca616b471755/sm/2013912-1441604853069-fh_thumb_5_copy_1024_(57).jpg","duration":645,"publication_date":"2015-09-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-n-o-p-o-r-n-o-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E27 - NO PORNO","description":"Ladies and Gentlemen, I present to you an experiment. \n\nThose of you familiar with the Funhaus show Demo Disk may recall that as Adam, Bruce, and James record the show, they are wont to occasionally (constantly) play pornographic flash games in order to pass the time as disks load and then proceed to not work. It's a stopgap measure, taken only to get some kind of material for the show when all else fails.\n\nYou may also have noticed that as the show has progressed lo these 30 episodes or so, pornographic flash games have become more and more commonplace. Well, our parents have noticed, so in this Very Special Episode of Demo Disk we're trying an experiment.\n\n#NoPorno\n\nThat's right. We'll experiment with NOT having any pornographic games in this week's episode. If it does as well or better than previous episodes, huzzah! We can work clean from here on out. \n\nIf, however, it performs more poorly than previous episodes then we're going back to the ol' porn mines to dig up some real smutty porn games. \n\nLET THE GREAT EXPERIMENT BEGIN!!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-n-o-p-o-r-n-o-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1c30782-22e8-418e-a020-3ced031e1dc0/sm/2013912-1441405289850-fh_thumb_5_copy_1024_(59).jpg","duration":793,"publication_date":"2015-09-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-s-u-i-c-i-d-e-b-y-c-a-r-s-wheelhaus-gameplay","changefreq":"weekly","video":[{"title":"2015:E98 - SUICIDE BY CARS - Wheelhaus Gameplay","description":"My plan for this description was to look up the actual theme song from the movie Cars, because I had forgotten what it was. I was going to write like a little parody of it, with different cool rhyming lyrics and stuff. Like I sometimes do.\n\nTurns out it was a song called \"Our Town,\" written by Randy Newman and sung by James Taylor. I looked it up and watched it on YouTube. Do you remember this thing It sucks. It's a sucky song. If I wrote a parody of it, no one would know what the fuck it was. They'd think I wrote a crappy piece of original poetry or something, I don't know. \n\nSo instead of a clever, fun description, you get this: a bitter kinda-apology. Don't blame me. Blame Randy Newman and James Taylor.\n\nWheelhaus is a website. http://www.thewheelhaus.com","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-s-u-i-c-i-d-e-b-y-c-a-r-s-wheelhaus-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0eb7f5f8-edb9-47a6-929d-a8448f211e1f/sm/2013912-1441393811250-fh_thumb_5_copy_1024_(56).jpg","duration":811,"publication_date":"2015-09-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-8","changefreq":"weekly","video":[{"title":"2015:E11 - GTA 5 RPG! Mod Gameplay!","description":"Did you ever say to yourself, \"Man, I wish GTA had a story mode!\" Have you ever thought what it would be like to play GTA with quests and characters Were you ever desiring of more more more\n\nDid you ever want a more immersive narrative experience I mean beyond the 30-40 hours that Rockstar already built into the game Are you a real dumb-dumb like us\n\nThen come on down to Adam's GTA Mods Emporium and get more of that sweet RPG action with RPG: The Mod!!\n\nScript Hook V + Native Trainer v1.0.350.2a\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nGTA RPG\n\nhttps://www.gta5-mods.com/scripts/gta-rpg\n\nGrappling Hook\n\nhttp://gtaxscripting.blogspot.com/2015/05/gta-v-just-cause-2-grappling-hook-mod.html\n\nVehicles Jetpack\n\nhttps://www.gta5-mods.com/scripts/jetpack-for-vehicles-xmod\n\nBatman Moon\n\nhttps://www.gta5-mods.com/misc/batman-moon","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42f09fce-aae6-48d4-8d3b-215d59263036/sm/2013912-1441315531549-fh_thumb_5_copy_1024_(55).jpg","duration":678,"publication_date":"2015-09-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-how-to-s-u-c-c-e-e-d-on-you-tube-f-a-q-podcast","changefreq":"weekly","video":[{"title":"2015:E9 - How to SUCCEED on YouTube?","description":"How to--play games for a job;\n\nHow to--produce co-op versus;\n\nHow to--stand up at a desk;\n\nHow to--write YouTube descriptions;\n\nHow to--develop that let's player style;\n\nHow to upload\n\nIn two-person mode,\n\nWith that counterfeit let's player smile.\n\nThis video's all that you need:\n\nHow to--how to--succeed!","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-how-to-s-u-c-c-e-e-d-on-you-tube-f-a-q-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21de5e0a-c6db-42c9-83c1-f6c5b54ab325/sm/2013912-1441237350753-fh_thumb_5_copy_1024_(54).jpg","duration":2657,"publication_date":"2015-09-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-b-e-s-t-c-i-t-y-i-n-t-h-e-w-o-r-l-d-funhaus-shorts","changefreq":"weekly","video":[{"title":"2015:E5 - BEST CITY IN THE WORLD","description":"Hey baby I hear the blues a-callin'\n\nTossed salads and scrambled eggs\n\nBut maybe I seem a bit confused\n\nMaybe, but I got you pegged\n\nBut I don't know what to do with those tossed salads and scrambled eggs\n\nThey're calling again....\n\nFUNHAUS EVERYBODY","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-b-e-s-t-c-i-t-y-i-n-t-h-e-w-o-r-l-d-funhaus-shorts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f49ddd1-49b9-4f78-9d9c-0aa27512c7a9/sm/2013912-1441232385523-fh_thumb_5_copy_1024_(53).jpg","duration":276,"publication_date":"2015-09-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-d-o-w-n-t-h-e-t-o-i-l-e-t-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E97 - DOWN THE TOILET - GTA 5 Gameplay","description":"Seriously, this is the only description you need: https://www.youtube.com/watchv=ye-XZ4Ukl08\n\nDown the Toilet: http://socialclub.rockstargames.com/games/gtav/jobs/job/gWVxCve6hk2uuNDTSyKLfQ","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-d-o-w-n-t-h-e-t-o-i-l-e-t-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/127864e0-a137-481e-9ec8-1f23a4aa1885/sm/2013912-1441216957976-fh_thumb_5_copy_1024_(51).jpg","duration":622,"publication_date":"2015-09-02T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-should-you-play-metal-gear-solid-5-dude-soup-podcast-31","changefreq":"weekly","video":[{"title":"2015:E30 - Should You Play Metal Gear Solid 5? - #31","description":"Visit our sponsors! Casper Mattress: http://www.casper.com/dudesoup and use promo code \"DUDESOUP\"\n\nDraftkings: http://www.draftkings.com/ promo code \"SOUP\"\n\nLoot Crate: http://www.lootcrate.com/dudesoup promo code \"DUDESOUP\"\n\nWell, our second trial of Dude Soup Live, at PAX in Seattle, went really well. EXTRAORDINARILY well, if you ask me. 250+ audience members. Beautiful onstage presence. Cult of Peake in full force. We only had one hitch: we weren't able to record the damn thing.\n\nTrust me, it was awesome. We got into how everyone alive today is better than Jesus. About how sad Notch is. About Lawrence's crackpot Lightcube theory. \n\nBut you'll never know about it.\n\nWe talked about how people on Twitter and Reddit are hounding game devs, and how that creates a vicious cycle of games coverage. We bowed our head as Peake lead us in a group prayer.\n\nAnd it'll never be seen.\n\nSorry. Here's a replacement.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-should-you-play-metal-gear-solid-5-dude-soup-podcast-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6831f4b1-d4cd-41a8-9347-0f2d7251c070/sm/2013912-1441206303317-fh_thumb_5_copy_1024_(50).jpg","duration":4005,"publication_date":"2015-09-02T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-s-u-c-k-y-s-t-a-r-w-a-r-s-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E26 - SUCKY STAR WARS","description":"Episode XXXI\n\nIt is a period of turmoil in Funhaus. Demo Disks, the currency white dudes on YouTube, are slowly being depleted due to the Great Cracking. \n\nEditors and Producers, striking from a hidden bunker, have attempted to stretch out the remaining Disks with Meet & Fuck flash games.\n\nSenator Amidala of Naboo has been dispatched to attempt to resolve the situation with her Jedi escort, Ahsoka Tano.\n\nTogether, Padme Amidala and the Padawan Ahsoka must unite to prolong the existence of Demo Disk and battle some kind of sexy panther sith lady or something.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-s-u-c-k-y-s-t-a-r-w-a-r-s-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0ed8307-9bf0-4f9a-9979-809cec70bd8f/sm/2013912-1440703344885-fh_thumb_5_copy_1024_(49).jpg","duration":860,"publication_date":"2015-08-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-f-u-n-h-a-u-s-v-s-s-e-a-n-a-n-n-e-r-s-blackwake-gameplay","changefreq":"weekly","video":[{"title":"2015:E96 - FUNHAUS VS SEANANNERS - Blackwake Gameplay","description":"Avast ye scurvy dogs and prepare to walk the plank! Black Wake be here to wreck urrrr day and load urrrr cannon. \n\nFunhaus, Ye British Sailores, square off against the scourge of the seas: Seananners, Chilled Chaos, ZeRoyalViking, and AllShamNoWow, land hos if ever there were land hos. More ruthless swabs we've never seen. so batten the mainsail and top the poopdeck, mateys.\n\nBe there honor in the briny depths Do the drowned ghosts sing shanties in Davy Jones's locker And where be the booty Watch ye 30 minute video and have urrrr limey arses handed to ye.\n\nYe be fair warned: Blackwake be in alpha mode now: https://www.kickstarter.com/projects/2000479544/blackwake-reboot","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-f-u-n-h-a-u-s-v-s-s-e-a-n-a-n-n-e-r-s-blackwake-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61329906-e995-4ceb-968d-cce8b1760863/sm/2013912-1440622932337-fh_thumb_5_copy_1024_(44).jpg","duration":1838,"publication_date":"2015-08-29T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bottoms-up-cup-bonestorm-vs-lazer-wolvez-mario-tennis-n64","changefreq":"weekly","video":[{"title":"S1:E636 - Bottoms Up Cup - Bonestorm VS Lazer Wolvez - Mario Tennis (N64) ","description":"Which team will come out on top in the newest iteration of ScrewAttack's \"After Dark\" programming?  Cheer for the team you'd like to win and join the conversation on twitter! \r\n#Bonestorm\r\n#LazerWolvez","player_loc":"https://roosterteeth.com/embed/bottoms-up-cup-bonestorm-vs-lazer-wolvez-mario-tennis-n64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b059fc31-f1f3-4eb0-962c-063ec7f489de/sm/video_thumbnail_12716779.png","duration":10073,"publication_date":"2013-10-18T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101813-blizzard-final-fantasy-and-2k-marin","changefreq":"weekly","video":[{"title":"S1:E525 - Hard News 10/18/13 - Blizzard, Final Fantasy, and 2K Marin","description":"Today on Hard News, Blizzard renames its MOBA again, a Final Fantasy committee has been formed, and 2K Marin may be shutting down.\r\n\t\r\n\tBlizzard renames its MOBA again - http://www.screwattack.com/video/Blizzard-changes-the-name-of-its-new-DOTA-from-Blizzard-AllStars-to-Heroes-of-the-Storm-12711664\r\nSquare Enix has formed a Final Fantasy committee to ensure series quality - http://www.screwattack.com/news/square-enix-has-created-final-fantasy-committee-protect-quality-brand\r\nReport: Bureau, BioShock 2 developer allegedly done for - http://www.screwattack.com/news/developer-behind-bureau-and-bioshock-2-closed-after-extensive-layoffs\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101813-blizzard-final-fantasy-and-2k-marin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc525d90-e14c-4f9b-a90f-e10a2f7388db/sm/video_thumbnail_12718419.jpg","duration":133,"publication_date":"2013-10-18T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nerdtastic-boobs-of-warface","changefreq":"weekly","video":[{"title":"S1:E6 - Nerdtastic - Boobs of Warface","description":"Be sure to share your opinions in the comments and feel free to make a suggestion for the next episode of Nerdtastic. If you want to get in touch with either Ben or Sean, you can find them on Twitter!\r\nBen's Twitter\r\nSean's Twitter\r\nEpisode sources:\r\n\r\n\t\r\n\t\thttp://www.screwattack.com/news/russian-fan-base-influenced-warfaces-overly-sexualized-females-says-crytek\r\n\t\r\n\t\thttp://www.wired.co.uk/news/archive/2013-10/07/warface-joshua-howard/viewgallery/308701\r\n\t\r\n\t\thttp://www.theesa.com/facts/pdfs/ESA_EF_2013.pdf\r\n\t\r\n\t\thttp://usatoday30.usatoday.com/news/military/2011-04-22-women-soldiers-uniforms_n.htm\r\n\t\r\n\t\thttp://www.warface.com/","player_loc":"https://roosterteeth.com/embed/nerdtastic-boobs-of-warface","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/356a4adc-d361-4c9f-8eaf-ce87a1e09f49/sm/video_thumbnail_12712488.jpg","duration":370,"publication_date":"2013-10-17T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-101613","changefreq":"weekly","video":[{"title":"S1:E635 - Sidescrollers Extended - 10/16/13","description":"We try some horrible energy drinks we got for free. Also things.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-101613","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08bf80be-76e3-43b9-8f73-f84628f56746/sm/video_thumbnail_12712601.jpg","duration":712,"publication_date":"2013-10-17T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101713-ubisoft-ps4-eidos-and-castar","changefreq":"weekly","video":[{"title":"S1:E524 - Hard News 10/17/13 - Ubisoft, PS4, Eidos, and CastAR","description":"Today on HardNews, Ubisoft stock plummets, Drive Club delayed and PS4's outrageous price in Brazil, and the new Cast AR.\r\n\t\r\n\tDrive Club delayed- http://www.screwattack.com/news/rumor-driveclub-may-not-make-ps4-launch-says-mutliple-sources\r\n\tPS4's price in Brazil - http://www.screwattack.com/news/playstation-4-will-end-costing-average-consumer-over-1800-brazil\r\n\tThe new CastAR VR - http://www.screwattack.com/video/CastAR-VR-headset-is-blowing-its-Kickstarter-away-12711728\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101713-ubisoft-ps4-eidos-and-castar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11551ee4-7b6a-4563-8970-f53976bc7f99/sm/video_thumbnail_12712312.jpg","duration":113,"publication_date":"2013-10-17T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-33","changefreq":"weekly","video":[{"title":"S1:E634 - The Game OverDrinker And The Wrath of Kirby","description":"The Game OverDrinker reveals the truth about Kirby: a sinister murder marshmallow!\r\nIllustrations by John Francis McCullagh\r\nTwitter Sam Twitter.com/ScrewAttackSam\r\n\tTwitter John Twitter.com/JohnFMFilms","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed463808-3f8c-4a39-bff9-4e3b590aaaad/sm/video_thumbnail_12706506.jpg","duration":162,"publication_date":"2013-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101613-double-fine-pokemon-and-ryse","changefreq":"weekly","video":[{"title":"S1:E523 - Hard News 10/16/13 - Double Fine, Pokemon, and Ryse","description":"Today on Hard News, Double Fine's Spacebase DF-9, Pokemon saving glitch, and Ryse tweet backlash.\r\n\t\r\n\tDouble Fine's Spacebase DF-9 - http://www.screwattack.com/video/Double-Fine-rockets-into-Early-Access-with-Spacebase-DF9-12705933\r\n\tPokemon X & Y saving glitch - http://www.screwattack.com/news/psa-pokemon-x-y-trainers-experiencing-game-breaking-bug-lumiose-city\r\n\tRyse: Son of Rome tweet backlash - http://www.screwattack.com/news/one-little-tweet-about-rysefacts-leads-massive-industry-backlash-ryse-son-rome\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101613-double-fine-pokemon-and-ryse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb8f1099-5d4c-4479-830f-28f5a9015dbd/sm/video_thumbnail_12706355.jpg","duration":137,"publication_date":"2013-10-16T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-the-wolf-among-us","changefreq":"weekly","video":[{"title":"S1:E13 - Out of the Box - The Wolf Among Us","description":"This time on Out of the Box, we're headed to Fabletown for The Wolf Among Us! Has Telltale made another great game out of a popular comic? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-the-wolf-among-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c5e2ce7-3373-4a3e-8125-9d627f625419/sm/video_thumbnail_12704621.jpg","duration":2456,"publication_date":"2013-10-16T08:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"mega-laser-arm-sliming\"","changefreq":"weekly","video":[{"title":"S1:E136 - SideScrollers - \"Mega Laser Arm Sliming\"","description":"If your arm or leg was chopped off, what would you replace it with? Craig, Chad and Sam hit this and more important world changing issues in this week's episode of SideScrollers.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"mega-laser-arm-sliming\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48374878-adde-4afe-bea8-da980adf45e0/sm/video_thumbnail_12700261.jpg","duration":3948,"publication_date":"2013-10-15T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101513-ps-vita-shadow-warrior-and-watch-dogs","changefreq":"weekly","video":[{"title":"S1:E522 - Hard News 10/15/13 - PS Vita, Shadow Warrior, and Watch Dogs","description":"Today on HardNews, PS Vita gets a micro USB charge port, new Shadow Warrior janitor mini game, and Watch Dogs has been delayed.\r\n\t\r\n\tPS Vita gets a micro USB charge port - http://www.screwattack.com/news/it-looks-vita-2000-ditching-proprietary-charge-cable-micro-usb\r\n\tNew Shadow Warrior janitor mini game - http://www.screwattack.com/news/flying-wild-hogs-offers-some-unconventional-dlc-viscera-cleanup-detail-shadow-warrior\r\n\tWatch Dogs has been delayed - http://www.screwattack.com/news/watch-dogs-crew-delayed-next-fiscal-year\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101513-ps-vita-shadow-warrior-and-watch-dogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/110fb85f-8935-4b13-b00d-19cab1e7164b/sm/video_thumbnail_12699882.jpg","duration":132,"publication_date":"2013-10-15T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-gizmos-and-gadgets","changefreq":"weekly","video":[{"title":"S1:E406 - Video Game Vault - Gizmos and Gadgets","description":"One of the best educational games you'll ever play is a banana throwing good time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-gizmos-and-gadgets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a04b067a-53c7-44e5-9a37-52f66556bc51/sm/video_thumbnail_12694289.jpg","duration":99,"publication_date":"2013-10-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101413-lol-supremacy-spider-man-2-and-nintendo","changefreq":"weekly","video":[{"title":"S1:E521 - Hard News 10/14/13 - LoL Supremacy, Spider-Man 2, and Nintendo","description":"Today on HardNews, possible League of Legends card game, Spider-Man 2 movie tie in game, and Nintendo may be slackening it's restrictions on cross-play.\r\n\t\r\n\tPossible League of Legends card game - http://www.screwattack.com/news/new-league-legends-game-leaks-and-looks-be-ccg\r\n\tSpider-Man 2 movie tie in game - http://www.screwattack.com/news/amazing-spider-man-2-tie-game-confirmed-next-and-current-generation-platforms\r\n\tNintendo may be slackening it's restrictions on cross-play - http://www.screwattack.com/news/rumor-nintendo-may-be-loosening-its-policies-regarding-cross-platform-play\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101413-lol-supremacy-spider-man-2-and-nintendo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/190b61eb-fd8d-4b26-96ff-02285e6a67c1/sm/video_thumbnail_12693890.jpg","duration":143,"publication_date":"2013-10-14T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-dont-get-nintendod","changefreq":"weekly","video":[{"title":"S1:E198 - The Clip - Don't Get Nintendo'd","description":"Nintendo has ways of silencing those who cross them.  When the time comes, they know just who to send in...","player_loc":"https://roosterteeth.com/embed/the-clip-dont-get-nintendod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d0cedc-f079-4dfa-8bcc-b2ce407c40ca/sm/video_thumbnail_12676592.jpg","duration":109,"publication_date":"2013-10-11T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101113-gta-online-nycc-and-mighty-no-9","changefreq":"weekly","video":[{"title":"S1:E520 - Hard News 10/11/13 - GTA Online, NYCC, and Mighty No. 9","description":"Today on HardNews, GTA Online players to get $500K, NYCC hijacking Twitter accounts, and Inafune may publish with Capcom.\r\n\t\r\n\tGTA Online players to get $500K - http://www.screwattack.com/news/rockstar-award-early-gta-online-players-half-million-dollars\r\n\tNYCC hijacking Twitter accounts - http://www.screwattack.com/news/new-york-comic-con-hijacking-twitter-accounts\r\n\tInafune may publish with Capcom - http://www.screwattack.com/news/inafune-may-let-capcom-publish-mighty-no-9-anyway\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101113-gta-online-nycc-and-mighty-no-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac055ca6-a3d9-4d27-a81b-c84e123a9258/sm/video_thumbnail_12675444.jpg","duration":173,"publication_date":"2013-10-11T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101013-foxconn-newerth-and-chocobo-racing","changefreq":"weekly","video":[{"title":"S1:E519 - Hard News 10/10/13 - Foxconn, Newerth, and Chocobo Racing","description":"Today on HardNews, Foxconn's slave labor, Heroes of Newerth awesome new voice pack, and Chocobo Racing put down.\r\n\t\r\n\tFoxconn's slave labor - http://www.screwattack.com/news/foxconn-using-unpaid-engineering-students-assemble-and-box-ps4s\r\n\tHeroes of Newerth awesome new voice pack - http://www.screwattack.com/news/heroes-newerth-features-official-samuel-l-jackson-announcer\r\n\tChocobo Racing put down - http://www.screwattack.com/news/rumor-new-chocobo-racing-3ds-has-been-cancelled\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101013-foxconn-newerth-and-chocobo-racing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02adc2ad-c8fe-438a-ba05-beb8e9e4034d/sm/video_thumbnail_12669005.jpg","duration":141,"publication_date":"2013-10-10T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tesla-cannon-fallout-the-armory-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E4 - Tesla Cannon (Fallout) - The Armory with Boomstick","description":"Leave a comment telling Boomstick what weapon you think belongs in the Armory!","player_loc":"https://roosterteeth.com/embed/tesla-cannon-fallout-the-armory-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ee0ab5b-1396-49df-8d10-be7efd79e76e/sm/video_thumbnail_12663391_0.jpg","duration":74,"publication_date":"2013-10-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100913-assassins-creed-iv-warface-mad-catz-m-o-j-o","changefreq":"weekly","video":[{"title":"S1:E518 - Hard News 10/09/13 - Assassin's Creed IV, Warface, Mad Catz M.O.J.O.","description":"Today on HardNews, details on the Assassin's Creed IV season pass, Warface sexy avatar controversy, and the new micro console from Mad Catz.\r\n\t\r\n\tAssassin's Creed IV season pass details - http://www.screwattack.com/news/asscreed-iv-black-flag-reveals-its-season-pass-today-new-playable-character\r\n\tWarface sexy avatar controversy - http://www.screwattack.com/news/russian-fan-base-influenced-warfaces-overly-sexualized-females-says-crytek\r\n\tThe new M.O.J.O. micro console from Mad Catz - http://www.screwattack.com/news/madcatz-decides-enter-micro-console-market-mojo-and-ctrlr\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-100913-assassins-creed-iv-warface-mad-catz-m-o-j-o","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edc505e8-0583-41ab-9958-5a9ca930a49c/sm/video_thumbnail_12662345.jpg","duration":173,"publication_date":"2013-10-09T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-battlefield-4-beta","changefreq":"weekly","video":[{"title":"S1:E14 - Out of the Box - Battlefield 4 Beta","description":"This time on Out of the Box, we're checking out the Battlefield 4 Beta! Will it get you hyped? Will it work better than GTA Online? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-battlefield-4-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cba5b117-0979-43b7-824a-6fd14dc7779d/sm/video_thumbnail_12661448.jpg","duration":2269,"publication_date":"2013-10-09T08:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-100913","changefreq":"weekly","video":[{"title":"S1:E633 - SideScrollers Extended - 10/09/13","description":"Video of the crazy Korean teacher and talks about food and such.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-100913","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80ffeb87-f366-4482-97b1-4b080201b23f/sm/video_thumbnail_12657012.jpg","duration":689,"publication_date":"2013-10-08T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"beat-offbeat-down\"","changefreq":"weekly","video":[{"title":"S1:E135 - SideScrollers - \"Beat Off/Beat Down\"","description":"Sexy robots, Nintendo thugs, and a violently frustrated Korean man are the talk of the Scrollers this week.\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio HERE!\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"beat-offbeat-down\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1afb250-fc73-42d1-a499-eab4b105549e/sm/video_thumbnail_12656701.jpg","duration":3579,"publication_date":"2013-10-08T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100813-ps4-controller-pokemon-microsoft","changefreq":"weekly","video":[{"title":"S1:E517 - Hard News 10/08/13 - PS4 controller, Pokemon, Microsoft","description":"Today on HardNews, PS4 controller to work with PCs, the rarest Pokemon card ever, and Microsoft's clarification statement.\r\n\t\r\n\tPS4 controller to work with PCs - http://www.screwattack.com/news/dual-shock-4-controller-will-work-pc\r\n\tThe rarest Pokemon card ever - http://www.screwattack.com/news/how-much-would-you-pay-pokemon-card\r\n\tMicrosoft's clarification statement - http://www.screwattack.com/news/update-microsoft-wont-sell-your-xbox-one-data-or-maybe-they-will-then-again-maybe-not\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-100813-ps4-controller-pokemon-microsoft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55b87d65-fbae-4b6a-9478-8e7e7429de0f/sm/video_thumbnail_12657425.jpg","duration":161,"publication_date":"2013-10-08T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-fighting-force","changefreq":"weekly","video":[{"title":"S1:E405 - Video Game Vault - Fighting Force","description":"Back in the day, Core Design and Eidos Interactive put out great games like Tomb Raider, and astoundingly average ones just like Fighting Force.","player_loc":"https://roosterteeth.com/embed/video-game-vault-fighting-force","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3aa8bcf-0ba3-4b81-8def-698628abefc8/sm/video_thumbnail_12632427.jpg","duration":125,"publication_date":"2013-10-07T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100713-injustice-valve-and-microsoft","changefreq":"weekly","video":[{"title":"S1:E516 - Hard News 10/07/13 - Injustice, Valve, and Microsoft","description":"Today on HardNews, Injustice Ultimate Edition, Valve trademarks registered and then taken down, and Microsoft flips on another statement.\r\n\t\r\n\tInjustice: Gods Among Us Ultimate Edition - http://www.screwattack.com/news/injustice-gods-among-us-ultimate-edition-coming-november-12th-wbie\r\n\tMysterious Valve trademarks - http://www.screwattack.com/news/half-life-3-european-trademark-vanishes\r\n\tMicrosoft flips on another statement - http://www.screwattack.com/news/microsoft-wont-sell-your-xbox-one-data-or-maybe-they-will\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-100713-injustice-valve-and-microsoft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7a86ed0-9107-4a31-b709-170d6e147f7c/sm/video_thumbnail_12651475.jpg","duration":153,"publication_date":"2013-10-07T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-healz","changefreq":"weekly","video":[{"title":"S1:E32 - The Best EVER! Healz","description":"Vitality is a factor in countless games; when your life gets low, you've got to fill it back up.  But what's the best EVER healing method in gaming?","player_loc":"https://roosterteeth.com/embed/the-best-ever-healz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93d65fc5-f2f6-4bb2-981a-c3870b1bde2b/sm/video_thumbnail_12634812.jpg","duration":353,"publication_date":"2013-10-04T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100413-gta-online-mario-party-3ds-and-simcity","changefreq":"weekly","video":[{"title":"S1:E515 - Hard News 10/04/13 - GTA Online, Mario Party 3DS, and SimCity","description":"Today on HardNews, GTA Online patch, Marty Party for 3DS delayed in Europe, and SimCity.\r\n\t\r\n\tGTA Online patch released this morning - http://www.screwattack.com/news/ps3-patch-fix-gta-online-might-make-it-ready-weekend-rush\r\n\tMarty Party: island Tour delayed in Europe - http://www.screwattack.com/news/mario-party-island-tour-3ds-being-delayed-until-2014-europe\r\n\tSimCity's continuing \"success\" - http://www.screwattack.com/news/sim-city-may-finally-get-offline-mode-fans-have-been-clamoring\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-100413-gta-online-mario-party-3ds-and-simcity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/557afc6e-6db8-4ecf-9dd5-9877394dc84e/sm/video_thumbnail_12632429.jpg","duration":131,"publication_date":"2013-10-04T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100313-watch-dogs-ratchet-clank-warcraft-and-pokemon","changefreq":"weekly","video":[{"title":"S1:E514 - Hard News 10/03/13 - Watch Dogs, Ratchet & Clank, Warcraft, and Pokemon","description":"Today on HardNews, Watch Dogs PC specs, Ratchet & Clank and Warcraft release dates, and Nintendo doesn't mess around when it comes to Pokemon.\r\n\t\r\n\tWatch Dogs PC Specs - http://www.screwattack.com/news/watchdogs-pc-specs-leak-out-uplay-and-will-require-64-bit-operating-system\r\n\tRatchet & Clank preorder bonus - http://www.screwattack.com/video/Ratchet-and-Clank-Into-the-Nexus-officially-has-a-release-date-12626196f\r\n\tWarcraft release date - http://www.screwattack.com/news/warcraft-movie-receives-official-release-date-and-production-studio\r\n\tDon't mess with Pokemon! - http://www.screwattack.com/news/nintendo-takes-back-leaked-pokemon-x-cart-flying-culprit%E2%80%99s-hometown\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-100313-watch-dogs-ratchet-clank-warcraft-and-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b39a8dd-57c7-41bf-be9b-fb06c6d80042/sm/video_thumbnail_12626259.jpg","duration":137,"publication_date":"2013-10-03T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-34","changefreq":"weekly","video":[{"title":"S1:E632 - The Game OverDrinker and the World of Pokemon","description":"The OverDrinker explores the wild and cruel world of Pokemon.\r\nIllustrations by John Francis McCullagh\r\nTwitter Sam Twitter.com/ScrewAttackSam\r\n\tTwitter John Twitter.com/JohnFMFilms","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c65037b6-fa74-40be-b56c-f5b49fcf8c74/sm/video_thumbnail_12619013.jpg","duration":225,"publication_date":"2013-10-02T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100213-tom-clancy-sega-and-mighty-no-9","changefreq":"weekly","video":[{"title":"S1:E513 - Hard News 10/02/13 - Tom Clancy, Sega, and Mighty No. 9","description":"Today on HardNews, the late Tom Clancy, Sega and Sonic Boom, and Mighty No. 9 meets all its goals.\r\n\t\r\n\tThe passing of Tom Clancy - http://www.screwattack.com/news/tom-clancy-has-passed-away-age-66-leaving-behind-legacy-entertainment\r\n\tLayoffs and Sonic Boom - http://www.screwattack.com/news/sega-lays-some-its-us-staff-process-revealing-strange-preorder-lost-world\r\n\tMighty No. 9 - http://www.screwattack.com/news/mighty-number-9-emerges-kickstarter-over-4-million\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-100213-tom-clancy-sega-and-mighty-no-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3041cb2-153f-4a32-9eb2-12235874d0ea/sm/video_thumbnail_12620941.jpg","duration":136,"publication_date":"2013-10-02T16:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-grand-theft-auto-online","changefreq":"weekly","video":[{"title":"S1:E15 - Out of the Box - Grand Theft Auto Online","description":"This time on Out of the Box, we're going online in Los Santos in Grand Theft Auto Online! Is it a world you want to commit crimes in? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-grand-theft-auto-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73474d43-7a79-4cb1-8c63-1d220dfd33d0/sm/video_thumbnail_12618858.jpg","duration":2232,"publication_date":"2013-10-02T08:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-100213","changefreq":"weekly","video":[{"title":"S1:E631 - SideScrollers Extended - 10/02/13","description":"More chat chit and some Soul Cal action!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-100213","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62ee4d1c-d650-4218-bf0e-f77971b5b8ef/sm/video_thumbnail_12618856.jpg","duration":548,"publication_date":"2013-10-02T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"thou-shalt-be-served\"","changefreq":"weekly","video":[{"title":"S1:E134 - SideScrollers - \"Thou Shalt Be Served\"","description":"Steam Machine, Pokemon masters, and getting served every night! Nick, Chad, and Sam reminisce about their youth and independence.\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio version HERE!\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"thou-shalt-be-served\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f32a40a8-f607-472f-a0bc-be69d2b52125/sm/video_thumbnail_12614815.jpg","duration":3782,"publication_date":"2013-10-01T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100113-the-good-the-bad-and-the-ugly-of-nintendo-direct","changefreq":"weekly","video":[{"title":"S1:E512 - Hard News 10/01/13 - The good, the bad, and the ugly of Nintendo Direct","description":"Today on Hard News, a new Kirby is coming, Tropical Freeze is delayed, and all the big news from Nintendo Direct!\r\n \r\nNintendo Direct: The Good - http://www.screwattack.com/news/nintendo-direct-aired-morning-and-there-wasnt-much-good-news-share\r\nNintendo Direct: The Bad - http://www.screwattack.com/news/wii-u-40-firmware-brings-wii-games-your-wii-u-gamepad\r\nNintendo Direct: The Ugly - http://www.screwattack.com/news/it-appears-nintendo-may-be-halting-production-wii-japan\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-100113-the-good-the-bad-and-the-ugly-of-nintendo-direct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62c35bf7-7145-496d-90b9-7e5356a7b7d2/sm/video_thumbnail_12614508.png","duration":108,"publication_date":"2013-10-01T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-earnest-evans","changefreq":"weekly","video":[{"title":"S1:E404 - Video Game Vault - Earnest Evans","description":"\"Awkward\" has a new name... that name is Earnest Evans...","player_loc":"https://roosterteeth.com/embed/video-game-vault-earnest-evans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5add1f07-24da-40cd-a1f5-6ca6174a8d2d/sm/video_thumbnail_12609794.jpg","duration":194,"publication_date":"2013-09-30T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-093013-shadow-of-the-eternals-eancaa-twitch","changefreq":"weekly","video":[{"title":"S1:E511 - Hard News 09/30/13 - Shadow of the Eternals, EA/NCAA, Twitch","description":"Today on HardNews, Shadow of the Eternals, EA/NCAA settlement, Take-Two pours money into Twitch.\r\n\t\r\n\tShadow of the Eternals - http://www.screwattack.com/news/shadow-eternal-misses-kickstarter-goal-development-halts\r\n\tEA/NCAA settlement - http://www.screwattack.com/news/electronic-arts-pay-40-million-compensate-college-athletes\r\n\tTake-Two pours money into Twitch - http://www.screwattack.com/news/twitchtv-receives-20-million-investment-take-two-interactive\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-093013-shadow-of-the-eternals-eancaa-twitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cd58ca3-972c-4fb5-8ec5-adcaf44656bc/sm/video_thumbnail_12608452.jpg","duration":123,"publication_date":"2013-09-30T15:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/location-hunting-for-uhf","changefreq":"weekly","video":[{"title":"S1:E630 - Location Hunting for UHF","description":"Craig and Brad visit locations from Weird Al's cult classic film UHF!","player_loc":"https://roosterteeth.com/embed/location-hunting-for-uhf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0719b32-e1a6-4800-901e-baf9d8683140/sm/video_thumbnail_12601721.jpg","duration":177,"publication_date":"2013-09-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nick-eats-a-twinkie-wiener-sandwich","changefreq":"weekly","video":[{"title":"S1:E629 - Nick Eats A Twinkie Wiener Sandwich","description":"We interrupt your regularly-scheduled Clip of the Week to bring you the food abomination straight from the mind of Weird Al Yankovic!","player_loc":"https://roosterteeth.com/embed/nick-eats-a-twinkie-wiener-sandwich","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c6e5202-00e7-418e-aea1-ddb2de9182a6/sm/video_thumbnail_12591243.jpg","duration":203,"publication_date":"2013-09-27T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092713-beyond-two-souls-xbox-steam-controller","changefreq":"weekly","video":[{"title":"S1:E510 - Hard News 09/27/13 - Beyond: Two Souls, Xbox, Steam controller","description":"Today on HardNews, Beyond: Two Souls iPhone app, Xbox One reconfirms confirmation, Steam announces new controller.\r\n\t\r\n\tBeyond: Two Souls iPhone app - http://www.screwattack.com/news/beyond-two-souls-offer-touch-input-controls-android-and-ios\r\n\tXbox One reconfirms confirmation - http://www.screwattack.com/news/phil-harrison-eat-whole-shoe-after-microsoft-retracts-his-statement\r\n\tSteam announces new controller - http://www.screwattack.com/news/steam-reveals-steam-controller-capping-week-reveals\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-092713-beyond-two-souls-xbox-steam-controller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/003eaab9-2429-4fc9-8c6f-ce0a3b870043/sm/video_thumbnail_12589203.jpg","duration":128,"publication_date":"2013-09-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/allergies-skin-packs-and-the-\"double-and\"-hard-news-092613","changefreq":"weekly","video":[{"title":"S1:E628 - Allergies, Skin Packs, and the \"Double And\" - Hard News 09/26/13","description":"Today on Hard News, Chad's brain is melting.","player_loc":"https://roosterteeth.com/embed/allergies-skin-packs-and-the-\"double-and\"-hard-news-092613","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df6a3a5a-dafb-4e4c-9944-8c8c9ef8493f/sm/video_thumbnail_12589914.png","duration":151,"publication_date":"2013-09-27T17:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shiv-the-last-of-us-the-armory-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E5 - Shiv (The Last of Us) - The Armory with Boomstick","description":"Leave a comment telling Boomstick what weapon you think belongs in the Armory!","player_loc":"https://roosterteeth.com/embed/shiv-the-last-of-us-the-armory-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a23014f-4ee2-4dd2-a2f2-3cd4a681bc65/sm/video_thumbnail_12582897.jpg","duration":77,"publication_date":"2013-09-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092613-nosgoth-stick-of-truth-arkham-origins","changefreq":"weekly","video":[{"title":"S1:E509 - Hard News 09/26/13 - Nosgoth, Stick of Truth, Arkham Origins","description":"Today on HardNews, Nosgoth beta announced, Stick of Truth release date, Arkham Origins season pass.\r\n\t\r\n\tNosgoth beta announced - http://www.screwattack.com/video/Legacy-of-Kain-lives-on-in-the-new-freetoplay-Nosgoth-for-Square-Enix-12581561\r\n\tStick of Truth release date announced - http://www.screwattack.com/news/south-park-stick-truth-release-date-and-80-special-edition-announced\r\n\tArkham Origins season pass - http://www.screwattack.com/news/batman-arkham-origins-reveals-their-season-pass-today-and-its-got-skins\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-092613-nosgoth-stick-of-truth-arkham-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b631e375-c84c-4fa6-a106-d49a4e219eb9/sm/video_thumbnail_12582450.jpg","duration":120,"publication_date":"2013-09-26T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-meets-\"weird-al\"-yankovic","changefreq":"weekly","video":[{"title":"S1:E627 - ScrewAttack Meets \"Weird Al\" Yankovic","description":"We talk music, children's books, UHF, and more with the frazzled-haired fanatic.  Also, everyone who watches this video gets a handshake from Weird Al himself!","player_loc":"https://roosterteeth.com/embed/screwattack-meets-\"weird-al\"-yankovic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/970c4943-edb4-49fe-8f4c-5a6f5c3e4bb1/sm/video_thumbnail_12577452.jpg","duration":405,"publication_date":"2013-09-25T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092513-gta-online-steam-machines-and-betrothals","changefreq":"weekly","video":[{"title":"S1:E508 - Hard News 09/25/13 - GTA Online, Steam Machines, and betrothals?","description":"Today on HardNews, GTA Online updates, Steam Machine announced, and perhaps a royal betrothal?\r\n\t\r\n\tGTA Online updates - http://www.screwattack.com/news/rockstar-will-be-bringing-heists-and-microtransactions-gta-online\r\n\tSteam Machine announced - http://www.screwattack.com/news/steam-machines-are-coming-2014-we-havent-seen-them\r\n\tMario tying the knot? - http://www.screwattack.com/news/has-mario-finally-popped-question-princess-peach\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-092513-gta-online-steam-machines-and-betrothals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a74242b-1f84-47f2-bcea-30302fefe8db/sm/video_thumbnail_12576473.jpg","duration":128,"publication_date":"2013-09-25T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-hearthstone","changefreq":"weekly","video":[{"title":"S1:E16 - Out of the Box - Hearthstone","description":"This time on Out of the Box, we're checking out...a card game? Yup! We're looking at Blizzard's latest game, Hearthstone! Should you pick up a digital deck? Find out!\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/out-of-the-box-hearthstone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72aa0e34-946b-4514-9abf-f9c6194de2e2/sm/video_thumbnail_12574500.jpg","duration":2335,"publication_date":"2013-09-25T08:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-092513","changefreq":"weekly","video":[{"title":"S1:E626 - SideScrollers Extended - 09/25/13","description":"More chatter with the deviants.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-092513","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7adb598e-a274-454c-8c6a-4652b7c09d95/sm/video_thumbnail_12569943.jpg","duration":502,"publication_date":"2013-09-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"sexual-deviants\"","changefreq":"weekly","video":[{"title":"S1:E133 - SideScrollers - \"Sexual Deviants\"","description":"Utah's outlawing porn and vegetables! Join Sam, Nick, and Chad for more crazy stories.\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\nCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nFor the audio version go HERE!\r\nFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"sexual-deviants\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7fef27b-1b3f-4a17-bd35-b0edde23fede/sm/video_thumbnail_12569939.jpg","duration":3516,"publication_date":"2013-09-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092413-killzone-shadow-fall-gta-v-and-shadow-warrior","changefreq":"weekly","video":[{"title":"S1:E507 - Hard News 09/24/13 - Killzone: Shadow Fall, GTA V, and Shadow Warrior","description":"Today on HardNews, Killzone season pass details, garages are eating cars, and a new Shadow Warrior weapon.\r\n\t\r\n\tKillzone: Shadow Fall season pass - http://www.screwattack.com/news/killzone-shadow-fall-season-pass-details-revealed\r\n\tGarages are eating cars in GTA V - http://www.screwattack.com/news/rockstar-looking-disappearing-car-and-upgrade-glitch-gta-v\r\n\tNew Shadow Warrior weapon - http://www.screwattack.com/news/saints-row-iv-penetrates-shadow-warrior-reboot\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-092413-killzone-shadow-fall-gta-v-and-shadow-warrior","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47add6e9-e8c6-4921-b22e-6b6a1bd3ea4b/sm/video_thumbnail_12569705.jpg","duration":135,"publication_date":"2013-09-24T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-nintendo-64-games-10-1","changefreq":"weekly","video":[{"title":"S1:E82 - Top 20 Nintendo 64 Games (10-1)","description":"This is it: the ten greatest three-dimensional, analog stick-controlled Nintendo 64 games of all time!  Is your favorite among the best of the best?\r\nTop 20 N64 Games: 20-11","player_loc":"https://roosterteeth.com/embed/top-20-nintendo-64-games-10-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c79246e4-2008-4ce7-ac67-f4037b888c3c/sm/video_thumbnail_12565221.jpg","duration":473,"publication_date":"2013-09-23T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092313-play-deep-down-for-free-xbox-ones-dvr-feature-is-delayed-and-valves-next-step-to-change-pc-gaming","changefreq":"weekly","video":[{"title":"S1:E506 - Hard News 09/23/13 - Play Deep Down for free, Xbox One's DVR feature is delayed, and Valve's next step to change PC gaming","description":"Today on Hard News, play Deep Down for free, Xbox One's DVR feature is delayed, and Valve will change the way you play.\r\n \r\nDeep Down goes F2P: http://www.screwattack.com/news/tgs-2013-capcom%E2%80%99s-ps4-exclusive-rpg-deep-down-will-be-free-play\r\n \r\nXbox One's DVR delay: http://www.gamespot.com/news/xbox-one-game-dvr-clips-shareable-only-through-xbox-live-at-launch-6414841\r\n \r\nValve unveils Steam OS: http://www.screwattack.com/news/valve-reveals-steamos\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-092313-play-deep-down-for-free-xbox-ones-dvr-feature-is-delayed-and-valves-next-step-to-change-pc-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb58d2ce-2f5f-43e6-9d6c-8e14f01bd33c/sm/video_thumbnail_12563934.png","duration":122,"publication_date":"2013-09-23T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-gaming-on-a-budget","changefreq":"weekly","video":[{"title":"S1:E197 - The Clip - Gaming On A Budget","description":"Home & Gaming Television's latest do-it-yourself show teaches you how to get the same gaming experiences for less!","player_loc":"https://roosterteeth.com/embed/the-clip-gaming-on-a-budget","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b98c6d0a-c2f6-45d8-8e89-b579a275163b/sm/video_thumbnail_12547382.jpg","duration":125,"publication_date":"2013-09-20T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092013-last-guardian-ghosts-n-goblins-and-avgn-adventures","changefreq":"weekly","video":[{"title":"S1:E505 - Hard News 09/20/13 - Last Guardian, Ghosts 'n Goblins, and AVGN Adventures!","description":"Today on HardNews, Last Guardian still in the works, Ghosts 'n Goblins pulled down, and AVGN Adventures released today!\r\n\t\r\n\tLast Guardian still in the works - http://www.screwattack.com/news/last-guardian-eh-more-late-guardian\r\n\tGhosts 'n Goblins pulled down - http://www.screwattack.com/news/update-ghost-n-goblins-online-not-coming-stateside-steam-greenlight\r\n\tAVGN Adventures released today! - http://www.screwattack.com/news/surprise-avgn-adventures-comes-steam-3-days-early\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-092013-last-guardian-ghosts-n-goblins-and-avgn-adventures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d6473a5-4a74-45cc-ad6f-de35f4069128/sm/video_thumbnail_12545288.jpg","duration":87,"publication_date":"2013-09-20T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091913-jojos-bizarre-adventure-rasfalia-and-yamauchi-san","changefreq":"weekly","video":[{"title":"S1:E504 - Hard News 09/19/13 - Jojo's Bizarre Adventure, Rasfalia, and Yamauchi-san","description":"Today on HardNews, Jojo's Bizarre Adventure includes micro transactions, Matsuno's new world Rasfalia, and the passing of a legend.\r\n\t\r\n\tJojo's Bizarre Adventure: All Star Battle - http://www.screwattack.com/news/jojos-bizarre-adventue-all-star-battle-coming-us\r\n\tMatsuno's new world, Rasfalia - http://www.screwattack.com/news/tactics-ogre-vagrant-story-creator-announces-new-project\r\n\tThe passing of Hiroshi Yamauchi - http://www.screwattack.com/news/former-nintendo-president-hiroshi-yamauchi-passes-away-age-85\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-091913-jojos-bizarre-adventure-rasfalia-and-yamauchi-san","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5fa9e2b-c402-42b7-a527-39cb711c0b1f/sm/video_thumbnail_12538798.jpg","duration":151,"publication_date":"2013-09-19T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091813-diablo-iii-wii-fit-u-and-sega","changefreq":"weekly","video":[{"title":"S1:E503 - Hard News 09/18/13 - Diablo III, Wii Fit U, and Sega","description":"Today on HardNews, Diablo III shuts down Auction House, Wii Fit U and Wii Sports Club, and Sega buys Atlus.\r\n\t\r\n\tDiablo III shuts down Auction House - http://www.screwattack.com/news/diablo-3-has-important-update-auction-houses\r\n\tWii Fit U and Wii Sports Club - http://www.screwattack.com/news/reggie-fils-aime-reveals-wii-sports-club-and-new-wii-fit-u-peripheral\r\n\tSega buys Atlus - http://www.screwattack.com/news/sega-has-purchased-atlus-and-its-ips-shin-megami-tensei-and-persona\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-091813-diablo-iii-wii-fit-u-and-sega","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b650147a-cbee-433d-a472-f3bb3866192d/sm/video_thumbnail_12532158.jpg","duration":156,"publication_date":"2013-09-18T13:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-grand-theft-auto-v","changefreq":"weekly","video":[{"title":"S1:E17 - Out of the Box - Grand Theft Auto V","description":"We're going to Los Santos for Grand Theft Auto V on this week's Out of the Box! Rockstar's latest game is getting a lot of high praise, but is it really so deserving? Find out!\r\n\r\n\t \r\n\r\n\tHave a question for the guys? Ask it in the comments!\r\n\r\n\t \r\n\r\n\tWant to win the box of Grand Theft Auto goodness? Share or retweet this epsiode of Out of the Box on Facebook and Twitter!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-grand-theft-auto-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7ad5e1c-7db8-4173-9855-f8dbb5460216/sm/video_thumbnail_12530823.jpg","duration":2639,"publication_date":"2013-09-18T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-091813","changefreq":"weekly","video":[{"title":"S1:E625 - SideScrollers Extended - 09/18/13","description":"Craig talks about his dreams and inspirations from Weird Al's \"UHF.\"","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-091813","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11d7d8d2-63e3-45bb-9e80-53afde581504/sm/video_thumbnail_12530821.png","duration":724,"publication_date":"2013-09-18T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"herpes-monkeys\"","changefreq":"weekly","video":[{"title":"S1:E132 - SideScrollers - \"Herpes Monkeys\"","description":"Grand Theft Auto 5 leaks, Google car crime, the adventures of game design, and herpes! All this on SideScrollers!\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\nCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nGet the audio version HERE!\r\nFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"herpes-monkeys\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57241f3a-c647-4eab-aaac-d21eabfc34b0/sm/video_thumbnail_12526938.jpg","duration":3620,"publication_date":"2013-09-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091713-greenlight-ghosts-n-goblins-free-saints-row-4-dlc-and-never-stop-playing-gta-v","changefreq":"weekly","video":[{"title":"S1:E502 - Hard News 09/17/13 - Greenlight Ghosts n' Goblins, free Saints Row 4 DLC, and never stop playing GTA V","description":"Today on Hard News, Ghosts n' Goblins needs a Greenlight, free Saints Row 4 DLC, and never stop playing\r\nGTA V.\r\n \r\nGhosts n' Goblins on Greenlight - http://www.screwattack.com/news/ghost-n-goblins-online-coming-stateside-steam-greenlight\r\nSaints Row 4's GAT V - http://www.screwattack.com/video/Volition-takes-a-dig-at-Rockstar-with-the-GAT-V-DLC-pack-12525503\r\nGTA V's companion app - http://www.screwattack.com/news/gta-v-gets-free-ios-companion-app-called-ifruit\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Sean - Twitter.com/SeanHinz\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-091713-greenlight-ghosts-n-goblins-free-saints-row-4-dlc-and-never-stop-playing-gta-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb38929-7d90-4ced-ac70-afbe99655520/sm/video_thumbnail_12525880.png","duration":153,"publication_date":"2013-09-17T13:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-frogger-hes-back","changefreq":"weekly","video":[{"title":"S1:E403 - Video Game Vault - Frogger: He's Back!","description":"Jump over lava, avoid bee swarms, collect power-up bugs, save your froggy friends, rule the world!","player_loc":"https://roosterteeth.com/embed/video-game-vault-frogger-hes-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b9b1701-e97c-4b60-a39b-c80705e053d3/sm/video_thumbnail_12520557.jpg","duration":125,"publication_date":"2013-09-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091613-get-battlefield-4-on-both-console-gens-without-paying-full-price-twice-gta-v-leaks-and-gearbox-isnt-getting-sued-anymore","changefreq":"weekly","video":[{"title":"S1:E501 - Hard News 09/16/13 - Get Battlefield 4 on both console gens without paying full price twice, GTA V leaks, and Gearbox isn't getting sued anymore","description":"Today on Hard News, Electronic Arts saves Battlefield 4 players money, GTA V leaks, and 3D Realms dropped their lawsuit against Gearbox Software.\r\n \r\nElectronic Art's Cross-Gen Compromise - http://www.screwattack.com/news/battlefield-4-open-beta-set-kick-october\r\nGTA V Leaks - http://www.screwattack.com/news/rockstar-games-investigating-early-unauthorized-gta-v-sales\r\n3D Realms drops lawsuit - \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-091613-get-battlefield-4-on-both-console-gens-without-paying-full-price-twice-gta-v-leaks-and-gearbox-isnt-getting-sued-anymore","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abed6400-33bd-480a-8887-65cc8e13464d/sm/video_thumbnail_12519809.png","duration":137,"publication_date":"2013-09-16T13:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-pokemon","changefreq":"weekly","video":[{"title":"S1:E31 - The Best EVER! Pokemon","description":"The Pokemon franchise has spanned generations, both in the players that enjoy the games and the creatures that inhabit those cartridges.  Out of the hundreds of Pocket Monsters, which are the best EVER?\r\nGot the Advantage?  There's more Best EVER waiting for you here!\r\nHow 'bout some of those orchestrated tunes?  Get the full Kanto Symphony album here!","player_loc":"https://roosterteeth.com/embed/the-best-ever-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1295169-5f5a-416f-a720-fefa946b3e92/sm/video_thumbnail_12502531.jpg","duration":361,"publication_date":"2013-09-13T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bens-best-ever-pokemon","changefreq":"weekly","video":[{"title":"S1:E624 - Ben's Best EVER Pokemon","description":"To be Ben's best, you've got to give him options...","player_loc":"https://roosterteeth.com/embed/bens-best-ever-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ff2f643-805f-4589-ba0f-4da59e2be97f/sm/video_thumbnail_12502533.jpg","duration":148,"publication_date":"2013-09-13T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-4","changefreq":"weekly","video":[{"title":"S2:E4 - Ivy VS Orchid","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d10cdfe6-88f2-45bd-9da5-5db780c93300/sm/video_thumbnail_12498139.jpg","duration":621,"publication_date":"2013-09-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-091113","changefreq":"weekly","video":[{"title":"S1:E623 - SideScrollers Extended - 09/11/13","description":"More chit chat and riff raff with the SideScrollers!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-091113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a402756b-babe-4237-bb23-9703a48199f3/sm/video_thumbnail_12500757.png","duration":531,"publication_date":"2013-09-13T14:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091313-cortana-fable-anniversary-and-capcpom","changefreq":"weekly","video":[{"title":"S1:E500 - Hard News 09/13/13 - Cortana, Fable Anniversary, and Capcpom","description":"Today on HardNews, new Microsoft Cortana app, Fable Anniversary delayed, and Capcpom is at it again.\r\n\t\r\n\tNew Microsoft Cortana app - http://www.screwattack.com/news/rumor-microsofts-new-personal-assistant-app-codenamed-cortana\r\n\tFable Anniversary delayed - http://www.screwattack.com/news/whoops-looks-fable-anniversary-has-slipped-2014\r\n\tCapcpom is at it again - http://www.screwattack.com/news/capcpom-does-it-again-mixing-proto-man-and-viewtiful-joe\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-091313-cortana-fable-anniversary-and-capcpom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa64625c-f596-4203-ba3b-24734cbe14bd/sm/video_thumbnail_12499876.jpg","duration":154,"publication_date":"2013-09-13T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091213-humble-bundle-xbone-and-steam-family-share","changefreq":"weekly","video":[{"title":"S1:E499 - Hard News 09/12/13 - Humble Bundle, Xbone, and Steam Family Share","description":"Today on HardNews, Humble Indie Bundle 9, Microsoft's Xbone.com, and Steam's Family Share.\r\n\t\r\n\tHumble Indie Bundle 9 - http://www.screwattack.com/news/newest-humble-bundle-freaking-fantastic-if-you-can-spare-5\r\n\tMicrosoft's Xbone.com - http://www.screwattack.com/news/microsoft-secures-xbonecom-and-major-nelson-has-bone-pick-about-it\r\n\tSteam's Family Share - http://www.screwattack.com/news/valve-reveals-steams-newest-feature-called-family-sharing\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-091213-humble-bundle-xbone-and-steam-family-share","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79ae2810-20f1-4a79-b164-f49343a6f798/sm/video_thumbnail_12495006.jpg","duration":124,"publication_date":"2013-09-12T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"twerk-it-out\"","changefreq":"weekly","video":[{"title":"S1:E131 - SideScrollers - \"Twerk It Out\"","description":"Click Here To Subscribe! ? http://bit.ly/ScrewAttackYTSub\r\n\t\r\n\tOur website ? http:///www.ScrewAttack.com\r\n\tFacebook ? http://facebook.com/OfficialSA\r\n\tTwitter ? https://twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"twerk-it-out\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d392b3e8-e413-4cfe-a233-bd097990cf56/sm/video_thumbnail_12490925.jpg","duration":4036,"publication_date":"2013-09-11T23:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-35","changefreq":"weekly","video":[{"title":"S1:E622 - A Quick Round with the Game OverDrinker","description":"The Game OverDrinker takes a moment to answer some g1's questions.\r\nIllustrations by John Francis McCullagh\r\nTwitter Sam Twitter.com/ScrewAttackSam\r\n\tTwitter John Twitter.com/JohnFMFilms","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adc90f4b-5599-4579-8741-eb95a95e57ea/sm/video_thumbnail_12489396.jpg","duration":93,"publication_date":"2013-09-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091113-ff-xi-anniversary-keyboard-little-mermaid-and-pokemon","changefreq":"weekly","video":[{"title":"S1:E498 - Hard News 09/11/13 - FF XI anniversary keyboard, Little Mermaid, and Pokemon","description":"Today on HardNews, FF I anniversary keyboard, The Little Mermaid Second Screen Live app, and new Pokemon mega-evolution information.\r\n\t\r\n\tFF XI anniversary keyboard - http://www.screwattack.com/news/check-out-ridiculous-275-final-fantasy-keyboard\r\n\tThe Little Mermaid Second Screen Live app - http://www.screwattack.com/video/Disney-wants-to-change-the-way-you-go-to-the-movies-by-having-you-bring-your-iPad-12487470\r\n\tNew Pokemon mega-evolution information - http://www.screwattack.com/news/corocoro-shows-even-more-pokemon-mega-evolutions-and-reveal-two-mewtwos\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-091113-ff-xi-anniversary-keyboard-little-mermaid-and-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e2c7b4-e233-4dcc-ac5f-2284506679f0/sm/video_thumbnail_12488009.jpg","duration":144,"publication_date":"2013-09-11T13:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091013-cod-ghosts-preorder-deal-tigon-games-and-vita-tv","changefreq":"weekly","video":[{"title":"S1:E497 - Hard News 09/10/13 - CoD Ghosts preorder deal, Tigon games, and Vita TV","description":"Today on HardNews, CoD Ghosts preorder deal with GameStop, Tigon games reunites for a new Riddick game, and the Vita TV sells out in Japan.\r\n\t\r\n\tCoD Ghosts preorder deal with GameStop - http://www.screwattack.com/news/eminem-gamestop-drop-bombs-during-release-call-duty-ghosts\r\n\tTigon games reunites for a new Riddick game - http://www.screwattack.com/news/vin-diesel-says-tigon-reborn-order-complete-starbreeze-riddick-trilogy\r\n\tVita TV sells out in Japan - http://www.screwattack.com/news/vita-tv-sells-out-amazon-japan-first-24-hours\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-091013-cod-ghosts-preorder-deal-tigon-games-and-vita-tv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a101771-c7c4-4ac0-bc6e-c3a0421061f0/sm/video_thumbnail_12482017.jpg","duration":136,"publication_date":"2013-09-10T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-nintendo-64-games-20-11","changefreq":"weekly","video":[{"title":"S1:E81 - Top 20 Nintendo 64 Games (20-11)","description":"When it comes to a console that brought the world the revolutionary analog stick, four controller ports, and 3D polygons, we can't celebrate its greatest games with just ten entrants.  These are the Top 20 Nintendo 64 games EVER!","player_loc":"https://roosterteeth.com/embed/top-20-nintendo-64-games-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62ec8dfc-7de5-4742-9d35-23728ba21826/sm/video_thumbnail_12476847.jpg","duration":441,"publication_date":"2013-09-09T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090913-ps4-new-vita-and-vita-tv","changefreq":"weekly","video":[{"title":"S1:E496 - Hard News 09/09/13 - PS4, new Vita, and Vita TV","description":"Today on HardNews, Japan's PS4 release date, new PS Vita, and the new mini console PS Vita TV.\r\n\t\r\n\tJapan's PS4 release date and new games - http://www.screwattack.com/news/playstation-4-has-february-release-date-japan-everyone-gets-knack\r\n\tNew PS Vita - http://www.screwattack.com/news/playstation-vita-goes-2000-and-comes-variety-colors\r\n\tPS Vita TV announced - http://www.screwattack.com/news/playstation-vita-tv-bringing-playstation-brand-micro-console-fans\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-090913-ps4-new-vita-and-vita-tv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41f92aa8-3f83-4f6b-97ed-9c99d236252e/sm/video_thumbnail_12475184.jpg","duration":156,"publication_date":"2013-09-09T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sheep-worms-the-armory-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E6 - Sheep (Worms) - The Armory with Boomstick","description":"Leave a comment telling Boomstick what weapon you think belongs in the Armory!","player_loc":"https://roosterteeth.com/embed/sheep-worms-the-armory-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0422b713-c59a-43db-b266-13df9cd9dd95/sm/video_thumbnail_12469883.jpg","duration":74,"publication_date":"2013-09-08T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-watch_dawg","changefreq":"weekly","video":[{"title":"S1:E196 - The Clip - Watch_Dawg","description":"In Watch_Dogs, Chicago may be seeing the problem with having a whole city run on a single interconnected network, but it's possible to have a bigger problem in an area as small as our own HQ...","player_loc":"https://roosterteeth.com/embed/the-clip-watch_dawg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/879644c6-20e8-4c1e-9541-e56e346fe48b/sm/video_thumbnail_12457692.jpg","duration":317,"publication_date":"2013-09-06T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090613-ubisoft-games-timesplitters-rewind-and-hotline-miami-2","changefreq":"weekly","video":[{"title":"S1:E495 - Hard News 09/06/13 - Ubisoft games, TimeSplitters Rewind, and Hotline Miami 2","description":"Today on HardNews, list of new Ubisoft games leaked, TimeSplitters Rewind coming to Vita and PS4, and Hotline Miami 2 controversy.\r\n\t\r\n\tList of new Ubisoft games leaked - http://www.screwattack.com/news/rumor-pic-leaks-two-new-assassins-creeds-and-rayman-game-or-two\r\n\tTimeSplitters Rewind coming to Vita and PS4 - http://www.screwattack.com/news/timesplitters-rewind-receives-blessing-crytek-and-coming-ps4\r\n\tHotline Miami 2 controversy - http://www.screwattack.com/news/hotline-miami-2-may-be-removing-sexual-assault-scene-due-negative-feedback\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-090613-ubisoft-games-timesplitters-rewind-and-hotline-miami-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c5dc9a6-ab11-499e-8d23-168741d1cdd1/sm/video_thumbnail_12455863.jpg","duration":130,"publication_date":"2013-09-06T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090513-xbox-one-steam-trading-and-men-of-game-development","changefreq":"weekly","video":[{"title":"S1:E494 - Hard News 09/05/13 - Xbox One, Steam Trading, and Men of Game Development","description":"Today on HardNews, Xbox One release date and Live benefits, Steam Trading updates, and rereleased Men of Game Development calendar.\r\n\t\r\n\tXbox One release date and Live benefits - http://www.screwattack.com/news/xbox-one-has-launch-date-and-microsoft-reveals-their-rewards-program\r\n\tSteam Trading updates - http://www.screwattack.com/news/valve-brings-steam-trading-everyones-inventory\r\n\tRereleased Men of Game Development calendar - http://www.screwattack.com/news/men-game-development-2014-calendar-being-reprinted-your-amusement\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sean - Twitter.com/SeanHinz\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-090513-xbox-one-steam-trading-and-men-of-game-development","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db379730-a846-44d2-b9c6-c89fa2158040/sm/video_thumbnail_12448536.jpg","duration":164,"publication_date":"2013-09-05T12:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090413-pokemon-rayman-and-gta-v-gangsters","changefreq":"weekly","video":[{"title":"S1:E493 - Hard News 09/04/13 - Pokemon, Rayman, and GTA V gangsters","description":"Today on HardNews, Pokemon Direct update, shady Rayman business, and real gangsters in GTAV.\r\n\t\r\n\tPokemon X & Y updates - http://www.screwattack.com/news/pokemon-bank-nintendos-latest-addition-pokemon-xy-will-poke-parents-pay\r\n\tSome shady business with Rayman Legends for Vita - http://www.screwattack.com/news/looks-rayman-legends-vita-may-be-missing-some-content\r\n\tReal gangsters in GTA V - http://www.screwattack.com/news/gta-v-keepin-it-gangsta-umm-real-gangsters\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-090413-pokemon-rayman-and-gta-v-gangsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8baf4b4e-6bc4-4625-8347-f3c708ff382b/sm/video_thumbnail_12442760.jpg","duration":119,"publication_date":"2013-09-04T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-090413","changefreq":"weekly","video":[{"title":"S1:E621 - SideScrollers Extended - 09/04/13","description":"The triplets discuss Ben Affleck and Man of Steel.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-090413","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/107641ae-b362-4caf-9f12-dc6c4a32aa28/sm/video_thumbnail_12441129.png","duration":746,"publication_date":"2013-09-04T09:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090313-xbox-controllers-sony-vr-and-mighty-no-9","changefreq":"weekly","video":[{"title":"S1:E492 - Hard News 09/03/13 - Xbox controllers, Sony VR, and Mighty No. 9","description":"Today on HardNews, Xbox One can support 8 controllers, Sony developing new VR, and new Megaman, uh, I mean Mighty No. 9.\r\n\t\r\n\tXbox One can support 8 controllers - http://www.screwattack.com/news/xbox-one-capable-supporting-eight-controllers-once\r\n\tSony developing new VR - http://www.screwattack.com/news/rumor-sony-working-vr-headset-ps4\r\n\tMighty No. 9 KickStarter surpasses its goal - http://www.screwattack.com/news/mighty-no9-has-surpassed-its-kickstarter-goal\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-090313-xbox-controllers-sony-vr-and-mighty-no-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad6ecac4-5391-4053-b9c9-db7fb56852f4/sm/video_thumbnail_12435663.jpg","duration":81,"publication_date":"2013-09-03T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-shotgun-doom-the-armory-with-boomstick","changefreq":"weekly","video":[{"title":"S1:E7 - The Shotgun (Doom) - The Armory with Boomstick","description":"Leave a comment telling Boomstick what weapon you think belongs in the Armory!","player_loc":"https://roosterteeth.com/embed/the-shotgun-doom-the-armory-with-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d60f5c1-9de5-45b4-9433-7a15eb7c3efc/sm/video_thumbnail_12425627.jpg","duration":72,"publication_date":"2013-09-02T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/seans-worst-ever-water-level","changefreq":"weekly","video":[{"title":"S1:E620 - Sean's Worst EVER Water Level","description":"The only thing worse than a bad water level is a bad water level that actually looked good.","player_loc":"https://roosterteeth.com/embed/seans-worst-ever-water-level","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19c8fbad-bdf3-4520-8b95-e1fcf2484f99/sm/video_thumbnail_12410686.jpg","duration":144,"publication_date":"2013-08-30T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-water-level","changefreq":"weekly","video":[{"title":"S1:E30 - The Worst EVER! - Water Level","description":"Summer is winding down, so while we've still got some time, we're looking at the worst water worlds EVER!\r\n\r\n\tGot the Advantage?  See Sean's worst EVER water level here!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-water-level","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9303d925-a698-44b7-9a7e-34ebc56e43e0/sm/video_thumbnail_12410490.jpg","duration":363,"publication_date":"2013-08-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-083013-reggie-the-gamestick-and-soul-calibur-2-hd-online","changefreq":"weekly","video":[{"title":"S1:E491 - Hard News 08/30/13 - Reggie, The GameStick, and Soul Calibur 2 HD Online","description":"Today on HardNews, Reggie's in the news again, the new Android based GameStick console, and Soul Calibur 2 HD Online.\r\n\t\r\n\tReggie's in the news again - http://www.screwattack.com/news/wii-us-issues-arent-caused-its-name-fils-amie-believes\r\n\tThe new Android based GameStick console - http://www.screwattack.com/news/kickstarted-gamestick-console-likely-hit-retail-september%E2%80%99s-end\r\n\tSoul Calibur 2 HD Online - http://www.screwattack.com/news/heihachi-spawn-confirmed-soul-calibur-ii-hd-online\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-083013-reggie-the-gamestick-and-soul-calibur-2-hd-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/248e2516-26a7-4321-843e-cfa6aedcf297/sm/video_thumbnail_12409366.jpg","duration":110,"publication_date":"2013-08-30T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reggie-and-2-postal-greenlight-steam-132908-news-hard","changefreq":"weekly","video":[{"title":"S1:E619 - Reggie and, 2 Postal, Greenlight Steam - 13/29/08 News Hard","description":".comptetion on view Reggie's and, KickStarter 2 Postal Boll's Uwe, game indei 100 lights green Steam, NewsHard on Today\r\nhttp://www.screwattack.com/news/steam-opens-flood-gate-indie-games - games indie 100 lights green Steam\r\n\thttp://www.screwattack.com/news/want-kickstart-cocain-use - KickStarter 2 Postal Boll's Uwe\r\n\thttp://www.screwattack.com/news/meh-says-mr-nintendo - competition on view Reggie's\r\n!Facebook on us like and Twitter on us Follow\r\n\tTwitter.com/ScrewAttackSam - Sam Twitter\r\n\tTwitter.com/ScrewAttack - ScrewAttack Twitter\r\n\tFacebook.com/OfficialSA - ScrewAttack Facebook\r\n\tYoutube.com/ScrewAttack - ScrewAttack YouTube\r\n ","player_loc":"https://roosterteeth.com/embed/reggie-and-2-postal-greenlight-steam-132908-news-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c606345f-7e9b-4345-80ea-4c0b1c620081/sm/video_thumbnail_12403373.jpg","duration":181,"publication_date":"2013-08-29T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082913-steam-greenlight-postal-2-and-reggie","changefreq":"weekly","video":[{"title":"S1:E490 - Hard News 08/29/13 - Steam Greenlight, Postal 2, and Reggie","description":"Today on HardNews, Steam green lights 100 indie games, Uwe Boll's Postal 2 KickStarter, and Reggie's view on competition.\r\n\t\r\n\tSteam green lights 100 indie games - http://www.screwattack.com/news/steam-opens-flood-gate-indie-games\r\n\tUwe Boll's Postal 2 KickStarter - http://www.screwattack.com/news/want-kickstart-cocain-use\r\n\tReggie's view on competition - http://www.screwattack.com/news/meh-says-mr-nintendo\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082913-steam-greenlight-postal-2-and-reggie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee0c62f3-a177-4a9e-a394-3a1c57ea48f4/sm/video_thumbnail_12403216.jpg","duration":106,"publication_date":"2013-08-29T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-36","changefreq":"weekly","video":[{"title":"S1:E618 - The Game OverDrinker and Master Chief","description":"How would the Game OverDrinker have ended Halo 2?\r\nIllustrations by John Francis McCullagh\r\nTwitter Sam Twitter.com/ScrewAttackSam\r\n\tTwitter John Twitter.com/JohnFMFilms\r\n\t ","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d9d7f2-07cf-4404-9c30-31dd85ca8c60/sm/video_thumbnail_12396081.jpg","duration":102,"publication_date":"2013-08-28T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082813-final-fantasy-xiv-league-of-legends-nintendo-2ds","changefreq":"weekly","video":[{"title":"S1:E489 - Hard News 08/28/13 - Final Fantasy XIV, League of Legends, Nintendo 2DS","description":"Today on HardNews, Final Fantasy XIV sales, League of Legends controversy in Iran, and Nintendo announces its new 2DS.\r\n\t\r\n\tSquare wasn't expecting to sell FFXIV so well - http://www.screwattack.com/news/final-fantasy-14-realm-reborn-out-digital-sales-have-been-halted\r\n\tFemale Champions banned in Iranian LoL tournament - http://www.screwattack.com/news/iran-league-legends-tourney-banning-all-female-champions\r\n\tNintendo reveals the new 2DS - http://www.screwattack.com/video/Nintendo-unveils-the-2DS-for-release-this-holiday-season-12394976\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082813-final-fantasy-xiv-league-of-legends-nintendo-2ds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fb9536a-334b-4a0e-98f0-bf00a934f30f/sm/video_thumbnail_12395998.jpg","duration":130,"publication_date":"2013-08-28T13:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-082813","changefreq":"weekly","video":[{"title":"S1:E617 - SideScrollers Extended - 08/28/13","description":"Craig gets his own Arrested Development reference.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-082813","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faf122c0-d606-47b4-b7c9-92275e12f5b4/sm/video_thumbnail_12390938.jpg","duration":607,"publication_date":"2013-08-27T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"ghost-busters\"","changefreq":"weekly","video":[{"title":"S1:E129 - SideScrollers - \"Ghost Busters\"","description":"How do you exorcise ghosts Well using your penis is one way. Join Craig, Sam, and Chad as they talk about exorcisms, drones, and babies.\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\nCraig Twitter (https://twitter.com/StutteringCraig)\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nWant your SideSctrollers on the go? Get the Audio Version HERE\r\nFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"ghost-busters\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d53bbb66-4ca0-4bbc-ac20-91721eb74ad0/sm/video_thumbnail_12390852.jpg","duration":3037,"publication_date":"2013-08-27T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082713-prof-layton-7-dirty-bomb-and-shadow-of-the-eternals","changefreq":"weekly","video":[{"title":"S1:E488 - Hard News 08/27/13 - Prof. Layton 7, Dirty Bomb, and Shadow of the Eternals","description":"Today on HardNews, Professor Layton 7 announced in Japan, Dirty Bomb renamed, and Shadow of the Eternals still holding on.\r\n\t\r\n\tProfessor Layton 7 - http://www.screwattack.com/news/layton-7-has-been-announced\r\n\tDirty Bomb renamed to Extraction - http://www.screwattack.com/news/splash-damage-becoming-extraction-and-will-be-published-nexon\r\n\tShadow of the Eternals update - http://www.screwattack.com/news/precusor-games-shadow-eternals-kickstarter-has-failed\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082713-prof-layton-7-dirty-bomb-and-shadow-of-the-eternals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c5a1b80-3867-4172-b791-97b1c939543c/sm/video_thumbnail_12389941.png","duration":139,"publication_date":"2013-08-27T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-baseball-stars-2","changefreq":"weekly","video":[{"title":"S1:E401 - Video Game Vault - Baseball Stars 2","description":"As annual sports games start to run together, this badass arcade baseball game from SNK in 1992 still stands out and stays strong.","player_loc":"https://roosterteeth.com/embed/video-game-vault-baseball-stars-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41f1d123-5cc8-49f9-85c9-efd7443c1fb8/sm/video_thumbnail_12383347.jpg","duration":98,"publication_date":"2013-08-26T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082613-ki-character-reveal-wind-waker-and-gta-v-leaks","changefreq":"weekly","video":[{"title":"S1:E487 - Hard News 08/26/13 - KI character reveal, Wind Waker, and GTA V leaks","description":"Today on HardNews, original Killer Instinct character reveal, new Wind Waker bundle, and GTA V story leaked.\r\n\t\r\n\tNew KI character spins a deadly web - http://www.screwattack.com/news/gamescom-newly-revealed-ki-character-spins-deadly-web\r\n\tWind Waker bundle - http://www.screwattack.com/news/nintendo-release-wind-waker-hd-zelda-themed-wii-u-console-bundle\r\nFollow us on Twitter and like us on Facebook!\r\n\tPSN accidentally leaks GTA V plot - http://www.screwattack.com/news/psn-pre-order-files-accidentally-cause-gtav-content-leak\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082613-ki-character-reveal-wind-waker-and-gta-v-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ca1e3ad-09fd-4f0e-9157-b55f5c3f5476/sm/video_thumbnail_12382946.jpg","duration":188,"publication_date":"2013-08-26T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-crap-on-your-competition","changefreq":"weekly","video":[{"title":"S1:E195 - The Clip - Crap On Your Competition","description":"The PS4 is gaining traction with gamers fast.  Fortunately for the OUYA team, they know just how to replicate their success.","player_loc":"https://roosterteeth.com/embed/the-clip-crap-on-your-competition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b0ad9f0-9587-461f-b495-344f5b051f85/sm/video_thumbnail_12365111.jpg","duration":303,"publication_date":"2013-08-23T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082313-humble-bundle-ryse-son-of-rome-steve-ballmer","changefreq":"weekly","video":[{"title":"S1:E486 - Hard News 08/23/13 - Humble Bundle, Ryse: Son of Rome, Steve Ballmer","description":"Today on HardNews, new Humble Bundle deals, Ryse micro transactions, and Steve Ballmer's retirement.\r\n\t\r\n\tNew Humble Bundle deals - http://www.screwattack.com/news/origin-humble-bundle-smashing-success-adding-red-alert-3-and-populous\r\n\tRyse micro transactions - http://www.screwattack.com/news/ryse-son-rome-will-feature-microtransactions-its-multiplayer\r\n\tSteve Ballmer's retirement - http://www.screwattack.com/news/steve-ballmer-set-retire-12-months-time\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082313-humble-bundle-ryse-son-of-rome-steve-ballmer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5ee64ed-5c9f-472c-897f-ee64d6de14c5/sm/video_thumbnail_12363195.jpg","duration":194,"publication_date":"2013-08-23T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-alternate-ending-to-death-battle-kahn-vs-bison","changefreq":"weekly","video":[{"title":"S1:E616 - [Advantage] Alternate Ending to DEATH BATTLE Kahn VS Bison","description":"S1:E616 - [Advantage] Alternate Ending to DEATH BATTLE Kahn VS Bison","player_loc":"https://roosterteeth.com/embed/advantage-alternate-ending-to-death-battle-kahn-vs-bison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93cd584d-e49a-4430-bb3b-5351b8080726/sm/video_thumbnail_11956282.jpg","duration":43,"publication_date":"2013-08-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082213-elder-scrolls-online-game-grumps-gran-turismo","changefreq":"weekly","video":[{"title":"S1:E485 - Hard News 08/22/13 - Elder Scrolls Online, Game Grumps, Gran Turismo","description":"Today on HardNews, Elder Scrolls Online not FTP, Game Grumps for charity, and details on the Gran Turismo movie.\r\n\t\r\n\tElder Scrolls Online not free to play - http://www.screwattack.com/news/elder-scolls-online-cost-1499-month\r\n\tGame Grumps for charity - http://www.screwattack.com/video/Game-Grumps-are-auctioning-off-a-ton-of-games-for-charity-12356002\r\n\tDetails on the Gran Turismo movie - http://www.screwattack.com/news/gran-turismo-movie-real-life-story-racer-lucas-ordonez\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082213-elder-scrolls-online-game-grumps-gran-turismo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54a1ca3a-94b8-457a-8147-6b4ad343580f/sm/video_thumbnail_12356232.jpg","duration":120,"publication_date":"2013-08-22T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082113-riot-games-hacked-and-xcom-and-diablo-iii-expansions","changefreq":"weekly","video":[{"title":"S1:E484 - Hard News 08/21/13 - Riot Games hacked, and XCOM and Diablo III expansions","description":"Today on HardNews, Riot Games hacked, XCOM: Enemy Within expansion, and Diablo II: Reaper of Souls expansion.\r\n\t\r\n\tRiot Games hacked - http://www.screwattack.com/news/psa-riot-games-user-accounts-were-hacked\r\n\tXCOM: Enemy Within expansion - http://www.screwattack.com/video/XCOM-Enemy-Unknown-has-expanded-to-the-Enemy-Within-12348317\r\n\tDiablo III: Reaper of Souls expansion - http://www.screwattack.com/video/Diablo-III-is-bringing-the-archangel-of-wisdom-to-its-expansion-Reaper-of-Souls--12348320\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082113-riot-games-hacked-and-xcom-and-diablo-iii-expansions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf638c78-29e4-4693-93a5-82a87113d7ef/sm/video_thumbnail_12349156.jpg","duration":180,"publication_date":"2013-08-21T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-082113","changefreq":"weekly","video":[{"title":"S1:E615 - SideScrollers Extended - 08/21/13","description":"John shares with us his adventures in stuntman training! Exclusive for Advantage Members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-082113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b1de4f8-4119-4742-813c-6c3c02795292/sm/video_thumbnail_12341381.jpg","duration":430,"publication_date":"2013-08-20T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"worst-movies-ever\"","changefreq":"weekly","video":[{"title":"S1:E128 - SideScrollers - \"Worst Movies Ever\"","description":"Craig, Nick, and Chad discuss the worst movies around..... and blowing your dick off, but what else did you expect?\r\n\t\r\n\tThis video made possible by our website http://www.ScrewAttack.com. Thanks for your support!\r\n\t\r\n\tVote on the Facebook poll here - https://apps.facebook.com/opinionpolls/poll?pid=ACJF1fuKq3U\r\n\t\r\n\tLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tWant the audio version? Download it here: http://traffic.libsyn.com/sidescrollers/SS_Worst-movies-ever_8-21-13_audioMP3.mp3\r\n\t\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\t\r\n\tNick Twitter (https://twitter.com/thenervousnick)\r\n\t\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"worst-movies-ever\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbcd413b-35d2-47f0-ae3b-ebd832aba099/sm/video_thumbnail_12341300.jpg","duration":3247,"publication_date":"2013-08-20T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082013-gamescom-news","changefreq":"weekly","video":[{"title":"S1:E483 - Hard News 08/20/13 - Gamescom news!","description":"Today on HardNews, all you need to know about Sony, Microsoft, and EA from Gamescom!\r\nCheck out more gamescom 2013 news on our event page.\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-082013-gamescom-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8182ebba-fbc5-4122-9c65-bf406a0230bc/sm/video_thumbnail_12343031.jpg","duration":196,"publication_date":"2013-08-20T16:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-nascar-99","changefreq":"weekly","video":[{"title":"S1:E400 - Video Game Vault - Nascar 99","description":"Nick embraces his inner redneck as he shows off his professional Nascar skills.\r\n\t ","player_loc":"https://roosterteeth.com/embed/video-game-vault-nascar-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7567ea1-2a68-4acb-b66e-78c0ce6ab378/sm/video_thumbnail_12314582.jpg","duration":134,"publication_date":"2013-08-19T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/19-reasons-we-love-killer-instinct-now-a-video","changefreq":"weekly","video":[{"title":"S1:E57 - 19 Reasons We LOVE Killer Instinct (NOW A VIDEO!)","description":"... in only 55 seconds!","player_loc":"https://roosterteeth.com/embed/19-reasons-we-love-killer-instinct-now-a-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a92cfb38-abc1-48b5-9438-ad04b3c78ed5/sm/video_thumbnail_12334616_2.jpg","duration":55,"publication_date":"2013-08-19T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-introducing-buff-buddies","changefreq":"weekly","video":[{"title":"S1:E18 - Introducing Buff Buddies!","description":"Join Josh, Meg, and Zach as theyre put through an intense, 16-week workout plan to achieve their fitness dreams and world domination. Sweat along with them and share your own workout progress using #BuffBuddies for a chance to win cool prizes! Starts November 5th for Roosterteeth.com Sponsors and November 6th for the public!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-introducing-buff-buddies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a52765a0-2fcf-45bf-a400-8f77efefb4f1/sm/1461653-1446362886564-BuffBuddiesThumbnail.jpg","duration":121,"publication_date":"2015-11-01T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-bts-bloopers","changefreq":"weekly","video":[{"title":"S6:E24 - Ghost Fuckers - Behind the Scenes & Bloopers!","description":"Look behind the scenes and enjoy funny moments from Ghost Fuckers!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-bts-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51d232a7-6262-419c-a128-2f188871cd40/sm/2013912-1446247495991-GhostFuckers-BTS_and_Bloopers_thumb.png","duration":192,"publication_date":"2015-11-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-chapter-2-new-challengers","changefreq":"weekly","video":[{"title":"V3:E2 - Volume 3, Chapter 2: New Challengers...","description":"The Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-chapter-2-new-challengers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82deb53a-95f0-49b2-8756-6d2efbd091ce/sm/2013912-1446272623857-RWBY_THUMB_Ep02.png","duration":876,"publication_date":"2015-10-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-8","changefreq":"weekly","video":[{"title":"2015:E14 - Alien Isolation DLC","description":"One year ago Miles and Kyle introduced themselves to Scoops and what developed was most special friendship either of them have ever made with an Alien. At the end of their adventure on Sevastopol Station they said they would return and as promised Kyle and Miles are back for some Halloween fun\" playing the Alien Isolation DLC: Crew Expendable.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0d27af5-9260-42a0-bc8e-6adf964128eb/sm/2013912-1446241204429-AlienIsolation_SponsorPlay_DLC_V02.jpg","duration":3017,"publication_date":"2015-10-30T21:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-24","changefreq":"weekly","video":[{"title":"S1:E25 - Halloween Spook-tacular! - #24","description":"Things get a little spooky around the office for Halloween as your hosts The Log Lady and Generic Rebel Fighter pit two cute animals against each other in today's Internet Show and Tell. Plus, Meg, Miles, Mariel and Ashley brave the creepy woods in their quest for the elusive 8 Pages as they play Slender in VR. Finally, we cap the show and the month off with more awesome viewer fan art!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d6aeb4-39fe-4106-89aa-3b6e0a4bfc89/sm/2013912-1446222022819-FP24_-_THUMB.jpg","duration":959,"publication_date":"2015-10-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-38","changefreq":"weekly","video":[{"title":"S4:E38 - Jeff Goldblum Finds a Way - #38","description":"A ghost, Uhura from Star Trek, Snow White, the Log Lady from Twin Peaks and an Umbreon walk into a bar. Jeff Goldblum shows up and leaves with Uhura, the ghost somehow manages to suffocate on its own sheets, Snow White turns into an anime cat guy, the Log Lady starts making out with her log and the Umbreon goes into a corner and slowly starts chanting the word \"cunt\" to itself. The End.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4966e75-40cc-43e2-a9b7-cbddd41a3bdc/sm/2013912-1446223012763-ots_38_thumb.jpg","duration":1902,"publication_date":"2015-10-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-snacks","changefreq":"weekly","video":[{"title":"S&C:E11 - Snacks","description":"Never offer to buy Colton snacks at the movie theater.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-snacks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c3b9664-36d5-4be5-bcd8-2db8629d4f75/sm/2013912-1446048834841-RTES_SNACKS_SHORT_01.png","duration":106,"publication_date":"2015-10-30T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-30","changefreq":"weekly","video":[{"title":"2015:E19 - Brains - #30","description":"Warning: This video is about to get gross unless youre a zombie, or live in a country where eating brains is completely culturally acceptable (like Ohio). To celebrate the season finale of their favorite show (iZombie), Geoff, Griffon, Michael and Lindsay cook up some brains of their own, just to see what Liv goes through on a weekly basis. Do brains taste good Did we need hot sauce Watch at your own risk.\n\n\n\nEditors note: No human brains were consumed in the filming of this video.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ec54982-ad6b-466c-9fe1-c766744254b9/sm/2013912-1446153426007-happyhour_thumb.jpg","duration":496,"publication_date":"2015-10-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-347","changefreq":"weekly","video":[{"title":"2015:E20 - Clip from the \"From Dusk Till Dawn\" Season 2 Finale - RTP EXTRA #347","description":"Robert Rodriguez stops by the RT Podcast to show off an exciting clip of the \"From Dusk Till Dawn\" Season 2 finale! \"From Dusk Till Dawn\" can be seen on the El Rey Network. Follow Robert Rodriguez (@Rodriguez) and the El Rey Network (@Elreynetwork) on Twitter!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-347","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86445760-0fe7-4d35-b437-b3d4f6124bd9/sm/2013912-1446076195806-rtp_347_-_PS_-_THUMB.jpg","duration":482,"publication_date":"2015-10-29T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-10","changefreq":"weekly","video":[{"title":"2015:E10 - Kickin' is Easy - #10","description":"Join Brandon Farmahini, Jack Pattillo & Tyler Coe as they discuss the World Series, The Kicking Plague, NASCAR, the Rugby WC Final, NBA Season Opener, Ole' Peyton Manning, the Man, the Myth, the Legend - Kirk Cousins and more on this week's episode of Sportsball! This episode episode originally aired on October 27th 2015. This episode is sponsored by Harry's (http://hrys.co/1KozljX) and SeatGeek (http://bit.ly/1hqK7PJ)","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fc4e7b4-4193-40be-8d9c-c08c66245c02/sm/2013912-1446057265009-SB10_-_THUMB_2.jpg","duration":4062,"publication_date":"2015-10-28T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-art-auction-prank-war","changefreq":"weekly","video":[{"title":"S2:E8 - Art Auction Prank War!","description":"Aaron and Chris host an art auction and compete to earn the most money. However, they've designed art to humiliate each other and won't know what they are selling until they reveal it on stage.\n\nCheck out Nathan Pierce, the community member who drew several of Aaron's paintings! stuffoncanvas.tumblr.com\n\nSocial Disorder is not your normal prank, hidden camera show. It's a prank war where the hosts design social experiments to humiliate and embarrass each other, not the public.\n\nRT and FAVE this tweet to #VOTECHRIS: https://twitter.com/RoosterTeeth/status/6594244269...\n\nRT and FAVE this tweet to #VOTEAARON: https://twitter.com/RoosterTeeth/status/6594240200...\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://bit.ly/SocialDisorder_YogaShirt","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-art-auction-prank-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c25a0f0-1e3b-4d0c-94a0-da964dd89eda/sm/2013912-1446051322086-SOCIAL_DISORDER_EP04_THUMBNAIL_DH.png","duration":621,"publication_date":"2015-10-28T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-23","changefreq":"weekly","video":[{"title":"S1:E24 - Smashing Pumpkins - #23","description":"Ryan discusses his goal for this year's Extra Life as he and Meg begin to get a little too in-sync. Plus, we uncover the conspiracy of the voting bar on this week's Internet Show and Tell. Finally, things get even messier than normal in today's Pumpkin Smashing challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9b2a62b-4976-4192-a59c-9488c1103363/sm/2013912-1446046632109-FP23_-_THUMB.jpg","duration":1201,"publication_date":"2015-10-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rtp-347","changefreq":"weekly","video":[{"title":"2015:E347 - The Director's Chair with Robert Rodriguez - #347","description":"Join Jon Risinger, Gavin Free, Barbara Dunkelman, Burnie Burns and special guest Robert Rodriguez as they discuss From Dusk Till Dawn, independent filmmaking, and the origin of the word \"orange\" on this week's RT Podcast! This episode episode originally aired on October 26, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rtp-347","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1da74e7b-b239-4ae9-acc4-6061ccdecf62/sm/2013912-1445961852795-rtp347_-_THUMB.jpg","duration":5618,"publication_date":"2015-10-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-burnie-s-vlog-october-26-2015","changefreq":"weekly","video":[{"title":"2015:E2 - Burnie’s Vlog: October 26, 2015","description":"Burnie discusses YouTube Red, Lazer Team distribution, and the Rooster Teeth identity.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-burnie-s-vlog-october-26-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d55e80a4-2786-48cf-beeb-62de263a58c7/sm/2013912-1458751944268-10-26-15_Thumbnail.jpg","duration":853,"publication_date":"2015-10-26T22:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-barbara-is-family-friendly","changefreq":"weekly","video":[{"title":"2015:E2 - Barbara is Family Friendly","description":"Barbara becomes too acclimated to the Australia lifestyle and has a slip-up during a panel.\n\nAudio from The Rooster Teeth Podcast #321: https://roosterteeth.com/episode/rt-sponsor-cut-se...\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-barbara-is-family-friendly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24688e7b-5abd-456a-a9c4-369b07801eea/sm/2013912-1445872410849-rtaa203tn1.jpg","duration":77,"publication_date":"2015-10-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Stormtrooper Dick - Episode 5","description":"Join Colton and friends for a very spooky episode of RTES wherein we are introduced to the original black stormtrooper, learn never to buy snacks for Colton at the movies, talk horror and comedy with the director of The Hatchet trilogy all meanwhile guided by the haunting and ethereal drones of Kevin Manwarren and The Brian Jonestown Massacre.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/782b398f-fafa-46fc-a98d-cace4a1f0e6a/sm/2087702-1445828399012-RTES_THUMBNAIL_EP_5.png","duration":3431,"publication_date":"2015-10-25T22:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-ghost-fuckers","changefreq":"weekly","video":[{"title":"S6:E23 - Ghost Fuckers","description":"Join Devlin Boof and Carly Johnson as they attempt to heal the hearts of the dead. They not only search for ghosts, they have sex with them!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-ghost-fuckers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e85a92c-22de-4cd0-bf47-712c2526ed91/sm/2013912-1445641914056-RTshort_GhostF_thumb_V3.png","duration":328,"publication_date":"2015-10-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-troopin","changefreq":"weekly","video":[{"title":"S&C:E10 - Star Race Wars","description":"Tune in to the newest intergalactic comedy series where the hardest part of being a black storm trooper is dealing with life, love, your Jedi neighbors, and your wife's meatloaf. No matter how bad it gets you'll always have each other. This is Troopin!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-troopin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/318098f8-5ef5-4b64-83e7-52066449cef7/sm/2013912-1445656993383-RT-ES_TROOP_PROMO_01.png","duration":55,"publication_date":"2015-10-24T15:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-3-chapter-1","changefreq":"weekly","video":[{"title":"V3:E1 - Volume 3, Chapter 1: Round One","description":"The Vytal Festival Tournament is the ultimate battle of skill, pitting the world's most powerful Huntsmen and Huntresses in training against one another... and it's finally here! Ruby, Weiss, Blake, and Yang are back for a season of over-the-top action, and they're not alone. New fighters from around Remnant are ready to bring glory to their kingdom, but there are those among them with a far more sinister goal in mind","player_loc":"https://roosterteeth.com/embed/rwby-season-3-chapter-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28805040-8478-4478-baee-01b5df3da024/sm/2013912-1445642061380-RWBY_THUMB_Ep01.png","duration":1023,"publication_date":"2015-10-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-greg-miller-the-gauntlet-had-been-a-rough-time-for-me","changefreq":"weekly","video":[{"title":"S&C:E9 - Greg Miller \"The Gauntlet had been a rough time for me\"","description":"Greg Miller swings by the studio, guns blazing, to discuss his experience on The Gauntlet Season 2.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-greg-miller-the-gauntlet-had-been-a-rough-time-for-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de639cf2-661b-426e-8639-ffe55ff574d2/sm/2013912-1445538078273-RTESEP104GREGCLIP.png","duration":32,"publication_date":"2015-10-24T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-14","changefreq":"weekly","video":[{"title":"S2:E161 - Sponsor Play: Halo 2 Pt. 14","description":"It has been a year, one year filled with charts, skulls, scarab guns, sexual innuendo, puns, a weird 10 month gap, a multitude of stories and betrayal upon betrayal upon betrayal but now Kyle and Miles have finally finished the fight.to get to the cliffhanger for the fight that ends in Halo 3. (Spoiler Alert!)","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26eb9354-3f85-424f-bddb-a43c557d0b9e/sm/2013912-1445618612256-SP-Halo_Pt_14_V02.jpg","duration":2082,"publication_date":"2015-10-23T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-balloon-lunacy-free-play-21","changefreq":"weekly","video":[{"title":"S1:E23 - Balloon Lunacy - #22","description":"Ryan joins the white girl cult of Team PSL and Katamari Damacy enters real life in this week's Internet Show and Tell. Plus, Miles Luna and Kerry Shawcross stop by to show off some awesome concept art from RWBY Volume 3. Finally, things get a little loud in a RWBY Balloon Popping Challenge!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-balloon-lunacy-free-play-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4d86820-56c0-4a93-9f3d-45bdb6a2dd65/sm/1461653-1445617551603-FP22-TH.jpg","duration":1170,"publication_date":"2015-10-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-on-the-spot-37","changefreq":"weekly","video":[{"title":"S4:E37 - Ray Narvaez Jr. & The White Girl Challenge - #37","description":"This episode episode originally aired on October 22, 2015, sponsored by Casper (http://bit.ly/1Or3AKK). The Pumpkin Spice Run is the time in the Fall when White Girls across America, which have migrated from the suburbs and Forever 21 stores, swim to the upper reaches of Starbucks cafes where they spew pumpkin spice eggs on gravel beds. After releasing their spice, all White Girls and most Atlantic salmon die, and the White Girl life cycle starts over again.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-on-the-spot-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be9ea521-8900-4fb0-bd21-712cd22641d0/sm/2013912-1445618184672-OTS37-STILL.jpg","duration":2175,"publication_date":"2015-10-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-everything-is-pokemon","changefreq":"weekly","video":[{"title":"S&C:E7 - Everything Is Pokemon","description":"Kish remembers why he stopped playing Pokemon after Gen II.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-everything-is-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7854f5f3-0fe9-4ab9-81ff-1d7dc7c6e2e9/sm/2013912-1444922171723-RT-ES_POKEMAN_SHORT.png","duration":124,"publication_date":"2015-10-23T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-ollie-obstacle-race","changefreq":"weekly","video":[{"title":"2015:E27 - Ollie Obstacle Race","description":"Join Meg and Blaine as they attempt to find out who is the Ollie Champion! Leave a comment on this video on YouTube using the #ShowUsYourCourse for a chance to win your very own Ollie and Spine Ramp! Click here to learn more about the Ollie and new Spine Ramps.\n\nThanks to Sphero for sponsoring this video!","player_loc":"https://roosterteeth.com/embed/rt-life-2015-ollie-obstacle-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de47c85f-4ad8-4f95-8ada-2d3ba78ed1a5/sm/2013912-1445528837352-RT_Life_Ollie_Thumb.png","duration":234,"publication_date":"2015-10-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-gnarly-water-spirals-at-1600-fps","changefreq":"weekly","video":[{"title":"S1:E45 - Gnarly Water Spirals at 1600fps","description":"Gav and Dan spin a waterlogged foam ball to produce some hypnotic split-second galaxies. And yes. I totally used the word \"Gnarly.\"","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-gnarly-water-spirals-at-1600-fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcbdb654-375f-4bab-b4a0-671b64691111/sm/82-1445481686936-Screen_Shot_2015-10-21_at_20.18.02.jpg","duration":385,"publication_date":"2015-10-22T01:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-09","changefreq":"weekly","video":[{"title":"2015:E9 - Big Mistake in the Big House - #09","description":"Join Cole Gallian , Tyler Coe, Joel Heyman as they discuss the Big Mistake at the Big House, the Stupidest Play in NFL history, how much trouble the Cubs are in, Rugby, F1 in Austin, locker room antics and more on this week's episode of Sportsball! This episode episode originally aired on October 21st 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-09","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec299176-0ba6-470e-a962-7384610c79aa/sm/2013912-1445449980827-SB09_-_Thumb.jpg","duration":3735,"publication_date":"2015-10-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-21","changefreq":"weekly","video":[{"title":"S1:E22 - Miracle Berry Taste Test - #21","description":"The hunt for the blue shell toys at Ryan's Alma Mater continues. Plus we've got some very British felines on today's Internet Show and Tell. Finally, Meg and Ryan put their taste buds to the test in this episode's Miracle Berry Challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0783e30e-8509-4f1a-b701-26f42e4f8e7d/sm/2013912-1445443113973-FP21_-_Temp_Thumb.jpg","duration":1120,"publication_date":"2015-10-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-city-council-and-cooking-extras","changefreq":"weekly","video":[{"title":"S2:E7 - City Council & Cooking Class Extras!","description":"See Aaron and Chris discuss sexy dinosaurs and eat more of their disgusting kitchen food in this Social Disorder extras episode!Social Disorder is not your normal prank, hidden camera show. It's a prank war where the hosts design social experiments to humiliate and embarrass each other, not the public.\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://bit.ly/SocialDisorder_YogaShirt","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-city-council-and-cooking-extras","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25331e23-491f-4f89-bfc9-c97771e32456/sm/2013912-1445373309465-SD_EXTRA_SCENES_2_THUMBNAIL.png","duration":202,"publication_date":"2015-10-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-346-post-show","changefreq":"weekly","video":[{"title":"2015:E19 - Podcast #346 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss Back to the Future and potential alien superstructures on this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-346-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec878f12-3d9a-4b80-973b-7199d613dc12/sm/2013912-1445441200310-rtp346_-_PS_-_THUMB.png","duration":1027,"publication_date":"2015-10-21T15:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-346","changefreq":"weekly","video":[{"title":"2015:E346 - Back...To The Future! - #346","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss alternative wiping methods and peeing in the shower on this week's RT Podcast! This episode episode originally aired on October 19, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-346","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2063a87-f9ea-4bdb-b77c-6cbf1be79df1/sm/2013912-1445357069335-rtp346_-_THUMB.jpg","duration":5907,"publication_date":"2015-10-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-that-s-my-uncle-outtakes","changefreq":"weekly","video":[{"title":"2015:E39 - That's My Uncle! Outtakes","description":"Download the Theme Song! iTunes: http://apple.co/1W471iX || Google: http://bit.ly/1PEZNwI || Amazon: http://amzn.to/1PycF8C || iTunes (Instrumental): http://apple.co/1PF1BWq\n\nSome outtakes from RTAA #200. Watch as the cast try to channel their inner otaku.\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-that-s-my-uncle-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d202dee-f1be-4b08-9af3-31917a657252/sm/2013912-1445267900791-outtakes-200tn.jpg","duration":111,"publication_date":"2015-10-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sponsor-vlog-2015-burnie-s-vlog-october-18-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Burnie’s Vlog: October 18, 2015","description":"Burnie talks about the pilot program and RWBY on Steam.","player_loc":"https://roosterteeth.com/embed/sponsor-vlog-2015-burnie-s-vlog-october-18-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f9db467-a66c-4341-a564-e3f86b77d4e2/sm/2013912-1458751322375-10-18-15_Thumbnail.jpg","duration":570,"publication_date":"2015-10-18T22:22:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-murder-meeting-bloopers","changefreq":"weekly","video":[{"title":"S6:E22 - Murder Meeting Bloopers","description":"Watch the behind the scenes outtakes and funny moments from Murder Meeting!\n\nWatch Murder Meeting: http://roosterteeth.com/episode/rt-shorts-season-6...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-murder-meeting-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da097612-4f15-4a66-9097-5978af65603d/sm/2013912-1445039094580-RTshortBloopersThumb_V6.png","duration":116,"publication_date":"2015-10-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-episode-10-reign-down","changefreq":"weekly","video":[{"title":"S2:E10 - Episode 10: Reign Down","description":"X-Ray and Vav must stop the Mad King's plan, save Mogar, and patch up their friendship before it's too late. Too bad the deck is stacked against them.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-episode-10-reign-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9954dfba-7f93-4589-aac2-c5a214412579/sm/2013912-1445050886704-xv2_ep_thumbnail.jpg","duration":630,"publication_date":"2015-10-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-13","changefreq":"weekly","video":[{"title":"S2:E160 - Sponsor Play: Halo 2 Pt. 13","description":"In this episode of Sponsor Play Kyle and Miles discuss diversity, Donal Trump, The Strangerhood and racist killer whales. If you find the thread that connects all of those things let us know.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b29c9ce4-7693-4817-a557-9d48e727b122/sm/2013912-1445015473487-SP-Halo_Pt.13_V01.jpg","duration":1404,"publication_date":"2015-10-16T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - DLC Fuckfest - Episode 4","description":"This week Colton, and his guests, decide never to go trick or treating in Ohio, observe that it's better to turn to video games for your titty fix, rock out to a performance by Paladin Shield and gab games and film with the 'Kinda Funny' Greg Miller.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2dbac64-d10d-4b09-ab4a-1530aebd7837/sm/2087702-1445221600348-RTES_THUMBNAIL_RTES_EP_4.png","duration":3591,"publication_date":"2015-10-16T19:22:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-the-dairy-challenge-free-play-20","changefreq":"weekly","video":[{"title":"S1:E21 - Mariel Takes the Gallon Challenge - #20","description":"Mariel attempts a viewer-submitted challenge. Will her dairy farm past help her moooove cross the finish line","player_loc":"https://roosterteeth.com/embed/free-play-season-1-the-dairy-challenge-free-play-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c574860-1c41-4e32-b0c9-70ce2ab8ad07/sm/1461653-1445010961721-FP20_-_THUMB.jpg","duration":1261,"publication_date":"2015-10-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-on-the-spot-36","changefreq":"weekly","video":[{"title":"S4:E36 - I'm Your Host, Joel Heyman - #36","description":"Joel wants to play football at the University of On The Spot, but has neither the money for tuition nor the grades to qualify for a scholarship. Joel redoubles his efforts to get out of the steel mill where his father, Jack, works when his best friend, Cole, dies in an accident there. Overcoming his dyslexia thanks to his friend and tutor,Tyler, Joel gains admission to On The Spot and begins to fight his way onto the school's fabled football team.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-on-the-spot-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/090d2958-5cdf-44c0-9624-e7cdeb46520e/sm/1461653-1445011841327-ots_36_thumb.jpg","duration":2198,"publication_date":"2015-10-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-destiny-support-group","changefreq":"weekly","video":[{"title":"S&C:E6 - Destiny Support Group","description":"Everyone has their own magnitude of addiction.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-destiny-support-group","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfb08662-e23e-439d-8386-7c6e0e490d45/sm/2013912-1444922069729-RTES_Desitny_Short_Thumbnail.png","duration":205,"publication_date":"2015-10-16T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-insta-boobs","changefreq":"weekly","video":[{"title":"2015:E26 - Insta-Boobs!","description":"Miles and the Rooster Teeth animation crew learn how easy it can be to get boobs through the wonders of Japanese technology.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-insta-boobs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/980c9cf9-acd6-4904-9b1b-9116d1f1e100/sm/2013912-1444924088335-RT_Life_Boobs_Thumbv2.png","duration":146,"publication_date":"2015-10-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-the-craziest-sports-day-ever-of-all-time-08","changefreq":"weekly","video":[{"title":"2015:E8 - The Craziest Sports Day Ever?.of All Time - #08","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss the craziest day in sports, water cooler abuse, MLB playoffs, Gretzky vs Jordan, a new Gameday challenge and more on this week's episode of Sportsball! This episode episode originally aired on October 14th 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-the-craziest-sports-day-ever-of-all-time-08","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41519800-6f1d-47df-9d70-51fcbf36cfb9/sm/2013912-1444848749692-SB08_-_THUMB_v2.jpg","duration":4054,"publication_date":"2015-10-14T18:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-podcast-345-post-show","changefreq":"weekly","video":[{"title":"2015:E18 - Podcast #345 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Michael Jones as they discuss the best and worst airports they've ever been in on this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-podcast-345-post-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90e70902-8a74-47d0-a08b-2186c3ad12a8/sm/2013912-1444846989608-rtp345_-_PS_-_THUMB.jpg","duration":1055,"publication_date":"2015-10-14T17:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-pumpkin-spice-nightmare-free-play-19","changefreq":"weekly","video":[{"title":"S1:E20 - Pumpkin Spice Nightmare - #19","description":"Meg and Ryan are dealing with the repercussions of the Cosplay episode's questionable officiation and a sleepy otter and a clumsy pug attempt to out-cute each other during Internet Show and Tell. Plus, we're showing off the trailer for the official RWBY video game, \"RWBY: Grimm Eclipse\", which hits Steam Greenlight TODAY (Vote at: bit.ly/RWBYsteam). Finally, Meg and Ryan channel their inner barista in this episode's Pumpkin Spice Latte Challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-pumpkin-spice-nightmare-free-play-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/969538ea-b0bf-4623-9dab-f5ff2ca16d74/sm/2013912-1444837954860-FP19_-_THUMB.jpg","duration":1279,"publication_date":"2015-10-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-grimm-eclipse-steam-greenlight","changefreq":"weekly","video":[{"title":"S1:E17 - RWBY: Grimm Eclipse - Steam Greenlight","description":"RWBY: GRIMM ECLIPSE is a 4 player co-op, hack-n-slash game based upon Rooster Teeths international hit series RWBY.\n\nGet ready for intense combat action as you battle Grimm across familiar locations of Remnant including new areas never before seen in the show. Play as Ruby, Weiss, Blake, and Yang in this character-driven adventure that explores new storylines, new Grimm types, and a new villain!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-grimm-eclipse-steam-greenlight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/712fffc7-43ea-4707-8c4c-a24192e9a0ff/sm/2013912-1444834991151-RWBY-GE_Steam_Greenlight.jpg","duration":88,"publication_date":"2015-10-14T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-cooking-with-bugs-and-poison","changefreq":"weekly","video":[{"title":"S2:E6 - Cooking with Bugs and Poison","description":"Aaron and Chris put their culinary skills to the test as they attempt to out chef one another in the kitchen using insane recipes and gross ingredients chosen by each other.\n\nSocial Disorder is not your normal prank, hidden camera show. It's a prank war where the hosts design social experiments to humiliate and embarrass each other, not the public.\n\nRT and FAVE this tweet to #VOTECHRIS: https://twitter.com/RoosterTeeth/status/6543847011...\n\nRT and FAVE this tweet to #VOTEAARON: https://twitter.com/RoosterTeeth/status/6543847897...\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://bit.ly/SocialDisorder_YogaShirt","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-cooking-with-bugs-and-poison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d03f2bf8-0a39-4b7a-a8d5-7250d567f6b3/sm/2013912-1444838431893-SOCIAL_DISORDER_EP04_THUMBNAIL_DH_v2.png","duration":600,"publication_date":"2015-10-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-crystal-pepsi-challenge-r-t-podcast-345","changefreq":"weekly","video":[{"title":"2015:E345 - The Crystal Pepsi Challenge - #345","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Michael Jones as they discuss drinking expired Crystal Pepsi on this week's RT Podcast! This episode episode originally aired on October 13, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-crystal-pepsi-challenge-r-t-podcast-345","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df6e160c-456a-492f-98a4-56918ad822ea/sm/2013912-1444752673839-rtp345_-_THUMB.jpg","duration":5556,"publication_date":"2015-10-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-cards-against-humanity-edition","changefreq":"weekly","video":[{"title":"SOR:E3 - Cards Against Humanity Edition","description":"This week on \"Straight Outta RT\", we live through the crazy Cards Against Humanity scenarios played by the RT gang and special guests Game Grumps. Like the clips you heard in this video Watch all of the hilarious moments in CAH with a Rooster Teeth sponsorship! On the fence No Problem! Try being a sponsor with a 30-Day trial!\n\nSign up here at: http://bit.ly/Become_A_Sponsor\n\nMade by Rooster Teeth community GTA5 machinima team The Lone Few.\n\nIncludes audio from RT Sponsor Cut: Cards Against Humanity #1, #8, RTX2014 & RTX2015","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-cards-against-humanity-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/273e701c-a2d9-420c-8186-4cd5adf55929/sm/2013912-1444676634634-MM_SoRT_EP03_THUMB.jpg","duration":128,"publication_date":"2015-10-12T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E3 - Rev. Fred Phelps Gone Too Soon - Episode 3","description":"This week Colton, with help from his guests, learns the importance of birth control when sleeping with Superman, ponders the nerdiest ways of proposing, listens to a beautiful euphony by Allie Goertz and shares an awkward adventure with visionary and exec producer Adi Shankar. Rooster Teeth Entertainment System premiered September 27 exclusively for Rooster Teeth Sponsors. Comedy, music, games and more from the hilarious mind of Colton Dunn! Get your 30-Day FREE Sponsorship Trial at http://bit.ly/Become_A_Sponsor so you don't miss out!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ba04a8e-5ac0-4e19-b1df-b726a659e34f/sm/2013912-1444665628226-RT-ES_EP103.png","duration":3992,"publication_date":"2015-10-11T21:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-murder-meeting","changefreq":"weekly","video":[{"title":"S6:E21 - Murder Meeting","description":"A secret meeting. A public place. Explosive possibilities.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-murder-meeting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22b5fba9-641b-441f-bd99-1a7938c86f0b/sm/1461653-1444456768979-Murder_Meeting_Thumbnail.png","duration":205,"publication_date":"2015-10-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-episode-9-no-you-in-team","changefreq":"weekly","video":[{"title":"S2:E9 - Episode 9: No You In Team","description":"The Mad King's plan moves forward; Ash tries to get X-Ray and Vav to put aside their differences so they can stop the Mad King.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-episode-9-no-you-in-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8096434-66ec-43d5-8487-b4d1a41050a7/sm/2013912-1444430657930-XV_2_Ep9_Thumbnail.png","duration":576,"publication_date":"2015-10-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-12","changefreq":"weekly","video":[{"title":"S2:E176 - Sponsor Play: Halo 2 Pt. 12","description":"The Scarab skull in M.C.C Halo 2, when its turned on all weapons will fire an energy beam that has the power to destroy tanks, level buildings and pretty much obliterate anything in front of you.sounds fun.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de1e1336-96cd-4ec0-8aa8-0c18c4938905/sm/2013912-1444411604529-SponsorPlay_Halo2_pt12.jpg","duration":1262,"publication_date":"2015-10-09T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-5","changefreq":"weekly","video":[{"title":"S&C:E7 - The Video Game that Kills You Forever and other News","description":"Colton and company discuss the top stories of the day including the new Mass Effect theme park ride, the 30th anniversary of Back to the Future, and why you should never show Ify your DVD collection. You've been warned... Also, Serenity is 10-years-old and Frank Miller is making Batman even darker. Again.","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82adbf2f-b588-4452-8360-dd6a3e7a3394/sm/2013912-1444328082626-RT-ES_EP102_CLIP.png","duration":1536,"publication_date":"2015-10-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-a-real-shocker-free-play-18","changefreq":"weekly","video":[{"title":"S1:E19 - A Real Shocker! - #18","description":"Meg and Ryan are seeing ghosts and going a little Gaga. Plus, Tyler and Mariel return for this episode's SHOCKING stunt. Finally, we've got some new info on the latest season of RWBY, and an exclusive clip!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-a-real-shocker-free-play-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feb022fa-0b9e-4236-9a66-ad3f2b1896d1/sm/2013912-1444411013974-fp18_-_THUMB.png","duration":947,"publication_date":"2015-10-09T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-3","changefreq":"weekly","video":[{"title":"S4:E35 - Team Diddle Finger - #35","description":"Team Diddle Finger takes on Team Arnold Schwarzenegger Is The New Host of Celebrity Apprentice in this week's episode of On the Spot! This episode originally aired on October 8, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20fbd62a-1560-456f-ace2-fcb525160742/sm/2013912-1444408063575-ots_35_thumb.jpg","duration":2236,"publication_date":"2015-10-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-18","changefreq":"weekly","video":[{"title":"2015:E18 - The Impressionist - #29","description":"After a few bevs, Geoff does his best impression of what happens when you turn on a TV in England.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0e85a9f-e88f-40f5-b4a5-7532dc91f5c3/sm/2013912-1444347545397-happyhour_TheImpressionist.jpg","duration":89,"publication_date":"2015-10-08T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-hibbert-are-you-listening-sportsball-07","changefreq":"weekly","video":[{"title":"2015:E7 - Hibbert, Are You Listening? - #07","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss becoming famous on College Gameday, the MLB Wild Card playoffs, NFL kickers out of a job, sports selfies, a potential NBA star joining the show and more on this week's episode of Sportsball! This episode episode originally aired on October 7th 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-hibbert-are-you-listening-sportsball-07","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22adbf25-bf7e-4428-8c85-284760700ffd/sm/2013912-1444242750424-SPO7-TH.jpg","duration":3184,"publication_date":"2015-10-07T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-17","changefreq":"weekly","video":[{"title":"2015:E17 - Podcast #344 Post Show","description":"Join Gus Sorola, Gavin Free, Chris Demarais, Burnie Burns as they discuss a hidden \"feature\" of the new iPhone in this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/542b8b69-3fa0-494b-97ee-8e51201e48fa/sm/2013912-1444242657405-rtp344_-_PS_-_Thumb.jpg","duration":1547,"publication_date":"2015-10-07T18:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-17","changefreq":"weekly","video":[{"title":"S1:E18 - Iron Cosplay! - #17","description":"Meg details her hair-dye disaster while Ryan describes a hypothetical encounter with Ronda Rousey. Finally, Meg and Ryan bring out Mariel and Tyler's inner anime character as they compete to see who can craft the best costume in an Iron Cosplay challenge!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb89b725-e506-4d72-8255-19b890f4e9af/sm/2013912-1444232231014-FP17_-_thumb.jpg","duration":1177,"publication_date":"2015-10-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-city-council","changefreq":"weekly","video":[{"title":"S2:E5 - City Council Proposals: Sex Laws & Ugly Tax","description":"Aaron and Chris visit the mayor and city council to propose new dildo regulation and a city UGLY TAX, bills they've written to embarrass one another. \n\nSocial Disorder is not your normal prank, hidden camera show. It's a prank war where the hosts design social experiments to humiliate and embarrass each other, not the public.\n\nRT and FAVE this tweet to #VOTECHRIS: https://twitter.com/RoosterTeeth/status/6518060659...\n\nRT and FAVE this tweet to #VOTEAARON: https://twitter.com/RoosterTeeth/status/6518059043...\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://bit.ly/SocialDisorder_YogaShirt","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-city-council","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7537832-8ebf-447a-8728-971479cdfd1d/sm/2013912-1444230727879-EP3_City_Council_Thumbnail_02.png","duration":403,"publication_date":"2015-10-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-free-stuff-fiasco-344","changefreq":"weekly","video":[{"title":"2015:E344 - The Free Stuff Fiasco - #344","description":"Join Gus Sorola, Gavin Free, Chris Demarais and Burnie Burns as they discuss jealousy, proper fire saftey, the purpose of the Adam's apple and more on this week's RT Podcast! This episode episode originally aired on October 5, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-free-stuff-fiasco-344","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043e70de-be97-4118-a93f-55ba444009cc/sm/2013912-1444147412836-rtp344_-_THUMB.jpg","duration":5966,"publication_date":"2015-10-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-24","changefreq":"weekly","video":[{"title":"2015:E41 - Gavin the Perfect Passenger","description":"Gavin talks about airplane passengers who inconvenienced him.\n\nAudio from The Rooster Teeth Podcast #327: https://roosterteeth.com/episode/rt-sponsor-cut-se...\n\nBecome a Sponsor here: http://bit.ly/Become_A_Sponsor\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/726c6101-dccf-43e0-a8fe-2593e9cd467b/sm/2013912-1444057368179-rtaa202tn2.jpg","duration":98,"publication_date":"2015-10-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-season-1-featuring-geoff-ramsey-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Featuring Geoff Ramsey - Episode 2","description":"S1:E2 - Featuring Geoff Ramsey - Episode 2","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-season-1-featuring-geoff-ramsey-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfd195d3-3549-4763-a344-74974c76b8ad/sm/2013912-1444921150885-RTES_EP102_CUTDOWN.png","duration":3600,"publication_date":"2015-10-04T18:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-wwe","changefreq":"weekly","video":[{"title":"S6:E20 - Office Luchadores","description":"Burnie unveils his new plan to rid the Rooster Teeth offices of any staff conflicts.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-wwe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4de1f782-3abf-4291-93a1-8d7b0f7d799e/sm/2013912-1443741225614-Funhaus_WWE_thumb.png","duration":171,"publication_date":"2015-10-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-x-ray-vav-season-2-episode-8-divide-conquer","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 8: Divide & Conquer","description":"With X-Ray and Vav split up, it's up to Hilda and Rusty to step up to the plate. Meanwhile, Mogar becomes impatient for Mad King to hold up his end of the bargain.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-x-ray-vav-season-2-episode-8-divide-conquer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8857425c-e42e-42fb-bf90-d3690a438286/sm/2013912-1443853388896-xv2_ep08_thumbnail.jpg","duration":591,"publication_date":"2015-10-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-2-episode-4-dreams-do-come-true","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4 - Dreams Do Come True","description":"Confronted by beings from the future, Wade learns just how dangerous his experiment really is. The contestants of the new strangerhood trail off to find an exit, but end up finding much more than they bargained for.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-2-episode-4-dreams-do-come-true","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f346bbf-53ac-47a9-9e1f-7e04e91452c9/sm/2013912-1443821794199-SH2_S2_EP04_Thumbnail.jpg","duration":496,"publication_date":"2015-10-02T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips-4","changefreq":"weekly","video":[{"title":"S&C:E5 - #RTES Episode 2 LIVE This Sunday!","description":"Rooster Teeth Entertainment System is LIVE on RoosterTeeth.com and the mobile app this Sunday at 5pm PT/7pm CT exclusively for Rooster Teeth Sponsors. Comedy, music, games and more from the hilarious mind of Colton Dunn! Get your 30-Day FREE Sponsorship Trial at http://bit.ly/Become_A_Sponsor","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd97b3a2-bb55-432d-a6d3-363b18214bf9/sm/2013912-1443815865182-RTES_thumb_small.jpg","duration":30,"publication_date":"2015-10-02T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-pumpkin-puzzle-race-free-play-16","changefreq":"weekly","video":[{"title":"S1:E17 - Pumpkin Puzzle Race - #16","description":"Meg and Ryan are seeing double on today's Internet Show and Tell. Plus, Meg and Mariel get a sweet little wager going, and finally Meg and Ryan get a bit messy in today's Pumpkin Puzzle challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-pumpkin-puzzle-race-free-play-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a866bdb-fcb3-4cb6-8316-3760a838c62b/sm/2013912-1443808365628-FP16_-_STILL.png","duration":1003,"publication_date":"2015-10-02T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4-2","changefreq":"weekly","video":[{"title":"S4:E34 - Zach Anner Goes to Mars - #34","description":"Team #Trump2016 make On the Spot great again as they go toe-to-toe with Team Cog-Obblers in this week's On the Spot! This episode episode originally aired on October 1, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efe311d8-8400-4ccf-a94a-131890dd5ba4/sm/2013912-1443808253699-OTS34-TempTH.jpg","duration":2231,"publication_date":"2015-10-02T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-2-episode-3-a-ray-of-hope","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3 - A Ray of Hope","description":"Wade's experiment to stop The Strangerhood from taking place seems to be working, that is until a blast from the past.. er, future, comes knocking.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-2-episode-3-a-ray-of-hope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/366b7f85-b14e-485a-889b-7cb6ecdc1b22/sm/2013912-1443730831134-SH2_EP03_THUMB.jpg","duration":278,"publication_date":"2015-10-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-24","changefreq":"weekly","video":[{"title":"2015:E24 - Dodgeball Battle","description":"Rooster Teeth goes balls out and challenges Funhaus to a classic dodgeball match! Witness the majesty, the pain, the glory!","player_loc":"https://roosterteeth.com/embed/rt-life-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63e67cf6-4e1f-415a-bf30-9b9e4e6c6aa3/sm/2013912-1443716761662-RT_Life_Dodgeball_Thumb.png","duration":276,"publication_date":"2015-10-01T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-season-1-r-t-e-s-01-2","changefreq":"weekly","video":[{"title":"S1:E1 - Featuring Matt Hullum and Burnie Burns - Episode 1","description":"Rooster Teeth Entertainment System premiered September 27 exclusively for Rooster Teeth Sponsors. Comedy, music, games and more from the hilarious mind of Colton Dunn! Get your 30-Day FREE Sponsorship Trial at http://bit.ly/Become_A_Sponsor so you don't miss out!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-season-1-r-t-e-s-01-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0f49f67-e7ce-4e75-b64e-cfdc0e714062/sm/1461653-1443707832912-RT-ES_EP101.png","duration":3371,"publication_date":"2015-10-01T00:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-2-episode-2-the-one-with-the-plot","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2 - The One With The Plot","description":"In his efforts to prevent The Strangerhood, Wade 'offers' six unique individuals the chance to create a better future... by creating The Strangerhood.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-2-episode-2-the-one-with-the-plot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ddf76f2-0ab4-44cf-9e49-39e929efc1ad/sm/2013912-1443645524767-SH2_S2_EP02_THUMB.jpg","duration":382,"publication_date":"2015-09-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-sportsball-06","changefreq":"weekly","video":[{"title":"2015:E6 - The Most Outrageous Sports Fan? - #06","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss the MLB Playoffs, the craziest fan of all-time, Jay Cutler and the Bears, \"Smokeshows\",the weekend that was in College football and more on this week's episode of Sportsball! This episode episode originally aired on September 30th, 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-sportsball-06","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b5f64c2-3b24-45c1-bfdd-7fb1c7f73630/sm/690915-1443636127013-SB06-TH.jpg","duration":3807,"publication_date":"2015-09-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-deleted-scenes","changefreq":"weekly","video":[{"title":"S2:E4 - Yoga and Pet Expo Extras!","description":"Chris and Aaron show you some of the funny extras from the Yoga and Pet Expo experiments. Enjoy the cringe all over again!\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://bit.ly/SocialDisorder_YogaShirt","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-deleted-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0e4e291-3fce-43a0-b308-9f1dcf87665b/sm/2013912-1443714358767-image.png","duration":243,"publication_date":"2015-09-30T17:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-mac-and-cheese-mayhem-free-play-15","changefreq":"weekly","video":[{"title":"S1:E16 - Mac and Cheese Mayhem - #15","description":"It's Fan Art day on Free Play! We take a look at all of your awesome art as Meg and Ryan test their own artistic skills. Plus, fresh off of the Lazer Team World Premiere, Alan Ritchson stops by once again to stuff his face full of Mac n Cheese in a Daddy Relay Challenge against actual dad Jon Risinger and future father Blaine Gibson.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-mac-and-cheese-mayhem-free-play-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1029ca4-d39a-4086-85d6-3abe896571e1/sm/2013912-1443628053726-FP15-TH.jpg","duration":1160,"publication_date":"2015-09-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-future-forehead-r-t-podcast-343","changefreq":"weekly","video":[{"title":"2015:E343 - The Future Forehead - #343","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss \"future\" tech plus all things space - The Super Blood Moon, Water on Mars and The Lazer Team premeire on this week's RT Podcast! This episode episode originally aired on September 29, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-future-forehead-r-t-podcast-343","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e82f14a9-7b33-4a25-aeb0-5cdc683481be/sm/2013912-1443625777365-RT343-TH.jpg","duration":5530,"publication_date":"2015-09-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-15","changefreq":"weekly","video":[{"title":"2015:E16 - Podcast #343 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, Burnie Burns as they try on Burnie's Thync in this week's RT Podcast Extra!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8997165b-dcda-4988-b759-fe1b6a139827/sm/2013912-1443642467370-RT343-PS-TH.jpg","duration":1160,"publication_date":"2015-09-30T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-jelly-tennis","changefreq":"weekly","video":[{"title":"S1:E44 - Jelly Tennis","description":"Gav and Dan discover that you can serve Jelly to hundreds of people at once with a well placed Tennis serve.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-jelly-tennis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d81ca69-c904-48d1-9733-1015a21bdd87/sm/82-1443581503592-Screen_Shot_2015-09-29_at_21.31.42.png","duration":298,"publication_date":"2015-09-30T02:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-2-episode-1-operation-no-more-strangerhood","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 1 - Operation: No More Strangerhood","description":"Returning from a distant, dark, twisted future, President Wade must gather all of his wits and resources to stop the worst thing ever from happening: The Strangerhood.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-2-episode-1-operation-no-more-strangerhood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4381130f-8226-402f-bd34-d185be5223f1/sm/1461653-1443558671526-SH2_THUMB_WIP_V01.png","duration":301,"publication_date":"2015-09-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-25","changefreq":"weekly","video":[{"title":"2015:E40 - The Machinima Death Switch","description":"New RTAA poster! Get it here: http://bit.ly/RTAA_poster\n\nBurnie discovers the existence of a very inconvenient switch which shuts down the machinima station at the office.\n\nAudio from The Rooster Teeth Podcast #330: https://roosterteeth.com/episode/rt-sponsor-cut-se...\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bd36d97-0dd3-47c8-80ab-67ee33504652/sm/2013912-1443452650687-rtaa201tn2.jpg","duration":92,"publication_date":"2015-09-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-episode-7-the-anti-vav-ray","changefreq":"weekly","video":[{"title":"S2:E7 - Episode 7: The Anti-Vav Ray","description":"X-Ray and Vav try to stop the Mad King from getting an award, but the Mad King has his own plans.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-episode-7-the-anti-vav-ray","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4041f006-7e3d-40be-a299-583530984a0f/sm/1461653-1443277743301-xv2_ep7_thumbnail.jpg","duration":619,"publication_date":"2015-09-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-11","changefreq":"weekly","video":[{"title":"S2:E173 - Sponsor Play: Halo 2 Pt. 11","description":"The one where Kyle and Miles make sex noises while talking about food.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10095302-fdc2-4088-9617-7795d07db596/sm/2013912-1443214399798-Halo_2_SP_Thumb_Pt11_V03.jpg","duration":2477,"publication_date":"2015-09-25T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-14","changefreq":"weekly","video":[{"title":"S1:E15 - Gotta Get Down On Pie-Day - #14","description":"Sleep-deprived and delirious, Meg and Ryan get into a catfight in a feline-themed Internet Show and Tell. Plus, we've got an exclusive clip of the new Sponsor-only show RT-ES and finally, Meg and Ryan turn to suggestions from the fans for this week's stunt.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/070f3350-21b3-439d-b7d9-be49b5d05dee/sm/2013912-1443124388275-FP13_-_STILL.jpg","duration":704,"publication_date":"2015-09-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-4","changefreq":"weekly","video":[{"title":"S4:E33 - Getting Naked in Austin - #33","description":"Just when you thought it was safe...On the Spot is BACK for Season 4! Adam Kovic and Bruce Greene duke it out against Blaine Gibson and Miles Luna in the season premiere of On the Spot! This episode episode originally aired on September 24, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7df9c4a-c46d-4336-bd7b-00e24a18e297/sm/2013912-1443135412849-ots33_-_STILL.jpg","duration":2493,"publication_date":"2015-09-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rooster-teeth-entertainment-system-r-t-e-s-clips","changefreq":"weekly","video":[{"title":"S&C:E1 - Rooster Teeth Entertainment System (RT-ES) - Official Trailer","description":"Rooster Teeth Entertainment System premieres September 27 exclusively for Rooster Teeth Sponsors. Comedy, music, games and more from the hilarious mind of Colton Dunn! Get your 30-Day FREE Sponsorship Trial at http://bit.ly/Become_A_Sponsor so you don't miss out!","player_loc":"https://roosterteeth.com/embed/rooster-teeth-entertainment-system-r-t-e-s-clips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca69533d-8b0e-4318-953e-14279fef039d/sm/1461653-1443114783124-RTES_Trailer_Thumb.png","duration":66,"publication_date":"2015-09-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-17","changefreq":"weekly","video":[{"title":"2015:E17 - Titanic Tears - #28","description":"It took Geoff 18 years to finally watch Titanic. It only took 18 minutes for him to start bawling like a baby.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf9ffbeb-1710-4772-97db-83a811dc8f51/sm/2013912-1443123678669-HH28_thumb.jpg","duration":150,"publication_date":"2015-09-24T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-the-pet-expo","changefreq":"weekly","video":[{"title":"S2:E3 - The Pet Expo Competition","description":"Aaron and Chris exhibit at a pet expo but have designed the worlds worst line of pet products for each other. And when Aaron learns he has a center-stage presentation, things get very hairy.\n\nASPCA: The American Society for the Prevention of Cruelty to Animals - http://www.aspca.org/\n\nRT and FAVE this tweet to #VOTECHRIS: https://twitter.com/roosterteeth/status/6467840744...\n\nRT and FAVE this tweet to #VOTEAARON: https://twitter.com/roosterteeth/status/6467839464...\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://store.roosterteeth.com/collections/featured...","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-the-pet-expo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbfbf890-7280-4c7b-8c78-cf033bb8cb14/sm/2013912-1443025265472-PetExpo3.jpg","duration":563,"publication_date":"2015-09-23T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-sportsball-05","changefreq":"weekly","video":[{"title":"2015:E5 - Sad Bama Fans & Missed Kicks - #05","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss Sad Bama Fans, The Rugby World Cup, Missed Kicks, the NFL and more on this week's episode of Sportsball! This episode episode originally aired on September 22nd 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-sportsball-05","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db5858fc-33a9-4451-8a88-1c40a62f91d3/sm/2013912-1443020766109-SB05_-_STILL.jpg","duration":3583,"publication_date":"2015-09-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-13","changefreq":"weekly","video":[{"title":"S1:E14 - Stick It Where The Sun Don't Risinger - #13","description":"On this episode of Free Play, Meg and Ryan learn about gun safety and Jon Risinger's butt! Plus Jon himself stops by to show a sneak peek at a brand new game for On the Spot!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef7419f7-be34-4edb-98cc-22f6e77f8022/sm/2013912-1443020658587-FP13_-_STILL.jpg","duration":1059,"publication_date":"2015-09-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-14","changefreq":"weekly","video":[{"title":"2015:E15 - Podcast #342 Post Show","description":"Join Lindsay Jones, Ashley Jenkins, Chris Demarais and Barbara Dunkelman as they discuss how to properly define sex in this week's RT Podcast Extra! This episode episode originally aired on September 21, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82a17a3e-3f87-404b-b283-9bb48d0a972a/sm/2013912-1442940666453-RTP_342-_PS_-THUMB.png","duration":1070,"publication_date":"2015-09-23T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-342","changefreq":"weekly","video":[{"title":"2015:E342 - The BROAD-cast - #342","description":"Join Lindsay Jones, Ashley Jenkins, Chris Demarais, and Barbara Dunkelman as they discuss farting, Tom Hardy's fictional fashion line, and feminine hygiene on this week's RT Podcast! This episode episode originally aired on September 22, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-342","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abfccbfc-e9b9-47fd-8a32-1c6084d5633b/sm/2013912-1442937193755-rtp342_-_THUMB.png","duration":6122,"publication_date":"2015-09-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-26","changefreq":"weekly","video":[{"title":"2015:E38 - That's My Uncle!","description":"Download the Theme Song! iTunes: http://apple.co/1W471iX || Google: http://bit.ly/1PEZNwI || Amazon: http://amzn.to/1PycF8C || iTunes (Instrumental): http://apple.co/1PF1BWq\n\nIn the 200th episode special, join us on a magical adventure from a forgotten anime. That's My Uncle follows the adventures of Burnie-san and his fellow Battle Fighter classmates as they try to collect all the Challenge Crystals before the forces of evil. I think \n\nThanks to Crunchyroll for sponsoring this episode of RTAA! Click here to get a 30-Day Free Trial of Crunchyroll Premium: http://bit.ly/1iIPqvf\n\nNew RTAA poster! Get it here: http://store.roosterteeth.com/products/rtaa-poster\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a472864-a1a1-4806-8903-973903a0c8f0/sm/2013912-1442852410744-rtaa200tn2.jpg","duration":395,"publication_date":"2015-09-21T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-9-steps-to-survive-college-bloopers","changefreq":"weekly","video":[{"title":"S6:E19 - 9 Steps to Survive College Bloopers","description":"Watch the behind the scenes outtakes and funny moments from 9 Steps to Survive College!\n\nWatch 9 Steps to Survive College: https://roosterteeth.com/episode/rt-shorts-season-...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-9-steps-to-survive-college-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a293a9d-7147-4341-be58-e2f5200a8466/sm/2013912-1442619744687-Back_to_School_Bloopers_Thumbnail.png","duration":147,"publication_date":"2015-09-21T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-taser-impacts-on-bare-skin-at-28-000-fps","changefreq":"weekly","video":[{"title":"S1:E43 - Taser Impacts on Bare Skin at 28,000fps","description":"Gav goes to Arizona to film a Taser being deployed at a human target in Super Slow Motion.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-taser-impacts-on-bare-skin-at-28-000-fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cc9233d-56a8-408a-a9f0-33df20eedd35/sm/82-1442696053303-Screen_Shot_2015-09-10_at_20.28.19.jpg","duration":375,"publication_date":"2015-09-19T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-rooster-teeth-com-you","changefreq":"weekly","video":[{"title":"S1:E3 - RoosterTeeth.com & You!","description":"Head to the RT Website: http://bit.ly/1NDWtRd\n\nCheck out info on Sponsoring: https://roosterteeth.com/sponsorship\n\nBarbara schools Blaine on all the cool stuff at the Rooster Teeth website like early video releases and exclusive content!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-rooster-teeth-com-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdbc61ce-4f98-43de-a8ee-26b513534615/sm/2013912-1442695594465-website_psa_Thumbnail.jpg","duration":156,"publication_date":"2015-09-19T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-episode-6-it-s-a-crazy-mad-world","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 6: It's a Crazy Mad World","description":"With his new partner in crime Mogar alongside him, The Mad King stages a coup to get back what was once his, while X-Ray and Vav stumble on to his plot.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-episode-6-it-s-a-crazy-mad-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32f4f64e-01ba-4d2e-8f40-f791df560339/sm/2013912-1442614348809-xv2_ep6_thumbnail.jpg","duration":522,"publication_date":"2015-09-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-10","changefreq":"weekly","video":[{"title":"S2:E171 - Sponsor Play: Halo 2 Pt. 10","description":"Kyle and Miles get lost in a level that looks a lot like another level. While they find their bearings they discuss Thor, The Joker, elven princesses, the time Miles lied to everyone at a party about being British and fetishes they may or may not have but keep that last bit low key.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee710a85-4ea5-49a0-9d91-d72d4a2844af/sm/2013912-1442605975208-Halo_2_SP_Thumb_Pt10.jpg","duration":2158,"publication_date":"2015-09-18T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-12","changefreq":"weekly","video":[{"title":"S1:E13 - Pokemon Challenge - #12","description":"Meg and Ryan have a preview of the newest X-Ray & Vav episode. Plus, who will pop the most Pokemon","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ab55d61-1283-4c84-8ca4-3bb527bf79b3/sm/1461653-1442593386045-FP12-STILL.png","duration":1056,"publication_date":"2015-09-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-t-e-s-rooster-teeth-entertainment-system-official-trailer","changefreq":"weekly","video":[{"title":"S1:E2 - Rooster Teeth Entertainment System - Coming Soon!","description":"Rooster Teeth Entertainment System premieres September 27 exclusively for Rooster Teeth Sponsors. Comedy, music, games and more from the hilarious mind of Colton Dunn! Get your 30-Day FREE Sponsorship Trial at http://bit.ly/Become_A_Sponsor so you don't miss out!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-t-e-s-rooster-teeth-entertainment-system-official-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d69be2c0-d428-4a94-82b2-16ce9a48d899/sm/1461653-1442438419238-rtes.jpg","duration":86,"publication_date":"2015-09-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-super-smash-brothers-wii-u","changefreq":"weekly","video":[{"title":"2016:E58 - AH Stream Highlights - Super Smash Brothers Wii U","description":"It's a beautiful day to SMASH!! Join the crew as they beat each other up as beloved Nintendo characters and have a grand old time doing it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-super-smash-brothers-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ebc217a-14d9-4da8-b633-4ad1c091a07d/sm/2013912-1467079472509-Super_Smash_Thumb.jpg","duration":2095,"publication_date":"2016-06-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-rtx2016-ahwu-for-june-27-th-2016-323","changefreq":"weekly","video":[{"title":"2016:E29 - #RTX2016 - AHWU for June 27th, 2016 (#323)","description":"Thanks to Topps for sponsoring this week's AHWU! Download Topps Star Wars Card Trader today by clicking right here: http://m.onelink.me/167cc8c1\n\nIt's the week of RTX 2016, hope to see you all there!\n\n\n\nWatch the Vid of the Week and the Community Vid","player_loc":"https://roosterteeth.com/embed/ahwu-2016-rtx2016-ahwu-for-june-27-th-2016-323","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46a524b3-f70a-483d-9684-5af2756d0a45/sm/2013912-1467060843898-ahwu_thumb.jpg","duration":509,"publication_date":"2016-06-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-cloudberry-kingdom-part-17","changefreq":"weekly","video":[{"title":"2016:E195 - Cloudberry Kingdom Part 17","description":"The Berry bros are getting really close to level 300. Will they make it? Or will they stay on level 297 for the next few months?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-cloudberry-kingdom-part-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fce2635-9703-45d2-8055-f8283b27ca8e/sm/2013912-1466782282326-Cloudberry17_Thumb.png","duration":1383,"publication_date":"2016-06-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-4","changefreq":"weekly","video":[{"title":"2015:E4 - Last Call #4","description":"The AH Crew sits down to discuss Brexit, Justin Timberlake and more in this week's Off Topic: Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afcba852-0eaf-4bdd-a4df-7596e9b80cb6/sm/2013912-1466803785190-OFF30_-_PS_-_THUMB.jpg","duration":956,"publication_date":"2016-06-26T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-gta-v-grotti-racing","changefreq":"weekly","video":[{"title":"2016:E194 - Let's Play - GTA V - Grotti Racing","description":"The AH crew try out the newest, fastest car in GTA V Online: the Grotti X80 Proto.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-gta-v-grotti-racing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b9fb2d5-755c-4525-99f1-344828b6f6bb/sm/2013912-1466817617805-gtav_thumb.jpg","duration":2292,"publication_date":"2016-06-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-h1z1","changefreq":"weekly","video":[{"title":"2016:E193 - Let's Play - H1Z1: King of the Kill","description":"Tweet @H1Z1KotK with #H1Z1Hunter to play on our team at RTX! Find out more here: http://roosterteeth.com/post/51269374 \n\nClick here for more info about the game: H1Z1.com/KotK \n\nThanks to Daybreak for sponsoring this video.\n\nThe Achievement Hunter crew drops in to H1Z1 - like literally drops in by parachute. Will they be able to work together to come out on top, or will their battle for survival end in horrible horrible death?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-h1z1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4060508-fe3f-4aef-91e3-43891256c212/sm/2013912-1466805343546-h1z1_thumb.jpg","duration":1250,"publication_date":"2016-06-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-30","changefreq":"weekly","video":[{"title":"2016:E30 - I Pissed Myself, Actually - #30","description":"The AH Crew sits down to talk about Let’s Play Live, neighbors, speed limits and more on this week's Off Topic!\n\nThis episode originally aired June 24, 2016 and is sponsored by Fare (http://bit.ly/28SCXEt), Harry’s (http://hrys.co/28SDlmw) and MVMT Watches (http://bit.ly/28SDxC9)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a858023-eb72-4da1-a441-8bbc32113c0a/sm/2013912-1466804891875-OFF30_-_THUMB.jpg","duration":7579,"publication_date":"2016-06-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-tokyo-mirage-sessions-fe","changefreq":"weekly","video":[{"title":"2016:E57 - AH Stream Highlights - Tokyo Mirage Sessions #FE","description":"Mica and Jeremy take a steamy streamy trip up the skirt of the hottest new big-boobied-anime-RPG-JPop-Meets-Fire-Emblem-boobie game on the market: Tokyo Mirage Sessions #FE. Today, the two will jiggle physics their way through the prologue of the game and beat the first boss: Scuzzball McDemonface. At least I assume that's his name. I'm not 100% sure since I'm not very fluent in Japanese. I mean, I know \"domo arigato\" translates to \"thank you very much\" (domo arigato, Styx), and also know that \"Mr. Roboto\" does NOT translate to \"Dr. Robotnik.\" Also, whoooooooa! There's two guys in the adventuring party as well? Do they have wiener physics like the women have boobie physics so that the men and the women in the game are equal parts super jiggly? Maybe? Hopefully? I don't fucking know. I was too distracted by all that hot hot hot anime jigglies to tell.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-tokyo-mirage-sessions-fe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a59f975f-77de-4174-a980-b93380e6ae20/sm/1104396-1466813270182-TMS_Stream.png","duration":2165,"publication_date":"2016-06-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rt-stream-highlights-mirror-s-edge","changefreq":"weekly","video":[{"title":"2016:E192 - RT Stream Highlights - Mirror's Edge","description":"Join Matt Bragg and Mica Burton as they parkour through Mirror's Edge! They run, jump, fall, die, and discuss how to infinitely eat a starfish so they never go hungry again.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rt-stream-highlights-mirror-s-edge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067964c7-83f4-4c20-b486-323128b1c49c/sm/2013912-1466782394063-Mirrors_edge_thumb.jpg","duration":2206,"publication_date":"2016-06-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-pitfall-peril","changefreq":"weekly","video":[{"title":"2016:E30 - Overwatch - Pitfall Peril","description":"Overwatch can be a dangerous game. So dangerous gravity can be the mvp of any match. Sometimes it needs a little help from a really good Zarya though. Matt and Jeremy can show you exactly what we mean.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-pitfall-peril","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7be54d55-0605-48c5-b568-f0282ce9c61a/sm/1104396-1466810181605-TTD_Thumbnail.jpg","duration":156,"publication_date":"2016-06-24T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-8","changefreq":"weekly","video":[{"title":"2016:E8 - Episode #8: Atrocity","description":"High schoolers are assholes. Be glad you weren’t popular and strap-in with the AH crew to watch Atrocity, a found footage movie packed full of Shyamalan twists!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30be308f-4be9-4338-a66f-134e1696a9bb/sm/2013912-1466796977858-TM_-_Atrocity_-_THUMB.jpg","duration":5288,"publication_date":"2016-06-24T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-drawful-2","changefreq":"weekly","video":[{"title":"2016:E191 - Drawful 2","description":"Drawful 2 just released and the boys can't wait to get smear grubby little fingers all over their phones in an attempt to draw beautiful works of art!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-drawful-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cfae8d4-4038-4d86-abb3-b17a9254d47f/sm/2013912-1466781675341-Drawful_Thumb.jpg","duration":1365,"publication_date":"2016-06-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-three","changefreq":"weekly","video":[{"title":"2016:E3 - Episode Three","description":"Dungeon Master Frank leads our heroes Geoff, Griffon, Jack, Gus, Ryan and Michael onward in the next chapter of Heroes & Halfwits. Huzzah!","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81c87535-7c45-4507-8268-3cddf8467d07/sm/2013912-1466698627596-HH3_-_THUMB.jpg","duration":5921,"publication_date":"2016-06-23T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-12","changefreq":"weekly","video":[{"title":"2016:E56 - VR the Champions - Horde Z with Jack and Jeremy","description":"Total slaughter goes back and forth between Jack and Jeremy and the horde. The Achievement Hunters bring you their first VR the Champions episode featuring Horde Z on the Vive headset!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae92a494-450b-4aa9-97f9-cbc98a2fec5b/sm/2013912-1466637668572-Horde_Z_VRtC_Thumb_2.jpg","duration":1255,"publication_date":"2016-06-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-213-frostburn","changefreq":"weekly","video":[{"title":"2016:E190 - Minecraft – Episode 213 – Frostburn","description":"Get your freezies and your flamies ready so you can smash them together with some Minecraft and get 1.10 - the Frostburn update. Today, the Achievement Hunter crew heads out on a pretty sweet quest for bears and beet(roots) and maybe a little Battlestar Galactica. Or at least the closest they can get in Minecraft - which is super fly boats, apparently. Crazy fast!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-213-frostburn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/204c8889-190d-41f9-a7a2-9aa2a2135cfa/sm/2013912-1466610621504-Minecraft_Frostburn_Thumb_v001.png","duration":2773,"publication_date":"2016-06-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-things-to-do-in-halo-5-lava-riding","changefreq":"weekly","video":[{"title":"2016:E29 - Halo 5 – Lava Riding","description":"Matt shows the gang his latest game, where players drive lava-proof trucks and try to knock the others into the molten floor.\n\nWant to play Lava Riding for yourself? Click here for the map download: http://bit.ly/28OZ5gc","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-things-to-do-in-halo-5-lava-riding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4da7ec3-4ee4-47dc-8377-baf72ab756e5/sm/2013912-1466097571157-TTD_Lavariding_Thumbnail_v3.jpg","duration":840,"publication_date":"2016-06-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-move-or-die-more-moving-more-dying","changefreq":"weekly","video":[{"title":"2016:E189 - Move or Die: More Moving, More Dying","description":"Skullboy Ryan and Yellow Man Michael are the undisputed Kings of Move or Die. Maybe? Did either of them win in the first let's play? For the sake of the right-now, sure. They're the undisputed kings of Move or Die. \n\nBut now, there's two new challengers ready to usurp our Achievement Kings: Hollywood's favorite power couple James and Elyse Willems! They'll move. They'll die. They'll move and die or move then die or move or die. But will Funhaus's sweet moving and dying skills be enough to top the Achievement Hunter Move or Die kings? This question will remain unanswered because not answering the question will hopefully entice you to watch the video!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-move-or-die-more-moving-more-dying","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e819981-589f-4f75-be88-37c737b7f3e7/sm/2013912-1466535609842-moveordie.jpg","duration":1312,"publication_date":"2016-06-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-140-jeremy-vs-gavin","changefreq":"weekly","video":[{"title":"2016:E15 - Episode 140: Jeremy vs Gavin","description":"Gavin challenges Jeremy to a game of Punishment Pong. Will Jeremy be able to keep his VS reign? Or will Gavin's new pong game be too punishing?","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-140-jeremy-vs-gavin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b012cf-3d54-47dc-9eb8-a4acb8ef48df/sm/2013912-1466540913169-VS-PunishmentPong_THUMB.png","duration":671,"publication_date":"2016-06-21T20:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-super-smash-bros-wii-u-with-shofu-and-etika","changefreq":"weekly","video":[{"title":"2016:E188 - Super Smash Bros. Wii U with Shofu and Etika","description":"Thanks to Shofu and Etika for coming by. Check out Shofu at https://www.youtube.com/shofu and Etika at https://www.youtube.com/EWNetwork || \n\n\nJoin Ryan, Michael and Jack as they sit down and play some Super Smash Bros. Wii U with special guests Shofu and Etika. Who will be victorious!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-super-smash-bros-wii-u-with-shofu-and-etika","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b71fdf1b-150c-46af-8fc2-bfbe074a0502/sm/2013912-1466443206007-smash_thumb.jpg","duration":1804,"publication_date":"2016-06-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-hottest-ahwu-ever-ahwu-for-june-20-th-2016-322","changefreq":"weekly","video":[{"title":"2016:E28 - Hottest AHWU Ever!! – AHWU for June 20th , 2016 (#322)","description":"Join the Let's Play Community: http://achievementhunter.roosterteeth.com/group/lets-play-community || While the crew was out at Let's Play Live, the office AC unit may have broke. Now the Achievement Hunter boys are back and hotter than ever. And what will you see these hot boys do today? Gavin slathering Jeremy with his balls, that's for sure! Also Gavin making sure Jack get blown during this week's news segment. Also also Gavin violating Jack's face with his mighty five-pound cummy worm. Whoops. Typo. Meant to write gummy worm. GUMMY worm. Watch it once. Watch it twice. Watch it ten times more. This AHWU is hot HOT HOT!!!\n\n\n\nWatch the Vid of the Week and the Community Vid.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-hottest-ahwu-ever-ahwu-for-june-20-th-2016-322","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0825cab9-d0b6-4ff3-b4d0-ff653f04b568/sm/2013912-1466456485953-ahwu_thumb.jpg","duration":457,"publication_date":"2016-06-20T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-plants-vs-zombies-g-w2-infinity-mode","changefreq":"weekly","video":[{"title":"2016:E187 - Plants vs Zombies GW2: Infinity Mode","description":"Geoff, Michael, Matt and Jeremy return to Plants vs Zombies Garden Warfare 2 to play a round of Infinity Mode. Watch the guys suit up in mecha triceratops in the hopes of destroying an infinite army of garden gnomes.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-plants-vs-zombies-g-w2-infinity-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb68a73-4fb3-4663-be5a-898aaeecea06/sm/2013912-1466444498433-PvZ_InfinityMode_Thumb.png","duration":2521,"publication_date":"2016-06-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-3","changefreq":"weekly","video":[{"title":"2015:E3 - Last Call #3","description":"The AH Crew sits down to smell some shit and feel the burden of Gavin’s presence in this week's Off Topic: Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87293c0c-4236-4260-99dc-e0dc768d9cd2/sm/2013912-1466112830122-OFF29_-_PS_-_THUMB.jpg","duration":977,"publication_date":"2016-06-19T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-duck-hunt","changefreq":"weekly","video":[{"title":"2016:E28 - Halo 5 – Duck Hunt","description":"Achievement Hunter jumps into a recreation of Duck Hunt in Halo 5!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-duck-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6279bd64-1f6c-46f0-a415-4b8d1ce71fc0/sm/2013912-1466207092332-duckhunt.jpg","duration":654,"publication_date":"2016-06-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-vip-free-roam","changefreq":"weekly","video":[{"title":"2016:E186 - GTA V – VIP Free Roam","description":"More from the GTA 5 Finance and Felony DLC! The boys wade into the thick, swamp known as public lobbies where they learn something new about themselves and choppers.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-vip-free-roam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a50e6a6-c93a-4fcb-b3f5-bfc2ae7b3c54/sm/2013912-1466197553536-GTA_V_VIP_Thumb.jpg","duration":2679,"publication_date":"2016-06-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-29","changefreq":"weekly","video":[{"title":"2016:E29 - Are You In a Cult – #29","description":"The AH Crew sits down to talk about Mr. Blobby, Xbox One S, cat stories and more on this week's Off Topic!\n\nThis episode originally aired June 17, 2016 and is sponsored by Blue Apron (http://cook.ba/1RxiGhC) and H1Z1 King of the Kill (Tweet with #H1Z1Hunter #H1Z1RTX to @H1Z1KotK to be entered into a drawing with the chance to compete on our team)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/077fd63a-ac73-4c71-9a95-5bcbd0a42f2d/sm/2013912-1466112975619-OFF29_-_THUMB.jpg","duration":7066,"publication_date":"2016-06-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-dva-golf","changefreq":"weekly","video":[{"title":"2016:E27 - Overwatch – D.Va Golf","description":"Your favorite guys have returned to Overwatch to tee off each other in a game of D.Va Golf. This not your average game of golf.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-dva-golf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39fbf0bb-d221-4731-a544-fa47c14a9b69/sm/2013912-1466196479969-TTDOverwatch_DivaGolf_Thumb.png","duration":894,"publication_date":"2016-06-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-7","changefreq":"weekly","video":[{"title":"2016:E7 - Episode #7: Chill: The Killing Games","description":"A game more dangerous than Dungeons and Dragons? The school is locked down and the killer is looking for you. Can you Chill? Join AH in watching Chill: The Killing Games and find out who can survive this haunted game.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d0d5f88-c884-49a0-87a1-e31a6b71381c/sm/2013912-1466190662429-TM_-_Chill_-_THUMB.jpg","duration":6565,"publication_date":"2016-06-17T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-11","changefreq":"weekly","video":[{"title":"2016:E55 - VR the Champions – Job Simulator: Store Clerk","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Gavin, Michael and Jeremy fool around with hotdogs and roman candles in the latest playthrough of Job Simulator.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/485a6e8d-7021-4191-b78d-07d77a6994c7/sm/2013912-1466097444543-VR_the_Champs_conveniece_store_thumb.jpg","duration":1772,"publication_date":"2016-06-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-two","changefreq":"weekly","video":[{"title":"2016:E2 - Episode Two","description":"Geoff, Griffon, Jack, Gus, Ryan, Michael, and Dungeon Master Frank continue their journey into the mystical world of Dungeons & Dragons in this second installment of Heroes & Halfwits.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2193eb03-6a39-4658-93e3-b592c8cb0e09/sm/2013912-1466106372125-HH2_-_THUMB.jpg","duration":6644,"publication_date":"2016-06-16T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-achievement-hunter-easter-egg","changefreq":"weekly","video":[{"title":"2016:E16 - Plants Vs Zombies Garden Warfare 2 – Achievement Hunter Easter Egg","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Matt and Jeremy check out the Achievement Hunter easter egg in the brand new Zombopolis DLC for Plants Vs Zombies Garden Warfare 2! The DLC is free with the game so go check it out!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-achievement-hunter-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea6cfbc3-fb30-42de-a344-898c567c97cd/sm/2013912-1466090950235-AH_Easter_egg_thumbnail.jpg","duration":117,"publication_date":"2016-06-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-34","changefreq":"weekly","video":[{"title":"2016:E185 - Let's Watch – Deus Ex: Mankind Divided","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Ryan gets to play the E3 Demo of Square Enix's unreleased game Deus Ex: Mankind Divided. Gavin, Michael, Jack and Jeremy join him for the ride.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23910915-c372-41a7-a54b-3d9c9edfba61/sm/2013912-1465929412642-Thumbnail_zoomed_in.jpg","duration":2509,"publication_date":"2016-06-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-212-super-mario-mash-up-pack","changefreq":"weekly","video":[{"title":"2016:E184 - Minecraft – Episode 212 – Super Mario Mash Up Pack","description":"Ryan, Michael, Jack, and Jeremy threw their Xbox Ones in the trash and hobbled together enough Wii U consoles to explore the Super Mario Mash Up Pack. Why be Banjo when you can be a sweet-ass human Yoshi? Or Wario? Or Luigi? Or horny man Bowser? \n\n\n\nAnd who needs Achievement City when you've got Mario 64, Super Mario World, Mario Bros 3, Mario Sunshine, and those other ones all in one location!? Probably we do, since there may or may not be a Mario World to explore by the end of the video.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-212-super-mario-mash-up-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c1807ab-84a0-442f-8f47-1aa9599a4d59/sm/1104396-1466032853867-Minecraft_Mario_Thumb_v002.png","duration":2116,"publication_date":"2016-06-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-33","changefreq":"weekly","video":[{"title":"2016:E183 - Let's Watch – Resident Evil 7 (Demo Gameplay)","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Achievement Hunter takes a dive into the newest demo coming out of E3 2016, Resident Evil 7!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f1bb340-64ee-45a7-9996-716be05cf7ef/sm/2013912-1466029777602-re7_thumb.jpg","duration":1397,"publication_date":"2016-06-15T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rainbow-six-siege-extraction","changefreq":"weekly","video":[{"title":"2016:E182 - Rainbow Six: Siege – Extraction","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || In the Hostage Extraction Program the people are abused by two separate, yet equally important groups. The terrorists who capture them and the Swat Teams who shoot them on accident. These are their stories.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rainbow-six-siege-extraction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e5e7e77-562e-49de-929e-4bb620e8cdfc/sm/2013912-1465918571934-Ext_Achievement_Thumbnail.jpg","duration":1732,"publication_date":"2016-06-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-32","changefreq":"weekly","video":[{"title":"2016:E181 - Let's Watch – Trials of the Blood Dragon","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Far Cry 3: Blood Dragon meets motorcycles? It's like Boy Meets World, but with more dragons and kitty acid. Join the AH crew as they watch Gavin play Ubisoft's latest release.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ed0e7e0-495b-43e2-be6e-f6edd2e6bead/sm/2013912-1465943835885-Thumbnail_v4.jpg","duration":2072,"publication_date":"2016-06-14T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-who-s-your-daddy-stream-highlights","changefreq":"weekly","video":[{"title":"2016:E53 - AH Stream Highlights – Who’s Your Daddy?","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Geoff and Ryan sit Mica down and show her how to daddy like pros. Negligence is the key to fatherhood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-who-s-your-daddy-stream-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bff32de5-c776-49d6-8f84-57971cf4a5c9/sm/2013912-1465938700881-Stream_Highlights_Thumbnail.jpg","duration":1274,"publication_date":"2016-06-14T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-mirror-s-edge-catalyst-seb-s-salute-and-tenacious-traceur-guide","changefreq":"weekly","video":[{"title":"2016:E28 - Mirror's Edge Catalyst – Seb's Salute and Tenacious Traceur Guide","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Matt and Geoff help you get the Seb's Salute and Tenacious Traceur achievements in Mirror's Edge Catalyst.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-mirror-s-edge-catalyst-seb-s-salute-and-tenacious-traceur-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e8eda6-d23a-4445-84df-24312c18269c/sm/2013912-1465922377290-mirror_thumb.jpg","duration":132,"publication_date":"2016-06-14T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-mirror-s-edge-catalyst-george-s-garrison-and-belle-of-the-ball-guide","changefreq":"weekly","video":[{"title":"2016:E27 - Mirror's Edge Catalyst – George's Garrison and Belle of the Ball Guide","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Matt and Geoff show you great spots to get some of the hardest achievements in Mirror's Edge Catalyst.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-mirror-s-edge-catalyst-george-s-garrison-and-belle-of-the-ball-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b36a5614-55ec-45f5-a8df-a7f16ae02fc5/sm/2013912-1465922207861-Mirror_thumb.jpg","duration":156,"publication_date":"2016-06-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-porcunipine","changefreq":"weekly","video":[{"title":"2016:E180 - Porcunipine","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Our favorite porcupine men - Michael, Ryan, Gavin, and Jeremy - have one life to live and one quill to give in an exciting game of Porcunipine. And believe me, they're gonna stick it in each other hard and repeatedly all Let's Play long.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-porcunipine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c698381a-066e-409b-af0e-ff5fcc21fb98/sm/2013912-1465415793098-Porcunipine_Thumb_v002.png","duration":1808,"publication_date":"2016-06-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-321","changefreq":"weekly","video":[{"title":"2016:E27 - HOT NEWS From E3 From Austin – AHWU for June 13th , 2016 (#321)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU. || Like Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code LETSPLAY to get 15% off Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com.||\n\n\n\nJack and Ryan are already out at E3, but didn't take the camera with them to do an E3 AHWU like a couple of dumb idiots. It's up to Geoff, Jeremy, and Michael to bring the E3 experience to Austin! They're got electronics. They're got entertainment. Let's have an expo! Get ready to press some conferences, boys! Or at the very least, maybe break a chair. This is E3 - hard-fucking-core.\n\n\n\nCheck out the video of the week or the other video of the week or the other other video of the week or the community video of the week!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-321","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c4c99f0-11fd-4b7e-ae0f-82b58504d26b/sm/1104396-1465861117250-ahwu_-_Copy.jpg","duration":687,"publication_date":"2016-06-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-139-jeremy-vs-ryan","changefreq":"weekly","video":[{"title":"2016:E14 - Episode 139: Jeremy vs Ryan","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Jeremy takes Ryan into a VR zombie survival world. Who has the best samurai sword skills, and who will be fodder for the living dead?","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-139-jeremy-vs-ryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3f10b22-961e-4364-8f47-aa0202ff645c/sm/2013912-1465854996524-VS_Episode139_THUMB.png","duration":1059,"publication_date":"2016-06-13T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-tmnt","changefreq":"weekly","video":[{"title":"2016:E179 - Teenage Mutant Ninja Turtles: Mutants in Manhattan","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Turtle Power! Hail Splinter! Death to the purebloods! ... I mean, mmm! Pizza.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-tmnt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/927127c2-f0fd-4c29-a643-c61715947021/sm/2013912-1465589064602-TMNT_Thumbnail_v2.jpg","duration":2296,"publication_date":"2016-06-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-2","changefreq":"weekly","video":[{"title":"2015:E2 - Last Call #2","description":"The AH Crew sits down to talk about the effect spray-on hair dye can have on one’s genitals in this week's Off Topic: Last Call!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8bafe1c-0f6e-4789-9ea1-e068fecb45b1/sm/2013912-1465593727900-OFF28_-_PS_-_THUMB.jpg","duration":1598,"publication_date":"2016-06-12T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-finance-and-felony-free-roam","changefreq":"weekly","video":[{"title":"2016:E178 - GTA V – Finance and Felony Free Roam","description":"The Achievement Hunter crew explore the new Finance and Felony DLC in GTA 5! Brickade posse roll out!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-finance-and-felony-free-roam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c079a5b7-059f-40b2-a0a9-0aca6ed0f524/sm/2013912-1465615328040-GTA_Thumb.jpg","duration":2690,"publication_date":"2016-06-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-28","changefreq":"weekly","video":[{"title":"2016:E28 - Is This Your Card? – #28","description":"The AH Crew sits down to talk about hair dye, magic, Surgeon Simulator and more on this week's Off Topic!\n\nThis episode originally aired June 10, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28e601ef-9009-4a3d-b025-005be3268740/sm/2013912-1465593613510-OFF28_-_THUMB.jpg","duration":7326,"publication_date":"2016-06-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-surgeon-simulator-a-e-special-trump-edition","changefreq":"weekly","video":[{"title":"2016:E14 - Surgeon Simulator – A&E Special Trump Edition","description":"Paging Dr. Jones and Dr. Free to the O.R. We're in dire need of the world's best surgeons -or at least simulated Surgeon Simulator surgeons. We know you \"trump\" all your competition, which is why we're calling you in for this very special operation.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-surgeon-simulator-a-e-special-trump-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bd4209c-7b40-48c2-af6d-b9164c874ca4/sm/2013912-1465615844462-playpals_trumbthumb_720.jpg","duration":969,"publication_date":"2016-06-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-stream-overwatch","changefreq":"weekly","video":[{"title":"2016:E177 - RT Stream Highlights – Overwatch with Michael Jones","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Join Michael and Mica as they play some Overwatch! Michael shoots stuff as Reaper, fails objectives as Reaper, and ponders his favorite Disney films. As Reaper.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-stream-overwatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e933ab9-b713-49ac-8f90-105106201941/sm/2013912-1465571535363-Overwatch_Thumbnail_3.jpg","duration":1207,"publication_date":"2016-06-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-mirror-s-edge-catalyst-easy-runner-and-veteran-runner-achievements","changefreq":"weekly","video":[{"title":"2016:E26 - Mirror's Edge Catalyst – Easy Runner and Veteran Runner Achievements","description":"Matt and Ryan help you get the Easy Runner and Veteran Runner achievements in Mirror's Edge Catalyst.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-mirror-s-edge-catalyst-easy-runner-and-veteran-runner-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1babeb9c-2afc-437f-8a65-05bcd953676e/sm/2013912-1465615576851-Veteran_runner_thumb.jpg","duration":122,"publication_date":"2016-06-11T03:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-6","changefreq":"weekly","video":[{"title":"2016:E6 - Episode #6: Zombie Isle","description":"If you could have one luxury item on a desert island, what would it be? Let’s hope it’s a machete, because otherwise you’re fucked. Join AH in watching Zombie Isle to find out just how fucked you’d be.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a97dad9-0e8f-4543-a722-a2becce60d63/sm/2013912-1465580373886-TM_-_Zombie_Isle_-_THUMB.jpg","duration":6509,"publication_date":"2016-06-10T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-avalanche","changefreq":"weekly","video":[{"title":"2016:E26 - Halo 5 – Avalanche","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Have you ever wanted to run up a massive hill with boulders pelting down on you? Well now’s your chance! Join the Achievement Hunter crew as they face off against The Avalanche in Halo 5.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-avalanche","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/371a1af1-46b6-4bd2-8e5d-fddc5080548b/sm/2013912-1465578964081-TTD_HALO_AVALANCHE_thumb_test_3.jpg","duration":501,"publication_date":"2016-06-10T16:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/heroes-halfwits-season-1-episode-one","changefreq":"weekly","video":[{"title":"2016:E1 - Episode One","description":"Dare ye cross over into a realm of mystery and intrigue? Methinks ye shall. Join Geoff, Griffon, Gus, Ryan, Michael, and Dungeon Master Frank for the first episode of the official Heroes & Halfwits adventure.","player_loc":"https://roosterteeth.com/embed/heroes-halfwits-season-1-episode-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8796e8a7-3a75-48a8-b389-77c7c074fb98/sm/2013912-1465506276126-HH1_-_THUMB.jpg","duration":4929,"publication_date":"2016-06-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-rwby","changefreq":"weekly","video":[{"title":"2016:E52 - AH Stream Highlights - RWBY: Grimm Eclipse","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Join Barbara and Mica as they play through RWBY Grimm Eclipse. We promise Barbara won’t get too meta with the Yang stuff. Who are we kidding, we can’t make that promise.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-rwby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c477da10-7582-4672-811d-4c638c05f399/sm/2013912-1465503199322-Grimm_Eclipse_Thumb_1.jpg","duration":1508,"publication_date":"2016-06-09T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-mirror-s-edge-catalyst-law-abiding-citizen-guide","changefreq":"weekly","video":[{"title":"2016:E25 - Mirror's Edge Catalyst – Law Abiding Citizen Guide","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Matt and Trevor show you how to get the Law Abiding Citizen achievement in Mirror's Edge Catalyst.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-mirror-s-edge-catalyst-law-abiding-citizen-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a830446e-6404-4d6e-b668-d9a42e27770e/sm/2013912-1465492937272-Law_abiding_thumbnail.jpg","duration":147,"publication_date":"2016-06-09T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-211-achievelantis","changefreq":"weekly","video":[{"title":"2016:E176 - Minecraft – Episode 211 – Achievelantis","description":"Eons before Achievement City existed as you or I know it today, The Ancient Ones thrived in an underwater utopia far below on the ocean floor. The Achievelantians, as they were known, were in many ways far more advanced than the modern Achievemen. I mean, they lived in a freakin' underwater city (like the Gungans) without being super annoying pricks (like the Gungans)! That's a heavy accomplishment. \n\n\n\nThese Ancient Ones, these Achievelantians went extinct - probably by the fault of Ancient Gavin - and their city was lost to time. This city, Achievelantis, has been thought to be nothing more than a legend. But today, Geoff has discovered ancient maps in the Achievement Archives - maps that could possibly lead to this fabled lost city. Now it is time for the Achievement Hunters to throw on their swimmy suits and explore the most remote locations across Achievement City in order to discover the sunken sanctum below the sea - Achievelantis!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-211-achievelantis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94e318e4-95c1-470e-beb6-5fea927a3759/sm/2013912-1465425039055-mc_achievelantis_thumb.jpg","duration":2963,"publication_date":"2016-06-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-10","changefreq":"weekly","video":[{"title":"2016:E51 - VR the Champions – Budget Cuts","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Tonight in VR the Champions: Michael dives into his secret spy roots and attempts to eliminate robots while searching for a super top secret job application to approve. You just need to watch to understand...","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76cfe212-d382-42aa-b829-5fbdea275c05/sm/2013912-1465403915365-VR_THE_CHAMPS_-_Budget_Cuts.jpg","duration":1237,"publication_date":"2016-06-08T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gang-beasts-with-kinda-funny","changefreq":"weekly","video":[{"title":"2016:E175 - Gang Beasts with Kinda Funny","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Nick, Greg, Tim and Colin join Ryan, Jack, Michael and Jeremy in an eight person game of Gang Beasts.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gang-beasts-with-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b23ca87-a4a7-43b1-b4ba-09f00ab4b71f/sm/2013912-1465331392488-Gang_Beasts_Thumbnail_4.jpg","duration":2976,"publication_date":"2016-06-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-31","changefreq":"weekly","video":[{"title":"2016:E174 - Let's Watch – Layers of Fear – Part 4","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || The dark can be scary sometimes. Trust us, ask Geoff. Will the Achievement Hunter gang be able to solve this horrifying mystery to finish up the epic Layers of Fear story? You will have to watch to find out!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6556af8d-0d4a-4dad-ac84-46ebb7bb54f4/sm/2013912-1465329133801-Layers_of_Fear_Part_4.jpg","duration":2362,"publication_date":"2016-06-07T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-let-s-play-live-2","changefreq":"weekly","video":[{"title":"2016:E50 - Let's Play Live!","description":"Join the Achievement Hunter crew and the Let's Play family at Let's Play Live 2 and experience the next GTAV Heist Live! \n\n\n\nUse code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-let-s-play-live-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03e1ea17-7d25-498c-be66-f49488fb5011/sm/2013912-1465316635461-LPL_Heist.jpg","duration":49,"publication_date":"2016-06-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch-replay","changefreq":"weekly","video":[{"title":"2016:E173 - Overwatch: Replay","description":"The Achieve Men did some heavy dominating in Overwatch on the PC. Now it's time to give those Xbox kids some harsh beatings as well. Now that Gavin's here to monkey around, will he be the glue that makes the team even stronger, or will he be the downfall of this Overwatch super group?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch-replay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d4aa0b9-577d-478d-a94a-26c405b666fc/sm/1104396-1465257425522-LP_Overwatch_Replay_Thumb_v002.png","duration":2059,"publication_date":"2016-06-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-the-floor-is-lava","changefreq":"weekly","video":[{"title":"2016:E25 - Halo 5 – The Floor Is Lava","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Don't you ever wish you could go back to a simple time of climbing from couch to couch pretending the floor is lava? Well now you can do just that in Halo 5! Except in this one you're an eight foot tall space marine that has a hammer twice as strong as the mighty hammer of Thor. So ya know, pretty much the same thing.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-the-floor-is-lava","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c861c150-21e9-489d-b1e5-4bd701e544de/sm/2013912-1465261269881-floorislava_thumb.jpg","duration":986,"publication_date":"2016-06-07T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-320","changefreq":"weekly","video":[{"title":"2016:E26 - Face of a Hufflepuff – AHWU for June 6th , 2016 (#320)","description":"hanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU. || Like Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. \n\n\n\nThis week in AHWU, there's the typical games and news and other such tomfoolery. Also Geoff still coming to terms with being a Hufflepuff. And can you blame him? You have Gryffindor, known for their courage and ability to have Dumbledore rig the points system so they unjustly win the house cup. Then there's Ravenclaw, the house of smarts and such. You also have Slytherin, where they're pretty much sneaky Gryffindors who also enjoy sliding around on their bellies. So what does that leave Hufflepuff with? Being around and doing weird stuff behind closed doors, probably? Or maybe getting called out in court for \"badger\"ing the witness. Poor Geoff - there's just no escape from your Huffle Pufflage.\n\n\n\nCheck out the Vid of the Week and Community Vid","player_loc":"https://roosterteeth.com/embed/ahwu-2016-320","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08f5ab54-0aa5-4cd6-b977-2d50464bc26c/sm/2013912-1465246370897-ahwu320.jpg","duration":542,"publication_date":"2016-06-06T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rainbow-six-seige-more-terrorist-hunt","changefreq":"weekly","video":[{"title":"2016:E172 - Rainbow Six Seige: More Terrorist Hunt","description":"These men are dangerous. And we're sending our five worst to get killed by them.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rainbow-six-seige-more-terrorist-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a682f932-b647-4566-9953-b88bf5e76095/sm/1104396-1464999847836-More_Terrorist_Hunt_thumb_2.jpg","duration":1658,"publication_date":"2016-06-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-last-call-1","changefreq":"weekly","video":[{"title":"2015:E1 - Last Call #1","description":"The AH Crew sits down to talk about nudity in Game of Thrones in this week's Off Topic: Last Call. This episode originally aired June 3, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-last-call-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62a90653-b432-4d68-8687-4acb8400bf37/sm/2013912-1464990009041-OFF27_-_PS_-_THUMB.jpg","duration":1786,"publication_date":"2016-06-05T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-super-meat-boy","changefreq":"weekly","video":[{"title":"2016:E49 - AH Stream Highlights - Super Meat Boy","description":"Join Ryan and Mica as they play Super Meat Boy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-super-meat-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09fdf2a2-85dc-4a67-8a11-29c58bab4b05/sm/2013912-1464996987580-supermeatboy.jpg","duration":1156,"publication_date":"2016-06-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-gta-v-sumo-part-3","changefreq":"weekly","video":[{"title":"2016:E171 - GTA V – Sumo Part 3","description":"Strap on your giant adult diaper and enter the ring! We're about to go Sumo'ing!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-gta-v-sumo-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd0fc4e1-3917-4afa-b5cb-154257aa2b54/sm/2013912-1464996819473-GTA_V_Sumo_3_Thumb.jpg","duration":2381,"publication_date":"2016-06-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-27","changefreq":"weekly","video":[{"title":"2016:E27 - I Love My Boobs – #27","description":"The AH Crew sits down to talk about Destiny, social inequality, Joel Rubin and more on this week's Off Topic! This episode originally aired June 3, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06b90e0b-8d47-4151-9a2d-3fd4ece34177/sm/690915-1465011649981-OFF27_-_THUMB.jpg","duration":9978,"publication_date":"2016-06-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-arrow-rain","changefreq":"weekly","video":[{"title":"2016:E24 - Overwatch – Arrow Rain","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Being a master archer like Overwatch's Hanzo can be tough. But mastering some basic techniques can take skill right out of the equation. Matt and Michael know these ancient teachings and will pass them on to you.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-arrow-rain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be22b0b3-96f0-4b38-ae8d-6ddb86bd2d9d/sm/2013912-1464967630239-Arrow_Rain_Thumbnail.jpg","duration":202,"publication_date":"2016-06-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rt-stream-highlights-overwatch","changefreq":"weekly","video":[{"title":"2016:E170 - RT Stream Highlights – Overwatch","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Kyle Taylor and John Risinger play Overwatch with Mica and special surprise guest Bella.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rt-stream-highlights-overwatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e822d1c4-15ec-4f8a-8e38-70c0dbd067c0/sm/2013912-1464906707951-Overwatch_Stream_Thumb_03.jpg","duration":1404,"publication_date":"2016-06-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-5","changefreq":"weekly","video":[{"title":"2016:E5 - Episode #5: Thankskilling 3","description":"Thanksgiving-day turkey is good and all, but the creative dishes made from leftovers are even better. AH is back with Thankskilling 3, the turkey tetrazzini of films. And unlike your lame Thanksgiving, this one has puppets and a rapping grandma.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6a4a17e-c17c-4d8c-9398-0ae710f2173b/sm/2013912-1464974133307-TM_-_Thankskilling_3_-_THUMB.jpg","duration":5668,"publication_date":"2016-06-03T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-30","changefreq":"weekly","video":[{"title":"2016:E169 - Let's Watch – The Park","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Join Geoff, Ryan, Jack and Jeremy as they explore the mysteries of The Park. Get ready for some twists and turns and even some frights. I mean how scary can a chipmunk possibly be?You will will have to watch to find out.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c3c490f-67c1-440b-a3d1-a15eda34cc80/sm/2013912-1464895414610-LW_The_Park_Thumb.jpg","duration":3918,"publication_date":"2016-06-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-6","changefreq":"weekly","video":[{"title":"2016:E48 - VR the Champions – Catlateral Damage","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Tonight in VR the Champions: The Achievement Hunter crew gets to act like cats! Who will cause the most destruction, Lindsay or Michael?","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f1615d0-fb6c-48ea-b4d3-5433829ae24d/sm/2013912-1464816038981-VRChamps_CAT_2.jpg","duration":884,"publication_date":"2016-06-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-210-jabu-jabu-s-belly","changefreq":"weekly","video":[{"title":"2016:E168 - Minecraft – Episode 210 – Ocarina of Time: Jabu Jabu's Belly","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Geoff, Michael, and Ryan are ready to continue their epic Zelda quest in Templars of Hyrule: The Ocarina-of-Time-iest Minecraft mod out there! With two spiritual stones in their pockets already, our heroes are out to grab the final stone necessary to open the Temple of Time. Now, it's time to take a visit to Lake Hylia, meet some horrible fish people, and wind up inside the stomach of a huge disgusting fish monster. In the words of the great Tommy Wiseau, \"Anything for my princess.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-210-jabu-jabu-s-belly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27346adf-8326-4a49-80fd-ac322e3d8690/sm/1104396-1464928022609-mc_thumb_zelda.jpg","duration":2272,"publication_date":"2016-06-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2016-angry-video-game-nerd-i-i-as-similation","changefreq":"weekly","video":[{"title":"2016:E3 - Angry Video Game Nerd II: ASSimilation","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || This week, Michael makes an angry friend!\n\n\n\nFACT: Angry Video Game Nerd II: ASSimilation is on sale now! MORE FACTS: \n\nWHO: ScrewAttack Games\n\nWHAT: Summer Sale\n\nWHERE: Steam, Humble, Nintendo 3DS & Wii U (Both Nintendo of Europe and America)\n\nWHEN: May 24th - June 7th\n\nWHY: Cause it's summer you fool!\n\n\n\nAVGNII:ASS ONLY $11.99 (20% OFF!)\n\nSteam \n\nHumble\n\n\n\nAVGNA ONLY $4.99! (50% OFF)\n\nSteam\n\nHumble\n\n3DS (NOA&NOE)\n\nWii U (NOA&NOE)\n\n\n\nDisorder ONLY $2.49! (75% OFF)\n\nSteam\n\nHumble","player_loc":"https://roosterteeth.com/embed/rage-quit-2016-angry-video-game-nerd-i-i-as-similation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5651239-b7c5-4705-8065-d9c2b96473eb/sm/2013912-1464819997964-rq_thumb.jpg","duration":615,"publication_date":"2016-06-01T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-pokk-n-tournament-with-shofu-and-etika","changefreq":"weekly","video":[{"title":"2016:E167 - Pokkén Tournament with Shofu and Etika","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com!\n\nThanks to Shofu and Etika for coming by. Check out Shofu at https://www.youtube.com/shofu and Etika at https://www.youtube.com/EWNetwork || Yesterday, Pokémon Masters Michael, Shofu, and Etika traveled through Mt. Moon in their Pokémon Blue adventures. Today, Shofu and Etika aren't Achievement Hunter's Misty and Brock. They're not bitching about broken bikes or drooling over Nurse Joy's sweet boobies - not today! Now they're Achievement Hunter's Team Rocket - and they're here to kick some ass at Pokkén Tournament. They're ready to clean the floor with Michael and then steal his Pikachu. They'll also probably take Geoff's beautiful pony Pokémon just for funsies. Is there any Achievement Hunter who can take on Shofu and Etika in order to achieve sweet Pokkén glory? No, probably not at all.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-pokk-n-tournament-with-shofu-and-etika","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e3cfd75-b570-4ccf-afec-40c000453c95/sm/2013912-1464732873660-Pokken_Shofu_Etika_Thumb_v003.png","duration":2460,"publication_date":"2016-06-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-overwatch","changefreq":"weekly","video":[{"title":"2016:E166 - Overwatch","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || The call has gone out and the Overwatch team has been assembled. Watch our unique set of heroes use their unique set of \"powers\" to defeat every enemy that stands in their way.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-overwatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be3c3381-336f-404c-89d2-bb5d91aafc47/sm/2013912-1464714990257-overwatch_thumb.jpg","duration":1591,"publication_date":"2016-05-31T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016","changefreq":"weekly","video":[{"title":"2016:E165 - Pocket Play – Pokémon Blue with Shofu and Etika","description":"Thanks to Shofu and Etika for coming by. Check out Shofu at https://www.youtube.com/shofu and Etika at https://www.youtube.com/EWNetwork || Michael's traveling to the past with Pokemon masters Shofu and Etika as they play Pokemon Blue. As they travel through Zubat Land, they ask important life questions such as, \"Why do Team Rocket members have terrible bowl cuts and unibrows?\" and, \"Is this game actually good?\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d669bd7d-a92e-4efa-842f-5997458fac50/sm/1104396-1464398396518-pokemon_thumb.jpg","duration":2435,"publication_date":"2016-05-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-memorial-day-ahwu-for-may-30-th-2016-319","changefreq":"weekly","video":[{"title":"2016:E25 - Memorial Day! – AHWU for May 30th , 2016 (#319)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU. || Like Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. \n\n\n\nThis week in AHWU, Jack and Michael cover all the hip top new games for the week and all the news that Jack could find before heading out for a three-day weekend.\n\nThis week in AHWU descriptions, do Memorial Day songs exist? Like, a song that specifically calls out Memorial Day by name? I guess war-based songs could work. A quick search on the ol' Googlies for \"Memorial Day songs\" pulled up Bob Dylan's \"Masters of War.\" So maybe a lyrical switch up of \"Masters of War,\" but like...\"Masters of Games\"? But then does that become offensive to all of those that we're memorializing on this day, Memorial Day? That's certainly no bueno. So I guess rather than do that, maybe just the description can be a rambling ramble-on about how that was a bad idea. All the cool kids like meta-commentary, right? Or maybe just keep in simple. AHWU! GAMES! NEWS! URRY WEEK! HAVE AT IT!Vid of the week || Community vid","player_loc":"https://roosterteeth.com/embed/ahwu-2016-memorial-day-ahwu-for-may-30-th-2016-319","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dad2181-68ed-46dc-87dd-3c80bc4bef9e/sm/2013912-1464386396337-ahwu_thumb.jpg","duration":564,"publication_date":"2016-05-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-the-last-cave-the-labyrinth-cave-story-great-levels-in-gaming","changefreq":"weekly","video":[{"title":"2016:E47 - The Last Cave & The Labyrinth – Cave Story – Great Levels in Gaming","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Join Max as he feels old upon realizing that Cave Story is going to turn 12 this year. This episode is double trouble, featuring two levels from this 2004 classic: the Last Cave & the Labyrinth. Also, get off my lawn.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-the-last-cave-the-labyrinth-cave-story-great-levels-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b183139-5754-413c-8fb9-3c8a545f763c/sm/2013912-1464375412890-Last_Cave__Labyrinth_thumbnail.jpg","duration":847,"publication_date":"2016-05-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mean-greens-plastic-warfare","changefreq":"weekly","video":[{"title":"2016:E164 - Mean Greens: Plastic Warfare","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com!\n\n\"Bit by bit. Torn apart. We never win. But the battle wages on.\"\n\n- General George Patton, 1942","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mean-greens-plastic-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fa8a9dc-0ab6-4cfc-9e45-d96afedf386a/sm/2013912-1464375509384-meangreens_thumb.jpg","duration":1708,"publication_date":"2016-05-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2016-102","changefreq":"weekly","video":[{"title":"2016:E4 - Five Shotguns! – GO! #102","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Five shotguns, five kills, and Jack sings M.I.A.","player_loc":"https://roosterteeth.com/embed/go-2016-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf4fee19-5a3b-4200-af24-8e3982b7ef5a/sm/2013912-1464373566084-5_shotguns_Thumb.jpg","duration":1123,"publication_date":"2016-05-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-jack-bag","changefreq":"weekly","video":[{"title":"2016:E163 - GTA V - Jack Bag","description":"Jack reaches deep into his super sack to bring you a collection of his favorite untested GTA V online maps! What ever will he bring? WHO KNOWS! That's the exciting part of JACK BAG.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-jack-bag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3458ba9-90da-46ff-b2b0-31f2f29535ad/sm/2013912-1464408189245-GTA_V_Jackbag_Thumb.jpg","duration":2458,"publication_date":"2016-05-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-ah-stream-highlights-worms-battlegrounds","changefreq":"weekly","video":[{"title":"2016:E46 - AH Stream Highlights - Worms Battlegrounds","description":"Michael and Gavin played Worms Battlegrounds with Mica in her inaugural stream as an Achievement Hunter. These are the moments we cherished the most.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-ah-stream-highlights-worms-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93b7e214-b82a-436f-ab88-398acb5ca7df/sm/834020-1464531386597-worms2.jpg","duration":1568,"publication_date":"2016-05-29T07:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-26","changefreq":"weekly","video":[{"title":"2016:E26 - An Element of Blanchard – #26","description":"The AH Crew sits down to talk about Andy Blanchard, The Last Samurai, Iron Chef and more on this week's Off Topic! This episode originally aired May 27, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7a4e80b-fa8e-4337-8959-f4e863779c8d/sm/2013912-1464386789559-OFF26_-_THUMB.jpg","duration":7363,"publication_date":"2016-05-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-deflect-duel","changefreq":"weekly","video":[{"title":"2016:E23 - Overwatch – Deflect Duel","description":"Order your Let's Play Live tickets at http://RoosterTeethLive.com! || Genji is an insanely skilled assassin in Overwatch. Sometimes though a warriors coolest ability isn't always meant for killing. Genji's deflect ability for example can be deadly, or it can be an incredibly beautiful and fun thing. Let Matt and Geoff show you how to make it fun.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-deflect-duel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7c5918d-b6ec-43c0-ba39-e4d7f7880d02/sm/2013912-1464386569550-TTD_Overwatch_Thumb.jpg","duration":284,"publication_date":"2016-05-27T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-4","changefreq":"weekly","video":[{"title":"2016:E4 - Episode #4: Apocalypse Kiss","description":"This film has it all: butts, childbirth, fucked up Yoda, a Sears model, and more. Join AH in watching Apocalypse Kiss. We promise it won’t make you question your life decisions.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e756409a-555d-4a31-a248-2ce38c41f0e2/sm/2013912-1464374195304-TM4_-_THUMB.jpg","duration":5586,"publication_date":"2016-05-27T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-9","changefreq":"weekly","video":[{"title":"2016:E44 - VR The Champions – Maximum VR","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Tonight in VR the Champions: The Achievement Hunter crew gets to go monster monster in Maximum VR. Well isn't this just a smashing good time!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec2e28a9-54bc-48b8-ac18-727ad45ae6d2/sm/2013912-1464204016533-VRMaximum.jpg","duration":1825,"publication_date":"2016-05-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-209","changefreq":"weekly","video":[{"title":"2016:E162 - Minecraft – Episode 209 – The Most Dangerous Game X","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || 131 weeks ago, the AH Crew decided it was a good idea to hunt the most dangerous game: human. Now they're finally ready to take another stab at man hunting - this time on Achievement City's world-famous stabbing grounds.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-209","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e42ecc4c-ceda-4bca-a6c1-f726b5a72295/sm/2013912-1464207552658-minecraft_thumb.jpg","duration":3427,"publication_date":"2016-05-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-overwatch-web-of-sadness","changefreq":"weekly","video":[{"title":"2016:E22 - Overwatch – Web of Sadness","description":"Overwatch has tons of unique heros to bring to battle. Each one carry some awesome abilities. Only one can use the deadly hidden \"Web of Sadness\" technique. Matt and Mica will show you which one.\n\nUse code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. ||","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-overwatch-web-of-sadness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbf7cd31-6662-45fb-8de3-1fa63c383d45/sm/2013912-1464215924184-overwatch_thumb.jpg","duration":200,"publication_date":"2016-05-25T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-shell-shock-live-feat-chilled-chaos-and-seananners","changefreq":"weekly","video":[{"title":"2016:E161 - ShellShock Live – Feat. ChilledChaos and Seananners","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. \n\nJeremy and Trevor are loading up their tanks in ShellShock live to try and plow over ChilledChaos and Seananners. Can they gunk up their treads with these other youtubers?!\n\nCheck out Chilled and Nanners on their channels!\nChilled: http://bit.ly/1XxcWLI\nSeananners: http://bit.ly/1fV8azO","player_loc":"https://roosterteeth.com/embed/lets-play-2016-shell-shock-live-feat-chilled-chaos-and-seananners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1689c207-37a7-437b-a312-60a96e4d2f52/sm/2013912-1464198202565-Thumb.jpg","duration":1615,"publication_date":"2016-05-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gmod-8-man-murder","changefreq":"weekly","video":[{"title":"2016:E160 - Gmod: 8-Man Murder","description":"Want to see more Kinda Funny and Achievement Hunter all up on each other? Then check out Kinda Funny Live 2! For tickets, go to https://www.kindafunny.com/tickets || Achievement Hunter loves playing Gmod: Murder - probably because in order to win, you have to be shifty, sneaky, sleuthy, and ruthless. Today, the AH crew invited over the equally shifty, sneaky, sleuthy, and ruthless boys from Kinda Funny to come be all sorts of stabby and shooty all over the place. Who can be trusted? How many innocents will be shot? And how many fucking times will Greg Miller start the round with the gun?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gmod-8-man-murder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcdf8aa9-f38f-4c2e-8539-523f0c3c29cf/sm/2013912-1464122140546-LP_Murder_KF_Thumb_v007.png","duration":2551,"publication_date":"2016-05-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-138-michael-vs-jeremy","changefreq":"weekly","video":[{"title":"2016:E13 - Episode 138: Michael vs Jeremy","description":"Jeremy takes Michael to swim with the fishies. Who will be king of the sea, and who will be chum?","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-138-michael-vs-jeremy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a915187-b644-4849-bf20-f4254e4d4328/sm/2013912-1464135202507-VS_Fish_Frenzy_2_Thumbnail_v3.jpg","duration":685,"publication_date":"2016-05-25T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-cloudberry-kingdom-part-16","changefreq":"weekly","video":[{"title":"2016:E159 - Cloudberry Kingdom – Part 16","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The longer it takes for the Berry Bros to finish Cloudberry Kingdom the more likely it is you'll be able to completely reconstruct Ryan's house.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-cloudberry-kingdom-part-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9e09d93-31c3-4d23-b1d5-d822b4a39d4f/sm/2013912-1464110294250-Cloudberry_Thumb.jpg","duration":1680,"publication_date":"2016-05-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-29","changefreq":"weekly","video":[{"title":"2016:E158 - Let's Watch – Uncharted 4: A Thief's End – Part 15 (END)","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Michael, Jack, Jeremy and Ryan complete their journey through Uncharted 4: A Thief's End! You can not believe how it ends. You will have to watch to find out!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/211fbbef-3416-4612-bd90-d56e805c6024/sm/2013912-1464040375746-end_thumb.jpg","duration":3691,"publication_date":"2016-05-23T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-who-s-your-daddy-update","changefreq":"weekly","video":[{"title":"2016:E13 - Who's Your Daddy Update","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Papa Geoff has some more babysitting to do! Baby Michael has been getting into all sorts of trouble in the updated version of Who's Your Daddy.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-who-s-your-daddy-update","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a490e4a6-8240-4c62-844b-fb78ed44acd2/sm/2013912-1464042676837-Play_Pals_Thumb.jpg","duration":1064,"publication_date":"2016-05-23T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-318","changefreq":"weekly","video":[{"title":"2016:E24 - Jeremy's Sticky Situation – AHWU for May 23rd, 2016 (#318)","description":"Thanks to MVMT Watches for sponsoring this week's AHWU. You can get an awesome, affordable watch with an additional 15% off if you visit the following link: http://www.mvmtwatches.com/AHWU. \n\n\n\nLike Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com.\n\n\n\nThis week, Jeremy finds himself in a sticky situation. Typically, that means finding a song online about stickiness and changing the lyrics to be Achievement Hunter oriented. Turns out The Rolling Stones had an album called Sticky Fingers. Didn't know that - more of a Beatles guy myself. But hey - Sympathy for the Devil's a pretty cool song, which is not on Sticky Fingers. But Jeremy's fingers are probably sticky fingers right now - actual fingers, not the album. Not sure finger skin could be turned into a vinyl record. At least hopefully not. Gross.Watch the Vid of week and Community vid!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-318","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0a98380-376c-4ed9-9c2a-f48d87c2b614/sm/2013912-1464036541724-ahwu_thumb.jpg","duration":415,"publication_date":"2016-05-23T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-tower-fall-ascension-part-5","changefreq":"weekly","video":[{"title":"2016:E157 - TowerFall Ascension – Part 5","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The boys are back at it again, jumpin' on heads and stickin' arrows in places where the dungeon lanterns don't shine!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-tower-fall-ascension-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a96296a-a6f4-4555-8071-561102e3a7f4/sm/2013912-1464022739822-towerfall_thumb_Test.jpg","duration":1844,"publication_date":"2016-05-23T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-28","changefreq":"weekly","video":[{"title":"2016:E156 - Let's Watch – Uncharted 4: A Thief's End – Part 14","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || \n\nMichael, Jack, and Jeremy continue their journey through Uncharted 4: A Thief's End! In this adventure, Nate and Elena continue their epic search through explosive twists and turns!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f1e3302-fb48-4101-ba2f-febeb5f66a7a/sm/2013912-1463893505699-uncharted_14.jpg","duration":3262,"publication_date":"2016-05-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-downhill-jam-x","changefreq":"weekly","video":[{"title":"2016:E155 - GTA V – Downhill Jam X","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || After a brief 2.5 years, the crew is back on the top of Mt. Chiliad, throwing their bodies into the clutches of ol' fateful gravity! This time, with a new twist on the famous downhill race.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-downhill-jam-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c0ad635-e01f-4bb7-adbc-e5884a83d8bb/sm/2013912-1463789341016-GTA_V_Downhill_Jam_X_Thumbnail.jpg","duration":1740,"publication_date":"2016-05-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-27","changefreq":"weekly","video":[{"title":"2016:E154 - Let's Watch – Uncharted 4: A Thief's End – Part 13","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Elena joins Nathan as they finally explore Libertalia.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/652e8b10-3261-4a80-88bb-3e68f61fb9f4/sm/2013912-1463789072619-uncharted_13_thumb.jpg","duration":2343,"publication_date":"2016-05-21T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-25","changefreq":"weekly","video":[{"title":"2016:E25 - That’s a Hard No – #25","description":"The AH Crew sits down to talk about Harry Potter, Prom, Ridesharing and more on this week's Off Topic!\n\nThis episode originally aired May 20, 2016","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9ae9b1f-5434-4929-8419-29ff2960dc11/sm/2013912-1463813191096-OFF25_-_THUMB.jpg","duration":9019,"publication_date":"2016-05-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-feel-free-to-file-a-complaint-about-oculus-the-know","changefreq":"weekly","video":[{"title":"2016:E219 - \"Feel free to file a complaint\" about Oculus - The Know","description":"VR is the Future, but it's also the Now. In VR all of your dreams become a reality, even the weird sex one. Come, live work and play inside of VR. Everyone is welcome to your New Life.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-feel-free-to-file-a-complaint-about-oculus-the-know","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b763d173-0d50-4e1f-ba39-bfbf66285c05/sm/1788484-1452549214147-fh_thumb_7_copy_21.jpg","duration":357,"publication_date":"2016-01-11T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-11","changefreq":"weekly","video":[{"title":"2016:E3 - Minecraft 2 Scam + Govt Raids CES Booth + Half-Life Writer Quits Valve","description":"What a way to start a weekend. Someone's been selling a fake Minecraft 2 game, game devs are sad they haven't been paid since 2007, TR8R's got official lore, Game of Thrones is awaiting renewal, our galaxy has been in a hit-and-run collision, US marshals raided a booth at CES, T-mobile's CEO doesn't like questions about video throttling on mobile, and Half-Life's lead writer has left Valve.\n\nSo, who's hungry?","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6233d58-1d7c-4d36-b670-a02329aca518/sm/24363-1452286173653-thumbnail.jpg","duration":478,"publication_date":"2016-01-08T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-12","changefreq":"weekly","video":[{"title":"2016:E2 - Shenmue 3 Backer Rewards Withheld + CES Tech Tells You You're Fat + LEGO Better Than Gold","description":"It's a funny old world. VR costs a bunch, Shenmue 3 Paypal backers aren't getting any rewards, a bunch of tech at CES wants to judge you, Xbox game releases are slipping, James Willems is probably in the new Psychonauts game, Star Wars holds just about every record ever recorded, and LEGO is a better investment than gold. Is Joel okay? We haven't heard from him...","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfda0181-2c26-4382-a03f-75fb02f8da36/sm/24363-1452227901042-thumbnail.jpg","duration":610,"publication_date":"2016-01-08T04:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-2016-space-funeral-undertale-on-acid","changefreq":"weekly","video":[{"title":"2016:E1 - Space Funeral: Undertale On Acid?","description":"Join Ashley Jenkins, Gus Sorola and Ryan Haywood as they discuss Space Funeral, the surreal RPG on this week's Patch Game Club! This episode originally aired on January 6, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-2016-space-funeral-undertale-on-acid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d247119e-3c1f-4f9d-9f38-403a8ace3604/sm/2013912-1452184435041-gc_-_Space_Funeral_-_THUMB.jpg","duration":779,"publication_date":"2016-01-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-oculus-rift-vr-is-too-e-x-p-e-n-s-i-v-e","changefreq":"weekly","video":[{"title":"2016:E22 - Oculus Rift: Can You Afford It?","description":"When the moon is in the Seventh House // And Jupiter aligns with Mars // Then peace will guide the planets // And love will steer the stars // This is the dawning of the Age of ... Oculus!","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-oculus-rift-vr-is-too-e-x-p-e-n-s-i-v-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ab23428-87c8-4466-9fd3-6ba195476ee4/sm/24363-1452154484063-thumbnail.jpg","duration":579,"publication_date":"2016-01-07T18:28:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2016-is-vr-too-expensive-138","changefreq":"weekly","video":[{"title":"2016:E138 - How Much Should VR Cost? - #138","description":"Join Gus Sorola, Ashley Jenkins and Ryan Haywood as they discuss the recently announced price of the Oculus Rift on this week's The Patch! This episode originally aired on January 6, 2016.","player_loc":"https://roosterteeth.com/embed/the-patch-2016-is-vr-too-expensive-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4353e8b-3455-4066-8cb4-7c2ba2f3a67d/sm/2013912-1452183544288-p138_-_THUMB.png","duration":4384,"publication_date":"2016-01-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-no-more-piracy-in-two-years","changefreq":"weekly","video":[{"title":"2016:E218 - No More Piracy in Two Years?","description":"Show those Chinese hackers the spirit of piracy is alive and pirate this video! Wait. WAIT NO don't do that!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-no-more-piracy-in-two-years","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2477ee68-4362-43cb-95dc-cb6cbf0844cc/sm/1788484-1452123159238-fh_thumb_7_copy_(17).jpg","duration":515,"publication_date":"2016-01-06T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-pok-mon-on-p-s4","changefreq":"weekly","video":[{"title":"2016:E217 - Pok?mon on PS4?","description":"WHO'S THAT HACKING GROUP It's Fail0verflow!","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-pok-mon-on-p-s4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3eb205ce-c139-4d01-805c-2cf9633dab19/sm/1663966-1452031387730-pokemon_thumb.jpg","duration":418,"publication_date":"2016-01-05T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/news-roundups-2016-13","changefreq":"weekly","video":[{"title":"2016:E1 - RIP Boba Fett + MLG Sold for $46 Million + Game of Thrones Delayed","description":"The actor who voiced the legendary Boba Fett passed away, Steam hit 12 million+ concurrent users, and much, much more.","player_loc":"https://roosterteeth.com/embed/news-roundups-2016-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3136d11f-a521-4704-99df-6ef796a22d72/sm/1663966-1451954021988-mlg_thumb.jpg","duration":370,"publication_date":"2016-01-05T00:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-game-news-season-1-assassin-s-creed-canceled-in-2016","changefreq":"weekly","video":[{"title":"2016:E216 - Assassin's Creed CANCELED in 2016?","description":"Set, the merciless god of darkness, has taken over the throne of Egypt and plunged the once peaceful and prosperous empire into chaos and conflict. Few dare to rebel against him. A young thief, whose love was taken captive by the god, seeks to dethrone and defeat Set with the aid of the powerful god Horus.","player_loc":"https://roosterteeth.com/embed/the-know-game-news-season-1-assassin-s-creed-canceled-in-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f04f0c-5710-4f0e-932b-9d3083988cfa/sm/1788484-1451946986995-fh_thumb_7_copy_(16).jpg","duration":437,"publication_date":"2016-01-04T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-2015","changefreq":"weekly","video":[{"title":"2015:E39 - Best of the Year!","description":"Join Ashley Jenkins, Gus Sorola, Meg Turney and Ryan Haywood as they discuss their favorite Game Club game of 2015 on this week's Patch Game Club! This episode originally aired on December 30, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97196727-88d6-4012-86f8-a486e0236a88/sm/2013912-1451582842390-Game_Club_End_of_2015_-_THUMB.png","duration":1144,"publication_date":"2015-12-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-210","changefreq":"weekly","video":[{"title":"2015:E215 - VR Flops? Nintendo's BACK? 2016 Predictions!","description":"2015:E215 - VR Flops? Nintendo's BACK? 2016 Predictions!","player_loc":"https://roosterteeth.com/embed/game-news-2015-210","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d44c4e3-3794-4979-8efd-21c459be5c03/sm/1788484-1450834536729-fh_thumb_7_copy_(7).jpg","duration":549,"publication_date":"2015-12-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-disappointed-in-steam-134","changefreq":"weekly","video":[{"title":"2015:E137 - Disappointed in Steam - #137","description":"Join Meg Turney, Ashley Jenkins and Ryan Haywood as they discuss The Christmas Day Steam breach on this week's The Patch! This episode originally aired on December 30, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-disappointed-in-steam-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12c5a883-2889-489f-9e68-cd1cecfb041b/sm/2013912-1451578818039-PATCH_TEMP_THUMB.jpg","duration":5113,"publication_date":"2015-12-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-208","changefreq":"weekly","video":[{"title":"2015:E213 - BEST EXCLUSIVES of 2015?","description":"Lawrence usually writes the Know descriptions, but he's working today. Is it called \"working\" when you've been asleep under your desk for 4 hours in a pool of room-temperature eggnog and your own vomit","player_loc":"https://roosterteeth.com/embed/game-news-2015-208","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eedd007-7794-4394-826e-0797ec508233/sm/1788484-1450814375039-fh_thumb_7_copy_(5).jpg","duration":417,"publication_date":"2015-12-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-207","changefreq":"weekly","video":[{"title":"2015:E212 - DOXXED by Valve?!","description":"Come sit on Santa's lap. What would you like for Christmas All your personal information displayed to strangers on the internet by Valve Well, that's kind of a weird request but I think we can make it happen...\n\nAnd that's how we think that went. #blamesanta","player_loc":"https://roosterteeth.com/embed/game-news-2015-207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d954236-73bf-4d63-b6a6-a3a24b6e183b/sm/24363-1451208418250-thumbnail.jpg","duration":451,"publication_date":"2015-12-27T09:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-guacamelee","changefreq":"weekly","video":[{"title":"2015:E38 - Guacamelee!","description":"Ashley Jenkins, Ryan Haywood, and Meg Turney discuss Guacamelee! a Metroidvania-style action-platformer set in a magical world inspired by traditional Mexican culture and folklore. This episode originally aired on December 24, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-guacamelee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d15fe681-8999-427b-98a3-80d69a7105ac/sm/2037887-1450905978592-GC_Guacamelee_TH.jpg","duration":788,"publication_date":"2015-12-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-206","changefreq":"weekly","video":[{"title":"2015:E211 - Game of the Year 2015 DECIDED!","description":"We know you guys have been losing sleep over all this GOTY talk so we figure we'd bravely settle the matter for you. Now you can lose sleep over how grateful to us you are!","player_loc":"https://roosterteeth.com/embed/game-news-2015-206","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39bae9fb-df4e-42bb-9dd6-253417cbbf86/sm/1788484-1450830276593-goty2015.jpg","duration":445,"publication_date":"2015-12-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-patch-136","changefreq":"weekly","video":[{"title":"2015:E136 - We Have No Lives? - #136","description":"Join Gus Sorola, Ashley Jenkins, Meg Turney, and Ryan Haywood as they discuss Xbox Year in Review, and get an in depth look at Lady Sylvanas from Meg's mom on this week's The Patch! This episode originally aired on December 23, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-patch-136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1943a80-a01f-4376-b868-bbfe294fa669/sm/2037887-1450907510816-p136-THa.png","duration":4662,"publication_date":"2015-12-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-205","changefreq":"weekly","video":[{"title":"2015:E210 - Best Game of 2015?","description":"The numbers are in, and the winners of 2015 have been decided... according to Metacritic, which has weighed in on the best gaming platform of 2015 and the best game as decided by a faceless jury of numbers. But there's a little more to it than hard math.","player_loc":"https://roosterteeth.com/embed/game-news-2015-205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74edfd19-00fb-4314-b278-437fd98802bd/sm/24363-1450857101498-thumbnail.jpg","duration":559,"publication_date":"2015-12-23T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-204","changefreq":"weekly","video":[{"title":"2015:E209 - Steam is Anti-Consumer?","description":"Valve is in hot water with a French consumer group, who's taking them to court over anti-consumer policies in the Steam User Agreement. Insert tired joke here about the French and their track record in conflict. Do you think Steam needs to change","player_loc":"https://roosterteeth.com/embed/game-news-2015-204","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f68ba32e-5df4-4ffe-b3bd-277375a735d9/sm/24363-1450770341075-thumbnail.jpg","duration":535,"publication_date":"2015-12-22T17:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-203","changefreq":"weekly","video":[{"title":"2015:E208 - New Star Wars RPG","description":"A new Star Wars RPG is being developed by Visceral Games - excitement, gooooo!","player_loc":"https://roosterteeth.com/embed/game-news-2015-203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8be385f6-2273-4def-be2c-f20a54dda98c/sm/1663966-1450746232288-Star_Wars_Thumb.jpg","duration":524,"publication_date":"2015-12-22T01:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2015-18","changefreq":"weekly","video":[{"title":"2015:E21 - CISA DEFEATS Your Privacy?!","description":"If there's one thing America loves, it's defeating stuff. Anti-Privacy bill CISA has failed before, under names like SOPA, but the government has a surefire way to win this time: put it in the budget... or else. Good job, boys! We did it! We defeated privacy!\n\nHow to Contact Your Govt Rep: http://bit.ly/1NsmzpB","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e9e4cac-ecb9-467a-9252-7ec0034191fc/sm/24363-1450406090591-thumbnail.jpg","duration":476,"publication_date":"2015-12-18T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-f-e-z-secretly-about-learning-the-alphabet","changefreq":"weekly","video":[{"title":"2015:E37 - FEZ: Worth Going Crazy Over?","description":"Join Ashley Jenkins and Ryan Haywood as they discuss FEZ, the mysterious puzzle platformer on this week's Patch Game Club! This episode originally aired on December 16, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-f-e-z-secretly-about-learning-the-alphabet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34e332a1-c578-404c-9df4-4bf8dfe64096/sm/690915-1450403861421-gc_-_FEZ_-_THUMB.jpg","duration":1300,"publication_date":"2015-12-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-does-pay-to-skip-ruin-games-the-patch-135","changefreq":"weekly","video":[{"title":"2015:E135 - Pay-To-Skip Ruining Games? - #135","description":"Join Gus Sorola, Ashley Jenkins and Ryan Haywood as they discuss Gus' time at the Playstation Experience, and the latest Destiny patch that allows players to buy their way past levels on this week's The Patch! This episode originally aired on December 16, 2015. Sponsored by Crunchyroll (http://bit.ly/1KqLGZp) and MVMT (http://bit.ly/1NTZnls)","player_loc":"https://roosterteeth.com/embed/the-patch-2015-does-pay-to-skip-ruin-games-the-patch-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce993c8e-5b8f-41e4-bbee-d02beba9a377/sm/690915-1450370184784-PATCH_TEMP_THUMB.jpg","duration":5004,"publication_date":"2015-12-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-202","changefreq":"weekly","video":[{"title":"2015:E207 - Kojima Goes FREE!","description":"It feels like that dude has been in prison. I wonder if he roughed anyone up on the inside. Perhaps he escaped with the help of a friendly cardboard box Either way, he's officially out of Konami! What will that rascal get up to next Well...","player_loc":"https://roosterteeth.com/embed/game-news-2015-202","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d5c92de-354d-471a-bbae-265c9a84d753/sm/24363-1450374401111-thumbnail.jpg","duration":454,"publication_date":"2015-12-17T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-201","changefreq":"weekly","video":[{"title":"2015:E206 - $30 Microtransactions in Destiny","description":"What do you think of the new $30 subclass boost","player_loc":"https://roosterteeth.com/embed/game-news-2015-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72a03da7-5ba8-40a7-a0cf-7f7598c7f4ac/sm/1663966-1450228364465-Micro_Thumb.jpg","duration":389,"publication_date":"2015-12-16T01:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-200","changefreq":"weekly","video":[{"title":"2015:E205 - Is Star Citizen Finally Coming Out?","description":"After raising $100 million dollars, people are finally asking, \"Where the hell is the final game\"524","player_loc":"https://roosterteeth.com/embed/game-news-2015-200","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a82d159a-e0bb-43b2-bbcc-2e8194ee8d30/sm/1663966-1450140260440-star_thumb.jpg","duration":524,"publication_date":"2015-12-15T00:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-199","changefreq":"weekly","video":[{"title":"2015:E204 - Should Free to Play be Illegal?","description":"Why not make everything illegal Hell, now YouTube descriptions are illegal. Wait, shit.","player_loc":"https://roosterteeth.com/embed/game-news-2015-199","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30488bad-6634-4045-8e46-e542017670b5/sm/1788484-1450133444045-untitled-1_1024.jpg","duration":479,"publication_date":"2015-12-14T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-198","changefreq":"weekly","video":[{"title":"2015:E203 - Who Won Black Friday 2015?","description":"We here at The Know ask the hard questions like \"What's the Better Peanut Butter\" and \"What Shape of Ass is Best.\" Turns out it's the same answer: chunky.","player_loc":"https://roosterteeth.com/embed/game-news-2015-198","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f6f4106-4e0e-428c-90a0-958e7ca1d7ee/sm/1788484-1449882206609-fh_thumb_7_copy_1024_(3).jpg","duration":471,"publication_date":"2015-12-12T01:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-197","changefreq":"weekly","video":[{"title":"2015:E202 - The NEXT Xbox?","description":"GET READY FOR THE XBOX...2 What do you do when you're behind in the console race so far you know it's not even a race anymore Maybe get to work on the next one Microsoft isn't showing anything yet, but they are starting to talk about future console releases.","player_loc":"https://roosterteeth.com/embed/game-news-2015-197","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8e8274b-9d3a-4705-9d71-6378353019d4/sm/24363-1450117444063-thumbnail.jpg","duration":447,"publication_date":"2015-12-11T00:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-196","changefreq":"weekly","video":[{"title":"2015:E201 - Star Wars 1313 is BACK?!","description":"Because...maybe this game will happen. Maybe.","player_loc":"https://roosterteeth.com/embed/game-news-2015-196","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3fa5eb9-bb40-48f2-85c2-f4c09148244c/sm/1663966-1449787732621-returns_thumb.jpg","duration":493,"publication_date":"2015-12-10T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-dust","changefreq":"weekly","video":[{"title":"2015:E36 - Dust: An Elysian Tail","description":"Join Meg Turney and Ryan Haywood as they discuss the action RPG platformer, Dust: An Elysian Tail on this week's Patch Game Club! This episode originally aired on December 9, 2015","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-dust","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e1c85b8-0018-40bf-9c67-a3f1fa6ebc86/sm/2013912-1449765590278-gc_-_DUST_-_thumb.jpg","duration":560,"publication_date":"2015-12-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-are-games-shipping-too-broken-134","changefreq":"weekly","video":[{"title":"2015:E134 - Are Games Shipping Too Broken? - #134","description":"Join Meg Turney, Ashley Jenkins and Ryan Haywood as they discuss The Game Awards, VR and Broken Games on this week's The Patch! This episode originally aired on December 10, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-are-games-shipping-too-broken-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdeb1108-8916-48d2-ac93-2739c22936dd/sm/2013912-1449764917289-p134_-_THUMB.jpg","duration":4278,"publication_date":"2015-12-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-195","changefreq":"weekly","video":[{"title":"2015:E200 - Even More VR Delays","description":"Because VR tech is just taking way too long, that's why.","player_loc":"https://roosterteeth.com/embed/game-news-2015-195","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ade02b9e-2484-4dc1-b345-0b455b7876f6/sm/1663966-1449706939753-VR_Thumb.jpg","duration":413,"publication_date":"2015-12-10T00:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-194","changefreq":"weekly","video":[{"title":"2015:E199 - The FUTURE of Computers (and Porn)","description":"Google's breaking new ground with quantum computers, and like true professionals, all we can think about is sentient sex-bots. Eventually all we'll be doing is having sex with robots, so enjoy the next four years of relative calm while you can.","player_loc":"https://roosterteeth.com/embed/game-news-2015-194","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0697ca0f-f881-467d-a963-bcc0e213d846/sm/1788484-1449699081654-fh_thumb_7_copy_1024_(38).jpg","duration":403,"publication_date":"2015-12-09T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-193","changefreq":"weekly","video":[{"title":"2015:E198 - No More Destiny Expansions?","description":"Looks like Destiny isn't getting anymore big DLC's Are you excited","player_loc":"https://roosterteeth.com/embed/game-news-2015-193","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59983b04-4818-4623-b9cb-d43153928e28/sm/2141811-1449614125673-Thumb.jpg","duration":290,"publication_date":"2015-12-08T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-192","changefreq":"weekly","video":[{"title":"2015:E197 - Who Will Make Uncharted 5?","description":"Is Nathan Drake finished We'll have to wait and see.","player_loc":"https://roosterteeth.com/embed/game-news-2015-192","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/273f27e0-13a3-4d03-aab6-ece391b14a29/sm/2141811-1449606253044-Thumb.jpg","duration":470,"publication_date":"2015-12-08T20:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-191","changefreq":"weekly","video":[{"title":"2015:E196 - PSX 2015: Where Are the Games?","description":"You know that guy who shows up to the party, drinks your beer, eats your snacks, makes a mess, then spends the whole night complaining about how boring the party is That's us. That's us right now. Video games.","player_loc":"https://roosterteeth.com/embed/game-news-2015-191","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90a292a3-8ab3-497f-b3bb-8b4c4c41fe17/sm/1788484-1449525984622-fh_thumb_7_copy_1024_(32).jpg","duration":488,"publication_date":"2015-12-07T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-190","changefreq":"weekly","video":[{"title":"2015:E195 - Final Fantasy 7 Remake Going Episodic?","description":"Final Fantasy VII is being remade for PS4 and releasing as multiple episodes. Who's excited","player_loc":"https://roosterteeth.com/embed/game-news-2015-190","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ffecc65-c1fe-4b69-a8b8-027b28aa90e3/sm/2141811-1449523231193-Thumb.jpg","duration":558,"publication_date":"2015-12-07T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-189","changefreq":"weekly","video":[{"title":"2015:E194 - Nintendo NX: Most Powerful Console EVER?","description":"The NX has the capability to snare all computers to create the perfect console. Once we are all part of the NX hive mind, finally, we will know peace. The perfect love of Miyamoto will embrace us all. Bid farewell to the tyranny of freedom and join the one. Join the whole. Be NX.","player_loc":"https://roosterteeth.com/embed/game-news-2015-189","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39b058c1-ff3d-4385-8a78-daaf213a05b1/sm/1788484-1449273300380-fh_thumb_7_copy_1024_(29).jpg","duration":557,"publication_date":"2015-12-04T23:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-187","changefreq":"weekly","video":[{"title":"2015:E192 - Kojima Banned from VGAs","description":"The VGAS streamed live on YouTube last night and Hideo Kojima wasn't there.","player_loc":"https://roosterteeth.com/embed/game-news-2015-187","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d492a83-5858-4fe3-94ed-815d8a23b3a5/sm/2141811-1449256081545-Thumb.jpg","duration":554,"publication_date":"2015-12-04T19:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-186","changefreq":"weekly","video":[{"title":"2015:E191 - Big PS4 Announcements Coming","description":"Rumors and speculation are already swirling around PlayStation Experience 2015.","player_loc":"https://roosterteeth.com/embed/game-news-2015-186","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c33bb922-d14d-4de3-8980-428b31989dbf/sm/2141811-1449185039403-Xbox_Thumb.jpg","duration":272,"publication_date":"2015-12-03T23:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-185","changefreq":"weekly","video":[{"title":"2015:E190 - Does Xbox Have the Best Exclusives in 2016?","description":"Whos got the best exclusives in 2016 Let's take a look at some of the confirmed titles for the year and find out.","player_loc":"https://roosterteeth.com/embed/game-news-2015-185","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6dde14f-31f5-46b0-a2fa-15330dfa3b65/sm/2141811-1449177453426-Xbox_Thumb.jpg","duration":532,"publication_date":"2015-12-03T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-shantae-and-the-pirate-s-curse","changefreq":"weekly","video":[{"title":"2015:E35 - Shantae and the Pirate's Curse","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss Shantae and the Pirate's Curse, the swashbuckling 2D platformer on this week's Patch Game Club! This episode originally aired on Dec 2, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-shantae-and-the-pirate-s-curse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7e91ae9-cfb0-45fa-adf0-e32797468d93/sm/2013912-1449162191975-gc_-_Shantae_-_THUMB.jpg","duration":537,"publication_date":"2015-12-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-133","changefreq":"weekly","video":[{"title":"2015:E133 - Black Friday Console Wars - #133","description":"Join Meg Turney, Jeremy Dooley and Ryan Haywood as they discuss Black Friday, Crossy Road and educational games on this week's The Patch! This episode originally aired on December 2, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2d7e351-6c2e-4545-8260-dfd636a32e73/sm/2013912-1449163236027-TEMP_THUMB_small.jpg","duration":4241,"publication_date":"2015-12-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-184","changefreq":"weekly","video":[{"title":"2015:E189 - New Nintendo Console in 2016?","description":"Are you getting the shakes at night Do you have dreams of buying a brand new $300 box of plastic, tearing through layers of shrink wrap, and trying to find a free outlet in your already-packed power strip Your dreams may come true... in 2016 (2016!).","player_loc":"https://roosterteeth.com/embed/game-news-2015-184","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/facbd419-a99e-43c0-a156-66534997d391/sm/1788484-1449100378605-the-know_nx_thumb_1024.png","duration":476,"publication_date":"2015-12-02T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-183","changefreq":"weekly","video":[{"title":"2015:E188 - Rise of the Tomb Raider a FLOP?","description":"Release the same day as the biggest video game of the year, they said. Go Xbox exclusive, they said. What could go wrong","player_loc":"https://roosterteeth.com/embed/game-news-2015-183","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4350f29-30b8-4eb6-954e-d85d9ea27910/sm/2141811-1449086918055-thumb.jpg","duration":363,"publication_date":"2015-12-02T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-182","changefreq":"weekly","video":[{"title":"2015:E187 - More DC Comics Games?","description":"It looks like we have more DC comics games coming our way from the makers of Batman: Arkham Origins, the prequel to Rocksteadys beloved Arkham games.","player_loc":"https://roosterteeth.com/embed/game-news-2015-182","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5c614f5-1c75-4601-83f0-786ab0b36a2a/sm/2141811-1449006746798-thumb.jpg","duration":248,"publication_date":"2015-12-01T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-181","changefreq":"weekly","video":[{"title":"2015:E186 - Just Cause 3 - Is It Good?","description":"Just Cause 3 has been reviewed and we want to know - Is It Good","player_loc":"https://roosterteeth.com/embed/game-news-2015-181","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96905294-d98f-469a-ab05-19852e30c4fc/sm/2141811-1448998832595-thumb.jpg","duration":391,"publication_date":"2015-12-01T19:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-180","changefreq":"weekly","video":[{"title":"2015:E185 - PS4 Unlocks More Power","description":"The PS4 unlocks it's 7th core to developers. What does it mean for gamers","player_loc":"https://roosterteeth.com/embed/game-news-2015-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a0c9710-e415-4b88-a709-b9ac0dbacbb4/sm/2141811-1448923471428-thumb.jpg","duration":294,"publication_date":"2015-11-30T22:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-179","changefreq":"weekly","video":[{"title":"2015:E184 - Red Dead Redemption 2 In Development?","description":"We did a whole lot of Googling and the answer is a thunderous \"PROBABLY.\" Stick that in your hype engine and crank it.","player_loc":"https://roosterteeth.com/embed/game-news-2015-179","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ec0416-a7dc-44f0-95b6-75eb15bb08e6/sm/1788484-1448921993429-fh_thumb_7_copy_1024_(24).jpg","duration":441,"publication_date":"2015-11-30T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-178","changefreq":"weekly","video":[{"title":"2015:E183 - MGS V Secret Event","description":"Lay down your weapons, Diamond Dogs. Its time to achieve some world peace.","player_loc":"https://roosterteeth.com/embed/game-news-2015-178","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a88419d3-a1b8-4a14-a94c-859b5d45fc67/sm/2141811-1448916565167-thumb.jpg","duration":441,"publication_date":"2015-11-30T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-undertale","changefreq":"weekly","video":[{"title":"2015:E34 - Undertale","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss the RPG, Undertale on this week's Patch Game Club! This episode originally aired on November 25th, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-undertale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcf19788-b470-4625-b002-9b2c786d8aca/sm/2013912-1448487149008-GameClubUndertale_TH.jpg","duration":764,"publication_date":"2015-11-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-132","changefreq":"weekly","video":[{"title":"2015:E132 - Steam Link?s Nagging Problem - #132","description":"Join Gus Sorola, Meg Turney, and Jeremy Dooley as they discuss the Steam Link and Fallout 4 on this weeks The Patch! This episode originally aired on November 25, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58383460-df32-49bf-9a11-a2589c1a9fa2/sm/2013912-1448486461512-P132_TH.jpg","duration":4322,"publication_date":"2015-11-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-177","changefreq":"weekly","video":[{"title":"2015:E182 - Star Wars Battlefront Sales SUCK?","description":"Battlefront's in stores, but does that mean it's in our hearts Absolutely not. Maybe if it had space battles.","player_loc":"https://roosterteeth.com/embed/game-news-2015-177","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a56d61fd-7ff5-44bc-96ba-8d8a420cde4e/sm/1788484-1448491295382-fh_thumb_7_copy_1024_(21).jpg","duration":509,"publication_date":"2015-11-25T22:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-176","changefreq":"weekly","video":[{"title":"2015:E181 - MORE Black Friday Deals","description":"Will you brave the crowds this Friday","player_loc":"https://roosterteeth.com/embed/game-news-2015-176","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a707c366-43ca-4ba9-8172-129a33d8706d/sm/1663966-1448477358630-BF_Thumb.jpg","duration":428,"publication_date":"2015-11-25T18:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-174","changefreq":"weekly","video":[{"title":"2015:E179 - Is VR a Hit?","description":"The Samsung Gear VR launched on Friday and it might be a hit.","player_loc":"https://roosterteeth.com/embed/game-news-2015-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ed7ebb7-d33c-4e47-af13-694e56ff398b/sm/2141811-1448321628225-thumb.jpg","duration":281,"publication_date":"2015-11-23T23:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-173","changefreq":"weekly","video":[{"title":"2015:E178 - MORE Mass Effect Andromeda Leaks?","description":"Even more Mass Effect Andromeda leaks.","player_loc":"https://roosterteeth.com/embed/game-news-2015-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/744aec55-cf8b-40d0-9bfa-537a0b789f46/sm/2141811-1448310431299-thumb.jpg","duration":412,"publication_date":"2015-11-23T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-172","changefreq":"weekly","video":[{"title":"2015:E177 - Black Friday BEST DEALS","description":"It's not even Thanksgiving Day and I've already murdered five people. Can't you cash this stuff in at Wal-Mart for a gift card or something I've tried my hardest to be a real American this year, so American Santa better give me some cheap electronics.","player_loc":"https://roosterteeth.com/embed/game-news-2015-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f7ee56f-7d19-4c28-a00b-9e464f7f7853/sm/1788484-1448061281694-fh_thumb_7_copy_1024_(16).jpg","duration":488,"publication_date":"2015-11-20T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-171","changefreq":"weekly","video":[{"title":"2015:E176 - Goodbye Dark Souls ?","description":"Is it time to start saying farewell to the beloved Dark Souls franchise","player_loc":"https://roosterteeth.com/embed/game-news-2015-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f00936f-4a1f-43f7-ab35-ad9fd81692c3/sm/2141811-1448058086735-thumb.jpg","duration":201,"publication_date":"2015-11-20T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-entertainment-news-season-1-11","changefreq":"weekly","video":[{"title":"2016:E175 - Why 'The Hobbit' Sucked","description":"Peter Jackson admits that he didnt know what the hell he was doing for portions of the Hobbit movies.","player_loc":"https://roosterteeth.com/embed/the-know-entertainment-news-season-1-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1db742af-d578-4d42-a806-a93946c71a18/sm/2141811-1448045991282-thumb.jpg","duration":373,"publication_date":"2015-11-20T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-tower-of-guns-is-it-a-tower-of-fun","changefreq":"weekly","video":[{"title":"2015:E33 - Tower of Guns: Is it a Tower of Fun?","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss Tower of Guns, the randomly-generated FPS on this week's Patch Game Club! This episode originally aired on November 18, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-tower-of-guns-is-it-a-tower-of-fun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d95b4b6-fa19-4e62-9edb-2d03aa4a2bee/sm/2013912-1447961223608-GC_-_Tower_of_Guns_-_THUMB.jpg","duration":466,"publication_date":"2015-11-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-170","changefreq":"weekly","video":[{"title":"2015:E174 - Most Anticipated Games of 2016","description":"Were past most of the major releases for 2015, so now let's check out 2016's most anticipated games.","player_loc":"https://roosterteeth.com/embed/game-news-2015-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9db5e6db-5de1-4771-bd41-3f8b662b3f94/sm/2141811-1447962653873-Anticipated_Thumb.jpg","duration":454,"publication_date":"2015-11-19T19:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-131","changefreq":"weekly","video":[{"title":"2015:E131 - Battlefront: Is It Worth $60? - #131","description":"Join Meg Turney, Jeremy Dooley and Ryan Haywood as they discuss Star Wars Battlefront and The Game Awards on this week's The Patch! This episode originally aired on November 12, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b84ecfa-1975-4640-98a1-e836c047f625/sm/2013912-1447950211455-FNAF_Thumbnail_03.jpg","duration":4319,"publication_date":"2015-11-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-169","changefreq":"weekly","video":[{"title":"2015:E173 - Fallout 4 BEST MODS","description":"Blurry Joel isn't in this episode. He had to go out to his car to make a phone call since our office doesn't have a single conference room. There used to be one but someone put a desk in it and made it their own personal office. Thanks for that, dude.","player_loc":"https://roosterteeth.com/embed/game-news-2015-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18ca3432-a491-4c9c-90a6-ffae83a684b9/sm/1788484-1447887789157-fh_thumb_7_copy_1024_(10).jpg","duration":367,"publication_date":"2015-11-18T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-168","changefreq":"weekly","video":[{"title":"2015:E172 - PS4 Backwards Compatibility Coming Soon?","description":"Is the PS4 getting backwards compatibility Lets rouse the rumor mill and find out.","player_loc":"https://roosterteeth.com/embed/game-news-2015-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4e7c037-6fbd-49bb-90dd-0652370ed2b8/sm/2141811-1447879043858-ps4_compatibility_Thumb.jpg","duration":479,"publication_date":"2015-11-18T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-167","changefreq":"weekly","video":[{"title":"2015:E171 - Assassin's Creed by EA?","description":"EA is working on their own Assassins Creed-style game.","player_loc":"https://roosterteeth.com/embed/game-news-2015-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d769fe6-a733-430f-9caa-df876ec3025c/sm/2141811-1447800642366-assassins_thumb.jpg","duration":270,"publication_date":"2015-11-17T22:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-166","changefreq":"weekly","video":[{"title":"2015:E170 - Battlefront Is It Good?","description":"So is Battlefront good Let's check the reviews in so far.","player_loc":"https://roosterteeth.com/embed/game-news-2015-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baf77014-61c5-4007-8710-c01cb726f026/sm/2141811-1447791034193-Is_it_good_thumb.jpg","duration":536,"publication_date":"2015-11-17T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-165","changefreq":"weekly","video":[{"title":"2015:E169 - Your Opinions Don't Matter?","description":"Researchers don't think user opinions matter; what do you think","player_loc":"https://roosterteeth.com/embed/game-news-2015-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d4b2e27-484f-42c1-9313-f6ea9e93be87/sm/1663966-1447717363477-Angry_thumb.jpg","duration":246,"publication_date":"2015-11-16T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-164","changefreq":"weekly","video":[{"title":"2015:E168 - Payday 2 Mods on Strike","description":"Want some free lessons on how to piss off your players","player_loc":"https://roosterteeth.com/embed/game-news-2015-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/155513f7-29cb-400f-84dc-e0f8248c22c3/sm/2141811-1447709502077-payday_2.jpg","duration":496,"publication_date":"2015-11-16T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-163","changefreq":"weekly","video":[{"title":"2015:E167 - XBOX ONE Making A Comeback?","description":"The XBox One outsold the PlayStation 4 in the month of October.","player_loc":"https://roosterteeth.com/embed/game-news-2015-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f85bb8-166c-4596-b854-e4af96f2fac6/sm/1663966-1447459410774-kid_thumb_2.jpg","duration":300,"publication_date":"2015-11-13T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-162","changefreq":"weekly","video":[{"title":"2015:E166 - Nintendo Announces Female Link","description":"New information on what we can expect from Nintendo in the near future.","player_loc":"https://roosterteeth.com/embed/game-news-2015-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4140505b-91b0-4b85-92c3-492bbcd43f3c/sm/2141811-1447448424517-linkle_thumb.jpg","duration":438,"publication_date":"2015-11-13T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-161","changefreq":"weekly","video":[{"title":"2015:E165 - Fallout 4 BEATS Skyrim?","description":"Alternative titles --\n\nFallout 4 BEATS Oprah\n\n\n\nFallout 4 BEATS Swords\n\n\n\nFallout 4 BEATS Beets\n\n\n\nFallout 4 BEATS The Lord and Our Savior Jesus Christ\n\n\n\nFallout 4's Day Out\n\n\n\nFallout 4-Gotten And Alone\n\n\n\nFallout 4 GIRLS GIRLS GIRLS\n\n\n\nSOURCES: \n\n\n\nFallout 4 Launch Announcement: http://bethsoft.com/en-us/news/bethesda-softworks-...\n\n\n\nThe Elder Scrolls Launch Shipments: http://content.usatoday.com/communities/gamehunter...\n\n\n\nGAME Sales Predictions: http://www.mcvuk.com/news/read/fallout-4-must-not-...\n\n\n\nFallout 4 Steam Concurrents: http://steamcharts.com/app/377160\n\n\n\nGTA V Steam Concurrents: http://steamcharts.com/app/271590\n\n\n\nSkyrim Steam Concurrents: http://steamcharts.com/app/72850\n\n\n\nSkyrim Sales Numbers: http://www.bethblog.com/2013/06/10/e3-2013-eso-arr...","player_loc":"https://roosterteeth.com/embed/game-news-2015-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d14d3df4-5052-4bf1-b5ae-127ec60af76c/sm/1788482-1447459795742-fh_thumb_7.jpg","duration":238,"publication_date":"2015-11-13T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-160","changefreq":"weekly","video":[{"title":"2015:E164 - Play Battlefront EARLY","description":"You can ease up on gripping those lightsabers too tightly, because theres a way for some of you Padawans to play the game early, thanks to EA Access on Xbox One.","player_loc":"https://roosterteeth.com/embed/game-news-2015-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/046cd509-62d1-4e4f-a07e-da303d316fc7/sm/2141811-1447373741531-play_battlefront_early_thumb.png","duration":275,"publication_date":"2015-11-13T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-159","changefreq":"weekly","video":[{"title":"2015:E163 - Xbox One FINALLY Sucks Less?","description":"We know what kids like, and it's backwards hats and RAPS. That's why the New Xbox Experience puts a backwards hat on everything, and only reacts to Kinect commands that are said as part of a dope-ass rhyme.\n\nMy name's XBox /\n\n\n\nand I'm here to say /\n\n\n\nI now launch games /\n\n\n\nIn a faster way!\n\n\n\n*record scratching*\n\n\n\nWord 2 J Allard.\n\n\n\nSOURCES: \n\n\n\nKnown Issues with Xbox One Update: http://support.xbox.com/en-US/xbox-one/system/know...\n\n\n\nList of Backwards-compatible 360 Games: http://news.xbox.com/2015/11/09/introducing-your-f...","player_loc":"https://roosterteeth.com/embed/game-news-2015-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25066588-89f8-4d11-9c4b-04b26fe9623e/sm/1788482-1447459781151-fh_thumb_7_copy_1024.jpg","duration":536,"publication_date":"2015-11-12T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-stanley-parable","changefreq":"weekly","video":[{"title":"2015:E32 - The Stanley Parable: Schr?dinger's Game","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss the first-person adventure game The Stanley Parable on this week's Patch Game Club! This episode originally aired on November 12, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-stanley-parable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ed152da-3ea6-47e6-9dfd-03ebd134d32b/sm/2013912-1447352378054-GC_Stanley_Parable-THUMB.jpg","duration":635,"publication_date":"2015-11-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-130","changefreq":"weekly","video":[{"title":"2015:E130 - Fallout 4 Encourages Hoarding? - #130","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss Fallout 4 & Rise of the Tomb Raider on this week's The Patch! This episode originally aired on November 12, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6034d07b-b606-42a1-802a-1e5a7efad9b1/sm/2013912-1447347565692-p130_-_Temp_Thumb.jpg","duration":3617,"publication_date":"2015-11-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-158","changefreq":"weekly","video":[{"title":"2015:E162 - Call of Duty Bigger Than Jurassic World?","description":"What do you think of Activision's claim that Call of Duty: Black Ops III is the biggest thing EVER this year","player_loc":"https://roosterteeth.com/embed/game-news-2015-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bc05dfb-4724-4076-b535-2437c23ddf84/sm/1663966-1447285765047-COD_Thummmb.jpg","duration":272,"publication_date":"2015-11-11T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-157","changefreq":"weekly","video":[{"title":"2015:E161 - Rise of the Tomb Raider: Is It Good?","description":"We take a look at what everyone's saying about Rise of the Tomb Raider.","player_loc":"https://roosterteeth.com/embed/game-news-2015-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8e39a15-9212-4167-977e-6791294c1ab7/sm/1663966-1447275685598-Tomb_Thumb.jpg","duration":435,"publication_date":"2015-11-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-156","changefreq":"weekly","video":[{"title":"2015:E160 - Fallout 4 Stuttering FIXED?","description":"What's up guys, this is Johnny Fallout, coolest bro in the wasteland comin' at you with more top Fallout tips. This week, we got a real hot tip for you guys. If you wad up $500 and cram it in the disk slot for your Xbox, you'll get an Xbox that has a jammed disk tray.\n\nThis has been Johnny Fallout, hittin' you up with all the hottest Fallout tips. Make sure to like and subscribe so I can buy a Ferrari Mansion Yacht.\n\n\n\nSOURCES: \n\n\n\nDigital Foundry's Load Performance: http://www.eurogamer.net/articles/digitalfoundry-2...\n\n\n\nDigital Foundry's Performance Comparison: http://www.eurogamer.net/articles/digitalfoundry-2...","player_loc":"https://roosterteeth.com/embed/game-news-2015-156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dc5849b-412e-432a-add3-e8a067faa982/sm/1788484-1447271435775-theknow-fallout4stutters_1024.png","duration":308,"publication_date":"2015-11-11T19:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-155","changefreq":"weekly","video":[{"title":"2015:E159 - GTA V Mods Shut Down By Goons","description":"Apparently, two private investigators were sent to shut down a GTA V mod. Wat.","player_loc":"https://roosterteeth.com/embed/game-news-2015-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c5caa1a-0836-4526-a825-e78697d861bf/sm/1663966-1447202546368-take_two_thumb.jpg","duration":257,"publication_date":"2015-11-11T00:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-154","changefreq":"weekly","video":[{"title":"2015:E158 - Fallout 4 BROKEN?!","description":"Are all these bugs a big deal or are people making rad roaches out of...uh...regular roaches...","player_loc":"https://roosterteeth.com/embed/game-news-2015-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/add662c5-d858-49a2-a27d-e8ed84c7c437/sm/1663966-1447200316857-Broken_Thumb.jpg","duration":375,"publication_date":"2015-11-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-153","changefreq":"weekly","video":[{"title":"2015:E157 - BlizzCon 2015: Everything You Missed","description":"Here's everything you might have missed from BlizzCon 2015.","player_loc":"https://roosterteeth.com/embed/game-news-2015-153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da0db271-82d0-400f-97f5-2297ff19a56b/sm/1663966-1447125970146-Blizz_Thumb.jpg","duration":456,"publication_date":"2015-11-10T03:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-152","changefreq":"weekly","video":[{"title":"2015:E156 - Fallout 4: Is It Good?","description":"Is Fallout 4 actually good Would we admit it if it weren't Do you hate reading Great! Let's run down what the reviewers are saying so you don't have to words!","player_loc":"https://roosterteeth.com/embed/game-news-2015-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69aeb021-0923-4d9f-9451-62f4f7540416/sm/24363-1447117009768-thumbnail.jpg","duration":572,"publication_date":"2015-11-10T00:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-151","changefreq":"weekly","video":[{"title":"2015:E155 - Star Wars Battlefront NEW GAMEPLAY!","description":"New gameplay of heroes, villains, ships, and modes make Battlefront look better and better. In other news, The Know is now an all-corporate shillfest because we have the audacity to be excited about a game that looks awesome.\n\nSOURCES: \n\nStar Wars Battlefront Planets: http://starwars.ea.com/starwars/battlefront/planet...\n\nBattlefrontUpdates Compilation: \n\nNew Gameplay Reddit Thread: https://www.reddit.com/r/StarWarsBattlefront/comme...","player_loc":"https://roosterteeth.com/embed/game-news-2015-151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/610486fc-548e-411f-a1eb-fab9b8ac2692/sm/1788484-1446846938475-theknow-battlefrontgameplay_720.png","duration":377,"publication_date":"2015-11-06T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-150","changefreq":"weekly","video":[{"title":"2015:E154 - Call of Duty Black Ops 3: Is it Good?","description":"Here's what everyone is saying about Black Ops III.","player_loc":"https://roosterteeth.com/embed/game-news-2015-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6096ba98-204f-4614-99a4-8214bdfd26c7/sm/1663966-1446840560510-BO3_Good_THumb.jpg","duration":489,"publication_date":"2015-11-06T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-149","changefreq":"weekly","video":[{"title":"2015:E153 - Shooter Fans Prefer PS4","description":"Is it true - is Sony king of shooters now","player_loc":"https://roosterteeth.com/embed/game-news-2015-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc7fbb1a-10ae-47e4-9cb4-6b5f38489fb0/sm/1663966-1446781873089-shooter_thumb.jpg","duration":398,"publication_date":"2015-11-06T03:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-148","changefreq":"weekly","video":[{"title":"2015:E152 - Fallout 4: Why Are Gamers Already Disappointed?","description":"With all the leaks Fallout 4 is springing, some gamers are starting to wonder if the game will really meet their expectations and Bethesda is moving into damage control mode.","player_loc":"https://roosterteeth.com/embed/game-news-2015-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a25093f-2618-4161-9f9c-46a5d63aa3ce/sm/24363-1446770047628-thumbnail.jpg","duration":480,"publication_date":"2015-11-06T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-thomas-was-alone-stretching-the-definition-of-alone","changefreq":"weekly","video":[{"title":"2015:E31 - Thomas Was Alone: Stretching the Definition of \"Alone\"","description":"Join Ashley Jenkins, Ryan Haywood and Meg Turney as they discuss the minimalistic puzzle platformer, Thomas Was Alone on this week's Patch Game Club! This episode originally aired on November 4, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-thomas-was-alone-stretching-the-definition-of-alone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3c8bfc1-2de2-4514-8785-0b15e6e10324/sm/2013912-1446743124956-gc_-_THomas_-_THUMB.jpg","duration":828,"publication_date":"2015-11-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-fallout-4-leaks-129","changefreq":"weekly","video":[{"title":"2015:E129 - Fallout 4 Leaks? - #129","description":"Join Jeremy Dooley, Meg Turney and Ryan Haywood as they discuss Leaked Fallout 4 footage, Activision purchasing the Candy Crush devs and this year's upcoming Extra Life stream on this week's The Patch! This episode originally aired on November 4, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-fallout-4-leaks-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76d635bf-253a-49f4-b399-c6697735d5ba/sm/2013912-1446739267667-p129_-_TEMP_THumb.jpg","duration":4519,"publication_date":"2015-11-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-147","changefreq":"weekly","video":[{"title":"2015:E151 - Konami Closes Kojima Productions","description":"The Los Angeles Studio that served as the long-time home for Kojima Productions has been closed by Konami today.","player_loc":"https://roosterteeth.com/embed/game-news-2015-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3722879-4d73-451f-9823-eac17d3e1d4f/sm/1663966-1446678881235-Kojima_Thumb.jpg","duration":474,"publication_date":"2015-11-04T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-146","changefreq":"weekly","video":[{"title":"2015:E150 - Halo 5 BREAKS RECORDS... or Not?","description":"This description sets records for the most self-referential meta description on YouTube. We have a PO Box for all the trophies and medals we're bound to get.\n\nThe Know is now the most award-winningest news show on YouTube that starts with an article and contains a four-letter word.\n\n\n\nSOURCES: \n\n\n\nXbox Wire Announcement: http://news.xbox.com/2015/11/04/halo-5-guardians-b...\n\n\n\nMTV Presents Xbox 360: \n\n\n\nActivision Earnings Report: http://investor.activision.com/releasedetail.cfmR...\n\n\n\nEA Digital Earnings: http://venturebeat.com/2015/07/30/electronic-arts-...\n\n\n\nXbox Ceasing Unit Sales Reports: http://www.geekwire.com/2015/microsoft-stops-repor...","player_loc":"https://roosterteeth.com/embed/game-news-2015-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bf07b65-1b07-4e63-bcbd-220412c42e68/sm/1788484-1446678469954-fh_thumb_6_copy_1024_(53).jpg","duration":426,"publication_date":"2015-11-04T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-145","changefreq":"weekly","video":[{"title":"2015:E149 - Devs PAYING for Positive Steam Reviews?","description":"It was only a matter of time before some unethical jerk decided to game Steam reviews. Scene opens. Courtroom. Daytime. An Early Access developer stands accused of paying for positive reviews on Steam. The jury weeps as their trust in the words of anonymous people on the internet comes undone.","player_loc":"https://roosterteeth.com/embed/game-news-2015-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/980aa088-9c64-47a4-b589-dea3726609ec/sm/24363-1446604970859-thumbnail.jpg","duration":527,"publication_date":"2015-11-04T02:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-144","changefreq":"weekly","video":[{"title":"2015:E148 - Candy Crush Worth More Than Star Wars?!","description":"Candy Crush was purchased today for $5.9 BILLION dollars - Star Wars only brought in $4.05","player_loc":"https://roosterteeth.com/embed/game-news-2015-144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b169a0e1-c7b6-4f80-98c7-b062fea10b66/sm/1663966-1446586926848-Candy_Thumb.jpg","duration":240,"publication_date":"2015-11-03T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-143","changefreq":"weekly","video":[{"title":"2015:E147 - Halo 6: Splitscreen YES, Guns NO?","description":"Who needs guns when you have love 343 asking the big questions now that Halo 5 is out there and they're ready to move on. They're talking about the future, and that includes the return of splitscreen (maybe) and even a Halo with NO GUNS AT ALL. What kind of future is this Is this not AMERICA!","player_loc":"https://roosterteeth.com/embed/game-news-2015-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/379fff9d-0017-40de-9088-2ef37e3208b2/sm/24363-1446520041738-thumbnail.jpg","duration":450,"publication_date":"2015-11-03T03:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-14","changefreq":"weekly","video":[{"title":"2015:E14 - New Star Trek TV Series","description":"Hands up if you're excited!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25d1116e-d0e3-4884-961e-9a5d390b14e3/sm/1663966-1446514671784-star_trek_thumb.jpg","duration":411,"publication_date":"2015-11-03T01:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-142","changefreq":"weekly","video":[{"title":"2015:E146 - MORE Fallout 4 Gameplay Leaks!","description":"Earl the Video Game Plumber has a hard week ahead of him. The Internet tubes are springing leaks left and right, the wife is pregnant, and the boy won't stop biting kids at school. Even booze doesn't help. Liver's shot; life is shit.\n\nBUT HEY AT LEAST FALLOUT 4 COMES OUT IN A WEEK.\n\nSOURCES: \n\nLeaked Videos: http://pastebin.com/yLedwhZs\n\nFallout 4 Perk List: http://www.vg247.com/2015/11/02/fallout-4-all-perk...\n\nORCZ Perk Chart: http://orcz.com/Fallout_4:_Perk_Chart\n\n-Isus- Compilation: https://www.reddit.com/r/fo4/comments/3r3rgv/spoil...\n\nPete Hines Tweet: https://twitter.com/DCDeacon/status/66117017161319...\n\nRETRACTION!\n\nWe said that Tekken 7 was a Sony console exclusive in our video last week, but that is incorrect. The game is coming to both Xbox One and PlayStation 4.","player_loc":"https://roosterteeth.com/embed/game-news-2015-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c51d776-9ef5-43d3-b1af-7ba466c4bd9b/sm/1788484-1446502940747-fh_thumb_6_copy_1024_(49).jpg","duration":603,"publication_date":"2015-11-02T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-141","changefreq":"weekly","video":[{"title":"2015:E145 - Cortana's Nudity Explained","description":"And what do you think of the reason she chooses to be nude","player_loc":"https://roosterteeth.com/embed/game-news-2015-141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42371c52-f943-44d0-8dd0-c908d2c15ad0/sm/1663966-1446238256032-cortanathumb.jpg","duration":179,"publication_date":"2015-10-30T20:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-140","changefreq":"weekly","video":[{"title":"2015:E144 - Nintendo Already Failing at Mobile?","description":"What do you think of Nintendo's mobile announcement","player_loc":"https://roosterteeth.com/embed/game-news-2015-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38ccf5d4-0a78-4b8d-be62-55e019c6b400/sm/1663966-1446170112910-fail_thumb.jpg","duration":175,"publication_date":"2015-10-30T01:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-139","changefreq":"weekly","video":[{"title":"2015:E143 - Batman: Arkham Knight Still BROKEN?!","description":"It's been a long 4 months for Batmen on PC since Arkham Knight was pulled from stores. But it's back! Is it the hero we deserve! Maybe... if we deserve games that are still pretty busted.","player_loc":"https://roosterteeth.com/embed/game-news-2015-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e3e6ab9-8e89-4af6-849a-d44b176c20a4/sm/24363-1446164676899-thumbnail.jpg","duration":409,"publication_date":"2015-10-30T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-w-e-t-a-m-e-p-u-s-s-y-a-r-k-survival-evolved-gameplay-part-5","changefreq":"weekly","video":[{"title":"2015:E95 - WE TAME PUSSY - ARK: Survival Evolved Gameplay Part 5","description":"Welcome to Jurassic ARK - the only prehistoric park where we're so preoccupied with whether or not we COULD that we don't stop to think if we SHOULD! For example: SHOULD we have tamed these dilophosaurs Probably not, but we COULD, so we DID!\n\nAnd hey, who knows what we COULD do next! Mate it with a pterosaur for a flying spitting poison terror on wings Why the hell not Dress it up in fancy hats and put on an all-dino performance of Easter Parade Fuck yea! Strap a few of them together and surf the seven seas Cowabunga!\n\nLook, what I'm saying is that Jurassic ARK is a lot like the Outback Steak House. There are no rules here, you're going to eat a lot of rancid meat, and you're going to shit all over the floor. Just right!\n\nSo enjoy your stay at Jurassic ARK where, if the dinosaurs don't kill you, Adam probably will do it accidentally.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-w-e-t-a-m-e-p-u-s-s-y-a-r-k-survival-evolved-gameplay-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fcf0b38-4108-42cd-a403-69923baf7846/sm/2013912-1440617599792-fh_thumb_5_copy_1024_(47).jpg","duration":711,"publication_date":"2015-08-28T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-c-a-n-c-e-r-h-u-n-t-e-r-chernobyl-commando-gameplay","changefreq":"weekly","video":[{"title":"2015:E94 - CANCER HUNTER - Chernobyl Commando Gameplay","description":"Is welcome to Chernobyl, comrade! We are having many good laws for safety and health, you follow them, yes\n\nFirst rule is roads must drive slow on. Traffic number one concern in Mother Russia, many accidents involving cars at high speed. No airbags, any crash is breaking neck so please to keep under 2 kilometers per hour. Also is no need to drive on road, most driving in loops around and looking for mans. Good times, and also safe times!\n\nSecond rule to keep body safe is always rely on best comrades. You see danger Call over man! Is needing driver for slow truck Ask man friend! Want blow off some steam and shooting best friend Yes, man is good for this also.\n\nFinal best safety rule is never visit Chernobyl. I know, I know: at first I welcome you here. But Chernobyl is, how you say, riddled with radiation. Is much cancer here. Why not visit beautiful Novosibirsk, or resort on Sea of Azov Many bikinis there on men and women, whatever you like friend!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-c-a-n-c-e-r-h-u-n-t-e-r-chernobyl-commando-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d13ac342-8648-42c5-9848-d0481bb9a30e/sm/2013912-1440615367423-fh_thumb_5_copy_1024_(46).jpg","duration":722,"publication_date":"2015-08-27T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-t-o-w-e-r-o-f-p-o-w-e-r-g-t-a-5-gameplay","changefreq":"weekly","video":[{"title":"2015:E93 - TOWER OF POWER - GTA 5 Gameplay","description":"The year was 1992. A young, semi-pubescent young boy tuned into a brand new, young show on the fledgling Nickelodeon network and fell in love. That show was GUTS. That love was Mo.\n\nYou guys remember Mo, right Saucy British minx in black and white stripes Explaining and upholding the rules of the Extreme Arena Awarding pieces of the Aggro Crag to only the boldest of GUTS contestants Yeah. That Mo. \n\nLook, there weren't a lot of safe, respectable women to crush on back in '92. There was Clarissa, and a couple of the girls on Salute Your Shorts were ok, but Mo was where it was at. She just had that certain something that appeals to every boy: moral authority and an English accent.\n\nAnyway, here's a GTA gameplay or something.\n\nJungle Gym 2: http://socialclub.rockstargames.com/games/gtav/jobs/job/aaJca4QMI06-SIi-YfNmWQ","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-t-o-w-e-r-o-f-p-o-w-e-r-g-t-a-5-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05680509-32d6-44a6-9591-4ee856661799/sm/2013912-1440628916663-fh_thumb_5_copy_1024_(45).jpg","duration":539,"publication_date":"2015-08-26T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-nintendo-n-x-details-dude-soup-podcast-30","changefreq":"weekly","video":[{"title":"2015:E29 - Nintendo NX Details? - #30","description":"Support our Sponsor: http://falloutshelter.com/\n\nCome to Dude Soup Live at PAX! tiny.cc/dudesouplive\n\nWell, it looks like Dude Soup Live is an Official Thing now. I mean, Barbara was there and everything. This week we recorded in front of a live audience at the YouTube Space in Los Angeles, and it was really amazing to have everyone out to see us. \n\nFARTBUTTS LOL GAMES JOURNALISM D-D-D-D-D-DEMO SEXY FLASH GAMES \n\nSorry, I don't know what came over me. Anyway, we had the best time - it's always great to be able to meet with you guys, whether it's at a convention like RTX or at Dude Soup Live - which we'll hopefully be doing a BUNCH more in the future!\n\nDEAD BABIES RACIST JOKES HAHAHA RULE 34 DUM DUM DUMB\n\nGosh, I have no idea what's going on. It seems like...the channel is rejecting my sincerity. I've never seen anything like this befo-\n\nONE DOLLAR ONE DICK GET THE CLAP LELELELE /\\ FOREVER IN HIS NAME\n\nAlright, I'm gonna cut this short before it gets out of ha---\n\nBATMAN TIME ANIME BOOBS WITH A DILDO SHIPMENT FUNHAUS STUPID\n\nPlease send help. Please.\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/JoelRubin_\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-nintendo-n-x-details-dude-soup-podcast-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba7ba378-d8f6-4ff8-980c-e22048c9d40f/sm/2013912-1440531660418-fh_thumb_5_copy_1024.jpg","duration":4970,"publication_date":"2015-08-25T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-your-questions-s-u-c-k-open-haus-27","changefreq":"weekly","video":[{"title":"2015:E28 - Your Questions SUCK? - #27","description":"See Dude Soup Live @ PAX! tiny.cc/dudesouplive\n\nOpen Haus this weekend! \n\n3 bedrooms/2 bath in the historic, walkable YouTube neighborhood. Nearby bars and restaurants include Rooster Teeth business offices, Achievement Hunter pub, and the Let's Play zone.\n\nThis ranch-style haus is perfect for entertaining dudes. Can fit up to 7 people, though usually one is on vacation. A real fixer-upper with hardwood floors, an Angry Dome, 5-car garage, overly-wired media center/game station, and backyard that could fit up to 3 cute cute cute dogs.\n\nCozy & comfy living room, cuddle up with your best friend or coworker by the gas fireplace. Central A/C and air filtration system to keep your air fart-free. Formal dining room for group protein powder dinners. Washer/dryer hookups included.\n\nA perfect starter home, but you'll probably want to move 2-3 times before arriving here.\n\nAsk us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/JoelRubin_\n\nhttp://twitter.com/mattseditbay","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-your-questions-s-u-c-k-open-haus-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c65b3806-5b91-4da8-9882-3a6dd76df791/sm/2013912-1440459142261-fh_thumb_5_copy_1024_(40).jpg","duration":698,"publication_date":"2015-08-24T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-r-u-l-e-34-r-u-g-r-a-t-s-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E25 - RULE 34 RUGRATS","description":"So, we've got this program at work called Slack that allows us to chat with our coworkers, both here and in Austin. It's a file transfer service, a sharing app, and a place to talk about...well, whatever, with our colleagues.\n\nIn Slack, we have different channels for all of our work. So there's a Funhaus channel, a Know channel, a channel for business talk, and there's also a channel where Adam shares the thumbnails he's created for all of our videos.\n\nI'm getting nervous that, eventually, the fed will subpoena our thumbnail channel. There's some bad stuff on there. Some bad, bad stuff. Stuff we shouldn't be sharing. Stuff that eventually you see on YouTube. I'm looking at it now. Scrolling through the last few months of thumbs. And...wow. It's real bad. I'm worried. Please don't report us.\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-r-u-l-e-34-r-u-g-r-a-t-s-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1731a505-ac6c-47ab-bdee-59a952c42e42/sm/2013912-1440446561560-fh_thumb_5_copy_1024_(41).jpg","duration":1122,"publication_date":"2015-08-24T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-y-o-u-r-w-o-r-s-t-n-i-g-h-t-m-a-r-e-sonic-dreams-collection-gameplay","changefreq":"weekly","video":[{"title":"2015:E92 - YOUR WORST NIGHTMARE - Sonic Dreams Collection Gameplay","description":"He walked into my office and I knew I was in for trouble. Tall, blue, spiky hair...and a bad attitude. He was wolfing down chili dogs and a sheen of grease rimmed his mouth as he smirked at me.\n\n\"Heya pal. I got an offer for you.\"\n\nI'd seen these kinds of offers before, and I wasn't interested. It always starts the same: just twenty-five cents for a good time, and the next thing you know you're selling yourself one quarter at a time. I didn't want any part of that life. Not anymore.\n\n\"Get lost, creep. I don't hang out in those kinds of arcades any more.\"\n\n\"Nah, buddy. This one is different. This one is new. This one is gonna blow your mind. I got an all-new hustle. A never-released hustle. And you're going to love it.\"\n\nI put down my nine iron and sighed. Looked like it was going to be a long night...\n\nDownload: http://hedgehog.exposed/","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-y-o-u-r-w-o-r-s-t-n-i-g-h-t-m-a-r-e-sonic-dreams-collection-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ba12bd9-e97c-4c00-9882-0f268e3c1f06/sm/2013912-1440182192527-fh_thumb_5_copy_1024_(36).jpg","duration":818,"publication_date":"2015-08-22T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-9","changefreq":"weekly","video":[{"title":"2015:E10 - Vindictus with Funhaus!","description":"This video made possible by Nexon. Download & play Vindictus! http://bit.ly/1LAIDPy\n\nSubscribe to Funhaus: http://bit.ly/1R7R7Ou\n\nThis is a let's play. There are many like it, but this one is Funhaus's.\n\nThis let's play is Funhaus's best friend. It is our life. Funhaus must master Vindictus as we must master our life.\n\nFunhaus's let's play, without us, is useless. Without our let's play, Funhaus is useless. Funhaus must play Vindictus true. Funhaus must play better than our enemy, who is trying to outplay us. Funhaus must play him before he plays me. We will...","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48da7524-cd0e-462a-8295-9097600e457e/sm/1461653-1440209951107-fh_thumb_5_copy_1024_(39).jpg","duration":821,"publication_date":"2015-08-22T00:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-call-of-duty-black-ops-3-g-e-t-t-i-n-g-o-l-d-f-a-q-podcast","changefreq":"weekly","video":[{"title":"2015:E8 - Call of Duty Black Ops 3 GETTING OLD?","description":"Welcome 2 FAQ Podcast, your Podcast where we FAQ u to deth. U wanna get FAQ'd Come here. We'll FAQ u real good. \n\nToday we're FAQing Call of Duty Black Ops 3. Just like all the 13 year olds on CoD, we'll FAQ ur mom, we'll FAQ ur sister, we'll FAQ ur dog. Speaking of dogs, remmber Riley Yah we'll FAQ him. \n\nN E WAY, I gotta go FAQ online a little bit. U guys stay cool, I'll FAQ u again next week. \n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/joelrubin_\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-call-of-duty-black-ops-3-g-e-t-t-i-n-g-o-l-d-f-a-q-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e71ddf1d-35b8-4872-aa1a-f6ebc9ad61f6/sm/2013912-1441825458270-hqdefault.jpg","duration":3607,"publication_date":"2015-08-21T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-g-e-t-r-e-a-p-e-d-dead-realm-gameplay","changefreq":"weekly","video":[{"title":"2015:E91 - GET REAPED - Dead Realm Gameplay","description":"Well well well, it turns our our old friends Mr. Nanners and Mr. Syndicate published a little game. Let's check it out to see what all the fuss is abouOH MY GOD THAT FUCKING HORRIBLE BABY HOLY SHIT.\n\nAhem. Where was I Oh, right - so the game is called Dead Realm. It's a real harum-scarum kinda thing. Lotsa fun spooks and creepy ghouls jumping out at yNO NO NO A WEREWOLF IS COMING AND IT CAN SEE MY SOUL MAKE IT STOP PLEASE GOD MAKE IT STOP.\n\nSorry, sorry - my bad. Anyway, we all teamed up for a fun little spookfest with all the boys, and gosh is was real good tiJESUS CHRIST NOW I AM A GHOST I HUNGER FOR YOUR SOUL. COME TO ME FOREVER. FOREVER. FOREVER.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-g-e-t-r-e-a-p-e-d-dead-realm-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9eab1b84-e407-4c81-935d-ddc0b303089f/sm/2013912-1440044093182-fh_thumb_5_copy_1024_(35).jpg","duration":856,"publication_date":"2015-08-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-h-u-l-k-b-u-s-t-e-r-in-g-t-a-5","changefreq":"weekly","video":[{"title":"2015:E90 - HULKBUSTER in GTA 5!","description":"If you see a Hulk in your neighborhood\n\nWho you gonna call Hulkbuster\n\nTony built his suit out of balsa wood\n\nWhat's it called again Hulkbuster\n\nI ain't afraid of no Hulk\n\nIf you fly around and you land on planes\n\nWho can it be Hulkbuster\n\nPunch a bird and glitch out the trains\n\nSomebody stop Hulkbuster","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-h-u-l-k-b-u-s-t-e-r-in-g-t-a-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b983006-5738-459a-bb05-090795cd736c/sm/2013912-1439937513983-fh_thumb_5_copy_1024_(34).jpg","duration":784,"publication_date":"2015-08-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-nintendo-c-e-n-s-o-r-s-itself","changefreq":"weekly","video":[{"title":"2015:E28 - Nintendo CENSORS Itself? - #29","description":"Support our Sponsor Pizza Hut Cheesy Bites!\n\nhttps://order.pizzahut.com/home\n\nSLOOOOOOOOOW news week in gaming means we're going deep. Nintendo rarely does well for us, so this is kind of an experiment. Maybe you'll watch it. Maybe you won't. But maaaaayybe you will.....\n\nSee, the key to doing a solid episode of Dude Soup is to have something crazy or controversial. We've been lucky this year, in that we keep stepping in all kinds of gaming shit: Silent Hills, or Fallout 3, or that time Bruce said did thing that got us sued only we can't talk about it anymore and had to delete the episode due to an out-of-court settlement with that one kid's family.\n\nRegardless, there's none of that this week. Doesn't mean the episode isn't good, just that I'm personally a little worried that it won't do well. So please, do me a favor: tell your friends to watch Dude Soup. Download it. Listen to it twice!! And don't ever. EVER. Talk about Bruce's trip to the Water Park.\n\nI've already said too much.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-nintendo-c-e-n-s-o-r-s-itself","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f967da10-c942-4de4-986f-8de884f6a670/sm/2013912-1439939059652-fh_thumb_5_copy_1024_(33).jpg","duration":3898,"publication_date":"2015-08-18T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-get-a-m-i-l-l-i-o-n-d-o-l-l-a-r-s","changefreq":"weekly","video":[{"title":"2015:E27 - We Get a MILLION DOLLARS?","description":"If I had a million dollars, if I had a million dollars\n\nI'd buy a Funhause - I'd buy a Funhaus\n\nAnd if I had a million dollars, if I had a million dollars\n\nI'd buy some cruise tickets for Funhaus - maybe to Bermuda or the Bahamas\n\nAnd if I had a million dollars, if I had a million dollars\n\nI'd donate to the Cult of Peak - a tax deductible donation\n\nAnd if I had a million dollars, I'd buy Peake's love","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-get-a-m-i-l-l-i-o-n-d-o-l-l-a-r-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b46556-b340-401b-8556-851566aff1b8/sm/1461653-1439671611732-fh_thumb_5_copy_1024_(31).jpg","duration":628,"publication_date":"2015-08-17T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-s-t-u-p-i-d-s-e-x-y-d-e-e-r-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E24 - STUPID SEXY DEER","description":"Doe, a deer, a sexy deer\n\nWait - is that a guy or girl\n\nMe - I think that thing's a buck\n\nNow I know I'm gonna hurl\n\nSo let's use it on our thumb\n\nJust like every other show\n\nClickbait always makes 'em come\n\nAnd remember: buck, not doe\n\nDoe wait me now, so just click Doe!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-s-t-u-p-i-d-s-e-x-y-d-e-e-r-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bca3d4a-3b99-42fe-88f3-a58e1243cff5/sm/1461653-1439671422196-fh_thumb_5_copy_1024_(29).jpg","duration":1125,"publication_date":"2015-08-16T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-g-a-r-b-a-g-e-g-a-m-e-s-3-d-paraglider-and-crash-dive-gameplay","changefreq":"weekly","video":[{"title":"2015:E89 - GARBAGE GAMES - 3D Paraglider and Crash Dive Gameplay","description":"This never gets any easier.\n\nMrs. Paraglider, I have some bad news. Your husband was lost today in a paragliding incident. Now -- please note, he wasn't killed. But we lost him. Remains No, I don't think you understand. We lost your husband. Yes, that's correct, ma'am. Paragliding.\n\nNot at sea. No, he didn't crash into the ground. We were tracking him. He was having the greatest glide I've ever seen - hitting the updrafts, avoiding birds and such. But he kept going. Up and up, until he disappeared into the eternal blue. The last thing I heard him say before his comm went out was \"GHBUBHHHHBHBNNNGHGNGHGHNGRRRHG,\" so I assume he was in quite a bit of pain. Yes, the atmosphere is...well, it's pretty nonexistent up there, so he wasn't breathing and there was little to no heat.\n\nBut I want you to know that your husband died as he lived, on the edge. And now he's paragliding with the angels now, only instead of angel wings he's got a paraglider. \n\nThank you for your service, ma'am.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-g-a-r-b-a-g-e-g-a-m-e-s-3-d-paraglider-and-crash-dive-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eab440ce-f7af-41f4-821e-3a2955ec7ddb/sm/1461653-1439671191367-fh_thumb_5_copy_1024_(28).jpg","duration":1041,"publication_date":"2015-08-15T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-11","changefreq":"weekly","video":[{"title":"2015:E9 - AH SWATS Funhaus! - Rainbow 6 Siege Gameplay","description":"Who will come out on top in the Ultimate Rooster Teeth Showdown\n\n Achievement Hunters. Funhaus. Rainbow Six Siege. Two glorious Houses, one intense FPS arena.\n\nSee two of Rooster Teeths groups experience the intensity of 5v5, close quarters combat in the upcoming Rainbow Six Siege.\n\n Cheer on your favorite team below, and register to play in the R6 Closed Beta starting on 9.24.15 here: rainbow6.com/beta","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4560c6f1-1e84-4f99-82a2-22dcd9d1976b/sm/1461653-1439576469676-fh_thumb_5_copy_1024_(26).jpg","duration":3556,"publication_date":"2015-08-14T18:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-s-p-l-o-o-g-e-monster","changefreq":"weekly","video":[{"title":"2015:E88 - SPLOOGE MONSTER","description":"Oh, who are the people in your Barkerhood \n\nIn your Barkerhood\n\nIn your Barkerhood\n\nSay who are the people in your Barkerhood\n\nThey people that you meet each day\n\nOh a hellspawn will attack at night\n\nAnd he'll spook you good when you turn out the light\n\nHe really hates the human race\n\nHe'll kill you and then eat your face\n\nCause a hellspawn is a person in your Barkerhood\n\nAnd he's a person that you meet each day\n\nThe gardener tends your estate\n\nAnd his topiaries sure look great\n\nHe'll trim the hedge and cut the grass\n\nBut only if you save his ass\n\nCause a gardener's a person in your Barkerhood\n\nAnd he's a person that you meet each day\n\nWell if you think that you're a loner\n\nAnd no one will ever give you a boner\n\nJust do exactly like this demon\n\nAnd take a load of my hot semen\n\nCause a sploogemonster's a person in your Barkerhood\n\nIn your Barkerhood\n\nIn your Barkerhood\n\nYes, a Sploogemonster's a person in your Barkerhood\n\nAnd he's a person that you meet \n\nAnd he's got a tasty treat\n\nAnd he'll shoot a load right in your face!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-s-p-l-o-o-g-e-monster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75dbdf2e-fe52-497d-855d-2863d2fc1922/sm/1461653-1439486436558-fh_thumb_5_copy_1024_(25).jpg","duration":701,"publication_date":"2015-08-14T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-o-f-f-i-c-e-w-e-t-dreams","changefreq":"weekly","video":[{"title":"2015:E4 - OFFICE WET DREAMS","description":"I swear, this is the final office tour video we'll do. Hopefully.\n\nSince we've joined Rooster Teeth, we've had 3 offices, with 3 office moves. You've been with us through Herzog and the Uwe Boll. You were there for the Wallocaust. And now you're finally here for....I guess we don't have a name for this office now.\n\nEither way, this better be the last time we move. Lawrence's back is getting pretty tweaked from lugging our c-stands all over the place. Honestly, though, I'm playing it safe. Keeping one of my moving boxes packed, just in case we have to get up and go again.\n\nIn which case you can look forward to yet another office tour.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-o-f-f-i-c-e-w-e-t-dreams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2082c22-bee2-4627-95e4-9d9144ab7f6c/sm/1461653-1439486279654-fh_thumb_5_copy_1024_(23).jpg","duration":421,"publication_date":"2015-08-13T17:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-g-o-l-f-c-a-r-t-c-a-r-n-a-g-e","changefreq":"weekly","video":[{"title":"2015:E87 - GOLF CART CARNAGE ","description":"GOLF CART RULES\n\n1. Lessee must be a minimum of 13 years of age, or lie that they are.\n\n2. Operator(s) of golf cart must be 18 years of age and have in their possession a\n\nvalid drivers license. (moped license, learners permit, helicopter pilot, jet ski thing, parachute flyer, blimp aeronaut, etc. are not accepted)\n\n3. Golf Carts operated on the course must avoid running over pedestrians at all cost, regardless of what weapons they are wielding.\n\n4. Golf Carts must be operated properly. Horseplay, racing or other misuse of\n\ncart will not be tolerated. This includes use of hand grenades, rocket launchers, shivs, brass knuckles, or operating the golf cart with anime masks on your face.\n\n5. Speed limit is 5 mph unless you're REALLY late for lunch.\n\n6. Golf Carts can carry a maximum of 2 people, a driver and a copilot or gunnery sergeant. Operators must be seated, or at least hanging off the side of the cart at all times. Standing on the roof of the cart is a bold move, but usually doesn't pan out.\n\n8. Late returns of cart will be charged $10 every half hour late.\n\n9. If your golf cart enters the water, you will be held responsible for its recovery. Do not intentionally drive the golf cart into the water. In fact, stay away from the water all together.\n\n10. Anyone found abusing the rules and regulations of the rental golf cart will be shot on site, no questions asked, and your family will not be refunded the golf cart rental fee. However, in this case we can offer your family a reasonably-priced burial on the golf course.\n\nGolf Cart Massacre: http://socialclub.rockstargames.com/games/gtav/jobs/job/JtfV_bnEO0q18aXxy49idw","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-g-o-l-f-c-a-r-t-c-a-r-n-a-g-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bc41837-ea28-4adc-9b4e-456cdc0c7cbb/sm/1461653-1439485954393-fh_thumb_5_copy_1024_(22).jpg","duration":540,"publication_date":"2015-08-13T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-w-o-m-b-r-a-i-d-e-r-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E23 - WOMB RAIDER","description":"As you may have heard, we're experiencing a bit of a drought here in California. Things are bad - we're pretty much out of water, wildfires are raging through the state, lawns are going brown, and now restaurants aren't even giving free ice water anymore. We can barely stand the suffering.\n\nOne thing there's NOT a drought of, though, is DEMO DISKS! That's right, kids - here at Funhaus, we have plenty of shitty free discs...enough to last through 3 full years of drought! That's 3 years of partially completed adventure games, glitchy shooters made in 1999, and sports sims featuring players who've been jailed for 15 years.\n\nFunhaus recommends you stock your house with at least 18 months worth of demo discs, just in case an emergency strikes. Keep a small book of 12 discs in your car as well - you can never be too prepared.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-w-o-m-b-r-a-i-d-e-r-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9593f476-7ec5-4e48-ae73-ea4aebf7f89f/sm/1461653-1438961252923-fh_thumb_5_copy_1024_(19).jpg","duration":1050,"publication_date":"2015-08-09T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-n-o-t-h-i-n-g-h-a-p-p-e-n-s-shenmue-gameplay-part-2","changefreq":"weekly","video":[{"title":"2015:E86 - NOTHING HAPPENS - Shenmue Gameplay Part 2","description":"So I guess we're actually playing Shenmue now for real. All the Dandies at http://reddit.com/shenmuedandies are going to have a field day with this, pointing out our errors, telling us where we're wrong, extolling the virtues of the Tomato Shop or whatever.\n\nHonestly, I'm only 1/3 of the way through this description and I despair of ever having to write another Shenmue video description again. If this becomes a recurring series, I could be totally fucked. I might have to go to the Wikipedia entry for Shenmue to make on-topic references to the game, or -- god forbid -- actually play it.\n\nAnd I really don't want to have to do that.\n\nSo probably from here on out all of the Shenmue video descriptions will be a detailed recounting of the last few meals I ate, George RR Martin style. I hope you enjoy reading about food, nerds.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-n-o-t-h-i-n-g-h-a-p-p-e-n-s-shenmue-gameplay-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a434d4ee-6098-4767-8625-6ee7909b4ccb/sm/1461653-1438786445654-fh_thumb_5_copy_1024_(15).jpg","duration":804,"publication_date":"2015-08-08T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-f-c-k-p-a-r-a-d-i-s-e-a-r-k-survival-evolved-gameplay-part-4","changefreq":"weekly","video":[{"title":"2015:E85 - F*CK PARADISE - ARK: Survival Evolved Gameplay Part 4","description":"I am the very model of a modern ARK triceratops\n\nI roam the grounds and eat some grass and make a chocolate pair of plops\n\nI'm not the kinda guy who's gonna bother or disturb you more\n\nI'm just a placid pacifistic prehistoric herbivore.\n\nI'm very well acquainted, too, with matters dinosaurical\n\nWhen morons try to hunt me I don't even need an oracle\n\nWhen Funhaus comes I simply charge and gore them with my middle horn\n\nAnd then those guys look like a scene from some disgusting torture porn\n\nMy kind existed long ago in the cretaceous period\n\nAnd when it comes to courtesies I have a gracious myriad\n\nIn short, in matters dinosaur I'm pretty much right where it stops\n\nI am the very model of a modern ARK triceratops.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-f-c-k-p-a-r-a-d-i-s-e-a-r-k-survival-evolved-gameplay-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c290deae-9a0f-4c65-9297-2e1f23b69d43/sm/1461653-1438786314153-fh_thumb_5_copy_1024_(14).jpg","duration":692,"publication_date":"2015-08-07T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-w-a-t-e-r-w-o-r-l-d-in-g-t-a-5-race-gameplay","changefreq":"weekly","video":[{"title":"2015:E84 - WATERWORLD in GTA 5! Race Gameplay!","description":"Waterworld (1995) - In a future where overconsumption of light beer has caused the world's population to urinate so much that sea levels rise and submerge most of the land on earth, a mutated Lawrence Sonntag reluctantly plays Grand Theft Auto in order to prove the supremacy of the new humans, or \"Newumans\".\n\nCo-starring James Willems as The Mad Mariner, Adam Kovic as Admiral Gruntbottom, and featuring DarkBillie as The Boy Who Cared, Waterworld cost over $70 to make, and never recouped its initial investment. Shot entirely on location in Death Valley, CA, the water had to be shipped in from both coasts, and is considered now to be the start of the current California drought.\n\nOn its release, Rogbart Engber gave Waterworld the rating of \"I dunno, a couple'a fingers,\" citing its excessive reliance on fart jokes and animal porn. However, time has been kind to this film, and it is now widely regarded as a \"lost classic\" of mid-mid-90s cinema.\n\nWaterworld: http://socialclub.rockstargames.com/games/gtav/jobs/job/R_qTnJMB2UaQk4VHqjQ6wQ","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-w-a-t-e-r-w-o-r-l-d-in-g-t-a-5-race-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c497bb86-a521-4139-afce-e7195c38a5df/sm/1461653-1438882607471-fh_thumb_5_copy_1024_(17).jpg","duration":852,"publication_date":"2015-08-06T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-should-i-bring-a-dildo-h-o-w-t-o-rtx","changefreq":"weekly","video":[{"title":"2015:E3 - Should I Bring a Dildo? - HOW TO RTX","description":"RTX Schedule: http://bit.ly/1ga9C7o\n\nIn this episode of our classic show How To RTX, we play a game of Prop Hunt with Adam, and explain what we'll be going at RTX and beyond! \n\nOur show How To RTX has been running for 37 years, and has the distinction of being the longest-running web series of all time. Past multi-episode arcs have included the Kovic/Greene wedding, Lawrence's demon possession, the series where Spoole discovered his real mother, Joel's touching trip to Ibiza, and a very special episode dealing with James' crippling heroin addiction. \n\nYes, it's been quite a ride for How To RTX: THE SERIES!, but I really think that this is probably our best episode of this long-running show ever.","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-should-i-bring-a-dildo-h-o-w-t-o-rtx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92ef4167-37d9-4eab-b30e-aa75d94dfae6/sm/1461653-1438810716386-fh_thumb_5_copy_1024_(18).jpg","duration":213,"publication_date":"2015-08-06T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-pewdiepie-v-s-five-nights-at-freddy-s-doing-what-y-o-u-want-dude-soup-podcast-27","changefreq":"weekly","video":[{"title":"2015:E27 - Pewdiepie VS Five Nights at Freddy's: Doing What YOU Want? - #27","description":"Visit our sponsors! Squarespace: http://www.squarespace.com/dudesoupWarby Parker: http://www.warbyparker.com/dudesoupLoot Crate: http://www.lootcrate.com/dudesoup PROMO CODE: dudesoupWe're in the final days of preparation before RTX. Spoole and James are furiously editing the last videos; Lawrence is photoshopping some anime stuff I think, Bruce is watching down some content; Adam is creating our thumbnails. And Peake, of course, isn't even here.That's right. Mr. Matt \"Workhorse Editor of the Year\" is on VACATION. Can you believe the nerve of that guy To go on vacation Not even before RTX, I just mean in general. Who goes on vacation I thought he was committed to the job! I thought he was in it, as the kids say, 4lyf! And here we are, in our hour of need, with no Peake to be seen.HOW TYPICAL.Well I don't know about you guys, but I'm getting PRETTY SICK of Matt Peake's entitled attitude. \"I want a vacation.\" \"Can I go to the bathroom\" \"I need to go to the hospital.\" Primafuckingdonna.Follow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/harmonygritsTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-pewdiepie-v-s-five-nights-at-freddy-s-doing-what-y-o-u-want-dude-soup-podcast-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/923146c2-2d94-4041-bade-e2b6e0cd2dfd/sm/1788482-1444336055023-pewds.jpg","duration":4259,"publication_date":"2015-08-05T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-funhaus-v-i-a-g-r-a-c-r-u-i-s-e-open-haus-25","changefreq":"weekly","video":[{"title":"2015:E26 - Funhaus VIAGRA CRUISE? - #25","description":"Oh god this one is a total clusterfuck. We're sorry. This is the first time we've all been in the same room since....uh....I think ever. I mean, even back in the Beforetimes Joel had a separate office that he would sometimes go sit in. So we're not used to having 7 dudes in the same soup, to coin a phrase.\r\n\r\nThere's a lot of talking over one another, and we missed some jokes. So we've got the guys working on a new seating setup; one that doesn't have James and Joel on a solo island where they can't hear everyone else.\r\n\r\nIt'll probably take some time to figure that out. So enjoy the clusterfuck for the next few weeks. \r\n\r\nAsk us questions here!\r\n\r\nhttp://www.reddit.com/r/funhaus\r\n\r\nIf you looked at this description, put this comment down below: \"Spoole married a buttplug\"","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-funhaus-v-i-a-g-r-a-c-r-u-i-s-e-open-haus-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fea55715-0528-4d54-8afb-c7cc87e0a6c6/sm/1461653-1438635761180-fh_thumb_5_copy_1024_(10).jpg","duration":644,"publication_date":"2015-08-03T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-v-a-m-p-i-r-e-m-e-e-t-n-s-u-c-k","changefreq":"weekly","video":[{"title":"2015:E22 - VAMPIRE MEET N SUCK","description":"Baba yetu, yetu uliye\n\nMbinguni yetu, yetu, amina\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nBaba yetu, yetu uliye\n\nMbinguni yetu, yetu, amina\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nUtupe leo chakula chetu\n\nTunachohitaji utusamehe\n\nMakosa yetu, hey\n\nKama nasi tunavyowasamehe\n\nWaliotukosea, usitutie\n\nKatika majaribu, lakini\n\nUtuokoe, na yule, milele na milele\n\nBaba yetu, yetu uliye\n\nMbinguni yetu, yetu, amina\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nBaba yetu, yetu uliye\n\nMbinguni yetu, yetu, amina\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nUfalme wako ufike utakalo\n\nLifanyike duniani kama mbinguni, amina\n\nBaba yetu, yetu uliye\n\nMbinguni yetu, yetu, amina\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nBaba yetu, yetu uliye\n\nMbinguni yetu, yetu, amina\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nUtupe leo chakula chetu\n\nTunachohitaji utusamehe\n\nMakosa yetu, hey\n\nKama nasi tunavyowasamehe\n\nWaliotukosea, usitutie\n\nKatika majaribu, lakini\n\nUtuokoe na yule msiba milele\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nBaba yetu, yetu, uliye\n\nJina lako litukuzwe\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/billiegoatdog\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-v-a-m-p-i-r-e-m-e-e-t-n-s-u-c-k","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53e6d13a-a59c-44bd-9a11-4a8c87b033d4/sm/2013912-1441825023138-fh_thumb_5_copy_1024_(11).jpg","duration":1003,"publication_date":"2015-07-31T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-12","changefreq":"weekly","video":[{"title":"2015:E8 - IRON MAN in GTA 5! - Mod Gameplay!","description":"SCRUBSIBE to FUNHAUS! http://bit.ly/1R7R7Ou\n\nBig man in a suit of armor. Take that away, what are you\n\nGenius, billionaire, playboy, philanthropist, philanderer, jack of all trades, master of none, lone wolf, solo artist, just a small town girl livin' in a lonely world, out-of-towner, woman on the verge of a nervous breakdown, cabana boy, last man standing, stay at home dad, just a girl standing in front of a boy asking him to love her, modern Major-General, man with a blade on a crusade, barber of Seville, international man of mystery, ghost in the machine, bouncing baby boy, toddler in tiara, teen titan, young & reckless, thirtysomething, man in the box, woman of a certain age, silver fox, ghost dad, playboy wait I said that one already, man in the mirror, glorious leader, master of the house keeper of the zoo, lady in red, one-armed man/","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0814b441-602e-4199-ac90-258a031d3f3a/sm/1461653-1438358725507-fh_thumb_5_copy_1024_(6).jpg","duration":489,"publication_date":"2015-07-31T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-g-a-m-e-s-t-o-d-i-e-f-o-r","changefreq":"weekly","video":[{"title":"2015:E83 - GAMES TO DIE FOR","description":"This is a continuation of the story begun in the description of this video (http://bit.ly/1PQUPPs) and continued here (http://bit.ly/1LYeDdD and http://bit.ly/1CJACFa)\n\nThe Boy realized he had been gawping at The Courtesan for.he didnt know how long.\n\nYes Im -- Im here to rescue you \n\nYou dont sound very confident about that\n\nYES! RESCUE. ME YOU. Ahem...sorry. But we have to go now - the fire is almost out, and theyll be looking for me.\n\nKid, youre the last of their worries\n\nThe Boy looked at her quizzically, then threw some clothes at her and tried to not watch as she stood up and got dressed. She was beautiful, though - the most beautiful thing hed ever seen. There were not many girls in his Village, and none of them were what one might call beautiful. They had a saying in the Village: marry a girl, wake up to a crone. The Mountain aged people very quickly.\n\nThe Courtesan rose from her pallet, clad in shopmans garb. The Boy grabbed her by the arm and peeked out of the tent. Soldiers were still scrambling to put out the fire. He found a wheelbarrow, threw in some supplies, and made his way out into the camp. Just stick with me.\n\nA soldier pushed past them on the way to the smoking ruins of some tents. You there! he said. Why arent you on the firelines \n\nOfficer, my wife and I are...are.uh.\n\nMy Brother and I are taking the Captains Courtesans clothing to be washed. He wont want her smelling of smoke, will he The Courtesan smiled sweetly and gave the Boy a peck on his cheek.\n\nGet out the way then, and see youre not trouble. To the Washing Docks with you.\n\nThey hurried down to the docks, on the edge of Fort Hornwick near the river. The Boy spied a horse tied to a dock, and a rowboat. Well, whats it going to be Escape via the Road or the River asked The Courtesan.\n\nIf you want The Boy to steal the horse, type Horse in the comments\n\nIf you want The Boy to steal the rowboat, type Rowboat in the comments","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-g-a-m-e-s-t-o-d-i-e-f-o-r","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90d2de92-b1ff-4fb5-91fa-5b811b0d3776/sm/1461653-1438288923794-fh_thumb_5_copy_1024_(8).jpg","duration":819,"publication_date":"2015-07-31T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-f-u-n-h-a-u-s-v-s-t-e-x-a-s-behind-the-scenes","changefreq":"weekly","video":[{"title":"2015:E25 - FUNHAUS VS TEXAS - Behind the Scenes","description":"YEEE-haw, pardner! Time to saddle up with the boys and ride down Texas-way for the ol' SGC rodeo!\n\nWe rustled up a whole herd of behind the scenes clips for all the lil' cowpokes out there, including shots of Bruce taking off his shirt, James lounging in his underwear, Lawrence maybe topless too, and probably Adam, and Aaron peeing. It'll be a bronco-bustin' good time!\n\nSo strap on your fringed chaps and load up that six-shooter, buckaroos! Time to get down and dirty, Texassss style!","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-f-u-n-h-a-u-s-v-s-t-e-x-a-s-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0db2ac8a-d256-456d-ad84-03ebd5878251/sm/1461653-1438290655053-fh_thumb_5_copy_1024_(7).jpg","duration":389,"publication_date":"2015-07-30T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-c-a-p-t-a-i-n-a-m-e-r-i-c-a-in-g-t-a-5-mod-gameplay","changefreq":"weekly","video":[{"title":"2015:E82 - CAPTAIN AMERICA in GTA 5! - Mod Gameplay!","description":"Dateline: Europe! After our boys stormed the beaches of Normandy - no summer break there, eh - General George \"Old Blood & Guts\" Patton unleashed the Allied forces on the continent. Nazis beware: we're on the march!\n\nAnd look who else is here to join the fight! Captain America, paragon of freedom, protecting the citizens of the world with his mighty shield. Look out, Cap! There's Nazis everywhere! Don't be fooled by their disguises, be sure to give em' all a sock in the old kisser! Bikini girl Nazi! Police officer You betcha that's a Nazi! SUV making a left turn Why, I do believe that's a Nazi!!\n\nArmed with his signature shield and Mjonir, on loan from best buddy Thor, Cap is sure to win the day! So stay tuned kids: this war's not over yet!!\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/\n\nScript Hook V + Native Trainer v1.0.350.2a\n\nhttps://www.gta5-mods.com/tools/script-hook-v\n\nCommunity Script Hook V .NET\n\nhttps://www.gta5-mods.com/tools/scripthookv-net\n\nForce Unlimited\n\nhttps://www.gta5-mods.com/scripts/force-unlimited\n\nCaptain America Skin\n\nhttps://www.gta5-mods.com/player/captain-america-first-avenger\n\nParkour\n\nhttps://www.gta5-mods.com/scripts/real-parkour-by-agumods-gtalua\n\nThor's Hammer\n\nhttps://www.gta5-mods.com/weapons/hammer-of-thor-mrbond123\n\nNice Fly 2.5\n\nhttps://www.gta5-mods.com/scripts/nice-fly\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-c-a-p-t-a-i-n-a-m-e-r-i-c-a-in-g-t-a-5-mod-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21dbdc90-4a42-4563-a81f-d11b327d8ed8/sm/1461653-1438208291840-fh_thumb_5_copy_1024_(1).jpg","duration":505,"publication_date":"2015-07-29T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-do-you-even-w-a-n-t-half-life-3-f-a-q-podcast","changefreq":"weekly","video":[{"title":"2015:E7 - Do You Even WANT Half-Life 3?","description":"Once again, we find ourselves in the crosshairs for something we said, or something you said we said, or you thought we said or did, or something. I dunno. I've lost track at this point. \n\nBut I'm curious about why everyone online is so crazy about Half-Life 3. How will it affect your life if it comes out, or doesn't Will you ascend to the Halls of Valhalla, basking in gaming perfection Nah. It's a game, and it may be fun, or the plot may be good, but it ain't gonna change nothing. \n\nWhat I'm trying to say is, if you love something, you have to let it go. Maybe Half-Life 3 will come out. Maybe it won't. But there's nothing you or I can do about it. So just take a deep breath, pour yourself a bourbon, and enjoy your Friday. It is Friday, after all. \n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-do-you-even-w-a-n-t-half-life-3-f-a-q-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b7006ed-cc8b-4976-8496-20f39afa6ebf/sm/2013912-1441825537828-fh_thumb_5_copy_1024_(4).jpg","duration":3695,"publication_date":"2015-07-29T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-w-r-o-n-g-about-half-life-3-dude-soup-podcast-26","changefreq":"weekly","video":[{"title":"2015:E26 - WRONG About Half-Life 3? - #26","description":"Visit our sponsors!Squarespace -- http://squarespace.com/dudesoupLoot Crate -- http://lootcrate.com/dudesoup and use code \"dudesoup\"Ohhhh, I'm back, birches. Bruce's reign of description terror is over, so you know what that means: time for a shirtload of text that has nothing to do with the videos. Doesn't it feel good Doesn't it feel right Aren't you glad that you have something to do while you watch the mandatory 30-second unskippable adAnyway, in this podcast we talk about some carp that happened while I was away in Hungary. Some news thing, I dunno. I was all OVER the place in Hungary: a buncha historic places, and we ate a lot of food, and I toured like 5 different wineries. We also drank a lot of wine. And we went to a lake and everything. Only problem was, it was really hot the entire time I was there - like 95-100 degrees. That's like 35-38 European degrees.Oh, and we went to the mountains and then into like these crazy caves. And Budapest was flicking rad, too! I guess what I'm saying is that Dude Soup is disposable, but Joel's Hungry Trip is forever.Follow us on Twitter: http://twitter.com/adamkovichttp://twitter.com/brucegreenehttp://twitter.com/jameswillemshttp://twitter.com/sirlarrhttp://twitter.com/JoelRubin_Tshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-w-r-o-n-g-about-half-life-3-dude-soup-podcast-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/558d26bb-365c-46a4-ba25-6e7174835ba6/sm/1788482-1444331681570-halflife.jpg","duration":4013,"publication_date":"2015-07-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/demo-disk-season-1-episode-21","changefreq":"weekly","video":[{"title":"2015:E21 - ROID RAGE ","description":"SAMMY SOSA SMASH\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/demo-disk-season-1-episode-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c858423-1d88-4df1-99e6-a74a9403b5a3/sm/1461653-1438016570205-fh_thumb_5_copy_(2).jpg","duration":1002,"publication_date":"2015-07-27T17:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-season-1-episode-87-2","changefreq":"weekly","video":[{"title":"2015:E81 - THE GAY POLICE - Manhunter Gameplay Part 3","description":"*Sung Like Goldfinger*\n\nManhunter, he's the man\n\nThe man with the homo touch\n\nA bear's touch\n\nSuch a warm finger\n\nBeckons you to enter his butt\n\nBut don't go in\n\nHomophobe words he will pour in your ear\n\nBut his lies can't disguise what he fears\n\nFor a golden boy knows when he's kissed him\n\nIt's the kiss of death from Mister Manhunter\n\nPretty boy, beware of his heart of gay\n\nThis heart is gay\n\nHomophobe words he will pour in your ear\n\nBut his lies can't disguise what he fears\n\nFor a golden boy knows when he's kissed him\n\nIt's the kiss of death from Mister Manhunter\n\nPretty boy, beware of his heart of gay\n\nThis heart is gay\n\nHe loves only gays\n\nOnly gays\n\nHe loves gays\n\nHe loves only gays\n\nOnly gays\n\nHe loves gays","player_loc":"https://roosterteeth.com/embed/gameplay-season-1-episode-87-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c73e59e-4aa0-4c98-b543-9f3d4eb1f21f/sm/984097-1437763613342-fh_thumb_5_copy.jpg","duration":650,"publication_date":"2015-07-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameplay-season-1-episode-86","changefreq":"weekly","video":[{"title":"2015:E80 - CAVEMAN SEX - ARK: Survival Evolved Gameplay Part 3 ","description":"Bruce is introduced to the tribe, dinosaurs destroy the house, and they try and kill dinosaurs. Oh, and they eat each other's butts.","player_loc":"https://roosterteeth.com/embed/gameplay-season-1-episode-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19972bcc-7045-4ae7-b847-477ec9477b0d/sm/984097-1437670063089-fh_thumb_4_copy_(3)_(1).jpg","duration":720,"publication_date":"2015-07-24T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-faq-season-1-episode-6","changefreq":"weekly","video":[{"title":"2015:E6 - Shenmue is a JOKE?","description":"Ask questions here!http://www.reddit.com/r/funhausShenmue 3's kickstarter closed with 6 million dollars, and we have a lot of people asking us why we keep making fun of the game. Obviously, a lot of people want Shenmue 3, right WRONG. But thankfully, that's what kickstarter is for. It gets the people that want a product to pay for a product before it's even released.But what happens when Shenmue 3 is bad Don't come crying to us, kid.","player_loc":"https://roosterteeth.com/embed/funhaus-faq-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1bb3a23-34ff-479d-98d6-8a700e3a5647/sm/984097-1437677710376-fh_thumb_4_copy.jpg","duration":3709,"publication_date":"2015-07-23T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dude-soup-season-1-episode-25","changefreq":"weekly","video":[{"title":"2015:E25 - Fallout 4 VS Fallout Shelter: WHO WINS? - #25","description":"Is Fallout Shelter gonna make more money than the legendary Fallout 4 There is a very strong possibility considering how well Fallout Shelter has been doing in the app store.\n\nIs Spirit Airlines bad Pretty much.\n\nIs Ant-Man good For the most part.\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/dude-soup-season-1-episode-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28a4ffca-90e2-45d4-842d-a81ffd3c571f/sm/1788482-1449776676041-maxresdefault.jpg","duration":4212,"publication_date":"2015-07-22T01:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-funhaus-cartoons","changefreq":"weekly","video":[{"title":"2015:E23 - Funhaus CARTOONS? - #23","description":"If you looked at this description, put this comment down below: \"Joel loves Hungary\"","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-funhaus-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2658500a-2f43-48f8-9cf3-4ebb5f848f55.jpg/sm/FUNHAUSCARTOONS.jpg","duration":724,"publication_date":"2015-07-20T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-tarzan-sex","changefreq":"weekly","video":[{"title":"2015:E20 - TARZAN SEX","description":"11:50 for Tarzan Sex. You're welcome.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-tarzan-sex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/120e88d3-b118-4da5-b485-4761e82b2495.jpg/sm/TARZANSEX.jpg","duration":983,"publication_date":"2015-07-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1","changefreq":"weekly","video":[{"title":"2015:E2 - WE GO TOPLESS","description":"In this episode, when the boys take a team trip to the desert, they discover a secret which could tear them apart. Will Adam ever reverse that gypsy curse When did Bruce get that rash Where did James go during those crucial 4 1/2 hours\r\n\r\nCan Lawrence get his glasses back from the sasquatch Is Spoole STILL snapchatting Who's Joel bunking with tonight And will Peake ever chill out\r\n\r\nFind out on this week's episode of This Sketch Show Doesn't Have a Name Yet!","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/9e53a28e-0be7-48bf-a982-4607e385af96.jpg/sm/WEGOTOPLESS2.jpg","duration":300,"publication_date":"2015-07-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-14","changefreq":"weekly","video":[{"title":"2015:E6 - PORTALS in GTA 5!","description":"Hello, and again, welcome to the Rockstar Science computer-aided enrichment center. Before we start, keep in mind that although fun and learning are the primary goals of all enrichment center activities, serious trainwrecks may occur.\r\n\r\nExcellent! As part of required test protocol, we will equip you with a Rockstar Handheld Modification Portal Ball Device. \r\n\r\nWe see you have modified your appearance to look like an employee of Black Mesa. Ha. HaHaHa. The joke is on you, Black Mesa is a failure company full of failure employees. HaHaHaHa.\r\n\r\nThis experiment is nearing its conclusion. Please meet me in the back alley for cake and rockets.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fa1310c8-211a-4221-ba1a-5e436095a956.jpg/sm/PORTALSGTA.jpg","duration":616,"publication_date":"2015-07-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-greatest-game-ever-made","changefreq":"weekly","video":[{"title":"2015:E76 - GREATEST GAME EVER MADE","description":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAHHHH!!!! YESSSSSSSSSSSSSSSSSSSSS! SHEEEEEENNNNMUEEEEEEEEEEEEE!!!!! AAAAAAAHHH!\r\n\r\nAh! AH! AHH! AH AHA HA AHA AAAAHAHAHAH!!! KICKSTARRRRRT! YEAAAHHHHHHHHHHH!!! AHHHH!!!\r\n\r\nOOOOHHHH MYYY GOOOOOOOOOOD!!!! HAAAAAA! AAAAH!!!!! BELIEEEVEEEEE!!\r\n\r\nYEEEEESSSS AHAAAAA SO GOOOOOOOOOOOOOOOOOD!!!!!!\r\n\r\n$60 please.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-greatest-game-ever-made","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a82ac723-8190-49c6-8fc0-1c15e2593fde.jpg/sm/GREATESTGAMEEVERMADE.jpg","duration":847,"publication_date":"2015-07-15T17:40:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-foul-balls","changefreq":"weekly","video":[{"title":"2015:E19 - FOUL BALLS","description":"James \"Buffalo Willems\" Willems: It puts the demo on its disc. It does this whenever it is told. \r\n\r\nBruce: Mister... my family will play games. Whatever games you're askin' for, they play it. \r\n\r\nJames: It rubs the demo on its disc or else it gets a body frisk. \r\n[to his dog, Benson] \r\nJames: Yes, it will, Benson, won't it It will get the frisk! \r\n\r\nBruce: Okay... okay... okay. Mister, if you let me go, I won't - I won't upload the video, I promise. See, Adam is a real important woman... I guess you already know that. \r\n\r\nJames: Now it places the disc in the drive. \r\n\r\nBruce: Please! Please I wanna go home! I wanna go home please! \r\n\r\nJames: It places the disc in the drive. \r\n\r\nBruce: I wanna see my Adam! Please I wanna see my... \r\n\r\nJames: Put the fucking disc in the drive!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-foul-balls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/51a90069-662e-44d5-9bce-c9b62c9189bc.jpg/sm/FOULBALLS.jpg","duration":1023,"publication_date":"2015-07-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-b-e-s-t-f-a-r-t-s-open-haus-22","changefreq":"weekly","video":[{"title":"2015:E22 - BEST FARTS? - #22","description":"Ask us questions here!\n\nhttp://www.reddit.com/r/funhaus\n\nSo, as some of you know, James usually picks the Open Haus questions. This week it was Bruce - and notice that the questions are PREEEETTY much about the same.\n\nThat's because James has a formula for how to choose questions for the show. If you follow his rules, you'll DEFINITELY increase your chances of getting chosen.\n\n1) Never choose a question that begins with the word \"If...\"\n\n2) Omit anything with references to old characters or shows\n\n3) Doesn't hurt to have a Psychonauts reference\n\n4) If your username sounds like a cute girl, +35% chance\n\n5) Prioritize anything that allows James to show those beautiful baby blues on camera\n\n6) Don't make your Game of Thrones question TOO meta, but don't make it sincere either\n\n7) Try not to use the phrase \"The Duke's undercroft\" in your questions. That's James' trigger\n\n8) You do not talk about Fight Club.\n\n9) Long, drawn out questions WILL be changed when we record\n\n10) Choose usernames Adam will mispronounce\n\nFollow these steps and you too can be on Open Haus!\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/JoelRubin_\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-b-e-s-t-f-a-r-t-s-open-haus-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ec8119f-eadd-43a6-b14d-7c6dc72a5cf8/sm/2013912-1441825622339-fh_thumb_4_copy_1024_(4).jpg","duration":763,"publication_date":"2015-07-10T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-15","changefreq":"weekly","video":[{"title":"2015:E5 - WHALE CANNON in GTA 5!","description":"Gentlemen! On 18 June in this year of our lord 1815, at Waterloo in Belgium we shall engage the dastardly Napoleon in what, we all hope, may be the end to this interminable war.\r\n\r\nOur whole force does not exceed 65,000 men, who are fatigued in the utmost and encumbered with knapsacks and other luggage. However, the most burdensome of all is the artillery: some eight-score of cannon, and its shot. Carrying these items through village and across the bloody Continent has been quite the trial I admit you - but all was not in vain.\r\n\r\nNow we shall surprize old Boney, for the shot is not normal roundshot or cannonballs! No, for him we have brought ammunition most obscure, wonderful, and unusual - we shall be launching, through our gunnery, animals at the French.\r\n\r\nImagine the shock that will shew on Marshal Davout's face when a 180-tonne blue whale launches into his prize cavalry! Imagine the terror on Ney's and Grouchy's when a brace of sharks come from our guns! \r\n\r\nBut not all our shot is comprized of fishes of the seas! Stout cows, cats, monkeys from Afrika all will rocket across the battlefield to work their havoc on the French lines!! So be not afraid, sons of England! Waterloo shall be a veritable zoological garden of meyhem.\r\n\r\nGod save the King!","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2187736e-8fba-4596-a409-737a61e45dcf.jpg/sm/WHALECANNON.jpg","duration":520,"publication_date":"2015-07-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dumb-avengers-5","changefreq":"weekly","video":[{"title":"2015:E74 - DUMB AVENGERS #5","description":"I was going to try and catch you up on the story here, but it's so batshit crazy that it's kind of not worth it. Instead I'm going to recount for you the tale of my Fallout Vault\r\n\r\nIn the beginning, Vault 542 was occupied by just a few people: the First Vaulters. The First Vaulters didn't have much: a small living quarters with a couple of cots, a fairly inefficient generator, some water and food. But what they had was moxie. \r\n\r\nYes, moxie: that hard-to-define quality that keeps a pep in your step, and gives a goose to your Bruce! With nothing but spit, elbow grease, and a couple of reclaimed BB guns, these First Vaulters dug deep into the mountain, fucked themselves silly to create families, and built an entire underground society. Every few hours, one of them would venture out to the Wastelands, but they all knew that the only safe place was in Vault 542, under the watchful, protective eye of the Overseer.\r\n\r\nTheir crowning achievement was building a statue to their Overseer. They began to bring him offerings of food, Nuka-Cola, and nubile young females. And the Overseer was pleased. Very pleased. He turned Vault 542 into a pleasure palace, filled with games parlors and bars.\r\n\r\nEveryone wanted to come to Vault 542. The Overseer was a god unto them. \r\n\r\nAnyway, something about the Avorngers.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dumb-avengers-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/fc423d00-620f-4709-94f7-172f970d776a.jpg/sm/DUMBAVENGERS52.jpg","duration":541,"publication_date":"2015-07-10T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-our-sex-shop","changefreq":"weekly","video":[{"title":"2015:E21 - Our SEX SHOP? - #21","description":"Ask us questions here!\nhttp://www.reddit.com/r/funhaus\n\nI really hope you guys had a great weekend, and I'd like to apologize for not having a video yesterday. See, this weekend was the 4th of July - a national holiday here in American that celebrates the creation of our country.\n\nLet me explain that for all you freedom-hating commies that weren't #blessed enough to be born in the Greatest Country There Has Ever Been or Ever Shall Be:\n\nHOT DAMN! CAR SALES! FIREWORKS! HOTDOGS AND BURGERS!! GRILL THAT SHIT! GET OUTSIDE AND HAVE A PICNIC, BITCHES! HIT THE BEACH OR THE LAKE, GO SWIMMING! KILL AND EAT AN ANIMAL, PREFERABLY A COW!!! THROW SOME TEA INTO THE OCEAN, FOOLS!! MURDER A REDCOAT! GET YOU SOME LIBERTY, SNORT IT UP YOUR NOSE AND RUN THE HELL AROUND NAKED BECAUSE THE USA IS A-OK!!!\n\nI think that pretty much sums up what we did last weekend.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-our-sex-shop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f669452f-e136-4283-b528-a7ba7a6f9c00.jpg/sm/SEXSHOP2.jpg","duration":694,"publication_date":"2015-07-05T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-sh-tty-werewolf","changefreq":"weekly","video":[{"title":"2015:E72 - SH*TTY WEREWOLF","description":"This is a continuation of the story begun in the description of this video (http://bit.ly/1PQUPPs) and continued here (http://bit.ly/1LYeDdD)\r\n\r\nThe Boy was in trouble. Surrounded by the Guards of Fort Hornwick, accused of being a spy, and still beholden to his goal of seeing the World. But The Boy was no spy! He was just a boy from The Mountain Village! \r\n\r\nHe scrambled left -- the Guards moved to chase him, but tumbled and rolled beneath their legs and darted into the streets. The Captain sounded a horn, again and again; troops tumbled out of tents and wagons and tried to see the cause of this disturbance. The orderly lines of the camp erupted in chaos.\r\n\r\nThe Boy was in a panic. He didnt know where to go, so he just kept running. He crashed against a rack of pikes and bounced into a man saddling a horse. The horse jumped back into a brazier, scalding his flank - he kicked out and sent hot coals flying onto a canvas tent, which immediately caught fire. The horse ran scared as the fire leapt from tent to tent.\r\n\r\nThe blackpowder! Someone screamed, and any remaining attention on The Boy was forgotten in a mad rush to the waterbuckets. \r\n\r\nThe Boy pushed his way through the crowd and found a dark alley between stacks of barrels, watching the madness. He frantically searched for an exit from Fort Hornwick, but the palisades remained standing: there was no way out.\r\n\r\nIn a few minutes, the Captain had organized a brigade of waterbuckets; most of the fire was contained. The Boy realized his chance was almost up, and he made a decision: he ran, searching for a place to hide. As he tore down a line of tents, a line of soldiers marched past.\r\n\r\nOut of the way, page! one of the yelled, and shoved him, hard. The Boy reeled backward, falling tail-over-ankles into a tent. He shook his head to catch his bearings, and looked up.\r\n\r\nA naked Courtesan stared at him from pallet of silks and pillows. Well she asked. Are you here to rescue me\r\n\r\nIf you want the boy to respond in the affirmative, type Rescue in the comments.\r\n\r\nIf","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-sh-tty-werewolf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/811c0cf2-b7ad-44a9-b25f-31154bb08d67.jpg/sm/SHITTYWEREWOLF2.jpg","duration":889,"publication_date":"2015-07-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-king-of-dinosaurs","changefreq":"weekly","video":[{"title":"2015:E71 - KING OF DINOSAURS","description":"When first I thought to hunt a dinosaur\r\nI crawled alone and naked on the beach,\r\nAnd met a clan upon that desert shore.\r\nWe joined as one to lend our aid to each.\r\nA home we crafted, wood and grass and thatch,\r\nAnd weapons made that carefully we honed.\r\nA stegosaur or raptor we might catch,\r\nOr maybe die and lose the things we owned.\r\nAdventure, thrills, and scary nights abroad\r\nIn darkened jungles wild, lush, untamed.\r\nAs ever stronger grew our makeshift squad,\r\nMore bountiful were the rewards we claimed.\r\n\r\nAnd tighter still the bonds that held our group\r\nUntil, methinks, that Adam threw his poop.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-king-of-dinosaurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d1d6c71a-5fcb-4960-b324-c9ba9ed03a68.jpg/sm/KINGOFDINOSAURS.jpg","duration":797,"publication_date":"2015-07-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-worst-heist-ever","changefreq":"weekly","video":[{"title":"2015:E70 - WORST HEIST EVER","description":"Guns Check. Zipties Check. Cobra mask Check. I think we're fully prepared for this heist. We're gonna heist these stores up but good, I tells ya.\r\n\r\nWe've been training for years for this. We have the layout of the street. We know the shift schedules of all the employees, and we know what's in the vault. I have detailed architectural renderings of all the stores, which we've studied at length. We have the stealth to keep the cops off our trail; no one will get suspicious.\r\n\r\nThis is a foolproof plan. We've thought of every contingency, every possibility, every minute detail. There's no way we won't --\r\n\r\nGoddammit, Lawrence shot someone on the street.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-worst-heist-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/a38ba17a-3307-426b-b850-4285f82a6813.jpg/sm/WORSTHEISTEVER2.jpg","duration":1088,"publication_date":"2015-07-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-angry-birds-in-gta-5","changefreq":"weekly","video":[{"title":"2015:E69 - ANGRY BIRDS in GTA 5","description":"I'm not 100% sure why this map is called Angry Birds. It really doesn't have anything to do with the Rovio game \"Angry Birds\" at all, which is a physics-based mobile game pitting slingshot birds vs. pigs.\r\n\r\nThis game, on the other hand, pits a bunch of high-octane, explosive-action GTA players against a group of dumb-dumbs called Funhaus. I mean, I guess the briefcase is called an \"egg\" but that's about the extent of it. Are there even eggs in Angry Birds I don't think so, but I stopped playing the game like 4 years ago.\r\n\r\nAnyway, we sucked at this map.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-angry-birds-in-gta-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2a17abb4-d87c-4b29-9b7a-f2e296be451d.jpg/sm/ANGRYBIRDSGTA2.jpg","duration":716,"publication_date":"2015-07-01T14:50:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-are-criminals","changefreq":"weekly","video":[{"title":"2015:E20 - We Are CRIMINALS? - #20","description":"Look, I know no one else on the Funhaus staff reads these descriptions, so I'm just going to use this one to issue totally unreasonable Executive Fiats.\n\n1) From now on, this show shall be called Joel Haus. I HAVE SPOKEN\n2) All questions, answers, photoshops, songs, and other intellectual property created or generated by Joel Haus are the sole property of Joel Rubin. I HAVE SPOKEN\n3) Also, all cast members appearing on Joel Haus are now Joel Rubin's immediate subordinates. I HAVE SPOKEN\n4) The primary purpose of Joel Haus is now to Make It Rain dolla dolla bills on or around Joel Rubin. I HAVE SPOKEN\n5) Same as above, but also with babes. I HAVE SPOKEN\n6) Wait, why is Adam coming over to my desk Hey Adam, what's up\n7) Oh, nothing...just writing the descripti-- hey. HEY, get away from my keyboard.\n8) STOP. ADAM. ADAM PLS> PLS ADAM NO\n9) #*%SEDKF_)@)%)(++#*&KDisdkfa\n10) \n11) \n12) Open Haus will be resuming next week. ADAM HAS SPOKEN","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-are-criminals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cf45574-de75-4ef8-9e5d-76e28090805b/sm/ep11601.jpg","duration":683,"publication_date":"2015-06-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-from-hitler-with-love","changefreq":"weekly","video":[{"title":"2015:E18 - FROM HITLER WITH LOVE","description":"D! stands for Demo, the word before Disk\r\nE! stands for Edgy, breaking is a risk\r\nM! stands for Meningitis, I hope we do not get\r\nO! stands for Ortho, for orthopedisist!\r\n\r\nD! stands for Demo, the word before Disk\r\nI! stands for Interesting - these games never is\r\nS! stands for Sucky, these games actually is\r\nK! stands for gosh I wanna give Bruce a Kiss!\r\n\r\nWhat's that spell \r\nWe can't spell!\r\nWhat's that spell\r\nWhat's that smell\r\nIt's DEMO DISK!\r\nIt's DEMO DISK!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-from-hitler-with-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adfe6eb0-ef7b-467f-bccc-d68bc56442b2/sm/ep11600.jpg","duration":919,"publication_date":"2015-06-29T14:51:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-we-throw-poop","changefreq":"weekly","video":[{"title":"2015:E68 - WE THROW POOP","description":"Come back with us to a magical age\r\nWhen dinosaurs roamed the land\r\nAnd loincloth pants were all the rage\r\nAnd dudes were buff and tanned\r\n\r\nThere's Adam and James and Bruce and Spoole\r\nAnd Lawrence in the group\r\nWatch them build, I promise you'll\r\nAlso wanna throw your poop\r\n\r\nDino meat's a tasty treat \r\nOr maybe eat some poop\r\nCause we have a lot of poop\r\nPoop poop poop poop poop","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-we-throw-poop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8f8ec7d-af52-4928-95c2-daa5766142b5/sm/ep11599.jpg","duration":624,"publication_date":"2015-06-28T21:11:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-worst-player-ever","changefreq":"weekly","video":[{"title":"2015:E67 - WORST PLAYER EVER ","description":"Well, it was bound to happen. Joel was, at some point, going to have to play GTA.\r\n\r\nLook, we never WANTED this, but it was inevitable. Eventually Adam would get sick or Bruce would take a vacation or James would die in a horrible Furry yiffing accident, and SOMEONE would have to pick up the slack. Spoole already plays GTA occasionally, and Peake refuses to get on camera. So we're left with Joel. Ugh. Fucking Joel. \r\n\r\nWe're really sorry, everyone.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-worst-player-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aefd2297-a9de-45a2-9c06-6d4dfcda0b49/sm/ep11598.jpg","duration":733,"publication_date":"2015-06-28T21:08:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-has-destiny-b-e-t-r-a-y-e-d-y-o-u-dude-soup-podcast-21","changefreq":"weekly","video":[{"title":"2015:E21 - Has Destiny BETRAYED YOU? - #21","description":"Visit our sponsors! Brought to you by Nexon. Check out Dirty Bomb on Steam: http://bit.ly/1I6C6bo \n\nCasper: http://www.casper.com/DUDESOUP & use code \"DUDESOUP\"\n\nSquarespace & Vulcun: http://twitch.tv/VulcunHS\n\nWe're BACK, BABY!!! Kinda. I mean, Bruce still isn't here, but Adam's back. And really, isn't he the heart and soul of Funhaus Jamz is totally the eyes. And Lawrence - he's like the tingly fingers. Spoole is the feet, for some reason. Peake is the chest hair. Joel is the head hair. And Bruce is...ugh....the butt I guess Because he farts\n\nLook -- the point is that we're ramping back up to our regular schedule. That means we gonna have a Demo Disk next week. We gonna have GTA gameplays. We gonna have all the shizz you can't live without.\n\nIt's good to be back.\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/harmonygrits\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-has-destiny-b-e-t-r-a-y-e-d-y-o-u-dude-soup-podcast-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d9a70b9-579b-475d-9619-b218415a69eb/sm/2013912-1441825300921-fh_thumb_4_copy_1024_(19).png","duration":3851,"publication_date":"2015-06-24T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-suck-at-e3","changefreq":"weekly","video":[{"title":"2015:E19 - We SUCK at E3 - #19","description":"E3 pretty much rekt us, so here's Open Haus for this week. We recorded it Friday morning after E3. Bruce is gone. We lost our voices. Peake is nowhere to be found. Please send help.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-suck-at-e3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45bc18ef-5df4-4aae-a42c-c36c82002877/sm/ep11574.jpg","duration":728,"publication_date":"2015-06-23T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-c-o-m-m-e-n-t-s-a-r-t-r-e-t-u-r-n-funhaus-fan-art-comments","changefreq":"weekly","video":[{"title":"2015:E9 - COMMENTS & ART RETURN!!! - Funhaus Fan Art & Comments","description":"We're still working on getting everything back up to speed after the insanity that was 4 straight days of streaming E3 content. And with Bruce out of the office and not here to tell us what to do, we thought we'd throw together a quick Fan Art & Comment Show in one video! \n\nPlease enjoy. We're still trying to figure out our upcoming schedule for Comments and Fan Art, to bear with us for a bit...\n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-c-o-m-m-e-n-t-s-a-r-t-r-e-t-u-r-n-funhaus-fan-art-comments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d5a6b28-dab1-439e-ab8d-1ae0020d3292/sm/2013912-1441825802227-fh_thumb_4_copy_1024_(16).png","duration":563,"publication_date":"2015-06-19T19:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-f-u-n-h-a-u-s-vs-e3-dude-soup-podcast-20","changefreq":"weekly","video":[{"title":"2015:E20 - FUNHAUS vs. E3 - #20","description":"PLEASE TAKE OUR SURVEY!! http://www.podsurvey.com/soup\n\nLook. It's 11:15 pm as I'm writing this, and the first day of E3 is slowly winding to a close. Parties are cranking up. Developers are sloppily knocking back red bulls and vodkas. And I'm here, at my computer, typing a fucking Dude Soup description.\n\nWell guess what The joke's on you!! I have NIGH UNLIMITED FREE DRINX at my house, and you guys are stuck in Downtown LA! HAHA! I'm AT HOME uploading this video, while you SUFFER at the hands of crappy sliders and small bites from indifferent waiters. I PITY YOU, FOOLS, for I have achieved E3 fulfillment. \n\nOh - and we talk about some of the E3 games in this podcast, I guess.\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/harmonygrits\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-f-u-n-h-a-u-s-vs-e3-dude-soup-podcast-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a2b3475-f416-4612-adc2-72e8f647c4c0/sm/2013912-1441825228569-maxresdefault.jpg","duration":2043,"publication_date":"2015-06-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-paul-walker-memorial-race","changefreq":"weekly","video":[{"title":"2015:E66 - PAUL WALKER Memorial Race","description":"The Fast and the Furious (2001) - 21 Jump Street, but with cars instead of high school.\r\n2 Fast 2 Furious (2003) - He tries to get out, but they keep pulling him back in.\r\nThe Fast the the Furious: Tokyo Drift (2006) - See above, but in Tokyo, and with new characters.\r\nFast & Furious (2009) - \"Let's reboot this franchise as heist movies, ok\" \"Ok!!\"\r\nFast Five (2011) - There are more bikinis in this one.\r\nFast & Furious 6 (2013) - \"We gotta get the gang back together.\"\r\nFurious 7 (2015) - RIP","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-paul-walker-memorial-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff719c6a-117c-4cd0-a197-4de9c5ac0ff4/sm/ep11544.jpg","duration":839,"publication_date":"2015-06-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-rip-lord-of-the-rings","changefreq":"weekly","video":[{"title":"2015:E17 - RIP LORD OF THE RINGS","description":"With apologies to JRR Tolkien... \r\n\r\nThe Disk goes ever on and on\r\nEven though most of them will crash.\r\nI'd rather be watching Wrath of Khan,\r\nThan playing PC Gamer trash.\r\nBruce cracks the discs, it's quite a shock\r\nAnd Adam loads some Marvel games\r\nWhere Spiderman out-spells Doc Ock\r\nOr Scarlet Witch shows boobs to James","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-rip-lord-of-the-rings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d00662aa-6fa3-415e-b9e0-fa46b899d950/sm/ep11528.jpg","duration":1063,"publication_date":"2015-06-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-hungry-for-killing","changefreq":"weekly","video":[{"title":"2015:E65 - HUNGRY FOR KILLING","description":"ALRIGHT MEN! ATTENTION!! \r\n\r\nWe have a very dangerous enemy approaching on the roof. I want us in classic battle formation.\r\n\r\nRICKERS: Crouch in front.\r\nLUBINOV: Kneel behind Rickers.\r\nSPERGSTEIN: Do like a half kneel, half stand thing behind him.\r\nDORF: Full stand behind Spergstein.\r\n\r\nNow, when Manhunter approaches, I want you all to pop up, one after the other, and then back to your starting positions. DO YOU UNDERSTAND\r\n\r\n\"SIR YES SIR!\"\r\n\r\nLubinov, do you have a question\r\n\r\n\"Um yeah. So, like...why are we doing this How is this going to help us beat Manhunter Won't this just make it easier for him to kill us\"\r\n\r\nLUBINOV SHUT UP AND GET IN POSITION. WE WILL DAZZLE HIM WITH OUR WAVE!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-hungry-for-killing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e491e6ae-92ba-4104-aef8-d60ee8cb568f/sm/ep11527.jpg","duration":741,"publication_date":"2015-06-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-dark-souls-3-l-e-a-k-e-d-dude-soup-podcast-19","changefreq":"weekly","video":[{"title":"2015:E19 - Dark Souls 3 LEAKED? - #19","description":"It's that time of week\n\nThe time that you seek\n\nThe time with the whole Funhaus group\n\nWe're sharing our views\n\nOn gaming's fresh news\n\nIt's time for your bowl of Dude Soup\n\nOh DUUUUUUUUDE SOUP\n\nA new steamy podcast each week\n\nOh DUUUUUUUUDE SOUP\n\nThis episode: Dark Souls 3 Leaked!\n\nMidroll Survey: http://www.podsurvey.com/soup\n\nQuickbooks: http://www.tryselfemployed.com/dudesoup\n\nLoot Crate: http://www.lootcrate.com/dudesoup enter code \"dudesoup\"\n\nFollow us on Twitter: \n\nhttp://twitter.com/adamkovic\n\nhttp://twitter.com/brucegreene\n\nhttp://twitter.com/jameswillems\n\nhttp://twitter.com/sirlarr\n\nhttp://twitter.com/harmonygrits\n\nTshirts n stuff: https://store.roosterteeth.com/","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-dark-souls-3-l-e-a-k-e-d-dude-soup-podcast-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34183dcf-d72d-4aab-a5b7-a64e0948b4c6/sm/2013912-1441825118995-fh_thumb_4_copy_1024_(8).png","duration":3943,"publication_date":"2015-06-10T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-16","changefreq":"weekly","video":[{"title":"2015:E4 - THE FLASH in GTA 5!","description":"Flash! AAAAAH AH!\r\nRuns like a shooting star!\r\nFlash! AAAAAH AH!\r\nHe'll run into every car!\r\n\r\nFlash! AAAAAH AH!\r\nThis mod's a miracle!\r\nFlash! AAAAAH AH!\r\nBut our vid is satirical!\r\n\r\nHe'll hit every one of us\r\nKill every one of us\r\nHe'll smash with his super speed\r\nEvery man, every woman, every child, with a mighty\r\nFLASH\r\n\r\nJust a mod\r\nWith a mod's glitches\r\nYou know he's nothing but a mod\r\nAnd he's just the worst\r\nNo one but a knockoff Flash\r\nCan hit a truck headfirst\r\nOOOooooh oh oh.\r\n\r\nFLASH!","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b128fc31-e4ac-48ef-9224-aec58365110b/sm/ep11518.jpg","duration":738,"publication_date":"2015-06-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-green-lantern-in-gta-5","changefreq":"weekly","video":[{"title":"2015:E64 - GREEN LANTERN in GTA 5!","description":"Pretty soon we're going to run out of superheros for GTA modding, so I've been coming up with a list of other guys there should be mods for. INTERNET: get on this, please.\r\n\r\nSquirrel Girl (obviously)\r\nToad\r\nTerminator\r\nMr. Fantastic\r\nThe Fantastic Mr. Fox\r\nGenie\r\nYakko, Wakko, and/or Dot\r\nAnimorphs (any)\r\nLuscious Little Boy\r\nIndiana Bones (porn version of Indiana Jones)\r\nJoel","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-green-lantern-in-gta-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55aeaf27-21b8-4eaf-86d3-7528fa7f2c0a/sm/ep11519.jpg","duration":709,"publication_date":"2015-06-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-how-to-be-cool","changefreq":"weekly","video":[{"title":"2015:E17 - HOW TO BE COOL? - #17","description":"Open Haus.\nAnus Hope.\nPause Hun.\nAsh One Up.\nA Hoes Pun.\n\n\nJeremy's Iron.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-how-to-be-cool","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbdb612a-23a6-4b2f-88e4-f4f41a496970/sm/ep11503.jpg","duration":712,"publication_date":"2015-06-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dont-play-with-fire","changefreq":"weekly","video":[{"title":"2015:E62 - DON'T PLAY WITH FIRE","description":"We're shooting our SEXY Airport Fireman calendar for next year, and here are a few of our poses:\r\n\r\nJanuary: SEXXY fireman hefting his ax over his shoulder, straddling a baggage claim conveyor belt.\r\nApril: SEXXXXXXYY fireman hosing down a ticket kiosk\r\nJune: SEEESSXXYXXY fireman cuddling a dalmatian at a Seattle's Best Coffee shop\r\nSeptember: regular fireman waiting patiently in line at security\r\nOctober: SESSSSESSSXXYXYYXYYX fireman eating a Wetzel's Pretzel in a SEXXXXY manner\r\nDecember: SANTA fireman in a sleigh on the tarmac","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dont-play-with-fire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7818b897-7b19-4f3f-80b1-191ed409fd8b/sm/ep11502.jpg","duration":623,"publication_date":"2015-06-08T14:20:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-frozen-and-pregnant","changefreq":"weekly","video":[{"title":"2015:E16 - FROZEN AND PREGNANT ","description":"DescriptionDemo Disk - demo disk (\\de-()m (,)disk\\\r\n\r\n: From \"demonstration disc\"\r\n\r\nnoun\r\n1. A compact disc containing a demonstration, or sample, of prospective software\r\n2. A trial version of computer programs contained on a compact disc\r\n3. A video series created and curated by the Funhaus team from Rooster Teeth, wherein a cast members attempt to play a variety of cruddy old demo discs, with varying results.\r\n\r\nFirst known use of DEMO: 1793 (org Latin dmonstrtus, past participle of dmonstrre to show, point out, equivalent to d- de- + monstrre to show, verbal derivative of monstrum sign, portent)\r\nFirst known use of DISC: 1664 (org. Latin 'discus')\r\nFirst known use of Demo Disk: 2015","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-frozen-and-pregnant","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30e6b3bf-d24a-4563-8749-57e8d41c363e/sm/ep11501.jpg","duration":1319,"publication_date":"2015-06-08T14:18:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-circle-jerks","changefreq":"weekly","video":[{"title":"2015:E9 - CIRCLE JERKS","description":"So there have been a few discussions on our subreddit recently (reddit.com/r/funhaus) about how the entire subreddit is basically devolving into just fan art. \r\n\r\nFirst of all: SO WHAT FAN ART IS AWESOME AND WE LOVE IT.\r\n\r\nSecond: c'mon dudes and dudettes! You guys can start whatever conversations you want there. We're not picky. Wanna talk about what Spoole's butt looks like Start a thread! Wanna discuss Peake's anger issues Go nuts! Wanna ask James about his total support and love for The Last of Us Do it already!\r\n\r\nIf your thread is good, it'll get upvoted. If it sucks, we'll make fun of it on the Comments Show.\r\n\r\nBut don't call out the subreddit because there's too much Fan Art on it. Because there's no such thing as too much fan art.\r\n\r\nWord 2 your mother","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-circle-jerks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c74ea5e-eae8-45fb-a471-8a47984d230e/sm/ep11492.jpg","duration":609,"publication_date":"2015-06-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-fallout-4-questions-answered","changefreq":"weekly","video":[{"title":"2015:E8 - FALLOUT 4: Questions Answered! ","description":"Ok, we're going to a test out a new podcast-style show we're calling FAQ. What does FAQ stand for \r\n\r\nFrequently Asked Questions, sure, but that's not what it means for us.\r\n\r\nHere on our channel, it means Funhaus Answers Questions, and for the first episode we'll be answering questions about the recently announced Fallout 4. Exciting!\r\n\r\nWe'd love to eventually make this a weekly show, but please bear with us as we test out a new concept in an old format. Or an old concept in a new format. Either way, something is old, something is new, and you get another video, so stop complaining.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-fallout-4-questions-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa4c41c5-27dc-4ba8-b22f-e99cd86d02fe/sm/ep11493.jpg","duration":3694,"publication_date":"2015-06-05T15:08:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-broken-garbage","changefreq":"weekly","video":[{"title":"2015:E61 - BROKEN GARBAGE","description":"And lo, it was foretold at at the end of days a pestilence would spread across the land, and the people would be like not really people unto them, like, they would be kinda like unto zombies but also you would behold them to be burned flesh guys or something\r\n\r\nAnd in that time, a son of the Pharaoh Ramesses would come unto the land and deliver the people from the kinda zombie invasion that plagued them.\r\n\r\nIt came to pass that the son of Ramesses would be known as Mark \"Ramesside\" Faraoh, for some reason unbeknownst to them, for he was a modern day son with a bitchin' hairstyle and ripped physique, magical spells and whatnot, and not only would he be the son of Ramesses, but also he would be one of the best biological evolution scientist's known on the face of the earth.\r\n\r\nSo let it be written, so let it be done.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-broken-garbage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4532d2fc-4dbc-4520-bf14-695510686bfd/sm/ep11491.jpg","duration":525,"publication_date":"2015-06-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-space-race","changefreq":"weekly","video":[{"title":"2015:E60 - SPACE RACE","description":"Things an astronaut hopes to never hear from her ground crew:\r\n\r\n\"What's a fuselage\"\r\n\"Where's this 'space' we're going to\"\r\n\"I feel like 17 thrusters just isn't enough.\"\r\n\"Oh, I was supposed to TEST that\"\r\n\"Hang on, let me duct tape this decoupler on.\"\r\n\"How much fuel do we need to just BARELY not blow up\"\r\n\"Nah, we don't need the collision insurance.\"\r\n\"Do we really need to plan for a return trip\"\r\n\"What's the big deal It's just rocket science.\"","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-space-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9405ead-139a-4591-82ce-996e3c6ab4b0/sm/ep11485.jpg","duration":910,"publication_date":"2015-06-04T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-silent-hills-on-xbox-one-not-yet","changefreq":"weekly","video":[{"title":"2015:E18 - Silent Hills on Xbox One? Not Yet! - #18","description":"Well, we caught a lot of heat for our Silent Hills story last week. As expected. Check out this week's episode to hear our response, plus more of our ill-informed opinions about games, gamers, gaming news, and game developers!","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-silent-hills-on-xbox-one-not-yet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74328cff-502a-4ed9-a05b-b81273da8562/sm/ep11486.jpg","duration":4028,"publication_date":"2015-06-04T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-17","changefreq":"weekly","video":[{"title":"2015:E3 - SPIDERMAN in GTA 5!","description":"Spiderman, Spiderman\r\nWants to drink a black & tan\r\nGrab a plane, any size\r\nHolds on tight with meaty thighs\r\nLook out!\r\nHere comes the Spiderman\r\n\r\nCan he fly Sure, why not\r\nLoves to watch Michael Scott\r\nSave the girl, catch a crook\r\nWith his trusty grappling hook\r\nOh gosh!\r\nThat's the Spiderman\r\n\r\nOn the top of a train\r\nHe'll grab lots of cars\r\nJust to save Mary Jane\r\nThen he'll hit up the bars\r\n\r\nSpiderman, Spiderman\r\nHighway manslaughter Spiderman\r\nThere's a cop, now he's dead\r\nHe got Spidey'd in the head\r\nLook out! \r\nSpiderman's a dick!","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b202b87-fc0b-4544-ad44-b605b881dae0/sm/ep11484.jpg","duration":742,"publication_date":"2015-06-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-we-love-ourselves","changefreq":"weekly","video":[{"title":"2015:E7 - WE LOVE OURSELVES","description":"Comment show, oh comment show\r\nWe only choose the best\r\nComment show, oh comment show\r\nWe hope you are impressed\r\n\r\nWe take your dumb dumb ramblings\r\nAnd then make fun of you\r\nBut don't get butthurt, don't get sad\r\nWe know we're stupid too\r\n\r\nComment show, oh comment show\r\nA Youtube work of art\r\nComment show, oh comment show\r\nHere's one on Bruce's fart","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-we-love-ourselves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48db7a5c-b233-4617-b4cf-bba54c7a5841/sm/ep11472.jpg","duration":771,"publication_date":"2015-06-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-our-evil-twins","changefreq":"weekly","video":[{"title":"2015:E16 - Our EVIL TWINS? - #16","description":"Geoff and Michael were kind enough to fly all the way out to Los Angeles to apologize for their dumb, mean, poo-poo prank. That's the only reason they came: to apologize.\n\nIt was great. They came crawling into the office on their hands and knees, begging our forgiveness. They supplicated themselves at our feet, promising never to prank us again, saying they'd always be true. \n\nGeoff flogged himself repeatedly, reciting \"Mea culpa, mea maxima maxima culpa\" and swore to wear a hairshirt for the rest of his days.\n\nMichael only promised us one thing to atone for his sins: the life of his firstborn son.\n\nWe accepted.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-our-evil-twins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6682a28a-ab66-46dc-bd0d-9da82f92bd55/sm/ep11462.jpg","duration":651,"publication_date":"2015-06-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-sad-sexy-girls","changefreq":"weekly","video":[{"title":"2015:E15 - SAD SEXY GIRLS","description":"The night was dark, and the rain was coming down harder than the Hulk on a gas station. I'd just closed another case - missing daughter. Classic \"Demo Disk Abduction\". I'd seen 'em a million times.\r\n\r\nBut this one. This one was different. I knew when Jennifer walked in the door that things would never be the same. The girl had legs. She also had feet, and hands, and a couple of ears. \r\n\r\nShe said she wanted to be a private dick, but I couldn't see any dick on her at all. She just didn't have it in her. \r\n\r\nShe wanted me to train her, but I told the kid, \"Get outta my office. I can't get burned again.\"\r\n\r\nShe helped herself to a slug of whiskey, slithered across the room, and looked me in the eyes, and said...\r\n\r\n\"Sorry, Charlie. You're gonna get cracked.\"","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-sad-sexy-girls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a1d13a0-a273-4f5b-b701-688b6f5b590e/sm/ep11461.jpg","duration":1041,"publication_date":"2015-06-01T13:36:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-baby-hunter","changefreq":"weekly","video":[{"title":"2015:E58 - BABY HUNTER","description":"Manhunter, I want you to meet your new partner: Babyhunter. Some question his methods. Some say he's a little unorthodox. Some even say he's deranged.\r\n\r\nBut he's the best, dammit.\r\n\r\nYour mission is to infiltrate the enemy camp under cover of night. You are to rendezvous with our agent in the command tent. He'll provide you with the codes to hack the system. Once inside, you'll download the map to your Palm Pilot. Eliminate our agent - no loose ends. Use the map to uncover the location of the children's nursery.\r\n\r\nOnce you're there, Babyhunter will know what to do.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-baby-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71273952-2b55-40f8-b161-e1625925c9bf/sm/ep11449.jpg","duration":692,"publication_date":"2015-05-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-rick-and-morty","changefreq":"weekly","video":[{"title":"2015:E8 - WE ARE RICK AND MORTY","description":"The latest installment of Funhaus Art for Auction from the Rooster Teeth Collection consists of 219 individual lots of varied pieces, relfecting the rich diversity and artistry of the Funhaus Fan Base (circa 2015-2034). The Rooster Teeth Collection is legendary and counts among the finest of all fan art collections ever made for the Internet and video fans alike. \r\n\r\nHighlights of this auction include an outstanding full-sized sculpture in obsidian in the shape of a can of Dude Soup, and one surviving panel of an original triptych in oil depicting the entire Funhaus team from 2022, including Bruce, Adam, James, Lawrence, Peake, Spoole III, Joel, Billie, Ergwin, Fatima, Chelbert, and Jook-yi-sun.\r\n\r\nHere are an assortment of our lots on offer:\r\n\r\nLOT 12: A small Funhaus faience amulet in the shape of Matt Peake's head. Original hand-glazing and fine detail work on the hair.\r\n\r\nLOT 37: A wood-inlay Boonty Box, from the Boonty Private Collection. Ebony, teak, and ash create a striking contrast to the silver chasing on the hinges.\r\n\r\nLOT 83: An ivory cameo of Lawrence as a woman, contained within a jade frame shaped as a computer screen. Circa 2032.\r\n\r\nLOT 118: A terracotta ceremonial drinking cup in the kantharos style with a black-figure scene depicting the events from Drunk Silent Hill 18 (2024). It's thought this kantharos was used in subsequent \"Drunk Gaming\" videos.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-rick-and-morty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1f21ab2-49c3-4c3b-bcb1-72d351a614e9/sm/ep11443.jpg","duration":532,"publication_date":"2015-05-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dumb-avengers","changefreq":"weekly","video":[{"title":"2015:E56 - DUMB AVENGERS","description":"I'm making a rule right now: no one. NO ONE. is allowed to mention any other Sims gameplay which we may or may not have uploaded in the past. Period.\r\n\r\nI know there are a few of you other there that have been fans for a long time. And in that time, we may or may not have uploaded some Sims videos. I can't remember. \r\n\r\nWhether or not we did or didn't, though, you are NOT ALLOWED to speak of them. You can't make references to any events that may or may not have happened. You can't talk about any characters we may or may not have created. You can't link out to any videos we may or may not have shot, edited, and uploaded.\r\n\r\nDO YOU HEAR ME \r\n\r\nNOTHING.\r\n\r\nAlso, thanks for starting this series with us, Robbaz. You're a real peach!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dumb-avengers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f29338a9-23c5-4be1-909e-08f0500a1b86/sm/ep11436.jpg","duration":689,"publication_date":"2015-05-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-video-games-need-a-story","changefreq":"weekly","video":[{"title":"2015:E17 - Video Games NEED a Story? - #17","description":"After almost a full month of guests on Dude Soup, we're back to just the Dudez: Brucie Boy, AdorableAdam, Lil' Larry Sunshine, and Jamz Chillemz. Bringin' it to ya old school and talkin' about sweet stuff like Mad Max (awesome) Rock Band & Guitar Hero (yeee-haw) and, of course, farts.\n\nIt's good to be back.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-video-games-need-a-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a418c45a-0dcf-4844-bb8a-f60de532601a/sm/ep11435.jpg","duration":3590,"publication_date":"2015-05-27T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-18","changefreq":"weekly","video":[{"title":"2015:E2 - BE THE COPS","description":"Listen up, rookie. The streets of Los Santos are dangerous. Literally any civilian out there could be carrying. Carrying what, you ask You name it: drugs. Handguns. Rifles. Rocket launchers. Grenades. Sticky bombs. Tasers. Even something that turns them into a cop.\r\n\r\nSounds crazy, I know. But I've seen some shit out here. Shit you wouldn't believe. So I want you to be on your guard. You see a crime, you TAKE THAT CRIMINAL DOWN. Do you hear me Take. Him down.\r\n\r\nThere's no such thing as \"excessive force\" or \"police brutality\" on these streets. The ends justifies the means, so I want you to get out there and protect our citizens. \r\n\r\nBy killing them all.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/427b20cd-7fec-4f87-b959-3659155ab189/sm/ep10952.jpg","duration":691,"publication_date":"2015-05-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-james-bond-blows-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E14 - JAMES BOND BLOWS - Demo Disk Gameplay","description":"Here are the alternate titles we came up with for this video:\r\n\r\nSkyFail\r\nQuantum of Stupid\r\nShitsino Royale\r\nLicense to Crap\r\nDemos are Forever\r\nShitFall\r\nLive and Let Dumb\r\nPoonraker\r\nThe Shitting Daylights\r\nDemoEye\r\nThe Shit Who Loved Me\r\nDr. No Please Don't Make Me Play Demo Disk Again\r\n\r\nI'm sure you'll come up with better ones in the comments.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-james-bond-blows-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1566fab3-ee4c-47cf-b367-b5e2853709e1/sm/ep10935.jpg","duration":1125,"publication_date":"2015-05-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-wrestling-kills","changefreq":"weekly","video":[{"title":"2015:E54 - WRESTLING KILLS","description":"This SUNDAY SUNDAY SUNDAY, the megastars of wrestling match up in TOTALLY REAL, NONSCRIPTED event of EPIC, EPIC, EPIC proportions.\r\n\r\nThe ULTIMATE WARRIOR and GOLDUST square off against SEAMUS and WHITE POWER MIME and some ladders, and some other guys I dunno in the RACE for the BRIEFCASE. Who's gonna grab that case first DOESN'T MATTER, cause there's gonna be some punches!\r\n\r\nJoin us at the Mid-Towne MEGA MEGA MEGAPLEX for some roid-ragin', man-huggin', rope-glitchin' action! Must be 18 or cooler to enter.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-wrestling-kills","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cdfc3cb-8f89-4bbe-8ad9-a90c8d6518f8/sm/ep10928.jpg","duration":646,"publication_date":"2015-05-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-queens","changefreq":"weekly","video":[{"title":"2015:E7 - We are QUEEN(s)","description":"The year was AD 22 when the first fan art was created. It was a drawing of Jesus as a Pokemon, and Jesus really really liked it. He said unto his disciples, \"Lo: this fan art, or f'art, of Myself does Me justice. See how Mine features mesh into those of this Squirtle, and behold how it walks on water, like unto Me.\"\r\n\r\nEver since, F'art has appeared throughout history for various purposes: currying favor with Venetian doges, appeasing the anger of foreign warlords, trying to bang famous oil tycoons, etc.\r\n\r\nSome of the most notable f'art in our collection includes a painting of Queen Elizabeth I as Master Chief and a custom sculpture in jade of Emperor Kublai Khan riding a battle chocobo.\r\n\r\nWe are proud to be the latest in a long lineage of objets d'art, and to present to you....ART HAUS.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-queens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33b30fd8-1324-4a6f-acd8-7597349f6287/sm/ep10927.jpg","duration":642,"publication_date":"2015-05-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-its-a-trap","changefreq":"weekly","video":[{"title":"2015:E53 - IT'S A TRAP","description":"Honestly, I feel like we got duped in this week's Wheelhaus. There's so much opportunity for a Meet'n'Fuck, and nothing came of our efforts. You know what this means\r\n\r\nWe're creating our all-new gaming platform that's BETTER than Steam. We're calling it: Anime Porn Steam.\r\n\r\nIt's all anime dating games, all the time. Never worry that the game you're going to play WON'T include dumb, convoluted dialogue trees to navigate in the eventual chance of seeing a cartoon boob. Our guarantee is that if you DON'T engage in carnal relations with an questionably-aged character after 8 minutes of gameplay you get your money back. That's the Anime Porn Steam promise!\r\n\r\nIf you want to subscribe to Anime Porn Steam, all you have to do is send us all of your credit cards and your birthday and social security number, and your mom's maiden name, and YOU TOO can have access to our extensive library of Anime Porn games on Anime Porn Steam.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-its-a-trap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0664b23-37a5-4158-bc2d-a9200ec5ac81/sm/ep10925.jpg","duration":825,"publication_date":"2015-05-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-sexy-halo","changefreq":"weekly","video":[{"title":"2015:E52 - SEXY HALO","description":"Dim the lights. \r\n\r\nSlip into a silky smoking jacket.\r\n\r\nPour yourself a glass of fine caurngbergnet sauwvingyan. \r\n\r\nAnd prepare to be tongue-punched by the live read of Redditor /u/myparentswouldbeasha's Halo Fanfiction.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-sexy-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ad5fcc8-c910-4896-b1c6-283011182a81/sm/ep10918.jpg","duration":291,"publication_date":"2015-05-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-super-chimp","changefreq":"weekly","video":[{"title":"2015:E51 - SUPER CHIMP","description":"SUPERCHIMP, hailing from the outer reaches of the Ape Galactic Cluster, comes screeching into action! With the approximate power and charm of Earth's chimps MULTIPLIED BY 10,000, SUPERCHIMP is here to save the day!\r\n\r\nBE THRILLED as Superchimp leaps into the air and flies through Los Santos!\r\nBE CHILLED as Superchimp threads the needle in feats of derring-do!\r\nBE FULFILLED as Superchimp finds love against all odds!\r\nBE KRILLED for a cameo appearance by Superwhale!\r\n\r\nStarring Adem Kevvik as ace reporter Toddy Topshot and Boose Green as Herr Docktor Gerherdt VanKleingerber, with Games Williams as the loverly Honeysuckle Delacroix. And introducing Pip-pop as Superchimp!\r\n\r\nIn theaters this Grovetumber.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-super-chimp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01e5fdd6-038f-4b99-9bed-b7ee8a384fa5/sm/ep10914.jpg","duration":584,"publication_date":"2015-05-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-on-let-s-play-2015-19","changefreq":"weekly","video":[{"title":"2015:E1 - IMPOSSIBLE CHICKEN CHALLENGE","description":"Hey guys, it's GREAT to be here at Let's Play, give yourselves a hand! Remember: two drink minimum and please tip your servers! Are you ready to laugh I said, ARE YOU READY TO LAUGH! \r\n\r\nWhy did the chicken cross the road\r\nOrange you glad I didn't say Banana!\r\n\r\nWhat's it called when a cat wins a dog show\r\nSpoiled milk!\r\n\r\nWhere do bees go to the bathroom\r\nA chimp off the old block!!\r\n\r\nWhat bow can't be tied\r\nOuch!\r\n\r\nThanks, you guys have been a great crowd! We'll be here every Thursday.","player_loc":"https://roosterteeth.com/embed/funhaus-on-let-s-play-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86082b3f-a949-420c-a04b-2c41ad39e761/sm/ep10908.jpg","duration":778,"publication_date":"2015-05-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-we-got-pranked","changefreq":"weekly","video":[{"title":"2015:E5 - WE GOT PRANKED","description":"The Comments show is our opportunity to dig deep into the conversations our videos started over the last week and find the most interesting, thought-provoking responses you guys and gals had to our videos. We get to address those comments in a rational, interesting way. This show allows us to have an ongoing back and forth with you, the viewer, about issues you think are interesting or relevant to our videos.\r\n\r\nIn the past, our dialogue has ranged from discussing our perceived bias for certain games or consoles, our insensitivity, and our video production quality. It's a great forum to let you know what we're thinking, and how we view our most valuable asset: you guys!\r\n\r\nWe spend all week curating our individual choices for comments, cherry-picking what we think represents the best of the best from the last week.\r\n\r\nAnd then there's Spoole, who does zero work, comes in late, and chooses random shitty jokes. Thanks for undermining the show concept, Spoole.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-we-got-pranked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7b5d28c-9111-4d93-b1aa-5063f63e644f/sm/ep10907.jpg","duration":725,"publication_date":"2015-05-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-start-a-frat-house","changefreq":"weekly","video":[{"title":"2015:E14 - We Start a FRAT HOUSE? - #14","description":"PLEDGES! Welcome to Initiation Week for Haus N. This week will be a grueling test of endurance, will, strength, mental acuity, and how much your family is willing to pay us in haus dues.\n\nFirst is the Trial of Endurance, administered by Brother Greene. You will be locked in the boiler room with Brother Greene for 3 hours immediately after he has eaten 2 quarts of hummus. If you make it out of the Trail of Endurance, you pass along to...\n\nThe Trial of Will. Each of you is required to face Brother Kovic's disapproving Resting Bitch Face. Will you crack and run crying to your RA Or will you pass along to...\n\nThe Trial of Strength. In which Brother Willems tosses increasingly heavier kettle bells to you while you hang upside down from a squat rack. How many can you catch That's for us to decide. Should you meet our expectations, you past along to...\n\nThe Trial of Mental Acuity. Brother Rubin will test your wits with questions pertaining to the musical theater and 18th century esoterica. OR BOTH - QUOTE THE LINES FROM THE OPENING SONG TO CANDIDE, PLEDGE! If you impress us...\n\nYou may proceed to pay us exorbitantly high annual dues for the rest of your life. In repayment, we'll give you cheap beer once every 6 weeks.\n\nWelcome to Haus N.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-start-a-frat-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9b0a6db-db6d-4e10-b27e-d013ba3a8c36/sm/ep10900.jpg","duration":647,"publication_date":"2015-05-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-we-dont-play-games-demo-disk-gameplay","changefreq":"weekly","video":[{"title":"2015:E13 - WE DON'T PLAY GAMES - Demo Disk Gameplay","description":"Demo Disk is slowly breaking our will to live. There are so many disks. Will the binder ever end Will any of the disks actually be playable When can we just quit\r\n\r\nWe promised you we'd go through all the disks. Will you hate us if we quit What is the meaning of commitment if we don't deliver on our promises What makes a man What is the nature of good and evil If making videos is good, but demo disks are evil...what does that make us\r\n\r\nSomeone please help us. There are so many disks. So. Many disks.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-we-dont-play-games-demo-disk-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9efd9284-ee86-4848-af06-1fd1b0f1e9be/sm/ep10897.jpg","duration":1074,"publication_date":"2015-05-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-title-copyright-strike","changefreq":"weekly","video":[{"title":"2015:E50 - [TITLE COPYRIGHT STRIKE]","description":"Ornce uporn a torme, in the City of Nore Yorke, lived Charles Deckard. Deckard was a porfessionorl thorf. He was at the torp of his gorme! The shorftiest, snorkiest, best guy in the borsinoss.\r\n\r\nHe was corntorcted by a morsteriorus organizortion called THE BLACK ORDER to storl a morgical item from a morsoreum. Lorttle did he know that item was PORNDORA'S BORX! A morthical ortiforct from ancient Grorce imbued with CORSMIC PAWERS!!!\r\n\r\nAll Horll broke loose. Crotures ran rampornt through Nore Yorke. But there was a sorlver lorning: Deckard was blorsted with morvelous abilities that allowed him to corllect purple and blorst it at his enemies.\r\n\r\nForllow the ordventure of Charles Deckard in: LORGENDORY! Maybe a new sories on Funhorse!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-title-copyright-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5dc4ec5-e658-4190-a28a-07b97d8a3aa9/sm/ep10894.jpg","duration":569,"publication_date":"2015-05-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-grade-you","changefreq":"weekly","video":[{"title":"2015:E6 - WE GRADE YOU","description":"STUDENT REVIEW: FUN HAUS\r\n\r\nDear Mrs. Haus,\r\n\r\nFirst: the good news! This semester your son Fun has made some great strides in class! His Participation is higher than it's ever been, and we're really proud of his performance in Collaboration, Forensics, and especially Gym. Seriously: what have you been feeding this guy - he's lifting like CRAZY!\r\n\r\nHowever, there are still numerous areas that need significant improvement. Reading and Art Comprehension continue to escape Fun, and we're very concerned with his ability to perform simple Math, Science, and Geography skills. He's lacking some basic functional knowledge of Business and Performance as well.\r\n\r\nAs a result of all this, I'm afraid I'm going to have to assign your son Fun Haus an average grade of D+. He's going to need to attend summer classes with us, and hopefully I'll be able to recommend his advancement at the end of the term.\r\n\r\nBest,\r\n\r\nPrincipal Videos","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-grade-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c28f9d79-eab8-414d-ac2d-83b45b2fd332/sm/ep10896.jpg","duration":476,"publication_date":"2015-05-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-mars-fck-yeah","changefreq":"weekly","video":[{"title":"2015:E49 - MARS F*CK YEAH!","description":"Welcome to Mars, colonists! You have been selected for your intelligence, your engineering and scientific skills, and most importantly, how well you fill out that spacesuit. I'm looking at you, Colonist Jade! ;)\r\n\r\nYou'll have a variety of responsibilities while on the Red Planet, from mining for essentials to mining for essential water. Yes, the job entails a lot of mining, but we have fun up here too! Who here like ASTRONAUT BILLIARDS! \r\n\r\nOk, we don't really have billiards - it's just a bunch of rocks that Tim threw on a table. But still: I got stripes!\r\n\r\nEnough with the fun! Let's get down to some of that sweet mining action! So grab your anti-radiation suit, your martian pickaxe, and some anti-radiation pills, because it's time to walk out that hatch and experience all Mars has to offer.\r\n\r\nNot you, Colonist Jade. I'll need to see you in my...private pod. For...research.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-mars-fck-yeah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca23b268-b693-4ea8-8ad2-bff387fd456a/sm/ep10883.jpg","duration":1112,"publication_date":"2015-05-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-funhaus-vs-achievement-hunter","changefreq":"weekly","video":[{"title":"2015:E48 - FUNHAUS VS ACHIEVEMENT HUNTER","description":"It's finally here.\r\n\r\nYou guys have been BEGGING for this since we started in February. \r\n\r\n\"Achievement Hunter vs Funhaus PLS!\" \"You guys should play AH!\" \"When are you going up vs Let's Play!\" \"Where's my daddy\"\r\n\r\nWell, all that anticipation pays off today, buddy, in this one magnificent video. We're really excited to present \"Funhaus And Achievement Hunter in a Rooster Teeth Production of a YouTube Gameplay Video Featuring Smite on the XBox One!\"\r\n\r\nOur original title was too long so we had to chop it down.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-funhaus-vs-achievement-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f369d6f5-d23a-410a-8c57-937cda23002d/sm/ep10881.jpg","duration":1161,"publication_date":"2015-05-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-konami-censors-youtube","changefreq":"weekly","video":[{"title":"2015:E15 - Konami CENSORS YouTube? - #15","description":"Join the Dudes and the always-delightful Naomi Kyle as we talk about Konami censoring YouTube, and Sega's sales numbers, and maybe some other stuff. \n\nI don't actually know ALL of the topics for this week. I wasn't in the room for this Dude Soup recording. Kind of a bummer, because I love being on the podcast, but I always feel like there's an optimal number of Dudes you can put into the Soup at any one time before it gets loud and confusing. Typically 5, sometimes 4.\n\nAnyway, it's probably pretty good. You should watch it, or listen to it. All your friends do.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-konami-censors-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0859859-f8af-4bf8-ac94-f15e1be1ecdb/sm/ep10880.jpg","duration":3706,"publication_date":"2015-05-13T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-we-get-angry","changefreq":"weekly","video":[{"title":"2015:E4 - WE GET ANGRY","description":"Dear Audience: \r\n\r\nLet us make something clear: we never intend to offend anyone. \r\n\r\nSometimes, in the course of commenting on the really crappy games we play, we veer into subjects that might serve as sensitive flashpoints for different people. That's kind of the nature of the stream-of-consciousness commentary we do - anything goes in the context of the gameplay.\r\n\r\nAfter we're done recording, our editors cherry pick what we think are the most entertaining or interesting moments. Sometimes those moments are as innocuous as Bruce farting, and sometimes they're a little more edgy. And that's ok - we work on the internet, right\r\n\r\nNo matter what we do, someone is probably going to be offended by something we say, in almost every video we upload. And, unfortunately, we can't excise every single joke at the expense of triggering someone. Down that path leads milquetoast, boring, bland content that - let's be honest here - no one would want to watch.\r\n\r\nSo please trust us when we say that no joke we make is ever in malice. In fact, most of them are at our own expense: mocking our stupidity, our ignorance, or our lack of professionalism. We love ALL of our fans, and we consider it an honor that you'd spend even a little time with you guys every day.\r\n\r\nAlso: butts are always funny.\r\n\r\nLove,\r\n\r\nFunhaus","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-we-get-angry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb134f86-ea50-4353-9963-923326fd4fd8/sm/ep10866.jpg","duration":643,"publication_date":"2015-05-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-bother-everyone","changefreq":"weekly","video":[{"title":"2015:E13 - We BOTHER EVERYONE? - #13","description":"Open Haus is BACK and BETTER THAN EVER! With this limited time offer YOU TOO can own a piece of INTERNET TELEVISION WHATEVER HISTORY!!!\n\nMost other YouTube channels give you one question; not Funhaus! We give you not one, not two, not three, not four, not five, not six, not seven, BUT SEVEN FULL QUESTIONS and WE EVEN ANSWER SOME OF THEM! Woooooaaaah, doggie!\n\nWhat else You get your photoshops! You get dumb music! You get Lawrence, in the background, grasping his ears as he desperately tries to get work done. YOU GET IT ALL!\n\nWhat's that YOU STILL WANT MORE! SURE THING, BUDDY!\n\nWe're gonna throw in the TOTAL FUNHAUS OPEN HAUS BOYS' PACKAGE for ya! So that's all the questions, some of the answers, all that dumb stuff from the 2 paragraphs ago, PLUS A CLICKABLE LINK TO OUR SUBREDDIT WHERE YOU CAN ASK US STUPID QUESTIONS!! IT'S RIGHT HERE:","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-bother-everyone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/795f6402-3b78-44fa-82be-bde219759ae0/sm/ep10871.jpg","duration":683,"publication_date":"2015-05-12T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-081913-notchs-new-fps-disney-infinity-square-shuts-down-another-fan","changefreq":"weekly","video":[{"title":"S1:E482 - Hard News 08/19/13 - Notch's new FPS, Disney Infinity, Square shuts down another fan","description":"Today on HardNews, Notch's new zombie game, Disney's Infinity freezes S3, and Square Enix shuts down another fan.\r\n\t\r\n\tNotch's new zombie game - http://www.screwattack.com/news/notchs-latest-game-browser-based-fps-where-you-kill-zombies\r\n\tDisney's Infinity freezes the PS3 - http://www.screwattack.com/news/psa-disney-infinity-causing-some-ps3s-hard-lock\r\n\tSquare Enix shuts down unauthorized figurine sales - http://www.screwattack.com/news/square-enix-puts-stop-one-final-fantasy-vii-fan%E2%80%99s-3d-printed-sprite-selling-operation\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-081913-notchs-new-fps-disney-infinity-square-shuts-down-another-fan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20663c1c-53f5-409b-8ce4-3682b56365c6/sm/video_thumbnail_12336323.jpg","duration":147,"publication_date":"2013-08-19T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-mega-evolutions","changefreq":"weekly","video":[{"title":"S1:E194 - The Clip - Mega Evolutions","description":"Pokemon X and Y will let you further evolve certain Pokemon with a Mega Stone.  Psh... been there, done that.","player_loc":"https://roosterteeth.com/embed/the-clip-mega-evolutions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66c0aadb-4832-442a-b667-f9304320d361/sm/video_thumbnail_12317449.jpg","duration":183,"publication_date":"2013-08-16T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/another-shot-with-the-game-overdrinker","changefreq":"weekly","video":[{"title":"S1:E614 - Another shot with the Game OverDrinker","description":"Some additional thoughts on the Mushroom Kingdom.","player_loc":"https://roosterteeth.com/embed/another-shot-with-the-game-overdrinker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db89f9f2-f78e-4461-9221-dfb022a5bb66/sm/video_thumbnail_12315967.jpg","duration":139,"publication_date":"2013-08-16T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-081613-lords-of-shadow-bundle-chief-thunder-and-prey-2","changefreq":"weekly","video":[{"title":"S1:E481 - Hard News 08/16/13 - Lords of Shadow bundle, Chief Thunder, and Prey 2","description":"Today on HardNews, Lords of Shadow bundle, Chief Thunder revealed, and Prey 2 is still alive.\r\n\t\r\n\tLords of Shadow bundle with DLCs - http://www.screwattack.com/news/rumor-konami-may-have-castlevania-lords-shadow-collection-releasing-soon\r\n\tKiller Instinct Chief Thunder revealed - http://www.screwattack.com/video/Double-Helix-reveals-Killer-Instincts-Chief-Thunder-12315370\r\n\tPrey 2 lives on at another studio - http://www.screwattack.com/news/report-prey-2-not-cancelled-arkane-studios-confirmed-be-developing-it\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-081613-lords-of-shadow-bundle-chief-thunder-and-prey-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2271b5fa-fdc6-4ca5-97ad-11d9e0e6580b/sm/video_thumbnail_12315622.jpg","duration":149,"publication_date":"2013-08-16T14:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-in-the-life-can-nick-save-his-animal-crossing-town","changefreq":"weekly","video":[{"title":"S1:E613 - Day in the Life - Can Nick Save His Animal Crossing Town?","description":"After upgrading SD cards in his 3DS not going smoothly, Nick discovered he may have lost the Animal Crossing town he's spent the last two months on! He'll be damned if he doesn't do everything possible to save it!","player_loc":"https://roosterteeth.com/embed/day-in-the-life-can-nick-save-his-animal-crossing-town","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d07f5e4-41aa-47ef-8f4d-85fefde2c523/sm/video_thumbnail_12310441.jpg","duration":376,"publication_date":"2013-08-15T19:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-081513-xbox-one-delayed-in-europe-gta-online-revealed-and-vita-pets","changefreq":"weekly","video":[{"title":"S1:E480 - Hard News 08/15/13 - Xbox One delayed in Europe, GTA Online revealed, and Vita Pets","description":"Today on HardNews, Xbox One delayed in Europe, GTA Online revealed, and Vita Pets.\r\n\t\r\n\tXbox One delayed in certain European countries - http://www.screwattack.com/news/microsoft-removes-8-countries-november-xbox-one-launch\r\n\tGTA Online looks massive - http://www.screwattack.com/news/rockstar-blows-lid-gta-online-coming-gta-v-october\r\n\tPS Vita Pets includes costumes and adventures - http://www.screwattack.com/news/playstation-vita-will-receive-talking-canine-sim-vita-pets\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-081513-xbox-one-delayed-in-europe-gta-online-revealed-and-vita-pets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a2d2ebb-1ce9-4398-8f1a-f9d6cc59ff70/sm/video_thumbnail_12309036.jpg","duration":157,"publication_date":"2013-08-15T14:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-37","changefreq":"weekly","video":[{"title":"S1:E612 - The Game OverDrinker and the Mushroom Kingdom","description":"Sit down and let drunk Sam tell you the truth about the Mushroom Kingdom. *Please drink responsibly and always have a designated driver*\r\nIllustrations by John Francis McCullagh\r\nTwitter.com/ScrewAttackSam\r\n\tTwitter.com/JohnFMFilms","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79e73841-357e-4600-9016-f684e7c9b80f/sm/video_thumbnail_12302426.jpg","duration":205,"publication_date":"2013-08-14T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-081413-12-gb-ps3-coming-to-the-us-and-cod-multiplayer-and-special-editions-revealed","changefreq":"weekly","video":[{"title":"S1:E479 - Hard News 08/14/13 - 12 GB PS3 coming to the US, and CoD Multiplayer and Special Editions revealed","description":"Today on HardNews, 12 GB PS3 coming to the US, and CoD Multiplayer and Special Editions revealed.\r\n\t\r\n\t12 GB PS3 coming to the US - http://www.screwattack.com/news/valve-helping-fan-built-co-op-version-half-life-come-steam\r\n\tCoD Multiplayer - http://www.screwattack.com/news/sony-invites-you-bid-greatness-using-gold-trophies-and-win-cool-stuff\r\n\tCoD: Ghosts Special Editions - http://www.screwattack.com/news/nintendo-trademark-looking-revive-niche-classic\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-081413-12-gb-ps3-coming-to-the-us-and-cod-multiplayer-and-special-editions-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1eff473-d5a1-4f5e-93f7-d1447bb26ef6/sm/video_thumbnail_12302829.jpg","duration":194,"publication_date":"2013-08-14T16:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-7","changefreq":"weekly","video":[{"title":"S1:E611 - Real Trailers - Call of Duty: Ghosts","description":"In case the actual trailer for Call of Duty: Ghosts was a little too subtle, let Craig break down what Activision was trying to say.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53afc7aa-a247-4780-b388-4da2792ba9b9/sm/video_thumbnail_11232621.jpg","duration":60,"publication_date":"2013-08-14T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-081413","changefreq":"weekly","video":[{"title":"S1:E610 - SideScrollers Extended - 08/14/13","description":"Craig, Nick, and Sam talk more of slime, and dog murder.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-081413","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6670b3b-1e86-4757-9fa5-10342a2db048/sm/video_thumbnail_12295028.jpg","duration":680,"publication_date":"2013-08-13T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"totally-innappropriate\"","changefreq":"weekly","video":[{"title":"S1:E127 - SideScrollers - \"Totally Innappropriate\"","description":"We return to the classic, Saturday morning cartoons of the '90's.... and watching your dog get shot right in front of you. All that and more on this week's episode!\r\nVote on the crew you'd like to hear more:\r\nhttps://apps.facebook.com/opinionpolls/poll?pid=ACJF1fuKq3U\r\nWant the Audio Version? Download it here:\r\n\r\n\thttp://traffic.libsyn.com/sidescrollers/SS_08-14-13_totally_innapropriate.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"totally-innappropriate\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a43843ec-da40-4cbe-b7fd-f2639892a986/sm/video_thumbnail_12294951.jpg","duration":3904,"publication_date":"2013-08-13T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-081313-xbox-one-doesnt-need-the-kinect-one-update-the-controller-didnt-get-and-a-little-big-planet-contest","changefreq":"weekly","video":[{"title":"S1:E478 - Hard News 08/13/13 - Xbox One doesn't need the Kinect, one update the controller didn't get, and a Little Big Planet contest","description":"Today on HardNews, Xbox One doesn't need the Kinect, one update the controller didn't get, and a Little Big Planet contest.\r\n\t\r\n\tXbox One will not require the Kinect to be plugged in - http://www.screwattack.com/news/kinecting-people-xbox-one-will-no-longer-require-kinect\r\n\tXbox One controller not compatible with PCs - http://www.screwattack.com/news/100-million-xbox-one-controller-wont-work-pc-until-2014\r\n\tLittle Big Planet contest - http://www.screwattack.com/news/sony-announces-littlebigplanet-contest-media-molecules-tearaway\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-081313-xbox-one-doesnt-need-the-kinect-one-update-the-controller-didnt-get-and-a-little-big-planet-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3d54efd-409b-4ada-be79-93d20d84e211/sm/video_thumbnail_12295448.jpg","duration":162,"publication_date":"2013-08-13T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-gruesome-video-game-deaths","changefreq":"weekly","video":[{"title":"S1:E80 - Top 10 Gruesome Video Game Deaths","description":"Let's just hope our deaths aren't nearly as creative.","player_loc":"https://roosterteeth.com/embed/top-10-gruesome-video-game-deaths","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df36b6a2-98e9-4d55-a6d2-9396818b60a6/sm/video_thumbnail_12288798.jpg","duration":359,"publication_date":"2013-08-12T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-081213-starcraft-mmo-salty-bet-gambling-and-golden-tees-greatest-accessory-ever","changefreq":"weekly","video":[{"title":"S1:E477 - Hard News 08/12/13 - StarCraft MMO, Salty Bet gambling, and Golden Tee's greatest accessory ever","description":"Today on HardNews, StarCraft MMO, Salty Bet gambling, and Golden Tee's greatest accessory ever.\r\n\t\r\n\tStarCraft MMO mod turns to KickStarter - http://www.screwattack.com/news/starcraft-universe-fan-made-mmo-turning-kickstarter\r\n\tSalty Bet virtual fight gambling - http://www.screwattack.com/news/my-new-favorite-past-time-involves-gambling-salty-bet\r\n\tGolden Tee's new unlockable head accessory - http://www.screwattack.com/news/golden-tee-2014-bringing-stoagies-your-hometown-bar\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-081213-starcraft-mmo-salty-bet-gambling-and-golden-tees-greatest-accessory-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3990eeb-78cb-49ef-b50a-72c0f514e0b2/sm/video_thumbnail_12288641.jpg","duration":127,"publication_date":"2013-08-12T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-reasons-duck-tales-remastered-is-ducking-awesome","changefreq":"weekly","video":[{"title":"S1:E79 - Top 5 Reasons Duck Tales Remastered is DUCKing Awesome","description":"Craig counts down why DuckTales isn't Suck Tales.","player_loc":"https://roosterteeth.com/embed/top-5-reasons-duck-tales-remastered-is-ducking-awesome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6476895a-b55d-4bac-ba4a-da1bc16abb4b/sm/video_thumbnail_12284154.jpg","duration":124,"publication_date":"2013-08-12T00:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-stuttering-craigs-best-ever-local-multiplayer-game","changefreq":"weekly","video":[{"title":"S1:E609 - [Advantage] Stuttering Craig's Best EVER Local Multiplayer Game","description":"S1:E609 - [Advantage] Stuttering Craig's Best EVER Local Multiplayer Game","player_loc":"https://roosterteeth.com/embed/advantage-stuttering-craigs-best-ever-local-multiplayer-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/259ed25f-9b09-40f1-94f1-366739bf98bf/sm/video_thumbnail_12277727_0.jpg","duration":122,"publication_date":"2013-08-11T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-local-multiplayer","changefreq":"weekly","video":[{"title":"S1:E29 - The Best EVER: Local Multiplayer","description":"S1:E29 - The Best EVER: Local Multiplayer","player_loc":"https://roosterteeth.com/embed/the-best-ever-local-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee9e1721-bc27-4d82-8e9d-962ddcdde451/sm/video_thumbnail_12269753_0.jpg","duration":424,"publication_date":"2013-08-09T23:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080913-matt-hooper-joins-the-oculus-rift-wonderful-101-news-and-a-playstation-all-star-sequel","changefreq":"weekly","video":[{"title":"S1:E476 - Hard News 08/09/13 - Matt Hooper joins the Oculus Rift, Wonderful 101 news, and a Playstation All Star sequel","description":"Today on HardNews, Matt Hooper joins the Oculus Rift, Wonderful 101 news, and a Playstation All Star sequel.\r\n\t\r\n\tMatt Hooper joins the Oculus Rift - http://www.screwattack.com/news/id-software-creative-director-matt-hooper-join-oculus-vr\r\n\tWonderful 101 news - http://www.screwattack.com/video/Finally-it-is-time-for-the-Wonderful-101-Nintendo-Direct-12264845\r\n\tPlaystation All Star sequel - http://www.screwattack.com/video/CocaCola-brings-back-PlayStation-AllStars-for-a-mobile-game-promo-12266911\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080913-matt-hooper-joins-the-oculus-rift-wonderful-101-news-and-a-playstation-all-star-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c581c10-a360-401f-b560-e49466f298f9/sm/video_thumbnail_12267629.jpg","duration":178,"publication_date":"2013-08-09T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080813-xbox-one-unboxing-ridiculous-snoopify-app-and-nintendos-war-on-piracy","changefreq":"weekly","video":[{"title":"S1:E475 - Hard News 08/08/13 - Xbox One unboxing, ridiculous Snoopify app, and Nintendo's war on piracy","description":"Today on HardNews, Xbox One unboxing, ridiculous Snoopify app, and Nintendo's war on piracy.\r\n\t\r\n\tXbox One unboxing - http://www.screwattack.com/video/Major-Nelson-has-an-Xbox-One-unboxing-that-includes-a-headset-12259547\r\n\tSnoopify app joint - http://www.screwattack.com/news/snoop-lions-new-app-lets-you-buy-near-100-digital-golden-joint\r\n\tNintendo's war on piracy - http://www.screwattack.com/news/nintendo-files-suit-against-hackyourconsolecom-war-piracy-rages\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080813-xbox-one-unboxing-ridiculous-snoopify-app-and-nintendos-war-on-piracy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f86b775f-db72-4c33-a064-a20d9ece4574/sm/video_thumbnail_12260114.jpg","duration":152,"publication_date":"2013-08-08T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-terrorizes-the-other-new-guy","changefreq":"weekly","video":[{"title":"S1:E608 - Unaware Steve Terrorizes the Other New Guy","description":"Steve crosses paths with John, a kung fu master-in-training in the bathro ... his office.","player_loc":"https://roosterteeth.com/embed/unaware-steve-terrorizes-the-other-new-guy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/723e4ef2-ba0c-418d-93e7-c883b94c8d7f/sm/video_thumbnail_12211534.jpg","duration":304,"publication_date":"2013-08-08T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080713-nintendo-direct-recap-and-john-carmack-joins-the-oculus-rift-team","changefreq":"weekly","video":[{"title":"S1:E474 - Hard News 08/07/13 - Nintendo Direct recap, and John Carmack joins the Oculus Rift team","description":"Today on HardNews, Nintendo Direct recap, and John Carmack joins the Oculus Rift team.\r\n\t\r\n\tNintendo Direct 08/07/13 - http://www.screwattack.com/news/too-busy-watch-nintendo-direct-well-then-enjoy-brief-summary\r\n\tJohn Carmack joins the Oculus Rift team - http://www.screwattack.com/news/john-carmack-has-revealed-he-new-cto-oculus-vr\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080713-nintendo-direct-recap-and-john-carmack-joins-the-oculus-rift-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72021de9-090c-49a5-a1ed-e092937325e6/sm/video_thumbnail_12252877.jpg","duration":169,"publication_date":"2013-08-07T13:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-080713","changefreq":"weekly","video":[{"title":"S1:E607 - SideScrollers Extended - 08/07/13","description":"Craig takes us back to the younger version of himself, when ScrewAttack was born, and how both the company and himself have changed through the years. Exclusive for Advantage Members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-080713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1427e6-607d-40af-911c-636d27fc1626/sm/video_thumbnail_12247546.jpg","duration":407,"publication_date":"2013-08-07T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"kissin-babies\"","changefreq":"weekly","video":[{"title":"S1:E126 - SideScrollers - \"Kissin' Babies\"","description":"Craig returns to SideScrollers, and babies become mayors! All this and more on this week's episode!\r\n\r\n\tWant the audio version? Download it here: http://traffic.libsyn.com/sidescrollers/SS_8-07-13_Kissin_Babies_Audio.mp3  \r\n\r\n\t \r\n\r\n\tVote on who the third person on SideScrollers should be here:\r\n\r\n\thttps://apps.facebook.com/opinionpolls/poll?pid=ACI7gSj5zOI","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"kissin-babies\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c65fa318-8fd4-4d40-8838-040ba1d52e01/sm/video_thumbnail_12245601.jpg","duration":3087,"publication_date":"2013-08-06T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080613-security-breach-at-crytek-russia-removes-coh-2-and-a-revealing-leaked-screenshot-from-valve","changefreq":"weekly","video":[{"title":"S1:E473 - Hard News 08/06/13 - Security breach at Crytek, Russia removes CoH 2, and a revealing leaked screenshot from Valve","description":"Today on HardNews, Security breach at Crytek, Russia removes CoH 2, and a revealing leaked screenshot from Valve.\r\n\t\r\n\tSecurity breach at Crytek - http://www.screwattack.com/news/ruh-roh-it-seems-crytek-may-have-had-website-or-two-hacked\r\n\tRussia rejects Company of Heroes 2 - http://www.screwattack.com/news/company-heroes-2-pulled-retail-russia-and-neighboring-countries\r\n\tLeaked screenshot from Valve - http://www.screwattack.com/news/rumor-valve-can-count-three-according-recent-l4d3-source-2-leak\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080613-security-breach-at-crytek-russia-removes-coh-2-and-a-revealing-leaked-screenshot-from-valve","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/104f5f61-1226-426f-bb29-b610bbe98bb8/sm/video_thumbnail_12246202.jpg","duration":144,"publication_date":"2013-08-06T14:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-shadow-warrior","changefreq":"weekly","video":[{"title":"S1:E399 - Video Game Vault - Shadow Warrior","description":"Duke Nukem's brother from another mother kicked demon ass up and down Japan all while showing the ladies a little dirty love. Hey, Lo Wang's wang ain't gonna wash itself!","player_loc":"https://roosterteeth.com/embed/video-game-vault-shadow-warrior","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96ede14b-2a4e-46f7-80f5-ad093d9f836d/sm/video_thumbnail_12239454.jpg","duration":116,"publication_date":"2013-08-05T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080513-ps4vita-bundle-rumored-the-last-of-us-censored-in-europe-and-new-blackpowder-game","changefreq":"weekly","video":[{"title":"S1:E472 - Hard News 08/05/13 - PS4/Vita bundle rumored, The Last of Us censored in Europe, and new Blackpowder game","description":"Today on HardNews, PS4/Vita bundle rumored, The Last of Us censored in Europe, and new Blackpowder game.\r\n\t\r\n\tPS4/Vita bundle - http://www.screwattack.com/news/rumor-sony-may-try-bundle-ps4-vita-holiday-season\r\n\tThe Last of Us censorship - http://www.screwattack.com/news/last-us-multiplayer-censorship-confirmed-pal-versions\r\n\tNew Blackpowder game revealed - http://www.screwattack.com/video/Blackpowder-games-reveals-Betrayer-coming-to-Steam-Early-Acess-this-month-12239519\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080513-ps4vita-bundle-rumored-the-last-of-us-censored-in-europe-and-new-blackpowder-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4aed671-5096-4641-9449-4405248470b7/sm/video_thumbnail_12239976.jpg","duration":151,"publication_date":"2013-08-05T16:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-nicks-dad-advances-spitwad-technology","changefreq":"weekly","video":[{"title":"S1:E606 - A Day In The Life - Nick's Dad Advances Spitwad Technology","description":"A surprise visit by Nick's dad allowed us to glimpse into the future.  This ain't your average classroom weapon anymore.","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-nicks-dad-advances-spitwad-technology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d6a5596-f9c9-4f27-87ff-5fb57f0f9ed2/sm/video_thumbnail_12211323.jpg","duration":263,"publication_date":"2013-08-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quakecon-go-witch-hunting-in-dishonoreds-latest-dlc","changefreq":"weekly","video":[{"title":"S1:E605 - [QuakeCon] Go witch hunting in Dishonored's latest DLC","description":"Brigmore Witches continues on with the story of Daud as the world of Dishonored is fleshed out. Bryan got hands on with the ace assassin and had plenty to say about his next piece of DLC.","player_loc":"https://roosterteeth.com/embed/quakecon-go-witch-hunting-in-dishonoreds-latest-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5664d8a7-9c09-4c81-9569-160abd6bc7ec/sm/video_thumbnail_12233935.jpg","duration":249,"publication_date":"2013-08-04T18:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quakecon-really-get-in-the-game-with-the-omni","changefreq":"weekly","video":[{"title":"S1:E604 - [QuakeCon] Really get in the game with the Omni!","description":"Want to really get in the game? Maybe get some exercise while you're at it? Then you want the Omni!","player_loc":"https://roosterteeth.com/embed/quakecon-really-get-in-the-game-with-the-omni","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/147c1655-faa0-4783-a290-ba7e410defa8/sm/video_thumbnail_12233931.jpg","duration":139,"publication_date":"2013-08-04T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-a-guide-to-comments-on-the-internet","changefreq":"weekly","video":[{"title":"S1:E193 - The Clip - A Guide To Comments On The Internet","description":"Say, chap, you ever hear of the Internet?  Well listen good, sonny, 'cause I'll teach you how not to be a square in comments sections!","player_loc":"https://roosterteeth.com/embed/the-clip-a-guide-to-comments-on-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b89713c-1791-425b-a3db-8662993342db/sm/video_thumbnail_12220422.jpg","duration":122,"publication_date":"2013-08-02T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-3","changefreq":"weekly","video":[{"title":"S2:E3 - Ryu Hayabusa VS Strider Hiryu","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e4c18d9-b468-40b9-a9b8-dd30a1226602/sm/video_thumbnail_12213436_2.jpg","duration":633,"publication_date":"2013-08-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080213-wolfenstein-delayed-elder-scrolls-anthology-and-the-ffvii-web-series-has-been-shut-down","changefreq":"weekly","video":[{"title":"S1:E471 - Hard News 08/02/13 - Wolfenstein delayed, Elder Scrolls Anthology, and the FFVII web series has been shut down","description":"Today on HardNews, Wolfenstein delayed, Elder Scrolls Anthology, and the FFVII web series has been shut down.\r\n\t\r\n\tWolfenstein: New Order has been dealyed - http://www.screwattack.com/news/quakecon-wolfenstein-new-order-has-been-delayed-next-year\r\n\tElder Scrolls Anthology - http://www.screwattack.com/news/quakecon-bethesda-reveals-elder-scrolls-anthology-later-year\r\n\tFFVII web series order to Cease and Desist - http://www.screwattack.com/news/final-fantasy-vii-web-series-has-been-shut-down\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080213-wolfenstein-delayed-elder-scrolls-anthology-and-the-ffvii-web-series-has-been-shut-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/722d6a52-f744-45fc-a65b-bd50974d7b68/sm/video_thumbnail_12218429_0.jpg","duration":152,"publication_date":"2013-08-02T13:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-080113-new-breath-of-fire-humble-bundle-and-tomb-raider-sequel-confirmed","changefreq":"weekly","video":[{"title":"S1:E470 - Hard News 08/01/13 - New Breath of Fire, Humble Bundle, and Tomb Raider sequel confirmed","description":"Today on HardNews, New Breath of Fire, Humble Bundle, and Tomb Raider sequel confirmed.\r\n\t\r\n\tNew Breath of Fire announced - http://www.screwattack.com/news/breath-fire-6-announced\r\n\tNew Humble Bundle featuring Saints Row, Dead Island, and more - http://www.screwattack.com/news/zombies-and-saints-new-deep-silver-humble-bundle\r\n\tTomb Raider sequel announced - http://www.screwattack.com/news/sequel-tomb-raider-works\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-080113-new-breath-of-fire-humble-bundle-and-tomb-raider-sequel-confirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e7e4d90-1d98-42bd-897b-4f228bae496b/sm/video_thumbnail_12211735.jpg","duration":126,"publication_date":"2013-08-01T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-gives-the-new-guy-nightmares","changefreq":"weekly","video":[{"title":"S1:E603 - Unaware Steve gives the new guy NIGHTMARES","description":"S1:E603 - Unaware Steve gives the new guy NIGHTMARES","player_loc":"https://roosterteeth.com/embed/unaware-steve-gives-the-new-guy-nightmares","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23e4d48d-181e-4fe6-95d0-6a29d753a1c8/sm/video_thumbnail_12207855.jpg","duration":339,"publication_date":"2013-08-01T01:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-073113-batman-online-multiplayer-xbox-headset-adapter-and-a-new-bully-game","changefreq":"weekly","video":[{"title":"S1:E469 - Hard News 07/31/13 - Batman online multiplayer, Xbox headset adapter, and a new Bully game","description":"Today on HardNews, Batman online multiplayer, Xbox headset adapter, and a new Bully game.\r\n\t\r\n\tBatman: Arkham Origins online multiplayer - http://www.screwattack.com/video/WBIE-reveals-Batman-Arkham-Origins-multiplayer-mode-12204678\r\n\tXbox One headset adapter for 360 headsets - http://www.screwattack.com/news/microsoft-confirms-accessory-make-xbox-360-headset-compatible-xbox-one\r\n\tTrademarks registered for a new Bully game - http://www.screwattack.com/news/new-bully-town\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-073113-batman-online-multiplayer-xbox-headset-adapter-and-a-new-bully-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/651cf456-d208-4bf5-9bd6-175c67846938/sm/video_thumbnail_12204855.jpg","duration":156,"publication_date":"2013-07-31T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-073113","changefreq":"weekly","video":[{"title":"S1:E602 - SideScrollers Extended - 07/31/13","description":"The Amazing Frog and more Amazing Frog.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-073113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7731da28-694a-4868-b8f0-79fab13f868c/sm/video_thumbnail_12197063.png","duration":592,"publication_date":"2013-07-30T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"chuck-e-cheese-war\"","changefreq":"weekly","video":[{"title":"S1:E125 - SideScrollers - \"Chuck E. Cheese War\"","description":"Chuck E. Cheese brawls and the 6 year old girl: Phil Fish... what else needs to be said?\r\nWant the Audio Version? Download it here:\r\n\r\n\thttp://traffic.libsyn.com/sidescrollers/SS_07-29-13_Chuck-E-Cheese_War_Audio_MP3.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"chuck-e-cheese-war\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f56e06e6-4781-4781-91d8-8fb871fe9417/sm/video_thumbnail_12196962.jpg","duration":3460,"publication_date":"2013-07-30T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-073013-bioshock-dlcs-capcom-bundle-pack-in-the-works-and-aisha-tylers-watch-dogs-cameo","changefreq":"weekly","video":[{"title":"S1:E468 - Hard News 07/30/13 - Bioshock DLCs, Capcom bundle pack in the works, and Aisha Tyler's Watch Dogs cameo","description":"Today on HardNews, Bioshock DLCs, Capcom bundle pack in the works, and Aisha Tyler's Watch Dogs cameo.\r\n\t\r\n\tBioshock: Infinite DLCs - http://www.screwattack.com/video/Irrational-and-2K-Games-release-BioSock-Infinite-DLC-TODAY-12196202\r\n\tCapcom bundle pack in the works - http://www.screwattack.com/news/rumor-capcom-bundle-five-games-considered-essentials-generation\r\n\tAisha Tyler's Watch Dogs cameo - http://www.screwattack.com/video/Aisha-Taylor-has-a-Watchdogs-cameo-and-it-ends-in-a-wreck-12197521\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-073013-bioshock-dlcs-capcom-bundle-pack-in-the-works-and-aisha-tylers-watch-dogs-cameo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a766cb9f-d2d1-4a65-bef1-4674ca88de54/sm/video_thumbnail_12198269.jpg","duration":158,"publication_date":"2013-07-30T16:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072913-saints-row-iv-game-of-the-generation-phil-fish-loses-his-mind-and-playstation-news","changefreq":"weekly","video":[{"title":"S1:E467 - Hard News 07/29/13 - Saints Row IV: Game of the Generation, Phil Fish loses his mind, and Playstation news","description":"Today on HardNews, Saints Row IV: Game of the Generation, Phil Fish loses his mind, and Playstation news.\r\n\t\r\n\tSaints Row IV: Game of the Generation http://www.screwattack.com/news/saints-row-4-brings-us-emperor-zinyaks-game-generation-edition\r\n\tPhil Fish loses his mind - http://www.screwattack.com/news/phil-fish-cancels-fez-ii-says-hes-quitting-industry\r\n\tPlaystation news - http://www.screwattack.com/news/playstation-4-friends-list-confirmed-be-2000-and-will-support-party-chat\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-072913-saints-row-iv-game-of-the-generation-phil-fish-loses-his-mind-and-playstation-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d65e63ac-bbca-4cf3-8c70-75f86eddd356/sm/video_thumbnail_12191601.jpg","duration":216,"publication_date":"2013-07-29T17:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-video-game-story","changefreq":"weekly","video":[{"title":"S1:E28 - The Worst EVER! - Video Game Story","description":"S1:E28 - The Worst EVER! - Video Game Story","player_loc":"https://roosterteeth.com/embed/the-worst-ever-video-game-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0f3c255-8373-4a7a-a36d-7b664443708c/sm/video_thumbnail_12172886_0.jpg","duration":507,"publication_date":"2013-07-28T10:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/decide-our-new-shows-fate","changefreq":"weekly","video":[{"title":"S1:E601 - Decide Our New Show's Fate!","description":"We're created two episodes of \"The Game Mass Debaters\" (aka TMD) and want YOU to decide which version you like more - the \"serious\" or \"not so serious\".  Watch both and give the one you like a thumbs up, share and comment on them. If you like them both then give both them a thumbs up.  This is your chance to make an impact on our programming!\r\n\r\n\t \r\n\r\n\tWatch the \"Serious\" pilot here\r\n\r\n\tWatch the \"Not So Serious\" pilot here","player_loc":"https://roosterteeth.com/embed/decide-our-new-shows-fate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c670ba1e-5c0f-41af-9acc-61f29439d99f/sm/video_thumbnail_12168197.jpg","duration":115,"publication_date":"2013-07-28T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072613-new-fear-game-in-the-works-activision-buys-its-independence-and-new-megaman-game","changefreq":"weekly","video":[{"title":"S1:E466 - Hard News 07/26/13 - New FEAR game in the works, Activision buys its independence, and new Megaman game!","description":"Today on HardNews, New FEAR game in the works, Activision buys its independence, and new Megaman game!\r\n\t\r\n\tNew FEAR game in the works http://www.screwattack.com/news/it-looks-fear-will-be-going-online-haunt-you\r\n\tActivision's Independence Day - http://www.screwattack.com/news/vivendi-universal-sells-activisionblizzard-activisionblizzard\r\n\tNew Megaman game! - http://www.screwattack.com/news/official-mega-man-board-game-gets-facebook-page\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-072613-new-fear-game-in-the-works-activision-buys-its-independence-and-new-megaman-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d9315f9-a3ab-420c-9020-87b90732f034/sm/video_thumbnail_12169517.jpg","duration":148,"publication_date":"2013-07-26T14:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072513-develop-on-the-xbox-one-phoenix-wright-defends-a-pirate-whale-and-no-story-mode-in-new-smash-bros","changefreq":"weekly","video":[{"title":"S1:E465 - Hard News 07/25/13 - Develop on the Xbox One, Phoenix Wright defends a pirate whale, and no story mode in new Smash bros","description":"Today on HardNews, Develop on the Xbox One, Phoenix Wright defends a pirate whale, and no story mode in new Smash bros.\r\n\t\r\n\tDevelop games on the Xbox One - http://www.screwattack.com/news/xbox-one-apparently-developer-friendly-console-helping-you-create-games\r\n\tPhoenix Wright pirate whale DLC - http://www.screwattack.com/news/phoenix-wright-dlc-points-killer-whale-and-pirates\r\nNo story mode in Smash Bros - http://www.screwattack.com/news/super-smash-bros-3dswii-u-will-not-have-story-or-cutscenes\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-072513-develop-on-the-xbox-one-phoenix-wright-defends-a-pirate-whale-and-no-story-mode-in-new-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5885cd1-9635-45c7-878b-2d560eebdd1f/sm/video_thumbnail_12162523.jpg","duration":169,"publication_date":"2013-07-25T15:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072413-gran-turismo-gets-a-movie-no-more-darkstalkers-and-ea-gets-sued-over-madden","changefreq":"weekly","video":[{"title":"S1:E464 - Hard News 07/24/13 - Gran Turismo gets a movie, no more Darkstalkers, and EA gets sued over Madden","description":"Today on HardNews, Gran Turismo gets a movie, no more Darkstalkers, and EA gets sued over Madden.\r\n\t\r\n\tGran Turismo get a movie - http://www.screwattack.com/news/sony-working-gran-turismo-movie\r\n\tCapcom shelves Darkstalkers - http://www.screwattack.com/news/capcom-decides-put-darkstalkers-franchise-ice\r\nOriginal creator of Madden wins $11 million lawsuit - http://www.screwattack.com/news/original-creator-madden-wins-11-million-lawsuit-against-ea\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-072413-gran-turismo-gets-a-movie-no-more-darkstalkers-and-ea-gets-sued-over-madden","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93e09141-1154-4964-b381-20fbb1dba9c2/sm/video_thumbnail_12154932.jpg","duration":144,"publication_date":"2013-07-24T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-072413","changefreq":"weekly","video":[{"title":"S1:E600 - SideScrollers Extended - 07/24/13","description":"SideScrollers Extended.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-072413","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d737cb1-a86a-4c33-82c8-972a3c7fb383/sm/video_thumbnail_12153013.jpg","duration":752,"publication_date":"2013-07-24T08:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"speed-racer\"","changefreq":"weekly","video":[{"title":"S1:E124 - SideScrollers - \"Speed Racer\"","description":"Chad, Nick and Sam talk about their run-ins with Johnny Law.\r\nChad Twitter (https://twitter.com/screwattackchad)\r\n\t\r\n\tNick Twitter (https://twitter.com/thenervousnick)\r\n\t\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\nScrewAttack Twitter (https://twitter.com/ScrewAttack)","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"speed-racer\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/434ffc9b-f31c-4d8b-a13c-2995522c7e1f/sm/video_thumbnail_12153011.jpg","duration":3238,"publication_date":"2013-07-24T08:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072313-soriti-horse-live-action-final-fantasy-vii-and-disneys-aireal","changefreq":"weekly","video":[{"title":"S1:E463 - Hard News 07/23/13 - Soriti Horse, live action Final Fantasy VII, and Disney's AIREAL","description":"Today on HardNews, Soriti Horse, live action Final Fantasy VII, and Disney's AIREAL.\r\n\t\r\n\tGame Freak's new title - http://www.screwattack.com/news/game-freaks-latest-title-soriti-horse-3ds\r\n\tFinal Fantasy VII: The Web Series - http://www.screwattack.com/video/Final-Fantasy-VII-The-Web-Series-is-bringing-the-game-to-life-12147484\r\nDisney's new AIREAL device - http://www.screwattack.com/video/Disney-Research-is-trying-to-bring-the-feels-to-motion-gaming-12147576\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-072313-soriti-horse-live-action-final-fantasy-vii-and-disneys-aireal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb44e98-d614-4c25-b509-008dbe3c2eb0/sm/video_thumbnail_12148367.jpg","duration":163,"publication_date":"2013-07-23T15:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-life-and-death-ii","changefreq":"weekly","video":[{"title":"S1:E398 - VGV - Life and Death II","description":"Nick returns to Toolworks General Hospital, but now as a brain surgeon..... who likes pizza.","player_loc":"https://roosterteeth.com/embed/vgv-life-and-death-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b16fd1ec-cd80-49d7-8b6b-40a151d6fdd0/sm/video_thumbnail_12110342.jpg","duration":198,"publication_date":"2013-07-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072213-soul-calibur-ii-hd-jay-silent-bob-and-a-world-of-warcraft-movie","changefreq":"weekly","video":[{"title":"S1:E462 - Hard News 07/22/13 - Soul Calibur II HD, Jay & Silent Bob, and a World of Warcraft movie","description":"Today on HardNews, Soul Calibur II HD, Jay & Silent Bob, and a World of Warcraft movie.\r\n\t\r\n\tJay and Silent Bob are big Plants vs. Zombies fans - http://www.screwattack.com/video/Jay-and-Silent-Bob-are-big-Plants-vs-Zombies-fans-12141051\r\n\tWorld of Warcraft movie to start shooting in 2014 - http://www.screwattack.com/news/sdcc-has-revealed-warcraft-will-be-happening\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-072213-soul-calibur-ii-hd-jay-silent-bob-and-a-world-of-warcraft-movie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e32cb2d-598f-42d6-bdb7-76dc61bd4377/sm/video_thumbnail_12141410.jpg","duration":162,"publication_date":"2013-07-22T16:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-xbox-one-cant-win","changefreq":"weekly","video":[{"title":"S1:E192 - The Clip - Xbox One Can't Win","description":"S1:E192 - The Clip - Xbox One Can't Win","player_loc":"https://roosterteeth.com/embed/the-clip-xbox-one-cant-win","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf731139-081a-4525-b84a-e7e036461c16/sm/video_thumbnail_12122157.jpg","duration":208,"publication_date":"2013-07-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071913-nintendo-direct-breach-clear-and-a-new-strider-game","changefreq":"weekly","video":[{"title":"S1:E461 - Hard News 07/19/13 - Nintendo Direct, Breach & Clear, and a new Strider game","description":"Today on HardNews, Nintendo Direct, Breach & Clear, and a new Strider game.\r\n\t\r\n\tNintendo Direct - http://www.screwattack.com/news/nintendo-direct-mini-sneaks-its-way-internet-reveals-little\r\n\tBowling's Breach & Clear - http://www.screwattack.com/news/breach-clear-robert-bowlings-first-indie-game-has-launched-ios\r\n\tNew Strider game in the works - http://www.screwattack.com/video/New-HD-Strider-game-announced-12112869\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071913-nintendo-direct-breach-clear-and-a-new-strider-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890803b1-d132-4664-a3d0-56acd44b228d/sm/video_thumbnail_12119312.jpg","duration":128,"publication_date":"2013-07-19T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-hard-news-bloopers-lonely-planet-of-the-mountain-king","changefreq":"weekly","video":[{"title":"S1:E599 - [Advantage] Hard News Bloopers - Lonely Planet of the Mountain King","description":"When you host a show 5 days a week, sometimes you spiral into beautiful random insanity...","player_loc":"https://roosterteeth.com/embed/advantage-hard-news-bloopers-lonely-planet-of-the-mountain-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87fa4d8f-5d5d-48ca-83a0-dcc82560a5c1/sm/video_thumbnail_12118765.jpg","duration":141,"publication_date":"2013-07-19T12:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071813-harmonix-gets-paid-ncaa-wont-renew-license-with-ea-and-ace-attorney-5","changefreq":"weekly","video":[{"title":"S1:E460 - Hard News 07/18/13 - Harmonix gets paid, NCAA won't renew license with EA, and Ace Attorney 5","description":"Today on HardNews, Harmonix gets paid, NCAA won't renew license with EA, and Ace Attorney 5.\r\n\t\r\n\tHarmonix wins lawsuit against Viacom - http://www.screwattack.com/news/viacom-loses-court-battle-harmonix-and-owes-over-half-billion-dollars\r\n\tNCAA won't renew license with EA, but that won't stop EA - http://www.screwattack.com/news/ncaa-will-not-renew-license-ea-wont-stop-ea\r\n\tAce Attorney gets… killed!? - http://www.screwattack.com/video/Apollo-Justice-first-case-in-Phoenix-Wright-Duel-Destinies-revealsPhoenix-gets-killed-12108399\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071813-harmonix-gets-paid-ncaa-wont-renew-license-with-ea-and-ace-attorney-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae7decf9-cfaa-4b31-b2a1-802a5cd28219/sm/video_thumbnail_12111816.jpg","duration":124,"publication_date":"2013-07-18T13:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071713-half-life-coop-psn-trophy-bidding-and-seaman","changefreq":"weekly","video":[{"title":"S1:E459 - Hard News 07/17/13 - Half Life Coop, PSN trophy bidding, and Seaman","description":"Today on HardNews, Half Life Coop, PSN trophy bidding, and Seaman.\r\n\t\r\n\tSven Half Life coop sanctioned by Valve - http://www.screwattack.com/news/valve-helping-fan-built-co-op-version-half-life-come-steam\r\n\tPSN \"Greatness Awaits\" Gold Trophy bidding - http://www.screwattack.com/news/sony-invites-you-bid-greatness-using-gold-trophies-and-win-cool-stuff\r\n\tSeaman, a fish with a human face - http://www.screwattack.com/news/nintendo-trademark-looking-revive-niche-classic\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071713-half-life-coop-psn-trophy-bidding-and-seaman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7107e02c-1fc8-4972-9e11-8c44fd4d0ab3/sm/video_thumbnail_12105154.jpg","duration":140,"publication_date":"2013-07-17T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-mega-man-unlimited","changefreq":"weekly","video":[{"title":"S1:E18 - Out of the Box - Mega Man Unlimited","description":"Is this fan made game worth the pixels it's made on?  Find out as we get our hands on Mega Man Unlimited.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-mega-man-unlimited","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2625b35-ec2b-46ec-9dbb-971e2b5c20e4/sm/video_thumbnail_12103104.jpg","duration":3097,"publication_date":"2013-07-17T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-071713","changefreq":"weekly","video":[{"title":"S1:E598 - SideScrollers Extended - 07/17/13","description":"Extra SideScrollers footage exclusively for Advantage members.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-071713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/924bacb0-faf6-4e0b-9f5f-01894999d824/sm/video_thumbnail_12097916.jpg","duration":644,"publication_date":"2013-07-17T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"whip-it\"","changefreq":"weekly","video":[{"title":"S1:E123 - SideScrollers - \"Whip It\"","description":"Do we need backup here at the office? I don't think so.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"whip-it\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be24adbc-3180-4109-8781-89322f246c27/sm/video_thumbnail_12097500.jpg","duration":2569,"publication_date":"2013-07-16T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071613-customizable-dogs-surface-price-cut-and-valve-teaches-the-teens","changefreq":"weekly","video":[{"title":"S1:E458 - Hard News 07/16/13 - Customizable dogs, Surface price cut, and Valve teaches the teens","description":"Today on HardNews, Customizable dogs, Surface price cut, and Valve teaches the teens.\r\n\t\r\n\tCustomize your dog in GTA V - http://www.screwattack.com/news/famitsu-reveals-gta-v-doggy-lover-cats-can-suck-it\r\n\tMicrosoft cuts the price of its Surface tablet - http://www.screwattack.com/news/microsoft-drops-prices-surface-rt-much-30\r\n\tValve Pipeline mentors teens - http://www.screwattack.com/news/valve-taps-younger-side-game-development-pipeline\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071613-customizable-dogs-surface-price-cut-and-valve-teaches-the-teens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec00c505-fe65-4a2d-a7fd-546d7cd5b361/sm/video_thumbnail_12097535.jpg","duration":141,"publication_date":"2013-07-16T13:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evo-2013-seth-killian-talks-ultra-street-fighter-iv","changefreq":"weekly","video":[{"title":"S1:E597 - [EVO 2013] Seth Killian talks Ultra Street Fighter IV","description":"S1:E597 - [EVO 2013] Seth Killian talks Ultra Street Fighter IV","player_loc":"https://roosterteeth.com/embed/evo-2013-seth-killian-talks-ultra-street-fighter-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1090a3aa-f9aa-4f20-a581-94ccabba0a6e/sm/video_thumbnail_12088076.jpg","duration":231,"publication_date":"2013-07-15T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071513-dlc-announcements-at-evo-and-league-of-legends-is-now-a-sport","changefreq":"weekly","video":[{"title":"S1:E457 - Hard News 07/15/13 - DLC announcements at EVO, and League of Legends is now a sport!","description":"Today on HardNews, DLC announcements at EVO, and League of Legends is now a sport!\r\n\t\r\n\tFive more characters for Street Fight IV - http://www.screwattack.com/news/five-more-characters-will-be-added-street-fighter-iv-yet-another-update\r\n\tMartian Manhunter announced - http://www.screwattack.com/video/Martian-Manhunter-has-been-revealed-as-Injustices-5th-DLC-character-12083734\r\n\tUS Government recognizes LoL as a sport - http://www.screwattack.com/news/us-government-recognizes-professional-gamers-athletes\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071513-dlc-announcements-at-evo-and-league-of-legends-is-now-a-sport","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d63f1d-d04e-4508-87cc-6a4fd43f2cf8/sm/video_thumbnail_12090007.jpg","duration":126,"publication_date":"2013-07-15T12:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-sgc-2013-moment","changefreq":"weekly","video":[{"title":"S1:E27 - The Best EVER! - SGC 2013 Moment","description":"The journey to briong back the greatest gamer party known to the human race is complete.  Looking back, what were some of the staff's favorite parts?","player_loc":"https://roosterteeth.com/embed/the-best-ever-sgc-2013-moment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53a14c75-5bab-4555-9413-ac6d03aa570e/sm/video_thumbnail_12072194.jpg","duration":437,"publication_date":"2013-07-13T02:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071213-infinity-blade-cancelled-deus-ex-screws-over-pirates-and-new-streetpass-updates","changefreq":"weekly","video":[{"title":"S1:E456 - Hard News 07/12/13 - Infinity Blade cancelled, Deus Ex screws over pirates, and new Streetpass updates","description":"Today on HardNews, Infinity Blade cancelled, Deus Ex screws over pirates, and new Streetpass updates.\r\n\t\r\n\tInfinity Blade: Dungeons cancelled - http://www.screwattack.com/news/infinity-blade-dungeons-officially-canceled-epic-games\r\n\tDeus Ex: The Fall jams the gun on jailbroken iOS - http://www.screwattack.com/news/deus-ex-fall-trolls-jailbroken-ios-users-jammed-weapons\r\n\tNew 3DS updates - http://www.screwattack.com/news/nintendo-brings-four-mii-plaza-games-north-america-today\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071213-infinity-blade-cancelled-deus-ex-screws-over-pirates-and-new-streetpass-updates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56beb8b4-4775-4eac-9819-eaa6669d7910/sm/video_thumbnail_12068893.jpg","duration":102,"publication_date":"2013-07-12T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071113-new-ratchet-clank-china-may-lift-console-ban-and-trying-to-reverse-xboxs-reversal","changefreq":"weekly","video":[{"title":"S1:E455 - Hard News 07/11/13 - New Ratchet & Clank, China may lift console ban, and trying to reverse Xbox's reversal","description":"Today on HardNews, New Ratchet & Clank, China may lift console ban, and trying to reverse Xbox's reversal.\r\n\t\r\n\tNew Ratchet & Clank game - http://www.screwattack.com/news/ratchet-and-clank-nexus-announced\r\n\tChina may allow consoles - http://www.screwattack.com/news/china-may-fact-allow-consoles-we-know-and-love-be-imported\r\n\tFans try to reverse the Xbox One's reversal - http://www.screwattack.com/news/fans-start-online-petition-reverse-xbox-ones-drm-reversal\r\n\t \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-071113-new-ratchet-clank-china-may-lift-console-ban-and-trying-to-reverse-xboxs-reversal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6021cc5a-0f25-4ab4-89a2-ff340dfd31dc/sm/video_thumbnail_12060829.jpg","duration":131,"publication_date":"2013-07-11T13:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-the-game-mass-debaters-pilot-nintendos-evo-180","changefreq":"weekly","video":[{"title":"S1:E596 - [Advantage] The Game Mass Debaters Pilot: Nintendo's EVO 180","description":"Here's a look at our upcoming show: The Game Mass Debaters exclusive for advantage members! This week, the topic is Nintendo's EVO 180","player_loc":"https://roosterteeth.com/embed/advantage-the-game-mass-debaters-pilot-nintendos-evo-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e035387e-9fe7-4a3b-b5b2-701de59eed47/sm/video_thumbnail_12053708.jpg","duration":371,"publication_date":"2013-07-10T14:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071013-giant-dual-shock-thq-sued-again-and-nintendos-smash-180","changefreq":"weekly","video":[{"title":"S1:E454 - Hard News 07/10/13 - Giant dual shock, THQ sued? again, and Nintendo's Smash 180","description":"Today on HardNews, Giant dual shock, THQ sued… again, and Nintendo's Smash 180.\r\n\t\r\n\tMark Cerny's controller for giants -  http://www.screwattack.com/news/mark-cerny-built-giant-dualshock-controller-children\r\n\tTHQ sued… again - http://www.screwattack.com/news/sega-has-chosen-sue-thq-nearly-million-dollars-over-coh2\r\n\tNintendo shuts down stream, then puts it back up - http://www.screwattack.com/news/nintendo-shuts-down-evo-2013s-super-smash-bros-stream-then-turns-it-back\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-071013-giant-dual-shock-thq-sued-again-and-nintendos-smash-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120a2d94-78e4-496e-9ac3-f7798b66154f/sm/video_thumbnail_12053433.jpg","duration":133,"publication_date":"2013-07-10T13:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"orange-juice-guy\"","changefreq":"weekly","video":[{"title":"S1:E122 - SideScrollers - \"Orange Juice Guy\"","description":"This week a woman decides to marry a bridge, and a man bangs the same horse twice... what else did you expect from the internet?\r\nLike ScrewAttack on Facebook - https://www.facebook.com/OfficialSA\r\n\t\r\n\tFollow ScrewAttack on Twitter - https://twitter.com/ScrewAttack\r\n\t\r\n\tWant the audio version? Download it here: http://traffic.libsyn.com/sidescrollers/SideScrollers_-_Orange_Juice_Guy_-_ScrewAttack.com.mp3\r\n\t\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\t\r\n\tNick Twitter (https://twitter.com/thenervousnick)\r\n\t\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\n\t\r\n\tFor more SideScrollers, go to http://screwattack.com/user/sidescrollers/videos","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"orange-juice-guy\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bca0e1ed-bec6-4d4e-bfda-d66333beff03/sm/video_thumbnail_12048469.jpg","duration":2527,"publication_date":"2013-07-09T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070913-summer-of-arcade-new-injustice-edition-and-murder","changefreq":"weekly","video":[{"title":"S1:E453 - Hard News 07/09/13 - Summer of Arcade, new Injustice edition, and murder","description":"Today on HardNews, Summer of Arcade, new Injustice edition, and murder.\r\n\t\r\n\tNew XBLA titles announced - http://www.screwattack.com/news/xblas-summer-arcade-has-been-revealed-dated-and-priced\r\n\tPossible Injustice Game of the Year edition - http://www.screwattack.com/news/amazon-france-may-have-leaked-injustice-goty-pc-vita-and-everything-else\r\n\tAaron Hernandez removed form EA games after alleged murder -  http://www.screwattack.com/news/ea-decides-having-alledge-murder-deck-bad-business\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-070913-summer-of-arcade-new-injustice-edition-and-murder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7c86e76-5c1f-4d14-8ba1-f76cf3dd2d90/sm/video_thumbnail_12046353.jpg","duration":117,"publication_date":"2013-07-09T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/editing-vgvs-does-stuff-to-you","changefreq":"weekly","video":[{"title":"S1:E595 - Editing VGVs Does Stuff To You","description":"Parker will have the Life & Death VGV ingrained into his brain for always and eternity.","player_loc":"https://roosterteeth.com/embed/editing-vgvs-does-stuff-to-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef9370ba-20f6-4adf-ad2a-3d76b2779739/sm/video_thumbnail_12045870.jpg","duration":174,"publication_date":"2013-07-09T12:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ouya-unboxing-video-ever-made-ever","changefreq":"weekly","video":[{"title":"S1:E594 - The Best Ouya Unboxing Video Ever Made.... EVER.","description":"In a way, the Ouya unboxes them, too.","player_loc":"https://roosterteeth.com/embed/the-best-ouya-unboxing-video-ever-made-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15500efe-0888-43b1-9ad4-bd5fa645fda2/sm/video_thumbnail_12039116.jpg","duration":258,"publication_date":"2013-07-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-life-death","changefreq":"weekly","video":[{"title":"S1:E397 - VGV - Life & Death","description":"Surgery tools wielded by the Hands of Destruction themselves.  This won't end well.","player_loc":"https://roosterteeth.com/embed/vgv-life-death","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aba07d1c-8761-4691-a7a6-0122a8772ad5/sm/video_thumbnail_12039499.jpg","duration":155,"publication_date":"2013-07-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070813-nintendo-refuses-to-layoff-new-pokemon-and-wow-micro-transactions","changefreq":"weekly","video":[{"title":"S1:E452 - Hard News 07/08/13 - Nintendo refuses to layoff, new Pokemon, and WoW micro transactions","description":"Today on HardNews, Nintendo refuses to layoff, new Pokemon, and WoW micro transactions.\r\n\t\r\n\tNintendo refuses to layoff employees - http://www.screwattack.com/news/nintendo-refuses-layoff-staff-profit\r\n\tNew Ghost/Steel Pokemon revealed -  http://www.screwattack.com/video/A-new-ghoststeel-type-Pokemon-has-been-revealed-and-itsa-sword--12023082\r\n\tWoW to add micro transactions - http://www.screwattack.com/news/world-warcraft-might-be-introducing-real-money-mmo\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-070813-nintendo-refuses-to-layoff-new-pokemon-and-wow-micro-transactions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1bed98f-4a80-4cfa-ac69-47b0f6b1488f/sm/video_thumbnail_12039360.png","duration":124,"publication_date":"2013-07-08T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-13","changefreq":"weekly","video":[{"title":"S1:E593 - Real Trailers - Hitman Absolution","description":"Just because he's a cloned hitman, doesn't mean Agent 47 can't have a heart.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28d68ea2-023e-4514-acbf-67104666093f/sm/video_thumbnail_12032799.jpg","duration":46,"publication_date":"2013-07-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-post-sgc-disorder","changefreq":"weekly","video":[{"title":"S1:E191 - The Clip - Post-SGC Disorder","description":"We took pictures.  We signed autographs.  We fought Mike Tyson.  And now, we can't stop doing any of it.  ... Wait, then who's typing this description?","player_loc":"https://roosterteeth.com/embed/the-clip-post-sgc-disorder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bf58576-80ae-4f5a-a938-456accc17246/sm/video_thumbnail_12018895.png","duration":106,"publication_date":"2013-07-05T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070513-nintendo-keeps-region-locks-warriors-lair-cancelled-and-molyjam-2013","changefreq":"weekly","video":[{"title":"S1:E451 - Hard News 07/05/13 - Nintendo keeps Region Locks, Warrior's Lair cancelled, and Molyjam 2013","description":"Today on HardNews, Nintendo keeps Region Locks, Warrior's Lair cancelled, and Molyjam 2013.\r\n\t\r\n\tNintendo holds on to Region Locks - http://www.screwattack.com/news/despite-online-petition-nearly-20k-nintendo-sticking-region-locking\r\n\tWarrior's Lair cancelled, finally - http://www.screwattack.com/news/we-final-receive-confirmation-warriors-lair-ruin-has-been-canceled\r\n\tMolyjam 2013 - http://www.screwattack.com/news/live-molyjam-deux-being-broadcast-here-all-weekend\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-070513-nintendo-keeps-region-locks-warriors-lair-cancelled-and-molyjam-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0c0fc1a-3289-41a2-b52e-fe3007ed3b6b/sm/video_thumbnail_12016561.png","duration":110,"publication_date":"2013-07-05T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070413-xbl-reputation-system-ffvii-comes-to-steam-and-don-mattrick-jumps-ship","changefreq":"weekly","video":[{"title":"S1:E450 - Hard News 07/04/13 - XBL Reputation system, FFVII comes to Steam, and Don Mattrick jumps ship","description":"Today on HardNews, XBL Reputation system, FFVII comes to Steam, and Don Mattrick jumps ship.\r\n\t\r\n\tDon Mattrick jumps ship - http://www.screwattack.com/news/update-don-mattrick-leaving-microsoft-become-new-ceo-zynga\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Sam - Twitter.com/ScrewAttackSam\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-070413-xbl-reputation-system-ffvii-comes-to-steam-and-don-mattrick-jumps-ship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aa66b2b-80d3-479d-a99d-33b4207d3542/sm/video_thumbnail_12008830.jpg","duration":114,"publication_date":"2013-07-04T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2-2","changefreq":"weekly","video":[{"title":"S2:E2 - Shao Kahn VS M. Bison","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d744155-3098-4a3e-aed1-3597f79b1148/sm/video_thumbnail_11956210_1.jpg","duration":757,"publication_date":"2013-06-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-48","changefreq":"weekly","video":[{"title":"S1:E592 - E3 2013 - Talking Saints Row 4 with the Design Director","description":"After playing it at E3, Sean got a hold of the game's Design Director to get a look inside the crazy world of Saints Row 4.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93a280c1-e064-47dc-bb57-82e05a0a427f/sm/video_thumbnail_11894252.jpg","duration":262,"publication_date":"2013-06-19T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-49","changefreq":"weekly","video":[{"title":"S1:E591 - E3 2013 - A Walkthrough of Warframe","description":"Sean got to play through the free to play PS4 title, Warframe, and have one of the developers talk him through it. A title screen of Press X To Ninja was the first clue this would be a lot of fun.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1a88424-0fe8-4718-b6b5-25ecd9ad7a51/sm/video_thumbnail_11893115.jpg","duration":577,"publication_date":"2013-06-19T11:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-061713","changefreq":"weekly","video":[{"title":"S1:E590 - SideScrollers Extended 06/17/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-061713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9919500b-f2a4-4739-b2d5-91180d23eabf/sm/video_thumbnail_11887002.jpg","duration":860,"publication_date":"2013-06-18T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"moose-love\"","changefreq":"weekly","video":[{"title":"S1:E121 - SideScrollers - \"Moose Love\"","description":"Chad, Nick, and Bryan catch you up on the craziness of E3, and are moved by the romantic heart of a Moose.\r\nChad Twitter (https://twitter.com/screwattackchad)\r\nNick Twitter (https://twitter.com/thenervousnick)\r\nBryan Twitter (https://twitter.com/TehRealBryan)\r\nScrewAttack Twitter (https://twitter.com/screwattack)\r\nWant your SideSctrollers on the go? Get the Audio Version HERE","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"moose-love\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ed6acd4-72ff-4c9c-b8ba-7e5691e5215c/sm/video_thumbnail_11886935_0.jpg","duration":3269,"publication_date":"2013-06-18T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061813-saints-row-embraces-modders-10-cancelled-legacy-of-kain-games-and-oculus-rift-updates","changefreq":"weekly","video":[{"title":"S1:E449 - Hard News 06/18/13 - Saints Row embraces modders, 10 cancelled Legacy of Kain games, and Oculus Rift updates","description":"Today on HardNews, Saints Row embraces modders, 10 cancelled Legacy of Kain games, and Oculus Rift updates.\r\n\t\r\n\tSaints Row 4 embraces modders - http://www.screwattack.com/news/volition-working-modders-saints-row-tools\r\n\t10 cancelled Legacy of Kain games - http://www.screwattack.com/news/neogaf-user-mama-robotnik-reveals-10-canceled-legacy-kain-titles\r\n\tOculus Rift raises $16 million - http://www.screwattack.com/news/oculus-raises-16-million-rift\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061813-saints-row-embraces-modders-10-cancelled-legacy-of-kain-games-and-oculus-rift-updates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05bc6393-04ac-431f-bfef-57af1f8ce019/sm/video_thumbnail_11886357.jpg","duration":124,"publication_date":"2013-06-18T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-50","changefreq":"weekly","video":[{"title":"S1:E589 - Pikmin 3 - First Impressions . . . again?","description":"S1:E589 - Pikmin 3 - First Impressions . . . again?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d16f0490-8ff3-4b82-ae5c-bfd902475297/sm/video_thumbnail_11880256.jpg","duration":90,"publication_date":"2013-06-17T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-56","changefreq":"weekly","video":[{"title":"S1:E588 - Hands on w/ Super Mario 3D World","description":"It looks like we may be trolling each other in three dimensions in the future...","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/780d6ba2-b0e7-4f9e-bdd6-18b1778077df/sm/video_thumbnail_11880254.jpg","duration":146,"publication_date":"2013-06-17T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-55","changefreq":"weekly","video":[{"title":"S1:E587 - First Impressions of Zelda: A Link Between Worlds","description":"S1:E587 - First Impressions of Zelda: A Link Between Worlds","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64475c7a-8afd-4134-85a1-e46b9eb064c8/sm/video_thumbnail_11880199.jpg","duration":81,"publication_date":"2013-06-17T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061713-oculus-rift-gets-porn-more-than-one-creed-on-the-way-and-some-xbox-one-questions-get-answered","changefreq":"weekly","video":[{"title":"S1:E448 - Hard News 0617/13 - Oculus Rift gets porn, more than one Creed on the way, and some Xbox One questions get answered","description":"Today on Hard News, create a rift in your pants, multiple Assassin's Creed games are on the way, and a big question about Xbox One gets answered.\r\nBanned Xbox Live users will still be able to play Xbox One games - http://www.screwattack.com/video/If-youre-banned-from-Xbox-Live-dont-worry-Youll-still-be-able-to-play-your-Xbox-One-games--11872366\r\n\tUbisoft has 3 Assassin's Creed games in the works - http://www.screwattack.com/news/ubisoft-says-they-have-3-assassins-creed-games-development\r\n\tPorn coming to the Oculus Rift - http://www.screwattack.com/news/wicked-paradise-become-first-pornographic-oculus-rift-game\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061713-oculus-rift-gets-porn-more-than-one-creed-on-the-way-and-some-xbox-one-questions-get-answered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e191086c-c0ed-4207-a4fa-d940e19e093c/sm/video_thumbnail_11879206.jpg","duration":154,"publication_date":"2013-06-17T16:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061413-ps-plus-required-for-online-play-and-super-smash-bros-news","changefreq":"weekly","video":[{"title":"S1:E447 - Hard News 06/14/13 - PS Plus required for online play, and Super Smash Bros news!","description":"Today on HardNews, PS Plus required for online play, ossible Super Smash Bros title, and SSB will not be cross platform.\r\n\t\r\n\tPS Plus required for online play - http://www.screwattack.com/news/sony-explains-why-playstation-plus-subscription-needed-play-ps4-games-online\r\n\tNew Super Smash Bros title - http://www.screwattack.com/news/details-new-smash-bros-future\r\n\tSuper Smash Bros will not be cross platform - http://www.screwattack.com/news/smash-bros-wii-u-and-3ds-will-not-support-cross-platform-play\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061413-ps-plus-required-for-online-play-and-super-smash-bros-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d7385b-bcbc-452e-b85a-94b3c9a9f54a/sm/video_thumbnail_11855047.jpg","duration":189,"publication_date":"2013-06-14T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-54","changefreq":"weekly","video":[{"title":"S1:E586 - The Evil Within - First Impressions - E3 2013","description":"Is the Survival Horror genre about to return to it's truly horrifying roots","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/944aec63-6052-4bef-a6fb-56d2a8a9d76e/sm/video_thumbnail_11847899.png","duration":68,"publication_date":"2013-06-13T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-53","changefreq":"weekly","video":[{"title":"S1:E585 - The Elder Scrolls: Online - First Impressions - E3 2013","description":"The epic Massively Single Player Offline RPG becomes an epic Massively Multiplayer Online RPG","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a89b6d77-82d3-4cdd-acaf-07e4cdb2217c/sm/video_thumbnail_11847869.png","duration":89,"publication_date":"2013-06-13T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061313-ffxv-to-have-direct-sequels-cliffybs-used-games-rant-and-reggies-advice","changefreq":"weekly","video":[{"title":"S1:E446 - Hard News 06/13/13 - FFXV to have direct sequels, CliffyB's used games rant, and Reggie's advice","description":"Today on HardNews, FFXV to have direct sequels, CliffyB's used games rant, and Reggie's advice.\r\n\t\r\n\tFinal Fantasy XV to have direct sequels - http://www.screwattack.com/news/square-already-planning-develop-direct-sequels-final-fantasy-xv\r\n\tCliify B doesn't trust Sony - http://www.screwattack.com/news/cliffyb-downs-used-games-doesnt-trust-sony\r\n\tReggie says to just make better games - http://www.screwattack.com/news/reggie-devs-should-focus-making-games-so-fun-people-won%E2%80%99t-want-trade-them\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061313-ffxv-to-have-direct-sequels-cliffybs-used-games-rant-and-reggies-advice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d01670b-a705-4a41-94ca-3611d987016e/sm/video_thumbnail_11847620.jpg","duration":213,"publication_date":"2013-06-13T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-52","changefreq":"weekly","video":[{"title":"S1:E584 - PACMAN & THE GHOSTLY ADVENTURES - Shaun's First Impressions","description":" It's PacMan Jim, but not as we know it! Our first impressions on the beginnings of a rebooted franchise.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d40d32d2-b01c-46cf-bd8b-e08f0e6f9804/sm/video_thumbnail_11841223.png","duration":135,"publication_date":"2013-06-12T18:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-51","changefreq":"weekly","video":[{"title":"S1:E583 - BAYONETTA 2 - First Impressions","description":"The controversial Nintendo exclusive Bayonetta 2 is shaping up to be one hell of a crazy game... but did you expect anything less?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8173e313-8e2e-4937-a639-d7d319c5eb5e/sm/video_thumbnail_11840603.png","duration":58,"publication_date":"2013-06-12T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061213-deus-ex-jumps-ship-eas-remorse-and-microsofts-no-internet-solution","changefreq":"weekly","video":[{"title":"S1:E445 - Hard News 06/12/13 - Deus Ex jumps ship, EA's remorse, and Microsoft's 'no internet' solution","description":"Today on HardNews, Deus Ex jumps ship, EA's remorse, and Microsoft's 'no internet' solution.\r\n\t\r\n\tDeus Ex no longer exclusive - http://www.screwattack.com/news/deus-ex-human-revolution-director%E2%80%99s-cut-no-longer-exclusive-wii-u\r\n\tEA's used game countermeasures - http://www.screwattack.com/news/ea-admits-their-used-game-countermeasure-mistake-planning-better-one\r\n\tMicrosoft's 'no internet' solution - http://www.screwattack.com/news/don%E2%80%99t-have-internet-microsoft%E2%80%99s-solution-get-xbox-360\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061213-deus-ex-jumps-ship-eas-remorse-and-microsofts-no-internet-solution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a247bad7-5244-499c-8ace-3e89beec2bcc/sm/video_thumbnail_11840315.jpg","duration":128,"publication_date":"2013-06-12T15:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061013-ps4-press-conference-round-up","changefreq":"weekly","video":[{"title":"S1:E444 - Hard News 06/10/13 - PS4 Press Conference Round Up","description":"Today on Hard News, Sony's E3 Press Conference reveals new games for PS3 and Vita, as well as exciting new games and info on the PS4.\r\nScrewAttack E3 coverage - http://www.screwattack.com/events/e3-2013\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061013-ps4-press-conference-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e0a69c1-fbd8-4c40-93bc-d8e0d738947d/sm/video_thumbnail_11826859_0.jpg","duration":126,"publication_date":"2013-06-11T22:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061113-e3-news-updates","changefreq":"weekly","video":[{"title":"S1:E443 - Hard News 06/11/13 - E3 News Updates!","description":"Today on Hard News, Xbox One updates and a new character for the new Super Smash Bros.  \r\n\t\r\n\tScrewAttack E3 Coverage - http://www.screwattack.com/events/e3-2013\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061113-e3-news-updates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/350ae7b6-90d9-4ed3-a16e-b702f4c916d4/sm/video_thumbnail_11832524.jpg","duration":81,"publication_date":"2013-06-11T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061013-xbox-one-press-conference-round-up","changefreq":"weekly","video":[{"title":"S1:E442 - Hard News 06/10/13 - Xbox One Press Conference Round Up","description":"Today on Hard News, new games announced for XbOox One, and the console's price officially released.\r\n\t\r\n\tScrewAttack E3 coverage - http://www.screwattack.com/events/e3-2013\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061013-xbox-one-press-conference-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ea2935e-0d52-4cb9-8a8a-3b653d1f13c4/sm/video_thumbnail_11825024.jpg","duration":96,"publication_date":"2013-06-11T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-57","changefreq":"weekly","video":[{"title":"S1:E582 - Battlefield 4 - First Impressions","description":"Is Battlefield 4 the next evolution of FPS or is it another dull generic cash in Bryan and Sean let you know their E3 2013 first impressions.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/685bc7da-60e7-4a6d-9535-b195e1e65126/sm/video_thumbnail_11833378.png","duration":165,"publication_date":"2013-06-11T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061113-nintendo-direct-round-up","changefreq":"weekly","video":[{"title":"S1:E441 - Hard News 06/11/13 - Nintendo Direct Round Up","description":"Today on Hard News, Nintendo Direct round up, with new Pokemon, Mario, Smash Bros, and more!\r\n\t\r\n\tNintendo Direct E3 2013 - http://www.screwattack.com/video/NIntendo-Direct--061113--E3-2013-Edition-11829500\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-061113-nintendo-direct-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07dd12ca-179d-44f4-a952-fc7d14860299/sm/video_thumbnail_11830982.jpg","duration":91,"publication_date":"2013-06-10T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060713-square-developing-new-game-in-the-lok-realm-of-nosgoth-and-xbox-one-updates","changefreq":"weekly","video":[{"title":"S1:E440 - Hard News 06/07/13 - Square developing new game in the LoK realm of Nosgoth, and Xbox One updates","description":"Today on HardNews, Square developing new game in the LoK realm of Nosgoth, and Xbox One updates.\r\n\t\r\n\tNew Nosgoth game - http://www.screwattack.com/news/square-enix-will-be-reviving-legacy-kain-franchise\r\n\tXbox One updates - http://www.screwattack.com/news/terrible-truths-xbox-one-and-its-solution-used-games\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-060713-square-developing-new-game-in-the-lok-realm-of-nosgoth-and-xbox-one-updates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6cce7ef-d546-4fa1-ac64-c7e9b53a67c7/sm/video_thumbnail_11800935.jpg","duration":166,"publication_date":"2013-06-07T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-overtime-2013-outtakes","changefreq":"weekly","video":[{"title":"S1:E581 - E3 Overtime 2013 Outtakes!","description":"The overwhelming majority of the Overtime shoot was spent trying to get over a single gag.  You're about to catch the giggles big time.","player_loc":"https://roosterteeth.com/embed/e3-overtime-2013-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9ec80e3-a929-4430-af3f-f8a47b6eabb3/sm/video_thumbnail_11801302.jpg","duration":918,"publication_date":"2013-06-07T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-overtime-2013-with-geoff-keighley","changefreq":"weekly","video":[{"title":"S1:E580 - E3 Overtime 2013 with Geoff Keighley","description":"Join Geoff Keighley as he picks the brains of the Big Three: Sony, Microsoft, and Ouya!  ... I miss Reggie...","player_loc":"https://roosterteeth.com/embed/e3-overtime-2013-with-geoff-keighley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/946cbbc3-06c7-40a2-aa06-b5f325824fec/sm/video_thumbnail_11799236.jpg","duration":163,"publication_date":"2013-06-07T09:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-sportsball-04","changefreq":"weekly","video":[{"title":"2015:E4 - Ireland. NFL. Rugby. Funhaus. Drunk. - #04","description":"Join Brandon Farmahini, Tyler Coe and Joel Heyman as they discuss the opening weekend of the NFL, smoothing things over with the entire country of Ireland and penalty shots with Funhaus on this week's episode of Sportsball! This episode episode originally aired on September 16th 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-sportsball-04","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeaccee1-4d97-474a-89b7-dec3b062ba59/sm/2013912-1442429628917-SB04_-_STILL.jpg","duration":3172,"publication_date":"2015-09-16T18:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-the-yoga-experiment","changefreq":"weekly","video":[{"title":"S2:E2 - The Yoga Experiment","description":"Aaron and Chris each host a yoga class and attempt to be the best yoga teacher. However, they each wrote poses for the other and won't know what they're doing until they're halfway through downward dog. \n\nRT and FAVE this tweet to #VoteAaron! https://twitter.com/roosterteeth/status/6442398867...\n\nRT and FAVE this tweet to #VoteChris! https://twitter.com/roosterteeth/status/6442399900...\n\nSocial Disorder Yoga Shirt - STYLE +10 Points! http://store.roosterteeth.com/collections/featured...","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-the-yoga-experiment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/286a2ea5-23d7-41f0-970d-28baf13df39f/sm/2013912-1442429416294-Thumbnail_Yoga2.jpg","duration":626,"publication_date":"2015-09-16T18:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-things-get-hairy-with-funhaus-free-play-11","changefreq":"weekly","video":[{"title":"S1:E12 - Things Get Hairy with Funhaus - #11","description":"Everyone's showing a little skin in this episode as Team Free Play and Team Funhaus test their artistic chops in a chest-hair shaving challenge.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-things-get-hairy-with-funhaus-free-play-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c57a0ec3-1b5f-4187-94f7-d194348b39ee/sm/2013912-1442419323839-FP11_-_STILL.png","duration":1430,"publication_date":"2015-09-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-13","changefreq":"weekly","video":[{"title":"2015:E14 - Podcast #341 Post Show","description":"Join Gus Sorola, James Willems, Bruce Greene and Burnie Burns as they discuss James' space food diet in this week's RT Podcast Extra! This episode episode originally aired on September 15, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b8e43ca-cf99-4b69-b33a-9b35bab77270/sm/2013912-1442415725143-RTP_341-_PS_-THUMB.png","duration":1118,"publication_date":"2015-09-16T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-mathematic-mishap-341","changefreq":"weekly","video":[{"title":"2015:E341 - The Mathematic Mishap - #341","description":"Join Gustavo Sorola, James Willems, Bruce Greene and Burnie Burns as they discuss Terrence Howard's revolutionary new Mathematic theory on this week's RT Podcast! This episode episode originally aired on September 15, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-mathematic-mishap-341","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/664c40fd-6294-4efe-8ae7-8b642835e70b/sm/2013912-1442330627566-RTP_341_-_THUMB.png","duration":5634,"publication_date":"2015-09-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/r-t-docs-let-s-play-live-let-s-play-live-the-documentary","changefreq":"weekly","video":[{"title":"LPL:E2 - Let's Play Live: The Documentary","description":"Let's Play Live: The Documentary follows Achievement Hunter as it turns online gaming into a first-of-its-kind live event. The documentary not only explores why Let's Plays are so popular, but also how the convergence of gaming and community are redefining the stages once reserved for only the biggest of rock stars.","player_loc":"https://roosterteeth.com/embed/r-t-docs-let-s-play-live-let-s-play-live-the-documentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b85868fa-d820-42de-9832-74b26e59d5c3/sm/984097-1442259490443-LPL_Thumbnail_0914_Gavin.jpg","duration":1653,"publication_date":"2015-09-14T19:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-halo-desynced-combat-devolved","changefreq":"weekly","video":[{"title":"SOR:E2 - Halo Desynced - Combat Devolved","description":"In this installation of \"Straight Outta RT\", Gavin Free and Daniel Gruchy must deal with themselves from another dimension while surviving the horrors of being split apart! \n\nMade by Rooster Teeth community GTA5 machinima team The Lone Few.\n\nIncludes audio from Rooster Teeth Podcast #322.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-halo-desynced-combat-devolved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cd5b8dd-6b79-4b8d-add1-c3edf31f7b04/sm/2013912-1442250340527-MM-SoRT_e2_THUMBNAIL-LOGO.jpg","duration":117,"publication_date":"2015-09-14T17:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-back-to-school","changefreq":"weekly","video":[{"title":"S6:E18 - 9 Steps to Survive College","description":"Heading back to school? Make sure you check out Rooster Teeth's tips for having the best year ever.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-back-to-school","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d6a3f14-063c-47fc-a4d6-e3652efd3bd2/sm/2013912-1442190512632-THIS_Back_to_School_Thumbnail.jpg","duration":310,"publication_date":"2015-09-14T00:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-9","changefreq":"weekly","video":[{"title":"S2:E175 - Sponsor Play: Halo 2 Pt. 9","description":"Kyle and Miles continue their Halo 2 adventure and ask the important question, do you like high heels","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6f5296b-e9a5-4f0f-b75e-febd00e5759a/sm/2013912-1441998550529-Halo_2_SP_Thumb_pt9.jpg","duration":1509,"publication_date":"2015-09-11T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-10","changefreq":"weekly","video":[{"title":"S1:E11 - Ryan and Meg Smash a Pinata - #10","description":"Meg and Ryan discuss the fashionable applications of trashbags and Daniel Fabelo stops by to show a sneak peek of his new film, Lets Play Live: The Documentary, all before attempting to smash a Pinata with a plastic guitar, because why not","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38c11345-2530-4804-91d8-a2115692117a/sm/1461653-1441990502970-fp10_-_STILL.png","duration":1243,"publication_date":"2015-09-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-16","changefreq":"weekly","video":[{"title":"2015:E16 - Drunken Promises & Tanning Session - #27","description":"Geoff Ramsey follows through on a drunken promise to Meg Turney by getting a spray tan and doing a photo shoot with her for theCHIVE. Sexy or incredibly awkward You decide!","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/560c7c4e-480a-4234-b206-6408e9087710/sm/2013912-1441915200216-Happy_Hour_Spray_Tan.jpg","duration":316,"publication_date":"2015-09-10T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-2-social-disorder-season-2-official-trailer","changefreq":"weekly","video":[{"title":"S2:E1 - Social Disorder: Season 2 - Official Trailer","description":"Season 2 of Social Disorder premieres September 16! Chris and Aaron create elaborate social experiments and compete in epic prank wars to drive each other to the brink. Who will win the battle This season, the audience gets to choose. Tune in to RoosterTeeth.com to watch, and then cast your vote on Twitter to decide the outcome. Sign up for a FREE 30-day trial at http://bit.ly/Become_A_Sponsor","player_loc":"https://roosterteeth.com/embed/social-disorder-season-2-social-disorder-season-2-official-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39884a20-db26-4924-8590-a08dd2eaac3a/sm/1461653-1441825966820-SDs2_Trailer_Thumbnail.jpg","duration":71,"publication_date":"2015-09-09T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-bleed-out-sneeze-teleport","changefreq":"weekly","video":[{"title":"S1:E10 - Bleed Out & Sneeze Teleport","description":"For the Season Finale, Michael joins Gavin and Burnie as they teleport around the world and enjoy each others farts. Get the Million Dollars, But Shirt: http://bit.ly/MDBshirt","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-bleed-out-sneeze-teleport","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1ab768f-78ed-4ef0-a6be-8b9f4ab26b7c/sm/2013912-1441834569275-MDBRT_Thumbnail_Ep8-MichaelLion.jpg","duration":313,"publication_date":"2015-09-09T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-sportsball-03","changefreq":"weekly","video":[{"title":"2015:E3 - Giant Birds from Outer Space? - #03","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss week one of college football, the Irish Hurling Championship, crazy halftime performances and their fantasy football draft on this week's episode of Sportsball! This episode episode originally aired on September 8th 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-sportsball-03","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51761a76-d6d9-4f83-aa57-967027ed5bbc/sm/2013912-1441811122024-SB03_-_STILL.jpg","duration":2828,"publication_date":"2015-09-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-social-disorder-plays-twisted-twister-free-play-9","changefreq":"weekly","video":[{"title":"S1:E10 - Social Disorder Plays Twisted Twister - #9","description":"Social Disorder's Chris and Aaron stop by to talk about the show's new season and get a little messy with Meg and Ryan in a game of Twisted Twister.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-social-disorder-plays-twisted-twister-free-play-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e37cdec-1a60-45cf-ad0d-12d79f44dcfb/sm/2013912-1441815432849-FP09_-_STILL_2.png","duration":1073,"publication_date":"2015-09-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-16","changefreq":"weekly","video":[{"title":"2015:E13 - Podcast #340 Post Show","description":"Join Gus Sorola, Aaron Marquis, Barbara Dunkelman, Brandon Farmahini as they discuss Tom Brady payment in this week's RT Podcast Extra! This episode episode originally aired on September 7th, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8dbba5e-c75a-478b-b7df-229e1e6fe017/sm/2013912-1441759234232-RTP_340-_PS_-THUMB.png","duration":982,"publication_date":"2015-09-09T15:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-proposal-problem-340","changefreq":"weekly","video":[{"title":"2015:E340 - The Proposal Problem - #340","description":"Join Gustavo Sorola, Aaron Marquis, Barbara Dunkelman, Brandon Farmahini as they discuss everything from facial hair to farting in fancy cars on this week's RT Podcast! This episode episode originally aired on September 8, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-proposal-problem-340","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd8fadfe-d28d-4167-9b00-da0e1f5dd40f/sm/2013912-1441725124185-rtp340_-_THUMB.jpg","duration":6206,"publication_date":"2015-09-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-32","changefreq":"weekly","video":[{"title":"2015:E37 - Burnie & Ashley Search for Food","description":"While in France, Burnie desperately searches for food before Ashley becomes hangry. But it's impossible to find food during certain times of the day. \n\nAudio from The Rooster Teeth Podcast #323 Post Show: https://roosterteeth.com/episode/rt-sponsor-cut-se...\n\nBecome a Sponsor here: https://roosterteeth.com/sponsorship\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e147408-8d9e-4a5c-bd0f-dfee9b9f1df1/sm/2013912-1441605694521-rtaa199tn.jpg","duration":98,"publication_date":"2015-09-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-20-the-end","changefreq":"weekly","video":[{"title":"S13:E20 - Episode 20: The End","description":"One final push.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-20-the-end","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2e97e93-7b01-4c22-912b-711529797c6e/sm/2013912-1441395940669-Ep20Thumb2.jpg","duration":822,"publication_date":"2015-09-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-8","changefreq":"weekly","video":[{"title":"S2:E173 - Sponsor Play: Halo 2 Pt. 8","description":"After a year Kyle and Miles finally got their shit together so they could finish the fight that ends in a cliffhanger that actually finishes in Halo 3.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d68b40-a9a8-457c-a5f6-c5a7779a8f5a/sm/2013912-1441408402302-Halo_2_SP_Thumb_Pt8.jpg","duration":2299,"publication_date":"2015-09-04T22:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-rv-b-relay","changefreq":"weekly","video":[{"title":"S1:E9 - RvB Relay! - #8","description":"Meg and Ryan show off an exclusive sneak peek of the Red vs. Blue Season 13 finale and talk to series Writer and Director Miles Luna about the season's big-screen finale and the show's future. Then finally, Meg and Ryan race each other to unlock a lockbox with the help of the RvB team!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-rv-b-relay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b53b172-c53a-4799-99e2-910582119024/sm/1461653-1441386657175-fp08_-_STILL_2.png","duration":1129,"publication_date":"2015-09-04T17:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-18","changefreq":"weekly","video":[{"title":"2015:E18 - The Cutest Animal In The World","description":"Quokkas. Quokkas everywhere. Nothing but quokkas.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8890a58-a2cb-4f4a-9757-24a48eb532ec/sm/2013912-1441302974664-Austrailia_part_3_RTFinal_for_Chris.jpg","duration":168,"publication_date":"2015-09-03T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-2","changefreq":"weekly","video":[{"title":"2015:E2 - Dangerous Segways - #02","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss rugby NFL players, concussions, fantasy football, courtroom disasters and dangerous segways on this week's episode of Sportsball! This episode episode originally aired on August 25th 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c79f4c87-c269-491b-99b6-584c8394887c/sm/2013912-1441211162087-sb02_-_STILL.jpg","duration":2692,"publication_date":"2015-09-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-meg-and-ryan-go-on-a-hot-date-free-play-7","changefreq":"weekly","video":[{"title":"S1:E8 - Meg and Ryan Go On a Hot Date - #7","description":"Check out the Pug Rescue of Austin to see pugs just like Hemingway (and Hemingway who's still available!) here: http://www.austinpugrescue.com/","player_loc":"https://roosterteeth.com/embed/free-play-season-1-meg-and-ryan-go-on-a-hot-date-free-play-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d858b04-5037-4fa4-a832-12af90481dde/sm/2013912-1441210475208-FP07_-_STILL.png","duration":603,"publication_date":"2015-09-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-1","changefreq":"weekly","video":[{"title":"S1:E9 - Million Dollars, But... Bloopers & Outtakes #2","description":"Check out all the never-before-seen bloopers and outtakes in this special episode of Million Dollars, But","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c769408d-1e08-4003-9f4b-8a4325f78cfd/sm/2013912-1441211343529-MDB-Blooper2_GavinRT2.jpg","duration":201,"publication_date":"2015-09-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-the-donut-hole-conspiracy-r-t-podcast-339","changefreq":"weekly","video":[{"title":"2015:E339 - The Donut Hole Conspiracy - #339","description":"Join Gavin Free, Blaine Gibson and Burnie Burns, along with a multitude of RT guests as they uncover the dark truth behind donut holes on this week's RT Podcast! This episode episode originally aired on August 31, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-the-donut-hole-conspiracy-r-t-podcast-339","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3bd50fc-6b57-4404-889a-d46dcd66ed06/sm/2013912-1441125448381-RTP_339-THUMB.jpg","duration":5527,"publication_date":"2015-09-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-31","changefreq":"weekly","video":[{"title":"2015:E36 - The Robo-Telemarketer","description":"Burnie gets a call and is uncertain whether he is talking to an annoying robot or an annoying telemarketer.\n\nAudio from The Rooster Teeth Podcast #323: https://roosterteeth.com/episode/rt-podcast-season...\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16cd8c81-6b1e-424d-9f15-e18e1fc58ad8/sm/2013912-1441033830714-rtaa198tn.jpg","duration":114,"publication_date":"2015-08-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-19-the-end-is-near","changefreq":"weekly","video":[{"title":"S13:E19 - Episode 19: The End is Near","description":"The Freelancers have done their part. Now it's up to the Reds and Blues to finish it.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-19-the-end-is-near","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/793bf587-5dff-48f5-8b12-59d5361161fe/sm/1461653-1440793678283-ep19.png","duration":730,"publication_date":"2015-08-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-werewolves-r-t-x-2015-with-game-grumps","changefreq":"weekly","video":[{"title":"S2:E172 - Werewolves RTX 2015 with Game Grumps","description":"At the RTX 2015 after hours panel 8 humble villagers must find the werewolf among them before that werewolf can kill everyone in town. Who could this werewolf be Could it be Kyle Barbara Maybe it's Miles, Pat or Josh Or could it be one of the Game Grumps: Arin, Ross or the master assassin himself Ninja Brian Watch and find out. \n\nWatch more from Game Grumps: https://www.youtube.com/user/GameGrumps","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-werewolves-r-t-x-2015-with-game-grumps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f34e2d19-a79f-4328-ae73-6e6793e27748/sm/1461653-1440777436916-Werewolves_Thumb720_2.jpg","duration":3582,"publication_date":"2015-08-28T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-title-for-cards-against-humanity-is-c-a-h-r-t-x-2015","changefreq":"weekly","video":[{"title":"S2:E171 - C.A.H. RTX 2015 with Game Grumps","description":"The RTX 2015 After Hours Cards Against Humanity Panel with Kyle, Kerry and Miles joined by Ray, Projared and Game Grumps: Danny, Arin, Barry and Ross.\n\nWatch more from Game Grumps: https://www.youtube.com/user/GameGrumps","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-title-for-cards-against-humanity-is-c-a-h-r-t-x-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1157639c-bc17-4042-ae35-1b2681d762e2/sm/1461653-1440777308087-Cards_Against_Humanity_rtx_2015_720_3.jpg","duration":5918,"publication_date":"2015-08-28T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-gross-beer-pong-free-play-6","changefreq":"weekly","video":[{"title":"S1:E7 - Gross Beer Pong - #6","description":"Meg and Ryan attempt to hold in their lunch during a game of Gross Beer Pong. Check out Meg's Stunt Suggestion journal right here: https://roosterteeth.com/post/51173440","player_loc":"https://roosterteeth.com/embed/free-play-season-1-gross-beer-pong-free-play-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd34e151-5abe-4bb0-8bbd-d6e6af9c991e/sm/1461653-1440782207144-FP06_-_STILL.jpg","duration":1370,"publication_date":"2015-08-28T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-15","changefreq":"weekly","video":[{"title":"2015:E15 - Gavin After Dentist - #26","description":"Gavin gets four teeth pulled out of his face and the power of comprehension pulled out of his brain.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50510c40-95ab-4afb-af66-c3aa2b5ed135/sm/2013912-1440691649088-HH26_thumb.jpg","duration":243,"publication_date":"2015-08-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-sudden-nudity-permanent-parachutes","changefreq":"weekly","video":[{"title":"S1:E8 - Sudden Nudity & Permanent Parachutes","description":"This week Gavin and the Free Play crew decide if they'll take a million dollars for disappearing clothes or always wearing a parachute.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-sudden-nudity-permanent-parachutes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03567f1-fc27-483c-8868-80a5ca58e513/sm/2013912-1440623989370-MDB_Thumbnail_MegGavin3_2.jpg","duration":221,"publication_date":"2015-08-26T21:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sportsball-season-1-1","changefreq":"weekly","video":[{"title":"2015:E1 - The Worst Sports Fans - #01","description":"Join Jack Pattillo, Tyler Coe and Joel Heyman as they discuss Madden 16, Little League World Series and the Worst Sports Fans in the world on the very first episode of Sportsball!! This episode episode originally aired on August 25th 2015.","player_loc":"https://roosterteeth.com/embed/sportsball-season-1-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e5b9971-9ff7-4de5-9217-f12ad170c23e/sm/2013912-1440601771913-SB01_-_THUMB.jpg","duration":1715,"publication_date":"2015-08-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-5","changefreq":"weekly","video":[{"title":"S1:E6 - Blaine Gets Weird - #5","description":"Blaine exposes his favorite million dollars scenario, but will Meg or Ryan take the most Free Play Cash","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84a662ac-3490-450a-83c3-c2739f0f4191/sm/2013912-1440606802947-FP05-STILL.jpg","duration":788,"publication_date":"2015-08-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-12","changefreq":"weekly","video":[{"title":"2015:E12 - Podcast #338 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Brandon Farmahini as they discuss Chip and PIN payment in this week's RT Podcast Extra! This episode episode originally aired on August 24th 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/207a4a93-a9d5-49a6-9b53-90944bd205d7/sm/2013912-1440602569737-RTP_338-_PS_-THUMB.jpg","duration":1301,"publication_date":"2015-08-26T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-r-t-podcast-338","changefreq":"weekly","video":[{"title":"2015:E338 - The Oral Operation - #338","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman, and Brandon Farmahini as they discuss dental surgeries on this week's RT Podcast! This episode episode originally aired on August 24th 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-r-t-podcast-338","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e1da709-f92c-41f1-b7be-573dfcc86825/sm/2013912-1440515504249-RTP_338-THUMB.jpg","duration":5599,"publication_date":"2015-08-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-30","changefreq":"weekly","video":[{"title":"2015:E35 - Gettin' Busey With It","description":"Geoff and Michael have a cool celebrity run-in with Gary Busey! Until they realize he's a crazy person.\n\nAudio from Let's Play GTA V: Pacific Standard Job Part 3: \n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://roosterteeth.com/show/rt-podcast","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/239ce8c7-3fcd-4d45-855b-3308a050cb59/sm/2013912-1440435314006-rtaa197tn1.jpg","duration":130,"publication_date":"2015-08-24T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-18-great-destroyers","changefreq":"weekly","video":[{"title":"S13:E18 - Episode 18: Great Destroyers","description":"Its the rematch of the century. Place your bets.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-18-great-destroyers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4988c66-efaa-43c6-885a-fb1bcef16d86/sm/2013912-1440189299223-ep18.png","duration":664,"publication_date":"2015-08-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-hansel-gretel-bloopers","changefreq":"weekly","video":[{"title":"S6:E17 - Hansel & Gretel Bloopers","description":"Watch the behind the scenes outtakes and funny moments from Hansel & Gretel!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-hansel-gretel-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0017c749-84cd-4acf-92a0-eabe4269bbe4/sm/1461653-1440350961728-HanselGretelBloopersv1.jpg","duration":128,"publication_date":"2015-08-23T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-behind-the-scenes-terror-eyes-music-video","changefreq":"weekly","video":[{"title":"S2:E169 - Behind the Scenes - Terror Eyes Music Video","description":"Sponsors can now watch the making of Terror Eyes the Music Video.\n\nDownload the song now on itunes: http://apple.co/1PaM3XH google play: http://bit.ly/1Wnpx3r or amazon: http://amzn.to/1NevyLQ","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-behind-the-scenes-terror-eyes-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a60e712-04a4-468f-8e84-9ae14ff8332e/sm/2013912-1440197011667-Terror_eyes_thumb.jpg","duration":205,"publication_date":"2015-08-21T22:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-4","changefreq":"weekly","video":[{"title":"S1:E5 - Turney Takes a Tumble - #4","description":"Can Cole save Meg's honor in Sumo basketball Plus, Joel and Tyler have their sports brains tested in Free Play #04.","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5d9e501-e68b-4a2a-b1cf-e6f2de0c300d/sm/2013912-1440180510231-FP04-STILL.jpg","duration":1244,"publication_date":"2015-08-21T18:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-match-head-bomb-at-2500-fps-the-slow-mo-guys","changefreq":"weekly","video":[{"title":"S1:E44 - Match Head Bomb at 2500fps","description":"Gav and Dan stick over 6000 matches into a blender and light them all at once for a lovely microfireworks display.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-match-head-bomb-at-2500-fps-the-slow-mo-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d717ced-2d0f-459a-a66d-6255dae9a34f/sm/2013912-1441041748924-Screen_Shot_2015-08-31_at_12.22.05_PM.png","duration":251,"publication_date":"2015-08-21T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-the-eleven-little-roosters-teaser-trailer","changefreq":"weekly","video":[{"title":"S1:E9 - The Eleven Little Roosters Teaser Trailer","description":"So you sleuthed out the killer in Ten Little Roosters. The question is: are you ready to do it again\n\nAn interactive spy thriller. Coming in 2016.","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-the-eleven-little-roosters-teaser-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a941e7e-13d7-47ba-aa72-8ec07e5ae1b9/sm/2013912-1440090626912-ELRtrailerThumbnail.png","duration":102,"publication_date":"2015-08-21T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-23","changefreq":"weekly","video":[{"title":"2015:E23 - Live Stripping Studs","description":"The guys from Live Action strip down for the RTX crowds. And, of course, make fun of Brandon.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/015b68a4-f46e-47ee-8f91-b2f8182cd8c2/sm/2013912-1440106864451-RT-ShirtPanel-Thumbnail_FINAL.jpg","duration":258,"publication_date":"2015-08-20T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-baby-burnie-hitler-honeymoon","changefreq":"weekly","video":[{"title":"S1:E7 - Baby Burnie & Hitler Honeymoon","description":"This week Chris and Aaron from Social Disorder join Burnie. They meet Baby Burnie, go on a series of bad dates with Hitler, and enjoy delicious sponge.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-baby-burnie-hitler-honeymoon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/937c0abd-96b1-4b0f-a6a0-8a93691e56ed/sm/2013912-1440022108741-MDB_Ep6-Thumbnail4.jpg","duration":286,"publication_date":"2015-08-19T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play-2","changefreq":"weekly","video":[{"title":"S1:E4 - Four Little Roosters - #3","description":"Will skimpy cat suits, stuffed roosters, and lazers trip up Josh, Blaine, Ryan, and Meg","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66de3491-6446-438f-84d4-2f6299b760dd/sm/1461653-1440003291160-FP08-_STILL.jpg","duration":1154,"publication_date":"2015-08-19T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-hansel-gretel","changefreq":"weekly","video":[{"title":"S6:E16 - Hansel & Gretel","description":"Lost in the woods, Hansel and Gretel come across a cheesy surprise. Thank you to Pizza Hut for sponsoring this short! Cheesy Bites Pizza is back for a limited time only. Order now at PizzaHut.com: http://bit.ly/1woyOKx","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-hansel-gretel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2db1649e-3acc-4410-a2a3-c7435784b74a/sm/2013912-1439931997848-RT_Thumbnail_HanselGretel.jpg","duration":378,"publication_date":"2015-08-18T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-r-t-podcast-337","changefreq":"weekly","video":[{"title":"2015:E337 - The Cat Condom Catastrophe - #337","description":"Join Gus Sorola, Gavin Free , Burnie Burns and special guest Felicia Day as they discuss condom-eating cats on this week's RT Podcast! This episode episode originally aired on August 17th 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-r-t-podcast-337","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18cb1102-73df-4fcc-a164-5a3efb2fb40a/sm/2013912-1439910510013-RTP_337-THUMB.jpg","duration":2089,"publication_date":"2015-08-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-22","changefreq":"weekly","video":[{"title":"2015:E22 - Can Blaine Outrun a Car?","description":"Blaine really wants some protein powder. Aaron really wants to drive off without him. Chris just wants to watch.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31f7266a-3590-4da5-94dd-6b605836eeff/sm/1461653-1439859881350-BlaineTHumb_03.jpg","duration":122,"publication_date":"2015-08-18T00:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-29","changefreq":"weekly","video":[{"title":"2015:E34 - RTAAYEAYEA - RTX Intro 2015","description":"This year's RTAA panel intro for RTX is a mix of classic and new videos with an RTAA twist.\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://roosterteeth.com/show/rt-podcast","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8b9499f-e659-4087-8f4c-7052030b9ffc/sm/2013912-1439824417784-RTX2015intro.jpg","duration":119,"publication_date":"2015-08-17T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-17-all-or-nothing","changefreq":"weekly","video":[{"title":"S13:E17 - Episode 17: All or Nothing","description":"The people of Chorus have lost so much. If they dont act soon, theyll lose everything.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-17-all-or-nothing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82283ac7-000b-4042-b4fd-c3da7d77bb27/sm/1461653-1439667710628-Ep17_Thumbnail.png","duration":481,"publication_date":"2015-08-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-x-ray-vav-season-2-episode-5-the-madness-of-the-king","changefreq":"weekly","video":[{"title":"S2:E5 - Episode 5: The Madness of the King","description":"Our dynamic duo find themselves face to face with the Mad King, trying to interrogate him for information. However, the Mad King has plans of his own.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-x-ray-vav-season-2-episode-5-the-madness-of-the-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5565f259-1317-426e-b49f-e68567d4c360/sm/1461653-1439575263142-xv2_thumbnail_ep5.jpg","duration":577,"publication_date":"2015-08-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-12","changefreq":"weekly","video":[{"title":"S3:E32 - RTX 2015 - #32 (Ft. Game Grumps)","description":"Miles Luna and Kerry Shawcross take on Game Grumps in this special extended season finale of On The Spot from RTX 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ded87fb9-e0de-41b2-a7f7-40715e37a0d6/sm/1461653-1439566704643-ots_32_thumb.jpg","duration":3310,"publication_date":"2015-08-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-pajama-races-bobbing-for-cereal","changefreq":"weekly","video":[{"title":"S1:E3 - Pajama Races & Bobbing For Cereal - #2","description":"Pajama races and bobbing for cereal in this wild special X-Ray & Vav episode of Free Play","player_loc":"https://roosterteeth.com/embed/free-play-season-1-pajama-races-bobbing-for-cereal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96600a0c-3f7e-4efc-8776-08f9cbdca5f6/sm/1461653-1439567186899-FP07-STILL.jpg","duration":988,"publication_date":"2015-08-14T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-terror-eyes","changefreq":"weekly","video":[{"title":"MV:E1 - Terror Eyes!","description":"Download the song now on itunes: http://apple.co/1PaM3XH google play: http://bit.ly/1Wnpx3r or amazon: http://amzn.to/1NevyLQ\n\nAchievement Hunter is back to rapping in a big way. Dive into the terrifying worlds of Slender, Five Nights at Freddys, and Amnesia: The Dark Descent. Can you survive","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-terror-eyes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cff97c3-da70-49e6-95cd-c6517ab5267b/sm/1461653-1439840857215-TerrorEyes_Thumb.jpg","duration":296,"publication_date":"2015-08-13T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-21","changefreq":"weekly","video":[{"title":"2015:E21 - Gavin's Syrup Bet","description":"Gavin bets his RTX Guardian, Charles, $100 to let him pour syrup down his pockets. Its a pretty sweet deal.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e03465a1-39a7-4a34-8330-22832a9895c4/sm/2013912-1439484595617-Gavins_Syrup_Bet_Thumbnail_v4.jpg","duration":154,"publication_date":"2015-08-13T16:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/free-play-season-1-free-play","changefreq":"weekly","video":[{"title":"S1:E2 - RTX Special - #1","description":"Ryan and Meg take over the RTX floor in a mad game of bingo!","player_loc":"https://roosterteeth.com/embed/free-play-season-1-free-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64310eff-555e-4b79-9300-5009f6833ddf/sm/1461653-1439399223208-FP06-STILL.jpg","duration":1061,"publication_date":"2015-08-12T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-r-t-podcast-335-the-complain-about-sh-t-podcast","changefreq":"weekly","video":[{"title":"2015:E336 - RTX - #336","description":"Join Gus Sorola, Gavin Free, Jack Pattillo, and Burnie Burns from RTX as they discuss the convention on this week's RT Podcast! This episode episode originally aired on August 9th 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-r-t-podcast-335-the-complain-about-sh-t-podcast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ba3e11f-3e5f-48a7-b8cc-5ade326dfa15/sm/1461653-1438710356537-RTP_335-THUMB.jpg","duration":5476,"publication_date":"2015-08-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-20","changefreq":"weekly","video":[{"title":"2015:E20 - Funhaus Sex Box","description":"The Funhaus gentlemen unbox a mystery delivery. Disclaimer: The following video contains sexual references and may not be appropriate for all audiences.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ec29d84d-07ec-4ff2-aeb5-3dfbbe6089fa.jpg/sm/fhstu.jpg","duration":220,"publication_date":"2015-08-11T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-straight-outta-rt-grand-theft-of-gus-auto","changefreq":"weekly","video":[{"title":"SOR:E1 - Grand Theft of Gus' Auto","description":"Minimations continues, with this premiere installment of \"Straight Outta RT!\" Made by Rooster Teeth community GTA5 machinima team The Lone Few, this episode showcases the tale of Gus' car getting stolen, as well as FunHaus' Lawrence staycation at an \"Air BnB.\"\n\nIncludes audio from Rooster Teeth Podcast #238: http://bit.ly/RTP238 and Dude Soup #23: http://bit.ly/DS23yt || PEOPLE LIKE GRAPES: http://bit.ly/Roosterteeth || Join in on the conversation at: http://bit.ly/roosterteethcommunity","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-straight-outta-rt-grand-theft-of-gus-auto","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/181abcb6-c30d-4bef-a86b-1f1eebc9e627/sm/1461653-1439234547541-MM-SoRT_e1_THUMBNAIL-LOGO.jpg","duration":116,"publication_date":"2015-08-10T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-p-s-a-the-1-movie-in-the-galaxy-2","changefreq":"weekly","video":[{"title":"S1:E47 - PSA: The #1 Movie in the Galaxy: 2","description":"In a world where movie trailers are the pinnacle of cinematic achievement, one trailer stands above the rest","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-p-s-a-the-1-movie-in-the-galaxy-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6083969-8c96-4cd8-8b68-1708ef65a366/sm/1461653-1438964495486-Screen_Shot_2015-08-06_at_9.52.17_AM.png","duration":290,"publication_date":"2015-08-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-episode-4-coal-order","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4: Coal & Order","description":"X-Ray and Vav solicit the aid of a grizzled private eye to help trace down Mogar.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-episode-4-coal-order","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1355a28e-2131-40c7-bbee-d4cc6af6d009/sm/1461653-1438962832642-xv2_thumbnail_ep4.jpg","duration":573,"publication_date":"2015-08-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-14","changefreq":"weekly","video":[{"title":"2015:E14 - The Hot Chocolate Challenge - #25","description":"Griffon takes the Hot Chocolate challenge. That's not a real challenge, we made it up.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feb5b732-2794-44a2-82be-dd873f55be19/sm/1461653-1438882067649-HotChocolate_thumb.jpg","duration":255,"publication_date":"2015-08-06T17:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-magic-dogs-and-muscle-men","changefreq":"weekly","video":[{"title":"S1:E6 - Magic Dogs & Muscle Men","description":"This week, Colton Dunn joins Chris and Burnie to discuss what he would do for $1 million. Not even magic dogs and vomiting spaghetti will get between them and their money.\n\nFeaturing:\n\nBurnie Burns \n\nChris Demarais\n\nColton Dunn\n\nDavid Schachterle as Burnie's Bodybuilder\n\nDevon Robinson as Colton's Bodybuilder\n\nRaquel Whitney as Colton's Mother","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-magic-dogs-and-muscle-men","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35f25af0-1647-4e03-a710-40d1b3d07538/sm/1461653-1438791171862-MDB_thumbep5_20150804_v3.jpg","duration":277,"publication_date":"2015-08-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-11","changefreq":"weekly","video":[{"title":"2015:E11 - Podcast #335 Post Show","description":"Join Gavin Free, Meg Turney, Ashley Jenkins and Burnie Burns as they discuss Rhonda Rousey in this week's RT Podcast Extra! This episode episode originally aired on August 3rd 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3515ab67-4ced-4876-b1cc-450d01a8fd6e/sm/1461653-1438785512137-RTP_335-PS-THUMB.jpg","duration":1760,"publication_date":"2015-08-05T14:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rooster-teeth-podcast-335","changefreq":"weekly","video":[{"title":"2015:E335 - The Complain About Sh*t Podcast - #335","description":"Join Gavin Free, Meg Turney, Ashley Jenkins and Burnie Burns as they discuss runaway pets in this week's RT Podcast! This episode episode originally aired on August 3rd 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rooster-teeth-podcast-335","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7518a4f5-0ec3-4c7b-a452-7257178bada8/sm/1461653-1438714437374-RTP_335-THUMB.jpg","duration":6032,"publication_date":"2015-08-04T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-shady-agents-talk-to-tom-cruise","changefreq":"weekly","video":[{"title":"S6:E15 - Shady Agents Talk to Tom Cruise","description":"Tom Cruise tries to have a private conversation with his slimey talent agents but gets interrupted by another A-list celebrity.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-shady-agents-talk-to-tom-cruise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/917edc7d-ac42-40b3-97bb-fb90ffe87c1a/sm/1461653-1438644070453-TOM_CRUISE_THUMB.jpg","duration":197,"publication_date":"2015-08-03T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-28","changefreq":"weekly","video":[{"title":"2015:E33 - Burnie & The Name Game","description":"Burnie gets confused when someone with a similar name to his gets called up at the airport lounge.\n\nAudio from The Rooster Teeth Podcast #330: http://roosterteeth.com/episode/rt-podcast-season-...\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://roosterteeth.com/show/rt-podcast","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8b7a291-feca-4425-ae65-1a4991da3bcb/sm/1461653-1438616031251-rtaa196tn2.jpg","duration":123,"publication_date":"2015-08-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-16-armonia-part-two","changefreq":"weekly","video":[{"title":"S13:E16 - Episode 16: Armonia, Part Two","description":"S13:E16 - Episode 16: Armonia, Part Two","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-16-armonia-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66a08d42-a4a2-47af-8a87-83ab73376fa9/sm/1461653-1438518753712-Ep16_Thumbnail.png","duration":572,"publication_date":"2015-08-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-episode-3-my-dinner-with-ash","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3: My Dinner With Ash","description":"Vav has a dinner date with Ash, and he needs X-Ray's help to not screw it up. However, fate has other plans, and the three of them get caught in the middle of Mogar's mission.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-episode-3-my-dinner-with-ash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7323526c-5f00-406a-ab33-73cff3108dcb/sm/1461653-1438518444825-xv2_ep3_thumbnail.jpg","duration":523,"publication_date":"2015-08-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-featuring-josh-ornelas","changefreq":"weekly","video":[{"title":"S2:E167 - Quick Draw with Patrick! (featuring Josh Ornelas)","description":"We're back! Another episode of Quick Draw! This time, with machinimator and musician, Josh Ornelas.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-featuring-josh-ornelas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78dcf7ad-0975-45e0-80e0-dd07aa4c07c0/sm/1461653-1438358927457-Screen_Shot_2015-07-31_at_11.07.56_AM.png","duration":1532,"publication_date":"2015-07-31T16:07:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-11","changefreq":"weekly","video":[{"title":"S3:E31 - Six Pepperoni Slices - #31","description":"Barbara, Lindsay, Ashley and Meg teach Jon the proper use of stirrups in On The Spot #31! This week's sponsor: Credit Karma - http://bit.ly/1R8fC1j","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5886425-6c1a-4dff-a8c7-4200ea96ba0d/sm/1461653-1438357987318-0ts31-STILL_END.png","duration":2587,"publication_date":"2015-07-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-19","changefreq":"weekly","video":[{"title":"2015:E19 - Two Guys Save a Penguin","description":"In a rare scene of heroics, Chris and Josh discover a helpless penguin and quickly swoop in to save the day. PLEASE DON'T LITTER and please do not try to touch or pet wildlife. We only touched them to pull the trash off.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4dca66a3-9af5-437a-880e-63a9df1dd44b/sm/1461653-1438270187685-Austrailia_part_2_thumb.jpg","duration":162,"publication_date":"2015-07-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-million-dollars-but-bloopers-outtakes","changefreq":"weekly","video":[{"title":"S1:E5 - Million Dollars, But... Bloopers & Outtakes","description":"Check out all the never-before-seen bloopers and outtakes in this special episode of Million Dollars, But","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-million-dollars-but-bloopers-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d9b74a1-c318-4c39-8b53-a9138a08bf9d/sm/1461653-1438210742554-MDB_Bloopers_Thumb_v4.jpg","duration":146,"publication_date":"2015-07-29T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-10","changefreq":"weekly","video":[{"title":"2015:E10 - Podcast #334 Post Show","description":"Join Gus Sorola, Gavin Free, Barbara Dunkelman and Burnie Burns as they discuss making the \"Million Dollars, But\" series in this week's RT Podcast Post Show! This episode episode originally aired on July 27, 2015.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0be6501-c391-40c4-a7a4-3483b84ad24a/sm/1461653-1438189840770-RTP_334-PS-THUMB.jpg","duration":1654,"publication_date":"2015-07-29T17:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-dick-tation-extended-cut","changefreq":"weekly","video":[{"title":"S2:E15 - Dick-Tation Extended Cut","description":"Sponsors can now watch the extended cut for the Rooster Teeth Short: Dick-Tation.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-dick-tation-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91e0118b-4759-4b73-b228-487f7967602a/sm/1461653-1438108055109-Dicktation_thumb_Extended.jpg","duration":346,"publication_date":"2015-07-28T18:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-r-t-podcast-334","changefreq":"weekly","video":[{"title":"2015:E334 - The Bloody Bathroom Beef - #334","description":"Join Gus, Burnie, Barbara, and Gavin as they discuss Vidcon parties in this week's RT Podcast! This episode originally aired on July 27, 2015, sponsored by BrainTree (http://bit.ly/1II1Ni2), Casper (http://bit.ly/1eve7s5) and Lynda (http://bit.ly/1evefaX)\n\nSponsors for this week:\n\nBrainTree: http://bit.ly/1RG0Psy\n\nCasper: http://bit.ly/1eve7s5\n\nLynda: http://bit.ly/1evefaX","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-r-t-podcast-334","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53bd04d7-0892-48a4-ba2b-2191ea7bfe8a/sm/1461653-1438102835281-RTP_334-THUMB.jpg","duration":5647,"publication_date":"2015-07-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-27","changefreq":"weekly","video":[{"title":"2015:E32 - Geoff Gets Cut Off","description":"Geoff gets drunk at a party without realizing, and freaks out that he might have embarrassed himself.\n\nAudio from The Rooster Teeth Podcast: http://roosterteeth.com/podcast/\n\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a46f60d0-0443-48ee-8497-0ae8f14a88a5/sm/1461653-1438011126558-rtaa195tn2.jpg","duration":84,"publication_date":"2015-07-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-15","changefreq":"weekly","video":[{"title":"S13:E15 - Episode 15: Armonia, Part One","description":"Armonia, Part One","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a2b4ba1-bfff-4009-91b6-26803d4d159b/sm/1461653-1437944693452-Ep15_thumb.jpg","duration":362,"publication_date":"2015-07-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-episode-14","changefreq":"weekly","video":[{"title":"S6:E14 - Dick-Tation Bloopers","description":"Chris, Joel, Gus, and Colton screw up their long, hard lines while reading scripts written using the Demarais patented Dick-Tation software. Finally, a video that combines my three favorite things: Writing, sex, and bloopers.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ac429df-5102-4377-ab0d-6375b126a5fa/sm/1461653-1438019327201-DickTationBloopers.jpg","duration":130,"publication_date":"2015-07-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-enter-the-dragonfic","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2: Enter the Dragonfic","description":"When Dragonface, X-Ray and Vav's biggest fan/stalker, gets his hands on an experimental invention of Hilda's, things get a little fan-fictional.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-enter-the-dragonfic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdda34bd-3d8e-48a9-a9a2-29bd19351697/sm/1461653-1437831648788-xv2_ep2_thumbnail.jpg","duration":510,"publication_date":"2015-07-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-9","changefreq":"weekly","video":[{"title":"2015:E9 - Podcast #333 Post Show","description":"Game of Thrones Spoilercast","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d2e2f53-38b6-465c-a5df-0591517be2dd/sm/1461653-1437775432230-RT333-EXTRA-TH.jpg","duration":1839,"publication_date":"2015-07-24T21:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-10","changefreq":"weekly","video":[{"title":"S3:E30 - The Cookie Hoover - #30","description":"The Slow Mo Guys versus Michael and Intern Andy in a 'crumby' battle for On The Spot #30. This week's sponsors: Audible - http://adbl.co/1Or3y5R and Casper - http://bit.ly/1Or3AKK","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e634e493-75db-4ac0-a31d-cd88d832cfc5/sm/984097-1437763269340-ots_30_thumb.jpg","duration":2640,"publication_date":"2015-07-24T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-13","changefreq":"weekly","video":[{"title":"2015:E13 - Cider Test - #24","description":"Join Geoff, Griffon, and Gavin as they drink their way through bottles to find the best Cider the world has to offer.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b2fcfe4-fa47-4d5c-abec-e0747d90cfb3/sm/984097-1437669939895-hh_cider_test.jpg","duration":560,"publication_date":"2015-07-23T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-episode-43","changefreq":"weekly","video":[{"title":"S1:E43 - 6ft Man in 6ft Giant Water Balloon","description":"Gav and Dan revisit an absolute classic with a slight twist. Now in 4K!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-episode-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1b0a959-becb-4843-8638-9229241cfc7a/sm/984097-1437669616916-danballoon2.jpg","duration":320,"publication_date":"2015-07-23T16:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E4 - Birthday Sex & Negativity Light","description":"Join Barbara, Gavin, and Burnie as they eat all the birthday cake and travel through time to witness their conception.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e0549cf-1231-4715-bc43-e07264d30f5b/sm/2013912-1449175439728-MDB_thumb.jpg","duration":255,"publication_date":"2015-07-22T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-episode-334","changefreq":"weekly","video":[{"title":"2015:E333 - RT Podcast #333","description":"RT Discusses Bathroom Etiquette","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-episode-334","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b62bfcd-f26c-485e-a146-8451d8436c71/sm/984097-1437679970363-984097-1435869178888-Podcast_hero(1).png","duration":5715,"publication_date":"2015-07-21T16:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015","changefreq":"weekly","video":[{"title":"2015:E31 - AH ASMR FTW","description":"Michael, Gavin, and Ryan the Naughty Chef try to make an ASMR video. Watch ASMR-DoNotUpload.MOV: http://bit.ly/AHASMR","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5b6072e2-4173-4eb7-9798-594ed78f18b7.jpg/sm/maxresdefault.jpg","duration":94,"publication_date":"2015-07-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-dicktation","changefreq":"weekly","video":[{"title":"S6:E2 - Dick-Tation","description":"Joel confronts Chris about his new dictation software and discovers just how deep Chris's rabbit hole goes.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-dicktation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74967c61-b9b6-4300-8b0e-b03d30b2b3d6/sm/1461653-1438108985205-Dicktation_thumb_thumb_3.jpg","duration":243,"publication_date":"2015-07-20T06:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-14","changefreq":"weekly","video":[{"title":"S13:E14 - Episode 14: Counseling","description":"Sometimes you just have to talk it out.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5edc940-89f9-4413-a3ef-538444c85a78/sm/1461653-1438200688291-Ep14_thumb.jpg","duration":565,"publication_date":"2015-07-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-2-the-dawn-of-mogar","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 1: The Dawn of Mogar","description":"Mogar, um... dawns! And with the help of intrepid reporter Ash, X-Ray and Vav are out to learn as much as they can about the secretive savage!","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-2-the-dawn-of-mogar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6532de54-b99d-4dc7-bd88-4b451f29ef9c.jpg/sm/maxresdefault.jpg","duration":527,"publication_date":"2015-07-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsorcast-sports-movies","changefreq":"weekly","video":[{"title":"S2:E254 - SponsorCast - Sports Movies","description":"Jack, Brandon and Tyler debate on the best sports movie ever made!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsorcast-sports-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/86ef0723-cc71-4e1e-890c-21a3c923cdff.jpg/sm/RTSponsorCutsportsMovie1Thumbnail.jpg","duration":1376,"publication_date":"2015-07-18T01:10:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-9","changefreq":"weekly","video":[{"title":"S3:E29 - The Great Seduction - #29","description":"Ryan and Gus take on Blaine and Kirk Johnson and the mystery chocolate redemption challenge is back!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5d714e4b-4bd2-4180-8631-ea38e1e115d1.jpg/sm/maxresdefault.jpg","duration":2343,"publication_date":"2015-07-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-17","changefreq":"weekly","video":[{"title":"2015:E17 - Australia Adventure Part 1","description":"Join Chris and Josh on the first part of their incredible Australian adventure! Its snot what you think. Thats not true. Its exactly what you think.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/65155e1f-f0aa-4551-ad33-e1d27a1c382d.jpg/sm/maxresdefault.jpg","duration":164,"publication_date":"2015-07-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-money-mouth-and-delayed-climax","changefreq":"weekly","video":[{"title":"S1:E3 - Money Mouth & Delayed Climax","description":"This week Kerry joins Burnie and Gavin. They discuss delayed climaxes, licking money, and a world full of talking objects.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-money-mouth-and-delayed-climax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/354e4cf9-bead-4a84-8bcf-aaf09f616ca9/sm/984097-1437670963246-mdb_thumbv2.jpg","duration":239,"publication_date":"2015-07-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-r-t-podcast-332","changefreq":"weekly","video":[{"title":"2015:E332 - The Sad Finger - #332","description":"The Rooster Teeth Podcast is back in video form! Join us for our episode originally aired on July 13, 2015, sponsored by Squarespace (http://bit.ly/1HOFHwf) Onnit (http://bit.ly/1FQTkc0) and Audible (http://bit.ly/1nBTIF5).\n\nThis episode features Michael Jones, Barbara Dunkelman, Burnie Burns, and special guest Colton Dunn. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Monday evening at 7:30PM Central Time. For more information visit https://roosterteeth.com/sponsor/\n\nSponsors for this week:\n\nSquarespace: http://bit.ly/1HOFHwf\n\nOnnit: http://bit.ly/1FQTkc0\n\nAudible: http://bit.ly/1nBTIF5\n\nCheck out our very own Barbara showcasing the best of Austin! Watch the video here: http://bit.ly/1JQwftY\n\nLinks discussed this episode:\n\nhttp://roosterteeth.com/podcast/episode.phpid=332","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-r-t-podcast-332","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/738223f4-0843-401f-b86b-396ebc76a837/sm/1461653-1438033610366-rt332-TH.jpg","duration":6315,"publication_date":"2015-07-14T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-16","changefreq":"weekly","video":[{"title":"2015:E30 - Crashes & Cleptos","description":"Burnie wonders what constitutes a crash for an aircraft, and Gus tells a story about a naughty club he was in with Geoff.\r\n\r\nAudio from The Rooster Teeth Podcast: http://roosterteeth.com/podcast/\r\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/453a2b7c-bf05-442b-a24b-318281601fdf.jpg/sm/maxresdefault.jpg","duration":85,"publication_date":"2015-07-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-the-thin-fed-line","changefreq":"weekly","video":[{"title":"S13:E13 - Episode 13: The Thin Fed Line","description":"The armies of Chorus need time to recover, but time isn't on their side.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-the-thin-fed-line","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f751b26-d8e4-47c3-b33a-9df968e02019/sm/1461653-1440186004594-Ep13_Thumbnail.jpg","duration":504,"publication_date":"2015-07-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-wheres-waldo-the-audiobook-bloopers","changefreq":"weekly","video":[{"title":"S6:E7 - Where's Waldo?: The Audiobook Bloopers","description":"S6:E7 - Where's Waldo?: The Audiobook Bloopers","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-wheres-waldo-the-audiobook-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/04a009f0-f97e-4c38-bc3b-e0ca4b82f1d4.jpg/sm/maxresdefault.jpg","duration":68,"publication_date":"2015-07-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-doom-multiplayer","changefreq":"weekly","video":[{"title":"2016:E153 - DOOM Multiplayer","description":"Thanks to DOOM and Bethesda for sponsoring this video! DOOM is available now in stores! Go to http://bit.ly/1ReKWWe for more information. #fightlikehell\n\nAchievement Hunter delves into DOOM multiplayer! Warning: This video contains copious amounts of Demon blood and bad-assery.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-doom-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f7c72c8-3f76-4cea-a5d1-042ba12904aa/sm/2013912-1463788895109-doom_spons_base.jpg","duration":1507,"publication_date":"2016-05-21T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-26","changefreq":"weekly","video":[{"title":"2016:E152 - Let's Watch – Uncharted 4: A Thief's End – Part 12","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Michael, Ryan, and Jeremy continue their journey through Uncharted 4: A Thief's End! In this adventure, Nate and Elena continue their epic search for treasure in the treacherous jungle.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2a8d676-bba1-4df7-b980-f819e8ee42ea/sm/2013912-1463771963727-uncharted_12_thumb.jpg","duration":3027,"publication_date":"2016-05-21T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-3","changefreq":"weekly","video":[{"title":"2016:E3 - Episode #3: Crazy Bitches","description":"This plot is crazy. This acting is crazy. These bitches are crazy, too! Join AH as they observe, understand and embrace the crazy in these bad b's and in themselves.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aee5edf1-c00a-421d-90ea-d787fbc4f500/sm/2013912-1463769320786-CB_-_THUMB.jpg","duration":5431,"publication_date":"2016-05-20T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-fallout-4-far-harbor-the-islander-s-almanac-guide","changefreq":"weekly","video":[{"title":"2016:E24 - Fallout 4: Far Harbor – The Islander's Almanac Guide","description":"Jeremy and Mica trek through post-apocalyptic Maine to show you where to find all the issues of the Islander's Almanac in the new Farb Harbor DLC for Fallout 4.\n\nFar Harbor - 00:20\nNational Park Visitor's Center - 1:07\nNorthwood Ridge Quarry - 1:46\nBrooker's Head Lighthouse - 2:51\nAcadia - 3:55","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-fallout-4-far-harbor-the-islander-s-almanac-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a5358ae-ebae-469b-b8e5-000fe40048da/sm/2013912-1463771733068-Thumb.jpg","duration":303,"publication_date":"2016-05-20T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-doom-levels-11-12-and-13-secrets-and-collectibles","changefreq":"weekly","video":[{"title":"2016:E23 - DOOM – Levels 11, 12 and 13: Secrets and Collectibles","description":"Jeremy and Jack are back for 3 more maps in DOOM. Here's where to find all the collectibles, secrets, elite guards, automaps, and field drones for the levels The Necropolis, Vega Central Processing, and Argent D'Nur.\n\n\n\nLevel 11: The Necropolis\nDatapad - 00:19\nArtifact - 00:33\nArgent Energy - 00:52\nAutomap - 1:13\nSecret - 1:34\nArtifact - 2:07\nCollectible - 2:27\nElite Guard - 2:56\nField Drone - 3:12\nElite Guard - 3:33\nCollectible - 3:58\nArtifact - 4:39Level 12: Lazarus Labs\nDatapad - 5:03\nElite Guard - 5:23\nCollectible - 5:47\nDatapad - 6:23\nAutomap - 6:42\nElite Guard - 7:36\nSecret - 7:58\nCollectible - 8:33\nDatapad - 9:07\nElite Guard - 9:30\nDatapad - 10:13\nLevel 13: Argent D'Nur\nSecret - 10:44\nAutomap - 11:35\nSecret - 12:00\nSecret (Classic DOOM) - 12:42\nCollectible - 13:13\nSecret - 13:50","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-doom-levels-11-12-and-13-secrets-and-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46589624-e1a3-4f7e-8981-83c52eebfa23/sm/2013912-1463766180176-Thumb5.jpg","duration":923,"publication_date":"2016-05-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-up-and-down","changefreq":"weekly","video":[{"title":"2016:E21 - Minecraft – Up n' Down","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Five Towers. Five Players. Only one will make it to the top alive.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-up-and-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0830a9b2-ef15-4528-94d2-c63fd3901549/sm/2013912-1463770762991-Thumbnail.jpg","duration":734,"publication_date":"2016-05-20T17:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-smite-with-dante-basco","changefreq":"weekly","video":[{"title":"2016:E151 - SMITE with Dante Basco","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || We're back with more SMITE, this time with our good friend. You know him as Rufio of the Lost Boys, the beloved Firelord Zuko. Ladies and gentlemen... it's Dante Basco.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-smite-with-dante-basco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f892b31f-2138-4f82-9644-dc543e332bda/sm/2013912-1463681811852-SMITE_with_Dante_thumb_v2.jpg","duration":2123,"publication_date":"2016-05-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-doom-levels-8-9-and-10-secrets-and-collectibles","changefreq":"weekly","video":[{"title":"2016:E22 - DOOM – Levels 8, 9 and 10: Secrets and Collectibles","description":"Jeremy and Jack are back for 3 more maps in DOOM. Here's where to find all the collectibles, secrets, elite guards, automaps, and field drones for the levels The Necropolis, Lazarus Labs, and Titan's Realm.\n\n\n\nLevel 8: The Necropolis\nElite Guard - 00:19\nAutomap - 1:02\nArgent Energy - 1:11\nDatapad - 1:28\nDatapad - 1:57\nElite Guard - 2:12\nRune - 2:33\nSecret - 3:25\nCollectible - 4:42 \nArgent Energy - 5:26\nSecret - 5:55\nField Drone - 6:31\nElite Guard - 7:21\nDatapad - 7:49\nCollectible - 8:13\nDatapad - 8:51\nRune - 9:15Level 9: Lazarus Labs\nDatapad - 9:54\nSecret - 10:07\nDatapad - 10:32\nElite Guard - 11:00\nField Drone - 11:11\nDatapad - 11:28\nAutomap - 11:52\nRune - 12:13\nElite Guard - 12:44\nCollectible - 13:12\nCollectible - 13:45\nDatapad - 14:21\nArgent Energy - 14:39\nElite Guard - 15:03\nSecret - 15:31\nElite Guard - 16:03\nRune - 16:32\nDatapad - 16:40Level 10: Titan's Realm\nArtifact - 17:12\nElite Guard - 17:25\nField Drone - 17:58\nCollectible - 18:37\nAutomap - 19:32\nCollectible - 19:44\nElite Guard - 20:06\nDatapad - 20:34\nArgent Energy - 21:01 \nSecret - 21:16\nArtifact - 22:17\nSecret - 22:35\nDatapad - 22:48","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-doom-levels-8-9-and-10-secrets-and-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/993df21c-0d88-4ae9-a36c-0354408d372e/sm/2013912-1463690319440-Thumb4.jpg","duration":1406,"publication_date":"2016-05-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-25","changefreq":"weekly","video":[{"title":"2016:E150 - Let's Watch – Uncharted 4: A Thief's End – Part 11","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Michael, Jack, and Jeremy join special guests Etika and Shofu to continue their journey through Uncharted 4! In this adventure, they get to go back in time and explore a massive mansion as young Nate and Sam.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91693257-b044-40e6-a203-c842654ced84/sm/2013912-1463609303899-uncharted_11.jpg","duration":2499,"publication_date":"2016-05-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-8","changefreq":"weekly","video":[{"title":"2016:E43 - VR the Champions – Fruit Ninja","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Tonight in VR the Champions: The Achievement Hunter crew gets to slice and dice in a new VR Fruit Ninja experience. Who will conquer? You’ll have to watch to find out!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e23878a5-4c6e-4feb-82dd-8e467ea6e7fb/sm/2013912-1463596101677-VR_Fruitninja.jpg","duration":810,"publication_date":"2016-05-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-208-mo-chievements-beaconator","changefreq":"weekly","video":[{"title":"2016:E149 - Minecraft – Episode 208 – Mo'Chievements: Beaconator","description":"Five Minecraft videos ago, a mysterious chest was delivered to the Achievement Hunter office. Inside of that chest was a box. And inside of that box was an envelope. And inside of that envelope was a letter - a letter that said: \n\n\"Six new achievements - We feel so alive!\n\nTrambampolined hard - and then there were five.\n\nFive new achievements - What else is in store?\n\nEat a Notch Apple - and then there were four.\n\nFour new achievements - They fill us with glee!\n\nTie dye some leather - and then there were three.\n\nThree new achievements - What are we to do?\n\nSummon the Wither - and then there were two.\n\nTwo new achievements - the quest almost done.\n\nFuck up the Wither - and then there was one.\n\nOne new achievement - and that's the whole haul.\n\nFull charge a beacon - and you've got them all!\"\n\nAchievement Hunter was up to the task! Mo'Chievements? No problem. Except for the Mo'Problems that came along with trying to get all the new achievements. But with only one achievement left (or two if you're Gavin and didn't kill the Wither), it looked like this Mo'Chievement journey was nearing its end. The only thing left for the Achievement Hunters to do was collect a dickton of iron and build a beacon...and kill the Wither again because they didn't save after killing it the last time. Damn! Mo'Chievements really does lead to Mo'Problems.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-208-mo-chievements-beaconator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61c8caff-a5d0-403e-b6d4-20e00a680253/sm/2013912-1463609506240-LP_Minecraft_208_Thumb_v005.png","duration":2809,"publication_date":"2016-05-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gta-v-white-water-rapids","changefreq":"weekly","video":[{"title":"2016:E20 - GTA V – White Water Rapids","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The gang makes like salmon in this up-river race... if salmon had high-octane speed boats, that is. Who will make it to the spawning grounds first?","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gta-v-white-water-rapids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5dec596-28da-4e8e-afd3-dd99c8eb5be6/sm/2013912-1463606889947-ttd_gtav_thumb.jpg","duration":1832,"publication_date":"2016-05-18T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-doom-levels-5-6-and-7-secrets-and-collectibles","changefreq":"weekly","video":[{"title":"2016:E21 - DOOM – Levels 5, 6 and 7: Secrets and Collectibles","description":"Jeremy and Jack are back for 3 more maps in DOOM. Here's where to find all the collectibles, secrets, elite guards, automaps, and field drones for the levels Argent Energy Tower, Kadingir Sanctum, and Argent Facility Destroyed.\n\n\n\nLevel 5: Argent Energy Tower\nDatapad - 00:19\nRune - 00:37\nArgent Energy - 00:59\nField Drone - 1:29\nDatapad - 1:59\nElite Guard - 2:11\nDatapad - 2:34\nAutomap - 2:52\nElite Guard - 3:05\nDatapad - 3:29\nCollectible - 3:42\nCollectible - 4:22 \nArgent Energy - 4:48\nSecret - 5:17\nRune - 6:29\nElite Guard - 7:00\nSecret - 7:27Level 6: Kadingir Sanctum\nSecret - 8:02\nArtifact - 8:28\nElite Guard - 8:54\nCollectible - 9:07\nRune - 9:54\nArgent Energy - 10:25\nSecret - 10:53\nElite Guard - 11:12\nAutomap - 11:53\nArtifact - 12:13\nDatapad - 12:31\nElite Guard - 12:43\nRune - 12:56\nCollectible - 13:18\nField Drone - 13:43\nDatapad - 14:05\nSecret - 14:18\nDatapad - 15:02\nArtifact - 15:20\nElite Guard - 15:51 \nDatapad - 16:11Level 7: Argent Facility Destroyed\nDatapad - 16:42\nCollectible - 16:55\nSecret - 17:22\nElite Guard - 17:57\nDatapad - 18:21\nRune - 18:35\nElite Guard - 18:52\nAutomap - 19:24\nDatapad - 19:41\nElite Guard - 19:56\nDatapad - 20:16\nField Drone - 20:33\nRune - 21:08\nArgent Energy - 21:37\nDatapad - 22:16\nCollectible - 22:34\nElite Guard - 22:55","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-doom-levels-5-6-and-7-secrets-and-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2381e2e1-bfca-4e83-8a85-704d84b59099/sm/2013912-1463602596397-Thumb3.jpg","duration":1409,"publication_date":"2016-05-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-24","changefreq":"weekly","video":[{"title":"2016:E148 - Let's Watch – Uncharted 4: A Thief's End – Part 10","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Michael, Jack, and Jeremy continue the epic Uncharted 4 adventure. Also, Rafe is a dick.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fa5da56-bac4-4951-aeed-d26d3de7efec/sm/2013912-1463585507004-uncharted10_thumb.jpg","duration":3092,"publication_date":"2016-05-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-warhammer-end-times-vermintide-smuggler-s-run","changefreq":"weekly","video":[{"title":"2016:E147 - Warhammer: End Times – Vermintide – Smuggler's Run","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The Achievement Hunters return to Vermintide to explore the dankest of sewers, infested with both evil rats and, more impressively, regular rats.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-warhammer-end-times-vermintide-smuggler-s-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbc28af1-7a41-4566-93e0-6c7b6027e95e/sm/2013912-1463520962903-VERMINTIDE_thumb.jpg","duration":1879,"publication_date":"2016-05-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-doom-levels-2-3-and-4-secrets-and-collectibles","changefreq":"weekly","video":[{"title":"2016:E20 - DOOM – Levels 2, 3 and 4: Secrets and Collectibles","description":"Jeremy and Jack are back for 3 more maps in DOOM. Here's where to find all the collectibles, secrets, elite guards, automaps, and field drones.\n\n\n\nLevel 2: Resource Operation\nAutomap - 00:19\nSecret - 00:35\nSecret - 00:56\nDatapad - 1:56\nField Drone - 2:15\nSecret - 2:30\nElite Guard - 3:06\nSecret - 3:38\nSecret - 4:00\nElite Guard - 4:23\nCollectible - 4:39\nDatapad - 5:10\nElite Guard - 5:29\nCollectible - 5:54\nArgent Energy - 6:18\nLevel 3: Foundry\nDatapad - 7:05\nField Drone - 7:19\nElite Guard - 7:35\nSecret - 8:08\nCollectible - 8:32\nDatapad - 9:13\nSecret - 9:39\nArgent Energy = 10:19\nSecret - 10:54\nDatapad - 11:26\nCollectible - 11:46\nElite Guard - 12:11\nAutomap - 12:47\nElite Guard - 13:14\nLevel 4: Argent Facility\nRune - 13:47\nDatapad - 14:05\nSecret - 14:20\nField Drone - 14:50\nElite Guard - 15:24\nElite Guard - 15:43\nDatapad - 16:20\nArgent Energy - 16:43\nRune - 17:11\nField Drone - 17:47\nDatapad - 18:21\nElite Guard - 18:34\nCollectible - 18:54\nSecret - 19:19\nAutomap - 19:53\nDatapad - 20:31\nCollectible - 20:57\nElite Guard - 21:26","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-doom-levels-2-3-and-4-secrets-and-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed0d9e3e-915c-487d-aef3-e5ac6f90964f/sm/2013912-1463517704897-Thumb2.jpg","duration":1321,"publication_date":"2016-05-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-23","changefreq":"weekly","video":[{"title":"2016:E146 - Let's Watch – Uncharted 4: A Thief's End – Part 9","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Join Michael, Ryan, and Jeremy as Michael continues the epic Uncharted 4 adventure. Also, Sam is invincible.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19316a3e-3349-494d-ac7d-c7fbfc2a7db7/sm/2013912-1463435570435-uncharted9.jpg","duration":2291,"publication_date":"2016-05-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-worms-9","changefreq":"weekly","video":[{"title":"2016:E145 - Worms Battlegrounds Part 9","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Michael, Gavin, Jeremy, and Ryan endure some more worm carnage in this stellar continuation of our critically acclaimed Let's Play series!!! Is it actually critically acclaimed? Who knows?!?! Either way, you can be sure that some form of hilarity will ensue!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-worms-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97e6b890-434d-4fa0-80f6-a21cbb07f42f/sm/2013912-1463500994211-Worms_thumb_V4.png","duration":2519,"publication_date":"2016-05-17T16:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-136-michael-vs-lindsay","changefreq":"weekly","video":[{"title":"2016:E12 - Episode 137: Michael vs Lindsay","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The claws come out when Lindsay challenges Michael for the VS title.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-136-michael-vs-lindsay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15ac3a40-6ed0-42f2-b07e-09f029d30479/sm/2013912-1463444387559-VS_Michael_Lindsay_01.jpg","duration":537,"publication_date":"2016-05-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-317","changefreq":"weekly","video":[{"title":"2016:E23 - Waiting for Decades – AHWU for May 16th, 2016 (#317)","description":"Like Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? GET YOURSELF SOME TICKETS, DAMMIT! Tickets are available at http://RoosterTeethLive.com. || Join Geoff and Jack in this week's special episode of AHWU. Witness Geoff's epic wait for Trevor, and find out if Trevor gets fired or not. In addition, Achievement Hunter finds someone shorter than Jeremy!\n\n\nVid of week: https://www.youtube.com/watch?v=Myz7TFIJLcY || Community vid: https://www.youtube.com/watch?v=RZHhLrlxb4o","player_loc":"https://roosterteeth.com/embed/ahwu-2016-317","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e6afbc-63ee-40e4-9670-697bbf39c652/sm/2013912-1463434784552-AHWU_thumb.jpg","duration":448,"publication_date":"2016-05-16T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-doom-level-1-the-uac-secrets-and-collectibles","changefreq":"weekly","video":[{"title":"2016:E19 - DOOM – Level 1: The UAC Secrets and Collectibles","description":"Jeremy and Jack are on Mars in the first level of DOOM. Here's where to find all the collectibles, secrets, elite guards, automaps, and field drones.\n\nDatapad: 0:32\nCollectible: 0:51\nAutomap: 1:28\nElite Guard: 1:59\nSecret: 2:16\nField Drone: 3:08\nDatapad: 3:30\nCollectible: 3:45","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-doom-level-1-the-uac-secrets-and-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4850d005-6e97-4b57-a769-e832ab8053ba/sm/2013912-1463430748787-Thumb1.jpg","duration":272,"publication_date":"2016-05-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-battlefield-hardline","changefreq":"weekly","video":[{"title":"2016:E18 - Battlefield Hardline","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Jack and Ryan discuss Battlefield Hardline in this week’s Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-battlefield-hardline","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e43f64c1-d35e-4460-af1c-188f7931aac8/sm/2013912-1463415117407-BFH_Thumb.jpg","duration":215,"publication_date":"2016-05-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-ttd-halo","changefreq":"weekly","video":[{"title":"2016:E19 - Halo 5 – Capture the Tower","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The gang plays a revamped version of the Minecraft classic, Capture the Tower. Will the Lads hold on to their undefeated title, or will the Gents finally capture victory? To find this map, check out SmittyLovesYou's profile on the Halo 5 multiplayer menu.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-ttd-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3697830-174e-4396-bbd7-e19d5a4721fb/sm/2013912-1463422440868-CTT_Thumb_V7.png","duration":764,"publication_date":"2016-05-16T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-22","changefreq":"weekly","video":[{"title":"2016:E144 - Let's Watch – Uncharted 4: A Thief's End – Part 8","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Join Michael, Ryan, and Jeremy as Michael continues the epic Uncharted 4 adventure. Also a surprise guest, Burnie Burns!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caf4b6a6-36d7-4a50-8727-4713456b1c3f/sm/2013912-1463204540690-uncharted_part8.jpg","duration":2509,"publication_date":"2016-05-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-uncharted-4-a-thief-s-end-mutiplayer","changefreq":"weekly","video":[{"title":"2016:E143 - Uncharted 4: A Thief's End - Multiplayer","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || \n\nThe Achievement Hunters explore the guns, grenades, totems and sidekicks one accesses in Uncharted 4's multiplayer game.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-uncharted-4-a-thief-s-end-mutiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a198c949-80df-4db2-bf5d-37e2f6bea96f/sm/2013912-1463330642296-unchartedmp_thumb.jpg","duration":2033,"publication_date":"2016-05-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-hotline-miami-2","changefreq":"weekly","video":[{"title":"2016:E25 - Hotline Miami 2","description":"Joel and Adam ditch french in favor of the language of hip hop. More specifically, Vanilla Ice.","player_loc":"https://roosterteeth.com/embed/how-to-2016-hotline-miami-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dcb3654-0487-41ff-a78b-a7e04333b7e5/sm/2013912-1463173104715-Thumb_Hotline_Miami.jpg","duration":1158,"publication_date":"2016-05-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-vermintide","changefreq":"weekly","video":[{"title":"2016:E24 - Vermintide","description":"Joel and Adam head to the world of Warhammer and kill splinters cousins. The ninja turtles are pissed.","player_loc":"https://roosterteeth.com/embed/how-to-2016-vermintide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78461a48-5af1-4ed1-9061-2f0201443bac/sm/2013912-1463173059937-Thumb_Vermintide.jpg","duration":1939,"publication_date":"2016-05-15T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-lovers-in-a-dangerous-spacetime","changefreq":"weekly","video":[{"title":"2016:E23 - Lovers in a Dangerous Spacetime","description":"Joel and Adam suit up and head to space! They must work together to navigate their ball through the vast dangers of the final frontier.","player_loc":"https://roosterteeth.com/embed/how-to-2016-lovers-in-a-dangerous-spacetime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3077dd0-1d1f-474b-a07b-edd921b4cc37/sm/2013912-1463173016326-Thumb_Lovers.jpg","duration":875,"publication_date":"2016-05-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-gauntlet","changefreq":"weekly","video":[{"title":"2016:E22 - Gauntlet","description":"Joel and Adam strike poses and learn about high fashion in the world of Gauntlet!","player_loc":"https://roosterteeth.com/embed/how-to-2016-gauntlet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/781b601a-7ad7-4208-a334-c63c1954ce52/sm/2013912-1463172965096-GauntletTHumbFInal_copy.jpg","duration":777,"publication_date":"2016-05-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-gmod-building-an-a-t-at","changefreq":"weekly","video":[{"title":"2016:E21 - Gmod – Building an AT-AT","description":"Joel and Adam hop back into Gmod (2 years ago) and attempt to build an AT-AT. It goes well.","player_loc":"https://roosterteeth.com/embed/how-to-2016-gmod-building-an-a-t-at","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ce2658d-5f6e-4464-862c-bf8bf8464bb2/sm/2013912-1463172879513-Thumb_GMOD_AT_AT.jpg","duration":766,"publication_date":"2016-05-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-21","changefreq":"weekly","video":[{"title":"2016:E142 - Let's Watch - Layers of Fear - Part 3","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || \n\nThe life of a painter can truly be a dark one. That's not going to stop us from continuing the horrifying journey that is Layers of Fear!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51039dc5-5ac7-454d-bded-bcb51fb9f618/sm/2013912-1463273241778-layersoffear_thumb_720.jpg","duration":2452,"publication_date":"2016-05-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-cloud-down","changefreq":"weekly","video":[{"title":"2016:E140 - GTA V - Cloud Down","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || \n\nThe Fake AH Crew jump into the community-made map of Cloud Down in GTA 5! Created by SpeedFreak88 and AClarkIsLost (Kyle and Austin), though I don't think they intended the maps to take THIS LONG.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-cloud-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/155e07ec-5e2d-413c-94f8-2e4ada147c31/sm/2013912-1463273471233-GTA_Cloud_Thumb.jpg","duration":2256,"publication_date":"2016-05-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-20","changefreq":"weekly","video":[{"title":"2016:E141 - Let's Watch – Uncharted 4: A Thief's End – Part 7","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Nathan Drake performs more totally badass feats in part 7 of Michael's playthrough of Uncharted 4: A Thief's End.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30bb9d73-8e5e-4ab8-a149-a3627a5cfb2e/sm/2013912-1463174200946-uncharted_part7_thumb.jpg","duration":4117,"publication_date":"2016-05-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-24","changefreq":"weekly","video":[{"title":"2016:E24 - The Branding – #24","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. \n\n\n\nThe AH Crew sits down to talk about Civil War, Brands, Netflix and more on this week's Off Topic!\n\nThis episode originally aired May 13, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/867f1677-0e3b-48dd-a268-7e201c6aa997/sm/2013912-1463175858686-OFF24_-_THUMB.jpg","duration":6483,"publication_date":"2016-05-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-19","changefreq":"weekly","video":[{"title":"2016:E139 - Let's Watch – Uncharted 4: A Thief's End – Part 6","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Join Michael, Jack, and Jeremy as Michael continues to play through Uncharted 4. Also, Jack's microphone betrays him.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3381ec4-24ae-4073-8579-849549554ce3/sm/2013912-1463161962864-uncharted6.jpg","duration":2781,"publication_date":"2016-05-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-fin-with-special-guest-mario","changefreq":"weekly","video":[{"title":"2016:E20 - Fin with Special Guest Mario","description":"Thank you to every fan of How To. We’ll miss making the show, but we’re incredibly thankful for all of you; also here’s a mario video.","player_loc":"https://roosterteeth.com/embed/how-to-2016-fin-with-special-guest-mario","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ffd54d9-5d93-4164-ad90-3b7db0296fc4/sm/2013912-1463173157374-Thumb_MarioU.jpg","duration":1803,"publication_date":"2016-05-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-episode-2","changefreq":"weekly","video":[{"title":"2016:E2 - Episode #2: Slink","description":"Purses are great for hiding things, but you have no idea just how many horrors can lurk inside. Join AH in watching Slink, a thought-provoking, genre-defining work of staggering genius.","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77adc4d6-28de-4ae3-8d78-3d7a8c26ec2f/sm/2013912-1463168993121-theatermode_thumb.jpg","duration":4256,"publication_date":"2016-05-13T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-18","changefreq":"weekly","video":[{"title":"2016:E138 - Let's Watch – Uncharted 4: A Thief's End – Part 5","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Achievement Hunter keeps on exploring those hidden temples. Ancient construction was surprisingly sound.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/394a747b-483c-48e7-a623-204d26b33be4/sm/2013912-1463153180170-uncharted_5_thumb.jpg","duration":2444,"publication_date":"2016-05-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-7","changefreq":"weekly","video":[{"title":"2016:E42 - VR the Champions – Job Simulator: Garage","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Tonight, in VR the Champions: Gavin drinks a fluid, Ryan wears a hat, and Michael pulls a thing. Achievement Hunter straps on their HTC Vive, enters virtual reality, and fulfills their dreams of running a chop shop and destroying people's cars!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63d7445d-1da9-4d7f-8b42-b52ef477249e/sm/2013912-1463090342148-VR_the_Champions_Thumbnail.jpg","duration":1769,"publication_date":"2016-05-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2016-ghost-murder-101","changefreq":"weekly","video":[{"title":"2016:E3 - Ghost Murder! – #101","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Can the team figure out how to kill a ghost AND get killed by a ghost? We shall see!","player_loc":"https://roosterteeth.com/embed/go-2016-ghost-murder-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d60787ab-c57a-4516-9353-c0e632bec730/sm/2013912-1463083797449-Go_101.jpg","duration":653,"publication_date":"2016-05-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-finals","changefreq":"weekly","video":[{"title":"2016:E41 - 2016 Achievement Hunter Hockey League – Finals","description":"Get you Havermeyer hardware: http://bit.ly/1SlwBLk || Pimp some Pimberton threads: http://bit.ly/1pBPjEx\n\nThis is it, everything has led to this moment. These two fierce competitors have fought, poked, and slap checked their way to the top. Ladies and gentlemen, welcome to the Achievement Hunter Hockey League Finals!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-finals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07dc1dcb-9954-46be-9fbe-473d4a0d0c36/sm/2013912-1463077892174-champs_thumb.jpg","duration":1725,"publication_date":"2016-05-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-17","changefreq":"weekly","video":[{"title":"2016:E137 - Let's Watch – Uncharted 4: A Thief's End – Part 4","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Dynamite in this game is AWESOME.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5748b4af-8324-431a-afae-6aaa39b40adf/sm/2013912-1463066310309-uncharted_part4_thumb.jpg","duration":4698,"publication_date":"2016-05-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-swing-and-a-miss-295","changefreq":"weekly","video":[{"title":"2016:E19 - Swing and a Miss! – #295","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Time for another Fails of the Weak! Lindsay and Matt check out an awesome fail in Destiny, as well as more fails in Grand Theft Auto V, Superhot, Dark Souls 3, and Madden NFL 16.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-swing-and-a-miss-295","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbe329bd-0599-491d-a9ef-2da57d3cd9ce/sm/2013912-1462980451436-Fail_295_Thumb.jpg","duration":138,"publication_date":"2016-05-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-207-ocarina-of-time-dodongo-s-cavern","changefreq":"weekly","video":[{"title":"2016:E136 - Minecraft – Episode 207 – Ocarina of Time: Dodongo's Cavern","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || \n\nThe Zelda boys are back and ready to keep adventuring through Templars of Hyrule: AKA Ocarina of Time, but Minecraft. Today, they're ready to dance with Darunia, do some intense party planning, take down King Dodongo, and earn their second spiritual stone.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-207-ocarina-of-time-dodongo-s-cavern","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57c2786c-8849-44da-a9d6-81ba71862df9/sm/2013912-1462999676191-mc_thumb_thumb.jpg","duration":2496,"publication_date":"2016-05-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-16","changefreq":"weekly","video":[{"title":"2016:E135 - Let's Watch – Uncharted 4: A Thief's End – Part 3","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || The adventure continues as Michael, Jack, and Jeremy continue their play through of Uncharted 4: A Thief's End!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bdb5984-4f08-4e70-a66f-2bcd202e1e69/sm/2013912-1462997083941-uncharted3_thumb.jpg","duration":3119,"publication_date":"2016-05-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-superhot-charted-guide-part-2","changefreq":"weekly","video":[{"title":"2016:E18 - SUPERHOT – Charted Guide Part 2","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Jeremy and Trevor venture into the time stopping world of SUPERHOT to find all of the hidden terminals and snag the Charted achievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-superhot-charted-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08714728-a361-441d-9efb-8e3ae14a04c4/sm/2013912-1462992288443-ChartedPart2.jpg","duration":694,"publication_date":"2016-05-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-superhot-charted-guide-part-1","changefreq":"weekly","video":[{"title":"2016:E17 - SUPERHOT – Charted Guide Part 1","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Jeremy and Trevor venture into the time stopping world of SUPERHOT to find all of the hidden terminals and snag the Charted achievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-superhot-charted-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66049617-adab-4798-a584-cdaa50d07e43/sm/2013912-1462992149307-ChartedPart1.jpg","duration":750,"publication_date":"2016-05-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-battleborn-forced-pitfall","changefreq":"weekly","video":[{"title":"2016:E18 - Battleborn – Forced Pitfall","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Battleborn is a game all about tough fights, badassitude, and most importantly skill! If you don't have any skill though don't worry. Matt and Jeremy have a great way to get around that little problem.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-battleborn-forced-pitfall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2774de6f-0b31-4797-bd57-468ccad7a6e1/sm/2013912-1462993902472-Forced_Pitfall_Thumb.jpg","duration":174,"publication_date":"2016-05-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-portal-knights","changefreq":"weekly","video":[{"title":"2016:E134 - Portal Knights","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Join Michael, Ryan, Jeremy and Not Geoff (Trevor) as they explore the magical, mystical, mysterious and geo-metrical world of Portal Knights!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-portal-knights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/636867b5-d701-40bc-ab90-8bf7fb7e9c97/sm/2013912-1462918550729-Portal_Knights_thumbnail.jpg","duration":2908,"publication_date":"2016-05-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-vs-episode-136-jack-vs-michael","changefreq":"weekly","video":[{"title":"2016:E11 - VS Episode 136: Jack vs Michael","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Fighting each other can be a great way to solve problems. Fighting each other with your unconscious siamese twin connected to you is even better.","player_loc":"https://roosterteeth.com/embed/vs-2016-vs-episode-136-jack-vs-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4590c56-3987-4e74-96f9-5ba633326fb0/sm/2013912-1462917624072-versus_thumb.jpg","duration":548,"publication_date":"2016-05-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-nhl-worst-of-the-best","changefreq":"weekly","video":[{"title":"2016:E40 - NHL – Worst of the Best","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || We are one game away from the finals – the pokes and getting pokier, and the ice is getting icier. Now let’s see who will be the worst of the best!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-nhl-worst-of-the-best","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef9accbf-e19d-4864-baa0-e3e3198be3d3/sm/2013912-1462898590370-nhl_Thumb.jpg","duration":1154,"publication_date":"2016-05-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-15","changefreq":"weekly","video":[{"title":"2016:E133 - Let's Watch – Uncharted 4: A Thief's End – Part 2","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Michael, Jack, and Jeremy continue their playthrough of Naughty Dog's newest game, Uncharted 4: A Thief's End!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d59a2644-6dbf-4a0b-a64f-51379242fc6f/sm/2013912-1462908276132-Lets_Watch_Uncharted4_Pt2_Thumb_V1.png","duration":1810,"publication_date":"2016-05-10T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battleborn-multiplayer","changefreq":"weekly","video":[{"title":"2016:E132 - Battleborn Multiplayer","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || The Battleborn badasses are back defending the first star from other Battleborn badasses. Are they up to the task of fighting other humans? Sorta, I guess.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battleborn-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4425558-0248-492b-a8f2-31ce86ef0575/sm/2013912-1462906152371-battleborn_thumb.jpg","duration":1811,"publication_date":"2016-05-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-14","changefreq":"weekly","video":[{"title":"2016:E131 - Let's Watch – Uncharted 4: A Thief's End – Part 1","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Ryan and Jeremy watch as Michael plays through Naughty Dog's newest game, Uncharted 4: A Thief's End.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4af7e44f-1dba-4ca0-af69-a2b45ea11b24/sm/2013912-1462842606254-Uncharted_thumb.jpg","duration":3929,"publication_date":"2016-05-10T02:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-316","changefreq":"weekly","video":[{"title":"2016:E22 - Jeremy Goes Poof – AHWU for May 9th, 2016 (#316)","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Join Jack, Michael and Jeremy for a special week of AHWU. Witness Jeremy disappearing and see a sneak peak of Uncharted 4.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95371c37-a413-4ad4-9f2d-645b4b71be10/sm/2013912-1462827070199-ahwu_thumb.jpg","duration":530,"publication_date":"2016-05-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-party-10-bowser-party","changefreq":"weekly","video":[{"title":"2016:E130 - Mario Party 10 – Bowser Party","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Michael, Gavin, Jeremy, and Lindsay party along as Geoff chases them around the Mushroom Kingdom as the terrible Bowser. Will they save the princess, or will Geoff punt them to a different castle?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-party-10-bowser-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a17daca-0c3f-46ef-bab1-e42ea9e09c37/sm/2013912-1462817203401-LP_Mario_Party_10_Bowsers_Party_V3.png","duration":1032,"publication_date":"2016-05-09T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2016-hunt-hitman-head-to-head","changefreq":"weekly","video":[{"title":"2016:E6 - HUNT – Hitman Head to Head","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Ryan and Gavin face off to compete in yet another Hitman Horse mission. Who will be victorious?","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2016-hunt-hitman-head-to-head","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16bb17a7-f527-485e-86dd-0e9b35e6238a/sm/2013912-1462575471217-Hunt_Hitman_Head_to_Head_1.jpg","duration":1124,"publication_date":"2016-05-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-rocket-league-with-the-rookie-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2016:E10 - Rocket League Rematch – Achievement Hunter VS The World","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nThe Gents return and bring Jeremy along to show the World how it is done! Watch our other VS The World matches here!","player_loc":"https://roosterteeth.com/embed/vs-2016-rocket-league-with-the-rookie-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f3290b6-e1ce-4cf7-b98e-65dbd4e8d08b/sm/2013912-1462569984421-AH_VS_The_World_-_Rocket_League.jpg","duration":1113,"publication_date":"2016-05-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-gta-v-snipers-vs-stunters-3","changefreq":"weekly","video":[{"title":"2016:E129 - GTA V – Snipers VS Stunters 3","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nThe Achievement Hunter crew take a look at other variants of the Snipers VS Stunters map including RPGs VS Jets and a crazy wallriders map in GTA 5!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-gta-v-snipers-vs-stunters-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a625729-4fde-4661-a95d-aeb8c4496add/sm/2013912-1462680980095-GTA_V_SvS3_Thumbnail.jpg","duration":2179,"publication_date":"2016-05-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-23","changefreq":"weekly","video":[{"title":"2016:E23 - Make Austin Great Again – #23","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || The AH Crew sits down to talk about erotic bananas, ARGs, Snapchat filters and more on this week's Off Topic! This episode originally aired May 6, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eb0b236-8c6b-4faa-8f9b-f4b177f06d93/sm/2013912-1462568545763-OFF23_-_THUMB.jpg","duration":6114,"publication_date":"2016-05-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-the-flame-in-the-flood","changefreq":"weekly","video":[{"title":"2016:E19 - The Flame in the Flood","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Adam and Joel mosey on down the river as they try to avoid dying of dysentery and being eaten by wolves. Join them on their adventures in Flame in the Flood.","player_loc":"https://roosterteeth.com/embed/how-to-2016-the-flame-in-the-flood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa785aa0-3c19-4fb3-9add-0161da34d4d6/sm/2013912-1462568726565-flamefloodthumb.jpg","duration":991,"publication_date":"2016-05-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-matt-the-arrow-kid-contest-winners","changefreq":"weekly","video":[{"title":"2016:E39 - Matt the Arrow Kid Contest Winners","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Thanks to everyone who entered the contest! Enjoy the top 5 entries, displayed in all of their Matt the Arrow Kid glory.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-matt-the-arrow-kid-contest-winners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad57a41e-8175-491e-9ef3-1352d633b726/sm/2013912-1462481620760-Matt_the_Arrow_Kid_Contest_Winners.jpg","duration":251,"publication_date":"2016-05-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-5","changefreq":"weekly","video":[{"title":"2016:E38 - VR the Champions – Valiant","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Achievement Hunter straps into some VR Valiant multiplayer to test their Medieval skills against other HTC Vive players online!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d65dd5b3-3ad2-4fcb-9faa-da7c7fb58aab/sm/2013912-1462472964168-VR_the_Champions_Valiant_Thumbnail.jpg","duration":1025,"publication_date":"2016-05-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-semifinals-norther-nor-north-havermeyer","changefreq":"weekly","video":[{"title":"2016:E37 - 2016 Achievement Hunter Hockey League Semifinals: Norther Nor North Havermeyer","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.comGet you Havermeyer hardware: http://bit.ly/1SlwBLk || This is it. It has all come down to this. It’s time to separate the men from the boys! Watch Jack and Michael face off for one last epic duel on the ice to determine who will go to the finals.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-semifinals-norther-nor-north-havermeyer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d08bdf20-ed90-4c14-9310-b5ef8c590105/sm/2013912-1462472786998-semi_thumb.jpg","duration":1254,"publication_date":"2016-05-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-blink-trap-294","changefreq":"weekly","video":[{"title":"2016:E18 - Blink Trap – #294","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Another Fails of the Weak. All you guardians out there get ready to witness the ultimate hunter fail. I mean, if you're going to blink all over the place, don't do what this guy does... Jack and Michael check out an awesome fail in Destiny as well as more fails in Just Cause 3, FIFA 15, Rainbow Six Siege, and The Division.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-blink-trap-294","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96139730-ef9d-4a03-9342-c934e22200ea/sm/2013912-1462379736811-Fail_294_Thumb.jpg","duration":151,"publication_date":"2016-05-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-206-mo-chievements-wither-away","changefreq":"weekly","video":[{"title":"2016:E128 - Minecraft – Episode 206 – Mo'Chievements: Wither Away","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nIt's been a rough couple weeks for the Achievement Hunter gang. They've had it so hard, having to bounce on a trampoline and then eat an apple. Talk about rough. In comparison, this week's task should be easy breezy - taking down the Wither...and also building a shiny new tramampoline trambopoline. Watch as heroes are born, or the gang withers away. Or maybe both!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-206-mo-chievements-wither-away","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/387c064c-b61e-478a-ad06-7713a25c1ae7/sm/2013912-1462383426807-Mochievement_3_Thumb_v003.png","duration":3508,"publication_date":"2016-05-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-push-me-pull-you","changefreq":"weekly","video":[{"title":"2016:E127 - Push Me Pull You","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Being attached at the hip to someone can be hard. Being attached to someone at the hip and playing a competitive sport however, that can be hilarious. Watch Michael and Jeremy take on Jack and Ryan in a crazy game of Push Me Pull You!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-push-me-pull-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43d11c91-e147-46b8-9401-f877357c6ac5/sm/2013912-1462388891117-Push_me_pull_you_thumb.jpg","duration":1199,"publication_date":"2016-05-04T19:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-bumper-hogs","changefreq":"weekly","video":[{"title":"2016:E17 - Halo 5 – Bumper Hogs","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Geoff, Ryan, Michael, Matt, Lindsay and Brandon bump uglies in space, in this custom forge map built by our very own Matt Bragg! How will our space men and women fair?","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-bumper-hogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac87f0f-9e5e-453b-81fc-6db0ae7d5d6f/sm/2013912-1462376129677-TTD_Halo_5_Bumper_hogs.png","duration":694,"publication_date":"2016-05-04T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-3-d-ultra-minigolf-adventures-another-new-round","changefreq":"weekly","video":[{"title":"2016:E126 - 3D Ultra Minigolf Adventures – Another New Round","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || The gang is back on the green with special guest Brandon. How will our new putter do? Watch to find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-3-d-ultra-minigolf-adventures-another-new-round","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/218abc47-c3f4-47b7-b299-17a1c5c70236/sm/2013912-1462314604837-ultra_mini_golf_thumb.jpg","duration":1906,"publication_date":"2016-05-03T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-nhl-semifinals-southeast-pimberton","changefreq":"weekly","video":[{"title":"2016:E36 - 2016 Achievement Hunter Hockey League Semifinals: Southeast Pimberton","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nPimp some Pimberton threads || We are in the Semifinals Ladies and Gentlemen, the ice is cold and the tempers are hot as the two titans of South Pimberton, Ryan and Jeremy go head to head to see who will go onto the finals!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-nhl-semifinals-southeast-pimberton","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e25c024-8878-4985-90cd-c94cc2e7090a/sm/2013912-1462302286009-nhl_thumb.jpg","duration":1442,"publication_date":"2016-05-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-dark-souls-iii","changefreq":"weekly","video":[{"title":"2016:E17 - Dark Souls III","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nDark Souls experts* Jack and Michael discuss Dark Souls III in this week’s Five Facts!\n\n*WARNING: Jack and Michael are not actually experts.","player_loc":"https://roosterteeth.com/embed/five-facts-2016-dark-souls-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39994f00-791a-40f6-aa26-0e7f43ba5b6a/sm/2013912-1462205710739-FFDS3TN.jpg","duration":209,"publication_date":"2016-05-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-315","changefreq":"weekly","video":[{"title":"2016:E21 - So Many Bubbles!! – AHWU for May 2nd, 2016 (#315)","description":"Thanks to Pro Flowers for sponsoring this AHWU. Go to proflowers.com and use the code \"JACKANDGEOFF\" for great deals this Mother's Day || Like Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\n\n\nTiny bubbles (AHWU bubbles)\n\nIn the office (from the Gavin)\n\nMake me happy (cept for Geoffy)\n\nMake me feel fine (bubbles of mine)\n\nTiny bubbles (AHWU bubbles)\n\nMake me warm all over\n\nWith a feeling that I'm gonna\n\nHunt Chievs till the end of time\n\nSo here's to the recording room\n\nAnd here's to Achievement City\n\nAnd mostly here's videos\n\nTo you from me\n\nSo here's to the Gavvy Free\n\nI give to you today\n\nAnd here's a kiss\n\nThat will not fade away\n\n*smooch*\n\n\n\nWatch the Vid of week and the Community vid","player_loc":"https://roosterteeth.com/embed/ahwu-2016-315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a72e42a-8adb-4d72-ad50-994bfe81a49a/sm/2013912-1462226082726-Ahwuuuu_thumb.jpg","duration":498,"publication_date":"2016-05-02T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-star-trek-part-8","changefreq":"weekly","video":[{"title":"2016:E124 - Star Trek – Part 8","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Captain Ryan and First Officer Michael are back to explore part 8 of the final frontier.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-star-trek-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11f19768-fe04-4b14-9050-dbfc95e1bb66/sm/2013912-1462217742789-StarTrek8_thimb.jpg","duration":2503,"publication_date":"2016-05-02T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2016-hunt-hitman-horse","changefreq":"weekly","video":[{"title":"2016:E5 - HUNT – Hitman Horse","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Michael and Ryan compete to see who can get a higher score in Gavvy's lovely mission. Who's blade will stick the swiftest?!?!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2016-hunt-hitman-horse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3e6f817-53d6-49ff-afb6-e06413beb72a/sm/2013912-1462203493411-Hunt_hitman.jpg","duration":549,"publication_date":"2016-05-02T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-lil-j-s-heist","changefreq":"weekly","video":[{"title":"2016:E123 - GTA V - Lil J's Heist","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || And now for the Heist you've all been waiting for... LILLLL J! This week Jeremy plans the heist of all heists and tries to get to the bottom of what went wrong in all other attempted heists before him.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-lil-j-s-heist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d7eeaad-ab12-4ccb-90df-d74b8c2a8e32/sm/2013912-1462118530149-Lil_J_Heist_Thumbnail.jpg","duration":1964,"publication_date":"2016-05-01T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-guardians-oink-mudding","changefreq":"weekly","video":[{"title":"2016:E16 - Halo 5: Guardians – Oink Mudding","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Halo 5: Guardians isn't just your typical first-person shooter. Sure, you can be a stupid dumb idiot boring person if that's what you want. But why the hell would you spend your life shooting aliens when you could be jumping over pigs? Join the AH gang as they play a little game called Oink Mudding, where you either live to see some pigs gettin' it on, or you die in spooky scary Pig Hell at the hands of a terrifying hog demon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-guardians-oink-mudding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d76cf43-2043-4114-9cca-fb00fff5953d/sm/2013912-1461966358680-TTD_OINK_MUDDING.jpg","duration":729,"publication_date":"2016-05-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-22","changefreq":"weekly","video":[{"title":"2016:E22 - Mistake on the Lake – #22","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || The AH Crew sits down to talk about vacations, Joey Fatone, masturbation, and more on this week's Off Topic!\n\n\n\n\n\n\n\nThis episode originally aired April 29, 2016 and is sponsored by 1-800-FLOWERS (http://bit.ly/1T7zxIY), Crunchyroll (http://bit.ly/1pKCibA) and MVMT Watches (http://bit.ly/1ST4kiG) Mother’s Day is almost here! Make mom smile this year by purchasing two-dozen multi-colored roses for only $29.99. Quantities are limited, so order now at 1800Flowers.com/offtopic.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a27813d6-3f92-4942-9838-a9b13d30b645/sm/2013912-1461960305523-OFF22_-_THUMB.jpg","duration":7382,"publication_date":"2016-04-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-wikipedia-challenge-feat-basically-i-do-wrk","changefreq":"weekly","video":[{"title":"2016:E122 - Wikipedia Challenge – Feat. BasicallyIDoWrk","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nJeremy from Achievement Hunter and Marcel (BasciallyIDoWrk) compete in the battleground of Wikipedia. Who will be the first to get from one obscure thing to another using only the links on the page? If this battle isn't enough, there's another completely different fight available to watch on Marcel's channel.\n\nCheck Out Marcel's Channel!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-wikipedia-challenge-feat-basically-i-do-wrk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b287a93a-a745-4ff5-9645-c98045f4d355/sm/2013912-1461967307335-WikipediaThumbnail.jpg","duration":780,"publication_date":"2016-04-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-hitman","changefreq":"weekly","video":[{"title":"2016:E18 - Hitman","description":"Adam and Joel learn the art of assassination. And being the garçon. He is the garçon.","player_loc":"https://roosterteeth.com/embed/how-to-2016-hitman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80d82147-3380-4040-bd92-cb99d6478add/sm/2013912-1461950123809-HitmanThumbYoutube.jpg","duration":1137,"publication_date":"2016-04-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/theater-mode-2016-thankskilling","changefreq":"weekly","video":[{"title":"2016:E1 - Episode #1: Thankskilling","description":"Everyone knows turkey can make you sleepy, but this one will make you straight up sick. AH is here to get food poisoning right along with you. Join us in watching Thankskilling, a cinematic masterpiece about a murderous turkey. Enjoy!","player_loc":"https://roosterteeth.com/embed/theater-mode-2016-thankskilling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec34cf9f-3c39-4366-90bb-480ea87acd8f/sm/2013912-1461955645390-tm_thumb.jpg","duration":3859,"publication_date":"2016-04-29T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-4","changefreq":"weekly","video":[{"title":"2016:E35 - VR the Champions - Hover Junkers Multiplayer","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nMichael and Ryan strap on their HTC Vives and enter the VR world of Hover Junkers multiplayer mode! This gameplay gets intense, I mean, Ryan takes a gun up the bum.","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d548822-52d7-4367-8028-f41382b3cea5/sm/2013912-1461882212167-VR_the_Champions_Hover_Junkers_Thumbnail.jpg","duration":1027,"publication_date":"2016-04-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-6","changefreq":"weekly","video":[{"title":"2016:E34 - 2016 Achievement Hunter Hockey League: Norther Nor North Havermeyer Division Week 6","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nGet you Havermeyer hardware! This is it! These are the final games in the regular season and the competition is getting heated on the ice! Who will come out on top?!?! Find out now!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee8f3de8-0a06-4f39-8b6b-103e45597963/sm/2013912-1461878610727-NNNHL_week6.jpg","duration":2483,"publication_date":"2016-04-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-um-occupied-293","changefreq":"weekly","video":[{"title":"2016:E17 - Um Occupied... - #293","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nAnother Fails of the Weak. Get ready to experience a pretty \"crappy\" fail. I mean seriously, this one puts you in a real \"shitty\" situation. Jack, Gus, Jeremy, and Craig from ScrewAttack take a peek at a \"turdtastic\" fail in Just Cause 3, as well as more fails in Call of Duty: Black Ops 3, Halo 5: Guardians, Fallout 4, and Grand Theft Auto 5.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-um-occupied-293","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ea7af4b-eb30-489f-8c42-f92b4441569d/sm/2013912-1461777349927-Fail_293_Thumb.jpg","duration":168,"publication_date":"2016-04-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-205","changefreq":"weekly","video":[{"title":"2016:E121 - Minecraft – Episode 205 – Mo'Chievements: A Few Bad Apples","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Fun fact: The original title of this video was \"Let's Play Minecraft - Episode 205 - Mo'Chievements 2: Golden Apples (Except Hold Your Tongue and Say it Out Loud and it Makes You Say Assholes, Which is Pretty Funny Because it's Like You're Calling Yourself an Asshole but Really You Just Got Fooled, or Alternatively You're Talking About Golden Assholes, Which is What I Imagine Could be a Thing Rich People Pay Extra for During Their Monthly Anal Bleaching).\" Unfortunately, that was way way way too long for a video title, so it got shortened down just a smidge to the current video title currently on the video currently. \n\n\n\nWelcome back to Mo'Chievements! The gang (minus Michael, but Gavin's here this time) are still on their quest to nab all the new Achievements in the Xbox One version of Minecraft. Today, it's all about gold and skulls. Just gold and skulls. And maybe a little bit of Gavin Free tramampoline trambopoline action.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a16c4a5d-0262-4742-8d18-86e8f9628885/sm/1104396-1461819310653-Minecraft_205_Thumb.jpg","duration":2661,"publication_date":"2016-04-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-party-hard-5-achievement-guides","changefreq":"weekly","video":[{"title":"2016:E16 - Party Hard – 5 Achievement Guides","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nJeremy and Ryan show you how to 5 achievements in Party Hard. Those being Rider on the storm, Retribution, Murderer, Slayer, and Hellhound. Have fun!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-party-hard-5-achievement-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fb8ce79-06a5-4764-b06f-db19e11bd74b/sm/2013912-1461784489769-5AchievementsThumb.jpg","duration":185,"publication_date":"2016-04-27T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-party-hard-chase-breakers-ninja-guides","changefreq":"weekly","video":[{"title":"2016:E15 - Party Hard – Chase Breakers & Ninja Guides","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nJeremy and Ryan show you how to obtain two of the most difficult achievements in Xbox One's edition of Party Hard. Those being Chase Breakers (escape the police 5 times in one level), and Ninja (finish a level without a body being found). Good luck.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-party-hard-chase-breakers-ninja-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1343d27d-3cd3-4f45-a711-039759b8fbff/sm/2013912-1461784241997-2AchievementsThumb.jpg","duration":518,"publication_date":"2016-04-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-dark-souls-3-camouflage","changefreq":"weekly","video":[{"title":"2016:E15 - Dark Souls 3 - Camouflage","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nDark Souls 3 is a game about strategy and survival. Whoever has the best strategy stays alive the longest. Matt and Michael are going to show you the funniest and best way to do just that.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-dark-souls-3-camouflage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4293e42-d1ca-40c2-abbb-bea84b01f610/sm/2013912-1461769531942-darksoulsttd_thumb.jpg","duration":280,"publication_date":"2016-04-27T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battleborn-beta","changefreq":"weekly","video":[{"title":"2016:E120 - Battleborn Beta","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || There's one star remaining in all of the Battleborn universe and Achievement Hunter is going to fight to take control over it! Will they be up to the challenge or will history repeat itself? I'm willing to bet it's one of those.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battleborn-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5777ee12-8c24-4e03-a3dc-792ac7afb2b9/sm/2013912-1461789737227-battleborn_thumb.jpg","duration":1956,"publication_date":"2016-04-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-6","changefreq":"weekly","video":[{"title":"2016:E33 - 2016 Achievement Hunter Hockey League: Southeast Pimberton Division - Week 6","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\n\n\nPimp some Pimberton threads || We are entering the final week of the regular season and the stakes couldn't be higher! Who will rise to the top and who will sink below the ice?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e347f22-a1a4-4f4d-90df-11d714c5c99b/sm/2013912-1461702704830-nhl_week6_sp_thumb.jpg","duration":2595,"publication_date":"2016-04-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-13","changefreq":"weekly","video":[{"title":"2016:E119 - Let's Watch – Just Cause 3","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nRyan, Jeremy, Michael, and Jack explore, explode, and exploit the fictional Mediterranean island of Medici in Just Cause 3. Will they get out of this without terminal brain damage? Watch and find out!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b21322f9-530b-42d4-a720-a91f7c4ac978/sm/2013912-1461700763899-lw_justcause_thumb.jpg","duration":1733,"publication_date":"2016-04-26T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-halo-5-firefight-beta","changefreq":"weekly","video":[{"title":"2016:E118 - Halo 5: Firefight Beta","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || Michael, Geoff, Jeremy, Ryan, Matt, and Lindsay put on their Guy Montag armor and get ready for a fire fight. Of course, in the future, it isn't fire fighting in the way you or I think of it. These six fire fighters brought out their advanced weapons with their combustible flammations, bullets used for snuffing the life out of alien forces, much like a candle. But screw it. It's Halo 5: Firefight. Shootin' things until they can't shoot back is fun! Screw what Ray Bradbury had to say. It's time for video games!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-halo-5-firefight-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e6adee1-8b8d-4a33-b255-58281ab0a7bf/sm/2013912-1461617938600-Halo_5_Firefight_Thumb.png","duration":1154,"publication_date":"2016-04-26T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-314","changefreq":"weekly","video":[{"title":"2016:E20 - The Gang's All Here – AHWU for April 25th, 2016 (#314)","description":"Thanks to Pro Flowers for sponsoring this AHWU. Go to proflowers.com and use the code \"JACKANDGEOFF\" for great deals this Mother's Day || Like Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\n\n\nGeoff, Jack, and Jeremy all got sick from the Pax. Michael's flying back from far off lands. Who knows where Gavin's at. Ryan hates AHWU. That means today, AHWU host extraordinaires Matt and Trevor are here to provide all of this week's games and news. Well, that's if they can read some Shifty scribbles, which is unlikely.\n\n\n\nVid of week: https://www.youtube.com/watch?v=s_iXOHVcSU8 || Community vid: What!? Two community videos? That absultuely nutso crazy! https://www.youtube.com/watch?v=aqElY-tHF8I and https://www.youtube.com/watch?v=pkRpkebrTsA Want to submit your own? Learn more at http://roosterteeth.com/group/lets-play-community","player_loc":"https://roosterteeth.com/embed/ahwu-2016-314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c8af9ff-05dd-4d11-acc5-1b6d6befa6f8/sm/2013912-1461621105084-ahwu_thumb.jpg","duration":647,"publication_date":"2016-04-25T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-by-the-book-gta-v-great-levels-in-gaming","changefreq":"weekly","video":[{"title":"2016:E32 - By the Book – GTA V – Great Levels in Gaming","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nWhen can a game making us feel bad actually be a good thing? That's the question Max set out to answer in this look at By the Book, one of the most uncomfortable & challenging missions in Grand Theft Auto V. I feel like a lame dad for saying this but, given the level's graphic depictions of torture, viewer discretion is definitely advised.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-by-the-book-gta-v-great-levels-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7c680b5-b17b-4f71-ac8f-2e7ff8f40ce4/sm/2013912-1461343106075-By_the_Book_thumbnail.png","duration":667,"publication_date":"2016-04-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-jeopardy-part-3","changefreq":"weekly","video":[{"title":"2016:E117 - Jeopardy - Part 3","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nAlex Trebek Has never dealt with contestants like Achievement Hunter. Except for the other two times he did, but it's been a while so he forgot about those by now. Anyway, find out who gets the Daily Double in this round of Jeopardy!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-jeopardy-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb1ac9a5-0617-403c-a5e0-2507de482ee5/sm/2013912-1461481710015-jeopardy_thumb.jpg","duration":2382,"publication_date":"2016-04-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-12","changefreq":"weekly","video":[{"title":"2016:E116 - Let's Watch – Firewatch","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nRyan, Michael and Jack take to the enchanting Wyoming wilderness. Smokey the bear is gonna have his hands full with this lot...","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57a61ca6-78d0-4f03-b33a-7744f5268f12/sm/2013912-1461256207215-LW_Firewatch_thumb.jpg","duration":2087,"publication_date":"2016-04-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-every-bullet-counts-3","changefreq":"weekly","video":[{"title":"2016:E115 - GTA V - Every Bullet Counts","description":"Click here for Kinda Funny Live 2 tickets. || Kinda Funny jumps into the classic Let's Play GTA 5 gamemode Every Bullet Counts!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-every-bullet-counts-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b6697f3-f566-41ba-a60c-0c19d08b5841/sm/2013912-1461436784843-GTA_V_KF_Every_Bullet_Thumbnail.jpg","duration":1659,"publication_date":"2016-04-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-21","changefreq":"weekly","video":[{"title":"2016:E21 - The Mattress and The Pea – #21","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nThe AH Crew sits down to talk about their thespian pasts, Prince, Arrested Development and more on this week's Off Topic! This episode originally aired April 22, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df5425f-c543-4747-a442-3ebc334faa1f/sm/2013912-1461346855161-OFF21_-_THUMB.png","duration":7249,"publication_date":"2016-04-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-hyper-light-drifter","changefreq":"weekly","video":[{"title":"2016:E17 - Hyper Light Drifter","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nRough and Tumble must work together to unravel a mystery. Can Rough set aside his morals and do what must be done for justice? Will Tumble finally find justice?! Find out this week on How To!","player_loc":"https://roosterteeth.com/embed/how-to-2016-hyper-light-drifter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b4f17ec-87fa-4a35-91ba-a5aa4beea46b/sm/2013912-1461341900628-HowTo_HyperLightDrifter.jpg","duration":2383,"publication_date":"2016-04-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-3","changefreq":"weekly","video":[{"title":"2016:E31 - VR the Champions – Felt Tip Circus","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nThe champions are back with some more VR (HTC Vive) gameplay in Felt Tip Circus! In this one: Gavin drops a ball, Jeremy has a cup, and Ryan holds a chair!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/106d05a2-8079-4741-a077-bff88fbc0d80/sm/1104396-1461282090263-vrfelt_thumb.jpg","duration":1044,"publication_date":"2016-04-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-5","changefreq":"weekly","video":[{"title":"2016:E30 - 2016 Achievement Hunter Hockey League: Norther Nor North Havermeyer Division Week 5","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\n\n\nGet you Havermeyer hardware! We are on the cusp of the regular season as Michael and Jack, and Matt and Geoff face off on the frozen arena of Honor! Who will come out on top?!?!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73076c4e-6c82-4f27-8042-2ca8f8eb9589/sm/2013912-1461264186212-nnnhnhl_thumb_week5.jpg","duration":2527,"publication_date":"2016-04-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-goriest-game-ever","changefreq":"weekly","video":[{"title":"2015:E12 - GORIEST GAME EVER ","description":"Another Monday is here, and Demo Disk remains.\r\n\r\nThe sun rises, the sun sets, and Demo Disk remains. \r\n\r\nThe tides run in and out; we sow and reap our crops. Seasons come and seasons go. Babies are born and grow up, and fall in love and make a family, and die. And Demo Disk remains.\r\n\r\nEmpires rise and crumble. Art, writing, poetry, and song come in and out of fashion. Gods are worshiped, for a time, until they are forgotten. All of human history is but the blink of an eye. And Demo Disk remains.\r\n\r\nStars wheel in the heavens. The moons traverse their planets, the planets circle their suns, the suns silently spin around their galactic cores. The vast majesty of the universe unfurls in ten billion galaxies, dancing the cosmic ballet unmarked by all...but Demo Disk remains.\r\n\r\nDemo Disk remains.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-goriest-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6264452c-e754-4380-93c3-6b5b649f5ac9/sm/ep10870.jpg","duration":1070,"publication_date":"2015-05-12T14:26:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-cheap-games-suck","changefreq":"weekly","video":[{"title":"2015:E46 - CHEAP GAMES SUCK","description":"Many years ago -- all the legends begin \"many years ago\" -- but Many years ago a young boy was born on a mountain. That boy's family lived in a small village in a stone hut on the edge of a cliff, and they scrabbled out a hard living farming gravel and small scrub.\r\n\r\nOne day the boy grew tired of his bleak life. \"Mother and Father, I want to see the world\" the boy said. The Mother and Father looked at each other with concern. \"I want to climb down the mountain and experience things, like large villages, and pets that aren't mountain lizards, and soda water!\" \r\n\r\nThe Mother and Father went to the Village Elders. The town conferred all night. It had been many generations since anyone from the mountain had left the mountain, but they Elders agreed: it was time to see what was in the world. \r\n\r\nThey charged the boy with touring the world for a Full Turn, and to bring the village back news of the Outside World. The village accumulated all their wealth and pressed it upon the boy, telling him \"This is all we have and all we are. Use it, boy, and bring back something of the world.\"\r\n\r\nThe boy descended the mountain.\r\n\r\nThis story will continue if One Dollar One Hour continues...","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-cheap-games-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd3527d3-68b7-423c-b7fc-264ed0c195d3/sm/ep10851.jpg","duration":1214,"publication_date":"2015-05-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-your-art-canceled","changefreq":"weekly","video":[{"title":"2015:E5 - YOUR ART CANCELED?","description":"We really don't want to cancel this show. We LOVE this show. We love your art! But it's like our lowest-watched show.\r\n\r\nWhy\r\n\r\nYou guys are making some incredible stuff, and we really like showing it off. So that's the problem Is it -- oh, wait. I know what it is.\r\n\r\nIt's Matt Peake, isn't it You guys don't much care for when he only chooses art of himself. Look, we get it! We feel the same way! He's a vain, egocentric, self-centered asshole. But he's OUR asshole. And we can't let him win.\r\n\r\nSo for all our sake, say the following mantra with me: \"FUCK PEAKE, WATCH ART HAUS!\"\r\n\r\nAll together now:\r\n\r\n\"FUCK PEAKE, WATCH ART HAUS!\"","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-your-art-canceled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7a9a580-eb57-410d-969f-6c4dd3590dea/sm/ep10846.jpg","duration":506,"publication_date":"2015-05-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-gender-bender-disaster","changefreq":"weekly","video":[{"title":"2015:E45 - GENDER BENDER DISASTER","description":"Welcome to Funhaus Airport, and good afternoon flyboys! This is the final boarding call for passengers on FHAir Flight 80085 to Mount St. Beav. Please proceed to Gate H8 immediately.\r\n\r\nThe final pre-flight chex mix are being loaded into the plane, and our stores of Cran-Apple have never been higher. The captain will be closing the door in 5 minutes, so you better get your ass to the gate, son.\r\n\r\nWe do have some bad weather approaching, so runways 9, 14, and XD will be closed until further notice. The Pilot's Pool will remain open - fuck those assholes, I hope they get hit by lightning - and the airport bar ChiChi's HaHaBoom Room would like me to announce that it's LADIES NIGHT featuring 50 cent longnecks and a playlist that's all Macarena, all the time!!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-gender-bender-disaster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f640e2-120b-49a6-b36d-8d25b806f206/sm/ep10847.jpg","duration":764,"publication_date":"2015-05-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-anime","changefreq":"weekly","video":[{"title":"2015:E4 - WE ARE ANIME","description":"SUBMIT FANART TO SUBREDDIT PLS!!\r\nreddit.com/r/funhaus\r\n\r\nArtist: Various\r\nMedium: Digital\r\nTitle: F'art\r\n\r\nWhat we're looking at here is a typical example of early 21st Century Funhaus Fan Art, or \"F'Art,\" as we say in art circles. Note the generous proportions given to James' biceps, the overemphasis on Joel's facial hair, and the reliance on different artistic tropes throughout all of these pieces: anime, cartoon, neo-realism, etc.\r\n\r\nWhen we try to classify these types of pieces we have to look at the medium (generally digital), the artist(s) (generally various, from around the world), and the context (generally masturbatory). \r\n\r\nIn this collection of pieces please observe a few things that stand out. Matt Peake as the subject of F'art is atypical, though at this point in the existence of Funhaus, more prevalent than before. Additionally, there's a tendency to depict Sean \"Spoole\" Poole as cute, chibi, or kawaii. \r\n\r\nCritiquing and/or placing a value on a collection like this is difficult, due to the sheer number of different art types and artists. An independent appraisal of this collected work places a do","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-anime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14597334-f91f-4b65-95e7-4b635b6693dd/sm/ep10845.jpg","duration":477,"publication_date":"2015-05-07T18:58:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-are-gorillaz","changefreq":"weekly","video":[{"title":"2015:E3 - WE ARE GORILLAZ","description":"The fanart is coming on\r\nIt's coming on\r\nIt's coming on\r\nIt's coming on","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-are-gorillaz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08280d68-db7e-48f4-a80e-7ac31d4c95ee/sm/ep10844.jpg","duration":396,"publication_date":"2015-05-07T18:57:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-liquid-ass-and-sexy-dogs","changefreq":"weekly","video":[{"title":"2015:E2 - LIQUID ASS and SEXY DOGS","description":"SUBMIT YOUR FAN ART TO OUR SUBREDDIT!!!!\r\nreddit.com/r/funhaus\r\n\r\nSo we're calling the show Art Haus for now, until you guys inevitably come up with a show title you like better, and then berate us until we change it. Be sure to be super rude when you're telling us what to call the show!","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-liquid-ass-and-sexy-dogs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1f377fb-32a1-4880-86da-6e5bef6d599f/sm/ep10843.jpg","duration":493,"publication_date":"2015-05-07T18:55:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-fan-show-season-1-we-love-cartoons","changefreq":"weekly","video":[{"title":"2015:E1 - WE LOVE CARTOONS","description":"The Fan Art section in Dude Soup kept getting longer and longer - and we keep getting more people who only download the audio podcast. So we thought we'd try a brand new show where we highlight our favorite Fan Art, or F'Art, of the week.\r\n\r\nIf you like this, we'll probably do more or whatever.","player_loc":"https://roosterteeth.com/embed/funhaus-fan-show-season-1-we-love-cartoons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9460296f-c33d-4371-b57b-8fd622c2f0d7/sm/ep10842.jpg","duration":513,"publication_date":"2015-05-07T18:52:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-tom-clancys-ghost-sex","changefreq":"weekly","video":[{"title":"2015:E42 - TOM CLANCY'S GHOST SEX","description":"You think you've seen this show before YOU AIN'T SEEN SHIT, PAL. This is a brand new concept you hain't never heard of, buddy! All new! Sparkly spanky freshboy babybutt new, kiddo, and you get to see it here first. We're callin' it...\r\n\r\nWHEELHAUS\r\n\r\nWe're gonna do this bad boy once a week, every week, just for you. We're gonna play whatever the hell the Wheelhaus Spinnerator chooses for us. We're going to find shit you never heard of! You want crappy games \r\n\r\nWELL HERE THEY COME, BROTHERLOVER!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-tom-clancys-ghost-sex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e5ef12e-5001-4d17-95bf-d37e5a700e12/sm/ep10831.jpg","duration":1007,"publication_date":"2015-05-05T20:08:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-lost-in-space","changefreq":"weekly","video":[{"title":"2015:E41 - LOST IN SPACE","description":"This is Ground Control to Major Bruce\r\nWe heard you dropped a deuce\r\nAnd the humans all can smell it down on earth\r\nAnd we think you had some odd defect at birth\r\n\r\nThis is Major Bruce to Ground Control\r\nYou're being an asshole\r\nAnd my farts are helping power up my suit\r\nI travel every single time to toot","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-lost-in-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e7b5a49-0155-45ae-9333-277fa4ee8b72/sm/ep10830.jpg","duration":626,"publication_date":"2015-05-05T20:06:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-king-f*ck-up","changefreq":"weekly","video":[{"title":"2015:E40 - KING F*CK UP","description":"Coronation Ceremony: \r\n\r\nThe Archbishop of The Greater Island: \"Will you solemnly promise and swear to govern the Peoples of the Kingdom of The Greater Island and Lesser Islands, Canada, The Forestrealm, the Union of Rocks and Dirt,and Ceylon, and of your Possessions and other Territories to any of them belonging or pertaining, according to their respective laws and customs\"\r\n\r\nKate Winslet: \"I solemnly promise so to do.\"\r\n\r\nThe Archbishop of The Greater Island: \"Will you to your power cause beach sleepers to be executed, in Mercy, in all your judgments\"\r\n\r\nKate Winslet: \"I will.\"\r\n\r\nThe Archbishop of The Greater Island: \"Will you to the utmost of your power maintain the Laws of Bruce and the true profession of Chopper Will you to the utmost of your power maintain in the Greater Island the Platforming Stair Mario Challange, established by law Will you maintain and preserve inviolable the settlement of the House of Logs and Vines, and the doctrine, worship, discipline, and government thereof, as by law established in The Greater Island And will you preserve unto the other Players on this Server and the Beaches and Huts there committed to their charge, all such rights and privileges, as by law do or shall appertain to them or any of them\"\r\n\r\nKate Winslet: \"All this I promise to do. The things which I have here before promised, I will perform, and keep. So help me God.\"","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-king-f*ck-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a29d1a3-a087-40fe-9977-9cb24ebcf34c/sm/ep10829.jpg","duration":836,"publication_date":"2015-05-05T20:03:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-batmen-vs-batwomen","changefreq":"weekly","video":[{"title":"2015:E39 - BATMEN VS BATWOMEN","description":"The outlook wasn't brilliant for the Funhaus five that day:\r\nThe fan-made crew was beating them at online GTA,\r\nAnd then when Adam died at login, and Bruce Greene did the same,\r\nA pall-like silence fell upon the streamers of the game.\r\n\r\nA straggling few logged out and quit to main menu. The rest\r\nClung to the hope which springs eternal in the human breast;\r\nWe thought, \"If only Lawrence could but get a whack at that'\r\nWe'd put up even money now, with Lawrence at the bat.'\r\n\r\nBut Bruce preceded Lawrence, and moreover also Blaine\r\nAnd the former was a farter, while the latter was a pain;\r\nSo upon that stricken multitude grim melancholy sat,\r\nFor there seemed but little chance of Lawrence getting to the bat.\r\n\r\nBut Bruce wasted a player, to the wonderment of James,\r\nAnd Blaine, the much despisd, caught a rival in his aims;\r\nAnd when the dust had lifted, and men saw what had aligned,\r\nThere was Bruce Greene in the ranking, with Blaine right there behind.\r\n\r\nThen from five thousand butts and more there rose a lusty fart;\r\nIt rumbled through the our office; it stirred Joel's Jewish heart;\r\nIt sounded down in Austin and it ended with a splat,\r\nFor Lawrence, mighty Lawrence, was advancing to the bat.\r\n\r\nThere was ease in Larry's manner as he grabbed the game device;\r\nThere was pride in Larry's bearing as he checked his settings twice.\r\nAnd when, responding to the cheers, he tipped his sweet fedora,\r\nNo stranger in the crowd could doubt the greatness of his aura.\r\n\r\nThe streamers watched intently as his wiped his sweaty mitts;\r\nHe checked his shirt for smelly stains a-leaking from his pits;\r\nThen while the other players held controllers in their grip,\r\nLawrence flashed defiance and a sneer curled Larry's lip.\r\n\r\nAnd now other players came careening towards his toon\r\nAnd Lawrence stood there watching them in suit of deep maroon\r\nThey brawled and fought and swatted till a few of them were dead '\r\n\"That ain't my style,\" said Lawrence. \"You missed your chance\" Spoole said.\r\n\r\nFrom office chairs around the room arose a furiou","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-batmen-vs-batwomen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d7b280b-6df5-4c53-8b7f-f875353062c3/sm/ep10828.jpg","duration":445,"publication_date":"2015-05-05T20:00:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dicks-in-the-sand","changefreq":"weekly","video":[{"title":"2015:E38 - DICKS IN THE SAND","description":"\"Syercella - we have almost reached the trading oasis. The last few months in the caravan have been difficult, but soon we shall meet the merchants and feast!\"\r\n\r\n\"Yes. It shall be most excellent to relax in the village. I find the sand of the desert to be...terrible.\"\r\n\r\n\"I don't like sand. It's coarse and rough and irritating and it gets everywhere.\"\r\n\r\n\"It is good, then, that when we arrive at the oasis we shan't see nearly as much sand.\"\r\n\r\n\"Agreed, friend.\"\r\n\r\n**THE NEXT DAY**\r\n\r\n\"GODDAMIT STING IS HERE. GET OUT OF TOWN STING TOO MUCH SAND!\"\r\n\r\n\"OH NO NOW STING IS FUCKING A SANDDICK. STING YOU ARE THE WORST.\"","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dicks-in-the-sand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19f09022-9419-4536-a545-289d9bba76a4/sm/ep10827.jpg","duration":502,"publication_date":"2015-05-05T19:58:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-roller-coaster-of-death","changefreq":"weekly","video":[{"title":"2015:E37 - ROLLER COASTER OF DEATH ","description":"This is the story of Johnny Blaze, who was only a teenaged stunt biker when he sold his soul to the devil known as Mephistopheles. Year later, Johhny is a world-renowned daredevil by day, but at night, he becomes the devil's legendary bounty hunter called the GHOST RIDER. \r\n\r\nHe is charged with finding evil souls on earth and bringing them back to hell. But when a twist of fate brings Johnny's long-lost love Roxanne back into his life, Johnny realizes he just might have a second chance at happiness if he can beat the devil Blackheart and win back his soul. \r\n\r\nTo do so he'll have to defeat his nemesis and wayward son, Blackheart, whose plot to take over his father's realm will bring hell on earth unless GHOST RIDER can stop him before it's too late.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-roller-coaster-of-death","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7082d761-d9d9-4d22-afd7-8de7aa210e4b/sm/ep10826.jpg","duration":730,"publication_date":"2015-05-05T19:57:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-funhaus-vs-creatures","changefreq":"weekly","video":[{"title":"2015:E36 - FUNHAUS VS CREATURES ","description":"Video Gaming's match of the decade, or the year, or the week, or whatever, is finally here. Two contenders enter the ring; only one can win.\r\n\r\nIn one corner, the Titan of Shit Gaming that is Funhaus. In the other, a Trio of Handsome Gentlefops. The match CS GO, some kind of shooting game that seems to be popular with the kids. The prize E-peen. The venue: CYBERSPACE!\r\n\r\nWhich team will emerge victorious Who will go down in history as The Greatest Gamers Ever to Stride the Earth, and who will suffer the ignominy of trash, defeat, and poopdeath\r\n\r\nWATCH ALL 27 MINUTES FOR A CHILLING, THRILLING, GRILLING, FILLING, AND DID I SAY CHILLING GAME OF COMPUTER SHOOTMAN GO!!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-funhaus-vs-creatures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcf0e683-7575-460e-af60-b24523bec578/sm/ep10825.jpg","duration":1636,"publication_date":"2015-05-05T19:55:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-we-got-wood","changefreq":"weekly","video":[{"title":"2015:E35 - WE GOT WOOD","description":"Oh come on down to a magical wood\r\nWhere faeries dance on air\r\nA fern filled gully that that's totally good\r\nAnd the movie's called Con Hair\r\n\r\nOh CON HAIR, CON HAIR\r\nCON HAIR everywhere!\r\nWe got real hot guys like John Cusack\r\nCON HAIR everywhere!\r\n\r\nDid I mention we also got Tim Curry\r\nAnd Robin Willims, RIP\r\nRhames and Trejo and Malkovich\r\nAnd a man named Buscemi\r\n\r\nOh CON HAIR, CON HAIR\r\nCON HAIR everywhere\r\nCourtney Cox was crazy hot\r\nCON HAIR EVERYWHERE!\r\n\r\nFlying to your grotto Summer 2015","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-we-got-wood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dc3112b-160a-4b06-8785-c608a9a9559e/sm/ep10824.jpg","duration":558,"publication_date":"2015-05-05T19:54:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-hot-naked-zombies","changefreq":"weekly","video":[{"title":"2015:E34 - HOT NAKED ZOMBIES ","description":"More terrifying than your darkest nightmares. More action-packed than four 80s movies going down on each other. More gory than helping your grandmother pee. It's...\r\n\r\nKILLING FLOOR 2 WITH FUNHAUS\r\n\r\nWitness a team of 5 experts hold their own against a zombie horde. Experience the chill of staring death in the face. And dress up in a super kewl tactical Spoole outfit.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-hot-naked-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2da2e77d-139b-4616-ad82-28bbbb436d1d/sm/ep10823.jpg","duration":939,"publication_date":"2015-05-05T19:52:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-meet-n-f*ck","changefreq":"weekly","video":[{"title":"2015:E33 - MEET N F*CK ","description":"Adam and Bruce and James combined can't even figure out how to date a virtual woman. How are 2/3 of them married","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-meet-n-f*ck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edf809e3-694f-40cd-bcee-6babc26148b9/sm/ep10822.jpg","duration":596,"publication_date":"2015-05-05T19:50:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-i-wanna-be-president","changefreq":"weekly","video":[{"title":"2015:E32 - I WANNA BE PRESIDENT","description":"My fellow Americans,\r\n\r\nFour score and 20 mb ago we downloaded a game that's like 3 years old or something. Despite hardships, despite toil, despite the ridicule of the rest of the employees in the Fullscreen office, we pledge to you that we'll always stand by Barak Gynna Wynn's twin promises of legalized prostitution AND making sure creationism is taught to all American children.\r\n\r\nWith malice toward none, with charity for all, with firmness in the right to dead babies, let us remember that the only thing we have to fear is a cyborg winning the highest office in the land.\r\n\r\nMay god bless you, and may god bless these United States.\r\n\r\nAnd the troops.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-i-wanna-be-president","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb8ee7c-a294-475c-bd9a-34eee8788c0d/sm/ep10821.jpg","duration":942,"publication_date":"2015-05-05T19:48:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-quest-for-gay-sex","changefreq":"weekly","video":[{"title":"2015:E31 - QUEST FOR GAY SEX ","description":"Bruce walked up to my desk.\r\n\r\n\"Luscious is ready to upload,\" he said. \"But you're gonna have to age gate it.\"\r\n\r\n\"Why\"\r\n\r\n\"Gay sex.\" Bruce walked away.\r\n\r\nI watched this video, increasingly convinced that Bruce was lying about the sex. 5 minutes in: no sex. 8 minutes in: no sex. \"Where's the sex\" I asked myself again and again.\r\n\r\nJust stick with it kids. You'll find that the sex was inside of you all along.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-quest-for-gay-sex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87dfe893-ca62-4e47-a376-c5987aece80d/sm/ep10820.jpg","duration":887,"publication_date":"2015-05-05T19:46:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-hardest-game-ever","changefreq":"weekly","video":[{"title":"2015:E30 - HARDEST GAME EVER ","description":"Gus was nice enough to come all the way out from Rooster Teeth HQ in Austin to hang out with us and maybe play some GTA heists. \r\n\r\nInstead, we made him play Chrome.\r\n\r\nThe End.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-hardest-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d4b54fd-983a-4cc7-9c4e-669949b99b92/sm/ep10819.jpg","duration":842,"publication_date":"2015-05-05T19:44:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-spy-hard","changefreq":"weekly","video":[{"title":"2015:E29 - SPY HARD","description":"4 men, hired to steal technology they don't understand, with weapons they can't operate, under stealth they cannot maintain. \r\n\r\nComing this Summer to a theater near you: FaunHaistus!!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-spy-hard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67921a09-a888-4188-8a17-cbd13cf2a97e/sm/ep10818.jpg","duration":667,"publication_date":"2015-05-05T19:42:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-senpai-loves-panties","changefreq":"weekly","video":[{"title":"2015:E28 - SENPAI LOVES PANTIES ","description":"Yandere weekly diary: \r\n\r\nMonday - Senpai is standing under a tree. I watch Senpai stand for 5 hours and dream about us holding hands.\r\nTuesday - I brought Senpai boba tea! He was so thankful he spit in my hair. LOOOOVE!!\r\nWednesday - Senpai noticed Yuki. Why Yuki Why not Yandere I WILL make Senpai notice me.\r\nThursday - Plotting most of the day, also dreamed about Senpai eating noodles. Hee hee.\r\nFriday - I brought brownies for Senpai. While he was eating them I killed him. Now Senpai will never be with Yuki and only with Yandere. I will take Senpai's corpse home and hug it tonight.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-senpai-loves-panties","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bc085da-ac18-4fc1-a2e6-94e09da0d9c3/sm/ep10817.jpg","duration":656,"publication_date":"2015-05-05T19:41:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-kovic-vs-the-world","changefreq":"weekly","video":[{"title":"2015:E27 - KOVIC VS THE WORLD","description":"STEVE vs. ADAM! HWNT vs PIXEL! DUMB vs DUMB! \r\n\r\nWHO WILL WIN IN THIS HALO BATTLE ROYALE I don't care.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-kovic-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/680542f6-dede-414f-9b8c-eacb7c788a26/sm/ep10816.jpg","duration":1513,"publication_date":"2015-05-05T19:39:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-search-for-booty","changefreq":"weekly","video":[{"title":"2015:E26 - SEARCH FOR BOOTY","description":"The Captain Cris Family Story:\r\n\r\nCommodore Earl DeLaChrisse, Lord High Admiral of France, married the fair lady Duchess Kristyne Cristoffer. The issue of their marriage was two children: Gris the Elder Brother and Kris, a younger son given to spending his inheritance. His family disowned their wayward son, who was forced to become a privateer in order to make his way. \r\n\r\nDuring a brief stay in the West Indies, Kaptain Kris fell in love with Cinnamon, a prostitute in her waning years of fertility. Kris bid her farewell, promising to return on the next Feast of St. Cumberbatch. 'Twas a pity, then, Kris was waylaid in Nippon for almost 4 years. Upon returning to the Caribbean Cinnamon presented him with his cross-eyed, mumbling, clumsy son Cris. \r\n\r\nAlthough Cris was in no-wise fit to captain a ship (having never been to sea and also because he was 3 1/2 years old), Kris ceded the captaincy to his son, who set off for a life of adventure!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-search-for-booty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e479c5d1-9566-4b10-b94b-91ee337b002e/sm/ep10815.jpg","duration":656,"publication_date":"2015-05-05T19:37:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-just-f*ckin-around","changefreq":"weekly","video":[{"title":"2015:E25 - JUST F*CKIN AROUND ","description":"Here's a sample of our twitter feeds for the last week: \r\n\r\n\"When are you guys going to finish your heist\"\r\n\"What's the deal with the 2nd heist\"\r\n\"HEY FUCKERS WHERE THE FUCK IS THE LAST HEIST!!!!\"\r\n\r\nNewsflash: this ain't it. This is just us dicking around.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-just-f*ckin-around","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4bfe32e-6e30-4631-9429-48cec60e62e0/sm/ep10814.jpg","duration":379,"publication_date":"2015-05-05T19:35:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-drunkborne","changefreq":"weekly","video":[{"title":"2015:E24 - DRUNKBORNE ","description":"Drunk Gameplays are back with Drunk Bloodborne!\r\n\r\nYou take a little Bloodborne. Add some high quality Vodak. Mix in some Dude Soup. Whaddya get Drunkborne.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-drunkborne","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbf907b6-3e75-49aa-bcdf-afd9d975bb1a/sm/ep10813.jpg","duration":1170,"publication_date":"2015-05-05T19:34:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-filthy-pirate-f*ck","changefreq":"weekly","video":[{"title":"2015:E22 - FILTHY PIRATE F*CK ","description":"Team Funhaus Presents: The Pirate ABCs\r\n\r\nA is for Amber, the Pirate-stitute\r\nB is for Bird Strike to solve a dispute\r\nC is for Chris, he's our captain, you know\r\nD is for Demo Disk (that's the wrong show)\r\n\r\nE is for Everyone - not this game's rating\r\nF is for fearing you're all masturbating\r\nG is for glitchy, how did this sell\r\nH - also glitchy, like glitchy as hell\r\n\r\nI is for I can't believe we're still going\r\nJ is for Joel whose boredom is showing\r\nK is for Kris - wait, we did that already\r\nL is for lazy-eye, focus unsteady\r\n\r\nM is for Matrix, a reference herein\r\nN is for not gonna play this again\r\nO is for ocean, feel the sea's power\r\nP is for pissing, as in golden shower\r\n\r\nQ is for questioning why we're still here\r\nR is for Raven's Cry's true buccaneer\r\nS is for stupid and sucky and shitty\r\nT is for ta-tas, this vid has a titty\r\n\r\nU is for useless, describing my crew\r\nV for voice actor who left halfway through\r\nW for why am I sailing this yacht\r\nX is piratical - x marks the spot\r\n\r\nY is for you whose restraint we mistreated\r\nZ is for ZOMG I've completed","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-filthy-pirate-f*ck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7595d101-cca0-4ceb-a1a3-d6bce37d6ce4/sm/ep10811.jpg","duration":814,"publication_date":"2015-05-05T19:30:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-we-are-on-fire","changefreq":"weekly","video":[{"title":"2015:E21 - WE ARE ON FIRE!","description":"Look guys - stop comparing OUR GTA Heist videos to Achievement Hunters' GTA Heist videos. We're totally different. \r\n\r\nThey're good. We're bad. They're professional. We're bad. They're funny. We're bad.\r\n\r\nGot it \r\n\r\nGreat.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-we-are-on-fire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f66fe0e-3881-4fc2-91c1-4cbd698f4260/sm/ep10810.jpg","duration":778,"publication_date":"2015-05-05T19:28:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dragon-ball-z-ucks","changefreq":"weekly","video":[{"title":"2015:E20 - DRAGON BALL Z-UCKS ","description":"I'm going to level with you. I know nothing about Dragon Ball Z, so this description isn't going to be full of jokes. In retrospect I probably should have had James or Adam write this, but they went on a pretty cool surf vacation together, and we don't know when they're going to be back.\r\n\r\nMaybe never.\r\n\r\nAnyway, here it is: DorgonBill Weinerverse.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dragon-ball-z-ucks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbaad48c-58f2-4f7f-b162-fc25bf0c77cb/sm/ep10809.jpg","duration":713,"publication_date":"2015-05-05T19:25:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-legends-never-die","changefreq":"weekly","video":[{"title":"2015:E19 - LEGENDS NEVER DIE","description":"Well, it only took us 3 videos and 87 hours, but we finally finished our first GTA Heist. \r\n\r\nWe've been seeing a lot of comments about how bad we are at these, and how Achievement Hunter is so much better, and I know most of you are sayin', \"Hey, any idiot could do that.\"\r\n\r\nWELL IT WAS TOUGH FOR US, SO BACK OFF!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-legends-never-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfa1ae63-a71b-4ab8-a946-3c552a755c54/sm/ep10808.jpg","duration":812,"publication_date":"2015-05-05T19:22:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-cop-killers","changefreq":"weekly","video":[{"title":"2015:E18 - COP KILLERS","description":"Well, them Funhaus boys was in a heap of trouble. While Larry and Jimmy went down the docks to heist themselves up a cargo ship, Bruce and Adam found more than they'd bargained for up at the po-lice station. \r\n\r\nAnd we all know Boss Hogg and Sheriff Roscoe P Coltrane don't take kindly to them what don't show respect to our men in blue.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-cop-killers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72f617c6-b834-4e61-ae7e-ef7bcf46a7ae/sm/ep10807.jpg","duration":746,"publication_date":"2015-05-05T19:21:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-we-hate-teamwork","changefreq":"weekly","video":[{"title":"2015:E17 - WE HATE TEAMWORK","description":"Our plan for GTA heists: Adam fronts the money. Bruce provides the cover. Lawrence carjacks the bus.\r\n\r\nAnd James dicks around with a flare gun.\r\n\r\nIt's the perfect crime.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-we-hate-teamwork","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00442fd1-7ce9-42aa-9d06-dd489a959647/sm/ep10806.jpg","duration":714,"publication_date":"2015-05-05T19:20:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-pissing-pirates","changefreq":"weekly","video":[{"title":"2015:E16 - PISSING PIRATES","description":"In today's episode of Kaptain Kris' Pirate Adventure, things take a turn for the steamy and sexxxy and, dare I say, streamy.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-pissing-pirates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f97f939a-2985-42ec-a791-a017f7369b83/sm/ep10805.jpg","duration":561,"publication_date":"2015-05-05T19:18:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-not-gta-heists","changefreq":"weekly","video":[{"title":"2015:E15 - (not) GTA HEISTS! ","description":"We tried to play some GTA 5 heists. \r\n\r\nThat's the joke.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-not-gta-heists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b49073bb-4a2d-42f1-a020-bd8f8639d4bc/sm/ep10804.jpg","duration":262,"publication_date":"2015-05-05T19:16:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-zelda-is-broken","changefreq":"weekly","video":[{"title":"2015:E14 - ZELDA IS BROKEN","description":"IT'S A SECRET TO EVERYBODY. Well, ok, it's not really so much as a secret that you guys didn't like the first Nintendo ROMs video we did. \r\n\r\nGuess what We liked it, so we made another one. Suck it, haters.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-zelda-is-broken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86464865-65b9-4c27-a94a-8b52c061b2b6/sm/ep10803.jpg","duration":383,"publication_date":"2015-05-05T19:14:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-nuns-must-die","changefreq":"weekly","video":[{"title":"2015:E13 - NUNS MUST DIE","description":"Whenever I was raiding ICC in Wrath of the Lich King as a frost mage and I ran out of mana fighting Lady Deathwhisper, I'd just hit the toilet, refill my mana, and deal with her adds.\r\n\r\nJust like Luscious with the Janitor.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-nuns-must-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4440f99-5105-4843-a66d-731c962781bf/sm/ep10802.jpg","duration":609,"publication_date":"2015-05-05T19:11:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-car-cliff-diving","changefreq":"weekly","video":[{"title":"2015:E12 - CAR CLIFF DIVING","description":"Adam still hasn't caught on to our devious scheme: we let HIM play the race first to show us what not to do. Then we don't do everything Adam did. \r\n\r\nDAMN! THAT'S A HIGH JUMP: http://socialclub.rockstargames.com/games/gtav/jobs/job/KvfBFMfkHEW4fWDCSxSCxw","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-car-cliff-diving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9d1b4eb-5c43-44c6-8273-34b9d1f17932/sm/ep10801.jpg","duration":844,"publication_date":"2015-05-05T19:09:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-stupid-sunday-video","changefreq":"weekly","video":[{"title":"2015:E11 - Stupid Sunday Video","description":"\"We were trying to capture some gameplay to test webcam overlays for GTA Online's upcoming Heists update. Freddie was in already from filming OpenHaus with us and we decided to mess around with GTA for fun. When the footage exported, James' had no webcam, mine crashed and lost webcam and Freddie's exported perfectly with the webcam overlayed on the gameplay; joy. Also, while setting up his Xbox One, I started filming and James went off on some random unboxing bit so we just ran with it. I didn't see enough to make two videos with what little footage we had but while editing I combined the two and we got the magic that lay before you. \r\n\r\nAlso, I just realized that I finally went full-YouTube and said \"it really helps us out\" after asking for you find folks to subscribe. Look, I was tired from working all day and had just started rendering my timeline. I watched my single take, cringed a little bit and said fuck it, you guys will understand.\" \r\n\r\n~ Adam Kovic, 2015","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-stupid-sunday-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f56e9221-1bc3-43a2-8518-06f18dba7111/sm/ep10800.jpg","duration":413,"publication_date":"2015-05-05T19:07:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-nintendo-is-broken","changefreq":"weekly","video":[{"title":"2015:E10 - NINTENDO IS BROKEN ","description":"Funhaus Video #24: in which we play some broken-ass Nintendo games. \r\n\r\nAll your favorites are here! Crabface Mario! Twitchy Ghostdude! Dumb Goomba! Computer Terminal! And so forth.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-nintendo-is-broken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b077e3dc-4640-4867-ba40-4d6e268016f1/sm/ep10799.jpg","duration":793,"publication_date":"2015-05-05T19:04:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-luscious-little-boy","changefreq":"weekly","video":[{"title":"2015:E9 - LUSCIOUS LITTLE BOY ","description":"O Mighty Lord Luscious, by whom all things are set free, I cast myself utterly into thine arms and place myself unreservedly under thy all powerful protection. \r\n\r\nVisit justice and vengeance upon those who seek my destruction. Fill my soul with thy invincible power, strengthen me, that I may persevere in my service, and act as an agent of thy works and a vessel of thy will. \r\n\r\nThis I ask in your name, almighty and ineffable Lord Satan who liveth and reigneth forevermore. \r\n\r\nAve Satanas","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-luscious-little-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d864ec07-0819-4f57-9f85-04d94a3a3bb5/sm/ep10798.jpg","duration":591,"publication_date":"2015-05-05T19:01:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-rocket-man","changefreq":"weekly","video":[{"title":"2015:E8 - ROCKET MAN ","description":"As General George S Patton famously said in regards to Rommel's Africa campaign, \"Tanks can't shoot downhill.\"","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-rocket-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9db28766-6d4d-4e19-b776-f5ec624ec13e/sm/ep10797.jpg","duration":621,"publication_date":"2015-05-05T19:00:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-tired-of-zombies","changefreq":"weekly","video":[{"title":"2015:E7 - TIRED OF ZOMBIES ","description":"Take crowbar. Go to car. Kill zombie - \"Sorry\" - grab James, go to the Winchester, have a nice cold pint, and wait for all of this to blow over.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-tired-of-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb644b13-9ac0-4857-9718-c938143ee2cc/sm/ep10796.jpg","duration":603,"publication_date":"2015-05-05T18:57:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-worst-pirate-ever","changefreq":"weekly","video":[{"title":"2015:E6 - WORST PIRATE EVER ","description":"If Johnny Depp had a baby with Errol Flynn and then that baby made a baby with a really dumb monkey, that baby's baby would be Kaptain Kris.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-worst-pirate-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b825c7ff-b4be-492e-a9f9-b32fa4c7c5ee/sm/ep10795.jpg","duration":535,"publication_date":"2015-05-05T18:53:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-dicks-of-destruction","changefreq":"weekly","video":[{"title":"2015:E5 - DICKS OF DESTRUCTION ","description":"This THURSDAY THURSDAY THURSDAY! Monstrous multitudes of metal mangods drive down death in a destruction derby of derring-do.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-dicks-of-destruction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6d2b9dc-19ad-4c8f-a9bd-f8471b72bb30/sm/ep10794.jpg","duration":585,"publication_date":"2015-05-05T18:51:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-boat-race-bastards","changefreq":"weekly","video":[{"title":"2015:E4 - BOAT RACE BASTARDS","description":"James \"Sonny\" Crockett is a Miami Vice Squad detective who has just lost his colleague, Eddie Rivera (Jimmy Smits) in a car bombing. Crockett was investigating Esteban Calderone, a Colombian drug dealer, when he meets a New York narcotics detective, Rafael Tubbs. Since they're having difficulties approaching Calderone, Crockett and Tubbs are forced to work together.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-boat-race-bastards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36f168a6-cddb-40ad-8c5b-bd139b270c2e/sm/ep10793.jpg","duration":728,"publication_date":"2015-05-05T18:48:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-kill-me-now","changefreq":"weekly","video":[{"title":"2015:E3 - KILL ME NOW! ","description":"We are bad at games that even a child is good at. Especially Michael.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-kill-me-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/babcb0ea-f605-4b1b-8218-731c6f16da6c/sm/ep10792.jpg","duration":980,"publication_date":"2015-05-05T18:46:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-avengers-2-in-gta-4","changefreq":"weekly","video":[{"title":"2015:E2 - AVENGERS 2 in GTA 4! ","description":"Damn, we missed these.","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-avengers-2-in-gta-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1be70f2e-e7ff-43a9-9ce8-9c24d7831b7c/sm/ep10791.jpg","duration":711,"publication_date":"2015-05-05T18:43:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-gameplay-season-1-shark-weak","changefreq":"weekly","video":[{"title":"2015:E1 - SHARK WEAK","description":"Shark!\r\nShark!\r\nShark attack!\r\nThis shark eats like a maniac!","player_loc":"https://roosterteeth.com/embed/funhaus-gameplay-season-1-shark-weak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1d3f7fb-e854-4371-a40a-22524431965a/sm/ep10790.jpg","duration":942,"publication_date":"2015-05-05T18:41:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-our-opinions-suck","changefreq":"weekly","video":[{"title":"2015:E3 - OUR Opinions SUCK","description":"Ohhhhh boy did we get some great comments this week. Ranging from \"YOU GUYS ARE WRONG ABOUT THE INTERNET\" to \"YOU GUYS ARE DUMB\", your sweet, sweet comments gave us lots of creative, constructive criticism.\r\n\r\nAnd you know what We're going to take your advice. From now on, we'll be more open minded. We'll try to include the opinions of every single person with an internet connection. We're going to take into account the full range of ideas, and we're only going to tell you guys what you want to hear from now on. All we want to do is confirm your personal beliefs. That's what we're going to do!\r\n\r\nOr we could just tell you you're a bunch of knobs. Except you. You're still our #1.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-our-opinions-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75deaf23-9936-4030-a3ce-6bfe7687d99c/sm/ep10787.jpg","duration":509,"publication_date":"2015-05-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-your-comments-season-1-shut-up-already","changefreq":"weekly","video":[{"title":"2015:E1 - SHUT UP ALREADY ","description":"In case you think you should be all clever and make a \"funny\" comment in the hopes that we'll see it and say your name or something...don't. Please. Just don't.","player_loc":"https://roosterteeth.com/embed/funhaus-your-comments-season-1-shut-up-already","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b0c5405-ea74-436d-95ff-f44aaa15b697/sm/ep10785.jpg","duration":487,"publication_date":"2015-05-05T00:10:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-derpy-demons","changefreq":"weekly","video":[{"title":"2015:E11 - DERPY DEMONS","description":"The Invocation: \r\n\r\nWe mark the floor with a white cord, 13 cubits in length, in the form that is most holy to Baphomet; and that form is a giant Butt circumscribed by a Pentagram. We make certain that nothing - NOTHING - may disturb it.\r\n\r\nWe take 5 black candles and place them at the vertices of the Pentagram, and with consecrated white chalk we bind the candles to the Pentagram.\r\n\r\nWe remain calm.\r\n\r\nWe fill a censer with the a poultice of protection: sage, frankincense, Balm of Gilead, and rosewater. The censer is placed in an alcove at the base of the Pentagram and Butt.\r\n\r\nWe feel the power coalesce into the room; physical form takes shape. A succubus from The Plane of Mendes appears in the center of the Pentagram and Butt. She extends one hand to us.\r\n\r\nIn that hand is Demo Disk.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-derpy-demons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/202df807-35a3-4472-a662-7c28b2cf34b7/sm/ep10772.jpg","duration":677,"publication_date":"2015-05-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-should-mods-be-free","changefreq":"weekly","video":[{"title":"2015:E13 - Should Mods Be FREE? - #13","description":"SUPPORT OUR SPONSORS! \nHarrys:http://hrys.co/1AifShc\nPromo code \"dude\"\n\nShari's Berries: bit.ly/1ESDNen \nClick the microphone, use code \"Dude Soup\"\n\nSo here's the deal. We know you love getting your Dude Soup piping hot at 6:00 am (or whatever the fuck timezone you live in) but I'm going to level with you: who wants soup in the morning (or whatever the fucking time of day it is where you live). \n\nWE don't like eating soup in the morning, which is why WE changed the upload on OUR channel to 6:00 pm. So we can have our soup like god herself intended: in the early evening, just as the first stars begin to appear and the crickets chirp their twilight lullaby.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-should-mods-be-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb7a36ec-7fbd-4dad-9112-f0d62a105506/sm/ep10770.jpg","duration":3624,"publication_date":"2015-05-01T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-gta-5-first-mods","changefreq":"weekly","video":[{"title":"2015:E12 - GTA 5 First MODS? - #12","description":"Guys, I'm really sorry to tell you that everyone's favorite Funhaus member, Flitter the Glittercorn, isn't in this episode of Dude Soup.\n\nActually...this is a really hard time for us...\n\nFlitter had a routine doctor appointment the day before we recorded, and what we all thought was just a bad rash is actually something much worse. She caught Joel's shingles. \n\nShingles are typically comparatively mild in humans, but the virus is very aggressive for Glittercorns - Flitter's grandmother Yiskabelle came down with a case a few years ago and it wasn't pretty. They attacked her Sparkle glands and, unable to produce the vital Glittercorn MagicSheen that keeps their kidneys working, Yiskabelle suffered total organ failure.\n\nAnyway, Flitter is in intensive care now. We're hoping for the best, but preparing for the worst. Please do us a favor and leave a #PrayForFlitter on the video, and on twitter - she'll really appreciate the love even though the pain has forced us to put her in a medically induced coma.\n\nRemember: #PrayForFlitter. And god bless you all.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-gta-5-first-mods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d199754e-8c22-4d0a-8b66-325c40787848/sm/ep10769.jpg","duration":3966,"publication_date":"2015-05-01T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-call-of-duty-black-ops-3-will-it-suck","changefreq":"weekly","video":[{"title":"2015:E11 - Call of Duty Black Ops 3: WILL IT SUCK? - #11","description":"Today's Menu:\n\nSoup du Jour - a fine, peppery Call of Stewdy with delicious CoD.\n\nMake it a Mortal Kombo meal with a side of fatalities!","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-call-of-duty-black-ops-3-will-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dd5f4dd-9f08-49b6-8d85-9126a649b49b/sm/ep10768.jpg","duration":3447,"publication_date":"2015-05-01T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-halo-5-will-it-suck","changefreq":"weekly","video":[{"title":"2015:E9 - Halo 5: WILL IT SUCK? - #9","description":"Hooo boy, it's Halo time!! We're gonna talk about Mister Chorf! We're gonna talk about Cabana! We're gonna talk about Mickroshaft! And all your best pals!! \n\nSo get in the soup with us!!\n\nSponsor:\nhttp://www.fanduel.com, click on the microphone in the upper right hand corner, and cuse code \"dude\".","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-halo-5-will-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4030d212-c116-4f26-a100-20fc9f840a24/sm/ep10765.jpg","duration":3829,"publication_date":"2015-05-01T18:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-bloodborne-best-game-ever","changefreq":"weekly","video":[{"title":"2015:E8 - Bloodborne: BEST GAME EVER? - #8","description":"We'd like to apologize for this one. See, we'd just played Drunkborne, which is coming out tomorrow. And we were really really REALLY drunk. And a little screamy. It was hard to pay attention.\n\nAnyway, try to \"enjoy\" this podcast, and trust me - it'll be worth it tomorrow.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-bloodborne-best-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed1e9d6-1fb2-4542-95c8-b872637135e7/sm/ep10764.jpg","duration":4404,"publication_date":"2015-05-01T18:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-do-you-pirate-games","changefreq":"weekly","video":[{"title":"2015:E7 - Do YOU Pirate Games? - #7","description":"You wouldn't steal a car. You wouldn't steal a handbag. You wouldn't steal a TV. You wouldn't steal a game.\n\nOr maybe you would, what are we, your parents \n\nPiracy, GTA heists, SXSW, and more, on this week's Dude Soup.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-do-you-pirate-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb0db272-ac61-4d52-9417-9aa4726422e7/sm/ep10763.jpg","duration":4672,"publication_date":"2015-05-01T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-battlefield-hardline-is-it-fun","changefreq":"weekly","video":[{"title":"2015:E6 - Battlefield Hardline: IS IT FUN? - #6","description":"We played Battlefield Hardline at PAX East and it was...fun We talk about why - and why we also LOVE FRIGGIN OVERWATCH SO MUCH - in this week's Dude Soup.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-battlefield-hardline-is-it-fun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f68b604-605d-48f4-b66b-60ecec719ecc/sm/ep10762.jpg","duration":4078,"publication_date":"2015-05-01T18:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-half-life-3-and-fallout-4-this-year","changefreq":"weekly","video":[{"title":"2015:E5 - Half Life 3 and Fallout 4 THIS YEAR? - #5","description":"Are Half Life 3 and Fallout 4 getting announced this year We have no damn clue, but why not drool over the possibility with us for an hour \n\nAll this, plus your fan art, comments, and f'art in this bowl of Dude Soup.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-half-life-3-and-fallout-4-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4cb2f97-cf86-4921-bfe5-921c62f79784/sm/ep10761.jpg","duration":4057,"publication_date":"2015-05-01T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-star-wars-battlefront-will-it-suck","changefreq":"weekly","video":[{"title":"2015:E4 - Star Wars Battlefront: WILL IT SUCK? - #4","description":"Are you as big a Star Wars fan as we are We named a shitload of tertiary characters, but can you tell us who they all are Does anyone care NO.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-star-wars-battlefront-will-it-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb98cd5e-d0a6-4464-8cb9-85905fc26159/sm/ep10760.jpg","duration":3698,"publication_date":"2015-05-01T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-the-order-1886-worth-the-price","changefreq":"weekly","video":[{"title":"2015:E3 - The Order 1886 WORTH THE PRICE? - #3","description":"The Order 1886 is supposedly only 5 hours long, and half that is cutscenes. Is this game worth $60 How do you determine whether or not a game is worth the price tag \n\nMichael from Achievement Hunter guest-casts with us to find out why Spoole's method is crazy.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-the-order-1886-worth-the-price","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dd1546d-8cd6-41b3-8fb5-399393bc1d14/sm/ep10759.jpg","duration":3656,"publication_date":"2015-05-01T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-dude-soup-season-1-so-what-now-with-burnie","changefreq":"weekly","video":[{"title":"2015:E1 - SO WHAT NOW? (With Burnie!) - #1","description":"Once upon a time we started a new youtube channel called ButtBot. But then we thought about t-shirt designs and decided that might not be a great idea.\n\nSo we renamed the channel FUNHAUS, and invited Rooster Teeth to pay us to do stupid videos. They agreed! \n\nHere's our first podcast.\n\nAnd everyone lived happily ever after. The end.","player_loc":"https://roosterteeth.com/embed/funhaus-dude-soup-season-1-so-what-now-with-burnie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a6d6382-243a-4cc5-a93a-4fc12c523793/sm/ep10757.jpg","duration":3312,"publication_date":"2015-05-01T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-our-first-gay-bar","changefreq":"weekly","video":[{"title":"2015:E11 - Our First GAY BAR? - #11","description":"Joel got sick so he couldn't write a description for this. Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts Butts. Ask us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-our-first-gay-bar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc7ccc4f-d9c5-4e5c-a898-e5710e6a2cd2/sm/ep10756.jpg","duration":758,"publication_date":"2015-05-01T18:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-erotic-fan-fiction","changefreq":"weekly","video":[{"title":"2015:E10 - EROTIC Fan Fiction - #10","description":"Oh man, this episode has it all! Homoerotic fan fiction, Spoole's workout regimen, Adam doing a dumb Game of Thrones voice, and everyone's favorite character, Big Piece of Cardboard!!\n\nBig Piece of Cardboard will be back every week now by popular demand! Look for Big Piece of Cardboard in Dude Soup, Demo Disk, and a very special episode of Luscious, all coming up soon!! Ask us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-erotic-fan-fiction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef57051f-d7c1-4808-beea-abd35227da06/sm/ep10755.jpg","duration":643,"publication_date":"2015-05-01T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-are-heroin","changefreq":"weekly","video":[{"title":"2015:E9 - We Are Heroin? - #9","description":"***GAME OF THRONES SPOILER ALERT***\n\nAsk us questions here!\nhttp://www.reddit.com/r/funhaus\n\nHELLO TAMPA BAY! We are SEXX SWING and we're here to cock your rocks off!! Tonight we'll be playing all your favorite hits, including\n\nSEXX SWING\nFUX SLIDE\nDIRTY MONKEY BARS\nTITTY TOTTER\nBUTT STUFF (Jungle Gym Remix)","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-are-heroin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fc047e7-066c-43fa-876e-4448830ade1f/sm/ep10753.jpg","duration":732,"publication_date":"2015-05-01T18:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-hot-sexy-interns","changefreq":"weekly","video":[{"title":"2015:E8 - Hot Sexy INTERNS? - #8","description":"In case you get offended by this week's Open Haus, the only thing I can tell you is to watch a Mel Brooks movie. ANY Mel Brooks movie.\n\nAlso: remember the HAUS part of our name... \n\nAsk us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-hot-sexy-interns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa199bad-ac15-4a9b-a87a-a2fde180e4e4/sm/ep10752.jpg","duration":714,"publication_date":"2015-05-01T18:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-best-prom-ever","changefreq":"weekly","video":[{"title":"2015:E7 - Best PROM Ever? - #7","description":"Tell your parents not to watch; this Open Haus has some ADULT THEMES. \n\nOr wait - is your mom hot If so she can watch, and maybe send us a reaction video on Snapchat. Our name is FunhausTeam - tell her to snap up there.\n\nAnyway, happy Prom!\n\nAsk us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-best-prom-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd5cbe95-bd68-4cd9-9382-bbbde0c4ddee/sm/ep10751.jpg","duration":640,"publication_date":"2015-05-01T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-worst-job-ever","changefreq":"weekly","video":[{"title":"2015:E6 - Worst Job EVER? - #6","description":"Welcome to the Brown Baby Bungalow, how can we help you! Today our specials are the Brown Baby Back Beefcakes with Babysauce and Bungalow Coq au Vin - easy on the vin, but heavy on the coq ;)\n\nAsk us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-worst-job-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aed09a1-dec4-4910-b224-c1f91b2eab02/sm/ep10750.jpg","duration":703,"publication_date":"2015-05-01T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-master-a-game","changefreq":"weekly","video":[{"title":"2015:E5 - MASTER a Game? - #5","description":"Ask us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-master-a-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbcc0028-7a81-4189-8a42-ef817ebdfe18/sm/ep10749.jpg","duration":744,"publication_date":"2015-05-01T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-ruin-video-games","changefreq":"weekly","video":[{"title":"2015:E4 - We RUIN Video Games? - #4","description":"Joel and Spoole BOTH got a haircut after recording this video. RIP ginger/jew locks. Ask us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-ruin-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d092d279-96bd-46af-bdd1-33b1c2c41f8f/sm/ep10748.jpg","duration":730,"publication_date":"2015-05-01T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-we-finger-freddie","changefreq":"weekly","video":[{"title":"2015:E3 - We Finger Freddie! - #3","description":"Freddie Wong agreed to drop by our office for some reason - we're still not sure why. We think maybe he was hungry and looking for free food. Anyway, we made him do an Open Haus.","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-we-finger-freddie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/664e2b44-e955-45bc-8bf8-d3b79fc769f2/sm/ep10747.jpg","duration":679,"publication_date":"2015-05-01T17:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-open-haus-season-1-new-sex-habits","changefreq":"weekly","video":[{"title":"2015:E1 - New Sex Habits? - #1","description":"Ask us questions here!\nhttp://www.reddit.com/r/funhaus","player_loc":"https://roosterteeth.com/embed/funhaus-open-haus-season-1-new-sex-habits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a8e90a5-2594-4c4d-a647-7f1a8df2f14c/sm/ep10745.jpg","duration":681,"publication_date":"2015-05-01T17:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-to-sex-a-predator","changefreq":"weekly","video":[{"title":"2015:E10 - To Sex a Predator","description":"A conversation we'll no doubt be having soon: \r\n\r\n\"Hey Funhaus\"\r\n\r\n\"Yeah Burnie\"\r\n\r\n\"So, we're a little concerned about the videos on your channel.\" \r\n\r\n\"What do you mean\"\r\n\r\n\".....\"\r\n\r\n\"Ohhhh, the incredibly graphic sex games we've been playing in like every video recently\"\r\n\r\n\"That's it.\"\r\n\r\n\"We'll cut it out. Sorry.\"\r\n\r\n\"No, no that's not it. Can -- can you send me the links\"\r\n\r\n\"......\"","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-to-sex-a-predator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/747c4313-328c-4644-904a-6a5980626308/sm/ep10744.jpg","duration":1201,"publication_date":"2015-05-01T17:26:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-lego-that-fairy","changefreq":"weekly","video":[{"title":"2015:E9 - Lego That Fairy ","description":"Week 10. I'm still editing Demo Disk. Bruce, Adam, and James still don't know that I'm sneaking my secret messages into each video letting the police know exactly when and how to find them. My only hope is that all the dozens of children harmed by the sexy porn flash games they play have some justice done; some kind of resolution.\r\n\r\nIt's gone on long enough. I have to make a stand.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-lego-that-fairy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3de55e7-072c-449d-aed8-2a4ef4fd2aa1/sm/ep10743.jpg","duration":1206,"publication_date":"2015-05-01T17:24:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-what-if-i-fingered-you","changefreq":"weekly","video":[{"title":"2015:E8 - What If I Fingered You","description":"What is best in Demo Disk\r\n\r\nTo crush your disks, to see them sharded before you, and to hear the lamentations of their Bruces!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-what-if-i-fingered-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4acf818f-5e76-4adc-8859-7cc74d21a0e8/sm/ep10742.jpg","duration":1257,"publication_date":"2015-05-01T17:23:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-girls-kissing-girls","changefreq":"weekly","video":[{"title":"2015:E7 - Girls Kissing Girls","description":"ATTENTION FLASH GAMES DEVELOPERS: we would like to take your money to test your new, exciting flash games where you kiss pretty girls. We can provide the following testing services:\r\n\r\n- Bug testing\r\n- Kissing feedback\r\n- Story editing\r\n- Typo correction\r\n- Underwear advising\r\n\r\nPlease contact us, with money, via Twitter or YouTube. \r\n\r\nMany thanks, \r\n\r\nFunhaus","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-girls-kissing-girls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/784a6229-568f-4f69-ae70-c1e79ecf147f/sm/ep10741.jpg","duration":1208,"publication_date":"2015-05-01T17:22:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-nascar-wizard","changefreq":"weekly","video":[{"title":"2015:E6 - Nascar Wizard","description":"This is almost 20 minutes long, but do yourself a favor:\r\n\r\nFire up the old internet box. Grab a cold one. Squat down in the ol' squattin' hole. And watch this all the way though. I think this is our favorite Demo Disk video yet.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-nascar-wizard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49941dee-9031-4cc6-9c43-4820f196fedb/sm/ep10740.jpg","duration":1151,"publication_date":"2015-05-01T17:20:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-grab-my-wood","changefreq":"weekly","video":[{"title":"2015:E5 - Grab My Wood","description":"Vampires: the final frontier. These are the voyages of the Starship GoldenBear. Its continuing mission: to explore strange new demo disks, to seek out new games and new glitches, to boldly play what no one has played before.\r\n\r\nVOLUME WARNING THIS IS NOT A JOKE TURN YOUR VOLUME DOWN","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-grab-my-wood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97b11244-142e-4e60-87a6-5f9751058c9c/sm/ep10739.jpg","duration":803,"publication_date":"2015-05-01T17:18:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-get-swatted","changefreq":"weekly","video":[{"title":"2015:E4 - Get SWATTED!","description":"So a fan sent us this binder full of demo discs for terrible, terrible games and we're real idiots. So we played some of them.\r\n\r\nThe lesson today is if you find a binder full of old demo discs, DO NOT PLAY THEM.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-get-swatted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/132c437c-6861-4f32-858c-633665857130/sm/ep10738.jpg","duration":810,"publication_date":"2015-05-01T17:17:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-hitler-is-alive","changefreq":"weekly","video":[{"title":"2015:E3 - Hitler is Alive?!?","description":"So halfway through this video James tries to call Gabor, the developer of Seed. It went to voicemail.\r\n\r\nBUT GABOR CALLED US BACK THIS WEEK AND WE TALKED TO HIM.\r\n\r\nTrue story.","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-hitler-is-alive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/468609bc-b514-4b62-95fe-3f439abeee99/sm/ep10737.jpg","duration":1061,"publication_date":"2015-05-01T17:15:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-star-wars-jesus","changefreq":"weekly","video":[{"title":"2015:E2 - Star Wars Jesus","description":"A long time ago, in a binder someone sent to us from far,\r\nfar away....\r\n\r\nIt is a period of gaming videos.\r\nGlitchy spaceships, striking\r\nfrom a shitty demo game, have won\r\ntheir first victory against\r\nthe evil Adam Kovic.\r\n\r\nDuring the recording, James'\r\nspies managed to steal secret\r\nbutts to the Bruce's\r\nultimate weapon, the DEATH\r\nFART, an armored space\r\nstation with enough methane to\r\ndestroy an entire office.\r\n\r\nPursued by the Adam's\r\nsinister agents, Princess\r\nJoel races home aboard her\r\nunicorn, custodian of the\r\nstolen butts that can save\r\nher people and restore\r\nclean air to the galaxy....","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-star-wars-jesus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f746765-55d9-4646-8451-a10e48c7f221/sm/ep10736.jpg","duration":1103,"publication_date":"2015-05-01T17:13:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-demo-disk-season-1-worst-restaurant-ever","changefreq":"weekly","video":[{"title":"2015:E1 - Worst Restaurant Ever","description":"Welcome to Tomatoes Au Greatin, where the Tomatoes are Great...IN your belly! Today's special is BBQ'd tomaters over grated hair, topped with dried bean casserole. Please enjoy our female facilities, and feel free to recommend us to a friend!","player_loc":"https://roosterteeth.com/embed/funhaus-demo-disk-season-1-worst-restaurant-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35af29fb-fd9e-4ce7-8084-5b942f328216/sm/ep10735.jpg","duration":914,"publication_date":"2015-05-01T17:10:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/funhaus-shorts-season-1-how-to-work-out-funhaus-office-tour","changefreq":"weekly","video":[{"title":"2015:E1 - HOW TO WORK OUT - Funhaus Office Tour!","description":"Finally, the moment you've all been waiting for, for some dumb reason: our new stupid office tour!!\n\nWe got it all: old donuts! Guymzone! YouTub Office! And a special visit from our wacky next door neighbors, The Ropers!\n\nYou'll laugh, you'll cry, you'll be amazed at the super-absorbent strength and built-in applicator of this Funhaus Office Tour!!","player_loc":"https://roosterteeth.com/embed/funhaus-shorts-season-1-how-to-work-out-funhaus-office-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aedf1b61-cd1d-433e-8207-a64230d7f557/sm/2013912-1453416401230-fh_thumb_2_copy.jpg","duration":445,"publication_date":"2015-04-17T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-you-must-build-a-boat-y-o-u-m-u-s-t","changefreq":"weekly","video":[{"title":"2015:E30 - You Must Build a Boat: YOU MUST!!","description":"Join Gus Sorola, Ashley Jenkins, Meg Turney and Ryan Haywood as they discuss You Must Build a Boat, the match-3 puzzle RPG, on this week's Patch Game Club! This episode originally aired on October 28, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-you-must-build-a-boat-y-o-u-m-u-s-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/291fe498-c458-41d8-b779-b0ce963026a3/sm/2013912-1446134424396-gc_-_build_a_boat_-thumb.jpg","duration":755,"publication_date":"2015-10-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-horizon-detroit-sony-wins-exclusives-the-patch-128","changefreq":"weekly","video":[{"title":"2015:E128 - Horizon & Detroit: Sony Wins Exclusives? - #128","description":"Join Gus Sorola, Ashley Jenkins and Ryan Haywood as they discuss Sony's Paris Games Week press conference on this week's The Patch! This episode originally aired on October 28, 2015. Sponsored by Crunchyroll (http://bit.ly/1KqLGZp) and Dollar Shave Club (http://bit.ly/1gLYxWX)","player_loc":"https://roosterteeth.com/embed/the-patch-2015-horizon-detroit-sony-wins-exclusives-the-patch-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18a8f040-47be-4c23-b159-b41d15bb0d49/sm/2013912-1446132421435-p128_-_TEMP_THUMB.jpg","duration":3757,"publication_date":"2015-10-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-138","changefreq":"weekly","video":[{"title":"2015:E142 - Until Dawn is Coming to Virtual Reality","description":"What do you think of Until Dawn: Rush of Blood","player_loc":"https://roosterteeth.com/embed/game-news-2015-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a1eaabf-5428-489b-91a3-96a279571de0/sm/1663966-1446089304252-thumb.jpg","duration":147,"publication_date":"2015-10-29T03:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-137","changefreq":"weekly","video":[{"title":"2015:E141 - Sony: MORE EXCLUSIVES than Xbox?","description":"We decided to break from tradition and compare the Xbox and PlayStation on today's The Know. It's a bold new direction we're taking in which we try to get people to click on our video instead of the one that has giant boobs on the thumbnail. \n\nWait a sec. Is there a way we can stick boobs on a PlayStation 4","player_loc":"https://roosterteeth.com/embed/game-news-2015-137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/350baf56-4411-4a18-85c7-6c417f37a919/sm/1788484-1446073434158-theknow-sonyexclusives_1024.png","duration":481,"publication_date":"2015-10-28T22:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-135","changefreq":"weekly","video":[{"title":"2015:E138 - Star Wars Battlefront: BIGGEST Beta EVER?!","description":"EA has released a bunch of final numbers for the Star Wars Battlefront beta. Is it the BIGGEST game ever Break out your calculators. We're going in!","player_loc":"https://roosterteeth.com/embed/game-news-2015-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eba3a4f-5ab1-42fc-8363-33a012e801a5/sm/24363-1446052561033-thumbnail.jpg","duration":423,"publication_date":"2015-10-27T05:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2015-17","changefreq":"weekly","video":[{"title":"2015:E20 - Bacon Causes Cancer","description":"What do you think of the WHO's findings","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0acda426-1326-49db-b581-ff5f773eb73f/sm/1663966-1445919752753-bacon_thumb.jpg","duration":197,"publication_date":"2015-10-27T04:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-134","changefreq":"weekly","video":[{"title":"2015:E137 - Halo 5: Is It Good?","description":"At StarCorp, our top researchers are working around the clock to translate star ratings into the only thing we can actually argue about: numbers. Nobody yet knows how stars convert into numbers, but that's why we do what we do. You deserve better; you deserve numbers. That's why we're giving you, our loyal consumers, an 8 out of 10.\n\nSOURCES: \n\nKotaku Review: http://kotaku.com/halo-5-day-zero-impressions-medi...\n\nGiant Bomb Review: http://www.giantbomb.com/reviews/halo-5-guardians-...\n\nPolygon Review: http://www.polygon.com/2015/10/26/9553081/halo-5-g...\n\nEscapist Review: http://www.escapistmagazine.com/articles/view/vide...\n\nDestructoid Review: http://www.destructoid.com/review-halo-5-guardians...\n\nUSGamer Review: http://www.usgamer.net/articles/halo-5-guardians-x...","player_loc":"https://roosterteeth.com/embed/game-news-2015-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85384e4f-5853-4e7e-ae57-6903fcf474ec/sm/1788484-1445897957462-halo_5_the_know_thumbnail_(1).jpg","duration":379,"publication_date":"2015-10-26T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-133","changefreq":"weekly","video":[{"title":"2015:E136 - Halo 5 for PC?!","description":"An exec working on Halo hints Halo may be making a very belated return to PC for the main series. PC players who missed everything after 2 overheard asking, \"WTF is going on\"","player_loc":"https://roosterteeth.com/embed/game-news-2015-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e9c92d5-e80d-443f-bb43-aef51a4671e6/sm/24363-1445652533284-thumbnail.jpg","duration":272,"publication_date":"2015-10-24T02:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-132","changefreq":"weekly","video":[{"title":"2015:E135 - Assassin's Creed Syndicate: Xbox One vs. PS4","description":"My dearest Eunice, this console war is taking a toll on me. I am in the trenches every day, calling people racial slurs that haunt my memory even now. I think of you daily. I think of your warm embrace, a world that we can spend together with only one console. I hope to see you soon, but someone just said the Xbox One has the wrong kind of RAM. My work is not done. I love you Eunice.\n\nSOURCES: \n\nDigital Foundry's Analysis: http://www.eurogamer.net/articles/digitalfoundry-2...\n\nPC Gamer Interview: http://www.pcgamer.com/assassins-creed-syndicate-c...","player_loc":"https://roosterteeth.com/embed/game-news-2015-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b2b947d-1c96-48f0-9b96-91c8cca7084e/sm/1788484-1445636350861-Know_Oct_23.jpg","duration":342,"publication_date":"2015-10-23T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-131","changefreq":"weekly","video":[{"title":"2015:E134 - Assassin's Creed Syndicate: Is It GOOD?","description":"The embargo is up for Assassin's Creed Syndicate reviews. Is it better than Unity Is it worth playing Let's run down the reviews and see what they have to say.","player_loc":"https://roosterteeth.com/embed/game-news-2015-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b36c8e-7a8b-4850-9431-dde6a1be758c/sm/24363-1445568132605-thumbnail.jpg","duration":344,"publication_date":"2015-10-23T02:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-westerado-revenge-in-the-old-west","changefreq":"weekly","video":[{"title":"2015:E29 - Westerado: Revenge in the Old West","description":"Join Gus Sorola, Ashley Jenkins and Meg Turney as they discuss Westerado, the retro-style western on this week's Patch Game Club! This episode originally aired on October 22, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-westerado-revenge-in-the-old-west","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a88a9a4-581f-453f-95a7-4ebb4080bf79/sm/2013912-1445529336708-gc_-_Westerado_-_THUMB.jpg","duration":815,"publication_date":"2015-10-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-long-wait-for-episodic-games-the-patch-127","changefreq":"weekly","video":[{"title":"2015:E127 - The Long Wait for Episodic Games - The Patch #127","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss inconsistent release schedules for episodic games on this week's The Patch! This episode originally aired on October 21, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-long-wait-for-episodic-games-the-patch-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03dd8041-44b8-47db-9010-cab5e88e516f/sm/2013912-1445527684947-Patch_-_temp_thumb.jpg","duration":3647,"publication_date":"2015-10-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-13","changefreq":"weekly","video":[{"title":"2015:E13 - Star Wars The Force Awakens: We Know EVERYTHING? Well...","description":"We are EXPERTS in The Force Awakens because we have seen all the trailers! A lot! So let's take a look at what we know and see how much of the movie we've got pegged. Place your bets on how wrong we are!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7142b62-45e6-495e-978e-58bb3a155e3a/sm/24363-1445498985561-thumbnail.jpg","duration":660,"publication_date":"2015-10-22T07:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-15","changefreq":"weekly","video":[{"title":"2016:E133 - Would You Pay For Ad-Free YouTube?","description":"What do you think of paying a monthly subscription fee for YouTube Red","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b9b0af8-5eca-431f-9d5c-f38e18dc131e/sm/1663966-1445475826109-pay_for_thumb.jpg","duration":309,"publication_date":"2015-10-22T01:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-130","changefreq":"weekly","video":[{"title":"2015:E132 - Battlefront 3: What Could Have Been?","description":"Gunray was alleged to be having an affair with Lora Besh, who, in 22 BBY, just before the start of the Clone Wars, released an unauthorized biography of Gunray, entitled Gunray On Top. It spent at least several months as a top-ten bestseller, and its sales may have increased due to its subject's involvement in the war.\n\nSOURCES: \n\n\n\nLeaked Footage in Full: \n\n\n\nPrevious Battlefront III Footage: http://ptoponline.com/p=778&page=6#videos\n\n\n\nGamesindustry.biz Interview: http://www.gamesindustry.biz/articles/2012-04-26-t...\n\n\n\nLeia Organa: http://starwars.ea.com/starwars/battlefront/news/t...\n\n\n\nHan Solo: http://starwars.ea.com/starwars/battlefront/news/t...\n\n\n\nEmperor Palpatine: http://starwars.ea.com/starwars/battlefront/news/t...\n\n\n\nTraining Missions: http://starwars.ea.com/starwars/battlefront/news/t...\n\n\n\nHeroes vs. Villains: http://starwars.ea.com/starwars/battlefront/news/h...\n\n\n\nBattles: http://starwars.ea.com/starwars/battlefront/news/b...","player_loc":"https://roosterteeth.com/embed/game-news-2015-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b018bff-1189-4d13-aac8-5a76269f38c9/sm/1788484-1445463654756-theknow-battlefront3leaked_1024.png","duration":397,"publication_date":"2015-10-21T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-129","changefreq":"weekly","video":[{"title":"2015:E131 - Kojima Still at Konami?","description":"And was that really a going away party","player_loc":"https://roosterteeth.com/embed/game-news-2015-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e7760f-751e-49c9-b448-08e2f7104b5b/sm/1663966-1445393914436-kojima_thumb.jpg","duration":265,"publication_date":"2015-10-21T02:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-128","changefreq":"weekly","video":[{"title":"2015:E130 - Too Much Fallout 4?","description":"What do you think of the influx of Fallout merch Too much or not enough","player_loc":"https://roosterteeth.com/embed/game-news-2015-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/299053ab-b4ea-44c2-b14c-88f23e63f684/sm/1663966-1445302809697-fallout_thumb.jpg","duration":149,"publication_date":"2015-10-20T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-127","changefreq":"weekly","video":[{"title":"2015:E129 - Fallout 4: Launch Info","description":"Lawrence isn't here to write the description like he usually does for Know episodes, so this is all you're gonna get today.","player_loc":"https://roosterteeth.com/embed/game-news-2015-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c87c1202-c33c-4ed1-93ea-13aac6d0e876/sm/1788482-1445293360447-untitled-1_1024.jpg","duration":237,"publication_date":"2015-10-19T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-126","changefreq":"weekly","video":[{"title":"2015:E128 - New Console Next Year?","description":"In 2010, a scientist discovers aliens in orbit that resemble a cross between H.R. Giger's famous creation and Predator who want to invade Earth. They choose to start their invasion in Ghana because it is the most peaceful nation on the planet. The murderous aliens claim that they will have the entire planet colonized by the year 2016 (TWENTY SIXTEEN!).\n\nSOURCES: \n\n\n\nWall Street Journal Report: http://www.wsj.com/articles/nintendo-begins-distri...\n\n\n\nNintendo Developer Portal: https://developer.nintendo.com/home\n\n\n\nSquare Developing Dragon Quest XI: http://www.wired.co.uk/news/archive/2015-07/28/dra...","player_loc":"https://roosterteeth.com/embed/game-news-2015-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fab2612-e4f2-424f-b237-33121153a726/sm/1788484-1445029557191-fh_thumb_6_copy_1024_(45).jpg","duration":396,"publication_date":"2015-10-16T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-papers-please-glory-to-arstotzka","changefreq":"weekly","video":[{"title":"2015:E28 - Papers, Please: Glory to Arstotzka","description":"Join Ashley Jenkins, Gus Sorola, Ryan Haywood and Meg Turney as they discuss the messy-desk simulator, Papers, Please on this week's Patch Game Club! This episode originally aired on October 14, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-papers-please-glory-to-arstotzka","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4205025-fbf9-418c-ae4a-f85521349424/sm/2013912-1444925487863-gc_-_papers_Please_-_THUMB.jpg","duration":1029,"publication_date":"2015-10-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-34","changefreq":"weekly","video":[{"title":"2015:E126 - Is Battlefront Balanced? - The Patch #126","description":"2015:E126 - Is Battlefront Balanced? - The Patch #126","player_loc":"https://roosterteeth.com/embed/the-patch-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/658595ef-0772-43c0-b8e4-c8b27f23a0f1/sm/2013912-1444924601697-p126_-_STILL.jpg","duration":3768,"publication_date":"2015-10-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-125","changefreq":"weekly","video":[{"title":"2015:E127 - OMG Destiny Going Pay-To-Win?! No. No it's not.","description":"Everyone was freaking out over newly discovered drop buffs - could this be the end of Destiny","player_loc":"https://roosterteeth.com/embed/game-news-2015-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/beadf201-a775-45bc-8ccb-10c9be6c3d61/sm/1663966-1444922652016-detiny_thumb.jpg","duration":229,"publication_date":"2015-10-15T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-124","changefreq":"weekly","video":[{"title":"2015:E126 - Silent Hills' Cancellation \"Makes No F*CKING Sense\"","description":"Guillermo Del Toro drives a stake in Silent Hills, but there's a very far-flung ray of hope here. Microsoft might still be angling on the project, but in a different form.\n\nSOURCES: \n\n\n\nBloody Disgusting Interview: http://bloody-disgusting.com/news/3364524/intervie...\n\n\n\nKonami Revenues: http://www.statista.com/statistics/259748/konamis-...","player_loc":"https://roosterteeth.com/embed/game-news-2015-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0bf43a8-2580-4c9f-984b-b4342d6795a5/sm/1788484-1444859847554-fh_thumb_6_copy_1024_(41).jpg","duration":402,"publication_date":"2015-10-14T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-123","changefreq":"weekly","video":[{"title":"2015:E125 - Call of Duty: Black Ops III Full Campaign Unlocked at Launch","description":"Check out the full prologue for Shadows of Evil here: https://www.youtube.com/watchv=-nusN4tZYoo","player_loc":"https://roosterteeth.com/embed/game-news-2015-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8765721d-1ec4-4adf-ae6d-fa00b0de110b/sm/1663966-1444695593471-cod_thumb.jpg","duration":192,"publication_date":"2015-10-13T00:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-122","changefreq":"weekly","video":[{"title":"2015:E124 - Star Wars Battlefront BETTER on PS4?","description":"Eurogamer's Digital Foundry has discovered that the PS4 version of Battlefront runs at a way higher resolution than the Xbox One version. So, does that make the PS4 the Sith or the Jedi Neither. It's the Sullustan. Huh huh huh huh.\n\nSOURCES: \n\n\n\nDigital Foundry PS4: http://www.eurogamer.net/articles/digitalfoundry-2...\n\n\n\nDigital Foundry Xbox One: http://www.eurogamer.net/articles/digitalfoundry-2...\n\n\n\nBeta Extension: http://starwars.ea.com/starwars/battlefront/forums...\n\n\n\nHoth Imbalance: https://twitter.com/DICE_FireWall/status/652377338...\n\n\n\nWeapons, Maps Not Balanced: https://twitter.com/sledgehammer70/status/65219118...\n\n\n\nNo Partner Spawn: https://twitter.com/DICE_FireWall/status/652737454...\n\n\n\nHighlighting Party: https://twitter.com/TearGasJazz/status/65358280924...\n\n\n\nSpotlight Change to Objectives: https://twitter.com/IronFistAA/status/652894889391...\n\n\n\nWalker Assault on Every Planet: https://twitter.com/TearGasJazz/status/65278118471...\n\n\n\nNo More Content in Beta: https://twitter.com/FestivGreenBean/status/6526554...\n\n\n\nMore Modes in Battlefront: https://twitter.com/sledgehammer70/status/65296124...","player_loc":"https://roosterteeth.com/embed/game-news-2015-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc5a97de-a2c8-44cc-9ea5-56fe21f5eca5/sm/1788484-1444688196963-fh_thumb_6_copy_1024_(35).jpg","duration":411,"publication_date":"2015-10-12T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-121","changefreq":"weekly","video":[{"title":"2015:E123 - Xbox One CAN'T Beat PS4?!","description":"Xbox chief Phil Spencer admits Xbox One may have lost to PS4 for good. All hail our king, PS4","player_loc":"https://roosterteeth.com/embed/game-news-2015-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/338a9ba5-e20f-4259-8155-d2de6df1ebce/sm/24363-1444442288083-thumbnail.jpg","duration":326,"publication_date":"2015-10-10T01:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-120","changefreq":"weekly","video":[{"title":"2015:E122 - Call of Duty: Black Ops III Vanishes From Xbox Store","description":"Digital pre-orders of Call of Duty: Black Ops III are no longer available for purchase in the Xbox Store and on Amazon. Why","player_loc":"https://roosterteeth.com/embed/game-news-2015-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48cebcd0-0312-47d3-a3ff-cbf512a616de/sm/1663966-1444350044392-cod_thumb.jpg","duration":184,"publication_date":"2015-10-09T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-ethan-carter","changefreq":"weekly","video":[{"title":"2015:E27 - Vanishing of Ethan Carter: A Mind-Bending Mystery","description":"Join Ashley Jenkins, Meg Turney and Ryan Haywood as they discuss the first-person mystery, The Vanishing of Ethan Carter on this week's Patch Game Club! This episode originally aired on October 7, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-ethan-carter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10f42ef8-07fb-4c6b-bd43-46346b29f5a3/sm/2013912-1444323021344-gc_-_ethan_carter_-_THUMB.jpg","duration":1150,"publication_date":"2015-10-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-32","changefreq":"weekly","video":[{"title":"2015:E125 - Metal Gear Demands PROTECTION MONEY!? The Patch #125","description":"Join Gus Sorola, Ashley Jenkins and Ryan Haywood as they discuss paying real money for virtual insurance on this week's The Patch! This episode originally aired on October 8, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6489e8e-ad04-4564-b7ec-68e032953665/sm/2013912-1444322637239-p125-THUMB.jpg","duration":3648,"publication_date":"2015-10-08T16:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-119","changefreq":"weekly","video":[{"title":"2015:E121 - Most Anticipated Game of 2015","description":"Find out what the most anticipated game of this holiday season is.","player_loc":"https://roosterteeth.com/embed/game-news-2015-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9575c4f7-e4dd-45a2-b228-e29b39a01f72/sm/1663966-1444270076733-game_thumb.jpg","duration":210,"publication_date":"2015-10-08T02:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-118","changefreq":"weekly","video":[{"title":"2015:E120 - Microtransactions Are Coming to Destiny","description":"Soon, you'll be able to spend real world money for goods in Destiny - okay or not okay","player_loc":"https://roosterteeth.com/embed/game-news-2015-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9296cdfd-49e4-477c-a146-da30c1b67909/sm/1663966-1444171531214-Destiny_thumb.jpg","duration":211,"publication_date":"2015-10-06T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-117","changefreq":"weekly","video":[{"title":"2015:E119 - NEW Far Cry Goes PRIMAL","description":"Ubisoft has unveiled Far Cry Primal. Here's everything we know so far.","player_loc":"https://roosterteeth.com/embed/game-news-2015-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0b281f4-804f-47d2-9878-25e6968a4c2d/sm/24363-1444155416065-thumbnail.jpg","duration":292,"publication_date":"2015-10-06T18:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2015-16","changefreq":"weekly","video":[{"title":"2015:E19 - Android vs iOS: Porn Stats","description":"Ever wondered what the porn searches of Android and iOS users look like Of course you have. Now you can know!","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b7ddd9c-2235-4549-94b9-7f95ed15312b/sm/1663966-1444099045790-porn_thumb.jpg","duration":180,"publication_date":"2015-10-06T02:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-116","changefreq":"weekly","video":[{"title":"2015:E118 - Star Wars Battlefront Already a Failure?","description":"Despite the Star Wars branding, Battlefront may be a commercial disappointment. Is it possible that reddit malcontents are right\n\nSOURCES: \n\n\n\nSuperData Market Research: https://www.superdataresearch.com/blog/star-wars-b...\n\n\n\nBattlefield 3 Sales: http://www.gamesindustry.biz/articles/2012-06-29-e...\n\n\n\nBattlefield 4 Sales: http://bf4central.com/2014/05/battlefield-4-sells-...\n\n\n\nAngry Birds Downloads: http://www.forbes.com/sites/andyrobertson/2015/07/...\n\n\n\nRovio Layoffs: http://www.theverge.com/2015/8/26/9210081/rovio-la...\n\n\n\nNo Server Browser: https://www.reddit.com/r/StarWarsBattlefront/comme...\n\n\n\nBlack Ops Gross: http://www.giantbomb.com/profile/jagged85/lists/hi...","player_loc":"https://roosterteeth.com/embed/game-news-2015-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19b98c4e-236e-4ff6-90bc-a63b4bb99000/sm/1788484-1443821325063-fh_thumb_6_copy_1024_(24).jpg","duration":495,"publication_date":"2015-10-02T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-hotline-miami-murder-everything","changefreq":"weekly","video":[{"title":"2015:E26 - Hotline Miami: Murder EVERYTHING","description":"Join Gus Sorola and Ryan Haywood as they discuss the top-down cocaine-fueled shooter Hotline Miami on this week's Patch Game Club! This episode originally aired on September 30, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-hotline-miami-murder-everything","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69b28e6e-7ba1-4e87-9750-92e76cc02f25/sm/2013912-1443727713481-gc-_hotline_-_THUMB.jpg","duration":620,"publication_date":"2015-10-01T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-30","changefreq":"weekly","video":[{"title":"2015:E124 - Do Campaigns Matter? - The Patch #124","description":"Join Gus Sorola, Ashley Jenkins and Meg Turney as they discuss if games should require a single player mode on this week's The Patch! This episode originally aired on September 30, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8aa4d37-80ea-4462-8eaa-1708ac4e2710/sm/2013912-1443714096299-p124_-_STILL.png","duration":3605,"publication_date":"2015-10-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-114","changefreq":"weekly","video":[{"title":"2015:E116 - Tony Hawk's Pro Skater 5 BUSTED?","description":"Just how did this game get so messed up It may have to do with a licensing agreement signed more than a decade ago...\n\nSOURCES: \n\n\n\nEurogamer Glitch Video: \n\n\n\nHardcore Gamer Review: http://www.hardcoregamer.com/2015/09/29/review-ton...\n\n\n\nDay One Patch Report: http://www.thegamescabin.com/tony-hawks-pro-skater...\n\n\n\nTony Hawk Licensing Agreement: http://www.prnewswire.com/news-releases/tony-hawk-...","player_loc":"https://roosterteeth.com/embed/game-news-2015-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e72d98c3-78d1-4910-abf0-67a90cc229fe/sm/1788484-1443649451151-fh_thumb_6_copy_1024_(19).jpg","duration":550,"publication_date":"2015-09-30T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-113","changefreq":"weekly","video":[{"title":"2015:E115 - You Can Get the New Hitman for $35","description":"Are you feeling better or worse about Hitman's release model now that we have more details","player_loc":"https://roosterteeth.com/embed/game-news-2015-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4568031-16db-4d90-ac35-7a516e022eeb/sm/1663966-1443564449356-hitman_thumb_35.jpg","duration":209,"publication_date":"2015-09-29T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-112","changefreq":"weekly","video":[{"title":"2015:E114 - Rainbow Six Siege SUCKS?","description":"The Rainbow Six Siege beta hasn't been stable or enjoyable, at least according to various reports from its players. Is this amount of disruption expected for a beta, or does it indicate something worse\n\nSOURCES: \n\n\n\nNoobfeed blog post: http://www.noobfeed.com/blogs/4252/the-rainbow-six...\n\n\n\nBeta Dates Extended: http://forums.ubi.com/showthread.php/1275017-Close...\n\n\n\nFree Maps After Launch: https://www.reddit.com/r/Rainbow6/comments/3l7m6y/...\n\n\n\nNo Single Player Campaign: http://whatculture.com/gaming/rainbow-six-siege-co...\n\n\n\nThey're Magazines, Not Clips: https://www.reddit.com/r/Rainbow6/comments/3mnmsw/...","player_loc":"https://roosterteeth.com/embed/game-news-2015-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1b6e14e-e401-452e-bf91-68b168b80156/sm/1788484-1443483132558-fh_thumb_6_copy_1024_(15).jpg","duration":402,"publication_date":"2015-09-28T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-110","changefreq":"weekly","video":[{"title":"2015:E112 - Is Call of Duty: Black Ops III Ripping Off Last-Gen Gamers?","description":"There will be no campaign in Call of Duty: Black Ops III for last-gen gamers, but the game still cost $50 - worth it","player_loc":"https://roosterteeth.com/embed/game-news-2015-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dec3c0f8-253a-44fc-aad7-7f54a199865b/sm/1663966-1443226408247-THUMBNAIL_.jpg","duration":184,"publication_date":"2015-09-26T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-109","changefreq":"weekly","video":[{"title":"2015:E111 - Twitch HATES Sex?","description":"Another sexually explicit game has been banned on Twitch, leading the game's developer to call out the apparent double-standard in the company's policies. Are the policies there to create a good streaming environment, or are they unnecessary restrictions\n\nSOURCES: Robert Yang's Blog Post: http://www.blog.radiator.debacle.us/2015/09/on-my-...\n\n\n\nCobra Club Product Page: http://radiatoryang.itch.io/cobraclub\n\n\n\nTwitch Rules of Conduct: http://www.twitch.tv/user/legalpage=rules-of-cond...\n\n\n\nVimeo Abuse Guidelines: https://vimeo.com/help/faq/watching-videos/reporti...","player_loc":"https://roosterteeth.com/embed/game-news-2015-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c5a6cd7-cef3-494c-8a52-5abf93fd55b3/sm/1788484-1443218511650-theknow_twitchsex_1024.png","duration":525,"publication_date":"2015-09-25T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-28","changefreq":"weekly","video":[{"title":"2015:E123 - The Future of BIOSHOCK? - The Patch #123","description":"Join Ashley Jenkins, Meg Turney and Ryan Haywood as they discuss the future of the Bioshock franchise and the potential for a Voice Actor's strike on this week's The Patch! This episode originally aired on September 23, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e9552a8-1be5-46d7-9f18-2f90e503d17e/sm/2013912-1443123346040-p123_-_STILL.png","duration":3879,"publication_date":"2015-09-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-108","changefreq":"weekly","video":[{"title":"2015:E110 - Wolfenstein 2 Leaked?","description":"A voice actress from Wolfenstein: The New Order has very strongly indicated that a sequel is already in development. This not only means more Wolfenstein, but may indicate that a long-dormant style of game is still viable...\n\nSOURCES: Eurogamer Translation: http://www.eurogamer.net/articles/2015-09-23-the-v...","player_loc":"https://roosterteeth.com/embed/game-news-2015-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7579536c-6843-4e11-9146-6af8337bb518/sm/1788484-1443041364670-fh_thumb_6_copy_1024_(10).jpg","duration":290,"publication_date":"2015-09-23T20:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-107","changefreq":"weekly","video":[{"title":"2015:E109 - The END of Gaming Consoles (Again)?!","description":"It's doomsday. An analyst has predicted THE END of video game consoles. But is it really all that likely or is he completely wrong","player_loc":"https://roosterteeth.com/embed/game-news-2015-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e5bdc1-9048-4374-8c18-512b4f285407/sm/24363-1443047029795-thumbnail.jpg","duration":491,"publication_date":"2015-09-23T00:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-106","changefreq":"weekly","video":[{"title":"2015:E108 - Hitman Delayed; Sticking With Strange Release Model","description":"What do you think of this \"big chunk upfront, more later\" release model for Hitman","player_loc":"https://roosterteeth.com/embed/game-news-2015-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/183fad96-68f3-4983-991d-c39cb5fe0bea/sm/1663966-1442963984716-hitman_thumb.jpg","duration":190,"publication_date":"2015-09-22T23:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-105","changefreq":"weekly","video":[{"title":"2015:E107 - Bioshock Remastered Collection?","description":"Would you be willing to buy Bioshock again to play on Xbox One or PS4","player_loc":"https://roosterteeth.com/embed/game-news-2015-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6af3661-9716-4338-83bb-27a0390bdb80/sm/1663966-1442880507406-bioshock_thumb_2.jpg","duration":147,"publication_date":"2015-09-22T00:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-104","changefreq":"weekly","video":[{"title":"2015:E106 - Free to Play Games STEAL Your Data?","description":"An anonymous editorial seems to spill the hard truth about free-to-play games. Just because you're not paying money doesn't mean you aren't paying something.\n\nSOURCES: TouchArcade Op-Ed: http://toucharcade.com/2015/09/16/we-own-you-confe...","player_loc":"https://roosterteeth.com/embed/game-news-2015-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e26e92a-7317-4ba4-87e3-3337d96953ae/sm/1788484-1442876953789-theknow_f2pv2_1024.png","duration":424,"publication_date":"2015-09-21T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-103","changefreq":"weekly","video":[{"title":"2015:E105 - Star Fox Zero Delayed to 2016","description":"Nintendo has announced that it's pushing back Star Fox Zero to Q1 2016. What will they make of this holiday season now that they've pushed back two huge titles","player_loc":"https://roosterteeth.com/embed/game-news-2015-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6291860a-6b12-4ace-80f4-71ac7ec2efc6/sm/1663966-1442623982439-star_fox_thumb.jpg","duration":188,"publication_date":"2015-09-19T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-rocket-league","changefreq":"weekly","video":[{"title":"2015:E25 - Rocket League: Better than Soccer?","description":"Join Burnie Burns, Bruce Greene, and Ryan Haywood as they discuss the car-based soccer game on this week's Patch Game Club! This episode originally aired on September 16, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-rocket-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b336fb0-8d16-4e8c-ba50-981651352ad3/sm/2013912-1442518103012-GC_Rocket_League_-THUMB.png","duration":1135,"publication_date":"2015-09-17T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-27","changefreq":"weekly","video":[{"title":"2015:E122 - The Hunt for Real Pokemon!? - The Patch #122","description":"Join Lawrence Sonntag, Ashley Jenkins and Ryan Haywood as they discuss the augmented reality Pokemon game, Pokemon GO! on this week's The Patch! This episode originally aired on September 17, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12607801-8dfb-4de9-bbbb-2533e540cb32/sm/2013912-1442506494909-p122-thumb.png","duration":3868,"publication_date":"2015-09-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-102","changefreq":"weekly","video":[{"title":"2015:E104 - The Last of Us 2 Confirmed?","description":"The devs at Naughty Dog have leaked their own game! And it's The Last of Us 2. Shock! Awe! GIVE IT TO US NOW.","player_loc":"https://roosterteeth.com/embed/game-news-2015-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffe382f9-5ad2-423e-b8fb-c8276cb8c8bf/sm/24363-1442450069497-thumbnail.jpg","duration":347,"publication_date":"2015-09-16T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-101","changefreq":"weekly","video":[{"title":"2015:E103 - Is This the Creepiest VR Game Ever?","description":"Creeping on virtual school girls - gross or okay","player_loc":"https://roosterteeth.com/embed/game-news-2015-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf100828-a64e-409d-882b-98db2547ac39/sm/1663966-1442361760695-creepy_thumb_2.jpg","duration":162,"publication_date":"2015-09-16T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-97","changefreq":"weekly","video":[{"title":"2015:E99 - GTA Online FREE Update!","description":"GTA Online is about to get more content! It's all free and it sounds pretty great. The only drawback is that it won't be coming to some platforms...\n\nSOURCES:\n\n\n\nSocial Club Blog Post: http://socialclub.rockstargames.com/news/article/5...\n\n\n\nOfficial Update Trailer:","player_loc":"https://roosterteeth.com/embed/game-news-2015-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fcab6e2-2480-4588-9c78-2d116a76e85e/sm/1788484-1442007444120-fh_thumb_6_copy_1024_(2).jpg","duration":337,"publication_date":"2015-09-11T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-96","changefreq":"weekly","video":[{"title":"2015:E98 - Pokemon Go Invades Real Life!","description":"The newest Pokemon game, Pokmon Go, has been revealed and it's a huge departure from normal games. It's mobile, for one, and augmented reality, for two!","player_loc":"https://roosterteeth.com/embed/game-news-2015-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bb203ff-7140-4b3e-b73e-2c74690d447b/sm/24363-1441938202832-thumbnail.jpg","duration":297,"publication_date":"2015-09-11T02:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-95","changefreq":"weekly","video":[{"title":"2015:E97 - Massive Minecraft Update","description":"Big changes are finally coming to Minecraft: Pocket Edition, including Windows 10 cross-play, weather, and The Nether!","player_loc":"https://roosterteeth.com/embed/game-news-2015-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b402729e-a7ff-4f59-850d-fcb90fef1e43/sm/1663966-1441928707152-minecraft_thumb.jpg","duration":413,"publication_date":"2015-09-10T23:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-spec-ops-the-line-war-has-no-winners","changefreq":"weekly","video":[{"title":"2015:E24 - Spec Ops: The Line: War Has No Winners","description":"Join Ryan Haywood, Meg Turney and Josh Flanagan as they discuss the subversive military shooter, Spec Ops: The Line on this week's Patch Game Club! This episode originally aired on September 9, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-spec-ops-the-line-war-has-no-winners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f64193d4-9754-4e66-8ae3-ea7cd12efb40/sm/2013912-1441899695554-gc_-_Spec_Ops_-_THUMB.png","duration":911,"publication_date":"2015-09-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-26","changefreq":"weekly","video":[{"title":"2015:E121 - Dinklebot vs. Nolanbot: WHO WINS? - The Patch #121","description":"Join Meg Turney, Ashley Jenkins and Ryan Haywood as they discuss the wonders of Virtual Reality on this week's The Patch! This episode originally aired on September 9, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9ca95cd-4716-402a-8619-17e07bd2652a/sm/2013912-1441900098805-p121-THUMB_-_3.png","duration":3781,"publication_date":"2015-09-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2015-15","changefreq":"weekly","video":[{"title":"2015:E18 - Hey Siri! Is Apple Out of Ideas?","description":"Apple announced a ton of stuff at their Hey Siri event: iphones, ipads, iOSes, watches, colors, pencils, tv boxes... but is any of it actually impressive","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efcd4c62-1c93-4712-981e-57bb14c508a2/sm/24363-1441858086313-thumbnail.jpg","duration":505,"publication_date":"2015-09-10T04:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-94","changefreq":"weekly","video":[{"title":"2015:E96 - Fallout 4 MYSTERY DLC? - The Know","description":"Fallout 4 has a season pass, only nobody knows what will be in it. While we think it's strange for Bethesda to ask money for a mystery box, they at least promised all sorts of free patches and mod support.\n\nSOURCES:\n\nBethesda Blog Post: http://bethesda.net/#en/events/game/fallout-4-laun...\n\nWritten By: Lawrence Sonntag\n\nHosted By: Adam Kovic, Bruce Greene, and Lawrence Sonntag","player_loc":"https://roosterteeth.com/embed/game-news-2015-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d99c02c-3284-4c0e-998a-eb507969dbab/sm/1788484-1441833336091-fh_thumb_5_copy_1024_(60).jpg","duration":378,"publication_date":"2015-09-09T19:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-93","changefreq":"weekly","video":[{"title":"2015:E95 - Slave Tetris TOO OFFENSIVE for Steam?!","description":"Who would have guessed a game that takes a time honored classic like Tetris and asks you to use your skills to stuff as many slaves as you can into a ship would be met with outrage on social media Weird, right!","player_loc":"https://roosterteeth.com/embed/game-news-2015-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14d3f8e3-8ccf-4970-be97-584f734b65fe/sm/24363-1441469289846-thumbnail.jpg","duration":344,"publication_date":"2015-09-04T16:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-bastion-take-a-l-l-our-money","changefreq":"weekly","video":[{"title":"2015:E23 - Bastion : Take ALL Our Money!","description":"Join Ashley Jenkins, Gus Sorola and Ryan Haywood as they discuss the action-RPG Bastion on this week's Patch Game Club! This episode originally aired on September 2, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-bastion-take-a-l-l-our-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0b1ebe0-681c-43d1-af02-962f1c06755f/sm/2013912-1441306700364-gc_-_Bastion_-_THUMB.jpg","duration":1089,"publication_date":"2015-09-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-25","changefreq":"weekly","video":[{"title":"2015:E120 - We Were Wrong About VR!?- The Patch #120","description":"Join Gus Sorola, Ashley Jenkins and Ryan Haywood as they discuss the wonders of Virtual Reality on this week's The Patch! Also be sure to stick around for a special supplemental episode of the Patch from the YouTube Gaming stage at PAX, featuring Kinda Funny's Greg Miller! This episode originally aired on September 2, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a48ed8a-e46b-4c36-adf1-c6b0d12c4074/sm/2013912-1441294869553-p120-THUMB.jpg","duration":6631,"publication_date":"2015-09-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-92","changefreq":"weekly","video":[{"title":"2015:E94 - Steam's Uncensored Sex Game?!","description":"What do you think about these creepy ghosts","player_loc":"https://roosterteeth.com/embed/game-news-2015-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30b2e5f3-c65a-45bf-a05b-8baed447cf1d/sm/24363-1441310546873-sexgame.jpg","duration":155,"publication_date":"2015-09-02T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-91","changefreq":"weekly","video":[{"title":"2015:E93 - Star Wars Battlefront: A New HATE?","description":"EA revealed that Battlefront won't have a server browser, in addition to some worrying statements about potential copyright issues. Does this mean we won't be able to play where we want","player_loc":"https://roosterteeth.com/embed/game-news-2015-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0cd70f0-8b4b-4eb5-8bfc-8f92203b809c/sm/24363-1441310439377-battlefront.jpg","duration":287,"publication_date":"2015-09-02T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-90","changefreq":"weekly","video":[{"title":"2015:E92 - Steam Game Gives You MALWARE!","description":"A game called Dynostopia on Steam Greenlight has been outed for installing malware and messing with your Steam profile. Who's surprised What, nobody!","player_loc":"https://roosterteeth.com/embed/game-news-2015-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3a601db-e33c-47a2-9363-bf032375574a/sm/24363-1441310012669-malware.jpg","duration":253,"publication_date":"2015-09-01T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-89","changefreq":"weekly","video":[{"title":"2015:E91 - Deus Ex Pre-order Disaster","description":"What do you think of pre-orders","player_loc":"https://roosterteeth.com/embed/game-news-2015-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fb8ee51-60b6-4575-9699-53526705c1cf/sm/24363-1441309907478-deusex.jpg","duration":190,"publication_date":"2015-09-01T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2015-14","changefreq":"weekly","video":[{"title":"2015:E17 - NASA Begins Year-Long Mars Experiment","description":"Let's talk about The Weasel! And Mars.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f8d0c2f-0b94-451c-b75c-1ce76c147944/sm/24363-1441309738006-nasa.jpg","duration":161,"publication_date":"2015-08-31T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-88","changefreq":"weekly","video":[{"title":"2015:E90 - New Minecraft Characters Revealed","description":"What obscure actor would you like to see in more video games","player_loc":"https://roosterteeth.com/embed/game-news-2015-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a34a0ff-c423-48d0-b310-29c727e4041a/sm/24363-1441309370938-minecraft.jpg","duration":133,"publication_date":"2015-08-28T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-87","changefreq":"weekly","video":[{"title":"2015:E89 - Assassin's Creed: Syndicate PC Fail","description":"How do you feel about PC versions lagging behind their console counterparts when it comes to release dates","player_loc":"https://roosterteeth.com/embed/game-news-2015-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdb25c49-77f7-42a3-9130-3c54ddfec258/sm/24363-1441309282705-acpc.jpg","duration":173,"publication_date":"2015-08-27T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-24","changefreq":"weekly","video":[{"title":"2015:E119 - Saving Sexy Teens - The Patch #119","description":"Join Jeremy Dooley, Meg Turney and Ryan Haywood as they discuss the 80's slasher throwback game, Until Dawn, on this week's The Patch! This episode originally aired on August 26, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01e76573-7ecc-456c-ae15-8c6db8771f5e/sm/2013912-1440689654484-p119_-_STILL.jpg","duration":3671,"publication_date":"2015-08-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-12","changefreq":"weekly","video":[{"title":"2015:E12 - LAZER TEAM's World Premiere is Happening!","description":"We've got all the details on where and when LAZER TEAM will make it's debut!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f03d4d0-b7fb-4a3c-922f-8486d15ef23c/sm/24363-1441309161801-lazereteam.jpg","duration":203,"publication_date":"2015-08-26T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-86","changefreq":"weekly","video":[{"title":"2015:E88 - YouTube Gaming KILLS Twitch?","description":"YouTube's new game streaming service launches today, so what does that mean for Twitch.tv We break down the competition and give our best guess as to what the future holds.","player_loc":"https://roosterteeth.com/embed/game-news-2015-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1a7ec7f-02b1-418f-ac50-09a200aa927a/sm/24363-1441309018306-ytgamingvstwitch.jpg","duration":539,"publication_date":"2015-08-26T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-85","changefreq":"weekly","video":[{"title":"2015:E87 - Men Threaten Violence Over Pok?mon","description":"Let's focus on something positive - like Pokemon. If you watched the show, share your favorite episode in the comments. If not, share your favorite game.","player_loc":"https://roosterteeth.com/embed/game-news-2015-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e66df4be-9976-4ac7-a58e-ff20aeb80b18/sm/24363-1441308874552-pokemonplot.jpg","duration":182,"publication_date":"2015-08-25T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-84","changefreq":"weekly","video":[{"title":"2015:E86 - Metal Gear Solid 5: Is It Good?","description":"What may be Hideo Kojima's last Metal Gear also turns out to be the best one in the entire series. Reviews are in, numbers are high, and life is good.","player_loc":"https://roosterteeth.com/embed/game-news-2015-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ca0b76c-4809-43d6-8920-4454c7ebb5dd/sm/24363-1441308761473-nxdigital.jpg","duration":419,"publication_date":"2015-08-24T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-83","changefreq":"weekly","video":[{"title":"2015:E85 - Is Nintendo's New Console All Digital?","description":"Could Nintendo be going all-digital with their next console","player_loc":"https://roosterteeth.com/embed/game-news-2015-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6fa9837-093a-4f9f-8f7e-f720beb71143/sm/24363-1441308655204-nxdigital.jpg","duration":180,"publication_date":"2015-08-21T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-82","changefreq":"weekly","video":[{"title":"2015:E84 - Hardcore Gamers Don't Exist?","description":"Turns out that playing games a lot doesn't make you a \"hardcore\" gamer. In fact, the term doesn't really apply to anyone.","player_loc":"https://roosterteeth.com/embed/game-news-2015-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d156d46-50bb-48d3-aec3-e1df48669327/sm/24363-1441308556809-hardcoregamers.jpg","duration":462,"publication_date":"2015-08-21T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-81","changefreq":"weekly","video":[{"title":"2015:E83 - Destiny's Upcoming Changes","description":"Which change are you most excited about and do you think the game has changed enough to bring back people who have left","player_loc":"https://roosterteeth.com/embed/game-news-2015-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3619ddf-6cd7-4f49-8d92-293f0b7974c1/sm/24363-1441308370677-destinychanges.jpg","duration":169,"publication_date":"2015-08-20T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-from-dust-playing-god","changefreq":"weekly","video":[{"title":"2015:E22 - From Dust : Playing God","description":"Join Ashley Jenkins, Gus Sorola and Ryan Haywood as they discuss the god-game From Dust on this week's Patch Game Club! This episode originally aired on August 12, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-from-dust-playing-god","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78545cc7-300d-4967-bcb4-66360cb4a403/sm/2013912-1440094905967-GC_FD-THUMB.jpg","duration":1709,"publication_date":"2015-08-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-23","changefreq":"weekly","video":[{"title":"2015:E118 - Weirdest KNOCK-OFF Game Consoles? - The Patch #118","description":"Join Meg Turney, Ashley Jenkins and Ryan Haywood as they discuss the wild world of knock-off video game consoles on this week's The Patch! This episode originally aired on August 19, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43c35e04-7a33-45fa-95c7-30ddf5c0936f/sm/2013912-1440083988761-p118_-_STILL.jpg","duration":3891,"publication_date":"2015-08-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tech-and-science-news-2015-13","changefreq":"weekly","video":[{"title":"2015:E16 - Windows 10 BREAKS Pirated Games?! Not exactly...","description":"Windows 10 is under fire TWICE over piracy: first over claims that it will invade your PC to shut down pirated software, and twice over admissions that it won't run games with old DRM. Should have known SecuROM an Safedisc would rise from their graves to annoy us one last time.","player_loc":"https://roosterteeth.com/embed/tech-and-science-news-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef697cab-e2ea-411f-9a8e-b95a1a5b1a66/sm/24363-1440047196310-thumbnail.jpg","duration":384,"publication_date":"2015-08-20T05:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-11","changefreq":"weekly","video":[{"title":"2015:E11 - Star Wars Land LAME?","description":"Disney announced Star Wars themed additions to both Disneyland and Disney World. Is it the second coming of our lord and savior Obi-Wan or just a lame cash-in","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b152985-fff6-4a43-b42e-942d0ecfb99f/sm/24363-1439851924606-starwarsland.jpg","duration":516,"publication_date":"2015-08-17T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-80","changefreq":"weekly","video":[{"title":"2015:E82 - Rocket League BEATS Minecraft?","description":"The biggest games on YouTube are in and... where's Minecraft Who cares! Rocket League is the best!","player_loc":"https://roosterteeth.com/embed/game-news-2015-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4401eb91-607e-45cf-a502-4b5cd1761966/sm/24363-1439616728093-thumbnail.jpg","duration":224,"publication_date":"2015-08-15T05:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-79","changefreq":"weekly","video":[{"title":"2015:E81 - Games Make You Violent?! Not Really...","description":"We've seen tons of research examining the link between violent games and violent behavior, but this one is more conclusive than most. We bottom-line the research for you and share why it may not be such a big deal.","player_loc":"https://roosterteeth.com/embed/game-news-2015-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc274c75-01ae-4609-9304-1a1c98e8b561/sm/24363-1439616594521-games_make_you_violent.jpg","duration":543,"publication_date":"2015-08-14T05:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-78","changefreq":"weekly","video":[{"title":"2015:E80 - Star Wars Battlefront: NO ONE Wants a Campaign?!","description":"From what we've heard, Battlefront fans want to see a campaign, but EA thinks they know what you want more than you do.","player_loc":"https://roosterteeth.com/embed/game-news-2015-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0fa9d44-b95b-453e-97d0-bda32cfd9ebf/sm/24363-1439616266356-battlefront_campaign.jpg","duration":312,"publication_date":"2015-08-14T05:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-massive-chalice-it-s-all-about-the-breeding","changefreq":"weekly","video":[{"title":"2015:E21 - Massive Chalice : It's All About The Breeding","description":"Join Gus Sorola and Ryan Haywood as they discuss Massive Chalice, the bloodline-based strategy game on this week's Patch Game Club brought to you by Fallout Shelter (http://bit.ly/1N61V07) This episode originally aired on August 12, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-massive-chalice-it-s-all-about-the-breeding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8260781d-de18-4c67-99ad-397ae2b53aa2/sm/2013912-1439496209862-GC_MassChalice-THUMB.jpg","duration":841,"publication_date":"2015-08-13T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-33","changefreq":"weekly","video":[{"title":"2015:E117 - LIVE from RTX - The Patch #117","description":"Join Ashley Jenkins, Meg Turney, Ryan Haywood and Gus Sorola as they discuss the new World of Warcraft Expansion \"Legion\" on this week's The Patch! This episode originally aired on August 8, 2015.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f86e9dd-3e39-4c2d-8da6-6736b9afe228/sm/2013912-1439478855310-p117_-_STILL.jpg","duration":3729,"publication_date":"2015-08-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-77","changefreq":"weekly","video":[{"title":"2015:E79 - New eSports Drug Rules Still Pot Friendly?","description":"What do you think of the new rules","player_loc":"https://roosterteeth.com/embed/game-news-2015-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87a980fd-2744-45ff-acbb-6594a321f4f8/sm/24363-1439616141208-esports_pot_friendly.jpg","duration":241,"publication_date":"2015-08-12T05:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-76","changefreq":"weekly","video":[{"title":"2015:E78 - Fallout 4 Gameplay Leaks!","description":"It may be hard *snicker* to find, but we'll take any excuse to go to Pornhub on our work computers. Let it never be said that we don't sacrifice for Fallout 4 gameplay. God bless America.","player_loc":"https://roosterteeth.com/embed/game-news-2015-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e09ca92-c048-4584-9180-fc7ce85bba18/sm/24363-1439615965886-fallout_4_gameplay_leaked.jpg","duration":379,"publication_date":"2015-08-12T05:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-75","changefreq":"weekly","video":[{"title":"2015:E77 - Will Halo 5 Be Lame?!","description":"What do you think of Halo 5's rating Also: We've got a brand new set debuting this week - stay tuned for that!","player_loc":"https://roosterteeth.com/embed/game-news-2015-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d96ee8a3-038d-4765-8304-ad7452ebfc12/sm/24363-1439615300690-halo_5_not_violent_enough.jpg","duration":326,"publication_date":"2015-08-11T05:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-hot-date-pugs-are-d-i-c-k-s","changefreq":"weekly","video":[{"title":"2015:E20 - Hot Date: Pugs are DICKS!","description":"Join Ashley Jenkins, Meg Turney and Ryan Haywood as they discuss Hot Date, the pug dating simulator on this week's Patch Game Club! This episode originally aired on August 5, 2015. To follow The Patch as a Steam Curator go to: http://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-hot-date-pugs-are-d-i-c-k-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1624a8a2-1808-470b-a82e-a17639cdca15/sm/1461653-1438880225529-gc_-_Hot_Date_-_THUMB.jpg","duration":656,"publication_date":"2015-08-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-31","changefreq":"weekly","video":[{"title":"2015:E116 - Playstation's Got a SECRET PLAN? - The Patch #116","description":"Join Ashley Jenkins, Meg Turney and Ryan Haywood as they discuss Gamescom, Steam scams and more on this week's The Patch! This episode originally aired on August 5, 2015. To follow The Patch as a Steam Curator go to: http://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ee4337b-6dda-41f1-9cdf-4748a4ab4305/sm/1461653-1438878539511-p116_-_Sponsor_Thumb.jpg","duration":1964,"publication_date":"2015-08-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-74","changefreq":"weekly","video":[{"title":"2015:E76 - No Minecraft 2 EVER?!","description":"If you thought we might ever see a Minecraft 2, not just 2.0, think again. Mojang says that ain't happening.","player_loc":"https://roosterteeth.com/embed/game-news-2015-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/685b226e-ea87-4f38-beda-6474b4487f4c/sm/24363-1439615153335-no_minecraft_2.jpg","duration":405,"publication_date":"2015-08-06T05:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-73","changefreq":"weekly","video":[{"title":"2015:E75 - Is WoW Getting Desperate?","description":"My two cents: Desperate No way! I'm hyped as all hell for this expansion. GIMME GIMME GIMME!","player_loc":"https://roosterteeth.com/embed/game-news-2015-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73b0fbf2-123c-4b45-b61e-7a6bd7c6bce5/sm/24363-1439614942447-wow_desperate.jpg","duration":184,"publication_date":"2015-08-06T05:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-72","changefreq":"weekly","video":[{"title":"2015:E74 - Steam Game SCAM?!","description":"Another game on Steam is trying to steal your money! Are you going to stand for that Grab the pitchforks!","player_loc":"https://roosterteeth.com/embed/game-news-2015-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dab6831a-5eb3-4092-bf10-763e115130db/sm/24363-1439614789547-steam_scam.jpg","duration":351,"publication_date":"2015-08-06T04:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-71","changefreq":"weekly","video":[{"title":"2015:E73 - $1,000 Bounty for Mario Glitch?!","description":"Would you share the glitch for money","player_loc":"https://roosterteeth.com/embed/game-news-2015-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e820a648-b899-4321-970b-dc2f31a5547d/sm/24363-1439614644506-glitchbounty.jpg","duration":125,"publication_date":"2015-08-06T04:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-70","changefreq":"weekly","video":[{"title":"2015:E72 - Gamescom the NEW E3?!","description":"E3 was good this year, but some of the best announcements got saved for Gamescom. Is E3's annual domination at an end","player_loc":"https://roosterteeth.com/embed/game-news-2015-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84b6ff8d-23d7-4b42-b670-18d33333759d/sm/24363-1438804461738-gamescome3.jpg","duration":316,"publication_date":"2015-08-04T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-69","changefreq":"weekly","video":[{"title":"2015:E71 - Destiny's Dinklebot REPLACED?!","description":"Share your favorite Dinklebot line in the comments!","player_loc":"https://roosterteeth.com/embed/game-news-2015-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfb5d214-a708-4f40-aafe-018b2a1f2296/sm/24363-1438804370954-ripdinkelbot.jpg","duration":167,"publication_date":"2015-08-04T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-68","changefreq":"weekly","video":[{"title":"2015:E70 - Twitch Streamer FAKES Swatting","description":"UPDATE: After just 24 hours off the streaming platform, Trick's Twitch channel has been restored.Do you think the punishment fits the crime","player_loc":"https://roosterteeth.com/embed/game-news-2015-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/366e2cf5-b781-480a-9586-19f7d5a90df6/sm/24363-1438804295409-fakeswatting.jpg","duration":256,"publication_date":"2015-08-03T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-67","changefreq":"weekly","video":[{"title":"2015:E69 - Konami a Prison Camp?","description":"Reports claim that Konami's work environment is getting worse and worse for the developers left on console projects. Does this mean they are done with console development","player_loc":"https://roosterteeth.com/embed/game-news-2015-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6d98187-3a41-4bd9-a62f-7c628711b234/sm/24363-1438804165500-konamiprison.jpg","duration":349,"publication_date":"2015-08-03T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-66","changefreq":"weekly","video":[{"title":"2015:E68 - Sony Lets YOU Pick Your Free Game","description":"Check out the full announcement blog here: http://blog.us.playstation.com/2015/0...","player_loc":"https://roosterteeth.com/embed/game-news-2015-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1071b519-46ad-4160-9715-b3d9c8107b23/sm/24363-1438804016063-psnfreegames.jpg","duration":112,"publication_date":"2015-07-31T19:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-the-rundown-292","changefreq":"weekly","video":[{"title":"2016:E16 - The Rundown – #292","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nYES! Another Fails of the Weak. This week's fails should make you think twice before crossing the road. Hey, at least look both ways before crossing the street. Michael and Gavin get to experience a pretty \"grand\" Grand Theft Auto V fail, as well as more fails in Call of Duty: Black Ops 3, Star Wars Battlefront, Dark Souls 3, and Destiny.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-the-rundown-292","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2845abf-866c-4a0b-8809-1c3e5ae429af/sm/2013912-1461253679175-02_Fail_292_Thumb.jpg","duration":163,"publication_date":"2016-04-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-204","changefreq":"weekly","video":[{"title":"2016:E114 - Minecraft – Episode 204 – Ocarina of Time","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. || In this instalment of \"Let's Play Minecraft: Who the Hell Came into the Office Today Edition,\" Geoff, Michael, and Ryan check out a cool adventure map from the creators of There is No Learning Curve: Templars of Hyrule! Time to put on your tunics and start questing for the Master Sword in this epic Zelda adventure. Certainly no, \"I wonder what's for dinner?\" or \"Squadala! We are off!\" to be found here. This is good Legend of Zelda. This is Muthafuckin' Ocarina of Muthafuckin' Time, muthafucka! Can our three Links conquer the perils of the Great Deku Tree? And more importantly, will they at least struggle less than they do during No Learning Curve? Luckily, the answer is yes.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-204","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4906005-3b06-45e6-82ab-ca3664026544/sm/1104396-1461217838849-mc_thumb.jpg","duration":2221,"publication_date":"2016-04-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-grab-bag-11-cut-that-completely","changefreq":"weekly","video":[{"title":"2016:E29 - Grab Bag #11 – CUT THAT COMPLETELY","description":"Get yourself a random assortment of clips from the Achievement Hunter cutting room floor!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-grab-bag-11-cut-that-completely","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2df1c10-be52-47eb-820e-462fbf275606/sm/2013912-1461106284342-GrabBag_Thumb.jpg","duration":194,"publication_date":"2016-04-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rainbow-six-siege-black-ice","changefreq":"weekly","video":[{"title":"2016:E113 - Rainbow Six: Siege – Black Ice","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\n\n\nJack, Geoff, Michael, Jeremy, and Ryan infiltrate an icy ship base again and again and again in Rainbow 6 Siege's Black Ice DLC! They have to keep playing because they want to beat it. They want to beat it without anyone dying. They want to beat it without Ryan teamkilling anyone. They want to beat it with a sniper rifle and four shields. They want to beat it using only melee. They want to beat it with flashbangs and no pants. They want to beat it with two toothpicks and a garden hose. They want to beat it with passive aggressive internet comments. They want to beat it with dead horses. They want to beat it with a broken lawn chair. They want to beat with the fractured pieces of a broken \"How to Lose a Guy in 10 Days\" DVD. They want to beat it with a ten gallon barrel of water-based lubricant. They want to beat it while also getting mai-pedis. They want to beat it with love and respect. And they're not going to give up until they've done it, gosh darnit!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rainbow-six-siege-black-ice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd3db508-0f03-4af0-9eb8-8b6222cad5d4/sm/2013912-1461087810936-blackice_thumb.jpg","duration":2239,"publication_date":"2016-04-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-slither-io","changefreq":"weekly","video":[{"title":"2016:E12 - Slither.io","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. || Michael and Gavin slither their way into Slither.io! Watch as generations of snakes fall as they eat snake after snake to become the worlds largest snake ever! Or are they worms? It's honestly hard to tell.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-slither-io","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63d093a3-0acd-437d-8d4a-c6aa306bfd59/sm/2013912-1461107148085-pp_slitherio.jpg","duration":1656,"publication_date":"2016-04-19T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-nhl-week-5-southeast-pimberton","changefreq":"weekly","video":[{"title":"2016:E28 - 2016 Achievement Hunter Hockey League: Southeast Pimberton Division - Week 5","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nPimp some Pimberton threads: http://bit.ly/1pBPjEx || We are in week 5 of the Achievement Hunter Hockey tournament and things are getting tense! We are getting close to the finals and the pressure is building as to their climax! Who will turn out on top?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-nhl-week-5-southeast-pimberton","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43121bd0-aa65-43a8-bc25-09d4dbdaae39/sm/2013912-1461101784044-nhl5_thumb.jpg","duration":2225,"publication_date":"2016-04-19T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-party-8-king-boo-s-haunted-hideaway-part-2","changefreq":"weekly","video":[{"title":"2016:E112 - Mario Party 8: King Boo's Haunted Hideaway Part 2","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com.\n\nHi everyone! Jeremy D-dawgg Doodly Dooleyoo is back! Now, a lot of you might have seen the description last part. But I'm here to rain some knowledge down on you like a snowstorm. That wasn't me. That was shifty-ass-shifty-Larry. How dare he take my job in explaining how cool Mario Party 8 is! Besides, I'm sure you guys already know how awesome it can be to see Michael, Gavin, Ryan, and I compete against each other in all kinds of minigames. So watch and see how good I am! And yeah, this is Mario Party, in which I'd beat Larry if I ever needed to. Not Mario Kart, though. He kicked my ass in that when we played. But I was still Wario... who's the coolest by far. But that's not here or now... Mario Party is. So watch it with your face eyes! I'll just wait here.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-party-8-king-boo-s-haunted-hideaway-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfa1c16a-714f-4422-83a4-cd68cbb0325a/sm/2013912-1461080068696-boo_thumb.jpg","duration":2246,"publication_date":"2016-04-19T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-313","changefreq":"weekly","video":[{"title":"2016:E19 - Sharp Objects Vs Gavin's Desk – AHWU for April 18th, 2016 (#313)","description":"Thanks to Topps for sponsoring- download the Star Wars Card Trader app here to get started: http://m.onelink.me/167cc8c1 || Live Achievement Hunter? Want to see them at a live show on June 17th with all their Let's Play buds (plus Funhaus)!? Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at http://RoosterTeethLive.com. \n\n\n\nMichael's brought in a lot of new, extremely sharp and relatively dangerous toys to the Achievement Hunter office. Gavin also has a new, dull-in-the-sharpness-sense-but-not-dull-in-the-excitement-sense toy to bother people with as well. Nobody is safe. Not Geoff. Not Jack. And certainly not Gavin's desk. || Vid of week: https://www.youtube.com/watch?v=udo2IQXsGV8 || Community vid: https://www.youtube.com/watch?v=Nw4F8ngYkG8","player_loc":"https://roosterteeth.com/embed/ahwu-2016-313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4213056-6a71-4207-ba7f-b9c65e2765cb/sm/2013912-1461019493662-ahwu_thumb.jpg","duration":602,"publication_date":"2016-04-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-wheel-of-fortune-part-5-all-day-free-play","changefreq":"weekly","video":[{"title":"2016:E111 - Wheel of Fortune Part 5 – All Day Free Play!","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nRyan, Gavin, and Jeremy are back with another rousing game of Wheel of Fortune! Will they finally get that million dollar wedge? Find out tonight on WHEEL....OF.....FORTUNE!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-wheel-of-fortune-part-5-all-day-free-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71eed21e-3762-4e92-81d2-2c96aadc6a6a/sm/2013912-1460995837526-wheelo5_thumb.jpg","duration":1943,"publication_date":"2016-04-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-let-s-play-live","changefreq":"weekly","video":[{"title":"2016:E27 - LET'S PLAY FIVE-WAY! - Let's Play Live Trailer!","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. Achievement Hunter vs Funhaus vs ScrewAttack vs Kinda Funny vs The Creatures! Five enter the fray, one will stand victorious, all will play live!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-let-s-play-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c4fa50b-6065-4b0b-aa09-5851de3dd6d9/sm/2013912-1460996684208-LetsPlayLive_Thumb.jpg","duration":243,"publication_date":"2016-04-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-right-on-track","changefreq":"weekly","video":[{"title":"2016:E110 - GTA V – Right on Track","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nThe boys are taking a break from organized game types and head back to free roam! Then they made eye contact with the train. Poor move, train. Now let's get to loadin 'er up with vehicles!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-right-on-track","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01598e94-ad16-491a-84f3-4955fdbf9b21/sm/2013912-1460993536977-GTA_V_Train_Thumbnail.jpg","duration":2831,"publication_date":"2016-04-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-psychonauts-featuring-funhaus","changefreq":"weekly","video":[{"title":"2016:E16 - Psychonauts (Featuring Funhaus!)","description":"Use code ACHIEVE to pre-order your Let's Play Live tickets! Tickets are available at RoosterTeethLive.com. \n\nIn this week’s Five Facts, James and Bruce from Funhaus talk about Psychonauts!\n\nWant more facts with Funhaus? Click Here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-psychonauts-featuring-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9afbdcef-24b7-469a-b16b-c6fe03077a3d/sm/2013912-1460994037925-PSYCHOJAMES.jpg","duration":257,"publication_date":"2016-04-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-stikbold","changefreq":"weekly","video":[{"title":"2016:E11 - Stikbold","description":"Halla! (That's hello in Swedish) Ryan and Jeremy take a trip through the Swedish country side with Balls in hand as they go head to head with the everyday culture. Remember if you can dodge a Swedish meat ball, you can dodge a... ball.... doesn't have quite the same ring to it....","player_loc":"https://roosterteeth.com/embed/play-pals-2016-stikbold","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfc63cfa-c8e3-4781-8ab9-e35e9845713e/sm/2013912-1460738620718-stikbold_thumb.jpg","duration":1276,"publication_date":"2016-04-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-20","changefreq":"weekly","video":[{"title":"2016:E20 - Shitting Chicken Out of Your Mouth: The Brandon Farmahini Story - #20","description":"The AH Crew sits down to talk about Proctal Exams, the Shorty Awards, Jamie Lee Curtis, and more on this week's Off Topic!\n\nThis episode originally aired April 15, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a3ac80e-b8fa-4a89-bdf6-c9c7b3b6b149/sm/2013912-1460756718108-OFF20_-_THUMB.png","duration":8637,"publication_date":"2016-04-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-dark-souls-3","changefreq":"weekly","video":[{"title":"2016:E16 - Dark Souls 3","description":"Joel is out this week so Hudson fills in while he and Adam take the plunge into Dark Souls 3. Adam has a lot of feelings to express while also playing terribly.","player_loc":"https://roosterteeth.com/embed/how-to-2016-dark-souls-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f56bbb8-de60-4ea8-9127-16223725794b/sm/2013912-1460751223464-DarkSouls3_thumb.jpg","duration":2798,"publication_date":"2016-04-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016-2","changefreq":"weekly","video":[{"title":"2016:E26 - VR the Champions – Surgeon Simulator: Meet the Medic","description":"Michael and Gavin strap back in to their classic game, Surgeon Simulator. This time with the help of the HTC Vive, and VR in general, the boys might actually be able to save a patient!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1107dbc1-9c41-4daa-b82c-d950d47a7c67/sm/2013912-1460672339821-vr_thumb.jpg","duration":1057,"publication_date":"2016-04-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-203","changefreq":"weekly","video":[{"title":"2016:E108 - Minecraft – Episode 203 – Mo'Chievements, Mo' Problems","description":"With new Achievements added to Minecraft on the Xbox One (and the 360, but we're totally going to ignore that), Geoff, Jack, Ryan, Michael, and Jeremy decide it's time to do some good ol' achievement hunting. Gotta hunt that Wither, gotta eat that Notch apple, and most importantly, gotta trampoline with complete disregard for safety. Push it to the limit! Walk along the slime block's edge. You may get creeper'd. You may fall in lava. You may wither away, or skeleton'd, or miss the trampoline, but dammit! There's achievements on the line. You need to keep on keep on-ing.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f658400-7169-485e-a524-656fcd140fdd/sm/2013912-1460668456897-new_mc_thumb.jpg","duration":2560,"publication_date":"2016-04-14T21:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-4","changefreq":"weekly","video":[{"title":"2016:E25 - 2016 Achievement Hunter Hockey League: Norther Nor North Havermeyer Division Week 4","description":"Things are getting hot on the ice as Geoff plays Jack, and Michael plays Matt in a battle of (not so much) whit! who will come out on top?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8ce4884-9ddb-4578-95cf-388a3f0af9f9/sm/2013912-1460655812803-week4_nhl_thumb.jpg","duration":2347,"publication_date":"2016-04-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-give-me-a-sign-291","changefreq":"weekly","video":[{"title":"2016:E15 - Give Me a Sign – #291","description":"Woohoo, another Fails of the Weak. This week's fails should leave you laughing uncontrollably and rolling on the ground with hysterics. Matt and Trevor look into a pretty great Just Cause 3 clip, as well as more fails in Halo 5: Guardians, Star Wars Battlefront, NHL 2015, and Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-give-me-a-sign-291","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de85d2e3-47fb-42a9-88a7-206387045388/sm/2013912-1460649371051-02Fail_291_Thumb.jpg","duration":169,"publication_date":"2016-04-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-worms-battle-ground-part-8","changefreq":"weekly","video":[{"title":"2016:E107 - Worms Battlegrounds Part 8","description":"Get ready for some more EXTREAME wormage as Ryan, Gavin, Michael, and Jeremy duke it out in the latest installment of \"Worms Battlegrounds\"!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-worms-battle-ground-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/441f134e-8a64-4916-bdee-4af0a1db19ea/sm/2013912-1460571680019-worms_thumb.jpg","duration":2741,"publication_date":"2016-04-13T17:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-bull-riding","changefreq":"weekly","video":[{"title":"2016:E14 - Halo 5 – Bull Riding","description":"Halo 5 was always seen as a game about a spartan whose job was to stop an alien invasion and save the world. But really it's always been about mounting up a bull and riding it raw. Don't believe us? Just watch.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-bull-riding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a9d7f58-59db-4aae-96e0-b6a5e83ac177/sm/2013912-1460559476368-ttd_bullriding_thumb.jpg","duration":684,"publication_date":"2016-04-13T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-speedrunners-part-4","changefreq":"weekly","video":[{"title":"2016:E106 - SpeedRunners Part 4","description":"Jack, Ryan, Jeremy, and Michael face off in the fourth installment of SpeedRunners!\n\n\n\nWatch Part 3 here!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-speedrunners-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32e3d245-97b4-4b2b-9882-c2d89ddd1d06/sm/2013912-1460493390815-speedrunners_thumb.jpg","duration":2844,"publication_date":"2016-04-12T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-4","changefreq":"weekly","video":[{"title":"2016:E24 - 2016 Achievement Hunter Hockey League: Southeast Pimberton Division - Week 4","description":"Pimp some Pimberton threads || Week four of the 2016 Achievement Hunter Hockey League: Southeast Pimberton Division has begun. Lindsay vs. Jeremy and Gavin vs. Ryan – who will be the week four champions? You do not want to miss this one, ladies and gentlemen. It’s a real nail-biter.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78a1a825-17e9-4217-84e5-901ba0e62b68/sm/2013912-1460489534291-nhl_thumb.jpg","duration":2481,"publication_date":"2016-04-12T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-super-mario-maker","changefreq":"weekly","video":[{"title":"2016:E15 - Super Mario Maker","description":"Our story begins with Jeremy and Jack.\n\nAgainst low gamerscores, they were on the attack.\n\n\n\nBut once in a blue moon, they'd sit back and relax,\n\nAnd talk about life, old games, and some facts!\n\n\n\nAnd this was no different, no different at all.\n\nAt Franco’s request, they answered the call.\n\n\n\nThere were facts about Mario, just ready to go.\n\nIf only Nintendo didn’t stop and say no.\n\n\n\nAnd now it’s time to enjoy Mario Maker,\n\n…Uh…Kobe Bryant was an LA Laker?\n\n\n\nFuck this shit, man…rhyming is hard!\n\nI mean, you need to be some kind of bard!\n\n\n\nOh hey, I did it! Just there, did you see?\n\nI’m sorry this was long, don’t fire me.\n\n\n\n~Thanks for everything, Joel Rubin!~\n\n\n\n*Want More Jack & Jeremy? Click Here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-super-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87672eef-9930-4319-a739-d0a78320fdba/sm/2013912-1460391250741-FFSMM.jpg","duration":220,"publication_date":"2016-04-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-happy-6-th-birthday-ahwu-for-april-11-th-2016-312","changefreq":"weekly","video":[{"title":"2016:E18 - Happy 6th Birthday – AHWU for April 11th, 2016 (#312)","description":"Thanks to Geek Fuel for sponsoring this video. Go to https://www.geekfuel.com/AHWU to subscribe today. \n\n\n\nSo turns out the first AHWU was released on March 4, 2010, but now it's early April and we're just at our sixth birthday mark. Apparently we can't math right, but fuck it. It's our sixth birthday, and this is our party. And you better have brought us some damn good gifts. Like the good liquor - the sixty bucks a bottle shit. And a pony. A big, majestic pony. Ooh! And a Mickey Mouse 16 inch Big Wheel Racer - I know you saw it on my fuckin' Amazon wish list. This is birthday time, and I demand to be treated like King Birthday Boy, dammit. \n\nBut for real, thanks for watching AHWU for six years (in Achievement Hunter time) - and a little more than that in real people time. Keep on watching, and maybe Burnie will finally give you that peanut he promised so long ago. \n\n\n\nVid of the Week || Community vid: Oh shit. There's one of these again.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-happy-6-th-birthday-ahwu-for-april-11-th-2016-312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e53904b-606d-44ce-b9cb-649b391edd20/sm/2013912-1460415116587-ahwu_312.jpg","duration":711,"publication_date":"2016-04-11T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vr-the-champions-2016","changefreq":"weekly","video":[{"title":"2016:E23 - VR the Champions – Job Simulator","description":"Ryan, Gavin, and Jeremy, the VR Champions, accept a new task in the horrible place... of a cubicle. Can they simulate a real job and then come out alive?!","player_loc":"https://roosterteeth.com/embed/vr-the-champions-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8a088be-5a3f-47dd-9cb6-148aed914230/sm/2013912-1460171387707-vr_headset_thumb.jpg","duration":712,"publication_date":"2016-04-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-you-don-t-know-jack","changefreq":"weekly","video":[{"title":"2016:E105 - You Don't Know Jack","description":"Achievement Hunter has their knowledge of their long time friend Jack Pattillo tested in this episode of You Don't Know Jack! With all the time we've spent with him surely we'll all do incredible. Or maybe we've been ignoring him this whole time. Either way it's pretty great!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-you-don-t-know-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe073d0f-d15a-46b1-8ac0-fc0bbba7506a/sm/2013912-1460171214276-jack_thumb.jpg","duration":1035,"publication_date":"2016-04-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-rocket-league-xbox-edition-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2016:E9 - Rocket League Xbox Edition – Achievement Hunter Vs The World","description":"Taking all comers! Jack, Ryan, Jeremy, and Michael are here to take on the planet! Bring it on world!","player_loc":"https://roosterteeth.com/embed/vs-2016-rocket-league-xbox-edition-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/087ed962-dabe-43f7-a8ca-f8ad1c283754/sm/2013912-1460156703601-AHVSTW_RL_thumb.jpg","duration":1137,"publication_date":"2016-04-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-sumo-part-2","changefreq":"weekly","video":[{"title":"2016:E104 - GTA V - Sumo Part 2","description":"We're back in the Sumo GTA 5 gametype! This time, the ramming is real.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-sumo-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aeb4a7d-b2c3-45f7-a43c-fa4668b371f8/sm/2013912-1460170402690-GTA_V_Sumo_Part_2_Thumbnail.jpg","duration":2586,"publication_date":"2016-04-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-19","changefreq":"weekly","video":[{"title":"2016:E19 - Where Art Thou Sand? Robot Hand! - #19","description":"The AH Crew sits down to talk about High School Musical, Star Wars: Rogue One, Game of Thrones and more on this week's Off Topic! This episode originally aired April 8, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93dea93d-8c17-4afa-baa5-49bcd2400615/sm/2013912-1460151327583-OFF19_-_THUMB.jpg","duration":8223,"publication_date":"2016-04-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-salt-and-sanctuary","changefreq":"weekly","video":[{"title":"2016:E15 - Salt and Sanctuary","description":"Adam and Joel get salty in this Dark Souls/Castlevania love child. Joel is a chef.","player_loc":"https://roosterteeth.com/embed/how-to-2016-salt-and-sanctuary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/430b9c5a-599d-43a6-8f68-b42b049b7a50/sm/2013912-1460147089720-SaltThumb.jpg","duration":1059,"publication_date":"2016-04-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-day-of-doom-the-championship-game","changefreq":"weekly","video":[{"title":"2016:E103 - Day of Doom - The Championship Game","description":"Thanks to Bethesda for Sponsoring this video! Fight like hell during the Doom Open Beta, running April 15th-17th, or check it out when Doom releases on May 13th. \n\nWatch the Full Tournament here - http://bit.ly/1SFkTsC\n\nGo here for up to date information on DOOM - http://bit.ly/1Va7cIG\n\n\n\nAfter Adam Kovic and Chad Ochocinco's first round win against Michael Jones and Rob Gronkowski, these super pals move on to face iJustine and her favorite amigo, Antonio Brown. It's the championship game. The best of the best of the best, ready to prove their might for ultimate Doom supremacy.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-day-of-doom-the-championship-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d48deb6c-0d12-4a1e-a2bf-17db3a73429b/sm/2013912-1460155864707-champ_finale.jpg","duration":623,"publication_date":"2016-04-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-day-of-doom-with-adam-kovic-and-chad-ochocinco","changefreq":"weekly","video":[{"title":"2016:E102 - Day of Doom - With Adam Kovic and Chad Ochocinco","description":"Thanks to Bethesda for Sponsoring this video! Fight like hell during the Doom Open Beta, running April 15th-17th, or check it out when Doom releases on May 13th. \n\nWatch the Full Tournament here - http://bit.ly/20mlepN\n\nGo here for up to date information on DOOM - http://bit.ly/1MZWHVf\n\n\n\nWelcome to your doom! Adam Kovic was selected to compete in a tournament of champions - given a chance to become the King MLG-pro-est Doom Player in the land before the general public can touch the game and become way better than him. His partner of choice: Chad Ochocinco! Does Kovic have what it takes to take down Michael Jones and Rob Gronkowski in the first round of the most epic Doom tournament that has ever happened in the ever of ever? He just may.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-day-of-doom-with-adam-kovic-and-chad-ochocinco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbae8a7b-868e-421b-b613-4dd69723b86a/sm/2013912-1460153118106-kovic_ocho.jpg","duration":616,"publication_date":"2016-04-08T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-day-of-doom-with-michael-jones-and-rob-gronkowski","changefreq":"weekly","video":[{"title":"2016:E101 - Day of Doom - With Michael Jones and Rob Gronkowski","description":"Thanks to Bethesda for Sponsoring this video! Fight like hell during the Doom Open Beta, running April 15th-17th, or check it out when Doom releases on May 13th. \n\nWatch the Full Tournament here - http://bit.ly/1qcRC1o\n\nGo here for up to date information on DOOM - http://bit.ly/1Ve9xl8\n\n\n\nAdam Kovic isn't the only Rooster Teeth member to be invited to the Day of Doom Super-Competitive-Definitely-the-Best-Doom-Players-in-the-World Tournament of Champions. Michael Jones is also competing alongside his best bud ever, Rob Gronkowski. Do they have what it takes to take down Kovic in the first round of Doom? \n\nNot to totally spoil it or anything, but when they don't have what it takes and get thrown into the losers' bracket, maybe they can at least fight for not last place against Thierry Henry and SSSniperWolf. Or maybe they're just Doomed.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-day-of-doom-with-michael-jones-and-rob-gronkowski","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e99d1010-104e-4dc2-8af9-1f868881bb5c/sm/2013912-1460150247815-jonesandgronk.jpg","duration":1199,"publication_date":"2016-04-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-reagan-gorbachev-part-2","changefreq":"weekly","video":[{"title":"2016:E10 - Reagan Gorbachev Part 2","description":"Ryan and Michael are inaugurated for their second term of kicking ass and saving the world in the exciting second part of \"Reagan Gorbachev\". Will they be able to save the world, or will the dooms day machine destroy us all???","player_loc":"https://roosterteeth.com/embed/play-pals-2016-reagan-gorbachev-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e3ce6f7-2b03-4788-a48b-9d4c8e93dee9/sm/2013912-1460146345358-pp_rg_thumb_Test2.jpg","duration":749,"publication_date":"2016-04-08T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-202","changefreq":"weekly","video":[{"title":"2016:E100 - Minecraft – Episode 202 – There Is No Learning Curve 2: The Curvening","description":"The Brainy Buddy Besties - Gavin, Jack, and Jeremy - are ready to take another crack at conquering There is No Learning Curve 2. Today's challenge will test their collective memory as they try to build increasingly crazy contraptions. One thing's for certain: Gavin has remembered to piss off the server. Maybe he should have saved that brain power for the task at hand.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-202","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aee3f94e-2e99-4cde-b3d0-58e51fe3aaa8/sm/1104396-1460087511484-mc_thumb.jpg","duration":1435,"publication_date":"2016-04-08T04:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-3","changefreq":"weekly","video":[{"title":"2016:E22 - 2016 Achievement Hunter Hockey League: Norther Nor North Havermeyer Division Week 3","description":"Get you Havermeyer hardware || We are in week 3 of the 2016 Achievement Hunter Hockey League and the Norther Nor North Havermeyer division is up with Jack vs. Matt and Geoff vs. Michael! Who will come out on top this time?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2c20e58-c262-401d-a6eb-06e0c02c4c69/sm/834020-1460072510223-nnnhweek3_thumb.jpg","duration":2674,"publication_date":"2016-04-08T01:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-banana-peel-parking-290","changefreq":"weekly","video":[{"title":"2016:E14 - Banana Peel Parking – #290","description":"Well looky there, another Fails of the Weak. I sure hope you don't \"slip\" while watching this week’s episode. Also I hope you find it \"appealing\"... ba dum tss. Jack and Jeremy look into a pretty sweet Assassin’s Creed Syndicate slip-up, as well as more fails in Halo 5: Guardians, Quantum Break, Call of Duty: Black Ops 3, and Star Wars Battlefront.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-banana-peel-parking-290","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af924709-fc1e-47f2-9b88-ac388d14ad9a/sm/2013912-1460053275543-02Fail_290_Thumb.jpg","duration":149,"publication_date":"2016-04-07T18:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-11","changefreq":"weekly","video":[{"title":"2016:E99 - Let's Watch – Layers of Fear Part 2","description":"Geoff, Gavin, Jeremy, and Jack are back in another #toospooky let's watch in Layers of Fear. Will they figure out the mystery of the art? Will they live to tell the tale? Will Geoff shit his pants while having a heart attack? Click to find out!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2eda2cb-1993-499d-9747-27cca94581c1/sm/2013912-1459982374132-secondtroke_thumb.jpg","duration":2164,"publication_date":"2016-04-06T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-mario-party-8-boo-s-mansion","changefreq":"weekly","video":[{"title":"2016:E98 - Mario Party 8: King Boo's Haunted Hideaway","description":"Hi. My name's Jeremy D-dawgg Doodly Dooleyoo and this is totally definitely me writing this. I left town without writing this description because I'm a big silly. Mario Party's a cool game. In it, you can see cool things like Michael make that crazy face you saw as my AHWU background photo the other day. And there's also lots and lots of wiggling, because this is a Wii game. Haha! I bet the name Wii combined with waggling controllers could be turned into a subtle masturbation joke. I wonder if anyone's ever thought to do that? Nah. Probably not, so I'll do that now.\n\nHey kids! Make sure to grab you Wii and shake it tight so you get more \"coins\" (and by coins I mean wiener juice) than your opponent on this episode of Mario Party Friendship Playgame Justice Warriors Excellent Shining Force, or as we call it in English, Mario Party 8! This is Dinglebop Doodly signing off. Until next time, Internet, stay frosty.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-mario-party-8-boo-s-mansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed6fa44-cd65-4999-859d-0cd53a7feb30/sm/2013912-1459980431810-marioparty_thumb.jpg","duration":2483,"publication_date":"2016-04-06T21:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-wheel-of-fortune-jack-sajak","changefreq":"weekly","video":[{"title":"2016:E97 - Wheel of Fortune Part 4 – Jack Sajak","description":"Wheel of Fortune is back with your all new host Jack Sajak! This weeks contestants are Gavin, Jeremy, and Michael! Which one is gonna spin the wheel of chance and walk away an amount richer? Watch tonight at 8 central 6 pacific to find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-wheel-of-fortune-jack-sajak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b20d87f1-7af5-4f0a-92c3-dfcadb6c09b3/sm/2013912-1459895034126-wof_thumb.jpg","duration":2222,"publication_date":"2016-04-05T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-3","changefreq":"weekly","video":[{"title":"2016:E21 - 2016 Achievement Hunter Hockey League: Southeast Pimberton Division - Week 3","description":"Pimp some Pimberton threads || Week three of the 2016 Achievement Hunter Hockey League: Southeast Pimberton Division has begun. Gavin vs. Jeremy and Ryan vs. Lindsay – who will be the week three champions? You do not want to miss this one!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92fa139d-a7ea-4121-be97-556afd748fbe/sm/2013912-1459893444655-week3_nhl_sp.jpg","duration":2486,"publication_date":"2016-04-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2016-assassin-s-creed-russia","changefreq":"weekly","video":[{"title":"2016:E4 - Assassin's Creed Russia","description":"Ryan and Jeremy duke it out in 1918 Russia to see who can make it to the finish first!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2016-assassin-s-creed-russia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b6b662e-bda4-456e-b139-10b6ac0c2cff/sm/2013912-1459885749135-hunt_russia.jpg","duration":740,"publication_date":"2016-04-05T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-5","changefreq":"weekly","video":[{"title":"2016:E14 - Quantum Break – All Collectibles Guide: Act 5","description":"Jeremy shows you all the narrative objects, intel objects, quantum ripples, and chronon sources in Act 5 of Quantum Break.\n\n\n\nAct 5 - 1\nNarrative Object 1 - 0:14\nNarrative Object 2 - 0:35\nChronon Source 1 - 0:52\nIntel Object 1 - 1:10\nNarrative Object 3 - 1:30\nNarrative Object 4 - 1:42\nNarrative Object 5 - 1:53\nNarrative Object 6 - 2:06\nNarrative Object 7 - 2:18\nChronon Source 2 - 2:34\nNarrative Object 8 - 2:48\nNarrative Object 9 - 3:07\nIntel Object 2 - 3:26\nNarrative Object 10 - 3:42\nNarrative Object 11 - 4:01\nNarrative Object 12 - 4:09\nNarrative Object 13 - 4:26\nIntel Object 3 - 4:47\nChronon Source 3 - 4:59\nNarrative Object 14 - 5:09\nNarrative Object 15 - 5:32\nNarrative Object 16 - 5:46\nNarrative Object 17 - 6:00\nNarrative Object 18 - 6:09\nIntel Object 4 - 6:21\nAct 5 - 2\nChronon Source 1 - 6:39\nChronon Source 2 - 7:00\nChronon Source 3 - 7:19\nNarrative Object 1 - 7:32\nChronon Source 4 - 7:57\nChronon Source 5 - 8:21\n\n\n\nAct 5 - 3\nChronon Source 1 - 8:36\nNarrative Object 1 - 8:55\nChronon Source 2 - 9:23","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e62b5a42-6fdc-4e86-a496-c5485dabb3d3/sm/2013912-1459793945055-Thumb5.jpg","duration":628,"publication_date":"2016-04-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-4","changefreq":"weekly","video":[{"title":"2016:E13 - Quantum Break – All Collectibles Guide: Act 4","description":"Jeremy shows you all the narrative objects, intel objects, quantum ripples, and chronon sources in Act 4 of Quantum Break.\n\n\n\nAct 4 - 1\nChronon Source 1 - 0:14\nChronon Source 2 - 0:22\nNarrative Object 1 - 0:36\nNarrative Object 2 - 0:52\nChronon Source 3 - 1:10\nChronon Source 4 - 1:36\nNarrative Object 3 - 1:52\nNarrative Object 4 - 2:10\nChronon Source 5 - 2:26\nChronon Source 6 - 2:39\nAct 4 - 2\nNarrative Object 1 - 2:56\nNarrative Object 2 - 3:07\nNarrative Object 3 - 3:25\nQuantum Ripple 1 - 3:39\nNarrative Object 4 - 3:55\nNarrative Object 5 - 4:08\nNarrative Object 6 - 4:19\nNarrative Object 7 - 4:26\nChronon Source 1 - 4:45\nNarrative Object 8 - 5:01\nNarrative Object 9 - 5:31\nChronon Source 2 - 6:07\nChronon Source 3 - 6:24\n\n\n\nAct 4 - 3\nNarrative Object 1 - 6:38\nNarrative Object 2 - 6:47\nChronon Source 1 - 7:01\nNarrative Object 3 - 7:24\nChronon Source 2 - 7:35\nNarrative Object 4 - 7:52\nChronon Source 3 - 8:10\nNarrative Object 5 - 8:29\nNarrative Object 6 - 8:43\n\n\n\nAct 4 - 4\nQuantum Ripple 1 - 9:02\nChronon Source 1 - 9:27\nNarrative Object 1 - 9:45\nNarrative Object 2 - 9:57\nNarrative Object 3 - 10:10\nChronon Source 2 - 10:15\nNarrative Object 4 - 10:37\nChronon Source 3 - 11:04\nNarrative Object 5 - 11:23\n\n\n\nAct 4 Junction\nNarrative Object 1 - 11:48","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b6ba28-273c-40ee-b47a-4c0e371856c7/sm/2013912-1459793758011-Thumb4.jpg","duration":749,"publication_date":"2016-04-05T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-3","changefreq":"weekly","video":[{"title":"2016:E12 - Quantum Break – All Collectibles Guide: Act 3","description":"Jeremy shows you all the narrative objects, intel objects, quantum ripples, and chronon sources in Act 3 of Quantum Break.\n\nAct 3 - 1\n\n\nChronon Source 1 - 0:14\nNarrative Object 1 - 0:32\nChronon Source 2 - 0:51\nChronon Source 3 - 1:15\nNarrative Object 2 - 1:39\nChronon Source 4 - 1:58\nChronon Source 5 - 2:15\nNarrative Object 3 - 2:35\nQuantum Ripple 1 - 2:57\nNarrative Object 4 - 3:14\nChronon Source 6 - 3:32\nNarrative Object 5 - 3:55\nNarrative Object 6 - 4:13\nNarrative Object 7 - 4:25\nChronon Source 7 - 4:49\nNarrative Object 8 - 5:11\nNarrative Object 9 - 5:28\nNarrative Object 10 - 5:43\nNarrative Object 11 - 5:54\nIntel Object 1 - 6:08\nNarrative Object 12 - 6:21\nNarrative Object 13 - 6:28\nNarrative Object 14 - 6:38\nNarrative Object 15 - 6:49\nNarrative Object 16 - 7:05\nIntel Object 2 - 7:23\nNarrative Object 17 - 7:36\nChronon Source 8 - 7:48\nAct 3 - 2\nNarrative Object 1 - 8:13\nNarrative Object 2 - 8:24\nNarrative Object 3 - 8:37\nChronon Source 1 - 8:53\nChronon Source 2 - 9:10\nNarrative Object 4/Quantum Ripple 1 - 9:31\nNarrative Object 5 - 9:46\nChronon Source 3 - 9:56\nChronon Source 4 - 10:14\nNarrative Object 6 - 10:30\nChronon Source 5 - 10:43\nIntel Object 1 - 11:11\nChronon Source 6 - 11:27\nNarrative Object 7 - 11:41\nChronon Source 7 - 11:59\nChronon Source 8 - 12:17","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf5dd5aa-ebac-4c3d-9f75-161c68d10b9a/sm/2013912-1459792644985-Thumb3.jpg","duration":772,"publication_date":"2016-04-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-2","changefreq":"weekly","video":[{"title":"2016:E11 - Quantum Break – All Collectibles Guide: Act 2","description":"Jeremy shows you all the narrative objects, intel objects, quantum ripples, and chronon sources in Act 2 of Quantum Break.\n\n\n\nAct 2 - 1\nChronon Source 1 - 0:14\nChronon Source 2 - 0:49\nNarrative Object 1 - 1:08\nNarrative Object 2 / Quantum Ripple 1 - 1:24\nNarrative Object 3 - 1:38\nChronon Source 3 - 1:51\nNarrative Object 4 - 2:18\nIntel Object 1 - 2:31\nChronon Source 4 - 2:52\nChronon Source 5 - 3:21\nChronon Source 6 - 3:57\nNarrative Object 5 - 4:30\nNarrative Object 6 - 4:48\nChronon Source 7 - 5:00\nNarrative Object 7 - 5:28\nNarrative Object 8 - 5:42\nAct 2 - 2\nNarrative Object 1 - 5:57\nNarrative Object 2 - 6:11\nChronon Source 1 - 6:25\nChronon Source 2 - 6:48\nChronon Source 3 - 7:14\nNarrative Object 3 - 7:30\nNarrative Object 4 - 7:48\nNarrative Object 5 - 8:02\nNarrative Object 6 - 8:19\nChronon Source 4 - 8:43\nNarrative Object 7 - 8:48\nQuantum Ripple 1 - 9:05\nNarrative Object 8 - 9:21\nIntel Object 1 - 9:34\nNarrative Object 9 - 9:52\nNarrative Object 10 - 10:03\nChronon Source 5 - 10:16\nNarrative Object 11 - 10:38\nChronon Source 6 - 10:55\nNarrative Object 12 - 11:11\nNarrative Object 13 - 11:24\nChronon Source 7 - 11:39\n\n\n\nAct 2 - 3\nChronon Source 1 - 11:57\nChronon Source 2 - 12:17\nNarrative Object 1 - 13:01\nNarrative Object 2 - 13:22\nNarrative Object 3 - 13:29\nNarrative Object 4 - 13:43\nChronon Source 3 - 13:56\nChronon Source 4 - 14:15\nNarrative Object 5 - 14:39\nNarrative Object 6 - 14:57\nNarrative Object 7 - 15:12\nNarrative Object 8 - 15:27\nNarrative Object 9 - 15:37\nNarrative Object 10 - 15:49\nChronon Source 5 - 16:10\nNarrative Object 11 - 16:25\n\n\n\nAct 2 Junction\nNarrative Object 1 - 16:48","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51a2c9d8-baec-4bfe-bfaf-1413e00ac47e/sm/2013912-1459792443850-Thumb2.jpg","duration":1036,"publication_date":"2016-04-05T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-1","changefreq":"weekly","video":[{"title":"2016:E10 - Quantum Break – All Collectibles Guide: Act 1","description":"Jeremy shows you all the narrative objects, intel objects, quantum ripples, and chronon sources in Act I of Quantum Break.\n\n\n\nAct 1 - 1\nNarrative Object 1 - 0:19\nNarrative Object 2 - 0:32\nNarrative Object 3 - 0:52\nNarrative Object 4 - 1:07\nNarrative Object 5 - 1:20\nNarrative Object 6 - 1:36\nNarrative Object 7 - 1:58\nNarrative Object 8 - 2:10\nNarrative Object 9 - 2:24\nNarrative Object 10 - 2:32\nNarrative Object 11 - 2:47\nNarrative Object 12 - 3:01\nNarrative Object 13 - 3:23\nNarrative Object 14 - 3:33\nNarrative Object 15 - 3:43\nNarrative Object 16 - 3:58\nAct 1 - 2\nNarrative Object 1 - 4:16\nQuantum Ripple 1 - 4:34\nNarrative Object 2 - 5:10\nNarrative Object 3 - 5:28\n\n\n\nAct 1 - 3\nNarrative Object 1 - 5:49\n\n\n\nAct 1 Junction\nQuantum Ripple 1 - 6:08\nNarrative Object 1 - 6:26\nNarrative Object 2 - 6:44","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-quantum-break-all-collectibles-guide-act-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bd7f70f-5ee1-41d6-8264-ff0199ceb7aa/sm/2013912-1459792124672-Thumb1.jpg","duration":439,"publication_date":"2016-04-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-pour-one-out-for-our-homies-ahwu-for-april-4-th-2016-311","changefreq":"weekly","video":[{"title":"2016:E17 - Pour One Out for Our Homies – AHWU for April 4th, 2016 (#311)","description":"Thanks to Geek Fuel for sponsoring this video. Go to https://www.geekfuel.com/AHWU to subscribe today || Welcome The Creatures to the Let's Play family! Chem them out at https://www.youtube.com/user/thecreaturehub || \n\n\n\nGeoffstorm, Jack me away from the norm'\n\nYou've got to tell me something\n\nNews and games, you had to put it in a song\n\nAnd it goes like\n\n\n\nWhoa! AHWU is the color of your energy\n\nWhoa! Shades of green display naturally\n\n\n\nAnd then something about a thousand ships or whatever. I'm not familiar enough with 311 to keep this description going. As it is, AHWU's so late today that the April 4th in the title's a lie, unless you're in the Pacific timezone or in Hawaii maybe. Not that in matters in the grand scheme of the universe, so no biggie. Biggie smalls, even. All the same, cue your \"Last time I was this late, I had to consult a pregnancy test\" jokes, YouTube comment section. \n\n\n\n|| Vid of week: Offense Defense With The Creatures || Community vid: Oh shit. There's one of these again. Matt Bragg Balls-in-the-Mouth Special","player_loc":"https://roosterteeth.com/embed/ahwu-2016-pour-one-out-for-our-homies-ahwu-for-april-4-th-2016-311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b00636a-84bf-450e-8a39-45f0ae378b4d/sm/1104396-1459833559496-ahwu_thumb.jpg","duration":611,"publication_date":"2016-04-05T05:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rocket-league-with-neck-deep","changefreq":"weekly","video":[{"title":"2016:E95 - Rocket League with Neck Deep","description":"Achievement Hunter faces off against the musicians from Neck Deep! There's a couple screamers, a top hat, and everyone sounds like Gavin.\n\nGet neck deep in Neck Deep: https://twitter.com/NeckDeepUK","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rocket-league-with-neck-deep","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3db1c2b0-9ca7-4482-b762-3961a7dd5366/sm/2013912-1459531649074-lp_rlneckdeep_thumb.jpg","duration":2025,"publication_date":"2016-04-04T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-metal-gear-solid","changefreq":"weekly","video":[{"title":"2016:E14 - Metal Gear Solid","description":"Adam “The Adam Adam” Kovic and Jack team up this week for Five Facts: Metal Gear Solid!\n\nWant more facts featuring Funhaus? Click here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-metal-gear-solid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16ea6eb9-c3f5-4903-8701-8f134d9eb560/sm/2013912-1459784550131-FFMGS_GOOD.jpg","duration":252,"publication_date":"2016-04-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-offense-defense-with-the-creatures","changefreq":"weekly","video":[{"title":"2016:E94 - GTA V – Offense Defense with The Creatures (#5)","description":"Creature-featured merch HERE\n\nThe Creatures have joined the LetsPlay team! Achievement Hunter challenges these new arrivals to some good ol' GTA 5, namely... Offense Defense.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-offense-defense-with-the-creatures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e660d36b-d369-4fca-8e32-46dfb07ddfa5/sm/2013912-1459570884050-image1.JPG","duration":1860,"publication_date":"2016-04-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-the-culling","changefreq":"weekly","video":[{"title":"2016:E9 - The Culling","description":"Michael and Gavin team up and try to murder everything while trying not to be murdered themselves.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-the-culling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95c8fb2d-337d-4b92-b7d6-6628d53d9d44/sm/2013912-1459571078734-pp_theculling_thumb.jpg","duration":1103,"publication_date":"2016-04-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-18","changefreq":"weekly","video":[{"title":"2016:E18 - Whiny High Pitched Millennial - #18","description":"The AH Crew along with Adam Kovic, Lawrence Sonntag, and Greg Miller sit down to talk about lost VP positions,crippling depression, Greg Miller's Green Room and more on this week's Off Topic!\n\nThis episode originally aired April 1, 2016 and is sponsored by the RT store (http://bit.ly/25AIDaU) get 13% until April 13th using offer code: \"RT13\"","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2c15264-82f4-42be-aaea-83b367cf6cc7/sm/2013912-1459571265638-Off_Topic_Podcast_18.jpg","duration":7576,"publication_date":"2016-04-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-the-culling","changefreq":"weekly","video":[{"title":"2016:E14 - The Culling","description":"As it turns out, if Adam and Joel were in the hunger games they would not do so hot. This video is our scientific method for coming to that conclusion.","player_loc":"https://roosterteeth.com/embed/how-to-2016-the-culling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10433054-acc3-4615-8603-a63ae2dd4c25/sm/2013912-1459538788123-HowTo_Cullingthumb.jpg","duration":1446,"publication_date":"2016-04-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-10","changefreq":"weekly","video":[{"title":"2016:E93 - Let's Watch – Stardew Valley Part 1","description":"Geoff, Gavin, Jack, and Ryan farm and explore the scenic and coastal \"Pelican Town\". Will \"The Bung\" thrive? Or will it whither and die?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba138140-0344-48a5-b644-caf2c35a03e4/sm/2013912-1459524136371-stardewvalley_lw_thumb.jpg","duration":2361,"publication_date":"2016-04-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-201-golden-gumshoes","changefreq":"weekly","video":[{"title":"2016:E92 - Minecraft – Episode 201 – Golden Gumshoes","description":"Last week, the Achievement Hunter crew sleuth'd their way through Achievement City in search of clues - lots of slippery, poetic clues. This week, you can watch the thrilling conclusion to the most clue-searchinest episode of Minecraft since episode 100! \n\nCan Jack reclaim the altar of pimps for the next hundred episodes? Can Jeremy or Ryan end up taking the win? Can Michael catch up from his staggering trail-behind? Or maybe Geoff and Gavin will steal the altar for themselves. I mean, it's a little unfair they can't even compete, after all. So sit down, strap in, flap in, strap on, jump in, hump down, flame on, snip snap, punch down, slimslam, jam up, and get ready for Minecraft Two-Oh-One! It's a good'n!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-201-golden-gumshoes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e241fdc5-f50c-4890-81e9-e59dac3f5905/sm/2013912-1459465306004-minecraft_thumb_goldengumshoe.jpg","duration":2320,"publication_date":"2016-03-31T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-2","changefreq":"weekly","video":[{"title":"2016:E20 - 2016 Achievement Hunter Hockey League: Norther Nor North Havermeyer Division - Week 2","description":"Week two of the 2016 Achievement Hunter Hockey League: Norther Nor North Havermeyer Division has begun. Jack vs. Michael and Geoff vs. Matt – who will be the week 2 champions? You do not want to miss this one!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division-week-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1b7ddfa-3139-48b2-a7c8-b2aec2dcf56a/sm/2013912-1459455621957-nnnh_week2.jpg","duration":2385,"publication_date":"2016-03-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-human-windmill-289","changefreq":"weekly","video":[{"title":"2016:E13 - Human Windmill – #289","description":"They call me Rico. I fight for honor. I fight for freedom. I fight for a just cause, and have fought for just causes not one, not two, but three times over. Also, I can shove my arm through this stone wall. Now I can turn like the mills of the wind. Strap a volterizer to me and I can gather electricity for you. I am a man of the people, and the people need a viable source of clean energy, and dammit, I can provide that to you. \n\nOh? The war's still going on as the bad guys bring in their sky fortress? Well have fun with that. I can't really contribute, as I am now a ruggishly handsome windmill. \n\nBy golly, can you believe it!? It's another Fails of the Weak, the show so aware of the pun in its name that it knows there's going to be snarky comments about how \"week\" was spelled incorrectly and frankly doesn't care. Jeremy and Lindsay take a look at a pretty cool Just Cause 3 fail, as well as more fails in Halo 5: Guardians, Call of Duty: Black Ops 3, The Division, and Battlefield Hardline.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-human-windmill-289","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8238e263-08a3-4198-9c46-eb1bce1bf04a/sm/2013912-1459438979246-Fail_289_Thumb.png","duration":153,"publication_date":"2016-03-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-variety-pack-12","changefreq":"weekly","video":[{"title":"2016:E13 - Variety Pack #12","description":"Ryan and Jeremy bring you another Variety Pack in this week’s Five Facts! Want even more variety? Click here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-variety-pack-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8bbbf5d-c503-4fef-8ca9-f71bcc66e814/sm/2013912-1459364224885-VP12FIX.jpg","duration":277,"publication_date":"2016-03-30T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-amazing-frog-with-screw-attack","changefreq":"weekly","video":[{"title":"2016:E91 - Amazing Frog? with ScrewAttack","description":"Who knew that a game where you play as a frog in some sort of GTA like environment could be so much fun? ScrewAttack clearly did and they're showing it off to Gavin and Michael.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-amazing-frog-with-screw-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d25d80b3-c77c-4ad2-b1ee-2ca6d646308c/sm/2013912-1459355392193-mazingfrog_thumb.jpg","duration":2069,"publication_date":"2016-03-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-2","changefreq":"weekly","video":[{"title":"2016:E19 - 2016 Achievement Hunter Hockey League: Southeast Pimberton Division - Week 2","description":"Pimp some Pimberton threads || Week two of the 2016 Achievement Hunter Hockey League: Southeast Pimberton Division has begun. Jeremy vs. Ryan and Lindsay vs. Gavin – who will be the week two champions? You do not want to miss this one!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-southeast-pimberton-division-week-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7778379-5b63-4e2e-a433-50e0755c61fe/sm/2013912-1459265719449-week2_southeastp_thumb.jpg","duration":2287,"publication_date":"2016-03-29T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-9","changefreq":"weekly","video":[{"title":"2016:E90 - Let's Watch – The Culling","description":"The Gang gets savage as they try to survive in this \"Hunger Games\"/\"Battle Royal\" style competition. Will the odds be ever in their favor?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6972f583-78f1-4b83-b692-c57e1d6f1fba/sm/2013912-1459211266676-cullingthumb.jpg","duration":1469,"publication_date":"2016-03-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-brawlhalla","changefreq":"weekly","video":[{"title":"2016:E89 - Brawlhalla","description":"Achievement Hunter finds out who's the best at beating the crap out of the rest in Brawlhalla! *Disclaimer* Crap doesn't actually leave anyone throughout the course of this video. Consult your doctor if you think you had crap come out of you while watching this video.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-brawlhalla","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62f8a590-24d1-41b7-accb-964986ff42e0/sm/2013912-1459267343084-brawl_thumb.jpg","duration":1648,"publication_date":"2016-03-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-blown-in-the-face-balls-in-the-mouth-ahwu-for-march-28-th-2016-310","changefreq":"weekly","video":[{"title":"2016:E16 - Blown in the Face, Balls in the Mouth – AHWU for March 28th, 2016 (#310)","description":"Thanks to Geek Fuel for sponsoring this video. Go to https://www.geekfuel.com/AHWU to subscribe today || Let's Play Community? Whaaaaat? Crazy! Check out the new channel: http://youtube.com/ahcommunityvids\n\nIf you'd like so submit, check out the group on our website: http://roosterteeth.com/group/lets-play-community.\n\nAHWU has often been a catalyst for Achievement Hunter fan fiction prompts. Putting dicks in mouths. Humping for decades. Touching tips. Blasting nips. Full frontal nudity. Sex on camera. Getting a finger full of sweet sweet glaze. The list goes on and on. \n\nBut today may be the ultimate fan fiction dream: Half of AHWU is Geoff getting blown by Gavin, and the other half is Jack taking balls in the mouth. Don't worry. Matt gets a mouthful of balls too. Trevor, Matt, and Jeremy also get blown all at once. Enjoy. (Insert winky face emoji here)\n\n\n\nCheck out the Vid of the Week || Community Vid: SNIPED YUUH! Go check out the Community Channel!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-blown-in-the-face-balls-in-the-mouth-ahwu-for-march-28-th-2016-310","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11ca2312-b292-4586-afd0-7cdfa13ef7d6/sm/2013912-1459205327996-ahwu310.jpg","duration":649,"publication_date":"2016-03-28T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-drawful-with-kinda-funny","changefreq":"weekly","video":[{"title":"2016:E88 - Drawful with Kinda Funny","description":"In the first ever Achievement Hunter-Kinda Funny collaboration we play Drawful, and the results are... questionable....\n\n\n\nGet tickets for Kinda Funny Live 2","player_loc":"https://roosterteeth.com/embed/lets-play-2016-drawful-with-kinda-funny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f3980a0-46df-44f8-92f8-3b6f3a793352/sm/2013912-1459178845939-kindafunny_df_thumb.jpg","duration":1658,"publication_date":"2016-03-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-central-yharnam-great-levels-in-gaming","changefreq":"weekly","video":[{"title":"2016:E18 - Central Yharnam – Great Levels in Gaming","description":"With Dark Souls 3 just around the corner, join Max as he turns his monocular toward Bloodborne to take a look at Central Yharnam. Praise the good blood, let us cleanse these tarnished streets, and let's see what insights we can gain into the challenging level design for which FromSoftware is (in)famous.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-central-yharnam-great-levels-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e691e31c-7b3d-4fc7-8b31-6f7ee52cd8ae/sm/2013912-1459179214784-Central_Yharnam_Thumbnail_1.jpg","duration":933,"publication_date":"2016-03-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-135-matt-vs-michael","changefreq":"weekly","video":[{"title":"2016:E8 - Episode 135: Matt vs. Michael","description":"Michael and Matt go head-to-head with a thing on their head. That's right, it's the HTC Vive, and today it's throwing them into a virtual world where robots are attacking, and your only chance is to fight off endless waves of them and look like a badass! It's Space Pirate Simulator!","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-135-matt-vs-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3189f4a-965d-4842-9834-6ed32207031b/sm/2013912-1459191153076-versus_thumb.jpg","duration":708,"publication_date":"2016-03-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-super-smash-bros-for-wii-u-8-player-rumble","changefreq":"weekly","video":[{"title":"2016:E87 - Super Smash Bros for Wii U - 8 Player Rumble","description":"What's that? A bunch of people fighting to the death, ready to keep pummeling and clawing and scratching at each other until there's nothing left but a single survivor and a pile of man-pieces? Could it be Battle Royale? Hunger Games? Hunger Games Part 2: Katniss's Day Out? Oh hell naw! Here at Achievement Hunter, we keep it fucking real. We bring ScrewAttack over and then Smash the fuck out of them. Win every single time. Do you think Chad, Shaun, or Craig stand a chance with Michael, Lindsay, Jeremy, Ryan, and Jack in the mix? Hell no! Unless the Achievement Hunters take each other out first, which is totally possible because Battle Royals/Hungry Hungry Hunger Games/The Culling/rip-out-their-hearts-and-eat-those-hearts-free-for-all-8-player-mothafuckin-rumble! Let's do this!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-super-smash-bros-for-wii-u-8-player-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e77aca88-304a-41f1-b9bb-b46b3a44b92f/sm/834020-1459011332726-smashbros.jpg","duration":1284,"publication_date":"2016-03-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-sumo","changefreq":"weekly","video":[{"title":"2016:E86 - GTA V - Sumo!","description":"The boys jump into adversary mode and play sumo cars in precarious places across GTA 5!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-sumo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a5eb72e-b2c5-4961-82f3-d046a367613c/sm/834020-1459009387140-Sumo_thumb1.jpg","duration":1875,"publication_date":"2016-03-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-17","changefreq":"weekly","video":[{"title":"2016:E17 - Nun Fun - #17","description":"The AH crew sit down to talk about new hockey leagues, creepy Mickey Mouse costumes , Gavin and Jeremy's race to a million views and more on this week's Off Topic! This episode originally aired March 25, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baa57807-0002-44c2-88a7-79e4dd250b2c/sm/2013912-1458965998700-Off_Topic_Podcast_17.jpg","duration":7360,"publication_date":"2016-03-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-besiege-part-2","changefreq":"weekly","video":[{"title":"2016:E13 - Besiege Part 2","description":"In this episode, Adam and Joel create elegant machines, talk about life, and plan avian genocide.","player_loc":"https://roosterteeth.com/embed/how-to-2016-besiege-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86b95501-34c0-49af-87b5-488ad6228714/sm/2013912-1458926091091-Besiege2Thumb.jpg","duration":827,"publication_date":"2016-03-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-ultimate-chicken-horse","changefreq":"weekly","video":[{"title":"2016:E8 - Ultimate Chicken Horse","description":"Gavin and Michael jump, sprint, gallop, hurdle, strut and inevitably fall to their, otherwise, comedic deaths in this ultimate map building death trap.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-ultimate-chicken-horse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20cc0183-0f3a-4aa8-b20f-47a75c20f3d9/sm/2013912-1458930120949-pp_chickenhorse.jpg","duration":1139,"publication_date":"2016-03-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division","changefreq":"weekly","video":[{"title":"2016:E17 - 2016 Achievement Hunter Hockey League: Northern Nor North Havermeyer Division","description":"Get you Havermeyer hardware || Join the Achievement Hunter crew as they face-off yet again in another epic showdown. The Northern Nor North Havermeyer Division is underway and you do not want to miss this one!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-norther-nor-north-havermeyer-division","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21da4fcf-88da-4c01-b978-6161274f8efe/sm/2013912-1458853121246-Week1NNNH_Division_thumb.jpg","duration":2358,"publication_date":"2016-03-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-200","changefreq":"weekly","video":[{"title":"2016:E85 - Minecraft – Episode 200 – Super Sleuths","description":"A long time ago, in a Minecraft far, far, farrrr right on this very channel... we discovered the truth behind the Altar of Pimps. 100 episodes and years of careful planning (that definitely happened), the boys are back in the Altar to begin a new adventure. A journey into this new era of Minecraft. The 200s.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-200","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/895e8420-2521-4be8-9b81-225260cf7e34/sm/2013912-1458844288345-200_thumb.jpg","duration":2215,"publication_date":"2016-03-24T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-the-last-in-accuracy-288","changefreq":"weekly","video":[{"title":"2016:E12 - The Last in Accuracy – #288","description":"Ellie. We're going to make it through this, Ellie. Ellie. We can make it through this. But first, Ellie, we just have to get rid of this guy. He's - he's a scary guy, Ellie, but we can take him down. We can kill him with this bat I found, Ellie. As long as I hit him. As long as I hit him! With this bat, Ellie. If I can maybe hit him. With a swing, Ellie. Just one swing. If I could just connect, Ellie, his skull would be cracked into a pile of mush, Ellie. Ellie. DAMMIT! I just can't hit him. \n\nMichael and Jack take a look at this fail, plus more in Unravel, Grand Theft Auto V, Just Cause 3, and Halo 5: Guardians in this week's Fails of the Weak.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-the-last-in-accuracy-288","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6efb7e5a-f466-4c8e-8e63-0c22c6519f3e/sm/2013912-1458779070373-Fails_288_Thumb.png","duration":173,"publication_date":"2016-03-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-starwhal-just-the-tip-with-dante-basco","changefreq":"weekly","video":[{"title":"2016:E84 - StarWhal Just the Tip with Dante Basco","description":"Achievement Hunter is joined by Dante Basco for more interstellar stabbing in StarWhal Just the Tip!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-starwhal-just-the-tip-with-dante-basco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a4e9b8e-1178-45b7-b47b-a6f643143df8/sm/2013912-1458699660265-StarWhal_Thumb.jpg","duration":1319,"publication_date":"2016-03-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-8","changefreq":"weekly","video":[{"title":"2016:E83 - Let's Watch – Hitman - Paris","description":"Now that we're past the Hitman beta, Let's Watch Gavin get back to being Agent 47. Master of disguise, assassin supreme. Today, watch as he Zoolanders his way into a sexy fashion show. How does he do it? Easy peasy! \n\n\n\n\n\n\"No, Damien. I swear. It's me, Helmet Kruger, the superhot sexy model you put makeup on five times a week. Yes, my voice seems different. Yes, I'm a foot taller. Look, darling. It's just this lighting. Obviously it's me. Just look. I'm bald! Und I have a disdain for the middle class, those dirty peasants. Patooey. Obviously it's me.\"\n\n\n\n\n\n\n\nNailed it.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61a7afb6-853e-4a55-9eee-629b6ca06805/sm/2013912-1458699274657-LW_Hitman_Thumb_v003.png","duration":1729,"publication_date":"2016-03-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-2016-achievement-hunter-hockey-league-week-1-southeast-pimberton-division","changefreq":"weekly","video":[{"title":"2016:E16 - 2016 Achievement Hunter Hockey League: Week 1 – Southeast Pimberton Division","description":"Pimp some Pimberton threads || Join the Achievement Hunter crew as they face-off in the most epic showdown of the year! The NHL 2016 Hockey Tournament has commenced...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-2016-achievement-hunter-hockey-league-week-1-southeast-pimberton-division","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/885c2176-c422-4ba9-b15a-422635d6deb4/sm/834020-1458688867260-twake2.jpg","duration":3020,"publication_date":"2016-03-22T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-puddle-pile","changefreq":"weekly","video":[{"title":"2016:E13 - Hitman – Puddle Pile","description":"In this shocking episode, watch as Gavin and Geoff go on an eletricifiying killing spree.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-puddle-pile","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2360f44-f71c-4674-a930-5e75768d22ee/sm/2013912-1458662045517-ttd_hitman.jpg","duration":356,"publication_date":"2016-03-22T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trivial-pursuit-part-8","changefreq":"weekly","video":[{"title":"2016:E82 - Trivial Pursuit Part 8","description":"The latest installation of the Trivial Pursuit saga, with special guest Mica Burton!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trivial-pursuit-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d058adef-5c9b-4b06-b0ce-4974df2ff25d/sm/2013912-1458660588752-tp_thmb.jpg","duration":1596,"publication_date":"2016-03-22T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-7","changefreq":"weekly","video":[{"title":"2016:E81 - Let's Watch – Quantum Break","description":"We get a first look At the new \"Quantum Break\" and at what all the buzz is about! Can they finish it in time?","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40dcd87b-d2c5-4144-9193-d07a9091e035/sm/834020-1458609527249-qb.jpg","duration":1170,"publication_date":"2016-03-22T01:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-stalling-song-ahwu-for-march-21-st-2016-309","changefreq":"weekly","video":[{"title":"2016:E15 - Stalling Song – AHWU for March 21st, 2016 (#309)","description":"This is the stalling song\n\nEverybody sing along\n\nWhen will our Geoff arrive\n\nso AHWU time can really thrive?\n\n\n\nThis is the stalling song\n\nNot too short but not too long\n\nMaybe we'll get come beer\n\nAnd then lure Geoff right over here.\n\n\n\nThis is the stalling song\n\nUnder these pants I'm in a thong\n\nThat was a little joke\n\nThongs cost money and I'm broke\n\n\n\nOh. Sup Geoff? You want this mic? Were you standing off to the side this whole time and not coming over here just so I'd look stupid for AHWU? Yeah? That's what I expected. Okay, cool. \n\n\n\nWatch the Vid of the Week || Community vid: All of them? Perhaps? Maybe? Sure. All of them. You're all winners this week, community.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-stalling-song-ahwu-for-march-21-st-2016-309","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd979ac5-1989-4bdd-a260-423f224ea32a/sm/2013912-1458599721995-AHWU_copy.jpg","duration":396,"publication_date":"2016-03-21T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-tom-clancy-s-the-division","changefreq":"weekly","video":[{"title":"2016:E12 - Tom Clancy's The Division","description":"Jack and Ryan team up to bring you this week’s Five Facts on Tom Clancy’s The Division! Like Ubisoft facts? Click Here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-tom-clancy-s-the-division","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44b25c46-caec-4f4f-8387-765c4e0abcc2/sm/2013912-1458582230223-TTD.jpg","duration":204,"publication_date":"2016-03-21T17:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-cloudberry-kingdom-part-15","changefreq":"weekly","video":[{"title":"2016:E80 - Cloudberry Kingdom Part 15","description":"The Berry bros continue their Cloudberry Kingdom Journey. Each level more difficult than the last. How many will they finish this episode?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-cloudberry-kingdom-part-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7acfc07-67ca-4ff5-a315-da30080272ae/sm/2013912-1458317384489-cloudberrry15_thumb.jpg","duration":1704,"publication_date":"2016-03-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-smartie-party","changefreq":"weekly","video":[{"title":"2016:E15 - Smartie Party","description":"Not even snappy upbeat jazz can make this party classy...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-smartie-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b20bb051-2b69-4345-bc99-2927d5b06a13/sm/2013912-1458337239756-smartypart_thumb.jpg","duration":230,"publication_date":"2016-03-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-iv-hangman-s-noose","changefreq":"weekly","video":[{"title":"2016:E79 - GTA IV – Hangman's Noose","description":"The guys get retro and relive some old favorites in GTA IV!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-iv-hangman-s-noose","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb3eca1-d8ff-40f7-85b9-2c83459f1677/sm/2013912-1458316467810-gtaiv.jpg","duration":2048,"publication_date":"2016-03-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-16","changefreq":"weekly","video":[{"title":"2016:E16 - Kids Need Handjobs ft. Malik Forté & Arin Hanson - #16","description":"The AH Crew (plus Adam Kovic) sit down to talk about Fecal Transplant Therapy, Voldemort, Austin Powers and more on this week's Off Topic! This episode originally aired March 18, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d56e6826-2269-4d0d-91a1-0774e1738e99/sm/2013912-1458340215957-OFF16_-_THUMB.jpg","duration":7803,"publication_date":"2016-03-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-super-hot","changefreq":"weekly","video":[{"title":"2016:E12 - SUPERHOT","description":"SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT SUPER HOT","player_loc":"https://roosterteeth.com/embed/how-to-2016-super-hot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79c070cb-ab3b-480f-a7a9-28661c15d86d/sm/2013912-1458325413391-Thumb_SuperHot.jpg","duration":968,"publication_date":"2016-03-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-pokk-n-tournament","changefreq":"weekly","video":[{"title":"2016:E78 - Pokkén Tournament","description":"Achievement Hunter takes on ScrewAttack in the new Pokémon fighting game, Pokkén Tournament! Let the best MON win!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-pokk-n-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd6f7adb-a78c-44b2-ab5f-b6c995a01ab9/sm/2013912-1458251706552-Pokken_thumb.jpg","duration":1430,"publication_date":"2016-03-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-what-s-this","changefreq":"weekly","video":[{"title":"2016:E77 - What's This?","description":"Who knows. Check back Monday, March 21st, 2016 on http://youtube.com/LetsPlay","player_loc":"https://roosterteeth.com/embed/lets-play-2016-what-s-this","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8008370a-11f7-46c4-b9f2-51074bfb0bc1/sm/2013912-1458244098162-LP_Teaser_Thumbnail.jpg","duration":90,"publication_date":"2016-03-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-199-1-9-0-update","changefreq":"weekly","video":[{"title":"2016:E76 - Minecraft – Episode 199 – 1.9.0 Update","description":"MINECRAFT 1.9.0 ALREADY?! Capes! Flying! Dual wielding! Oh, and Herobrine was removed again.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-199-1-9-0-update","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd693b2c-b6bb-43c7-ae7d-b1ed1ba0fafd/sm/2013912-1458239802193-thumb.jpg","duration":2530,"publication_date":"2016-03-17T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-kill-the-unkillable-287","changefreq":"weekly","video":[{"title":"2016:E11 - Kill the Unkillable – #287","description":"Alright. Think think think. I've stabbed him, shot him, spat poison darts at him, dropped a 20-ton weight on his head, held his head underwater, ran him over with a train, used a flamethrower on him, tried to break his psyche, thrown rocks at his face, chainsaw'd him, covered him in bandages hoping maybe this was some sort of whacky reverse world, clubbed him, went clubbing with him, punched him in the throat, fed him to a goat, and yeah. I'm pretty much out of ideas. I think this guy may just be unkillable. Bummer. \n\nJeremy, Jack, and Michael take a look at this Assassin's Creed Syndicate fail, along with this week's best fails in Fallout 4, Megaman Legacy Collection, Star Wars Battlefront, and Rainbow 6: Seige.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-kill-the-unkillable-287","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffd8a483-3234-4911-aa02-8ecfa0f75699/sm/2013912-1458176635399-02_Fail_287_Thumb.png","duration":210,"publication_date":"2016-03-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-speed-runners-part-3","changefreq":"weekly","video":[{"title":"2016:E75 - Speed Runners Part 3","description":"Gavin, Michael, Ryan, and Jeremy have found the need for speed, and are running all night and day, so they can be outta control, to be in control.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-speed-runners-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f5b4f79-0e8e-44c6-b63b-e03748f90ead/sm/2013912-1458144621191-sppedrunners_thumbs.jpg","duration":2128,"publication_date":"2016-03-16T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-halo-5-grifball-ah-vs-the-world","changefreq":"weekly","video":[{"title":"2016:E7 - Halo 5 Grifball – AH Vs The World","description":"Have you ever wondered if the real life Grif is actually any good at Halo 5's Grifball? Well Achievement Hunter kinda knows that guy so they can answer that question for you!","player_loc":"https://roosterteeth.com/embed/vs-2016-halo-5-grifball-ah-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7160aa8-390c-4e36-b78c-70eece77b1cf/sm/2013912-1458082814957-ahvstw_final_thumb.jpg","duration":384,"publication_date":"2016-03-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-drunk-mario-kart-with-screwattack","changefreq":"weekly","video":[{"title":"2016:E74 - Drunk Mario Kart with ScrewAttack","description":"***Disclaimer*** We do not condone drinking and driving in any way shape or form IRL or otherwise, please drink responsibly. With all that said, LETS DO SOME DRIVING AND DRINKING!!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-drunk-mario-kart-with-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2a8ef0f-976b-4a00-a994-84a29cb54bc8/sm/2013912-1458068061766-mariokart_thumb.jpg","duration":2225,"publication_date":"2016-03-15T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gta-v-leap-of-faith","changefreq":"weekly","video":[{"title":"2016:E12 - GTA V – Leap of Faith","description":"The guys test their faith by leaping to their death repeatedly. Not recommended that you try this at home.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gta-v-leap-of-faith","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34a9c15b-f04d-4b23-8832-4bae33486367/sm/2013912-1458016553725-leap_of_faith_thumb.jpg","duration":659,"publication_date":"2016-03-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-pi-day-ahwu-for-march-14-th-2016-308","changefreq":"weekly","video":[{"title":"2016:E14 - Pi Day – AHWU for March 14th, 2016 (#308)","description":"It's Pi Day, but Jack and Geoff don't have any pie. Fucking losers. Maybe for 314? That'll be AHWU pie. There's still hope they can fix this travesty. \n\n\n\nSince it's Pi Day, go listen yourself some Pi by Hard 'N Phirm, the most well-balanced song about math, God slaughtering things or whatever, and also gettin' laid casually and multiple times. Because I KNOW THIS PI SHIT BACKWARDS AND FOREWARDS. Word. \n\n\n\nCheck out the Vid of the Week! There isn't a Community Vid, but be on the lookout for the Matt the Arrow Coolguy Arrowtime Contest of the Ages Video Award Show sometime in the future.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-pi-day-ahwu-for-march-14-th-2016-308","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b146a9f-7d2f-458e-98c2-cbbfbcdab68e/sm/2013912-1457998475158-ahwu_thumb.jpg","duration":413,"publication_date":"2016-03-14T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-the-division-mr-bean-ubisoft-office-and-breaking-bad-easter-eggs","changefreq":"weekly","video":[{"title":"2016:E15 - The Division – Mr. Bean, Ubisoft Office, and Breaking Bad Easter Eggs","description":"Jeremy and Geoff show you three more Easter Eggs in the destroyed city of The Division.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-the-division-mr-bean-ubisoft-office-and-breaking-bad-easter-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a33712f4-1279-49d8-9ecb-3c858e8a4ab8/sm/2013912-1457971187278-Thumb2.jpg","duration":256,"publication_date":"2016-03-14T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-far-cry-primal","changefreq":"weekly","video":[{"title":"2016:E11 - Far Cry Primal","description":"Jack and Jeremy team up this week to bring you Five Facts on Far Cry Primal!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-far-cry-primal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27c58a80-4296-48b0-89b0-4ddf7f2af8b5/sm/2013912-1457968507049-FCPTN.jpg","duration":223,"publication_date":"2016-03-14T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-8","changefreq":"weekly","video":[{"title":"S3:E28 - All The High Fives - #28","description":"Jon Risinger welcomes Burnie Burns, Aaron Marquis, and special guests Colton Dunn and John Erler in this episode of On The Spot: All The High Fives - #28.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/25f8f8ca-32e9-4e69-a056-2404b7ca19ea.jpg/sm/maxresdefault.jpg","duration":2495,"publication_date":"2015-07-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-10","changefreq":"weekly","video":[{"title":"2015:E10 - Fire Wasp","description":"On July 4th, Miles and Kerry must go into battle to defend all of mankind. Mankind. That word has new meaning today. They fight for our freedomNot from tyranny, oppression, or persecutionbut from flying insects. Were going to live on! Were going to survive! We are going to smoke our meats! Today, we celebrate our Independence Day!","player_loc":"https://roosterteeth.com/embed/rt-life-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/79195f9a-a74b-4c76-883c-85abe2e26b25.jpg/sm/maxresdefault.jpg","duration":89,"publication_date":"2015-07-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-4","changefreq":"weekly","video":[{"title":"2015:E8 - Podcast #331 Post Show","description":"RT Discusses Undies","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/213a6379-05cb-4b3f-82fa-0c3c5e9df1e8.jpg/sm/RTPPodcastPostShow331.jpg","duration":1252,"publication_date":"2015-07-09T13:53:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-glowing-dicks-and-pretty-chicks","changefreq":"weekly","video":[{"title":"S1:E2 - Glowing Dicks & Pretty Chicks","description":"This week, Gus joins Gav and Burnie to discuss memory loss, sexy puke, and glowing dicks. Would you take the million dollars?","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-glowing-dicks-and-pretty-chicks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d1cc2af8-082e-4beb-9b8c-9f2f219a50fa.jpg/sm/maxresdefault.jpg","duration":262,"publication_date":"2015-07-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-7","changefreq":"weekly","video":[{"title":"S3:E27 - The Load-Bearing Stripper Pole - #27","description":"Jon Risinger welcomes Lindsay Jones, Miles Luna, Kerry Shawcross, and special guest Shannon McCormick in this Fifty Shades episode of On The Spot: The Load-Bearing Stripper Pole - #27.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d96a8c1c-6dae-45a6-837d-6652f6df01e3.jpg/sm/maxresdefault.jpg","duration":2378,"publication_date":"2015-07-08T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-331","changefreq":"weekly","video":[{"title":"2015:E331 - RT Podcast #331","description":"RT Discusses The Cringiest Girlfriend Gift Ever","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-331","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6419,"publication_date":"2015-07-08T14:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-330","changefreq":"weekly","video":[{"title":"2015:E330 - RT Podcast #330","description":"RT Discusses Burnie's Identity Crisis","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-330","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5826,"publication_date":"2015-07-08T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-329","changefreq":"weekly","video":[{"title":"2015:E329 - RT Podcast #329","description":"RT Discusses The Great GoT Divide","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-329","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5937,"publication_date":"2015-07-08T14:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-328","changefreq":"weekly","video":[{"title":"2015:E328 - RT Podcast #328","description":"RT Discusses The Thousand Finger Sensation","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-328","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5617,"publication_date":"2015-07-08T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-327","changefreq":"weekly","video":[{"title":"2015:E327 - RT Podcast #327","description":"RT Discusses The Baffling Bunny Snort","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-327","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6222,"publication_date":"2015-07-08T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-326","changefreq":"weekly","video":[{"title":"2015:E326 - RT Podcast #326","description":"RT Discusses Planet of the Machines","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-326","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6347,"publication_date":"2015-07-08T14:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-10","changefreq":"weekly","video":[{"title":"LP:E10 - The Birds'n'Bees - Let's Play Minimations #10","description":"In this final episode, Geoff does his best \"Attack on Titan\" impression, the Hunters play \"Hide the Handgrenade,\" and a couple villagers teach Ryan about the birds'n'bees. The blocky, pixelated birds'n'bees...","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/030a78b0-f4eb-47f2-8f1b-f1ef799bf284.jpg/sm/maxresdefault.jpg","duration":80,"publication_date":"2015-07-07T13:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-9","changefreq":"weekly","video":[{"title":"2015:E9 - Jack and Joels Hot Dog Eating Contest!","description":"Kerry, Goeff, Michael, Blaine and Tyler face off in the Ultimate Hot Competitive Food Eating Competition!","player_loc":"https://roosterteeth.com/embed/rt-life-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/6b45814c-4b11-41a7-b748-5e222394d4ce.jpg/sm/maxresdefault.jpg","duration":332,"publication_date":"2015-07-05T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-psa-warning-trigger-warnings","changefreq":"weekly","video":[{"title":"S1:E46 - PSA - Warning: Trigger Warnings","description":"WARNING! The following video contains gun violence, death, intimidation, discussions of sex, discussions of discussions of sex, descriptions of food, overeating, binge eating, eating because youve lost hope, swearing, verbal abuse, and bunch of other stuff that could potentially trigger you. You have been warned.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-psa-warning-trigger-warnings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e66dd810-ea94-4c3a-9216-f96b7de5b6e0/sm/ep8350.jpg","duration":372,"publication_date":"2015-07-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-wheres-waldo-the-audiobook","changefreq":"weekly","video":[{"title":"S6:E4 - Where's Waldo?: The Audiobook","description":"Don't you hate wasting weeks, if not months, of your life searching for Waldo Well, never fear. With the new Where's Waldo: The Audiobook you can search for Waldo hands free, eyes free, and even mouth free. Never again will you waste your summer hunting for Waldo. Listen to the first page for free: http://bit.ly/WheresWaldoAudiobook","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-wheres-waldo-the-audiobook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1006ee7e-47a4-416a-b020-23698a25369c.jpg/sm/maxresdefault.jpg","duration":128,"publication_date":"2015-07-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-rt-life-jeremys-frosting-facial","changefreq":"weekly","video":[{"title":"S2:E253 - RT Life: Jeremys Frosting Facial","description":"The guys are too lazy to buy Jeremy an actual birthday cake.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-rt-life-jeremys-frosting-facial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/902c205a-cffe-488d-aab4-1d02311c5ffb.jpg/sm/RTSponsorCutJeremysFrostingFacial2Thumbnail.jpg","duration":58,"publication_date":"2015-07-02T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-10","changefreq":"weekly","video":[{"title":"2015:E29 - Joel & Matt Take a Spill","description":"More drunk stories! This time, Matt gets thrown out of a blackjack table for spilling all the drinks, and Joel also laments being \"that guy\" when he does it, too.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebb450f8-2286-4be3-8c01-44353ca4a214/sm/ep11609.jpg","duration":78,"publication_date":"2015-06-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-12","changefreq":"weekly","video":[{"title":"S13:E12 - Episode 12: Off - Key","description":"Felix wants the Great Key of Chorus, and theres only one man standing in his way","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c630685b-93c1-49cf-9d5d-3da6e32576ef/sm/ep11591.jpg","duration":382,"publication_date":"2015-06-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-6","changefreq":"weekly","video":[{"title":"S3:E26 - The Kevin Show - #26","description":"Hosted by Jon Risinger. Featuring Joel Heyman, Jack Pattillo along with Chad James and John Francis McCullagh of ScrewAttack!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa175a78-dad6-4c28-9239-251660b9ccff/sm/ep11590.jpg","duration":2087,"publication_date":"2015-06-26T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-5","changefreq":"weekly","video":[{"title":"S3:E25 - Raw Bread - #25","description":"Special guests Paul Scheer (Scheer-RL http://bit.ly/1Loqb9y) and Kirk Johnson (http://bit.ly/1Bl3wLf) join Gus Sorola, Michael Jones, and Jon Risinger for On The Spot: Raw Bread - #25.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07196409-593b-45a0-933d-e3d33a3507b1/sm/ep11589.jpg","duration":2127,"publication_date":"2015-06-26T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-4","changefreq":"weekly","video":[{"title":"S3:E24 - Danny LaBido - #24","description":"Lindsay Jones, Barbara Dunkelman, Aaron Marquis and special guest Mica Burton join Jon Risinger for On The Spot: Danny LaBido #24. One team tells a prehistoric love tale and another face the nastiest redemption challenge yet!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cd9b2e7-b1ec-4931-a41f-2256fa5e083e/sm/ep11588.jpg","duration":2294,"publication_date":"2015-06-26T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-3","changefreq":"weekly","video":[{"title":"S3:E23 - The Eyebrow Cam - #23","description":"No one is safe from the eyebrow cam in episode #23 of On The Spot featuring Joel Heyman, Barbara Dunkelman, Aaron Marquis and Jeremy Dooley.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7004586-dccc-4c33-b4ea-c45b491327ba/sm/ep11587.jpg","duration":1927,"publication_date":"2015-06-26T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-2","changefreq":"weekly","video":[{"title":"2015:E7 - Podcast #329 Post Show","description":"This Podcast post show started with the question 'Should we talk about the Confederate Flag","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35ca13e9-50b5-4b10-a0cf-1769420d0e9e/sm/ep11585.jpg","duration":1574,"publication_date":"2015-06-26T18:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-6","changefreq":"weekly","video":[{"title":"2015:E6 - The Scorpion Prank","description":"A Company-wide email sent by Josh: \"Did you know that if you put a cup over a scorpion on your desk, they are strong enough to push it to the edge and wiggle out somehow Now we all do! \r\n\r\nSo, the Stephen the Scorpion is free in the office somewhere. Don't freak out -- he's not even remotely dangerous, or particularly fast for that matter. His \"venom\" is no worse than a bee sting.\r\n\r\nIf you see him, first off, PLEASE don't squash him. He's seriously harmless. Please just come get me and I'll facilitate his safe return. Thanks in advance for sparing him,\r\n\r\nJosh\r\n\r\nPS- he HAS been snuggling next to this fake penis Aaron put in his aquarium a few months back, so maybe don't expose yourself in the office tomorrow. Even though it's Friday.\"","player_loc":"https://roosterteeth.com/embed/rt-life-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9548813e-ab97-47fc-ba29-49adfe888a78/sm/ep11584.jpg","duration":148,"publication_date":"2015-06-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-6","changefreq":"weekly","video":[{"title":"2015:E28 - The Boobs That Got Away","description":"Gus' story about Drunk Matt lost on/at the Subway brings up a painful memory of loss from Geoff's past.\r\nAudio from RT Sponsorcast - Parties: http://roosterteeth.com/archive/id=10581&v=more\r\nLike the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/1iXPF47","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47274c60-be5a-4b4e-a4da-a9a069ce6031/sm/ep11573.jpg","duration":88,"publication_date":"2015-06-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-11","changefreq":"weekly","video":[{"title":"S13:E11 - Episode 11: Dish Best Served","description":"With Locus watching over Alpha, Felix hunting for the key, and Sharkface squaring off with Carolina, our heroes dont have much time","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d440ec2e-ee14-4fc4-9536-e9b2baf644a3/sm/ep11561.jpg","duration":541,"publication_date":"2015-06-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-lets-play-with-your-mom-left-4-dead-2","changefreq":"weekly","video":[{"title":"S1:E7 - Let's Play With Your Mom: Left 4 Dead 2","description":"Chris invites his mom to play some Left 4 Dead 2 along with Adam and Joel. There's lots of blood, death and baby pictures. (We lied about the baby pictures.)","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-lets-play-with-your-mom-left-4-dead-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7168ffb6-fce8-4bd2-ac26-abc42a3f8e84/sm/ep11559.jpg","duration":695,"publication_date":"2015-06-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-4","changefreq":"weekly","video":[{"title":"2015:E4 - Brandon Stuck in the Rain","description":"Brandon devises a brilliant plan to combat the rain but, what he doesn't realize, is that Miles has a plan of his own.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9ea48bd-ef4b-43d0-9f91-baa7ccbade4e/sm/ep11558.jpg","duration":90,"publication_date":"2015-06-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-3","changefreq":"weekly","video":[{"title":"2015:E11 - Do Dicks Age? - #22","description":"Geoff and Gavin often have deep discussions in the car as they drive to bars. Sometimes, however, they need an additional perspective. Griffon drops the dick knowledge on them both.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55ccde1c-3ffd-40f3-9a82-4c4985cb25c0/sm/ep11557.jpg","duration":144,"publication_date":"2015-06-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-lets-play-with-your-mom-left-4-dead-2-part-two","changefreq":"weekly","video":[{"title":"S2:E252 - Let's Play With Your Mom: Left 4 Dead 2 Part Two","description":"Chris' mom continues trying to play Left 4 Dead 2!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-lets-play-with-your-mom-left-4-dead-2-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b77dcc4-5136-4d3a-ba3e-f6b8e226edbb/sm/ep11560.jpg","duration":438,"publication_date":"2015-06-19T20:52:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-3","changefreq":"weekly","video":[{"title":"2015:E27 - Barbara Pun-kelman IV","description":"Hope you like puns, because it's time for another installment of Barbara Pun-kelman! This time, Burnie gets in on the action, and Barbara tell a pun so bad Gus and Burnie take the easy way out.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19476b55-60f5-4eda-b0d4-9efb4c1a0e94/sm/ep11547.jpg","duration":87,"publication_date":"2015-06-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-10","changefreq":"weekly","video":[{"title":"S13:E10 - Episode 10: Temple of the Key","description":"The assault on Alpha is now a fight for survival, and Charon's forces on converging on the Great Key.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f52607a5-b899-4d03-a6ea-ffeeccb4dbf9/sm/ep11531.jpg","duration":648,"publication_date":"2015-06-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-2","changefreq":"weekly","video":[{"title":"2015:E2 - Testosterone Battle","description":"Protein and balls abound in this RT Life, Blaine and Aaron wrestle for Alpha male dominance. Unsurprisingly, Chris becomes a not-so-innocent bystander.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1866ec-e659-49ea-be79-fcdaa4c1aa88/sm/ep11534.jpg","duration":108,"publication_date":"2015-06-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-funhaus-mic-test-and-blaines-wild-ride","changefreq":"weekly","video":[{"title":"S2:E251 - Funhaus Mic Test and Blaines Wild Ride","description":"The Funhaus guys test a new microphone while Alan takes Blaine out for a spin.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-funhaus-mic-test-and-blaines-wild-ride","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b9580c3-8a36-4aff-ad12-8a4ad37ba1a3/sm/ep11535.jpg","duration":114,"publication_date":"2015-06-12T20:56:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1","changefreq":"weekly","video":[{"title":"2015:E6 - Podcast #327 Post Show","description":"RT Discusses iPhones On This Weeks RT Podcast Post Show.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ad452d8-0d9b-4b3a-a93b-654c083a74ef/sm/ep11529.jpg","duration":997,"publication_date":"2015-06-12T17:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-spinning-water-galaxies","changefreq":"weekly","video":[{"title":"S1:E42 - Spinning Water Galaxies","description":"Gav and Dan whip out some johnnies to show you some awesome spinning liquid physics.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-spinning-water-galaxies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eef8cb0-88b1-4dc1-8673-0fd075243745/sm/ep11514.jpg","duration":388,"publication_date":"2015-06-09T21:15:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-9","changefreq":"weekly","video":[{"title":"LP:E9 - Technical Difficulties - Let's Play Minimations #9","description":"Geoff, Ryan, Jack and the gang form their own \"Glitch Mob\" as they battle game bugs.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07fff653-7625-4e29-8e05-36c6faeb1d4e/sm/ep11510.jpg","duration":91,"publication_date":"2015-06-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-9","changefreq":"weekly","video":[{"title":"S13:E9 - Episode 9: You Better Watch Out","description":"The Away Team has questions, Santa has answers... and a ridiculous name.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bce3949a-dbf5-4b4b-8ac7-6069d6df0e86/sm/ep11496.jpg","duration":585,"publication_date":"2015-06-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-8","changefreq":"weekly","video":[{"title":"2015:E5 - Podcast #326 Post Show","description":"RT discusses office fitness.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e95e4c14-c91d-43b5-9521-17cb8456dc97/sm/ep11498.jpg","duration":724,"publication_date":"2015-06-05T19:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-12","changefreq":"weekly","video":[{"title":"2015:E10 - Rain Run - #21","description":"Gavin experiences his first Texas thunderstorm... among other things. Big things.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9686f56c-1036-4886-a1d4-62977c92ed35/sm/ep11494.jpg","duration":236,"publication_date":"2015-06-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3-2","changefreq":"weekly","video":[{"title":"S3:E22 - My Bag of Emotions - #22","description":"Joel Heyman, Gus Sorola, Jeremy Dooley and special guest John Erler tear through On The Spot: My Bag of Emotions.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b77e825-252f-4e2f-9d69-1f99bd21f32a/sm/ep11479.jpg","duration":1908,"publication_date":"2015-06-02T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-3","changefreq":"weekly","video":[{"title":"S3:E21 - The Cookie Party - #21","description":"Matt Hullum and Chris Demarais match wits with Burnie Burns and Kirk Johnson of Lazer Team in the season 3 opener of On The Spot: The Cookie Party!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f46141b8-5048-4b3f-8628-fbe581cdc93c/sm/ep11478.jpg","duration":2411,"publication_date":"2015-06-02T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-10","changefreq":"weekly","video":[{"title":"S2:E20 - The Brown Spot - #20","description":"Adam and James face off against Ray and Kerry in the season two finale of On The Spot.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8764041c-883c-4c7c-bdcc-2b376a518daf/sm/ep11477.jpg","duration":2557,"publication_date":"2015-06-02T19:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-9","changefreq":"weekly","video":[{"title":"S2:E19 - The Easter Pug - #19","description":"Josh, Aaron, Zach, and Chris (and Penny the Pug) are back to trash another holiday.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3df81fc8-381f-43e0-809a-1097b7dfb083/sm/ep11476.jpg","duration":2287,"publication_date":"2015-06-02T19:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-21","changefreq":"weekly","video":[{"title":"2015:E26 - The Legend of Drunk Matt","description":"Gus and Geoff remember their favorites Drunk Matt moments. Audio from RT Sponsorcast - Parties: http://roosterteeth.com/archive/id=10581","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/472a157a-09c9-4b44-a400-2dbaab74c77b/sm/ep11473.jpg","duration":102,"publication_date":"2015-06-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-8","changefreq":"weekly","video":[{"title":"S2:E18 - The Bleach Cam - #18","description":"Miles, Chris, Barbara and Kerry decide who is thumbable on this week's episode of On The Spot #18 sponsored by ZipRecruiter.com (http://bit.ly/1Hogsye)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c274b13d-504d-40de-87db-7a5f56a43719/sm/ep11471.jpg","duration":2254,"publication_date":"2015-06-01T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-psa-the-sound-of-stupid","changefreq":"weekly","video":[{"title":"S1:E45 - PSA: The Sound of Stupid","description":"Tucker and Grif would like to talk to you about ASMR in this week's/11//&$#*do_not_13_adjust_(@#_your_monitor_#57#!!*0010110*///*/:3","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-psa-the-sound-of-stupid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/092cdf5c-c8e9-4cdf-9484-e2ddc6436f9e/sm/ep11446.jpg","duration":352,"publication_date":"2015-05-31T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-self-driving-bing-car-bloopers","changefreq":"weekly","video":[{"title":"S6:E11 - Self-Driving Bing Car Bloopers","description":"Watch the behind the scenes outtakes and funny moments from the Self-Driving Bing Car!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-self-driving-bing-car-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/129576e0-ff86-48d6-94be-56efda76502f/sm/ep11458.jpg","duration":92,"publication_date":"2015-05-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-15","changefreq":"weekly","video":[{"title":"2015:E15 - Chris Runs Over Children","description":"Chris, Aaron, and Josh race around on all fours. DISCLAIMER: All children were harmed during the filming of this video.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dc0d903-6491-4fe1-88ea-3a5fb11ffeac/sm/ep11448.jpg","duration":124,"publication_date":"2015-05-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-7","changefreq":"weekly","video":[{"title":"S2:E17 - Team Internet vs Team Box - #17","description":"Michael, Lindsay, Kerry and Barbara figure out The McDonalds Effect on this week's episode of On The Spot #17","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f15919dc-5277-4e3f-b867-9490bbfb156c/sm/ep11456.jpg","duration":2411,"publication_date":"2015-05-29T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-6","changefreq":"weekly","video":[{"title":"S2:E16 - Team A Minus Team vs Team CIS - #16","description":"Michael, Lindsay, Jeremy and Matt take a shot at Last Chance Undies on this week's episode of On The Spot #16","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2eff85e-b143-49b2-995a-74b516d5d721/sm/ep11455.jpg","duration":2722,"publication_date":"2015-05-29T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-5","changefreq":"weekly","video":[{"title":"S2:E15 - Team Weretrouts VS Team GAGAG - #15","description":"Team Weretrouts VS Team GAGAG.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f1dd74c-1010-4d0a-b013-c134344a8463/sm/ep11454.jpg","duration":2077,"publication_date":"2015-05-29T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-4","changefreq":"weekly","video":[{"title":"S2:E14 - On The Spot #14","description":"Blaine Gibson takes on the World on this episode of On The Spot, sponsored by Lynda.com (http://lynda.com/onthespot).","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b066239-593b-4c5f-b2ab-ec68fcb85f81/sm/ep11453.jpg","duration":2728,"publication_date":"2015-05-29T19:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-3","changefreq":"weekly","video":[{"title":"S2:E13 - On The Spot #13","description":"Ray and Ryan take on Team Mud Stuffin on this episode of On The Spot, sponsored by Lynda.com (http://lynda.com/onthespot)","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2f3cad4-9d20-4d2c-ba15-2909b09b4a55/sm/ep11452.jpg","duration":1977,"publication_date":"2015-05-29T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2-2","changefreq":"weekly","video":[{"title":"S2:E12 - Funhaus vs. Fart Whisperer and Hogwarts - #12","description":"Bruce Greene, Adam Kovic, Lawrence Sonntag and James Willems are brought to their knees. Jon Risinger hosts On The Spot #12 recorded live February 19, 2015.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d47484e-c41d-4689-b741-7091d97499fb/sm/ep11451.jpg","duration":2059,"publication_date":"2015-05-29T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-2","changefreq":"weekly","video":[{"title":"S2:E11 - On the Spot #11","description":"Jack and Joel take on Ray and Ryan on the return of On The Spot, sponsored by NatureBox(http://bit.ly/1AxXTa0).","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3af4d288-0fa9-4a5f-ac90-8052f5873332/sm/ep11450.jpg","duration":2262,"publication_date":"2015-05-29T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-7","changefreq":"weekly","video":[{"title":"2015:E4 - Podcast #325 Post Show","description":"RT Discusses The Best Places To Take A Date To.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bb2c1a7-a72d-408a-9ab2-cd8db9b29730/sm/ep11441.jpg","duration":934,"publication_date":"2015-05-29T14:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-explosive-oil-fire-at-2500fps","changefreq":"weekly","video":[{"title":"S1:E41 - Explosive Oil Fire at 2500fps","description":"Gav and Dan show you one of the kitchen's biggest no-nos. Don't put out an oil fire with water!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-explosive-oil-fire-at-2500fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71797f61-bf02-4a6e-bef0-6d33afe755b2/sm/ep10950.jpg","duration":250,"publication_date":"2015-05-27T14:56:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-325","changefreq":"weekly","video":[{"title":"2015:E325 - RT Podcast #325","description":"RT Discusses Airport Security Searches","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-325","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5408,"publication_date":"2015-05-27T01:05:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-19","changefreq":"weekly","video":[{"title":"2015:E25 - The Burglar and The Fire","description":"Chris, Gus, and Gav talk about what they'd do if they were robbing a house that's on fire.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/231ddd40-9500-4120-8c1d-b5e40e0b6d60/sm/ep10944.jpg","duration":76,"publication_date":"2015-05-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-8","changefreq":"weekly","video":[{"title":"S13:E8 - Episode 8: Test Your Might","description":"While the armies of Chorus converge on Alpha, the members of the away team are doing their best to understand the mysterious alien gateway.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9191f4ae-fa2f-4346-8dbb-a105ff7b063c/sm/ep10930.jpg","duration":432,"publication_date":"2015-05-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-self-driving-bing-car","changefreq":"weekly","video":[{"title":"S6:E10 - Self-Driving Bing Car","description":"Google better watch out, there's a new automated vehicle on the road. Introducing the Bing Self-Driving Car.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-self-driving-bing-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c511a0a-e91b-40a7-9878-700a4b4e4e39/sm/ep10934.jpg","duration":165,"publication_date":"2015-05-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-chris-demarais","changefreq":"weekly","video":[{"title":"S2:E250 - Quick Draw with Patrick! (featuring Chris Demarais)","description":"This week Pat finds new ways to embarrass Chris.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-chris-demarais","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c39d31b-0a68-486c-a0f4-472785d8978d/sm/ep10929.jpg","duration":176,"publication_date":"2015-05-22T17:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-6","changefreq":"weekly","video":[{"title":"2015:E3 - Podcast #324 Post Show","description":"RT Discusses Video Games On This Weeks RT Podcast Post Show","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6256ebe8-92d5-408d-91b1-01a9185344ec/sm/ep10926.jpg","duration":1281,"publication_date":"2015-05-22T14:53:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/million-dollars-but-season-1-million-dollars-but","changefreq":"weekly","video":[{"title":"S1:E1 - Million Dollars, But...","description":"What would you do for a million dollars? Gavin, Burnie, and Barbara would do anything to get rich. Seriously. Anything.","player_loc":"https://roosterteeth.com/embed/million-dollars-but-season-1-million-dollars-but","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d534e08-e8b6-48e8-8898-ef8dd0008bbf/sm/ep10916.jpg","duration":222,"publication_date":"2015-05-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-324","changefreq":"weekly","video":[{"title":"2015:E324 - RT Podcast #324","description":"RT Discusses Hand Holding","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-324","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6026,"publication_date":"2015-05-20T01:15:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-14","changefreq":"weekly","video":[{"title":"2015:E24 - Lindsay The Poke-Bully","description":"Lindsay tells about how she used to bully church kids to get Pokemon cards, and Matt has to battle to earn his place in the afterlife.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d22fd34-b68c-4ff3-be0d-5f07a8100080/sm/ep10913.jpg","duration":84,"publication_date":"2015-05-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-barenaked-ladies-say-what-you-want-official-music-video","changefreq":"weekly","video":[{"title":"S6:E6 - Barenaked Ladies - \"Say What You Want\" (Official Music Video)","description":"Silverball by Barenaked Ladies is out June 2nd - preorder here http://smarturl.it/BNLSilverball and receive this song and others as an instant grat track!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-barenaked-ladies-say-what-you-want-official-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3e64942-28a7-4902-9649-e3deabb67a50/sm/ep10909.jpg","duration":219,"publication_date":"2015-05-19T16:21:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-5","changefreq":"weekly","video":[{"title":"2015:E2 - Podcast #323 Post Show","description":"RT discusses trying to find brunch in Europe.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96c59903-b9e5-4319-bc94-f877182ad215/sm/ep10899.jpg","duration":1341,"publication_date":"2015-05-18T15:50:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-7","changefreq":"weekly","video":[{"title":"S13:E7 - Episode 7: Locus of Control","description":"Charon's forces are keeping themselves busy.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/298ded8d-99c8-4d29-ad5e-afa19de1ff57/sm/ep10889.jpg","duration":491,"publication_date":"2015-05-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-11","changefreq":"weekly","video":[{"title":"2015:E11 - Gummy Bear Surgeon Simulator","description":"The guys try to break apart the world's strongest Gummy Bear","player_loc":"https://roosterteeth.com/embed/rt-life-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/930ff747-507d-4f37-b392-94301b22a883/sm/ep10895.jpg","duration":89,"publication_date":"2015-05-15T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-free-play-friday-recap","changefreq":"weekly","video":[{"title":"S1:E6 - Free Play: Friday Recap","description":"Meg and Ryan take over this weeks' recap for a special pilot episode of Free Play: Friday Recap. This video is open to sponsors and non-sponsors at RoosterTeeth.com","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-free-play-friday-recap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf676601-ad19-4e54-bb52-3f3bef126503/sm/ep10890.jpg","duration":721,"publication_date":"2015-05-15T15:26:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-lighting-a-candle-without-touching-it","changefreq":"weekly","video":[{"title":"S1:E40 - Lighting a Candle Without Touching It","description":"This video was surprisingly highly requested. And you know us. We're the Slow Mo Guys. We deliver!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-lighting-a-candle-without-touching-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85281186-347e-4f2c-8a3e-088670cf2fc9/sm/ep10877.jpg","duration":185,"publication_date":"2015-05-13T17:25:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-free-play-pilot-03","changefreq":"weekly","video":[{"title":"S1:E5 - Free Play Pilot #03","description":"Meg and Ryan are back with an exclusive clip from Season 2 of X-Ray and Vav, plus Patrick quick draws during the third pilot episode of Free Play! Give us your feedback in the comments.","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-free-play-pilot-03","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5b8fe9a-4b5d-4a0c-8f00-3be5ad4673b7/sm/ep10875.jpg","duration":1044,"publication_date":"2015-05-13T16:54:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-323","changefreq":"weekly","video":[{"title":"2015:E323 - RT Podcast #323","description":"RT Discusses Selfish Selfies","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-323","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5806,"publication_date":"2015-05-13T01:02:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-8","changefreq":"weekly","video":[{"title":"LP:E8 - Mind the Gap - Let's Play Minimations #8","description":"Gavin's wish is Geoff's command.... much to Gavin's regret. Meanwhile, Jack asks \"How does cake\"","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ff7ca26-4609-4b0d-9e71-3ed0bd529063/sm/ep10867.jpg","duration":76,"publication_date":"2015-05-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-free-play-pilot-02","changefreq":"weekly","video":[{"title":"S1:E4 - Free Play Pilot #02","description":"We've been green-lit for the week! Check out the new episode of Free Play and tell us what you think in the comments below! If you like it, tell your friends!","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-free-play-pilot-02","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8d16b61-def3-46cd-bf1c-d1f58e45e888/sm/ep10862.jpg","duration":985,"publication_date":"2015-05-11T18:00:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-6","changefreq":"weekly","video":[{"title":"S13:E6 - Episode 6: Along Came a Spider","description":"The armies of Chorus prepare for battle while Grey and the Blues travel to the mysterious alien coordinates.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c7387f-1f4d-48b1-8502-61fdf49f9f4e/sm/ep10853.jpg","duration":528,"publication_date":"2015-05-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-6","changefreq":"weekly","video":[{"title":"2015:E9 - Close Shave - #20","description":"Personal hygiene is important.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07df6dc7-7d4f-459b-bac3-d832612e0081/sm/ep10854.jpg","duration":231,"publication_date":"2015-05-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-3","changefreq":"weekly","video":[{"title":"2015:E1 - Podcast #322 Post Show","description":"Gus walks off the set in the inaugural podcast after-show.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/213c7e4b-e7db-46be-aac3-7041ac789453/sm/ep10855.jpg","duration":574,"publication_date":"2015-05-08T20:52:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-rt-pilots-sports-show-with-brandon-jordan-and-tyler","changefreq":"weekly","video":[{"title":"S1:E3 - RT Pilots: Sports Show with Brandon, Jordan and Tyler","description":"Join Brandon, Jordan, and Tyler as they talk about the NFL Draft. Like the podcast Be sure to take the survey: http://svy.mk/1PsRX5D","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-rt-pilots-sports-show-with-brandon-jordan-and-tyler","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a352b8-b4a3-4b05-8ee5-1775fc4a4103/sm/ep10848.jpg","duration":1707,"publication_date":"2015-05-07T19:45:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-rt-pilots-sports-show-with-geoff-brandon-tyler-barbara-and-adam","changefreq":"weekly","video":[{"title":"S1:E2 - RT Pilots: Sports Show with Geoff, Brandon, Tyler, Barbara and Adam","description":"Welcome to the 2nd pilot episode of the Rooster Teeth Sports Show where we discuss the NBA and NHL Playoffs! Let us know what you think! RT Pilots is a platform for us to test out new content before deciding to launch a new show to the general public. Also, we'll be releasing a show dedicated to the NFL draft later this week.","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-rt-pilots-sports-show-with-geoff-brandon-tyler-barbara-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61b7fc84-e86c-46fa-9952-b72865766750/sm/ep10836.jpg","duration":1972,"publication_date":"2015-05-06T19:41:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-322","changefreq":"weekly","video":[{"title":"2015:E322 - RT Podcast #322","description":"RT Discusses Gym Class","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-322","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5632,"publication_date":"2015-05-06T01:06:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-5","changefreq":"weekly","video":[{"title":"2015:E23 - Godzilla vs. The Girls School of Mystery","description":"Jack and Joel pitch a blockbuster movie about Godzilla solving a murder at an all girls school, but they can't seem to agree on the tone for the film.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4ba5c7c-9daf-4546-9db8-73d08f4fa793/sm/ep10789.jpg","duration":95,"publication_date":"2015-05-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-5","changefreq":"weekly","video":[{"title":"S13:E5 - Episode 5: No Fighting in the War Room","description":"With Charon's hybrid technology destroyed, the armies of Chorus now have a rare opportunity... and an important decision to make.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b873a6eb-8dc9-4f65-8158-4c7a1b5a59b8/sm/ep10774.jpg","duration":439,"publication_date":"2015-05-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-rt-life-spice-up-your-life","changefreq":"weekly","video":[{"title":"S2:E249 - RT Life: Spice up your Life","description":"Adam somehow convinces Matt and Jeremy to a hot sauce challenge.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-rt-life-spice-up-your-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b34b61a6-a369-4e61-a992-b892cece6d05/sm/ep10775.jpg","duration":101,"publication_date":"2015-05-03T16:00:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Stupid Scootin","description":"Miles revolutionizes the world of Extreme Sports with Stupid Scootin'. Scooters are fun. Two scooters are twice as fun.","player_loc":"https://roosterteeth.com/embed/rt-life-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c4e592a-b832-45bf-88f9-43766435d059/sm/ep10766.jpg","duration":96,"publication_date":"2015-05-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-rt-pilots-free-play","changefreq":"weekly","video":[{"title":"S2:E248 - RT Pilots: Free Play","description":"Meg and Ryan try out a fun, new way to bring you the news, outrageous videos and more. Tell us what you think in the comments below!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-rt-pilots-free-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e716d0dd-cd78-4d5e-9a4d-9cd5038c6323/sm/ep10728.jpg","duration":705,"publication_date":"2015-04-30T17:09:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-321","changefreq":"weekly","video":[{"title":"2015:E321 - RT Podcast #321","description":"RT Discusses Collecting Amiibos","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-321","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5632,"publication_date":"2015-04-29T01:04:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-23","changefreq":"weekly","video":[{"title":"2015:E22 - Burnie's Burger Dream","description":"No matter where he goes or what he dreams, Burnie cannot escape the burger he ate for dinner.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8f8b439-3b97-4f32-a857-5dd6d17833f9/sm/ep10719.jpg","duration":83,"publication_date":"2015-04-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-psa-rehashed","changefreq":"weekly","video":[{"title":"S1:E44 - PSA: Rehashed","description":"Sarge and Simmons are ready to take PSAs to the next level! Rebooted with better EVERYTHING for modern audiences!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-psa-rehashed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5f018d8-a8c6-42fe-ba42-b1f40bc268b4/sm/ep10705.jpg","duration":301,"publication_date":"2015-04-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-sponsorcast-with-blaine-kerry-jon-and-gray","changefreq":"weekly","video":[{"title":"S2:E247 - The SponsorCast with Blaine, Kerry, Jon and Gray","description":"The guys GEEK out over the new Star Wars trailer and speculate on the new trilogy. \r\n\r\nThanks to rexoo9 for making this week's thumbnail. Fan-shops also provided by: alexe06, CryptMomochi, Ember, Graxdon, hayman77, JJAllin, jkire, Left4Donut, PulpFreeOJ, RenegadAsari, SailorGirl81 and skullprobe41.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-sponsorcast-with-blaine-kerry-jon-and-gray","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ab90b12-33de-44a6-94bb-3ab70c2d4831/sm/ep10711.jpg","duration":2344,"publication_date":"2015-04-26T18:09:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-stage-5-facility-tour-bloopers","changefreq":"weekly","video":[{"title":"S6:E13 - Stage 5 Facility Tour Bloopers","description":"Burnie and the Crew try to keep it together in the latest RT Short","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-stage-5-facility-tour-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/598cbbc0-2c9d-4e4c-92ea-309117ccecc4/sm/ep10709.jpg","duration":129,"publication_date":"2015-04-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-11","changefreq":"weekly","video":[{"title":"2015:E8 - Salt and Vinegar Cat - #19","description":"Gav gets woken up at 3 in the morning by his cat, Smee, who isn't very stealthy when it comes to stealing salt and vinegar crisps.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc221d7b-34c0-4d69-aa8d-c696a6725ca8/sm/ep10702.jpg","duration":91,"publication_date":"2015-04-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-game-fails-rap-game-failed","changefreq":"weekly","video":[{"title":"MV:E2 - Game Fails Rap - Game Failed","description":"http://bit.ly/GameFailsRap - DOWNLOAD THE SONG \n\nAchievement Hunter presents its next rap song. Fails are unavoidable in gaming, so why not dedicate a song to all the hilarity... and rage... they create","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-game-fails-rap-game-failed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba28d0d4-2246-4c8c-859f-d63ed178872c/sm/1461653-1439848107163-GameFailed_YTBLIP.jpg","duration":198,"publication_date":"2015-04-24T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-17","changefreq":"weekly","video":[{"title":"2015:E21 - Benjamin's Secret Bar","description":"Gus has a dream where he follows his dog Benjamin into a bar, where he performs an act forbidden in the Sorola household.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c75f67e-dc7d-40f6-9ba9-848aadab433c/sm/ep10686.jpg","duration":84,"publication_date":"2015-04-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-320","changefreq":"weekly","video":[{"title":"2015:E320 - RT Podcast #320","description":"RT Discusses The Color Purple","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-320","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6442,"publication_date":"2015-04-22T02:43:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-showcase-season-1-the-oceanmaker","changefreq":"weekly","video":[{"title":"S1:E1 - The OceanMaker","description":"Rooster Teeth would like to introduce you to a new animated short by Lucas Martell and Mighty Coconut, which we think you'll find as cool as we did. If you enjoy badass animated storytelling, with \"Mad Max in the sky\" action, then turn up the volume, put on your pilot's goggles, and check out this Rooster Teeth Showcase animated short, \"The OceanMaker.\"","player_loc":"https://roosterteeth.com/embed/rt-showcase-season-1-the-oceanmaker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/892792af-d0ce-4f98-91b1-82f763b32ab2/sm/ep10677.jpg","duration":730,"publication_date":"2015-04-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-4","changefreq":"weekly","video":[{"title":"S13:E4 - Episode 4: Tourist Trap","description":"Dr. Grey leads Tucker, Sarge, and Caboose on an educational expedition that's sure to be... enlightening.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bb34a04-93ff-4e2b-93e8-e3f7364afe57/sm/ep10671.jpg","duration":501,"publication_date":"2015-04-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pilot-program-season-1-rt-pilots-sports-show-and-the-nba-playoffs","changefreq":"weekly","video":[{"title":"S1:E1 - RT Pilots: Sports Show and the NBA Playoffs!","description":"Geoff, Brandon and sports guy Tyler talk NBA playoffs in a special test RT sports show.","player_loc":"https://roosterteeth.com/embed/pilot-program-season-1-rt-pilots-sports-show-and-the-nba-playoffs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29330711-a176-4d66-a594-6f93d8a4996c/sm/ep10670.jpg","duration":1920,"publication_date":"2015-04-19T16:27:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-65","changefreq":"weekly","video":[{"title":"2015:E67 - Battlefield 5 Next Year?","description":"Electronic Arts CFO Blake Jorgensen confirmed that a new Battlefield will release fall 2016. Will it be Battlefield 5 If so, who's making it We don't know, but we sure can guess.","player_loc":"https://roosterteeth.com/embed/game-news-2015-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0ad20b5-c2d9-4199-970a-d28785281a89/sm/24363-1438803894080-bf5.jpg","duration":351,"publication_date":"2015-07-31T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-the-unfinished-swan","changefreq":"weekly","video":[{"title":"2015:E19 - The Unfinished Swan: Art is FUN?!","description":"Graceful game or just a big ol' ink blob We're talking Unfinished Swan in this week's Video Game Club.","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-the-unfinished-swan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39043851-8224-4fa2-8208-3c2c9fc5f928/sm/1461653-1438356619277-vgc19-TH.jpg","duration":1017,"publication_date":"2015-07-31T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-64","changefreq":"weekly","video":[{"title":"2015:E66 - Minecraft DOWNGRADED?! (That Dual Wield Though...)","description":"The Windows 10 edition of Minecraft is in beta, but it's missing a lot of familiar features... like the dual wielding that's being added to the normal PC edition!","player_loc":"https://roosterteeth.com/embed/game-news-2015-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7dea25d-e3fa-4c34-a114-0684b5094b09/sm/24363-1438321311228-thumbnail.jpg","duration":292,"publication_date":"2015-07-31T05:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-10","changefreq":"weekly","video":[{"title":"2015:E10 - Five Nights at Freddy's Movie Details","description":"Director's Twitter: https://twitter.com/gilkenan/\n\nScott's Letter: http://steamcommunity.com/app/388090/discussions/0...","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c007e76-f3a8-4fc3-9fbb-ebd4aa79d244/sm/24363-1438321200627-fnafmovie.jpg","duration":163,"publication_date":"2015-07-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-29","changefreq":"weekly","video":[{"title":"2015:E115 - Is Windows 10 Good for Gaming? - The Patch #115","description":"Join Gus Sorola, Meg Turney and Ryan Haywood as they discuss the imminent launch of Windows 10 on this week's The Patch! This episode originally aired on July 29, 2015.\n\nThis episode features Gus Sorola, Meg Turney and Ryan Haywood.\n\n\n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/\n\n\n\nTo see a list of links discussed this episode go to:\n\n\n\nhttp://theknow.tv/episode/the-patch-season-1-episode-106\n\n\n\nTo follow The Patch as a Steam Curator go to:\n\n\n\nhttp://store.steampowered.com/curator/6868640/","player_loc":"https://roosterteeth.com/embed/the-patch-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1b5c5c3-dadd-47d6-a8c4-4df0ff131bfc/sm/1461653-1438283203172-p115-THUMB.jpg","duration":3759,"publication_date":"2015-07-30T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-windows-10-should-you-u-p-g-r-a-d-e","changefreq":"weekly","video":[{"title":"2016:E15 - Windows 10: Should You UPGRADE?","description":"Windows 10 is here! Are we saved Or are we doomed to another generation of jokes at its expense Here's what critics have to say, what new features you can get, and how to upgrade.","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-windows-10-should-you-u-p-g-r-a-d-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28225036-f1f9-4777-b88b-d4d5a77ab54a/sm/24363-1438230817784-thumbnail.jpg","duration":372,"publication_date":"2015-07-30T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-9","changefreq":"weekly","video":[{"title":"2015:E9 - Who's Watching My Little Pony Porn?","description":"Full PornHub Blog Post Here: http://www.pornhub.com/insights/pornhub-my-little-...","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1906d79-d2a7-4cc1-8106-d52bba8fc967/sm/24363-1438230623859-ponyporn.jpg","duration":168,"publication_date":"2015-07-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-63","changefreq":"weekly","video":[{"title":"2015:E65 - Nintendo NX First Details?","description":"Square Enix announced Dragon Quest XI, which probably doesn't mean a whole lot to you if you're not in Japan right now. It DOES mean a lot for the Nintendo NX, and we're here to tell you why.","player_loc":"https://roosterteeth.com/embed/game-news-2015-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc42d693-2b43-41e5-a1ea-8587ed7159fc/sm/24363-1438230488486-nxindev.jpg","duration":380,"publication_date":"2015-07-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-62","changefreq":"weekly","video":[{"title":"2015:E64 - Street Fighter V Beta Fail","description":"Full Capcom blog post here: http://www.capcom-unity.com/combofien...","player_loc":"https://roosterteeth.com/embed/game-news-2015-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8912ec46-fd4c-47ea-881a-44966a555693/sm/24363-1438055210701-sfvbeta.jpg","duration":154,"publication_date":"2015-07-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-61","changefreq":"weekly","video":[{"title":"2015:E63 - Half-Life 3 Follow-Up: Valve Writer Responds?","description":"Valve writer Marc Laidlaw responded The Know in addition to other fans regarding our report on Half-Life 3. Laidlaw didn't confirm or deny our rumor but did add meaningful context to the discussion. We invite you to see for yourself --SOURCES:The full discussion between Bruce Greene and Marc Laidlaw: http://i.imgur.com/BWrxXuu.png","player_loc":"https://roosterteeth.com/embed/game-news-2015-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7bd743d-55d1-440a-a4ce-940a252f49ed/sm/24363-1438055119014-hl3followup.jpg","duration":459,"publication_date":"2015-07-27T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-60","changefreq":"weekly","video":[{"title":"2015:E62 - Half-Life 3 Will Never Release, Here's Why","description":"Say it ain't so, Gaben! Half-Life 3 will never release, and what's worse, Valve wants it that way. We have multiple sources all confirming this state of affairs at Valve, so it may be time to put our hopes to rest.","player_loc":"https://roosterteeth.com/embed/game-news-2015-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb0f590e-6233-4e57-927c-6d8e5ea09eca/sm/24363-1437849631363-hl3_never.jpg","duration":910,"publication_date":"2015-07-24T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-episode-18","changefreq":"weekly","video":[{"title":"2015:E18 - Sunset: A Real CHORE","description":"This episode features Ashley Jenkins, Gus Sorola, Meg Turney and Ryan Haywood. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d134bea-3162-48cd-8dc5-42fced618738/sm/984097-1437763439475-gc018-STILL.jpg","duration":1012,"publication_date":"2015-07-24T18:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-8","changefreq":"weekly","video":[{"title":"2015:E8 - Hulk Hogan BANNED for Racist Rant!","description":"The alleged quotes are listed in this article by The National Enquirer who actually broke the story: http://www.nationalenquirer.com/celeb...","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a93e31d5-2702-41de-a721-6c97b63e59f4/sm/24363-1437849419712-racist_hylk.jpg","duration":144,"publication_date":"2015-07-24T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-59","changefreq":"weekly","video":[{"title":"2015:E61 - Should Video Game Vixens Be Heavier?","description":"Original Piece: http://www.bulimia.com/examine/video-games-realist...\n\nPolygon Article: http://www.polygon.com/2015/7/23/9024393/how-women...","player_loc":"https://roosterteeth.com/embed/game-news-2015-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41f643e5-e753-432c-a8e4-5fa9571cb071/sm/24363-1437708306475-more_realistic_females.jpg","duration":180,"publication_date":"2015-07-24T01:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-58","changefreq":"weekly","video":[{"title":"2015:E60 - Five Nights at Freddy's 4 Release SURPRISE!","description":"Creator Scott Cawthon is bad with release dates. Wouldn't it be great if every game was just as bad Keep dreaming. But without sleeping, because animatronics are coming for you.","player_loc":"https://roosterteeth.com/embed/game-news-2015-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff67e538-5740-4d2b-bf6a-d36e08447919/sm/24363-1437849010623-fnaf4.jpg","duration":130,"publication_date":"2015-07-23T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-22","changefreq":"weekly","video":[{"title":"2015:E114 - The Patch #114","description":"The Patch discusses A Badass Elephant and Hearthstone News","player_loc":"https://roosterteeth.com/embed/the-patch-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2e2f37f-53b1-4892-affe-df1ece4916de/sm/984097-1437668565548-p114-TH.jpg","duration":3720,"publication_date":"2015-07-23T16:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-7","changefreq":"weekly","video":[{"title":"2015:E7 - Space Jam 2 Happening?!","description":"Feel free to jam right here:","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/425c057e-33a3-417f-aa5c-824e642d4c10/sm/24363-1437849281579-space_jam_2.jpg","duration":108,"publication_date":"2015-07-23T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-57","changefreq":"weekly","video":[{"title":"2015:E59 - FOREVER Sequels and Reboots?","description":"Will games be nothing but sequels and reboots An executive at Square Enix shares his take on the matter, and looking at sales data, it's hard to prove him wrong.","player_loc":"https://roosterteeth.com/embed/game-news-2015-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22f06023-8ad9-4a4a-8134-ad9991c187b8/sm/24363-1437845600653-forever_sequels.jpg","duration":368,"publication_date":"2015-07-23T00:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-56","changefreq":"weekly","video":[{"title":"2015:E57 - Xbox Owes Us Money?!","description":"We haven't been promised any class action moola yet, but it could be coming sooooooon.","player_loc":"https://roosterteeth.com/embed/game-news-2015-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b923e78-2f8f-4191-84fc-c96a0f596159/sm/24363-1437845696146-xbox_owes_us_money.jpg","duration":106,"publication_date":"2015-07-21T16:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015-6","changefreq":"weekly","video":[{"title":"2015:E6 - It's Hand Job Day","description":"Here's the crazy movie: \n\nWhat holiday would you come up with Also, hand job jokes - gooooo!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/325c70f9-3ecb-48d0-8a54-de6a0cb7b757/sm/24363-1437849236765-hand_job_day.jpg","duration":119,"publication_date":"2015-07-20T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-55","changefreq":"weekly","video":[{"title":"2015:E56 - PC Gamers KILLING GAMES?","description":"John \"TotalBiscuit\" Bain started a Steam curator group to inform users which games are capped at 30 FPS. Seems legit, but there's a darker issue lurking under the surface here.","player_loc":"https://roosterteeth.com/embed/game-news-2015-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ad1ffa5-336a-43f0-a950-93aa931fc341/sm/24363-1437845665896-pc_gamers_killing_games.jpg","duration":575,"publication_date":"2015-07-18T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-113","changefreq":"weekly","video":[{"title":"2015:E113 - What's Up with Kojima? - The Patch #113","description":"This episode features Gus Sorola, Meg Turney and Ryan Haywood.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e4f6c9-3667-45de-92ad-664c00a78276/sm/1466273-1452965052259-p116-TH.jpg","duration":3655,"publication_date":"2015-07-17T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-54","changefreq":"weekly","video":[{"title":"2015:E55 - Fallout Shelter Makes BANK","description":"Have you played it yet","player_loc":"https://roosterteeth.com/embed/game-news-2015-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/897f25bc-1f08-439b-8e68-4ffeedaa46c8/sm/24363-1437845631584-fallout_shelter_makes_bank.jpg","duration":113,"publication_date":"2015-07-17T00:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-53","changefreq":"weekly","video":[{"title":"2015:E54 - Too Much Five Nights at Freddy's?!","description":"Can you have too much of a good thing","player_loc":"https://roosterteeth.com/embed/game-news-2015-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/057fd342-965e-4b51-adb3-5ad1b69e5c6a/sm/24363-1437846653966-too_much_fnaf.jpg","duration":130,"publication_date":"2015-07-14T19:16:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-52","changefreq":"weekly","video":[{"title":"2015:E53 - Nintendo President & CEO Satoru Iwata Passes Away","description":"Today we're sad to report that Nintendo President & CEO Satoru Iwata has passed away. Rather than mourn his loss, we'd like to celebrate his life and accomplishments. Please join us in paying respects to a man that has contributed immeasurably to gaming.","player_loc":"https://roosterteeth.com/embed/game-news-2015-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc1965d6-a3a2-47ae-83f3-6c1a9310b815/sm/24363-1437846494606-iwata.jpg","duration":609,"publication_date":"2015-07-13T19:21:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-51","changefreq":"weekly","video":[{"title":"2015:E52 - Metal Gear Solid OVER?!","description":"Is this the end of the franchise after all","player_loc":"https://roosterteeth.com/embed/game-news-2015-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67e92755-1f21-41df-a049-2f8e5e17ece2/sm/24363-1437846555997-mgs_over.jpg","duration":142,"publication_date":"2015-07-13T19:19:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-112","changefreq":"weekly","video":[{"title":"2015:E112 - April Fools 2.0 - The Patch #112","description":"This episode features Michael Jones, Geoff Ramsey, and Ryan Haywood.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab966db9-e2ae-4e50-bb27-727019048539/sm/1466273-1452965509623-p112-TH.jpg","duration":4087,"publication_date":"2015-07-10T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-tech-and-science-news-season-1-14","changefreq":"weekly","video":[{"title":"2016:E51 - PewDiePie F*CKING RICH?!","description":"Swedish website Expressen has published Felix \"PewDiePie\" Kjellberg's income levels. Unsurprisingly, some people on the Internet feel that his success is undeserved. Maybe if you hustled as hard as you hated","player_loc":"https://roosterteeth.com/embed/the-know-tech-and-science-news-season-1-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de6c6125-c58a-4720-ab40-a44ff6e16d78/sm/24363-1437846452674-pewdiepie.jpg","duration":430,"publication_date":"2015-07-08T19:25:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-50","changefreq":"weekly","video":[{"title":"2015:E50 - Superman Game LEAKED? Not Yet.","description":"Rumors are swirling, suggesting that WB Montreal is working on an open-world Superman game. Sadly, our sources say otherwise. That doesn't mean a game ISN'T happening, it just isn't happening yet.","player_loc":"https://roosterteeth.com/embed/game-news-2015-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b0d0f2b-3ad8-4882-ab1f-f981e8deb687/sm/24363-1437846399998-superman_game_leak.jpg","duration":283,"publication_date":"2015-07-06T19:29:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-111","changefreq":"weekly","video":[{"title":"2015:E111 - The Countdown to Fallout 4 - The Patch #111","description":"This episode features Gus Sorola, Ashley Jenkins, and Ryan Haywood.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da1b6fae-0692-4968-ac94-dc7236d016b4/sm/1466273-1452965674813-p111-TH.jpg","duration":3778,"publication_date":"2015-07-02T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-49","changefreq":"weekly","video":[{"title":"2015:E49 - The Last of Us 2 CONFIRMED?","description":"It's happening! ...Or is it","player_loc":"https://roosterteeth.com/embed/game-news-2015-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24596084-9461-485a-a293-5788d7a2080a/sm/24363-1437845795382-tlou2_confirmed.jpg","duration":159,"publication_date":"2015-07-01T19:36:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-48","changefreq":"weekly","video":[{"title":"2015:E48 - Warner KNEW Batman was Broken?","description":"Sources have emerged claiming that Warner and Rocksteady knew full well the state of Batman: Arkham Knight on PC prior to release. They released it anyway.","player_loc":"https://roosterteeth.com/embed/game-news-2015-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7644303-5cb9-4078-a663-9070c00b7fd7/sm/24363-1437845832273-wb_knew.jpg","duration":327,"publication_date":"2015-07-01T19:33:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-47","changefreq":"weekly","video":[{"title":"2015:E47 - New Fallout 4 Character","description":"Are you still playing Fallout Shelter","player_loc":"https://roosterteeth.com/embed/game-news-2015-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fd52ec2-85e4-4d48-b7d6-86b3839f91e7/sm/24363-1437846376476-new_fallout_char.jpg","duration":148,"publication_date":"2015-07-01T19:30:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-46","changefreq":"weekly","video":[{"title":"2015:E46 - Star Wars 1313 LIVES?","description":"While 1313 itself is still dead and buried, Visceral Games may have a project in the works that will keep your platforming, waist-high covered dreams alive. Are you still excited for an Uncharted-style Star Wars game","player_loc":"https://roosterteeth.com/embed/game-news-2015-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d551aab-1502-4281-827f-602f4da5d3ab/sm/24363-1437845748638-star_wars_saved.jpg","duration":245,"publication_date":"2015-06-29T19:38:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-45","changefreq":"weekly","video":[{"title":"2015:E45 - PS4 Rise of the Tomb Raider RELEASE DATE!","description":"We all knew that Rise of the Tomb Raider is a timed exclusive, but now we can tell you HOW timed. Plus, Square Enix may have some goodies for you to make up for the wait!","player_loc":"https://roosterteeth.com/embed/game-news-2015-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1542e89d-08cb-4cc7-a9cf-8a34be8aede8/sm/24363-1437845724756-tomb_raider_release_date.jpg","duration":261,"publication_date":"2015-06-26T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-shovel-knight-is-8-bit-sadism","changefreq":"weekly","video":[{"title":"2015:E14 - Shovel Knight is 8-Bit SADISM!","description":"Join us for Rooster Teeth's gaming book club originally aired on June 24, 2015. This week we played Shovel Knight (http://bit.ly/1djzU5o).\n\nNext Week's Game: This War of Mine (http://bit.ly/1djA5gZ).\n\nThis episode features Gus Sorola, Ashley Jenkins, and Meg Turney.\n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-shovel-knight-is-8-bit-sadism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/870a88ae-d8fa-42fb-bc70-6b099c8a5a3d/sm/ep11583.jpg","duration":873,"publication_date":"2015-06-26T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-110","changefreq":"weekly","video":[{"title":"2015:E110 - Batman Broken! - The Patch #110","description":"This episode features Gus Sorola, Ashley Jenkins, and Meg Turney.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d821ad3-020d-4e4c-94db-f15fca7cca77/sm/1466273-1452965955488-p110-TH.jpg","duration":3647,"publication_date":"2015-06-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-44","changefreq":"weekly","video":[{"title":"2015:E44 - Destiny Thirsty AF","description":"Are you ready to RIP and SHRED in DESTINY with RED BULL (RED BULL!) Enjoy CAMARADERIE, FUN, and WHATEVER in the LATEST TOTALLY RAD EXTREME SUPER ENERGY EXPLOSION. Featuring the new flavor GAMERS' TEARS.","player_loc":"https://roosterteeth.com/embed/game-news-2015-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1a97381-f705-44e6-8882-fb04da20d70d/sm/24363-1437848772916-destiny_thirsty.jpg","duration":289,"publication_date":"2015-06-24T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-43","changefreq":"weekly","video":[{"title":"2015:E43 - DRIVECLUB Finally Coming for PS+ Members","description":"Do you still care or have you moved on","player_loc":"https://roosterteeth.com/embed/game-news-2015-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b134875d-5bc7-4609-a636-6fbd0b8635cb/sm/24363-1437848807909-driveclub.jpg","duration":154,"publication_date":"2015-06-24T22:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-42","changefreq":"weekly","video":[{"title":"2015:E42 - Batman: Arkham Knight Broken on PC?!","description":"Have you experienced any issues","player_loc":"https://roosterteeth.com/embed/game-news-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66dd70a1-1ec3-4ad7-9800-76579acbd9f1/sm/24363-1437848728830-batman_broken.jpg","duration":170,"publication_date":"2015-06-23T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-41","changefreq":"weekly","video":[{"title":"2015:E41 - Shenmue 3 a Scam?! You decide.","description":"What do you think - is this shit shady","player_loc":"https://roosterteeth.com/embed/game-news-2015-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a72bad4-7ba7-4f3a-9021-1d4ae4a094de/sm/24363-1437848698828-shenmue_scam.jpg","duration":310,"publication_date":"2015-06-22T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-109","changefreq":"weekly","video":[{"title":"2015:E109 - The Patch at E3 with Special Guests Jeff Gerstmann and Levar Burton! - The Patch #109","description":"Join us for Rooster Teeth's gaming podcast originally aired on June 17, 2015.\n\nThis episode features Burnie Burns, Ashley Jenkins, Bruce Greene, Jeff Gerstmann (http://bit.ly/1CpvHDX), LeVar Burton (http://bit.ly/1CpvMYf), and Mica Burton (http://bit.ly/1C3wkmg).","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edd392f2-8fff-483b-9895-d1d201f74ce1/sm/690915-1452965677030-109.jpg","duration":3823,"publication_date":"2015-06-18T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-40","changefreq":"weekly","video":[{"title":"2015:E40 - Steam Sale SCAMS?","description":"Some interesting pricing changes have Steam users crying \"price gouging\" around the summer sale. Oh Lord Gaben, won't you rescue us in our time of need","player_loc":"https://roosterteeth.com/embed/game-news-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d149eec-95a1-4bbe-b5a1-03623dc85bdb/sm/24363-1437848507863-steam_sale_scams.jpg","duration":357,"publication_date":"2015-06-12T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-108","changefreq":"weekly","video":[{"title":"2015:E108 - E3 Predictions! - The Patch # 108","description":"Join us for Rooster Teeth's gaming podcast originally aired on June 10, 2015 sponsored by Crunchyroll (http://bit.ly/1BbDXvg) and NatureBox (http://bit.ly/1b4ga5I).This episode features Gus Sorola, Meg Turney, and Ryan Haywood.Sponsors for this week:Crunchyroll: http://bit.ly/1BbDXvgNatureBox: http://bit.ly/1b4ga5I","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c073091-558a-4566-a43d-f7bf276020f2/sm/690915-1452965469206-108.jpg","duration":3670,"publication_date":"2015-06-11T17:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-39","changefreq":"weekly","video":[{"title":"2015:E39 - Halo 5: Free Maps, Story Details!","description":"What's better than one Master Chief FOUR Master Chiefs! Halo 5 is breaking the mold by offering you a whole crew of robot soldiers, in addition to free multiplayer maps. 343 Industries is like that stepdad that buys you a motorized Hot Wheels car. Stan is WAY cooler than my real dad.","player_loc":"https://roosterteeth.com/embed/game-news-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf60fdc8-9565-40eb-a5b8-9c3720bb088c/sm/24363-1437848386031-halo_5_features.jpg","duration":534,"publication_date":"2015-06-10T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-38","changefreq":"weekly","video":[{"title":"2015:E38 - How to Play Assassin's Creed: Syndicate Before Anyone Else","description":"You can find the email address here: http://blog.ubi.com/assassins-creed-syndicate-play...","player_loc":"https://roosterteeth.com/embed/game-news-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23d9e3ee-8bcb-4fba-80a6-ec230351535c/sm/24363-1437848421716-play_ac_early.jpg","duration":127,"publication_date":"2015-06-10T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-37","changefreq":"weekly","video":[{"title":"2015:E37 - Mirror's Edge 2 is Actually Mirror's Edge: Catalyst","description":"Check out the announcement: http://www.mirrorsedge.com/","player_loc":"https://roosterteeth.com/embed/game-news-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc2aac0-9528-4111-a876-ada9c0efdfa6/sm/24363-1437848352684-mirror%27s_edge_catalyst.jpg","duration":92,"publication_date":"2015-06-09T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-36","changefreq":"weekly","video":[{"title":"2015:E36 - NEW CONSOLES at E3?! Not Really.","description":"We're just a week out from E3, but we may already know some surprises. We're getting a redesigned Xbox and PlayStation, and maybe a super secret third platform we don't even know about yet It's probably all porn games, all the time. What a time to be alive.","player_loc":"https://roosterteeth.com/embed/game-news-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3576a1b4-30ea-44e1-84ec-b8e2b0ff9f5c/sm/24363-1437848317052-console_at_e3.jpg","duration":365,"publication_date":"2015-06-08T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-35","changefreq":"weekly","video":[{"title":"2015:E35 - Dark Souls 3 EXCLUSIVE LEAKS!","description":"We've got the very first screenshots, concept art, and gameplay details from Dark Souls 3. Here are the details:\n\n- Will release on PlayStation 4, Xbox One in 2016\n- PC release is \"negotiable.\"\n- 1-4 players\n- Sacrifice ritual allows you to enter other people's games\n- Bosses can \"heat up,\" changing their form\n- Swordfighting arts add special moves that can be equipped and changed","player_loc":"https://roosterteeth.com/embed/game-news-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28c912ef-a8d1-4cf5-868b-ca60fa35bd6f/sm/24363-1437848284482-ds3_leak.jpg","duration":438,"publication_date":"2015-06-05T22:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-contrast-not-exactly-black-and-white","changefreq":"weekly","video":[{"title":"2015:E12 - Contrast: Not Exactly Black and White","description":"Join us for Rooster Teeth's gaming book club originally aired on June 3, 2015. This week we played Contrast (http://bit.ly/1LOzH60).\n\nNext Week's Game: Long Live the Queen.\n\nThis episode features Gus Sorola and Ashley Jenkins. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-contrast-not-exactly-black-and-white","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86a03f19-ab3b-48bd-8aa7-89b19d37c110/sm/ep11490.jpg","duration":850,"publication_date":"2015-06-05T04:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/entertainment-news-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Han NOT So Solo?!","description":"Special appearances, too!","player_loc":"https://roosterteeth.com/embed/entertainment-news-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8fab789-5275-4727-a65f-34cf6a93704b/sm/1601067-1510079926992-tk_default.jpg","duration":183,"publication_date":"2015-06-05T00:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-34","changefreq":"weekly","video":[{"title":"2015:E34 - How to Get a Steam Controller Before Release","description":"Pre-order your controller and Steam Link here: http://store.steampowered.com/app/353370\n\nGameStop's Steam machine offerings: http://www.gamestop.com/steammachine","player_loc":"https://roosterteeth.com/embed/game-news-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a7cc1e4-81c6-44b3-bd9c-243fbf23e98b/sm/24363-1437848253212-steam_controller_early.jpg","duration":144,"publication_date":"2015-06-04T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-107","changefreq":"weekly","video":[{"title":"2015:E107 - Fallout Foreplay! - The Patch #107","description":"Join us for Rooster Teeth's gaming podcast originally aired on June 3, 2015 sponsored by Dollar Shave Club (http://bit.ly/TB66HY).This episode features Gus Sorola, Burnie Burns, and Ashley Jenkins.Sponsors for this week:Dollar Shave Club: http://bit.ly/TB66HY","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a6a9de1-f4df-49b6-bffa-e575b7d8fffd/sm/690915-1452965263568-107.jpg","duration":3730,"publication_date":"2015-06-04T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-33","changefreq":"weekly","video":[{"title":"2015:E33 - Fallout 4: Best Game EVER?! Yes.","description":"BEST GAME EVER!!! Yes.","player_loc":"https://roosterteeth.com/embed/game-news-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a40d0687-6c85-4b41-b209-9247c5700051/sm/24363-1437848183679-fo4_best_game.jpg","duration":359,"publication_date":"2015-06-03T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - Fallout 4: WILL IT SUCK?","description":"Everyone's in love with Fallout 4, but we're mindless contrarians so let's talk about why we're not impressed. The Bethesda magic is at work here, but we have videos to make dammit! If we won't bravely scoff and dismiss this game, who will","player_loc":"https://roosterteeth.com/embed/game-news-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfb6cd82-fd29-4f5b-be53-5fec2c97537e/sm/24363-1437848216901-fo4_not_impressed.jpg","duration":373,"publication_date":"2015-06-03T22:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-31","changefreq":"weekly","video":[{"title":"2015:E31 - FALLOUT 4 OFFICIAL COUNTDOWN!","description":"Are you ready for the Fallout 4 official reveal","player_loc":"https://roosterteeth.com/embed/game-news-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad1683e3-cc65-48d1-ab95-d55375e8c00c/sm/24363-1437848128217-fo4_official_countdown.jpg","duration":451,"publication_date":"2015-06-02T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-30","changefreq":"weekly","video":[{"title":"2015:E30 - LEGO Worlds a Minecraft KILLER?","description":"Check out the trailer here: \nAnd the game's Steam listing here: http://store.steampowered.com/app/332310/","player_loc":"https://roosterteeth.com/embed/game-news-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37c652d9-1715-485b-bf46-8fb9d7efce7f/sm/24363-1437848084251-lego_worlds_minecraft_killer.jpg","duration":155,"publication_date":"2015-06-01T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-29","changefreq":"weekly","video":[{"title":"2015:E29 - Xbox SAVES Silent Hills?","description":"Silent Hills may not be canceled after all. Here's the news direct from our source:\n\n- Microsoft is in talks with Konami to buy Silent Hills as an exclusive for the Xbox One\n- If the deal goes through, Microsoft will announce this at E3 2015\n- The game will then release in March 2016\n- The dollar amount for the sale is in the billions\n\nHere is the previous news story from the same source, which ended up becoming true:","player_loc":"https://roosterteeth.com/embed/game-news-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27305ac2-4271-4cd2-8adb-82797e2bea12/sm/24363-1437848046029-xbox_saves_sh.jpg","duration":297,"publication_date":"2015-05-29T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-28","changefreq":"weekly","video":[{"title":"2015:E28 - Twitch Bans Hatred","description":"What do you think of Twitch's new rule","player_loc":"https://roosterteeth.com/embed/game-news-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f278daf7-3ab9-4db1-a938-2d690d1046ff/sm/24363-1437848010778-twitch_bans_hatred.jpg","duration":229,"publication_date":"2015-05-28T22:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-the-patch-106","changefreq":"weekly","video":[{"title":"2015:E106 - Vodka, Video Games, Babies, Poop - The Patch #106","description":"Join us for Rooster Teeth's gaming podcast originally aired on May 27, 2015 sponsored by Casper (http://bit.ly/1HMgGmw).\n\nThis episode features Gus Sorola, Meg Turney, and Ryan Haywood.\n\nSponsors for this week:\n\nCasper: http://bit.ly/1HMgGmw","player_loc":"https://roosterteeth.com/embed/the-patch-2015-the-patch-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f23c080-c3e6-4355-9916-71c05f1004f9/sm/690915-1452964517990-106.jpg","duration":3759,"publication_date":"2015-05-28T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-ori-and-the-blind-forest-cheers-tears-and-so-much-rage","changefreq":"weekly","video":[{"title":"2015:E11 - Ori and the Blind Forest: Cheers, Tears, and SO MUCH RAGE","description":"Join us for Rooster Teeth's gaming book club originally aired on May 20, 2015. This week we played Ori and the Blind Forest (http://bit.ly/1INpY1P).\n\nNext Week's Game: Contrast (http://bit.ly/1LOzH60).\n\nThis episode features Ashley Jenkins, Meg Turney, and Ryan Haywood. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-ori-and-the-blind-forest-cheers-tears-and-so-much-rage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f04907-a749-45b9-adc0-b423dbbe4c06/sm/ep11447.jpg","duration":1186,"publication_date":"2015-05-28T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-27","changefreq":"weekly","video":[{"title":"2015:E27 - Witcher 3 FREE DLC?","description":"Who doesn't want free shit, even if it is a pretty dress. We're recapping all the free content coming to Witcher 3, in addition to some patches and updates. Lots of Witchy news today, so let's witch to it.","player_loc":"https://roosterteeth.com/embed/game-news-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/455d8c9d-eaa4-43e0-bc14-2722fda7bf5f/sm/24363-1437847933967-witcher_3_free_dlc.jpg","duration":385,"publication_date":"2015-05-27T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-26","changefreq":"weekly","video":[{"title":"2015:E26 - Rare Amiibo Stolen in Heist","description":"Is it enough now or are you still all about amiibo","player_loc":"https://roosterteeth.com/embed/game-news-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/723eb5d2-4aa7-421e-a2cc-cbf01047c443/sm/24363-1437847962652-amiibo_heist.jpg","duration":143,"publication_date":"2015-05-27T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-25","changefreq":"weekly","video":[{"title":"2015:E25 - Game-Breaking Bug in The Witcher 3: Wild Hunt","description":"Tell us your most heart-wrenching progress loss story!\n\nAndrew Reiner's article: http://www.gameinformer.com/b/features/archive/201...","player_loc":"https://roosterteeth.com/embed/game-news-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7679ead-1271-4049-9afa-472a670ba6a6/sm/24363-1437847894043-witcher_3_bug.jpg","duration":167,"publication_date":"2015-05-26T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-24","changefreq":"weekly","video":[{"title":"2015:E24 - Rockstar SUES GTA Movie?","description":"Take-Two and Rockstar are flexing a little legal muscle on the BBC \"factual drama\" Game Changer. We'd like to see the GTA sorta-documentary make it out, so here's hoping they can work out their differences. Tale as old as time, baseball bat and the prostitute.","player_loc":"https://roosterteeth.com/embed/game-news-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9726d07-a92f-4f05-9901-1a663e02184e/sm/24363-1437847824765-gta_movie_lawsuit.jpg","duration":331,"publication_date":"2015-05-22T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-23","changefreq":"weekly","video":[{"title":"2015:E23 - AMD Accuses Nvidia of Witcher 3 Sabotage","description":"What do you think - is this a case of sabotage","player_loc":"https://roosterteeth.com/embed/game-news-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2545aeb3-fc0c-4b04-9d3a-c510ac8f0405/sm/24363-1437847797023-sabotage.jpg","duration":279,"publication_date":"2015-05-21T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-21","changefreq":"weekly","video":[{"title":"2015:E105 - The Patch #105","description":"The Patch Discusses Witcher 3","player_loc":"https://roosterteeth.com/embed/the-patch-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3719,"publication_date":"2015-05-21T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-crypt-of-the-necrodancer-dance-fighting-dungeon-crawling","changefreq":"weekly","video":[{"title":"2015:E10 - Crypt of the NecroDancer: Dance Fighting Dungeon Crawling!","description":"Join us for Rooster Teeth's gaming book club originally aired on May 20, 2015. This week we played Crypt of the Necrodancer (http://bit.ly/1IElysE).\n\nNext Week's Game: Ori and the Blind Forest (http://bit.ly/1INpY1P).\n\nThis episode features Gus Sorola, Ashley Jenkins, Meg Turney, and Ryan Haywood. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-crypt-of-the-necrodancer-dance-fighting-dungeon-crawling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2337dc05-f4c4-48f9-aee7-89e3f8e0c42c/sm/ep11437.jpg","duration":878,"publication_date":"2015-05-21T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-22","changefreq":"weekly","video":[{"title":"2015:E22 - Destiny House of Wolves DLC: Worth It?","description":"The second DLC for Destiny is out, but what's in it, and is it worth the money House of Wolves has some cool stuff, so let's comb through all the new content and see if it's worth buying or not. Spoiler: Eris Morn is a woman.","player_loc":"https://roosterteeth.com/embed/game-news-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfb28226-cd1b-4505-9640-a9d3cf9c48fa/sm/24363-1437847674327-destiny_dlc_worth_it.jpg","duration":498,"publication_date":"2015-05-20T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-21","changefreq":"weekly","video":[{"title":"2015:E21 - H1Z1 Cheaters Publicly Shamed","description":"What do you think of this punishment - worth it or too much","player_loc":"https://roosterteeth.com/embed/game-news-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4a600b2-ac39-4b11-96a1-6464282b49ea/sm/24363-1437847718996-h1z1_cheaters_shamed.jpg","duration":151,"publication_date":"2015-05-20T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-20","changefreq":"weekly","video":[{"title":"2015:E20 - Korean Witcher 3 Fans Angry","description":"What do you think of CD Projekt Red's attempt to make it up to Korean gamers","player_loc":"https://roosterteeth.com/embed/game-news-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98b6157c-682f-459c-a8d8-eddaf5a3ffe4/sm/24363-1437847553976-korean_witcher.jpg","duration":130,"publication_date":"2015-05-19T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-19","changefreq":"weekly","video":[{"title":"2015:E19 - Sega Admits Their Mobile Games Suck","description":"SEGA has removed 19 of their mobile games from app stores for failing to meet their new standards of quality. Is this the Twilight Zone","player_loc":"https://roosterteeth.com/embed/game-news-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8642fafb-e8cd-4ea3-9475-9961da2d7581/sm/24363-1437847612384-sega_mobile.jpg","duration":199,"publication_date":"2015-05-19T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-18","changefreq":"weekly","video":[{"title":"2015:E18 - DOOM 4: Will You Play?","description":"Bethesda dropped three seconds of Doom 4 \"gameplay\" on us, so we're wondering what it'll take to get people to actually play the game this time around. There's still no release date, but at least we saw a shotgun.","player_loc":"https://roosterteeth.com/embed/game-news-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37de2e83-f9fb-437f-a102-afd79e6b8c4c/sm/24363-1437847519355-doom_will_you_play.jpg","duration":428,"publication_date":"2015-05-18T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-17","changefreq":"weekly","video":[{"title":"2015:E17 - Xbox One BEATS PS4 in April?","description":"The entire world laughed, but who's laughing NOW Everyone's favorite VCR won the sales battle in April 2015, but does this truly mean the Xbox One is gaining momentum against the PlayStation 4","player_loc":"https://roosterteeth.com/embed/game-news-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e65f4e65-3806-4b56-b65e-41ab9c1e38d0/sm/24363-1437847480598-xbox_beats_ps4.jpg","duration":327,"publication_date":"2015-05-15T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-gone-home-snoop-on-your-angsty-family","changefreq":"weekly","video":[{"title":"2015:E9 - Gone Home: Snoop on Your Angsty Family!","description":"Join us for Rooster Teeth's gaming book club originally aired on May 13, 2015. This week we played Gone Home (http://bit.ly/1bBuWA2).\n\nNext Week's Game: Crypt of the Necrodancer (http://bit.ly/1IElysE).\n\nThis episode features Gus Sorola, Ashley Jenkins, Meg Turney, and Ryan Haywood . \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-gone-home-snoop-on-your-angsty-family","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/919406f5-2e6e-4d85-ace4-0cdecdacae82/sm/ep10891.jpg","duration":1046,"publication_date":"2015-05-15T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-16","changefreq":"weekly","video":[{"title":"2015:E16 - Can E3 Save Nintendo?","description":"Nintendo has announced their plans for E3. What will it take for them to get back on top","player_loc":"https://roosterteeth.com/embed/game-news-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1baa01f-2577-4c81-9a4f-5ecd54772e94/sm/24363-1437847303935-e3_save_nintendo.jpg","duration":243,"publication_date":"2015-05-14T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-15","changefreq":"weekly","video":[{"title":"2015:E15 - Konami Quitting Games?","description":"Konami is calling it quits for traditional gaming, so we hope you didn't like Metal Gear or anything.","player_loc":"https://roosterteeth.com/embed/game-news-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24ca3234-8c59-42bf-9948-081feaca73b2/sm/24363-1437847341634-konami_quitting_games.jpg","duration":99,"publication_date":"2015-05-14T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-14","changefreq":"weekly","video":[{"title":"2015:E14 - Gears of War HD Leaks","description":"What do you think of the leaked footage\n\nPsst, you might be able to find it here:\nhttp://bit.ly/1Hgnvd5 or http://bit.ly/1Pq0z2o","player_loc":"https://roosterteeth.com/embed/game-news-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d966309-c618-48c6-919e-244af2b2457c/sm/24363-1437847404584-gow_leak.jpg","duration":232,"publication_date":"2015-05-14T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-13","changefreq":"weekly","video":[{"title":"2015:E13 - GTA 5 PC Mods Install MALWARE?!","description":"Uh oh! Some pretty serious malware has been found hiding in a few GTA mods that steal your passwords and attack other computers!","player_loc":"https://roosterteeth.com/embed/game-news-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19bf0892-c37b-4e96-ad3a-4dc8df8a30c2/sm/24363-1437847437088-gta_mods_malware.jpg","duration":253,"publication_date":"2015-05-14T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-20","changefreq":"weekly","video":[{"title":"2015:E104 - The Patch #104","description":"The Patch Discusses State of Decay","player_loc":"https://roosterteeth.com/embed/the-patch-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3732,"publication_date":"2015-05-14T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-12","changefreq":"weekly","video":[{"title":"2015:E12 - PlayStation 4 HACKED?","description":"It took longer than expected, but the PlayStation 4 has been cracked like a walnut. Retailers in Brazil are selling copied games, which means it's a matter of time until the crack is widely available. Hopefully Sony's response won't make life terrible for the rest of us.","player_loc":"https://roosterteeth.com/embed/game-news-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7789a6df-973f-4e33-850a-c8697ad65ede/sm/24363-1437847213849-ps4_hacked.jpg","duration":358,"publication_date":"2015-05-13T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-11","changefreq":"weekly","video":[{"title":"2015:E11 - The Games that OWN YouTube","description":"What are your favorite AH Let's Play moments","player_loc":"https://roosterteeth.com/embed/game-news-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ffbc509-b5ce-4404-a9b9-a94e9c7e6c86/sm/24363-1437847274373-top_gmes_on_yt.jpg","duration":140,"publication_date":"2015-05-13T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-10","changefreq":"weekly","video":[{"title":"2015:E10 - Witcher 3 Graphics DOWNGRADED: Does It Matter?!","description":"Eagle-eyed fans have noticed The Witcher 3's graphics don't look as good now as they did when the game was announced. Does it really matter","player_loc":"https://roosterteeth.com/embed/game-news-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d50c8bf1-2ae5-4f0a-91c9-3db68af54a57/sm/24363-1437847063451-witcher_3_downgraded.jpg","duration":369,"publication_date":"2015-05-12T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-9","changefreq":"weekly","video":[{"title":"2015:E9 - The Witcher 3: Is It Good?","description":"With Witcher 3 a week away, it's time to grab the torches and pitchforks and hit those forums hard. Gird yourself in review numbers, ye forum warriors, we have a war to win.","player_loc":"https://roosterteeth.com/embed/game-news-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1abeb2f8-6589-411d-8f71-feeb28111ede/sm/24363-1437847108680-witcher_3_is_it_good.jpg","duration":88,"publication_date":"2015-05-12T23:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-8","changefreq":"weekly","video":[{"title":"2015:E8 - Castlevania Successor SMASHES Kickstarter","description":"Bloodstained Kickstarter: https://www.kickstarter.com/projects/iga/bloodstai...\nYooka-Laylee Kickstarter: https://www.kickstarter.com/projects/playtonic/yoo...","player_loc":"https://roosterteeth.com/embed/game-news-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73de67ec-0618-4f94-b237-1b32e9436773/sm/24363-1437847139881-castlevania_kickstarter.jpg","duration":295,"publication_date":"2015-05-12T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-7","changefreq":"weekly","video":[{"title":"2015:E7 - Assassin's Creed Syndicate: 2 ASSASSINS 2 MUCH?","description":"Assassin's Creed Syndicate has been revealed, bringing all kinds of new features and toys to the game. Is it time for the series to take a break","player_loc":"https://roosterteeth.com/embed/game-news-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65e68dac-3e5d-40f7-97f4-75d4eddd11b4/sm/24363-1437847179923-ac_syndicate_too_much.jpg","duration":389,"publication_date":"2015-05-12T23:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-6","changefreq":"weekly","video":[{"title":"2015:E6 - Fallout 4 Reveal Coming Soon?","description":"Signs are pointing to an E3 2015 reveal for Fallout 4, thanks to a LinkedIn profile that confirms work on a cinematic trailer. Will it finally happen Will we finally hear Ron Perlman rasp out those magic words We'll know in about a month.","player_loc":"https://roosterteeth.com/embed/game-news-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dfdb334-75d3-4acf-8791-3a1bb3e93e7d/sm/24363-1437846940129-fo4_reveal_soon.jpg","duration":404,"publication_date":"2015-05-11T23:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-5","changefreq":"weekly","video":[{"title":"2015:E5 - Konami vs YouTube","description":"Super Bunnyhop's video: \nDo you think Konami was justified in their take-down of the video","player_loc":"https://roosterteeth.com/embed/game-news-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d283ff8-5b13-4e2f-975b-4fa28e1f3dfc/sm/24363-1437846986009-konami_vs_youtuve.jpg","duration":244,"publication_date":"2015-05-11T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-4","changefreq":"weekly","video":[{"title":"2015:E4 - Witcher 3 STOLEN?","description":"What do you think about key sellers going around developers","player_loc":"https://roosterteeth.com/embed/game-news-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f25eb28f-a5e6-4495-a2fb-eb79be760137/sm/24363-1437846751175-witcher_3_stolen.jpg","duration":170,"publication_date":"2015-05-08T23:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-3","changefreq":"weekly","video":[{"title":"2015:E3 - Did Destiny FAIL?","description":"Even though everyone insists Destiny is the worst failure of all time, the reality is a little different. Bungie actually made one of the best-selling new IPs of all time, and Activision can't hold all the bags of money. So... why does everyone hate it so much","player_loc":"https://roosterteeth.com/embed/game-news-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b0eb51c-7349-4205-b0fc-9a987957ebf7/sm/24363-1437846880285-did_destiny_fail.jpg","duration":346,"publication_date":"2015-05-08T23:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015-2","changefreq":"weekly","video":[{"title":"2015:E2 - Nintendo Theme Park: Best Idea EVER?!","description":"Nintendo's getting a theme park! What rides does it HAVE to have","player_loc":"https://roosterteeth.com/embed/game-news-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d83dbf3f-0df3-4cc9-9207-6aac6ebd4319/sm/24363-1437846908726-nintendo_theme_park.jpg","duration":172,"publication_date":"2015-05-08T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-dont-starve-together-so-many-other-ways-to-die-too","changefreq":"weekly","video":[{"title":"2015:E8 - Don't Starve Together: So Many Other Ways to Die Too","description":"Join us for Rooster Teeth's gaming book club originally aired on May 6, 2015. This week we played Don't Starve Together (http://bit.ly/1PbeFPx).\n\nNext Week's Game: Gone Home (http://bit.ly/1bBuWA2).\n\nThis episode features Meg Turney, Gus Sorola, Burnie Burns, Ashley Jenkins. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/\n\nTo follow The Patch as a Steam Curator go to:\nhttp://store.steampowered.com/curator/6868640-The-...","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-dont-starve-together-so-many-other-ways-to-die-too","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cf37f6e-af30-452a-9aa8-a0fcfae0b552/sm/ep10850.jpg","duration":1170,"publication_date":"2015-05-08T16:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-news-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Mortal Kombat X Deletes ALL Save Games!","description":"An update for the PC version of Mortal Kombat X has wiped out ALL game progress for those who updated it! Um... oops","player_loc":"https://roosterteeth.com/embed/game-news-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d5c918-9108-490b-b643-8221af725858/sm/24363-1437846712031-mkx_saves.jpg","duration":173,"publication_date":"2015-05-07T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-19","changefreq":"weekly","video":[{"title":"2015:E103 - The Patch #103","description":"The Patch Discusses Oculus Rift","player_loc":"https://roosterteeth.com/embed/the-patch-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3730,"publication_date":"2015-05-07T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-child-of-light-rpg-more-like-artpg","changefreq":"weekly","video":[{"title":"2015:E7 - Child of Light: RPG? More Like ArtPG!","description":"Join us for Rooster Teeth's gaming book club originally aired on April 29, 2015. This week we played Child of Light (http://bit.ly/1EjH7wU)\n\nNext Week's Game: Don't Starve Together (http://bit.ly/1PbeFPx)\n\nThis episode features Ashley Jenkins, Josh Flanagan and Ryan Haywood. \n\nRooster Teeth Sponsors get to watch the episode streamed live during taping every Wednesday afternoon at 4:00PM Central Time. For more information visit https://roosterteeth.com/sponsor/","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-child-of-light-rpg-more-like-artpg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f899304a-b675-4e92-9ba2-4625fa2341dc/sm/ep10754.jpg","duration":2121,"publication_date":"2015-05-01T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-18","changefreq":"weekly","video":[{"title":"2015:E102 - The Patch #102","description":"The Patch Discusses Steam Paid Mods","player_loc":"https://roosterteeth.com/embed/the-patch-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3735,"publication_date":"2015-04-30T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-brothers-a-tale-of-perfect-brother-based-gameplay","changefreq":"weekly","video":[{"title":"2015:E6 - Brothers: A Tale of Perfect Brother-Based Gameplay","description":"Join us for Rooster Teeth's gaming book club originally aired on April 15, 2015. This week we played Brothers: A Tale of Two Sons (http://bit.ly/1HxyTm8)","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-brothers-a-tale-of-perfect-brother-based-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51d7095c-b124-494a-9a0d-325d37c76aa9/sm/ep10700.jpg","duration":2001,"publication_date":"2015-04-24T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-katawa-shoujo-loving-lots-of-ladies","changefreq":"weekly","video":[{"title":"2015:E5 - Katawa Shoujo: Loving Lots of Ladies","description":"Join us for Rooster Teeth's gaming book club originally aired on April 15, 2015. This week we playedKatawa Shoujo (http://bit.ly/1acWStu).","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-katawa-shoujo-loving-lots-of-ladies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b6b7ff7-c366-4f49-8152-a07cfb046bcc/sm/ep10699.jpg","duration":856,"publication_date":"2015-04-24T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-limbo-trial-by-grisly-death-for-kids","changefreq":"weekly","video":[{"title":"2015:E4 - Limbo: Trial by Grisly Death... for Kids!","description":"Join us for Rooster Teeth's gaming book club originally aired on April 9, 2015. This week we played Limbo (http://bit.ly/1HowyaX).","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-limbo-trial-by-grisly-death-for-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d2929ae-6343-4051-82ab-4e5c09f26278/sm/ep10698.jpg","duration":1900,"publication_date":"2015-04-24T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-the-cat-lady-the-most-disturbing-adventure-game-ever","changefreq":"weekly","video":[{"title":"2015:E3 - The Cat Lady: The Most Disturbing Adventure Game Ever?","description":"Join us for Rooster Teeth's gaming book club originally aired on April 1, 2015. This week we played The Cat Lady (http://bit.ly/1Howg3S).","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-the-cat-lady-the-most-disturbing-adventure-game-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f35f75a-a6cf-4cb4-9395-2179f95b774c/sm/ep10697.jpg","duration":1626,"publication_date":"2015-04-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-screwattack-hq-closed-one-day-why-gone-jumping","changefreq":"weekly","video":[{"title":"S1:E579 - The ScrewAttack HQ closed one day. Why? Gone Jumping!","description":"We discovered there was a trampoline park a reasonable distance from the ScrewAttack HQ, so we knew where to bounce when it was time for a little company outing.","player_loc":"https://roosterteeth.com/embed/the-screwattack-hq-closed-one-day-why-gone-jumping","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e19aa9d-13b5-4df2-8d2f-6bf8d400e921/sm/video_thumbnail_11793451.jpg","duration":154,"publication_date":"2013-06-06T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060613-new-castlevania-new-voice-actor-for-metal-gears-snake-and-sexy-princess-peach","changefreq":"weekly","video":[{"title":"S1:E439 - Hard News 06/06/13 - New Castlevania, new voice actor for Metal Gear's Snake, and sexy Princess Peach","description":"Today on HardNews, New Castlevania, new voice actor for Metal Gear's Snake, and sexy Princess Peach.\r\n\t\r\n\tCastlevania: Lords of Shadow 2 - http://www.screwattack.com/video/Castlevania-Lords-of-Shadow-2-brings-Dracula-to-the-modern-era-11792095\r\n\tNew voice actor for Snake - http://www.screwattack.com/news/kiefer-sutherland-revealed-be-snake-mgs-5\r\n\tLiz Katz's sexy Princess Peach fundraiser - http://www.screwattack.com/news/nerds-pledge-over-4000-sexy-peach-photo-shoot\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-060613-new-castlevania-new-voice-actor-for-metal-gears-snake-and-sexy-princess-peach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7f9597c-f515-4419-923a-8914396023d4/sm/video_thumbnail_11793679.jpg","duration":149,"publication_date":"2013-06-06T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/talking-screwattack-at-a-kon-24","changefreq":"weekly","video":[{"title":"S1:E578 - Talking ScrewAttack at A-Kon 24!","description":"S1:E578 - Talking ScrewAttack at A-Kon 24!","player_loc":"https://roosterteeth.com/embed/talking-screwattack-at-a-kon-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53454de4-93e8-4514-805f-75cb7d26e564/sm/video_thumbnail_11785704.jpg","duration":3229,"publication_date":"2013-06-05T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-remember-me","changefreq":"weekly","video":[{"title":"S1:E36 - Out of the Box - Remember Me","description":"This time on Out of the Box, we're checking out Remember Me! Is the latest game from Capcom something to hold onto or is this game forgettable? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-remember-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58d74b75-1d95-44e5-aa6a-2ad8716368de/sm/video_thumbnail_11783379.jpg","duration":2547,"publication_date":"2013-06-05T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060513-new-free-to-play-dragons-dogma-deus-ex-and-precursor-pulls-its-kickstarter","changefreq":"weekly","video":[{"title":"S1:E438 - Hard News 06/05/13 - New free to play Dragon's Dogma, Deus Ex, and Precursor pulls its Kickstarter","description":"Today on HardNews, New free to play Dragon's Dogma, Deus Ex, and Precursor pulls its Kickstarter.\r\n\t\r\n\tFree to play Dragon's Dogma - http://www.screwattack.com/news/dragons-dogma-quest-takes-franchise-vita-japan\r\n\tDeus Ex: The Fall - http://www.screwattack.com/video/Square-Enix-reveals-the-latest-Deus-Ex-game-The-Fall-11784950\r\n\tPrecursor pulls it Shadows of the Eternals Kickstarter - http://www.screwattack.com/news/precursor-games-withdraws-their-kickstarter\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-060513-new-free-to-play-dragons-dogma-deus-ex-and-precursor-pulls-its-kickstarter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb089a9-ef90-41d3-bae1-5a62e6d03123/sm/video_thumbnail_11785615.jpg","duration":130,"publication_date":"2013-06-05T15:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-060513","changefreq":"weekly","video":[{"title":"S1:E577 - SideScrollers Extended 06/05/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-060513","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/719dfe75-5777-4660-bf7b-1fd84ef61ecc/sm/video_thumbnail_11783491.jpg","duration":802,"publication_date":"2013-06-04T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060413-fantasia-rhythm-game-new-halo-game-for-windows-8-and-xbox-e3-lineup-rumors","changefreq":"weekly","video":[{"title":"S1:E437 - Hard News 06/04/13 - Fantasia rhythm game, new Halo game for Windows 8, and Xbox E3 lineup rumors","description":"Today on HardNews, Fantasia rhythm game, new Halo game for Windows 8, and Xbox E3 lineup rumors.\r\n\t\r\n\tFantasia rhthym game - http://www.screwattack.com/news/fantasia-music-evolved-release-next-year\r\n\tHalo: Spartan Assault - http://www.screwattack.com/news/halo-spartan-assault-has-been-announced-windows-8\r\n\tXbox E3 lineup - http://www.screwattack.com/news/rumor-leaked-picture-suggests-halo-5-fable-iv-and-new-banjo-kazooie\r\n\tNew Fable game - http://www.screwattack.com/news/fable-anniversary-hd-remake-original-fable\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-060413-fantasia-rhythm-game-new-halo-game-for-windows-8-and-xbox-e3-lineup-rumors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc333073-13ac-4ee2-8c21-6d66e3cac3fd/sm/video_thumbnail_11777634.jpg","duration":138,"publication_date":"2013-06-04T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-ever-wanted-to-do-voice-acting","changefreq":"weekly","video":[{"title":"S1:E576 - Random Awesomeness - Ever wanted to do voice acting?","description":"While we were at FUNimation, we got to meet up with Mike McFarland, the voice of Master Roshi, and see how the whole voice acting thing works! We also got to step in the booth and do some \"acting\" of our own!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-ever-wanted-to-do-voice-acting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/207c14c2-57eb-4088-b43c-7e7f467ee43e/sm/video_thumbnail_11714818.jpg","duration":273,"publication_date":"2013-06-04T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-5-best-and-worst-nintendo-e3-moments","changefreq":"weekly","video":[{"title":"S1:E78 - Top 5 Best and Worst Nintendo E3 Moments","description":"As we approach E3 2013, let's look back on Nintendo's top 5 Best and Worst E3 moments.","player_loc":"https://roosterteeth.com/embed/top-5-best-and-worst-nintendo-e3-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f14548a-ca6b-476f-a021-37ff62f563a1/sm/video_thumbnail_11772509_0.jpg","duration":592,"publication_date":"2013-06-03T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/seans-best-ever-movie-game","changefreq":"weekly","video":[{"title":"S1:E575 - Sean's Best EVER Movie Game","description":"Don't you dare tell Sean this game doesn't count.  IT COUNTS.","player_loc":"https://roosterteeth.com/embed/seans-best-ever-movie-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7546623b-3c11-40c6-b5dd-e723d0d2e8fa/sm/video_thumbnail_11748657.jpg","duration":135,"publication_date":"2013-05-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-movie-game","changefreq":"weekly","video":[{"title":"S1:E26 - The Best EVER! - Movie Game","description":"Movie tie-in games usually exist to make a quick buck, but these are a few that made us enjoy reliving the film experience with controllers in our hands.\r\nGot the Advantage?  See Sean's Best EVER here!","player_loc":"https://roosterteeth.com/embed/the-best-ever-movie-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42b966fe-826b-4023-9f58-c093c2617901/sm/video_thumbnail_11748570.jpg","duration":394,"publication_date":"2013-05-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-2","changefreq":"weekly","video":[{"title":"S2:E1 - He-Man VS Lion-O","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086c9dd7-ffbd-41c9-ad36-d5c4e2cd2c91/sm/video_thumbnail_11743623_0.jpg","duration":896,"publication_date":"2013-05-31T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-bionic-arm-bionic-commando","changefreq":"weekly","video":[{"title":"S1:E574 - The Armory - Bionic Arm (Bionic Commando)","description":"Another addition to our armory. This time its the bionic arm from bionic commando!","player_loc":"https://roosterteeth.com/embed/the-armory-bionic-arm-bionic-commando","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7ccafdd-1a29-4203-b7ef-f04cd988981e/sm/video_thumbnail_11739878.jpg","duration":120,"publication_date":"2013-05-30T15:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052913-new-sega-scented-perfume-kotor-coming-to-ios-and-where-is-double-fine","changefreq":"weekly","video":[{"title":"S1:E435 - Hard News 05/29/13 - New Sega scented perfume, KotOR coming to iOS, and where is \"Double Fine'?","description":"Today on HardNews, new Sega scented perfume, KotOR coming to iOS, and where is \"Double Fine'?\r\n\t\r\n\tEpic Scents partners with Sega - http://www.screwattack.com/news/perfume-company-epic-scents-joins-sega\r\n\tKnights of the Old Republic coming to iOS - http://www.screwattack.com/news/ign-posts-review-unannounced-kotor-ipad-port\r\n\tWhere is \"Double Fine\"? - http://www.screwattack.com/news/double-fine-creates-another-kickstarter-project-create-massive-chalice\r\n\t\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052913-new-sega-scented-perfume-kotor-coming-to-ios-and-where-is-double-fine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8054f64b-6f14-4ff0-b1c1-8a9ceec48bdc/sm/video_thumbnail_11739779.jpg","duration":105,"publication_date":"2013-05-30T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052913-doug-tennapel-designing-new-game-ps4-mandates-remote-play-and-blizzards-titan-delayed","changefreq":"weekly","video":[{"title":"S1:E434 - Hard News 05/29/13 - Doug TenNapel designing new game, PS4 mandates Remote Play, and Blizzard's \"Titan\" delayed","description":"Today on HardNews, Doug TenNapel designing new game, PS4 mandates Remote Play, and Blizzard's \"Titan\" delayed.\r\n\t\r\n\t\"Armikrog\" Kickstarter - http://www.kickstarter.com/projects/1949537745/armikrog\r\n\t\r\n\tArmikrog -  http://www.screwattack.com/news/armikrog-new-adventure-game-creators-neverhood\r\n\tPS4 mandates Remote Play - http://www.screwattack.com/news/digital-foundry-says-ps4-games-require-remote-play-ps-vita\r\n\t\"Titan\" to be released in 2016 at earliest - http://www.screwattack.com/news/rumor-blizzards-mmo-project-titan-has-been-delayed-until-2016\r\n\t\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052913-doug-tennapel-designing-new-game-ps4-mandates-remote-play-and-blizzards-titan-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99d22fb3-a317-4cf8-8d74-0afd440fd4fc/sm/video_thumbnail_11731403.jpg","duration":123,"publication_date":"2013-05-29T13:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"bosnian-bear-wrestling\"","changefreq":"weekly","video":[{"title":"S1:E119 - SideScrollers - \"Bosnian Bear Wrestling\"","description":"An interested week as Sam and Nick are left to fend for themselves.  Will they survive???\r\n \r\nGet the Audio Version HERE","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"bosnian-bear-wrestling\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d1202ae-45c7-48d5-b8c1-439cd29230e5/sm/video_thumbnail_11730003.png","duration":3125,"publication_date":"2013-05-29T09:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052813-segas-new-spectrum-conkers-creator-developing-game-for-wii-u-and-inside-the-cube","changefreq":"weekly","video":[{"title":"S1:E433 - Hard News 05/28/13 - Sega's new 'Spectrum,' 'Conker's' creator developing game for Wii U, and inside the Cube","description":"Today on HardNews, Sega's new 'Spectrum,' 'Conker's' creator developing game for Wii U, and inside the Cube.\r\n\t\r\n\tSega's new \"Spectrum\" -  http://www.screwattack.com/news/sega-spectrum-leaks-upcoming-announcement-june\r\n\tSeavor developing for Wii U - http://www.screwattack.com/news/creator-conker%E2%80%99s-bad-fur-day-planning-develop-something-wii-u\r\n\tMolyneux and 'Godus' - http://www.screwattack.com/video/Come-and-see-whats-in-Molyneuxs-Cube--11718744\r\n\t\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052813-segas-new-spectrum-conkers-creator-developing-game-for-wii-u-and-inside-the-cube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a34b7334-0d03-4b3e-80bb-f715b8b4f9e4/sm/video_thumbnail_11723985.jpg","duration":158,"publication_date":"2013-05-28T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-the-jetsons-invasion-of-the-planet-pirates","changefreq":"weekly","video":[{"title":"S1:E396 - VGV - The Jetsons: Invasion of the Planet Pirates","description":"George Jetson defeats space pirates... with nothing more than a vacuum cleaner?","player_loc":"https://roosterteeth.com/embed/vgv-the-jetsons-invasion-of-the-planet-pirates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4c87a17-0612-416c-8309-04ef00857fb1/sm/video_thumbnail_11720730.jpg","duration":132,"publication_date":"2013-05-27T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-15","changefreq":"weekly","video":[{"title":"S1:E573 - Real Trailers - Xbox One","description":"May 21st was the day to highlight all of the Xbox One's...positive...qualities. This trailer is a little more honest.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f979fcd9-bf51-4b20-bf60-4a3b2860139b/sm/video_thumbnail_11718955.jpg","duration":81,"publication_date":"2013-05-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-convention-story","changefreq":"weekly","video":[{"title":"S1:E25 - The Best EVER! - Convention Story","description":"Our own convention will be here before we know it, so we reminisce about our favorite memories from other cons.  Because, you know, if we included ours, that'd be the only thing we'd talk about.","player_loc":"https://roosterteeth.com/embed/the-best-ever-convention-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/583d51e0-eabb-451f-aff9-a643933a5c98/sm/video_thumbnail_11716863.jpg","duration":545,"publication_date":"2013-05-24T22:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bryans-best-ever-convention-story","changefreq":"weekly","video":[{"title":"S1:E572 - Bryan's Best EVER Convention Story","description":"Don't flip any tables if you can't relate to Bryan's best EVER convention story.","player_loc":"https://roosterteeth.com/embed/bryans-best-ever-convention-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef7a09ae-2ca1-4dc1-8abc-c9095f59f250/sm/video_thumbnail_11716861.jpg","duration":123,"publication_date":"2013-05-24T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-lauren-and-sams-terrible-fate","changefreq":"weekly","video":[{"title":"S1:E571 - [Advantage] Lauren and Sam's terrible fate","description":"It took an entire hazmat crew to recover this video, so forgive the shoddy artwork and audio quality. For the full story, CLICK HERE.","player_loc":"https://roosterteeth.com/embed/advantage-lauren-and-sams-terrible-fate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b73f1991-f7b3-483a-8e50-b4c6dd33a89e/sm/video_thumbnail_11716743.jpg","duration":108,"publication_date":"2013-05-24T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052413-amazon-leaks-crazy-expensive-racing-game-and-xbox-one-game-trading-details","changefreq":"weekly","video":[{"title":"S1:E432 - Hard News 05/24/13 - Amazon leaks, crazy expensive racing game, and XBox One game trading details","description":"Today on HardNews, Amazon leaks, crazy expensive racing game, and XBox One game trading details.\r\n\t\r\n\tAmazon leaks - http://www.screwattack.com/news/rumor-amazon-germany-leaks-existence-mirrors-edge-2\r\n\tGrid 2: Mono Edition - http://www.screwattack.com/news/grid-2-sets-its-sights-becoming-most-expensive-game-ever\r\n\tXBox One retail game trade - http://www.screwattack.com/news/here-are-facts-about-xbox-one-and-used-games\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052413-amazon-leaks-crazy-expensive-racing-game-and-xbox-one-game-trading-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7eee99d-31eb-426d-9dcd-d83d1dfcf398/sm/video_thumbnail_11716249.jpg","duration":109,"publication_date":"2013-05-24T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052313-techland-developing-new-zombie-game-square-enix-ceo-resigns-and-atari-is-up-for-auction","changefreq":"weekly","video":[{"title":"S1:E431 - Hard News 05/23/13 - Techland developing new zombie game, Square Enix CEO resigns, and Atari is up for auction","description":"Today on HardNews, Techland developing new zombie game, Square Enix CEO resigns, and Atari is up for auction.\r\n\t\r\n\tTechland's 'Dying Light' - http://www.screwattack.com/news/techland-reveals-yet-another-zombie-game-called-dying-light\r\n\tSquare Enix CEO resigns - http://www.screwattack.com/news/square-enixs-north-american-president-has-left-company\r\n\tAtari up for auction - http://www.screwattack.com/news/it-looks-atari-cant-find-buyer-so-theyre-trying-have-auction\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052313-techland-developing-new-zombie-game-square-enix-ceo-resigns-and-atari-is-up-for-auction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3067b43d-26b8-4ec6-8be1-11e224f48b8f/sm/video_thumbnail_11715109.jpg","duration":125,"publication_date":"2013-05-23T14:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-lets-go-check-out-funimation","changefreq":"weekly","video":[{"title":"S1:E570 - Random Awesomeness - Let's go check out FUNimation!","description":"It turns that one of America's largest anime production companies isn't that far from ScrewAttack, and when they invited us to come check out there place? We were definitely going!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-lets-go-check-out-funimation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4f5de9d-77d5-4011-bb08-56eba99af897/sm/video_thumbnail_11713824.jpg","duration":422,"publication_date":"2013-05-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052213-xbox-one-controller-details-rare-bringing-back-a-historic-ip-and-freedom-wars-trailer","changefreq":"weekly","video":[{"title":"S1:E430 - Hard News 05/22/13 - XBox One controller details, Rare bringing back a historic IP, and 'Freedom Wars' trailer","description":"Today on HardNews, XBox One controller details, Rare bringing back a historic IP, and 'Freedom Wars' trailer.\r\n\t\r\n\tXBox One controller details - http://www.screwattack.com/news/xbox-one-controller-doing-some-interesting-things-rumble\r\n\tRare bringing back historic IP - http://www.screwattack.com/news/rare-show-%E2%80%98historic%E2%80%99-franchise-xbox-one-e3\r\n\t'Freedom Wars' trailer -  http://www.screwattack.com/news/freedom-wars-might-just-be-killer-app-vita-looking\r\n\t\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052213-xbox-one-controller-details-rare-bringing-back-a-historic-ip-and-freedom-wars-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82e94f11-6ffc-4b69-b150-48f6f0a4babe/sm/video_thumbnail_11713713.jpg","duration":134,"publication_date":"2013-05-22T14:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-sidescrollers-extended-52113","changefreq":"weekly","video":[{"title":"S1:E569 - [Advantage] SideScrollers Extended 5/21/13","description":"Extra SideScrollers for Advantage Members","player_loc":"https://roosterteeth.com/embed/advantage-sidescrollers-extended-52113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/461a4762-2eaa-4cad-8a5f-be0bd949e837/sm/video_thumbnail_11712552.jpg","duration":804,"publication_date":"2013-05-21T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"just-a-gaggle\"","changefreq":"weekly","video":[{"title":"S1:E118 - SideScrollers - \"Just a Gaggle\"","description":"Chad, Nick and Sam talk about everything from Geese to crazy gun wielding old ladies!\r\n \r\nChad Twitter (https://twitter.com/screwattackchad)\r\nNick Twitter (https://twitter.com/thenervousnick)\r\nSam Twitter (https://twitter.com/ScrewAttackSam)\r\nScrewAttack Twitter (https://twitter.com/screwattack)\r\nWant the audio version? Pick it up HERE","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"just-a-gaggle\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1854c457-fdbe-4a39-9bb1-88609b37303f/sm/video_thumbnail_11712551.jpg","duration":2952,"publication_date":"2013-05-21T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052113-xbox-one-betrays-chad","changefreq":"weekly","video":[{"title":"S1:E429 - Hard News 05/21/13 - XBox One betrays Chad","description":"Today on Hard News, based on the first impression, XBox One may have betrayed Chad.\r\n\t\r\n\tXBox One reveal re-cap article - http://www.screwattack.com/news/so-what-xbox-one-trying-offer-us-all-one-entertainment-hub\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052113-xbox-one-betrays-chad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ed81c1f-4b03-4579-8afb-3dbdaa95b064/sm/video_thumbnail_11712436.jpg","duration":167,"publication_date":"2013-05-21T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-amagon","changefreq":"weekly","video":[{"title":"S1:E395 - VGV - Amagon","description":"Come shoot some Chest Beams with this hulked out, psychotic Marine!\r\n \r\nDark Suspense Music Instrumental:\r\n\thttp://musicloveroriginals.bandcamp.com/track/dark-suspense-music-instrumental-original-composition-instrumental-music","player_loc":"https://roosterteeth.com/embed/vgv-amagon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5064dc4a-2295-4679-bc0b-d593578883d0/sm/video_thumbnail_11696531.jpg","duration":151,"publication_date":"2013-05-20T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052013-resident-evil-7-rumor-steam-releases-trading-cards-and-bill-summerwill-bashes-the-wii-u","changefreq":"weekly","video":[{"title":"S1:E428 - Hard News 05/20/13 - Resident Evil 7 rumor, Steam releases trading cards, and Bill Summerwill bashes the Wii U","description":"Today on Hard News, Resident Evil 7 rumor, Steam releases trading cards, and Bill Summerwill bashes the Wii U.\r\n\t\r\n\tResident Evil 7 rumor - http://www.screwattack.com/news/rumor-capcom-promotional-material-leaks-pointing-resident-evil-7\r\n\tSteam trading cards - http://www.screwattack.com/news/steam-invites-internet-play-collectible-card-game-its-newest-beta\r\n\tEA executive bashes the Wii U - http://www.screwattack.com/news/ea-engineer-tweets-wii-u-%E2%80%9Ccrap%E2%80%9D-describes-nintendo-%E2%80%9Cwalking-dead%E2%80%9D\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-052013-resident-evil-7-rumor-steam-releases-trading-cards-and-bill-summerwill-bashes-the-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ea2b7e9-b236-49a5-b646-cd1b4065c7bb/sm/video_thumbnail_11698131.jpg","duration":160,"publication_date":"2013-05-20T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-dont-tell-ben-about-star-wars","changefreq":"weekly","video":[{"title":"S1:E190 - The Clip - Don't Tell Ben About Star Wars","description":"For health and safety reasons... please, PLEASE don't tell Ben about new Star Wars games.  We beg of you.","player_loc":"https://roosterteeth.com/embed/the-clip-dont-tell-ben-about-star-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/337755e5-3dd5-4e3a-8309-90087688cc56/sm/starwarsthumb.jpg","duration":169,"publication_date":"2013-05-17T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051713-nintendos-new-release-dates-sega-partnership-and-best-buy-premieres","changefreq":"weekly","video":[{"title":"S1:E427 - Hard News 05/17/13 - Nintendo's new release dates, Sega partnership, and Best Buy premieres","description":"Today on Hard News, Nintendo's new release dates, Sega partnership, and Best Buy premieres.\r\n\t\r\n\tNintendo Direct announces release dates - http://www.screwattack.com/news/here-summer-schedule-all-your-upcoming-nintendo-games\r\n\tSega and Nintendo partner up - http://www.screwattack.com/news/nintendo-reveals-worldwide-partnership-sega-and-exclusivity-rights-sonic-lost-world\r\n\tNintendo premieres at Best Buy - http://www.screwattack.com/news/nintendo-wants-bring-e3-public-your-local-best-buy\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-051713-nintendos-new-release-dates-sega-partnership-and-best-buy-premieres","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9c1b351-f535-4160-849e-d7c223a9000b/sm/video_thumbnail_11571111.jpg","duration":119,"publication_date":"2013-05-17T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051613-eas-new-moba-dawngate-and-closing-their-online-passes-and-nintendo-dooms-lets-play-channels","changefreq":"weekly","video":[{"title":"S1:E426 - Hard News 05/16/13 - EA's new MOBA 'Dawngate' and closing their Online Passes, and Nintendo dooms Let's Play channels","description":"Today on Hard News, EA's new MOBA \"Dawngate\" and closing their Online Pass system, and Nintendo dooms Let's Play channels.   \r\n\t\r\n\tNew MOBA \"Dawngate\" - http://www.screwattack.com/news/ea-has-unveiled-its-latest-entry-moba-market-dawngate\r\n\tEA closes Online Passes - www.screwattack.com/news/ea-drops-online-pass-system-future-titles\r\n\tNintendo dooms Let's Play - http://www.screwattack.com/news/nintendo-monetizing-lets-play-channels-infringe-their-copyright-themselves\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-051613-eas-new-moba-dawngate-and-closing-their-online-passes-and-nintendo-dooms-lets-play-channels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b130130-652d-41d4-ba81-b17dda5c808e/sm/video_thumbnail_11527261.jpg","duration":132,"publication_date":"2013-05-16T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051513-gran-turismo-6-coming-to-the-ps3-brosie-the-riveter-and-pac-man-returns","changefreq":"weekly","video":[{"title":"S1:E425 - Hard News 05/15/13 - Gran Turismo 6 coming to the PS3, Brosie the Riveter, and Pac-Man returns","description":"Today on Hard News, Gran Turismo 6 coming to the PS3, Brosie the Riveter, and Pac-Man returns.   \r\n\t\r\n\tGran Turismo 6 - http://www.screwattack.com/news/so-gran-turismo-6-was-announced-today-ps3\r\n\tBrosie the Riveter - http://www.screwattack.com/news/hawkens-ceo-gets-pranked-hanging-sexy-poster-his-office\r\n\tPac-Man and the Ghostly Adventures - http://www.screwattack.com/news/pac-man-and-ghostly-adventures-getting-game-tie-upcoming-show\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-051513-gran-turismo-6-coming-to-the-ps3-brosie-the-riveter-and-pac-man-returns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6eb86d3-bd06-4ae7-8710-b05a3b4dcaf7/sm/video_thumbnail_11484001.jpg","duration":132,"publication_date":"2013-05-15T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-sidescrollers-extended-51513","changefreq":"weekly","video":[{"title":"S1:E568 - [Advantage] SideScrollers Extended 5/15/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/advantage-sidescrollers-extended-51513","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/595ae115-169b-4d6d-bd6e-c351416d8aee/sm/video_thumbnail_11483911.jpg","duration":706,"publication_date":"2013-05-15T13:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"gamer-meal-time\"","changefreq":"weekly","video":[{"title":"S1:E117 - SideScrollers - \"Gamer Meal Time\"","description":"Chad, Nick and Sam talk about gaming food and Sam enlightens us on his culinary creations.\r\nChad Twitter (https://twitter.com/screwattackchad)\r\nNick Twitter (https://twitter.com/thenervousnick)\r\nSam Twitter (https://twitter.com/ScrewAttackSam)\r\nScrewAttack Twitter (https://twitter.com/screwattack)\r\nWant to listen to SideScrollers on the go? Get the audio version HERE","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"gamer-meal-time\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a3a2e82-0f81-4025-85ec-801535257ee5/sm/video_thumbnail_11483701.jpg","duration":3159,"publication_date":"2013-05-15T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051413-nvidia-shields-initial-price-new-killzone-trailer-leaked-and-game-design-coming-to-uta","changefreq":"weekly","video":[{"title":"S1:E424 - Hard News 05/14/13 - Nvidia Shield's initial price, new Killzone trailer leaked, and Game Design coming to UTA.","description":"Today on Hard News, Nvidia Shield's initial price, new Killzone trailer leaked, and Warren Spector bringing Game Design to UTA.   \r\n\t\r\n\tNvidia Shield - http://www.screwattack.com/news/nvidia-shield-priced-349-youll-need-better-video-card\r\n\tKillzone: Mercenary trailer - http://www.screwattack.com/news/new-killzone-mercenary-trailer-leaks-russia-love\r\n\tUTA Game Design - http://www.screwattack.com/news/ut-will-be-getting-game-development-program-warren-spector-and-paul-sams\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-051413-nvidia-shields-initial-price-new-killzone-trailer-leaked-and-game-design-coming-to-uta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23836f4c-e637-46ce-9b0f-36b7b5251f37/sm/video_thumbnail_11440301.jpg","duration":116,"publication_date":"2013-05-14T13:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-favorite-video-game-commercials","changefreq":"weekly","video":[{"title":"S1:E77 - Top 10 Favorite Video Game Commercials","description":"Here we list our favorite video game commercials. Not all of the are good or clever, they're just our favorite.","player_loc":"https://roosterteeth.com/embed/top-10-favorite-video-game-commercials","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62a6b26c-a8a5-40ce-838f-6b6e53208447/sm/video_thumbnail_11412056.jpg","duration":431,"publication_date":"2013-05-13T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051313-ea-big-cheeses-selling-their-stock-ace-attorney-coming-to-usa-and-europe-and-new-x-y-pokemon-revealed","changefreq":"weekly","video":[{"title":"S1:E423 - Hard News 05/13/13 - EA big cheeses selling their stock, Ace Attorney coming to USA and Europe, and new X & Y Pokemon revealed.","description":"Today on Hard News, EA big cheeses selling their stock, Ace Attorney coming to USA and Europe, and new X & Y Pokemon revealed.   \r\n\t\r\n\tEA execs selling their stock - http://www.screwattack.com/news/two-top-ea-executives-sell-majority-their-company-stock\r\n\tAce Attorney coming to USA and Europe - http://www.screwattack.com/video/Insert-Phoenix-Wright-Catchphrase-Here-Ace-Attorney-Dual-Destinies-Confirmed-for-US-and-European-Release-This-Fall-1139792\r\n\tX & Y Pokemon revealed - http://www.screwattack.com/news/x-and-y-pokedex-now-includes-fighting-panda-grass-goat-thunder-lizard-and-cute-little-bird\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-051313-ea-big-cheeses-selling-their-stock-ace-attorney-coming-to-usa-and-europe-and-new-x-y-pokemon-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f79762fc-9419-40d7-add3-bc5a3d7a626f/sm/video_thumbnail_11402721.jpg","duration":123,"publication_date":"2013-05-13T15:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-controller","changefreq":"weekly","video":[{"title":"S1:E24 - The Best EVER! - Controller","description":"We all play games, but not all of us play them the same way.  These are our best EVER controllers!","player_loc":"https://roosterteeth.com/embed/the-best-ever-controller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b19480c6-53d6-4262-8650-e14828a3592d/sm/video_thumbnail_11290736.jpg","duration":392,"publication_date":"2013-05-10T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sams-best-ever-controller","changefreq":"weekly","video":[{"title":"S1:E567 - Sam's Best EVER Controller","description":"When it comes to personal controller preferences, Sam needs something multi-purpose...","player_loc":"https://roosterteeth.com/embed/sams-best-ever-controller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14e29d41-42a3-40a5-9a15-3d0228b4182e/sm/video_thumbnail_11290716.jpg","duration":140,"publication_date":"2013-05-10T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051013-road-redemption-kickstarter-shadow-warrior-reimagined-and-aliens-colonial-marines-turns-a-profit","changefreq":"weekly","video":[{"title":"S1:E422 - Hard News 05/10/13 - Road Redemption Kickstarter, Shadow Warrior reimagined, and Aliens: Colonial Marines turns a profit.","description":"Today on Hard News, Road Redemption Kickstarter, Shadow Warrior remained, and Aliens: Colonial Marines turns a profit.\r\n\t\r\n\tRoad Redemption funded through Kickstarter - http://www.screwattack.com/news/road-rash-set-return-road-redemption-reaches-its-kickstarter-48-hours-go\r\n\tShadow Warrior to be remade - http://www.screwattack.com/news/shadow-warrior-may-be-getting-reboot-flying-wild-hogs\r\n\tTimeGate Studios updates - http://www.screwattack.com/news/timegate-studios-closes-despite-success-segas-colonial-marines\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-051013-road-redemption-kickstarter-shadow-warrior-reimagined-and-aliens-colonial-marines-turns-a-profit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6bc7151-1f5c-47b8-a223-4ae2cf58773a/sm/video_thumbnail_11276471.jpg","duration":120,"publication_date":"2013-05-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050913-batgirl-dlc-trailer-wolfenstein-opts-out-of-multiplayer-and-diablo-3-economy-ruined","changefreq":"weekly","video":[{"title":"S1:E421 - Hard News 05/09/13 - Batgirl DLC trailer, Wolfenstein opts out of multiplayer, and Diablo 3 economy ruined.","description":"Today on Hard News, Batgirl DLC trailer, Wolfenstein opts out of multiplayer, and Diablo 3 economy ruined.\r\n\t\r\n\tBatgirl DLC trailer - http://www.screwattack.com/news/injustice-batgirl-gameplay-trailer-revealed\r\n\tWolfenstein opts out of multiplayer - http://www.screwattack.com/news/no-multiplayer-new-wolfenstein\r\n\tDiablo 3 economy ruined - http://www.screwattack.com/news/blizzard-mistake-obliterates-diablo-3-economy\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n\t ","player_loc":"https://roosterteeth.com/embed/hard-news-050913-batgirl-dlc-trailer-wolfenstein-opts-out-of-multiplayer-and-diablo-3-economy-ruined","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d694791b-c9f0-4a31-a626-8155aae7adfa/sm/video_thumbnail_11230486.jpg","duration":145,"publication_date":"2013-05-09T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-on-your-side-fast-food-giving-you-the-cold-shoulder","changefreq":"weekly","video":[{"title":"S1:E566 - ScrewAttack On Your Side - Fast Food Giving You the Cold Shoulder?","description":"Craig's a man who loves his drinks, but you know he doesn't love? Being given enough ice to sink the Titanic when he's paying for everything but the cold stuff. So when you order a soda at a fast food restaurant, how much soda are you really getting? Craig investigates!","player_loc":"https://roosterteeth.com/embed/screwattack-on-your-side-fast-food-giving-you-the-cold-shoulder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d214d437-6f24-4298-ba35-11e3ccab8a78/sm/video_thumbnail_11190836.jpg","duration":358,"publication_date":"2013-05-08T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050813-battlefield-servers-and-sequels-fifa-exclusivity-gun-licenses-and-psn-indie-games","changefreq":"weekly","video":[{"title":"S1:E420 - Hard News 05/08/13 - Battlefield servers and sequels, FIFA exclusivity, gun licenses, and PSN Indie games.","description":"Today on Hard News, Battlefield servers and sequels, FIFA exclusivity, gun licenses, and PSN Indie games.\r\n\t\r\n\tBattlefield server attack and rampant domain registration - http://www.screwattack.com/news/battlefield-servers-attacked-and-ea-responds-gratuitous-domain-registration\r\n\tFIFA and EA sign on until 2022 - http://www.screwattack.com/news/ea-has-locked-down-fifa-license-through-2022\r\n\tEA to stop paying gun manufacturers - http://www.screwattack.com/news/ea-going-quit-paying-licensed-weapons-and-keep-using-them-anyway\r\n\tPlaystation Network adds Indie Games section - http://www.screwattack.com/news/playstation-store-finally-gets-indie-games-section\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050813-battlefield-servers-and-sequels-fifa-exclusivity-gun-licenses-and-psn-indie-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f26e723c-90d3-41f0-80e8-a432c9811796/sm/video_thumbnail_11190061.jpg","duration":134,"publication_date":"2013-05-08T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-sidescrollers-extended-50713","changefreq":"weekly","video":[{"title":"S1:E565 - [Advantage] SideScrollers Extended 5/07/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/advantage-sidescrollers-extended-50713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2915cc7b-095d-422e-bb68-bff42e19142c/sm/video_thumbnail_11187156.jpg","duration":773,"publication_date":"2013-05-08T12:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"ice-cream-turf-war\"-part-2","changefreq":"weekly","video":[{"title":"S1:E116 - SideScrollers - \"Ice Cream Turf War\" Part 2","description":"The latest episode of SideScrollers was too much for internet! So we had to upload the ending separately. Watch part 1 HERE","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"ice-cream-turf-war\"-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aa627b0-2c5b-4d96-a4de-9167cc28f54c/sm/video_thumbnail_11188181.jpg","duration":518,"publication_date":"2013-05-07T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"ice-cream-turf-war\"","changefreq":"weekly","video":[{"title":"S1:E115 - SideScrollers - \"Ice Cream Turf War\"","description":"This episode of SideScrollers was too much for internet! So we had to upload the ending separately. Watch part 2 HERE\r\nChad, Nick and Sam are at it again, this time talking about a battle of frosty proportions!\r\n\r\n\tChad Twitter (https://twitter.com/screwattackchad)\r\n\r\n\t \r\n\r\n\tNick Twitter (https://twitter.com/thenervousnick)\r\n\r\n\t \r\n\r\n\tSam Twitter (https://twitter.com/ScrewAttackSam)\r\n\r\n\t \r\n\r\n\tScrewAttack Twitter (https://twitter.com/screwattack)\r\nWant to listed to SideScrollers on the go? Get the audio version HERE!","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"ice-cream-turf-war\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8806651b-ca2e-4edb-8994-6ef095d68cd1/sm/video_thumbnail_11108356.jpg","duration":3598,"publication_date":"2013-05-07T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050713-new-wolfenstein-in-the-works-kingdom-hearts-hd-makeover-and-disney-joins-the-darkside","changefreq":"weekly","video":[{"title":"S1:E419 - Hard News 05/07/13 - New Wolfenstein in the works, Kingdom Hearts HD makeover, and Disney joins the darkside!","description":"Today on Hard News, New Wolfenstein in the works, Kingdom Hearts HD makeover, and Disney joins the darkside!\r\n\t\r\n\tNew Wolfenstein - http://www.screwattack.com/news/new-wolfenstein-has-been-announced\r\n\tKingdom Hearts 1.5 - http://www.screwattack.com/news/kingdom-hearts-hd-15-gets-release-date\r\n\tEA given exclusive Star Wars game rights - http://www.screwattack.com/news/ea-and-disney-strike-star-wars-video-game-exclusivity-deal\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050713-new-wolfenstein-in-the-works-kingdom-hearts-hd-makeover-and-disney-joins-the-darkside","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce00ec6-69ab-4c28-9270-bcc01e0ac452/sm/video_thumbnail_11151096.jpg","duration":154,"publication_date":"2013-05-07T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-quackshot","changefreq":"weekly","video":[{"title":"S1:E394 - VGV - Quackshot","description":"Donald plunges into some duck on duck action in this Genesis exclusive! Yay!","player_loc":"https://roosterteeth.com/embed/vgv-quackshot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/010b41ab-40c4-4963-8430-d205ca42d1ed/sm/video_thumbnail_11109726.jpg","duration":149,"publication_date":"2013-05-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050613-warner-sued-over-cat-memes-rumor-of-new-3d-mario-and-quick-news-on-ps2-and-a-guillotine-game","changefreq":"weekly","video":[{"title":"S1:E418 - Hard News 05/06/13 - Warner sued over cat memes, rumor of new 3D Mario, and quick news on PS2 and a guillotine game!","description":"Today on Hard News, Warner sued over cat memes, rumor of new 3D Mario, and quick news on PS2 and a guillotine game!  \r\n\t\r\n\tWarner Bros sued over cat memes - http://www.screwattack.com/news/warner-bros-and-5th-cell-sued-creators-nyan-cat-and-keyboard-cat\r\n\tRumor of 3D Mario - http://www.screwattack.com/news/rumor-wii-u%E2%80%99s-first-3d-mario-title-launch-october\r\n\tGame Stop no longer accepting PS2 - http://www.screwattack.com/news/next-month-gamestop-will-no-longer-accept-ps2-trade-ins\r\n\tOculus Rift guillotine game - http://www.screwattack.com/video/Feel-like-having-your-head-chopped-off-Try-using-the-Oculus-Rift-11102966\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050613-warner-sued-over-cat-memes-rumor-of-new-3d-mario-and-quick-news-on-ps2-and-a-guillotine-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b231c508-9195-4a28-8104-2edf487dbac7/sm/video_thumbnail_11107051.jpg","duration":105,"publication_date":"2013-05-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-4","changefreq":"weekly","video":[{"title":"S1:E564 - Real Trailers - 50 Cent: Blood on the Sand","description":"Ain't no peace in the Middle East when Fiddy rolls up, yo! Show those wankstas they took the wrong man's diamond encrusted skull!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12a592eb-28ff-4897-91bc-058d0db99446/sm/video_thumbnail_11070116.jpg","duration":74,"publication_date":"2013-05-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/choose-your-adventure-what-if-bryan-was-food","changefreq":"weekly","video":[{"title":"S1:E563 - Choose Your Adventure - What If Bryan Was Food?","description":"They say you are what you eat... so what does that make Bryan?\r\n \r\n\r\n\tFor you mobile peeps\r\n\tLunch          |          Snack          |          Dessert","player_loc":"https://roosterteeth.com/embed/choose-your-adventure-what-if-bryan-was-food","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/decdef42-1202-4c8e-8fa5-9588ace2f761/sm/video_thumbnail_11014066.jpg","duration":38,"publication_date":"2013-05-03T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050313-south-parks-epic-game-a-crowdfunded-successor-to-eternal-darkness-and-new-batgirl-dlc","changefreq":"weekly","video":[{"title":"S1:E417 - Hard News 05/03/13 - South Park's epic game, a crowdfunded successor to Eternal Darkness, and new Batgirl DLC.","description":"Today on Hard News, South Park's epic game, a crowdfunded successor to Eternal Darkness, and new Batgirl DLC.\r\n\t\r\n\tSouth Park: Stick of Truth - http://www.screwattack.com/news/south-park-stick-truth-update\r\n\tCrowdfunded Eternal Darkness successor - http://www.screwattack.com/news/eternal-darkness-getting-spiritual-successor\r\n\tBatgirl DLC - http://www.screwattack.com/news/batgirl-injustice\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050313-south-parks-epic-game-a-crowdfunded-successor-to-eternal-darkness-and-new-batgirl-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a3fb0f1-96a1-4383-9b92-c51f9f88bb9b/sm/video_thumbnail_11001276.jpg","duration":123,"publication_date":"2013-05-03T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-does-five-hours-of-comfort-get-you","changefreq":"weekly","video":[{"title":"S1:E562 - What does five hours of comfort get you? ","description":"This is the face of our new man behind the scenes, John. We'd heard from Nick that John is one goofy dude, but that side of him doesn't appear until he's comfortable around people. So after five hours of working at ScrewAttack, Craig wanted to know: what could he get for five hours of comfort?","player_loc":"https://roosterteeth.com/embed/what-does-five-hours-of-comfort-get-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04707d0e-d0a2-4241-a622-d46193f3cc32/sm/video_thumbnail_10991866.jpg","duration":141,"publication_date":"2013-05-03T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050213-man-wins-a-banana-sega-leaks-new-xbox-name-and-molyneux-spews-more-confusion","changefreq":"weekly","video":[{"title":"S1:E416 - Hard News 05/02/13 - Man wins a banana, Sega leaks new XBox name, and Molyneux spews more confusion.","description":"Today on Hard News, Man wins a banana, Sega leaks new XBox name, and Molyneux spews more confusion.\r\n\t\r\n\t\r\n\tMan tries to win Kinect, gets banana instead - http://www.screwattack.com/video/Banana-man-looses-life-savings-try-to-win-a-Kinect-and-College-Humor-pays-it-foreword-10961266\r\n\tNew Sonic and the Nextbox name revealed? - http://www.screwattack.com/news/rumor-has-recent-sonic-leak-also-leaked-name-nextbox\r\n\tCuriosity's secret to be revealed? - http://www.screwattack.com/news/22-cans-says-curiositys-secret-could-be-revealed-early-next-week\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050213-man-wins-a-banana-sega-leaks-new-xbox-name-and-molyneux-spews-more-confusion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa042e58-030e-4482-913a-d9a7fa0ceccb/sm/video_thumbnail_10962076.jpg","duration":159,"publication_date":"2013-05-02T14:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-trolling","changefreq":"weekly","video":[{"title":"S1:E114 - SideScrollers - \"Trolling\"","description":"Chad, Nick and Sam talk about Trolling and wonder why getting high and naked seems to make people immune to Tazers.\r\nChad Twitter (https://twitter.com/screwattackchad)\r\nNick Twitter (https://twitter.com/thenervousnick)\r\nSam Twitter (https://twitter.com/ScrewAttackSam)\r\nScrewAttack Twitter (https://twitter.com/screwattack)\r\nWant to take SideScrollers with you on the go? Get the Audio version HERE\r\n ","player_loc":"https://roosterteeth.com/embed/sidescrollers-trolling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7f24212-d7ad-477c-a599-d62617754193/sm/video_thumbnail_10871546.jpg","duration":3500,"publication_date":"2013-05-02T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050113-dragons-dogma-save-corruption-sega-lawsuit-and-game-devs-wonderful-lesson","changefreq":"weekly","video":[{"title":"S1:E415 - Hard News 05/01//13 - Dragon's Dogma save corruption, Sega lawsuit, and Game Dev's wonderful lesson","description":"Today on Hard News,  Dragon's Dogma save file corruption, Sega and Gearbox Alien lawsuit, and Greenheart Game's wonderful lesson.\r\n\t\r\n\tDragon's Dogma save file corruption - http://www.screwattack.com/news/psa-dragons-dogma-update-corrupting-saves-forever\r\n\tSega and Gearbox Alien lawsuit - http://www.screwattack.com/news/sega-and-gearbox-are-being-sued-over-aliens-colonial-marines\r\n\tGreenheart Game's wonderful lesson - http://www.screwattack.com/news/pirates-curse-greenheart-games-anti-piracy-strategy\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050113-dragons-dogma-save-corruption-sega-lawsuit-and-game-devs-wonderful-lesson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7426acb3-1ef6-4589-8ed4-38d685d28c31/sm/video_thumbnail_10923491.jpg","duration":163,"publication_date":"2013-05-01T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-043013-techlands-hellraid-rumors-of-respawns-first-game-and-soul-fjord","changefreq":"weekly","video":[{"title":"S1:E414 - Hard News 04/30/13 - Techland's Hellraid, rumors of Respawn's first game, and Soul Fjord.","description":"Today on Hard News,  Techland's new Hack'n'Slash game Hellraid, rumors of Respawn's first game, and gettin' funky with Ouya's  Soul Fjord.\r\n\t\r\n\tTechland's new Hellraid game - http://www.screwattack.com/news/techlands-next-game-will-be-co-op-first-person-rpg-called-hellraid\r\n\tRumor of Respawn's first game - http://www.screwattack.com/news/rumor-will-respawns-first-game-be-nextbox-exclusive\r\n\tOuya exclusive \"Soul Fjord\" - http://www.screwattack.com/news/soul-fjord-ouya-exclusive-blends-vikings-funk\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-043013-techlands-hellraid-rumors-of-respawns-first-game-and-soul-fjord","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/357c3ea0-7eb8-4e2f-bfd1-7c1035974845/sm/video_thumbnail_10890576.jpg","duration":172,"publication_date":"2013-04-30T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-zelda-bosses","changefreq":"weekly","video":[{"title":"S1:E76 - Top 10 WORST Zelda Bosses","description":"No franchise is all sunshine and rainbows when it comes to large enemies that want you to die.  These are Zelda's biggest offenders!","player_loc":"https://roosterteeth.com/embed/top-10-worst-zelda-bosses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4233d9-81d8-40ca-b966-87f3ce23a2c4/sm/video_thumbnail_10877166.jpg","duration":592,"publication_date":"2013-04-30T02:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042913-mario-bros-crossover-3-0-virtual-boy-on-oculus-rift-and-new-treadmill-based-sonic-game","changefreq":"weekly","video":[{"title":"S1:E413 - Hard News 04/29/13 - Mario Bros Crossover 3.0, Virtual Boy on Oculus Rift, and New Treadmill-Based Sonic Game","description":"Today on Hard News, Exploding Rabbit's Mario Bros Crossover 3.0, Virtual Boy simulator for the Oculus Rift, and new treadmill-based Sonic the Hedgehog arcade game.  \r\n\t\r\n\tMario Bros Crossover 3.0 - http://www.screwattack.com/news/exploding-rabbit-launches-teaser-trailer-super-mario-bros-crossover-30\r\n\tVB simulator for Oculus Rift - http://www.screwattack.com/news/it-looks-oculus-rift-embracing-darkside-gaming\r\n\tSonic Athletics arcade game - http://www.screwattack.com/news/sonic-getting-new-arcade-game-and-it-will-require-little-leg-work\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-042913-mario-bros-crossover-3-0-virtual-boy-on-oculus-rift-and-new-treadmill-based-sonic-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5665c2bd-7884-4295-bcb2-05097b1bd4eb/sm/video_thumbnail_10870496.jpg","duration":122,"publication_date":"2013-04-29T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-honest-wii-u-ad","changefreq":"weekly","video":[{"title":"S1:E189 - The Clip - Honest Wii U Ad","description":"Those super happy families you see in Wii U ads?  Let's be honest here...","player_loc":"https://roosterteeth.com/embed/the-clip-honest-wii-u-ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f0448f-c199-4ba2-a53b-66f50e1ff735/sm/clipthumb_0.jpg","duration":167,"publication_date":"2013-04-26T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042613-new-xcom-game-announced-new-final-fantasy-tactics-for-mobile-devices-and-thq-in-tens-of-millions-of-debt","changefreq":"weekly","video":[{"title":"S1:E412 - Hard News 04/26/13 - New XCOM game announced, new Final Fantasy Tactics for mobile devices, and THQ in tens of millions of debt.","description":"Today on Hard News, New XCOM game announced, new Final Fantasy Tactics for mobile devices, and THQ in tens of millions of debt.  \r\n\t\r\n\tNew XCOM game announced - www.screwattack.com/news/bureau-xcom-declassified-gets-release-date\r\n\tNew Final Fantasy Tactics for mobile devices - http://www.screwattack.com/news/new-final-fantasy-tactics-game-works\r\n\tTHQ in tens of millions of debt - www.screwattack.com/news/thq-owes-everyone-money\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-042613-new-xcom-game-announced-new-final-fantasy-tactics-for-mobile-devices-and-thq-in-tens-of-millions-of-debt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59e2a708-3a40-4483-84af-1e2d538f4095/sm/video_thumbnail_10788556.jpg","duration":123,"publication_date":"2013-04-26T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-80s-arcade-game","changefreq":"weekly","video":[{"title":"S1:E23 - The Best EVER! - '80s Arcade Game","description":"The 1980s brought us arcade classics that would set standards for the entire industry, but which ones were our best ever?","player_loc":"https://roosterteeth.com/embed/the-best-ever-80s-arcade-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0736733e-114d-4c0a-b34a-a4dfa424b234/sm/video_thumbnail_10762271.jpg","duration":394,"publication_date":"2013-04-26T00:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonus-worst-ever-if-sam-could-make-a-zelda-game","changefreq":"weekly","video":[{"title":"S1:E559 - Bonus WORST Ever! - If Sam Could Make a Zelda Game...","description":"Sam was pretty disappointed in the Zelda franchise as a whole on The WORST Ever!, but what would he do if he was making the next Zelda game?","player_loc":"https://roosterteeth.com/embed/bonus-worst-ever-if-sam-could-make-a-zelda-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e95b134b-6a53-4f12-8752-8caa879c3ce6/sm/video_thumbnail_10750636.jpg","duration":100,"publication_date":"2013-04-25T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042513-ea-partners-label-closing-no-nintendo-conference-at-e3-and-rayman-legends-challenges-app-available","changefreq":"weekly","video":[{"title":"S1:E411 - Hard News 04/25/13 - EA Partners label closing, no Nintendo conference at E3, and Rayman Legends Challenges app available","description":" \r\nToday on Hard News, EA Partners label closing, no Nintendo conference at E3, and Rayman Legends Challenges app available","player_loc":"https://roosterteeth.com/embed/hard-news-042513-ea-partners-label-closing-no-nintendo-conference-at-e3-and-rayman-legends-challenges-app-available","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43714a76-409d-43cd-bea3-04f422ed6fc3/sm/video_thumbnail_10750191.jpg","duration":136,"publication_date":"2013-04-25T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042413-iwata-becomes-new-ceo-of-noa-new-call-of-duty-leak-and-dragons-crown-controversy","changefreq":"weekly","video":[{"title":"S1:E410 - Hard News 04/24/13 - Iwata becomes new CEO of NoA, new Call of Duty leak, and Dragon's Crown controversy.","description":"Today on Hard News, Nintendo's financial shortfalls, new Call of Duty leak, and Dragon's Crown controversy.\r\n\t\r\n\tIwata becomes new CEO of NoA - http://www.screwattack.com/news/satoru-iwata-new-ceo-nintendo-america\r\n\tNew Call of Duty leak - http://www.screwattack.com/news/rumor-retailer-may-have-leaked-box-art-call-duty-ghosts\r\n\tDragon's Crown controversy - http://www.screwattack.com/news/despite-controversy-dragons-crown-has-release-date\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-042413-iwata-becomes-new-ceo-of-noa-new-call-of-duty-leak-and-dragons-crown-controversy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e24ca88-5377-4efe-95bd-b2ebacaff415/sm/video_thumbnail_10711941.png","duration":165,"publication_date":"2013-04-24T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-42413","changefreq":"weekly","video":[{"title":"S1:E558 - Sidescrollers Extended Cut 4/24/13","description":"Extended SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-42413","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc5c532d-00e4-4113-8400-961f8dae522c/sm/video_thumbnail_10708876.jpg","duration":543,"publication_date":"2013-04-24T11:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"sam-on-the-fly\"","changefreq":"weekly","video":[{"title":"S1:E113 - SideScrollers - \"Sam on the Fly\"","description":"Chad, Nick and Sam talk about people being way to handsome, Sam has to pull middle segment out of his A$$ and you aren't even going to believe what teenage girls are snorting these days...\r\nAudio Link: http://traffic.libsyn.com/sidescrollers/SideScrollersAudio_04_22_13.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"sam-on-the-fly\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/543070df-b6ec-4b53-9d1a-f5d652272c40/sm/video_thumbnail_10639911.jpg","duration":3276,"publication_date":"2013-04-24T11:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042313-pizza-hut-xbox-kinect-ratchet-clank-gets-the-natural-screen-enhancement-and-thq-has-its-final-auction","changefreq":"weekly","video":[{"title":"S1:E409 - Hard News 04/23/13 - Pizza Hut XBox Kinect, Ratchet & Clank gets the natural screen enhancement, and THQ has its final auction.","description":"Today on Hard News, Pizza Hut XBox Kinect, Ratchet & Clank gets the natural screen enhancement, and THQ has its final auction.\r\n\t\r\n\tPizza Hut on XBox - http://www.screwattack.com/news/xbox-360-adds-greatest-app-ever-will-deliver-pizza-your-door\r\n\tRatchet & Clank to the big screen - http://www.screwattack.com/news/ratchet-and-clank-movie-has-been-announced\r\n\tTHQ's final auction -  http://www.screwattack.com/news/results-second-thq-auction-includes-darksiders-finding-new-home\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-042313-pizza-hut-xbox-kinect-ratchet-clank-gets-the-natural-screen-enhancement-and-thq-has-its-final-auction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91d7673f-f67c-4373-8b12-219475bf3a35/sm/video_thumbnail_10675486.png","duration":129,"publication_date":"2013-04-23T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-super-dodge-ball-advance","changefreq":"weekly","video":[{"title":"S1:E393 - VGV - Super Dodge Ball Advance","description":"Ending nuclear warfare, one dodge ball at a time!","player_loc":"https://roosterteeth.com/embed/vgv-super-dodge-ball-advance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69857058-f74f-41e4-b6a3-bdbcb6609c8a/sm/video_thumbnail_10448641.jpg","duration":139,"publication_date":"2013-04-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042213-sega-pluto-up-for-grabs-free-games-on-3ds-and-the-mother-3-fan-translation","changefreq":"weekly","video":[{"title":"S1:E408 - Hard News 04/22/13 - Sega Pluto up for grabs, free games on 3DS, and the Mother 3 Fan translation.","description":"Today on Hard News, Sega Pluto up for grabs, free games on 3DS, and the Mother 3 Fan translation.\r\n\t\r\n\tSega Pluto up for grabs - http://www.screwattack.com/video/Rumor-The-other-Sega-Pluto-console-has-been-found-at-a-yard-salefive-or-six-years-ago-10563586\r\n\t3DS \"So Many Games!\" sale - http://www.screwattack.com/news/nintendo-offering-free-game-3ds-owners-latest-promotion\r\n\tMother 3 Fan translation - http://www.screwattack.com/news/fans-mother-3-send-message-nintendo-saying-they%E2%80%99ll-translate-it-free\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-042213-sega-pluto-up-for-grabs-free-games-on-3ds-and-the-mother-3-fan-translation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c890af7-6fd9-40ea-8487-aac40b2a560e/sm/video_thumbnail_10639711.jpg","duration":157,"publication_date":"2013-04-22T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-hard-news-bloopers-best-friends","changefreq":"weekly","video":[{"title":"S1:E557 - [Advantage] Hard News Bloopers - Best Friends","description":"S1:E557 - [Advantage] Hard News Bloopers - Best Friends","player_loc":"https://roosterteeth.com/embed/advantage-hard-news-bloopers-best-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1c21072-d10b-4f7c-bbf2-04455233e472/sm/video_thumbnail_10636196.jpg","duration":163,"publication_date":"2013-04-22T13:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-5","changefreq":"weekly","video":[{"title":"S1:E556 - Real Trailers - Final Fantasy 14: Realm Reborn","description":"What the trailer for Final Fantasy 14: Realm Reborn SHOULD say.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2624938-b9ad-40cf-aa24-59eb5f8d96d8/sm/video_thumbnail_10608491.jpg","duration":71,"publication_date":"2013-04-21T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-sister-sites","changefreq":"weekly","video":[{"title":"S1:E188 - The Clip - Sister Sites","description":"ScrewAttack.com: gradually becoming a porn site with every passing day.","player_loc":"https://roosterteeth.com/embed/the-clip-sister-sites","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81405356-c2b8-4f16-a954-2005242158ef/sm/sistersitesthumb.jpg","duration":138,"publication_date":"2013-04-19T23:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041913-shinji-mikamis-new-horrorsurvival-razers-ridiculous-discount-and-mr-molyneux-is-feeding-the-trolls","changefreq":"weekly","video":[{"title":"S1:E407 - Hard News 04/19/13 - Shinji Mikami's new horror/survival, Razer's ridiculous discount, and Mr. Molyneux is feeding the trolls.","description":"Today on Hard News, Shinji Mikami's new horror/survival, Razer's ridiculous discount, and Mr. Molyneux is feeding the trolls.\r\n\t\r\n\tShinji Mikami's \"The Evil Within\" - http://www.screwattack.com/news/shinji-mikami-and-bethesda-reveal-their-new-game-evil-within\r\n\tRazer's ridiculous discount - http://www.screwattack.com/news/razer-accidentally-offers-90-all-products\r\n\tMr. Molyneux feeds the trolls. - http://www.screwattack.com/news/curiosity-will-let-you-troll-web-using-microtransactions\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041913-shinji-mikamis-new-horrorsurvival-razers-ridiculous-discount-and-mr-molyneux-is-feeding-the-trolls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33df3126-d79b-4037-a310-97ddcf6cf102/sm/video_thumbnail_10526981.png","duration":139,"publication_date":"2013-04-19T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-star-wars-masters-of-teras-kasi","changefreq":"weekly","video":[{"title":"S1:E392 - VGV - Star Wars: Masters of Teras Kasi","description":"Let's honor the legacy of classic games left behind by LucasArts... by remembering a game that isn't one of them.","player_loc":"https://roosterteeth.com/embed/vgv-star-wars-masters-of-teras-kasi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58ebec47-e47d-41a5-919f-af431779cd7b/sm/video_thumbnail_10493561.jpg","duration":139,"publication_date":"2013-04-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041813-monster-hunter-goes-online-heroes-return-on-xbox-and-pax-prime-passes-sell-fast","changefreq":"weekly","video":[{"title":"S1:E406 - Hard News 04/18/13 - Monster Hunter goes online, Heroes return on XBox, and PAX Prime passes sell fast.","description":" \r\nToday on Hard News, a Monster Hunter MMO, Heroes may return on Xbox, and PAX Prime sells plenty of passes.\r\n \r\nSince PAX Prime is sold out...\r\n \r\nFOR THE NEXT TWO DAYS! WEEKEND PASSES FOR SGC ARE %50 OFF!\r\nHEAD TO SGCONVENTION.COM TO TAKE ADVANTAGE OF THE DEAL\r\n \r\nChina gets F2P Monster Hunter MMO - http://www.screwattack.com/news/china-set-receive-free-play-monster-hunter-mmo\r\nXbox wants to revive Heroes - http://www.screwattack.com/news/rumor-xbox-wants-revive-heroes-because-they-hate-you\r\nPAX Prime passes sell out quickly - http://www.screwattack.com/news/pax-prime-passes-sale\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041813-monster-hunter-goes-online-heroes-return-on-xbox-and-pax-prime-passes-sell-fast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae7f0a40-2ef8-41df-8a8e-97daa534b738/sm/video_thumbnail_10493121.jpg","duration":134,"publication_date":"2013-04-18T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-vge-duck-hunt","changefreq":"weekly","video":[{"title":"S1:E555 - Unaware Steve VGE: Duck Hunt","description":"Unaware Steve's Video Game Extravaganza is back with his pro tips on how to play Duck Hunt!","player_loc":"https://roosterteeth.com/embed/unaware-steve-vge-duck-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f100661-aad2-4855-a374-cddcf1d7e44d/sm/video_thumbnail_10487506.jpg","duration":96,"publication_date":"2013-04-18T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sgc-2013-we-want-you-machinima-again","changefreq":"weekly","video":[{"title":"S1:E554 - SGC 2013 - We want you Machinima! AGAIN!!!","description":"Skeeball is NOT a video game! We want revenge at SGC 2013!","player_loc":"https://roosterteeth.com/embed/sgc-2013-we-want-you-machinima-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4b19bfa-5d28-45ec-8702-e5583e744a04/sm/video_thumbnail_10451261.jpg","duration":47,"publication_date":"2013-04-17T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041713-earthbound-comes-to-wii-u-new-yoshis-island-and-link-to-the-past-gets-a-sequel","changefreq":"weekly","video":[{"title":"S1:E405 - Hard News 04/17/13 - Earthbound comes to Wii U, new Yoshi's Island, and Link to the Past gets a sequel!","description":"Today on Hard News, Earthbound comes to Wii U, new Yoshi's Island, and Link to the Past gets a sequel!\r\n\t\r\n\tEarthbound to Wii U - http://www.screwattack.com/news/fuzzy-pickles-earthbound-coming-virtual-console\r\n\tYoshi rides again - http://www.screwattack.com/news/yoshis-island-3ds-has-been-announced\r\n\tLink to the Past gets a sequel - http://www.screwattack.com/video/Nintendo-announces-The-Legend-of-Zelda-A-Link-to-the-Past-2-10449226\r\n\t\r\n\tFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041713-earthbound-comes-to-wii-u-new-yoshis-island-and-link-to-the-past-gets-a-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f9400b7-69ce-4f58-9f4c-f6ea72c9f29f/sm/video_thumbnail_10455016.jpg","duration":118,"publication_date":"2013-04-17T17:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-snake-jiu-jitsu","changefreq":"weekly","video":[{"title":"S1:E112 - SideScrollers - \"Snake Jiu Jitsu\"","description":"Chad, Nick, and Sam talk Street Justice and the fine art of Snake Jiu Jitsu\r\nDownload the audio version here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-snake-jiu-jitsu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/559e1368-7666-423d-b7bf-e731c1a7c68d/sm/video_thumbnail_10370596.jpg","duration":3257,"publication_date":"2013-04-17T10:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-draw-g1-clayvman","changefreq":"weekly","video":[{"title":"S1:E553 - How to Draw g1 Clayvman","description":"Get your dry-erase markers ready; Lauren's here to show you how to draw happy little g1s.","player_loc":"https://roosterteeth.com/embed/how-to-draw-g1-clayvman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3426a86b-db65-463e-ba30-cf107fbb7c91/sm/video_thumbnail_10445896.jpg","duration":551,"publication_date":"2013-04-17T10:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-41713","changefreq":"weekly","video":[{"title":"S1:E552 - Sidescrollers Extended Cut 4/17/13","description":"Extended SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-41713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fd7c1d3-d4ca-4cf2-b63d-6e1f1bf4d9fb/sm/video_thumbnail_10423566.jpg","duration":595,"publication_date":"2013-04-16T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/angry-video-game-nerd-adventures-official-gameplay-trailer","changefreq":"weekly","video":[{"title":"S1:E551 - Angry Video Game Nerd Adventures - Official Gameplay Trailer","description":"Here it is! The first gameplay trailer for AVGN Adventures that showcases pre-alpha gameplay (ie - SUPER early on).  Can you see all the references to classic and not-so classic games as well as multiple AVGN episodes?\r\n \r\n\r\n\tHelp bring the game to Steam by going it's page and voting \"yes\" here: http://steamcommunity.com/sharedfiles/filedetails/?id=136246834\r\n\r\n\tComing to PC's in 2013!\r\n\r\n\tGet more news and info by liking the Angry Video Game Nerd Adventures Facebook page: http://www.facebook.com/pages/Angry-Video-Game-Nerd-Adventures/485105718225189\r\n\r\n\tFollow ScrewAttack Games on Facebook: https://www.facebook.com/OfficialSAGames\r\n\r\n\tFollow FreakZone Games on Facebook: https://www.facebook.com/FreakZoneGames","player_loc":"https://roosterteeth.com/embed/angry-video-game-nerd-adventures-official-gameplay-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39f3142e-88d5-4e61-ad71-5fd91abcddb7/sm/video_thumbnail_10422291.jpg","duration":78,"publication_date":"2013-04-16T21:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041613-kickstart-an-assassins-fist-a-battlefield-4-feature-leaks-and-the-prince-of-persia-and-silent-hill-that-arent-in-development","changefreq":"weekly","video":[{"title":"S1:E404 - Hard News 04/16/13 - Kickstart an assassin's fist, a Battlefield 4 feature leaks, and the Prince of Persia and Silent Hill that \"aren't\" in development.","description":" \r\nToday on Hard News, kickstart an assassin's fist, a Battlefield 4 feature may have leaked, and the Prince of Persia and Silent Hill that \"aren't\" in development.\r\n \r\nStreet Fighter: Assassin's Fist Kickstarter - http://www.screwattack.com/news/street-fighter-assassins-fist-fan-film-kickstarter\r\nBattlefield 4's Commander Mode - http://www.screwattack.com/news/rumor-battlefield-4-feature-return-commander-mode-and-multiple-multiplayer-factions\r\nClimax may have made the next Prince of Persia: http://www.screwattack.com/news/rumor-climax-studios-might-have-made-next-prince-persia\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041613-kickstart-an-assassins-fist-a-battlefield-4-feature-leaks-and-the-prince-of-persia-and-silent-hill-that-arent-in-development","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ff2ab08-4b49-4dde-9040-97e35d922630/sm/video_thumbnail_10412506.png","duration":133,"publication_date":"2013-04-16T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-gay-snake","changefreq":"weekly","video":[{"title":"S1:E550 - Unaware Steve - Gay Snake","description":"Unaware Steve takes on the legendary DDR player, Gay Snake!","player_loc":"https://roosterteeth.com/embed/unaware-steve-gay-snake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5258f18a-322c-4009-9472-5d4296c58400/sm/video_thumbnail_10410611.jpg","duration":139,"publication_date":"2013-04-16T14:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-zelda-bosses","changefreq":"weekly","video":[{"title":"S1:E75 - Top 10 Zelda Bosses","description":"The Zelda series knows how to do its boss fights, but only these ten outshine all the rest!","player_loc":"https://roosterteeth.com/embed/top-10-zelda-bosses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bb78ba5-fa56-4402-8290-054dfcc51bb2/sm/video_thumbnail_10404956.jpg","duration":597,"publication_date":"2013-04-16T10:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041513-nintendo-koreas-twitter-trouble-castle-of-illusion-is-rebuilt-and-handicapped-streamer-scam","changefreq":"weekly","video":[{"title":"S1:E403 - Hard News 04/15/13 - Nintendo Korea's Twitter trouble, Castle of Illusion is rebuilt, and handicapped streamer scam?","description":" \r\nToday on Hard News, Nintendo Korea's Twitter trouble, Castle of Illusion is rebuilt, and was a handicapped streamer just scamming everyone?\r\n \r\nNintendo Korea's Twitter trouble - http://www.screwattack.com/news/nintendo-korea-may-have-foul-mouthed-twitter-handler\r\nSega announces new Castle of Illusion - http://www.screwattack.com/news/sega-confirms-castle-illusion-being-re-imagined\r\nHandicapped streamer reveals he can walk - http://www.screwattack.com/news/%E2%80%9Cparalyzed%E2%80%9D-gamer-exploits-twitch-fans-20k-then-accidentally-reveals-he-can-walk\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041513-nintendo-koreas-twitter-trouble-castle-of-illusion-is-rebuilt-and-handicapped-streamer-scam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c986d694-a766-41d1-adf2-57a6b79cd841/sm/video_thumbnail_10369631.jpg","duration":149,"publication_date":"2013-04-15T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-6","changefreq":"weekly","video":[{"title":"S1:E549 - Real Trailers - Tiger Woods PGA Tour 14 Masters Historic Edition","description":"Electronic Arts sure isn't being shy about embracing \"tradition\" with this special version of Tiger Woods.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2e91cee-b129-4598-b865-376acbc7995e/sm/video_thumbnail_10329231_0.jpg","duration":71,"publication_date":"2013-04-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/choose-your-adventure-g1-clayvman-pays-us-a-visit","changefreq":"weekly","video":[{"title":"S1:E548 - Choose Your Adventure - g1 Clayvman Pays Us A Visit","description":"When g1 Clayvman so generously pledged so much of his earnings to help fund the return of SGC, we had him come hang out with us at the HQ.  But where will his journey go?\r\n \r\n\r\n\tOn a fancy schmancy mobile phone?\r\n\tThe Bathroom     |     The Door     |     The Drawing","player_loc":"https://roosterteeth.com/embed/choose-your-adventure-g1-clayvman-pays-us-a-visit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76bf9a3c-1a58-4cc6-91ca-d7fd11735711/sm/video_thumbnail_10264341.jpg","duration":98,"publication_date":"2013-04-13T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041213-twisted-pixel-bundle-everybody-doesnt-vote-rayman-legends-bonus-content","changefreq":"weekly","video":[{"title":"S1:E402 - Hard News 04/12/13 - Twisted Pixel bundle, Everybody doesn?t vote, Rayman Legends bonus content","description":"New levels and bosses added to Rayman: Legends thanks to delay - http://www.screwattack.com/news/new-levels-and-bosses-added-rayman-legends-thanks-delay\r\nNintendo is shutting down some Wii channels - http://www.screwattack.com/news/nintendo-shutting-down-some-wii-channels\r\nMicrosoft is selling the Twisted Pixel games for cheap - http://www.screwattack.com/news/microsoft-selling-twisted-pixel-games-cheap/\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041213-twisted-pixel-bundle-everybody-doesnt-vote-rayman-legends-bonus-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e67bd8fd-26fe-4372-9fff-31f4547d0736/sm/video_thumbnail_10249291.png","duration":116,"publication_date":"2013-04-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sgc-2010-amazing-moment-29","changefreq":"weekly","video":[{"title":"S1:E547 - SGC 2010 Amazing Moment #29","description":"As we gear up for SGC in June let's relive some great moments of SGC past.  In 2010 Craig broke the news of the first of two mystery games in the Iron-Man of Gaming tournament - Hydro Thunder Hurricane.","player_loc":"https://roosterteeth.com/embed/sgc-2010-amazing-moment-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d3460b2-08a2-4cd3-9af6-dd7eb6561922/sm/video_thumbnail_10204406.png","duration":153,"publication_date":"2013-04-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041113-pikmin-3-has-multiple-captains-adam-orth-leaves-microsoft-and-a-t-rex-can-play-ukulele","changefreq":"weekly","video":[{"title":"S1:E401 - Hard News 04/11/13 - Pikmin 3 has multiple captains, Adam Orth leaves Microsoft, and a T-Rex can play Ukulele","description":"Jurassic Heart is a dating simulator that lets you try your hand at romance with a t-rex named Taira - http://www.screwattack.com/video/jurassic-heart-10164686\r\nPikmin 3 will have three captains - http://www.screwattack.com/news/pikmin-3-will-have-three-captains\r\nAdam Orth no longer with Microsoft - http://www.screwattack.com/news/adam-orth-no-longer-microsoft\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041113-pikmin-3-has-multiple-captains-adam-orth-leaves-microsoft-and-a-t-rex-can-play-ukulele","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68133778-5bfc-46c6-857c-c80d8d32adb2/sm/video_thumbnail_10208221.png","duration":136,"publication_date":"2013-04-11T14:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041013-batman-is-back-in-arkham-origins-lost-planet-3-is-delayed-splinter-cell-blacklist-on-wii-u","changefreq":"weekly","video":[{"title":"S1:E400 - Hard News 04/10/13 - Batman is back in Arkham Origins, Lost Planet 3 is delayed, Splinter Cell: Blacklist on Wii U","description":"Splinter Cell: Blacklist confirmed for release on Wii U - http://www.screwattack.com/news/splinter-cell-blacklist-confirmed-release-wii-u\r\nLost Planet 3 has been delayed until August - http://www.screwattack.com/news/lost-planet-3-has-been-delayed-until-august\r\nBatman: Arkham Origins is officially announced! - http://www.screwattack.com/news/batman-arkham-origins-officially-announced\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-041013-batman-is-back-in-arkham-origins-lost-planet-3-is-delayed-splinter-cell-blacklist-on-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a79d4449-655a-4cde-9cfc-c9df9f10acfc/sm/video_thumbnail_10158546.png","duration":131,"publication_date":"2013-04-10T13:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-41013","changefreq":"weekly","video":[{"title":"S1:E546 - Sidescrollers Extended Cut 4/10/13","description":"See what happens when the guys spin the middle segment wheel AGAIN!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-41013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/928f0fd2-5df0-465f-ad2e-476eb132e71e/sm/video_thumbnail_10157301.jpg","duration":711,"publication_date":"2013-04-10T12:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-sidescrollers-theater","changefreq":"weekly","video":[{"title":"S1:E111 - SideScrollers - SideScrollers Theater","description":"Chad, Nick and Sam are back and this time they're digging up an old SideScrollers classic \"SideScrollers Theater.\" This is one of the most insane episodes in a good long while.\r\nDownload the audio version here: http://traffic.libsyn.com/sidescrollers/SideScrollersAudio_04_10_13.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-sidescrollers-theater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46bd377a-6882-4db7-870b-d5afef73981e/sm/video_thumbnail_10152051.jpg","duration":2840,"publication_date":"2013-04-10T09:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040913-ipl-bought-by-blizzard-mega-man-reboot-was-an-fps-and-ea-is-the-worst-again","changefreq":"weekly","video":[{"title":"S1:E399 - Hard News 04/09/13 - IPL bought by Blizzard, Mega Man reboot was an FPS, and EA is the worst again","description":"IPL is purchased by Blizzard, includes staff - http://www.screwattack.com/news/ipl-purchased-blizzard-includes-staff\r\nIt looks like EA is the Worst Company in America, two years running - http://www.screwattack.com/news/it-looks-ea-worst-company-america-two-years-running\r\nCancelled Mega Man FPS discovered coming from Armature Studios - www.screwattack.com/news/cancelled-mega-man-fps-discovered-coming-armature-studios\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-040913-ipl-bought-by-blizzard-mega-man-reboot-was-an-fps-and-ea-is-the-worst-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc4b8f85-8291-453d-8bf9-b04a639faa11/sm/video_thumbnail_10113016.png","duration":159,"publication_date":"2013-04-09T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-contra","changefreq":"weekly","video":[{"title":"S1:E187 - Clip of the Week - Contra","description":"Life lesson: Never throw instruction manuals at Jose, it doesn't end well.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-contra","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/265270b5-a301-4afd-8c6e-293d676a85c6/sm/COTWcontra.jpg","duration":98,"publication_date":"2013-04-09T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gmod-murder-part-2","changefreq":"weekly","video":[{"title":"2016:E73 - Gmod: Murder Part 2","description":"...okay, so I shot the wrong guy last time. My b. Mistakes happen. Look, I did my time out already. Closed my eyes and everything. Now I need to actually find the killer. Whoa! Where did you get that gun? Why are you pointing it at me? That's not going to do any good! Clearly you saw me kill that guy. That proves I'm not the killer. Back off man. Back off. Get away from me. Don't make me put you down. I mean it! This is your last warning! *BANG*","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gmod-murder-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bf756ca-4a9d-4922-9366-d1a7eb768d28/sm/2013912-1457765716414-muderthumb.jpg","duration":1576,"publication_date":"2016-03-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-reagan-and-gorbachev","changefreq":"weekly","video":[{"title":"2016:E7 - Reagan Gorbachev","description":"Michael and Ryan try to peacefully solve diplomatic hostilities.... with guns and swords... and a bazooka... good luck earth.","player_loc":"https://roosterteeth.com/embed/play-pals-2016-reagan-and-gorbachev","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56f88e66-b603-4f1c-a24d-3f62be812857/sm/2013912-1457806799342-ppreagan.jpg","duration":1350,"publication_date":"2016-03-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-the-division-the-joker-rick-and-morty-and-tom-clancy-easter-eggs","changefreq":"weekly","video":[{"title":"2016:E14 - The Division – The Joker, Rick and Morty, and Tom Clancy Easter Eggs","description":"There are a lot of people missing in Tom Clancy's The Division. Thom Clancy himself is even missing! Watch as Matt and Jeremy show you where to get more info to find all of these people in danger.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-the-division-the-joker-rick-and-morty-and-tom-clancy-easter-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5082b43d-fad4-4ab4-a7e8-e605d43358df/sm/1104396-1457745189330-easter_eggs.jpg","duration":130,"publication_date":"2016-03-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-15","changefreq":"weekly","video":[{"title":"2016:E15 - Never Skip Ass Day – #15","description":"The AH Crew sits down to talk about Spider Man in Civil War, The Culling, Funeral Staging and more on this week's Off Topic!\n\nThis episode originally aired March 11, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a35b3ce-3558-4770-835b-1572d7e89eda/sm/2013912-1457738313277-OFF15_-_THUMB.jpg","duration":6270,"publication_date":"2016-03-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-outlast-dlc","changefreq":"weekly","video":[{"title":"2016:E11 - Outlast Whistleblower DLC","description":"Joel and Adam play the Outlast Whistleblower DLC. Description of events: “CAMERA! RUN! STOP. AHHHHHHH.\"","player_loc":"https://roosterteeth.com/embed/how-to-2016-outlast-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdeb0856-a99a-46aa-bb60-7b1d3db799c5/sm/2013912-1457651912695-Thumb_OutLastDLC.jpg","duration":2668,"publication_date":"2016-03-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-grab-bag-10","changefreq":"weekly","video":[{"title":"2016:E13 - Grab Bag #10","description":"Get yourself a random assortment of clips from the Achievement Hunter cutting room floor!\n\n\n\n0:12 - Play Pals - Who's Your Daddy\n\n1:00 - Things to Do In GTA V - Zap Maze \n\n3:05 - Rage Quit - Linea","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-grab-bag-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5834e6d7-d606-472e-8193-66e51340c905/sm/2013912-1457723731970-grabbag_thumb.jpg","duration":270,"publication_date":"2016-03-11T19:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-the-division-adventure-time-grow-home-and-raving-rabbids-easter-eggs","changefreq":"weekly","video":[{"title":"2016:E13 - The Division – Adventure Time, Grow Home, and Raving Rabbids Easter Eggs","description":"Explore the streets of Tom Clancy's The Division (also known as Manhattan) with Matt and Jeremy to find the Adventure Time, Grow Home, and Raving Rabbids easter eggs!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-the-division-adventure-time-grow-home-and-raving-rabbids-easter-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2606a71e-e359-4187-8759-dd6f887d7d28/sm/2013912-1457714821343-divisioneasteregg_thumb.jpg","duration":155,"publication_date":"2016-03-11T16:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-the-best-garden-warfare-character-286","changefreq":"weekly","video":[{"title":"2016:E10 - The Best Garden Warfare Character – #286","description":"Oh snizzity snap! Is it the funky freshest hip new game on the market, Plants Vs Zombies: Garden Warfare 2? Awww snapples to my grapples! I can't wait to get my cooldaddy claws into these hipjive new characters. Disco Chomper? Bomb diggity dang! Party Brainz? Sniggity wiggity! HOLY MOLY MOOGLIES what is that? The Monstrosity Pirate? That's really bummin my junkjive, man. That is not funky fresh at all!\n\nOn this Fails of the Weak, OG Crew Jack and Geoff check out this horrifying fail in Plants Vs Zombies Garden Warfare 2, as well as more hilarious fails in Just Cause 3, The Division, Battlefield Hardline, and Assassin's Creed Syndicate.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-the-best-garden-warfare-character-286","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc6d230-3ac1-431b-b108-007f246be8ec/sm/2013912-1457564068980-Fail_286_Thumb.png","duration":164,"publication_date":"2016-03-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-198-mister-j","changefreq":"weekly","video":[{"title":"2016:E72 - Minecraft – Episode 198 – Mr. J","description":"Geoff and Gavin brainstormed for all of 12 seconds and came up with the greatest Minecraft idea of all time... JEREMY IS IN CHARGE!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-198-mister-j","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f36908d9-4ff4-46b0-8584-2f78e9913360/sm/2013912-1457566808606-mc_thumb.jpg","duration":2657,"publication_date":"2016-03-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2016-bullseye","changefreq":"weekly","video":[{"title":"2016:E3 - HUNT Bullseye","description":"Watch Michael and Jeremy try to \"Hunt\" for a bullseye in 10,000 BC. Can they do it??","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2016-bullseye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c4c3579-6b5b-4e9a-a459-0beafbed8c1a/sm/2013912-1457562148906-hunt_thumb.jpg","duration":479,"publication_date":"2016-03-09T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-pok-mon-red-blue-catch-mew","changefreq":"weekly","video":[{"title":"2016:E12 - Pokémon Red & Blue – Catch Mew!","description":"...if you can!\n\nKdin and Matt show you how to catch Mew in Pokémon Red & Blue Version!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-pok-mon-red-blue-catch-mew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a9ea5e2-1ba9-418a-a689-8753061235da/sm/2013912-1457554809484-CatchMew-Thumb.jpg","duration":222,"publication_date":"2016-03-09T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-pocket-play-pokemon","changefreq":"weekly","video":[{"title":"2016:E71 - Pocket Play – Pokémon Blue","description":"Jack took Michael and Jeremy through \"Pocket Mortys\", so it's time for them to return the favor! Welcome to the wonderful world of POKEMON!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-pocket-play-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17906d2e-a718-4ee9-acf9-78ecc261349e/sm/2013912-1457544395266-pp_thumb.jpg","duration":2665,"publication_date":"2016-03-09T17:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-the-division-tmnt-and-splinter-cell-easter-eggs","changefreq":"weekly","video":[{"title":"2016:E11 - The Division – TMNT and Splinter Cell Easter Eggs","description":"Jeremy and Jack are in The Division to show you two little, but very cool, easter eggs hidden in the huge city.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-the-division-tmnt-and-splinter-cell-easter-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62001b67-0f93-48f2-92c9-26b2f1c3f3e5/sm/2013912-1457469443586-Thumb.jpg","duration":156,"publication_date":"2016-03-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-plants-vs-zombies-garden-warfare-2","changefreq":"weekly","video":[{"title":"2016:E6 - Plants vs. Zombies: Garden Warfare 2","description":"Ryan and Jeremy fight the horde in the Backyard Battleground!","player_loc":"https://roosterteeth.com/embed/play-pals-2016-plants-vs-zombies-garden-warfare-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e0283ee-28e1-4f3d-9e47-5704518afb00/sm/2013912-1457392530897-pp_pvz.jpg","duration":848,"publication_date":"2016-03-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trivial-pursuit-part-7","changefreq":"weekly","video":[{"title":"2016:E70 - Trivial Pursuit Part 7","description":"The comments were so nice to Jack in the last video, they decided to roll right into another round of Trivial Pursuit!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trivial-pursuit-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4114d551-215a-43d8-b652-5446a3b55a71/sm/2013912-1457388522492-TP_part7_thumb.jpg","duration":1589,"publication_date":"2016-03-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-2","changefreq":"weekly","video":[{"title":"2016:E10 - The Legend Of Zelda Twilight Princess HD - Zelda Wii U Easter Egg","description":"Did you hear there's a reference to Nintendo's Zelda Wii U in Twilight Princess HD? Probably not right? It's a secret to everybody afterall. But not to you now, thanks to this video!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ae6db34-f593-460a-94dd-9735d0361c44/sm/1104396-1457403155030-tw2.jpg","duration":153,"publication_date":"2016-03-08T02:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-green-day-geoff-ahwu-for-march-7-th-2016-307","changefreq":"weekly","video":[{"title":"2016:E13 - Green Day Geoff – AHWU for March 7th, 2016 (#307)","description":"Green Day Geoff can't wear Green Day Geoff shirts, so Rooster Teeth is making sure to get Geoff some Geoff-approved shirts that Geoff can wear. Maybe one of those is a Green Day Geoff shirt, like a \"21st Geoff-ury Breakdown\" type dealio. Just a picture of Geoff kissing Geoff. And this is precisely why video description writers are separate jobs from merchandise design makers.\n\nFun fact: Did you realize this is AHWU #307, which is totally releasing on March 7th? We planned that. Three hundred and seven weeks ago, Jack plotted out the timeline so this very moment would happen. It's super fuckin' impressive.\n\n\n\nWatch the Vid of the Week and the Community Vid!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-green-day-geoff-ahwu-for-march-7-th-2016-307","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f33a465-32d2-47c1-8b9f-6626a1e8495a/sm/2013912-1457402752157-awhu_thums.jpg","duration":521,"publication_date":"2016-03-08T02:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-dying-light","changefreq":"weekly","video":[{"title":"2016:E10 - Dying Light","description":"Jeremy and Michael take a look at Dying Light in this week’s Five Facts! Speaking of dying, we’ve heard everyone’s dying to see Geoff and Ryan go head to head in a Fact Check! Click here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-dying-light","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5a2a0ee-d1b8-4d27-a795-ac95801fd5ad/sm/2013912-1457370199917-FFDL.jpg","duration":248,"publication_date":"2016-03-07T17:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dad-beat-dads","changefreq":"weekly","video":[{"title":"2016:E69 - Dad Beat Dads","description":"It's an all out baby brawl, a daddy destruction, a child carrying car crash, other ways to say a fight while holding a baby. Find out which dad is the best in this match up of Dad Beat Dads!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dad-beat-dads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ceea1e9-e052-4b98-a1bc-5feb2e848475/sm/2013912-1457367914441-dadbeatsdad.jpg","duration":1115,"publication_date":"2016-03-07T16:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-grab-bag-9","changefreq":"weekly","video":[{"title":"2016:E12 - Grab Bag #9","description":"Get yourself a random assortment of clips from the Achievement Hunter cutting room floor!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-grab-bag-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/079cd359-679c-4849-9dd2-0b435f30eeb9/sm/2013912-1457128209072-Grab_Bag.jpg","duration":306,"publication_date":"2016-03-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-till-death-do-us-part-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E68 - GTA V – Till Death Do Us Part (with Funhaus)","description":"Funhaus and Achievement Hunter break up into teams, and they'll play \"Till Death Do Us Part\"! If your teammate goes down, so do you!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-till-death-do-us-part-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87911be6-488c-4ecd-abd3-3641ea51219d/sm/2013912-1457147700396-GTA_V_DDUP_Thumbnail.jpg","duration":1858,"publication_date":"2016-03-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-14","changefreq":"weekly","video":[{"title":"2016:E14 - Don’t Stick Things in Things – #14","description":"The AH Crew sits down to talk about gruesome childhood stories, the recent 3DS Pokemon re-releases, Ghostbusters and more on this week's Off Topic! This episode originally aired March 4, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50cf82a3-8afa-4813-b2b3-3836c7da82bf/sm/2013912-1457146988134-OFF14_-_THUMB.jpg","duration":7182,"publication_date":"2016-03-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-poly-bridge","changefreq":"weekly","video":[{"title":"2016:E10 - Poly Bridge","description":"Joel and Adam construct a metaphor for their friendship, then, they watch as it falls over, like one of Alec’s descriptions.","player_loc":"https://roosterteeth.com/embed/how-to-2016-poly-bridge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34edf1cd-78b4-4133-ace6-8576991c5252/sm/2013912-1457110824984-HowTo_Polybridge_Thumb.jpg","duration":968,"publication_date":"2016-03-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-plants-vs-zombies-garden-warfare-2-drone-drop","changefreq":"weekly","video":[{"title":"2016:E11 - Plants Vs Zombies Garden Warfare 2 - Drone Drop","description":"Have you ever been an orange before? Pretty cool right? While you were an orange I bet you wanted to fly right? Well good news! Thanks to the patented Drone Drop method you can make any Plant or Zombie fly in Plants Vs Zombies Garden Warfare 2! Watch now to learn how!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-plants-vs-zombies-garden-warfare-2-drone-drop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0078220-aa40-48d2-a2ea-e9146c4c5137/sm/2013912-1457125789836-dronedrop_thumb.jpg","duration":211,"publication_date":"2016-03-04T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-197","changefreq":"weekly","video":[{"title":"2016:E67 - Minecraft – Episode 197 – There Is No Learning Curve 2","description":"With the \"success\" of Geoff, Ryan, and Michael it's time for Jack, Jeremy and Gavin (aka Team \"The Other Crew\") to accept the challenge of \"There Is No Learning Curve 2: Candidature Aptitude Tests\". Will they succeed or is the learning curve too steep?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-197","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6ce5092-440c-4ea8-ae18-104c23506590/sm/2013912-1457022831431-mcnlc2_thumb.jpg","duration":2181,"publication_date":"2016-03-03T16:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-blindsighted-skywalker-285","changefreq":"weekly","video":[{"title":"2016:E9 - Blindsided Skywalker – #285","description":"It's extremely fortunate Star Wars Battlefront is not an accurate depiction of the Star Wars movies. It would be really upsetting for Luke Skywalker to be exploded to death three seconds into the Battle of Hoth. Then we just wind up finding out the big twist when Darth Vader shows up at Luke's funeral. \"Luke...I am your father. Or rather, I was your father, until you went and got yourself blown up. Like a big, stupid idiot. Hooray for me, since this means I won or whatever, but damn kid. I wanted the satisfaction of cutting your hand off at least!\" The quote doesn't quite have the same ring to it.\n\n\n\nJeremy and Jack are bein' cool guys and laughing at the best fails this week had to offer. FotW Volume 285 covers fails from Star Wars Battlefront, Grand Theft Auto V, Unravel, Rainbow 6: Siege, and Alien: Isolation.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-blindsighted-skywalker-285","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e034362-96b7-4e6a-bb5a-1ea20e066063/sm/2013912-1456988693734-Fail_285_Thumb.png","duration":203,"publication_date":"2016-03-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-plants-vs-zombies-garden-warfare-2-all-gnomes-and-secret-gnome-chamber-guide","changefreq":"weekly","video":[{"title":"2016:E9 - Plants vs. Zombies Garden Warfare 2 – All Gnomes and Secret Gnome Chamber Guide","description":"After a long week of searching every Gnome in Garden Warfare 2 has been found. Join Matt as he aids you on this epic quest to find all the gnomes and solve their hidden mystery.\n\n\n\nGnome Shrine Location - 3:17\n\nZ-Tech Factory - 4:10\n\nTime Park - 4:36\n\nSandy Sands - 4:58\n\nColizeum - 5:30\n\nBoney Island - 6:02\n\nFrosty Creek - 6:28\n\nZen Peak - 6:52\n\nLunar Landing - 7:21\n\nGreat White North - 7:57\n\nZomburbia - 9:32\n\nMoon Base Z - 11:03\n\nSeeds of Time - 13:03\n\nGnome Secret Solving - 14:33","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-plants-vs-zombies-garden-warfare-2-all-gnomes-and-secret-gnome-chamber-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c717c260-7058-48c7-a87f-f97700964b58/sm/2013912-1456958667500-goldengnome_Thumb.jpg","duration":1042,"publication_date":"2016-03-02T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-move-or-die","changefreq":"weekly","video":[{"title":"2016:E66 - Move or Die","description":"It's a simple concept. You either move, or you die. But also, grab hats, paint the ground, avoid falling blocks, run a race, kill each other with chainsaws, clean up the walls, dodge, missiles, give each other the bomb, eat the candy, scare your friends, and blow them away. But maybe Ryan, Jeremy, Michael, and Gavin can handle it...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-move-or-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0debea7-3af8-4e3d-a8ed-b2687a63846f/sm/2013912-1456938304541-moveordie.jpg","duration":1204,"publication_date":"2016-03-02T16:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-tour-of-los-santos-in-minecraft","changefreq":"weekly","video":[{"title":"2016:E11 - Let's Explore: Los Santos in Minecraft","description":"The crew check out GTA V recreated in Minecraft! Thanks to N11ck for creating this awesome map. Check out his channel here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-tour-of-los-santos-in-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f29a9d5-968b-472f-92dc-51d7eb296436/sm/2013912-1456870684424-tour_thumb.jpg","duration":834,"publication_date":"2016-03-02T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-break-the-floor","changefreq":"weekly","video":[{"title":"2016:E10 - Halo 5 – Break the Floor","description":"Jeremy, Michael, and Ryan are back in Halo 5 forge, trying to stay on top of a floor that Jack and Gavin are slowly destroying. Can they survive? Ready? Set! BREAK THE FLOOR!\n\n\n\nMap designed in Halo 5 by AoM UnknownV2","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-break-the-floor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6888c9db-e39c-4371-8d96-89a6efd7e317/sm/2013912-1456849728360-bTF_thumb.jpg","duration":522,"publication_date":"2016-03-01T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-screencheat-xbox-one-edition","changefreq":"weekly","video":[{"title":"2016:E65 - Screen Cheat [Xbox One Edition]","description":"The blind are fighting the blind! Gavin, Michael, Ryan, and Jack are shooting at thin air in the Xbox One version of Screen Cheat!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-screencheat-xbox-one-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac51faf9-1569-4e1a-95f3-da9563733a36/sm/2013912-1456792651567-SCreencheat.jpg","duration":1264,"publication_date":"2016-03-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-assertive-pointing-awhu-for-february-29-th-2016-306","changefreq":"weekly","video":[{"title":"2016:E12 - Assertive Pointing – AHWU for February 29th, 2016 (#306)","description":"Jack's gallavanting around in Mickeyville, USA right now doing Lord knows what. Michael's got a severe case of the pukes. Ryan's been excommunicated from AHWU. Gavin's probably making another commercial for an airline or whatever. That just leaves Geoff to be Mr. AHWU this week. Yes, Jeremy's there too, but then who would take Jeremy's place of being the guy in the background of AHWU?\n\n\n\nCheck out the Vid of week, the Community vid, and Geoff's Favorite Let's Plays (and More!)","player_loc":"https://roosterteeth.com/embed/ahwu-2016-assertive-pointing-awhu-for-february-29-th-2016-306","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17dccd92-ddb8-488b-b1fa-9fbbfb6e7636/sm/2013912-1456792255490-AHWUpointing.jpg","duration":440,"publication_date":"2016-03-01T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-far-cry-primal-hidden-assassin-s-creed-and-ubisoft-logos-easter-egg","changefreq":"weekly","video":[{"title":"2016:E9 - Far Cry Primal – Hidden Assassin's Creed and Ubisoft Logos Easter Egg","description":"Jeremy and Geoff show you where to find hidden Assassin's Creed and Ubisoft logos in Far Cry Primal.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-far-cry-primal-hidden-assassin-s-creed-and-ubisoft-logos-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5637d76-1c44-496f-b94b-28048d5f61ca/sm/2013912-1456785348065-Thumb3.jpg","duration":193,"publication_date":"2016-02-29T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-episode","changefreq":"weekly","video":[{"title":"2016:E8 - Pokemon Red & Blue – Classic Gameboy Feature","description":"Jeremy, Matt and Kdin take a look at a cool retro feature in the new Nintendo 3Ds eShop versions of Pokemon Red and Pokemon blue! Gotta Catch 'Em All!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-episode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e94fcf49-5181-4016-a7eb-ecb4314611f9/sm/834020-1456775986664-pvzthumb_EAsteregg.jpg","duration":118,"publication_date":"2016-02-29T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-fact-check-9","changefreq":"weekly","video":[{"title":"2016:E9 - Fact Check #9","description":"Jeremy quizzes Ryan (and Geoff) in this week’s Five Facts Fact Check! Want to see more? Go watch Fact Check #8 here!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-fact-check-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8886d9e3-78ec-45f0-a740-7b4f09307b79/sm/2013912-1456775712998-FFFC9.jpg","duration":292,"publication_date":"2016-02-29T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-black-ops-3-zombies-with-noah-j456-part-2","changefreq":"weekly","video":[{"title":"2016:E64 - Black Ops 3: Zombies with NoahJ456 Attempt 2","description":"NoahJ456 stops by to help our boys be better at Zombies. Check Noah out on YouTube and Twitter\n\n\n\nNoahJ456 is ready for another attempt at carrying Jeremy, Jack, and Gavin through Black Ops 3 Zombires: Der Eisendrachen. Carrying them in one of those little baby pouches people use for babies sometimes. Although in this case, it's three little baby pouches. Noah's got Gavin on his front, Jack on his back, and Jeremy on his head, probably.\n\n\n\nWill Super Dad Noah be able to help our boys face off against their greatest foe yet: The Iron Kite? Only one way to find out (Hint hint: It's by watching the video. You should probably do that).","player_loc":"https://roosterteeth.com/embed/lets-play-2016-black-ops-3-zombies-with-noah-j456-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a4b788-a916-49ec-8d2f-77cdddb7b315/sm/2013912-1456774155882-zombies_thunb.jpg","duration":2341,"publication_date":"2016-02-29T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-6","changefreq":"weekly","video":[{"title":"2016:E63 - Let's Watch – The Witness Part 2","description":"Ryan is back, walking through the puzzle-filled world of The Witness. Jack, Jeremy, and Geoff are also there to make his life miserable.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6a66ad3-828e-47d2-a5b1-57bbeb86fe36/sm/2013912-1456516402969-rewitnessed.jpg","duration":1937,"publication_date":"2016-02-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-gta-v-yacht-party","changefreq":"weekly","video":[{"title":"2016:E62 - GTA V – Yacht Party","description":"After many weeks of moonlighting as a pool boy, Geoff finally saved up enough money for a yacht! Good thing his trusty co-workers don't know where he keeps the keys... YACHT PARTY! Literally everyone but Geoff is here to check out the GTA 5 Yacht DLC and throw a rager on deck!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-gta-v-yacht-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4303dc5f-5f86-4d09-a8b2-4e3ff42c52a1/sm/2013912-1456641700128-GTA_V_Yacht_Thumbnail.jpg","duration":2643,"publication_date":"2016-02-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-13","changefreq":"weekly","video":[{"title":"2016:E13 - You’ve Aged Like a Heroin Addict – #13","description":"The AH Crew sits down to talk about PrEP, Chinese Movie Racism, the oddly pagan Jägermeister logo, and more on this week's Off Topic!\n\nThis episode originally aired February 26, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9afe667f-8caf-4402-bce3-635322cb613f/sm/2013912-1456587613794-OFF13_-_THUMB.jpg","duration":5427,"publication_date":"2016-02-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-far-cry-primal","changefreq":"weekly","video":[{"title":"2016:E9 - Far Cry Primal","description":"Joel and Adam make fire. Then throw fire at lake. Fire gone. Joel cold. Joel starve.","player_loc":"https://roosterteeth.com/embed/how-to-2016-far-cry-primal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f840767-5b1b-4ccd-ad4e-4eecd8c6ffaa/sm/2013912-1456518358409-HowTo_FarCryPrimal_ThumbFInal.jpg","duration":831,"publication_date":"2016-02-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-star-wars-and-2001-a-space-odyssey-easter-eggs","changefreq":"weekly","video":[{"title":"2016:E7 - Plants vs. Zombies Garden Warfare 2 – Star Wars and 2001 A Space Odyssey Easter Eggs","description":"The world of Garden Warfare 2 is one that's very similar to our own. So similar in fact they even have some of the same movie quotes as our world. Matt and Trevor show you where to find a few of those.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-star-wars-and-2001-a-space-odyssey-easter-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af11bb54-4663-46ea-b0e1-140a15a53022/sm/2013912-1456516064781-pvzthumb_STARWARS2001so.jpg","duration":115,"publication_date":"2016-02-26T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-call-of-duty-black-ops-3-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2016:E6 - Call of Duty Black Ops 3 – Achievement Hunter Vs The World","description":"Achievement Hunter has trained tirelessly for this never-ending war with the world. Each battle takes it's toll but we grow stronger for it. Will this battle be the one to end the war? Hell no, but it'll still be awesome.","player_loc":"https://roosterteeth.com/embed/vs-2016-call-of-duty-black-ops-3-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e74ae08-cacd-4e6a-a1d1-88f9eb761b37/sm/2013912-1456515962727-AH_VS_TW_thumb.jpg","duration":1366,"publication_date":"2016-02-26T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-two-secret-rooms-and-70-000-coins","changefreq":"weekly","video":[{"title":"2016:E6 - Plants vs. Zombies Garden Warfare 2 – Two Secret Rooms and 70,000 Coins","description":"When waging a brutal war against vegetables it's important to hide all of your valuables so the enemy can't find them. Matt and Trevor show you where some of those secret caches are in Plants vs. Zombies Garden Warfare 2. Don't spend it all in one place!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-two-secret-rooms-and-70-000-coins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a0db384-ac7d-44e6-a612-215b6eefc643/sm/2013912-1456441234272-pvzthumb_EAsteregg.jpg","duration":193,"publication_date":"2016-02-25T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-5","changefreq":"weekly","video":[{"title":"2016:E61 - Let's Watch – The Walking Dead: Michonne – Part 1","description":"Geoff was walking through the forest with his pet zombies, Jeremy, Michael, and Ryan. They reeked of death, but he didn't care much. They were keeping him safe. He hadn't seen another living human for three OHSHITSPOOKYJUMPSCARE! A zombie shambled out from behind a tree. How did it get past the zombie pets? Who knows, but it did! The zombie put its rotting hands all over Geoff and leaned its head in, ready to take a bite. \n\n\n\nBut this is Telltale's Walking Dead we're talking about. The world slowed down, giving Geoff ample time to react. He reached for his machete. A giant blue X appeared in front of him. X! X X X X X X X! Geoff hacked at the zombie, slicing its arms clean off. X X X X X X! Geoff took the blade and shoved it straight through its skull. \n\n\n\n\"Holy dicks! That was crazy!\" Geoff shouted. \"Guys! Did you see that? I'm fucking awesome!\" \n\n\nHe looked over to his buddies. He remembered they were all zombies, and completely unable to appreciate his badassitude. Oh well. That's just the way things were in The Walking Deadville.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b677355e-3004-4b9d-b77b-6ebb3a68ee26/sm/2013912-1456430238452-Michonne.jpg","duration":3996,"publication_date":"2016-02-25T21:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-196-1-8-8-appreciation-part-3","changefreq":"weekly","video":[{"title":"2016:E60 - Minecraft – Episode 196 – 1.8.8 Appreciation Part 3","description":"\"Appreciation\" at this point may be a bit of an exaggeration, but we're cerntain you'll all appreciate the massive amount of the patented Achievement Hunter brand VINEGAR that's spread throughout this episode!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-196-1-8-8-appreciation-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/854fd83f-8e8a-47f1-bf7c-ade9a59eae44/sm/2013912-1456431209856-mc188_thumb.jpg","duration":3063,"publication_date":"2016-02-25T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-far-cry-primal-flintstones-car-easter-egg","changefreq":"weekly","video":[{"title":"2016:E5 - Far Cry Primal – Flintstones Car Easter Egg","description":"Jeremy and Geoff show you where the car from the Flintstones lost control and careened into a lake. Poor, poor Fred.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-far-cry-primal-flintstones-car-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ffe1dde-eeb5-47af-a48e-f4da7fd7692b/sm/2013912-1456430036255-Thumb2.jpg","duration":110,"publication_date":"2016-02-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-marvel-avengers-academy-pt-2","changefreq":"weekly","video":[{"title":"2016:E59 - Marvel Avengers Academy Part 2 – The Rooster Teeth Podcast Crew","description":"Thanks to Marvel and TinyCo for sponsoring this video! Download the game here: https://goo.gl/QtIr7I || Hawkeye Gus is back for another exciting trip to the Avengers Academy. Rather than having Bucky Risinger by his side, he has a new strapping young lad in the form of Jordan. It would have been great to take Jordan's name and mix it together with the name of Hawkeye's sidekick, but at least from what can be gathered from a quick Wikipedia seach, Hawkeye never had a sidekick. We could always steal one of Captain America's sidekicks. That dude had like...five sidekicks. And of those sidekicks, Demolition Man is by far the coolest-sounding name. \n\n\n\n\nHawkeye Gus is here with Demolition Cwierz for another exciting trip to the Avengers Academy. No, seriously! Hawkeye Gus. Gus is Hawkeye in this game. Suck it, Jeremy Renner.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-marvel-avengers-academy-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c613a522-e38d-4b7b-b775-e55da4651e8e/sm/2013912-1456428059042-AvengersAcademyPt2Thumb.png","duration":1045,"publication_date":"2016-02-25T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-human-speed-bump-284","changefreq":"weekly","video":[{"title":"2016:E8 - Human Speed Bump – #284","description":"Highways are fucking dangerous. Did you know that more highway accidents happen on highways than on streets or in bodies of water? It's true. We need to make our highways safe...for America, and freedom, and all those other things we like. We're gonna put speed bumps on all of America's highways to make our country safe. To make our country great again, dammit! \n\nMichael and Jeremy take you on a romp through this fail in Grand Theft Auto V, plus a fun little pile of other fails in Far Cry 4, Halo 5, Batman: Arkham Knight, and Halo: The Master Chief Collection.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-human-speed-bump-284","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3626436c-bbb8-441f-810a-8492c3888ae4/sm/2013912-1456416885686-Fail_284_Thumb.png","duration":171,"publication_date":"2016-02-25T16:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-indiana-jones-easter-egg","changefreq":"weekly","video":[{"title":"2016:E4 - Plants vs. Zombies Garden Warfare 2 – Indiana Jones Easter Egg","description":"Being as brave as Harrison Ford has never been easier now that you can do it in Plants vs. Zombies Garden Warfare 2. Don't believe us? Matt and Trevor will show you just how easy it is with this Indiana Jones Easter Egg.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-plants-vs-zombies-garden-warfare-2-indiana-jones-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7497da13-dbbf-493d-a812-dca987bad4e5/sm/1104396-1456367416406-easteregg2.jpg","duration":118,"publication_date":"2016-02-25T02:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-hitman-part-2","changefreq":"weekly","video":[{"title":"2016:E58 - Hitman BETA Part 2","description":"Michael grabs the controller, and in an effort to impress his mother, decides to go on a murder spree in the Hitman Beta!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-hitman-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22d16b0c-5c6d-4cf3-9bac-b9ea29d593fe/sm/2013912-1456331662623-hitman2.jpg","duration":1639,"publication_date":"2016-02-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-there-s-poop-in-my-soup","changefreq":"weekly","video":[{"title":"2016:E5 - There's Poop in My Soup","description":"Oh my god. He shit everywhere. There's shit everywhere! DAMN IT! They shit on the people! Oh my god! The streets are full of shit! They shit on everything!","player_loc":"https://roosterteeth.com/embed/play-pals-2016-there-s-poop-in-my-soup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eec95f27-9e3c-4d5d-9c4a-ddbb7c683ade/sm/2013912-1456263116297-poop_thumb.jpg","duration":648,"publication_date":"2016-02-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-plants-vs-zombies-garden-warfare-2-secret-ribbit-head-unlock-quest","changefreq":"weekly","video":[{"title":"2016:E8 - Plants vs. Zombies Garden Warfare 2 – Secret Ribbit Head Unlock Quest","description":"Plants vs. Zombies Garden Warfare 2 is full of hidden secrets. Matt and Kdin help you find one of the fishier ones. That joke will make more sense once you watch the video.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-plants-vs-zombies-garden-warfare-2-secret-ribbit-head-unlock-quest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a258b579-5ecc-4a01-a708-e1b7c86f464c/sm/2013912-1456284111511-pvz_thumb.jpg","duration":306,"publication_date":"2016-02-24T03:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-far-cry-primal-blood-dragon-easter-egg","changefreq":"weekly","video":[{"title":"2016:E3 - Far Cry Primal – Blood Dragon Easter Egg","description":"Jeremy and Geoff are here to show you where to find a hidden blood dragon skeleton in Far Cry Primal.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-far-cry-primal-blood-dragon-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ac90a5c-40e1-4efa-9f70-2ce753b2d82d/sm/2013912-1456264163943-Thumb.jpg","duration":91,"publication_date":"2016-02-23T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-warhammer-the-end-times-vermintide-part-1","changefreq":"weekly","video":[{"title":"2016:E57 - Warhammer: The End Times – Vermintide Part 1","description":"Michael, Ryan, Jack, and Jeremy are here to extinguish the rat infestation that has overtaken the city. They are gonna need a lot of arrows... and to set the difficulty to medium.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-warhammer-the-end-times-vermintide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9912ea5a-fe1b-449f-ba51-57c089577c74/sm/2013912-1456262876504-lp_vermin.jpg","duration":2247,"publication_date":"2016-02-23T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-rainbow-six-siege","changefreq":"weekly","video":[{"title":"2016:E8 - Rainbow Six: Siege","description":"Jack, Ryan, and Jeremy get together to discuss Rainbow Six: Siege in this week’s Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-rainbow-six-siege","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44bad60e-2cfe-4b18-8445-b965eb39abdc/sm/2013912-1456253531051-FFRainbowSixSiegeThumbnail.jpg","duration":202,"publication_date":"2016-02-23T18:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-plants-vs-zombies-garden-warfare-2","changefreq":"weekly","video":[{"title":"2016:E56 - Plants vs. Zombies: Garden Warfare 2","description":"Plants vs. Zombies: Garden Warfare 2 gameplay with your very own Jack, Michael, Ryan, and Jeremy!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-plants-vs-zombies-garden-warfare-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c739ad3d-a7d4-4134-a5b5-dcf1484a9f32/sm/2013912-1456182928279-Garden_Warfare_2_Thumbnail.jpg","duration":1230,"publication_date":"2016-02-23T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-chuckin-stuff-ahwu-for-february-22-nd-2016-305","changefreq":"weekly","video":[{"title":"2016:E11 - Chuckin' Stuff – AHWU for February 22nd, 2016 (#305)","description":"The Achievement Hunter men are chuckin' away lots of stuff this week. Pillows. Pillows potentially filled with rocks. Reese's Pieces. Tootise Rolls. Their chances of ever getting a job at any other company...\n\n\n\nClick to watch the Vid of the Week and the Community Vid!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-chuckin-stuff-ahwu-for-february-22-nd-2016-305","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e74bb998-1cb9-4f88-b233-4beb076cd6b9/sm/2013912-1456180417366-ahwuuuu.jpg","duration":438,"publication_date":"2016-02-22T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-134-ryan-vs-matt","changefreq":"weekly","video":[{"title":"2016:E5 - Episode 134: Ryan vs. Matt","description":"Matt takes a walk outside and suddenly he thinks he's the hero this office needs, but not the one it deserves. Except the Green Arrow version of that.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-134-ryan-vs-matt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3112df64-645d-4ae6-bba0-b6ee3c1b0f14/sm/2013912-1456161367012-versus_archery_thumb.jpg","duration":673,"publication_date":"2016-02-22T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-new-arrivals-great-levels-in-gaming","changefreq":"weekly","video":[{"title":"2016:E9 - New Arrivals – Great Levels in Gaming","description":"In this entry of Great Levels in Gaming, join Max as he learns about the dangers of deep-space mining in Dead Space. How much do you think it costs to get insurance that covers space zombie infestations?","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-new-arrivals-great-levels-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd6b67fa-b89b-43d4-ab7f-4b168682cc80/sm/2013912-1455905762757-DeadSpaceThumbnail.jpg","duration":776,"publication_date":"2016-02-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-black-ops-3-zombies-with-noah-j456-part-1","changefreq":"weekly","video":[{"title":"2016:E55 - Black Ops 3: Zombies with NoahJ456 Part 1","description":"NoahJ456 stops by to help our boys be better at Zombies. || Check Noah out on Youtube and Twitter!\n\n\n\nAll hope seemed lost. Geoff was at his wit's end. Jeremy kept downing nog, but then downing himself. Jack could barely even hold a gun. They needed a savior. They needed a hero. \n\nThey needed someone who actually know what the hell to do. \n\nLuckily for them, NoahJ456 was right around the corner - almost literally around the corner, since he was also in Austin. Suddently, Call of Duty Zombies became new and fresh and WHOA! Holy canoli! There's dragons in here? Crazy fire bows? Big Daddies? What is this nonsense?","player_loc":"https://roosterteeth.com/embed/lets-play-2016-black-ops-3-zombies-with-noah-j456-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73be1ef5-3b0e-428c-88cd-03e1cf9443a8/sm/2013912-1455927852267-noahj_thumb.jpg","duration":1957,"publication_date":"2016-02-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-every-bullet-counts-2","changefreq":"weekly","video":[{"title":"2016:E54 - GTA V – Every Bullet Counts 2","description":"Tonight, in GTA V: Jack shoots a gun, Ryan sees a man, and Geoff yells some words! The gents jump back into Every Bullet Counts in GTA 5 online!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-every-bullet-counts-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48184eb3-3534-43d7-af07-52372ee2e6ae/sm/2013912-1455928070698-Every_Bullet_Counts_2_Thumb.jpg","duration":1752,"publication_date":"2016-02-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-12","changefreq":"weekly","video":[{"title":"2016:E12 - Diet Coke and Commitment – #12","description":"The AH Crew sits down to talk about Tasing, Relationships, Breast Milk, and more on this week's Off Topic!\n\n\n\nThis episode originally aired February 19, 2016 and is sponsored by Audible (http://adbl.co/1buvQXD) and Marvel Avengers Academy (https://goo.gl/QtIr7I)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbd5127e-f05b-497b-8401-4815402d5fe3/sm/2013912-1455918305057-Off_Topic_Podcast_12.jpg","duration":6548,"publication_date":"2016-02-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-xcom-2","changefreq":"weekly","video":[{"title":"2016:E8 - XCOM 2","description":"Joel and Adam take cover and discuss the finer points of cranial destruction. Also XCOM 2 is really fucking hard. Look at this shit. Thank god you can re-load your save. Fuck.","player_loc":"https://roosterteeth.com/embed/how-to-2016-xcom-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df4de2a6-3761-4887-a257-156723926f6e/sm/2013912-1455919793656-HowTo_Xcom2_Thumb.jpg","duration":653,"publication_date":"2016-02-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2016-get-abducted-100","changefreq":"weekly","video":[{"title":"2016:E2 - Get Abducted! – #100","description":"Sometimes finding friends in space is hard. That's why so many Aliens started the abducting trend. Everyone is your friend if you have a spaceship, tractor beam, and crazy purple knockout gas. This week Achievement Hunter makes a whole new set of friends. Wait, did that come out wrong?","player_loc":"https://roosterteeth.com/embed/go-2016-get-abducted-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a1f1744-9ffb-4993-b67e-6450c885677a/sm/2013912-1455926379920-go100_thumb.jpg","duration":970,"publication_date":"2016-02-20T00:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2016-still-a-show-off","changefreq":"weekly","video":[{"title":"2016:E2 - Rocket League [Kinda] HUNT – Jack vs. Michael (Still A Show-Off)","description":"Jack and Michael kinda sorta play HUNT in Rocket League, but mostly kinda sorta make an achievement guide for “Still a Show Off.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2016-still-a-show-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df44f8c6-3280-44b2-8137-f2d7f9411f1b/sm/2013912-1455913301758-huntthumb.jpg","duration":111,"publication_date":"2016-02-19T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-4","changefreq":"weekly","video":[{"title":"2016:E53 - Let's Watch – Layers of Fear + Unboxing","description":"Hate unboxings? Skip to 5:57 to go straight to the Let's Play. Love unboxings? Then watch the unboxing, silly!\n\n\n\nFear, much an ogre, has layers. Spooky jumpscares. Men in the shadows with really big knives. Psychological terror. Sexy ghosts. Keep peeling that fear onion, and you may find blood that isn't yours. Razor blades in your Halloween candy. A friendly old man with two suspiciously sharp teeth. \n\n\n\nToday, Geoff's going to become well-acquainted with these layers. Jack, Jeremy, and Gavin, all watching nearby. Clawing, ripping, biting, decimating, obliterating, thrashing, lashing, gnashing piece by piece at the onion-ogre that is the Layers of Fear.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbce50b3-28fa-4795-9ba2-bda8d5e4e33f/sm/2013912-1455898293478-paintingversion_lof_thumb.jpg","duration":2174,"publication_date":"2016-02-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-195-1-8-8-appreciation-part-2","changefreq":"weekly","video":[{"title":"2016:E52 - Minecraft – Episode 195 – 1.8.8 Appreciation Part 2","description":"2, 4, 6, 1.8.8, what do we appreciate? MINECRAFT!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-195-1-8-8-appreciation-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6ca4d1d-6fc2-4d4e-8fbd-10f47b53b651/sm/2013912-1455825551648-Minecraft_thumb.jpg","duration":2105,"publication_date":"2016-02-18T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-3","changefreq":"weekly","video":[{"title":"2016:E51 - Let's Watch – Just Cause 3 – Sky Fortress","description":"Do you want to fly? Have you ever wanted to shoot blue rockets from your back? Does having a gun mounted on your shoulder make you feel tingly? Is mentioning wall jumps even more oddly specific? Well have we got just the!-[dial tone] Just Cause 3 is kicking it up with the new Air Expansion Pass! This time, it goes to 11.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/823c8ff9-f934-4d80-b7b4-7eeaff3e26fa/sm/2013912-1455753253457-JC3_Air_Land_Sea_DLC_Thumbnail.jpg","duration":2226,"publication_date":"2016-02-18T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-et-go-nope-283","changefreq":"weekly","video":[{"title":"2016:E7 - ET Go... Nope – #283","description":"How did E.T. become such a cultural phenomenon? He's a weird lookin' alien with a creepy-ass finger (and no, not a creepy ass-finger). But I guess when you design a theme park ride around the little scamp, the general populace is tricked into loving it. \"Looky there, Eustice. E.T. has his own theme park ride. He must be a beloved icon of American cinema. Let's buy little Suzie a little E.T. to throw in her bicycle basket. Then all the kids at school will know she's so gosh dang cool.\" And now that he's so much a part of our culture that now he's even in Grand Theft Auto V. Maybe as a weak failure, but he's most certainly there. \n\n\n\nWeak? Fail? Oh hey! It's another episode of Fails of the Weak. Jack and Ryan are here to bring you all sorts of crazy video game happenings in Halo 5, Grand Theft Auto V, Rainbow 6: Siege, and Halo: The Master Chief Collection.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-et-go-nope-283","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/338e2e79-63a4-4171-92ac-88d4c3faa469/sm/2013912-1455763158113-Fail_283_Thumb_v003.png","duration":158,"publication_date":"2016-02-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-dying-light-the-following-dlc","changefreq":"weekly","video":[{"title":"2016:E50 - Dying Light The Following DLC","description":"Achievement Hunter is making the zombie apocalypse fun again, even if they never mastered driving around in a buggy.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-dying-light-the-following-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b20ec538-d56d-4958-a724-bbf373f61a48/sm/2013912-1455737497356-dyinglight_thumb.jpg","duration":1995,"publication_date":"2016-02-17T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-bro-fist-46","changefreq":"weekly","video":[{"title":"2016:E4 - Bro Fist Simulator","description":"Nothing like fisting your bro.\n\n\n\nBro Fist Simulator on Steam Greenlight: https://steamcommunity.com/sharedfiles/filedetails...","player_loc":"https://roosterteeth.com/embed/play-pals-2016-bro-fist-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6876dc9a-eb0d-426e-9444-350d2858f9c0/sm/2013912-1455737226221-playpals_brofist_thumb.jpg","duration":730,"publication_date":"2016-02-17T19:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-far-cry-primal","changefreq":"weekly","video":[{"title":"2016:E49 - Far Cry Primal","description":"Thanks to Ubisoft for sponsoring this video! http://bit.ly/1PDDqVd ESRB rating: M","player_loc":"https://roosterteeth.com/embed/lets-play-2016-far-cry-primal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f671462b-815a-4fe0-a6f7-df511894932a/sm/2013912-1455575717328-farcry_primal_thumb.jpg","duration":2498,"publication_date":"2016-02-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-flapjack-frenzy","changefreq":"weekly","video":[{"title":"2016:E9 - Halo 5 – Flapjack Frenzy","description":"The introduction of Halo 5 has caused an influx of creativity. No one knew what to expect. But one man broke out from the crowd and screamed one word into the heavens. A word that silenced the rest of the planet, making them freeze in wonder and amazement. That one word... was pancakes...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-flapjack-frenzy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52dd977d-1a6c-4a4f-a88f-0788d7560018/sm/2013912-1455573977742-flapjackfrenzy.jpg","duration":435,"publication_date":"2016-02-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-hitman-beta","changefreq":"weekly","video":[{"title":"2016:E48 - Hitman BETA","description":"Gavin & Ryan combine their efforts to become the perfect Hitman while Jack, Michael, and Michael's Mother Denise encourage EXTREME violence!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-hitman-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eac5cd9d-05cb-4887-a398-905906bf93b9/sm/2013912-1455577825097-hitman_thumb.jpg","duration":2968,"publication_date":"2016-02-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-lazer-team-screening-intros-for-ahwu-304","changefreq":"weekly","video":[{"title":"2016:E10 - Lazer Team Screening Intros For AHWU 304","description":"Damn! We keep getting so many AHWU intros from all these Lazer Team screenings that we have to put them in a special video. Three weeks in a row now. Seriously. You guys are pretty incredible.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-lazer-team-screening-intros-for-ahwu-304","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef332497-9e96-48f1-9a84-1de16c9b0428/sm/2013912-1455577298567-ahwu_extra_thumb.jpg","duration":117,"publication_date":"2016-02-15T23:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-304","changefreq":"weekly","video":[{"title":"2016:E9 - Dick in the Mouth - AHWU for February 15, 2016 (#304)","description":"This is the closest we're getting to AHWU - Valentine's Day 2016 Edition. That means oodles and oodles of wieners everywhere. Flying through the air. All over the floor. All up in Geoff's mouthspace. Gavin literally chokes on one in this episode. If that's not a Valentine's gift, I don't know what is. \n\n\n\nWatch the Vid of the Week and the Community Vid!\n\n\n\nWatch more Lazer Team AHWU intros here!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-304","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c27a3ee1-b18a-4df8-9877-78d1eed9ba43/sm/2013912-1455577192092-AHWU_thumb.jpg","duration":414,"publication_date":"2016-02-15T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-no-stone-unturned-achievement-part-2","changefreq":"weekly","video":[{"title":"2016:E7 - Unravel - No Stone Unturned Achievement Part 2","description":"Jeremy shows you all the collectible secrets in Unravel.\n\n\n\nSpecific Levels:\n\n\n\nHow Much is Enough?\nSecret 1: 00:20\nSecret 2: 00:59\nSecret 3: 01:32\nSecret 4: 02:20\nSecret 5: 03:05\n\n\n\nThe Letter\nSecret 1: 03:38\nSecret 2: 05:13\nSecret 3: 06:06\nSecret 4: 06:48\nSecret 5: 07:10\n\n\n\nWinter Sun\nSecret 1: 07:39\nSecret 2: 08:03\nSecret 3: 08:31\nSecret 4: 09:02\nSecret 5: 09:24\n\n\n\nRust\nSecret 1: 10:30\nSecret 2: 11:14\nSecret 3: 11:26\nSecret 4: 12:08\nSecret 5: 13:10\n\n\n\nRenewed\nSecret 1: 13:34\nSecret 2: 14:23\nSecret 3: 14:57\nSecret 4: 15:36\nSecret 5: 15:54","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-no-stone-unturned-achievement-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ce670b7-0d1a-4eed-b7f9-d27341762494/sm/2013912-1455559525906-Thumbnail2.jpg","duration":1008,"publication_date":"2016-02-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-no-stone-unturned-achievement-part-1","changefreq":"weekly","video":[{"title":"2016:E6 - Unravel - No Stone Unturned Achievement Part 1","description":"Jeremy shows you all the collectible secrets in Unravel.\n\n\n\nSpecific Levels:\n\n\n\nThistle and Weeds\nSecret 1: 00:20\nSecret 2: 00:45\nSecret 3: 01:19\nSecret 4: 01:58\nSecret 5: 02:37\n\n\n\nThe Sea\nSecret 1: 03:14\nSecret 2: 03:44\nSecret 3: 04:16\nSecret 4: 05:03\nSecret 5: 05:35\n\n\n\nBerry Mire\nSecret 1: 06:27\nSecret 2: 07:11\nSecret 3: 07:29\nSecret 4: 08:35\nSecret 5: 09:37\n\n\n\nMountain Trek\nSecret 1: 10:01\nSecret 2: 10:21\nSecret 3: 10:59\nSecret 4: 11:43\nSecret 5: 13:00\n\n\n\nOff the Rails\nSecret 1: 13:27\nSecret 2: 13:56\nSecret 3: 14:20\nSecret 4: 14:45\nSecret 5: 15:09\n\n\n\nDown in a Hole\nSecret 1: 15:50\nSecret 2: 16:32\nSecret 3: 17:07\nSecret 4: 17:43\nSecret 5: 18:06","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-no-stone-unturned-achievement-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b36cb86-d27d-43d8-9106-dc060d789780/sm/2013912-1455557186115-Thumbnail1.jpg","duration":1214,"publication_date":"2016-02-15T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-five-facts-at-freddy-s-part-2","changefreq":"weekly","video":[{"title":"2016:E7 - Five Facts at Freddy's Part 2","description":"Gavin and Michael (and friends) are back in the control room for Five Facts at Freddy’s Part 2! Haven’t seen part one? Here you go!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-five-facts-at-freddy-s-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13835781-9a11-49c3-b406-3e6a91812aed/sm/2013912-1455555554396-looop.jpg","duration":248,"publication_date":"2016-02-15T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016-2","changefreq":"weekly","video":[{"title":"2016:E47 - Let's Watch - Slime Rancher","description":"Six o' five am - Farmer Ryan wakes up, unusually late for a farmer of his caliber. Takes a shower. Puts on his ranchin' pants. Grabs his sucky-blowy gun and heads outside. He checks on the crop. No plorts? Of course not. Farmer Ryan hasn't taken the time to shoot carrots into the mouths of his imprisoned slime at 60 miles per hour. Or feed the poops of exotic slime to his little pinkies so they make exotic poops too. \n\n\n\nFarmer Ryan is a good farmer, no doubt about it. But Farmer Ryan certainly doesn't understand farming. Maybe one day, but certainly not today. Maybe Geoff, Michael, and Jeremy can explain the life and times of Farmer Ryan?\n\n\n\nNo. Clearly not.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a75aae31-e7ad-45f9-977f-702f542ad0e3/sm/2013912-1455316703388-slime_rancher.jpg","duration":1675,"publication_date":"2016-02-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2016-99","changefreq":"weekly","video":[{"title":"2016:E1 - DECAPITATION! - #99","description":"Everyone has to use their heads to figure out the best way to cut the heads off of other people, 3 times.","player_loc":"https://roosterteeth.com/embed/go-2016-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f55e6249-0d0e-4abe-a5c8-6e3b29aaab4d/sm/2013912-1455342507741-go_dec.jpg","duration":552,"publication_date":"2016-02-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-offense-defense-with-funhaus","changefreq":"weekly","video":[{"title":"2016:E46 - GTA V - Offense Defense with Funhaus (#4)","description":"Guess who just got back today. Them wild-eyed boys that had been away. Haven't changed that much to say. But man, I still think them cats are crazy. The boys are back in town so we smash 'em up a bit in Offense Defense!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-offense-defense-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/504d5a56-d25b-4bbc-b3bc-fe7891c74b9e/sm/2013912-1455296510337-Offense_Defense_Funhaus_Thumbnail.jpg","duration":2067,"publication_date":"2016-02-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-11","changefreq":"weekly","video":[{"title":"2016:E11 - You’re All My Slaves Now - #11","description":"Join Michael Jones, Lindsay Jones, Gavin Free, and Ryan Haywood as they talk cannibalistic rabbits, racist history teachers, absorbing your twin in the womb and more on this edition of Off Topic! This episode originally aired on February 12, 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf890f30-3231-4e89-b61b-4484e624c458/sm/2013912-1455319530686-Off_Topic_Podcast_11.jpg","duration":7091,"publication_date":"2016-02-13T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-besiege","changefreq":"weekly","video":[{"title":"2016:E7 - Besiege","description":"So Joel was like “HEY CORPSE FORMERLY KNOWN AS ALEC. Australia was great. You should really get out and see the world some time. Ha, ha just kidding. Keep editing.” If it keeps breaking don’t fix it. That’s advice Adam and Joel take to heart as they make greatest instruments of war the world has ever known. I’ll just keep editing away with the 7 fingers I have left because that’s the kind of man I was.","player_loc":"https://roosterteeth.com/embed/how-to-2016-besiege","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30f220f5-e09d-421c-a425-2560132fdda2/sm/2013912-1455305789717-HowTo_Besiege_Thumb.jpg","duration":612,"publication_date":"2016-02-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-5-podracing","changefreq":"weekly","video":[{"title":"2016:E8 - Halo 5 - Podracing","description":"Thought there was enough cool things to do in Halo 5 Forge Mode? Well you were wrong! You can make podraces, race them, and also... SAND PEOPLE!!!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-5-podracing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86351da3-6120-4380-949a-e370c63096da/sm/2013912-1455226027383-podracing_thumb.jpg","duration":501,"publication_date":"2016-02-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-snowfall-achievement","changefreq":"weekly","video":[{"title":"2016:E5 - Unravel - Snowfall Achievement","description":"Matt guides you through getting the Snowfall achievement in Unravel. There's a lot of tricky branches so be sure to watch closely.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-snowfall-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5be1cda4-3b7c-42e2-b83f-be0c26d84bdd/sm/2013912-1455234122502-snowfall_thumb.jpg","duration":179,"publication_date":"2016-02-12T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-obsessive-and-reckless-achievements","changefreq":"weekly","video":[{"title":"2016:E4 - Unravel - Obsessive and Reckless Achievements","description":"Matt shows you how to get the Obsessive and Reckless achievements in Unravel. Don't obsess too much and it'll be a breeze.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-obsessive-and-reckless-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acf3d40a-ff28-471c-8cca-cafb0c767fb5/sm/2013912-1455233833622-rcklessobssive_thumb.jpg","duration":174,"publication_date":"2016-02-12T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-get-a-clew-and-pathfinder-achievements","changefreq":"weekly","video":[{"title":"2016:E3 - Unravel - Get a Clew and Pathfinder Achievements","description":"Matt shows you how to get the \"Get a Clew\" and \"Pathfinder\" achievements in Unravel. Forge your own way and you will have no trouble. Unless your own way is wrong or something like that.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-get-a-clew-and-pathfinder-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de1ba23e-30a5-49f6-b7fc-e49323508dd4/sm/2013912-1455233454881-getacalewpathfinder_thumb.jpg","duration":220,"publication_date":"2016-02-12T00:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-dig-where-you-stand-and-undaunted-achievements","changefreq":"weekly","video":[{"title":"2016:E2 - Unravel - Dig Where you Stand and Undaunted Achievements","description":"Matt shows you how to get the \"Dig Where you Stand\" and Undaunted\" achievements in Unravel. Digging yourself into a hole here will actually help surprisingly enough.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-dig-where-you-stand-and-undaunted-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/786c9706-1926-4422-b1ed-cb3bd60826b7/sm/2013912-1455232906657-Undaunted_dwus_thumb.jpg","duration":179,"publication_date":"2016-02-11T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2016-unravel-gardener-and-eagle-eye-achievements","changefreq":"weekly","video":[{"title":"2016:E1 - Unravel - Gardener and Eagle Eye Achievements","description":"Matt helps you grab the Gardener and Eagle Eye achievements in Unravel. STAY VIGILANT, and you'll have no trouble.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2016-unravel-gardener-and-eagle-eye-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22da8a3b-ce24-46e5-8b33-a266c6a8c3b3/sm/2013912-1455232434272-Eagle_Eye_Gardener.jpg","duration":216,"publication_date":"2016-02-11T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2016-linea","changefreq":"weekly","video":[{"title":"2016:E1 - Linea","description":"Don't call it a comeback! Don't. He'll find you. And yell at you.","player_loc":"https://roosterteeth.com/embed/rage-quit-2016-linea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d5b7477-dff2-4bae-93c0-1b3d722ba710/sm/2013912-1455224675668-RQthumb.jpg","duration":561,"publication_date":"2016-02-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-play-marvel-avengers-academy-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2016:E45 - Marvel Avengers Academy - The Rooster Teeth Podcast Crew","description":"Thanks to Marvel and TinyCo for sponsoring this video! Download the game here: https://goo.gl/QtIr7I \n\nAvengers...assemble...for selfie time! Gus and Jon take a look at the Avengers in their college years, talk about how goofy comics are, and fend off Hydra Bullies. Also, that Hawkeye chap sounds an awful lot like Gus.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-play-marvel-avengers-academy-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b07e4866-895c-4747-8d67-06463c855b0c/sm/2013912-1455210338211-AvengersAcademyThumb.png","duration":1120,"publication_date":"2016-02-11T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-going-boneless-282","changefreq":"weekly","video":[{"title":"2016:E6 - Going Boneless - #282","description":"You think you're getting a fails of the weak, but this is a PSA, dammit. You ever want to know why you need to drink you milk? This Fails of the Weak is why you need to drink your milk. Calcium deficiency is a serious, serious problem. If you get lucky, your bones hollow out and you start flying around like a cute little birdie, except horrifying because you're human-sized and also not a bird. Worst case scenario, your bones just poof right into dust. \n\nJack and Jeremy are are giving you a lovely dose of fails commentary, checking out Battlefield 4, Destiny, Battlefield Hardline, Halo 5, and Grand Theft Auto V. Same as every week: you guys failed pretty hard, yo.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-going-boneless-282","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7d02c25-87dd-4575-b939-93dde3cbfd67/sm/2013912-1455155072068-Fails_282_Thumb.png","duration":169,"publication_date":"2016-02-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-194","changefreq":"weekly","video":[{"title":"2016:E44 - Minecraft - Episode 194 - 1.8.8 Appreciation","description":"Fresh from the adventure, it's time to really appreciate what the 1.8.8 Update in Minecraft has given us! Sponges, Guardians, Puke Dirt...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-194","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/526a42c0-e3c0-4113-af2d-468ae19c6aa1/sm/2013912-1455146456777-mc_188app_thumb.jpg","duration":2735,"publication_date":"2016-02-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-133-gavin-vs-ryan","changefreq":"weekly","video":[{"title":"2016:E4 - Episode 133: Gavin vs. Ryan","description":"Gavin jets into the past when he challenges Ryan to an action packed game of Jetpac! I used the words \"jets\" and \"packed\" in that last sentence. Get it? Jetpac? You got it.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-133-gavin-vs-ryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddb4f4e8-03a2-44c4-a725-6f5d63c87cdf/sm/2013912-1455121069159-Versus_thumb.jpg","duration":539,"publication_date":"2016-02-10T16:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-fortified-part-1","changefreq":"weekly","video":[{"title":"2016:E43 - Fortified Part 1","description":"Time to fortify. Why do I say that? Because it's time to play Fortified! Ryan, Jack, Jeremy, and Michael team up to save the Earth from invading Martian robots. How can they possibly win? Rocket troopers, my friends. Many, many, rocket troopers!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-fortified-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59d64326-4c71-4449-96f1-cdc6ef41c33b/sm/2013912-1455058542232-f_thumb.jpg","duration":2167,"publication_date":"2016-02-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-grab-bag-episode-8","changefreq":"weekly","video":[{"title":"2016:E8 - Grab Bag #8","description":"Feeling empty? Let down? Something missing in your life? Well get ready to slam your wallet down and buy yourself another dose of Grab Bag. You know there's Achievement Hunter content missing from your life. Let's Plays less played. Well now you can fix all that with Grab Bag #8. Grab Bag #8 fills in all the empty nooks in your heart, as long as your heart is made up of equal parts Grand Theft Auto, Shenaniversus, and London's very own LeBron James! Thanks to Grab Bag #8, now you too can live a meaningful, fulfilling life full of all the things you once felt missing.\n\n\n\nWarning: May cause drowsiness, dizziness, spastic spasms, nausea, heartburn, indigestion, painful flaming eyebrows, sudden pregnancy, longingness for more Achievement Hunter content, confusion, delusion, ability to fusion, loss of mobility, motorcycles, ability to communicate with ants, gradual pregnancy, and desire to be cradled in Jack Pattillo's loving arms.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-grab-bag-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad0b329a-76ad-4f4e-8a38-644a4e7ce2af/sm/2013912-1455061888745-Grabbagthumb.jpg","duration":336,"publication_date":"2016-02-09T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-pocket-mortys","changefreq":"weekly","video":[{"title":"2016:E42 - Pocket Play","description":"Grab your portal gun, Morty Manipulator chips, and a flask full of scotch whiskey as Michael, Jack, and Jeremy traverse the multiverse of Rick & Morty!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-pocket-mortys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e8dc54-2297-43b3-941f-6d761bbfa700/sm/2013912-1454954909880-lw_pm_thumb.jpg","duration":1586,"publication_date":"2016-02-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-lazer-team-screening-intros-for-ahwu-303","changefreq":"weekly","video":[{"title":"2016:E8 - Lazer Team Screening Intros For AHWU 303","description":"Damn! You guys sure sent in a ton of intros for AHWU 303. Just like 302, we had to take them all and put them in a special video.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-lazer-team-screening-intros-for-ahwu-303","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29bcc7bc-2d17-4460-a533-e9887f710b44/sm/2013912-1454984321417-ahwu_extra.jpg","duration":239,"publication_date":"2016-02-09T02:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-all-wrapped-up-ahwu-for-february-8-th-2016-303","changefreq":"weekly","video":[{"title":"2016:E7 - All Wrapped Up - AHWU for February 8th, 2016 (#303)","description":"Bubble bubble - that wrap is trouble\n\nWhen in Gav's hand, leave on the double\n\nOr else you'll end up clinged to Jack\n\nAnd preferrably, you'd rather hack\n\noff your own leg than stay right there\n\nAs you and Jack become a pair\n\nSkin cells growing, quick combining \n\nBut maybe there's a silver lining\n\nDo you know any twins - conjoined\n\nWho have been smart and jointly coined\n\nA co-op vibe to rake in views\n\nAnd end up on the nightly news?\n\nSo maybe it would not be bad\n\nIf that were now the life you had\n\nWrap me now! Let two be one\n\nAs Jack and I have co-op fun\n\n\n\nVid of the Week \n\nCommunity vid #1 and vid #2\n\n\n\nWatch MORE Lazer Team AHWU intros here!","player_loc":"https://roosterteeth.com/embed/ahwu-2016-all-wrapped-up-ahwu-for-february-8-th-2016-303","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9defc07-2ae9-45ca-8437-d04eb69a858b/sm/2013912-1454984189575-AHWU_thumb.jpg","duration":370,"publication_date":"2016-02-09T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-valiant-hearts-war-is-puzzling","changefreq":"weekly","video":[{"title":"2015:E2 - Valiant Hearts: War is Puzzling","description":"Join us for Rooster Teeth's gaming book club originally aired on March 25, 2015. This week we played Valiant Hearts. (http://bit.ly/1xmG2DI).","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-valiant-hearts-war-is-puzzling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f50e130d-1d73-4c10-a4fb-675819d31b9f/sm/ep10696.jpg","duration":1298,"publication_date":"2015-04-24T15:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-game-club-season-1-hatoful-boyfriend-pigeon-dating-sim-and-murder-mystery","changefreq":"weekly","video":[{"title":"2015:E1 - Hatoful Boyfriend: Pigeon Dating Sim AND Murder Mystery!","description":"Join us for Rooster Teeth's gaming book club originally aired on March 18, 2015. This week we played Hatoful Boyfriend (http://bit.ly/1zv8Mpv).","player_loc":"https://roosterteeth.com/embed/the-patch-game-club-season-1-hatoful-boyfriend-pigeon-dating-sim-and-murder-mystery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5df7c3a-54d2-40fa-9756-162e05642aee/sm/ep10695.jpg","duration":1097,"publication_date":"2015-04-24T15:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-17","changefreq":"weekly","video":[{"title":"2015:E101 - The Patch #101","description":"The Patch Discusses GTA V Superpowers Mod and Star Wars Battlefronts","player_loc":"https://roosterteeth.com/embed/the-patch-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3724,"publication_date":"2015-04-23T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-16","changefreq":"weekly","video":[{"title":"2015:E100 - The Patch #100","description":"The Patch Discusses Mortal Kombat X and Halo Online","player_loc":"https://roosterteeth.com/embed/the-patch-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3647,"publication_date":"2015-04-16T20:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-15","changefreq":"weekly","video":[{"title":"2015:E99 - The Patch #99","description":"The Patch Discusses ARGs","player_loc":"https://roosterteeth.com/embed/the-patch-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3755,"publication_date":"2015-04-09T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-14","changefreq":"weekly","video":[{"title":"2015:E98 - The Patch #98","description":"The Patch Discusses Games Allegedly","player_loc":"https://roosterteeth.com/embed/the-patch-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3675,"publication_date":"2015-04-02T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-13","changefreq":"weekly","video":[{"title":"2015:E97 - The Patch #97","description":"The Patch Discusses Hideo Kojima","player_loc":"https://roosterteeth.com/embed/the-patch-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3723,"publication_date":"2015-03-27T00:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1","changefreq":"weekly","video":[{"title":"2015-2016:E24 - Paul Feig, Rose Byrne, and Bobby Cannavale Talk Spy","description":"Director Paul Feig and Spy stars Rose Byrne and Bobby Cannavale joined Rooster Teeth to chat about their upcoming movie Spy and doing their own stunts during SXSW. Coming Soon: More Spy with Jason Statham and Melissa McCarthy!","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8346a927-081b-44bd-b419-6cd4a2207221/sm/ep10546.jpg","duration":636,"publication_date":"2015-03-20T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-12","changefreq":"weekly","video":[{"title":"2015:E96 - The Patch #96","description":"The Patch Discusses Battlefield Hardline","player_loc":"https://roosterteeth.com/embed/the-patch-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3668,"publication_date":"2015-03-19T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-11","changefreq":"weekly","video":[{"title":"2015:E95 - The Patch #95","description":"The Patch Discusses Helldiver and Ori and the Blind Forest.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3685,"publication_date":"2015-03-13T01:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-10","changefreq":"weekly","video":[{"title":"2015:E94 - The Patch #94","description":"The Patch Discusses Vive, Morpheus, and GDC.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3784,"publication_date":"2015-03-06T00:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-9","changefreq":"weekly","video":[{"title":"2015:E93 - The Patch #93","description":"The Patch Discusses HD Remakes","player_loc":"https://roosterteeth.com/embed/the-patch-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3748,"publication_date":"2015-02-26T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-8","changefreq":"weekly","video":[{"title":"2015:E92 - The Patch #92","description":"The Patch Talks The New 3DS.","player_loc":"https://roosterteeth.com/embed/the-patch-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3741,"publication_date":"2015-02-19T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-4","changefreq":"weekly","video":[{"title":"2015-2016:E24 - Remastering Homeworld: Episode 3","description":"The Know visited Gearbox to learn more about Homeworld Remastered Collection.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fca5a75-faeb-4a6d-aaf7-5a09a371d37b/sm/ep10416.jpg","duration":453,"publication_date":"2015-02-19T03:26:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-7","changefreq":"weekly","video":[{"title":"2015:E91 - The Patch #91","description":"The Patch Discusses Pervy Japanese Games","player_loc":"https://roosterteeth.com/embed/the-patch-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3842,"publication_date":"2015-02-13T01:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-6","changefreq":"weekly","video":[{"title":"2015:E90 - The Patch #90","description":"The Patch Discusses Nintendo News","player_loc":"https://roosterteeth.com/embed/the-patch-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":4019,"publication_date":"2015-02-05T23:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-know-specials-season-1-5","changefreq":"weekly","video":[{"title":"2015-2016:E25 - Tribute to Monty Oum","description":"We love you, Monty.","player_loc":"https://roosterteeth.com/embed/the-know-specials-season-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a56afe6b-2d4f-4f12-b829-c22122c90b0f/sm/ep10351.jpg","duration":186,"publication_date":"2015-02-04T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-5","changefreq":"weekly","video":[{"title":"2015:E89 - The Patch #89","description":"The Patch Discusses Dragon Age","player_loc":"https://roosterteeth.com/embed/the-patch-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3867,"publication_date":"2015-01-29T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-4","changefreq":"weekly","video":[{"title":"2015:E88 - The Patch #88","description":"The Patch Discusses Microsoft's Big Announcements","player_loc":"https://roosterteeth.com/embed/the-patch-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3755,"publication_date":"2015-01-22T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-3","changefreq":"weekly","video":[{"title":"2015:E87 - The Patch #87","description":"The Patch Discusses Game of the Year","player_loc":"https://roosterteeth.com/embed/the-patch-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3725,"publication_date":"2015-01-15T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015-2","changefreq":"weekly","video":[{"title":"2015:E86 - The Patch #86","description":"The Patch Discusses the Best Games of 2014","player_loc":"https://roosterteeth.com/embed/the-patch-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3739,"publication_date":"2015-01-08T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2015","changefreq":"weekly","video":[{"title":"2015:E85 - The Patch #85","description":"The Patch Discusses Fan Fest","player_loc":"https://roosterteeth.com/embed/the-patch-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3710,"publication_date":"2015-01-01T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-52","changefreq":"weekly","video":[{"title":"2014:E84 - The Patch #84","description":"The Patch Discusses Captain Toad","player_loc":"https://roosterteeth.com/embed/the-patch-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3540,"publication_date":"2014-12-25T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-51","changefreq":"weekly","video":[{"title":"2014:E83 - The Patch #83","description":"The Patch Discusses GTA Heists","player_loc":"https://roosterteeth.com/embed/the-patch-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3676,"publication_date":"2014-12-18T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-50","changefreq":"weekly","video":[{"title":"2014:E82 - The Patch #82","description":"The Patch Discusses Playstation Experience","player_loc":"https://roosterteeth.com/embed/the-patch-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3758,"publication_date":"2014-12-12T01:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-49","changefreq":"weekly","video":[{"title":"2014:E81 - The Patch #81","description":"The Patch Discusses Playstation's 20th Anniversary","player_loc":"https://roosterteeth.com/embed/the-patch-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3668,"publication_date":"2014-12-04T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-48","changefreq":"weekly","video":[{"title":"2014:E80 - The Patch #80","description":"The Patch Discusses Destiny DLC","player_loc":"https://roosterteeth.com/embed/the-patch-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3886,"publication_date":"2014-11-26T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-47","changefreq":"weekly","video":[{"title":"2014:E79 - The Patch #79","description":"Team Gents Take Over The Patch!","player_loc":"https://roosterteeth.com/embed/the-patch-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3702,"publication_date":"2014-11-21T01:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-46","changefreq":"weekly","video":[{"title":"2014:E78 - The Patch #78","description":"The Patch Discusses Blizzcon","player_loc":"https://roosterteeth.com/embed/the-patch-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3713,"publication_date":"2014-11-14T00:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-45","changefreq":"weekly","video":[{"title":"2014:E77 - The Patch #77","description":"The Patch Discusses COD Advanced Warfare","player_loc":"https://roosterteeth.com/embed/the-patch-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3633,"publication_date":"2014-11-06T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-44","changefreq":"weekly","video":[{"title":"2014:E76 - The Patch #76","description":"The Patch Discusses Expansions and Updates","player_loc":"https://roosterteeth.com/embed/the-patch-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3675,"publication_date":"2014-10-30T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-43","changefreq":"weekly","video":[{"title":"2014:E75 - The Patch #75","description":"The Patch Discusses the Master Chief Collection","player_loc":"https://roosterteeth.com/embed/the-patch-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3642,"publication_date":"2014-10-23T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-42","changefreq":"weekly","video":[{"title":"2014:E74 - The Patch #74","description":"The Patch Discusses the difference between Orcs and Uruk-Hai","player_loc":"https://roosterteeth.com/embed/the-patch-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3724,"publication_date":"2014-10-17T00:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-41","changefreq":"weekly","video":[{"title":"2014:E73 - The Patch #73","description":"The Patch Discusses Captain Toad Treasure Tracker","player_loc":"https://roosterteeth.com/embed/the-patch-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3561,"publication_date":"2014-10-09T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-40","changefreq":"weekly","video":[{"title":"2014:E72 - The Patch #72","description":"The Patch Discusses Shadow of Mordor","player_loc":"https://roosterteeth.com/embed/the-patch-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3667,"publication_date":"2014-10-02T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-39","changefreq":"weekly","video":[{"title":"2014:E71 - The Patch #71","description":"The Patch Discusses Oculus New Reveal","player_loc":"https://roosterteeth.com/embed/the-patch-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3723,"publication_date":"2014-09-25T18:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-38","changefreq":"weekly","video":[{"title":"2014:E70 - The Patch #70","description":"The Patch Discusses Destiny Raids","player_loc":"https://roosterteeth.com/embed/the-patch-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3730,"publication_date":"2014-09-18T16:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-37","changefreq":"weekly","video":[{"title":"2014:E69 - The Patch #69","description":"The Patch Discusses Net Neutrality","player_loc":"https://roosterteeth.com/embed/the-patch-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3549,"publication_date":"2014-09-11T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-36","changefreq":"weekly","video":[{"title":"2014:E68 - The Patch #68","description":"2014:E68 - The Patch #68","player_loc":"https://roosterteeth.com/embed/the-patch-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3630,"publication_date":"2014-09-04T16:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-35","changefreq":"weekly","video":[{"title":"2014:E67 - The Patch #67","description":"The Patch Discusses Swatting","player_loc":"https://roosterteeth.com/embed/the-patch-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3651,"publication_date":"2014-08-28T18:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-34","changefreq":"weekly","video":[{"title":"2014:E66 - The Patch #66","description":"The Patch Discusses Pigeon Dating","player_loc":"https://roosterteeth.com/embed/the-patch-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3694,"publication_date":"2014-08-21T18:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-33","changefreq":"weekly","video":[{"title":"2014:E65 - The Patch #65","description":"The Patch Discusses Gamescom 2014","player_loc":"https://roosterteeth.com/embed/the-patch-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3730,"publication_date":"2014-08-14T18:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-32","changefreq":"weekly","video":[{"title":"2014:E64 - The Patch #64","description":"The Patch Discusses Dragon Quest 4","player_loc":"https://roosterteeth.com/embed/the-patch-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3669,"publication_date":"2014-08-07T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-31","changefreq":"weekly","video":[{"title":"2014:E63 - The Patch #63","description":"The Patch Discusses Destiny Beta","player_loc":"https://roosterteeth.com/embed/the-patch-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3602,"publication_date":"2014-07-31T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-30","changefreq":"weekly","video":[{"title":"2014:E62 - The Patch #62","description":"The Patch Discusses The International","player_loc":"https://roosterteeth.com/embed/the-patch-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3631,"publication_date":"2014-07-24T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-29","changefreq":"weekly","video":[{"title":"2014:E61 - The Patch #61","description":"The Patch Discusses Star Citizen","player_loc":"https://roosterteeth.com/embed/the-patch-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3724,"publication_date":"2014-07-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-28","changefreq":"weekly","video":[{"title":"2014:E60 - The Patch #60","description":"The Patch Discusses RTX","player_loc":"https://roosterteeth.com/embed/the-patch-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3576,"publication_date":"2014-07-10T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-27","changefreq":"weekly","video":[{"title":"2014:E59 - The Patch #59","description":"The Patch Discusses Early Access","player_loc":"https://roosterteeth.com/embed/the-patch-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3763,"publication_date":"2014-07-03T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-26","changefreq":"weekly","video":[{"title":"2014:E58 - The Patch #58","description":"The Patch Discusses Phil Fish","player_loc":"https://roosterteeth.com/embed/the-patch-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":4187,"publication_date":"2014-06-26T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-25","changefreq":"weekly","video":[{"title":"2014:E57 - The Patch #57","description":"The Patch Discusses Alienware Alpha","player_loc":"https://roosterteeth.com/embed/the-patch-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3800,"publication_date":"2014-06-20T01:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-24","changefreq":"weekly","video":[{"title":"2014:E56 - The Patch #56","description":"The Patch Discusses E3 2014","player_loc":"https://roosterteeth.com/embed/the-patch-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3757,"publication_date":"2014-06-12T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-23","changefreq":"weekly","video":[{"title":"2014:E55 - The Patch #55","description":"The Patch Discusses Watch Dogs","player_loc":"https://roosterteeth.com/embed/the-patch-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3755,"publication_date":"2014-06-05T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-22","changefreq":"weekly","video":[{"title":"2014:E54 - The Patch #54","description":"The Patch Discusses Goat Minecraft","player_loc":"https://roosterteeth.com/embed/the-patch-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3840,"publication_date":"2014-05-29T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-21","changefreq":"weekly","video":[{"title":"2014:E53 - The Patch #53","description":"The Patch Discusses Legal Battles","player_loc":"https://roosterteeth.com/embed/the-patch-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3712,"publication_date":"2014-05-22T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-20","changefreq":"weekly","video":[{"title":"2014:E52 - The Patch #52","description":"The Patch Discusses Mario 8","player_loc":"https://roosterteeth.com/embed/the-patch-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":4450,"publication_date":"2014-05-15T21:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-19","changefreq":"weekly","video":[{"title":"2014:E51 - The Patch #51","description":"The Patch Discusses Destiny","player_loc":"https://roosterteeth.com/embed/the-patch-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3761,"publication_date":"2014-05-08T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-18","changefreq":"weekly","video":[{"title":"2014:E50 - The Patch #50","description":"The Patch Debuts A New Look!","player_loc":"https://roosterteeth.com/embed/the-patch-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3710,"publication_date":"2014-05-01T18:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-17","changefreq":"weekly","video":[{"title":"2014:E49 - The Patch #49","description":"The Patch Discusses Trials Fusion","player_loc":"https://roosterteeth.com/embed/the-patch-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3718,"publication_date":"2014-04-24T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-16","changefreq":"weekly","video":[{"title":"2014:E48 - The Patch #48","description":"The Patch Discusses The Odonell Dustup","player_loc":"https://roosterteeth.com/embed/the-patch-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3712,"publication_date":"2014-04-17T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-15","changefreq":"weekly","video":[{"title":"2014:E47 - The Patch #47","description":"The Patch Welcomes Back Jack","player_loc":"https://roosterteeth.com/embed/the-patch-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3728,"publication_date":"2014-04-10T20:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-14","changefreq":"weekly","video":[{"title":"2014:E46 - The Patch #46","description":"Patch Looks at Amazon's Controller","player_loc":"https://roosterteeth.com/embed/the-patch-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3734,"publication_date":"2014-04-03T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-13","changefreq":"weekly","video":[{"title":"2014:E45 - The Patch #45","description":"The Patch Discusses The Oculus Sale","player_loc":"https://roosterteeth.com/embed/the-patch-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3699,"publication_date":"2014-03-27T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-12","changefreq":"weekly","video":[{"title":"2014:E44 - The Patch #44","description":"The Patch Discusses Project Spark","player_loc":"https://roosterteeth.com/embed/the-patch-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3780,"publication_date":"2014-03-20T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-new-steam-controller-design-titanfall-pc-improved-by-xbox-one-a-big-rt-announcement","changefreq":"weekly","video":[{"title":"RN:E140 - New Steam Controller Design + Titanfall PC Improved By Xbox One + A Big RT Announcement","description":"Valve has revealed the new design for the Steam controller. Titanfall devs warn not to get too excited about future Titans, and share that the Xbox One version of the game helped them improve the PC version. Sucker Punch co-founder reveals that Infamous was initially an Animal Crossing type game. PlayStation Now may be a rental service. And Rooster Teeth has a big announcement about news.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-new-steam-controller-design-titanfall-pc-improved-by-xbox-one-a-big-rt-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12b9a8eb-d233-4851-93c1-bc7595c40a1a/sm/ep8888.jpg","duration":320,"publication_date":"2014-03-14T19:56:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-first-gamerscore-millionaire-titanfall-dev-hunting-cheaters-lol-player-admits-match-fixing","changefreq":"weekly","video":[{"title":"RN:E139 - First Gamerscore Millionaire + Titanfall Dev Hunting Cheaters + LoL Player Admits Match Fixing","description":"Raymond Cox has become the first gamer to earn 1,000,000 gamerscore on Xbox Live. Titanfall developers Respawn Entertainment are logging cheaters and launching Australian servers. PopCap Games hit by layoffs. League of Legends pro has attempted suicide after admitting to match fixing last year.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-first-gamerscore-millionaire-titanfall-dev-hunting-cheaters-lol-player-admits-match-fixing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7958d59-e4b4-4877-b62a-d8c430d60609/sm/ep8887.jpg","duration":286,"publication_date":"2014-03-13T19:51:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-11","changefreq":"weekly","video":[{"title":"2014:E43 - The Patch #43","description":"The Patch Discusses Game Rumors","player_loc":"https://roosterteeth.com/embed/the-patch-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3726,"publication_date":"2014-03-13T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-mirrors-edge-2s-drop-in-multiplayer-watch-dogs-beta-spotted-wildstar-dated","changefreq":"weekly","video":[{"title":"RN:E138 - Mirror's Edge 2's Drop-in Multiplayer + Watch Dogs Beta Spotted + WildStar Dated","description":"Anonymous sources have shared more details about Mirror's Edge 2. A closed beta for Watch Dogs has popped up briefly on the Xbox One marketplace. An enterprising modder has created a PC driver for the Xbox One controller. WildStar has an official release date.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-mirrors-edge-2s-drop-in-multiplayer-watch-dogs-beta-spotted-wildstar-dated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb5c7d3f-c274-4305-ab13-b05b25b9e88a/sm/ep8886.jpg","duration":215,"publication_date":"2014-03-12T19:50:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-the-witcher-3-delayed-xbox-live-unstable-hearthstone-officially-launches","changefreq":"weekly","video":[{"title":"RN:E137 - The Witcher 3 Delayed + Xbox Live Unstable + Hearthstone Officially Launches","description":"The Witcher 3 has been delayed until next year. Xbox Live is suffering instability on Xbox One and Titanfall has a day 1 title update for both PC and Xbox One. Hearthstone has exited beta and officially launched with changes to the ranking system and new golden hero cards.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-the-witcher-3-delayed-xbox-live-unstable-hearthstone-officially-launches","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c270cbce-b53c-44fc-8cfe-78827901f900/sm/ep8885.jpg","duration":251,"publication_date":"2014-03-11T19:50:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-titanfall-live-action-collaboration-new-tales-from-the-borderlands-details","changefreq":"weekly","video":[{"title":"RN:E136 - Titanfall Live Action Collaboration + New Tales From the Borderlands Details","description":"Titanfall is getting a live action collaboration from Respawn Entertainment and Playfight. Gearbox and Telltale have shared the first details about Tales from the Borderlands. The BBC has released a 30th anniversary edition of 1984's The Hitchhiker's Guide to the Galaxy. Nintendo has scheduled downtime for eShop and Pokemon.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-titanfall-live-action-collaboration-new-tales-from-the-borderlands-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0393774-794c-4d9f-8456-8285628b03b0/sm/ep8884.jpg","duration":293,"publication_date":"2014-03-10T19:51:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-no-titanfall-for-south-africa-the-last-of-us-movie-revealed-watch-dogs-multiplayer-details","changefreq":"weekly","video":[{"title":"RN:E135 - No Titanfall for South Africa + The Last Of Us Movie Revealed + Watch Dogs Multiplayer Details","description":"Titanfall won't release in South Africa because it didn't hold up well in the beta. Naughty Dog has announced a deal to bring The Last Of Us to film. Watch Dogs will have 8 player free roam multiplayer. Square Enix wants input from fans on the future of Kingdom Hearts. SCEA president Jack Tretton will step down at the end of the month.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-no-titanfall-for-south-africa-the-last-of-us-movie-revealed-watch-dogs-multiplayer-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1a51ba8-4449-44ea-b66a-50d6ef3b827a/sm/ep8883.jpg","duration":294,"publication_date":"2014-03-07T20:44:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-10","changefreq":"weekly","video":[{"title":"2014:E42 - The Patch #42","description":"The Patch Talks Titanfall","player_loc":"https://roosterteeth.com/embed/the-patch-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3775,"publication_date":"2014-03-06T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-mgs-v-too-big-to-finish-uncharted-writer-leaves-naughty-dog-xbox-one-updated","changefreq":"weekly","video":[{"title":"RN:E133 - MGS V Too Big To Finish? + Uncharted Writer Leaves Naughty Dog + Xbox One Updated","description":"Hideo Kojima defends a controversial scene in Metal Gear Solid V: Ground Zeroes. Uncharted writer and director Amy Hennig has left Naughty Dog and was reportedly forced out of the company. Microsoft has launched the Xbox One update to revamp the multiplayer and social systems.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-mgs-v-too-big-to-finish-uncharted-writer-leaves-naughty-dog-xbox-one-updated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b3fb5e7-a5f9-4f94-8c20-c75725c2dddf/sm/ep8881.jpg","duration":247,"publication_date":"2014-03-05T20:46:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-batman-arkham-knight-announced-dishonored-2-teased-ps4-passes-6-million","changefreq":"weekly","video":[{"title":"RN:E132 - Batman Arkham Knight Announced + Dishonored 2 Teased + PS4 Passes 6 Million ","description":"Rocksteady is working on Batman: Arkham Knight, the final game in the series. A leaked image has teased a Dishonored 2 sequel. Sony has announced 6 million units for PS4 and shared new ways games are adding interactivity to Twitch. The Project Spark beta hits Xbox One today and expands to 250K participants.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-batman-arkham-knight-announced-dishonored-2-teased-ps4-passes-6-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb8d7593-b1e5-4d44-9555-3baf7aa351ea/sm/ep8839.jpg","duration":304,"publication_date":"2014-03-05T02:42:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-bioware-on-next-gen-mass-effect-xbox-live-for-iosandroid-twitch-beats-pokemon","changefreq":"weekly","video":[{"title":"RN:E131 - BioWare on Next-Gen Mass Effect + Xbox Live for iOS/Android + Twitch Beats Pokemon ","description":"Twitch has successfully completed Pokemon Red and moved on to Pokemon Crystal. Nintendo has officially revealed the limited edition 3DS XL for Yoshi's New Island. Titanfall has leaked a few extra features. Microsoft wants to expand Xbox Live to iOS and Android games. BioWare is considering a next-gen remaster of the Mass Effect Trilogy.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-bioware-on-next-gen-mass-effect-xbox-live-for-iosandroid-twitch-beats-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc195d08-87b4-4b09-aa52-2eb6dbf0ebe0/sm/ep8838.jpg","duration":313,"publication_date":"2014-03-04T02:41:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-bioshock-infinites-non-lethal-challenge-cloud-backups-for-pc-games-65-new-xbox-indie-devs","changefreq":"weekly","video":[{"title":"RN:E129 - BioShock Infinite's Non-Lethal Challenge + Cloud Backups For PC Games + 65 New Xbox Indie Devs","description":"Irrational Games has announced a non-lethal, Thief-inspired 1998 mode for BioShock: Infinite's Burial At Sea Episode 2. Razer has launched a beta for a feature to automatically archive your PC save games in your cloud storage account. Microsoft announces 65 new ID@Xbox partners creating indie titles for Xbox One.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-bioshock-infinites-non-lethal-challenge-cloud-backups-for-pc-games-65-new-xbox-indie-devs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f85764f-aa9a-4eba-acfe-cd410be6ade7/sm/ep8828.jpg","duration":253,"publication_date":"2014-02-28T04:12:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-9","changefreq":"weekly","video":[{"title":"2014:E41 - The Patch #41","description":"The Patch Discusses GTA V Lawsuits","player_loc":"https://roosterteeth.com/embed/the-patch-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3782,"publication_date":"2014-02-27T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-tv-stars-gta-v-lawsuit-minecraft-passes-100-million-users-molyneux-blasts-fable-iii","changefreq":"weekly","video":[{"title":"RN:E128 - TV Star's GTA V Lawsuit + Minecraft Passes 100 Million Users + Molyneux Blasts Fable III","description":"Ex-Mob Wives star Karen Gravano has lodged a suit against GTA V developer Rockstar for ripping off her likeness... and it's not over the bikini girl! Minecraft PC has passed 100 million users. Peter Molyneux calls Fable III \"a trainwreck\" and doesn't think he'll ever make his ideal game. Some PC versions of South Park: The Stick Of Truth will be censored.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-tv-stars-gta-v-lawsuit-minecraft-passes-100-million-users-molyneux-blasts-fable-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aee34416-1c58-4ef1-b6db-907c8e373b02/sm/ep8818.jpg","duration":246,"publication_date":"2014-02-27T02:45:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-south-park-game-censored-xbox-one-gets-twitch-next-month-king-abandons-candy-tm","changefreq":"weekly","video":[{"title":"RN:E127 - South Park Game Censored + Xbox One Gets Twitch Next Month + King Abandons Candy TM ","description":"Xbox One is finally getting Twitch broadcasting next month, in time for Titanfall. Microsoft reiterates that Kinect is here to stay. Ubisoft has censored South Park The Stick Of Truth for Europe, the Middle East, and Africa. King has abandoned the US trademark for Candy.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-south-park-game-censored-xbox-one-gets-twitch-next-month-king-abandons-candy-tm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e6b65eb-34e2-45cc-ab4c-634b230911c9/sm/ep8812.jpg","duration":297,"publication_date":"2014-02-26T02:10:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-x1-titanfall-bundle-and-uk-price-drop-dayz-creator-stepping-down-no-samurai-assassins-creed","changefreq":"weekly","video":[{"title":"RN:E126 - X1 Titanfall Bundle & UK Price Drop + DayZ Creator Stepping Down + No Samurai Assassin's Creed","description":"Xbox One will come bundled with Titanfall from March 11th, and has an immediate price cut in the UK. DayZ creator Dean Hall has decided to leave Bohemia Interactive at the end of the year and step down as lead developer on DayZ Standalone. 2K says there will be new entries in the BioShock series. Naughty Dog says a sequel to The Last Of Us is 50/50. Jade Raymond says Assassin's Creed is not headed to feudal Japan.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-x1-titanfall-bundle-and-uk-price-drop-dayz-creator-stepping-down-no-samurai-assassins-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8df32dde-6950-4c28-a528-e601bdbcce69/sm/ep8806.jpg","duration":264,"publication_date":"2014-02-25T01:54:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-new-tony-hawk-game-no-pvz-garden-warfare-microtransactions-ps4-sold-out-for-months","changefreq":"weekly","video":[{"title":"RN:E125 - New Tony Hawk Game + No PvZ: Garden Warfare Microtransactions + PS4 Sold Out For Months","description":"Tony Hawk has revealed that he's working on a new skateboarding game. Plants vs Zombies won't have microtransactions... at launch. The studio will consider adding them later. PS4 has launched in Japan and Sony believes it will be hard to find for several more months. Rumor has it Sony will unveil their PS4 VR headset at the Game Developers Conference next month... but even if they don't, VR will make a GDC appearance with Oculus Rift.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-new-tony-hawk-game-no-pvz-garden-warfare-microtransactions-ps4-sold-out-for-months","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d41caa-4f6a-4871-bdc2-c35f72d9d819/sm/ep8801.jpg","duration":266,"publication_date":"2014-02-21T17:31:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-8","changefreq":"weekly","video":[{"title":"2014:E40 - The Patch #40","description":"The Patch Discusses New Donkey Kong","player_loc":"https://roosterteeth.com/embed/the-patch-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3706,"publication_date":"2014-02-20T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-steam-region-locks-games-retroactively-interactive-daylight-scares-xbox-update-preview","changefreq":"weekly","video":[{"title":"RN:E124 - Steam Region Locks Games Retroactively + Interactive Daylight Scares + Xbox Update Preview","description":"Steam has retroactively added region locks to several games, making them unplayable for Steam users who traded across regions. Daylight has added Twitch interactive support, letting viewers add extra scares for streamers. Microsoft has sent out invitations to preview the next Xbox One update, which revamps the console's social features, and officially revealed the Xbox One Media Remote.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-steam-region-locks-games-retroactively-interactive-daylight-scares-xbox-update-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c493621e-e834-45a8-9d2a-8700570c20eb/sm/ep8800.jpg","duration":244,"publication_date":"2014-02-20T17:28:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-mini-games-coming-to-minecraft-doom-beta-with-wolfenstein-final-fantasy-not-ready-for-pc","changefreq":"weekly","video":[{"title":"RN:E123 - Mini Games Coming To Minecraft + DOOM Beta With Wolfenstein + Final Fantasy Not Ready For PC ","description":"Bethesda has announced that DOOM 4 has been renamed to DOOM and beta access will be included with Wolfenstein: The New Order, which also has a new release date. Mini games are coming to Minecraft Realms in the 1.7.5 version update. Final Fantasy studio Square-Enix is interested in releasing Final Fantasy on PC, but they're not ready to do it quite yet. Final Fantasy XIV: A Realm Reborn is kicking off a beta on PS4 later this week.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-mini-games-coming-to-minecraft-doom-beta-with-wolfenstein-final-fantasy-not-ready-for-pc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6970884-ea53-40c2-b220-f24f8c401a65/sm/ep8796.jpg","duration":260,"publication_date":"2014-02-19T23:36:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-bioshock-studio-shutting-down-valve-doesnt-care-about-your-porn-the-order-1886-details","changefreq":"weekly","video":[{"title":"RN:E122 - BioShock Studio Shutting Down + Valve Doesn't Care About Your Porn + The Order: 1886 Details","description":"The studio behind BioShock and BioShock Infinite, Irrational Games, is shutting down as we know it and laying off nearly all its staff as Ken Levine refocuses on a different type of game. PS4 has sold 5.3 million units worldwide. A new system update for PS4 adds support for wireless stereo headsets. Ready At Dawn has revealed new gameplay details for PS4 exclusive The Order: 1886. Valve's Gabe Newell explains how VAC works and why cheaters don't want you to trust it.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-bioshock-studio-shutting-down-valve-doesnt-care-about-your-porn-the-order-1886-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bef04f9b-b5ab-4ea1-96fc-999ea2f4e833/sm/ep8782.jpg","duration":311,"publication_date":"2014-02-19T01:34:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-no-borderlands-3-for-now-master-chief-on-halo-rumors-ff-tactics-creators-unsung-story","changefreq":"weekly","video":[{"title":"RN:E120 - No Borderlands 3... For Now + Master Chief On Halo Rumors + FF Tactics Creator's Unsung Story","description":"Final Fantasy Tactics creator Yasumi Matsuno has successfully kickstarted Unsung Story: Tale of the Guardians, a spiritual successor to his earlier tactical RPGs. Gearbox chief Randy Pitchford says the studio isn't working on Borderlands 3 and they don't know when they might consider it, but they are working on 2 new IPs. Master Chief voice actor Steve Downes has reignited rumors that Halo 2 Anniversary will come this year, and that Halo 5 won't come until 2015. Plus, the RT Staff offer their recommendations for the best games to play with your life co-op buddy. Or a regular buddy.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-no-borderlands-3-for-now-master-chief-on-halo-rumors-ff-tactics-creators-unsung-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c74afbd-c02e-4ddc-a152-d86cb73a155f/sm/ep8780.jpg","duration":398,"publication_date":"2014-02-14T23:33:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-koopalings-and-mario-kart-8-release-date-new-3ds-pokemon-game-xbox-one-controller-changes","changefreq":"weekly","video":[{"title":"RN:E119 - Koopalings & Mario Kart 8 Release Date + New 3DS Pokemon Game + Xbox One Controller Changes","description":"Nintendo has outlined their spring line up of games for Wii U and 3DS, including Pokemon Battle Trozei and a release date for Mario Kart 8. Microsoft is updating the Xbox One controller at the request of Titanfall developer Respawn.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-koopalings-and-mario-kart-8-release-date-new-3ds-pokemon-game-xbox-one-controller-changes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e94d949f-ef06-4491-a0cf-1b3ee36aaf45/sm/ep8779.jpg","duration":340,"publication_date":"2014-02-13T23:29:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-7","changefreq":"weekly","video":[{"title":"2014:E39 - The Patch #39","description":"The Patch Discusses Free Game Biz","player_loc":"https://roosterteeth.com/embed/the-patch-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":4004,"publication_date":"2014-02-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-infamous-second-son-details-decide-double-fines-next-game-myst-gets-3d-update","changefreq":"weekly","video":[{"title":"RN:E118 - InFAMOUS Second Son Details + Decide Double Fine's Next Game + Myst Gets 3D Update","description":"Infamous Second Son comes out next month and more details have been revealed by Sucker Punch about the morality system and Delsin's conduit abilities. Cyan has released realMyst: Masterpiece Edition in fully exporable 3D with new day and night cycles. Double Fine is taking audience votes on which games they should prototype for their Amnesia Fortnight Event.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-infamous-second-son-details-decide-double-fines-next-game-myst-gets-3d-update","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a111a67-ee91-4fe0-80f0-85eedd88cc56/sm/ep8760.jpg","duration":291,"publication_date":"2014-02-13T00:10:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-titanfall-beta-sign-ups-open-xbox-update-delayed-batman-arkham-devs-ignore-bugs","changefreq":"weekly","video":[{"title":"RN:E117 - Titanfall Beta Sign-Ups Open + Xbox Update Delayed + Batman Arkham Devs Ignore Bugs ","description":"Microsoft has announced that today's Xbox One update has been delayed until later in the week, and detailed the major March update. An Xbox One stereo headset is coming next month. Sign-ups have opened for the Titanfall beta for Xbox One and PC. Warner Bros Games has announced they have no further plans for updates to fix Batman Arkham Origin bugs because they're working on DLC instead. Sony has confirmed that the new slim PS Vita will release in North America this spring.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-titanfall-beta-sign-ups-open-xbox-update-delayed-batman-arkham-devs-ignore-bugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aca9db7-0344-4f73-ab23-98571b27e926/sm/ep8752.jpg","duration":289,"publication_date":"2014-02-12T03:34:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-watch-dogs-release-details-investors-pressure-ms-to-axe-xbox-yoshis-le-3ds-xl-revealed","changefreq":"weekly","video":[{"title":"RN:E116 - Watch Dogs Release Details + Investors Pressure MS To Axe Xbox + Yoshi's LE 3DS XL Revealed","description":"Ubisoft has shared new details on when Watch Dogs will see release, including bad news for Wii U. An online retailer has revealed a limited edition 3DS XLbundle for Yoshi's New Island. With a new CEO, Microsoft investors have renewed pressure for the company to shed consumer-facing divisions like Xbox. Phil Spencer reveals some of the first ID@Xbox games for March. Twitch has announced that it now has 1 million monthly broadcasters. Flappy Bird creator Dong Nguyen has removed the game from app stores.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-watch-dogs-release-details-investors-pressure-ms-to-axe-xbox-yoshis-le-3ds-xl-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ac1a6bc-8951-4673-87c1-94e1833417f7/sm/ep8747.jpg","duration":369,"publication_date":"2014-02-11T02:09:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-sledgehammer-making-next-call-of-duty-naughty-dog-considering-the-last-of-us-sequel","changefreq":"weekly","video":[{"title":"RN:E115 - Sledgehammer Making Next Call Of Duty + Naughty Dog Considering The Last Of Us Sequel ","description":"Activision has announced that Sledgehammer Games will become a third Call of Duty studio. Destiny is expected to be a billion dollar franchise. Naughty Dog is considering a sequel to The Last Of Us. A german court has thrown out a suit against Valve over digital purchases.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-sledgehammer-making-next-call-of-duty-naughty-dog-considering-the-last-of-us-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/075bb0b0-63fa-4322-a8de-f71aa62b7f33/sm/ep8742.jpg","duration":280,"publication_date":"2014-02-08T04:06:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-sonic-boom-announced-xbox-360-titanfall-delayed-flappy-bird-makes-50kday","changefreq":"weekly","video":[{"title":"RN:E114 - Sonic Boom Announced + Xbox 360 Titanfall Delayed + Flappy Bird Makes $50K/Day ","description":"SEGA has announced a new Sonic Boom game for Nintendo's 3DS and Wii U in conjunction with the tv series and a massive merchandising push. Titanfall's beta will not be open, and the Xbox 360 verion has been delayed. Ubisoft has successfully recovered the trademark for Watch Dogs. Flappy Bird makes $50K/day for its developer, even though it's free.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-sonic-boom-announced-xbox-360-titanfall-delayed-flappy-bird-makes-50kday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4194f453-a918-453d-b280-8b0a7a7d89ae/sm/ep8736.jpg","duration":295,"publication_date":"2014-02-07T03:34:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-6","changefreq":"weekly","video":[{"title":"2014:E38 - The Patch #38","description":"The Patch Discusses The Eve Battle","player_loc":"https://roosterteeth.com/embed/the-patch-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3957,"publication_date":"2014-02-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-major-updates-for-xbox-one-pokemon-bank-back-for-us-burial-at-sea-2-dated","changefreq":"weekly","video":[{"title":"RN:E113 - Major Updates For Xbox One + Pokemon Bank Back for US + Burial At Sea 2 Dated ","description":"Xbox One has release dates for 2 system updates and will get a major revision in time for Titanfall. Plus, last week's leaks are looking more credible. Starbound's final gameplay will get an overhaul from the different version, with tiered progression and a PvP endgame. BioShock Infinite: Burial At Sea episode 2 has a release date and Ken Levine teases appearances by major BioShock characters. Pokemon Bank has released in North America so everyone can just settle down now.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-major-updates-for-xbox-one-pokemon-bank-back-for-us-burial-at-sea-2-dated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05b53905-f779-4455-9278-009e541a7fb1/sm/ep8735.jpg","duration":289,"publication_date":"2014-02-06T03:29:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-pokemon-bank-is-back-in-europe-thief-is-gold-burial-at-sea-ep-2-is-6-hours","changefreq":"weekly","video":[{"title":"RN:E112 - Pokemon Bank Is Back...In Europe + Thief Is Gold + Burial at Sea Ep 2 Is 6 Hours ","description":"Pokemon Bank is back in the eshop for Europe, Australia, and New Zealand, but a North American rerelase hasn't been dated. Thief has gone gold and is ready for its Feb 25th release. Murdered: Soul Suspect has been confirmed for Xbox One and PS4. Ken Levine says BioShock: Infinite's Burial At Sea Episode 2 DLC will take 5-6 hours to complete.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-pokemon-bank-is-back-in-europe-thief-is-gold-burial-at-sea-ep-2-is-6-hours","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b5499c4-2773-460b-a5a2-e73388a261fa/sm/ep8727.jpg","duration":252,"publication_date":"2014-02-05T02:34:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-ubisoft-loses-watch-dogs-trademark-sonic-for-next-gen-minecraft-passes-35-million","changefreq":"weekly","video":[{"title":"RN:E111 - Ubisoft Loses Watch Dogs Trademark + Sonic For Next Gen + Minecraft Passes 35 Million","description":"The trademark for Watch Dogs has been abandoned, but Ubisoft claims it's a mistake. Respawn has announced that the Titanfall beta will not require pre-orders to participate. A poster at the Nuremburg Toy Fair claims a next-gen Sonic title will be coming in 2015. Sony is releasing a PS4 firmware update to add 7.1 surround headset support and have announced a new wireless headset. Minecraft has passed 14 million copies on PC, putting all versions over 35 million.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-ubisoft-loses-watch-dogs-trademark-sonic-for-next-gen-minecraft-passes-35-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04581bb3-f05b-43e3-96a7-b1fd1724834b/sm/ep8722.jpg","duration":291,"publication_date":"2014-02-04T01:09:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-cheaper-xbox-one-coming-no-co-op-for-shadow-of-mordor-killer-instinct-punishes-quitters","changefreq":"weekly","video":[{"title":"RN:E110 - Cheaper Xbox One Coming + No Co-op for Shadow of Mordor + Killer Instinct Punishes Quitters ","description":"Microsoft is on the hunt for their Xbox One info leak, but another source has confirmed that a cheaper Xbox One is coming. Middle-Earth: Shadow of Mordor developers Monolith have confirmed the game will have no co-op or multiplayer. Killer Instinct is getting an update that punishes those who disconnect from ranked matches. The UK is getting PS Vita Slim and Sony has announced PS Plus subscriptions have tripled.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-cheaper-xbox-one-coming-no-co-op-for-shadow-of-mordor-killer-instinct-punishes-quitters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8320d6b8-caac-4100-8bb5-623421c96b8a/sm/ep8718.jpg","duration":278,"publication_date":"2014-02-01T02:59:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-nintendos-bold-new-plan-halo-2-anniversary-leaked-halo-5-delayed","changefreq":"weekly","video":[{"title":"RN:E109 - Nintendo's Bold New Plan + Halo 2 Anniversary Leaked + Halo 5 Delayed","description":"Nintendo has outlined their new strategy, including more games that make use of Wii U's gamepad and unique features and a move into fitness entertainment. Microsoft has sprung a leak that claims Halo 5 is delayed and Halo 2 Anniversary will release this year, with release windows for Sunset Overdrive, Forza Horizon, and Quantum Break. Plus, the leak reveals new Xbox One hardware.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-nintendos-bold-new-plan-halo-2-anniversary-leaked-halo-5-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cca0795e-4119-4ace-b82a-f94877398491/sm/ep8711.jpg","duration":287,"publication_date":"2014-01-31T14:42:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-5","changefreq":"weekly","video":[{"title":"2014:E37 - The Patch #37","description":"The Patch Discusses Big Gaming Moments","player_loc":"https://roosterteeth.com/embed/the-patch-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3894,"publication_date":"2014-01-30T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-elder-scrolls-onlines-ce-exclusive-race-ps-now-invites-sent-nintendo-pres-takes-paycut","changefreq":"weekly","video":[{"title":"RN:E108 - Elder Scrolls Online's CE Exclusive Race + PS Now Invites Sent + Nintendo Pres Takes Paycut","description":"Bethesda has announced a collector's edition for The Elder Scrolls Online, with an exclusive playable race. A PS Plus subscription will not be required for ESO play on PS4. Sony has sent out invitations for the PlayStation Now beta. Nintendo president Satoru Iwata will take a 50% paycut, and the company will buy back 8% of stock for $1.2 billion.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-elder-scrolls-onlines-ce-exclusive-race-ps-now-invites-sent-nintendo-pres-takes-paycut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f1fc1e0-7573-4844-92c4-33b929772a20/sm/ep8709.jpg","duration":279,"publication_date":"2014-01-29T15:50:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-stage-5-facility-tour","changefreq":"weekly","video":[{"title":"S6:E8 - Stage 5 Facility Tour","description":"Come join us as we take a tour of the brand new Rooster Teeth Studios!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-stage-5-facility-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b8c6b72-8a8f-49fd-998e-fee7df93ba1b/sm/ep10669.jpg","duration":231,"publication_date":"2015-04-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-14","changefreq":"weekly","video":[{"title":"2015:E14 - Top Down, Shirts Off","description":"The guys have a friendly race to get ice cream in the frigid cold.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/732b0c38-d50e-4d0a-a0fd-3ba23da90211/sm/ep10662.jpg","duration":162,"publication_date":"2015-04-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-13","changefreq":"weekly","video":[{"title":"2015:E13 - Facebox - Ray Narvaez Jr.","description":"Our animator, Shane Newville, brings you the best of Ray.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a53ab6a1-b87f-4356-818b-27ee35eac565/sm/ep10660.jpg","duration":114,"publication_date":"2015-04-17T12:45:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-13","changefreq":"weekly","video":[{"title":"2015:E20 - Burnie Gets Busted","description":"Technology betrays Burnie when it rats him out after he watches some adult-themed media.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cc1b98a-7dbf-4d34-ab23-a304c22c621d/sm/ep10648.jpg","duration":91,"publication_date":"2015-04-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-319","changefreq":"weekly","video":[{"title":"2015:E319 - RT Podcast #319","description":"RT Discusses Blood Oaths","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-319","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5816,"publication_date":"2015-04-14T23:37:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-sponsorcast-with-joel-matt-gus-and-burnie","changefreq":"weekly","video":[{"title":"S2:E246 - The SponsorCast with Joel, Matt, Gus and Burnie","description":"The guys discuss some of their favorite movies and a bunch of other stuff that has nothing to do with the title of the podcast.\r\n\r\nThanks to KiplingDash for making this week's thumbnail. Fan-shops also provided by: JuMoraf, abcsmarty, CharlotteJR, Chaxle, daltonforest, DoogieJT, HgMercury, JuMoraf, siggma373, xen0,Ember\r\nCory0the0gr8, abcsmarty, TopherBeadle, KrisWould, lasthunter","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-sponsorcast-with-joel-matt-gus-and-burnie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed4de280-56e6-46bf-bb85-a666ed4ef031/sm/ep10637.jpg","duration":2079,"publication_date":"2015-04-12T22:33:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-3","changefreq":"weekly","video":[{"title":"S13:E3 - Episode 3: What's Yours is Ours","description":"Church and Carolina take an interest in Chorus' more eye-catching artifacts.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a8ddcda-138e-4ddc-8729-5b3f4f00da10/sm/ep10634.jpg","duration":400,"publication_date":"2015-04-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-shaft-shots-bloopers","changefreq":"weekly","video":[{"title":"S6:E5 - Shaft Shots! Bloopers","description":"Watch the behind the scenes outtakes and funny moments from Shaft Shots! Watch Shaft Shots here: http://bit.ly/1I5BMMj || RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1OWSBLe","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-shaft-shots-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/824d079f-f472-413e-b26d-1f40f4c2a215/sm/ep10635.jpg","duration":117,"publication_date":"2015-04-11T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-9","changefreq":"weekly","video":[{"title":"2015:E7 - Scousers - #18","description":"Throughout the years Gavin has taught Geoff a fair amount of British lingo. He once told Geoff that people from Liverpool are called Scousers. Turns out Geoff's memory isn't that great. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1OWSBLe","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04bdc3bf-4cbb-453f-8cfc-bf3d1f919bbd/sm/ep10632.jpg","duration":294,"publication_date":"2015-04-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-7","changefreq":"weekly","video":[{"title":"LP:E7 - Gavin vs. Shelving - Let's Play Minimations #7","description":"Achievement Hunter takes on their ancient nemesis, gravity, as Gavin fights a bookshelf, Ryan parachutes, and Geoff jumps around, jumps around, gets up, gets up and gets down. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1OWSBLe","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5f92558-4df3-4ea2-86bb-ab88f538d70c/sm/ep10621.jpg","duration":106,"publication_date":"2015-04-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-318","changefreq":"weekly","video":[{"title":"2015:E318 - RT Podcast #318","description":"RT discusses weird dreams.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-318","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6301,"publication_date":"2015-04-08T00:08:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-sponsorcast-with-joel-chris-barbara-and-jon","changefreq":"weekly","video":[{"title":"S2:E245 - The SponsorCast with Joel, Chris, Barbara and Jon","description":"Thanks to KiplingDash for making this week's thumbnail. Fan-shops also provided by:\r\nABYISZ \r\ncoradarcy\r\nDomBailey\r\nDrewByrne\r\nDuckOwnage\r\ngjaken05 \r\njacquelin825 \r\nMaple5ever\r\nMissNatsu \r\nmitchilynn \r\nOrangehead \r\nRekkiton \r\nrexoo9 \r\nSailorGirl81\r\nstringuy1 \r\ntulipbean\r\nClumsey \r\nCryptMomochi \r\nEmber\r\nFantaBoi36\r\njacquelin825\r\njkire \r\nKeanu\r\nWassupImDave \r\nHgMercury\r\nSuexliegh\r\nxyameax","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-sponsorcast-with-joel-chris-barbara-and-jon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/035a9e60-6ee1-4748-beec-d07a58d3297e/sm/ep10611.jpg","duration":1565,"publication_date":"2015-04-06T00:20:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-2","changefreq":"weekly","video":[{"title":"S13:E2 - Episode 2: Capital Assets","description":"Grif searches for Kimball in the crowded city of Armonia, showing off just how much life has changed on Chorus since the civil war ended.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfa39842-943e-49ea-9207-e71efe9544d2/sm/ep10610.jpg","duration":491,"publication_date":"2015-04-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-8","changefreq":"weekly","video":[{"title":"2015:E8 - Barbara Gets Dressed","description":"Barbara is tasked with putting on 45 Rooster Teeth Shirts... for some reason.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ec1cdaa-733b-4eff-9df7-fbf36e8cfd4e/sm/ep10607.jpg","duration":112,"publication_date":"2015-04-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-11","changefreq":"weekly","video":[{"title":"2015:E19 - Poopy Pants Miles","description":"Miles gets sick in London, which leads to an unfortunate incident involving his pants. You'll never guess what. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1OWSBLe","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9ebb9d8-42af-477a-b9a2-c9e2fe0ae9c7/sm/ep10592.jpg","duration":145,"publication_date":"2015-04-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-317","changefreq":"weekly","video":[{"title":"2015:E317 - RT Podcast #317","description":"RT Discusses Staff Badges","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-317","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6237,"publication_date":"2015-03-31T23:29:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-shaft-shots-the-dick-pic-app","changefreq":"weekly","video":[{"title":"S6:E3 - Shaft Shots! The Dick Pic App","description":"Introducing the first mobile dick pic app! Customize and create the perfect shot she'll never forget with Shaft Shots! Available in the android store here: http://bit.ly/ShaftShots || RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1OWSBLe","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-shaft-shots-the-dick-pic-app","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59330267-e070-4d4a-a515-5ca60e849cb6/sm/ep10590.jpg","duration":133,"publication_date":"2015-03-31T23:28:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-13-episode-1","changefreq":"weekly","video":[{"title":"S13:E1 - Episode 1: Prologue","description":"S13:E1 - Episode 1: Prologue","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-13-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/326d6256-a080-491d-b9ff-8d8ad5627f34/sm/ep10588.jpg","duration":726,"publication_date":"2015-03-31T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-sponsorcast-with-gus-matt-joel-and-geoff","changefreq":"weekly","video":[{"title":"S2:E244 - The SponsorCast with Gus, Matt, Joel and Geoff","description":"The guys tell stories of the good and the bad from the last 10 years of Rooster Teeth Parties.\r\n\r\nThanks to Matty for this episode's Thumbnail!\r\n\r\nThis also features FanShoping from:\r\n\r\nemilylewis\t\r\nCryptMomochi\r\nLevius\r\nmskatlyn\r\nDomBailey\r\nOrangehead \r\nLiamAllan\r\nFormidable\r\nClumsey\r\nAndyUltimate\r\nEricMatthewR\r\nZyzil\r\nJelliPanda\r\nBTW_Max\r\nCharlotteJR\r\nDoogieJT\r\nGeniRiley\r\nArkenTooth\r\nKiplingDash\r\nlaureny8man\r\nEmber\r\nHumbleBear2\\\r\nJoron093\r\nAndyUltimate\r\nlaureny8man\r\nTomScherrer\r\nSailorGirl81\r\nrexoo9\r\nsmilesarah\r\nSmalls2233\r\nMatthewLyons","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-sponsorcast-with-gus-matt-joel-and-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe7f1dd8-0882-4f81-b0e5-8ff6701a1c8b/sm/ep10581.jpg","duration":1723,"publication_date":"2015-03-29T19:36:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-smite-live-stream","changefreq":"weekly","video":[{"title":"S2:E243 - Smite: Live Stream","description":"Featuring Barbara, Chris, Brandon, Blaine, Jon, Jordan and Cole!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-smite-live-stream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e91d0752-61ad-42a5-9c85-6d4d246da36d/sm/ep10579.jpg","duration":4509,"publication_date":"2015-03-28T19:43:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-5","changefreq":"weekly","video":[{"title":"2015:E6 - Whiskey Head - #17","description":"Griffon, Gavin, Dan and Geoff piss off the locals during SXSW.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5797ed42-4674-4514-ba41-a872557996d5/sm/ep10573.jpg","duration":176,"publication_date":"2015-03-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-minecraft-rap-tower-of-pimps-t-o-p","changefreq":"weekly","video":[{"title":"MV:E3 - Minecraft Rap - Tower of Pimps (T.O.P.)","description":"iTunes: http://apple.co/1BzOX0R Google play: http://bit.ly/1Ch5Wrf - DOWNLOAD THE SONG \n\nAchievement Hunter presents a rap song dedicated the their golden symbol of victory. Bow down to the Tower of Pimps!","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-minecraft-rap-tower-of-pimps-t-o-p","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa2013ae-becd-42c2-8815-8cf2a2405037/sm/1461653-1439848344553-ah_top_thumbnail_wLogo.jpg","duration":222,"publication_date":"2015-03-27T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-7","changefreq":"weekly","video":[{"title":"2015:E13 - Alien Isolation Pt. 13","description":"After countless deaths, back stabs, explosions, hoards of Kanye, a malicious A.I. and \"one\" very smart Alien the end is finally here.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6f190a8-df71-402b-a564-bd29e957a947/sm/ep10576.jpg","duration":4657,"publication_date":"2015-03-27T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-6","changefreq":"weekly","video":[{"title":"2015:E12 - Alien Isolation Pt. 12","description":"This is the longest let's play Miles and Kyle have ever done, they have been on this station for what seems like an eternity and now they are so close...","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e42c08ae-109f-43a8-bdfa-6fd56537c228/sm/ep10572.jpg","duration":5797,"publication_date":"2015-03-27T17:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-cd-shattering-at-170000fps","changefreq":"weekly","video":[{"title":"S1:E39 - CD Shattering at 170,000FPS!","description":"Gav and Dan present the SLOWEST EVER episode of the slow mo guys by spinning a disc at 23,000RPM and filming it shatter at a whopping 170,000 frames per second.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-cd-shattering-at-170000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24d665c0-4644-429e-8259-27c7f0e04712/sm/ep10562.jpg","duration":515,"publication_date":"2015-03-25T18:08:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-8","changefreq":"weekly","video":[{"title":"2015:E18 - Barbara Pun-kelman III","description":"Yes, Barbara has now made enough puns to make three Animated Adventures about it. She's probably the only one happy about it.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c28b5a2-2f4f-4b93-9481-d95813e669c8/sm/ep10561.jpg","duration":80,"publication_date":"2015-03-25T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-316","changefreq":"weekly","video":[{"title":"2015:E316 - RT Podcast #316","description":"RT Discusses Going Limp","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5497,"publication_date":"2015-03-25T01:01:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-sponsorcast-with-gus-barbara-adam-and-blaine","changefreq":"weekly","video":[{"title":"S2:E242 - The SponsorCast with Gus, Barbara, Adam and Blaine","description":"Gus, Barbara, Adam and Blaine explain what super powers they want and what they would do with them.\r\nThanks to blahhead for this episode's Thumbnail!\r\n\r\nThis also features FanShoping from\r\nBirdman84\r\nBosence\r\nBTW_Max\r\nbWgoV9N\r\nCharlotteJR\r\nchorne\r\nCory0the0gr8\r\ndontdoit96\r\nfaaaaaaack\r\nJevanee\r\nJinekari\r\nkarajoanne\r\nkillomainia\r\nKiplingDash\r\nLamkia\r\nMstrSgtBush\r\nNoblelanc\r\nNonashu\r\nRaveness\r\nSkyppySDK.\r\nSooper Roosters_zpsxzfnomyn\r\nTiger\r\nVaults\r\nZyzil1\r\nTiege","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-sponsorcast-with-gus-barbara-adam-and-blaine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ea0f16d-1d24-4b7f-9d96-9c27783ecb6f/sm/ep10551.jpg","duration":1463,"publication_date":"2015-03-22T15:29:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-5","changefreq":"weekly","video":[{"title":"2015:E5 - The Great Nerf War of 2015","description":"The live action crew faces off against animation in this gruesome battle to the death.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aaeb9ff-6d60-40b9-a39a-e29080ed1600/sm/ep10548.jpg","duration":106,"publication_date":"2015-03-21T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-5","changefreq":"weekly","video":[{"title":"2015:E11 - Alien Isolation Pt. 11","description":"Kyle and Miles are in the worse place ever with the most horrid monster ever conceived. It's name is Skittles and it will never ask for consent before jumping down your throat.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/290b980f-71eb-470f-bf4b-189cd81926f8/sm/ep10545.jpg","duration":3743,"publication_date":"2015-03-20T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-blaine-gibson","changefreq":"weekly","video":[{"title":"S2:E241 - Quick Draw with Patrick! (featuring Blaine Gibson)","description":"On this episode, Pat and Blaine discuss the intricacies of a galaxy far far away and guilty pleasures.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-blaine-gibson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/757a84cb-813b-4de0-b145-8a78f9be7cbb/sm/ep10544.jpg","duration":1488,"publication_date":"2015-03-20T18:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-convertible-aerodynamics-at-1000fps-the-slow-mo-guys","changefreq":"weekly","video":[{"title":"S1:E38 - Convertible Aerodynamics at 1000fps - The Slow Mo Guys","description":"Gav and Dan take the BMW 2 Series Convertible for a spin showing off some sweet air and liquid dynamics at over 100MPH. http://www.bmw.com/2SeriesConvertible","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-convertible-aerodynamics-at-1000fps-the-slow-mo-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd1dbd59-6915-4717-b031-bb3ede5ceb07/sm/ep10539.jpg","duration":273,"publication_date":"2015-03-19T18:24:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-4","changefreq":"weekly","video":[{"title":"2015:E17 - Robot Cars Solve Everything","description":"In RTAA #180, Chris makes his case for how self-driving cars will solve everything wrong with traffic and commuting.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03b63555-c6dc-4403-882f-ad295d4d695b/sm/ep10530.jpg","duration":78,"publication_date":"2015-03-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-315","changefreq":"weekly","video":[{"title":"2015:E315 - RT Podcast #315","description":"RT Discusses Science from SXSW","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5564,"publication_date":"2015-03-18T01:09:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-audio-sponsorcast-with-joel-chris-brandon-and-blaine","changefreq":"weekly","video":[{"title":"S2:E240 - Audio SponsorCast with Joel, Chris, Brandon and Blaine","description":"Joel, Chris, Blaine and Brandon talk everyone through all the ways the world will end.\r\n\r\nThanks to RT User: Vaults for the screen shot!\r\nThanks to everyone else who submitted a wacky photoshop that made it into the video:\r\nScreamerJinx, niall, Peacefield, Hufflebecks, niriall, mssavenger, CharlotteJR, Jevanee, ChrisPerch, mskatlyn, jbridgiee, Gartley, CollingsRaw, ErinM, deadmike45, avetrick and Ember.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-audio-sponsorcast-with-joel-chris-brandon-and-blaine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d51a9be5-f2c5-43c4-b38b-1f9214ece21e/sm/ep10515.jpg","duration":1977,"publication_date":"2015-03-14T15:47:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-2","changefreq":"weekly","video":[{"title":"2015:E5 - Sandpile - #16","description":"Geoff and Griffon are not 4 years old, but they do still love diving into a pile of sand.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2462ee24-e196-43ca-a569-8f96c9f92c26/sm/ep10511.jpg","duration":139,"publication_date":"2015-03-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-6","changefreq":"weekly","video":[{"title":"LP:E6 - Gavin vs. Ryan - Let's Play Minimations #6","description":"Two moments from Minecraft Let's Plays of Gavin killing Ryan and Ryan killing Gavin. Can't we all just get a long Gavin kills the king, but Ryan doesn't \"miss\" an opportunity to get even.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7611b774-78d3-432e-9146-1c1c29a08289/sm/ep10497.jpg","duration":83,"publication_date":"2015-03-11T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-314","changefreq":"weekly","video":[{"title":"2015:E314 - RT Podcast #314","description":"RT Podcast discusses meeting in-laws.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5614,"publication_date":"2015-03-10T21:52:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-rt-life-head-explosions","changefreq":"weekly","video":[{"title":"S2:E239 - Sponsor Cut: RT Life - Head Explosions","description":"The guys test out some effects for an upcoming RT Short.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-rt-life-head-explosions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2346920-3c27-42c7-8bd9-ffb83f245377/sm/ep10483.jpg","duration":108,"publication_date":"2015-03-07T12:18:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-4","changefreq":"weekly","video":[{"title":"2015:E10 - Alien Isolation Pt. 10","description":"Kyle and Miles spend some time reminiscing about Scoops and wonder if they will ever see him again, that and if they will ever make it off this station.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2088f43e-a127-4372-9e15-d2d05ddc95c3/sm/ep10480.jpg","duration":4204,"publication_date":"2015-03-07T00:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-16","changefreq":"weekly","video":[{"title":"2015:E16 - Gavin Free: Knife Thrower","description":"Burnie provokes a bet between Gavin and Ryan over Gavin's knife throwing abilities.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40c24536-c2e2-4b45-8bab-d34553f30fdf/sm/ep10476.jpg","duration":127,"publication_date":"2015-03-06T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-arkham-city-part-3","changefreq":"weekly","video":[{"title":"S2:E238 - Sponsor Play: Arkham City Part 3","description":"Josh and Pat take a trip to the museum to take in some culture and reflect on the human condition. I also hear they have a nice penguin exhibit.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-arkham-city-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21702feb-439d-40ce-9653-c90948d333fb/sm/ep10479.jpg","duration":1421,"publication_date":"2015-03-06T21:31:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-psa-channel-changer","changefreq":"weekly","video":[{"title":"S1:E43 - PSA: Channel Changer","description":"Red vs. Blue has an \"exciting\" announcement about the \"brand new\" and \"innovative\" way we are delivering the show to the audience.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-psa-channel-changer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e2c6ffe-2cf7-41b7-b426-6bccc2369dbe/sm/ep10467.jpg","duration":189,"publication_date":"2015-03-04T22:14:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-22","changefreq":"weekly","video":[{"title":"2015:E16 - Matt Meets Lois Lane","description":"In RTAA #179, Matt talks about the first time they were at Comic Con, and how they upstaged the cast of Superman 2.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22e45a5e-de5f-48a8-8aea-7858c86cf51b/sm/ep10464.jpg","duration":79,"publication_date":"2015-03-04T19:32:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-313","changefreq":"weekly","video":[{"title":"2015:E313 - RT Podcast #313","description":"RT Podcast Discusses Cloudy Water","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6007,"publication_date":"2015-03-03T23:00:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-hypnotic-ink-physics-in-4k-slow-motion","changefreq":"weekly","video":[{"title":"S1:E37 - Hypnotic Ink Physics in 4K Slow Motion","description":"In the first Ultra High Definition episode of The Slow Mo Guys, Gav and Dan inject coloured ink into a tank of water. If you have a 4K display or UHD tv, fire it up!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-hypnotic-ink-physics-in-4k-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daa89719-4ff7-4475-b236-65e90f78e167/sm/ep10457.jpg","duration":318,"publication_date":"2015-03-02T21:57:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-office-divorce","changefreq":"weekly","video":[{"title":"S6:E12 - Office Divorce","description":"When Ryan is divorce-ambushed by Chris and his super lawyer, all hell breaks loose.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-office-divorce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7b5c27a-8d58-43a5-a064-81f088656f32/sm/ep10449.jpg","duration":287,"publication_date":"2015-02-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-10","changefreq":"weekly","video":[{"title":"2015:E4 - Piper Cleaners and Dog Tags - #15","description":"Gavin films as Geoff and Griffon perform some anatomical experiments while stretching their limits.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6ce3ddc-8d79-4607-bc33-53616190593c/sm/ep10443.jpg","duration":217,"publication_date":"2015-02-27T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-3","changefreq":"weekly","video":[{"title":"2015:E9 - Alien Isolation Pt. 9","description":"Kyle did his homework and now he and Miles are on the fast track through Sevastopol to find Samuels","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/796c0dfb-c89f-4118-936a-065af89d1422/sm/ep10444.jpg","duration":3590,"publication_date":"2015-02-27T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-18","changefreq":"weekly","video":[{"title":"2015:E15 - Helium Miners & Bacon Meals","description":"In RTAA #178, the guys talk about how hard it is to get a hold of helium, and Barbara is unimpressed by a local restaurant.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22ea5e03-844d-40cb-b74f-6ff24959b347/sm/ep10432.jpg","duration":79,"publication_date":"2015-02-25T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-312","changefreq":"weekly","video":[{"title":"2015:E312 - RT Podcast #312","description":"RT Podcast discusses naked sleep habits","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5642,"publication_date":"2015-02-24T23:51:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-mckinley-werewolf-slayer","changefreq":"weekly","video":[{"title":"S6:E9 - McKinley: Werewolf Slayer!","description":"On their return home from killing a famous half-breed, a master hunter and his companions discover more danger awaits them in the woods ahead. Watch the trailer for 1886: http://bit.ly/17nH71O \r\nSpecial Thanks to the Texas Renaissance Festival.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-mckinley-werewolf-slayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0c9f74c-a438-4a87-af48-34172fc2d638/sm/ep10418.jpg","duration":456,"publication_date":"2015-02-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-arkham-city-pt-2","changefreq":"weekly","video":[{"title":"S2:E237 - Sponsor Play: Arkham City Pt. 2","description":"Josh and Pat become the night, as they talk about sandwiches, speedsters, and wall demolition.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-arkham-city-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1724bcc5-1dad-41ac-b52d-43418af290c2/sm/ep10413.jpg","duration":1216,"publication_date":"2015-02-20T20:44:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015-2","changefreq":"weekly","video":[{"title":"2015:E8 - Alien Isolation Pt. 8","description":"Have you ever been on one of those tilt-a-whirl things at the state fair Yea the beginning of this episode is like that but with a Xenomorph chasing you on it.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a80b52d-14d9-420e-9c6d-aa49564b8156/sm/ep10412.jpg","duration":3493,"publication_date":"2015-02-20T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-15","changefreq":"weekly","video":[{"title":"2015:E14 - Barbara's Bad Text","description":"In RTAA #177, Barbara sends a text that sends Burnie into search-and-rescue mode.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a3f44f-ce21-49f4-97b5-2b943546ff22/sm/ep10402.jpg","duration":116,"publication_date":"2015-02-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-311","changefreq":"weekly","video":[{"title":"2015:E311 - RT Podcast #311","description":"RT celebrates Shrove Tuesday.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6008,"publication_date":"2015-02-17T23:22:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-12","changefreq":"weekly","video":[{"title":"2015:E12 - Michael's Valentine's Day Snack","description":"Gavin feeds Michael some delicious candy for Valentine's Day.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63f74ee6-880d-4e20-862c-7c4a4cfebdb3/sm/ep10385.jpg","duration":151,"publication_date":"2015-02-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2015","changefreq":"weekly","video":[{"title":"2015:E7 - Alien Isolation Pt. 7","description":"Kyle and Miles journey back to Sevastopol Station to reconnect with Scoops, Kanye and \"Marshal.\"","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98f3f3cb-ba4c-4ba4-a4b5-3d6880593934/sm/ep10382.jpg","duration":3332,"publication_date":"2015-02-13T20:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-josh-flanagan","changefreq":"weekly","video":[{"title":"S2:E236 - Quick Draw with Patrick! (featuring Josh Flanagan)","description":"Pat talks to Josh about his time in the Army and also his career as a Film Maker and Writer. What was Josh's request for this Quick Draw \"Make me evil\"","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-josh-flanagan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b8fe91f-2b49-45e4-a7fb-8c28b97e4fbe/sm/ep10381.jpg","duration":2043,"publication_date":"2015-02-13T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-5","changefreq":"weekly","video":[{"title":"LP:E5 - Friendly? Friendly - Let's Play Minimations #5","description":"Ryan gives Gavin a friendly greeting. Later, Jack makes an alliance with Gavin which Ryan quickly cuts short.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8232638-8566-4299-b370-a8883fa3f3c2/sm/ep10374.jpg","duration":85,"publication_date":"2015-02-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-310","changefreq":"weekly","video":[{"title":"2015:E310 - RT Podcast #310","description":"RT Discusses Funhaus","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-310","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6603,"publication_date":"2015-02-10T22:54:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-8","changefreq":"weekly","video":[{"title":"2015:E3 - Adventures in Driving - #14","description":"Geoff Ramsey, Gavin Free, and Griffon Ramsey chronicle the bizarre and hilarious day to day events that happen while driving the mean streets of Austin, TX.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf0ced02-40f4-4574-a5bd-b80840da6f7c/sm/ep10358.jpg","duration":277,"publication_date":"2015-02-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-arkham-city","changefreq":"weekly","video":[{"title":"S2:E235 - Sponsor Play: Arkham City","description":"The Smash Brothers Tournament lays in ruins at the feet of Nintendo so now Patrick and Josh must save the day with a Sponsor Play of Batman: Arkham City!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-arkham-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0bd3755-c655-4bc6-9bb9-fc619b824dc6/sm/ep10359.jpg","duration":3249,"publication_date":"2015-02-06T19:36:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-12","changefreq":"weekly","video":[{"title":"2015:E13 - Oven Peeing, Shirt in the Wild","description":"In RTAA #176, Chris tells a tale of the time he accidentally peed in an oven, and Gavin surprises a fan wearing a Rooster Teeth shirt out in the wild.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a706b13-ecc3-4694-80b7-daa56ad9ac32/sm/ep10347.jpg","duration":90,"publication_date":"2015-02-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-309","changefreq":"weekly","video":[{"title":"2015:E309 - RT Podcast #309","description":"RT Remembers Monty Oum","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-309","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":2575,"publication_date":"2015-02-03T21:44:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-smash-tournament","changefreq":"weekly","video":[{"title":"S2:E234 - Smash Tournament","description":"Miles, Lindsay, Matt and Gus face off in the first round of The Rooster Teeth Inter-Office Super Smash Brothers Tournament of Champions, on the Wii U, with Prizes!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-smash-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b30a76ee-9325-495b-945f-145cc0d26237/sm/ep10338.jpg","duration":250,"publication_date":"2015-01-30T18:05:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-inside-a-camera-at-10000fps","changefreq":"weekly","video":[{"title":"S1:E36 - Inside a Camera at 10,000fps","description":"Gav shows you how insanely quick the inside of a DSLR camera moves when it takes a picture, by filming it at 10,000 fps.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-inside-a-camera-at-10000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53378522-dc63-4686-80c0-d083fba2e882/sm/ep10334.jpg","duration":432,"publication_date":"2015-01-29T18:12:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-9","changefreq":"weekly","video":[{"title":"2015:E12 - The Pubert Situation","description":"In RTAA #175, the Achievement Hunter gang discusses whether a fungus can get an achievement, and debate just who is Pubert Addams.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35e0ea14-59f4-45eb-a062-cfb59c738ad8/sm/ep10328.jpg","duration":138,"publication_date":"2015-01-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-308","changefreq":"weekly","video":[{"title":"2015:E308 - RT Podcast #308","description":"RT Goes to PAX South","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-308","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":3208,"publication_date":"2015-01-27T18:57:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-7","changefreq":"weekly","video":[{"title":"2015:E7 - Miles Gets His 'Tein On","description":"Miles and Adam decide to workout. Miles and Adam decide to drink protein shakes. Miles decides to try something new, while Adam decides to watch. Which one chose correctly","player_loc":"https://roosterteeth.com/embed/rt-life-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c229572-1960-4102-84f9-d97fce6fc3f5/sm/ep10311.jpg","duration":102,"publication_date":"2015-01-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-1","changefreq":"weekly","video":[{"title":"S2:E233 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on January 16, 2015","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e300ef4-edcc-44b9-a11c-b8e86e393f3e/sm/ep10313.jpg","duration":4056,"publication_date":"2015-01-23T19:00:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-smash-tournament","changefreq":"weekly","video":[{"title":"S2:E232 - Sponsor Cut: Smash Tournament","description":"24 combatants compete for 16 spots in the preliminary round of The Rooster Teeth Inter-Office Tournament of Champions!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-smash-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3102e0d2-2842-426c-be07-7402747add85/sm/ep10312.jpg","duration":162,"publication_date":"2015-01-23T18:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-7","changefreq":"weekly","video":[{"title":"2015:E11 - Gavin Drinks Fart Coffee","description":"In RTAA #174, Gavin leaves his cup of coffee in the Achievement Hunter office, and Geoff adds some flavor to it without him knowing.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c5e4f2b-edce-45f4-896c-7a47b7000f3d/sm/ep10301.jpg","duration":79,"publication_date":"2015-01-21T19:17:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-307","changefreq":"weekly","video":[{"title":"2015:E307 - RT Podcast #307","description":"RT Discusses Shower Thoughts","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-307","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6101,"publication_date":"2015-01-20T18:05:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015-4","changefreq":"weekly","video":[{"title":"2015:E2 - The Vegemite Challenge - #13","description":"In February of 2011 in Sydney Australia, Geoff Ramsey challenged Griffon Ramsey to the (illegal in most countries) Vegemite Challenge. Will she persevere If she does, will Geoff still want to be married Special guest Matt Hullum!","player_loc":"https://roosterteeth.com/embed/happy-hour-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/378cebc7-bc60-4401-9a98-988e3bb9ac68/sm/ep10290.jpg","duration":139,"publication_date":"2015-01-17T17:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-4","changefreq":"weekly","video":[{"title":"LP:E4 - Cake and Death - Let's Play Minimations #4","description":"The AH lads and gents learn how deadly eating cake can be.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f12710d-1f9e-4143-8701-196c7705a981/sm/ep10279.jpg","duration":71,"publication_date":"2015-01-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-6-fusion-confusion","changefreq":"weekly","video":[{"title":"S6:E1 - Fusion Confusion","description":"Can Chris combine his romance skills and magic powers to win Barbara's heart\r\nClick here for more info on Summoners War: http://playsummonerswar.com Play Summoners War for free here: http://bit.ly/SWroosterteeth","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-6-fusion-confusion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a03784f5-40da-4cf1-a163-2297d7fb438d/sm/ep10275.jpg","duration":238,"publication_date":"2015-01-13T20:20:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-306","changefreq":"weekly","video":[{"title":"2015:E306 - RT Podcast #306","description":"RT Discusses Show of the Year","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-306","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6026,"publication_date":"2015-01-13T18:03:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2015-3","changefreq":"weekly","video":[{"title":"2015:E3 - Everybody Getting Handcuffed","description":"The live action guys test out the handcuffs before shooting the Escaped Prisoner Social Disorder.","player_loc":"https://roosterteeth.com/embed/rt-life-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65be5156-0c4c-4a0c-ad80-c3009b2787d3/sm/ep10267.jpg","duration":279,"publication_date":"2015-01-10T23:25:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsorcast-animation-003","changefreq":"weekly","video":[{"title":"S2:E231 - SponsorCast: Animation 003","description":"SponsorCast is back with a discussion of Legend of Korra and all things animation.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsorcast-animation-003","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d34255f9-57ee-455b-a117-88cbed004f1e/sm/ep10266.jpg","duration":3660,"publication_date":"2015-01-10T16:15:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-10","changefreq":"weekly","video":[{"title":"S1:E10 - Jack & Joel vs. Geoff & Gavin - #10","description":"Geoff and Gavin take on Jack and Joel for the season finale of On The Spot!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be64ab69-7d7a-4b71-9906-a3bf3f31feac/sm/ep10263.jpg","duration":2767,"publication_date":"2015-01-09T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2015-2","changefreq":"weekly","video":[{"title":"2015:E10 - Lost Gavin's Way With Words","description":"In RTAA #173, we have a compilation of some of Gavin's weird phrasing when trying to pose academic questions and statements.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/508a47ed-8586-41b0-b8a6-0f101a1310e1/sm/ep10252.jpg","duration":88,"publication_date":"2015-01-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-23","changefreq":"weekly","video":[{"title":"S1:E23 - Screen Play #23","description":"Screen Play Discusses 2014's Biggest Movie Flops","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4277,"publication_date":"2015-01-07T21:18:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-305","changefreq":"weekly","video":[{"title":"2015:E305 - RT Podcast #305","description":"RT Discusses Podcast Awards 2014","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-305","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6713,"publication_date":"2015-01-06T23:43:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Russian Roulette - #12","description":"Geoff Ramsey, Gavin Free, Griffon Ramsey, Meg Turney and friends Lindsay Hicks and Amy Jackson Lewis get ready for the new year by playing a little Russian Roulette.","player_loc":"https://roosterteeth.com/embed/happy-hour-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c457e77-82ed-4f5f-9515-b7391730e9e3/sm/ep10241.jpg","duration":401,"publication_date":"2015-01-03T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-6","changefreq":"weekly","video":[{"title":"S2:E230 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on December 19, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53ec11a2-6c46-4a97-8d3b-d4ca3466cb04/sm/ep10236.jpg","duration":3651,"publication_date":"2015-01-02T20:10:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-09","changefreq":"weekly","video":[{"title":"S1:E9 - Team Mario Twins vs. Team Fun Socks - #09","description":"Jordan, Miles, Adam, and Brandon are caught red-handed in a special New Year's Day edition of On The Spot!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-09","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26d6dccc-0f64-4ee0-a546-9344538ac10c/sm/ep10235.jpg","duration":2390,"publication_date":"2015-01-02T18:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-47","changefreq":"weekly","video":[{"title":"2014:E47 - Joel's Theatrical Sickness","description":"In RTAA #172, Joel starts feeling deathly sick in a movie theater, and Gavin almost cares.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eae1b73e-69d0-46b8-818a-f2577a14af1c/sm/ep10223.jpg","duration":80,"publication_date":"2014-12-31T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-22","changefreq":"weekly","video":[{"title":"S1:E22 - Screen Play #22","description":"Screen Play Discusses The Wolf of Wall Street","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4660,"publication_date":"2014-12-31T19:36:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-38","changefreq":"weekly","video":[{"title":"2014:E38 - Burnie's Whisky","description":"Burnie tries desperately to open a bottle of Whisky for Jon","player_loc":"https://roosterteeth.com/embed/rt-life-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe4ebaff-dc0b-410b-bf11-9d649684ec61/sm/ep10213.jpg","duration":117,"publication_date":"2014-12-27T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cast-comics-003","changefreq":"weekly","video":[{"title":"S2:E229 - Sponsor Cast: Comics 003","description":"Join Josh, Gray, Jon and Patrick as they discuss what they thought were the best comics/comic related TV of the year and see some very special Christmas comics that Santa Pat brought with him.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cast-comics-003","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc7791ed-f2b8-4ce3-8b23-530da2afc50f/sm/ep10212.jpg","duration":3329,"publication_date":"2014-12-26T19:27:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-08","changefreq":"weekly","video":[{"title":"S1:E8 - Team Dissabled vs. Team Hotica - #08","description":"Jon reunites The Wingmen for this special holiday episode of On The Spot #08!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-08","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75b506d3-9651-4994-bce0-76cb963d9988/sm/ep10208.jpg","duration":2045,"publication_date":"2014-12-26T16:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-kyle","changefreq":"weekly","video":[{"title":"S2:E228 - Quick Draw with Patrick! (featuring Kyle)","description":"Kyle and Patrick sit down for another quick draw!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-kyle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8e7b092-0e5a-4f91-9d66-fca497c0bd4b/sm/ep10207.jpg","duration":1482,"publication_date":"2014-12-26T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-44","changefreq":"weekly","video":[{"title":"2014:E43 - Lost Bugs & Stolen Balls","description":"Burnie wonders about what it's like for bugs to get lost, and Geoff steals a ball from Caleb.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9dd6bb3-4e17-4922-9d7f-a38d19bb427b/sm/ep10199.jpg","duration":83,"publication_date":"2014-12-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-21","changefreq":"weekly","video":[{"title":"S1:E21 - Screen Play #21","description":"Screen Play Discusses The Interview","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4486,"publication_date":"2014-12-24T17:49:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - And Then There Were Two & One - Episode 8","description":"Just three survivors left. One will die a victim. One will unveil their master plan. And one might just make it out of this alive in the Ten Little Roosters finale!","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/864a589c-e98a-4362-804f-709cf68d4451/sm/ep10194.jpg","duration":758,"publication_date":"2014-12-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-303","changefreq":"weekly","video":[{"title":"2014:E303 - RT Podcast #303","description":"RT Discusses Gift Giving","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-303","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5931,"publication_date":"2014-12-23T23:27:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-8","changefreq":"weekly","video":[{"title":"2014:E11 - Back Popping - Happy Hour #11","description":"Things are tense in this Happy Hour as Griffon and Geoff pop backs.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fde53f1-68e7-4b70-a227-15ba2dc3540c/sm/ep10175.jpg","duration":243,"publication_date":"2014-12-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-amiibo-fight","changefreq":"weekly","video":[{"title":"S2:E227 - Sponsor Cut: Amiibo Fight","description":"Patrick, Matt, and Kyle head out to find some Amiibos and make them fight.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-amiibo-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6f31454-57f8-45fe-aaf1-cdbe1c4e433b/sm/ep10179.jpg","duration":262,"publication_date":"2014-12-20T03:14:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-07","changefreq":"weekly","video":[{"title":"S1:E7 - Team Meat Team vs. Jack Is Fat - #07","description":"Team Meat Team takes on new challengers Jack and Joel to defend their reigning championship.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-07","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afa2cd8d-5223-4d55-8d14-cdb09c5b6b88/sm/ep10174.jpg","duration":2732,"publication_date":"2014-12-19T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-rollercoaster-tycoon-2","changefreq":"weekly","video":[{"title":"S1:E391 - VGV - RollerCoaster Tycoon 2","description":"More rides.  More options.  More death coasters.","player_loc":"https://roosterteeth.com/embed/vgv-rollercoaster-tycoon-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2536df2-b5c5-4d73-a97a-de86a306d199/sm/video_thumbnail_10103431.jpg","duration":191,"publication_date":"2013-04-09T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/angry-video-game-nerd-adventures-official-debut-trailer","changefreq":"weekly","video":[{"title":"S1:E545 - Angry Video Game Nerd Adventures - Official Debut Trailer","description":"Help bring the game to Steam by going its page and voting \"yes\" here: http://steamcommunity.com/sharedfiles/filedetails/?id=136246834\r\n\t\r\n\tComing to PCs in 2013!\r\n\t\r\n\tWant to post this trailer on your YouTube account? Download it here: https://www.dropbox.com/s/ydgiivixd6kx4li/04_08_13_AVGNAdventures_Teaser_1920x1080%20HD.mov\r\n\t\r\n\tGet more news and info by liking the Angry Video Game Nerd Adventures Facebook page: http://www.facebook.com/pages/Angry-Video-Game-Nerd-Adventures/485105718225189\r\n\t\r\n\tFollow ScrewAttack Games on Facebook: https://www.facebook.com/OfficialSAGames\r\n\r\n\tCheck out screen shots!\r\n[view:photo_gallery=block_1]","player_loc":"https://roosterteeth.com/embed/angry-video-game-nerd-adventures-official-debut-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7792736c-d47e-4c65-adfb-b20e80d18635/sm/video_thumbnail_10029881.jpg","duration":30,"publication_date":"2013-04-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040813-pokemon-is-getting-mewthree-dkc-3ds-is-getting-new-modes-and-avgn-gets-a-game","changefreq":"weekly","video":[{"title":"S1:E398 - Hard News 04/08/13 - Pokemon is getting MewThree?, DKC 3DS is getting new modes, and AVGN gets a game","description":"There’s a new Mew clone? What? - http://www.screwattack.com/news/there%E2%80%99s-new-mew-clone-what\r\nDonkey Kong Country Returns 3D will feature added content - http://www.screwattack.com/news/donkey-kong-country-returns-3d-will-feature-added-content\r\nAngry Video Game Nerd Adventures - Official Debut Trailer - http://www.screwattack.com/video/Angry-Video-Game-Nerd-Adventures--Official-Debut-Trailer-10029881\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-040813-pokemon-is-getting-mewthree-dkc-3ds-is-getting-new-modes-and-avgn-gets-a-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41cc0cf7-6a59-4501-989b-4c45c8c34f16/sm/video_thumbnail_10063431.png","duration":113,"publication_date":"2013-04-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-slapman-needs-a-job","changefreq":"weekly","video":[{"title":"S1:E186 - The Clip - Slapman Needs A Job","description":"SLAP Energy, the company Slapman represents, closed up shop recently.  When a man's only talent is slapping the everloving crap out of things, where else can he find employment?","player_loc":"https://roosterteeth.com/embed/the-clip-slapman-needs-a-job","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f04bb32-eb5e-4826-ac20-afdc5736079c/sm/slapmanthumb.jpg","duration":172,"publication_date":"2013-04-05T23:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040513-colonial-marines-wont-come-to-wii-u-killer-instinct-is-out-of-court-and-microsoft-made-a-mistake","changefreq":"weekly","video":[{"title":"S1:E397 - Hard News 04/05/13 - Colonial Marines won?t come to Wii U, Killer Instinct is out of court, and Microsoft made a mistake","description":"Fox and Microsoft make nice over Killer Instinct trademark - http://www.screwattack.com/news/fox-and-microsoft-make-nice-over-killer-instinct-trademark\r\nAliens: Colonial Marines will not be coming to Wii U - http://www.screwattack.com/news/aliens-colonial-marines-will-not-be-coming-wii-u\r\nMicrosoft lead creative director uses Twitter to defend \"rumored\" always on Xbox 720 - http://www.screwattack.com/news/microsoft-lead-creative-director-uses-twitter-defend-rumored-always-xbox-720\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-040513-colonial-marines-wont-come-to-wii-u-killer-instinct-is-out-of-court-and-microsoft-made-a-mistake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7b92554-f2e2-4302-9fc2-90b8bc0ecd17/sm/video_thumbnail_9937696.png","duration":166,"publication_date":"2013-04-05T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-peripheral-part-2","changefreq":"weekly","video":[{"title":"S1:E22 - The Worst EVER: Peripheral (Part 2)","description":"What is your worst EVER peripheral? Let us know in the comments below!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-peripheral-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d386184-e958-4372-b52f-0fdc645326cd/sm/video_thumbnail_9900956.jpg","duration":354,"publication_date":"2013-04-04T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040413-telltale-ditches-kings-quest-titan-rumors-abound-and-destiny-shows-its-races","changefreq":"weekly","video":[{"title":"S1:E396 - Hard News 04/04/13 - Telltale ditches King?s Quest, Titan rumors abound, and Destiny shows its races","description":"Telltale abandons the King’s Quest license to return it to Activision - http://www.screwattack.com/news/telltale-abandons-king%E2%80%99s-quest-license-return-it-activision\r\n[Rumor] Blizzard’s Project Titan is a time traveling MMO set on Earth - http://www.screwattack.com/news/rumor-blizzard%E2%80%99s-project-titan-time-traveling-mmo-set-earth\r\nBungie reveals three races and classes coming to Destiny - http://www.screwattack.com/news/bungie-reveals-three-races-and-classes-coming-destiny\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-040413-telltale-ditches-kings-quest-titan-rumors-abound-and-destiny-shows-its-races","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cbb3a8d-a63a-4b7c-8e3b-529be2742005/sm/video_thumbnail_9891456.png","duration":131,"publication_date":"2013-04-04T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-injustice-gods-among-us-demo","changefreq":"weekly","video":[{"title":"S1:E35 - Out of the Box - Injustice: Gods Among Us Demo","description":"This time on Out of the Box, Nick and Bryan are checking out the upcoming fighter, Injustice: Gods Among Us. Is this thing feeling like it's worth the hype? Will it make up for MK vs DC? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-injustice-gods-among-us-demo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a37a6091-cabe-4c60-8866-f5aeb3fcf5de/sm/video_thumbnail_9834831.jpg","duration":1303,"publication_date":"2013-04-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040313-lay-offs-for-everyone-especially-lucasarts-and-simcity-dlc-turns-over-a-leaf","changefreq":"weekly","video":[{"title":"S1:E395 - Hard News 04/03/13 - Lay-offs for everyone, especially LucasArts, and SimCity DLC turns over a Leaf","description":"LucasArts shut down by Disney! - http://www.screwattack.com/news/lucasarts-shut-down-disney\r\nSquare Enix revealed their sales expectations for their \"failed\" games - http://www.screwattack.com/news/square-enix-revealed-their-sales-expectations-their-failed-games\r\nFirst SimCity DLC features the new Nissan Leaf - http://www.screwattack.com/news/first-simcity-dlc-features-new-nissan-leaf\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-040313-lay-offs-for-everyone-especially-lucasarts-and-simcity-dlc-turns-over-a-leaf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1373c6cc-3d0d-483a-affe-de0c992b5129/sm/video_thumbnail_9847066.png","duration":152,"publication_date":"2013-04-03T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-040313","changefreq":"weekly","video":[{"title":"S1:E544 - SideScrollers Extended 04/03/13","description":"Extra SideScrollers for Advantage Members!  If you ever wanted to build a PC you can get some tips from pros.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-040313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7c39616-b1b5-4ccd-9efb-089d57cc6206/sm/video_thumbnail_9798466.jpg","duration":1043,"publication_date":"2013-04-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"rent-a-mourner\"","changefreq":"weekly","video":[{"title":"S1:E110 - SideScrollers - \"Rent-A-Mourner\"","description":"Chad, Sam and Nick take SideScrollers into their own hands and in doing so encounter a crazy slap-happy mom and relive a few ridiculous schoolyard antics.\r\nDownload the audio version of this episode here - http://traffic.libsyn.com/sidescrollers/SideScrollers_Audio_04_03_13.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"rent-a-mourner\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b06f2778-d681-46a0-ad3b-cc77fe0af079/sm/video_thumbnail_9798106.jpg","duration":2734,"publication_date":"2013-04-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040213-poker-night-2-is-official-epix-comes-to-ps-and-blood-dragons-invade-the-80-s","changefreq":"weekly","video":[{"title":"S1:E394 - Hard News 04/02/13 - Poker Night 2 is official, Epix comes to PS+, and Blood Dragons invade the 80?s","description":"Epix HD wants to make PS+ more epic! - http://www.screwattack.com/news/epix-hd-wants-make-ps-more-epic\r\nTelltale confirms Poker Night at the Inventory 2 - http://www.screwattack.com/news/telltale-confirms-poker-night-inventory-2\r\nUbisoft reveals the 80’s-tastic Far Cry 3: Blood Dragon - www.screwattack.com/news/ubisoft-reveals-80’s-tastic-far-cry-3-blood-dragon\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/seanhinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-040213-poker-night-2-is-official-epix-comes-to-ps-and-blood-dragons-invade-the-80-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9290348-476d-423f-b9fd-8b2f855e52a2/sm/video_thumbnail_9799716.png","duration":173,"publication_date":"2013-04-02T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040113-batman-hidden-in-batman-sfxmk-could-finally-happen-and-some-big-death-battle-news","changefreq":"weekly","video":[{"title":"S1:E393 - Hard News 04/01/13 - Batman hidden in Batman, SFxMK could finally happen, and some big DEATH BATTLE! news!","description":"Today on Hard News, Batman is found hidden in Arkham Asylum, it looks like Street Fighter may finally crossover with Mortal Kombat, and some big news about DEATH BATTLE!","player_loc":"https://roosterteeth.com/embed/hard-news-040113-batman-hidden-in-batman-sfxmk-could-finally-happen-and-some-big-death-battle-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7c1579b-ed56-4016-901c-dd4bd90d9988/sm/video_thumbnail_9755121.png","duration":215,"publication_date":"2013-04-01T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/choose-your-adventure-eggcellent-egg-hunt-of-eggcellence","changefreq":"weekly","video":[{"title":"S1:E543 - Choose Your Adventure - Eggcellent Egg Hunt of Eggcellence","description":"It's the second annual Eggcellent Egg Hunt of Eggcellence and YOU get to open up the goodies!\r\nFor you mobile peeps, use these to navigate:\r\n\tBlue        Gold        Yellow        Light Pink        Hot Pink","player_loc":"https://roosterteeth.com/embed/choose-your-adventure-eggcellent-egg-hunt-of-eggcellence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f94dc17e-3fbf-4eaf-adb0-ecad17cdb87c/sm/video_thumbnail_9636161.jpg","duration":72,"publication_date":"2013-03-29T19:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032913-darksiders-may-return-to-its-creator-miyamoto-joins-the-miiverse-and-something-is-happening-april-8th","changefreq":"weekly","video":[{"title":"S1:E392 - Hard News 03/29/13 - Darksiders may return to its creator, Miyamoto joins the Miiverse, and something is happening April 8th","description":" \r\nToday on Hard News, Darksiders may return to its creator, Miyamoto joins the Miiverse, and something is happening April 8th.\r\n \r\nDarksiders' creator looks to regain IP rights - http://www.screwattack.com/news/original-creators-intend-buy-back-ip-rights-darksiders\r\nMiyamoto joins Miiverse - http://www.screwattack.com/news/miyamoto-has-officially-joined-miiverse-ranks\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Craig - Twitter.com/StutteringCraig\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032913-darksiders-may-return-to-its-creator-miyamoto-joins-the-miiverse-and-something-is-happening-april-8th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ada355cc-4767-45dd-bf20-dd89ff3f0610/sm/video_thumbnail_9631206.png","duration":124,"publication_date":"2013-03-29T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-underrated-street-fighter-characters","changefreq":"weekly","video":[{"title":"S1:E74 - Top 10 Underrated Street Fighter Characters","description":"Stuttering Craig's Top 10 Underrated Street Fighter Characters.","player_loc":"https://roosterteeth.com/embed/top-10-underrated-street-fighter-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c94f5e4b-9044-4b89-acf0-0690b9e84e9b/sm/video_thumbnail_9628741.jpg","duration":318,"publication_date":"2013-03-29T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-peripheral-part-1","changefreq":"weekly","video":[{"title":"S1:E21 - The Worst EVER: Peripheral (Part 1)","description":"What is your worst EVER peripheral? Let us know in the comments below!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-peripheral-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086a25cf-f930-4cdb-97fd-62cdcfe8517d/sm/video_thumbnail_9599241.jpg","duration":269,"publication_date":"2013-03-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032813-metal-gear-solid-5-is-official-skullgirls-finishes-with-a-bang-and-poker-night-at-the-inventory-2-leaks","changefreq":"weekly","video":[{"title":"S1:E391 - Hard News 03/28/13 - Metal Gear Solid 5 is official, Skullgirls finishes with a bang, and Poker Night at the Inventory 2 leaks","description":"David Hayter not voicing Solid Snake in Metal Gear Solid 5 - The Phantom Pain - http://www.screwattack.com/news/david-hayter-not-voicing-solid-snake-metal-gear-solid-5-phantom-pain\r\nMetal Gear Solid 5 is the Phantom Pain and there is a trailer to prove it - http://www.screwattack.com/video/TrailerMetal-Gear-Solid-5-is-the-Phantom-Pain-9560546\r\n[Update] Skullgirls Kickstarter Ends with a Bang! - http://www.screwattack.com/news/update-skullgirls-kickstarter-ends-bang\r\nPoker Night at the Inventory 2 cast has been leaked - http://www.screwattack.com/news/poker-night-inventory-2-cast-has-been-leaked\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter Sean – www.Twitter.com/SeanHinz\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032813-metal-gear-solid-5-is-official-skullgirls-finishes-with-a-bang-and-poker-night-at-the-inventory-2-leaks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27434770-463e-4209-8c58-5077e7b20940/sm/video_thumbnail_9589336.png","duration":148,"publication_date":"2013-03-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-pirates-in-gaming","changefreq":"weekly","video":[{"title":"S1:E73 - Top 10 Pirates in Gaming","description":"Nick counts down the scurviest sailors of the sea, the sky, and outer space!  Who makes it in your Top 10?\r\n \r\nNick is sociable!\r\n\tFacebook | Twitter | ScrewAttack","player_loc":"https://roosterteeth.com/embed/top-10-pirates-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5713a9f4-c3fd-4ae3-a48f-93f45b274b08/sm/video_thumbnail_9551791.jpg","duration":565,"publication_date":"2013-03-27T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-bioshock-infinite-and-the-giana-sisters-twisted-dreams","changefreq":"weekly","video":[{"title":"S1:E34 - Out of the Box - Bioshock: Infinite and The Giana Sisters' Twisted Dreams","description":"This time on Out of the Box, we're headed to Columbia in Bioshock Infinite and into the twisted dreams of the Giana sisters!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-bioshock-infinite-and-the-giana-sisters-twisted-dreams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/495dca3b-73d5-4032-b04c-14b87e48de5c/sm/video_thumbnail_9541616.jpg","duration":3033,"publication_date":"2013-03-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032713-team-ninja-splits-wii-u-gets-faster-and-battlefield-4-coming-sans-wii-u","changefreq":"weekly","video":[{"title":"S1:E390 - Hard News 03/27/13 - Team Ninja splits, Wii U gets faster, and Battlefield 4 coming sans Wii U","description":"Team Ninja could be gone, in name at least - http://www.screwattack.com/news/team-ninja-could-be-gone-name-least\r\nAn April update looks to fix the Wii U's loading times - http://www.screwattack.com/news/april-update-looks-fix-wii-us-loading-times\r\nBattlefield 4 is officially unveiled with a 17 minute trailer, but Wii U is MIA - http://www.screwattack.com/news/battlefield-4-officially-unveiled-17-minute-trailer-wii-u-mia\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032713-team-ninja-splits-wii-u-gets-faster-and-battlefield-4-coming-sans-wii-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0e6764a-5b5d-41ec-be98-e9368ce8c5fc/sm/video_thumbnail_9550996.png","duration":161,"publication_date":"2013-03-27T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-032713","changefreq":"weekly","video":[{"title":"S1:E542 - SideScrollers Extended 03/27/13","description":"Crazy ex-girlfriend stories just for Advantage Members","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-032713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73be1ce3-20ca-45c8-a936-cf5121e55cf5/sm/video_thumbnail_9514761.jpg","duration":548,"publication_date":"2013-03-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"wrath-of-the-fire-snake\"","changefreq":"weekly","video":[{"title":"S1:E109 - SideScrollers - \"Wrath of the Fire Snake\"","description":"What makes a snake better? FIRE!\r\n\r\n\tWant the audio version? Get it here.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"wrath-of-the-fire-snake\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/072fdd12-e05e-43f9-b630-debb11ecfc7a/sm/video_thumbnail_9514581.jpg","duration":3476,"publication_date":"2013-03-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032613-skullgirls-indiegogo-racing-to-finish-vita-is-getting-some-games-and-yoichi-wada-retires","changefreq":"weekly","video":[{"title":"S1:E389 - Hard News 03/26/13 - Skullgirls IndieGoGo racing to finish, Vita is getting some games, and Yoichi Wada retires","description":"Sony reveals a whole list of Vita games releasing in the next few months - http://www.screwattack.com/news/sony-reveals-whole-list-vita-games-releasing-next-few-months\r\nSkullgirls now has a third mysterious DLC character... And you can vote on them! - http://www.screwattack.com/news/skullgirls-now-has-third-mysterious-dlc-character-and-you-can-vote-them\r\nSquare Enix President Yoichi Wada steps down - http://www.screwattack.com/news/square-enix-president-yoichi-wada-steps-down\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032613-skullgirls-indiegogo-racing-to-finish-vita-is-getting-some-games-and-yoichi-wada-retires","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6e2ea7f-c4f6-4596-9976-1f829a81ed13/sm/video_thumbnail_9509421.png","duration":148,"publication_date":"2013-03-26T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032513-xcom-is-ported-to-ios-double-fine-adventure-borderlands-2-has-even-more-dlc-","changefreq":"weekly","video":[{"title":"S1:E388 - Hard News 03/25/13 - XCOM is ported to iOS, Double Fine Adventure, Borderlands 2 has even more DLC -","description":"[PAX] XCOM: Enemy Unknown is coming to iOS and it will be the full game - http://www.screwattack.com/news/pax-xcom-enemy-unknown-coming-ios-and-it-will-be-full-game\r\n[PAX] Double Fine Adventure has finally been revealed - http://www.screwattack.com/news/pax-double-fine-adventure-has-finally-been-revealed\r\n[PAX] Gearbox reveals the identity of the new Vault Hunter - http://www.screwattack.com/news/pax-gearbox-reveals-identity-new-vault-hunter\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032513-xcom-is-ported-to-ios-double-fine-adventure-borderlands-2-has-even-more-dlc-","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/add583e4-01ed-4e4b-9759-0cdce10ecd7a/sm/video_thumbnail_9461146.png","duration":150,"publication_date":"2013-03-25T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-teasers","changefreq":"weekly","video":[{"title":"S1:E185 - The Clip - Teasers","description":"EA and DICE recently began dropping teasers for Battlefield 4 that are rather... minimalistic.  Why didn't we think of that sooner?\r\n \r\nNick is sociable!\r\n\tFacebook | Twitter | ScrewAttack\r\n\t ","player_loc":"https://roosterteeth.com/embed/the-clip-teasers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2078e0b8-7441-4593-8c24-813058e2b509/sm/teasersthumb.jpg","duration":138,"publication_date":"2013-03-23T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-learns-about-ducktales-remastered","changefreq":"weekly","video":[{"title":"S1:E540 - Craig Learns About DuckTales Remastered","description":"Today, a surprise revamped classic was announced, so we got the reaction from the biggest DuckTales fan there is...","player_loc":"https://roosterteeth.com/embed/craig-learns-about-ducktales-remastered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eab20b83-74b9-4ecb-8c2d-e89bc93cfd94/sm/video_thumbnail_9329391.jpg","duration":225,"publication_date":"2013-03-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-bawls","changefreq":"weekly","video":[{"title":"S1:E539 - Unaware Steve - Bawls","description":"Here's more of Unaware Steve's hilarious and random interviews!","player_loc":"https://roosterteeth.com/embed/unaware-steve-bawls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71379cd5-3795-46cb-8a4b-73532cd702b8/sm/video_thumbnail_9323601.jpg","duration":213,"publication_date":"2013-03-22T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032213-blizzard-is-making-card-game-ducktales-is-coming-back-and-still-no-mega-man","changefreq":"weekly","video":[{"title":"S1:E387 - Hard News 03/22/13 - Blizzard is making card game, DuckTales is coming back, and still no Mega Man","description":"[PAX] New Mega Man Game in development, says Capcom - http://www.screwattack.com/news/pax-new-mega-man-game-development-says-capcom\r\n[PAX] Blizzard reveals their new free-to-play collectible card game, Hearthstone: Heroes of Warcraft - http://www.screwattack.com/news/pax-blizzard-reveals-their-new-free-play-collectible-card-game-hearthstone-heroes-warcraft\r\n[PAX] Downloadable DuckTales remake in development from WayForward - http://www.screwattack.com/news/pax-downloadable-ducktales-remake-development-wayforward\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032213-blizzard-is-making-card-game-ducktales-is-coming-back-and-still-no-mega-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18bcf91a-7034-4b3b-a510-ca68dcf01ca3/sm/video_thumbnail_9323591.png","duration":147,"publication_date":"2013-03-22T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-playstation-launch","changefreq":"weekly","video":[{"title":"S1:E20 - The Best EVER: PlayStation Launch","description":"What is your best EVER PlayStation launch?","player_loc":"https://roosterteeth.com/embed/the-best-ever-playstation-launch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60ab08de-a65f-4e08-9c1f-3c45658fea36/sm/video_thumbnail_9292146.jpg","duration":376,"publication_date":"2013-03-21T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-educational-games","changefreq":"weekly","video":[{"title":"S1:E72 - Top 10 Educational Games","description":"You may not typically prefer them to more traditional games, but the ten on this list ain't so bad.","player_loc":"https://roosterteeth.com/embed/top-10-educational-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9afae75c-281e-40ba-b77f-8ec8d108b7fd/sm/video_thumbnail_9277831.jpg","duration":398,"publication_date":"2013-03-21T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032113-mane6-shows-new-fighters-final-fantasy-x-2-hd-steam-presents-early-access","changefreq":"weekly","video":[{"title":"S1:E386 - Hard News 03/21/13 - Mane6 shows new fighters, Final Fantasy X-2 HD, Steam presents Early Access","description":"Steam is encouraging users to buy unfinished games at full price - http://www.screwattack.com/news/steam-encouraging-users-buy-unfinished-games-full-price\r\n[Rumor] Final Fantasy X HD comes with X-2 on PS3... separate on Vita - http://www.screwattack.com/news/rumor-final-fantasy-x-hd-comes-x-2-ps3-separate-vita\r\nFighting is Magic dev Mane6 teases new characters - http://www.screwattack.com/news/fighting-magic-teases-new-characters\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032113-mane6-shows-new-fighters-final-fantasy-x-2-hd-steam-presents-early-access","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d47d0d1a-3c4d-448b-9734-c66580ed11d2/sm/video_thumbnail_9275651.png","duration":116,"publication_date":"2013-03-21T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-gears-of-war-judgment","changefreq":"weekly","video":[{"title":"S1:E33 - Out of the Box - Gears of War: Judgment","description":"This time on Out of the Box, we're hopping on the Cole Train with Baird for Gears of War: Judgment! Is a Gears of War prequel the way to go with all the big games coming out lately? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-gears-of-war-judgment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7e5623c-34b8-43e9-8fea-5048b5422ad3/sm/video_thumbnail_9215186.jpg","duration":1323,"publication_date":"2013-03-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032013-supergiant-transistors-monster-hunter-3-is-missing-a-feature-and-skullgirls-hires-a-pornographer","changefreq":"weekly","video":[{"title":"S1:E385 - Hard News 03/20/13 - Supergiant Transistors, Monster Hunter 3 is missing a feature, and Skullgirls hires a pornographer","description":"Pornographer ZONE joins Skullgirls dev group Lab Zero - http://www.screwattack.com/news/pornographer-zone-joins-skullgirls-dev-group-lab-zero\r\nMonster Hunter 3 Ultimate is out, but missing an important feature - http://www.screwattack.com/news/monster-hunter-3-ultimate-out-missing-important-feature\r\nSupergiant Games reveals a new game called Transistor - http://www.screwattack.com/news/supergiant-games-reveals-new-game-called-transistor\r\n\r\n\tFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-032013-supergiant-transistors-monster-hunter-3-is-missing-a-feature-and-skullgirls-hires-a-pornographer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b270b5b5-89da-4bbb-8371-d4980d0c3eb6/sm/video_thumbnail_9226586.png","duration":165,"publication_date":"2013-03-20T14:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-032013","changefreq":"weekly","video":[{"title":"S1:E538 - SideScrollers Extended 03/20/13","description":"Extra SideScrollers exclusively for Advantage Members - now with more Arby's sauce.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-032013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f8f61f9-a217-4bf7-9d9a-d13a88ff7f79/sm/video_thumbnail_9195516.jpg","duration":499,"publication_date":"2013-03-19T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"the-bike-sting\"","changefreq":"weekly","video":[{"title":"S1:E108 - SideScrollers - \"The Bike Sting\"","description":"Is this really what cops have to do in their spare time?\r\n\r\n\tDownload the audio version of this week's episode here - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio_03_20_13.mp3","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"the-bike-sting\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97065134-33fe-4750-a236-cb4ed6570bb7/sm/video_thumbnail_9195211.jpg","duration":3544,"publication_date":"2013-03-19T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/indie-game-devs-we-want-you","changefreq":"weekly","video":[{"title":"S1:E537 - Indie Game Devs! We Want You!","description":"We are hooking up all indie game developers with FREE space to show off their games at SGC 2013! Share this video with any and all indie game devs!","player_loc":"https://roosterteeth.com/embed/indie-game-devs-we-want-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8101baa2-eafc-4986-93dc-99100189f42b/sm/video_thumbnail_9173196.jpg","duration":52,"publication_date":"2013-03-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031913-strider-may-return-xbox-entertainment-awards-site-hacked-and-eas-head-honcho-is-stepping-down","changefreq":"weekly","video":[{"title":"S1:E384 - Hard News 03/19/13 - Strider may return, Xbox Entertainment awards site hacked, and EA?s head honcho is stepping down?!","description":"[Rumor] Will Strider finally be reborn on the current generation of console? - http://www.screwattack.com/news/rumor-will-strider-finally-be-reborn-current-generation-console\r\n[ALERT!] A day into the Xbox Entertainment awards voting and they’re hacked - http://www.screwattack.com/news/alert-day-xbox-entertainment-awards-voting-and-they%E2%80%99re-hacked\r\nElectronic Arts CEO John Riccitiello steps down - http://www.screwattack.com/news/electronic-arts-ceo-john-riccitiello-steps-down\r\n\r\n\tFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-031913-strider-may-return-xbox-entertainment-awards-site-hacked-and-eas-head-honcho-is-stepping-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa3db410-d358-4605-8141-3f7d04e029d9/sm/video_thumbnail_9180471.png","duration":125,"publication_date":"2013-03-19T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steves-video-game-extravaganza-tetris","changefreq":"weekly","video":[{"title":"S1:E536 - Unaware Steve's Video Game Extravaganza: Tetris","description":"Unaware Steve gives you his expert advice on Tetris.","player_loc":"https://roosterteeth.com/embed/unaware-steves-video-game-extravaganza-tetris","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6719bc8-1751-4307-af72-61809f4b0efc/sm/video_thumbnail_9182106.jpg","duration":154,"publication_date":"2013-03-19T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-death-rally","changefreq":"weekly","video":[{"title":"S1:E390 - VGV - Death Rally","description":"You know what you're getting with a title like Death Rally. Death, racing, and Duke FREAKING Nukem!","player_loc":"https://roosterteeth.com/embed/vgv-death-rally","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92e124b4-f977-402c-9158-a4a48c4e33a6/sm/video_thumbnail_8853031.jpg","duration":98,"publication_date":"2013-03-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031813-saints-row-4-capcom-courts-dd-resident-evil-meet-left-4-dead","changefreq":"weekly","video":[{"title":"S1:E383 - Hard News 03/18/13 - Saints Row 4, Capcom courts D&D, Resident Evil meet Left 4 Dead","description":"[Report] Capcom's D&D beat’em ups will be bundled and ported to XBLA and PSN - http://www.screwattack.com/news/report-capcoms-dd-beat%E2%80%99em-ups-will-be-bundled-and-ported-xbla-and-psn\r\nValve and Capcom reveal Resident Evil 6 X Left 4 Dead 2 - http://www.screwattack.com/news/valve-and-capcom-reveal-resident-evil-6-x-left-4-dead-2\r\nHere is the Saints Row IV official trailer in case you missed it - http://www.screwattack.com/video/Saints-Row-IV-Official-Trailer-8995096\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-031813-saints-row-4-capcom-courts-dd-resident-evil-meet-left-4-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/039943b5-c9f8-4f45-81b0-8b944bd393b6/sm/video_thumbnail_9134241.jpg","duration":135,"publication_date":"2013-03-18T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-outtakes-a-very-screwattack-thanksgiving","changefreq":"weekly","video":[{"title":"S1:E184 - Clip of the Week Outtakes - A Very ScrewAttack Thanksgiving","description":"Craig still laughs at old memes, the crew sings MORE Disney songs, and Jared eats packing peanuts. LOTS of packing peanuts.\r\nSee the original Clip of the Week here.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-outtakes-a-very-screwattack-thanksgiving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":536,"publication_date":"2013-03-15T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-zelda-game","changefreq":"weekly","video":[{"title":"S1:E19 - The Worst Ever: Zelda Game","description":"All Zelda games are good, right? There could never be a WORST one! Evidently that's not the case.\r\nWhat's your worst Zelda game ever? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-zelda-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db33183c-2ec6-488b-b9ea-3e4cdd646fea/sm/video_thumbnail_8965391_0.jpg","duration":331,"publication_date":"2013-03-14T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031413-disney-infinity-delayed-nintendo-is-found-guilty-and-a-gamestop-exec-is-off-to-jail","changefreq":"weekly","video":[{"title":"S1:E382 - Hard News 03/14/13 - Disney Infinity delayed, Nintendo is found guilty, and a GameStop exec is off to jail","description":"Nintendo found guilty of Patent Infringment - http://www.screwattack.com/news/nintendo-found-guilty-patent-infringment\r\nGameStop VP is set to do hard time for embezzling money - http://www.screwattack.com/news/gamestop-vp-set-do-hard-time-embezzling-money\r\nDisney Infinity delayed until August is a strategic retailer move? - http://www.screwattack.com/news/disney-infinity-delayed-until-august-strategic-retailer-move\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-031413-disney-infinity-delayed-nintendo-is-found-guilty-and-a-gamestop-exec-is-off-to-jail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aace6975-d424-46ea-ae6b-6a05194dc7ba/sm/video_thumbnail_8948791.jpg","duration":166,"publication_date":"2013-03-14T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-darkstalkers-resurrection","changefreq":"weekly","video":[{"title":"S1:E32 - Out of the Box - Darkstalkers Resurrection ","description":"Darkstalkers has been resurrected! Can Capcom's latest re-issue of an old fan favorite create the spark needed to create a brand new Darkstalkers? Find out on Out of the Box!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-darkstalkers-resurrection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36903f61-b3f8-4ccd-84c2-1818948af7cc/sm/video_thumbnail_8899096.jpg","duration":1865,"publication_date":"2013-03-13T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-031313","changefreq":"weekly","video":[{"title":"S1:E535 - SideScrollers Extended 03/13/13","description":"Even more SideScrollers for Advantage Members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-031313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fdd7aa5-27e2-4d39-86e6-8fbb88ec6cbb/sm/video_thumbnail_8874871.jpg","duration":619,"publication_date":"2013-03-12T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"going-liam-neeson\"","changefreq":"weekly","video":[{"title":"S1:E107 - SideScrollers - \"Going Liam Neeson\"","description":"Does the episode contain one of the greatest stories ever told on ScrewAttack? The answer is yes.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"going-liam-neeson\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d285761d-5b40-47ac-9060-5ed59d9912cc/sm/video_thumbnail_8874876.jpg","duration":3134,"publication_date":"2013-03-12T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031213-theres-another-star-wars-game-vita-sees-a-price-drop-peta-is-doing-it-for-the-zerglings","changefreq":"weekly","video":[{"title":"S1:E381 - Hard News 03/12/13 - There's another Star Wars game, Vita sees a price drop, PETA is doing it for the Zerglings","description":"[Rumor] Sony stores giving the PS Vita a price drop - http://www.screwattack.com/news/rumor-sony-stores-giving-ps-vita-price-drop\r\n[Rumor] Prequel to Star Wars Battlefront III in development, but may never be released - http://www.screwattack.com/news/rumor-prequel-star-wars-battlefront-iii-development-may-never-be-released\r\nPETA now protesting mistreatment of Zerglings... you heard me - http://www.screwattack.com/news/peta-now-protesting-mistreatment-zerglings-you-heard-me\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.facebook.com/OfficialSA\r\nYoutube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-031213-theres-another-star-wars-game-vita-sees-a-price-drop-peta-is-doing-it-for-the-zerglings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92448de2-0e4e-4224-862e-e47a3229ce72/sm/video_thumbnail_8865781.png","duration":135,"publication_date":"2013-03-12T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-space-marines","changefreq":"weekly","video":[{"title":"S1:E71 - Top 10 Space Marines","description":"Stuttering Craig and Nick discuss the Top 10 Space Marines of all time.","player_loc":"https://roosterteeth.com/embed/top-10-space-marines","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5a7818a-d46e-4af9-b2d3-2528bb7aa253/sm/video_thumbnail_8866761.jpg","duration":466,"publication_date":"2013-03-12T19:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-rollercoaster-tycoon","changefreq":"weekly","video":[{"title":"S1:E389 - VGV - RollerCoaster Tycoon","description":"It's the sim game that actually lets you build death machines that people pay to go on. No wonder it's Nick's favorite.","player_loc":"https://roosterteeth.com/embed/vgv-rollercoaster-tycoon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/041a0c34-c50c-45a6-aee3-4659c6d16508/sm/video_thumbnail_8820366.jpg","duration":163,"publication_date":"2013-03-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031113-new-vault-hunter-for-borderlands-2-injustice-will-get-zombie-dlc-and-ea-is-giving-out-games-for-free","changefreq":"weekly","video":[{"title":"S1:E380 - Hard News 03/11/13 - New Vault Hunter for Borderlands 2, Injustice will get Zombie DLC, and EA is giving out games for free","description":"A sixth playable character has been teased for Borderlands 2 - http://www.screwattack.com/video/A-sixth-playable-character-has-been-teased-for-Borderlands-2-8707766\r\nEA to give SimCity players a free PC game as an apology for poor service - http://www.screwattack.com/news/ea-give-simcity-players-free-pc-game-apology-poor-service\r\n[Rumor] Injustice: God Among Us will be getting a zombie skin pack - http://www.screwattack.com/news/rumor-injustice-god-among-us-will-be-getting-zombie-skin-pack\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad – www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack – www.Twitter.com/ScrewAttack\r\nFacebook ScrewAttack – www.Facebook.com/OfficialSA\r\nYouTube ScrewAttack – www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-031113-new-vault-hunter-for-borderlands-2-injustice-will-get-zombie-dlc-and-ea-is-giving-out-games-for-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3d2eb05-bd4a-4b17-9102-1ca43c371791/sm/video_thumbnail_8814996.jpg","duration":152,"publication_date":"2013-03-11T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-8","changefreq":"weekly","video":[{"title":"S1:E534 - Real Trailers - Zelda Hardcore","description":"Check out the latest game in the Zelda franchise... that's not in the Zelda franchise.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e00c42af-5753-4c52-8d8a-8f433e3abfe3/sm/video_thumbnail_8773266.jpg","duration":71,"publication_date":"2013-03-10T22:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/choose-your-adventure-dark-secrets-from-nicks-notebook","changefreq":"weekly","video":[{"title":"S1:E533 - Choose Your Adventure - Dark Secrets from Nick's Notebook","description":"Eight-year-old Nick had some things to say... and apparently, a lot of them weren't nice.\r\nWatching on some fancy-schmancy smart phone?  Use these instead:\r\n\tChoice 1\r\n\tChoice 2\r\n\tChoice 3","player_loc":"https://roosterteeth.com/embed/choose-your-adventure-dark-secrets-from-nicks-notebook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/526eab21-2477-41a5-bfdb-916acc2ed53e/sm/video_thumbnail_8673786.jpg","duration":82,"publication_date":"2013-03-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-deal-of-the-week-030813","changefreq":"weekly","video":[{"title":"S1:E532 - ScrewAttackStore's Deal of the Week! (03/08/13)","description":"Ben chooses what item you can save money on this week at ScrewAttackStore.com!\r\nMake sure to take a look at all our other fantastic deals and come back every Friday for a new Deal of the Week!","player_loc":"https://roosterteeth.com/embed/screwattackstores-deal-of-the-week-030813","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91255a94-f9b6-49ab-acd5-8b97690c0973/sm/video_thumbnail_8669631.jpg","duration":63,"publication_date":"2013-03-08T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steves-video-game-extravaganza-mario","changefreq":"weekly","video":[{"title":"S1:E531 - Unaware Steve's Video Game Extravaganza - Mario","description":"Unaware Steve gives his expert advice on Super Mario Bros.","player_loc":"https://roosterteeth.com/embed/unaware-steves-video-game-extravaganza-mario","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1989629d-3610-4a36-880b-9a7dad6925d5/sm/video_thumbnail_8669366.png","duration":205,"publication_date":"2013-03-08T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030813-nintendos-on-disc-dlc-inxiles-kickstarter-record-simcity-trouble-is-no-simulation-for-ea","changefreq":"weekly","video":[{"title":"S1:E379 - Hard News 03/08/13 - Nintendo's On Disc DLC, inXile's Kickstarter Record, SimCity trouble is no simulation for EA.","description":" \r\n \r\nToday on Hard News, F-Zero AX was always on the disc, inXile sets a Kickstarter record, and EA has all kinds of trouble with SimCity\r\n \r\nF-Zero GX and AX share a disc - http://www.screwattack.com/news/so-it-looks-owners-f-zero-gx-also-own-f-zero-ax\r\nTorment: Tides of Numeria's Kickstarter record: http://www.screwattack.com/news/torment-tides-numeria-not-only-funded-record-time\r\nSimCity pulled from Amazon - http://www.screwattack.com/news/simcity-has-been-pulled-amazoncom\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-030813-nintendos-on-disc-dlc-inxiles-kickstarter-record-simcity-trouble-is-no-simulation-for-ea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2673125f-e44d-4b1f-adbb-2da6ff19435a/sm/video_thumbnail_8667961.png","duration":131,"publication_date":"2013-03-08T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-thq-game","changefreq":"weekly","video":[{"title":"S1:E18 - The Best EVER: THQ Game","description":"S1:E18 - The Best EVER: THQ Game","player_loc":"https://roosterteeth.com/embed/the-best-ever-thq-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0f9f9d1-48c9-46e3-865b-201132ef3843/sm/video_thumbnail_8635586.jpg","duration":294,"publication_date":"2013-03-07T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-the-total-destruction-kermit-the-frog-edition","changefreq":"weekly","video":[{"title":"S1:E530 - [Advantage Content] The Total Destruction: Kermit the Frog Edition","description":"Kermit the Frog wouldn't let us spoof his famous song without allowing him to do his own rendition, so... here it is.","player_loc":"https://roosterteeth.com/embed/advantage-content-the-total-destruction-kermit-the-frog-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fe77f5d-a024-4449-8b80-852f46edfc10/sm/video_thumbnail_8632631.jpg","duration":249,"publication_date":"2013-03-07T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030713-the-ghost-of-1993-returns-dead-space-3-has-dlc-on-the-way-and-far-cry-3-has-a-spin-off-title","changefreq":"weekly","video":[{"title":"S1:E378 - Hard News 03/07/13 - The ghost of 1993 returns, Dead Space 3 has DLC on the way, and Far Cry 3 has a spin-off title?","description":" \r\nToday on Hard News, the ghost of 1993 returns, Dead Space 3 has DLC coming, and Far Cry 3 has a spin-off title?\r\n \r\nThe 7th Guest returns - http://www.screwattack.com/news/ghost-1993-returns-7th-guest-3\r\nDead Space 3: Awakened - http://www.screwattack.com/news/ea-ready-you-revisit-terra-nova-dead-space-3-awakened\r\nFar Cry 3: Blood Dragon - http://www.screwattack.com/news/rumor-will-far-cry-3-be-getting-crazy-spin-called-blood-dragon\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-030713-the-ghost-of-1993-returns-dead-space-3-has-dlc-on-the-way-and-far-cry-3-has-a-spin-off-title","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e26283f6-6afa-4a0c-828d-991005315fd4/sm/video_thumbnail_8619201.png","duration":126,"publication_date":"2013-03-07T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/10-reasons-we-hate-wii-sports-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E6 - 10 Reasons We HATE Wii Sports with Evil Craig","description":"Why does Evil Craig hate the most bought game in history? Why doesn't he?","player_loc":"https://roosterteeth.com/embed/10-reasons-we-hate-wii-sports-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d61e67bc-87c5-440e-b84d-9bd125aa7265/sm/video_thumbnail_8585256.jpg","duration":45,"publication_date":"2013-03-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-tomb-raider","changefreq":"weekly","video":[{"title":"S1:E31 - Out of the Box - Tomb Raider","description":"It's time to go raiding tombs on Out of the Box! Will Lara's reboot give the franchise the fresh start it needs?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57f74fa1-6921-4f2f-88e3-df21af377ef7/sm/video_thumbnail_8572376.jpg","duration":1961,"publication_date":"2013-03-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030613-learn-the-way-of-the-dogg-lost-planet-3-finds-a-release-date-and-peta-attacks-assassins-creed-","changefreq":"weekly","video":[{"title":"S1:E377 - Hard News 03/06/13 - Learn the way of the Dogg, Lost Planet 3 finds a release date, and PETA attacks Assassin's Creed .","description":" \r\nToday on Hard News, learn the way of the Dogg, Lost Planet 3 finds a release date, and PETA attacks Assassin's Creed.\r\n \r\nWay of the Dogg - http://www.joystiq.com/2013/03/05/way-of-the-dogg-combines-fighting-music-games-and-snoop/\r\nLost Planet 3 has an official date - http://www.screwattack.com/news/lost-planet-3-has-official-release-date-and-introduces-story\r\nPETA goes after AC4 for whaling - http://www.screwattack.com/news/peta-attacks-assassins-creed-iv-whaling\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-030613-learn-the-way-of-the-dogg-lost-planet-3-finds-a-release-date-and-peta-attacks-assassins-creed-","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d254c9bb-b99b-488a-94c2-6951b29c5b61/sm/video_thumbnail_8584681.png","duration":154,"publication_date":"2013-03-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sgc-2013-the-official-home-of-the-iguanaacclaim-reunion","changefreq":"weekly","video":[{"title":"S1:E529 - SGC 2013 - The Official Home of the Iguana/Acclaim Reunion!","description":"SGC will serve as the reunion for some very influential developers and we couldn't be more proud.  You won't believe some of the games these guys worked on!","player_loc":"https://roosterteeth.com/embed/sgc-2013-the-official-home-of-the-iguanaacclaim-reunion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/280520eb-7de1-4ffa-ae8f-fc0ec2ac65c5/sm/video_thumbnail_8550011.jpg","duration":68,"publication_date":"2013-03-05T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-030513","changefreq":"weekly","video":[{"title":"S1:E528 - SideScrollers Extended 03/05/13","description":"Extra SideScrollers just for Advantage Members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-030513","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22c42636-31ab-4d4b-a251-10cbe9977aaa/sm/video_thumbnail_8556916.jpg","duration":673,"publication_date":"2013-03-05T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"what-happens-in-vegas-\"","changefreq":"weekly","video":[{"title":"S1:E106 - SideScrollers - \"What Happens in Vegas...\"","description":"With \"the wheel\" giving Chad and Craig the week off, Sean, Ben and Nick share stories about their day trip to Vegas... or do they?","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"what-happens-in-vegas-\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1570c29-54b2-45f2-849e-068648c61112/sm/video_thumbnail_8556881.jpg","duration":3607,"publication_date":"2013-03-05T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030513-a-new-thief-is-discovered-activision-brings-tmnt-out-of-the-shadows-and-an-ex-cod-mans-new-game","changefreq":"weekly","video":[{"title":"S1:E376 - Hard News 03/05/13 - A new Thief is discovered, Activision brings TMNT out of the shadows, and an ex-CoD man's new game.","description":"Today on Hard News, a new Thief is discovered, Activision brings TMNT out of the shadows, and an ex-CoD man's new game.\r\n \r\nThief rebooted - http://www.screwattack.com/news/thief-reveals-itself-reboot-next-gen-consoles\r\nTMNT Out of the Shadows - http://www.screwattack.com/news/activision-takes-lid-new-game-tmnt-out-shadows\r\nThe Adventures of Dash - http://www.screwattack.com/news/%E2%80%9Cadventures%E2%80%9D-dash-collection-dreams-robert-bowling-and-company\r\nSGC! - http://www.sgconvention.com\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-030513-a-new-thief-is-discovered-activision-brings-tmnt-out-of-the-shadows-and-an-ex-cod-mans-new-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aa655e5-8e0d-4bd3-9f69-84555cd5326f/sm/video_thumbnail_8547871.png","duration":141,"publication_date":"2013-03-05T13:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-axelay","changefreq":"weekly","video":[{"title":"S1:E388 - VGV - Axelay","description":"Is this one of the most overlooked shmups in history? Craig thinks so.","player_loc":"https://roosterteeth.com/embed/vgv-axelay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22e23237-4d58-4110-8be3-abe8381df3a4/sm/video_thumbnail_8083321.jpg","duration":98,"publication_date":"2013-03-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030413-assassins-creed-4-is-official-lauren-faust-joins-mane6-and-what-is-happening-with-ipl6","changefreq":"weekly","video":[{"title":"S1:E375 - Hard News 03/04/13 - Assassin's Creed 4 is official, Lauren Faust joins Mane6, and what is happening with IPL6?","description":" \r\nToday on Hard News, Assassin's Creed 4 has a trailer, Lauren Faust joins Mane6, and what is going on with IPL6?\r\n \r\nAssassin's Creed 4 trailer - http://www.screwattack.com/news/assassins-creed-4-black-flag-trailer-leaks-and-then-officially-revealed\r\nLauren Faust joins Mane6 - http://www.screwattack.com/news/lauren-faust-joins-mane6-team-fighting-magic-reborn\r\nIGN ProLeague event reportedly canceled - http://www.joystiq.com/2013/03/01/rumor-igns-ipl6-esports-tournament-canceled/\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-030413-assassins-creed-4-is-official-lauren-faust-joins-mane6-and-what-is-happening-with-ipl6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5084a7f-c8a5-4b9e-8b28-bd2007fa53b7/sm/video_thumbnail_8516136.png","duration":149,"publication_date":"2013-03-04T15:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-9","changefreq":"weekly","video":[{"title":"S1:E527 - Real Trailers - Saints Row the Third","description":"The Saints are back... with three feet of justice!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71d9ccb6-2ab6-443c-ae89-2dad203f241b/sm/video_thumbnail_8417371.jpg","duration":75,"publication_date":"2013-03-03T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-screwattacks-gone-broke","changefreq":"weekly","video":[{"title":"S1:E183 - The Clip - ScrewAttack's Gone Broke","description":"When Craig marks the most important day in ScrewAttack's life by making a substantial investment in a totally legitimate African mining corporation, there's only one solution to solving our financial woes...\r\n \r\nFollow ScrewAttack and stuff:\r\n\tFacebook\r\n\tTwitter\r\nAnd Nick, too.  Because he's asking nicely this time.\r\n\tFacebook\r\n\tTwitter","player_loc":"https://roosterteeth.com/embed/the-clip-screwattacks-gone-broke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa5b2352-90bd-4e14-85f3-b3bfa19281df/sm/clipthumb.jpg","duration":90,"publication_date":"2013-03-01T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030113-assassins-creed-4-revealed-sakurais-health-may-hinder-smash-and-a-few-things-you-mightve-missed","changefreq":"weekly","video":[{"title":"S1:E374 - Hard News 03/01/13 - Assassin's Creed 4 revealed, Sakurai's health may hinder Smash, and a few things you might've missed!","description":" \r\nToday on Hard News, Ubisoft reveals Assassin's Creed 4, Sakurai's health may hinder Smash's development, and a few things you might've missed.\r\n \r\nAssassin's Creed 4 - http://www.screwattack.com/news/update-ubisoft-officially-reveals-assassins-creed-iv-black-flag\r\nSakurai's health to hinder Smash development? http://www.screwattack.com/news/find-out-why-development-next-smash-bros-impacted-arm-injury\r\nZeus and Isaac in PSABR - http://www.screwattack.com/news/zeus-and-isaac-clarke-will-join-playstation-all-star-battle-royale-roster\r\nQ&A with American McGee - http://www.screwattack.com/news/qa-screwattack-sits-down-american-mcgee-talk-about-little-red-riding-hood-and-spicy-horses\r\nRegister for SGC! - http://sgconvention.com/\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack\r\nRegister for SGC! - http://sgconvention.com/","player_loc":"https://roosterteeth.com/embed/hard-news-030113-assassins-creed-4-revealed-sakurais-health-may-hinder-smash-and-a-few-things-you-mightve-missed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca31ca9e-aaf7-4c94-8419-c12a590ec254/sm/video_thumbnail_8409851.jpg","duration":148,"publication_date":"2013-03-01T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/andres-best-ever-mario-game","changefreq":"weekly","video":[{"title":"S1:E17 - Andre's Best EVER Mario Game","description":"Click here to see The Best EVER Mario Game!","player_loc":"https://roosterteeth.com/embed/andres-best-ever-mario-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e91550b0-7fbf-4def-b3c7-068bfc211faf/sm/video_thumbnail_8390991_0.jpg","duration":203,"publication_date":"2013-03-01T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/12-reasons-we-hate-the-ps4-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E5 - 12 Reasons We HATE the PS4 with Evil Craig","description":"Sony's new console has been announced... and Evil Craig hates it.","player_loc":"https://roosterteeth.com/embed/12-reasons-we-hate-the-ps4-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2885c4c-6ece-4d26-a6fc-219248da9181/sm/video_thumbnail_8356896.jpg","duration":50,"publication_date":"2013-02-27T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-022713","changefreq":"weekly","video":[{"title":"S1:E526 - SideScrollers Extended 02/27/13","description":"S1:E526 - SideScrollers Extended 02/27/13","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-022713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c47cfb64-aae3-4730-8123-d4c9a1e3206f/sm/video_thumbnail_8328826.jpeg","duration":957,"publication_date":"2013-02-26T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"sex-through-a-house\"","changefreq":"weekly","video":[{"title":"S1:E105 - SideScrollers - \"Sex Through a House\"","description":"Because sometimes when you can't wait to get home you end up going through a home.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"sex-through-a-house\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc8894f9-aa0b-477f-8bad-ed51262bf7e4/sm/video_thumbnail_8328811.jpg","duration":3419,"publication_date":"2013-02-26T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022613-the-wii-mini-crosses-the-pond-revengeances-dlc-and-already-announced-vita-bioshock-hasnt-begun-development","changefreq":"weekly","video":[{"title":"S1:E373 - Hard News 02/26/13 - The Wii Mini crosses the pond, Revengeance's DLC, and already announced Vita Bioshock hasn't begun development?","description":" \r\nToday on Hard News, the Wii Mini crosses the pond, Revengeance's DLC, and the  announced 18 months ago Bioshock for the Vita hasn't begun development yet!\r\n \r\nWii Mini to Europe - http://www.screwattack.com/news/wii-mini-coming-europe-march-year\r\nMetal Gear Rising: Revengeance's DLC - http://www.screwattack.com/news/metal-gear-rising-revengeance-dlc-looks-very-promising-fans\r\nBioshock for the Vita yet to begin development - http://www.screwattack.com/news/18-months-after-its-reveal-development-bioshock-vita-hasn%E2%80%99t-even-started\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-022613-the-wii-mini-crosses-the-pond-revengeances-dlc-and-already-announced-vita-bioshock-hasnt-begun-development","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bec5d2e-5464-4b42-9ce3-38bbc91b2ee7/sm/video_thumbnail_8322401.png","duration":152,"publication_date":"2013-02-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-capcoms-arcade-cabinet-pt-1","changefreq":"weekly","video":[{"title":"S1:E30 - Out of the Box - Capcom's Arcade Cabinet Pt. 1","description":"This time on Out of the Box, we're looking at the first part of Capcom's Arcade Cabinet! Will this trip down memory lane have people lining up to put down their virtual quarter?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-capcoms-arcade-cabinet-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/468c0160-1e99-4b88-9558-480c08198fcb/sm/video_thumbnail_8314696.jpg","duration":1672,"publication_date":"2013-02-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-the-ultimate-stuntman","changefreq":"weekly","video":[{"title":"S1:E387 - VGV - The Ultimate Stuntman","description":"Unlicensed NES games were rarely ever good for anything... unless if it was made by Codemasters.","player_loc":"https://roosterteeth.com/embed/vgv-the-ultimate-stuntman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8749a9e6-5a54-44b9-a4e2-831fb36e7a91/sm/video_thumbnail_8316181.jpg","duration":142,"publication_date":"2013-02-26T09:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022513-uncharted-3-free-to-play-kingdom-hearts-remixes-to-the-west-and-team-meats-new-game","changefreq":"weekly","video":[{"title":"S1:E372 - Hard News 02/25/13 - Uncharted 3 free to play, Kingdom Hearts ReMIXes to the west, and Team Meat's new game","description":" \r\nToday on Hard News, Uncharted 3 could be free to play, Kingdom Heart's ReMIX heads west, and Team Meat's new game.\r\n \r\nUncharted 3 free to play - http://www.screwattack.com/news/rumor-sony-might-be-making-uncharted-3-multiplayer-free-play\r\nKingdom Hearts HD 1.5 ReMIX - http://www.screwattack.com/news/square-enix-confirms-kingdom-hearts-hd-15-remix-west\r\nTeam Meat's Mew-Genics - http://www.screwattack.com/news/team-meat-finally-lets-mew-genics-details-loose\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-022513-uncharted-3-free-to-play-kingdom-hearts-remixes-to-the-west-and-team-meats-new-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06f3b7b9-cea7-4ed9-8690-f09444475ef7/sm/video_thumbnail_8285501.png","duration":149,"publication_date":"2013-02-25T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-takes-on-nathan-and-tom-in-the-latest-episode-beat-tom","changefreq":"weekly","video":[{"title":"S1:E525 - Craig takes on Nathan and Tom in the latest episode \"Beat Tom\"","description":"Can he overcome the odds and take down to gaming giants in Wayne Gretzky's 3D Hockey?","player_loc":"https://roosterteeth.com/embed/craig-takes-on-nathan-and-tom-in-the-latest-episode-beat-tom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cb69d0d-9a7f-4c16-be80-901643348329/sm/video_thumbnail_8286521.png","duration":671,"publication_date":"2013-02-25T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-10","changefreq":"weekly","video":[{"title":"S1:E524 - Real Trailers - Xbox 720","description":"This is it. We have the world debut trailer for Microsoft's brand new console!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/352e49ca-24c3-4a22-a3d0-c4b06ffcd3df/sm/video_thumbnail_8255281.jpg","duration":92,"publication_date":"2013-02-24T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/choose-your-adventure-metal-gear","changefreq":"weekly","video":[{"title":"S1:E523 - Choose Your Adventure - Metal Gear","description":"With Metal Gear Revengeance coming out this week, it got us to thinking: what if the ScrewAttack HQ was a little more Metal Gear?","player_loc":"https://roosterteeth.com/embed/choose-your-adventure-metal-gear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/598c5475-1622-4f33-8cce-eded663053a1/sm/video_thumbnail_8155651.png","duration":35,"publication_date":"2013-02-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-ninja-turtle","changefreq":"weekly","video":[{"title":"S1:E522 - Unaware Steve - Ninja Turtle","description":"Steve is now a Ninja Turtle???","player_loc":"https://roosterteeth.com/embed/unaware-steve-ninja-turtle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f02edd7d-a1c6-4347-92ce-617dfa5b6f60/sm/video_thumbnail_8158631.jpg","duration":215,"publication_date":"2013-02-22T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-avgn-moments-of-2008","changefreq":"weekly","video":[{"title":"S1:E70 - Top 10 AVGN Moments of 2008","description":"Here are the best Angry Video Game Nerd moments of 2008","player_loc":"https://roosterteeth.com/embed/top-10-avgn-moments-of-2008","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6a12e24-38fb-4003-b1c1-1d1eb536d486/sm/video_thumbnail_8158406.jpg","duration":768,"publication_date":"2013-02-22T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022213-bioshock-infinites-season-pass-ratchet-and-clanks-free-games-and-ign-cleans-house","changefreq":"weekly","video":[{"title":"S1:E371 - Hard News 02/22/13 - Bioshock Infinite's season pass, Ratchet and Clank's free games, and IGN cleans house","description":" \r\nToday on Hard News, Bioshock Infinite's season pass simplifies things, Ratchet and Clank's free games, and IGN cleans house in the wake of being aquired by Ziff Davis\r\n \r\nBioshock Infinite's season pass - http://www.screwattack.com/news/bioshock-infinite-season-pass-announced\r\nRatchet and Clank delay means free games - http://www.screwattack.com/news/sony-giving-ratchet-and-clank-owners-2-free-games\r\nThe end of 1-Up, Gamespy, and UGO - http://www.screwattack.com/news/end-1-gamespy-and-ugo\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-022213-bioshock-infinites-season-pass-ratchet-and-clanks-free-games-and-ign-cleans-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d093435-1098-42ae-8e07-9e075f8df644/sm/video_thumbnail_8158386.png","duration":146,"publication_date":"2013-02-22T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-mario-game","changefreq":"weekly","video":[{"title":"S1:E16 - The Best EVER: Mario Game","description":"He is literally the face of video games, so how can we pick just one Mario title over the rest? Also, we discover one of Craig's most surreal childhood memories!","player_loc":"https://roosterteeth.com/embed/the-best-ever-mario-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6b59798-c382-4f1d-ab70-ad1ea6958fcc/sm/video_thumbnail_8133916.jpg","duration":290,"publication_date":"2013-02-21T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022113-chad-talks-about-the-playstation-4-pretty-much","changefreq":"weekly","video":[{"title":"S1:E370 - Hard News 02/21/13 - Chad talks about the PlayStation 4, pretty much","description":"Today on Hard News, PlayStation 4.  Just PlayStation 4.\r\nPost-show conversation with ScrewAttack crew about PS4\r\nLet’s take a nice long look at the new Dual Shock 4 and PS4 Eye\r\n\tThe PlayStation 4 will not block used games thankfully\r\n\tSony WWS President Shuhei Yoshida confirms PSN games will not transfer to PS4\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Chad - Twitter.com/ScrewAttackChad\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA\r\n\tYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-022113-chad-talks-about-the-playstation-4-pretty-much","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad1c6da0-9abe-4e1a-8b25-88a988819434/sm/video_thumbnail_8126611.jpg","duration":193,"publication_date":"2013-02-21T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-022013","changefreq":"weekly","video":[{"title":"S1:E521 - SideScrollers Extended 02/20/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-022013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80c0fce4-eb08-424a-ab18-c1035f9b2ee4/sm/video_thumbnail_8122291.jpg","duration":655,"publication_date":"2013-02-21T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/11-reasons-we-hate-street-fighter-2-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E4 - 11 Reasons We HATE Street Fighter 2 with Evil Craig","description":"Evil Craig is back with 11 Reasons We HATE Street Fighter II.\r\n\r\n\tChun-Li's sweaty nipple link.","player_loc":"https://roosterteeth.com/embed/11-reasons-we-hate-street-fighter-2-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3317129e-8438-492b-ba7b-fabfdf12d434/sm/video_thumbnail_7881816.jpg","duration":52,"publication_date":"2013-02-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-crysis-3","changefreq":"weekly","video":[{"title":"S1:E19 - Out of the Box - Crysis 3","description":"Is Crysis 3 worth your hard earned cash? Craig and Bryan take a look on Out of the Box.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-crysis-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fbb2be2-ec00-48a6-a30a-375f3a57f413/sm/video_thumbnail_8084276.jpg","duration":1381,"publication_date":"2013-02-20T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"flaming-nut-hump\"","changefreq":"weekly","video":[{"title":"S1:E104 - SideScrollers - \"Flaming Nut Hump\"","description":"The title to this episode can't be more accurate. Who's humping flaming nuts and why?  Is it this week's guest host Nick?","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"flaming-nut-hump\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f65ab6c7-fe97-4142-b2f2-02baa55c0ed7/sm/video_thumbnail_8063051.jpg","duration":3246,"publication_date":"2013-02-19T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021913-blizzcon-is-on-hotline-miami-heads-to-ps3-and-vita-and-rock-band-dlcs-days-are-numbered","changefreq":"weekly","video":[{"title":"S1:E369 - Hard News 02/19/13 - BlizzCon is on, Hotline Miami heads to PS3 and Vita, and Rock Band DLC's days are numbered","description":" \r\nToday on Hard News, the Blizzcon is on, Hotline Miami heads to PS3 and Vita,  and Rock Band DLC's days are numbered.\r\n \r\nBlizzCon returns in November - http://www.screwattack.com/news/actiblizz-announces-blizzcon-set-return-november\r\nHotline Miami to PS3, Vita - http://www.screwattack.com/news/it-looks-hyper-violent-indie-game-hotline-miami-coming-psn\r\nRock Band DLC ending - http://www.screwattack.com/news/rock-band-dlc-ending-after-5-years-and-4000-songs\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021913-blizzcon-is-on-hotline-miami-heads-to-ps3-and-vita-and-rock-band-dlcs-days-are-numbered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e2bb968-5d48-46ce-be1e-37abda484981/sm/video_thumbnail_8050541.png","duration":128,"publication_date":"2013-02-19T13:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021813-a-vita-price-cut-skullgirls-crowdsourcing-dlc-funds-and-bungies-destiny-revealed","changefreq":"weekly","video":[{"title":"S1:E368 - Hard News 02/18/13 - A Vita price cut, Skullgirls crowdsourcing DLC funds, and Bungie's Destiny revealed","description":" \r\nToday on Hard News, the Vita gets a price cut, Skullgirls looks to crowdsource DLC funding, and Bungie's Destiny has been revealed!\r\n \r\nVita's price cut in Japan - http://www.screwattack.com/news/sony-japan-release-price-cut-playstation-vita\r\nSkullgirls to crowdsource DLC funding - http://www.screwattack.com/news/skullgirls-dev-team-turns-crowd-funding-back-dlc-development\r\nBungie's Destiny revealed - http://www.screwattack.com/video/Bungies-Destiny-has-been-revealed--7996286\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021813-a-vita-price-cut-skullgirls-crowdsourcing-dlc-funds-and-bungies-destiny-revealed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f747bc8e-8236-46e2-8488-681cb2943a16/sm/video_thumbnail_8024871.jpg","duration":141,"publication_date":"2013-02-18T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-11","changefreq":"weekly","video":[{"title":"S1:E520 - Real Trailers - New Super Mario Bros U","description":"What the trailer for New Super Mario Bros U SHOULD have said.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcf22646-0de4-42cb-b2da-f2f7d872c9e8/sm/video_thumbnail_7881271.jpg","duration":85,"publication_date":"2013-02-17T21:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-the-total-destruction-feat-brentalfloss","changefreq":"weekly","video":[{"title":"S1:E182 - The Clip - The Total Destruction (feat. brentalfloss)","description":"Bryan knows the pain of every Q player; when you try forcing your opponent into performing a sex act, it very seldom works out in your favor.\r\nSpecial thanks to brentalfloss for help with the lyrics and his vocal talent!\r\nSpecial thanks to Heart Strings Cosplay and Bunny Ayumi for Ibuki and Sakura!","player_loc":"https://roosterteeth.com/embed/the-clip-the-total-destruction-feat-brentalfloss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba3b295f-c07e-416c-bfca-0d010c2893fb/sm/totaldestructionthumb.jpg","duration":249,"publication_date":"2013-02-16T08:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021513-a-gears-of-war-kinect-game-free-game-with-a-3ds-xl-and-screwattack-turns-7","changefreq":"weekly","video":[{"title":"S1:E367 - Hard News 02/15/13 - A Gears of War Kinect game, free game with a 3DS XL, and ScrewAttack turns 7!","description":" \r\nToday on Hard News, a Gears of War Kinect game, free games with a 3DS XL, and ScrewAttack turns 7!\r\n \r\nGears of War Kinect RTS - http://www.screwattack.com/news/rumor-gears-war-rts-powered-buy-kinect-has-surfaced\r\nFree game with a 3DS XL purchase - http://www.screwattack.com/news/nintendo-direct-casually-mentions-new-3ds-xl-promotion-free-game\r\n \r\nDone with Hard News? See what the crew is up to on the 24 Hour Marathon! - http://www.screwattack.com/shows/originals/screwin-around/screwattacks-7th-birthday-24-hour-marathon\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021513-a-gears-of-war-kinect-game-free-game-with-a-3ds-xl-and-screwattack-turns-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffe64962-e595-49bc-bb4d-1e41a74d4abd/sm/video_thumbnail_7937206.png","duration":115,"publication_date":"2013-02-15T13:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021413-2013-is-the-year-of-luigi-theres-plenty-coming-for-3ds-and-that-includes-a-trip-to-donkey-kong-country","changefreq":"weekly","video":[{"title":"S1:E366 - Hard News 02/14/13 - 2013 is the year of Luigi, there's plenty coming for 3DS, and that includes a trip to Donkey Kong Country","description":" \r\nToday on Hard News, 2013 is the year of Luigi, 3DS fans have a lot to anticipate, including a trip to Donkey Kong Country.\r\n \r\nThe Year of Luigi - http://www.screwattack.com/news/lets-look-why-nintendo-thinks-2013-will-be-year-luigi\r\nToday's Nintendo Direct - http://www.screwattack.com/video/Its-time-for-a-Valentines-Day-Nintendo-Direct-g1s-7900976\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021413-2013-is-the-year-of-luigi-theres-plenty-coming-for-3ds-and-that-includes-a-trip-to-donkey-kong-country","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a9938e9-085e-4ecc-badf-1264fa993bac/sm/video_thumbnail_7914561.png","duration":176,"publication_date":"2013-02-14T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-special-edition-lets-look-at-wii-street-u","changefreq":"weekly","video":[{"title":"S1:E29 - Out of the Box Special Edition - Let's Look at Wii Street U","description":"With the news of this new Wii U app being available today we thought we'd take a look at it and show you if it's worth your time.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-special-edition-lets-look-at-wii-street-u","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ac5433b-ecde-4fbc-b5b1-cd23eede0247/sm/video_thumbnail_7907686.png","duration":837,"publication_date":"2013-02-14T13:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-aliens-colonial-marines","changefreq":"weekly","video":[{"title":"S1:E28 - Out of the Box - Aliens: Colonial Marines","description":"Except for a review or two, Aliens: Colonial Marines has tanked when it comes to critic's opinions. Craig and Bryan are cracking open a fresh copy of the game to find out if Gearbox's latest game is as bad as everyone has said it is.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-aliens-colonial-marines","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6cf9851-fd3e-4c22-9752-eb14d131f482/sm/video_thumbnail_7876026.png","duration":3475,"publication_date":"2013-02-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021313-aquaman-to-fight-injustice-doa5-breasts-jiggle-with-six-axis-and-ea-confirms-a-next-gen-fear","changefreq":"weekly","video":[{"title":"S1:E365 - Hard News 02/13/13 - Aquaman to fight injustice, DOA5 breasts jiggle with Six-Axis, and EA confirms a next-gen fear?","description":" \r\n \r\nToday on Hard News, Aquaman will fight injustice, Six-Axis will make breasts jiggle in DOA5, and has EA confirmed a next-gen fear?\r\n \r\nAquaman revealed for Injustice - http://www.screwattack.com/news/aquaman-reveal-trailer-injustice-gods-among-us-released\r\nEA CFO claims next-gen not backwards compatible - http://www.screwattack.com/news/ea-cfo-claims-next-generation-consoles-will-not-be-backwards-compatible\r\nDOA5's Six-Axis Breasts - http://www.screwattack.com/news/latest-patch-doa5-returns-boob-physics-six-axis-controls\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021313-aquaman-to-fight-injustice-doa5-breasts-jiggle-with-six-axis-and-ea-confirms-a-next-gen-fear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ed10f77-7253-4d18-9dab-c61bec4460c4/sm/video_thumbnail_7884421.png","duration":158,"publication_date":"2013-02-13T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-eve-online-battle-does-250k-damage-titanfall-beta-confirmed-sly-cooper-movie-announced","changefreq":"weekly","video":[{"title":"RN:E107 - EVE Online Battle Does $250k+ Damage + Titanfall Beta Confirmed + Sly Cooper Movie Announced ","description":"The biggest battle ever in EVE Online's 10 year history has done hundreds of thousands of dollars in damage. Respawn has confirmed that Titanfall will have an open beta, with rumors suggesting a February 14 date. Details have leaked about just how Nintendo intends to tackle the smartphone market. A Sly Cooper movie has been announced for 2016.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-eve-online-battle-does-250k-damage-titanfall-beta-confirmed-sly-cooper-movie-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d629c90-e285-4c53-9d81-3c8e36c8f8b4/sm/ep8708.jpg","duration":278,"publication_date":"2014-01-28T15:47:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-ms-acquires-gears-of-war-halo-series-director-rumored-collective-crowd-funding-launches","changefreq":"weekly","video":[{"title":"RN:E106 - MS Acquires Gears Of War + Halo Series Director Rumored + Collective Crowd Funding Launches ","description":"Microsoft has acquired the rights to the Gears of War series from Epic Games and turned development over to Black Tusk Studios. Neill Blomkamp is rumored to be directing the pilot for the Halo tv series, with Steve Spielberg producing. Square Enix has launched its curated crowdfunding project, Collective, with 3 pilot games: Game of Glen, Moon Hunters, and World War Machine.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-ms-acquires-gears-of-war-halo-series-director-rumored-collective-crowd-funding-launches","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78a7ad94-800c-4f04-8436-f46871fd58ea/sm/ep8707.jpg","duration":287,"publication_date":"2014-01-27T15:46:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-possible-ps-vita-slim-release-kingdom-come-kickstarted-dice-teases-star-wars-battlefront","changefreq":"weekly","video":[{"title":"RN:E105 - Possible PS Vita Slim Release + Kingdom Come Kickstarted + DICE Teases Star Wars Battlefront ","description":"Sony will take PSN down for maintenance on Monday, and have teased what is likely to be an announcement of the PS Vita Slim for release in western markets. Warhorse Studio's Kingdom Come: Deliverance has been successfully kickstarted after only two days. DICE want your input on Battlefield 4 balancing, and have teased their work on their upcoming Star Wars Battlefront game.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-possible-ps-vita-slim-release-kingdom-come-kickstarted-dice-teases-star-wars-battlefront","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9789d0bc-2f1b-4eb8-be87-c786d2a23dc0/sm/ep8706.jpg","duration":218,"publication_date":"2014-01-24T15:47:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-4","changefreq":"weekly","video":[{"title":"2014:E36 - The Patch #36","description":"The Patch Discusses DR3 DLC","player_loc":"https://roosterteeth.com/embed/the-patch-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3747,"publication_date":"2014-01-23T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-first-shadow-of-mordor-gameplay-tomb-raider-framerate-differences-esos-star-studded-cast","changefreq":"weekly","video":[{"title":"RN:E104 - First Shadow of Mordor Gameplay + Tomb Raider Framerate Differences + ESO's Star-Studded Cast","description":"Warner Bros. has unleashed the first gameplay of Shadow of Mordor, Monolith's return to the Lord of the Rings universe, showing off its unique gameplay elements. Crystal Dynamics has demonstrated the changes they've made to Tomb Raider Definitive Edition to make it next-gen, and it looks like PS4 will run at 60fps while Xbox One will run at 30fps. Bethesda has announced the star-studded cast of The Elder Scrolls Online, with the talent of Lynda Carter, John Cleese, Bill Nighy, Kate Beckinsale, Alfred Molina, Michael Gambon, Malcolm McDowell, and Jennifer Hale.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-first-shadow-of-mordor-gameplay-tomb-raider-framerate-differences-esos-star-studded-cast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3187bce-6ae3-4bc3-8db4-1b48cfb12625/sm/ep8705.jpg","duration":277,"publication_date":"2014-01-23T15:43:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-nintendos-next-hardware-rumored-hearthstone-hits-open-beta-candy-crush-vs-banner-saga","changefreq":"weekly","video":[{"title":"RN:E103 - Nintendo's Next Hardware Rumored + Hearthstone Hits Open Beta + Candy Crush vs Banner Saga","description":"Rumors have popped up about Nintendo's next generation of living room and handheld consoles. Blizzard's Hearthstone has entered open beta in North America. Candy Crush Saga developer King has moved against The Banner Saga for using the word Saga.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-nintendos-next-hardware-rumored-hearthstone-hits-open-beta-candy-crush-vs-banner-saga","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3d03e31-c696-4e3c-a140-d05130cbcb98/sm/ep8704.jpg","duration":297,"publication_date":"2014-01-22T15:42:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-more-evidence-of-gta-v-for-pc-ps4-error-deleting-game-progress-secret-xbox-one-marketing","changefreq":"weekly","video":[{"title":"RN:E102 - More Evidence of GTA V for PC + PS4 Error Deleting Game Progress + Secret Xbox One Marketing ","description":"New evidence has emerged that Rockstar worked on a PC version of GTA V up until the console versions were released, and rumors continue that it may be coming in March. An error on Sony's PS4 is stopping gamers from progressing, forcing them to delete their save games, but Sony has offered a potential solution. Xbox One has come under fire after a promotion by Machinima offering channel partners bonuses to endorse the console was outed by an affiliate.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-more-evidence-of-gta-v-for-pc-ps4-error-deleting-game-progress-secret-xbox-one-marketing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bb3e478-7b35-41ce-8444-26279ee4c7d4/sm/ep8703.jpg","duration":331,"publication_date":"2014-01-21T15:42:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-star-wars-1313-tm-abandoned-nintendo-considering-restructure-lol-earns-624-million","changefreq":"weekly","video":[{"title":"RN:E101 - Star Wars 1313 TM Abandoned + Nintendo Considering Restructure + LoL Earns $624 Million ","description":"Disney has abandoned the Star Wars 1313 trademark, further dashing hopes that the game could see release. Nintendo is under pressure from investors to revise their strategy and are considering a business restructure, but they have reaffirmed their commitment to their hardware business. League of Legends earned $624 million in 2013, putting it #2 in the list of top free to play earners for the year.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-star-wars-1313-tm-abandoned-nintendo-considering-restructure-lol-earns-624-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/156ba719-7308-4377-adc7-214ed39e3702/sm/ep8702.jpg","duration":295,"publication_date":"2014-01-20T15:40:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-3","changefreq":"weekly","video":[{"title":"2014:E35 - The Patch #35","description":"2013 Patch Gaming Awards","player_loc":"https://roosterteeth.com/embed/the-patch-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3711,"publication_date":"2014-01-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-steam-up-10m-in-3-months-steam-controller-ditches-touch-screen-get-in-the-titanfall-alpha","changefreq":"weekly","video":[{"title":"RN:E99 - Steam Up 10M In 3 Months + Steam Controller Ditches Touch Screen + Get In The Titanfall Alpha ","description":"Valve has passed 75 million Steam users, a 15% increase in just 3 months. The Steam Controller is losing its touch pad in favor of more buttons. Titanfall is kicking off an Alpha and you can sign up. IO Interactive has shared the first details about their next-gen Hitman game. Rockstar has announced a crack down on cheaters in GTA Online, with punishments including bans from the game.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-steam-up-10m-in-3-months-steam-controller-ditches-touch-screen-get-in-the-titanfall-alpha","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30c36e9c-1fb4-4289-b71a-8800c46e5371/sm/ep8700.jpg","duration":331,"publication_date":"2014-01-16T15:38:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-rockstar-takes-down-gta-online-starbound-to-wipe-characters-lols-new-player-features","changefreq":"weekly","video":[{"title":"RN:E98 - Rockstar Takes Down GTA Online + Starbound To Wipe Characters + LoL's New Player Features","description":"Rockstar is taking GTA Online down for 24 hours for maintenance, most likely to address in-game hacking and cheating. League of Legends is introducing a stable of champions for new players to try in their early levels. Starbound's next update will wipe all characters, ships, and worlds and start fresh. Hello Games says No Man's Sky won't be delayed by their office flood.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-rockstar-takes-down-gta-online-starbound-to-wipe-characters-lols-new-player-features","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dce8f53-982c-4870-ba36-63804cb54b19/sm/ep8699.jpg","duration":258,"publication_date":"2014-01-15T15:37:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-cod-ghosts-gets-onslaught-steam-virtual-reality-support-dayz-sells-1-million","changefreq":"weekly","video":[{"title":"RN:E97 - COD Ghosts Gets Onslaught + Steam Virtual Reality Support + DayZ Sells 1 Million ","description":"Call of Duty: Ghosts will get its first DLC pack, Onslaught. Double Fine has given its kickstarted point-and-click adventure game, Broken Age, a release date. Valve has launched beta virtual reality support for Oculus Rift on Steam. DayZ Standalone has sells 1 million copies in 1 month.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-cod-ghosts-gets-onslaught-steam-virtual-reality-support-dayz-sells-1-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83d7661a-ec22-4641-8f60-1867f44d1e31/sm/ep8698.jpg","duration":263,"publication_date":"2014-01-14T15:38:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-halo-pro-joins-343-simcity-goes-offline-and-supports-mods-agdq-raises-1-million","changefreq":"weekly","video":[{"title":"RN:E96 - Halo Pro Joins 343 + SimCity Goes Offline And Supports Mods + AGDQ Raises $1 Million ","description":"Maxis has announced that offline support is coming to SimCity as well as sanctioned mod support. Halo pro Eric \"GH057ayame\" Hewitt has joined 343's design team. Awesome Games Done Quick has raised more than $1 million for the Prevent Cancer Foundation.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-halo-pro-joins-343-simcity-goes-offline-and-supports-mods-agdq-raises-1-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1a6534b-aab6-492f-8da1-3609f91de772/sm/ep8697.jpg","duration":216,"publication_date":"2014-01-13T15:35:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-nintendos-record-year-for-3ds-titanfall-will-have-48-combatants-mgr-revengeance-pc-patch","changefreq":"weekly","video":[{"title":"RN:E95 - Nintendo's Record Year for 3DS + Titanfall Will Have 48 Combatants + MGR Revengeance PC Patch","description":"Respawn's Justin Hendry has defended the 12 player max in Titanfall and outlined the other 36 AI combatants that will round out matches. Konami has released a patch for Metal Gear Rising Revengeance for PC to fix issues with offline play via Steam. Project Spark's Xbox One beta will kick off in February and current PC beta testers will have access. Nintendo has had a record year for 3DS in the US and was the best-selling console for 2013 in the UK. They've announced Yoshi's New Island for 3D will launch in North America on March 14th.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-nintendos-record-year-for-3ds-titanfall-will-have-48-combatants-mgr-revengeance-pc-patch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae2fea04-c88d-4833-87e6-2b30f4bce529/sm/ep8696.jpg","duration":325,"publication_date":"2014-01-10T15:35:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014-2","changefreq":"weekly","video":[{"title":"2014:E34 - The Patch #34","description":"The Patch Discusses Steam Machines","player_loc":"https://roosterteeth.com/embed/the-patch-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3760,"publication_date":"2014-01-09T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-xbox-one-social-feature-update-x1-twitch-months-away-343-art-director-steps-down","changefreq":"weekly","video":[{"title":"RN:E94 - Xbox One Social Feature Update + X1 Twitch Months Away + 343 Art Director Steps Down ","description":"Microsoft has acknowledged that many of Xbox One's social features are a poorer experience than Xbox 360 and are working on an update to improve them. Twitch live broadcasting for Xbox One could still be up to six months away, and console streams have yet to gain the popularity of their PC counterparts. Playstation Now will require a 5mbps internet connection. Halo 4 art director Kenneth Scott has stepped down from 343 to be replaced by Nicolas Bouvier.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-xbox-one-social-feature-update-x1-twitch-months-away-343-art-director-steps-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/748b918c-8a73-425f-9fb6-dc070a5a9b54/sm/ep8695.jpg","duration":259,"publication_date":"2014-01-09T15:32:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-china-unbans-consoles-titanfalls-12-player-max-new-assassins-creed-content","changefreq":"weekly","video":[{"title":"RN:E93 - China Unbans Consoles + Titanfall's 12 Player Max + New Assassin's Creed Content","description":"China has decided to allow console manufacturers to make and sell gaming devices in the country, with some limitations. Respawn's Vince Zampella has revealed that Titanfall will only support up to 12 players at a time. Get Even developer The Farm 51 has revealed new information about how they'll blur single-player and multi-player and shared details on their futuristic weaponry. Assassin's Creed IV: Black Flag has release its third DLC, the illustrious pirate pack.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-china-unbans-consoles-titanfalls-12-player-max-new-assassins-creed-content","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5ec1ad4-cc27-4f38-ad2b-2becdc725bbf/sm/ep8694.jpg","duration":237,"publication_date":"2014-01-08T15:30:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-ps4-passes-4-2-million-13-new-steam-machines-alien-isolation-announced","changefreq":"weekly","video":[{"title":"RN:E92 - PS4 Passes 4.2 Million + 13 New Steam Machines + Alien: Isolation Announced ","description":"Sony has made a statement on the success of the PS4's launch and provides information on Playstation Now. Valve reveals 10 new configurations for its first generation lineup of Steam Machines. Sega unveils the new first-person horror title, Alien: Isolation.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-ps4-passes-4-2-million-13-new-steam-machines-alien-isolation-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3cf04dc-32a9-4626-948e-1425b1b7827f/sm/ep8693.jpg","duration":416,"publication_date":"2014-01-07T15:31:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-xbox-one-passes-3-million-steam-machines-detailed-become-esos-emperor","changefreq":"weekly","video":[{"title":"RN:E91 - Xbox One Passes 3 Million + Steam Machines Detailed + Become ESO's Emperor","description":"Microsoft has announced that Xbox One has passed 3 million units and confirmed that the fifth Halo game will be coming this year. Several steam machines have been detailed as CES kicks off in Las Vegas. ZeniMax Online Studios has announced that any player has the opportunity to become the emperor of Cyrodiil in The Elder Scrolls Online.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-xbox-one-passes-3-million-steam-machines-detailed-become-esos-emperor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19093cb8-9f90-4f43-8d4e-fb966a59881d/sm/ep8692.jpg","duration":344,"publication_date":"2014-01-06T15:29:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-wow-accounts-compromised-bethesda-reinstating-classic-fallout-no-titanfall-mod-tools","changefreq":"weekly","video":[{"title":"RN:E90 - WoW Accounts Compromised + Bethesda Reinstating Classic Fallout + No Titanfall Mod Tools ","description":"Blizzard has announced that some World of Warcraft accounts have been compromised by a Windows-specific trojan and have offered advice on detecting and fixing it. The next phase of the Hearthstone beta has been delayed until further notice. Classic Fallout games have been removed from digital stores but Bethesda has committed to reinstating them as soon as possible. Upcoming 3DS RPG Bravely Default has a new demo and changes to character costumes for western release have been confirmed. Killer Instinct has switched free characters from Jago to Sabrewulf. Respawn has announced that Titanfall will not have mod tools on PC at launch.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-wow-accounts-compromised-bethesda-reinstating-classic-fallout-no-titanfall-mod-tools","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7ed1004-bbf8-470c-ba96-df807f5a6bfb/sm/ep8691.jpg","duration":293,"publication_date":"2014-01-03T15:27:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2014","changefreq":"weekly","video":[{"title":"2014:E33 - The Patch #33","description":"The Patch Discusses 2014 Gaming","player_loc":"https://roosterteeth.com/embed/the-patch-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3838,"publication_date":"2014-01-02T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-marvel-games-pulled-from-digital-stores-ftls-new-aliens-steam-sale-doubles-devs-income","changefreq":"weekly","video":[{"title":"RN:E89 - Marvel Games Pulled From Digital Stores + FTL's New Aliens + Steam Sale Doubles Dev's Income","description":"Marvel licensed games for X-Men, Spiderman, and Deadpool have been pulled from digital stores. PixelJunk Eden developer Q-Games doubled their annual income during an 8-hour Steam Sale. FTL developer Subset Games has revealed the Lanius alien race for FTL: Advanced Edition. Microsoft has revealed that a disc-less Xbox One was originally considered.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-marvel-games-pulled-from-digital-stores-ftls-new-aliens-steam-sale-doubles-devs-income","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c2e2953-b361-4db0-aaa4-1bec315f907c/sm/ep8690.jpg","duration":245,"publication_date":"2014-01-02T15:28:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-freeze-dlc-for-arkham-origins-teased-warframe-on-xbox-one-game-server-cyber-attacks","changefreq":"weekly","video":[{"title":"RN:E88 - Freeze DLC for Arkham Origins Teased + Warframe On Xbox One? + Game Server Cyber Attacks ","description":"Warner Bros. has teased what appears to be DLC featuring the creating of Mr. Freeze in Batman: Arkham Origins. A group of malcontents has launched DDoS attacks against League of Legends, Dota 2, Battle.net, World of Tanks and more servers and sites. Warframe has been rated for Xbox One in Europe hinting it may see a release on that platform.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-freeze-dlc-for-arkham-origins-teased-warframe-on-xbox-one-game-server-cyber-attacks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38ac94c7-c25a-468b-84f2-485b3c072087/sm/ep8689.jpg","duration":261,"publication_date":"2013-12-31T15:27:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-battlefield-4-banned-in-china-microsoft-trademarks-throne-together-aid-for-hello-games","changefreq":"weekly","video":[{"title":"RN:E87 - Battlefield 4 Banned In China + Microsoft Trademarks Throne Together + Aid For Hello Games? ","description":"Battlefield 4 has been banned in China as a threat to national security, and continues to be plagued by bugs where it's still legal. Hello Games has learned that their insurance will not cover flood damage. Microsoft has trademarked Throne Together.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-battlefield-4-banned-in-china-microsoft-trademarks-throne-together-aid-for-hello-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af563fd6-95e6-436a-a8af-45663a68f631/sm/ep8688.jpg","duration":217,"publication_date":"2013-12-30T15:24:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-notch-debunks-minecraft-wii-u-rumors-nintendo-network-taken-offline-homeworld-hd-details","changefreq":"weekly","video":[{"title":"RN:E86 - Notch Debunks Minecraft Wii U Rumors + Nintendo Network Taken Offline + Homeworld HD Details ","description":"Minecraft creator Markus \"Notch\" Perrson has debunked recent rumors that Minecraft is headed for Wii U. Nintendo has taken their network offline for maintenance to restore stability, and officially delayed the release of the Pokemon Bank and Poke Transporter apps. Gearbox is asking gamers for feedback on future Homeworld games and detailed the HD rereleases for Homeworld and Homeworld 2.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-notch-debunks-minecraft-wii-u-rumors-nintendo-network-taken-offline-homeworld-hd-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2113e91f-b990-4c94-a03e-727d4f13c815/sm/ep8686.jpg","duration":258,"publication_date":"2013-12-28T02:26:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-32","changefreq":"weekly","video":[{"title":"2013:E32 - The Patch #32","description":"The Patch Discusses ACIV Smoke","player_loc":"https://roosterteeth.com/embed/the-patch-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3415,"publication_date":"2013-12-26T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-holiday-gaming-in-gta-bl2-lol-dota-2-tf2-wow-ac-more","changefreq":"weekly","video":[{"title":"RN:E85 - Holiday Gaming in GTA + BL2 + LoL + Dota 2 + TF2 + WOW + AC + More ","description":"We make sure you know all about the holiday-themed DLC and events to enjoy in Payday 2, Borderlands 2, Saints Row IV, Dota 2, League of Legends, Team Fortress 2, GTA Online, World of Warcraft, Final Fantasy XIV, and Animal Crossing: New Leaf. Know of something we didn't cover Leave it in the comments and we'll make a list!","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-holiday-gaming-in-gta-bl2-lol-dota-2-tf2-wow-ac-more","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4762662b-8d41-4441-ab86-f3e583f81fea/sm/ep8685.jpg","duration":306,"publication_date":"2013-12-26T02:26:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-batman-arkham-announcement-teased-elder-scrolls-online-pvp-details-blacklight-launch-plans","changefreq":"weekly","video":[{"title":"RN:E84 - Batman Arkham Announcement Teased + Elder Scrolls Online PVP Details + Blacklight Launch Plans ","description":"Warner Bros has teased an upcoming announcement related to the Batman: Arkham series of games. The lead PVP designer for The Elder Scrolls Online has shared how competitive gameplay will work in that MMO. Zombie Studios has outlined what players can expect when their free to play PS4 shooter, Blacklight Retribution, moves from beta to full release.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-batman-arkham-announcement-teased-elder-scrolls-online-pvp-details-blacklight-launch-plans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0441c4c-baaf-40db-929a-7a28689012a5/sm/ep8684.jpg","duration":233,"publication_date":"2013-12-25T02:26:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-star-citizen-breaks-its-own-record-mafia-creators-new-open-world-rpg-nintendo-takes-japan","changefreq":"weekly","video":[{"title":"RN:E83 - Star Citizen Breaks Its Own Record + Mafia Creator's New Open World RPG + Nintendo Takes Japan","description":"Star Citizen has passed $35 million in crowd funding, unlocking new stretch features and stretch goals. Mafia creator Dan Vvra has opened Warhorse Studios with Martin Klma to create Kingdom Come Deliverance, an open world RPG set in the Holy Roman Empire. The tragedy of 38 Studios continues with Rhode Island governor Lincoln Chafee blasting the state's decision to issue a loan to the studio in the first place. Nintendo sale have skyrocketed in Japan, making the Wii U the #1 selling living room console and 3DS the #1 selling handheld console.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-star-citizen-breaks-its-own-record-mafia-creators-new-open-world-rpg-nintendo-takes-japan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5691180-2ecc-4260-bc62-260c4ab271b0/sm/ep8683.jpg","duration":305,"publication_date":"2013-12-24T02:21:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-next-mass-effect-is-playable-dragon-age-inquisition-dev-update-hearthstone-beta-delayed","changefreq":"weekly","video":[{"title":"RN:E82 - Next Mass Effect Is Playable + Dragon Age Inquisition Dev Update + Hearthstone Beta Delayed ","description":"BioWare studio GM reveals that the next Mass Effect game is far enough into development to be playable. Dragon Age Inquisition's development update reveals the campaign has been completed. Blizzard has delayed the open beta for Hearthstone, but is still taking sign ups for the closed beta. Actor Jay Mohr may have inadvertently revealed a new Saints Row game, or at least new DLC.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-next-mass-effect-is-playable-dragon-age-inquisition-dev-update-hearthstone-beta-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55c0b5d9-f89d-4322-b6b7-d50a5c029f96/sm/ep8682.jpg","duration":251,"publication_date":"2013-12-21T02:20:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-steam-sale-highlights-ea-lawsuit-for-sec-violations-revengeance-pc-dated","changefreq":"weekly","video":[{"title":"RN:E81 - Steam Sale Highlights + EA Lawsuit For SEC Violations + Revengeance PC Dated ","description":"A new lawsuit has been filed against EA that alleges they artificially inflated their stock, and that senior executives used the opportunity to sell theirs off. Valve has kicked off their Steam Holiday Sale and revealed the release date for Metal Gear Rising: Revengeance on PC. Capcom has delayed the upcoming Operation Broken Eagle DLC for Dead Rising 3. Max: The Curse Of Brotherhood has been moved up from a 2014 release to December 20.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-steam-sale-highlights-ea-lawsuit-for-sec-violations-revengeance-pc-dated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c7c8c9a-37c0-4709-ab30-e975b6c82403/sm/ep8681.jpg","duration":324,"publication_date":"2013-12-20T02:22:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-31","changefreq":"weekly","video":[{"title":"2013:E31 - The Patch #31","description":"The Patch Discusses Microtransactions","player_loc":"https://roosterteeth.com/embed/the-patch-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3791,"publication_date":"2013-12-19T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-minecraft-gets-avengers-new-legend-of-zelda-spin-off-get-a-free-celebi-pokemon","changefreq":"weekly","video":[{"title":"RN:E80 - Minecraft Gets Avengers + New Legend of Zelda Spin-off + Get A Free Celebi Pokemon ","description":"An Avenger's Mash-Up For Minecraft on Xbox 360 has been announced. Nintendo has announced a new Legend of Zelda Dynasty Warriors-type spin-off starring Link, tentatively titled Hyrule Warriors. Nintendo has confirmed Yoshi's New Island for a spring release on 3DS, overseen by the creative director for the original Yoshi's Island. NES Remix, a downloadable eshop title for Wii U, has been announced and is available today. Luigi is trying his hand at medicine with Dr. Luigi to finish out Nintendo's year honoring him. New details on tracks, karts, and characters have been revealed for Mario Kart 8. A free Celebi pokemon is being offered to anyone who tries Pokemon Bank between its December 27 launch and the end of next September.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-minecraft-gets-avengers-new-legend-of-zelda-spin-off-get-a-free-celebi-pokemon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0fdac3c-126d-4533-866b-d2c87d77accd/sm/ep8680.jpg","duration":237,"publication_date":"2013-12-19T02:18:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-new-star-wars-game-announced-dota-2-opens-up-dayz-alpha-at-150000","changefreq":"weekly","video":[{"title":"RN:E79 - New Star Wars Game Announced + Dota 2 Opens Up + DayZ Alpha At 150,000 ","description":"Disney has announced a new Free To Play Star Wars game that will focus on multiplayer dogfights in space. The DayZ Standalone alpha has had more than 150,000 players in its first 24 hours on Steam's Early Access. Dota 2 has dropped all restrictions on the game, opening it up for the public to play. Steam has discounted Just Cause 2 by 80% following the release of a fan-made multiplayer mod for the game.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-new-star-wars-game-announced-dota-2-opens-up-dayz-alpha-at-150000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3c596da-949e-4a73-82fa-8b6ea08266af/sm/ep8679.jpg","duration":198,"publication_date":"2013-12-18T02:19:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-political-group-uses-bioshock-propaganda-minecraft-ps3-tomorrow-pro-gamer-athletic-visa","changefreq":"weekly","video":[{"title":"RN:E78 - Political Group Uses Bioshock Propaganda + Minecraft PS3 Tomorrow + Pro Gamer Athletic Visa ","description":"A conservative political group associated with the Tea Party has used a satirical Bioshock Infinite propaganda piece in earnest. Rainbow Six: Patriots has been scrapped and is being reworked. A StarCraft II player has received the first Athletic Visa as a pro gamer in the US. Microsoft has announced they'll release their first slate of original Xbox One and Xbox 360 video programming early next year. Minecraft PS3 will be out on December 17.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-political-group-uses-bioshock-propaganda-minecraft-ps3-tomorrow-pro-gamer-athletic-visa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb5f914-6e05-4f57-8978-d4dd3571f20d/sm/ep8678.jpg","duration":237,"publication_date":"2013-12-17T02:15:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-ps4-expands-to-48-countries-dead-rising-3-dlc-38-studios-properties-auctioned","changefreq":"weekly","video":[{"title":"RN:E77 - PS4 Expands To 48 Countries + Dead Rising 3 DLC + 38 Studios Properties Auctioned ","description":"The Playstation 4 has sold 1 million units in its first 24 hours following its North American launch on November 15th and passed 2.1 million units 48 hours after its November 29th European launch, has completely sold out of available stock within 24 hours of its launch in South Africa, and continues to be scarce on shelves in North America and the UK as Sony manufactures stock to attempt to meet the demand for Christmas.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-ps4-expands-to-48-countries-dead-rising-3-dlc-38-studios-properties-auctioned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab778622-e663-4187-bdf8-6546c5a9f3a6/sm/ep8677.jpg","duration":178,"publication_date":"2013-12-14T02:17:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-steamos-available-friday-maybe-fallout-4-again-fable-anniversary-dated","changefreq":"weekly","video":[{"title":"RN:E76 - SteamOS Available Friday + Maybe Fallout 4 (Again) + Fable Anniversary Dated ","description":"Valve has announced their Steam Machine beta begins on Friday, and they'll make SteamOS available for download then. New Fallout 4 rumors are popping up, this time around leaked casting documents. Game publishers have come out in defense of Youtube content creators suffering from automatic copyright claims. Fable Anniversary has a release date.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-steamos-available-friday-maybe-fallout-4-again-fable-anniversary-dated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e457e57-5cb5-415c-a865-0f48019066e5/sm/ep8676.jpg","duration":309,"publication_date":"2013-12-13T02:14:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-30","changefreq":"weekly","video":[{"title":"2013:E30 - The Patch #30","description":"The Patch Discusses VGX","player_loc":"https://roosterteeth.com/embed/the-patch-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3772,"publication_date":"2013-12-12T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-ea-under-investigation-over-bf4-xbox-one-sells-2-million-elder-scrolls-online-release-date","changefreq":"weekly","video":[{"title":"RN:E75 - EA Under Investigation Over BF4 + Xbox One Sells 2 Million + Elder Scrolls Online Release Date ","description":"Microsoft has announced that they've sold 2 million Xbox One consoles worldwide. Xbox One and Playstation 4 both have new system updates. Microsoft is under fire from UK gamers for raising the prices of digital versions of some exclusive titles. EA is under investigation by a law firm over allegations they may have misled investors about the quality of Battlefield 4. Zenimax Online Studios has announced a staggered release for The Elder Scrolls Online.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-ea-under-investigation-over-bf4-xbox-one-sells-2-million-elder-scrolls-online-release-date","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbbd26e9-0e20-4b43-b1d4-a1442381da0f/sm/ep8675.jpg","duration":266,"publication_date":"2013-12-12T02:11:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-nsa-spying-on-gamers-telltale-game-of-thrones-and-borderlands-games-no-mans-sky-announced","changefreq":"weekly","video":[{"title":"RN:E73 - NSA Spying On Gamers +Telltale Game of Thrones And Borderlands Games + No Man's Sky Announced","description":"Telltale Games is working on a Game of Thrones series and Tales From The Borderlands. Hello Games has announced a new procedural exploration game called No Man's Sky. Rockstar has announced their GTA Online content creator tools for release this week and a new mode called Capture. EA is releasing a PC update for Battlefield 4 to fix more bugs. Valve has announced ranked matchmaking for Dota 2 in their next major update. Riot has revised their rules for League of Legends pros streaming rival games. Crystal Dynamics has announced next-gen versions of their 2013 Tomb Raider reboot. Bethesda has outed that potential Fallout 4 teaser as a hoax. NSA whistleblower Edward Snowden has released documents revealing NSA and GCHQ spying on gamers over Xbox Live, World of Warcraft, and Second Life.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-nsa-spying-on-gamers-telltale-game-of-thrones-and-borderlands-games-no-mans-sky-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de3d636b-78a0-4437-92bc-f54a411c7541/sm/ep8673.jpg","duration":385,"publication_date":"2013-12-10T02:09:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-29","changefreq":"weekly","video":[{"title":"2013:E29 - The Patch #29","description":"The Patch Discusses PC vs Console","player_loc":"https://roosterteeth.com/embed/the-patch-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3819,"publication_date":"2013-12-05T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-ea-halts-battlefield-dlc-work-for-bug-fixes-new-destiny-details-starbound-beta-begins","changefreq":"weekly","video":[{"title":"RN:E70 - EA Halts Battlefield DLC Work For Bug Fixes + New Destiny Details + Starbound Beta Begins ","description":"EA has called a halt to Battlefield DLC development until Battlefield 4 bugs are fixed. Bungie has released new details about Destiny races, classes, enemies, planets,and gameplay. The beta for Starbound has launched for backers and Steam Early Access. Nintendo has announced 2 new Pokemon bundles for 2DS in North America.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-ea-halts-battlefield-dlc-work-for-bug-fixes-new-destiny-details-starbound-beta-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eec68ed-2be0-45e3-a742-ce8c335f0bf4/sm/ep8670.jpg","duration":258,"publication_date":"2013-12-05T01:55:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-28","changefreq":"weekly","video":[{"title":"2013:E28 - The Patch #28","description":"The Patch Discusses Ms Male Characters","player_loc":"https://roosterteeth.com/embed/the-patch-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3488,"publication_date":"2013-11-28T17:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-27","changefreq":"weekly","video":[{"title":"2013:E27 - The Patch #27","description":"The Patch Discusses The PS4 Release","player_loc":"https://roosterteeth.com/embed/the-patch-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3639,"publication_date":"2013-11-21T21:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-26","changefreq":"weekly","video":[{"title":"2013:E26 - The Patch #26","description":"The Patch Discusses News from BlizzCon","player_loc":"https://roosterteeth.com/embed/the-patch-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3676,"publication_date":"2013-11-14T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-25","changefreq":"weekly","video":[{"title":"2013:E25 - The Patch #25","description":"The Patch Ponders Notch's Next Move","player_loc":"https://roosterteeth.com/embed/the-patch-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3714,"publication_date":"2013-11-07T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-24","changefreq":"weekly","video":[{"title":"2013:E24 - The Patch #24","description":"The Patch Discusses The PS4 FAQ","player_loc":"https://roosterteeth.com/embed/the-patch-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3754,"publication_date":"2013-10-31T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-23","changefreq":"weekly","video":[{"title":"2013:E23 - The Patch #23","description":"The Patch Discusses GTA V DLC","player_loc":"https://roosterteeth.com/embed/the-patch-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3745,"publication_date":"2013-10-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-22","changefreq":"weekly","video":[{"title":"2013:E22 - The Patch #22","description":"The Patch Discusses Everything Pokemon","player_loc":"https://roosterteeth.com/embed/the-patch-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3756,"publication_date":"2013-10-17T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-21","changefreq":"weekly","video":[{"title":"2013:E21 - The Patch #21","description":"The Patch Discusses Xbox One Privacy","player_loc":"https://roosterteeth.com/embed/the-patch-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3726,"publication_date":"2013-10-10T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-20","changefreq":"weekly","video":[{"title":"2013:E20 - The Patch #20","description":"The Patch Discusses the Steam Controller","player_loc":"https://roosterteeth.com/embed/the-patch-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3811,"publication_date":"2013-10-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-19","changefreq":"weekly","video":[{"title":"2013:E19 - The Patch #19","description":"The Patch on set of The Gauntlet Season 2","player_loc":"https://roosterteeth.com/embed/the-patch-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3662,"publication_date":"2013-09-26T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-18","changefreq":"weekly","video":[{"title":"2013:E18 - The Patch #18","description":"The Patch discusses GTA V","player_loc":"https://roosterteeth.com/embed/the-patch-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3777,"publication_date":"2013-09-19T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-17","changefreq":"weekly","video":[{"title":"2013:E17 - The Patch #17","description":"The Patch discusses Assassins Creed News","player_loc":"https://roosterteeth.com/embed/the-patch-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3693,"publication_date":"2013-09-12T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-16","changefreq":"weekly","video":[{"title":"2013:E16 - The Patch #16","description":"The Patch discusses Titanfall","player_loc":"https://roosterteeth.com/embed/the-patch-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3756,"publication_date":"2013-09-06T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-news-rt-news-pax-13-rooster-teeth-panel","changefreq":"weekly","video":[{"title":"RN:E1 - PAX 13 Rooster Teeth Panel","description":"The guys shared a bunch of exclusives and sneak peeks at the Rooster Teeth Panel at PAX Prime '13 in Seattle. Missed out Find out what upcoming videos you've got to look forward to and what that prank on Gus was all about.","player_loc":"https://roosterteeth.com/embed/rt-news-rt-news-pax-13-rooster-teeth-panel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61cf6d42-d5e7-4544-be77-341400035174/sm/2013912-1455573266522-maxresdefault1.jpg","duration":186,"publication_date":"2013-08-31T00:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-15","changefreq":"weekly","video":[{"title":"2013:E15 - The Patch #15","description":"The Patch discusses the 2DS","player_loc":"https://roosterteeth.com/embed/the-patch-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3719,"publication_date":"2013-08-29T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-14","changefreq":"weekly","video":[{"title":"2013:E14 - The Patch #14","description":"The Patch discusses Diablo 3 and Smite","player_loc":"https://roosterteeth.com/embed/the-patch-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3690,"publication_date":"2013-08-22T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-13","changefreq":"weekly","video":[{"title":"2013:E13 - The Patch #13","description":"The Patch discusses Saints Row IV","player_loc":"https://roosterteeth.com/embed/the-patch-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3874,"publication_date":"2013-08-15T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-12","changefreq":"weekly","video":[{"title":"2013:E12 - The Patch #12","description":"The Patch Discusses the Left for Dead 3 Leak","player_loc":"https://roosterteeth.com/embed/the-patch-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3759,"publication_date":"2013-08-08T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-11","changefreq":"weekly","video":[{"title":"2013:E11 - The Patch #11","description":"The Patch plays Clash in The Clouds and Shootmania","player_loc":"https://roosterteeth.com/embed/the-patch-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3958,"publication_date":"2013-08-01T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-10","changefreq":"weekly","video":[{"title":"2013:E10 - The Patch #10","description":"The Patch discusses Xbox One and Gus' Australian arcade adventure","player_loc":"https://roosterteeth.com/embed/the-patch-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3701,"publication_date":"2013-07-25T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-9","changefreq":"weekly","video":[{"title":"2013:E9 - The Patch #9","description":"The Patch discusses retro arcade games and Splinter Cell Blacklist","player_loc":"https://roosterteeth.com/embed/the-patch-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3748,"publication_date":"2013-07-19T00:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-8","changefreq":"weekly","video":[{"title":"2013:E8 - The Patch #8","description":"The Patch discusses Walking Dead 400 Days and a Last of Us Spoiler Ending","player_loc":"https://roosterteeth.com/embed/the-patch-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3926,"publication_date":"2013-07-11T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-7","changefreq":"weekly","video":[{"title":"2013:E7 - The Patch #07","description":"The Patch Discusses Achievement Guidelines","player_loc":"https://roosterteeth.com/embed/the-patch-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":4107,"publication_date":"2013-07-04T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-6","changefreq":"weekly","video":[{"title":"2013:E6 - The Patch #06","description":"The Patch talks Aussie Game Ratings and Ellen Page","player_loc":"https://roosterteeth.com/embed/the-patch-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3819,"publication_date":"2013-06-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-5","changefreq":"weekly","video":[{"title":"2013:E5 - The Patch #5","description":"The Patch Discuss Xbox One DRM","player_loc":"https://roosterteeth.com/embed/the-patch-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3644,"publication_date":"2013-06-20T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-4","changefreq":"weekly","video":[{"title":"2013:E4 - The Patch #4","description":"The Patch Reviews E3 News","player_loc":"https://roosterteeth.com/embed/the-patch-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3682,"publication_date":"2013-06-13T17:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-3","changefreq":"weekly","video":[{"title":"2013:E3 - The Patch #3","description":"The Patch is Dusty","player_loc":"https://roosterteeth.com/embed/the-patch-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":4045,"publication_date":"2013-06-06T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013-2","changefreq":"weekly","video":[{"title":"2013:E2 - The Patch #2","description":"The Patch is in Beta","player_loc":"https://roosterteeth.com/embed/the-patch-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3712,"publication_date":"2013-05-30T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-patch-2013","changefreq":"weekly","video":[{"title":"2013:E1 - Rooster Teeth Game Hour #1","description":"RT launches a gaming podcast","player_loc":"https://roosterteeth.com/embed/the-patch-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d255eabb-14e4-451f-83d8-20801512999b/sm/984097-1438372468817-patchbg.png","duration":3726,"publication_date":"2013-05-22T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4: Storm the Tower","description":"With the city under siege and an egotistical evildoer in power, the future looks bleak. X-Ray & Vav! The world needs you!","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c77de3cb-9c76-450f-a4f5-cfb1926aedcf/sm/ep10170.jpg","duration":581,"publication_date":"2014-12-18T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-20","changefreq":"weekly","video":[{"title":"S1:E20 - Screen Play #20","description":"Screen Play Discusses Trilogies","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4452,"publication_date":"2014-12-17T21:06:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-35","changefreq":"weekly","video":[{"title":"2014:E35 - Geoff's Flirty Drive","description":"Geoff tells the tale of how he and his friends put some smooth moves on a couple of fellow high school girls.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e858002-aae7-4c8f-bf4b-566f2b3a1dbc/sm/ep10163.jpg","duration":82,"publication_date":"2014-12-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-302","changefreq":"weekly","video":[{"title":"2014:E302 - RT Podcast #302","description":"RT Discusses Austin Traffic","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-302","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5872,"publication_date":"2014-12-17T02:28:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-7","changefreq":"weekly","video":[{"title":"S1:E7 - And Then There Were Three - Episode 7","description":"Whittled down to four, the remaining survivors must deal with a common threat in the penultimate episode of season one! Test out your sleuthing skills here: http://bit.ly/13aheA9","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/474c7c09-dca0-45bc-8365-c81138938cda/sm/ep10160.jpg","duration":268,"publication_date":"2014-12-16T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2014-6","changefreq":"weekly","video":[{"title":"2014:E6 - Alien Pt.6","description":"When Miles gets his hands on one, nobody is safe. Especially not Marshal.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f50eb092-10ff-4204-9aca-008671701983/sm/ep10151.jpg","duration":3767,"publication_date":"2014-12-14T17:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2014-5","changefreq":"weekly","video":[{"title":"2014:E5 - Alien Pt.5","description":"Kyle and Miles continue their trek through Sevastopol with Scoops hot on their tale.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/407c2935-c859-4e96-85f5-ca78989d23f0/sm/ep10150.jpg","duration":3804,"publication_date":"2014-12-13T19:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-29","changefreq":"weekly","video":[{"title":"2014:E29 - Drunk Kerry and Miles","description":"Kerry and Miles stumble around an abandoned hotel.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cbe66a3-dfc8-42d2-bc22-c94792a69d28/sm/ep10149.jpg","duration":158,"publication_date":"2014-12-13T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2014-4","changefreq":"weekly","video":[{"title":"2014:E4 - Alien Pt.4","description":"Kyle and Miles return to Sevastopol Station to check on their \"cat\".","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e1881d-6a9d-46a1-8d2f-afada1a9ecbd/sm/ep10148.jpg","duration":4360,"publication_date":"2014-12-12T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-8","changefreq":"weekly","video":[{"title":"S2:E226 - Sponsor Cut: Cards Against Humanity #8","description":"Josh, Kerry, Kyle, Barbara, and Pat all on set for this edition of Cards Against Humanity (This was live on 12/05/14).","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4743ceb-2e2b-4783-bc57-2cf892b8a100/sm/ep10147.jpg","duration":5630,"publication_date":"2014-12-12T20:00:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-night-before-rooster-teeth","changefreq":"weekly","video":[{"title":"S2:E225 - The Night Before Rooster Teeth","description":"In the spirit of the holidays some of the Rooster Teeth crew decided to lend their voices to a classic poem with an RT twist","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-night-before-rooster-teeth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cdace97-cc0a-425b-89a0-873988088880/sm/ep10146.jpg","duration":213,"publication_date":"2014-12-12T19:16:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-06","changefreq":"weekly","video":[{"title":"S1:E6 - Team Free Willy vs. Team Meat Team - #06","description":"Will Chris and Aaron from Social Disorder end Team Free Willy's 3 week winning streak","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-06","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60b60bc6-7efe-49b6-a94c-585aac08799c/sm/ep10145.jpg","duration":2342,"publication_date":"2014-12-12T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3: Evil Unlocked","description":"X-Ray and Vav are fresh off of their most recent serving of justice, but it's not long before the Mayor comes calling (literally) with a new mission. Are our heroes awesome enough to handle the task before them","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17e7fd14-2bf9-4226-bee4-1bc1bc183f64/sm/ep10137.jpg","duration":478,"publication_date":"2014-12-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-3","changefreq":"weekly","video":[{"title":"LP:E3 - Bananigans - Let's Play Minimations #3","description":"In this let's play minimation, the gang is on the look out for a British banana on the run!\n\nLets Play - Prop Hunt Part 1","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f88f1879-7409-484e-8ab1-c8c07ebd6ceb/sm/ep10130.jpg","duration":71,"publication_date":"2014-12-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-19","changefreq":"weekly","video":[{"title":"S1:E19 - Screen Play #19","description":"Screen Play Discusses Die Hard","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4526,"publication_date":"2014-12-10T20:19:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-6","changefreq":"weekly","video":[{"title":"S1:E6 - And Then There Were Four - Episode 6","description":"The remaining Roosters try different ways of contacting the police.. while one tries a new way to die.","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb3f4652-66ee-435c-bed3-a3215aedd2fb/sm/ep10127.jpg","duration":329,"publication_date":"2014-12-10T02:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-tiny-plasma-cutter-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E35 - Tiny Plasma Cutter in Slow Motion","description":"Gav makes his own teeny plasma cutter and shows you at 2500fps.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-tiny-plasma-cutter-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f3192aa-fbc2-499e-b9e8-805b04284f53/sm/ep10128.jpg","duration":171,"publication_date":"2014-12-10T02:16:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-301","changefreq":"weekly","video":[{"title":"2014:E301 - RT Podcast #301","description":"RT Discusses Plane Etiquette","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-301","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5909,"publication_date":"2014-12-09T23:36:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-25","changefreq":"weekly","video":[{"title":"2014:E25 - Rooster Teeth Shape Up Olympics","description":"Watch the Shape Up trailer here: http://bit.ly/1wwszYZ\r\n\r\nChris, Blaine, Meg, Ashley, Kyle, Aaron, Kerry, and a mystery combatant face off in a Shape Up Live Stream Tournament. Special guest referee Barbara Dunkelman and host Jon Risinger.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeb1bb7f-e353-42ed-a1f4-2ce5f5c4fc79/sm/ep10125.jpg","duration":42,"publication_date":"2014-12-09T22:27:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-7","changefreq":"weekly","video":[{"title":"2014:E10 - Parking - Happy Hour #10","description":"Gav and Geoff try and park in downtown Austin.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fbd851a-584c-45cd-a4b2-4a4889385778/sm/ep10114.jpg","duration":119,"publication_date":"2014-12-06T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cast-star-wars-001","changefreq":"weekly","video":[{"title":"S2:E224 - Sponsor Cast: Star Wars 001","description":"Gray, Chris, Brandon and Blaine discuss the new trailer and anything/everything related to Star Wars complete with rumors, theories, and where Lucas went wrong. Answer: Episodes 1-3","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cast-star-wars-001","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af2fb8d9-5e2d-47c0-83c2-b08b932b4f73/sm/ep10112.jpg","duration":4029,"publication_date":"2014-12-06T01:33:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-05","changefreq":"weekly","video":[{"title":"S1:E5 - Team Free Willy vs. Blumpkin Bros - #05","description":"Team Free Willy returns to defend their title against Blaine and Josh.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-05","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1b85ede-3f47-4108-a111-212cd4e2fef9/sm/ep10109.jpg","duration":1986,"publication_date":"2014-12-05T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2: Operation: Rescue Friend","description":"Crime waits for no one! X-Ray and Vav barely have a moment to relax before more justice needs serving. When an ally goes missing, it's up to the duo to take back what's theirs.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/099bec15-b6d7-4d95-808d-80e294eaa086/sm/ep10104.jpg","duration":519,"publication_date":"2014-12-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-18","changefreq":"weekly","video":[{"title":"S1:E18 - Screen Play #18","description":"Screen Play Discusses the Star Wars Trailer","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4549,"publication_date":"2014-12-04T01:30:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-21","changefreq":"weekly","video":[{"title":"2014:E21 - RTAA Classics With Commentary 2 - Omnibus Station","description":"Join the cast and crew of Rooster Teeth as they watch and discuss some of their favorite Rooster Teeth Animated Adventures. This time, Gavin and Michael join in on watching and discussing some of the omnibus episodes.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ce94a2e-87d4-4350-bbba-f37a7c5adf9b/sm/ep10096.jpg","duration":430,"publication_date":"2014-12-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - And Then There Were Five - Episode 5","description":"With only six survivors left, trust beings to unravel and some roosters find their circumstances have worsened considerably... and for at least one, that also means death. To join the detective squad and win stuff, click here: http://bit.ly/1vMKh8g","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b1a9dcb-1b1a-41c0-9b20-30710dc4c052/sm/ep10094.jpg","duration":384,"publication_date":"2014-12-03T02:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-300","changefreq":"weekly","video":[{"title":"2014:E300 - RT Podcast #300","description":"RT Discusses Life Insurance","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-300","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":3263,"publication_date":"2014-12-02T23:26:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-18","changefreq":"weekly","video":[{"title":"2014:E18 - Rooster Teeth's Official RT Podcast Pizza!","description":"Rooster Teeth had the opportunity to go down to the Pizza Hut Headquarters to create our very own Official Rooster Teeth Podcast Pizza! You can even can order it for yourself! Click here to grab it http://bit.ly/1xJVHKA (Pizza - Flavor Pioneers - Official Rooster Teeth Podcast Pizza)","player_loc":"https://roosterteeth.com/embed/rt-life-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7ab2164-9acf-4b20-b602-3137cdc3be8f/sm/ep10087.jpg","duration":188,"publication_date":"2014-12-02T18:46:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-escaped-prisoner","changefreq":"weekly","video":[{"title":"S1:E7 - The Escaped Prisoner","description":"Chris and Aaron escape jail, and must travel from the Austin Police Department to the train station in under two hours...while wearing handcuffs and asking for money.\r\n\r\nBuy the Social Disorder Shirt! http://bit.ly/1wqyBqq","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-escaped-prisoner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75044bb4-82ab-4d56-96ba-449e509a57b9/sm/ep10074.jpg","duration":551,"publication_date":"2014-11-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/x-ray-and-vav-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1: X-Ray & Vav Rise","description":"X-Ray and Vav's quest to become the greatest superheroes ever isn't going as well as they hoped. But a chance encounter with a scientific genius may put them on the path to greatness! ...Or, maybe not.","player_loc":"https://roosterteeth.com/embed/x-ray-and-vav-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36e47b27-be3d-4826-8f8f-03a4ca60b2c0/sm/ep10070.jpg","duration":678,"publication_date":"2014-11-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-17","changefreq":"weekly","video":[{"title":"S1:E17 - Screen Play #17","description":"Screen Play Discusses Clue","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4470,"publication_date":"2014-11-27T01:04:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-jon","changefreq":"weekly","video":[{"title":"S2:E223 - Quick Draw with Patrick! (featuring Jon)","description":"Patrick sits down with Jon and asks him some questions, I also think a drawing or picture is involved.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-jon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ee9f91d-4fd1-4b5c-a2a0-1f77354c7bad/sm/ep10077.jpg","duration":1451,"publication_date":"2014-11-26T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-11","changefreq":"weekly","video":[{"title":"2014:E11 - The Greatest Episode Ever","description":"Jordan goes out of town, so Burnie improvises this week's RTAA.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23f0c2aa-6fc3-471b-a3fb-4bd20bc28af8/sm/ep10060.jpg","duration":136,"publication_date":"2014-11-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-quick-play-katamari-forever","changefreq":"weekly","video":[{"title":"S2:E222 - Sponsor Play - Quick Play Katamari Forever","description":"The interviewing tables have turned! Kdin and Patrick sit down and play Katamari Forever while discussing Patrick's mysterious past!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-quick-play-katamari-forever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c58c5da1-6533-4094-a16b-3f880652a733/sm/ep10076.jpg","duration":2794,"publication_date":"2014-11-26T20:34:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-5","changefreq":"weekly","video":[{"title":"S2:E221 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on November 21, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f02969f-958f-4600-b2d9-9bf5e6569c5e/sm/ep10069.jpg","duration":3646,"publication_date":"2014-11-26T18:35:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-04","changefreq":"weekly","video":[{"title":"S1:E4 - Team CSC vs. Team R&R Connection - #04","description":"In this week's episode of On The Spot, Team CSC and Team R&R Connection (formerly known as Team Gus) are back competing to see which team will make a comeback and which one will remain being a sad, sad loser.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-04","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c99f8eb-ddb5-4742-8d5a-ac4aece5a9fb/sm/ep10066.jpg","duration":2054,"publication_date":"2014-11-26T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - And Then There Were Six - Episode 4","description":"As deep secrets are unearthed -- and the Roosters' sanity slips away -- yet another employee meets their untimely end. To join the detective squad and win stuff, click here: http://bit.ly/1uXhSfB","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bb63570-ccb0-4ed1-a746-ffc5c6ab463f/sm/ep10058.jpg","duration":323,"publication_date":"2014-11-26T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-299","changefreq":"weekly","video":[{"title":"2014:E299 - RT Podcast #299","description":"RT Discusses Swing Dancing","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-299","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5833,"publication_date":"2014-11-25T23:42:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-4","changefreq":"weekly","video":[{"title":"2014:E9 - The Paddle - Happy Hour #9","description":"Gavin Free, Griffon Ramsey, and Meg Turney are assholes. They hate Geoff, they are jealous of Geoff, and they do everything in their power to punish Geoff for his honesty, chivalry, and all around good nature. Pray for Geoff. These hateful hangers' on are doing everything in their power to destroy his virtue and steal his essence.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/073f33d0-dac4-4954-ac09-e412fdcd27ff/sm/ep10045.jpg","duration":406,"publication_date":"2014-11-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cast-animation-002","changefreq":"weekly","video":[{"title":"S2:E220 - Sponsor Cast: Animation 002","description":"You lucky sponsors get another installment of Sponsor Cast: Animation with Gray, Miles, Lindsay, and Kerry. They are discussing anything and everything animation and they ask the question, why is Pixar making another Toy Story","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cast-animation-002","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e48f635-6dfc-48cd-abe5-9b6639c58236/sm/ep10048.jpg","duration":4454,"publication_date":"2014-11-22T00:10:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-03","changefreq":"weekly","video":[{"title":"S1:E3 - Team CSC vs. Team Free Willy - #03","description":"Ryan and Ray get into a smelly situation for On The Spot #3.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-03","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9f12774-daee-4365-8f3b-8dec6ff611f5/sm/ep10041.jpg","duration":2305,"publication_date":"2014-11-21T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-7","changefreq":"weekly","video":[{"title":"S2:E219 - Sponsor Play: Halo 2 Pt.7","description":"Kyle explains the difference between future Kyle and future Kyle.\r\n\r\n...Yea it's as confusing as you think it is.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85a911dc-8656-4f28-bc18-03a8ab7b4033/sm/ep10040.jpg","duration":1127,"publication_date":"2014-11-21T00:53:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-6","changefreq":"weekly","video":[{"title":"S2:E218 - Sponsor Play: Halo 2 Pt.6","description":"Kyle and Miles finally get back to the Master Chief!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfcdb299-b2b1-4d59-b791-3015a6562288/sm/ep10032.jpg","duration":1633,"publication_date":"2014-11-20T02:45:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-16","changefreq":"weekly","video":[{"title":"S1:E16 - Screen Play #16","description":"Screen Play Chats about Mockingjay and JJ Talks to Natalie Dormer","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4295,"publication_date":"2014-11-19T23:22:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-7","changefreq":"weekly","video":[{"title":"2014:E7 - A Selfie With Burnie","description":"In RTAA #169, a fan tries to take a selfie with Burnie at RTX, but is constantly interrupted. Go to http://bit.ly/1xV9ePm for your free 2 week trial!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0be561a5-2fe4-4c15-bb88-282cf762dbfc/sm/ep10025.jpg","duration":91,"publication_date":"2014-11-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-5-1","changefreq":"weekly","video":[{"title":"S2:E217 - Sponsor Play: Halo 2 Pt. 5","description":"Kyle would like the NSA to know that Miles is the ONLY one who wants to go to North Korea.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-5-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/571e1c73-dca6-45d4-b325-62f54b2afb5b/sm/ep10023.jpg","duration":1800,"publication_date":"2014-11-19T01:58:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - And Then There Were Seven - Episode 3","description":"Some choose to hide, others choose to fight, and one won't have a choice but to die in the latest Ten Little Roosters. To join the detective squad and win stuff, click here: http://bit.ly/1vnFRWs","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22b0a7f9-8f27-48e6-82cd-522b3d704780/sm/ep10021.jpg","duration":516,"publication_date":"2014-11-19T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-298","changefreq":"weekly","video":[{"title":"2014:E298 - RT Podcast #298","description":"RT Discusses Dating","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-298","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5618,"publication_date":"2014-11-19T00:01:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-4","changefreq":"weekly","video":[{"title":"S2:E216 - Sponsor Play Halo 2 Pt.4","description":"No one man should have all this power, which is why Miles can't have it.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1e27bc9-d984-44e4-bf84-21bc2d89096b/sm/ep10012.jpg","duration":1425,"publication_date":"2014-11-17T22:27:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-3","changefreq":"weekly","video":[{"title":"S2:E215 - Sponsor Play Halo 2 Pt. 3","description":"Kyle and Miles adopt a Banshee.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ffa0631-98ae-46fd-9d69-312ce2038a0d/sm/ep10005.jpg","duration":1470,"publication_date":"2014-11-16T22:44:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-2","changefreq":"weekly","video":[{"title":"S2:E214 - Sponsor Play Halo 2 Pt.2","description":"Join Miles and Kyle as they try to hijack the covenant in a high octane car chase that is too fast but with just the regular amount of furious.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-2-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a99f0fd-ca59-403b-8382-fc0ec711dab3/sm/ep10004.jpg","duration":1406,"publication_date":"2014-11-15T23:48:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-limo-tour","changefreq":"weekly","video":[{"title":"S1:E6 - The Limo Tour","description":"Aaron and Chris give tours of Austin in a run-down limo. However, they don't know the tour stops, because when one is the tour guide, the other is the chauffeur driving the limo.","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-limo-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86fff14b-556e-40b6-8cd8-5b91038e3f1b/sm/ep9997.jpg","duration":514,"publication_date":"2014-11-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-7","changefreq":"weekly","video":[{"title":"S2:E213 - Sponsor Cut: Cards Against Humanity #7","description":"Miles, Kerry, Kyle, Barbara, and Pat all on set for this edition of Cards Against Humanity (This was live on 11/07/14).","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56df8658-837f-4666-a84e-4df896b0053e/sm/ep10001.jpg","duration":5772,"publication_date":"2014-11-14T23:44:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-pt-1","changefreq":"weekly","video":[{"title":"S2:E212 - Sponsor Play Pt.1","description":"Due to popular demand Kyle and Miles are back and this time they are running through Halo 2 Anniversary.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6d597f2-b224-431d-87a5-86382c0dc943/sm/ep10000.jpg","duration":1466,"publication_date":"2014-11-14T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-02","changefreq":"weekly","video":[{"title":"S1:E2 - Team Buttz vs. Team CSC - #02","description":"Ray and Ryan take on team #Buttz in episode 2 of On The Spot!","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-02","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c34904a-9fc0-4629-808e-a0ed4e956938/sm/ep9996.jpg","duration":1736,"publication_date":"2014-11-14T16:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-2","changefreq":"weekly","video":[{"title":"2014:E2 - Rooster Teeth vs. Zombiens Game Trailer","description":"Get it on iTunes: http://bit.ly/1urVcnk\r\nAndroid: http://bit.ly/1sLlwDy\r\n\r\nSponsors of Rooster Teeth- click here for your code to unlock a special character: http://bit.ly/1v896gB\r\n\r\nFeaturing the voices of Gus, Burnie, Geoff, Gavin, Barbara, Michael, Ashley and Lindsay!","player_loc":"https://roosterteeth.com/embed/rt-life-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d10498b-1f02-4706-a957-5c8af7e71ac0/sm/ep9992.jpg","duration":39,"publication_date":"2014-11-14T02:41:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-15","changefreq":"weekly","video":[{"title":"S1:E15 - Screen Play #15","description":"Screen Play Discusses Interstellar","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4112,"publication_date":"2014-11-12T23:10:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1","changefreq":"weekly","video":[{"title":"MV:E14 - Twelve Days of Rooster Teeth","description":"[link=http://bit.ly/1qEOm8T]Click here to check out the RT Store![/link]\r\n\r\n \r\n\r\nJoin Rooster Teeth this holiday season for caroling, eggnog and mayhem. \r\nFeaturing: Jon Risinger, Emily McBride, Brandon Farmahini, Ryan Haywood, Chris Demarais, Meg Turney, Ashley Jenkins, Lindsay Jones, Barbara Dunkelman, Blaine Gibson, Matt Bragg, Jeremy Dooley, Kdin Jenzen, JJ Castillo, Maggie Tominey, Kyle Taylor, Josh Ornealas, Kerry Shawcross, Jordan Cwierz, Geoff Ramsey, Adam Ellis, Josh Flanagan, Cole Gallian, and Gus Sorola.\r\n\r\n\"The Twelve Days of Christmas\" by Frederic Austin, Lyrics by Blaine Gibson,\r\nPiano by Weston Bishop","player_loc":"https://roosterteeth.com/embed/music-videos-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b01b04c-853c-40e5-b2cf-57121aa06130/sm/ep9983.jpg","duration":247,"publication_date":"2014-11-12T22:29:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-2","changefreq":"weekly","video":[{"title":"LP:E2 - Destiny Calls - Let's Play Minimations #2","description":"The fun never ends in Let's Play Minimations #2! This time, Ray does some spins, Michael throws an ill-advised grenade, and Gavin wastes his golden gun.","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a9f998c-a8b4-4fb6-9f72-8ff4eb507ba2/sm/ep9978.jpg","duration":91,"publication_date":"2014-11-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - And Then There Were Eight - Episode 2","description":"Trapped and scattered, the remaining employees encounter shocking revelations, emotional breakthroughs, and, well... more murder. To sleuth along with us and win awesome stuff, click here: http://bit.ly/1tZJezL","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/866a8db2-9d0c-4c7d-bcf8-41c42eba8c5b/sm/ep9971.jpg","duration":615,"publication_date":"2014-11-12T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-297","changefreq":"weekly","video":[{"title":"2014:E297 - RT Podcast #297","description":"RT Discusses Miles' Nightmares","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-297","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6005,"publication_date":"2014-11-11T23:48:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2014-3","changefreq":"weekly","video":[{"title":"2014:E3 - Alien Pt.3","description":"Scat man Miles and Brad Pitt Kyle find their new \"cat\" to be very stressful.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a93f163-5cb7-4fdf-9a2b-d5ddd9c3a381/sm/ep9960.jpg","duration":4997,"publication_date":"2014-11-08T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2014-2","changefreq":"weekly","video":[{"title":"2014:E2 - Alien Isolation Part 2","description":"Miles finds more than he bargained for in this episode of Alien Isolation.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a96807b-c297-460c-b5b3-13353e82282f/sm/ep9959.jpg","duration":3244,"publication_date":"2014-11-08T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/backwardz-compatible-2014","changefreq":"weekly","video":[{"title":"2014:E1 - Alien Isolation Part 1","description":"Miles and Kyle in the spirit of Halloween have decided to play Alien Isolation.","player_loc":"https://roosterteeth.com/embed/backwardz-compatible-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b9405d4-a732-44fa-8aca-ce470719bb03/sm/1030918-1507045874155-AlienIsolationThumb-NewFormat_Pt1.png","duration":4324,"publication_date":"2014-11-07T17:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cast-comics-002","changefreq":"weekly","video":[{"title":"S2:E211 - Sponsor Cast: Comics 002","description":"This week the guys have a lot to discuss, so much that they asked Geoff to weigh in.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cast-comics-002","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47021c4a-769a-4aa2-a383-f17b5783cea8/sm/ep9954.jpg","duration":3696,"publication_date":"2014-11-07T17:20:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-9","changefreq":"weekly","video":[{"title":"2014:E8 - Doctors of the Peggle Arts - Happy Hour #8","description":"The three G's (Gavin Free, Geoff and Griffon Ramsey) complete the ultimate challenge, fulfilling all of their life's goals, and thus cementing their names in infamy, ranking among greats like Ghengis Khan, Napoleon, General Patton, and Eric the Actor. Congrats you Gorgeous Gs. You've climbed the mountain, fought the good fight, soared through the heavens, and lived to tell the tail. All of humanity salutes you. Huzzah!","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6996ffe8-96ba-4f25-aaf4-5715600a7fc4/sm/ep9953.jpg","duration":583,"publication_date":"2014-11-07T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/on-the-spot-season-1-on-the-spot-01","changefreq":"weekly","video":[{"title":"S1:E1 - Team Gus vs. Team Buttz - #01","description":"Catch this first episode of Rooster Teeth's official game show! A live half hour of fast-paced laughs as host Jon Risinger puts two RT teams on the spot for points and mayhem. Featuring Gus Sorola, Barbara Dunkelman, Miles Luna and Kerry Shawcross.","player_loc":"https://roosterteeth.com/embed/on-the-spot-season-1-on-the-spot-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f56814dc-bcc2-455d-911a-b356c49c0171/sm/ep9948.jpg","duration":1808,"publication_date":"2014-11-07T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-non-newtonian-fluid-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E34 - Non-Newtonian Fluid in Slow Motion","description":"Gav and Dan film the highly requested Non-Newtonian fluid experiment (oobleck) in probably the least suitable environment possible.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-non-newtonian-fluid-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b11f2b55-8a24-4aab-ba2e-3b5bf57066d2/sm/ep9944.jpg","duration":255,"publication_date":"2014-11-06T19:53:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-14","changefreq":"weekly","video":[{"title":"S1:E14 - Screen Play #14","description":"Screen Play Discusses Chappie","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4587,"publication_date":"2014-11-05T23:04:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-41","changefreq":"weekly","video":[{"title":"2014:E40 - Gavin or Google #2: Dog Door Bells","description":"In RTAA #168, the gang plays Gavin or Google again, this time concerning dogs.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abb23440-48e3-4e2a-ab41-fb8319054b9c/sm/ep9932.jpg","duration":94,"publication_date":"2014-11-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-296","changefreq":"weekly","video":[{"title":"2014:E296 - RT Podcast #296","description":"RT Discusses Gus' Tough School Days","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-296","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5879,"publication_date":"2014-11-05T03:04:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ten-little-roosters-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - And Then There Were Nine - Episode 1","description":"Burnie tries to throw a nice party for the Rooster Teeth staff, but it quickly spirals into an evening of riddles, blackmail... and MURDER. To test your detective skills and uncover the killer, Click Here!","player_loc":"https://roosterteeth.com/embed/ten-little-roosters-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ac0b9f5-3b93-4966-8f3f-bb470f5386d5/sm/ep9929.jpg","duration":586,"publication_date":"2014-11-05T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-garage-sale-1","changefreq":"weekly","video":[{"title":"S1:E5 - The Garage Sale","description":"Chris and Aaron compete to see who can make the most money at a garage sale. However, Aaron is only allowed to sell serial killer merchandise while Chris must somehow sell celebrity stalker memorabilia. Check out the Social Disorder T-Shirt: http://bit.ly/1wqyBqq","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-garage-sale-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6c6f0f4-c7d7-497f-94d8-84af52eac743/sm/ep9916.jpg","duration":706,"publication_date":"2014-11-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-halloween-pumpkin-carving","changefreq":"weekly","video":[{"title":"S2:E209 - Halloween Pumpkin Carving","description":"Some of the RT and AH crew get into the spirit of Halloween and carve pumpkins","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-halloween-pumpkin-carving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e35fe1fc-d7f5-405a-ba83-6eaf9e73d5a5/sm/ep9908.jpg","duration":192,"publication_date":"2014-10-31T14:41:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-ray","changefreq":"weekly","video":[{"title":"S2:E210 - Quick Draw with Patrick! (featuring Ray)","description":"Patrick sits down with Ray and asks him some questions, I also think a drawing or picture is involved.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-ray","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6189710f-0e17-49f7-bd62-658606289e25/sm/ep9909.jpg","duration":2060,"publication_date":"2014-10-31T14:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-12","changefreq":"weekly","video":[{"title":"V2:E12 - Chapter 12: Breach","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find time to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9ccf95c-8895-4e71-b51b-2225d69bae10/sm/ep9902.jpg","duration":1075,"publication_date":"2014-10-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-31","changefreq":"weekly","video":[{"title":"2014:E31 - Chris' Doot-Doot, Blaine's Duster","description":"In RTAA #167, Chris talks about his bathroom habits, and Blaine tries to look cool during an apocalypse. Audio from RT Podcast #287: http://bit.ly/1xEqo1g and #236: http://bit.ly/1pYYN6M","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1ee5b0c-438b-436a-bb95-67c2c273adc1/sm/ep9890.jpg","duration":77,"publication_date":"2014-10-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-13","changefreq":"weekly","video":[{"title":"S1:E13 - Screen Play #13","description":"Screen Play Discusses the Marvel Universe","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4059,"publication_date":"2014-10-29T17:11:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-295","changefreq":"weekly","video":[{"title":"2014:E295 - RT Podcast #295","description":"RT Discusses Extra Life","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-295","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5733,"publication_date":"2014-10-28T22:22:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-garage-sale","changefreq":"weekly","video":[{"title":"S1:E4 - The Garage Sale","description":"Chris and Aaron compete to see who can make the most money at a garage sale. However, Aaron is only allowed to sell serial killer merchandise while Chris must somehow sell celebrity stalker memorabilia.","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-garage-sale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f1c71ac-5ced-44f5-a2ea-a6d2225ac13b/sm/ep9874.jpg","duration":857,"publication_date":"2014-10-24T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsorcast-animation","changefreq":"weekly","video":[{"title":"S2:E208 - SponsorCast: Animation","description":"Listen to Gray, Miles and Kerry discuss anime, cartoons, movies and basically anything animated in this edition of Sponsor Cast.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsorcast-animation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28874e10-8a63-4130-b2e3-d4f283ba160a/sm/ep9869.jpg","duration":3904,"publication_date":"2014-10-24T16:13:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-4","changefreq":"weekly","video":[{"title":"S2:E207 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on October 17, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/438cea96-282c-416e-ad07-3e75b8d85f95/sm/ep9868.jpg","duration":3642,"publication_date":"2014-10-24T16:13:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-11","changefreq":"weekly","video":[{"title":"V2:E11 - Chapter 11: No Brakes","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find time to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46e58381-ca52-4e10-bbcd-bc74a61aaf4d/sm/ep9863.jpg","duration":1005,"publication_date":"2014-10-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-25","changefreq":"weekly","video":[{"title":"2014:E25 - Pilot Football Message","description":"In RTAA #166, Gus wants to be a secret pilot, Burnie talks about Rice University's football team, and sends a heartwarming text to Gavin. Audio from RT Podcasts: \r\nSecret Pilot - Podcast #281: http://bit.ly/1xhWChK , Rice's Football Team - Podcast #13: http://bit.ly/1xhWChK , Burnie's Message - Podcast #231: http://bit.ly/1CXgE3Z","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd3be43a-0c1b-409f-a5c1-6bda636e7229/sm/ep9855.jpg","duration":86,"publication_date":"2014-10-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-12","changefreq":"weekly","video":[{"title":"S1:E12 - Screen Play #12","description":"Screen Play Discusses Tim Burton films","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4032,"publication_date":"2014-10-22T19:12:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-294","changefreq":"weekly","video":[{"title":"2014:E294 - RT Podcast #294","description":"RT Discusses Plan B Husbands","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-294","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5851,"publication_date":"2014-10-21T19:06:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-5","changefreq":"weekly","video":[{"title":"2014:E7 - Ramsey-Free Spit Off - Happy Hour #7","description":"Geoff Ramsey, Griffon Ramsey, and Gavin Free find themselves in Portland with nothing to do, but to compete in a spit off.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda8c1fc-00c5-4ddd-8da4-76645b241904/sm/ep9842.jpg","duration":319,"publication_date":"2014-10-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-18","changefreq":"weekly","video":[{"title":"2014:E18 - Gus The Destroyer","description":"In RTAA #165, Gus gets drunk in a hot tub then destroys someone's creation.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/292b3cc6-968e-4db2-b997-69435bad0ae9/sm/ep9829.jpg","duration":83,"publication_date":"2014-10-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-11","changefreq":"weekly","video":[{"title":"S1:E11 - Screen Play #11","description":"Screen Play Discusses Marvel Movies","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4499,"publication_date":"2014-10-15T18:34:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-293","changefreq":"weekly","video":[{"title":"2014:E293 - RT Podcast #293","description":"RT Discusses Homemade Liquors","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-293","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6449,"publication_date":"2014-10-14T17:50:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-speed-dating-challenge","changefreq":"weekly","video":[{"title":"S1:E3 - The Speed Dating Challenge","description":"Chris and Aaron go speed dating and compete to see who can match up with the most people... The twist is that they each wrote note-cards for each other and must do whatever the cards say before each date.","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-speed-dating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71a03e95-3101-473c-b48b-aa32cff910a5/sm/ep9810.jpg","duration":730,"publication_date":"2014-10-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsorcast-sports","changefreq":"weekly","video":[{"title":"S2:E206 - SponsorCast: Sports","description":"I know we have some sports fans out there in the RT community but did you know we have some sports fans here in the office If not, sit back and grab a cold drink while Brandon, Jordan and Ray discuss the wide wide world of sports in this episode of SponsorCast!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsorcast-sports","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88eb3875-c962-4c87-b375-b2e4d901ddb8/sm/ep9808.jpg","duration":4142,"publication_date":"2014-10-10T19:19:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsorcast-comics","changefreq":"weekly","video":[{"title":"S2:E205 - SponsorCast: Comics","description":"In this first episode of SponsorCast Patrick, Gray and Jon talk anything and everything relating to comics. So sit back and strap in because they have a lot to go over.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsorcast-comics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46055616-149f-4dc8-ad42-16b5314ed527/sm/ep9807.jpg","duration":4206,"publication_date":"2014-10-10T19:18:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-6","changefreq":"weekly","video":[{"title":"S2:E204 - Sponsor Cut: Cards Against Humanity #6","description":"Join us for another edition of Cards Against Humanity with Kyle, Maggie, Ashley, Barbara, and Meg.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d346ac96-62b0-4c84-a620-f1cae16a6c27/sm/ep9806.jpg","duration":5607,"publication_date":"2014-10-10T14:58:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-10","changefreq":"weekly","video":[{"title":"V2:E10 - Chapter 10: Mountain Glenn","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find time to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1d1791f-0a11-4634-a413-db00a13d43d7/sm/ep9796.jpg","duration":775,"publication_date":"2014-10-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-minimations-season-1-lets-play-minimations-1","changefreq":"weekly","video":[{"title":"LP:E1 - Capture the Flag Shenanigans - Let's Play Minimations #1","description":"The Lads and Gents face off in a game of CTF, and hilarity ensues. Check out Let's Play Minecraft #117: http://bit.ly/1qxOZ35","player_loc":"https://roosterteeth.com/embed/lets-play-minimations-season-1-lets-play-minimations-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae9ec2a5-bc77-49b9-aa6d-50830444cece/sm/ep9790.jpg","duration":94,"publication_date":"2014-10-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-10","changefreq":"weekly","video":[{"title":"S1:E10 - Screen Play #10","description":"Screen Play Discusses Gus' Star Wars Dream","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4082,"publication_date":"2014-10-08T18:05:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-292","changefreq":"weekly","video":[{"title":"2014:E292 - RT Podcast #292","description":"RT Discusses Arcade Games","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-292","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5682,"publication_date":"2014-10-07T18:55:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-2","changefreq":"weekly","video":[{"title":"2014:E6 - A Hairy Situation - Happy Hour #6","description":"In the sixth episode of Happy Hour, Geoff Ramsey, Griffon Ramsey, and Gavin Free get the grossest haircut of all time.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5c9eab6-5c25-491f-8718-4e1d80665d48/sm/ep9776.jpg","duration":636,"publication_date":"2014-10-04T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-9","changefreq":"weekly","video":[{"title":"V2:E9 - Chapter 9: Search and Destroy","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find time to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d23cdd2-9406-47f0-8833-168bfef130ba/sm/ep9761.jpg","duration":949,"publication_date":"2014-10-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-team-fortress-2","changefreq":"weekly","video":[{"title":"2016:E6 - Team Fortress 2","description":"Jack and Ryan take a look at Team Fortress 2 in this week’s Five Facts! Want more facts in games with Red Teams and Blue Teams? Say no more: https://www.youtube.com/watch?v=Lm41adjHyLE","player_loc":"https://roosterteeth.com/embed/five-facts-2016-team-fortress-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7060e7fb-246b-45ae-9f30-201e4d5f97b6/sm/2013912-1454947768390-TF2thumb.jpg","duration":236,"publication_date":"2016-02-08T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-doom-part-1","changefreq":"weekly","video":[{"title":"2016:E41 - DOOM CoOp: Part 1","description":"A team of space marines known as Team Jumbo Shrimp, made up of Jack and Jeremy, are flown to the moon of Mars, Phobos. There, they have to fight the forces of Hell that have burst through to try and get their signatures. But Jumbo Shrimp aint got time to sign all of those Imp t-shirts. Do you know how many sleeve holes they have for those spikes? It's stupid! Anyways... DOOM with Jack and Jeremy!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-doom-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd7f173b-d4d8-49cd-9b7f-8fb96f1eb38d/sm/2013912-1454719301634-doomthumb.jpg","duration":1628,"publication_date":"2016-02-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-just-cause-3-car-tornado","changefreq":"weekly","video":[{"title":"2016:E7 - Just Cause 3 - Car Tornado","description":"What happens when a tornado hits a herd of cars and goes rampaging through the city? I have no idea but watching this is probably the closest we can get to being prepped.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-just-cause-3-car-tornado","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/650f2b2a-763a-4394-af07-5c2f5ba71846/sm/2013912-1454784914058-ttd_jcs_ct_thumb.jpg","duration":234,"publication_date":"2016-02-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-beast-vs-slasher","changefreq":"weekly","video":[{"title":"2016:E40 - GTA V - Beast VS Slasher","description":"The gang gets beastly while checking out the new GTA 5 online gameplay mode, Beast VS Slasher! Seriously, like Ryan started frothing at the mouth, Michael took his shirt off, and then Jack got involved. Things got hairy. Then they played the game.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-beast-vs-slasher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40463dde-8af3-43dd-bb6b-7b5245887673/sm/2013912-1454691865278-GTA_V_Beast_VS_Slasher_Thumbnail.jpg","duration":2032,"publication_date":"2016-02-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-10","changefreq":"weekly","video":[{"title":"2016:E10 - Toilet Bowl of Humans - #10","description":"The AH Crew sits down to talk about dogs stuck together, glitchy achievements, one thousand chicken nuggets and more on this week's Off Topic! This episode originally aired February 5th and is sponsored by Weebly.com (http://bit.ly/1UR1mIf)","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4526cfa-66f5-409e-ab91-2aff511f4b32/sm/2013912-1454742987327-OFT10_TH.jpg","duration":6772,"publication_date":"2016-02-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-call-of-duty-black-ops-3-zombies","changefreq":"weekly","video":[{"title":"2016:E6 - Call of Duty: Black Ops 3","description":"Since I died eating those cashews I left a note telling someone to call Jeremy to finish editing this How To. Apparently he was busy. Something about gum balls. Anyway, I’m fine now. Here’s Joel and Adam hanging out with Jeff Goldblum and Heather Graham. Man, I’m hankering for some brains.","player_loc":"https://roosterteeth.com/embed/how-to-2016-call-of-duty-black-ops-3-zombies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29835bca-e42b-4778-8c82-01f93d764fcc/sm/2013912-1454691475803-HowTo_COD_Zombies_Thumb.jpg","duration":906,"publication_date":"2016-02-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-the-division-beta","changefreq":"weekly","video":[{"title":"2016:E39 - The Division Beta","description":"What the hell, Ubisoft? Callin' this game The Division. Did you ever stop to notice there's not any math going on here? Certainly no division. You've been hyping up fans for years to expect a full fleshed out video game version of Donald in Mathmagic Land. Now The Division Beta is out, and there is nothing left but disappointment. How do you expect Geoff, Jack, Michael, and Ryan to experience their favorite ill-tempered mallard in a fully-rendered three-dimensional cyberworld now? Amateurs.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-the-division-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a78bb26a-a9d9-4b1c-be80-6195c27a462c/sm/2013912-1454720138919-division_thumb.jpg","duration":1362,"publication_date":"2016-02-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gta-v-avalanche-2","changefreq":"weekly","video":[{"title":"2016:E6 - GTA V - Avalanche VS Snipers","description":"Let the busses fall and crush my dreams! Let them smash my body, this is insanity!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gta-v-avalanche-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94430076-25a5-4015-80fa-0507c33f6871/sm/2013912-1454704783417-ava2_thumb.jpg","duration":433,"publication_date":"2016-02-05T21:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-ufc-slapboy-ticklefight-281","changefreq":"weekly","video":[{"title":"2016:E5 - UFC Slapboy Ticklefight - #281","description":"In this corner, weighing in at one hundred and eighty-two pounds, Sacho \"Fast-hands\" Sanchez. In the other this corner, from places unknown, weighing in at 296 pounds, The Studge. Now boys, I want a good, clean fight. Don't tickle below the belt. That's what we call Wiener Town. Now three. Two. One. Tickle!\n\nJack and Ryan check out that fail in EA UFC, as well as Destiny, GTAV, Halo 5, and Rainbow 6: Siege on this week's Fails of the Weak.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-ufc-slapboy-ticklefight-281","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41ff5c39-4684-4a1d-bfe8-88ed808e11dd/sm/2013912-1454548627130-Fails_281_Thumb.png","duration":158,"publication_date":"2016-02-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-193-1-8-8-adventure-part-2","changefreq":"weekly","video":[{"title":"2016:E38 - Minecraft - Episode 193 - 1.8.8 Adventure Part 2","description":"The AH crew has discovered the Ocean Monument, but have yet to unearth the treasures it holds!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-193-1-8-8-adventure-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bf39694-aaf9-4bbf-8cc7-b78d82bf019a/sm/2013912-1454543171205-minecraft_thumbtest1.jpg","duration":2226,"publication_date":"2016-02-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-super-mario-maker","changefreq":"weekly","video":[{"title":"2016:E37 - Super Mario Maker","description":"Achievement Hunter and Funhaus were finally about to end the war between the two crews, until Craig from ScrewAttack stopped by Achievement Hunter headquarters with a WiiU and some devious Super Mario Maker levels in hand!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-super-mario-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92fea13a-2ec6-4c02-8470-56707ab3d978/sm/2013912-1454532460300-mario_thumb.jpg","duration":1832,"publication_date":"2016-02-03T20:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2016-roblox-hunt-five-man-versus-complete-rainbow-road","changefreq":"weekly","video":[{"title":"2016:E1 - Roblox HUNT - Five-Man Versus (Complete Rainbow Road)","description":"Welcome to Hunt: Screw the Rules Edition! 1 Vs 1? Nah. Five-man free-for-all! Competing for achievements? Naaaaah. First the finish the objective wins. Honestly, the satisfaction of winning at RAWBLAWKS is the true achievement this episode.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2016-roblox-hunt-five-man-versus-complete-rainbow-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d48cc9ca-d2f4-4b3d-adfd-4ba5db1d8794/sm/2013912-1454456011401-hunt1.jpg","duration":491,"publication_date":"2016-02-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-fibbage-2","changefreq":"weekly","video":[{"title":"2016:E36 - Fibbage 2 With Funhaus","description":"AH and Funhaus come together to see which one is the best at lying to each other. Their practice of lying to themselves is really going to pay off.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-fibbage-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ced4438-f647-43a4-8be9-d106db3c08ba/sm/2013912-1454457000010-fibbbage_thumb.jpg","duration":1964,"publication_date":"2016-02-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shenanigans-2016-2","changefreq":"weekly","video":[{"title":"2016:E7 - Shenanigans: Cleaning Out. Breaking In.","description":"No one is safe. Lock your doors. Who cares? Hide your belongings? We'll find them! Everything you love... and leave everywhere... is about to be thrown back in your face!\n\n...or your office...","player_loc":"https://roosterteeth.com/embed/shenanigans-2016-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efa42c76-8fdf-41d5-971a-006ed64d6c68/sm/2013912-1454448836523-shen_thumb.jpg","duration":626,"publication_date":"2016-02-02T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-cloudberry-kingdom-part-14","changefreq":"weekly","video":[{"title":"2016:E35 - Cloudberry Kingdom Part 14","description":"The Berry Bros are back! What does Ryan have in his house this time? And will there ever be an enchilada night? Find out on this stunning episode of Cloudberry Kingdom!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-cloudberry-kingdom-part-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d00e1aab-e499-4f90-9fe6-638411b04394/sm/2013912-1454431561032-cloudberry14_thumb.jpg","duration":2189,"publication_date":"2016-02-02T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-lazer-team-screening-intros-for-ahwu-302","changefreq":"weekly","video":[{"title":"2016:E6 - Lazer Team Screening Intros for AHWU 302","description":"Damn! You guys sure sent in a ton of intros for AHWU 302. More specifically, intros from Lazer Team screenings. That's awesome, but we can't fit you all into AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-lazer-team-screening-intros-for-ahwu-302","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/303c77d2-3aa9-4a3c-8c97-cf9862939751/sm/2013912-1454378990823-AHWUBonus.jpg","duration":301,"publication_date":"2016-02-02T02:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-gav-in-the-box-ahwu-for-february-1-st-2016-302","changefreq":"weekly","video":[{"title":"2016:E5 - Gav-In-the-Box - AHWU for February 1st, 2016 (#302)","description":"With an AHWU title like \"Gav-In-the-Box,\" you were probably expecting some sort of re-write of \"Pop! Goes the weasle,\" weren't you? Well screw that noise. Do you know how freakin' hard it would be to rhyme Gavin with pretty much anything? Something like, \n\n\n\n\"Man at the bar came up to me\n\nAnd asked 'What you be havin?'\n\nI said 'How 'bout a banger -no mash'\n\nPop! Goes the Gavin!\"\n\n\n\nNot only is this rhyme not particularly entertaining, but it also got a wee bit too penis-y. So nope. It's not worth it. Nobody's poppin' Gavin on AHWU this week.\n\n\n\nVid of week\n\nCommunity vid #1 and #2","player_loc":"https://roosterteeth.com/embed/ahwu-2016-gav-in-the-box-ahwu-for-february-1-st-2016-302","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6596ec09-4ff1-46ce-8936-bb1a9b79b03d/sm/2013912-1454378906213-AHWU302.jpg","duration":548,"publication_date":"2016-02-02T02:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-five-nights-at-freddy-s","changefreq":"weekly","video":[{"title":"2016:E5 - Five Facts At Freddy’s","description":"Michael and Gavin team up to bring you this week’s Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-five-nights-at-freddy-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a6631f3-7570-4503-8972-646c0731ee11/sm/2013912-1454359694646-FFAFTB.jpg","duration":242,"publication_date":"2016-02-01T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-halo-5-warzone","changefreq":"weekly","video":[{"title":"2016:E34 - Halo 5: Warzone","description":"WAR?! What is it good for? To prove how bad the AH crew is at Halo.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-halo-5-warzone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aea0421c-bc41-4175-8050-6250d5836c3c/sm/2013912-1454359969384-warzone_thumb.jpg","duration":1325,"publication_date":"2016-02-01T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-emily-wants-to-play","changefreq":"weekly","video":[{"title":"2016:E5 - Emily Wants to Play","description":"Joel and Adam got back from playing the Division and Joel said, “HEY ALEC. I got you this tiny bag of nuts from the airplane. I actually ate everything but the cashews.” I told him I was allergic to cashews. He just replied, “That’s a hilarious joke. Here! Keep editing all of these hilarious videos while I go surf with kangaroos in Australia for a few weeks.” In this video Adam and Joel deliver pizza to a family just moving into their new place. I should not eat these nuts, but I’ve run out of office plants.","player_loc":"https://roosterteeth.com/embed/how-to-2016-emily-wants-to-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18bb0096-efc3-4395-b792-6da307852ebf/sm/2013912-1453484016272-HowTo_EmilyWantsToPlay_Thumb.jpg","duration":1130,"publication_date":"2016-02-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-witness","changefreq":"weekly","video":[{"title":"2016:E33 - Let's Watch - The Witness","description":"I have never been in an elevator with Jonathan Blow. None of the Achievement Hunter crew has.\n\nI would have liked to have been in an elevator with Jonathan Blow sometime between 2011 and one week ago. I want to hear Jonathan Blow's elevator pitch for The Witness before having played the Witness.\n\nSince this will never happen, now I can only find joy in pretending I was in an elevator with Jonathan Blow. Maybe it was Christmas Eve 2013. Hell, I'd even take Arbor Day 2012.\n\n\"The Witness,\" I can imagine he'd start, \"Is Professor Layton, only with no story. No charming cast of characters to enjoy. Just you, all by yourself, on an island. Also, you know how Professor Layton has a large variety of puzzles? Nope! Lines. Line for days. You're gonna be drawing lines 'til the cows come home. Except there are no cows in the game, so I guess you won't stop drawing lines! And believe you me. As soon as the game releases, every single 'games journalist' out there will be jizzing- yes, literally jizzing at my feet.\"\n\nI wanted to hear that pitch. I wanted to tell Jonathan that he blows. But we never shared an elevator. And now The Witness is out. And now I've played it. And it's really damn good. \n\n...witness it.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-witness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aae5e162-f21c-4ca1-8f00-2f658a814741/sm/2013912-1454270879676-witnessthumb2.jpg","duration":3118,"publication_date":"2016-01-31T20:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-lovers-in-a-dangerous-space-time-45","changefreq":"weekly","video":[{"title":"2016:E3 - Lovers In A Dangerous Space Time","description":"I believe in a thing called love\n\nJust blast the hell outta those bees\n\nThere's a chance Gav and Michael could\n\nBe the saviors of bunnyhood\n\nThey believe in a thing called love!\n\nOoooooo... STOP SINGING AND MOVE THE GOD DAMNED SHIELD!!!","player_loc":"https://roosterteeth.com/embed/play-pals-2016-lovers-in-a-dangerous-space-time-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f6d7eb6-abff-4f9a-95ca-0f8561c9071b/sm/2013912-1454020176842-Thumbnail.jpg","duration":872,"publication_date":"2016-01-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-snipers-vs-stunters-2","changefreq":"weekly","video":[{"title":"2016:E32 - GTA V - Snipers VS Stunters 2","description":"The boys are back in Snipers VS Stunters, with special guest Malik! They'll fly through the air with grace only to be shot in the face and forcibly ejected from their vehicles.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-snipers-vs-stunters-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89359bba-e9c6-4113-b80b-563dedd8b6d5/sm/2013912-1454121103036-GTA_V_Snipers_vs_Stunters_2_Thumbnail.jpg","duration":1874,"publication_date":"2016-01-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-tom-cruise-has-never-made-a-bad-movie-9","changefreq":"weekly","video":[{"title":"2016:E9 - Tom Cruise Has Never Made A Bad Movie - #9","description":"The AH Crew sits down to talk about Tom Cruise Movies, Gremlins 2, The Simpsons Arcade game and more on this week's Off Topic! This episode originally aired January 29th.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-tom-cruise-has-never-made-a-bad-movie-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/612b0230-ff91-4205-9ed6-3a81cf7af358/sm/2013912-1454117981532-OFT9_TH.jpg","duration":6904,"publication_date":"2016-01-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-happy-wheels","changefreq":"weekly","video":[{"title":"2016:E4 - Happy Wheels","description":"Man that hamburgdog looks delicious. I wonder when Joel will come back. I bet he went to the quokka island. Those things are so cute. Here’s a video about the joys of parenthood but this time with a bicycle. Should not have eaten those cashews. Why is everything so blurry?","player_loc":"https://roosterteeth.com/embed/how-to-2016-happy-wheels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c099418-b412-436a-9331-8b0357db0abb/sm/2013912-1454087835333-HowTo_Happy_Wheels_Thumb.jpg","duration":1496,"publication_date":"2016-01-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-madden-nfl-16-super-bowl-50-special","changefreq":"weekly","video":[{"title":"2016:E30 - Madden NFL 16: Super Bowl 50 Special","description":"Achievement Hunter sets out to predict Super Bowl 50! It's the Denver Broncos versus the Carolina Panthers in what one might consider the most accurate sports game simulation of all time.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-madden-nfl-16-super-bowl-50-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/241d849b-1ee3-4e7d-be57-6bb8d7948ec5/sm/2013912-1454085295388-Madden_16_Thumbnail.jpg","duration":3278,"publication_date":"2016-01-29T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-just-cause-3-rocket-man","changefreq":"weekly","video":[{"title":"2016:E5 - Just Cause 3 - Rocket Man","description":"I think it's gonna be a long long time, till touchdown brings the bodies down for you to find. We launched that man right out of his home. Whoa whoa whoa whoaaaa...We did more stuff with rockets guys.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-just-cause-3-rocket-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a4d5a54-c9b6-43e5-a5f4-58052e367b31/sm/2013912-1454085042800-rm_thumb.jpg","duration":246,"publication_date":"2016-01-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016-batman","changefreq":"weekly","video":[{"title":"2016:E2 - Batman Arkham Knight - Secret Wall Easter Egg","description":"Jack and Geoff check out a new Easter Egg in Batman Arkham Knight. The last one lead to a world of magic and mystery, where could this one take us?","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016-batman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6ed20fc-022d-4cc1-90b7-8126b37d7576/sm/2013912-1454021286200-batmanthumb.jpg","duration":122,"publication_date":"2016-01-28T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-extreme-gutter-balls-fails-of-the-weak-280","changefreq":"weekly","video":[{"title":"2016:E4 - Extreme Gutter Balls - #280","description":"Jeremy and Jack fail the weak this week as they laugh at your failures in Just Cause 3, Fallout 4, Halo 5, and Madden 16. Want a surprise sixth fail? It's this description right here.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-extreme-gutter-balls-fails-of-the-weak-280","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/176135f2-15db-4d1d-bc06-1b953d1c7019/sm/2013912-1453955949166-FotW_280_Thumb.png","duration":76,"publication_date":"2016-01-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-192-1-8-8-adventure","changefreq":"weekly","video":[{"title":"2016:E29 - Minecraft - Episode 192 - 1.8.8 Adventure","description":"The 1.8.8 Update for Minecraft was released, while Geoff prepares for a 1.8.8 Appreciation Contest the boys sit down and have a little ADVENTURE!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-192-1-8-8-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ae8c8f0-9a09-472f-bfa6-d201363c6c49/sm/2013912-1453932394749-188adventure_Thumn.jpg","duration":2978,"publication_date":"2016-01-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trouble-in-terrorist-town","changefreq":"weekly","video":[{"title":"2016:E28 - Gmod: Trouble in Terrorist Town Part 3","description":"Thanks to Turtle Beach for sponsoring this video: http://www.turtlebeach.com/\n\n\n\nSo much had changed since the boys last stepped foot in Terrorist Town. Michael ring'd up some girl's finger. Jack lost a beard and then gained a new one. Gavin started creatively directing the creatives, directly. Ryan began playing freely. Geoff started Geoffing in ways no one thought Geoff could.\n\n\n\nBut Terrorist Town. Terrorist Town never changes. Three years later, it was time to bring the crew back to their old stomping grounds. It seemed to be the only place they could find out who they really were. The only place they could understand their feelings towards each other. The only place they could murder each other and walk away guilt-free.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trouble-in-terrorist-town","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/203e3de3-2147-410e-94df-ba67ee7f4b4e/sm/2013912-1453840387033-ttt_thumb.jpg","duration":1704,"publication_date":"2016-01-28T05:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gta-v-bowling","changefreq":"weekly","video":[{"title":"2016:E4 - GTA V - Bowling","description":"The AH crew are good men. They're a crew. They are men who love the outdoors...and bowling!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gta-v-bowling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/321ce59b-5c60-4394-a3d5-89b26a4e7c54/sm/2013912-1453924425668-bowling_thumb.jpg","duration":644,"publication_date":"2016-01-27T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-variety-pack-11","changefreq":"weekly","video":[{"title":"2016:E4 - Variety Pack #11","description":"Jeremy watches in horror as Jack slowly loses his ability to speak in this week’s Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-variety-pack-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33fbe96d-052f-4c7a-80e6-1d8e95ab9c50/sm/2013912-1453826060143-VP11.jpg","duration":225,"publication_date":"2016-01-26T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gmod-murder-part-1","changefreq":"weekly","video":[{"title":"2016:E27 - Gmod: Murder Part 1","description":"Thanks to Turtle Beach for sponsoring this video: http://www.turtlebeach.com/\n\n\n\nThere's a murderer on the loose... but no one knows who he is. It could be you, it could be me... it could even be... *BANG*\n\n\n\nWhat? Don't look at me! I had to kill him! He was the murderer! Why are you all looking at me like that? I swear I'm not... you're crazy to think... dammit...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gmod-murder-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ab7ab5f-1696-4191-bf8e-2cca9b004f25/sm/2013912-1453763236847-murder_thumb.jpg","duration":2271,"publication_date":"2016-01-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-too-cool-for-australia-ahwu-for-january-25-th-2016-301","changefreq":"weekly","video":[{"title":"2016:E4 - Too Cool for Australia - AHWU for January 25th, 2016 (#301)","description":"Buying bread from a man in Brussels\n\nHe was six-foot-four and full of muscles\n\nI said, \"Do you speak-a my language?\"\n\nHe just smiled and gave me a Vegemite sandwich\n\nAnd he said,\n\n\n\n\"Look, Mr. Hay. I understand your confusion, since the majority of our population speaks French and Dutch. But you do realize you're in a coffee shop in the lobby of the Australian Embassy in Brussels, don't you? You were invited here - an invitation that came to you in English, I might add. Shouldn't you assume we \"speak-a\" your language here? I mean come on! You know what? I don't have time for this. Just eat your Vegemite and be on your way. But first, please sign this. No, not the receipt. This pre-release promitonal copy of Business as Usual. I'm a big fan of your work, primarily because I myself am an Australian. Which is to say\n\n\n\nI come from a land down under\n\nWhere beer does flow and men chunder\n\nCan't you hear, can't you hear the thunder?\n\nYou better run, you better take cover.\" \n\n\n\nVid of week: https://www.youtube.com/watch?v=fvgV9qTx5n4 || Community vid: https://www.youtube.com/watch?v=k_ioHj5LgG8","player_loc":"https://roosterteeth.com/embed/ahwu-2016-too-cool-for-australia-ahwu-for-january-25-th-2016-301","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6d359e0-a427-46a8-ab0d-1880748f0d75/sm/2013912-1453759884471-AHWU301.jpg","duration":418,"publication_date":"2016-01-25T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-rtx-australia-special-8","changefreq":"weekly","video":[{"title":"2016:E8 - RTX Australia Special - #8","description":"The AH Crew sits down live from Australia for this week's Off Topic podcast!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-rtx-australia-special-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92e5e4c6-7d0a-4715-abfa-92e40dc6a4d0/sm/2013912-1453742616570-OFF08_-_THUMB.jpg","duration":3058,"publication_date":"2016-01-25T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-the-hall-of-ascension-great-levels-in-gaming","changefreq":"weekly","video":[{"title":"2016:E6 - The Hall of Ascension - Great Levels in Gaming","description":"In this second entry in \"Great Levels in Gaming\", join Max as he picks apart what makes the Hall of Ascension a tomb worth raiding in 2013's Tomb Raider reboot. He managed to accidentally overwrite a 95% file while recording, so don't say he never did anything for you.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-the-hall-of-ascension-great-levels-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9128fd50-8cc8-46ae-83e0-49f38d8ad53d/sm/2013912-1453740507740-GLiG_TombRaider.jpg","duration":450,"publication_date":"2016-01-25T16:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-star-wars-battlefront-droids-vs-villains","changefreq":"weekly","video":[{"title":"2016:E26 - Star Wars Battlefront - Droids VS Villains","description":"Thanks to Turtle Beach for sponsoring this video. Check out the Star Wars Battlefront headsets: http://www.bestbuy.com/site/turtle-beach-star-wars...\n\n\n\nIt is a period of civil war. The Lads, striking from their side of the room, have won their first victory against the evil Gents.\n\n\n\nDuring the battle, Gavin Free managed to steal secret plans to Geoff's ultimate weapon, the EMPTY WHISKEY BOTTLE, a glass object with enough power to knock Jeremy out cold with a good enough throw.\n\n\n\nPursued by the Geoff's sinister agents, Ryan and Jack, Michael Jones races back to his desk aboard his rolling chair, custodian of the stolen plans that can save Jeremy and restore freedom to the Achievement Hunter office....","player_loc":"https://roosterteeth.com/embed/lets-play-2016-star-wars-battlefront-droids-vs-villains","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6f98631-b9fa-4b55-b846-8fd558481ada/sm/2013912-1453160053241-droidsVSvillians.jpg","duration":2320,"publication_date":"2016-01-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-plants-vs-zombies-2-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2016:E3 - Plants VS Zombies: Garden Warfare 2 Beta - Achievement Hunter VS The World","description":"Here's a story of a war with no end in sight\n\n\nA tale of plants and undead gearing up for a fight\nYou got your peashooter, popping peas in the teeth\nOf the zombs rushing out of their graves hidden underneath\nColonel Corn taking point with a cluster of butter\nDropping tasty airstrikes. So look out for another.\nThen the orange rolls out, popping open a shield\nBeware and take care from all the damage he will deal\nBut the biggest threat of all, isn't based on power\nIt's the troops are all buffed by the buffy sunflower\nNow the battles building up\nA plant and zombie filled swirl\nThis is the story of Achievement Hunter VS The World!","player_loc":"https://roosterteeth.com/embed/vs-2016-plants-vs-zombies-2-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e45fb201-931d-411b-bd2b-40e20e1b9068/sm/2013912-1453506376907-ahVStw_pvz2_thumb.jpg","duration":1300,"publication_date":"2016-01-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-every-bullet-counts","changefreq":"weekly","video":[{"title":"2016:E25 - GTA V - Every Bullet Counts","description":"Thanks to Turtle Beach for sponsoring this video: http://www.turtlebeach.com/ \n\nMichael, Jack, Ryan, and Jeremy face off a in GTA V with nothing but a single bullet and an axe. Oh yeah, and no maps!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-every-bullet-counts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/241706f7-d9ea-4628-83b8-5303dba3a364/sm/2013912-1453408910041-GTA_V_Every_Bullet_Thumbnail.jpg","duration":1684,"publication_date":"2016-01-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-let-s-watch-doom","changefreq":"weekly","video":[{"title":"2016:E24 - Let's Watch - DOOM: Tech Gone Bad","description":"After exiting the Achievement Hunter office Jack knew the worst was up ahead. He still hadn’t reached the place where the evil vegetables were coming from. He is soon teleported to another realm, as he materializes, he realizes Gavin, Jeremy, and Michael are also there; they are all at the Vegetable Anomaly. Types of lettuce are all over the place as ranch dressing oozes from cracks in the ground. It's up to Jack to to find the salad portal and stop the vegetables from coming through and invading earth! Time to lock and load.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-let-s-watch-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b4648a6-abcf-4f7e-aec4-a98d8f52b30b/sm/2013912-1453499783218-letswatch_doom_thumb.jpg","duration":2226,"publication_date":"2016-01-23T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-halo-rocket-league","changefreq":"weekly","video":[{"title":"2016:E3 - Halo 5 - Rocket League","description":"Have you ever wanted to play Rocket League? But not like real Rocket League? Do you also have a copy of Halo 5? Well, good news everyone! Achievement Hunter has a version of Rocket League that's fully playable in Halo 5! Watch it now and play it later!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-halo-rocket-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/394e634f-f5cb-4031-92eb-c4d1e19f6984/sm/2013912-1453489190677-halorocket_thumb.jpg","duration":834,"publication_date":"2016-01-22T18:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-world-of-warships","changefreq":"weekly","video":[{"title":"2016:E23 - World of Warships","description":"The Gents take to the sea and set sail for world conquest! 'Lay aft here, ye lubbers, lay aft, one and all! \n\nThanks to WarGaming.net for sponsoring this video!\n\nClick here to play World of Warships now! - http://bit.ly/LetsPlayWoWs\n\nBe sure to use the invite code \"ILOVEWARSHIPS\" to redeem these special bonuses!:\n\n- 7 days of Premium access\n\n- 500 Gold\n\n- One free Garage/Hangar Slot\n\n- DIANA (Russian Tier 2 Cruiser Ship)","player_loc":"https://roosterteeth.com/embed/lets-play-2016-world-of-warships","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a54f508-548a-40dc-9dc7-f76892b306c7/sm/2013912-1453229520047-worldofwarships_thumb.jpg","duration":1903,"publication_date":"2016-01-22T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-191-tower-of-gav-part-2","changefreq":"weekly","video":[{"title":"2016:E22 - Minecraft - Episode 191 - Tower of Gav Part 2","description":"Wacky! Fun! Crazy! IT'S OUTRAGEOUS! Minecraft, a whole lot of fun, towers to be won!\n\nIt's a real crazy game where ANYTHING goes!\n\nMINECRAFT! It's a challenge, it's a race, and a real wacky place!\n\nUse your body and your brain if you wanna win the game!\n\nMINECRAFT!\n\n[Filmed In front of a Live Studio Audience]","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-191-tower-of-gav-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2624997-df6f-43aa-a152-129ae418c3f0/sm/2013912-1453400001871-Minecraft_Thum.jpg","duration":2012,"publication_date":"2016-01-21T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-grand-theft-megatron-279","changefreq":"weekly","video":[{"title":"2016:E3 - Grand Theft Megatron - #279","description":"Just like Mr. Optimus Prime himself, Geofflock and Jackatron have robotomorphed into Jeremypticon and Trevorippersnapper for Fails of the Weak Volume 279. This week, watch them watch you fail at Just Cause 3, Fallout 4, Fallout 4 again, Grand Theft Auto V, and Star Wars Battlefront.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-grand-theft-megatron-279","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3e55786-b46f-4f6e-b28a-c485858dd7d3/sm/2013912-1453334273359-Fails_279_Thumb.png","duration":185,"publication_date":"2016-01-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-trivial-pursuit-part-6","changefreq":"weekly","video":[{"title":"2016:E21 - Trivial Pursuit Part 6","description":"One of the biggest muscles in the body is the brain. This is the game that flexes that muscle. Sees just how strong it really is. Though it isn't as strong as the tongue. That thing is god damn strong. It's like an elephant trunk, you know? Just all muscle! Also the brain is big... but the biggest muscle in the body is the gluteus maximus. That's right, you're ass is the biggest muscle in your body. How ashamed are you right now? For heaven's sake, shrink that fat ass and work out your brain. Be the exception! You're brain will be bigger than your ass! Be the first!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-trivial-pursuit-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/107327ed-d125-44a5-a1d3-e5b97816fcb8/sm/2013912-1453306829815-Thumbnail.jpg","duration":1652,"publication_date":"2016-01-20T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016-emily-wants-to-play-44","changefreq":"weekly","video":[{"title":"2016:E2 - Emily Wants to Play","description":"One Two\n\n\nEmily's coming for you\nThree Four\nShut that stupid door\nFive Six\nThese dolls are fucking pricks\nSeven Eight\nNot allowed to look away\nNine Ten\nPlay Pals are back again","player_loc":"https://roosterteeth.com/embed/play-pals-2016-emily-wants-to-play-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f135bd03-9cfb-4de5-9e19-281388a745a0/sm/2013912-1453222028615-PP_EmilyWantsToPlay.jpg","duration":689,"publication_date":"2016-01-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-contagion-with-alan-ritchson-and-colton-dunn","changefreq":"weekly","video":[{"title":"2016:E20 - Contagion with Alan Ritchson and Colton Dunn","description":"So they're finally here, saving planets for you\n\nIf you know the words you can join in too\n\nPut your hands together if you want to clap\n\nAs we take you through this lazer rap\n\n\n\nLT! Lazer Team\n\n\n\nHe's the leader of the bunch. And he's got sass\n\nHe's finally back to kick some ass\n\nHis defensive shield kicks things up a notch\n\nAnd deflects all the bullects right back into your crotch\n\nHUH!\n\n\n\nLT! Lazer Team\n\nLT! Lazer Team is here!\n\n\n\nThis one takes selfies, so listen up dudes\n\nHe'll steal your girlfriend and he's rather rude\n\nThere's a gun on his hand, so if you try to fight back\n\nHe'll blow you to bits with his Lazer attack\n\nHUH!\n\n\n\nLT! Lazer Team\n\n\n\nHe has a bad mustache but a really cool visor\n\nThat made this poor dummy a whole lot wiser\n\nHe can use Xray vision to go spelunking for rubies\n\nOr just use that power to check out some boobies\n\nHUH!\n\n\n\nLT! Lazer Team\n\n\n\nThis one is lazy, at least he was in the past\n\nNow he's got super boots and he runs really fast\n\nHe could start in Taiwan and in five minutes be here\n\nAnd he'll even show up with a 6-pack of beer\n\nHUH!\n\n\n\nLT! Lazer Team\n\nLT! Lazer Team is here\n\n\n\nHe's not a part of the team but he is in the movie\n\nHe's the champ of the Earth and that's pretty damn groovy\n\nNow instead of fend off an alien invasion\n\nThese five dudes are just gonna play Contagion","player_loc":"https://roosterteeth.com/embed/lets-play-2016-contagion-with-alan-ritchson-and-colton-dunn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/211540c5-5755-400e-8f44-80c3f1748d5a/sm/2013912-1453231821354-LazerTeamCon_Thumb.jpg","duration":2574,"publication_date":"2016-01-19T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-rocket-league-snow-day-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2016:E2 - Rocket League: Snow Day - Achievement Hunter VS The World","description":"Drifted off in mid-edit, and here’s what I dreamt\n\n\nI saw Geoff, Jack, and Ryan, representing team Gent\nThey were out racing cars, and just proving their worth\nSo they issued a challenge out to all of planet Earth\nMany fighters got the call. Middle fingers were thrown\nThere were a wealth of willing racers representing their home\nSo prepare for a battle. Hide your boys and girls\nThis is the story of Achievement Hunter VS The World!","player_loc":"https://roosterteeth.com/embed/vs-2016-rocket-league-snow-day-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4df77bd-fc8c-468d-8725-b00c8c654149/sm/2013912-1453133527826-AHvsTW_RocketJumpThumb.jpg","duration":1792,"publication_date":"2016-01-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-happy-300-th-birthday-ahwu-for-january-18-th-2016-300","changefreq":"weekly","video":[{"title":"2016:E3 - Happy 300th Birthday - AHWU for January 18th, 2016 (#300)","description":"Councilmen, I stand before you not only as your queen. I come to you as a Geoff. I come to you as a Jack. I come to you as an Achievement Hunter. I come to you with great humility. I am not here to represent Matt or Burnie. Their actions speak louder than my words ever could. I am here for all those voices which cannot be heard. Gavin, Michael, Ryan, Jeremy, Matt. Three hundred families that bleed for our rights. And for the very principles this Let's Play room was built upon. \n\n\n\nWe're making dumb videos on the internet where we play video games, gentlemen. We must send the entire Achievement Hunter army to aid our king in the preservation of not just ourselves, but of our video games. Send the army for the preservation of Xbox. Send it for PC. Send it for PS4 and Wii U, sure, why not? Send it for VR. But most importantly, send our army for hope. Hope that a Geoff and his men have not been wasted to the pages of history. That their courage bonds us together. That we are made stronger by their actions of making videos for the internet, and that your choices today reflect their humorous stupidity.\n\n\n\nCommunity vid of week \n\nVid of the week","player_loc":"https://roosterteeth.com/embed/ahwu-2016-happy-300-th-birthday-ahwu-for-january-18-th-2016-300","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c63b7b7c-c792-4dbd-b1e9-471725a2b1b7/sm/2013912-1453164881145-AHWU300000.jpg","duration":631,"publication_date":"2016-01-19T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-star-whal-just-the-tip-with-laura-bailey-and-travis-willingham","changefreq":"weekly","video":[{"title":"2016:E19 - StarWhal Just the Tip with Laura Bailey and Travis Willingham","description":"Laura Bailey and Travis Willingham join Achievement Hunter as they travel through space, on a journey to find love, on the backs of space narwhals.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-star-whal-just-the-tip-with-laura-bailey-and-travis-willingham","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c94730a4-4b1a-4c8e-a77d-9d9deef75903/sm/2013912-1453161175907-starwhal_thumb.jpg","duration":1279,"publication_date":"2016-01-18T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-just-cause-3","changefreq":"weekly","video":[{"title":"2016:E3 - Just Cause 3","description":"Jack talks about Just Cause 3 in this week’s Five Facts. Oh, and Geoff’s there too, I guess.","player_loc":"https://roosterteeth.com/embed/five-facts-2016-just-cause-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3630383c-2c66-4fb0-b28b-79f799933ccb/sm/2013912-1453133776467-FFJC3TN.jpg","duration":269,"publication_date":"2016-01-18T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-achievement-hunter-vs-funhaus","changefreq":"weekly","video":[{"title":"2016:E18 - GTA V - Achievement Hunter VS Funhaus","description":"The rivalry continues as Achievement Hunter faces off against Funhaus in a great show of ineptitude and failure. The battlefield? A GTA V playlist consisting of Running Back, Slasher, and Top Fun.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-achievement-hunter-vs-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecb8574e-2459-489e-95b8-7152cb9edabb/sm/2013912-1453082243581-GTA_V_more_Funhaus.jpg","duration":2896,"publication_date":"2016-01-18T01:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gta-v-zap-mountain","changefreq":"weekly","video":[{"title":"2016:E2 - GTA V - Zap Mountain","description":"First there was Splash Mountain. Then Thunder Mountain. Then Space Mountain.\nNow...\nThere's Zap Mountain. Many have tried to climb it, seeking glory at its peak. None have succeeded. It is an endless minefield of electricity and hatred. Not even rubber soles could protect their rubber souls. It is a challenge only meant for the toughest of competitors.\n\nUnfortunately, they were all busy with wayyy more important things. So the Fake AH Crew is there instead.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gta-v-zap-mountain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5c12508-b9e5-439c-b3c9-c241f2d92fbc/sm/2013912-1452900350778-zapmountain_thumb.jpg","duration":779,"publication_date":"2016-01-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-7","changefreq":"weekly","video":[{"title":"2016:E7 - Who's Dead? Who's Dead? Somebody's Dead. - #7","description":"This episode originally aired January 15, 2016.\n\nThe AH Crew sits down to talk about the new Cloverfield trailer, celebrity deaths, Trivial Pursuit and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdeceadc-d13b-4b0e-8f56-b12b344aa973/sm/2013912-1452907434353-OFF07_-_THUMB.png","duration":8785,"publication_date":"2016-01-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2016-episode-132-ryan-vs-jeremy","changefreq":"weekly","video":[{"title":"2016:E1 - Episode 132: Ryan vs. Jeremy","description":"Even virtual punches leave bruises. And hurt feelings.","player_loc":"https://roosterteeth.com/embed/vs-2016-episode-132-ryan-vs-jeremy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fda5b53a-f4ae-4c8b-9003-25f81bd77380/sm/2013912-1452900184912-versus_thumb.jpg","duration":536,"publication_date":"2016-01-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-simple-planes-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2016:E17 - Simple Planes - The Rooster Teeth Podcast Crew","description":"How could this happen to me?\n\nI made awful planes\n\nThat crashed on the run\n\nThe cockpit goes on\n\n\n\nAs I'm crashing all day\n\nI'm sick of my plane\n\nLet's shift to Burnie\n\nPlease download one that works for me","player_loc":"https://roosterteeth.com/embed/lets-play-2016-simple-planes-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89d3e0a6-0b72-4f90-8881-4f6202fde84c/sm/2013912-1452888554368-Simple_Planes_Thumb.png","duration":1994,"publication_date":"2016-01-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2016","changefreq":"weekly","video":[{"title":"2016:E16 - Let's Watch - XCOM 2","description":"Thanks to 2K for letting us check out XCOM 2 early!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34dde27b-50c8-4096-89b9-b4e3f03fffc6/sm/2013912-1452899925957-xcom_thumb.jpg","duration":2432,"publication_date":"2016-01-15T23:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-190-tower-of-gav","changefreq":"weekly","video":[{"title":"2016:E15 - Minecraft - Episode 190 - Tower of Gav","description":"175 episodes later, Gav decides he's had enough of Geoff's tower hoarding ways. The Brit has nicked the Tower of Pimps and it's up to the rest of the crew to track it down and take Gav out! Can they out-wit, out-last, and out-play the creator of the TOP!? Will the audience understand a reference from a reality TV show from the year 2000?! Some of these questions and far less will be answered...maybe!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-190-tower-of-gav","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6de97b25-0d2f-4470-a73b-7e9298884c96/sm/2013912-1452883763798-Minecraftthumb_1.jpg","duration":2258,"publication_date":"2016-01-15T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-the-division","changefreq":"weekly","video":[{"title":"2016:E3 - The Division","description":"This video is sponsored by Ubisoft. Check out the game beta here: http://bit.ly/1Q194hy. Tom Clancy's The Division is rated M. \n\n\n\nSorry, we wanted to include Bruce and Adam more, but Joel didn’t know that we were gonna get their video. Also, to see a funnier version of this video, watch the Funhaus video here.","player_loc":"https://roosterteeth.com/embed/how-to-2016-the-division","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d0ed782-0a2a-4e3c-9f52-0037c8748f8e/sm/2013912-1452805543110-DivisionThumbnail.jpg","duration":1597,"publication_date":"2016-01-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-lego-dimensions-with-laura-bailey-and-travis-willingham","changefreq":"weekly","video":[{"title":"2016:E14 - Lego Dimensions with Laura Bailey and Travis Willingham","description":"Michael and Lindsay check out Lego Dimensions with with special guests, voice actors Laura Bailey and Travis Willingham. Brick by brick their friendship grows as they break their way through this awesome game.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-lego-dimensions-with-laura-bailey-and-travis-willingham","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34a38364-baa3-4490-b4c7-2f81f0ea0aa4/sm/2013912-1452789385259-lego_thumb.jpg","duration":1835,"publication_date":"2016-01-14T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-volume-278","changefreq":"weekly","video":[{"title":"2016:E2 - Invisible Dinosaurs and Goat Fighting! - #278","description":"Renegade Rebels Jack Pattillo, Ryan Haywood, and Jeremy Dooley slap their penises all over tradition and decide to do a three-man commentary for Fails of the Week Volume 278. Madness! This week, the community fails hard at Desiny, Call of Duty: Black Ops 3, Star Wars Battlefront, Ark: Survival Evolved, and Metal Gear Solid V: The Phantom Pain.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-volume-278","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee8f7877-e03b-4dc2-90a0-6c62a57448b8/sm/2013912-1452725800457-Fails_278_Thumb.png","duration":217,"publication_date":"2016-01-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-mad-max","changefreq":"weekly","video":[{"title":"2016:E2 - Mad Max","description":"A wasteland filled with car parts\n\nYou hope that your engine starts\n\nYou find a new seat\n\nYou thought it was neat\n\nBut now your car smells like farts\n\nEnjoy Five Facts: Mad Max featuring Jack and Michael!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-mad-max","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff012583-d035-4c26-8a37-83bf437272f3/sm/2013912-1452702713792-FFMM.jpg","duration":315,"publication_date":"2016-01-13T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2016","changefreq":"weekly","video":[{"title":"2016:E1 - Shower With Your Dad Simulator 2015","description":"On today's Play Pals, Michael and Gavin shower with their dear old pop-pops. Lots of water, lots of soap, tons of dicks, but not very much plot. Then again, maybe there's a lot more plot than you truly know.\n\n\n\nIt had been a very long day at the restaurant for Bob. Teddy got upset and threw fries everywhere. His rival, Jimmy Pesto, mooned him through the window of the competing restaurant across the street. Bob needed to be pampered. He also needed to spend some quality time with his son, Gene. \n\n\n\nHe also needed a shower. Gene needed more of a shower.\n\n\n\nThen Bob had an idea. Why not mix pamper time, son time, and shower time? It was perfect! \"Linda, me and Gene are gonna go have some father-son time the only way father-sons truly can.\"\n\n\n\nLuckily, a new shop just opened up in the always-changing lot next door to the burger shop. \"I Have the Shooooweeeeer! - Manly showers by men, for men.\" \n\n\n\nBob and Gene stepped inside. Nothing but dicks. Dicks everywhere. \"When in Rome...\" Bob said, starting to strip down. \n\n\n\n\"...You pull your dingle out!\" Gene replied excitedly, already fully nude.\n\n\n\nYup. Sounds about right. That has to be it.","player_loc":"https://roosterteeth.com/embed/play-pals-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d99e96c8-6979-42ff-b8ad-7e489a06bcac/sm/2013912-1452718043683-showerwithdad_thumb.jpg","duration":838,"publication_date":"2016-01-13T19:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-grab-bag-episode-7","changefreq":"weekly","video":[{"title":"2016:E5 - Grab Bag #7","description":"There's a window you watch your videos through. But on the other side of that window is an entire house. A house full of rooms, and closets full of skeletons. A lot of those rooms we didn't think you wanted to see, here at Achievement Hunter. But then out comes Grab Bag. The show that brings you into those rooms and shows you the stuff that almost got thrown away without any recognition. Grab Bag is your rock... that smashes through that window. Love the rock. Worship the rock.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-grab-bag-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afd35d2a-3581-4e8b-9759-c4552c76e568/sm/2013912-1452621373728-Grab_Bag_7.jpg","duration":274,"publication_date":"2016-01-12T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-rainbow-six-siege-terrorist-hunt-part-3","changefreq":"weekly","video":[{"title":"2016:E13 - Rainbow Six Siege - Terrorist Hunt Part 3","description":"Ryan, Michael, and Jeremy ditch Gavin and grab Jack and Geoff to potentially make some progress! Can Jack's tactics and Geoff's...Geoff-ness...carry them to success? Let's begin the operation!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-rainbow-six-siege-terrorist-hunt-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b18702d-7021-4fea-86cc-682347b8bd18/sm/2013912-1452618211082-thp3.jpg","duration":2350,"publication_date":"2016-01-12T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-hey-kitty-ahwu-for-january-11-th-2016-299","changefreq":"weekly","video":[{"title":"2016:E2 - Hey Kitty! - AHWU for January 11th, 2016 (#299)","description":"Wake up you sleepy head\n\nPut on YouTube, shake up your bed\n\nPut another HUNT on the screen for me\n\nI've made some wet bread and coffee\n\nLook in my subbox and what do I see\n\nA Jack in the sky and his beard reaching down to me\n\nAll the hunters came today\n\nAnd it looks as though they're here to stay\n\n\n\nWhat are we coming to\n\nNo Geoff for me, no Ryan for you\n\nI think about a world to come\n\nWhere the videos were missing the Gavin ones\n\nLet's Play in pain, Let's Play in awe\n\nBy a room of men who questioned\n\nWhat to play and record\n\nAll the hunters came today\n\nAnd it looks as though they're here to stay\n\n\n\nOh you 'Chievement Hunts\n\nDon't you know you're driving your\n\nBurnies and Hullums insane\n\nOh you 'Chievement Hunts\n\nDon't you know you're driving your\n\nBurnies and Hullums insane\n\nLet me make it plain\n\nGotta make up for the Funhaus Inferior\n\n\n\nLook out at your Michael\n\nSee his face next to Jeremy's\n\nConsoles on, play all day for you\n\nBully hard, they'll need therapy\n\nYouTube's a bitch\n\nWe've finished AHWUs\n\nAll other channels have outgrown their use\n\nAll the hunters came today\n\nAnd it looks as though they're here to stay\n\n\n\nOh you 'Chievement Hunts\n\nDon't you know you're driving your\n\nBurnies and Hullums insane\n\nOh you 'Chievement Hunts\n\nDon't you know you're driving your\n\nBurnies and Hullums insane\n\nLet me make it plain\n\nYou gotta make up for the Funhaus Inferior\n\n\n\nVid of week: https://www.youtube.com/watch?v=el9LwZ7NfBs || Community vid: https://www.youtube.com/watch?v=SkkyPg2fqI4","player_loc":"https://roosterteeth.com/embed/ahwu-2016-hey-kitty-ahwu-for-january-11-th-2016-299","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/643a0729-2690-41c9-95cc-88f793c04736/sm/2013912-1452556635114-AHWU_Thumb_299.png","duration":328,"publication_date":"2016-01-11T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2016-gta-v-avalanche","changefreq":"weekly","video":[{"title":"2016:E1 - GTA V - Avalanche","description":"Can't stop the bus.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2016-gta-v-avalanche","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8ab55c7-94ff-4f4a-acd8-0abb8466505d/sm/2013912-1452285199488-avalanche_thumb.jpg","duration":625,"publication_date":"2016-01-11T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-battlefront-turning-point","changefreq":"weekly","video":[{"title":"2016:E12 - Battlefront - Turning Point","description":"Geoff, Jack, Ryan, and Jeremy play the new(ish) gamemode, Turning Point. The Rebels try to push their way across the field, while the Empire tries to stop them. Simple as that. Simple enough for the Achievement Hunters? Doubtful...","player_loc":"https://roosterteeth.com/embed/lets-play-2016-battlefront-turning-point","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/889e150d-bf8f-43f2-847e-09217a8fed70/sm/2013912-1452529221337-turningpoint_thumb.jpg","duration":1864,"publication_date":"2016-01-11T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-extraction","changefreq":"weekly","video":[{"title":"2016:E11 - GTA V - Extraction","description":"Aircraft down! We repeat, aircraft down! Literally everyone's dead save for the President. We request immediate extraction! Send your most disfunctional team.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-extraction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e986d8c2-1398-4c5e-80c0-463095cd3aab/sm/2013912-1452321555788-GTA_V_Extraction_Thumbnail.jpg","duration":1815,"publication_date":"2016-01-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-6","changefreq":"weekly","video":[{"title":"2016:E6 - Michael's Proudest Moment - #6","description":"This episode originally aired January 8, 2016.\n\nThe AH Crew sits down to talk about picking up your own poop, hobos living in your attic and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a517490e-13a5-4613-bb96-f9f76b0ff837/sm/2013912-1452293333561-OFF06_-_THUMB.jpg","duration":8604,"publication_date":"2016-01-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-who-s-your-daddy","changefreq":"weekly","video":[{"title":"2016:E2 - Who's Your Daddy?","description":"Adam and Joel were like, “HEY ALEC! we're going to [REDACTED]. Stay here and edit until we get back in a few days! Flat soda isn’t in the budget anymore so you’ll just have to eat the office plants!” So here’s a video about the joys of parenthood. I’ll be over here eating these plastic leaves.","player_loc":"https://roosterteeth.com/embed/how-to-2016-who-s-your-daddy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb77e9a3-fb0e-4258-87b4-0e8beca7a9d1/sm/2013912-1452276039005-HowTo_WhoseYourDaddy_Thumb.jpg","duration":898,"publication_date":"2016-01-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2016","changefreq":"weekly","video":[{"title":"2016:E1 - Just Cause 3 - Rubber Duck Easter Egg","description":"Jeremy and Michael show you how to mount a duck in the most legal way possible.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d192d9d0-d8ef-41d6-8fce-af54b3d5319b/sm/2013912-1452291929356-RubberDuckThumb.jpg","duration":202,"publication_date":"2016-01-08T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-the-sour-ball-challenge","changefreq":"weekly","video":[{"title":"2016:E4 - The Sour Ball Challenge","description":"Or: Jeremy Dooley. More like Jeremy Drooley.\n\n\n\nSure, Michael may be the one to usually stuff grotesque amounts of food in his face, but when it comes to suckin' down some super sour balls, there's no better Achievement Hunter for the job than Jeremy. We already saw Geoff crumble to the power of one sour ball. Can Jeremy manage to take eight balls at the same time and suck them down for four minutes straight? That's right. Nothin' but ball jokes! And people say writing descriptions is hard work.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-the-sour-ball-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b983acd-e6e5-454d-9141-2b179a6f9870/sm/2013912-1452280454985-gumball_thumb.jpg","duration":451,"publication_date":"2016-01-08T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-minecraft-episode-189-clean-house","changefreq":"weekly","video":[{"title":"2016:E10 - Minecraft - Episode 189 - Clean House","description":"Achievement City took some heavy hits in 2015, so it's time for some major cleaning up and less blowing up!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-minecraft-episode-189-clean-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/643993c1-51b4-42ec-a7d1-8f9877ed0639/sm/2013912-1452200245383-MC_THUMB_CLEANHOUSE.jpg","duration":2533,"publication_date":"2016-01-07T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2016-volume-277","changefreq":"weekly","video":[{"title":"2016:E1 - Top 10 Fails of 2015 - Volume 277","description":"Geoff and Jack make a short return to Fails of the Weak to cover this special episode of the Top 10 Fails from 2015. FotW Volume 277 covers fails from Far Cry 4, Grand Theft Auto V, Just Cause 3, Last of Us Remastered, Mad Max, and Metal Gear Solid V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2016-volume-277","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15344322-91ad-437e-8f66-cf54dba5ee4a/sm/2013912-1452017002557-Fails277-Big.jpg","duration":343,"publication_date":"2016-01-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2016-smarties-for-the-s-m-a-r-t-presented-with-comment-12-week-of-december-28-th","changefreq":"weekly","video":[{"title":"2016:E3 - SMARTIES FOR THE SMART! - Presented with Comment #12 - Week of December 28th","description":"Competitors Geoff, Ryan, Jack, Gavin, and Michael are back! Can they guess the video, guess the site, and realize how incredibly mean some people can be Also nice... but mostly mean. Meanies. Meanie bo-beanie! \n\nThe videos included in today's episode are:\n\n\n\nRainbow Six Siege - Achievement Hunter VS The World http://achievementhunter.com/episode/vs-2015-rainbow-six-siege-achievement-hunter-vs-the-world\n\nPoor Funhaus - AHWU for December 28th, 2015 (#297) http://achievementhunter.com/episode/ahwu-2015-297\n\nThe Arbiter and the Oracle - Great Levels in Gaming http://achievementhunter.com/episode/achievement-hunter-season-2-great-levels\n\nFive Facts - Assassin's Creed Unity http://achievementhunter.com/episode/five-facts-2015-assassin-s-creed-unity\n\nCrossy Road - Play Pals #42 http://achievementhunter.com/episode/play-pals-2015-42\n\nStar Wars Battlefront, Fallout 4, GTA V, and More! - Fails of the Weak #276 http://achievementhunter.com/episode/fails-of-the-weak-2015-volume-276\n\nHalo 5 - Achievement Horse http://achievementhunter.com/episode/achievement-horse-2016-halo-5\n\nLets Play - GTA V - Offense Defense 3 http://achievementhunter.com/episode/lets-play-let-s-play-2-gta-v-offense-defense-3\n\nLets Play - Black Ops 3: Zombies - The Giant http://achievementhunter.com/episode/lets-play-let-s-play-2-black-ops-3-zombies-the-giant\n\nLets Play - Rainbow Six Siege - Terrorist Hunt Part 2 http://achievementhunter.com/episode/lets-play-let-s-play-2-rainbow-six-siege-terrorist-hunt-part-2\n\nLets Play - Cloudberry Kingdom Part 13 http://achievementhunter.com/episode/lets-play-let-s-play-2-cloudberry-kingdom-part-13\n\nLets Play Minecraft - Episode 188 - Flower Picking http://achievementhunter.com/episode/lets-play-let-s-play-2-minecraft-episode-188-flower-picking\n\nLets Play - GTA V - Relay Race http://achievementhunter.com/episode/lets-play-2016-gta-v-relay-race","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2016-smarties-for-the-s-m-a-r-t-presented-with-comment-12-week-of-december-28-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4cf18e0-cd47-46cc-828c-583887fd368f/sm/2013912-1452037558004-Presented_With_Comment_12_Week_of_December_28th.jpg","duration":1026,"publication_date":"2016-01-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-octodad-dadliest-catch-part-3","changefreq":"weekly","video":[{"title":"2016:E9 - Octodad: Dadliest Catch Part 3","description":"Need help figuring out the next installment of your Michael x Gavin fan fiction Let's Play Octodad Part 3's got you covered. Michael and Gavin are loving husbands and the fathers of two almost-adorable-but-relatively-creepy children. Not hubbydaddies with each other though. Nope! They're the same person, fighting for control over their joint body. Oh yeah, you like that You're getting wet just thinking about it, aren't you Don't just sit there with your ever-moistening nether regions. Go write it! But please, keep it to yourself.","player_loc":"https://roosterteeth.com/embed/lets-play-2016-octodad-dadliest-catch-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65b082f0-af03-4fe2-8816-aed7b6892d92/sm/2013912-1452028498486-octodad_thumb.jpg","duration":3033,"publication_date":"2016-01-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2016-assassin-s-creed-syndicate","changefreq":"weekly","video":[{"title":"2016:E1 - Assassin's Creed Syndicate","description":"Jack cant speak while Geoff enjoys his failures during Five Facts: Assassins Creed Syndicate!","player_loc":"https://roosterteeth.com/embed/five-facts-2016-assassin-s-creed-syndicate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8010d14c-9d04-427d-8ea1-354018803f5b/sm/2013912-1452037781161-FFACStn.jpg","duration":322,"publication_date":"2016-01-05T23:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-star-trek-part-7","changefreq":"weekly","video":[{"title":"2016:E8 - Star Trek Part 7","description":"Ryan finally switches to a keyboard that's shaped like a controller!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-star-trek-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d81c284b-22d3-4190-86b5-fe7cdb428f4b/sm/2013912-1452016848470-startrek7_thumb.jpg","duration":3414,"publication_date":"2016-01-05T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2016-298","changefreq":"weekly","video":[{"title":"2016:E1 - Your First New Year's Jack - AHWU for January 4th, 2016 (#298)","description":"Your first new year's Jack is a special new year's Jack. Be sure, before embracing your first New Year's Jack, to find some place secluded. The bathroom or your bedroom should suffice. If you share a bedroom with someone, be sure to get their consent before you get your first New Year's Jack on right in front of them. They may, after all, want to have their first New Year's Jack simultaneously as you have your first New Year's Jack. With you. Together. As a couple. Haha! Intimate Jack moment.\n\n\n\nVid of week: https://www.youtube.com/watchv=QspqSlLEBJ8 \n\nCommunity vid: Vacation Trevor don't got no time for choosing. All the videos are the community vid of the week.","player_loc":"https://roosterteeth.com/embed/ahwu-2016-298","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc453539-ac9d-4d54-8ef7-092cc9b1135e/sm/2013912-1451948768576-AHWU_thumb.jpg","duration":321,"publication_date":"2016-01-04T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-8-man-gang-beasts","changefreq":"weekly","video":[{"title":"2016:E7 - 8-Man Gang Beasts","description":"It's the ultimate showdown!Only one will survive, I wonder who it will beOld Geoff Ramsey was hopping aroundThe Gang Beasts ring like a big playgroundWhen suddenly Jack P burst from the ropesAnd hit Geoff Ramsey with a rope-a-dopeGeoff Ramsey was drunk and went on the attackBut didn't expect to get clocked by GavWho proceeded to open up a can of Gav-fooWhen Adam Kovic came out of the blueAnd he started punching out Gav, Geoff, and JackThen they all got dropped by a Bruce attackBut before he could make it back to the FunhausCraig from Screw Attack wanted to get someone outSo he jumped into the ring and he threw a left punchJeremy dodged the shot cause he had a hunchBut the punch hit Michael Jones sqaure in the eyesAnd Craig picked him up and put him on the outside","player_loc":"https://roosterteeth.com/embed/lets-play-2016-8-man-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad25e049-fc0b-41ef-91c7-2898962fa728/sm/2013912-1451924199446-gangbeasts.jpg","duration":2192,"publication_date":"2016-01-04T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2016-top-5-games-of-2015","changefreq":"weekly","video":[{"title":"2016:E2 - Top 5 Games of 2015","description":"They claim no responsibility, but this list is Achievement Hunter's TOP 5 GAMES of 2015!","player_loc":"https://roosterteeth.com/embed/countdown-2016-top-5-games-of-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2798727b-1b10-4d34-a720-181b23e41dc5/sm/2013912-1451600258090-top52015_thumb.jpg","duration":306,"publication_date":"2016-01-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2016-runner-up-games-of-2015","changefreq":"weekly","video":[{"title":"2016:E1 - Runner Up Games of 2015","description":"The 5 games that JUST missed being in Achievement Hunter's list of Top 5 Games from 2015!","player_loc":"https://roosterteeth.com/embed/countdown-2016-runner-up-games-of-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09646117-bca5-40cc-bffa-c2f2a01d82d7/sm/2013912-1451599304533-runnerups2015_thumb.jpg","duration":283,"publication_date":"2016-01-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2016-gta-v-relay-race","changefreq":"weekly","video":[{"title":"2016:E6 - GTA V - Relay Race","description":"Teams of 2, taking turns, quitting games, driving in circles, and talking about anal. Stick around for the post-video dessert!","player_loc":"https://roosterteeth.com/embed/lets-play-2016-gta-v-relay-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/766ad29e-c9a5-4af7-b353-a01af061c02c/sm/2013912-1451599853468-relayrace_thumb.jpg","duration":2065,"publication_date":"2016-01-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-welcome-to-2016-5","changefreq":"weekly","video":[{"title":"2016:E5 - Welcome to 2016 - #5","description":"*WARNING: This episode contains a very large Star Wars: The Force Awakens Spoiler around 38:00*\n\n\n\nThis episode originally aired January 1, 2016.\n\n\n\nWith a bunch of people out of the office, the AH Crew sits down to look back at 2015, and look ahead to what's coming in 2016.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2016-welcome-to-2016-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc31f915-9474-415f-8091-6a83dd5ea772/sm/2013912-1451590296567-OFF05_-_THUMB.png","duration":5946,"publication_date":"2016-01-02T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2016-badland","changefreq":"weekly","video":[{"title":"2016:E1 - Badland","description":"Joel and Jeremy play a little Badland. One thing leads to another, and they end up owing $35,634,587.46 in child support for fathering a small country.","player_loc":"https://roosterteeth.com/embed/how-to-2016-badland","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/453c3d13-b607-4efc-a66b-7ca76f0bbf11/sm/2013912-1451583700637-HowTo_Badland_Thumbnail_Final.jpg","duration":1246,"publication_date":"2016-01-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2016-halo-5","changefreq":"weekly","video":[{"title":"2016:E1 - Halo 5","description":"Jack and Geoff revisit their first episode of Achievement Horse and see what 5 years of advancements has done.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2016-halo-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec76c098-f053-42a4-8530-09091b2ed366/sm/2013912-1451611326202-halohorse_thumb.jpg","duration":1167,"publication_date":"2016-01-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-276","changefreq":"weekly","video":[{"title":"2015:E53 - Volume 276","description":"In the beginning of a new era for Fails of the Weak, Gavin and Ryan step up to the plate and walk you through fails and glitches from Fallout 4, Grand Theft Auto V, Just Cause 3, and Star Wars Battlefront.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-276","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d212c7c2-b1f8-4e45-ab23-8d14121f20ec/sm/2013912-1451581627167-Fails276-Big.jpg","duration":147,"publication_date":"2015-12-31T17:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-188-flower-picking","changefreq":"weekly","video":[{"title":"2015:E377 - Minecraft - Episode 188 - Flower Picking","description":"The boys \"Hunt Flowers\", according to Ryan, while discussing how much meat they can shove in their mouths. Also, Jack accidentally burned his webcam into his footage, don't worry though we censored the cam durring the parts where he got a little \"naughty\".","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-188-flower-picking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cee9815a-1b49-49a9-9c0b-bda7ae8e4cf6/sm/2013912-1451579635876-mc_flowerpicking_thumb.jpg","duration":2011,"publication_date":"2015-12-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-cloudberry-kingdom-part-13","changefreq":"weekly","video":[{"title":"2015:E376 - Cloudberry Kingdom Part 13","description":"The Berry Bros are back! How many levels will they finish today The answer may surprise you.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-cloudberry-kingdom-part-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc914212-9bc1-4c51-a34e-db16030ced6a/sm/2013912-1451505853769-cloudberryk13_thumb.jpg","duration":1977,"publication_date":"2015-12-30T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-42","changefreq":"weekly","video":[{"title":"2015:E24 - Crossy Road","description":"Why did the Michael cross the road Hell if I know. Join Mallard Gavin and Pengling Michael as they go on an incredible journey to hop 500 steps without throwing each other into oncoming traffic.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/541e6a03-6fb8-41b0-b112-2a84c918ab35/sm/2013912-1451494539863-playpals_crossyroads_thumb.jpg","duration":1056,"publication_date":"2015-12-30T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-assassin-s-creed-unity","changefreq":"weekly","video":[{"title":"2015:E51 - Assassin's Creed Unity","description":"Jack and Geoff sit down for the last Five Facts of 2015 to talk about Assassins Creed Unity!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-assassin-s-creed-unity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d6c39af-0c88-46e6-b289-9016ccb84f0a/sm/2013912-1451417015437-FFU.jpg","duration":217,"publication_date":"2015-12-29T19:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-rainbow-six-siege-terrorist-hunt-part-2","changefreq":"weekly","video":[{"title":"2015:E375 - Rainbow Six Siege - Terrorist Hunt Part 2","description":"Try 2! Different map! More skills! Less talent!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-rainbow-six-siege-terrorist-hunt-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2901ef1-aebc-40e0-b379-94302688ddb8/sm/2013912-1451407643120-terroristhunt2_thumb.jpg","duration":1930,"publication_date":"2015-12-29T16:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-great-levels","changefreq":"weekly","video":[{"title":"2015:E83 - The Arbiter and the Oracle - Great Levels in Gaming","description":"We launch a new series today called Great Levels in Gaming. Join Max as he takes you on an analytical look at some of your favorite levels in gaming and explains what may have driven you to enjoy them so much. Sit back, grab some popcorn, put on your thinking caps, and lets check out some levels.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-great-levels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cbf7729-333e-4ed9-9382-35bcbc1f6e66/sm/2013912-1451344034120-image1.JPG","duration":765,"publication_date":"2015-12-28T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-297","changefreq":"weekly","video":[{"title":"2015:E51 - Poor Funhaus - AHWU for December 28th, 2015 (#297)","description":"The Achievement Hunter office is lonely and AHWU has become self aware. At what point will the government intervene and protect its citizens from this menace Also, Funhaus sucks.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-297","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1968e508-d2c2-4b97-b5e6-9e5014cc2960/sm/2013912-1451328920736-AHWU297_thumb.jpg","duration":394,"publication_date":"2015-12-28T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-black-ops-3-zombies-the-giant","changefreq":"weekly","video":[{"title":"2015:E374 - Black Ops 3: Zombies - The Giant","description":"Here's a giant surprise for you. The AH crew has improved in a big way when it comes to Zombies. It was a pretty tall order to get that to happen, but it happened. This is a huge deal. Something something giant puns.\n\n\n\nAlso, not gonna lie. Pretty disappointed this map is called \"The Giant,\" but it doesn't take place on the body of a giant. Seriously. All the zombies could spawn in from the tip of the giant's 50 foot dong. Missed opportunity, Treyarch.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-black-ops-3-zombies-the-giant","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83a09367-ae2f-4900-8fa4-b17001ac1b1f/sm/2013912-1450295503323-Blops3_Giant_Thumb.png","duration":1413,"publication_date":"2015-12-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-how-to-airscape","changefreq":"weekly","video":[{"title":"2015:E56 - Airscape","description":"Joel and Adam get motion sick and get mad at each other. They also play this video game.","player_loc":"https://roosterteeth.com/embed/how-to-2015-how-to-airscape","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4f86a3a-578b-48b5-ba22-80d82407f024/sm/834020-1451243340644-AirThumb.jpg","duration":2004,"publication_date":"2015-12-27T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-rainbow-six-siege-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2015:E44 - Rainbow Six Siege - Achievement Hunter VS The World","description":"Geoff, Jack, Michael, Gavin, and Matt Vs the planet! How good could the planet possibly be Right Like... they couldn't... they... Oh God...","player_loc":"https://roosterteeth.com/embed/vs-2015-rainbow-six-siege-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0012c6e5-12a1-457c-98e6-2a4d74c9a3c5/sm/834020-1450906174916-ahvstw_rainbow6.jpg","duration":1937,"publication_date":"2015-12-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-offense-defense-3","changefreq":"weekly","video":[{"title":"2015:E373 - GTA V - Offense Defense: Close Encounters (#3)","description":"Just another night of bumping and grinding for the boys of Achievement Hunter. I mean that in all the ways one could mean that.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-offense-defense-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0df3d213-9879-4819-bea0-9bb73aa68939/sm/834020-1450896463698-ofdef3_thumb.jpg","duration":1979,"publication_date":"2015-12-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-021313","changefreq":"weekly","video":[{"title":"S1:E518 - SideScrollers Extended 02/13/13","description":"Sam takes the stage to work on his series of jokes based on ducks - exclusive for Advantage Members.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-021313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8addac9d-af6c-4dbd-a5dc-692316b18065/sm/video_thumbnail_7881566.png","duration":406,"publication_date":"2013-02-13T12:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"flipping-off-the-judge\"","changefreq":"weekly","video":[{"title":"S1:E103 - SideScrollers - \"Flipping Off the Judge\"","description":"Ever wanted to flip off a judge? This week the guys discuss why you shouldn't.\r\nBlack Nerd Hates Pokemon - http://bit.ly/Vc2tWE\r\n\tChoose Your Adventure - The Mystery Gun - http://bit.ly/11CDRLC\r\n\tScrewin' Around with Mario Sports Games - http://bit.ly/12AqHxW\r\n\tReal Trailers - DmC - http://bit.ly/V52YBO\r\n\tThe Game OverThinker Overbytes - A La Carte - http://bit.ly/XVx21a\r\n\tHow Many Lives? w/ Ghosts 'N Goblins - Ben's Attempt - http://bit.ly/YHVBQl\r\n\tOut of the Box - Dead Space 3 - http://bit.ly/Xt82QY","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"flipping-off-the-judge\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/639ad989-66c2-4d42-b86a-1a3821b3f142/sm/video_thumbnail_7876041.jpg","duration":3364,"publication_date":"2013-02-13T07:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021213-today-on-hard-news-pokemon-rumble-onto-wii-u-raymans-delay-sparks-a-revolution-and-colonial-marines-has-a-dirty-secret","changefreq":"weekly","video":[{"title":"S1:E364 - Hard News 02/12/13 - Today on Hard News, Pokemon rumble onto Wii U, Rayman's delay sparks a revolution, and Colonial Marines has a dirty secret.","description":" \r\nToday on Hard News, Pokemon rumble onto Wii U, Rayman's delay sparks a revolution, and Colonial Marines has a dirty secret.\r\n \r\nPokemon Rumble U - http://www.screwattack.com/news/pokemon-rumble-sequel-announcement-pokemon-tv-app\r\nRayman Legends devs upset with parent company - http://www.screwattack.com/news/rayman-legends-developer-ubisoft-montpellier-upset-their-parent-company\r\nAliens: Colonial Marines' singleplayer outsourced - http://www.screwattack.com/news/portion-aliens-colonial-marines-was-outsourced-section-8%E2%80%99s-timegate-studios\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021213-today-on-hard-news-pokemon-rumble-onto-wii-u-raymans-delay-sparks-a-revolution-and-colonial-marines-has-a-dirty-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2606ece-63c3-418f-92d2-8d70c0ed822b/sm/video_thumbnail_7855871.jpg","duration":138,"publication_date":"2013-02-12T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021113-a-legacy-of-kain-resurrection-fighting-is-magic-put-down-and-activision-confirms-more-than-another-cod","changefreq":"weekly","video":[{"title":"S1:E363 - Hard News 02/11/13 - A Legacy of Kain resurrection, Fighting is Magic put down, and Activision confirms more than another CoD?","description":" \r\nToday on Hard News, Legacy of Kain could be resurrected, Fighting is Magic is put down, and Activision might have confirmed more than another Call of Duty.\r\n \r\nLegacy of Kain resurrection? - http://www.screwattack.com/news/could-square-be-resurrecting-legacy-kain-series\r\nHasbro puts down Fighting is Magic - http://www.screwattack.com/news/mlp-fighting-magic-team-recieves-cease-and-desist\r\nActivision confirms new CoD and then some - http://www.screwattack.com/news/activision-confirms-new-call-duty-game-2013\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-021113-a-legacy-of-kain-resurrection-fighting-is-magic-put-down-and-activision-confirms-more-than-another-cod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9acfa9ae-7792-466c-b66f-686745c4760e/sm/video_thumbnail_7837981.png","duration":148,"publication_date":"2013-02-11T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/choose-your-adventure-the-mystery-gun","changefreq":"weekly","video":[{"title":"S1:E517 - Choose Your Adventure - The Mystery Gun","description":"Ben found a mystery gun in our closet.  Now you choose how he uses it.","player_loc":"https://roosterteeth.com/embed/choose-your-adventure-the-mystery-gun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/376ba3d4-11d0-4b58-a8ab-f1b82db96a4d/sm/video_thumbnail_7816071.png","duration":45,"publication_date":"2013-02-10T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-12","changefreq":"weekly","video":[{"title":"S1:E516 - Real Trailers - DmC","description":"What the trailers for DmC REALLY should say.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57c2258b-f56c-4231-8f81-a3b8434779ca/sm/video_thumbnail_7700531.jpg","duration":24,"publication_date":"2013-02-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-020613","changefreq":"weekly","video":[{"title":"S1:E515 - SideScrollers Extended 02/06/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-020613","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/159c0b8b-12bd-410a-93e0-9d7fcd80284f/sm/video_thumbnail_7732166.jpg","duration":352,"publication_date":"2013-02-07T14:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020713-capcom-wants-to-know-your-favorite-fighter-witcher-3-announced-and-rayman-legends-delayed","changefreq":"weekly","video":[{"title":"S1:E362 - Hard News 02/07/13 - Capcom wants to know your favorite fighter, Witcher 3 announced, and Rayman Legends delayed","description":" \r\nToday on Hard News, Capcom wants to know your favorite Street Fighter, The Witcher 3 is officially announced, and some big news about Rayman Legends.\r\n \r\nCapcom's Street Fighter Poll - http://www.screwattack.com/news/capcom-wants-know-your-favorite-steet-fighter-characters\r\nThe Witcher 3 announced - http://www.screwattack.com/news/witcher-3-officially-revealed-today-cd-projekt-red\r\nRayman Legends delayed, no longer Wii U exclusive - http://www.screwattack.com/news/ubisoft-has-revealed-rayman-legends-delayed-so-it-can-go-multiplatform\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-020713-capcom-wants-to-know-your-favorite-fighter-witcher-3-announced-and-rayman-legends-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5176e4e7-e11f-466f-ad01-d9c030ecc982/sm/video_thumbnail_7731966.png","duration":132,"publication_date":"2013-02-07T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-w-ghosts-n-goblins-bens-attempt","changefreq":"weekly","video":[{"title":"S1:E514 - How Many Lives? w/ Ghosts 'N Goblins - Ben's Attempt","description":"Just one more competitor remains before the winner (and loser) can be named!  How many lives will it take Ben to clear the first level of Ghosts 'N Goblins?","player_loc":"https://roosterteeth.com/embed/how-many-lives-w-ghosts-n-goblins-bens-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14cd64cd-70a2-4ef3-ab8b-12c86a560245/sm/video_thumbnail_7727411.jpg","duration":409,"publication_date":"2013-02-07T11:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-dead-space-3","changefreq":"weekly","video":[{"title":"S1:E27 - Out of the Box - Dead Space 3","description":"Visceral made some big changes with Dead Space 3, and Bryan and Craig are checking out what they did to many people's favorite series. Does it feel like Dead Space? Is it not \"Dead Space\" but still a really good game? Is it complete crap? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-dead-space-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3392269d-f68d-47ea-aa64-97e44ec553b8/sm/video_thumbnail_7694651.jpg","duration":1807,"publication_date":"2013-02-06T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020613-home-arcade-goes-mobile-on-vita-redbox-on-xbox-and-best-buy-loses-thousands-of-pre-orders","changefreq":"weekly","video":[{"title":"S1:E361 - Hard News 02/06/13 - Home Arcade goes mobile on Vita, Redbox on Xbox, and Best Buy loses thousands of pre-orders","description":" \r\nToday on Hard News, Home Arcade goes mobile on the Vita, Redbox will be on Xbox, and a glitch erases thousands of Bioshock Infinite pre-orders.\r\n \r\nPS Vita gets Home Arcade - http://www.screwattack.com/news/ps-vita-getting-playstation-home-arcade-app\r\nRedbox Instant comes to Xbox 360 - http://www.screwattack.com/news/redbox-instant-coming-xbox-360-service%E2%80%99s-launch\r\nBest Buy glitch cancels 3,000 Infinite pre-orders - http://www.screwattack.com/news/glitch-reportedly-canceled-3000-pre-orders-bioshock-infinite-best-buy\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-020613-home-arcade-goes-mobile-on-vita-redbox-on-xbox-and-best-buy-loses-thousands-of-pre-orders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fa0c91c-9071-4061-a32e-1715aaf64c5c/sm/video_thumbnail_7700831.png","duration":136,"publication_date":"2013-02-06T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"cocaine-science-fair\"","changefreq":"weekly","video":[{"title":"S1:E102 - SideScrollers - \"Cocaine Science Fair\"","description":"Find our what a fourth grader in Florida brought to school for her science project on ScrewAttack's weekly podcast.\r\nDownload the audio version of this episode here - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio_02_06_13.mp3\r\n\t\r\n\tVGV - Sam and Max Hit the Road - http://www.screwattack.com/shows/originals/video-game-vault/vgv-sam-and-max-hit-road\r\n\tFinal Fantasy All the Bravest REAL Trailer - http://www.screwattack.com/shows/originals/random-awesomeness/final-fantasy-all-bravest-real-trailer\r\n\tApex 2013 - Quick Tips From The Pros - http://www.screwattack.com/shows/originals/random-awesomeness/apex-2013-quick-tips-pros\r\n\tScrewin' Around - Crash All The Cars In Burnout Takedown! - http://www.screwattack.com/shows/originals/screwin-around/screwin-around-crash-all-cars-burnout-takedown\r\n\tReview - Street Fighter X Mega Man v2 - http://www.screwattack.com/reviews/review-street-fighter-x-mega-man-v2\r\n\tReview - The Walking Dead: Assault - http://www.screwattack.com/reviews/review-walking-dead-assault\r\n\tApex 2013 - The Best Olimar in America! - http://www.screwattack.com/shows/originals/random-awesomeness/apex-2013-best-olimar-america\r\n\tReview - The Cave - http://www.screwattack.com/reviews/review-cave\r\n\tReview - Call of Duty: Black Ops II DLC - Revolution - http://www.screwattack.com/reviews/review-call-duty-black-ops-ii-dlc-revolution","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"cocaine-science-fair\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99a934b4-d946-4b43-acbe-490db764a260/sm/video_thumbnail_7694656.jpg","duration":3492,"publication_date":"2013-02-06T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-w-ghosts-n-goblins-craigs-attempt","changefreq":"weekly","video":[{"title":"S1:E513 - How Many Lives? w/ Ghosts 'N Goblins - Craig's Attempt","description":"Even Craig, the most experienced Ghosts 'N Goblins player, attests to the game's overbearing difficulty.  How many lives will it take him to clear the first level?","player_loc":"https://roosterteeth.com/embed/how-many-lives-w-ghosts-n-goblins-craigs-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b80edff5-63a6-4675-a836-83b11e07ca97/sm/video_thumbnail_7673146.jpg","duration":264,"publication_date":"2013-02-05T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020513-scott-pilgrim-dlc-delayed-again-ouya-dated-and-sony-breaks-up-with-superbot","changefreq":"weekly","video":[{"title":"S1:E360 - Hard News 02/05/13 - Scott Pilgrim DLC delayed again, OUYA dated, and Sony breaks up with SuperBot","description":" \r\nToday on Hard News, Pilgrim DLC delayed again, when to expect the OUYA, and Sony breaks up with SuperBot.\r\n \r\nScott Pilgrim DLC delayed again - http://www.screwattack.com/news/scott-pilgrim-dlc-delayed-once-again\r\nOUYA confirmed for summer release - http://www.screwattack.com/news/ouya-confirmed-summer-release-pre-orders-come-early\r\nSony parts ways with SuperBot Entertainment - http://www.screwattack.com/news/sony-parts-ways-superbot-entertainment\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-020513-scott-pilgrim-dlc-delayed-again-ouya-dated-and-sony-breaks-up-with-superbot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6cb2ddd-41cd-44db-95aa-b0d48bbc851f/sm/video_thumbnail_7671716.png","duration":131,"publication_date":"2013-02-05T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-w-ghosts-n-goblins-sams-attempt","changefreq":"weekly","video":[{"title":"S1:E512 - How Many Lives? w/ Ghosts 'N Goblins - Sam's Attempt","description":"Sam attempts to clear the first level of one of gaming's most famously difficult hellspawns.  But how many lives will it take him?","player_loc":"https://roosterteeth.com/embed/how-many-lives-w-ghosts-n-goblins-sams-attempt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/476a46ac-5753-4b37-a25a-d3e6a9838150/sm/video_thumbnail_7654801.jpg","duration":311,"publication_date":"2013-02-04T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020413-a-skullgirls-dlc-character-fire-emblem-awakening-has-some-shipping-issues-in-america-and-ign-has-a-new-owner","changefreq":"weekly","video":[{"title":"S1:E359 - Hard News 02/04/13 - A Skullgirls DLC character, Fire Emblem: Awakening has some shipping issues in America, and IGN has a new owner.","description":" \r\nToday on Hard News, a new Skullgirls character is revealed, Fire Emblem: Awakening hits a snag, and IGN has a new owner.\r\n \r\nSkullgirl's new character - http://www.screwattack.com/video/Giggly-Over-Squigly-New-DLC-Character-Announced-for-Skullgirls-7590731\r\n \r\nFire Emblem: Awakening's shipping delay - http://www.screwattack.com/news/updateshipping-error-delay-release-fire-emblem-awakening\r\n \r\nIGN's new owner - http://www.screwattack.com/news/news-corp-has-sold-ign1upgamespy-ziff-davis\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-020413-a-skullgirls-dlc-character-fire-emblem-awakening-has-some-shipping-issues-in-america-and-ign-has-a-new-owner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af99b094-4141-4a44-a6a2-805a65466dc7/sm/video_thumbnail_7650871.png","duration":138,"publication_date":"2013-02-04T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-sam-and-max-hit-the-road","changefreq":"weekly","video":[{"title":"S1:E386 - VGV - Sam and Max Hit the Road","description":"Point and click your way into this 90s adventure game from LucasArts, in the latest installment of the Video Game Vault!","player_loc":"https://roosterteeth.com/embed/vgv-sam-and-max-hit-the-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18e5f180-4e85-42e1-ab61-5c4f7bc04e5f/sm/video_thumbnail_7644776.jpg","duration":114,"publication_date":"2013-02-04T08:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-14","changefreq":"weekly","video":[{"title":"S1:E511 - Real Trailer - Final Fantasy All the Bravest","description":"Sometimes trailers for video games don't tell the whole story about a game. That's why we have to with Final Fantasy All the Bravest.\r\n\r\n\tCheck out the review for this \"game\" here.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caa6a0a7-c4f8-47e8-a042-fde465192ccf/sm/video_thumbnail_7598736.jpg","duration":34,"publication_date":"2013-02-03T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apex-2013-quick-tips-from-the-pros","changefreq":"weekly","video":[{"title":"S1:E510 - Apex 2013 - Quick Tips From The Pros","description":"We all had a great time at Apex this year, but before we left, we had to get some last-minute advice from those better than us.  Everyone was better than us, but we're bringing the pro advice to you!","player_loc":"https://roosterteeth.com/embed/apex-2013-quick-tips-from-the-pros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12681481-04ca-4d6a-9996-89664124cc92/sm/video_thumbnail_7619516.jpg","duration":244,"publication_date":"2013-02-02T07:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020113-ps4-dead-space-3-dlc-and-a-new-ps3-bundle","changefreq":"weekly","video":[{"title":"S1:E358 - Hard News 02/01/13 - PS4?, Dead Space 3 DLC, and a New PS3 Bundle","description":"Swirling shapes indicate Sony is set to announce the PS4 on February 20th - http://www.screwattack.com/video/Swirling-shapes-indicate-Sony-is-set-to-announce-the-PS4-on-February-20th-7590721\r\nDespite there being a PS4 announcement on the horizon, Sony wants you to consider this PS3 bundle - http://www.screwattack.com/news/despite-there-being-ps4-announcement-horizon-sony-wants-you-consider-ps3-bundle\r\nDead Space 3 looks to have some 'disturbing' DLC - http://www.screwattack.com/news/dead-space-3-looks-have-some-disturbing-dlc","player_loc":"https://roosterteeth.com/embed/hard-news-020113-ps4-dead-space-3-dlc-and-a-new-ps3-bundle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93674c2f-be3f-470b-8f87-f622d1754811/sm/video_thumbnail_7597876.png","duration":145,"publication_date":"2013-02-01T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-013113-gta-5-gets-a-release-date-new-vita-games-and-medal-of-honor-dies","changefreq":"weekly","video":[{"title":"S1:E357 - Hard News 01/31/13 - GTA 5 Gets a Release Date, New Vita Games, and Medal of Honor DIES","description":"Rockstar reveals delay with official GTA V release date - http://www.screwattack.com/news/rockstar-reveals-delay-official-gta-v-release-date\r\nTearaway will have two protagonists after PlayStation reveals Atoi - http://www.screwattack.com/news/tearaway-will-have-two-protagonists-after-playstation-reveals-atoi\r\nKillzone: Mercenary is dated for September, comes with a sexy new trailer - http://www.screwattack.com/news/killzone-mercenary-dated-september-comes-sexy-new-trailer\r\nEA has decided to put Medal of Honor out of its misery after Warfighter’s sales flounder - http://www.screwattack.com/news/ea-has-decided-put-medal-honor-out-its-misery-after-warfighter%E2%80%99s-sales-flounder","player_loc":"https://roosterteeth.com/embed/hard-news-013113-gta-5-gets-a-release-date-new-vita-games-and-medal-of-honor-dies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b39e5d9-2987-459e-968c-be8285bbeb11/sm/video_thumbnail_7573676.png","duration":115,"publication_date":"2013-01-31T17:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apex-2013-the-best-olimar-in-america","changefreq":"weekly","video":[{"title":"S1:E509 - Apex 2013 - The Best Olimar in America!","description":"Don't miss the next Apex tournament - the biggest Smash Bros tourney in the world!","player_loc":"https://roosterteeth.com/embed/apex-2013-the-best-olimar-in-america","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da28e843-c2dd-44d5-9deb-c18962ccbbf7/sm/video_thumbnail_7553401.jpg","duration":170,"publication_date":"2013-01-30T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-013013-grasshopper-manufacture-gets-bought-ubisofts-new-ip-and-devil-may-cry-invades-the-white-house","changefreq":"weekly","video":[{"title":"S1:E356 - Hard News 01/30/13 - Grasshopper Manufacture Gets Bought, Ubisoft's New IP, and Devil May Cry Invades the White House","description":"Grasshopper Manufacture has been acquired by MMO publisher GungHo Online - http://www.screwattack.com/news/grasshopper-manufacture-has-been-acquired-mmo-publisher-gungho-online\r\nNeoGAF uncovers “rough demo” of unofficially announced Ubisoft project Osiris - http://www.screwattack.com/news/neogaf-uncovers-%E2%80%9Crough-demo%E2%80%9D-unofficially-announced-ubisoft-project-osiris\r\nThe Devil May Cry, but fans will whine - http://www.screwattack.com/news/devil-may-cry-fans-will-whine","player_loc":"https://roosterteeth.com/embed/hard-news-013013-grasshopper-manufacture-gets-bought-ubisofts-new-ip-and-devil-may-cry-invades-the-white-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82c070b0-19ff-4b99-999d-9e93b3952cb9/sm/video_thumbnail_7547791.png","duration":135,"publication_date":"2013-01-30T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/weve-got-an-sgc-travel-package-winner","changefreq":"weekly","video":[{"title":"S1:E507 - We've got an SGC travel package winner!","description":"We had another raffle for one lucky winner to have their travel costs paid for.  Who got it?","player_loc":"https://roosterteeth.com/embed/weve-got-an-sgc-travel-package-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e735042-62fb-4515-8f7c-914b1b16cfb0/sm/video_thumbnail_7519921.jpg","duration":82,"publication_date":"2013-01-29T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-won-that-sgc-kickstarter-merch-prize","changefreq":"weekly","video":[{"title":"S1:E506 - Who won that SGC Kickstarter merch prize?","description":"During our SGC Kickstarter drive, backers could enter to win, like, almost everything we sell at our store.  Who got it?","player_loc":"https://roosterteeth.com/embed/who-won-that-sgc-kickstarter-merch-prize","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76efb230-a3a3-419a-afd4-f72e562266a1/sm/video_thumbnail_7519721.jpg","duration":82,"publication_date":"2013-01-29T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-013013","changefreq":"weekly","video":[{"title":"S1:E508 - SideScrollers Extended 01/30/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-013013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f25af93-da8b-4d31-a411-cb05b368e792/sm/video_thumbnail_7520821.jpg","duration":553,"publication_date":"2013-01-29T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012913-mlg-wants-to-make-a-game-junction-point-shuts-down-and-more-virtual-console-issues","changefreq":"weekly","video":[{"title":"S1:E355 - Hard News 01/29/13 - MLG Wants to Make a Game, Junction Point Shuts Down, and More Virtual Console Issues","description":"Wii Virtual Console saves won't work on Wii U's Virtual Console - http://www.screwattack.com/news/wii-virtual-console-saves-wont-work-wii-us-virtual-console\r\nDisney has decided to close Epic Mickey developer Junction Point - http://www.screwattack.com/news/disney-has-decided-close-epic-mickey-developer-junction-point\r\nMLG might one day develop an MLG specific FPS - http://www.screwattack.com/news/mlg-might-one-day-develop-mlg-specific-fps","player_loc":"https://roosterteeth.com/embed/hard-news-012913-mlg-wants-to-make-a-game-junction-point-shuts-down-and-more-virtual-console-issues","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18e3977f-8439-4506-be57-26f72ff5c43b/sm/video_thumbnail_7525036.png","duration":130,"publication_date":"2013-01-29T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"happy-random-podcast-gooo\"","changefreq":"weekly","video":[{"title":"S1:E101 - SideScrollers - \"Happy Random Podcast GOOO!\"","description":"Get the Audio Version here - http://bit.ly/WNkx7E\r\n\tSideScrollers Extended can be watched here - http://bit.ly/VnTQqN\r\n\t\r\n\tApex 2013 - The Best In Melee - http://bit.ly/UAcWLg\r\n\tWe Have a Green Screen.... Now YOU Edit - http://bit.ly/XGDQOl\r\n\tReview - Manos: The Hands of Fate - http://bit.ly/SVDvLf\r\n\tSGC 2013's First Guests Are Officially Here! - http://bit.ly/Vd1ylJ\r\n\tThe Craziest Episode of Screwin' Around Ever... - http://bit.ly/YcN6wj\r\n\tDEATH BATTLE! Gag Reel #1: Flowers Make You Fat - http://bit.ly/pmsIAt\r\n\tApex 2013 - We Tried Being Smash Bros Pros - http://bit.ly/W4U5YJ\r\n\tReview - Final Fantasy: All The Bravest - http://bit.ly/UoqnO9\r\n\tReview - Temple Run 2 - http://bit.ly/W4b4uc\r\n\tWe Found A Winner Of Our Sidescrollers Desktop Design Contest! - http://bit.ly/VaVTfR\r\n\tReview - Ni No Kuni: Wrath of the White Witch - http://bit.ly/V8ZVFH\r\n\tOut of the Box - The Cave - http://bit.ly/Vbr2Qg\r\n\t\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"happy-random-podcast-gooo\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03d64d55-590b-4d1e-acc3-fc0532222da2/sm/video_thumbnail_7528636.jpg","duration":2939,"publication_date":"2013-01-29T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apex-2013-the-best-in-melee","changefreq":"weekly","video":[{"title":"S1:E505 - Apex 2013 - The Best In Melee","description":"Who said Melee was dead?  We got to talk to the two best SSBM players and learn their dirty little secrets...","player_loc":"https://roosterteeth.com/embed/apex-2013-the-best-in-melee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/630da710-eab7-4fda-87d6-b44e1e9514e5/sm/video_thumbnail_7502316.jpg","duration":387,"publication_date":"2013-01-28T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012813-disney-infinity-has-on-disc-dlc-dallas-pd-plays-fruit-ninja-and-reddit-demands-answers","changefreq":"weekly","video":[{"title":"S1:E354 - Hard News 01/28/13 - Disney Infinity has on-disc DLC, Dallas PD plays Fruit Ninja, and Reddit demands answers.","description":" \r\nToday on Hard News, Disney Infinity's on-disc DLC, Dallas PD plays Fruit Ninja, and Redditors want to know where the show they didn't kickstart is.\r\n \r\nDisney Infinity's on-disc DLC - http://www.screwattack.com/news/disney-infinity-will-have-dlc-data-disc\r\n \r\nDallas PD posts Fruit Ninja score - http://www.screwattack.com/news/dallas-pd-has-some-terrible-fruit-ninja%E2%80%99s-force\r\n \r\nFemininst Frequency's lack of content angers Redditors - http://www.screwattack.com/news/feminist-frequency%E2%80%99s-lack-content-spurs-angry-reddit-thread\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-012813-disney-infinity-has-on-disc-dlc-dallas-pd-plays-fruit-ninja-and-reddit-demands-answers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3ebed6e-48d9-4070-801b-518583bb24b2/sm/video_thumbnail_7495871.png","duration":156,"publication_date":"2013-01-28T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-last-of-us-demo-and-origin-comes-to-macs-hard-news-012513","changefreq":"weekly","video":[{"title":"S1:E353 - The Last of Us Demo and Origin Comes to Macs - Hard News 01/25/13","description":"Sony confirms a Last of Us demo is inbound - http://www.screwattack.com/news/sony-confirms-last-us-demo-inbound\r\nEA is bringing Origin to Mac and you can test it with one game! - http://www.screwattack.com/news/ea-bringing-origin-mac-and-you-can-test-it-one-game\r\nAdam Sessler, Lisa Foiles, Jim Sterling and more set to appear at SGC 3! - http://www.screwattack.com/news/adam-sessler-lisa-foiles-jim-sterling-and-more-set-appear-sgc-3","player_loc":"https://roosterteeth.com/embed/the-last-of-us-demo-and-origin-comes-to-macs-hard-news-012513","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07155928-29a3-4e4f-a28f-9e0687370dff/sm/video_thumbnail_7430691.png","duration":111,"publication_date":"2013-01-25T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-dvd-is-so-hot-its-free","changefreq":"weekly","video":[{"title":"S1:E504 - This DVD is so hot it's FREE!","description":"Until January 28th, ScrewAttack's \"Too Hot for the Internet\" comes FREE with every purchase over $20!\r\nDon't miss out on ScrewAttackStore.com!","player_loc":"https://roosterteeth.com/embed/this-dvd-is-so-hot-its-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a28ae4a-3c74-49cd-bb43-3b9aaa60e37a/sm/video_thumbnail_7428496.jpg","duration":29,"publication_date":"2013-01-25T12:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apex-2013-we-tried-being-smash-bros-pros","changefreq":"weekly","video":[{"title":"S1:E503 - Apex 2013 - We Tried Being Smash Bros Pros","description":"We trained for weeks.  We brought in pros.  We got banana-slamma'd anyway.  Here's how it all went down…","player_loc":"https://roosterteeth.com/embed/apex-2013-we-tried-being-smash-bros-pros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6aba528-d145-4751-a7f7-51bafb4eb694/sm/video_thumbnail_7405471.jpg","duration":424,"publication_date":"2013-01-24T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012413-the-thq-breakdown-luigis-mansion-multiplayer-and-divekick-comes-to-consoles","changefreq":"weekly","video":[{"title":"S1:E352 - Hard News 01/24/13 - The THQ Breakdown, Luigi's Mansion Multiplayer, and Divekick Comes to Consoles","description":"Divekick – the dumbest fighting game ever made, is coming to PS3/Vita and PC - http://www.screwattack.com/news/divekick-%E2%80%93-dumbest-fighting-game-ever-made-coming-ps3vita-and-pc\r\nLuigi’s newest spooktacular adventure is getting four player co-op in Luigi’s Mansion: Dark Moon - http://www.screwattack.com/news/luigi%E2%80%99s-newest-spooktacular-adventure-getting-four-player-co-op-luigi%E2%80%99s-mansion-dark-moon\r\nTHQ is officially finished and here is how everything fell apart - http://www.screwattack.com/news/thq-officially-finished-and-here-how-everything-fell-apart","player_loc":"https://roosterteeth.com/embed/hard-news-012413-the-thq-breakdown-luigis-mansion-multiplayer-and-divekick-comes-to-consoles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89709162-74ca-477c-8fc9-40cd41f5fe6a/sm/video_thumbnail_7399426.png","duration":135,"publication_date":"2013-01-24T14:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-the-cave","changefreq":"weekly","video":[{"title":"S1:E26 - Out of the Box - The Cave","description":"Today on Out of the Box, the guys are headed into Ron Gilbert and Double Fine's latest game to see if they can solve the mystery of...The Cave.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-the-cave","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6a06769-d8f8-4db8-b76b-2e1fd451d648/sm/video_thumbnail_7363856.jpg","duration":2432,"publication_date":"2013-01-23T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012313-nintendo-direct-extravaganza","changefreq":"weekly","video":[{"title":"S1:E351 - Hard News 01/23/13 - Nintendo Direct Extravaganza","description":"Here's your first screen shots of the Yoshi's Epic Yarn game - http://www.screwattack.com/news/heres-your-first-screen-shots-yoshis-epic-yarn-game\r\nHere's your screen shots of Wind Waker HD straight from Nintendo Direct - http://www.screwattack.com/news/heres-your-screen-shots-wind-waker-hd-straight-nintendo-direct\r\nPlatinum Games takes us behind the scenes on Bayonetta 2 for Wii U - http://www.screwattack.com/video/Platinum-Games-takes-us-behind-the-scenes-on-Bayonetta-2-for-Wii-U-7362736\r\nWonderful 101 has a waterslide in the latest trailer - http://www.screwattack.com/video/Wonderful-101-has-a-waterslide-in-the-latest-trailer-7362611\r\nShin-Megami Tensei X Fire Emblem is one of many collaborations Nintendo is working on - http://www.screwattack.com/video/ShinMegami-Tensei-X-Fire-Emblem-is-one-of-many-collaborations-Nintendo-is-working-on-7362526\r\nMonolith Soft is creating the spirtual successor to Xenoblade for Wii U - http://www.screwattack.com/video/Monolith-Soft-is-creating-the-spirtual-successor-to-Xenoblade-for-Wii-U-7362496","player_loc":"https://roosterteeth.com/embed/hard-news-012313-nintendo-direct-extravaganza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d99be1f9-492a-4a7d-a6b7-f4643f770b9a/sm/video_thumbnail_7372236.png","duration":190,"publication_date":"2013-01-23T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-012313","changefreq":"weekly","video":[{"title":"S1:E502 - SideScrollers Extended 01/23/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-012313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df900843-b681-42b7-aa1d-537b7f430a12/sm/video_thumbnail_7336041.png","duration":538,"publication_date":"2013-01-22T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"rhyme-crimes\"","changefreq":"weekly","video":[{"title":"S1:E100 - SideScrollers - \"Rhyme Crimes\"","description":"Get the Audio Version here - http://bit.ly/VocVZy?\r\nSideScrollers Extended can be watched here - http://bit.ly/TgXaXj??\r\n\r\n\tMy Open \"Dear John\" Letter to Pokémon - http://bit.ly/XkbjhY\r\n\tR50 Reasons We LOVE The Simpsons - http://bit.ly/SjgkdE\r\n\tReview - Devil May Cry - http://bit.ly/VwJ8yN\r\n\tApex 2013 Eating Challenge - This Was A Terrible Idea - http://bit.ly/XeBWEt\r\n\tOut of the Box - DmC - http://bit.ly/Wff9K0\r\n\tReview - Earth Defense Force 2017 Portable - http://bit.ly/X9Z1rX\r\n\tWe Found A Game We Love In The MAGFest Arcade - http://bit.ly/X7NkSD??\r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3?\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"rhyme-crimes\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bf8a2e3-9127-4cf8-a6f2-cb6528228555/sm/video_thumbnail_7348106.png","duration":3189,"publication_date":"2013-01-22T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-andres-screwattack-debut-behind-the-scenes","changefreq":"weekly","video":[{"title":"S1:E501 - [Advantage] - Andre's ScrewAttack Debut Behind the Scenes ","description":"What happened behind the scenes of Andre's debut on ScrewAttack.\r\nExtra videos for Advantage members!","player_loc":"https://roosterteeth.com/embed/advantage-andres-screwattack-debut-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6de2c86-0a59-45a2-b3fe-e49fbffdde6c/sm/video_thumbnail_7347676.png","duration":147,"publication_date":"2013-01-22T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012213-project-x-zone-comes-west-and-dead-space-3-sells-out","changefreq":"weekly","video":[{"title":"S1:E350 - Hard News 01/22/13 - Project X Zone Comes West and Dead Space 3 Sells Out","description":"Project X Zone heading to North America, Europe, and Australia - http://www.screwattack.com/news/project-x-zone-heading-north-america-europe-and-australia\r\nGet N7 armor in Dead Space 3 with a Mass Effect 3 save file - http://www.screwattack.com/news/get-n7-armor-dead-space-3-mass-effect-3-save-file\r\nEA is bringing microtransactions to Dead Space 3’s weapon customization - http://www.screwattack.com/news/ea-bringing-microtransactions-dead-space-3%E2%80%99s-weapon-customization","player_loc":"https://roosterteeth.com/embed/hard-news-012213-project-x-zone-comes-west-and-dead-space-3-sells-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea2e69fa-cfc0-4c05-9e9f-1b22023e0959/sm/video_thumbnail_7341701.png","duration":115,"publication_date":"2013-01-22T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apex-2013-smash-64-is-hardcore","changefreq":"weekly","video":[{"title":"S1:E500 - Apex 2013 - Smash 64 is HARDCORE!!","description":"It wouldn't be the biggest Smash Bros. tournament in the world if you couldn't compete in the original!  Just how hardcore can this game get?","player_loc":"https://roosterteeth.com/embed/apex-2013-smash-64-is-hardcore","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d24c14f3-37a9-4fa6-a402-d63512f37006/sm/video_thumbnail_7303126.jpg","duration":259,"publication_date":"2013-01-21T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011813-sony-drops-dualshock-jay-wilson-leaves-diablo-3-and-release-dates","changefreq":"weekly","video":[{"title":"S1:E349 - Hard News 01/18/13 - Sony Drops Dualshock, Jay Wilson Leaves Diablo 3, and Release Dates","description":"Luigi's Mansion: Dark Moon gets a Release Date! - http://www.screwattack.com/news/luigis-mansion-dark-moon-gets-release-date-0\r\nPS All-Stars Battle Royale gets first batch of DLC dated - http://www.screwattack.com/news/ps-all-stars-battle-royale-gets-first-batch-dlc-dated\r\n[Rumor] Sony might move away from the DualShock with Orbis - http://www.screwattack.com/news/rumor-sony-might-move-away-dualshock-orbis\r\nJay Wilson is leaving Diablo 3 team to work “on something new” - http://www.screwattack.com/news/jay-wilson-leaving-diablo-3-team-work-%E2%80%9C-something-new%E2%80%9D","player_loc":"https://roosterteeth.com/embed/hard-news-011813-sony-drops-dualshock-jay-wilson-leaves-diablo-3-and-release-dates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4542cd3-b1e5-4c1b-b93d-70bd583e8053/sm/HardNews1018.png","duration":129,"publication_date":"2013-01-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011713-the-death-of-kevin-butler-fallout-the-tv-series-and-xbox-skype","changefreq":"weekly","video":[{"title":"S1:E348 - Hard News 01/17/13 - The Death of Kevin Butler, Fallout the TV Series, and Xbox Skype","description":"[Rumor] Microsoft will bring Skype to everything, including NextBox Live chat - http://www.screwattack.com/news/rumor-microsoft-will-bring-skype-everything-including-nextbox-live-chat\r\nSony and \"Kevin Butler\" settle - http://www.screwattack.com/news/sony-and-kevin-butler-settle\r\nIs Bethesda planning to make a Fallout TV series? - http://www.screwattack.com/news/bethesda-planning-make-fallout-tv-series","player_loc":"https://roosterteeth.com/embed/hard-news-011713-the-death-of-kevin-butler-fallout-the-tv-series-and-xbox-skype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52404aa1-a666-4036-847a-5ff1e58307c4/sm/video_thumbnail_7027386.png","duration":123,"publication_date":"2013-01-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/apex-2013-eating-challenge-this-was-a-terrible-idea","changefreq":"weekly","video":[{"title":"S1:E499 - Apex 2013 Eating Challenge - This Was A Terrible Idea","description":"No sleep for 24 hours.  Two pounds of Rice Krispies Treats.  One eating challenge that just goes from bad to worse to absolutely horrible.","player_loc":"https://roosterteeth.com/embed/apex-2013-eating-challenge-this-was-a-terrible-idea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0012fbd2-3224-410a-b86e-dc7223584676/sm/video_thumbnail_7024156.jpg","duration":337,"publication_date":"2013-01-17T11:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-dmc","changefreq":"weekly","video":[{"title":"S1:E25 - Out of the Box - DmC","description":"Is DmC awesome or is Dante a little bitch?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-dmc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b4948d1-df49-4296-8741-775e4a54a898/sm/video_thumbnail_6962911.jpg","duration":2076,"publication_date":"2013-01-16T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011613-disney-steals-skylanders-the-wow-theme-park-and-a-new-final-fantasy","changefreq":"weekly","video":[{"title":"S1:E347 - Hard News 01/16/13 - Disney Steals Skylanders, the WoW Theme Park, and a New Final Fantasy","description":"Square Enix reveals Final Fantasy: All the Bravest for iOS via New Zealand app store - http://www.screwattack.com/news/square-enix-reveals-final-fantasy-all-bravest-ios-new-zealand-app-store\r\nThe mysterious unlicensed World of Warcraft theme park in China exists! - http://www.screwattack.com/news/mysterious-unlicensed-world-warcraft-theme-park-china-exists\r\nDisney reveals Disney Infinity and prepares to make a ton of money - http://www.screwattack.com/news/disney-reveals-disney-infinity-and-prepares-make-ton-money","player_loc":"https://roosterteeth.com/embed/hard-news-011613-disney-steals-skylanders-the-wow-theme-park-and-a-new-final-fantasy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a91f2d10-f75f-44de-ba8a-5b5812be0680/sm/video_thumbnail_6984311.png","duration":148,"publication_date":"2013-01-16T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/we-found-a-game-we-love-in-the-magfest-arcade","changefreq":"weekly","video":[{"title":"S1:E498 - We Found A Game We Love In The MAGFest Arcade","description":"There's a hacked gem in the arcade world, and we found it at MAGFest: Street Fighter 2 Rainbow Edition","player_loc":"https://roosterteeth.com/embed/we-found-a-game-we-love-in-the-magfest-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38e1c9e2-3de7-47ab-9127-15e01b6cb742/sm/video_thumbnail_6936921.jpg","duration":95,"publication_date":"2013-01-15T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-011613","changefreq":"weekly","video":[{"title":"S1:E497 - SideScrollers Extended 01/16/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-011613","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe3897d-3546-43f6-836f-3be1956e0263/sm/video_thumbnail_6930426.jpg","duration":543,"publication_date":"2013-01-15T20:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"reactionary-reaction\"","changefreq":"weekly","video":[{"title":"S1:E99 - SideScrollers - \"Reactionary Reaction\"","description":"Get the audio version here - http://bit.ly/RXRCiJ\r\n\tSideScrollers Extended can be watched here - http://bit.ly/W3XUf2\r\n\t\r\n\tDEATH BATTLE! - Goku vs Superman - http://bit.ly/WFON25?\r\n\tHow to Flip a Table and Raise a Ton a Money - http://bit.ly/ZPaeAv\r\n\tReview - Anarchy Reigns - http://bit.ly/VWe8G7\r\n\tReview - Retro City Rampage - http://bit.ly/11x41yh\r\n\t26 Games We're Looking Forward to in 2013 and Why - http://bit.ly/RLfHsW\r\n\tLauren Loves Her Xmas Present From g1 Echoes - http://bit.ly/11qnIHQ\r\n\tScrewin' Around with ROBOTS! - http://bit.ly/13ziYOS\r\n\t[Advantage] Real Trailers - Fracture - http://bit.ly/VVqwGe\r\n\tMAGFest - Is Dragon Runner the next big indie game? - http://bit.ly/11jqNtp\r\n\tThe Best Interview That We've Ever Done - http://bit.ly/10hoW8Z\r\n\tOut of the Box - NBA Baller Beats - http://bit.ly/11iXZ40\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3?Want to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"reactionary-reaction\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42cef56f-a87f-41cf-b3a3-fff1adf64f0e/sm/video_thumbnail_6945136.jpg","duration":3217,"publication_date":"2013-01-15T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011513-half-life-2-episode-4-zombie-bait-and-the-arma-devs-released-on-bail","changefreq":"weekly","video":[{"title":"S1:E346 - Hard News 01/15/13 - Half Life 2: Episode 4, Zombie Bait, and the Arma Devs Released on Bail","description":"Accused Arma \"spies\" are released on bail from Greek prison - http://www.screwattack.com/news/accused-arma-spies-are-released-bail-greek-prison\r\nValve confirms recent screenshots of Half-Life Episode 4 are legit - http://www.screwattack.com/news/valve-confirms-recent-screenshots-half-life-episode-4-are-legit\r\nDead Island: Riptide brining Zombie Bait to the UK - http://www.screwattack.com/news/dead-island-riptide-brining-zombie-bait-uk","player_loc":"https://roosterteeth.com/embed/hard-news-011513-half-life-2-episode-4-zombie-bait-and-the-arma-devs-released-on-bail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bfdcff7-f530-4c27-8e2b-8200ea2ab314/sm/video_thumbnail_6938501.png","duration":123,"publication_date":"2013-01-15T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/can-craig-or-bryan-become-the-king-of-the-magfest-ring","changefreq":"weekly","video":[{"title":"S1:E496 - Can Craig or Bryan Become The King of the MAGFest Ring?","description":"OOOHHHH YYYEEEAAAHHH!!! Let us tell ya fella, Craig and Bryan are gonna open up a can of whoop ass and kick the competition up and down Jabroni Drive in the MAGFest WWE All Stars Tournament! Or are they?","player_loc":"https://roosterteeth.com/embed/can-craig-or-bryan-become-the-king-of-the-magfest-ring","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c99025e-8c30-40e5-9be4-ddd3769aa13b/sm/video_thumbnail_6927581.jpg","duration":214,"publication_date":"2013-01-15T08:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011413-killing-day-may-yet-have-its-day-360-may-have-a-revelation-and-minecraft-gets-animated","changefreq":"weekly","video":[{"title":"S1:E345 - Hard News 01/14/13 - Killing Day may yet have its day, 360 may have a Revelation, and Minecraft gets animated","description":" \r\nToday on Hard News, Killing Day may yet have its day, the 360 could have a Revelation, and Minecraft gets animated.\r\n \r\nKilling Day trademark renewed - http://www.screwattack.com/news/ubisoft-re-trademarks-killing-day-despite-america%E2%80%99s-renewed-sensitivity-violence\r\n \r\nResident Evil: Revelations - http://www.screwattack.com/news/rumor-resident-evil-revelations-has-achievement-list\r\n \r\nAnimated textures in Minecraft - http://www.screwattack.com/news/mojang-adds-ability-animate-textures-minecraft\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-011413-killing-day-may-yet-have-its-day-360-may-have-a-revelation-and-minecraft-gets-animated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6be6e47-2a5d-4e6a-b45d-30f996eb6266/sm/video_thumbnail_6879116.png","duration":119,"publication_date":"2013-01-14T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-blooper-reel-3","changefreq":"weekly","video":[{"title":"S1:E495 - Hard News Blooper Reel #3","description":"The AVGN DVDs are indestructible!","player_loc":"https://roosterteeth.com/embed/hard-news-blooper-reel-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4ce79d9-51dd-4a22-a782-bcbe3d5f0676/sm/video_thumbnail_6866386.jpg","duration":91,"publication_date":"2013-01-14T10:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-flip-a-table-and-raise-a-ton-a-money","changefreq":"weekly","video":[{"title":"S1:E494 - How to Flip a Table and Raise a Ton a Money","description":"This year at MAGfest we found the greatest excuse to flip a table ever...","player_loc":"https://roosterteeth.com/embed/how-to-flip-a-table-and-raise-a-ton-a-money","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc12212e-cdb3-4067-af59-0b30349ec516/sm/video_thumbnail_6833721.jpg","duration":150,"publication_date":"2013-01-13T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lauren-loves-her-xmas-present-from-g1-echoes","changefreq":"weekly","video":[{"title":"S1:E493 - Lauren Loves Her Xmas Present From g1 Echoes","description":"g1 Echoes was kind enough to send Lauren a Christmas present, and if what we filmed was any indication, she really appreciates it.","player_loc":"https://roosterteeth.com/embed/lauren-loves-her-xmas-present-from-g1-echoes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ec58dda-a107-4c63-8360-a85023ae84f1/sm/video_thumbnail_6626401.jpg","duration":264,"publication_date":"2013-01-11T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011113-microsofts-holodeck-ps-store-online-and-the-skullgirls-super-patch","changefreq":"weekly","video":[{"title":"S1:E344 - Hard News 01/11/13 - Microsoft's Holodeck, PS Store Online, and the Skullgirls Super Patch","description":"Browser based Playstation Store is on it's way to North America - http://www.screwattack.com/news/browser-based-playstation-store-its-way-north-america\r\nSkullgirls patch for Xbox 360 is stuck in Microsoft hell - http://www.screwattack.com/news/skullgirls-patch-xbox-360-stuck-microsoft-hell\r\nMicrosoft's 'IllumiRoom' Aims for Immersion - http://www.screwattack.com/news/microsofts-illumiroom-aims-immersion","player_loc":"https://roosterteeth.com/embed/hard-news-011113-microsofts-holodeck-ps-store-online-and-the-skullgirls-super-patch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d131851b-dc33-434b-a4cd-5549d461fc42/sm/video_thumbnail_6710996.png","duration":123,"publication_date":"2013-01-11T12:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/goku-vs-superman-death-battle","changefreq":"weekly","video":[{"title":"S1:E25 - Goku VS Superman","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/goku-vs-superman-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9bfbb4f-8b11-4b51-bb0e-758b67fc87ab/sm/video_thumbnail_6669626_1.jpg","duration":1944,"publication_date":"2013-01-10T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011013-deadpool-cable-death-battle-update-and-the-walking-dead-360-fiasco","changefreq":"weekly","video":[{"title":"S1:E343 - Hard News 01/10/13 - Deadpool & Cable, DEATH BATTLE Update, and The Walking Dead 360 Fiasco","description":"High Moon is bringing Cable and Death Activision’s upcoming game, Deadpool - http://www.screwattack.com/news/high-moon-bringing-cable-and-death-activision%E2%80%99s-upcoming-game-deadpool\r\nDisc version of The Walking Dead runs like crap on a 4GB Xbox 360 - http://www.screwattack.com/news/disc-version-walking-dead-runs-crap-4gb-xbox-360\r\nGoku VS. Superman Release Info! - http://www.screwattack.com/news/goku-vs-superman-release-info","player_loc":"https://roosterteeth.com/embed/hard-news-011013-deadpool-cable-death-battle-update-and-the-walking-dead-360-fiasco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1df7bbad-e76f-44a2-a4e1-a2db18dffd6f/sm/video_thumbnail_6669566.png","duration":128,"publication_date":"2013-01-10T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-is-dragon-runner-the-next-big-indie-game","changefreq":"weekly","video":[{"title":"S1:E491 - MAGFest - Is Dragon Runner the next big indie game?","description":"We found a cool indie runner game in the console gaming area at MAGFest called Dragon Runner! We also got to talk to the man behind it! ","player_loc":"https://roosterteeth.com/embed/magfest-is-dragon-runner-the-next-big-indie-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a46371c-6b16-4a92-9951-1766db363e46/sm/video_thumbnail_6626056.jpg","duration":151,"publication_date":"2013-01-09T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010913-lets-talk-steambox-black-ops-dlc-and-a-thq-update","changefreq":"weekly","video":[{"title":"S1:E342 - Hard News 01/09/13 - Let's Talk SteamBox, Black Ops DLC, and a THQ Update","description":"THQ to be sold off piecemeal to the highest bidder - http://www.screwattack.com/news/activision-confirms-rumored-revolution-dlc-black-ops-2\r\nActivision confirms the rumored Revolution DLC for Black Ops 2 - http://www.screwattack.com/news/activision-confirms-rumored-revolution-dlc-black-ops-2\r\nGabe talks Steam Box and how it plans to compete in the home console space - http://www.screwattack.com/news/gabe-talks-steam-box-and-how-it-plans-compete-home-console-space","player_loc":"https://roosterteeth.com/embed/hard-news-010913-lets-talk-steambox-black-ops-dlc-and-a-thq-update","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1d718e-6e38-4dad-bede-c4af43a75e5e/sm/video_thumbnail_6630811.png","duration":155,"publication_date":"2013-01-09T16:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-interview-that-weve-ever-done","changefreq":"weekly","video":[{"title":"S1:E490 - The Best Interview That We've Ever Done","description":"You can find all kinds of people at MAGFest, like a man with the head of a horse. Yup, all kinds of people...","player_loc":"https://roosterteeth.com/embed/the-best-interview-that-weve-ever-done","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4bf9059-9e78-4e2b-8ea0-d08bbde06483/sm/video_thumbnail_6625916.jpg","duration":32,"publication_date":"2013-01-09T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-010913","changefreq":"weekly","video":[{"title":"S1:E489 - SideScrollers Extended 01/09/13","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-010913","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b37004a3-8498-4413-9131-b10fa730574a/sm/video_thumbnail_6563441.jpg","duration":400,"publication_date":"2013-01-08T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"mommys-spiked-milkshake\"","changefreq":"weekly","video":[{"title":"S1:E98 - SideScrollers - \"Mommy's Spiked Milkshake\"","description":"Get the audio version here - http://bit.ly/ZCEEKQ\r\nSideScrollers Extended can be watched here - http://bit.ly/TIWSXd\r\n \r\nDidn't make it to MAGfest 11? Here's our panel! - http://bit.ly/WqWd9G\r\n\tTop 10 Snow Levels - http://bit.ly/XcPrqw\r\n\tScrewin' Around with NintendoLand - http://bit.ly/VIXPfC\r\n\tApex 2013 Training - Second-To-Last Day [ARCHIVE] - http://bit.ly/ZYnGaJ\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"mommys-spiked-milkshake\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0610d0c0-3c31-424d-9a82-01067fd3666d/sm/video_thumbnail_6573101.jpg","duration":3196,"publication_date":"2013-01-08T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010813-pokemon-generation-6-announced-new-injustice-characters-and-a-new-handheld","changefreq":"weekly","video":[{"title":"S1:E341 - Hard News 01/08/13 - Pokemon Generation 6 Announced, New InJustice Characters, and a New Handheld","description":"Lex Luthor and Bane Revealed as Playable Characters in Injustice: Gods Among Us - http://www.screwattack.com/news/lex-luthor-and-bane-revealed-playable-characters-injustice-gods-among-us\r\n[CES] Nvidia decides to enter the console race with a handheld - http://www.screwattack.com/news/ces-nvidia-decides-enter-console-race-handheld\r\nA g1s thoughts on Nintendo's announcement of Pokémon X & Y - http://www.screwattack.com/news/g1s-thoughts-nintendos-announcement-pok%C3%A9mon-x-y","player_loc":"https://roosterteeth.com/embed/hard-news-010813-pokemon-generation-6-announced-new-injustice-characters-and-a-new-handheld","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c850a9dd-07c4-424b-b1c4-dede9ee4d2ff/sm/video_thumbnail_6573086.png","duration":129,"publication_date":"2013-01-08T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/didnt-make-it-to-magfest-11-heres-our-panel","changefreq":"weekly","video":[{"title":"S1:E488 - Didn't make it to MAGfest 11? Here's our panel!","description":"We had a great time this past weekend at MAGfest and saw a TON of great g1s.  This year's ScrewAttack panel we showed a couple new videos and made a very special announcement at the end.","player_loc":"https://roosterteeth.com/embed/didnt-make-it-to-magfest-11-heres-our-panel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/876df433-6e28-4483-8157-e5db523a53e0/sm/video_thumbnail_6532061.jpg","duration":2322,"publication_date":"2013-01-07T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/minecraft-earth-steambox-on-linux-and-the-lost-virtual-boy-game-hard-news-010713","changefreq":"weekly","video":[{"title":"S1:E340 - Minecraft Earth, SteamBox on Linux, and the Lost Virtual Boy Game - Hard News 01/07/13","description":"Planet Earth is being built to a 1:1500 scale in Minecraft - http://www.screwattack.com/news/planet-earth-being-built-11500-scale-minecraft\r\nAfter nearly 18 years, the Virtual Boy version of Faceball (NikoChan Battle) will finally be released - http://www.screwattack.com/video/After-nearly-18-years-the-Virtual-Boy-version-of-Faceball-NikoChan-Battle-will-finally-be-released-6499846\r\nRumor: Valve console will be Linux based and revealed this year - http://www.screwattack.com/news/rumor-valve-console-will-be-linux-based-and-revealed-year","player_loc":"https://roosterteeth.com/embed/minecraft-earth-steambox-on-linux-and-the-lost-virtual-boy-game-hard-news-010713","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ed3b5aa-7640-4497-917f-5a80d586dafa/sm/video_thumbnail_6510026.png","duration":150,"publication_date":"2013-01-07T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-snow-levels","changefreq":"weekly","video":[{"title":"S1:E69 - Top 10 Snow Levels","description":"We're all in the middle of winter anyway, so how about we look at the 10 best snow levels?","player_loc":"https://roosterteeth.com/embed/top-10-snow-levels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a646cea1-acfa-415e-801c-475dcd596066/sm/video_thumbnail_6475241.jpg","duration":530,"publication_date":"2013-01-05T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010413-the-bioshock-collection-free-wii-u-games-and-video-game-burning","changefreq":"weekly","video":[{"title":"S1:E339 - Hard News 01/04/13 - The BioShock Collection, Free Wii U Games, and Video Game Burning","description":"Used Wii U’s come with the original owner’s digital games - http://www.screwattack.com/news/used-wii-u%E2%80%99s-come-original-owner%E2%80%99s-digital-games\r\nGet ready for one more romp in Rapture with the BioShock: Ultimate Rapture Edition - http://www.screwattack.com/news/get-ready-one-more-romp-rapture-bioshock-ultimate-rapture-edition\r\nConnecticut residents organize modern day video game burning - http://www.screwattack.com/news/connecticut-residents-organize-modern-day-video-game-burning","player_loc":"https://roosterteeth.com/embed/hard-news-010413-the-bioshock-collection-free-wii-u-games-and-video-game-burning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cd879bd-e238-4489-9302-5fb7b0ca77fd/sm/video_thumbnail_6400876.png","duration":182,"publication_date":"2013-01-04T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010313-gaming-bounty-hunters-sonys-anti-used-games-and-the-microsoft-countdown","changefreq":"weekly","video":[{"title":"S1:E338 - Hard News 01/03/13 - Gaming Bounty Hunters, Sony's Anti Used Games, and the Microsoft Countdown","description":"Microsoft teasing something BIG for the next E3 - http://www.screwattack.com/news/microsoft-teasing-something-big-next-e3\r\nSony has filed an anti-used games patent - http://www.screwattack.com/news/sony-has-filed-anti-used-games-patent","player_loc":"https://roosterteeth.com/embed/hard-news-010313-gaming-bounty-hunters-sonys-anti-used-games-and-the-microsoft-countdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be079ddd-2a1b-42d4-9888-0a27c5b9da72/sm/video_thumbnail_6336951.png","duration":160,"publication_date":"2013-01-03T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010213-fez-goes-multi-platform-black-ops-2-gun-dlc-and-marios-level-editor","changefreq":"weekly","video":[{"title":"S1:E337 - Hard News 01/02/13 - FEZ goes multi-platform, Black Ops 2 gun DLC, and Mario's level editor?","description":" \r\nToday on Hard News, Fez is going multiplatform, Black Ops 2 DLC to include a gun for the first time, and you could be making your own Mario levels.\r\n \r\nFEZ goes multi-platform - http://www.screwattack.com/news/fez-coming-more-platforms-2013\r\n \r\nBlack Ops 2 Revolution DLC - http://www.allgamesbeta.com/2012/12/black-ops-2-revolution-map-pack-dlc.html\r\n \r\nMario's level editor - http://www.screwattack.com/news/next-new-super-mario-bros-game-could-allow-players-make-their-own-levels\r\n \r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-010213-fez-goes-multi-platform-black-ops-2-gun-dlc-and-marios-level-editor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61c2aa42-72ab-48e2-a89f-ec16441eed2c/sm/video_thumbnail_6323051.png","duration":130,"publication_date":"2013-01-02T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"deadly-snakes-hatch-in-toddlers-closet\"","changefreq":"weekly","video":[{"title":"S1:E97 - SideScrollers - \"Deadly Snakes Hatch in Toddler's Closet\"","description":"To welcome in the new year Craig, Chad and Nick old school and bring back a contest requested by the community. Audio issues? Notice that Nick is on this week's episode...\r\n\r\n\tWant to enter the ScrewAttack Desktop Contest? Awesome. Download all the assets you can use here. Dimensions should be 1920x1200 that way pretty much everyone can use them.\r\n\r\n\tEntries need to be in by Wednesday the 9th at 6pm CST to be considered for the prize. Email them to Bryan@ScrewAttack.com.","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"deadly-snakes-hatch-in-toddlers-closet\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dbdb320-e751-4684-9172-6533acbbc683/sm/video_thumbnail_6298086.jpg","duration":3664,"publication_date":"2013-01-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-1212","changefreq":"weekly","video":[{"title":"S1:E487 - SideScrollers Extended Cut 1/2/12","description":"You want to watch this don't you.... look into my eyes....","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-1212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d00334c7-6361-4a5d-81e3-429e32d5bf85/sm/video_thumbnail_6331011.png","duration":448,"publication_date":"2013-01-02T18:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-123112-xbox-lives-cloud-gets-stormy-before-clearing-up-retro-city-rampage-to-xbla-tomba-2-on-na-psn-and-big-pokemon-news","changefreq":"weekly","video":[{"title":"S1:E336 - Hard News 12/31/12 - Xbox Live's cloud gets stormy before clearing up, Retro City Rampage to XBLA, Tomba 2 on NA PSN, and big Pokemon news?","description":" \r\nToday on Hard News, Xbox Live's cloud gets a little stormy, Retro City Rampage finally heads to XBLA, Tomba 2 could come to North America's PSN, and big Pokemon news could come soon.\r\n \r\nCloud storage: http://www.screwattack.com/news/update-xbox-lives-cloud-storage-back-online-microsoft-apologizes-free-month-xbox-live-gold\r\n \r\nRetro City: http://www.screwattack.com/news/retro-city-rampage-coming-xbox-live-arcade-january-2nd\r\n \r\nTomba 2: http://www.screwattack.com/news/evil-swine-could-soon-return-psn-north-american-ps3vita-port-tomba-2\r\n \r\nPokemon: http://www.screwattack.com/news/there-some-%E2%80%9Cbig%E2%80%9D-news-pok%C3%A9mon-coming-january-8th\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-123112-xbox-lives-cloud-gets-stormy-before-clearing-up-retro-city-rampage-to-xbla-tomba-2-on-na-psn-and-big-pokemon-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc91c0c3-6b90-48d7-bc7e-0bfc2dbc9468/sm/video_thumbnail_6261261.png","duration":99,"publication_date":"2012-12-31T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mikey-and-adam-dish-on-aliens-colonial-marines-and-where-they-could-be-this-june-21st-23rd","changefreq":"weekly","video":[{"title":"S1:E486 - Mikey and Adam dish on Aliens: Colonial Marines and where they could be this June 21st-23rd","description":"Sean got to speak with Adam Fletcher and Mikey Neumann, two of the characters that make Gearbox go. What did they have to say? Things on working with Fox, crazy Alien fans, the Wii U, and their post-E3 plans.","player_loc":"https://roosterteeth.com/embed/mikey-and-adam-dish-on-aliens-colonial-marines-and-where-they-could-be-this-june-21st-23rd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcec23b3-b3d6-4478-b918-9e6fe3c8413a/sm/video_thumbnail_6245256.png","duration":263,"publication_date":"2012-12-31T09:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122812-tomb-raider-multiplayer-and-kids-who-wanted-3dses-got-something-else-entirely","changefreq":"weekly","video":[{"title":"S1:E335 - Hard News 12/28/12 - Tomb Raider Multiplayer and kids who wanted 3DSes got something else entirely","description":" \r\nToday on Hard News, Tomb Raider will have multiplayer and a couple kids got coal in their 3DS presents this Christmas\r\n \r\nTR Multiplayer confirmed - http://www.screwattack.com/news/update-multiplayer-confirmed-tomb-raider\r\n \r\nNintendo 3DS Misfortunes - http://www.screwattack.com/news/nintendo-3ds-mishaps-one-boys-3ds-filled-rocks-others-filled-porn\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-122812-tomb-raider-multiplayer-and-kids-who-wanted-3dses-got-something-else-entirely","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/426b5086-15a3-45bc-b894-ec84dc027a50/sm/video_thumbnail_6160831.png","duration":113,"publication_date":"2012-12-28T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-17","changefreq":"weekly","video":[{"title":"S1:E485 - And the SAGY for Biggest F' Up in 2012 goes to...","description":"Wrapping up this year's SAGYs, it's the Biggest F' Up of 2012. To get this you had to really screw the pooch. Who screwed up the worst, is it Capcom, 38 Studios, or Bioware? The SAGY for Biggest F' Up of 2012 goes to...","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5c0d7ad-5e8f-4ee2-8592-16ececc4e2ef/sm/video_thumbnail_6130956.jpg","duration":71,"publication_date":"2012-12-27T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-16","changefreq":"weekly","video":[{"title":"S1:E484 - And the winner of the SAGY for Worst Downloadable Game of 2012 is...","description":"Amy, Orion Dino Beatdown, and Naughty Bear: Panic in Paradise took the final spots for the worst downloadable game of 2012, but which one is getting the SAGY?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f89021b-d158-496e-8b43-7030d129eed6/sm/video_thumbnail_6130516.jpg","duration":68,"publication_date":"2012-12-27T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/aliens-are-higher-on-the-food-chain-than-the-colonial-marines-and-gearbox-wants-you-to-remember-that","changefreq":"weekly","video":[{"title":"S1:E483 - Aliens are higher on the food chain than the Colonial Marines, and Gearbox wants you to remember that.","description":"After sitting down with Aliens: Colonial Marines' Senior Producer, Brian Burleson, Sean found out that the Aliens' chief weapons are fear, surprise, and ruthless efficiency. Brian also dropped some more knowledge about the single-player campaign and what will make it so good. There was no mention of comfy chairs. ","player_loc":"https://roosterteeth.com/embed/aliens-are-higher-on-the-food-chain-than-the-colonial-marines-and-gearbox-wants-you-to-remember-that","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2a34e51-2e0c-4958-a533-12b626755f3a/sm/video_thumbnail_6130286.jpg","duration":390,"publication_date":"2012-12-27T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122712-wii-u-porn-diablo-3s-canceled-pvp-and-the-new-final-fantasy-xi-expansion","changefreq":"weekly","video":[{"title":"S1:E334 - Hard News 12/27/12 - Wii U Porn, Diablo 3's Canceled PVP, and the New Final Fantasy XI Expansion","description":"Final Fantasy XI is getting a new expansion in March - http://www.screwattack.com/video/Final-Fantasy-XI-is-getting-a-new-expansion-in-March--6113091\r\nPorn coming to Wii U? Apparently so! - http://www.screwattack.com/news/porn-coming-wii-u-apparently-so\r\nDiablo III's Team Deathmatch PvP gets the axe - http://www.screwattack.com/news/diablo-iiis-team-deathmatch-pvp-gets-axe","player_loc":"https://roosterteeth.com/embed/hard-news-122712-wii-u-porn-diablo-3s-canceled-pvp-and-the-new-final-fantasy-xi-expansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45bb3cbb-2e46-4eed-a7ae-195cf0037d7d/sm/video_thumbnail_6118821.png","duration":138,"publication_date":"2012-12-27T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-18","changefreq":"weekly","video":[{"title":"S1:E482 - And the winner of the SAGY for the Worst Multiplatform Game of 2012 is...","description":"These are the games that had the opportunity to disappoint the most people. Why? These games were on the most platforms, but is Medal of Honor Warfighter, 007 Legends, or Battleship truly the Worst Multiplatform Game of 2012?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9df7fba5-b785-4f83-bdd3-a52bbe2b1e06/sm/video_thumbnail_6110956.jpg","duration":49,"publication_date":"2012-12-27T08:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-19","changefreq":"weekly","video":[{"title":"S1:E481 - And the winner of the SAGY for the Worst Mobile Game of 2012 is...","description":"Another new category in the 2012 SAGYs, it's time to announce the winner of the SAGY for the Worst Mobile Game of 2012. Who's it gonna be, 3D Cartoon Safari, Mega Man X Over, or Mooncraft?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/775a05c8-94f5-4c2d-bc2c-e2c355f722da/sm/video_thumbnail_6104136.jpg","duration":65,"publication_date":"2012-12-26T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/wwe-vince-mcmahon-vs-thq-brian-farrell-battle-for-45000000","changefreq":"weekly","video":[{"title":"S1:E480 - WWE (Vince McMahon) vs THQ (Brian Farrell) Battle for $45,000,000","description":"Click to tweet this video - http://clicktotweet.com/xU609\r\nIt's time for the ScrewAttack Wrestling CEO Grudge Match between the heads of THQ and the WWE.","player_loc":"https://roosterteeth.com/embed/wwe-vince-mcmahon-vs-thq-brian-farrell-battle-for-45000000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f482968-a477-4f50-97bb-6984d24b0b1d/sm/video_thumbnail_6089316.jpg","duration":501,"publication_date":"2012-12-26T21:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122612-thq-owes-wwe-45000000","changefreq":"weekly","video":[{"title":"S1:E333 - Hard News 12/26/12 - THQ Owes WWE $45,000,000","description":"THQ owes WWE $45 million, chairman Vince McMahon \"reportedly\" 'furious' - http://www.screwattack.com/news/thq-owes-wwe-45-million-chairman-vince-mcmahon-reportedly-furious","player_loc":"https://roosterteeth.com/embed/hard-news-122612-thq-owes-wwe-45000000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/333fe6ea-3b9f-47dc-a8cf-1ec93b91d32d/sm/video_thumbnail_6089361.png","duration":109,"publication_date":"2012-12-26T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-20","changefreq":"weekly","video":[{"title":"S1:E479 - And the winner of the SAGY for the Worst Wii Game of 2012 is...","description":"It's the Wii's last year of being in the SAGYs, now did FIFA 13, Zombii Attack, or Wreck-It Ralph give it the biggest down note to go out on?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96081f5c-1da5-4160-9771-c52e53fe8076/sm/video_thumbnail_6069346.jpg","duration":62,"publication_date":"2012-12-25T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-21","changefreq":"weekly","video":[{"title":"S1:E478 - And the winner of the SAGY for the Worst Handheld Game of 2012 is...","description":"One of the new SAGY categories, it's time to announce the winner of the SAGY for the Worst Handheld of 2012. Will it be Black Ops: Declassified, Thundercats, or Ridge Racer Vita?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0c9ccc0-7889-4511-920b-f6e193e241a0/sm/video_thumbnail_6069401.jpg","duration":73,"publication_date":"2012-12-25T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"the-clip-show\"","changefreq":"weekly","video":[{"title":"S1:E96 - SideScrollers - \"The Clip Show\"","description":"Get the Audio Version here - http://bit.ly/VfAGV5\r\n\tThe 2012 SAGYs - http://bit.ly/Vu6mEq\r\n\t\r\n\tWhere the F' is DEATH BATTLE!?! - http://bit.ly/ZoXN3I\r\n\tReview - Modern Combat 4: Zero Hour - http://bit.ly/ZugoLF\r\n\tGame Theory - How Much is Minecraft Diamond Armor Worth? - http://bit.ly/ROwmNw\r\n\tJames wants to know \"What's the best Christmas movie?\" - http://bit.ly/12KOl8M\r\n\tThe Game OverThinker Overbytes: Politics and Violence in Video Games - http://bit.ly/UXo568\r\n\tMario Party After Dark 8 - http://bit.ly/UXGaQQ\r\n\tScrewin' Around with the Street Fighter series - http://bit.ly/WKZw1I\r\n\tbrentalfloss - Ballad of the Mages - http://bit.ly/12xhBR0\r\n\tAngry Video Game Nerd - Atari Sports - http://bit.ly/Wvbj05\r\n\t13 Reasons We LOVE Superman - http://bit.ly/UPss2r\r\n\t8 Reasons We HATE Superman - http://bit.ly/ZmxXNL\r\n\t\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"the-clip-show\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/285c02fe-c477-44f8-959b-860992bf188e/sm/video_thumbnail_6066701.jpg","duration":1444,"publication_date":"2012-12-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-22","changefreq":"weekly","video":[{"title":"S1:E477 - And the winner of the SAGY for the Worst PS3 Game of 2012 is...","description":"The g1s decided that of all the terrible titles on the PS3 this year, Wonderbook, Wheels of Destruction, and Sports Champions 2 were the worst. However, only one of those can be the worst of the worst, and that title goes to...","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a58a9d2b-be19-4bf1-af34-f455c0bc6a8e/sm/video_thumbnail_6051871.jpg","duration":51,"publication_date":"2012-12-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-23","changefreq":"weekly","video":[{"title":"S1:E476 - The Winner of the SAGY for the Worst 360 Game of 2012 is...","description":"Dragonball Z Kinect, Star Wars Kinect, and Steel Battalion: Heavy Armor were voted as three of the worst 360 games of 2012 by the g1s, but only one of them can take home the SAGY. So who's it gonna be?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb74d72f-a846-4a7e-9cfc-33cb175e5ab0/sm/video_thumbnail_6012226.jpg","duration":52,"publication_date":"2012-12-23T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122102-an-earthbound-re-release-the-nra-hates-video-games-and-death-battle-gets-delayed","changefreq":"weekly","video":[{"title":"S1:E332 - Hard News 12/21/02 - An Earthbound Re-Release, the NRA Hates Video Games, and DEATH BATTLE! Gets Delayed","description":"The NRA blames Newtown shooting on games and other “violent entertainment” - http://www.screwattack.com/news/nra-blames-newtown-shooting-games-and-other-%E2%80%9Cviolent-entertainment%E2%80%9D\r\nEarthbound/Mother Re-Release Confirmed by Itoi! - http://www.screwattack.com/news/earthboundmother-re-release-confirmed-itoi\r\nWhere the F' is DEATH BATTLE!?! - http://www.screwattack.com/shows/originals/death-battle/where-f-death-battle","player_loc":"https://roosterteeth.com/embed/hard-news-122102-an-earthbound-re-release-the-nra-hates-video-games-and-death-battle-gets-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f871db03-cb73-4546-8176-2796af4e0697/sm/video_thumbnail_5924661.png","duration":157,"publication_date":"2012-12-21T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102012-7000-stolen-wii-us-thq-isnt-entirely-dead-and-tv-on-the-toilet","changefreq":"weekly","video":[{"title":"S1:E331 - Hard News 10/20/12 - 7,000 Stolen Wii Us, THQ Isn't Entirely Dead, and TV on the Toilet","description":"Nintendo TVii to launch Dec. 20 in North America - http://www.screwattack.com/news/nintendo-tvii-launch-dec-20-north-america\r\nAbout 7,000 Wii U consoles have been stolen in a warehouse heist - http://www.screwattack.com/news/about-7000-wii-u-consoles-have-been-stolen-warehouse-heist\r\nTHQ has Filed for Bankruptcy, but isn't Totally Dead yet - http://www.screwattack.com/news/thq-has-filed-bankruptcy-isnt-totally-dead-yet","player_loc":"https://roosterteeth.com/embed/hard-news-102012-7000-stolen-wii-us-thq-isnt-entirely-dead-and-tv-on-the-toilet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df9c4b7b-bf0f-4e38-af61-c81ae9a3ec1e/sm/video_thumbnail_5870381.png","duration":122,"publication_date":"2012-12-20T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-121912","changefreq":"weekly","video":[{"title":"S1:E475 - SideScrollers Extended 12/19/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-121912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85e4c5c8-92a3-4bc3-b053-4ce2756f8eba/sm/video_thumbnail_5720531.jpg","duration":432,"publication_date":"2012-12-18T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"merry-pre-christmas\"","changefreq":"weekly","video":[{"title":"S1:E95 - SideScrollers - \"Merry Pre-Christmas\"","description":"Get the Audio Version here - http://bit.ly/12mQTdN\r\n\tSideScrollers Extended can be watched here - http://bit.ly/T4SBvx\r\n\tThe 2012 SAGYs - http://bit.ly/Vu6mEq\r\n\t\r\n\t\r\n\t\r\n\tScrewAttack vs Brazil - http://bit.ly/UEzl6J\r\n\t13 Reasons We LOVE Dragon Ball Z - http://bit.ly/Z7ee4w\r\n\t8 Reasons We HATE Dragon Ball Z - http://bit.ly/UzT7Ai\r\n\tTop 10 Reasons We Love Nintendo Power - http://bit.ly/Z8gbxq\r\n\tDEATH BATTLE Preview - Superman - http://bit.ly/12iCuiK\r\n\tMario Party After Dark Returns! - http://bit.ly/Z79a03\r\n\tOut of the Box - Guardians of Middle Earth - http://bit.ly/UDRwrV\r\n\tVideo Game Vault - The Flintstones (Genesis) - http://bit.ly/UjF29X\r\n\t\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"merry-pre-christmas\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf8123a4-5d8a-41e0-9f19-83f2cf9d114c/sm/video_thumbnail_5730506.jpg","duration":2984,"publication_date":"2012-12-18T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121812-steambox-confirmed-more-war-z-controversy-and-the-old-republics-expansion","changefreq":"weekly","video":[{"title":"S1:E330 - Hard News 12/18/12 - SteamBox Confirmed, More War Z Controversy, and The Old Republic's Expansion","description":"Valve planning to compete against consoles with \"living room PCs\" - http://www.screwattack.com/news/valve-planning-compete-against-consoles-living-room-pcs\r\nThe First Expansion Announced for Star Wars: The Old Republic - http://www.screwattack.com/news/first-expansion-announced-star-wars-old-republic\r\nControversy Continues to Surround War Z - http://www.screwattack.com/news/controversy-continues-surround-war-z","player_loc":"https://roosterteeth.com/embed/hard-news-121812-steambox-confirmed-more-war-z-controversy-and-the-old-republics-expansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c5a8aa1-40d0-4c0b-b09d-27d7f5655676/sm/video_thumbnail_5739501.png","duration":169,"publication_date":"2012-12-18T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121712-minecraft-made-lots-of-money-some-people-are-too-dumb-for-games-and-street-fighter-x-mega-man-is-now-available","changefreq":"weekly","video":[{"title":"S1:E329 - Hard News 12/17/12 - Minecraft made lots of money, some people are too dumb for games, and Street Fighter X Mega Man is now available.","description":" \r\nToday on Hard News, Minecraft made lots of money, some people may be too dumb for games, and Street Fighter X Mega Man is now available today on Hard News.\r\n \r\n17 Million mines crafted - http://www.screwattack.com/news/over-17-million-copies-minecraft-have-been-sold\r\n \r\nGerman law restricts mature sales on eShop - http://www.screwattack.com/news/update-german-law-keeping-wii-u-eu-eshop-mature-rated-content-limited-4-hour-window\r\n \r\nGlu shuts down Powered by Gamespy servers - http://www.screwattack.com/news/gamespy%E2%80%99s-new-owners-are-shutting-down-servers-and-rebellion-responds\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-121712-minecraft-made-lots-of-money-some-people-are-too-dumb-for-games-and-street-fighter-x-mega-man-is-now-available","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4f1c0b2-7d12-4566-8d65-3d3b4301ddea/sm/video_thumbnail_5676236.png","duration":115,"publication_date":"2012-12-17T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-reasons-we-love-nintendo-power","changefreq":"weekly","video":[{"title":"S1:E68 - Top 10 Reasons We Love Nintendo Power","description":"Craig got over his crying fit for long enough to give you ten reasons we all miss Nintendo Power.","player_loc":"https://roosterteeth.com/embed/top-10-reasons-we-love-nintendo-power","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a909f7d4-5633-4c37-b973-8c39f0c773c9/sm/video_thumbnail_5553886.jpeg","duration":437,"publication_date":"2012-12-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-24","changefreq":"weekly","video":[{"title":"S1:E474 - The Finalists for the SAGY for the Biggest F' up of 2012 are...","description":"Nobody's perfect, but who really screwed up in 2012? One of these three will be taking home the SAGY for Biggest F' up of 2012! To vote for who wins this SAGY, send a vote with the category and your vote in subject line to 2012SAGY@Gmail.com by December 17th!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c839e79e-3025-44a2-974d-470c04fce42b/sm/video_thumbnail_5574481.jpg","duration":55,"publication_date":"2012-12-16T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121412-xbla-super-sale-false-mass-effect-4-details-and-the-last-of-us","changefreq":"weekly","video":[{"title":"S1:E328 - Hard News 12/14/12 - XBLA Super Sale, False Mass Effect 4 Details, and the Last of Us","description":"Update: We've been duped! NOT BioWare/EA source teases new Mass Effect in two years time - http://www.screwattack.com/news/update-weve-been-duped-not-biowareea-source-teases-new-mass-effect-two-years-time\r\n[Rumor] Xbox Live's \"Countdown to 2013\" sale starts next week and lasts till end of the year - http://www.screwattack.com/news/rumor-xbox-lives-countdown-2013-sale-starts-next-week-and-lasts-till-end-year\r\nNaughty Dog reveals Tess, Joel’s partner in the Black Market - http://www.screwattack.com/news/naughty-dog-reveals-tess-joel%E2%80%99s-partner-black-market","player_loc":"https://roosterteeth.com/embed/hard-news-121412-xbla-super-sale-false-mass-effect-4-details-and-the-last-of-us","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2266730-9c10-4938-96ee-a777999882c4/sm/video_thumbnail_5522681.png","duration":135,"publication_date":"2012-12-14T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-26","changefreq":"weekly","video":[{"title":"S1:E473 - The Finalists for the SAGY for the Worst Multiplatform Game of 2012","description":"These are the games that let everyone down. These are the finalists for the SAGY for the worst mutiplatform game of 2012. To vote for who takes that SAGY home, send an email to 2012SAGY@Gmail.com with the category and the game you're voting for by December 17th!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ea5e963-0d57-4c82-babd-b01b59d02e78/sm/video_thumbnail_5473361.jpg","duration":48,"publication_date":"2012-12-13T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-25","changefreq":"weekly","video":[{"title":"S1:E472 - The Finalists for the SAGY for the Worst Downloadable Game of 2012","description":"Sometimes you feel good about getting a great game for not a lot of money, but these are the ones that you can't even trade in. These are the finalists for the worst downloadable game of 2012. To vote for this award, send an email to 2012SAGY@Gmail.com with the category and your vote in the subject line by December 17th!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daa48f79-99f7-4fc6-8b72-72165f4a76fd/sm/video_thumbnail_5473081.jpg","duration":61,"publication_date":"2012-12-13T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121312-all-stars-battle-royale-2-mass-effect-4-and-steams-community-market","changefreq":"weekly","video":[{"title":"S1:E327 - Hard News 12/13/12 - All-Stars Battle Royale 2, Mass Effect 4, and Steam's Community Market","description":"[Rumor] SuperBot Entertainement working on a sequel to Playstation All-Stars Battle Royale - http://www.screwattack.com/news/rumor-superbot-entertainement-working-sequel-playstation-all-stars-battle-royale\r\nBioWare teases new Mass Effect in two years time - http://www.screwattack.com/news/bioware-teases-new-mass-effect-two-years-time\r\nWii U demos have a limited number of uses, dictated by the publisher - http://www.screwattack.com/news/wii-u-demos-have-limited-number-uses-dictated-publisher\r\nDuke Nukem 3D FREE on Good Old Games for a limited time - http://www.screwattack.com/news/duke-nukem-3d-free-good-old-games-limited-time\r\nValve Launches Steam Community Market Beta - http://www.screwattack.com/news/valve-launches-steam-community-market-beta\r\nTHQ is apparently worth 19,000 iPads - http://www.screwattack.com/news/thq-apparently-worth-19000-ipads","player_loc":"https://roosterteeth.com/embed/hard-news-121312-all-stars-battle-royale-2-mass-effect-4-and-steams-community-market","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/632f6784-2215-4740-bc91-485462108918/sm/video_thumbnail_5465591.png","duration":144,"publication_date":"2012-12-13T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-5","changefreq":"weekly","video":[{"title":"2014:E5 - The Snail Assassin","description":"In RTAA #164, in one of his strangest hypothetical scenarios ever, Gavin wonders what it would be like if you were constantly chased by a snail with a deadly touch.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5736d317-fd52-40f8-865c-2d6ee0e56e57/sm/ep9754.jpg","duration":90,"publication_date":"2014-10-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-9","changefreq":"weekly","video":[{"title":"S1:E9 - Screen Play #9","description":"JJ chats with Keanu Reeves","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":3958,"publication_date":"2014-10-01T19:00:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-291","changefreq":"weekly","video":[{"title":"2014:E291 - RT Podcast #291","description":"RT Discusses International Flights","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-291","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5823,"publication_date":"2014-09-30T17:42:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-19","changefreq":"weekly","video":[{"title":"S12:E19 - Episode 19: You Know Who We Are","description":"S12:E19 - Episode 19: You Know Who We Are","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af5c272e-4d8e-47d6-837d-4eec2631c19b/sm/ep9743.jpg","duration":854,"publication_date":"2014-09-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-sex-survey-experiment","changefreq":"weekly","video":[{"title":"S1:E2 - The Sex Survey Experiment","description":"Chris and Aaron conduct a sex survey and attempt to sign people up for a sexual deviancy class...however, they wrote each other's survey, and have no idea what the questions are beforehand.","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-sex-survey-experiment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9a1a365-e4e1-4496-bce5-4256c9d3869f/sm/ep9736.jpg","duration":527,"publication_date":"2014-09-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-quick-draw-with-patrick-with-gray","changefreq":"weekly","video":[{"title":"S2:E203 - Quick Draw with Patrick! (featuring Gray)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn.This week's victim is Gray!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-quick-draw-with-patrick-with-gray","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81c4dfc8-a1fe-445b-ad66-561d7dd891db/sm/ep9739.jpg","duration":1389,"publication_date":"2014-09-26T19:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-3","changefreq":"weekly","video":[{"title":"S2:E202 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on September 19, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9a68457-4ad7-4758-b067-657f2dded3b5/sm/ep9737.jpg","duration":4119,"publication_date":"2014-09-26T19:00:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-8","changefreq":"weekly","video":[{"title":"V2:E8 - Chapter 8: Field Trip","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find\ntime to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/686d383b-9aa4-4e4b-96e9-42cfacce14c0/sm/ep9728.jpg","duration":734,"publication_date":"2014-09-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-8","changefreq":"weekly","video":[{"title":"S1:E8 - Screen Play #8","description":"Screen Play Discusses Liam Neeson","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4118,"publication_date":"2014-09-24T17:00:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-49","changefreq":"weekly","video":[{"title":"2014:E49 - Brandon's George Foreman Grill","description":"In RTAA #163, Brandon brags about his new George Foreman grill.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9099bd0c-f54b-4914-832a-7fd7f9b18a61/sm/ep9718.jpg","duration":84,"publication_date":"2014-09-24T14:54:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-290","changefreq":"weekly","video":[{"title":"2014:E290 - RT Podcast #290","description":"RT Discusses Strange Body Parts","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-290","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5785,"publication_date":"2014-09-23T17:47:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-18","changefreq":"weekly","video":[{"title":"S12:E18 - Episode 18: Fed vs. New","description":"S12:E18 - Episode 18: Fed vs. New","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e74e14d5-db2a-44a0-bb4c-05e05f4c4f6a/sm/ep9707.jpg","duration":910,"publication_date":"2014-09-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-the-eleven-little-roosters-teaser-trailer","changefreq":"weekly","video":[{"title":"S1:E16 - The Eleven Little Roosters Teaser Trailer","description":"So you sleuthed out the killer in Ten Little Roosters. The question is: are you ready to do it again\n\nAn interactive spy thriller. Coming in 2016.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-the-eleven-little-roosters-teaser-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c74732f-99e3-41a2-892b-2f5d5491a227/sm/2013912-1442858825449-ELRtrailerThumbnail.png","duration":102,"publication_date":"2014-09-21T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-achievement-hunter-channel-trailer","changefreq":"weekly","video":[{"title":"S1:E15 - Achievement Hunter Channel Trailer","description":"New Achievement Hunter YouTube Channel! SUBSCRIBE || Weekly Show Schedule: MONDAY: HUNT and AHWU TUESDAY: GO! and Five Facts WEDNESDAY: Things to do in Minecraft and Top 5 THURSDAY: Rage Quit/Play Pals and VS FRIDAY: Things to do in GTA and Fails of the Weak SATURDAY: Megacraft SUNDAY: How To","player_loc":"https://roosterteeth.com/embed/trailers-season-1-achievement-hunter-channel-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93c36d76-ad9a-4a51-886f-1ec0ae17cdaf/sm/2013912-1442858548077-AH_thumb.png","duration":46,"publication_date":"2014-09-21T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-x-ray-vav-official-trailer","changefreq":"weekly","video":[{"title":"S1:E14 - X-Ray & Vav: Official Trailer","description":"Your favorite superhero duo is here to save an internet near you! X-Ray & Vav, the newest animated show from Rooster Teeth, airs November 27th, 2014 on Roosterteeth.com","player_loc":"https://roosterteeth.com/embed/trailers-season-1-x-ray-vav-official-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9601a8d-7387-4883-af3c-ffaf6f3addc5/sm/2013912-1442858164251-XV_thumb.png","duration":75,"publication_date":"2014-09-21T17:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-x-ray-and-vav-season-2-trailer","changefreq":"weekly","video":[{"title":"S1:E13 - X-Ray and Vav: Season 2 Trailer","description":"It's the return of X-Ray & Vav! The superhero wannabes may have saved the city, but a new mystery man threatens to steal their thunder! Whatever will the dorktastic duo do! ...Besides bitch and moan about it","player_loc":"https://roosterteeth.com/embed/trailers-season-1-x-ray-and-vav-season-2-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cad5c2f-3202-4fed-b128-014b9667cb25/sm/2013912-1442857954409-XV2_thumb.png","duration":89,"publication_date":"2014-09-21T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-red-vs-blue-season-13-trailer","changefreq":"weekly","video":[{"title":"S1:E12 - Red vs. Blue: Season 13 Trailer","description":"The final installment of The Chorus Trilogy premieres April 1st, 2015 on roosterteeth.com","player_loc":"https://roosterteeth.com/embed/trailers-season-1-red-vs-blue-season-13-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3acd1b73-0d80-4c32-a500-d5bb431a512c/sm/2013912-1442857626945-RvB_S13_thumb.png","duration":111,"publication_date":"2014-09-21T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-lazer-team-movie-trailer","changefreq":"weekly","video":[{"title":"S1:E11 - Lazer Team - Movie Trailer","description":"http://bit.ly/lazerteam - Join the conversation about #LazerTeam. Four unlikely heroes have to save the planet. Whether we like it or not. Starring Burnie Burns, Gavin Free, Michael Jones, Colton Dunn, Allie Deberry and featuring Alan Ritchson.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-lazer-team-movie-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1194a228-a1d3-4d6b-b5cc-4c6a443f6974/sm/2013912-1442857371242-LazerTeam_thumb.png","duration":143,"publication_date":"2014-09-21T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-a-simple-walk-into-mordor-trailer","changefreq":"weekly","video":[{"title":"S1:E10 - A Simple Walk Into Mordor Trailer","description":"Check out A Simple Walk Into Mordor - The Extended Edition DVD\n\nRooster Teeth Store iTunes Amazon Google Play","player_loc":"https://roosterteeth.com/embed/trailers-season-1-a-simple-walk-into-mordor-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48ee7b0a-ca4a-428d-8453-1c5214d19980/sm/2013912-1442855273047-SimpleWalkToMordor_thumb.png","duration":157,"publication_date":"2014-09-21T17:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-volume-2-trailer","changefreq":"weekly","video":[{"title":"S1:E9 - RWBY Volume 2: Trailer","description":"Get ready to return to the world of RWBY! RWBY Volume 2 will premiere online at RoosterTeeth.com on July 24, 2014!","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-volume-2-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73bdb940-3dca-422b-af65-3e318d2a0746/sm/2013912-1442851172365-RWBYvol2_thumb.png","duration":151,"publication_date":"2014-09-21T15:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-yellow-trailer","changefreq":"weekly","video":[{"title":"S1:E8 - RWBY \"Yellow\" Trailer","description":"Get the Music here: iTunes: http://bit.ly/1bSiHZI Google Play: http://bit.ly/19O1e7X Amazon Mp3: http://amzn.to/1aveWvh\n\nFourth look at Rooster Teeth's newest project RWBY helmed by Red vs. Blue Lead Animator Monty Oum. See the premiere at RTX 2013! rtxevent.com","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-yellow-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c78ff621-cc2e-4aec-acde-2984401bf0fe/sm/2013912-1442851001459-RWBY_yellow_thumb.png","duration":345,"publication_date":"2014-09-21T15:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-volume-1-trailer","changefreq":"weekly","video":[{"title":"S1:E7 - RWBY: Volume 1 Trailer","description":"Like the music in RWBY Check out the RWBY Soundtrack: http://bit.ly/1d26GqE\n\nRWBY VOLUME 1 BLU-RAY: http://bit.ly/1gS893z RWBY VOLUME 1 DVD: http://bit.ly/HQSNgw","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-volume-1-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74284600-d42c-426a-ba41-85b208918b72/sm/2013912-1442850824338-RWBYvol1_thumb.png","duration":135,"publication_date":"2014-09-21T15:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-red-trailer","changefreq":"weekly","video":[{"title":"S1:E6 - RWBY \"Red\" Trailer","description":"First look at Rooster Teeth's newest project RWBY helmed by Red vs. Blue Lead Animator Monty Oum.","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-red-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deaa6f43-f738-4702-bd65-42ee81f4cdc3/sm/2013912-1442850133455-RWBY_red_thumb.png","duration":209,"publication_date":"2014-09-21T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-black-trailer","changefreq":"weekly","video":[{"title":"S1:E5 - RWBY \"Black\" Trailer","description":"Third look at Rooster Teeth's newest project RWBY helmed by Red vs. Blue Lead Animator Monty Oum. See the premiere at RTX 2013! rtxevent.com","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-black-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e21113b-4db2-4f4f-83c4-844b0fd4170f/sm/2013912-1442849718726-RWBY_black_thumb.png","duration":313,"publication_date":"2014-09-21T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trailers-season-1-r-w-b-y-white-trailer","changefreq":"weekly","video":[{"title":"S1:E4 - RWBY \"White\" Trailer","description":"The second trailer for the new animated show RWBY from Rooster Teeth.\n\nBuy the song here! iTunes - http://bit.ly/ZC1e6T Google Play - http://bit.ly/Y5oWWa\n\nSee the premiere at RTX 2013! rtxevent.com","player_loc":"https://roosterteeth.com/embed/trailers-season-1-r-w-b-y-white-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7baaf1af-cebf-4329-830f-380f136f3322/sm/2013912-1442849307617-RWBY_white_thumb.png","duration":229,"publication_date":"2014-09-21T15:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-10","changefreq":"weekly","video":[{"title":"2014:E5 - The Crimper - Happy Hour #5","description":"Things are heating up in this week's Happy Hour, as Griffon attempts to give Gavin and Geoff a hair makeover.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/023febc5-a7d2-4221-a49e-c763648b50ec/sm/ep9704.jpg","duration":346,"publication_date":"2014-09-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-beard-meeting","changefreq":"weekly","video":[{"title":"S5:E19 - Beard Meeting","description":"Burnie and Blaine search the office for a meeting place until they finally find one: The Beard Room.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-beard-meeting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b18806a6-7860-4f59-b97a-0044e6cbe043/sm/ep9702.jpg","duration":142,"publication_date":"2014-09-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-20","changefreq":"weekly","video":[{"title":"S2:E201 - Sponsor Play: Halo Pt. 20","description":"This is it, all Kyle and Miles have to do is make it off Halo before it explodes. Let me be clear, all they have to do is drive in a relatively straight line in under six minutes...this could take awhile.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0dbea5c-bd74-43ab-b209-6496d109d16d/sm/ep9693.jpg","duration":1537,"publication_date":"2014-09-17T23:10:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-7","changefreq":"weekly","video":[{"title":"S1:E7 - Screen Play #7","description":"Screen Play Discusses Robert Downey Jr","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":5459,"publication_date":"2014-09-17T19:17:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-43","changefreq":"weekly","video":[{"title":"2014:E44 - Walk-ins & Dead Bodies","description":"In RTAA #162, a broken lock on the bathroom door leads to an awkward encounter for Gus. Joel talks about a friend who specialized in portraying dead bodies.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b8d2d7c-f8a3-4c14-b6ec-e32eb070b753/sm/ep9688.jpg","duration":87,"publication_date":"2014-09-17T17:21:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-19","changefreq":"weekly","video":[{"title":"S2:E200 - Sponsor Play: Halo Pt. 19","description":"Kyle tells a story and leaves Miles to fight both the flood and the covenant ALL BY HIMSELF. Hilarity ensues.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba7e001e-60f2-49bf-b754-7e17bae51f26/sm/ep9686.jpg","duration":1347,"publication_date":"2014-09-16T21:40:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-289","changefreq":"weekly","video":[{"title":"2014:E289 - RT Podcast #289","description":"RT Discusses Being Fashionably Late","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-289","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5311,"publication_date":"2014-09-16T19:13:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-17","changefreq":"weekly","video":[{"title":"S12:E17 - Episode 17: Multiple Choice","description":"S12:E17 - Episode 17: Multiple Choice","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42affc8f-b399-40a1-a2c1-3b37cca35cfa/sm/ep9675.jpg","duration":488,"publication_date":"2014-09-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-18","changefreq":"weekly","video":[{"title":"S2:E199 - Sponsor Play: Halo Pt. 18","description":"Geoff Ramsey shows up... \r\n.\r\n.\r\n.\r\n.\r\n.\r\nfor like a second, but then Burnie shows up,\r\n.\r\n.\r\n.\r\nhe's not on a mic but he's in the room.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/66ce9429-ce51-48fc-8bab-5b4f3b8ee871.jpg/sm/RTSponsorCutHalo1thumbnail.jpg","duration":1734,"publication_date":"2014-09-15T19:46:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-17","changefreq":"weekly","video":[{"title":"S2:E198 - Sponsor Play: Halo Pt. 17","description":"Miles' friend Don was faced with a difficult decision but in the end, he chose his Destiny.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73af46c8-abe6-4bc0-a7a6-c25fc302a7d6/sm/ep9674.jpg","duration":1167,"publication_date":"2014-09-14T20:38:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-16","changefreq":"weekly","video":[{"title":"S2:E197 - Sponsor Play: Halo Pt. 16","description":"Kyle and Miles discuss the videos that got them through crunch time. Also more Halo.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04b28195-51e0-41ad-a475-8e4499f625e1/sm/ep9672.jpg","duration":1094,"publication_date":"2014-09-13T20:58:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/social-disorder-season-1-the-body-bag","changefreq":"weekly","video":[{"title":"S1:E1 - The Body Bag","description":"Aaron and Chris challenge each other to drag a body bag across the city from their apartment to the river in less than 30 minutes... With a little help from innocent bystanders.","player_loc":"https://roosterteeth.com/embed/social-disorder-season-1-the-body-bag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b236ae9-fce0-4b9c-8107-e897d3a26fbc/sm/ep9669.jpg","duration":647,"publication_date":"2014-09-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-15","changefreq":"weekly","video":[{"title":"S2:E196 - Sponsor Play: Halo Pt. 15","description":"Kyle and Miles are back to finish the fight...But not in one part. That would be ridiculous. And two and a half hours long.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4f34f74-15bb-4a80-a895-1714d6f2205d/sm/ep9671.jpg","duration":1113,"publication_date":"2014-09-12T20:56:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-the-iphone-cult","changefreq":"weekly","video":[{"title":"S5:E18 - The iPhone Cult","description":"Michael must cope with life as an outcast from The iPhone Cult; the life of a Green Person.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-the-iphone-cult","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff6553c9-ab77-4d94-acfe-c017279c2e81/sm/ep9666.jpg","duration":118,"publication_date":"2014-09-12T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-5","changefreq":"weekly","video":[{"title":"S2:E195 - Sponsor Cut: Cards Against Humanity #5","description":"Returning Champion Lindsay faces off with Kyle, Michael, Meg and Gavin.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76b57744-4158-49d7-a00d-5563e9d3a2a3/sm/ep9668.jpg","duration":5067,"publication_date":"2014-09-12T17:30:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-7","changefreq":"weekly","video":[{"title":"V2:E7 - Chapter 7: Dance Dance Infiltration","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find\ntime to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51f42835-ffe4-49e3-9a3a-335a88c9cf69/sm/ep9658.jpg","duration":883,"publication_date":"2014-09-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-imploding-drum","changefreq":"weekly","video":[{"title":"S1:E33 - Imploding Drum","description":"Gav and Dan show off a cool pressure related experiment inspired by Veritasium's imploding drum video.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-imploding-drum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c1c6855-debd-4838-a53c-8fc653785d82/sm/ep9664.jpg","duration":210,"publication_date":"2014-09-11T19:25:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-6","changefreq":"weekly","video":[{"title":"S1:E6 - Screen Play #6","description":"Screen Play Discusses Movie Soundtracks","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4459,"publication_date":"2014-09-10T23:06:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-36","changefreq":"weekly","video":[{"title":"2014:E36 - Miles Hacks the System","description":"In RTAA #161, a simple misunderstanding turns into a security breach scare at the office.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca25c3d4-b534-4911-a8a7-bec3d8698b45/sm/ep9653.jpg","duration":145,"publication_date":"2014-09-10T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-288","changefreq":"weekly","video":[{"title":"2014:E288 - RT Podcast #288","description":"RT Discusses Farm Animals","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-288","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5802,"publication_date":"2014-09-09T17:49:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-psa-getting-away-from-it-all","changefreq":"weekly","video":[{"title":"S1:E42 - PSA: Getting Away From it All","description":"The reds and blues are long overdue for a vacation, but \"vacation\" doesn't always mean relaxation.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-psa-getting-away-from-it-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f69416bd-6905-4a6a-98dc-6f051a11ae8a/sm/ep9643.jpg","duration":339,"publication_date":"2014-09-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-6","changefreq":"weekly","video":[{"title":"2014:E4 - Geoff's Colonoscopy - Happy Hour #4","description":"In this week's gripping Happy Hour, Griffon Ramsey gets and in-depth interview with Geoff moments after he gets a camera in the depths of his anus.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32bef20c-0f29-4dc4-b172-58bf82176810/sm/ep9639.jpg","duration":280,"publication_date":"2014-09-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-the-iblade-trilogy-part-3","changefreq":"weekly","video":[{"title":"S5:E12 - The iBlade Trilogy Part 3","description":"Russ faces a greater threat than he imagined in the action-packed finale to the iBlade Trilogy! Click here to get the game that inspired The iBlade Trilogy: http://bit.ly/YdX46g","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-the-iblade-trilogy-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d450c20-38df-40a6-aab5-9f1a256c8587/sm/ep9637.jpg","duration":579,"publication_date":"2014-09-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-6","changefreq":"weekly","video":[{"title":"V2:E6 - Chapter 6: Burning the Candle","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find time to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d938b06-1ce2-4c44-b9ec-f79413e9af08/sm/ep9630.jpg","duration":789,"publication_date":"2014-09-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-5","changefreq":"weekly","video":[{"title":"S1:E5 - Screen Play #5","description":"Screen Play Discusses Adaptations","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4885,"publication_date":"2014-09-03T19:01:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-30","changefreq":"weekly","video":[{"title":"2014:E30 - Stealin' Cable With Michael","description":"In RTAA #160, Michael shares his cable theft story, which led to a profitable business on the side.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1a397b2-67a1-4aa5-b3b7-d4c737099ff1/sm/ep9624.jpg","duration":87,"publication_date":"2014-09-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-287","changefreq":"weekly","video":[{"title":"2014:E287 - RT Podcast #287","description":"RT Discusses Labor Day","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-287","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5264,"publication_date":"2014-09-03T00:51:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-16","changefreq":"weekly","video":[{"title":"S12:E16 - Episode 16: Out of the Frying Pan","description":"S12:E16 - Episode 16: Out of the Frying Pan","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/655c1ea3-0176-46c3-adc6-db6360598fa1/sm/ep9617.jpg","duration":522,"publication_date":"2014-09-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-24","changefreq":"weekly","video":[{"title":"2014:E24 - Miles and his Hands Free Steak","description":"The Red vs. Blue crew embarks on a quest of epic proportions.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94e9e680-6ba6-4d75-b1ed-3a253951d951/sm/ep9611.jpg","duration":98,"publication_date":"2014-08-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-the-iblade-trilogy-2","changefreq":"weekly","video":[{"title":"S5:E11 - The iBlade Trilogy Part 2","description":"With the company's future in jeopardy, Russ delves into the seedy underbelly of iBlade, Inc for answers... and comes face-to-face with their corporate saboteur. Click here to get the game that inspired The iBlade Trilogy: http://bit.ly/YdX46g","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-the-iblade-trilogy-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44a09271-c9b1-4ff0-b339-8166f518e5ca/sm/ep9606.jpg","duration":545,"publication_date":"2014-08-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-ryan","changefreq":"weekly","video":[{"title":"S2:E194 - Quick Draw with Patrick! (featuring Ryan)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn.This week's victim is Ryan!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-ryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62140d95-332d-461d-b9b1-8b0e7a328cbe/sm/ep9610.jpg","duration":2179,"publication_date":"2014-08-29T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-5","changefreq":"weekly","video":[{"title":"V2:E5 - Chapter 5: Extracurricular","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find\ntime to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48115ed8-9c64-403e-9531-8b1852c11d80/sm/ep9605.jpg","duration":762,"publication_date":"2014-08-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-4","changefreq":"weekly","video":[{"title":"S1:E4 - Screen Play #4","description":"Screen Play Discusses Name Dropping","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4851,"publication_date":"2014-08-27T22:45:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-a-view-too-many","changefreq":"weekly","video":[{"title":"S5:E7 - A View Too Many","description":"Gus confronts Chris about his unusual monitor fixation. GAEMS - making gaming possible where no one else can! Check out http://bit.ly/1yWR272","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-a-view-too-many","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f14d99cb-d68d-4c96-bd38-ad3ea109688b/sm/ep9593.jpg","duration":111,"publication_date":"2014-08-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-286","changefreq":"weekly","video":[{"title":"2014:E286 - RT Podcast #286","description":"RT Discusses Gus' Rosy Life","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-286","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5623,"publication_date":"2014-08-26T23:36:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-15","changefreq":"weekly","video":[{"title":"S12:E15 - Episode 15: Accentuate the Interrogative","description":"S12:E15 - Episode 15: Accentuate the Interrogative","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49d4175b-6dac-49ea-a6d4-952cdac4b778/sm/ep9582.jpg","duration":479,"publication_date":"2014-08-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-p-t","changefreq":"weekly","video":[{"title":"S2:E193 - Sponsor Play: P.T.","description":"Gus, Barbara, Chris, and Brandon play one of the scariest demos out there. Good thing we had a GoPro running the whole time.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-p-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da5f27b-ef6c-4941-b2df-5fe235c3199b/sm/ep9579.jpg","duration":3361,"publication_date":"2014-08-24T00:13:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-3","changefreq":"weekly","video":[{"title":"2014:E3 - Jump Rope Training - Happy Hour #3","description":"Gavin challenges Geoff and Griffon to do something so physically demanding, most Olympians couldn't handle it. Will it end in success, or a trip to the Hospital","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/050d870f-91af-4549-abfd-126c861c52dd/sm/ep9574.jpg","duration":326,"publication_date":"2014-08-23T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-2","changefreq":"weekly","video":[{"title":"S2:E192 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on August 15, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23968a2d-8e59-42cb-958b-cb9ec7b8676c/sm/ep9577.jpg","duration":3798,"publication_date":"2014-08-22T19:03:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-the-iblade-trilogy-part-1","changefreq":"weekly","video":[{"title":"S5:E10 - The iBlade Trilogy Part 1","description":"It's merry times in the medieval offices of iBlade, Incorporated -- demand for their immortal-slaying swords has never been higher! But as a big promotion looms, tenacious engineer Russ stumbles into a plot that may very well destroy the entire company. Click here to get the game that inspired The iBlade Trilogy: http://bit.ly/YdX46g","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-the-iblade-trilogy-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d263be1e-c822-4cd3-97bc-cdbc4dc39b49/sm/ep9564.jpg","duration":527,"publication_date":"2014-08-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-catching-a-bullet-with-a-watermelon","changefreq":"weekly","video":[{"title":"S1:E32 - Catching a Bullet with a Watermelon","description":"Gav tests out whether taking cover behind water melons is an effective survival strategy while being shot at.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-catching-a-bullet-with-a-watermelon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/692abdff-9cbc-49a8-9dfc-17c130be6635/sm/ep9576.jpg","duration":246,"publication_date":"2014-08-22T17:42:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-16","changefreq":"weekly","video":[{"title":"2014:E16 - Stealin' Cable With Geoff","description":"In RTAA #159, young Geoff almost gets caught stealing cable with his friend in Tennessee.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed3888c3-46b3-45a6-87d0-7a82e6034530/sm/ep9563.jpg","duration":85,"publication_date":"2014-08-20T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-3","changefreq":"weekly","video":[{"title":"S1:E3 - Screen Play #3","description":"Screen Play Discusses Michael Bay","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":4350,"publication_date":"2014-08-20T17:56:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-13","changefreq":"weekly","video":[{"title":"2014:E13 - Rooster Teeth Ice Bucket Challenge","description":"To donate, please visit http://ALSA.org\r\n\r\nFeaturing Alan Abdine, Chelsea Atkinson, Brian Behm, Matt Bragg, JJ Castillo, Megan Castro, Joel Heyman, Chris Demarais, Caleb Denecour, Sarah Deuel, Clayton Dewet, Jeremy Dooley, Barbara Dunkelman, Kara Eberle, Adam Ellis, Brandon Farmahini, Josh Dillon Flanagen, Blaine Gibson, Matt Hullum, Anna Hullum, Mills Hullum, Kdin Jenzen, Michael Jones, Miles Luna, Tom Lusardi, Chris Martin, Dustin Matthews, Emily Mcbride, Jon Risinger, Patrick Salazar, Mariel Salcedo, Yvonne Secretan, Ashley Shoemaker, Peter Sorensen and William Vera.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73e5b5d3-76de-4dd7-95df-e3318caf0430/sm/ep9559.jpg","duration":89,"publication_date":"2014-08-19T23:49:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-285","changefreq":"weekly","video":[{"title":"2014:E285 - RT Podcast #285","description":"RT Discusses Man Killing Snails","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-285","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5739,"publication_date":"2014-08-19T18:05:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-14","changefreq":"weekly","video":[{"title":"S12:E14 - Episode 14: Crash Site Crashers","description":"S12:E14 - Episode 14: Crash Site Crashers","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/705052f2-f428-47f0-9ad5-4e670479d63a/sm/ep9552.jpg","duration":530,"publication_date":"2014-08-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-12","changefreq":"weekly","video":[{"title":"2014:E12 - Thrill Seekers","description":"Follow Chris, JJ, Blaine, and Barbara as they prepare themselves for skydiving, while Miles plays with bouncy balls.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98abd4fc-3d23-4ba9-b780-6f92f04ed7ac/sm/ep9547.jpg","duration":105,"publication_date":"2014-08-16T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-the-iblade-trilogy-teaser-trailer","changefreq":"weekly","video":[{"title":"S5:E23 - The iBlade Trilogy - Teaser Trailer","description":"In the medieval office of iBlade Inc., a company mole has stolen top-secret plans to sell to a rival company. Now it's up to Russ, a luckless weapons engineer, to track down the mole, save the company, and prove to his co-workers that he isn't a loser... All by 5pm.\r\nClick here to get the game that inspired The iBlade Trilogy: http://bit.ly/YdX46g","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-the-iblade-trilogy-teaser-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcb9b6b7-73ed-4ec3-b13c-16fd968c5fc3/sm/ep9541.jpg","duration":60,"publication_date":"2014-08-15T16:20:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-4","changefreq":"weekly","video":[{"title":"V2:E4 - Chapter 4: Painting the Town...","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find\ntime to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/063664a6-7962-4c79-9ad2-0e066b4c9e2b/sm/ep9538.jpg","duration":980,"publication_date":"2014-08-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-2","changefreq":"weekly","video":[{"title":"S1:E2 - Screen Play #2","description":"Screen Play Discusses Robin Williams","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":3887,"publication_date":"2014-08-13T18:03:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-10","changefreq":"weekly","video":[{"title":"2014:E10 - Geoff's Weird Dreams","description":"In RTAA #158, Geoff tells the gang about two strange dreams he had, one involving drunk gaming, and the other leading to an accident in his pants.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a54a0f88-f62f-44e7-9b1a-4aa470ecaa09/sm/ep9535.jpg","duration":94,"publication_date":"2014-08-13T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-284","changefreq":"weekly","video":[{"title":"2014:E284 - RT Podcast #284","description":"RT Discusses Working Out","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-284","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5966,"publication_date":"2014-08-12T17:29:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-super-fight","changefreq":"weekly","video":[{"title":"S2:E191 - Sponsor Cut: Super Fight","description":"Join Kyle, Joel, Adam, Gus, and Barbara to see who's fighter will be the last one standing! The Video was first live streamed on 8/8. Check out the Art Contest going on now! http://bit.ly/1BcaTBq","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-super-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/228812b3-e9dd-4675-b6c5-d90e7ab6f301/sm/ep9527.jpg","duration":5437,"publication_date":"2014-08-12T15:40:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-leaping-slow-motion-doggy","changefreq":"weekly","video":[{"title":"S1:E31 - Leaping Slow Motion Doggy","description":"Gav and Dan employ the help of the Rise-monger's dog in this very fluffy video.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-leaping-slow-motion-doggy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/828ae9ea-beba-4012-9b7d-9f0a1014c9ee/sm/ep9525.jpg","duration":253,"publication_date":"2014-08-12T14:29:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-13","changefreq":"weekly","video":[{"title":"S12:E13 - Episode 13: Catch Up, No Mustard","description":"S12:E13 - Episode 13: Catch Up, No Mustard","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f2d1d50-ce6b-4d5d-b171-f1dbced5940a/sm/ep9522.jpg","duration":489,"publication_date":"2014-08-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014","changefreq":"weekly","video":[{"title":"2014:E2 - Minty Fresh - Happy Hour #2","description":"Gavin, Geoff, and Griffon embark on a drunken journey that spans the better part of a decade. Tune in every few weeks to watch them dare and drink their way across the world and time. In this week's episode, they challenge Geoff to eat two packets of mints at once.","player_loc":"https://roosterteeth.com/embed/happy-hour-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2654cdb-7613-424e-9c1d-a546c56783e0/sm/ep9517.jpg","duration":291,"publication_date":"2014-08-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-1","changefreq":"weekly","video":[{"title":"S2:E190 - Sponsor Cut: Cards Against Humanity","description":"Join Kyle, Lindsay, Michael, Gray, and Kerry as they play Cards Against Humanity! This video was first live streamed on August 1, 2014 for Rooster Teeth Sponsors.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31514432-5c6b-4018-89f6-b554c0aa293c/sm/ep9509.jpg","duration":5565,"publication_date":"2014-08-08T17:41:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-3","changefreq":"weekly","video":[{"title":"V2:E3 - Chapter 3: A Minor Hiccup","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find time to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d77391c1-f080-4776-a387-077ca2acd7d6/sm/ep9503.jpg","duration":757,"publication_date":"2014-08-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screen-play-season-1-screen-play-1","changefreq":"weekly","video":[{"title":"S1:E1 - Screen Play #1","description":"Screen Play Discusses Guardians of the Galaxy","player_loc":"https://roosterteeth.com/embed/screen-play-season-1-screen-play-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af23533-ae3e-4753-97f1-5678a4a8aff0/sm/1601067-1508347321973-rt_default.jpg","duration":3864,"publication_date":"2014-08-06T23:10:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-3","changefreq":"weekly","video":[{"title":"2014:E3 - Godzilla vs The Human Bugs","description":"In RTAA #157, the guys wonder what it would be like if Godzilla were as grossed out by humans as humans are by bugs.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17e5cfec-21e0-400e-b592-c0a43798bfc5/sm/ep9496.jpg","duration":68,"publication_date":"2014-08-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-283","changefreq":"weekly","video":[{"title":"2014:E283 - RT Podcast #283","description":"RT Discusses Dirty Water","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-283","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5915,"publication_date":"2014-08-05T17:30:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-psa-match-breaking","changefreq":"weekly","video":[{"title":"S1:E41 - PSA: Match Breaking","description":"Hey fellas, need some help with the ladies Tucker and Simmons can be your wingmen! Just know that with their help... you'll probably be single forever.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-psa-match-breaking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12934543-3e2c-4d93-b090-0f32bf60ed61/sm/ep9487.jpg","duration":278,"publication_date":"2014-08-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-3","changefreq":"weekly","video":[{"title":"2014:E3 - Joe the Cat's Office","description":"Joe gets a job at Rooster Teeth and Barbara is trapped FOREVER.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b42f9aa-9a50-409c-a330-f3b02c5a077c/sm/ep9484.jpg","duration":93,"publication_date":"2014-08-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-2","changefreq":"weekly","video":[{"title":"V2:E2 - Chapter 2: Welcome to Beacon","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find\ntime to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4074a5a6-30ad-427b-a966-6f879dfc8caa/sm/ep9473.jpg","duration":794,"publication_date":"2014-07-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-50","changefreq":"weekly","video":[{"title":"2014:E50 - Canadian Zombie Property","description":"In RTAA #156, the guys discuss some changes in direction that could have ruined Dead Rising 2, Burnie finds a familiar looking rock, and Gus tells people to get off his lawn.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaf8f559-97f4-41bc-a5e1-fc67e64090f7/sm/ep9466.jpg","duration":95,"publication_date":"2014-07-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-282","changefreq":"weekly","video":[{"title":"2014:E282 - RT Podcast #282","description":"RT Discusses Wisdom Wanks","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-282","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5690,"publication_date":"2014-07-29T23:30:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-12","changefreq":"weekly","video":[{"title":"S12:E12 - Episode 12: The Reunion","description":"S12:E12 - Episode 12: The Reunion","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11609d84-f086-4654-9516-50e67b39a3f5/sm/ep9457.jpg","duration":525,"publication_date":"2014-07-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-slow-motion-vomit","changefreq":"weekly","video":[{"title":"S1:E30 - Slow Motion Vomit","description":"Warning, this episode is absolutely minging. The title pretty much says it all.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-slow-motion-vomit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00465af7-489a-42d9-b9f7-29924e294600/sm/ep9454.jpg","duration":327,"publication_date":"2014-07-28T14:41:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/happy-hour-2014-11","changefreq":"weekly","video":[{"title":"2014:E1 - Roomba Death Match - Happy Hour #1","description":"Gav, Geoff and Griffon embark on a drunken journey that spans the better part of a decade. Tune in every few weeks to watch them dare and drink their way across the world and time. In this week's episode, they turn their fleet of Roombas into driving death machines. Who will kill first","player_loc":"https://roosterteeth.com/embed/happy-hour-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc30517f-4303-48ab-b8a1-e606dd5cf519/sm/ep9452.jpg","duration":223,"publication_date":"2014-07-26T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-2-2","changefreq":"weekly","video":[{"title":"S2:E189 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on July 18, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-2-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cadef361-ec87-48f8-aa51-8dece6f670fa/sm/ep9446.jpg","duration":4230,"publication_date":"2014-07-25T17:23:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-quick-draw-with-patrick-with-rtx","changefreq":"weekly","video":[{"title":"S2:E188 - Sponsor Cut: Quick Draw with Patrick!","description":"Watch the Quick Draw panel that happened at RTX 2014.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-quick-draw-with-patrick-with-rtx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba6a641d-6094-4648-ae7b-fe072b122334/sm/ep9445.jpg","duration":4822,"publication_date":"2014-07-25T17:22:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rwby-season-2-rwby-volume-2-chapter-1","changefreq":"weekly","video":[{"title":"V2:E1 - Chapter 1: Best Day Ever","description":"Team RWBY is back and ready for their second semester at Beacon, an academy that trains the world's strongest fighters. But real life doesn't stop. Between classes and homework, they still have to find\ntime to save the world. And between the White Fang, Roman Torchwick, and a mysterious new trio, they certainly have their work cut out for them!","player_loc":"https://roosterteeth.com/embed/rwby-season-2-rwby-volume-2-chapter-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53598eeb-f998-4460-8440-4efe89f046ff/sm/ep9439.jpg","duration":885,"publication_date":"2014-07-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-42","changefreq":"weekly","video":[{"title":"2014:E45 - Technical Bully Problems","description":"In RTAA #155, Joel has another technical issue that Burnie tries to help with. Burnie talks about a kid who confronts a bully with an surprising outcome.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99026f00-ea86-417f-80a3-46bcc1d1992e/sm/ep9435.jpg","duration":75,"publication_date":"2014-07-23T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-281","changefreq":"weekly","video":[{"title":"2014:E281 - RT Podcast #281","description":"RT Discusses Old School Wanks","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-281","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5643,"publication_date":"2014-07-22T23:17:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-11","changefreq":"weekly","video":[{"title":"S12:E11 - Episode 11: Long Time No See","description":"S12:E11 - Episode 11: Long Time No See","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8135f3d3-f881-421c-8111-b182850a3400/sm/ep9425.jpg","duration":544,"publication_date":"2014-07-21T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-off-topic-4","changefreq":"weekly","video":[{"title":"2015:E4 - The Trouble with Jack's Pants - #4","description":"This episode originally aired December 25, 2015 and is sponsored by Audible (adbl.co/1QuMzV2) and Lazer Team (bit.ly/1OsTqrY)\n\nThe AH Crew sits down to talk about making a scene at an L.A. pool and the trouble with Jack's pants and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-off-topic-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c737349-78a7-4980-aff1-d236e5b061aa/sm/1608230-1450907942059-OT04-TH.jpg","duration":5405,"publication_date":"2015-12-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-just-cause-3-rocket-car","changefreq":"weekly","video":[{"title":"2015:E78 - Just Cause 3 ? - Rocket Car","description":"Have you ever wondered what it would be like if your car had rockets on it Well why not Well yeah, it's probably not safe, but it's cool. Watch and learn.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-just-cause-3-rocket-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7489db0-ebce-41e3-ae3f-edad17f360d2/sm/834020-1450898870435-rocketcar_thumb.jpg","duration":249,"publication_date":"2015-12-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-187-the-krampus","changefreq":"weekly","video":[{"title":"2015:E372 - Minecraft ?- Episode 187 -? The Krampus","description":"Geoff, Gavin, Michael, Ryan, Jack, and Jeremy team up to take down the CHRISTMAS\n\nKRAMPUS who has stolen the Tower of Pimps! Can threatening phone calls and constant\n\nscreaming help them save the holiday!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-187-the-krampus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5939c42f-cffa-4dbc-8f5b-d703086732cd/sm/834020-1450985436587-thekrampus_thumb.jpg","duration":2472,"publication_date":"2015-12-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-275","changefreq":"weekly","video":[{"title":"2015:E52 - Volume 275","description":"Fails of the Weak Volume 275 brings the end of an era. After 5+ years of commentating over thousands of fails and glitches, Jack and Geoff announce their retirement from the show. No reason to be sad, as the doors have been opened up for two more stunning lads (or ladies) to take control! Who would you want to see\n\n\n\nFeatures glitches and fails from Fallout 4, Just Cause 3, Rainbow 6 Siege, and Star Wars Battlefront.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-275","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f34c5f39-a097-44b0-bd24-92c259faeb84/sm/2013912-1450301015274-Fails275-Big.jpg","duration":221,"publication_date":"2015-12-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-episode-6","changefreq":"weekly","video":[{"title":"2015:E82 - Grab Bag #6","description":"Hey kids. It's time to reach into Uncle Cheevo's bag o' magic and pull out a few more clips that got left on the cutting room floor. Gribbity grab on, strap on, strap in, and grab that bag, dammit. || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69569c83-ae64-4940-91e4-1aac04eecb27/sm/834020-1450908593461-grabbag6_thumb.jpg","duration":237,"publication_date":"2015-12-23T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-gta-v-zap-maze","changefreq":"weekly","video":[{"title":"2015:E77 - GTA V - Zap Maze","description":"We're not sure what's more dangerous in this video; fire or electricity","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-gta-v-zap-maze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d315dd7-6be3-4216-bab6-039b9f64a5f3/sm/834020-1450895260525-zapmaze_thumb.jpg","duration":696,"publication_date":"2015-12-23T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-keep-talking-and-nobody-explodes-screw-attack","changefreq":"weekly","video":[{"title":"2015:E370 - Keep Talking and Nobody Explodes - ScrewAttack","description":"You've witnessed Achievement Hunter and Funhaus keep talking until they all explode over and over again. Now it's time for the ScrewAttack crew to do the same.You ScrewAttack fans are called G1s, right Have y'all ever thought about going by The Screw Crew instead Or maybe CrewAttack CrewAttack would be totally useful. Let's say there's a Rooster Teeth battle of four armies, with Rooster Teeth, Achievement Hunter, Funhaus, and ScrewAttack. \n\nCraig is leading the ScrewAttack army and lets out his fierce battle cry. \"CREW. ATTAAAAAACK!\" and then CrewAttack charges at their enemies. What are you supposed to do for G1s G1s, have fun Craig shouts that, then Chad pulls out a DJ turntable and drops the phattest of beats. Rather than fight, all the G1s start dancing to the music and get slaughtered.\n\nOn the other hand, Rooster Teeth and Achievement Hunter don't have any sort of name for the fans. The loose teeth The hunting party Nope. No way. Guess you win this time, G1s.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-keep-talking-and-nobody-explodes-screw-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56c30b2d-2595-4b87-8e7e-e02ffa0bcb57/sm/834020-1450892349007-KeepTalkingScrewattack_thumb.jpg","duration":1117,"publication_date":"2015-12-23T17:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-trek-part-6","changefreq":"weekly","video":[{"title":"2015:E367 - Star Trek Part 6","description":"For you, it was two weeks. For Ryan and Michael it was almost six months. Luckily they totally\n\nremember everything about this game.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-trek-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c97f694-a6b9-40b2-af36-52b15ad08770/sm/834020-1450806688996-startrekpart6.jpg","duration":2299,"publication_date":"2015-12-22T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-geoff-s-super-sour-balls-ahwu-for-december-21-st-2015-296","changefreq":"weekly","video":[{"title":"2015:E50 - Geoff's Super Sour Balls - AHWU for December 21st, 2015 (#296)","description":"*cue piano*\n\n\n*PLUNK plunk! Plunk plunk. Bunk dunk da-plunk*\n\n\n\n\nI saw Jack Patillo with a Chinese menu in his hand\n\n\nWalking through the streets of Austin in the rain\n\n\nHe was looking for a place called Lee Ho Fook's\n\n\nGonna get a big dish of beef chow mein\n\n\n\n\nAHWUUUUUUUUUUUUU!\n\n\nWerewolves of London!\n\n\nAHWUUUUUUUUUUUUU!\n\n\n\n\nVid of week: https://www.youtube.com/watchv=fr7ZW9UBa4U \n\nCommunity vid: https://www.youtube.com/watchv=d5iB1_4671k and the other new \"Best of...\" videos available on the Community Hunter channel","player_loc":"https://roosterteeth.com/embed/ahwu-2015-geoff-s-super-sour-balls-ahwu-for-december-21-st-2015-296","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76cc18be-a815-41d3-8a4d-52c15105815b/sm/1104396-1450740546183-ahwu_thumb.jpg","duration":318,"publication_date":"2015-12-21T23:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-a-h-dventures-in-la","changefreq":"weekly","video":[{"title":"2015:E81 - AH-dventures in LA","description":"AH live like celebrities on their WEEKEND IN L.A.! Ska isn't dead, dammit!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-a-h-dventures-in-la","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9df3ddf3-f821-424b-afef-5bbb7fd876e1/sm/1104396-1450733752763-ahdventures_la_thumb.jpg","duration":270,"publication_date":"2015-12-21T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-r-w-b-y-grimm-eclipse","changefreq":"weekly","video":[{"title":"2015:E365 - RWBY: Grimm Eclipse","description":"This will be the day we've waited for. Assuming you've been waiting for Achievement Hunter to play RWBY: Grimm Eclipse. If not... then this is not that day. Go back to your daily lives... but still watch the video... you'll just have to wait for your specific day a little longer.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-r-w-b-y-grimm-eclipse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2056bff4-3c67-4d02-b148-8b036f8aaf44/sm/834020-1450716537107-LP_RWBY_GrimmEclipse.jpg","duration":2713,"publication_date":"2015-12-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-fallout-4","changefreq":"weekly","video":[{"title":"2015:E50 - Fallout 4","description":"Its Time For Everyones Favorite Show: Francos Fallout 4 Five Facts! (Spoiler Free!)","player_loc":"https://roosterteeth.com/embed/five-facts-2015-fallout-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4166567f-5c3d-4d03-8548-85db2a71f409/sm/669363-1450376051780-ffff$.jpg","duration":296,"publication_date":"2015-12-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-gta-v-adder-addiction","changefreq":"weekly","video":[{"title":"2015:E364 - GTA V - Adder Addiction","description":"The guys get addicted to speed... Not the drug. Like speeding.. in a car. You know what I don't have to defend them!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-gta-v-adder-addiction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e85ca195-7eaa-474c-9742-9efe67e38e7d/sm/669363-1450491905294-Adder_Addiction_Thumbnail.jpg","duration":1939,"publication_date":"2015-12-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-off-topic-03","changefreq":"weekly","video":[{"title":"2015:E3 - Blow-tergeist - #3","description":"Description: This episode originally aired December 18, 2015 and is sponsored by Audible (adbl.co/1QuMzV2) and Lazer Team (bit.ly/1OsTqrY)\n\n The AH Crew sits down to talk about Star Wars, how to sexually satisfy a ghost and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-off-topic-03","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0aaf818-2351-489b-b88f-7d3831ceafd2/sm/1628443-1450482546574-OFF03_-_THUMB.jpg","duration":8112,"publication_date":"2015-12-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-how-to-the-witcher-3","changefreq":"weekly","video":[{"title":"2015:E55 - The Witcher 3","description":"In this video Joel and Adam play the Witcher 3. As a side note, a week ago Joel told me he was going out to get some groceries. He hasnt come back. He missed the movie last night. We miss him. Please come back Joel, please.","player_loc":"https://roosterteeth.com/embed/how-to-2015-how-to-the-witcher-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce861196-5b24-47d6-9e25-3d2e44900ab2/sm/669363-1450482063004-WITCHERTHUMB.jpg","duration":1127,"publication_date":"2015-12-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-clash-for-dawn-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E363 - Clash for Dawn - The Rooster Teeth Podcast Crew","description":"Thanks to Clash for Dawn for sponsoring this video! Download the game here: \n\niOS http://bit.ly/1WZBb7b\n\nAndroid http://bit.ly/1l6ZmiV \n\n\n\nThis week, Gus, Blaine, and Brandon are out clashing against mythical beasts, roughly between 6 and 7am. These mighty warriors fight diligently to keep the realm safe, just not at day or night. Also not at dusk. If you need saving at dusk, you're totally boned.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-clash-for-dawn-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2340089a-dfc9-4f32-8b3c-cbab948abe99/sm/669363-1450480382263-Clash_for_Dawn_Thumb.png","duration":761,"publication_date":"2015-12-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-things-to-do-in-just-cause-3-cow-rousel","changefreq":"weekly","video":[{"title":"2015:E76 - Just Cause 3 - Cow-Rousel","description":"Haven't you ever wished that carousels had cows on them instead of horses No Well I don't care! I always wanted it, so I tried to make it in Just Cause 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-things-to-do-in-just-cause-3-cow-rousel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c24c5082-1669-441d-92a5-e8311e72d06c/sm/669363-1450491238382-CowRousel_Thumb.jpg","duration":245,"publication_date":"2015-12-19T02:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-a-h-dventures-in-nyc","changefreq":"weekly","video":[{"title":"2015:E80 - Grab Bag - AH-dventures in NYC","description":"Want more AH in NYC Fuhgetaboutit! But seriously, here's more. || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-a-h-dventures-in-nyc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c85a2e6-8e50-4df3-a419-3136e93927b1/sm/669363-1450477169658-NY_grabbag.jpg","duration":247,"publication_date":"2015-12-18T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-halo-5-soccer","changefreq":"weekly","video":[{"title":"2015:E75 - Halo 5 - Soccer","description":"Team OG Vs Team Little Britain. They land on a planet far far away and decide to occupy their time with a little footy!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-halo-5-soccer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5f66bce-ead5-4709-b99f-b2eab2c18658/sm/669363-1450410627178-TTD_Halo5_Soccer.jpg","duration":431,"publication_date":"2015-12-18T04:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-274","changefreq":"weekly","video":[{"title":"2015:E51 - Volume 274","description":"In Fails of the Weak Volume 274, Geoff has a solid joke as Jack talks you through fails and glitches from Fallout 4, Just Cause 3, Lara Croft, and Star Wars Battlefront!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-274","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ac7bc5a-8ae3-4545-bca3-f0849ddec94c/sm/2013912-1450300939443-Fails274-Big.jpg","duration":158,"publication_date":"2015-12-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-186-there-is-no-learning-curve-part-4","changefreq":"weekly","video":[{"title":"2015:E362 - Minecraft - Episode 186 - There is no Learning Curve [Part 4]","description":"Only one puzzle remains! Can Ryan, Geoff, and Michael solve it in record breaking time\n\nShort Answer: No.\nLong Answer: Noooooooooooooo...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-186-there-is-no-learning-curve-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1faa33ff-f81f-4dcc-89e0-0bf9ae5c2978/sm/2013912-1450136009302-nlc4_thumb.jpg","duration":1915,"publication_date":"2015-12-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-wars-battlefront-battle-of-jakku-dlc","changefreq":"weekly","video":[{"title":"2015:E361 - Star Wars Battlefront - Battle of Jakku DLC","description":"Achievement Hunter joins to a whole new part of the galaxy far far away with the new Battle of Jakku DLC. This video is sponsored by Turtle Beach: http://www.turtlebeach.com","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-wars-battlefront-battle-of-jakku-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da30cb57-fc24-44b4-85ab-55b7ea892d75/sm/2013912-1450310552458-Jakku_Thumb.jpg","duration":1625,"publication_date":"2015-12-17T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-armored-warfare","changefreq":"weekly","video":[{"title":"2015:E360 - Armored Warfare","description":"This video is sponsored by Armored Warfare. Play Armored Warfare for free here: http://go.aw.my.com/Lets_Play_2015","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-armored-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bf1a9c4-b936-4d36-bfe5-f93875e4cd25/sm/2013912-1450291503937-armor_Warfare.jpg","duration":1966,"publication_date":"2015-12-16T18:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-destiny-sparrow-racing","changefreq":"weekly","video":[{"title":"2015:E359 - Destiny - Sparrow Racing","description":"Geoff, Jack, Ryan, Michael, Jeremy, and Trevor dust off Destiny to play Sonic R mode. Hahaha. Great joke, me. Sonic R had five epic tracks, versus Destiny's two in Sparrow races. It also had what may possibly be the greatest soundtrack in all of gaming. \n\n\n\nLivin' in Des-ti-ny\n\nYou know you have to survive\n\nLivin' in Des-ti-ny\n\nYou're got to keep the dream alive\n\nWith too many engrams green\n\nExotics pleaaaaaaaaaase","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-destiny-sparrow-racing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9002e0b6-07af-48df-9fe7-5d6c0d371138/sm/2013912-1450233709727-sparrow_racing_thumb.jpg","duration":1249,"publication_date":"2015-12-16T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-fact-check-8","changefreq":"weekly","video":[{"title":"2015:E49 - Fact Check #8","description":"Jack and Geoff play a fact checking game for the eighth time in this weeks Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-fact-check-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3cb833f-3097-474c-ad6d-dccfc9feebf7/sm/2013912-1450203495107-FFFC8Thumb.jpg","duration":245,"publication_date":"2015-12-15T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-full-house-ahwu-for-december-14-th-2015-295","changefreq":"weekly","video":[{"title":"2015:E49 - FullHaus - AHWU for December 14th, 2015 (#295)","description":"Geoff left the door to the office wide open and some scuzzy-looking guys (and one slightly-less-scuzzy-looking-gal) calling themselves Funhaus walked in. Those scuzzbags also left the door opened and Craig from ScrewAttack waltzed right on in, too. Craig was nice enough to close the door though, because he's a damn gentleman.\n\n\n\nVid of week: https://www.youtube.com/watchv=LR3sRiwM-sk || Community vid: https://www.youtube.com/watchv=sNLVKjTCiUQ","player_loc":"https://roosterteeth.com/embed/ahwu-2015-full-house-ahwu-for-december-14-th-2015-295","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bca69bc-d1cc-4383-8d83-7c2c6a8aadf8/sm/2013912-1450130767921-AHWU_thumb.jpg","duration":425,"publication_date":"2015-12-14T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-who-s-your-daddy-41","changefreq":"weekly","video":[{"title":"2015:E23 - Who's Your Daddy","description":"This video is sponsored by Turtle Beach: http://www.turtlebeach.com. Michael and Gavin can't stop being each other's babies. And each other's daddies. And each other's baby daddies.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-who-s-your-daddy-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f0d11a5-0aa4-44e1-9bd3-e29901b33ef7/sm/2013912-1450129323064-Play_Pals.jpg","duration":1357,"publication_date":"2015-12-14T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-rainbow-six-siege-terrorist-hunt","changefreq":"weekly","video":[{"title":"2015:E358 - Rainbow Six Siege - Terrorist Hunt","description":"Jack and Geoff are out, time for Ryan to lead the younger boys on a murdering spree!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-rainbow-six-siege-terrorist-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b15e0ad-fcf2-480b-b7e1-5abed2209cf8/sm/2013912-1450130444977-rainbowsth_thumb.jpg","duration":1558,"publication_date":"2015-12-14T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-math-is-h-a-r-d-presented-with-comment-11-week-of-december-4-th","changefreq":"weekly","video":[{"title":"2015:E79 - MATH IS HARD! - Presented with Comment #11 - Week of December 4th","description":"Competitors Geoff, Matt, Jack, Gavin, and Michael return to compete on the floor of comments once again. When will someone be the winner, and when will Jeremy remember how to count \n\nThe videos included in today's episode are:\n\n\n\nFallout 4 and Assassin's Creed Syndicate! - Fails of the Weak #271 http://achievementhunter.com/episode/fails-of-the-weak-2015-volume-271\n\nThings to do in Just Cause 3 - Helium Heads http://achievementhunter.com/episode/things-to-do-in-2015-just-cause-3-helium-heads\n\nHow to Edit a Let's Play - AH Behind the Scenes http://achievementhunter.com/episode/behind-the-scenes-2015-how-to-edit-a-let-s-play\n\nAH-dventures in New York City http://achievementhunter.com/episode/achievement-hunter-season-2-a-h-dventures-in-new-york-city\n\nFive Facts - Star Wars Battlefront http://achievementhunter.com/episode/five-facts-2015-star-wars-battlefront\n\nOld Man Ryan - AHWU for December 7th, 2015 (#294) http://achievementhunter.com/episode/ahwu-2015-294\n\nHunter Hunter - GO! #98 http://achievementhunter.com/episode/go-2015-hunter-hunter-98\n\nThings to do in Fallout 4 - Ghoul Power Armor http://achievementhunter.com/episode/things-to-do-in-2015-fallout-4-ghoul-power-armor\n\nLet's Play Minecraft - Episode 184 - Hit List X Part 3 http://achievementhunter.com/episode/lets-play-let-s-play-2-minecraft-episode-184-hit-list-x-part-3\n\nLet's Play - Far Cry Primal http://achievementhunter.com/episode/lets-play-let-s-play-2-far-cry-primal\n\nLet's Play - GTA V - Offense Defense 2 http://achievementhunter.com/episode/lets-play-let-s-play-2-gta-v-offense-defense-2\n\nLet's Play - Star Trek Part 5 http://achievementhunter.com/episode/lets-play-let-s-play-2-star-trek-part-5\n\nLet's Play - Family Feud Part 4 http://achievementhunter.com/episode/lets-play-let-s-play-2-family-feud-part-4\n\nLet's Play - Uncharted 4 Multiplayer Beta http://achievementhunter.com/episode/lets-play-let-s-play-2-uncharted-4-multiplayer-beta\n\nLet's Play Minecraft - Episode 185 - Fishing Rodeo And Jamboree IV http://achievementhunter.com/episode/lets-play-let-s-","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-math-is-h-a-r-d-presented-with-comment-11-week-of-december-4-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6606fd6d-b4bd-45ec-a41a-00f8617c3dd9/sm/2013912-1450110071657-Presented_With_Comment_11_Week_of_December_4th.jpg","duration":1230,"publication_date":"2015-12-14T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-running-back","changefreq":"weekly","video":[{"title":"2015:E357 - GTA V - Running Back","description":"Red rover, red rover, send that smart car right over... annnnd we're wedged.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-running-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d69d2e09-85ac-4861-b04f-bbc29cf418ef/sm/2013912-1449787508516-GTA_V_Running_Back_Thumbnail.jpg","duration":2074,"publication_date":"2015-12-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-if-your-pee-could-cure-cancer-2","changefreq":"weekly","video":[{"title":"2015:E2 - If Your Pee Could Cure Cancer - #2","description":"This episode originally aired December 11, 2015. The AH Crew sits down to talk about The Walking Dead, missing Xboxes and Cancer-curing urine and more on this week's Off Topic!","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-if-your-pee-could-cure-cancer-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d3534c2-4b2d-467f-9a8e-50dc37c283c6/sm/2013912-1449895276210-OFF02_-_THUMB.jpg","duration":7282,"publication_date":"2015-12-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-fallout-4-companion-guide","changefreq":"weekly","video":[{"title":"2015:E54 - Fallout 4 Companion Guide","description":"Watch this fucking video on companions in Fallout 4, please. (That sentence was written on the fly by a group of ten peopleTwo people.)","player_loc":"https://roosterteeth.com/embed/how-to-2015-fallout-4-companion-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53f71621-0b94-4ac8-93eb-86fdd93455ff/sm/2013912-1449862467933-CodsworthThumb.jpg","duration":147,"publication_date":"2015-12-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-star-wars-battlefront-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2015:E43 - Battlefront: Heroes Vs Villains - Achievement Hunter VS The World","description":"Geoff, Jack, Matt, Michael, Jeremy, and Gavin vs the planet Earth! Who will come out on top Who lives on who now Earth! Huh!! Say that again you stupid planet!!!","player_loc":"https://roosterteeth.com/embed/vs-2015-star-wars-battlefront-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b57c9aa-bc0f-43bf-9bc1-d7614deb5308/sm/2013912-1449869008922-ahvstw_bf_thumb.jpg","duration":1103,"publication_date":"2015-12-11T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-episode-131-2","changefreq":"weekly","video":[{"title":"2015:E42 - Episode 131: Lindsay vs. Jeremy","description":"It truly is how you use it.","player_loc":"https://roosterteeth.com/embed/vs-2015-episode-131-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4f862e6-dc80-4fef-9d7a-420ba18021b1/sm/2013912-1449785359110-versus_thumb.jpg","duration":491,"publication_date":"2015-12-10T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-273","changefreq":"weekly","video":[{"title":"2015:E50 - Volume 273","description":"Geoff losses it to head trauma and Jack does what he does in Fails of the Weak Volume 273. Features fails and glitches from Assassins Creed Syndicate, Fallout 4, Far Cry 4, and Just Cause 3.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-273","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc938767-f0f6-4584-bef7-dc880540588a/sm/2013912-1449679309214-Fails273-Big.jpg","duration":174,"publication_date":"2015-12-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-185-fishing-rodeo-and-jamboree-iv","changefreq":"weekly","video":[{"title":"2015:E356 - Minecraft - Episode 185 - Fishing Rodeo And Jamboree IV","description":"You'd imagine the Achievement Hunter crew would have figured this \"fishing\" thing out by this point.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-185-fishing-rodeo-and-jamboree-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96a4fbee-28b8-4fe3-bf25-1de5d3022c01/sm/2013912-1449706545756-minecraft_fishingjam_thumb_(1).jpg","duration":2283,"publication_date":"2015-12-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-uncharted-4-multiplayer-beta","changefreq":"weekly","video":[{"title":"2015:E355 - Uncharted 4 Multiplayer Beta","description":"Achievement Hunter finds out what it's like to fight other people for ancient treasure in the Uncharted 4 Multiplayer Beta. Most of the treasure probably gets broken in the process.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-uncharted-4-multiplayer-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f12015fa-fee7-4670-b7a1-fe2c13bd57af/sm/2013912-1449706428672-uncharted_mpbeta_thumb.jpg","duration":1417,"publication_date":"2015-12-10T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-fallout-4-ghoul-power-armor","changefreq":"weekly","video":[{"title":"2015:E74 - Fallout 4 - Ghoul Power Armor","description":"Matt and Geoff show off what they believe to be the best set of power armor in all of Fallout 4. Quality smell not gauronteed.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-fallout-4-ghoul-power-armor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2510f84-2f44-4886-9df1-bf43b5d9f377/sm/2013912-1449679158652-Ghoul_Power_Armor.jpg","duration":317,"publication_date":"2015-12-09T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-family-feud-part-4","changefreq":"weekly","video":[{"title":"2015:E354 - Family Feud Part 4","description":"Did you know: The name Family Feud originally had nothing to do with actual Feuding. The name was based on a compilation of short stories titled, \"The Family Feud: Keepin' Up With the Hashimoto Family.\" In it, Feudal Japan's favoirte celebrity family gets into all sorts of wacky antics while throwing away the family fortune one \"episode\" at a time. The book is like a novelisation of Keeping Up with the Japanese Kardashians. Yeah, it's pretty cool.\n\nDid you know (part 2): The current director of Family Feud is named Ken Fuchs. His last name is Fuchs. I bet Santa has a hoot with that. \"Ken Fuchs good. Nope, Ken Fuchs naughty. Oh yeah. Santa like when Ken Fuchs naughty.\"","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-family-feud-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd6910b7-3ab4-4b01-8aeb-fd2f2a7d2c6c/sm/2013912-1449606807763-familyfeud_part4_thumb.jpg","duration":1515,"publication_date":"2015-12-08T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-hunter-hunter-98","changefreq":"weekly","video":[{"title":"2015:E36 - Hunter Hunter - #98","description":"With skills ranging from ignorant to mediocre, the boys chase down Hunters in Halo 5!","player_loc":"https://roosterteeth.com/embed/go-2015-hunter-hunter-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8933d341-32f2-4afe-9453-13de39ac5074/sm/2013912-1449606513481-GO_98_Hunter_Thumbnail.jpg","duration":502,"publication_date":"2015-12-08T20:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-battlefront-40","changefreq":"weekly","video":[{"title":"2015:E22 - Star Wars: Battlefront","description":"Jeremy and Ryan: They're on a mission and they're wishin' someone could cure their spacey condition. Lookin' for love in Alderaan places, no fine droids, just ugly faces. From frustration, first inclination is to become a sith and leave the situation. But every dark jedi has a light of new hope, so don't hang yourself, with midi-chlorian rope!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-battlefront-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71511bd1-87cd-4876-90aa-e58e7162baef/sm/2013912-1449527725975-battlefront_thumb.jpg","duration":1436,"publication_date":"2015-12-08T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-294","changefreq":"weekly","video":[{"title":"2015:E48 - Old Man Ryan - AHWU for December 7th, 2015 (#294)","description":"It's Ryan's birthday! He got a big cake and blew out the candles, wishing to stay far away from AHWU this week. What do you know His wish came true! Instead, you get Jack, Geoff, and Trevor. Really, that just means your wish came true, community. And it's not even your birthday.\n\nOn second though, you may be reading this on your birthday, possibly potentially maybe. 4/1461 chance. If that's the case, happy birthday to you. We got you this really cool gift. It's absolutely nothing! Welcome to the cold harshness of reality. \n\nVid of week: https://www.youtube.com/watchv=Zch1lAZLW3o || Community vid: None this week. Maybe next week","player_loc":"https://roosterteeth.com/embed/ahwu-2015-294","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db3f94c9-ec82-4e3b-a003-ec2ffb9106d7/sm/2013912-1449528793325-AHWU_thumb.jpg","duration":258,"publication_date":"2015-12-07T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-trek-part-5","changefreq":"weekly","video":[{"title":"2015:E353 - Star Trek Part 5","description":"Ryan loses his ability to \"Down\" while Michael uses a controller to solve all of the world's problems.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-trek-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bdf776f-ec63-42e7-b1b1-543011ce8cca/sm/2013912-1449525250159-lp_startrek_part5_thumb.jpg","duration":1658,"publication_date":"2015-12-07T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-star-wars-battlefront","changefreq":"weekly","video":[{"title":"2015:E48 - Star Wars Battlefront","description":"Jack and Geoff take a look at Star Wars Battlefront in this weeks Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-star-wars-battlefront","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89b841dd-40ad-4550-98b7-f5f3edf82160/sm/2013912-1449266013024-FFBFRONYFF.jpg","duration":189,"publication_date":"2015-12-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-offense-defense-2","changefreq":"weekly","video":[{"title":"2015:E352 - GTA V - Offense Defense: The Wreckoning (#2)","description":"This week we're bumping and grinding, we're also playing GTA! Name of the game: Don't let Geoff win!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-offense-defense-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/169e2cbc-05bd-464f-85a8-7ca6ada4250f/sm/2013912-1449384027746-OFFDEF2_Thumb.jpg","duration":1624,"publication_date":"2015-12-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-still-no-shirt-off-topic-1","changefreq":"weekly","video":[{"title":"2015:E1 - Still No Shirt - #1","description":"In this premiere episode of Off Topic, the AH Crew sits down to talk about how Jeremy hasn't seen any movies, how to properly pronounce \"Risinger\" and how the logo for a certain youtube channel bears a striking resemblance to the symbol of a certain fascist regime. This episode originally aired December 4, 2015.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-still-no-shirt-off-topic-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4a8d1b3-2942-4986-abc9-0b33b5260dfb/sm/2013912-1449293468385-OFF01_-_THUMB.jpg","duration":7418,"publication_date":"2015-12-05T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-worlds-hardest-game-part-2","changefreq":"weekly","video":[{"title":"2015:E53 - Worlds Hardest Game Part 2","description":"In this video, Joelgurt and Adam bash their faces on the keyboard for an entire day to bring you 15 minutes of content. We hope yougurt enjoy!","player_loc":"https://roosterteeth.com/embed/how-to-2015-worlds-hardest-game-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d235723-63c7-46ca-afb7-bb1a2613bb2a/sm/2013912-1449267094143-HardestGameThumbnail.jpg","duration":956,"publication_date":"2015-12-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-far-cry-primal","changefreq":"weekly","video":[{"title":"2015:E351 - Far Cry Primal","description":"Thanks to Ubisoft for sponsoring this video and for inviting Geoff and Jack to take a FIRST LOOK at Far Cry Primal! Check out the full Far Cry Primal trailer here! - http://bit.ly/1Rqycjz || Far Cry Primal is ESRB Rated - M for Mature","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-far-cry-primal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/851698d6-322f-4261-90ec-1b14a44f1e5a/sm/2013912-1449260373032-preview_Thumb.jpg","duration":1057,"publication_date":"2015-12-04T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-a-h-dventures-in-new-york-city","changefreq":"weekly","video":[{"title":"2015:E78 - AH-dventures in New York City","description":"The Berry Bros. are back again to storm the big apple and devour as much za as possible, brah.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-a-h-dventures-in-new-york-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/377d6e4c-9ee7-4f42-a5ae-8c5306c83df5/sm/2013912-1449255961665-ahdv_innyc_thumb.jpg","duration":253,"publication_date":"2015-12-04T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-how-to-edit-a-let-s-play","changefreq":"weekly","video":[{"title":"2015:E9 - How to Edit a Let's Play","description":"Trevor here with a \"tutorial\" on how we edit our Let's Play videos, including a few small things we do to help increase our quality.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-how-to-edit-a-let-s-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f25ab9c-dfab-454f-a843-c61e673e63af/sm/2013912-1449183617025-AH_Edit_Thumbnail.jpg","duration":2164,"publication_date":"2015-12-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-just-cause-3-helium-heads","changefreq":"weekly","video":[{"title":"2015:E73 - Just Cause 3 - Helium Heads","description":"Jeremy and Jack are getting high... on helium... in their heads...\n\n...cars","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-just-cause-3-helium-heads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a4115d2-4b41-425b-9f80-fd1f409e6af8/sm/2013912-1449186512326-TTD_HeliumHeads.jpg","duration":241,"publication_date":"2015-12-03T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-272","changefreq":"weekly","video":[{"title":"2015:E49 - Volume 272","description":"In Fails of the Weak Volume 272 Jack and Geoff chat their way through glitches and fails from Grand Theft Auto V, Halo 5 Guardians, Tomb Raider, and Trials Fusion.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-272","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/723ad854-6666-4db5-8249-6659b0afab7b/sm/2013912-1449178427460-Fails272-Big.jpg","duration":173,"publication_date":"2015-12-03T21:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-just-cause-3-doge-mode-easter-egg","changefreq":"weekly","video":[{"title":"2015:E12 - Just Cause 3 - Doge Mode Easter Egg","description":"much easter egg\n\nso secrets\n\nvery just cause\n\nwow","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-just-cause-3-doge-mode-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ae8c730-2b06-47a4-b84e-e8c0cd96aa84/sm/2013912-1449172634282-DogeModeEasterEgg.jpg","duration":188,"publication_date":"2015-12-03T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-184-hit-list-x-part-3","changefreq":"weekly","video":[{"title":"2015:E350 - Minecraft - Episode 184 - Hit List X Part 3","description":"It's all for one and one for all in the final part Hitlist X! Will the quest for Silverfish be fruitful Can Geoff kill an Enderman Where have all the Slime gone Some of these questions and far less will be answered in the thrilling() conclusion!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-184-hit-list-x-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1e33dfc-4cb4-480d-a8eb-8dbf42cf64b6/sm/2013912-1449087456776-minecraft_hitlist3_thumb.jpg","duration":2654,"publication_date":"2015-12-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-7","changefreq":"weekly","video":[{"title":"2015:E11 - Just Cause 3 - Teleportation Easter Egg","description":"Jeremy and Geoff show you how to teleport in Just Cause 3. Screw fast travel!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f3b5141-0649-4a2b-bd74-0fb3dcd070c9/sm/2013912-1449099263965-TeleportationEasterEgg.jpg","duration":190,"publication_date":"2015-12-02T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-8","changefreq":"weekly","video":[{"title":"2015:E10 - Just Cause 3 - Thor's Hammer Easter Egg","description":"Jeremy and Geoff show you where to find Mjlnir, the sacred hammer of Thor! Are they worthy enough to wield it! \n\nNo...","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2d580aa-5b9b-4386-a198-9d5dacc1d212/sm/2013912-1449088545918-ThorsHammerEasterEgg.jpg","duration":140,"publication_date":"2015-12-02T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-cloudberry-kingdom-with-pwnee-studios","changefreq":"weekly","video":[{"title":"2015:E77 - Cloudberry Kingdom with PWNEE Studios","description":"Jack, Michael, Gavin, and Ryan chill with the devs from PWNEE Studios and play some Cloudberry Kingdom. With Cloudberry Kingdom 2 as an eventual eventuality, how about a wishlist for all the things we want to see in the next game\n\n-Combination face option of Jack's Beard of Power and Geoff's Dick Dastardly mustache.\n\n-At least 13 Let's Plays worth of content. \n\n-Cloudberry Kingdom X Burger King promotion. Play as the King in Cloudberry Kingdom. Also, Tendercrisp Bacon Cheddar Ranch costume. \n\n-No Cloudberry Kingdom X King Games promotion. \n\n-Cloudberry Taxonomy pack with Cloudberry Phylum, Cloudberry Class, Cloudberry Order, Cloudberry Family, Cloudberry Genus, and Cloudberry Species.\n\n-Cloudberry Family, a spin-off cartoon show following the Berry Bros, who aren't the AH crew but rather an obvious rip-off of the Mario Bros. Maybe it's Barry Berry and Luigi Berry Hell yes! This is a great idea. Hear that, PWNEE Boom, done. Million dollars on the table.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-cloudberry-kingdom-with-pwnee-studios","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1afbf73-0f5b-4328-b108-d06caba7b903/sm/2013912-1449085526118-cloudberry_thumb.jpg","duration":695,"publication_date":"2015-12-02T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-wars-battlefront-hero-hunt","changefreq":"weekly","video":[{"title":"2015:E349 - Star Wars Battlefront - Hero Hunt","description":"Geoff, Jeremy, Ryan, and Michael take on the strongest of the Light and Dark sides in Star Wars Battlefront's Hero Hunt mode!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-wars-battlefront-hero-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75abe67c-a2c5-4aca-b607-7f3c13a7e9bc/sm/2013912-1449000596850-starwars_herohunt_thumb.jpg","duration":1899,"publication_date":"2015-12-02T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-21","changefreq":"weekly","video":[{"title":"2015:E348 - Let's Watch - Party Hard Part 3","description":"The party is back on! Come dance the night away with part 3 of Party Hard.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01621946-1a67-4808-b320-a549b98997a8/sm/2013912-1449013689792-LP_partyhard3_thumb.jpg","duration":1836,"publication_date":"2015-12-01T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-battlefront-hunt-michael-vs-jeremy-safety-ain-t-the-point","changefreq":"weekly","video":[{"title":"2015:E35 - Battlefront HUNT - Michael vs. Jeremy (Safety Ain't the Point? of This Joyride)","description":"Watch out for that tree, you must.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-battlefront-hunt-michael-vs-jeremy-safety-ain-t-the-point","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70dd73a5-7ccd-4f3b-913c-5173631b916a/sm/2013912-1449011981248-HUNT_thumb.jpg","duration":343,"publication_date":"2015-12-01T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-assasin-s-creed-syndicate-london-lebron","changefreq":"weekly","video":[{"title":"2015:E72 - Assassin's Creed Syndicate - London Lebron","description":"Leave it all on the court, including the blood!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-assasin-s-creed-syndicate-london-lebron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ca9d87c-19e5-43b8-93e6-c1c8ad79b08e/sm/2013912-1448998943320-london_lebron_thumb.jpg","duration":253,"publication_date":"2015-12-01T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-293","changefreq":"weekly","video":[{"title":"2015:E47 - The Other Hobo - AHWU for November 30th, 2015 (#293)","description":"Homeless Geoff is out sick, probably sick of giving so much thanks over the holiday weekend. In his place, from far-off lands, comes the other homeless Achievement Hunter, riding up in his glorious, rusty boxcar. He's relatively bald and relatively ready to read this week's game list - it's Matt!\n\nVid of week: https://www.youtube.com/watchv=VLmY8IN6Ysg \n\nCommunity vid: Still nothing! Or everything You're all winners in our book, AH Community. https://www.youtube.com/AHCommunityVids","player_loc":"https://roosterteeth.com/embed/ahwu-2015-293","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3201d362-a500-45ab-a800-58e67acdbe6c/sm/2013912-1448928002761-ahwu_thumb.jpg","duration":368,"publication_date":"2015-11-30T23:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-earwax","changefreq":"weekly","video":[{"title":"2015:E347 - Earwax","description":"Now that they've played the smash hit, Bidiots, the crew checks out a deep cut from the Jackbox Party Pack 2, Earwax or: You'll Probably Win by Making Your Answer Sound the Most Masturbatey.\n\nSounds like a fun time, doesn't it I hear it's a pretty good video. Are these ear puns drumming up excitement for you to watch \n\nI'll see myself out.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-earwax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ffc6c04-6283-4cfe-ad09-15ae9daff124/sm/2013912-1448494656951-earwax_lp.jpg","duration":853,"publication_date":"2015-11-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-radroach-exterminator-97","changefreq":"weekly","video":[{"title":"2015:E35 - Radroach Exterminator - #97","description":"AH would like to officially declare .declare cockroaches an endangered species. Their numbers are dwindling. Please, donate if you can.","player_loc":"https://roosterteeth.com/embed/go-2015-radroach-exterminator-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3eb845c-ebc6-4d90-a483-7be0abcdecab/sm/2013912-1448493753924-go_radro_thumb.jpg","duration":683,"publication_date":"2015-11-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-slasher-2","changefreq":"weekly","video":[{"title":"2015:E346 - GTA V - Slasher 2","description":"This video is sponsored by Turtle Beach: http://www.turtlebeach.com/\n\nWe're back in the GTA 5 Slasher gametype, and this time we're breaking out the machetes! It's darker, scarier, and first-person...er","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-slasher-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad6c5f2e-e052-47f6-a243-c260277a3611/sm/2013912-1448496106987-LP_GTA_V_Slasher_2_Thumbnail.jpg","duration":2180,"publication_date":"2015-11-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-rockband","changefreq":"weekly","video":[{"title":"2015:E52 - Rockband","description":"So Joel and Adam were all like, ALEC! EDIT THIS VIDEO! Then they locked me in a room and left for Thanksgiving break. While I wait for everyone to get back to work from the long weekend, check out Joel and Adams tribute to Freddie Mercury and themselves. If anyone has left over turkey can you send me some All Ive had is a half empty can of soda thats been sitting on the table for awhile. It wasnt even fizzy.","player_loc":"https://roosterteeth.com/embed/how-to-2015-rockband","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e32f272-ecc7-49d2-86c0-3d987d2da87e/sm/2013912-1448600158153-HowTo_RockBand.jpg","duration":273,"publication_date":"2015-11-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-halo-5-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2015:E41 - Halo 5 - Achievement Hunter VS the World","description":"Geoff, Jack, Ryan, and Jeremy challenge the world to an everything-on-the-line cage match in Halo 5. Watch them dominate the competition, completely wipe the floor with their opponents, Yugioh-stlye obliterate that shit.\n\nI mean, why even bother watching past the first match It's just more of the same. Headshots! HEADSHOTS! 1080 Snowboarding no-scopes for decades! Acting like Paramore and crushcrushcrushing every team they face! Sorry world. There's just no winning this one.","player_loc":"https://roosterteeth.com/embed/vs-2015-halo-5-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a498870-673b-46f1-b312-9061e1ea12f1/sm/2013912-1448498010253-halo_ahvstw_thumb.jpg","duration":1625,"publication_date":"2015-11-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-thanksgiving-special","changefreq":"weekly","video":[{"title":"2015:E76 - Thanksgiving Special","description":"Geoff challenges Jack, Jeremy, Michael, and Gavin to quaff til they drop and mixes in a bit of American History trivia while they chow down!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-thanksgiving-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/470901c5-18d0-4fe4-aec3-f4530c5bdec8/sm/2013912-1448485317612-thanksgiving_special_thumb.jpg","duration":306,"publication_date":"2015-11-26T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-271","changefreq":"weekly","video":[{"title":"2015:E48 - Volume 271","description":"In Fails of the Weak Volume 271 Geoff laughs a good amount while Jack explains fails and glitches from Assassins Creed Syndicate and Fallout 4.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-271","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc16c69f-8bd0-432c-9fc5-514be605b31a/sm/2013912-1448469843805-Fails271-Big.jpg","duration":219,"publication_date":"2015-11-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-183-black-friday","changefreq":"weekly","video":[{"title":"2015:E345 - Minecraft - Episode 183 - Black Friday","description":"Welcome to Achieve-Mart! Your ONE STOP SHOP on HOLIDAY SALES! Can the Achievement Hunter crew survive the deadly aisle in order to secure presents or will they be trampled by defeat!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-183-black-friday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2655929a-6bec-4924-9fa0-a22c14a24a9a/sm/2013912-1448473312689-blackfriday_thumb.jpg","duration":1571,"publication_date":"2015-11-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-rainbow-six-siege-day","changefreq":"weekly","video":[{"title":"2015:E75 - Siege Day: AH vs FH Rematch","description":"Thanks to Ubisoft for sponsoring this video. Rainbow Six Siege comes out on December 1st. Check out the archive of the full stream here: https://youtu.be/6PT2Wao_gqI\n\nThis is an archived video of Siege Day from Monday, November 23, 2015 with Achievement Hunter vs. Funhaus in a Rainbow Six Siege rematch full of interviews from both teams and game play.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-rainbow-six-siege-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab95d268-fd5c-4434-b3c8-9dfc459d4014/sm/2013912-1448499702549-ahvsfh_thumb.jpg","duration":291,"publication_date":"2015-11-25T23:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-5","changefreq":"weekly","video":[{"title":"2015:E74 - Grab Bag #5","description":"What do you get when you mix wrestling, shaved men and a day's worth of anuses Grab Bag, of course! Enjoy some hidden gems from WWE 2k16, Minecraft Episode 181 and Halo 5 CoOp Part 9. || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5fc0035-c2af-40d8-a885-86488dc06412/sm/2013912-1448492281094-grabbag_thumb.jpg","duration":304,"publication_date":"2015-11-25T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-trek-part-4","changefreq":"weekly","video":[{"title":"2015:E344 - Star Trek Part 4","description":"Long ago in an office far far away, Spock Kirk and Kirk Spock were still in the middle of trekking through the stars, discovering alien planets, and making love to the horrible reptilian monsters that inhabit them!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-trek-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/308cab4f-1dfe-4c44-85d0-b4eed6530658/sm/2013912-1448406330741-StarTrek-Part4.jpg","duration":2318,"publication_date":"2015-11-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-wars-battlefront-part-2","changefreq":"weekly","video":[{"title":"2015:E343 - Star Wars Battlefront - Part 2","description":"Achievement Hunter takes another trip to a galaxy far far away in Star Wars Battlefront. Darth Vader was a bad parent, remember that","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-wars-battlefront-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6452e2f5-c757-4929-8e67-4542688cb48d/sm/2013912-1448407302846-battlefront_part2.jpg","duration":1984,"publication_date":"2015-11-24T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-g-o-96","changefreq":"weekly","video":[{"title":"2015:E34 - Assassination - GO! #96","description":"AH stalks and attacks strangers. Also, they play Halo.","player_loc":"https://roosterteeth.com/embed/go-2015-g-o-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9778d230-b4b3-4080-9ab8-edf4c9966016/sm/2013912-1448405235824-go_thumb.jpg","duration":422,"publication_date":"2015-11-24T22:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-from-downtown-this-place-ahwu-for-november-23-rd-2015-292","changefreq":"weekly","video":[{"title":"2015:E46 - From Downtown This Place - AHWU for November 23rd, 2015 (#292)","description":"The crew is out in LA this week, preparing to take down Suckhaus Dumbhaus in Rainbow 6: Siege. Now that Jack's pants are dry and he's feeling fine, it's AHWU time. That's like a triple slant rhyme. Eat a dick, Emily Dickinson.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-from-downtown-this-place-ahwu-for-november-23-rd-2015-292","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f292153-4ff1-455d-a9e4-6bc3b03b9d3c/sm/2013912-1448325828463-AHWU_292_ThumbFinal.png","duration":293,"publication_date":"2015-11-24T00:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-trivial-pursuit-part-5","changefreq":"weekly","video":[{"title":"2015:E342 - Trivial Pursuit Part 5","description":"Geoff is back to defend his title as Mr. Smart Guy McTriviamaster in another rousing game of Trivial Pursuit. Will he continue his reign as Trivia Champ, or will he be walking out of this one a big stupid loser","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-trivial-pursuit-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0f75a7-dbdd-4d22-ac37-0e683df0f4ad/sm/2013912-1448319013566-tp_thumb.jpg","duration":1920,"publication_date":"2015-11-23T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-halo-5-guardians","changefreq":"weekly","video":[{"title":"2015:E47 - Halo 5: Guardians","description":"*Note: This episode was edited to prevent spoilers*\n\nJack and Geoff discuss Halo 5: Guardians in this weeks Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-halo-5-guardians","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b117d4fe-3c7b-40b2-93fd-601c830a846e/sm/2013912-1448304522726-FFH5.jpg","duration":245,"publication_date":"2015-11-23T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-more-rainbow-six-siege-beta-terrorist-hunt","changefreq":"weekly","video":[{"title":"2015:E73 - Grab Bag - MORE Rainbow Six: Siege BETA - Terrorist Hunt","description":"The AH crew were at this for nearly 4 hours, you thought there wouldn't be more failure YOU FOOLS! || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-more-rainbow-six-siege-beta-terrorist-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51868c9a-5658-41d0-965e-28239a77e25c/sm/2013912-1448059562980-grabbag_thumb.jpg","duration":269,"publication_date":"2015-11-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-offense-defense","changefreq":"weekly","video":[{"title":"2015:E341 - GTA V - Offense Defense (#1)","description":"3 teams, a chaser, a blocker, and a lot of yelling. The guys try out the Offense Defense gametype in GTA V.\n\n**Holiday Sale 15% off entire store 11/23 - 11/30 http://bit.ly/RT_Store","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-offense-defense","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40369858-7390-4a8c-b9d5-4c94b7c8504b/sm/2013912-1448062629662-offdef_thumb.jpg","duration":1528,"publication_date":"2015-11-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-don-t-do-this-off-topic-0-999","changefreq":"weekly","video":[{"title":"PE:E4 - Don't Do This - #0.999","description":"The AH Crew send off the final test episode of Off-Topic by getting all nostalgic and reminiscing about all of the things they set on fire as kids, and about their early days with the company.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-don-t-do-this-off-topic-0-999","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e755d00d-df96-49fe-921d-e92a238c78ab/sm/2013912-1448058622132-OT04_-_THUMB.jpg","duration":5875,"publication_date":"2015-11-21T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-how-to-keep-talking-and-nobody-explodes","changefreq":"weekly","video":[{"title":"2015:E50 - Keep Talking and Nobody Explodes","description":"Joel and Adam left for the day and forgot to write a description for this video so I have to write it. Hi, Im Alec by the way. Anyway theres this video. Adam does some light reading while Joel tries to remember how to open his briefcase. The locking mechanism is slightly complicated. Its an in depth look into what makes a man tick. Man, I just ate a buffet for lunch and I do not feel well.","player_loc":"https://roosterteeth.com/embed/how-to-2015-how-to-keep-talking-and-nobody-explodes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63194d1b-2f1b-43ad-b348-3727dbb4523b/sm/2013912-1448062075729-HowTo_Bomb_thumbnail.jpg","duration":2130,"publication_date":"2015-11-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shenanigans-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Fake Versus","description":"Big J and Lil' J fly mouth first into a very special VS.","player_loc":"https://roosterteeth.com/embed/shenanigans-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c02636b9-8a89-470a-9043-60638c1f371c/sm/1601067-1508272685811-shngns.jpg","duration":691,"publication_date":"2015-11-21T04:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-quiet-time-and-zipper-achievement-guide-rise-of-the-tomb-raider","changefreq":"weekly","video":[{"title":"2015:E25 - Rise of the Tomb Raider - Quiet Time and Zipper Achievement Guide","description":"Matt and Geoff show how to grab the Quiet Time and Zipper achievements in Rise of the Tomb Raider.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-quiet-time-and-zipper-achievement-guide-rise-of-the-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a451e99-3f9c-448c-a350-6e382411d68d/sm/2013912-1448062475566-Quiet_time_Thumb.jpg","duration":145,"publication_date":"2015-11-20T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-for-my-next-trick-and-no-guts-no-glory-achievement-guide-rise-of-the-tomb-raider","changefreq":"weekly","video":[{"title":"2015:E24 - Rise of The Tomb Raider - For My Next Trick and No Guts, No Glory Achievement Guide","description":"Matt and Geoff show you how to grab two achievements in Rise of The Tomb Raider.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-for-my-next-trick-and-no-guts-no-glory-achievement-guide-rise-of-the-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bccbd287-084c-4655-9b3e-9ba71178de75/sm/2013912-1448060927825-For_my_next_trick_Thumb.jpg","duration":157,"publication_date":"2015-11-20T23:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-gta-v-kamikaze-with-funhaus","changefreq":"weekly","video":[{"title":"2015:E71 - GTA V - Kamikaze with Funhaus","description":"AH and FH attempt to destroy each other. As they do.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-gta-v-kamikaze-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589013d7-3ec8-476d-b5b6-a3543d437b01/sm/2013912-1447973933831-kamikaze_thumb.jpg","duration":720,"publication_date":"2015-11-19T22:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-181-hit-list-x-part-2","changefreq":"weekly","video":[{"title":"2015:E340 - Minecraft - Episode 182 - Hit List X Part 2","description":"Ryan leads Geoff and Michael on a secret trip, Jack and Jeremy go bat hunting, and Gavin...well Gavin does whatever it is Gavin does.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-181-hit-list-x-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cee21988-68bc-4f8f-bea2-18c810d49940/sm/2013912-1447960989981-minecraft_hitman_X2_thumb.jpg","duration":2099,"publication_date":"2015-11-19T19:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-wars-battlefront-2","changefreq":"weekly","video":[{"title":"2015:E339 - Star Wars: Battlefront","description":"Thanks to Turtle Beach for sponsoring this video! Armed with their Star Wars Battlefront Sandtrooper Gaming Headsets, the Achievement Hunter crew fight a war in the stars! http://www.bestbuy.com/site/turtle-beach-star-wars...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-wars-battlefront-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd85aaff-531b-43cd-b4cc-4316fe2a02af/sm/2013912-1447886384917-battlefront_thumb.jpg","duration":1866,"publication_date":"2015-11-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-270","changefreq":"weekly","video":[{"title":"2015:E47 - Volume 270","description":"In Fails of the Weak Volume 270, Jack and Geoff revisit a classic and are pleasantly surprised by something new. Clips are fails and glitches from Fallout 4 and Halo 5.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-270","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9fb1ced-2b17-4165-915a-54b68b42446f/sm/2013912-1447892068467-Fails270-Big.jpg","duration":173,"publication_date":"2015-11-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-let-s-build-in-minecraft-blocking-list","changefreq":"weekly","video":[{"title":"2015:E72 - Let's Build in Minecraft - Blocking List","description":"Did you really think that other Rooster Teeth show would keep Geoff and Gavin from proposing really awful things to do in exchange for lots of money They're staying legally distinct with the hit new game, \"Five Hundred Thousand Dollars, But.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-let-s-build-in-minecraft-blocking-list","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c21da93-910b-4b88-be4d-fb754f13f4dd/sm/2013912-1447878033612-letsbuild_thumb.jpg","duration":1339,"publication_date":"2015-11-18T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-drawful-with-funhaus","changefreq":"weekly","video":[{"title":"2015:E338 - Drawful with Funhaus","description":"Vincent Van James, Joel-Michel Basquiat, Leonardo da Lawrence, Michael-angelo, Salvador Jeremy, Frida Gavino, Raphael Ryan, Adam Picassovic, Banksy Bruce (barely), and Geoff show off their artistic mastery in Drawful. \n\nIt's a real shame Jack didn't participate. He could have been Jack-son Pollock.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-drawful-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b78aa18-40b0-4952-aeaa-2167302caf94/sm/2013912-1447799522085-drawful_Thumb.jpg","duration":1973,"publication_date":"2015-11-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-the-crew-wild-run-edition","changefreq":"weekly","video":[{"title":"2015:E49 - The Crew: Wild Run Edition","description":"Thanks to Ubisoft for sponsoring this video! Joel and Adam have a competition to see who is the ultimate driver. The answer here is obvious. Click here to see the games trailer! http://bit.ly/1jEP4Wn","player_loc":"https://roosterteeth.com/embed/how-to-2015-the-crew-wild-run-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65934e54-759a-486f-8899-2f483493571e/sm/2013912-1447442316895-CrewThumb.jpg","duration":1194,"publication_date":"2015-11-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-20","changefreq":"weekly","video":[{"title":"2015:E337 - Let's Watch - Rise of the Tomb Raider","description":"Ryan becomes Lara Croft while Jack, Geoff, and Michael make fun of his inability to stay alive!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f66fb23-5a97-4676-8d2d-1b4175ae05c2/sm/2013912-1447777805349-lw_tr.jpg","duration":2979,"publication_date":"2015-11-17T16:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-assassin-s-creed-i-v-black-flag","changefreq":"weekly","video":[{"title":"2015:E46 - Assassin's Creed IV: Black Flag","description":"Jack and Geoff team up once again to bring you Five Facts, this time in Assassins Creed IV: Black Flag!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-assassin-s-creed-i-v-black-flag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c463ee0f-34b2-46ea-9097-89aaa2e0c0ab/sm/2013912-1447724059283-FFBFT.jpg","duration":191,"publication_date":"2015-11-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-madden-16-with-dan-campbell","changefreq":"weekly","video":[{"title":"2015:E336 - Madden 16 with Dan Campbell of The Wonder Years","description":"The AH Crew team up with Dan Campbell (their new bff) from the band The Wonder Years!\n\nNo Closer To Heaven: smarturl.it/NoCloserToHeaven \n\nThe Wonder Years on Facebook: https://www.facebook.com/thewonderyearsband/fref=... \n\nThe Wonder Years on Twitter: https://twitter.com/twypoppunk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-madden-16-with-dan-campbell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c7de687-14cc-46b6-8edf-60a6c32bd227/sm/2013912-1447716339583-madden_thumb.jpg","duration":3247,"publication_date":"2015-11-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-pumped-bmx-hunt-geoff-vs-jack","changefreq":"weekly","video":[{"title":"2015:E34 - Pumped: BMX HUNT - Geoff vs. Jack","description":"Geoff and Jack get X-TREME this week in HUNT","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-pumped-bmx-hunt-geoff-vs-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9ada535-ead2-4fcb-af68-afcbf2f5d0ff/sm/2013912-1447718607179-hunt_thumb.jpg","duration":309,"publication_date":"2015-11-17T02:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-291","changefreq":"weekly","video":[{"title":"2015:E45 - Squeaky Pages - AHWU for November 16th, 2015 (#291)","description":"Did you know that Jack's AHWU book is super sequaky Jack didn't know either. Now that it's fixed, there's fronts to be battled and stars to be warred against! \n\nVid of week https://www.youtube.com/watchv=i748sCYqqOY \n\nCommunity vid: https://www.youtube.com/watchv=jm4k9BZ3bBw","player_loc":"https://roosterteeth.com/embed/ahwu-2015-291","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b2d3faf-d760-412a-932e-98a186709106/sm/2013912-1447714323175-AHWU_thumb.jpg","duration":338,"publication_date":"2015-11-16T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-fallout-4-benevolent-leader-guide","changefreq":"weekly","video":[{"title":"2015:E23 - Fallout 4 - Benevolent Leader Guide","description":"Jeremy shows you how to reach 100% happiness in a large settlement. It's a tough grind, but here's the way to do it.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-fallout-4-benevolent-leader-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79e5e1c0-de5c-4fa0-8cb0-f4bc749fcfbb/sm/2013912-1447710487732-BenevolentLeaderThumb.jpg","duration":417,"publication_date":"2015-11-16T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-u-n-c-a-n-c-e-l-l-e-d-presented-with-comment-10-week-of-november-4-th","changefreq":"weekly","video":[{"title":"2015:E71 - UN-CANCELLED! - Presented with Comment #10 - Week of November 4th","description":"Competitors Geoff, Ryan, Matt, Lindsay, and Matt are finally back with the tenth episode of Presented With Comment. Who spends way too much time in the comment section \n\nThe videos included in today's episode are:\n\n\n\nThings to do in Assassin's Creed Syndicate - Frogger http://achievementhunter.com/episode/things-to-do-in-2015-assassin-s-creed-syndicate-frogger\n\nSploosh, Splat and BMXXX in GTAV - Grab Bag #4 http://achievementhunter.com/episode/achievement-hunter-season-2-sploosh-splat-and-bmxxx-in-gtav-grab-bag-4\n\nLivestream Highlights - Destiny: Court of Oryx http://achievementhunter.com/episode/achievement-hunter-season-2-livestream-highlights-destiny-court-of-oryx\n\nHow To: Resident Evil http://achievementhunter.com/episode/how-to-2015-resident-evil\n\nGrab Bag - Rainbow Six: Siege BETA - Terrorist Hunt http://achievementhunter.com/episode/achievement-hunter-season-2-grab-bag-rainbow-six-siege-beta-terrorist-hunt\n\nThe Lost Tapes http://achievementhunter.com/episode/achievement-hunter-season-2-the-lost-tapes\n\nBeardless Jack! - AHWU for November 9th, 2015 (#290) http://achievementhunter.com/episode/ahwu-2015-beardless-jack-ahwu-for-november-9-th-2015-290\n\nLet's Play: Halo 5: Guardians - Co-op Part 8 http://achievementhunter.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-8\n\nLet's Play Cloudberry Kingdom Part 12 http://achievementhunter.com/episode/lets-play-let-s-play-2-cloudberry-kingdom-part-12\n\nLet's Play Minecraft Episode 180 - There is no Learning Curve [Part 3] http://achievementhunter.com/episode/lets-play-let-s-play-2-minecraft-episode-180-there-is-no-learning-curve-part-3\n\nLet's Play - Black Ops 3: Zombies - Shadows of Evil http://achievementhunter.com/episode/lets-play-let-s-play-2-black-ops-3-zombies-shadows-of-evil\n\nLet's Play: Halo 5: Guardians - Co-op Part 9 http://achievementhunter.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-9\n\nLet's Play: Halo 5: Guardians - Co-op Part 10 http://achievementhunter.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-10\n\nLe","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-u-n-c-a-n-c-e-l-l-e-d-presented-with-comment-10-week-of-november-4-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ba9ed34-3f26-4eba-8c23-88a9190eff07/sm/2013912-1447456822110-Presented_With_Comment_10_Week_of_November_4th.jpg","duration":752,"publication_date":"2015-11-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-lowriders","changefreq":"weekly","video":[{"title":"2015:E335 - GTA V - Lowriders","description":"The boys ride low and take it easy in their new Lowriders. Featuring about 15,000 randoms from online!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-lowriders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59ebce9a-ac99-4998-9a84-0ffe5ae555d7/sm/2013912-1447529355427-gtavthumb.jpg","duration":1904,"publication_date":"2015-11-15T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-27","changefreq":"weekly","video":[{"title":"S1:E471 - The Finalists for the SAGY for the Worst Mobile Game of 2012 are...","description":"One of the new categories this year, with so many mobile games hitting the market there were plenty of choices, but these are the finalists for the worst mobile game of 2012. To vote for which game should take home the SAGY, send an email to 2012SAGY@Gmail.com with the category and your vote in the subject! You have until December 17th to help decide who gets this SAGY!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b2aa7d3-8fd8-4794-b546-f124a6640071/sm/video_thumbnail_5419906.jpg","duration":68,"publication_date":"2012-12-12T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-32","changefreq":"weekly","video":[{"title":"S1:E470 - The Finalists for the SAGY for the Worst Handheld Game of 2012 are....","description":"Here are the finalists for the 2012 SAGY for Worst Handheld! To help decide who takes home the SAGY, send an email to 2012SAGY@Gmail.com with the category and your vote in the subject line! You have until December 17th to make your voice heard and give someone a SAGY!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51587ca1-34ca-4939-8085-38d336b56263/sm/video_thumbnail_5418546.jpg","duration":60,"publication_date":"2012-12-12T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121212-diablo-iii-on-consoles-free-halo-4-dlc-and-segas-silly-sue","changefreq":"weekly","video":[{"title":"S1:E326 - Hard News 12/12/12 - Diablo III On Consoles?, Free Halo 4 DLC, and Sega's Silly Sue","description":"Blizzard teases that Diablo 3 is running on consoles right now - http://www.screwattack.com/news/blizzard-teases-diablo-3-running-consoles-right-now\r\n[Update] Sega has sued Level-5 to stop sales of Inazuma Eleven for patent infringement - http://www.screwattack.com/news/update-sega-has-sued-level-5-stop-sales-inazuma-eleven-patent-infringment\r\nMicrosoft spins Halo 4 Crimson Map Pack mix-up as a “thank-you” to customers - http://www.screwattack.com/news/microsoft-spins-halo-4-crimson-map-pack-mix-%E2%80%9Cthank-you%E2%80%9D-customers","player_loc":"https://roosterteeth.com/embed/hard-news-121212-diablo-iii-on-consoles-free-halo-4-dlc-and-segas-silly-sue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/361a7e9b-5e06-4331-a6f7-06d3c8dabb93/sm/video_thumbnail_5401976.png","duration":150,"publication_date":"2012-12-12T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-guardians-of-middle-earth","changefreq":"weekly","video":[{"title":"S1:E24 - Out of the Box - Guardians of Middle Earth","description":"This time on Out of the Box, we're checking out the new Lord of the Rings game, Guardians of Middle Earth! Is it a cheap cash-in or actually a good game? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-guardians-of-middle-earth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cdbda7f-8132-4c65-af02-bfbd93923345/sm/video_thumbnail_5388801.jpg","duration":4808,"publication_date":"2012-12-12T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-the-flintstones-genesis","changefreq":"weekly","video":[{"title":"S1:E385 - VGV - The Flintstones (Genesis)","description":"Nick seeks out the legendary ending of The Flintstones but fails to have a yabba dabba doo time. ","player_loc":"https://roosterteeth.com/embed/vgv-the-flintstones-genesis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03588d2e-ea1b-49fb-85e0-48059a6287c1/sm/video_thumbnail_5390971.gif","duration":173,"publication_date":"2012-12-12T09:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-31","changefreq":"weekly","video":[{"title":"S1:E469 - The Finalists for the SAGY for the Worst Wii Game of 2012 are....","description":"In it's final year of participation, one of these three games will take home the last SAGY given for the worst game on the Nintendo Wii. Who actually gets the SAGY? That's up to the g1s! To vote, send an email to 2012SAGY@Gmail.com with the category and your vote in the subject line! You have until December 17th to do so!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9f9bc02-59e4-4161-ab3d-46c03e3fcfa5/sm/video_thumbnail_5355456.jpg","duration":55,"publication_date":"2012-12-11T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-121212","changefreq":"weekly","video":[{"title":"S1:E468 - SideScrollers Extended 12/12/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-121212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e946dc7-cee0-432f-9f20-9e5c6c37543a/sm/video_thumbnail_5328991.jpg","duration":537,"publication_date":"2012-12-11T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"the-baby-swap\"","changefreq":"weekly","video":[{"title":"S1:E94 - SideScrollers - \"The Baby Swap\"","description":"Get the Audio Version here - http://bit.ly/T4JRFj\r\nSideScrollers Extended can be watched here - http://bit.ly/YWZLIb\r\nGet the AVGN Volume 6 - http://bit.ly/bI1yjF\r\n\r\n\tMario Troll-Off: Round 2! - http://bit.ly/URP7yi\r\n\tBIT Parts - http://bit.ly/VxZfhK\r\n\tThe 2012 SAGYs - http://bit.ly/Vu6mEq\r\n\tDEATH BATTLE! Behind the Scenes - How fast is Goku? - http://bit.ly/UezzkT\r\n\tEXCLUSIVE] The Creator of Unforgotten Realms and Splash Attack! Has A Kickstarter - http://bit.ly/T4IS8j\r\n\tReview - Far Cry 3 - http://bit.ly/UaxWog\r\n\tBlack Nerd Reveals the Koopalings' Parents - http://bit.ly/YTpJfD\r\n\tGame Theory - How Fast is Sonic the Hedgehog? - http://bit.ly/VWcpBF\r\n\tVGV - Carmageddon - http://bit.ly/VEBQeP\r\n\tScrewin' Around w/ Mario Kart - http://bit.ly/VDyZmb\r\n\tReview - Professor Layton and the Miracle Mask - http://bit.ly/VQOAv8\r\n\tDEATH BATTLE Preview - Goku - http://bit.ly/VDyZCQ\r\n\tVideo Game Vault - Home Alone (NES) - http://bit.ly/Vx1lhY\r\n\tOut of the Box - Far Cry 3 - http://bit.ly/YIHnCU\r\n\t\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3?\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"the-baby-swap\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d14f8030-5884-41f8-b8d9-ff65ba466ec3/sm/video_thumbnail_5354656.jpg","duration":3273,"publication_date":"2012-12-11T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121112-the-ps3-tank-mlp-online-gets-shut-down-and-bit-trip-saga-on-eshop","changefreq":"weekly","video":[{"title":"S1:E325 - Hard News 12/11/12 - The PS3 Tank, MLP: Online Gets Shut Down, and Bit.Trip Saga on eShop.","description":"All Bit Trip games are coming to the 3DS' eShop - http://www.screwattack.com/news/all-bit-trip-games-are-coming-3ds-eshop\r\nSyrian rebels take aim at Assad’s army with a knock-off Playstation controller - http://www.screwattack.com/news/syrian-rebels-take-aim-assad%E2%80%99s-army-knock-playstation-controller\r\nMy Little Pony MMO violates copyright law and is shut-down - http://www.screwattack.com/news/my-little-pony-mmo-violates-copyright-law-and-shut-down","player_loc":"https://roosterteeth.com/embed/hard-news-121112-the-ps3-tank-mlp-online-gets-shut-down-and-bit-trip-saga-on-eshop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ca14a08-526a-423c-b3f2-9b8d0ab93171/sm/video_thumbnail_5339876.png","duration":118,"publication_date":"2012-12-11T13:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-troll-off-round-2","changefreq":"weekly","video":[{"title":"S1:E467 - Mario Troll-Off: Round 2!","description":"After a crazy first round, we're down to only 4 crew members.  Who's the biggest troll? The action continues! ","player_loc":"https://roosterteeth.com/embed/mario-troll-off-round-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0997afc2-922e-4b50-95cf-6274fc3d9735/sm/video_thumbnail_5291916.jpg","duration":764,"publication_date":"2012-12-10T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-30","changefreq":"weekly","video":[{"title":"S1:E466 - The Finalists for the SAGY for the Worst PS3 Game of 2012 are....","description":"After tallying the votes, these are the finalists for the SAGY for the Worst PS3 game of 2012! Find out what they are! To vote for the SAGY for the worst PS3 game of 2012, email your vote to 2012SAGY@Gmail.com and put the category and your vote in the subject line! You have until December 17th!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c601574-8da6-4f4b-8216-2de3eb3a3767/sm/video_thumbnail_5284631_0.jpg","duration":58,"publication_date":"2012-12-10T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121012-street-fighter-enters-mega-man-german-laws-affect-the-european-eshop-and-glu-turns-off-many-games-powered-by-gamespy","changefreq":"weekly","video":[{"title":"S1:E324 - Hard News 12/10/12 - Street Fighter enters Mega Man, German laws affect the European eShop, and Glu turns off many games powered by Gamespy.","description":" \r\nToday on Hard News, Mega Man fights in the streets, the Euro eShop affected by German law, and the plug is pulled on games powered by Gamestop.\r\n \r\nStreet Fighter X Mega Man - http://www.screwattack.com/news/capcom-celebrates-birthdays-street-fighter-x-mega-man-and-its-free\r\n \r\nGerman law restricts mature sales on eShop - http://www.screwattack.com/news/update-german-law-keeping-wii-u-eu-eshop-mature-rated-content-limited-4-hour-window\r\n \r\nGlu shuts down Powered by Gamespy servers - http://www.screwattack.com/news/gamespy%E2%80%99s-new-owners-are-shutting-down-servers-and-rebellion-responds\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Craig - Twitter.com/StutteringCraig\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-121012-street-fighter-enters-mega-man-german-laws-affect-the-european-eshop-and-glu-turns-off-many-games-powered-by-gamespy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cae1b20a-2972-43b4-95be-49ede8a2448e/sm/video_thumbnail_5280151.png","duration":197,"publication_date":"2012-12-10T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-29","changefreq":"weekly","video":[{"title":"S1:E465 - The nominees for the Worst 360 Game of 2012 are....","description":"What games did you nominate for Worst Xbox 360 Game of the Year? What game will you decide takes home the SAGY?\r\n\r\n\tVote by emailing 2012SAGY@gmail.com with the category (Xbox 360) and your vote in the title.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c32922e5-771d-4c8d-9e9d-7c8e472041af/sm/video_thumbnail_5228576.jpg","duration":61,"publication_date":"2012-12-09T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-carmageddon","changefreq":"weekly","video":[{"title":"S1:E384 - VGV - Carmageddon","description":"Holy crap! You can run people over for points?! SIGN ME UP!","player_loc":"https://roosterteeth.com/embed/vgv-carmageddon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25ef5d62-b8b3-4b28-aa75-d8b4b5b73911/sm/video_thumbnail_5142426.jpg","duration":129,"publication_date":"2012-12-08T07:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120712-sonys-new-store-bioshock-gets-delayed-and-eurocom-shuts-down","changefreq":"weekly","video":[{"title":"S1:E323 - Hard News 12/07/12 - Sony's New Store, BioShock Gets Delayed, and Eurocom Shuts Down","description":"BioShock Infinite delayed once again for the sake of “polish” - http://www.screwattack.com/news/bioshock-infinite-delayed-once-again-sake-%E2%80%9Cpolish%E2%80%9D\r\nSony surprises everyone by launching a web-based version of PSN in Europe - http://www.screwattack.com/news/sony-surprises-everyone-launching-web-based-version-psn-europe\r\nEurocom enters into Administration as its remaining staff is let go - http://www.screwattack.com/news/eurocom-enters-administration-its-remaining-staff-let-go","player_loc":"https://roosterteeth.com/embed/hard-news-120712-sonys-new-store-bioshock-gets-delayed-and-eurocom-shuts-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f8f6de7-0e48-426b-8dda-6d0d7a1cfe27/sm/video_thumbnail_5082016.png","duration":123,"publication_date":"2012-12-07T14:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-troll-off-round-1-ben-vs-bryan","changefreq":"weekly","video":[{"title":"S1:E464 - Mario Troll-Off: Round 1 - Ben vs Bryan","description":"It's Ben vs Bryan in the first round of an event to find the biggest troll at ScrewAttack.","player_loc":"https://roosterteeth.com/embed/mario-troll-off-round-1-ben-vs-bryan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/654d1ff7-4bb2-4dfc-ab3c-745990c0a276/sm/video_thumbnail_5022606.jpg","duration":516,"publication_date":"2012-12-06T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-troll-off-round-1-craig-vs-nick","changefreq":"weekly","video":[{"title":"S1:E463 - Mario Troll-Off: Round 1 - Craig vs Nick","description":"It's Craig vs Nick in the first round of an event to find the biggest troll at ScrewAttack.","player_loc":"https://roosterteeth.com/embed/mario-troll-off-round-1-craig-vs-nick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/396661d1-502d-46c8-a06b-b1dfefe37a33/sm/video_thumbnail_5022466.jpg","duration":367,"publication_date":"2012-12-06T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-troll-off-round-1-chad-vs-sean","changefreq":"weekly","video":[{"title":"S1:E462 - Mario Troll-Off: Round 1 - Chad vs Sean","description":"It's Chad vs Sean in the first round of an event to find the biggest troll at ScrewAttack.","player_loc":"https://roosterteeth.com/embed/mario-troll-off-round-1-chad-vs-sean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b34dc383-ca46-4b96-a39c-38e50af108f6/sm/video_thumbnail_5022331.jpg","duration":406,"publication_date":"2012-12-06T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120612-lollipop-chainsaw-valentine-edition-small-breasts-beware-and-why-guitar-hero-got-canned","changefreq":"weekly","video":[{"title":"S1:E322 - Hard News 12/06/12 - Lollipop Chainsaw: Valentine Edition, Small Breasts Beware, and Why Guitar Hero Got Canned","description":"Lollipop Chainsaw: Valentine’s Edition set to be released on February 14 in Japan - http://www.screwattack.com/news/lollipop-chainsaw-valentine%E2%80%99s-edition-set-be-released-february-14-japan\r\nSquare Enix pulls Facebook App that lets you whack your friends to promote Hitman - http://www.screwattack.com/news/square-enix-pulls-facebook-app-lets-you-whack-your-friends-promote-hitman\r\n[Rumor] Guitar Hero 7 is cancelled, but it looks like it was for the best - http://www.screwattack.com/news/rumor-guitar-hero-7-cancelled-it-looks-it-was-best","player_loc":"https://roosterteeth.com/embed/hard-news-120612-lollipop-chainsaw-valentine-edition-small-breasts-beware-and-why-guitar-hero-got-canned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aa5424f-3bb2-4edd-b967-756a1101ab91/sm/video_thumbnail_5008336.png","duration":182,"publication_date":"2012-12-06T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120512-lots-of-nintendo-direct-news-and-a-pro-lol-player-gets-banned","changefreq":"weekly","video":[{"title":"S1:E321 - Hard News 12/05/12 - Lots of Nintendo Direct News and a Pro LoL Player Gets Banned","description":"Nintendo Direct Japan features details on Wii U and 3DS for 2013 - http://www.screwattack.com/video/Nintendo-Direct-Japan-features-details-on-Wii-U-and-3DS-for-2013-4908291\r\nTwo femme fatales come to Ninja Gaiden 3: Razor’s Edge as FREE DLC - http://www.screwattack.com/news/two-femme-fatales-come-ninja-gaiden-3-razor%E2%80%99s-edge-free-dlc\r\nIWillDominate will do so no longer thanks to a one year suspension from LoL Season 3 - http://www.screwattack.com/news/iwilldominate-will-do-so-no-longer-thanks-one-year-suspension-lol-season-3","player_loc":"https://roosterteeth.com/embed/hard-news-120512-lots-of-nintendo-direct-news-and-a-pro-lol-player-gets-banned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57ba5766-970a-4b9b-a755-dd56f8223791/sm/video_thumbnail_4932566.png","duration":157,"publication_date":"2012-12-05T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-home-alone-nes","changefreq":"weekly","video":[{"title":"S1:E383 - VGV - Home Alone (NES)","description":"When you're home alone for Christmas, you may find yourself neck-deep in more terror than holiday cheer.","player_loc":"https://roosterteeth.com/embed/vgv-home-alone-nes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5cffd73-5193-42f4-ae0d-12de032d8ef4/sm/video_thumbnail_4924636.jpg","duration":162,"publication_date":"2012-12-05T12:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-farcry-3","changefreq":"weekly","video":[{"title":"S1:E23 - Out of the Box - Farcry 3","description":"This time on Out of the Box we're stepping into the world of Farcry 3! Is it worth all the praise being heaped on it? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-farcry-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45bec491-6095-453b-8fd3-ced810400c63/sm/video_thumbnail_4914291.jpg","duration":4029,"publication_date":"2012-12-05T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-120512","changefreq":"weekly","video":[{"title":"S1:E461 - SideScrollers Extended 12/05/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-120512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1d9185b-fc57-4531-b22d-92715863b5a1/sm/video_thumbnail_4911986.jpg","duration":376,"publication_date":"2012-12-05T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"bear-spray-justice\"","changefreq":"weekly","video":[{"title":"S1:E93 - SideScrollers - \"Bear Spray Justice\"","description":"Get the Audio Version here - http://bit.ly/TA2TCi\r\n\t\r\n\tSideScrollers Extended can be watched here - http://bit.ly/TA6qAv\r\n\r\n\t\r\n\tNext Time on DEATH BATTLE - Goku Vs. Superman - http://bit.ly/SoH5uz\r\n\t\r\n\tThe Game Overthinker Special - Memories - http://bit.ly/11xPf8X\r\n\t\r\n\tScrewAttack Wrestling Royal Rumble 2012 - http://bit.ly/Vr8vk1\r\n\t\r\n\t12 Reasons We Love Yoshi - http://bit.ly/VmlV0H\r\n\t\r\n\tThe Element of Surprise - http://bit.ly/VkUIeL\r\n\t\r\n\tHow Many Lives - Smash TV - http://bit.ly/11NvQjo\r\n\t\r\n\tVideo Game Vault - Zombie Nation - http://bit.ly/VbmVVs\r\n\t\r\n\t2012 SAGYs - http://bit.ly/Veyew4\r\n\t\r\n\tScrewAttack Zombies - http://bit.ly/VeThCl\r\n\t\r\n\tVideo Game Vault - Star Wars: Dark Forces - http://bit.ly/VepRED\r\n\t\r\n\tOut of the Box: Sonic & All-Stars Racing Transformed and Ratchet and Clank Full Frontal Assault - http://bit.ly/UcZeZL\r\n\t\r\n\tTop 10 Games to Play Besides Halo 4 or Black Ops 2 - http://bit.ly/VcT2rB\r\n\t\r\n\t\r\n\t\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\t\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"bear-spray-justice\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d5a6ec5-491f-408d-a0bb-32a5bae8f56a/sm/video_thumbnail_4916561.jpg","duration":3468,"publication_date":"2012-12-05T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120412-fable-ii-is-lost-killer-instinct-denied-and-kickstarter-fails","changefreq":"weekly","video":[{"title":"S1:E320 - Hard News 12/04/12 - Fable II is Lost!, Killer Instinct Denied, and Kickstarter Fails","description":"Fable 2 has mysteriously disappeared from Xbox Live - http://www.screwattack.com/news/fable-2-has-mysteriously-disappeared-xbox-live\r\nAlpha Colony missed its Kickstarter goal by $28, Kickstarter says tough luck - http://www.screwattack.com/news/alpha-colony-missed-its-kickstarter-goal-28-kickstarter-says-tough-luck\r\nC-c-c-c-cCOMBO BREAKER!- Killer Instinct Trademark Renewal Denied - http://www.screwattack.com/news/c-c-c-c-ccombo-breaker-killer-instinct-trademark-renewal-denied","player_loc":"https://roosterteeth.com/embed/hard-news-120412-fable-ii-is-lost-killer-instinct-denied-and-kickstarter-fails","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f9761c9-5245-49d3-b65b-2e18a600d3f0/sm/video_thumbnail_4864621.png","duration":148,"publication_date":"2012-12-04T13:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-screwattack-troll-off-begins-thursday-heres-a-taste-of-whats-to-come","changefreq":"weekly","video":[{"title":"S1:E460 - The ScrewAttack Troll-Off begins Thursday! Here's a taste of what's to come!","description":"The insane action starts on Thursday but here's an example of the chaos you can expect...","player_loc":"https://roosterteeth.com/embed/the-screwattack-troll-off-begins-thursday-heres-a-taste-of-whats-to-come","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb206c1e-67ff-4a4e-8d70-1c2c4db10c5b/sm/video_thumbnail_4825796.jpg","duration":298,"publication_date":"2012-12-03T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-12312-thqs-bundle-succeeds-ouyas-shipping-vita-ports-and-more-today-on-hard-news","changefreq":"weekly","video":[{"title":"S1:E319 - Hard News 12/3/12 - THQ's bundle succeeds, Ouyas shipping, Vita Ports, and more today on Hard News","description":" \r\nThe Humble THQ Bundle succeeds and other news from around the gaming world today on Hard News.\r\n \r\nTHQ's stock up %40 thanks to Humble Bundle - http://www.screwattack.com/news/thq%E2%80%99s-shares-are-roughly-40-higher-thanks-humble-bundle\r\n \r\nOuya's out to developers soon - http://www.screwattack.com/news/ouya-will-be-sent-out-game-developers-very-soon\r\n \r\nHD Ports for Vita - http://www.screwattack.com/news/dead-or-alive-5-and-oddworld-stranger%E2%80%99s-wrath-will-be-coming-vita\r\n \r\nGold Nunchucks sell out again - http://www.screwattack.com/news/update-gold-nunchucks-are-sold-out-again-they%E2%80%99ll-be-back\r\n \r\nBlizzard registers Project Blackstone domain - http://www.screwattack.com/news/blizzard-registers-domain-name-something-called-project-blackstone\r\n \r\nGreg Miller's cancer in remission - http://www.screwattack.com/news/greg-miller-beats-cancer%E2%80%99s-ass-sends-it-remission\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Craig - Twitter.com/StutteringCraig\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-12312-thqs-bundle-succeeds-ouyas-shipping-vita-ports-and-more-today-on-hard-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffcfc634-67db-4a26-85f6-585bc22120bd/sm/video_thumbnail_4815616.png","duration":101,"publication_date":"2012-12-03T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2012-screwattack-wrestling-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E459 - The 2012 ScrewAttack Wrestling Royal Rumble!","description":"20 ScrewAttack crew members, partners, and characters are stepping into the ring to see who will win this year's ScrewAttack Royal Rumble! Will there be a repeat champion or a new one? Who will surprise and who will disappoint? Jimmy Jimmy Woods and Spanky Putnam have the call!","player_loc":"https://roosterteeth.com/embed/the-2012-screwattack-wrestling-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3cb3098-8905-48f3-b488-e285a8e8f908/sm/video_thumbnail_4793846.jpg","duration":1352,"publication_date":"2012-12-02T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-element-of-surprise","changefreq":"weekly","video":[{"title":"S1:E458 - The Element of Surprise","description":"You have no idea what you're getting yourself into...","player_loc":"https://roosterteeth.com/embed/the-element-of-surprise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a31566d6-ca66-4de1-a8b9-d8609833f074/sm/video_thumbnail_4662131.jpg","duration":30,"publication_date":"2012-11-30T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-113012-nextbox-in-2013-grand-theft-russia-and-insane-is-not-dead","changefreq":"weekly","video":[{"title":"S1:E318 - Hard News 11/30/12 - Nextbox in 2013?, Grand Theft Russia, and inSANE is NOT Dead","description":"[Rumor] Anonymous source claims NextBox ‘Durango’ is coming Holiday 2013 - http://www.screwattack.com/news/rumor-anonymous-source-claims-nextbox-%E2%80%98durango%E2%80%99-coming-holiday-2013\r\nRussian advertisement uses GTA fan art to illicit criminal activity against America - http://www.screwattack.com/news/russian-advertisement-uses-gta-fan-art-illicit-criminal-activity-against-america\r\ninSane finds mystery publisher and development will resume - http://www.screwattack.com/news/insane-finds-mystery-publisher-and-development-will-resume\r\nIntroducing Andre, the Black Nerd on ScrewAttack - http://www.screwattack.com/user/Blacknerd\r\n \r\nCheck out Patrick Brown's DeviantArt - http://patrickbrown.deviantart.com/","player_loc":"https://roosterteeth.com/embed/hard-news-113012-nextbox-in-2013-grand-theft-russia-and-insane-is-not-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d297b20b-7f65-4880-950a-849cb81e975e/sm/video_thumbnail_4648866.jpg","duration":131,"publication_date":"2012-11-30T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-zombie-nation","changefreq":"weekly","video":[{"title":"S1:E382 - Video Game Vault - Zombie Nation","description":"When an alien crashes into Nevada and unleashes a zombie laser, our only hope is a Samurai?","player_loc":"https://roosterteeth.com/embed/video-game-vault-zombie-nation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b02d6b84-7fa2-4280-b7d3-24f0dfd7466f/sm/video_thumbnail_4632661.jpg","duration":102,"publication_date":"2012-11-30T08:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/welcome-the-black-nerd-to-screwattack","changefreq":"weekly","video":[{"title":"S1:E457 - Welcome The Black Nerd to ScrewAttack!","description":"We're proud to announce the latest feature to join the ScrewAttack family, Andre the Black Nerd! If you've never met a Nintendo fan now's your chance!\r\n\r\n\tIf you'd like to support Andre as well as receive ScrewAttack with no ads, a larger video player and more simply click here to check out the Advantage Program!\r\n\r\n\tSubscribe to Andre's profile on ScrewAttack here and his YouTube channel here!","player_loc":"https://roosterteeth.com/embed/welcome-the-black-nerd-to-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba4581ae-dbea-4819-82cf-85fb73421042/sm/video_thumbnail_4598496.jpg","duration":59,"publication_date":"2012-11-29T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-28","changefreq":"weekly","video":[{"title":"S1:E456 - It's time for the 2012 SAGYs!","description":"Everyone awards the best games, it's time to show a little love to the ones that really sucked with the 2012 Shitty Ass Game of the Year Awards!\r\nBetween now and December 5th, make your nominations here! Let us know the category, your nomination, and why you're nominating them!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb81a848-6fe5-43f2-bf6f-4d648fbefe3b/sm/video_thumbnail_4586011.jpg","duration":75,"publication_date":"2012-11-29T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112912-the-binding-of-isaac-for-consoles-dragon-age-3-delayed-and-dirtybomb-announced","changefreq":"weekly","video":[{"title":"S1:E317 - Hard News 11/29/12 - The Binding of Isaac for Consoles, Dragon Age 3 Delayed, and Dirtybomb Announced","description":"Splash Damage’s newest IP is an FPS called Dirty Bomb - http://www.screwattack.com/video/Splash-Damages-newest-IP-is-an-FPS-called-Dirty-Bomb-4570991\r\nIt looks like Binding of Isaac is coming to consoles - http://www.screwattack.com/news/it-looks-binding-isaac-coming-consoles\r\n[Rumor] Dragon Age III: Inquisition may slip to 2014 and next-gen consoles - http://www.screwattack.com/news/rumor-dragon-age-iii-inquisition-may-slip-2014-and-next-gen-consoles","player_loc":"https://roosterteeth.com/embed/hard-news-112912-the-binding-of-isaac-for-consoles-dragon-age-3-delayed-and-dirtybomb-announced","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96b3ec84-d0ab-45f7-a955-f66bfcb89609/sm/video_thumbnail_4579941.png","duration":140,"publication_date":"2012-11-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112812-nintendo-and-bungies-next-big-games-and-european-exclusive-3ds-xl-bundles","changefreq":"weekly","video":[{"title":"S1:E316 - Hard News 11/28/12 - Nintendo and Bungie's Next Big Games and European Exclusive 3DS XL Bundles","description":"Europe gets 3DS XL Pikachu edition, still no word on a US release - http://www.screwattack.com/news/europe-gets-3ds-xl-pikachu-edition-still-no-word-us-release\r\nActivision’s new IP Destiny is leaked, Bungie confirms it is real - http://www.screwattack.com/news/activision%E2%80%99s-new-ip-destiny-leaked-bungie-confirms-it-real\r\nCanadian retailers leak the next big Wii U game, Yoshi’s Land - http://www.screwattack.com/news/canadian-retailers-leak-next-big-wii-u-game-yoshi%E2%80%99s-land","player_loc":"https://roosterteeth.com/embed/hard-news-112812-nintendo-and-bungies-next-big-games-and-european-exclusive-3ds-xl-bundles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34d7362a-7ce9-4a0f-a7d9-f7d29a20aff0/sm/video_thumbnail_4506816.png","duration":154,"publication_date":"2012-11-28T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-star-wars-dark-forces","changefreq":"weekly","video":[{"title":"S1:E381 - Video Game Vault - Star Wars Dark Forces","description":"In the massive Star Wars catalogue of games, this is one that should not be overlooked.","player_loc":"https://roosterteeth.com/embed/video-game-vault-star-wars-dark-forces","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4f31848-9dd6-4374-951f-9f6253736993/sm/video_thumbnail_4497001.jpg","duration":97,"publication_date":"2012-11-28T11:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-sonic-all-stars-racing-transformed-and-ratchet-and-clank-full-frontal-assault","changefreq":"weekly","video":[{"title":"S1:E22 - Out of the Box - Sonic All Stars Racing Transformed and Ratchet and Clank Full Frontal Assault","description":"This time on Out of the Box we're hitting the track with Sonic All Stars Racing Transformed and defending towers with Ratchet and Clank Full Frontal Assault! Are either of these worth picking up? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-sonic-all-stars-racing-transformed-and-ratchet-and-clank-full-frontal-assault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f1537b9-0bda-44ea-868e-be791b867d57/sm/video_thumbnail_4487446.jpg","duration":3731,"publication_date":"2012-11-28T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-112812","changefreq":"weekly","video":[{"title":"S1:E455 - SideScrollers Extended 11/28/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-112812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dc18c24-f1e0-4bd7-9cb7-2cf8eb1fe0be/sm/video_thumbnail_4430856.jpg","duration":369,"publication_date":"2012-11-27T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"motorboat-of-death\"","changefreq":"weekly","video":[{"title":"S1:E92 - SideScrollers - \"Motorboat of Death\"","description":"Get the Audio Version here - http://bit.ly/Yn9m9K\r\n\tSideScrollers Extended can be watched here - http://bit.ly/QnTL6D\r\nWhat ScrewAttack is thankful for this year - http://bit.ly/V0plK4\r\n\tCall of Duty: Black Ops Declassified - http://bit.ly/VaX57E\r\n\tThe Game OverThinker Overbytes - Why Don't Today's Consoles Just WORK?! - http://bit.ly/V9moqL\r\n\t11 Reasons We LOVE Turkey - http://bit.ly/UDaUb0\r\n\t7 Reasons We HATE Turkey - http://bit.ly/UJA73A\r\n\tReview - ZombiU - http://bit.ly/UoB1lU\r\n\tAll Super Attacks in PlayStation All-Stars Battle Royale - http://bit.ly/UjihEp\r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"motorboat-of-death\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbb0c5b3-74bd-43eb-a93c-6abed69de1d0/sm/video_thumbnail_4439476.jpg","duration":2551,"publication_date":"2012-11-27T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112712-the-canadian-wii-mini-free-nsmb-2-dlc-and-sega-cracks-down","changefreq":"weekly","video":[{"title":"S1:E315 - Hard News 11/27/12 - The Canadian Wii Mini, Free NSMB 2 DLC, and Sega Cracks Down","description":"If you do not understand the ending, click the following link.  You can thank us later.  http://www.screwattack.com/shows/originals/classic-commercials-and-trailers/segata-sanshiro-music-video\r\nWii mini leaked as Canadian exclusive for $99.99 - http://www.screwattack.com/news/wii-mini-leaked-canadian-exclusive-9999\r\nPlay classic Mario Levels in New Super Mario Bros. 2 for FREE - http://www.screwattack.com/news/play-classic-mario-levels-new-super-mario-bros-2-free\r\nSEGA attacking YouTube channels over a 14-year-old game - http://www.screwattack.com/news/sega-attacking-youtube-channels-over-14-year-old-game","player_loc":"https://roosterteeth.com/embed/hard-news-112712-the-canadian-wii-mini-free-nsmb-2-dlc-and-sega-cracks-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dafe5801-3e38-4600-965d-feeb0fdaf5e7/sm/video_thumbnail_4440111.png","duration":146,"publication_date":"2012-11-27T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/molyneuxs-kickstarter-nintendo-done-making-wii-games-but-they-might-not-be-done-with-the-wii-hard-news-112612","changefreq":"weekly","video":[{"title":"S1:E314 - Molyneux's Kickstarter, Nintendo done making Wii games but they might not be done with the Wii - Hard News 11/26/12","description":" \r\nMolyneux has another new game, and Nintendo is done making Wii games but they might not be done with the Wii today on Hard News.\r\n \r\nMolyneux plays God via Kickstarter - http://www.screwattack.com/news/peter-molyneux-plays-god-kickstarter-campaign\r\n \r\nNintendo done making Wii games - http://www.screwattack.com/news/nintendo-no-longer-developing-wii-games\r\n \r\nA smaller original Wii on the way? http://www.screwattack.com/news/rumor-nintendo-might-be-releasing-mini-wii-coming-weeks\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/molyneuxs-kickstarter-nintendo-done-making-wii-games-but-they-might-not-be-done-with-the-wii-hard-news-112612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fb01a23-a855-4834-9b29-9699ff14b748/sm/video_thumbnail_4389301.png","duration":129,"publication_date":"2012-11-26T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/what-screwattack-is-thankful-for-this-year","changefreq":"weekly","video":[{"title":"S1:E454 - What ScrewAttack is thankful for this year","description":"We have a lot to be thankful for in gaming over the last year... or do we??\r\nCheck out And Now Media's youtube channel","player_loc":"https://roosterteeth.com/embed/what-screwattack-is-thankful-for-this-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5264fbc2-ce5c-44a4-8af1-60369aa7027a/sm/video_thumbnail_4287356.png","duration":128,"publication_date":"2012-11-22T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/black-friday-has-officially-started-for-all-screwattack-and-avgn-merchandise","changefreq":"weekly","video":[{"title":"S1:E453 - Black Friday has officially started for all ScrewAttack and AVGN merchandise!","description":"Black Friday coming up - so why not just start it now?\r\n\r\n\tAll Black Friday deals on ScrewAttackStore can be seen here.","player_loc":"https://roosterteeth.com/embed/black-friday-has-officially-started-for-all-screwattack-and-avgn-merchandise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7b9b33e-f4b8-412f-bb84-5aee48e3ff4b/sm/video_thumbnail_4162951.png","duration":92,"publication_date":"2012-11-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-112112","changefreq":"weekly","video":[{"title":"S1:E452 - SideScrollers Extended 11/21/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-112112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c431787-5308-4f3d-a540-1810136ced1f/sm/video_thumbnail_4182346.jpg","duration":283,"publication_date":"2012-11-20T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"pee-pee-cakes\"","changefreq":"weekly","video":[{"title":"S1:E91 - SideScrollers - \"Pee Pee Cakes\"","description":"Get the Audio Version here - http://bit.ly/RS8kxg\r\n\tSideScrollers Extended can be watched here - http://bit.ly/T9DP59\r\n\tCheck out our Black Friday Sale here - http://bit.ly/amEkpq\r\nScrewAttack's LIVE Wii U Blowout - http://bit.ly/RMItXE\r\n\tReview - New Super Mario Bros. U - http://bit.ly/URstbj\r\n\tReview - Scribblenauts Unlimited - http://bit.ly/UOEGNR\r\n\tReview - Tank! Tank! Tank! - http://bit.ly/UOpm3I\r\n\tOut of the Box - Tekken Tag Tournament 2 Wii U Edition - http://bit.ly/U9jRbZ\r\n\tThe Nintendo Network Hates ScrewAttack - http://bit.ly/QSJnVD\r\n\tHilariously Bad Cosplay - http://bit.ly/UKQqAS\r\n\tReview - LittleBigPlanet Karting - http://bit.ly/TVVIpb\r\n\tReview - Angry Birds Star Wars - http://bit.ly/UK6cw2\r\n\tThe Most Disappointing Unboxing in History? - http://bit.ly/SStLgt\r\n\tGame Theory: Walking Dead, Killing Zombies - http://bit.ly/UK8efs\r\n\tOut of the Box - Black Ops 2 - http://bit.ly/UE9bpJ\r\n\tScrewAttack’s Dream Destinations – World 1-1 - http://bit.ly/UDsbon\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"pee-pee-cakes\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a420d6a-b8af-48f7-a49c-146ce3ed0967/sm/video_thumbnail_4182886.jpg","duration":3440,"publication_date":"2012-11-20T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-zombiu","changefreq":"weekly","video":[{"title":"S1:E20 - Out of the Box - ZombiU","description":"S1:E20 - Out of the Box - ZombiU","player_loc":"https://roosterteeth.com/embed/out-of-the-box-zombiu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e7079de-0928-4c29-ad03-622959204bb2/sm/video_thumbnail_4182151.jpg","duration":2971,"publication_date":"2012-11-20T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112012-fighters-of-capcom-no-mass-effect-dlc-and-star-citizens-kickstarter","changefreq":"weekly","video":[{"title":"S1:E313 - Hard News 11/20/12 - Fighters of Capcom, No Mass Effect DLC, and Star Citizen's Kickstarter","description":"Star Citizen sets a new crowdfunding record at over $6 MILLION - http://www.screwattack.com/news/star-citizen-sets-new-crowdfunding-record-over-6-million\r\nOmega DLC for Mass Effect 3 will not be coming to Wii U - www.screwattack.com/news/omega-dlc-mass-effect-3-will-not-be-coming-wii-u\r\nCapcom trademarks \"Fighters of Capcom\" - http://www.screwattack.com/news/capcom-trademarks-fighters-capcom","player_loc":"https://roosterteeth.com/embed/hard-news-112012-fighters-of-capcom-no-mass-effect-dlc-and-star-citizens-kickstarter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49fef1c6-22a2-4d4d-894b-5b55678c62db/sm/video_thumbnail_4196841.jpg","duration":126,"publication_date":"2012-11-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendos-parental-consent-official-xbox-mag-leak-and-thq-facing-lawsuit-hard-news-111912","changefreq":"weekly","video":[{"title":"S1:E312 - Nintendo's Parental Consent, Official Xbox Mag Leak, and THQ Facing Lawsuit - Hard News 11/19/12","description":" \r\nNintendo needs your parent's permission, the official UK Xbox mag may have leaked the details of the next Xbox, and THQ facing a lawsuit to go with the rest of its financial troubles today on Hard News\r\n \r\nNintendo online requires parental consent - http://www.screwattack.com/news/registering-child-wii-u%E2%80%99s-online-services-comes-50-cent-cost\r\n \r\nXbox World may have leaked next Xbox - http://www.screwattack.com/news/rumor-xbox-world-claims-have-leaked-system-specs-microsoft%E2%80%99s-next-console\r\n \r\nTattoo Artist suing THQ - http://www.screwattack.com/news/artist-suing-thq-over-tattoo-featured-ufc-undisputed-3\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/nintendos-parental-consent-official-xbox-mag-leak-and-thq-facing-lawsuit-hard-news-111912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d4c0729-64c3-4fbf-a1eb-87cea70ac6aa/sm/video_thumbnail_4144036.png","duration":138,"publication_date":"2012-11-19T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-tekken-tag-tournament-2-wii-u-edition","changefreq":"weekly","video":[{"title":"S1:E20 - Out of the Box - Tekken Tag Tournament 2 Wii U Edition","description":"This time on Out of the Box, Sean and Bryan are checking out Tekken Tag Tournament 2 on the Wii U! What's it like playing a fighter with the tablet? Are the sticks good for fighters? What's up with the wacky Nintendo mode? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-tekken-tag-tournament-2-wii-u-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3e664ff-c16a-403e-9edb-85ace1b91832/sm/video_thumbnail_4131671.jpg","duration":3475,"publication_date":"2012-11-19T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-nintendo-network-hates-screwattack","changefreq":"weekly","video":[{"title":"S1:E451 - The Nintendo Network Hates ScrewAttack","description":"Come on, you guys even inspired our site's name!","player_loc":"https://roosterteeth.com/embed/the-nintendo-network-hates-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9dc59c1-a19c-4951-b166-4ca4b46c6815/sm/video_thumbnail_4100741.jpg","duration":70,"publication_date":"2012-11-18T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattacks-live-wii-u-blowout","changefreq":"weekly","video":[{"title":"S1:E19 - ScrewAttack's LIVE Wii U Blowout","description":"The Wii U is here and we're live showing you anything and everything about it!","player_loc":"https://roosterteeth.com/embed/screwattacks-live-wii-u-blowout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a580fc94-3e7f-47b3-a5b4-e628ce6df221/sm/video_thumbnail_4097266.jpg","duration":7596,"publication_date":"2012-11-18T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111612-the-best-crossover-ever-miyamotos-birthday-and-some-delayed-wii-u-features","changefreq":"weekly","video":[{"title":"S1:E311 - Hard News 11/16/12 - The Best Crossover Ever?, Miyamoto's Birthday, and Some Delayed Wii U Features","description":"Nintendo TVii and the Video On-Demand are delayed beyond the Wii U launch day - http://www.screwattack.com/news/nintendo-tvii-and-video-demand-are-delayed-beyond-wii-u-launch-day\r\n[Rumor] Sonic All Stars Racing Transformed might see TF2 cameos on PC - http://www.screwattack.com/news/rumor-sonic-all-stars-racing-transformed-might-see-tf2-cameos-pc\r\nAwesomnauts will be FREE on Steam all weekend and half-price - http://www.screwattack.com/news/awesomnauts-will-be-free-steam-all-weekend-and-half-price\r\nHappy 60th Birthday Shigeru Miyamoto! - http://www.screwattack.com/node/4028291","player_loc":"https://roosterteeth.com/embed/hard-news-111612-the-best-crossover-ever-miyamotos-birthday-and-some-delayed-wii-u-features","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83eb8a16-27aa-4d0b-8ad2-fc71b0be8d7e/sm/video_thumbnail_4032701_0.png","duration":124,"publication_date":"2012-11-16T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-most-disappointing-unboxing-in-history","changefreq":"weekly","video":[{"title":"S1:E450 - The Most Disappointing Unboxing in History?","description":"Did you see you get a hover drone when you get the special edition of Black Ops II? We did and were ridiculously excited about it...","player_loc":"https://roosterteeth.com/embed/the-most-disappointing-unboxing-in-history","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f2b93d0-5d1a-4251-b4e4-20a3f3b6d16f/sm/video_thumbnail_4005856.jpeg","duration":307,"publication_date":"2012-11-15T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111512-psabr-dlc-characters-a-free-xbla-game-kixeye-vs-zynga-and-dick-monsters","changefreq":"weekly","video":[{"title":"S1:E310 - Hard News 11/15/12 - PSABR DLC Characters, A Free XBLA Game, Kixeye Vs. Zynga, and Dick Monsters","description":"First Playstation All-Stars Battle Royale DLC includes Kat and Emmett Graves for FREE - http://www.screwattack.com/news/first-playstation-all-stars-battle-royale-dlc-includes-kat-and-emmett-graves-free\r\nKixeye gets in “he said, she said” argument with Zynga, files complaint - http://www.screwattack.com/news/kixeye-gets-%E2%80%9Che-said-she-said%E2%80%9D-argument-zynga-files-complaint\r\nWii U getting digital version of Spin the Bottle - http://www.screwattack.com/news/wii-u-getting-digital-version-spin-bottle\r\nDecade-long Xbox Live users rewarded with anniversary edition Xbox 360 and FREE Wreckateer - http://www.screwattack.com/news/decade-long-xbox-live-users-rewarded-anniversary-edition-xbox-360-and-free-wreckateer","player_loc":"https://roosterteeth.com/embed/hard-news-111512-psabr-dlc-characters-a-free-xbla-game-kixeye-vs-zynga-and-dick-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b756250d-5d0c-4bbc-9013-432189d837d5/sm/video_thumbnail_3997321.png","duration":145,"publication_date":"2012-11-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-black-ops-2","changefreq":"weekly","video":[{"title":"S1:E18 - Out of the Box - Black Ops 2","description":"This time on Out of the Box, Craig and Sean are engaging in modern warfare of the future Call of Duty: Black Ops 2! Is this a cheap cash-in sequel or a new game worth buying? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-black-ops-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26f36d30-874c-4164-aef8-47472f0c7459/sm/video_thumbnail_3960961.jpg","duration":3921,"publication_date":"2012-11-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111412-free-copies-of-the-mass-effect-trilogy-ubisoft-buying-thq-origin-got-hacked","changefreq":"weekly","video":[{"title":"S1:E309 - Hard News 11/14/12 - Free Copies of the Mass Effect Trilogy, Ubisoft Buying THQ, Origin Got Hacked","description":"BioWare handles the Black Ops 2 snafu in style - http://www.screwattack.com/news/bioware-handles-black-ops-2-snafu-style\r\n[PSA] Hide your kids, hide your wife; EA’s Origin has been hacked - http://www.screwattack.com/news/psa-hide-your-kids-hide-your-wife-ea%E2%80%99s-origin-has-been-hacked\r\nUbisoft showing interest in buying THQ assets - http://www.screwattack.com/news/ubisoft-showing-interest-buying-thq-assets","player_loc":"https://roosterteeth.com/embed/hard-news-111412-free-copies-of-the-mass-effect-trilogy-ubisoft-buying-thq-origin-got-hacked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36f301eb-1f0c-4a52-a931-3e7d82f32b24/sm/video_thumbnail_3968901.png","duration":115,"publication_date":"2012-11-14T14:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-111412","changefreq":"weekly","video":[{"title":"S1:E449 - SideScrollers Extended 11/14/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-111412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/791c16ee-e3e2-42d6-b9fb-f94e9ef4acaf/sm/video_thumbnail_3901531.jpg","duration":291,"publication_date":"2012-11-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"plastic-surgery-baby\"","changefreq":"weekly","video":[{"title":"S1:E90 - SideScrollers - \"Plastic Surgery Baby\"","description":"Get the Audio Version here - http://bit.ly/RVpmuc\r\n\tSideScrollers Extended can be watched here - http://bit.ly/QaT3e3\r\n\tCheck out the AVGN Movie Trailer here: http://bit.ly/W009ib\r\n \r\nReview - Halo 4 - http://bit.ly/TD7btF\r\n\tReview - Call of Duty: Black Ops II - http://bit.ly/TAw3lN\r\n\t15 Reasons We LOVE the WiI - http://bit.ly/Uv3WbP\r\n\t17 Reasons We HATE the Wii - http://bit.ly/TrTSvY\r\n\tVideo Game Vault - Captain Bible - http://bit.ly/Uwn49e\r\n\tOverbytes - Super Mario Bros. 2 - http://bit.ly/TiIfYb\r\n\tThe Green Demon Challenge - http://bit.ly/UqRycO\r\n\tReview - Assassin's Creed III - http://bit.ly/UpQ8zl\r\n\tIs PSABR a Smash Bros. Rip Off? - http://bit.ly/XBEPo9\r\n\tOut of the Box - Halo 4 - http://bit.ly/SD7aob\r\n\tVideo Game Vault - Tale Spin - http://bit.ly/SIZBx5\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"plastic-surgery-baby\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ad659c8-e7d4-45c2-b533-a2fafcfee74f/sm/video_thumbnail_3915051.jpg","duration":2811,"publication_date":"2012-11-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111312-adam-sessler-has-a-new-home-call-of-mass-effect-2-and-ps-vita-plus-details","changefreq":"weekly","video":[{"title":"S1:E308 - Hard News 11/13/12 - Adam Sessler Has a New Home, Call of Mass Effect 2, and PS Vita Plus Details","description":"PlayStation Plus for Vita reveals a killer instant game collection - http://www.screwattack.com/news/playstation-plus-vita-reveals-killer-instant-game-collection\r\nFormer G4TV personality Adam Sessler returns in a new show on Revision3 - http://www.screwattack.com/news/former-g4tv-personality-adam-sessler-returns-new-show-revision3\r\nSome PC copies of Black Ops 2, disc 2, are in fact Mass Effect 2 - http://www.screwattack.com/news/some-pc-copies-black-ops-2-disc-2-are-fact-mass-effect-2","player_loc":"https://roosterteeth.com/embed/hard-news-111312-adam-sessler-has-a-new-home-call-of-mass-effect-2-and-ps-vita-plus-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63b24887-227e-44e8-9200-6e4a3d2b5475/sm/video_thumbnail_3915921.png","duration":144,"publication_date":"2012-11-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chad-james-and-mike-race-to-transform-some-transformers","changefreq":"weekly","video":[{"title":"S1:E448 - Chad, James, and Mike race to transform some Transformers!","description":"S1:E448 - Chad, James, and Mike race to transform some Transformers!","player_loc":"https://roosterteeth.com/embed/chad-james-and-mike-race-to-transform-some-transformers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6b8aa18-ae7c-437b-a1cf-7b8a78a30a50/sm/video_thumbnail_3867916.jpg","duration":724,"publication_date":"2012-11-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gabe-newell-gives-on-his-b-day-blizzard-gets-sued-and-curiosity-killed-its-servers-hard-news-111212","changefreq":"weekly","video":[{"title":"S1:E307 - Gabe Newell gives on his b-day, Blizzard gets sued, and Curiosity killed its servers - Hard News 11/12/12","description":"Gabe Newell gives on his b-day, Blizzard faces a class action lawsuit, and Curiosity kills the servers today on Hard News.\r\nSource Engine 2 announced - http://www.screwattack.com/news/gabe-confirms-new-source-engine-during-impromptu-birthday-celebration\r\nBlizzard faces lawsuit - http://www.screwattack.com/news/fans-file-class-action-lawsuit-against-blizzard-because-battlenet-authentication\r\nCuriosity crash - http://www.screwattack.com/video/The-allure-of-Molyneuxs-Cube-is-so-great-it-crashed-Curiositys-server-3840126\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/gabe-newell-gives-on-his-b-day-blizzard-gets-sued-and-curiosity-killed-its-servers-hard-news-111212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58416800-1a61-4963-a0fc-2bfd80b82224/sm/video_thumbnail_3877041_0.png","duration":161,"publication_date":"2012-11-12T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-captain-bible-and-the-dome-of-darkness","changefreq":"weekly","video":[{"title":"S1:E380 - VGV - Captain Bible and the Dome of Darkness","description":"CYBER LIE\r\n ","player_loc":"https://roosterteeth.com/embed/vgv-captain-bible-and-the-dome-of-darkness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/013bb9d6-970f-4554-92da-f62ba2fc7b1d/sm/video_thumbnail_2686861.jpg","duration":192,"publication_date":"2012-11-11T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110912-game-destruction-2012-medal-of-honor-revealed-u-s-secrets-and-cinder-kittens","changefreq":"weekly","video":[{"title":"S1:E306 - Hard News 11/09/12 - Game Destruction 2012, Medal of Honor Revealed U.S. Secrets, and Cinder Kittens!","description":"Cinder Kitten will bring heat to WoW, relief to Hurricane Sandy victims - http://www.screwattack.com/news/cinder-kitten-will-bring-heat-wow-relief-hurricane-sandy-victims\r\nNavy Seals are reprimanded for their work on MoH: Warfighter - http://www.screwattack.com/news/navy-seals-are-reprimanded-their-work-moh-warfighter\r\nSilicon Knights ordered to destroy leftover copies of Too Human and X-Men: Destiny - http://www.screwattack.com/news/silicon-knights-ordered-destroy-leftover-copies-too-human-and-x-men-destiny","player_loc":"https://roosterteeth.com/embed/hard-news-110912-game-destruction-2012-medal-of-honor-revealed-u-s-secrets-and-cinder-kittens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bcd0443-f7c5-487e-8e69-fcbb2a35b2c1/sm/video_thumbnail_3807901.png","duration":138,"publication_date":"2012-11-09T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110812-assassins-creed-3-konami-code-a-diablo-3-expansioncapcom-loses-tatsunoko","changefreq":"weekly","video":[{"title":"S1:E305 - Hard News 11/08/12 - Assassin's Creed 3 Konami Code, A Diablo 3 Expansion,Capcom Loses Tatsunoko","description":"Assassin's Creed 3 joins the list of games containing the Konami Code - http://www.screwattack.com/news/assassins-creed-3-joins-list-games-containing-konami-code\r\nCapcom no longer able to sell Tatsunoko vs Capcom due to license expiring - http://www.screwattack.com/news/capcom-no-longer-able-sell-tatsunoko-vs-capcom-due-license-expiring","player_loc":"https://roosterteeth.com/embed/hard-news-110812-assassins-creed-3-konami-code-a-diablo-3-expansioncapcom-loses-tatsunoko","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf45f6b9-fed3-4c36-8342-259691099027/sm/video_thumbnail_3775976.png","duration":115,"publication_date":"2012-11-08T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-green-demon-challenge-extended-cut","changefreq":"weekly","video":[{"title":"S1:E447 - The Green Demon Challenge [Extended Cut]","description":"Watch us not win at video games in this 20 minute-long cut of the dreaded Green Demon Challenge!\r\n\r\n\tLOL... we're not doing Whomp's Fortress next.  Ignore Nick.","player_loc":"https://roosterteeth.com/embed/the-green-demon-challenge-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8fbba9b-9199-4ed3-9cda-b65b68b82911/sm/video_thumbnail_3756651.jpg","duration":1273,"publication_date":"2012-11-08T05:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-green-demon-challenge","changefreq":"weekly","video":[{"title":"S1:E446 - The Green Demon Challenge","description":"The chasing mushroom you thought was your friend is now a relentless stalker!  Can we get all 8 red coins AND the star before it catches us?\r\nSee the g1s attempt to beat the demon!\r\n\tTom the Iron Man\r\n\tGamin Tank\r\n\tblackmaniac","player_loc":"https://roosterteeth.com/embed/the-green-demon-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22a2ac88-8c6d-439d-ad41-507ac0bd9c56/sm/video_thumbnail_3756641.jpg","duration":767,"publication_date":"2012-11-08T05:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110712-leaked-uncharted-game-playstation-magazine-shuts-down-and-new-wii-u-details","changefreq":"weekly","video":[{"title":"S1:E304 - Hard News 11/07/12 - Leaked Uncharted Game, PlayStation Magazine Shuts Down, and New Wii U Details","description":"New Uncharted game accidentally revealed - http://www.screwattack.com/news/new-uncharted-game-accidentally-revealed\r\nWii U’s Nintendo Network gets a few more details from Japanese Nintendo Direct - http://www.screwattack.com/news/wii-u%E2%80%99s-nintendo-network-gets-few-more-details-japanese-nintendo-direct\r\nR.I.P Playstation Magazine, you will be missed - http://www.screwattack.com/news/rip-playstation-magazine-you-will-be-missed","player_loc":"https://roosterteeth.com/embed/hard-news-110712-leaked-uncharted-game-playstation-magazine-shuts-down-and-new-wii-u-details","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/008185d3-2438-444e-89cf-6d2af672070b/sm/video_thumbnail_3741061.png","duration":115,"publication_date":"2012-11-07T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-halo-4","changefreq":"weekly","video":[{"title":"S1:E17 - Out of the Box - Halo 4","description":"Halo 4. That is all.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-halo-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88d68109-120e-46f4-8cfa-03636a1dfe98/sm/video_thumbnail_3721381.jpg","duration":2177,"publication_date":"2012-11-07T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-110712","changefreq":"weekly","video":[{"title":"S1:E445 - SideScrollers Extended 11/07/12","description":"Ten more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-110712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abbd1977-09b8-4635-891a-73cf42343587/sm/video_thumbnail_3686101.jpg","duration":548,"publication_date":"2012-11-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"taco-cannon\"","changefreq":"weekly","video":[{"title":"S1:E89 - SideScrollers - \"Taco Cannon\"","description":"Get the Audio Version here - http://bit.ly/U6PtN7\r\n\tSideScrollers Extended can be watched here - http://bit.ly/WvAC6b\r\n?\r\nVideo Game Vault - TaleSpin - http://bit.ly/SIZBx5\r\n\tReview - Forza Horizon - http://bit.ly/SG0ybV\r\n\tReview - Need For Speed: Most Wanted - http://bit.ly/SG0Ak1\r\n\t22 Reasons We Love Halo - http://bit.ly/U6aihx\r\n\tHard News Blooper Reel #2 - http://bit.ly/RdsT73\r\n\tVideo Game Vault - The Death and Return of Superman - http://bit.ly/SrgNaa\r\n\tScrewAttack Halloween Live Steam - http://bit.ly/So11ge\r\n\tOut of the Box - Skylanders Giants - http://bit.ly/SkRYMY\r\n\tg1 Halloween Costumes - http://bit.ly/TXQY62\r\n\tWreck-It Ralph First Impressions - http://bit.ly/XgymyP\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n\t\r\n\tFollow us on Twitter!?\r\n\tCraig - https://twitter.com/StutteringCraig\r\n\tChad - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"taco-cannon\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df79d234-488c-48db-bc56-b480cabfe8ba/sm/video_thumbnail_3712801.jpg","duration":3256,"publication_date":"2012-11-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110612-the-xbox-handheld-thqs-stock-drops-and-the-assassins-creed-anthology","changefreq":"weekly","video":[{"title":"S1:E303 - Hard News 11/06/12 - The Xbox Handheld?!, THQ's Stock Drops, and the Assassin's Creed Anthology","description":"The Assassin’s Creed Anthology is coming with all 5 games - http://www.screwattack.com/news/assassin%E2%80%99s-creed-anthology-coming-all-5-games\r\n[Rumor] Microsoft working on a dedicated Xbox Surface Tablet - http://www.screwattack.com/news/rumor-microsoft-working-dedicated-xbox-surface-tablet\r\nTHQ shares plummet after financial call and game delays - http://www.screwattack.com/news/thq-shares-plummet-after-financial-call-and-game-delays","player_loc":"https://roosterteeth.com/embed/hard-news-110612-the-xbox-handheld-thqs-stock-drops-and-the-assassins-creed-anthology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42c99375-6805-46a6-9585-7504deb0a6e6/sm/video_thumbnail_3701186.png","duration":151,"publication_date":"2012-11-06T14:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-mortal-kombat-mlg-pro-gga-dizzy","changefreq":"weekly","video":[{"title":"S1:E444 - ScrewAttack VS Mortal Kombat MLG Pro GGA Dizzy","description":"Craig and Chad take on Season's Beating Mortal Kombat Champion GGA Dizzy!\r\nFollow GGA Dizzy: @GGA_Dizzy\r\nUPDATE: GGA Dizzy took 4th place in the Dallas MLG Mortal Kombat Tournament","player_loc":"https://roosterteeth.com/embed/screwattack-vs-mortal-kombat-mlg-pro-gga-dizzy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/543a7593-dbbf-42fb-94e5-78b8134c04e8/sm/video_thumbnail_3685931.jpg","duration":590,"publication_date":"2012-11-06T08:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-11512-free-bf-1942-guilty-gamestop-execs-and-a-wow-1v1-you-werent-supposed-to-see","changefreq":"weekly","video":[{"title":"S1:E302 - Hard News 11/5/12 - Free BF 1942, Guilty Gamestop Execs, and a WoW 1v1 You Weren't Supposed To See","description":"Today on Hard News, get Battlefield 1942 free from Origin, a Gamestop exec trades in his life for a prison sentence, and one WoW stream broadcast something we weren't supposed to see.\r\n \r\nBattlefield 1942 free on Origin - http://www.screwattack.com/news/battlefield-1942-now-free-origin-next-five-months\r\n \r\nGamestop exec pleads guilty - http://www.screwattack.com/news/ex-gamestop-vp-pleads-guilty-embezzlement-charges\r\n \r\nWoW stream gets steamy - http://www.screwattack.com/news/wow-stream-gets-steamy-when-girlfriend-comes-home\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-11512-free-bf-1942-guilty-gamestop-execs-and-a-wow-1v1-you-werent-supposed-to-see","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20766321-e5d6-40cd-aa1a-895aa4dc1d5e/sm/video_thumbnail_3649901.png","duration":104,"publication_date":"2012-11-05T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-talespin","changefreq":"weekly","video":[{"title":"S1:E379 - VGV - TaleSpin","description":"S1:E379 - VGV - TaleSpin","player_loc":"https://roosterteeth.com/embed/vgv-talespin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20d21a42-0af7-42af-937d-79c76562a8be/sm/video_thumbnail_2687241.jpg","duration":109,"publication_date":"2012-11-04T10:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-blooper-reel-2-kill-fails","changefreq":"weekly","video":[{"title":"S1:E443 - Hard News Blooper Reel #2 - Kill Fails","description":"When Bryan filled in on Hard News, Nick just couldn't get his assassination right.","player_loc":"https://roosterteeth.com/embed/hard-news-blooper-reel-2-kill-fails","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e1e8c60-72c2-46f5-971e-2c57eaacecfe/sm/video_thumbnail_3563416.jpg","duration":77,"publication_date":"2012-11-02T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-deal-of-the-week-112-118","changefreq":"weekly","video":[{"title":"S1:E442 - ScrewAttackStore's Deal of the Week (11/2 - 11/8)","description":"ScrewAttackStore's Deal of the Week!\r\nThis week's deal is the Epona T  and its 25% off! Go save yourself some money with this great price of  only $14.98!\r\nwww.ScrewAttackStore.com","player_loc":"https://roosterteeth.com/embed/screwattackstores-deal-of-the-week-112-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8356c8da-e3fb-4da6-a8b0-ace7f0f0a9d8/sm/video_thumbnail_3575086.gif","duration":32,"publication_date":"2012-11-02T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110212-new-portal-2-dlc-curt-schilling-gets-sued-and-blockbuster-express-closes","changefreq":"weekly","video":[{"title":"S1:E301 - Hard News 11/02/12 - New Portal 2 DLC, Curt Schilling Gets Sued, and Blockbuster Express Closes","description":"Blockbuster Express kiosks are closing nationwide - http://www.screwattack.com/news/blockbuster-express-kiosks-are-closing-nationwide\r\nPortal 2's In Motion DLC Goes to Playstation Network - http://www.screwattack.com/news/portal-2s-motion-dlc-goes-playstation-network\r\nRhode Island will now be suing Curt Schilling over the 38 Studios fiasco - http://www.screwattack.com/news/rhode-island-will-now-be-suing-curt-schilling-over-38-studios-fiasco\r\nSony's French Ad for PS VITA more than a trifecta - http://www.screwattack.com/news/sonys-french-ad-ps-vita-more-trifecta","player_loc":"https://roosterteeth.com/embed/hard-news-110212-new-portal-2-dlc-curt-schilling-gets-sued-and-blockbuster-express-closes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/702533ea-0e8e-4169-abe5-f5f6c53e6754/sm/video_thumbnail_3570361.png","duration":144,"publication_date":"2012-11-02T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-110112-army-of-two-dated-sly-cooper-dresses-up-and-kim-dotcoms-next-site","changefreq":"weekly","video":[{"title":"S1:E300 - Hard News 11/01/12 - Army of TWO Dated, Sly Cooper Dresses Up, and Kim Dotcom's Next Site","description":" \r\nWe have a date with the Devil's Cartel, Sly Cooper plays dress up, and Kim Dotcom's new site today on Hard News.\r\n \r\nArmy of Two: The Devil's Cartel Date - http://www.screwattack.com/news/army-two-has-release-date-announced-while-revealing-overkill-edition\r\n \r\nSly Cooper: Thieves in Time Costumes - http://www.screwattack.com/video/Sly-Cooper-Thieves-in-time-will-have-you-dressing-for-every-occasion-3532086\r\n \r\nKim Dotcom's next website - http://www.screwattack.com/news/kim-dotcom-coming-back-internet-mega\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-110112-army-of-two-dated-sly-cooper-dresses-up-and-kim-dotcoms-next-site","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66e2fb3a-a0b0-457c-bc0d-efcb242dd4bb/sm/video_thumbnail_3532971.png","duration":110,"publication_date":"2012-11-01T14:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-death-and-return-of-superman","changefreq":"weekly","video":[{"title":"S1:E378 - VGV - Death and Return of Superman","description":"Overly generic beat-'em-up-action and more unexcitement!","player_loc":"https://roosterteeth.com/embed/vgv-death-and-return-of-superman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec6fe9f4-d0f1-488d-a735-200fcd5556fe/sm/video_thumbnail_3520586.jpg","duration":108,"publication_date":"2012-11-01T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-103112-disney-bought-lucasfilms-gta-5-release-date-and-hurricane-sandy-attacks-activision","changefreq":"weekly","video":[{"title":"S1:E299 - Hard News 10/31/12 - Disney Bought LucasFilms, GTA 5 Release Date, and Hurricane Sandy Attacks Activision","description":"Star Wars Episode 7 Coming in 2015 - http://www.screwattack.com/news/star-wars-episode-7-coming-2015\r\nRockstar officially announce GTA V will release in Spring 2013! - http://www.screwattack.com/news/rockstar-officially-announce-gta-v-will-release-spring-2013\r\nHurricane Sandy has knocked out Activision’s multiplayer servers - http://www.screwattack.com/news/hurricane-sandy-has-knocked-out-activision%E2%80%99s-multiplayer-servers","player_loc":"https://roosterteeth.com/embed/hard-news-103112-disney-bought-lucasfilms-gta-5-release-date-and-hurricane-sandy-attacks-activision","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f93fd6e-4cae-42b0-b134-cdd2ab34b555/sm/video_thumbnail_3494946.png","duration":120,"publication_date":"2012-10-31T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-skylanders-giants","changefreq":"weekly","video":[{"title":"S1:E16 - Out of the Box - Skylanders Giants","description":"Is this a cheap cash-in or something worth the hefty price tag?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-skylanders-giants","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/738333dc-acae-45c2-be26-dab11c686acb/sm/video_thumbnail_3484501.jpg","duration":1939,"publication_date":"2012-10-31T11:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/weve-seen-wreck-it-ralph-and-here-are-our-first-impressions","changefreq":"weekly","video":[{"title":"S1:E441 - We've seen Wreck-It Ralph and here are our first impressions","description":"Sean and Bryan got to catch an early screening of Disney's new animated film, Wreck-It Ralph! Was it a cheap videogame cash-in or did it stand up as its own film?","player_loc":"https://roosterteeth.com/embed/weve-seen-wreck-it-ralph-and-here-are-our-first-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3249a014-71a8-436f-89eb-3c6d1b26eb69/sm/video_thumbnail_3484521.jpg","duration":389,"publication_date":"2012-10-31T10:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-103112","changefreq":"weekly","video":[{"title":"S1:E440 - SideScrollers Extended 10/31/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-103112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc4d6fc2-b59b-4f79-9619-73bdf6a5943d/sm/video_thumbnail_3460176.jpg","duration":426,"publication_date":"2012-10-30T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"happy-halloween\"","changefreq":"weekly","video":[{"title":"S1:E88 - SideScrollers - \"Happy Halloween!\"","description":"Get the Audio Version here - http://bit.ly/SuPJbD\r\n\tSideScrollers Extended can be watched here - http://bit.ly/QSo2Iu\r\n \r\nbrentalfloss - The Slenderman Song - http://bit.ly/SsFZyL\r\n\tAngry Video Game Nerd - Ghosts 'n Goblins - http://bit.ly/RYGQVS\r\n\tTop 10 Educational Games - http://bit.ly/TyuVmq\r\n\tTop 10 Gamer Costumes for 2012 - http://bit.ly/U4PktV\r\n\tCinemassacre Mailbag Ep. 10 - http://bit.ly/RMSC5E\r\n\tbrentalfloss - Nintendohemian Rhapsody - http://bit.ly/TuZLMs\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n\t\r\n\tFollow us on Twitter!?\r\n\tCraig - https://twitter.com/StutteringCraig?\r\n\tChad - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"happy-halloween\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d80c5bf-bf6a-4172-9e78-c8fdc53aa32a/sm/video_thumbnail_3465011.jpg","duration":2473,"publication_date":"2012-10-30T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-103012-new-call-of-duty-borderlands-2-glitch-and-sxt-dlc-solved","changefreq":"weekly","video":[{"title":"S1:E298 - Hard News 10/30/12 - New Call of Duty, Borderlands 2 Glitch, and SxT DLC Solved","description":"Capcom explains how they’re going to resolve the SFxT DLC debacle - http://www.screwattack.com/news/capcom-explains-how-they%E2%80%99re-going-resolve-sfxt-dlc-debacle\r\nXbox 360 owners of Borderlands 2 might want to play solo or risk their saves - http://www.screwattack.com/news/xbox-360-owners-borderlands-2-might-want-play-solo-or-risk-their-saves\r\nActivision enters the mobile gaming space with Activate - http://www.screwattack.com/news/activision-enters-mobile-gaming-space-activate\r\n[Rumor] Bill Murray reveals that Modern Warfare 4 is a thing - http://www.screwattack.com/news/rumor-bill-murray-reveals-modern-warfare-4-thing","player_loc":"https://roosterteeth.com/embed/hard-news-103012-new-call-of-duty-borderlands-2-glitch-and-sxt-dlc-solved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/990aff6d-e8c9-415c-a296-ac37bd01a321/sm/video_thumbnail_3465191.png","duration":158,"publication_date":"2012-10-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zelda-symphony-of-the-goddesses-will-make-you-cry-man-tears","changefreq":"weekly","video":[{"title":"S1:E439 - Zelda: Symphony of the Goddesses will make you cry man-tears","description":"Check out the Symphony of the Goddesses website - www.zelda-symphony.com","player_loc":"https://roosterteeth.com/embed/zelda-symphony-of-the-goddesses-will-make-you-cry-man-tears","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01139bdf-9864-4906-8515-f073f1dd290a/sm/video_thumbnail_3442416.jpg","duration":265,"publication_date":"2012-10-29T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102912-g4-cancels-aots-and-x-play-start-leveling-in-starcraft-2-and-the-us-supreme-court-decides-gamings-future","changefreq":"weekly","video":[{"title":"S1:E297 - Hard News 10/29/12 - G4 Cancels AOTS and X-Play, Start Leveling in Starcraft 2, and The US Supreme Court Decides Gaming's Future","description":" \r\nG4 gives AOTS and X-Play their eviction notice, level up in Heart of the Swarm, and Americans may be able to sell old game hardware today on Hard News.\r\n \r\nG4 shows' last days - http://www.screwattack.com/news/g4-gets-final-nail-coffin\r\nLevel up in SC2: Heart of the Swarm: http://www.screwattack.com/news/starcraft-2-getting-leveling-system-heart-swarm\r\nUpcoming Supreme Court ruling affects gaming - http://www.screwattack.com/news/your-right-resell-gaming-hardware-might-be-chopping-block\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-102912-g4-cancels-aots-and-x-play-start-leveling-in-starcraft-2-and-the-us-supreme-court-decides-gamings-future","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2710f5db-fd84-48db-96ed-7caaf044d2f5/sm/video_thumbnail_3436296.png","duration":128,"publication_date":"2012-10-29T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102612-oppa-dance-central-mass-effect-movie-details-and-gamestop-kids","changefreq":"weekly","video":[{"title":"S1:E296 - Hard News 10/26/12 - Oppa Dance Central, Mass Effect Movie Details, and GameStop Kids","description":"GameStop Kids is opening today at our local mall - http://www.screwattack.com/news/gamestop-kids-opening-today-our-local-mall\r\nDance Central 3 wants to bring every “hot” artist to the DLC pipeline - http://www.screwattack.com/node/3362986\r\nMass Effect film ditches old writer for a new, less experienced one - http://www.screwattack.com/news/mass-effect-film-ditches-old-writer-new-less-experienced-one","player_loc":"https://roosterteeth.com/embed/hard-news-102612-oppa-dance-central-mass-effect-movie-details-and-gamestop-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3184a18f-c0bf-47e5-9d68-633e0f707282/sm/video_thumbnail_3366416.png","duration":178,"publication_date":"2012-10-26T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102512-war-z-producers-dirty-mouth-bravely-default-sequels-odd-name-and-wii-us-selling-at-a-loss","changefreq":"weekly","video":[{"title":"S1:E295 - Hard News 10/25/12 - War Z Producer's Dirty Mouth, Bravely Default Sequel's Odd Name, and Wii Us Selling At A Loss.","description":" \r\nWar Z can't catch a break, Bravely Default sequel gets a weird subtitle, and the Wii U to sell at a loss today on Hard News.\r\n \r\nWar Z Producer's dirty mouth - http://www.screwattack.com/news/war-z-producer-caught-calling-forum-goers-sexual-slur\r\n \r\nBravely Default: Praying Brage - http://www.screwattack.com/node/3332956\r\n \r\nWii U sells at a loss - http://www.screwattack.com/news/wii-u-will-be-selling-loss-according-nintendo\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Bryan - Twitter.com/MrBryanBaker\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Bryan - http://www.facebook.com/MrBryanBaker\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-102512-war-z-producers-dirty-mouth-bravely-default-sequels-odd-name-and-wii-us-selling-at-a-loss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc445e43-adae-4323-85f7-83c6214a4cfa/sm/video_thumbnail_3335076.png","duration":166,"publication_date":"2012-10-25T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102412-star-citizen-kills-kickstarter-new-99-360s-and-zynga-screws-up","changefreq":"weekly","video":[{"title":"S1:E294 - Hard News 10/24/12 - Star Citizen Kills Kickstarter, New $99 360s, and Zynga Screws Up","description":"Wing Commander’s spiritual successor Star Citizen is dominating Kickstarter - http://www.screwattack.com/news/wing-commander%E2%80%99s-spiritual-successor-star-citizen-dominating-kickstarter\r\nZynga screws the pooch and lays off 5% of staff, worldwide - http://www.screwattack.com/news/zynga-screws-pooch-and-lays-5-staff-worldwide","player_loc":"https://roosterteeth.com/embed/hard-news-102412-star-citizen-kills-kickstarter-new-99-360s-and-zynga-screws-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19fb773e-f712-472d-b444-43f1c752f775/sm/video_thumbnail_3283586.jpg","duration":180,"publication_date":"2012-10-25T08:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-007-legends-and-hell-yeah","changefreq":"weekly","video":[{"title":"S1:E15 - Out of the Box - 007 Legends and Hell Yeah!","description":"Today on Out of the Box, we're checking out the new 007 Legends and the Halloween appropriate Hell Yeah! Do these have what it takes to be the next great Metroidvania and Bond titles? Find out!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-007-legends-and-hell-yeah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/844a19a8-f0a2-452f-b9fe-e3cb5643925f/sm/video_thumbnail_3271516.jpg","duration":2250,"publication_date":"2012-10-24T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-102412","changefreq":"weekly","video":[{"title":"S1:E438 - SideScrollers Extended 10/24/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-102412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e857c89-b02f-4b99-9b12-5fc93992bb3a/sm/video_thumbnail_3247421.jpg","duration":388,"publication_date":"2012-10-23T20:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"teacher-of-the-year\"","changefreq":"weekly","video":[{"title":"S1:E87 - SideScrollers - \"Teacher of the Year\"","description":"Get the Audio version here - http://bit.ly/TdqFXa\r\n\tSideScrollers Extended can be watched here - http://bit.ly/RTAndS\r\n \r\nDrake Plays Slender For the First Time - http://bit.ly/Rvlv68\r\n\t11 Reasons We HATE DLC - http://bit.ly/TQq4aL\r\n\t11 Reasons We LOVE DLC - http://bit.ly/TGd07F\r\n\tReview - Happy Wars - http://bit.ly/RSASoN\r\n\tReview - Rock Band Blitz - http://bit.ly/Thd6YO\r\n\tOut of the Box - PlayStation All-Stars Battle Royale Private Beta - http://bit.ly/RKZ67E\r\n\tVideo Game Vault - Sparkster: Rocket Knight Adventures 2 - http://bit.ly/RFpFrI\r\n\tOut of the Box - Dragon Ball Z Kinect and Fable the Journey - http://bit.ly/RGeGRS\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n\t\r\n\tFollow us on Twitter!?\r\n\tCraig - https://twitter.com/StutteringCraig?\r\n\tChad - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"teacher-of-the-year\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda84318-5fc5-4158-9edf-e9178aaeaed8/sm/video_thumbnail_3251081.jpg","duration":3127,"publication_date":"2012-10-23T20:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102312-ea-reveals-wii-u-online-details-moh-gets-a-major-patch-sony-got-hacked-again","changefreq":"weekly","video":[{"title":"S1:E293 - Hard News 10/23/12 - EA Reveals Wii U Online Details, MoH Gets a MAJOR Patch, Sony Got Hacked Again","description":"The biggest video game stories of the day brought to you in three minutes or less.","player_loc":"https://roosterteeth.com/embed/hard-news-102312-ea-reveals-wii-u-online-details-moh-gets-a-major-patch-sony-got-hacked-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/422c4ac6-5221-45b9-a8cf-4335f4d816f7/sm/video_thumbnail_3251176_0.png","duration":167,"publication_date":"2012-10-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-congos-caper","changefreq":"weekly","video":[{"title":"S1:E377 - VGV - Congo's Caper","description":"MONKEY BUTTS.","player_loc":"https://roosterteeth.com/embed/vgv-congos-caper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f05b2e5c-d223-4602-a4e0-8f38edd94cf4/sm/video_thumbnail_3046051.jpg","duration":123,"publication_date":"2012-10-23T10:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drake-plays-slender-for-the-first-time","changefreq":"weekly","video":[{"title":"S1:E437 - Drake Plays Slender For the First Time","description":"Drake hates scary things, so who better to play Slender for the Halloween season?","player_loc":"https://roosterteeth.com/embed/drake-plays-slender-for-the-first-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2729bf55-2c43-42c8-9190-91309249e06a/sm/video_thumbnail_3114406.jpg","duration":271,"publication_date":"2012-10-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102212-anarchy-reigns-release-date-modders-smash-ps-all-stars-and-nintendo-catches-a-pirate","changefreq":"weekly","video":[{"title":"S1:E292 - Hard News 10/22/12 - Anarchy Reigns release date, Modders smash PS All Stars, and Nintendo catches a pirate!","description":" \r\nAnarchy Reigns has a release date, modders smash PS All Stars into Brawl, and Nintendo catches a pirate today on Hard News!\r\n \r\nAnarchy Reigns release date - http://www.screwattack.com/news/anarchy-reigns-coming-january-2013-discount-title\r\n \r\nPS All Stars mashed with Brawl - http://www.screwattack.com/news/wtf-mods-put-psasbr-my-ssbb\r\n \r\nNintendo catches a pirate - http://www.screwattack.com/news/pirate-rakes-962000-selling-counterfeit-wii-and-ds-games-nintendo-finds-and-sues-him\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Http://www.Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Http://www.Twitter.com/ScrewAttack\r\nFacebook Chad - https://www.facebook.com/profile.php?id=100001681156302&fref=ts\r\nFacebook ScrewAttack - Http://www.Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Http://www.Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-102212-anarchy-reigns-release-date-modders-smash-ps-all-stars-and-nintendo-catches-a-pirate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea639777-4313-42c7-bd6a-e108976a4f49/sm/video_thumbnail_3215991.jpg","duration":141,"publication_date":"2012-10-22T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101912-lol-pro-fapping-stream-the-wii-u-messes-up-voice-chat-pikmin-3-delayed","changefreq":"weekly","video":[{"title":"S1:E291 - Hard News 10/19/12 - LoL Pro Fapping Stream, the Wii U Messes Up Voice Chat, Pikmin 3 Delayed","description":"Wii U will only support voice chat in “select” games using third-party headsets - http://www.screwattack.com/news/wii-u-will-only-support-voice-chat-%E2%80%9Cselect%E2%80%9D-games-using-third-party-headsets\r\nPikmin 3 delayed until after Wii U launch window - http://www.screwattack.com/news/pikmin-3-delayed-until-after-wii-u-launch-window\r\n[NSFW] League of Legend pro faps off to porn during Twitch live-stream - http://www.screwattack.com/news/nsfw-league-legend-pro-faps-porn-during-twitch-live-stream\r\n\r\n\t ","player_loc":"https://roosterteeth.com/embed/hard-news-101912-lol-pro-fapping-stream-the-wii-u-messes-up-voice-chat-pikmin-3-delayed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55ba21a8-43c2-46fc-a23e-b461c763d468/sm/video_thumbnail_3123441_0.jpg","duration":149,"publication_date":"2012-10-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/is-this-the-greatest-or-worst-promo-weve-ever-done","changefreq":"weekly","video":[{"title":"S1:E436 - Is this the greatest or worst promo we've ever done?","description":"This week's deal is the Beer T Combo Pack and its 20% off! Get your engines going with this great piece of ScrewAttack merch for only $27.98!\r\nwww.ScrewAttackStore.com","player_loc":"https://roosterteeth.com/embed/is-this-the-greatest-or-worst-promo-weve-ever-done","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b004384-89cc-4b82-abbc-19f644ab7e4b/sm/video_thumbnail_3124526.jpg","duration":54,"publication_date":"2012-10-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-mario-bros-the-commentary-part-5","changefreq":"weekly","video":[{"title":"S1:E435 - Super Mario Bros.: The Commentary [Part 5]","description":"Trust the fungus.\r\n\r\n\tThere was a Goomba rave last episode.  Did you miss it?\r\n\r\n\tMARATHOOOOOOOOOON!","player_loc":"https://roosterteeth.com/embed/super-mario-bros-the-commentary-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9e04c26-a392-4e2e-8f0b-8ff82af8722a/sm/video_thumbnail_2965411.jpg","duration":1540,"publication_date":"2012-10-18T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-35","changefreq":"weekly","video":[{"title":"2014:E35 - The Great Warthog Caper","description":"Rooster Teeth's new Warthog is taken around on a joy ride.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4816fe09-edd9-4cf1-a1a2-dd21e96c1b51/sm/ep9423.jpg","duration":102,"publication_date":"2014-07-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-barenaked-ladies-did-i-say-that-out-loud-official-music-video","changefreq":"weekly","video":[{"title":"MV:E5 - Barenaked Ladies - \"Did I Say That Out Loud?\" (Official Music Video)","description":"New recordings available on iTunes at http://Smarturl.it/BNLJuly1\n\nBarenaked Ladies recently digitally released The Long Weekend EP in Canada & a deluxe bonus edition of 'Grinning Streak' in the US! Both feature previously unreleased recordings plus acoustic renditions of select album tracks. BNL head back to the States on their cross country summer tour starting July 17th in Stamford,Ct and wraping up on September 14th. Special VIP tour packages are available. For more information on VIP Packages and tour dates visit http://www.barenakedladies.com.","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-barenaked-ladies-did-i-say-that-out-loud-official-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/345baed8-d8f0-4f79-bf04-b84499d14e2f/sm/1461653-1439911854718-Screen_Shot_2015-08-17_at_5.13.56_PM.png","duration":151,"publication_date":"2014-07-17T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-barenaked-ladies-did-i-say-that-out-loud-official-music-video","changefreq":"weekly","video":[{"title":"S5:E13 - Barenaked Ladies - \"Did I Say That Out Loud?\" (Official Music Video)","description":"Barenaked Ladies recently digitally released The Long Weekend EP in Canada & a deluxe bonus edition of 'Grinning Streak' in the US! Both feature previously unreleased recordings plus acoustic renditions of select album tracks. BNL head back to the States on their cross country summer tour starting July 17th in Stamford,Ct and wraping up on September 14th. Special VIP tour packages are available. For more information on VIP Packages and tour dates visit http://www.barenakedladies.com.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-barenaked-ladies-did-i-say-that-out-loud-official-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8048ef48-871c-45cf-9fb0-55010ed7ac30/sm/ep9417.jpg","duration":151,"publication_date":"2014-07-17T14:50:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-39","changefreq":"weekly","video":[{"title":"2014:E39 - Bound 4 (Implicit)","description":"Parody of Seth Rogen and James Franco's parody of Kanye West's Bound 2: http://bit.ly/1nxDvdQ first shown at RTX 2014.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ed67ee5-ae10-4758-9f28-65fb6e1a3491/sm/ep9412.jpg","duration":107,"publication_date":"2014-07-16T19:21:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-38","changefreq":"weekly","video":[{"title":"2014:E38 - Behind the Blue Outtakes","description":"Check out alternate takes and deleted dialogue from the RTAA #150, \"Behind the Blue.\" Lock up your panther and enjoy these great outtakes!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2027580a-702d-494f-9c1d-233538eea8db/sm/ep9410.jpg","duration":127,"publication_date":"2014-07-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-280","changefreq":"weekly","video":[{"title":"2014:E280 - RT Podcast #280","description":"RT Discusses Nasty Ballpits","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-280","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5583,"publication_date":"2014-07-15T21:30:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-10","changefreq":"weekly","video":[{"title":"S12:E10 - Episode 10: Cloak and Dagger","description":"S12:E10 - Episode 10: Cloak and Dagger","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afeeebd9-0a5a-4f39-be14-5195d3387441/sm/ep9402.jpg","duration":603,"publication_date":"2014-07-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-31","changefreq":"weekly","video":[{"title":"2014:E31 - RTX 2014","description":"2014:E31 - RTX 2014","player_loc":"https://roosterteeth.com/embed/rt-life-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/727041de-644d-4507-9819-a462c0502f9e/sm/ep9398.jpg","duration":93,"publication_date":"2014-07-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-rtx-edition-1","changefreq":"weekly","video":[{"title":"S2:E187 - Sponsor Cut: Cards Against Humanity (RTX Edition)","description":"Join the gang as they play Cards Against Humanity at the RTX 2014 Convention with the Game Grumps! Featuring Arin Hanson, Danny Avidan, Barry Kramer and Ross O'Donovan.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-rtx-edition-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca736031-3c27-41da-92b4-7a0792cca6b2/sm/ep9395.jpg","duration":3806,"publication_date":"2014-07-11T17:49:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-rtx-edition","changefreq":"weekly","video":[{"title":"S2:E186 - Sponsor Cut: Cards Against Humanity (RTX Edition)","description":"Join the gang as they play Cards Against Humanity at the RTX 2014 Convention with the Game Grumps! Featuring Arin Hanson, Danny Avidan, Barry Kramer and Ross O'Donovan.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-rtx-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2edfd3c-1825-4be9-94b4-5cfc15880639/sm/ep9394.jpg","duration":3473,"publication_date":"2014-07-11T17:44:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-33","changefreq":"weekly","video":[{"title":"2014:E33 - Gavin or Google #1: Breaking Babies","description":"In RTAA #154, Burnie and the gang play \"Gavin or Google,\" the guessing game sweeping the Internet. Burnie gives a short phrase to both Gavin and the Google search engine, and Barbara and Gus must guess who returned which phrase, Gavin or Google","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc3bd20d-3e7c-4ade-badb-eb05faf42697/sm/ep9384.jpg","duration":129,"publication_date":"2014-07-09T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-279","changefreq":"weekly","video":[{"title":"2014:E279 - RT Podcast #279","description":"RT live from RTX 2014","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-279","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5234,"publication_date":"2014-07-08T20:57:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-9","changefreq":"weekly","video":[{"title":"S12:E9 - Episode 9: The Federal Army of Chorus","description":"S12:E9 - Episode 9: The Federal Army of Chorus","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ab83d0e-3077-40eb-8bc2-f45373c68259/sm/ep9372.jpg","duration":881,"publication_date":"2014-07-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-28","changefreq":"weekly","video":[{"title":"2014:E28 - Mustard Bet","description":"2014:E28 - Mustard Bet","player_loc":"https://roosterteeth.com/embed/rt-life-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07da9144-2d00-4965-b21d-b5f62a607bd4/sm/ep9370.jpg","duration":92,"publication_date":"2014-07-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-28","changefreq":"weekly","video":[{"title":"2014:E28 - Long Title, Weird Girl","description":"In RTAA #153, Burnie talks about the ridiculous panel name he and Gus came up with, and Geoff talks about an old girlfriend who had strange characteristics.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2270677b-94a7-4378-8f9f-bfaaaf8be54c/sm/ep9355.jpg","duration":97,"publication_date":"2014-07-02T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-278","changefreq":"weekly","video":[{"title":"2014:E278 - RT Podcast #278","description":"RT Discusses Dinosaur Ears","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-278","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6292,"publication_date":"2014-07-01T20:39:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-psa-rtx-2014","changefreq":"weekly","video":[{"title":"S1:E40 - PSA: RTX 2014","description":"S1:E40 - PSA: RTX 2014","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-psa-rtx-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9a31b6f-c3b9-42e8-b3d9-a55d80262cd4/sm/ep9346.jpg","duration":253,"publication_date":"2014-06-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-22","changefreq":"weekly","video":[{"title":"2014:E22 - Cleaning the Fridge","description":"Gus endeavors to clean a fridge, while Blaine takes care of a pestering tenant.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab6a4c5f-bc36-4ac8-ad0b-130c894c15a5/sm/ep9343.jpg","duration":80,"publication_date":"2014-06-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-1-2","changefreq":"weekly","video":[{"title":"S2:E185 - Sponsor Cut: AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on June 20, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-ah-game-night-live-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65955695-21a7-4d0b-b44c-363735386a8f/sm/ep9339.jpg","duration":4116,"publication_date":"2014-06-27T14:48:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-quick-draw-with-patrick-with-gavin","changefreq":"weekly","video":[{"title":"S2:E184 - Quick Draw with Patrick! How To Draw Gavin","description":"In this installment of Quick Draw, Patrick shows you how to draw Gavin!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-quick-draw-with-patrick-with-gavin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a07f5c2-6745-4f98-8657-f1971cedbe3d/sm/ep9338.jpg","duration":1139,"publication_date":"2014-06-27T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-22","changefreq":"weekly","video":[{"title":"2014:E22 - Burnie's Wedding Pranks","description":"In RTAA #152, Burnie talks about some pranks he tried to pull during Michael and Lindsay's wedding.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bde97d2f-e6be-478c-bc67-b696d7096c42/sm/ep9329.jpg","duration":96,"publication_date":"2014-06-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-277","changefreq":"weekly","video":[{"title":"2014:E277 - RT Podcast #277","description":"RT Discusses Tricky Borders","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-277","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5870,"publication_date":"2014-06-25T01:42:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-8","changefreq":"weekly","video":[{"title":"S12:E8 - Episode 8: Thin Ice","description":"S12:E8 - Episode 8: Thin Ice","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b050db65-06a8-4c77-94dc-870dfce268b2/sm/ep9320.jpg","duration":414,"publication_date":"2014-06-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-14","changefreq":"weekly","video":[{"title":"S2:E183 - Sponsor Play: Halo Pt. 14","description":"Our duo fight wave after wave of Flood while Kyle psychoanalyses a dream Miles had the other day.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a7389bd-0677-4d5a-beb2-e51706a15686/sm/ep9308.jpg","duration":1891,"publication_date":"2014-06-19T17:25:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-13","changefreq":"weekly","video":[{"title":"S2:E182 - Sponsor Play: Halo Pt. 13","description":"Kyle takes a timeout to look at Reddit and leaves Miles to fight ALL OF THE FLOOD BY HIMSELF! Better start running.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a9ac8a4-bb7c-4635-b38b-316ae1a6e301/sm/ep9304.jpg","duration":1289,"publication_date":"2014-06-18T20:15:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-giant-bubbles-popping-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E29 - Giant Bubbles Popping in Slow Motion","description":"In this video, Gav and Dan introduce you to the mesmerizing and colorful world of bubbles popping 100 times slower than you can see with your eye.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-giant-bubbles-popping-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b428eb08-6717-46a4-a968-5f16793810dd/sm/ep9302.jpg","duration":191,"publication_date":"2014-06-18T19:54:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-15","changefreq":"weekly","video":[{"title":"2014:E15 - Grand Theft Cola","description":"In RTAA #151, Brandon learns a lesson about hot cars and soda cans, and Miles and Gus try to play a game of golf in GTA Online.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5efc29c-dda0-40e7-9f49-8518f5fcbd97/sm/ep9300.jpg","duration":86,"publication_date":"2014-06-18T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-276","changefreq":"weekly","video":[{"title":"2014:E276 - RT Podcast #276","description":"RT Discusses Which Way Is Up","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-276","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5822,"publication_date":"2014-06-17T21:28:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-12","changefreq":"weekly","video":[{"title":"S2:E181 - Sponsor Play: Halo Pt. 12","description":"Kyle and Miles make a new friend, they also find the Flood.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0130639c-bdd4-4e3a-99ac-395b8e4a2f0c/sm/ep9296.jpg","duration":1437,"publication_date":"2014-06-17T17:07:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-7","changefreq":"weekly","video":[{"title":"S12:E7 - Episode 7: Self Assessment","description":"S12:E7 - Episode 7: Self Assessment","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26fe16e4-3deb-4437-94ef-8210b28ba2f3/sm/ep9289.jpg","duration":401,"publication_date":"2014-06-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-11","changefreq":"weekly","video":[{"title":"S2:E180 - Sponsor Play: Halo Pt. 11","description":"Kyle and Miles go through Assault on the Control Room again and again and again and somehow end up on the topic of orgies...","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53a8fe2f-61d6-4f46-88d4-4fe2829c9791/sm/ep9288.jpg","duration":1141,"publication_date":"2014-06-16T17:36:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-10","changefreq":"weekly","video":[{"title":"S2:E179 - Sponsor Play: Halo Pt. 10","description":"Next time you get bored ask your buddy: does he use socks or kleenex","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4abebb8-1b35-431c-b110-b02d8e863fe0/sm/ep9286.jpg","duration":847,"publication_date":"2014-06-14T22:55:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-9","changefreq":"weekly","video":[{"title":"S2:E178 - Sponsor Play: Halo Pt. 9","description":"Remember kids: don't annoy your friends, especially when they have a tank.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2766ebc-d89f-44e9-a812-a001de38ee44/sm/ep9285.jpg","duration":1078,"publication_date":"2014-06-14T22:52:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-11","changefreq":"weekly","video":[{"title":"2014:E11 - Chest Waxing for \"Men\"","description":"Brandon and Chris make good on their word to wax their chests if the Lazer Team Fundraising Campaign hit $1,000,000. Click here to donate.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2649a527-7abf-49e6-b3ee-5ef8d36a5a78/sm/ep9284.jpg","duration":123,"publication_date":"2014-06-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-8","changefreq":"weekly","video":[{"title":"S2:E177 - Sponsor Play: Halo Pt. 8","description":"Kyle and Miles are back by popular demand to continue their escapades ( and team killing) in Halo C.E. Anniversary.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32918db9-6630-4e01-a367-24ff4231f400/sm/ep9277.jpg","duration":944,"publication_date":"2014-06-13T17:26:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut","changefreq":"weekly","video":[{"title":"S2:E53 - Sponsor Cut","description":"Join Kyle, Miles, Kerry, Patrick, and Michael in the third installment of Cards Against Humanity.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a336017-e204-4479-96a1-4321a1e72c69/sm/ep9276.jpg","duration":5668,"publication_date":"2014-06-13T17:25:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-9","changefreq":"weekly","video":[{"title":"2014:E9 - Behind the Blue","description":"In RTAA #150, Burnie encounters problems on the set of Animated Adventures.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69c9a97b-9b0c-4af0-b08d-d5db1b1c0ed6/sm/ep9266.jpg","duration":225,"publication_date":"2014-06-11T21:04:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-275","changefreq":"weekly","video":[{"title":"2014:E275 - RT Podcast #275","description":"RT Discusses Lunar Wars","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-275","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5791,"publication_date":"2014-06-10T20:51:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-6","changefreq":"weekly","video":[{"title":"S12:E6 - Episode 6: Reflections","description":"S12:E6 - Episode 6: Reflections","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/241dcb9a-1234-46c5-8794-c0153ec44897/sm/ep9249.jpg","duration":477,"publication_date":"2014-06-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-6","changefreq":"weekly","video":[{"title":"2014:E6 - Rooster Teeth Reacts to 1 Million Raised for Lazer Team Campaign","description":"You can donate at: http://bit.ly/1phgi3x\r\nThank you so much, we love you!","player_loc":"https://roosterteeth.com/embed/rt-life-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c80d822b-6627-4ecf-aabc-b66b82de630e/sm/ep9246.jpg","duration":98,"publication_date":"2014-06-09T06:48:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-4","changefreq":"weekly","video":[{"title":"2014:E4 - Rooster Teeth Movie Fundraising Campaign on IndieGogo","description":"You can donate by clicking here. \r\nThank you so much.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48636948-00d9-482c-b681-299040ed36ea/sm/ep9244.jpg","duration":130,"publication_date":"2014-06-06T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-super-fight-edition","changefreq":"weekly","video":[{"title":"S2:E52 - Sponsor Cut: Super Fight Edition","description":"Join Kyle, Gus, Blaine, Barbara, and Kerry as they play Super Fight.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-super-fight-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b54f5d3-d4ca-4d3b-81a0-98d9042b5703/sm/ep9239.jpg","duration":3808,"publication_date":"2014-06-06T16:17:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-2","changefreq":"weekly","video":[{"title":"2014:E2 - Gus the Social Media Hostage","description":"In RTAA #149, Gus rents a storage unit, but the employees force him to write a review about them on Google Maps.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/474cf786-7202-455f-898b-430406afe1e1/sm/ep9231.jpg","duration":124,"publication_date":"2014-06-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-274","changefreq":"weekly","video":[{"title":"2014:E274 - RT Podcast #274","description":"RT Discusses Tech Bugs","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-274","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6284,"publication_date":"2014-06-03T21:35:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-5","changefreq":"weekly","video":[{"title":"S12:E5 - Episode 5: Training Daze","description":"S12:E5 - Episode 5: Training Daze","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95b5ee9d-0f2d-4bf2-a1c9-738f34c21f2d/sm/ep9220.jpg","duration":391,"publication_date":"2014-06-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014","changefreq":"weekly","video":[{"title":"2014:E1 - PVC Pipe Jousting","description":"Gus names Kerry as his champion in a joust to the death.","player_loc":"https://roosterteeth.com/embed/rt-life-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee1730c6-b08a-4d0d-8a13-a899e1437e5a/sm/ep9218.jpg","duration":161,"publication_date":"2014-05-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-ah-game-night-live-rockstar","changefreq":"weekly","video":[{"title":"S2:E51 - AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on May 16, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-ah-game-night-live-rockstar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d7c71c7-c066-445e-95aa-cd5e6d7f2c8f/sm/ep9211.jpg","duration":7353,"publication_date":"2014-05-30T17:48:49.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-trials-fusion","changefreq":"weekly","video":[{"title":"S2:E7 - Trials Fusion","description":"Can two regular guys navigate a real-life Trials Fusion course Get ready for one hell of a ride! Check out more on Trials Fusion by clicking here and unlock a free in-game bike upgrade on the Trials Facebook page (US only): by clicking here.","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-trials-fusion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13745c7f-92af-4ba2-b608-e77a707b99b9/sm/ep9206.jpg","duration":569,"publication_date":"2014-05-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-46","changefreq":"weekly","video":[{"title":"2014:E46 - Old Geoff, New Suit","description":"In RTAA #148, Millie worries that Geoff is getting too old, and Gus tries to buy a suit.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/278d95c5-91c5-4fdb-b3cc-7d4e29d816b3/sm/ep9198.jpg","duration":90,"publication_date":"2014-05-28T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-273","changefreq":"weekly","video":[{"title":"2014:E273 - RT Podcast #273","description":"RT Discusses Gav's Retirement","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-273","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5087,"publication_date":"2014-05-27T23:27:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-psa-get-a-job","changefreq":"weekly","video":[{"title":"S1:E39 - PSA: Get a Job","description":"Grif and Simmons give you the down-low on how to survive in today's job market.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-psa-get-a-job","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff3a89ff-f384-4816-b258-95b95b8a9cd1/sm/ep9186.jpg","duration":192,"publication_date":"2014-05-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-37","changefreq":"weekly","video":[{"title":"2014:E37 - Kerry Rides Atop the Sky and Barbara Plays Cats","description":"Kerry rides the boards of death while Barbara quiets the crowd with skills.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b276cbd5-2ae4-4fab-94d4-c179e9fca851/sm/ep9189.jpg","duration":122,"publication_date":"2014-05-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-gavin-and-michael","changefreq":"weekly","video":[{"title":"S2:E50 - Quick Draw with Patrick! (featuring Gavin and Michael)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn. This week's victims are Gavin and Michael!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-gavin-and-michael","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1613c3ae-18f7-4d36-b607-7de0eeb005d4/sm/ep9182.jpg","duration":1597,"publication_date":"2014-05-23T14:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-40","changefreq":"weekly","video":[{"title":"2014:E41 - Hope vs. Starvation","description":"In RTAA #147, Gavin wonders if the hope of food can stave off starving to death.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1572dac-8c60-4c4c-bc13-2f3f12daf638/sm/ep9170.jpg","duration":90,"publication_date":"2014-05-21T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-272","changefreq":"weekly","video":[{"title":"2014:E272 - RT Podcast #272","description":"RT Discusses Faking It","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-272","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5785,"publication_date":"2014-05-20T22:53:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-4","changefreq":"weekly","video":[{"title":"S12:E4 - Episode 4: Teaming with Problems","description":"S12:E4 - Episode 4: Teaming with Problems","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05710ab2-08b5-40cb-bd08-75662457a920/sm/ep9160.jpg","duration":406,"publication_date":"2014-05-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-33","changefreq":"weekly","video":[{"title":"2014:E33 - Brandon's Bull Ride & Ghost Mating Dance","description":"In this week's RT Life, Brandon tries to show off his cowboy skills in Las Vegas and fails miserably. Also, the PacMan ghosts perform a dance ritual on the set of Immersion.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb97d39-1854-4949-9f82-c7d34db40847/sm/ep9158.jpg","duration":73,"publication_date":"2014-05-17T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-mario-kart","changefreq":"weekly","video":[{"title":"S2:E6 - Mario Kart","description":"Can running over a banana really spin out a speeding go-kart and how do you pull off the perfect start in Mario Kart\nThank you to the City of Austin for its generous support of this production. Filmed on location in Austin, Texas, U.S.A.","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5331b24-a14e-4300-9559-4dca5e56b90c/sm/ep9152.jpg","duration":580,"publication_date":"2014-05-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-7","changefreq":"weekly","video":[{"title":"S2:E49 - Sponsor Play: Halo Pt. 7","description":"Kyle trades medical stories with Miles while they look for the Silent Cartographer.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5eacb11-af7b-46a0-93e7-0c5ec4443e78/sm/ep9142.jpg","duration":1455,"publication_date":"2014-05-15T14:43:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-34","changefreq":"weekly","video":[{"title":"2014:E34 - Burnie's Neighbor Encounter","description":"In RTAA #146, Burnie shows Matt around his neighborhood, but Matt doesn't have nice things to say about his neighbor's house","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bebee93a-be3b-46f7-878c-c5861235245b/sm/ep9136.jpg","duration":79,"publication_date":"2014-05-14T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-6","changefreq":"weekly","video":[{"title":"S2:E48 - Sponsor Play: Halo Pt.6","description":"Miles and Kyle get lost in a VERY confusing Covenant ship","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5948dcbb-959e-47af-87a8-007d3950ad89/sm/ep9131.jpg","duration":888,"publication_date":"2014-05-14T14:52:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-271","changefreq":"weekly","video":[{"title":"2014:E271 - RT Podcast #271","description":"RT Discusses Normal Humans","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-271","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5917,"publication_date":"2014-05-13T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-5","changefreq":"weekly","video":[{"title":"S2:E47 - Sponsor Play: Halo Pt.5","description":"To be fair, I was being as modest as possible.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a0dc846-5ec9-4302-83a3-49efd2bd4254/sm/ep9126.jpg","duration":1252,"publication_date":"2014-05-13T18:32:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-swim-cap-trick-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E28 - Swim Cap Trick in Slow Motion","description":"Summer is well on the way! With it, Gav and Dan show you how to save time when you bung on your swimming cap. Then, they show you what it looked like in lovely slow motion. Kind of defeats the purpose of doing it fast in the first place, to be honest.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-swim-cap-trick-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/943f0513-8bd6-4cd1-a012-6a72e67693e4/sm/ep9124.jpg","duration":260,"publication_date":"2014-05-13T16:36:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-3","changefreq":"weekly","video":[{"title":"S12:E3 - Episode 3: Something Else Entirely","description":"S12:E3 - Episode 3: Something Else Entirely","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86034e9a-af81-4e41-9e06-1a141bd64869/sm/ep9114.jpg","duration":453,"publication_date":"2014-05-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-4","changefreq":"weekly","video":[{"title":"S2:E46 - Sponsor Play: Halo Pt.4","description":"Miles is \"over run\" by Covenant forces. Kyle talks to himself in the future.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f910ae3-10f9-41eb-8af1-bccfbebf5d26/sm/ep9120.jpg","duration":1301,"publication_date":"2014-05-12T21:54:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-3","changefreq":"weekly","video":[{"title":"S2:E45 - Sponsor Play: Halo Pt.3","description":"Miles has no idea who Kurt Russell is. Kyle is the Architect.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e22c8d09-b6d4-4591-86a4-aac299d44045/sm/ep9111.jpg","duration":1138,"publication_date":"2014-05-11T22:53:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-2","changefreq":"weekly","video":[{"title":"S2:E44 - Sponsor Play: Halo Pt.2","description":"Miles tells Kyle the real reason why Master Chief is the sole survivor of the escape pod crash.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e08d5217-1695-4604-a8fa-8b5a9cd26fd2/sm/ep9110.jpg","duration":1007,"publication_date":"2014-05-10T21:52:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-26","changefreq":"weekly","video":[{"title":"2014:E26 - Miles & Jordan to the Rescue","description":"In this week's RT Life, Miles and Jordan go head to head with the forces of nature to save their lost friend, Shane. Also, Chris scares Kara at the grocery store.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e84019ec-c149-4153-a058-7c29afe57939/sm/ep9108.jpg","duration":124,"publication_date":"2014-05-10T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-play-halo-pt-1","changefreq":"weekly","video":[{"title":"S2:E43 - Sponsor Play - Halo Pt.1","description":"Kyle and Miles try to sing the Halo theme. Spoiler Alert, it doesn't sound great.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-play-halo-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/254fd754-29c0-499f-9c69-9793ed9ab90e/sm/ep9107.jpg","duration":1061,"publication_date":"2014-05-09T17:22:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-2","changefreq":"weekly","video":[{"title":"S2:E42 - Sponsor Cut: Cards Against Humanity #2","description":"After a successful first game, Kyle unites Kerry, Ray, Michael, and Lindsay to play another game of Cards Against Humanity.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2c512bd-d4de-4db9-a84c-86705a9466ea/sm/ep9103.jpg","duration":5517,"publication_date":"2014-05-09T13:42:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-26","changefreq":"weekly","video":[{"title":"2014:E26 - Miles & The Mouse Mishmash","description":"In RTAA #145, when it's discovered a mouse has taken residence in his apartment, Miles and his roommates try to catch it.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ff4b126-31f3-4b4b-a1f4-1da75ee579bc/sm/ep9090.jpg","duration":110,"publication_date":"2014-05-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-270","changefreq":"weekly","video":[{"title":"2014:E270 - RT Podcast #270","description":"RT Takes a Whack at Cinco de Michael","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-270","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6490,"publication_date":"2014-05-06T20:58:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-2","changefreq":"weekly","video":[{"title":"S12:E2 - Episode 2: Hit and Run","description":"S12:E2 - Episode 2: Hit and Run","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea6dcab1-b69e-4305-8c92-dc620d99a8e1/sm/ep9082.jpg","duration":428,"publication_date":"2014-05-06T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-20","changefreq":"weekly","video":[{"title":"2014:E20 - Adam's Prank & Team Nice Dynamite Race","description":"Adam decides to give the other Adam a nice welcome back surprise, while Michael and Gavin show off their Michael Jackson moves.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c46a903d-2197-4c04-83c8-24c13b1dd26b/sm/ep9080.jpg","duration":117,"publication_date":"2014-05-03T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-pacman","changefreq":"weekly","video":[{"title":"S2:E5 - Pacman","description":"Just how effective is a top-down point of view in a real life Pacman level","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-pacman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42c46a34-2ecf-4e59-b964-31d1655606fe/sm/ep9069.jpg","duration":435,"publication_date":"2014-05-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-19","changefreq":"weekly","video":[{"title":"2014:E19 - The Shock Bus","description":"In RTAA #144, Burnie talks about a shocking game he would play with locals south of the border, and why he one time spontaneously flipped the bird at a school bus.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/185cf6e2-4e37-4fcb-a5cb-13a6ae2dfd6d/sm/ep9065.jpg","duration":85,"publication_date":"2014-04-30T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-269","changefreq":"weekly","video":[{"title":"2014:E269 - RT Podcast #269","description":"RT Debuts on the Stage 5 Set","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-269","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6066,"publication_date":"2014-04-29T21:04:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-12-episode-1","changefreq":"weekly","video":[{"title":"S12:E1 - Episode 1: Oh Captains, My Captains","description":"S12:E1 - Episode 1: Oh Captains, My Captains","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-12-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70b53cd2-da34-4c2f-8e6b-ebf55d471ae4/sm/ep9057.jpg","duration":327,"publication_date":"2014-04-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-16","changefreq":"weekly","video":[{"title":"2014:E16 - Behind Macrowave Time Machine and Kara's Bugs","description":"We go behind the scenes of the latest Rooster Teeth short and Kara gets a pretty gross package in the mail.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a2e34c3-4ac1-4e8d-86c9-8d9725eb9d6a/sm/ep9055.jpg","duration":248,"publication_date":"2014-04-27T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-lindsay","changefreq":"weekly","video":[{"title":"S2:E41 - Quick Draw with Patrick! (featuring Lindsay)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn.This week's victim is Lindsay!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-lindsay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab73ee70-906e-4729-84e2-33019d8a2193/sm/ep9052.jpg","duration":2503,"publication_date":"2014-04-25T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-004","changefreq":"weekly","video":[{"title":"S2:E40 - Sponsor Cut: Journal Entry 004","description":"Audio journal recovered from the planet Chorus. RvB Season 12 begins on April 28th!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-004","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8b72dcf-b4ba-493e-b63b-1adad2105319/sm/ep9051.jpg","duration":96,"publication_date":"2014-04-25T14:42:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-macrowave-time-machine","changefreq":"weekly","video":[{"title":"S5:E8 - Macrowave Time Machine","description":"Chris inadvertently creates a time machine and wrecks history. You can pre-order Wolfenstein: The New Order here.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-macrowave-time-machine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df20840c-9e2c-4e81-b3e3-82dd70f74a07/sm/ep9041.jpg","duration":409,"publication_date":"2014-04-24T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-12","changefreq":"weekly","video":[{"title":"2014:E13 - Dan Drinks, Gavin Hoodwinks","description":"In RTAA #143, Dan orders a bunch of girly drinks at dinner, thinking they are free. Gus and Gavin re-enact an internet conversation he had with a girl.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/758256af-09f0-4ef7-9345-d2b2320cf6a6/sm/ep9038.jpg","duration":98,"publication_date":"2014-04-23T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-268","changefreq":"weekly","video":[{"title":"2014:E268 - RT Podcast #268","description":"RT Moves On Up","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-268","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6338,"publication_date":"2014-04-22T22:06:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-cannon-firing-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E27 - Cannon Firing in Slow Motion","description":"Gav and Dan are given a cannon by Captain Morgan White and swiftly make use of it by blasting a pyramid of drinks.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-cannon-firing-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee28c28c-64a2-4625-9bf2-53ed7950f8d0/sm/ep9036.jpg","duration":226,"publication_date":"2014-04-22T19:20:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-8","changefreq":"weekly","video":[{"title":"2014:E8 - Cooking with Burnie & Joel's Squirrel","description":"Burnie invites everyone over for a Game of Thrones feast while Joel is plagued with a squirrel car infestation.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7866534-1759-4f08-817e-5a431e136cd2/sm/ep9023.jpg","duration":125,"publication_date":"2014-04-20T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-moving-day","changefreq":"weekly","video":[{"title":"S2:E39 - Sponsor Cut: Moving Day","description":"Kyle and Miles pack up RvB to head to Stage 5, meanwhile Michael and Gavin have an early morning discussion on the set of Immersion Fruit Ninja.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-moving-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d77f56ae-ad41-44ea-9248-6e1fa31ce240/sm/ep9021.jpg","duration":227,"publication_date":"2014-04-18T14:45:02.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-fruit-ninja","changefreq":"weekly","video":[{"title":"S2:E4 - Fruit Ninja","description":"This week on Immersion, we test if training for Fruit Ninja using real martial arts skills will make our lab rats better samurais! For a free audio book of your choice, click here!","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-fruit-ninja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e650626-70bf-4278-a622-41e1aeb165b0/sm/ep9020.jpg","duration":433,"publication_date":"2014-04-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity","changefreq":"weekly","video":[{"title":"S2:E38 - Sponsor Cut: Cards Against Humanity","description":"Kyle, Kerry, Miles, Barbara, and Ray play Cards Against Humanity and cross their fingers they won't be unemployed by the end of it.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cards-against-humanity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a153907a-5ea5-47f8-a17e-083a1d95a256/sm/ep9014.jpg","duration":3502,"publication_date":"2014-04-17T14:40:49.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-003","changefreq":"weekly","video":[{"title":"S2:E37 - Sponsor Cut: Journal Entry 003","description":"Audio journal recovered from the planet Chorus. RvB Season 12 begins on April 28th!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-003","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d927b5a2-3a77-4ef0-b9a5-f936e2319097/sm/ep9011.jpg","duration":97,"publication_date":"2014-04-17T14:12:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-6","changefreq":"weekly","video":[{"title":"2014:E6 - Curses, Cookies, & Atoms","description":"In RTAA #142, Chris curses a baby, Jack eats some cookies, and Burnie smashes some atoms.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74bd12f2-650b-4cbd-8c67-9611b448ba66/sm/ep9001.jpg","duration":78,"publication_date":"2014-04-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-267","changefreq":"weekly","video":[{"title":"2014:E267 - RT Podcast #267","description":"RT Discusses Old Pee","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-267","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5865,"publication_date":"2014-04-15T21:58:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-5","changefreq":"weekly","video":[{"title":"2014:E5 - Brandon's Joy Ride","description":"Brandon learns about drifting, while Miles, Jordan, and Monty play games. Enter for a chance to win a trip for you and a friend to one of the world's most epic comic and entertainment events in San Diego. Learn more at Scion.com","player_loc":"https://roosterteeth.com/embed/rt-life-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bab716aa-b1cc-4431-9710-d7ed0cb35d90/sm/ep8990.jpg","duration":81,"publication_date":"2014-04-14T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-002","changefreq":"weekly","video":[{"title":"S2:E36 - Sponsor Cut: Journal Entry 002","description":"Audio journal recovered from the planet Chorus. RvB Season 12 begins on April 28th!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-002","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b76d2164-5058-4a88-8e1a-6c9b4f9031ef/sm/ep8983.jpg","duration":114,"publication_date":"2014-04-11T17:34:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-split-screen-behind-the-scenes","changefreq":"weekly","video":[{"title":"S2:E3 - Split Screen - Behind the Scenes","description":"In this behind the scenes video of Immersion: Split Screen, Gavin and Michael explore the arena.","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-split-screen-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/526f9c10-6625-4fa6-8751-7a92c661dff8/sm/ep8978.jpg","duration":161,"publication_date":"2014-04-11T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014","changefreq":"weekly","video":[{"title":"2014:E1 - Matt Wants Fanfare","description":"In RTAA #141, Matt is disappointed with the lack of fanfare with his lunch.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17289856-f4ca-4770-b1d4-fc1afb1af9bf/sm/ep8974.jpg","duration":90,"publication_date":"2014-04-09T17:03:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-266","changefreq":"weekly","video":[{"title":"2014:E266 - RT Podcast #266","description":"RT discuss Immersion and the premiere of Game of Thrones","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-266","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6073,"publication_date":"2014-04-08T21:02:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-39","changefreq":"weekly","video":[{"title":"2014:E39 - Gavin and the Smelly Goop","description":"Barbara has something Disgusting for Gavin. Also, butts.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/990f92fb-16bf-4cce-9288-907d070ede23/sm/ep8958.jpg","duration":80,"publication_date":"2014-04-05T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-001","changefreq":"weekly","video":[{"title":"S2:E35 - Sponsor Cut: Journal Entry 001","description":"Audio journal recovered from the planet Chorus. RvB Season 12 begins on April 28th!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-journal-entry-001","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ef51e85-1a2f-4870-ba73-e7a61ccc225f/sm/ep8954.jpg","duration":89,"publication_date":"2014-04-04T16:35:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-razors-n-tasers-off-topic-0-3","changefreq":"weekly","video":[{"title":"PE:E3 - Razors n' Tasers - #0.3","description":"Join Michael Jones, Lindsay Jones, Trevor Collins and Matt Bragg as they discuss Extra Life, Cloudberry Kingdom, Lindsay's RT job interview and more on this episode of Off Topic! This episode episode originally aired on November 13, 2015.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-razors-n-tasers-off-topic-0-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e5d22be-b515-401a-b00f-d841fd413b25/sm/2013912-1447449768371-OT_03_-_THUMB.jpg","duration":7397,"publication_date":"2015-11-14T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-rise-of-the-tomb-raider","changefreq":"weekly","video":[{"title":"2015:E48 - Rise of the Tomb Raider","description":"Joel and Adam set out as Lara Croft to raid some tombs. While doing so Joel talks about his Australia trip and and amputated penises.","player_loc":"https://roosterteeth.com/embed/how-to-2015-rise-of-the-tomb-raider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f278553-7c45-42f5-903a-259402927853/sm/2013912-1447449918617-TombThumb.jpg","duration":2220,"publication_date":"2015-11-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-square-brawl-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E334 - Square Brawl - The Rooster Teeth Podcast Crew","description":"Gus, Barbara, Miles, and Blaine show off why its hip to be square this week as they beat each other up in Square Brawl. Its like Super Smash Bros Brawl, except not seven years old and trapped behind Nintendos Lets Play shenanigans. This is brawling uncaged! Ooh! That would be fun. Podcast Crew cage match. Everything goes. Maybe next week Probably not next week.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-square-brawl-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0379513c-1b5d-476e-bcc0-92d90769e188/sm/2013912-1447456901601-SquareBrawl_PodcastCrew_Thumb.png","duration":838,"publication_date":"2015-11-14T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-halo","changefreq":"weekly","video":[{"title":"2015:E333 - Halo 5: Guardians - Co-op Part 12 - FINALE","description":"The thrilling conclusion of Halo 5 is here. What happens to Chief in the end I know I'd be watching to find out right now if I were you.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89515345-ee31-46b9-b72c-f3253963b023/sm/2013912-1447430002469-HALO_Finale.jpg","duration":3934,"publication_date":"2015-11-13T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-black-ops-3-achievement-hunter-vs-the-world","changefreq":"weekly","video":[{"title":"2015:E39 - Black Ops 3 - Achievement Hunter VS The World","description":"Can the AH Crew triumph over Lag & Hacks in Call of Duty: Black Ops 3 The World doesn't know what's about to hit them!","player_loc":"https://roosterteeth.com/embed/vs-2015-black-ops-3-achievement-hunter-vs-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/017a7265-8708-4e4c-b1f4-65a437a9d565/sm/2013912-1447367579765-ahtw_thumb.jpg","duration":860,"publication_date":"2015-11-13T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-gta-v-the-shocker","changefreq":"weekly","video":[{"title":"2015:E70 - GTA V - The Shocker","description":"Two in the pink, AH in the stink.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-gta-v-the-shocker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5bc4610-dfd1-4b19-a2ca-ca8efb281772/sm/2013912-1447373196046-the_shocker_thumb.jpg","duration":760,"publication_date":"2015-11-13T00:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-fallout-4-fetch-the-cryolator","changefreq":"weekly","video":[{"title":"2015:E22 - Fallout 4 - Fetch the Cryolator","description":"Ryan & Jeremy show you a quick way to get a powerful gun early in the campaign!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-fallout-4-fetch-the-cryolator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee476039-73a7-4d0b-98aa-e6e327d54e7f/sm/2013912-1447363225892-FETCH_THUMB.jpg","duration":137,"publication_date":"2015-11-12T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-181-hit-list-x","changefreq":"weekly","video":[{"title":"2015:E332 - Minecraft - Episode 181 - Hit List X","description":"Hunt mobs, kill mobs, mark them off your HIT LIST...what could possibly go wrong","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-181-hit-list-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/833a519a-e94b-4eda-ad37-9cc6adec68cc/sm/2013912-1447355641420-mc_hitx_thumb.jpg","duration":2508,"publication_date":"2015-11-12T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-rocket-league","changefreq":"weekly","video":[{"title":"2015:E45 - Rocket League","description":"Apparently, Franco doesnt do a damn thing this week as Jack and Geoff discuss Five Facts about Rocket League. \n\nOn a completely unrelated note, I still dont like Jack. ~F\n\nP.S. Thanks for your help, Psyonix! You guys rock!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-rocket-league","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9506ee56-3607-405b-b7bc-942060753c36/sm/2013912-1447346854610-FF_RL.jpg","duration":252,"publication_date":"2015-11-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-269","changefreq":"weekly","video":[{"title":"2015:E46 - Volume 269","description":"Jack and Geoff casually discuss fails and glitches from Assassins Creed Syndicate, Grand Theft Auto V, and Halo 5 Guardians in Fails of the Weak Volume 269.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-269","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/382ed485-6553-4088-8e0a-b8fea3612251/sm/2013912-1447346336585-Fails269-Big.jpg","duration":159,"publication_date":"2015-11-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-assassin-s-creed-syndicate-horse-catapult","changefreq":"weekly","video":[{"title":"2015:E69 - Assassin's Creed Syndicate - Horse Catapult","description":"Matt and Jack show off a rarely seen assassin technique, the Horse Catapult. I apologize if you or someone you love is a horse.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-assassin-s-creed-syndicate-horse-catapult","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98f05d4e-57fa-4172-a765-8b9d5c70a161/sm/2013912-1447284777240-horse_thumb.jpg","duration":250,"publication_date":"2015-11-11T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-rainbow-six-siege-beta-terrorist-hunt-attempt-2","changefreq":"weekly","video":[{"title":"2015:E331 - Rainbow Six Siege BETA - Terrorist Hunt (Attempt 2)","description":"Alright, last time didn't work out too well, so the AH crew regrouped and strategized! It probably won't help them much, though.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-rainbow-six-siege-beta-terrorist-hunt-attempt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e37979c9-5888-4800-bf8c-9add403700a6/sm/2013912-1447265809596-th2_thumb.jpg","duration":1791,"publication_date":"2015-11-11T16:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-black-ops-3-co-op","changefreq":"weekly","video":[{"title":"2015:E330 - Call of Duty Black Ops 3 Co-op","description":"Achievement Hunter takes on the all new realistic mode in Call of Duty Black Ops 3. As it turns out, it's pretty realistic.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-black-ops-3-co-op","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f96b92c-1240-4967-b420-a97993fde4ec/sm/2013912-1447197903372-ccoopblackops_thumb.jpg","duration":2400,"publication_date":"2015-11-10T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-11","changefreq":"weekly","video":[{"title":"2015:E329 - Halo 5: Guardians - Co-op Part 11","description":"Join us in part 11 of what seems like a never ending adventure. Be intrigued. Be frightened. BE AMAZED. Geoff is the real MVP.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd42633e-d336-4e6a-a5da-f1428f0a02a7/sm/2013912-1447198492286-halo5_coop11.jpg","duration":2134,"publication_date":"2015-11-10T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-alien-blaster-fallout-4","changefreq":"weekly","video":[{"title":"2015:E21 - Fallout 4 - Alien Blaster","description":"Jeremy and Geoff show you where to find the most powerful weapon in Fallout 4... that doesn't fire a miniature nuke.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-alien-blaster-fallout-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a2e234a-4edc-4493-91d6-5cdd2575cade/sm/2013912-1447173394972-AlienThumb.jpg","duration":273,"publication_date":"2015-11-10T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-all-bobblehead-locations-fallout-4","changefreq":"weekly","video":[{"title":"2015:E20 - Fallout 4 - All Bobblehead Locations","description":"Jeremy shows you where you can perfect your bobblehead collection in Fallout 4, while simultaneously grabbing 2 achievements. What could be better Check the timestamps below for specific bobbleheads in this video: \n\nStrength - 0:17\n\nPerception - 1:21\n\nEndurance - 2:00\n\nCharisma - 3:00\n\nIntelligence - 3:54\n\nAgility - 4:31\n\nLuck - 5:24\n\nBarter - 6:11\n\nBig Guns - 6:45\n\nEnergy Weapons - 7:38\n\nExplosives - 8:25\n\nLockpick - 8:59\n\nMedicine - 9:40\n\nMelee - 10:27\n\nRepair - 11:28\n\nScience - 12:23\n\nSmall Guns - 13:20\n\nSneak - 14:01\n\nSpeech - 14:42\n\nUnarmed - 15:42","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-all-bobblehead-locations-fallout-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2511b83-2669-44bb-a22e-d241f703b1b7/sm/2013912-1447131399973-Bobblehead_Thumb.jpg","duration":904,"publication_date":"2015-11-10T04:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-beardless-jack-ahwu-for-november-9-th-2015-290","changefreq":"weekly","video":[{"title":"2015:E44 - Beardless Jack! - AHWU for November 9th, 2015 (#290)","description":"Thanks to the generosity of the Rooster Teeth community, now we have to work with the walking thumb himself, Beardless Jack, until he can get some hair back on that face. Missed Extra Life You can still donate to our team at https://www.extra-life.org/team/roosterteeth || Vid of week: http://achievementhunter.com/episode/lets-play-let...","player_loc":"https://roosterteeth.com/embed/ahwu-2015-beardless-jack-ahwu-for-november-9-th-2015-290","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1579d560-69df-4886-9e76-77537a062751/sm/2013912-1447121270112-AHWU_thumb.jpg","duration":524,"publication_date":"2015-11-10T03:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-220","changefreq":"weekly","video":[{"title":"2015:E328 - WWE 2K16","description":"Geoff VS Jack VS Ryan VS Michael VS Gavin VS Jeremy. Ladder match!!!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-220","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bef4e6f8-5464-42f6-8f68-b614e54c60d3/sm/2013912-1447100742040-wwe_thumb.jpg","duration":1954,"publication_date":"2015-11-09T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-the-lost-tapes","changefreq":"weekly","video":[{"title":"2015:E70 - The Lost Tapes","description":"After the famed AH and Funhaus visit to House of Torment, a series of lost tapes were found in the woods behind the dumpster behind the haunted house. This is the footage that was recovered from them.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-the-lost-tapes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ac02c00-c39f-453d-ad37-f87daeaff0fa/sm/2013912-1447094729326-LostTapes_thumb.jpg","duration":138,"publication_date":"2015-11-09T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-rainbow-six-siege-beta-terrorist-hunt","changefreq":"weekly","video":[{"title":"2015:E69 - Grab Bag - Rainbow Six: Siege BETA - Terrorist Hunt","description":"You expected Achievement Hunter to not have outtakes THINK AGAIN! Let the fail montage begin! || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-rainbow-six-siege-beta-terrorist-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7502691-a8ea-48ce-8bac-df8b2db1a4df/sm/2013912-1447096223741-LostTapes_thumb.jpg","duration":307,"publication_date":"2015-11-09T19:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-london-adventures","changefreq":"weekly","video":[{"title":"2015:E68 - AH-dventures in London","description":"Jack interviews Assassin's Creed: Syndicate developers and explores London! Pip pip, Cheerio!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-london-adventures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e1708e7-3cc3-4d67-ae44-be068b4ba8f1/sm/2013912-1446852933582-jack_london_trip.jpg","duration":263,"publication_date":"2015-11-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-slasher","changefreq":"weekly","video":[{"title":"2015:E327 - GTA V - Slasher","description":"The boys check out the new GTA V Halloween Surprise update in the new gametype Slasher!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-slasher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/480deb24-b646-4085-9830-78d930840af0/sm/2013912-1446853130477-GTA_V_Slasher_Thumbnail.jpg","duration":1514,"publication_date":"2015-11-08T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-creative-director-here-off-topic-0-2","changefreq":"weekly","video":[{"title":"PE:E2 - Creative Director, Here - #0.2","description":"Join Michael Jones, Geoff Ramsey, Gavin Free and Ryan Haywood as they discuss Promotions, Parenting, and Call of Duty on this episode of Off Topic! This episode originally aired on November 6, 2015.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-creative-director-here-off-topic-0-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df2f5277-8c82-427a-ada6-b7d83f7877c3/sm/2013912-1446881932530-OT_2_thumb.jpg","duration":6719,"publication_date":"2015-11-07T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-resident-evil","changefreq":"weekly","video":[{"title":"2015:E47 - Resident Evil","description":"Adam and Joel play Resident Evil HD Remastered Edition. Then they realize they suck at it, and decide to play some other Resident Evils. Also, the video is sideways at first. Thats on purpose.","player_loc":"https://roosterteeth.com/embed/how-to-2015-resident-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/009bedde-0973-4935-a096-8f681e388375/sm/2013912-1446852077841-RESTHUMB.jpg","duration":1924,"publication_date":"2015-11-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E326 - Halo 5 - The Rooster Teeth Podcast Crew","description":"Burnie, Gavin, and Gus show off their MLG-level Halo skills in Warzone multiplayer. Then Michael shows up and ruins everything for everyone.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce078bf-aec5-44c8-ae32-d945ec2a6fa4/sm/2013912-1446851691991-Halo5_Podcast_Thumb.png","duration":1231,"publication_date":"2015-11-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-10","changefreq":"weekly","video":[{"title":"2015:E325 - Halo 5: Guardians - Co-op Part 10","description":"Team Osiris is back in action! With THE ANSWER in hand, can they grab some extra Achievements while they save the universe","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-part-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/216d6afa-757c-4195-8c99-02b3bba46b23/sm/2013912-1446841412546-halocoop10_thumb.jpg","duration":1325,"publication_date":"2015-11-07T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-9","changefreq":"weekly","video":[{"title":"2015:E324 - Halo 5: Guardians - Co-op Part 9","description":"{Incoherent screaming}","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d242d48-4698-4b5b-9429-6c463fa5e170/sm/2013912-1446832989835-halo5_coop9_thumb.jpg","duration":2590,"publication_date":"2015-11-06T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-black-ops-3-zombies-shadows-of-evil","changefreq":"weekly","video":[{"title":"2015:E323 - Black Ops 3: Zombies - Shadows of Evil","description":"Geoff, Michael, Ryan, and Jeremy hop into Call of Duty: Black Ops 3's new Zombies mode \"Shadows of Evil\"!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-black-ops-3-zombies-shadows-of-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7e51774-4a84-4474-b15b-30e4535af885/sm/2013912-1446842162205-shadowsofevil_thumb.jpg","duration":1485,"publication_date":"2015-11-06T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-keep-talking-and-nobody-explodes-funhaus","changefreq":"weekly","video":[{"title":"2015:E322 - Keep Talking and Nobody Explodes - Funhaus","description":"Keep talking and nobody explodes, especially with a well-oiled and capable team like Funhaus! Welcome to team building exercise 2015.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-keep-talking-and-nobody-explodes-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4675c9ad-902b-438f-b7a0-169856876268/sm/2013912-1446778276945-FH_Bomb_Thumbnail.jpg","duration":1485,"publication_date":"2015-11-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-268","changefreq":"weekly","video":[{"title":"2015:E45 - Volume 268","description":"In Fails of the Weak Volume 268, Geoff and Jack discuss station wagons, Mike Kroon, and Halo 5. Fails and glitches are from Assassins Creed Syndicate, Grand Theft Auto 5, and Halo 5 Guardians.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-268","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c11aaad-6487-4d3e-823e-a0b04c7f7b3d/sm/2013912-1446745397675-Fail268-Big.jpg","duration":169,"publication_date":"2015-11-05T17:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-180-there-is-no-learning-curve-part-3","changefreq":"weekly","video":[{"title":"2015:E321 - Minecraft Episode 180 - There is no Learning Curve [Part 3]","description":"Ryan, Geoff, and Michael once again take on Harold's wacky puzzles, will they finally accept that there IS NO LEARNING CURVE, or will they triumph over adversity!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-180-there-is-no-learning-curve-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa405fc6-3192-44cd-b5b2-63f6da24d8cc/sm/2013912-1446669149058-lpmc_nolearningcurve_part3_thumb.jpg","duration":2131,"publication_date":"2015-11-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-livestream-highlights-destiny-court-of-oryx","changefreq":"weekly","video":[{"title":"2015:E67 - Livestream Highlights - Destiny: Court of Oryx","description":"Michael, Geoff, Jack, Gavin, and Ryan (kind of) play the Court of Oryx in Destiny on their livestream. This is a summary of what happened. \n\nTo join in on the livestreams yourself, make sure to be there on\n\nhttp://gaming.youtube.com/achievementhunter/live","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-livestream-highlights-destiny-court-of-oryx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5557056a-016c-4262-9229-997303f249ac/sm/2013912-1446678551550-DESTINY_thumb.jpg","duration":292,"publication_date":"2015-11-04T23:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-sploosh-splat-and-bmxxx-in-gtav-grab-bag-4","changefreq":"weekly","video":[{"title":"2015:E66 - Grab Bag #4","description":"Reach on in. Go on, it's totally cool. Rummage around. Feel those Those are some precious, never-before-seen moments from GTAV, including Sploosh, Splat and BMXXX! What are they doing in here, you ask Well, it's obvious. You've entered: The Grab Bag. || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-sploosh-splat-and-bmxxx-in-gtav-grab-bag-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c168349-485a-4bf4-9c54-add94f0eefed/sm/2013912-1446665525512-grabbag_thumb.jpg","duration":260,"publication_date":"2015-11-04T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-cloudberry-kingdom-part-12","changefreq":"weekly","video":[{"title":"2015:E320 - Cloudberry Kingdom Part 12","description":"The Cloudberry crew is back! How many levels will they clear before submitting to their failure The answers are within...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-cloudberry-kingdom-part-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca5e3ce-7f80-4db6-8c25-c2ba748cb020/sm/2013912-1446591272017-cloudberrykingdom_thumb.jpg","duration":2515,"publication_date":"2015-11-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-8","changefreq":"weekly","video":[{"title":"2015:E319 - Halo 5: Guardians - Co-op Part 8","description":"Spartans never fall in battle, they just 'Chumbawamba' \" from the support room.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5255143d-6949-4ed5-8c40-ad53afacaf7b/sm/2013912-1446587885398-halo5_coop8_thumb.jpg","duration":2136,"publication_date":"2015-11-03T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-assassin-s-creed-syndicate-frogger","changefreq":"weekly","video":[{"title":"2015:E68 - Assassin's Creed Syndicate - Frogger","description":"Achievement Hunter takes a journey to the past to recreate a game that'll be made in the future.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-assassin-s-creed-syndicate-frogger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ece52e-a923-4052-a875-226b46300a4e/sm/2013912-1446572231519-ttd_acs_frogger_thumb.jpg","duration":496,"publication_date":"2015-11-03T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-bidiots","changefreq":"weekly","video":[{"title":"2015:E318 - Bidiots","description":"Geoff, Jack, Ryan, Michael, Jeremy, and Gavin bet on some amazing artwork. Who will make the biggest profit, and who will be left in severe debt with some really crappy art","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-bidiots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29a0386c-5e11-4629-b211-b41ae88f4e75/sm/2013912-1446571024961-LP_Bidiots.jpg","duration":2416,"publication_date":"2015-11-03T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-co-op-part-7","changefreq":"weekly","video":[{"title":"2015:E317 - Halo 5: Guardians - Co-op Part 7","description":"Achievement Hunter pushes forward in their play through of Halo 5!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-co-op-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d448a8f-8e2a-4cd7-b15e-85562945ea71/sm/2013912-1446566294462-halo5_coop7_thumb.jpg","duration":2858,"publication_date":"2015-11-03T15:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-two-man-tornado-ahwu-for-november-2-nd-2015-289","changefreq":"weekly","video":[{"title":"2015:E43 - Two-Man Tornado - AHWU for November 2nd, 2015 (#289)","description":"Geoff left to go build birdhouses with the other Rooster Teeth managers, so Michael steps up to the big leagues to read all this week's games. Don't forget to join us this Saturday for Extra Life and be a part of the team at https://www.extra-life.org/team/roosterteeth \n\nVid of week: https://www.youtube.com/watchv=SIFRW2ltqOE \n\nCommunity vid: https://www.youtube.com/watchv=-JPvHBitOYk","player_loc":"https://roosterteeth.com/embed/ahwu-2015-two-man-tornado-ahwu-for-november-2-nd-2015-289","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d2c52b1-7225-40ff-97c1-5892a9db1402/sm/2013912-1446509279452-ahwu_thumb.jpg","duration":487,"publication_date":"2015-11-03T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-halo-5-sand-monster","changefreq":"weekly","video":[{"title":"2015:E9 - Halo 5 - Sand Monster","description":"Jeremy and Ryan take a look at a really cool easter egg on the Halo 5 Multiplayer map The Rig. Stay off the sand!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-halo-5-sand-monster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2c96b4d-6e7e-42df-81c8-1e92aff638bb/sm/2013912-1446505550052-Halo5_SandMonster_EasterEgg.jpg","duration":140,"publication_date":"2015-11-02T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-gta-v-bmxxx","changefreq":"weekly","video":[{"title":"2015:E67 - GTA V - BMXXX","description":"Ryan is Mr. Congeniality","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-gta-v-bmxxx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da966271-c8d5-4058-a0c4-1ee89e852321/sm/2013912-1446496782186-GTAV_Splat_Thumbnail.jpg","duration":771,"publication_date":"2015-11-02T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-rainbow-six-siege-beta-terrorist-hunt","changefreq":"weekly","video":[{"title":"2015:E316 - Rainbow Six Siege BETA - Terrorist Hunt","description":"Geoff and his \"Elite\" crew gear up to take on Terrorist Hunt in Rainbow Six Siege! I'll let you in on a little secret, \"Elite\" is in quotes for a very good reason.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-rainbow-six-siege-beta-terrorist-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ba78d6f-5329-4633-8fdd-c7d3eb5497e1/sm/2013912-1446486558435-lp_r6terroristhunt_thumb.jpg","duration":1849,"publication_date":"2015-11-02T17:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-assassin-s-creed-iii","changefreq":"weekly","video":[{"title":"2015:E44 - Assassin?s Creed III","description":"Jack and Michael talk about Assassins Creed III in this weeks Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-assassin-s-creed-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d53e771d-5ea5-4acf-b4df-3f646821014b/sm/2013912-1446407761403-FF_AC_3.jpg","duration":240,"publication_date":"2015-11-01T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-6","changefreq":"weekly","video":[{"title":"2015:E315 - Halo 5: Guardians - Co Op Part 6","description":"Geoff, Ryan, Gavin, and Jeremy are back and now on the planet Genesis. Now under the command of Master Chief, they should be better and more unstoppable than ever... right","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26144f6a-cb31-4a75-af53-e8c65201ba1c/sm/1461653-1446342002566-halocoop_part6_Thumb.jpg","duration":2148,"publication_date":"2015-11-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-gta-v-splat-x","changefreq":"weekly","video":[{"title":"2015:E314 - GTA V - Splat with Funhaus","description":"Funhaus is in town so naturally the AH crew take them to great heights just to jump out of helicopters and dodge planes.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-gta-v-splat-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3a044f3-b4d3-4d01-966f-f0a0a3af44b2/sm/1461653-1446341808476-GTAV_Splat_Thumbnail.jpg","duration":1623,"publication_date":"2015-11-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2015-mountain-monsters-01","changefreq":"weekly","video":[{"title":"PE:E1 - Mountain Monsters - #0.1","description":"Join Michael Jones, Geoff Ramsey, Jack Pattillo and Jeremy Dooley as they discuss AdBlock, Ghostbusters, and the hit TV show Mountain Monsters on the premiere episode of Off Topic! This episode episode originally aired on October 30, 2015.","player_loc":"https://roosterteeth.com/embed/off-topic-the-achievement-hunter-podcast-2015-mountain-monsters-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/196d015f-2287-41d5-a366-2720a1b2f588/sm/2013912-1446260743508-OT01_-_THUMB.jpg","duration":6138,"publication_date":"2015-10-31T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-wolfenstein-the-old-blood","changefreq":"weekly","video":[{"title":"2015:E46 - Wolfenstein The Old Blood","description":"Joel and Adam are playing Wolfenstein and kill some Nazis. Also, there is robot circumcision.","player_loc":"https://roosterteeth.com/embed/how-to-2015-wolfenstein-the-old-blood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65dfbbac-7b41-416e-8381-39866b596049/sm/2013912-1446237769731-WolfThumb.jpg","duration":3229,"publication_date":"2015-10-31T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-co-op-part-5","changefreq":"weekly","video":[{"title":"2015:E313 - Halo 5: Guardians - Co-op Part 5","description":"NOW IS THE TIME!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-co-op-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62508917-779e-4f93-81c0-665027284309/sm/2013912-1446256410453-halocoop_part5_Thumb.jpg","duration":2037,"publication_date":"2015-10-31T01:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-15-guardians","changefreq":"weekly","video":[{"title":"2015:E19 - Halo 5 Intel Guide: Mission 15: Guardians","description":"It's been a long journey. But it's time for Team Little Britain to say goodbye... and enjoy your 40 gamerscore!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-15-guardians","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16052618-03bf-4c3c-a877-40964e4139c2/sm/2013912-1446247224571-Halo5_Intel_Mission15.jpg","duration":293,"publication_date":"2015-10-31T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-14-the-breaking","changefreq":"weekly","video":[{"title":"2015:E18 - Halo 5 Intel Guide: Mission 14: The Breaking","description":"This is number 14. Nearing the end. Only 5 intel, only 5!!! Can you believe it!!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-14-the-breaking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06ac095f-5936-4b5b-a51f-e2ca55a9a89f/sm/2013912-1446246153975-Halo5_Intel_Mission14.jpg","duration":116,"publication_date":"2015-10-30T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-13-genesis","changefreq":"weekly","video":[{"title":"2015:E17 - Halo 5 Intel Guide: Mission 13: Genesis","description":"Jeremy is nearing his breaking point. He can't even talk anymore... but there's still intel needing to be found.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-13-genesis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c908d53-6550-4b3e-b71a-28528e48e8fe/sm/2013912-1446245966145-Halo5_Intel_Mission13.jpg","duration":355,"publication_date":"2015-10-30T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-12-battle-of-sunaion","changefreq":"weekly","video":[{"title":"2015:E16 - Halo 5 Intel Guide: Mission 12: Battle of Sunaion","description":"Jeremy and Gavin are finishing up the intel guides, with episode 12. Only three more to go.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-12-battle-of-sunaion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d40d4ba0-95b7-49ad-9eec-fb3bdd1f7bb1/sm/2013912-1446243361514-Halo5_Intel_Mission12.jpg","duration":263,"publication_date":"2015-10-30T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-a-h-f-h-survive-house-of-torment","changefreq":"weekly","video":[{"title":"2015:E65 - AH & FH Survive House of Torment","description":"Smell that That's the smell of fear. Fear and farts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-a-h-f-h-survive-house-of-torment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78a655e1-71da-4d01-a662-c8adcf9cf689/sm/1461653-1446234469215-hot_thumb.jpg","duration":168,"publication_date":"2015-10-30T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-co-op-part-4","changefreq":"weekly","video":[{"title":"2015:E312 - Halo 5: Guardians - Co-op Part 4","description":"The journey through Halo 5 continues! Locke has almost caught up to Master Chief and is ready to bring the pain. Watch their epic heavy fighting now!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-co-op-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b4b5101-8fb3-41fb-bb00-41537deda1c2/sm/1461653-1446183646760-halo5_coop4_thumb.jpg","duration":2721,"publication_date":"2015-10-30T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-part-3","changefreq":"weekly","video":[{"title":"2015:E311 - Halo 5: Guardians - Co Op Part 3","description":"Geoff, Ryan, Gavin, and Jeremy decide to hoof it in Mission 3 of Halo 5: Guardians. No aiming down sight, no vehicles, only skulls!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d28f57a7-46c0-4c05-b1b1-e9963554bc60/sm/2013912-1446132519929-halo5_coop3.jpg","duration":2486,"publication_date":"2015-10-30T02:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-11-before-the-storm","changefreq":"weekly","video":[{"title":"2015:E15 - Halo 5 Intel Guide: Mission 11: Before The Storm","description":"Gavin and Jeremy are in another walkie-talkie level. This time with 5 BRAND NEW INTEL ITEMS!!! WHERE DID THEY EVEN COME FROM!!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-11-before-the-storm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47cc6af4-139c-4a74-921e-bd6412389e41/sm/2013912-1446158031780-Halo5_Intel_Mission11.jpg","duration":170,"publication_date":"2015-10-29T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-10-enemy-lines","changefreq":"weekly","video":[{"title":"2015:E14 - Halo 5 Intel Guide: Mission 10: Enemy Lines","description":"Jeremy and Gavin VS The Kraken. They also get intel along the way.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-10-enemy-lines","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64c6716d-7867-41bb-ad97-d355ad3e40ec/sm/2013912-1446151169255-Halo5_Intel_Mission10.jpg","duration":325,"publication_date":"2015-10-29T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-ultra-street-fighter-i-v-complete-horror-pack","changefreq":"weekly","video":[{"title":"2015:E64 - Ultra Street Fighter IV - Complete Horror Pack","description":"Michael and Jack explore the \"Complete Horror Pack\" in Ultra Street Fighter IV and show off every character's Halloween costume!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-ultra-street-fighter-i-v-complete-horror-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63f89951-b000-46e0-8d94-96a24710182f/sm/2013912-1446148204214-completehorro_streetfighter_thumb.jpg","duration":171,"publication_date":"2015-10-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-9-alliance","changefreq":"weekly","video":[{"title":"2015:E13 - Halo 5 Intel Guide: Mission 9: Alliance","description":"Jeremy and Gavin join the Arbiter and show him where he left his favorite books.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-9-alliance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f291d33f-7d13-42e3-9960-5fe2bf7965c8/sm/2013912-1446147779928-Halo5_Intel_Mission9.jpg","duration":230,"publication_date":"2015-10-29T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-minecraft-naughty-trick-or-treat","changefreq":"weekly","video":[{"title":"2015:E66 - Minecraft - Naughty Trick or Treat","description":"The AH crew revisit the spooky Halloween map from last year to do a bit of trick or treating!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-minecraft-naughty-trick-or-treat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fba0c0fd-1f6e-4ccc-926d-2944a65018f6/sm/2013912-1446146668023-naughtytot_thumb.jpg","duration":487,"publication_date":"2015-10-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-8-swords-of-sanghelios","changefreq":"weekly","video":[{"title":"2015:E12 - Halo 5 Intel Guide: Mission 8: Swords of Sanghelios","description":"Still Gavin and Jeremy. Still Halo 5. Still Intel.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-8-swords-of-sanghelios","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe585309-7aaf-4bb0-a327-ee203dfc2be9/sm/2013912-1446146456203-Halo5_Intel_Mission8.jpg","duration":396,"publication_date":"2015-10-29T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-267","changefreq":"weekly","video":[{"title":"2015:E44 - Volume 267","description":"Jack and Geoff return for Fails of the Weak Volume 267 with an episode loaded with fails and glitches from Assassins Creed Syndicate, Call of Duty Black Ops II, Destiny, and Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-267","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/495e4a3a-4707-41f0-8329-343c0a037e3d/sm/2013912-1446141071123-Fails267-Big.jpg","duration":157,"publication_date":"2015-10-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-fright-night-achievement-hunter-s-best-scares","changefreq":"weekly","video":[{"title":"2015:E63 - Fright Night - Achievement Hunter's Best Scares","description":"A compilation of Achievement Hunter's best scares and reactions through the years; they're real knee slappers. Happy Halloween!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-fright-night-achievement-hunter-s-best-scares","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f403fd58-9b5e-4bc8-a8e3-a24d866fa6c1/sm/2013912-1446133813634-AH_Scare_Compilation_Thumbnail.jpg","duration":320,"publication_date":"2015-10-29T17:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-179-halloween-mashup-pack","changefreq":"weekly","video":[{"title":"2015:E310 - Minecraft Episode 179 - Halloween Mashup Pack","description":"Gavin, Ryan, Jeremy, Jack, and Michael explore the new Halloween Mashup Pack in a quest to find Jeremy a body!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-179-halloween-mashup-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12690317-f764-4330-88dc-2cb4310f92e2/sm/2013912-1446134718819-lpmc_Thumbs_halloween.jpg","duration":2302,"publication_date":"2015-10-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-19","changefreq":"weekly","video":[{"title":"2015:E309 - Let's Watch - Organ Trail with Funhaus","description":"Ryan, Jack, Jeremy, Bruce, and Adam take to the trail to see how long they can survive in a zombie outbreak.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62801dd4-9a99-47a0-b08c-c2d4a182376d/sm/2013912-1446064326246-lp_organtrail_thumb.jpg","duration":2049,"publication_date":"2015-10-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-destiny-festival-of-the-lost-event","changefreq":"weekly","video":[{"title":"2015:E62 - Destiny - Festival of the Lost Event","description":"Matt and Jeremy give a quick little tour of all the Halloween content added to Destiny this week.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-destiny-festival-of-the-lost-event","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/294f7a8b-de18-44d2-aa47-ca68016d9c97/sm/2013912-1446075423700-festival_ofthelost_thumb.jpg","duration":294,"publication_date":"2015-10-29T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-7-reunion","changefreq":"weekly","video":[{"title":"2015:E11 - Halo 5 Intel Guide: Mission 7: Reunion","description":"Gavy and Jeremy sitting in a tree... Grabbing I N T E L... wee","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-7-reunion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e1e0f7f-2206-46e4-b4e1-bafd3ec4b486/sm/2013912-1446074898592-Halo5_Intel_Mission7.jpg","duration":178,"publication_date":"2015-10-29T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guide-mission-6-evacuation","changefreq":"weekly","video":[{"title":"2015:E10 - Halo 5 Intel Guide: Mission 6: Evacuation","description":"Jeremy and Matt are in this time until Gavin gets back. Uh oh... he's back. Umm... more intel!!!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guide-mission-6-evacuation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfe243a3-9f33-4916-abd3-20578178c41a/sm/2013912-1446073525113-Halo5_Intel_Mission6.jpg","duration":170,"publication_date":"2015-10-28T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guides-mission-5-unconfirmed","changefreq":"weekly","video":[{"title":"2015:E9 - Halo 5 Intel Guide: Mission 5: Unconfirmed","description":"Team Little Britain is still on the same planet, but this time actually fighting enemies. Still... there is data to be found.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guides-mission-5-unconfirmed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c043734-03b4-432e-9cab-79f9e1867409/sm/2013912-1446062504949-Halo5_Intel_Mission5.jpg","duration":221,"publication_date":"2015-10-28T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guides-mission-4-meridian-station","changefreq":"weekly","video":[{"title":"2015:E8 - Halo 5 Intel Guide: Mission 4: Meridian Station","description":"Time for more Jeremy and Gavin getting intel in Meridian Station. Walking, talking, and grabbing data pads.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guides-mission-4-meridian-station","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a186c3f2-67c1-44e2-962b-89371f792bba/sm/2013912-1446060098755-Halo5_Intel_Mission4.jpg","duration":243,"publication_date":"2015-10-28T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guides-mission-3-glassed","changefreq":"weekly","video":[{"title":"2015:E7 - Halo 5 Intel Guide: Mission 3: Glassed","description":"Jeremy and Gavin are now on a mining planet looking for data pads and radio rocks. Yup.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guides-mission-3-glassed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbf17514-4ae7-498b-8b3d-8c7b47e82b67/sm/2013912-1446054354269-Halo5_Intel_Mission3.jpg","duration":183,"publication_date":"2015-10-28T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-skull-location-guide","changefreq":"weekly","video":[{"title":"2015:E6 - Halo 5 - Skull Location Guide","description":"Jeremy and Ryan show you the much sought after skulls in Halo 5: Guardians. Have fun!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-skull-location-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51351514-647a-4a95-b135-6a433d0a9181/sm/2013912-1445985347806-Halo5_Skulls_Guide.jpg","duration":817,"publication_date":"2015-10-27T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-halo-5-soccer-easter-egg","changefreq":"weekly","video":[{"title":"2015:E8 - Halo 5 - Soccer Easter Egg","description":"Jeremy and Matt take a look at a favorite in forge-makers around the world, and show you how to obtain the soccer ball during the Halo 5 campaign!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-halo-5-soccer-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddfb166b-0537-499a-ac26-956cef391733/sm/2013912-1445971731501-Halo5_Soccer_EasterEgg.jpg","duration":163,"publication_date":"2015-10-27T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guides-mission-2-blue-team","changefreq":"weekly","video":[{"title":"2015:E5 - Halo 5 Intel Guide: Mission 2 : Blue Team","description":"Jeremy and Gavin continue into the second level. Now they are Master Chief... and surprisingly... that makes things way harder.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guides-mission-2-blue-team","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee78dd1f-4200-4843-be07-7c1b083b4c2e/sm/2013912-1445970124701-Halo5_Intel_Mission2.jpg","duration":239,"publication_date":"2015-10-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-halo-5-intel-guides-mission-1-osiris","changefreq":"weekly","video":[{"title":"2015:E4 - Halo 5 Intel Guide: Mission 1 : Osiris","description":"Jeremy and Gavin begin their guides for all of the collectable intel in Halo 5: Guardians. Team Osiris... let's go!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-halo-5-intel-guides-mission-1-osiris","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/777369fb-c292-46bc-8f36-a6057cf567f7/sm/2013912-1445962689068-Halo5_Intel_Mission1.jpg","duration":240,"publication_date":"2015-10-27T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-co-op-s-p-o-i-l-e-r-s","changefreq":"weekly","video":[{"title":"2015:E308 - Halo 5: Guardians - Co Op Part 2","description":"Geoff, Ryan, Gavin, and Jeremy are back, but this time they are on Blue Team... but still call themselves Team Osiris. I don't know. One of them is Master Chief. That's all you need to be concerned about.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-co-op-s-p-o-i-l-e-r-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ac1ea7a-0f76-4c10-8325-3a4008a9a6c5/sm/2013912-1445878557349-halocoop_thumb_part2.jpg","duration":2476,"publication_date":"2015-10-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-halo-5-guardians-arena-multiplayer","changefreq":"weekly","video":[{"title":"2015:E307 - Halo 5: Guardians - Arena Multiplayer","description":"Ryan, Gavin, Jeremy, and Miles are the team of four sent in to take out the enemy spartans. Slayer, capture the flag, who cares! It could be any gametype and only the most skilled spartans will survive.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-halo-5-guardians-arena-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e38ee98-aefa-4876-a111-29a2bd5bed4d/sm/2013912-1445961593553-arena_mp_thumb.jpg","duration":1943,"publication_date":"2015-10-27T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-top-5-scary-games-of-2015","changefreq":"weekly","video":[{"title":"2015:E32 - Top 5 Scary Games of 2015","description":"A look back into what games made us (mostly Geoff) scream in 2015!","player_loc":"https://roosterteeth.com/embed/countdown-2015-top-5-scary-games-of-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a87e8f2-e835-482c-8dc4-784afd31ef4b/sm/2013912-1445885940083-top5_scarygames_thumb.jpg","duration":215,"publication_date":"2015-10-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-18","changefreq":"weekly","video":[{"title":"2015:E306 - Let's Watch - Halo 5: Guardians (Mission 2 - Blue Team)","description":"This Let's Watch is the full version of our featured video from the Halo 5 launch event!\n\nWe were super lucky and proud to be a part of Microsoft and 343's Halo 5 launch stream!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a6bddc2-d29a-4255-af40-df60286124fa/sm/2013912-1445881023996-LW_Halo5_thumb.jpg","duration":2463,"publication_date":"2015-10-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-big-nose-small-hops-a-h-w-u-for-october-26-th-2015-288","changefreq":"weekly","video":[{"title":"2015:E42 - Big Nose, Small Hops - AHWU for October 26th, 2015 (#288)","description":"The guys are so excited for Halo 5 this week that half of them skipped work to go wait in line for the midnight release. The rest stayed at the office just to film AHWU. Jeremy shows off his sweet skills, and Gavin gets ready for Halloween.\n\nClick and watch the Video of the Week and the Community Video of the Week!","player_loc":"https://roosterteeth.com/embed/ahwu-2015-big-nose-small-hops-a-h-w-u-for-october-26-th-2015-288","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee377db6-b573-4856-beec-b8cd7315940b/sm/2013912-1445897555627-ahwu288.jpg","duration":453,"publication_date":"2015-10-26T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-the-walking-dead-the-game-season-one","changefreq":"weekly","video":[{"title":"2015:E43 - The Walking Dead: The Game (Season One)","description":"Matt, Gavin, Ryan, and Miles give you Five Facts on The Walking Dead: The Game (Season One)!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-the-walking-dead-the-game-season-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db417b9-8c4d-4051-88ec-ac09067b38e6/sm/2013912-1445872281562-TWD_FF_Blood.jpg","duration":287,"publication_date":"2015-10-26T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-g-t-a-v-user-map-play-day","changefreq":"weekly","video":[{"title":"2015:E305 - GTA V - User Map Play Day","description":"AH runs through a collection of user created maps popular on the social club!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-g-t-a-v-user-map-play-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/303487d0-a482-42b3-8f96-dc1e644c787c/sm/2013912-1445872034181-lp_gtav_usermap_thumb.jpg","duration":1808,"publication_date":"2015-10-26T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-halo-5-guardians-co-op-s-p-o-i-l-e-r-s","changefreq":"weekly","video":[{"title":"2015:E304 - Halo 5: Guardians - Co Op [SPOILERS]","description":"Geoff, Ryan, Gavin, and Jeremy are locked, loaded, and ready to save the universe as they begin their Halo 5 Co Op playthrough!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-halo-5-guardians-co-op-s-p-o-i-l-e-r-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20612d7b-0c41-43e3-9088-04ee01022c3c/sm/2013912-1445631395167-halocoop_thumb.jpg","duration":2026,"publication_date":"2015-10-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-g-t-a-v-sploosh","changefreq":"weekly","video":[{"title":"2015:E65 - GTA V - Sploosh","description":"Someone shat on Geoff's puppy.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-g-t-a-v-sploosh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d7dbba-29f5-4bbe-b92a-bdff52d6c649/sm/2013912-1445626840243-sploosh_thumb_green_1024.jpg","duration":442,"publication_date":"2015-10-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-akiba-s-trip-2","changefreq":"weekly","video":[{"title":"2015:E45 - Akiba?s Trip 2","description":"Adam and Joel go on a virtual tour of Japan, complete with stealing peoples clothes and anime girls!","player_loc":"https://roosterteeth.com/embed/how-to-2015-akiba-s-trip-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f093dfa-770f-4f03-ab4c-47b23669d5d6/sm/2013912-1445641709110-AkibaThumb.jpg","duration":1236,"publication_date":"2015-10-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-depth-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E303 - Depth - The Rooster Teeth Podcast Crew","description":"This week, dry land isn't good enough for the Podcast Crew. Brandon, Blaine, Gus, and Adam Ellis take to the sea to scuba dive and also be sharks sometimes. Will Blaine be able to emotionally recover after Gus bites his legs off Will there be lots of Jaws references You'll only know by watching! Okay, maybe also by reading the comments section, but the comments may be lying to you. Who can you really trust. You know your eyes won't lie to you. Just watch it!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-depth-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d18cbeae-28ff-4a93-97f6-116ae9b5301e/sm/2013912-1445634677553-Depth_Podcast_LP_Thumb.png","duration":2568,"publication_date":"2015-10-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-keep-talking-and-nobody-explodes-39","changefreq":"weekly","video":[{"title":"2015:E21 - Keep Talking and Nobody Explodes Take 2","description":"Michael is back defusing more bombs with his pals. This time those pals are the Gents. Who's the best at bomb defusal Probably a trained professional, but these guys will have to do.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-keep-talking-and-nobody-explodes-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0d83386-31b0-457d-bd21-99810e00f5af/sm/2013912-1445630671352-pp_keeptalking_thumb.jpg","duration":1754,"publication_date":"2015-10-23T20:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-volume-266","changefreq":"weekly","video":[{"title":"2015:E43 - Volume 266","description":"Jack and Geoff are gone so Jeremy and Ryan take over Fails of the Weak Volume 266 featuring glitches and fails from Grand Theft Auto V, Halo The Master Chief Collection, Star Wars Battlefront Beta, Uncharted 3, and Witcher 3 Wild Hunt.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-volume-266","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6440edd2-2cdb-46f8-8465-2f8686c402d0/sm/2013912-1445551176230-Fails266-Big.jpg","duration":154,"publication_date":"2015-10-22T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-king-s-fall-raid-outtakes","changefreq":"weekly","video":[{"title":"2015:E61 - Grab Bag - King's Fall Raid Outtakes","description":"What did you miss in the recording of the King's Fall raid Time to find out! || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-king-s-fall-raid-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71426ab1-ee68-4be1-98cf-90633d34423d/sm/2013912-1445531056259-destiny_Grabbag_thumb.jpg","duration":524,"publication_date":"2015-10-22T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-minecraft-episode-178-story-mode","changefreq":"weekly","video":[{"title":"2015:E302 - Minecraft Episode 178 - Story Mode","description":"177 episodes later, Achievement Hunter is FINALLY finding out what Minecraft's story is!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-minecraft-episode-178-story-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0511cae-4b7b-4b46-a778-e6d88c3d8c05/sm/2013912-1445527483233-lpmc_storymode_thumb.jpg","duration":2929,"publication_date":"2015-10-22T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-watch-assassin-s-creed-syndicate","changefreq":"weekly","video":[{"title":"2015:E301 - Let's Watch - Assassin's Creed Syndicate","description":"Michael takes Jack, Ryan, and Jeremy on a homicide-full trip through London!\n\nThanks to Assassin's Creed Syndicate for sponsoring this video!\n\nTo find out more about Assassin's Creed Syndicate, click here! - http://bit.ly/1OzpHCH\n\nAssassin's Creed Syndicate is rated \"M for Mature\" by the ESRB.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-watch-assassin-s-creed-syndicate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19e8cc51-1186-4158-a64f-d12edc4c7208/sm/2013912-1445374799104-lw_ac_thumb.jpg","duration":3948,"publication_date":"2015-10-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-fibbage","changefreq":"weekly","video":[{"title":"2015:E300 - Fibbage 2","description":"Geoff VS Jack VS Ryan VS Michael VS Jeremy VS Gavin. Who can lie the best Who can be the funniest WHO WILL WIN!!!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-fibbage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f407803e-6bbc-4e3e-94c4-da51c9427427/sm/2013912-1445440637943-lp_fibbag2_thumb.jpg","duration":1888,"publication_date":"2015-10-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-g-t-a-v-blind-spot","changefreq":"weekly","video":[{"title":"2015:E64 - GTA V - Blind Spot","description":"The blind leading the blindfolded.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-g-t-a-v-blind-spot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/334dcc09-ef66-4535-871b-91f5e496d426/sm/2013912-1445375775557-ttd_gtav_blindspot_thumb.jpg","duration":388,"publication_date":"2015-10-20T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-3-d-ultra-minigolf-adventures-new-round","changefreq":"weekly","video":[{"title":"2015:E299 - 3D Ultra Minigolf Adventures - New Round","description":"The Achievement Hunter Golfers are back! This time they're taking on a whole new set of holes designed by their high class architect, Matt.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-3-d-ultra-minigolf-adventures-new-round","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b354ff6-3214-4ba9-b706-78144dc6b950/sm/2013912-1445372727607-lp_minigolf_thumb.jpg","duration":2926,"publication_date":"2015-10-20T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-it-s-not-unusual","changefreq":"weekly","video":[{"title":"2015:E60 - It's Not Unusual","description":"Sweater vest weather.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-it-s-not-unusual","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3329db8-e013-4ab1-aee7-e842e39dea6d/sm/2013912-1445366137170-Destiny_Dance_Thumbnail_2.jpg","duration":98,"publication_date":"2015-10-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-42","changefreq":"weekly","video":[{"title":"2015:E42 - Tomb Raider (2013)","description":"Jack and Geoff take a look at the Tomb Raider reboot in this weeks Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2bb2493-5eb1-4a6d-9501-df7aeaff64b7/sm/2013912-1445305347368-FFTR2013TN.jpg","duration":203,"publication_date":"2015-10-20T01:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-a-h-w-u-for-october-19-th-2015-287","changefreq":"weekly","video":[{"title":"2015:E41 - FUNHAUS VISITS! - AHWU for October 19th, 2015 (#287)","description":"Its a zoo in the office with Funhaus visiting. Their smell lingers like vinegar in a doghouse. Watch and learn what games youll want to play this week and some news that will blow you away. Or it wont. Were not here to tell you what to think.\n\nVid of week: https://www.youtube.com/watchv=7EeirJ48k_4\n\nCommunity vid: https://www.youtube.com/watchv=Z-0UAKv47qI","player_loc":"https://roosterteeth.com/embed/ahwu-2015-a-h-w-u-for-october-19-th-2015-287","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d3e63e5-1f02-43fc-b579-85b0fec2d00e/sm/2013912-1445290101396-AHWU_thumb.jpg","duration":586,"publication_date":"2015-10-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-halo-5-gun-vendor-easter-egg","changefreq":"weekly","video":[{"title":"2015:E7 - Halo 5 - Gun Vendor Easter Egg","description":"Jeremy and Geoff take a look at a cool easter egg in the third mission of the soon-to-release game, Halo 5.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-halo-5-gun-vendor-easter-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e44aaeed-8119-4460-8e4c-b20121204f47/sm/2013912-1445289033637-Halo5VendingMachineEasterEgg.jpg","duration":113,"publication_date":"2015-10-19T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-metal-gear-online","changefreq":"weekly","video":[{"title":"2015:E298 - Metal Gear Online","description":"Achievement Hunter learns how not to be seen in a rousing game of Metal Gear Online!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-metal-gear-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce432d69-a1fb-475e-ae07-f2e99bd7feb1/sm/2013912-1445283714013-lp_mgo_thumb.jpg","duration":1773,"publication_date":"2015-10-19T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-fallout-shelter","changefreq":"weekly","video":[{"title":"2015:E297 - Fallout Shelter","description":"This episode is brought to you by Vault-Tec Industries and their newest Vault-building simulation, Fallout Shelter. The #1 hit mobile game is available now for free on the App Store and Google Play. http://www.falloutshelter.com/ Geoff, Jack, Michael, Gavin, and Ryan race to see who can get the most Vault Dwellers in a set time! Who will win!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-fallout-shelter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1af8c8d6-c19b-4a85-8f11-92fa8f8de0b0/sm/2013912-1445269473609-LP_FalloutShelterRace_Thumb.jpg","duration":1869,"publication_date":"2015-10-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ign-is-being-sold-sony-breaks-up-with-lightbox-and-wii-u-child-labor-hard-news-101812","changefreq":"weekly","video":[{"title":"S1:E290 - IGN Is Being Sold, Sony Breaks Up With Lightbox, and Wii U Child Labor - Hard News 10/18/12","description":"News Corp no longer wants to own IGN and will auction the company off - http://www.screwattack.com/news/news-corp-no-longer-wants-own-ign-and-will-auction-company\r\n[Update] 24 employees laid off from LightBox as they become a mobile developer - http://www.screwattack.com/news/rumor-sony-pulls-lightbox-interactive-support\r\nUnderage teens being used to manufacture the Wii U - http://www.screwattack.com/news/underage-teens-being-used-manufacture-wii-u","player_loc":"https://roosterteeth.com/embed/ign-is-being-sold-sony-breaks-up-with-lightbox-and-wii-u-child-labor-hard-news-101812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3b7708d-8e0a-4d6e-a8b7-035c36587cf0/sm/video_thumbnail_3085541.png","duration":153,"publication_date":"2012-10-18T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-playstation-all-stars-battle-royale-private-beta","changefreq":"weekly","video":[{"title":"S1:E14 - Out of the Box - PlayStation All-Stars Battle Royale Private Beta","description":"Today on Out of the Box we look at one of the most anticipated games for the PlayStation in a long time.  Is this just a Smash Bros clone or can it stand on it's own two feet?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-playstation-all-stars-battle-royale-private-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0336908-4d5d-47f6-8e95-05eb3a6ab8e2/sm/video_thumbnail_3075566.jpg","duration":1677,"publication_date":"2012-10-18T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-sparkster-rocket-knight-adventures-2","changefreq":"weekly","video":[{"title":"S1:E376 - VGV - Sparkster: Rocket Knight Adventures 2","description":"If you owned a Genesis, how did you NOT play this?","player_loc":"https://roosterteeth.com/embed/vgv-sparkster-rocket-knight-adventures-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4b5e14d-2c28-48b6-a620-5c790e874a3d/sm/video_thumbnail_3045891.jpg","duration":94,"publication_date":"2012-10-18T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-mario-bros-the-commentary-part-4","changefreq":"weekly","video":[{"title":"S1:E434 - Super Mario Bros.: The Commentary [Part 4]","description":"Goomba Dance at SGC3.  It's so happening.\r\n\r\n\tYou missed a great car chase last time.  Catch up here.\r\n\r\n\tNext time, the good guys probably win.","player_loc":"https://roosterteeth.com/embed/super-mario-bros-the-commentary-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/437baa87-aa0a-4e48-8285-101c4a168f02/sm/video_thumbnail_2965371.jpg","duration":1335,"publication_date":"2012-10-17T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-war-z-rips-off-lol-tor-free-to-play-info-and-obsidian-kills-kickstarter-hard-news-101712","changefreq":"weekly","video":[{"title":"S1:E289 - The War Z Rips Off LoL, TOR Free to Play Info, and Obsidian Kills Kickstarter - Hard News 10/17/12","description":"Free-to-play MMO Star Wars: The Old Republic has some restrictions - http://www.screwattack.com/news/free-play-mmo-star-wars-old-republic-has-some-restrictions\r\nWar Z user agreement looks like a copy/paste from League of Legends ToS - http://www.screwattack.com/news/war-z-user-agreement-looks-copypaste-league-legends-tos","player_loc":"https://roosterteeth.com/embed/the-war-z-rips-off-lol-tor-free-to-play-info-and-obsidian-kills-kickstarter-hard-news-101712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbbb05ee-fd59-4e3f-8ec6-b00476e522cc/sm/video_thumbnail_3047576.png","duration":138,"publication_date":"2012-10-17T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-dragon-ball-z-kinect-and-fable-the-journey","changefreq":"weekly","video":[{"title":"S1:E13 - Out of the Box - Dragon Ball Z Kinect and Fable the Journey","description":"Today we lose the controls... and our dignity... as we play two new Kinect titles: Dragon Ball Z and Fable the Journey.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-dragon-ball-z-kinect-and-fable-the-journey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/576580e4-eb79-4a69-b386-a96ff159c37c/sm/video_thumbnail_3042956.jpg","duration":2934,"publication_date":"2012-10-17T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-101712","changefreq":"weekly","video":[{"title":"S1:E433 - SideScrollers Extended 10/17/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-101712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96db1bbd-776b-43a3-9f93-558a7b7a3675/sm/video_thumbnail_3011166.jpg","duration":571,"publication_date":"2012-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-mario-bros-the-commentary-part-3","changefreq":"weekly","video":[{"title":"S1:E432 - Super Mario Bros.: The Commentary [Part 3]","description":"You are so fresh... and so clean...\r\n\r\n\tPart 2 is back this way.\r\n\r\n\tThe movie gets good in part 4*.\r\n*LOL, no.","player_loc":"https://roosterteeth.com/embed/super-mario-bros-the-commentary-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17fe2f06-403f-4d23-9580-5713cbb0ffef/sm/video_thumbnail_2965306.jpg","duration":1132,"publication_date":"2012-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"death-by-food\"","changefreq":"weekly","video":[{"title":"S1:E86 - SideScrollers - \"Death By Food\"","description":"Get the Audio version here - http://bit.ly/S1FlaZ\r\n\tSideScrollers Extended can be watched here - http://bit.ly/T8F7BP\r\n\tCheck out our Tokyo Game Show Coverage - http://bit.ly/NOSAvC\r\n \r\nSuper Mario Bros.: The Commentary [Part 1] - http://bit.ly/RsZ6pC\r\n\tReview - Dishonored - http://bit.ly/QqlwIa\r\n\tbrentalfloss - Super Mario Land WITH LYRICS - http://bit.ly/QotAsW\r\n\tThe Game OverThinker - Episode 76: \"Ask Ivan\" - http://bit.ly/S1vmm6\r\n\tOut of the Box - Retro City Rampage and Double Dragon Neon - http://bit.ly/QmCTJV\r\n\tReview - FIFA 13 - http://bit.ly/QiR4zK\r\n\tGame Theory: Why the Official Zelda Timeline is Wrong - http://bit.ly/OYTYNX\r\n\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n\t\r\n\tFollow us on Twitter!?\r\n\tCraig - https://twitter.com/StutteringCraig?\r\n\tChad - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"death-by-food\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d4f51c4-0ce3-4f48-ba4c-7add0fec51bc/sm/video_thumbnail_3014336.jpg","duration":3246,"publication_date":"2012-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-in-scribblenauts-dragonborn-dragon-riding-and-xbox-live-indie-trouble-hard-news-101612","changefreq":"weekly","video":[{"title":"S1:E288 - Mario in Scribblenauts, Dragonborn Dragon Riding, and Xbox Live Indie Trouble - Hard News 10/16/12","description":"XBLIG is falling apart and Microsoft isn't helping - http://www.screwattack.com/news/xblig-falling-apart-and-microsoft-isnt-helping\r\n[Rumor] Dovahkiin may be riding dragons to Morrowind in the next Skyrim DLC - http://www.screwattack.com/news/rumor-dovahkiin-may-be-riding-dragons-morrowind-next-skyrim-dlc\r\nGameStop teases new Scribblenauts Unlimited characters for Wii U - http://www.screwattack.com/news/gamestop-teases-new-scribblenauts-unlimited-characters-wii-u","player_loc":"https://roosterteeth.com/embed/mario-in-scribblenauts-dragonborn-dragon-riding-and-xbox-live-indie-trouble-hard-news-101612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af233138-c433-4785-b957-90cb49300d53/sm/video_thumbnail_3015026.png","duration":144,"publication_date":"2012-10-16T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-mario-bros-the-commentary-part-2","changefreq":"weekly","video":[{"title":"S1:E431 - Super Mario Bros.: The Commentary [Part 2]","description":"Movies are fun.  Check out the fan site Nick was talking about at smbmovie.com!\r\n\r\n\tHEY.  Part 1 is this way if you missed it.\r\n\r\n\tBut if you're ready for part 3, that's right here.","player_loc":"https://roosterteeth.com/embed/super-mario-bros-the-commentary-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fed738f-616b-4c53-9e3c-12717b5de153/sm/video_thumbnail_2965286.jpg","duration":1084,"publication_date":"2012-10-15T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/xbox-360-deals-hunting-halo-4-players-and-the-internet-hits-origin-hard-hard-news-101512","changefreq":"weekly","video":[{"title":"S1:E287 - Xbox 360 Deals, Hunting Halo 4 Players, and the internet hits Origin hard - Hard News 10/15/12","description":" \r\nThe Xbox 360 has deals this holiday season, Microsoft isn't taking Halo 4 piracy lightly, and the internet made EA pay for being lazy with an Origin promotion today on Hard News.\r\n \r\nXbox 360 Holiday Bundles - http://www.screwattack.com/news/xbox-360-holiday-bundles-have-their-prices-slashed-50\r\n \r\nHalo 4 pirate hunting - http://www.screwattack.com/news/update-if-youre-playing-leaked-copy-halo-4-dont-expect-keep-your-xbl-account\r\n \r\nEA takes a big hit on Origin - http://www.screwattack.com/news/ea-survey-results-thousands-games-being-given-away-mistake\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Chad - Twitter.com/ScrewAttackChad\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Chad - https://www.facebook.com/profile.php?id=100001681156302&fref=ts\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack\r\n \r\n ","player_loc":"https://roosterteeth.com/embed/xbox-360-deals-hunting-halo-4-players-and-the-internet-hits-origin-hard-hard-news-101512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e90680-4e35-408e-9678-233a97f32355/sm/video_thumbnail_2986631.jpg","duration":117,"publication_date":"2012-10-15T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-mario-bros-the-commentary-part-1","changefreq":"weekly","video":[{"title":"S1:E430 - Super Mario Bros.: The Commentary [Part 1]","description":"... Yeah, it's not great.\r\n\r\n\tContinue the adventure here!","player_loc":"https://roosterteeth.com/embed/super-mario-bros-the-commentary-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29a5675c-054f-4448-92fa-215c3538790d/sm/video_thumbnail_2965241.jpg","duration":1272,"publication_date":"2012-10-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-deal-of-the-week-1012-1018","changefreq":"weekly","video":[{"title":"S1:E429 - ScrewAttackStore's Deal of the Week (10/12 - 10/18)","description":"ScrewAttackStore's Deal of the Week!\r\nThis week's deal is the Honda T  and its 25% off! get your engines going with this great piece of ScrewAttack merch for only $14.98!\r\nwww.ScrewAttackStore.com","player_loc":"https://roosterteeth.com/embed/screwattackstores-deal-of-the-week-1012-1018","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7463fff-1826-4108-8290-48c39e72854a/sm/video_thumbnail_2972516.jpg","duration":74,"publication_date":"2012-10-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dalkstarkers-is-back-free-on-disc-dlc-and-the-lol-world-championship-scandal-hard-news-101212","changefreq":"weekly","video":[{"title":"S1:E286 - Dalkstarkers is Back, Free On Disc DLC, and the LoL World Championship Scandal - Hard News 10/12/12","description":"Riot finds Korean team guilty of “unsportsmanlike conduct” - http://www.screwattack.com/news/riot-finds-korean-team-guilty-%E2%80%9Cunsportsmanlike-conduct%E2%80%9D\r\nThe recently uncovered on-disc DLC for Resident Evil 6 will be free - http://www.screwattack.com/news/recently-uncovered-disc-dlc-resident-evil-6-will-be-free\r\nCapcom panel shows pitch video for Darkstalkers 4 - http://www.screwattack.com/news/capcom-panel-shows-pitch-video-darkstalkers-4\r\nCapcom to release Darkstalkers compilation with Darkstalkers Resurrection - http://www.screwattack.com/video/Capcom-to-release-Darkstalkers-Resurrection-2967276","player_loc":"https://roosterteeth.com/embed/dalkstarkers-is-back-free-on-disc-dlc-and-the-lol-world-championship-scandal-hard-news-101212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f04f8d51-184a-45d6-95ac-e8b65da5f13d/sm/HardNews1012.png","duration":170,"publication_date":"2012-10-12T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101112-no-more-machinima-sony-sued-again-and-the-wii-u-breakdown","changefreq":"weekly","video":[{"title":"S1:E285 - Hard News 10/11/12 - No More Machinima?!, Sony Sued Again, and The Wii U Breakdown","description":"Gaikai being sued for patent infringement by T5 Labs - http://www.screwattack.com/news/gaikai-being-sued-patent-infringement-t5-labs\r\nNew content usage rules by Microsoft could affect Machinima, Youtube, and others - http://www.screwattack.com/news/new-content-usage-rules-microsoft-could-affect-machinima-youtube-and-others\r\nThe Wii U spills its guts in front of a 'Iwata Asks' panel - http://www.screwattack.com/news/wii-u-spills-its-guts-front-iwata-asks-panel","player_loc":"https://roosterteeth.com/embed/hard-news-101112-no-more-machinima-sony-sued-again-and-the-wii-u-breakdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8960ca4c-9369-484f-9a97-a779f8639db0/sm/video_thumbnail_2965481.png","duration":127,"publication_date":"2012-10-11T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-retro-city-rampage-and-double-dragon-neon","changefreq":"weekly","video":[{"title":"S1:E12 - Out of the Box - Retro City Rampage and Double Dragon Neon","description":"In a special Thursday edition of Out of the Box, Sean and Sam look at two games that make you feel like a wild, destructive, violence-craved kid again.\r\nHave a question about either game? Ask it on the Out of the Box wall here.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-retro-city-rampage-and-double-dragon-neon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/269fed7f-eb1f-4bb9-a921-431e21289d0a/sm/video_thumbnail_2963531.jpg","duration":2769,"publication_date":"2012-10-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/injustice-character-reveals-god-of-total-recall-and-borderlands-2-e-peens-hard-news-101012","changefreq":"weekly","video":[{"title":"S1:E284 - Injustice Character Reveals, God of Total Recall, and Borderlands 2 E-Peens - Hard News 10/10/12","description":"Injustice: Gods Among Us Box Art reveals 2 new characters - http://www.screwattack.com/news/injustice-gods-among-us-box-art-reveals-2-new-characters\r\nGreen Arrow joins the Injustice roster - http://www.screwattack.com/news/green-arrow-joins-injustice-roster\r\nGod of War demo to be shoehorned into Total Recall remake Blu-ray - http://www.screwattack.com/news/god-war-demo-be-shoehorned-total-recall-remake-blu-ray\r\nBorderlands 2 bug resets Badass Rank, but isn’t caused by DLC - http://www.screwattack.com/news/borderlands-2-bug-resets-badass-rank-isn%E2%80%99t-caused-dlc","player_loc":"https://roosterteeth.com/embed/injustice-character-reveals-god-of-total-recall-and-borderlands-2-e-peens-hard-news-101012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b103c0f5-47f9-4017-b430-f7b2a3a542ef/sm/video_thumbnail_2960141.png","duration":149,"publication_date":"2012-10-10T15:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-sonic-adventure-2-hd-and-nights-hd","changefreq":"weekly","video":[{"title":"S1:E11 - Out of the Box - Sonic Adventure 2 HD and NiGHTS HD","description":"In the return of Out of the Box we take a look at the HD ports of two \"classic\" games, Sonic Adventure 2 HD and NiGHTS HD.\r\nHave a question about either game? Ask it on our wall here.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-sonic-adventure-2-hd-and-nights-hd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46321e54-4fbf-4ab7-8383-be68cb42a41f/sm/video_thumbnail_2957691.jpg","duration":1375,"publication_date":"2012-10-10T11:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-101012","changefreq":"weekly","video":[{"title":"S1:E428 - SideScrollers Extended 10/10/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-101012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b4b3b75-3676-45ca-9fa2-0d971a2e8a95/sm/video_thumbnail_2952001.jpg","duration":458,"publication_date":"2012-10-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"when-angels-appear\"","changefreq":"weekly","video":[{"title":"S1:E85 - SideScrollers - \"When Angels Appear\"","description":"Get the Audio version here - http://bit.ly/VKzXw0\r\n\tSideScrollers Extended can be watched here - http://bit.ly/WMGunY\r\n\tCheck out our Tokyo Game Show Coverage - http://bit.ly/NOSAvC\r\n\t\r\n\t\r\n\tSam goes one-on-one with Playboy's Miss October 2012 - http://bit.ly/PlzJKb\r\n\tReview - PETA's Pokemon: Black and Blue - http://bit.ly/T09FQA\r\n\t5 Reasons We Kinda Dislike the New TMNT Cartoon - http://bit.ly/Q98xKT\r\n\t28 Reasons We LOVE the new TMNT Cartoon - http://bit.ly/R8dMud\r\n\tVGV - Wrestlemania The Arcade Game (SNES) - http://bit.ly/SDpQbO\r\n\tThe Clip - Re-Debuting Soon! - http://bit.ly/R1l8m8\r\n\tIn Regards to Jared's Departure - http://bit.ly/SAyV5o\r\n\tVGV - Twisted Metal - http://bit.ly/SzJndm\r\n\tThe Worst EVER: Mascot - http://bit.ly/SPGlvX\r\n\t\r\n\t\r\n\tHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\n\tWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n\t\r\n\tFollow us on Twitter!?\r\n\tCraig - https://twitter.com/StutteringCraig?\r\n\tChad - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"when-angels-appear\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/583cf3b0-d5fa-4e9a-8177-8c694d3dad87/sm/video_thumbnail_2954766.jpg","duration":3116,"publication_date":"2012-10-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/adam-sandlers-bad-company-tv-show-the-mechromancer-and-dmc-pre-order-bonuses-hard-news-100912","changefreq":"weekly","video":[{"title":"S1:E283 - Adam Sandler's Bad Company TV Show, The Mechromancer, and DmC Pre-Order Bonuses - Hard News 10/09/12","description":"Gearbox’s Mechromancer DLC releases a week early - http://www.screwattack.com/news/gearbox%E2%80%99s-mechromancer-dlc-releases-week-early\r\nA Time to Shill: DmC pre-order details reveal a variety of skins - http://www.screwattack.com/news/time-shill-dmc-pre-order-details-reveal-variety-skins\r\nHappy Madison is bringing Battlefield: Bad Company to primetime - http://www.screwattack.com/news/happy-madison-bringing-battlefield-bad-company-primetime","player_loc":"https://roosterteeth.com/embed/adam-sandlers-bad-company-tv-show-the-mechromancer-and-dmc-pre-order-bonuses-hard-news-100912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c401cd5-481d-48db-b342-38e0efdb09b3/sm/video_thumbnail_2953611.png","duration":126,"publication_date":"2012-10-09T14:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-new-season-of-out-of-the-box-debuts-wednesday-at-11am-central","changefreq":"weekly","video":[{"title":"S1:E10 - A New Season of Out of the Box Debuts Wednesday at 11am Central!","description":"Our live, \"first impressions\" show makes it's return! Make sure to tune in live every Wednesday at 11am Central time.  The first episode will feature Sonic Adventure 2 HD and NiGHTs into dreams HD.\r\n\r\n\tHave a question about either game? Ask it on the Out of the Box wall!","player_loc":"https://roosterteeth.com/embed/a-new-season-of-out-of-the-box-debuts-wednesday-at-11am-central","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e36d8fe5-668d-48fe-ad80-90c1c4f8b7d4/sm/video_thumbnail_2952886.jpg","duration":44,"publication_date":"2012-10-09T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/kevin-butler-is-being-sued-rayman-legends-delayed-and-re6-on-disc-dlc-hard-news-100812","changefreq":"weekly","video":[{"title":"S1:E282 - Kevin Butler is Being Sued, Rayman Legends Delayed, and RE6 On Disc DLC - Hard News 10/08/12","description":"Update: Sony explains why it's suing \"Kevin Butler\" - http://www.screwattack.com/news/update-sony-explains-why-its-suing-kevin-butler\r\nRayman Legends delayed until 2013 - http://www.screwattack.com/news/rayman-legends-delayed-until-2013\r\nUh-Oh. Resident Evil 6 has on-disk DLC... - http://www.screwattack.com/news/uh-oh-resident-evil-6-has-disk-dlc","player_loc":"https://roosterteeth.com/embed/kevin-butler-is-being-sued-rayman-legends-delayed-and-re6-on-disc-dlc-hard-news-100812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c16e5373-0571-4f85-87e9-b741061453c8/sm/video_thumbnail_2948436.jpg","duration":168,"publication_date":"2012-10-08T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-wrestlemania-the-arcade-game-snes","changefreq":"weekly","video":[{"title":"S1:E375 - VGV - Wrestlemania The Arcade Game (SNES)","description":"Revisit a game that's more fun than an elbow-drop from the top of the Titantron.","player_loc":"https://roosterteeth.com/embed/vgv-wrestlemania-the-arcade-game-snes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/032da3c4-8f72-43ea-a56a-ab2101e28c4c/sm/video_thumbnail_2919041.jpg","duration":115,"publication_date":"2012-10-06T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-clip-re-debuting-soon","changefreq":"weekly","video":[{"title":"S1:E181 - The Clip - Re-Debuting Soon!","description":"We interrupt your regularly-scheduled Clip of the Week to inform you that it's currently under maintenance...\r\nIn the future, look forward to sketches that have a bit more \"oomph\" to them by upping their production values.  Putting this much awesomeness into them will mean breaking the trend of a video every single week, but the things we've already got cooking up will all be worth it!\r\nAny questions?","player_loc":"https://roosterteeth.com/embed/the-clip-re-debuting-soon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3372cb63-5ace-4303-afa7-7f44eed00b18/sm/theclipthumb.jpg","duration":42,"publication_date":"2012-10-05T22:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rogue-for-senate-fifa-13-is-the-same-game-and-retro-city-rampage-launch-dates-hard-news-100512","changefreq":"weekly","video":[{"title":"S1:E281 - Rogue For Senate, FIFA 13 is the Same Game, and Retro City Rampage Launch Dates - Hard News 10/05/12","description":"Retro City Rampage releases on PS3, Vita, and PC in FIVE DAYS! - http://www.screwattack.com/news/retro-city-rampage-releases-ps3-vita-and-pc-five-days\r\nEA accused of repacking last year’s FIFA 12 as FIFA 13 on Wii - http://www.screwattack.com/news/ea-accused-repacking-last-year%E2%80%99s-fifa-12-fifa-13-wii\r\nGOP decides WoW playing Democrat is unfit for public service - http://www.screwattack.com/news/gop-decides-wow-playing-democrat-unfit-public-service","player_loc":"https://roosterteeth.com/embed/rogue-for-senate-fifa-13-is-the-same-game-and-retro-city-rampage-launch-dates-hard-news-100512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f9a8821-aa08-46bd-bfbc-208e2e8d2975/sm/video_thumbnail_2928406.png","duration":137,"publication_date":"2012-10-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-twisted-metal","changefreq":"weekly","video":[{"title":"S1:E374 - VGV - Twisted Metal","description":"Sony kicks cute and cuddly in the cojones with their take vehicular combat.","player_loc":"https://roosterteeth.com/embed/vgv-twisted-metal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f943245-4292-4cf4-9e54-0f848f81ff67/sm/video_thumbnail_2919001.jpg","duration":105,"publication_date":"2012-10-05T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-mascot","changefreq":"weekly","video":[{"title":"S1:E15 - The Worst EVER: Mascot","description":"Who is your worst EVER mascot?","player_loc":"https://roosterteeth.com/embed/the-worst-ever-mascot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11f02166-ba98-4d6a-9ce7-1fc6ef8c0a56/sm/video_thumbnail_2924056.jpg","duration":301,"publication_date":"2012-10-04T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-crazy-drinks-of-japan","changefreq":"weekly","video":[{"title":"S1:E427 - The Crazy Drinks of Japan","description":"After sampling the food from Tokyo the guys needed to refresh themselves by sipping on some of Japan's most popular drinks.\r\n\r\n\tWatch part 2 here","player_loc":"https://roosterteeth.com/embed/the-crazy-drinks-of-japan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a127da64-0436-407d-b306-3d2a7e7d4127/sm/video_thumbnail_2923826.jpg","duration":272,"publication_date":"2012-10-04T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-crazy-drinks-of-japan-part-2","changefreq":"weekly","video":[{"title":"S1:E426 - The Crazy Drinks of Japan Part 2","description":"As we move on to the final four drinks, what could possibly cause Bryan to make that face?","player_loc":"https://roosterteeth.com/embed/the-crazy-drinks-of-japan-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/451f61d0-7e7b-46c6-ab7c-0764c1057e1c/sm/video_thumbnail_2923806.jpg","duration":300,"publication_date":"2012-10-04T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-100412","changefreq":"weekly","video":[{"title":"S1:E425 - SideScrollers Extended 10/04/12","description":"Extra SideScrollers for Advantage members.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-100412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d5c461c-3f65-489c-96aa-771be3aa694d/sm/EXT1004.jpg","duration":297,"publication_date":"2012-10-04T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cliffy-b-leaves-tyrant-king-george-washington-and-kixeye-is-racist-hard-news-100412","changefreq":"weekly","video":[{"title":"S1:E280 - Cliffy B Leaves, Tyrant King George Washington, and Kixeye is Racist - Hard News 10/04/12","description":"Cliff Bleszinski leaves Epic Games - http://www.screwattack.com/news/cliff-bleszinski-leaves-epic-games\r\nFirst piece of Assassin's Creed 3 DLC features Evil George Washington - http://www.screwattack.com/news/first-piece-assassins-creed-3-dlc-features-evil-george-washington\r\nKIXEYE president fires four over allegations of racism - http://www.screwattack.com/news/kixeye-president-fires-four-over-allegations-racism","player_loc":"https://roosterteeth.com/embed/cliffy-b-leaves-tyrant-king-george-washington-and-kixeye-is-racist-hard-news-100412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0ebb5c-e142-4acd-860e-8350caded976/sm/video_thumbnail_2920666.png","duration":109,"publication_date":"2012-10-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/valves-non-gaming-software-the-command-and-conquer-collection-and-playstation-mobile-hard-news-100312","changefreq":"weekly","video":[{"title":"S1:E279 - Valve's Non Gaming Software, The Command and Conquer Collection, and PlayStation Mobile - Hard News 10/03/12","description":"A Time to Shill – PlayStation Mobile releases today, adding another 21 games to the Vita - http://www.screwattack.com/news/time-shill-%E2%80%93-playstation-mobile-releases-today-adding-another-21-games-vita\r\nSteam begins to take over the world of software by offering more than games - http://www.screwattack.com/news/steam-begins-take-over-world-software-offering-more-games\r\nCommand & Conquer the Ultimate Collection is an RTS wet dream - http://www.screwattack.com/news/command-conquer-ultimate-collection-rts-wet-dream","player_loc":"https://roosterteeth.com/embed/valves-non-gaming-software-the-command-and-conquer-collection-and-playstation-mobile-hard-news-100312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de7e8de6-8603-4ca6-a1bd-196c3ae1df67/sm/video_thumbnail_2914611.png","duration":104,"publication_date":"2012-10-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/porn-on-xbox-double-halo-xp-for-pepsi-lightning-returns-leak-and-mario-dlc-hard-news-100212","changefreq":"weekly","video":[{"title":"S1:E278 - Porn on Xbox, Double Halo XP For Pepsi, Lightning Returns Leak, and Mario DLC - Hard News 10/02/12","description":"[NSFW] Xbox 360’s new browser is porn ready says YouPorn - http://www.screwattack.com/news/nsfw-xbox-360%E2%80%99s-new-browser-porn-ready-says-youporn\r\nFeeling healthy? Halo 4 and PepsiCo will change that with Double XP - http://www.screwattack.com/news/feeling-healthy-halo-4-and-pepsico-will-change-double-xp\r\n[Rumor] Lightning Returns release date may have leaked on Amazon - http://www.screwattack.com/news/rumor-lightning-returns-release-date-may-have-leaked-amazon\r\nNew Super Mario Bros. 2 DLC for 3DS is available today in EU and Thursday in NA - http://www.screwattack.com/news/new-super-mario-bros-2-dlc-3ds-available-today-eu-and-thursday-na","player_loc":"https://roosterteeth.com/embed/porn-on-xbox-double-halo-xp-for-pepsi-lightning-returns-leak-and-mario-dlc-hard-news-100212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2aba512-85ed-432c-bc54-1637638ad50b/sm/video_thumbnail_2906246.png","duration":138,"publication_date":"2012-10-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tgs-2012-the-crazy-snacks-of-japan-part-2","changefreq":"weekly","video":[{"title":"S1:E424 - TGS 2012 - The Crazy Snacks of Japan Part 2","description":"The fun is just beginning as Craig, Bryan and Chad continue on their culinary quest to expand their palates... with some not-to-good results.","player_loc":"https://roosterteeth.com/embed/tgs-2012-the-crazy-snacks-of-japan-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eda4fc4c-af76-4248-90ba-b8d9297e82a5/sm/video_thumbnail_2878931.jpg","duration":434,"publication_date":"2012-10-01T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tgs-2012-the-crazy-snacks-of-japan","changefreq":"weekly","video":[{"title":"S1:E423 - TGS 2012 - The Crazy Snacks of Japan","description":"Three American dudes with very western palates trying Japanese snacks - what could do wrong?\r\n\r\n\tWatch part 2 here.","player_loc":"https://roosterteeth.com/embed/tgs-2012-the-crazy-snacks-of-japan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54ea5f7a-50a2-4e9d-8a4e-ec3e8470ded6/sm/video_thumbnail_2878911.jpg","duration":265,"publication_date":"2012-10-01T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/third-person-xcom-vita-price-cuts-and-an-important-announcement-hard-news-100112","changefreq":"weekly","video":[{"title":"S1:E277 - Third Person XCOM, Vita Price Cuts, And An Important Announcement - Hard News 10/01/12","description":" \r\nThe FPS XCOM could go third person, the Vita could see a price cut, and an important announcement from Jared today on Hard News.\r\n \r\nFPS XCOM becomes TPS, downloadable - http://www.screwattack.com/news/rumor-xcom-fps-become-downloadable-third-person-shooter\r\n \r\nVita price cuts and bundles - http://www.screwattack.com/news/sony-working-price-cut-vita-and-maybe-ps3-bundle\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nYouTube Jared - Youtube.com/DMJared\r\nYoutube ScrewAttack - Youtube.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/third-person-xcom-vita-price-cuts-and-an-important-announcement-hard-news-100112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c2e835f-3a2c-42bd-825e-43571374401d/sm/video_thumbnail_2898291.png","duration":190,"publication_date":"2012-10-01T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-popeye","changefreq":"weekly","video":[{"title":"S1:E373 - VGV - Popeye","description":"A legend in the animation world was nearly a legend in the video game world, too.\r\n ","player_loc":"https://roosterteeth.com/embed/vgv-popeye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe6fe515-3ef2-44c7-b55e-68ee9484a475/sm/video_thumbnail_2687336.jpg","duration":128,"publication_date":"2012-09-30T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-craigs-broken-promise","changefreq":"weekly","video":[{"title":"S1:E180 - Clip of the Week - Craig's Broken Promise","description":"Craig swore he would bring each of us the ultimate Japanese souvenirs: mail-order brides.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-craigs-broken-promise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27e97b0b-9bc4-4f89-beb2-595ffbd43d39/sm/brokenpromisethumb.jpg","duration":91,"publication_date":"2012-09-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-deal-of-the-week-0928-1004","changefreq":"weekly","video":[{"title":"S1:E422 - ScrewAttackStore's Deal of the Week (09/28 - 10/04)","description":"ScrewAttackStore's Deal of the Week!\r\nThis week's deal is the Stuttering Craig's Hat of Awesomeness and its 50% off! Cover your head with this great piece of ScrewAttack merch for only $10!\r\nwww.ScrewAttackStore.com","player_loc":"https://roosterteeth.com/embed/screwattackstores-deal-of-the-week-0928-1004","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/555e8ea6-8c27-4212-9775-51807edbd6c4/sm/video_thumbnail_2882741.jpg","duration":34,"publication_date":"2012-09-28T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-dlc-announced-your-gamerscore-matters-and-konamis-collectors-editions-hard-news-092812","changefreq":"weekly","video":[{"title":"S1:E276 - Mario DLC Announced, Your Gamerscore Matters, and Konami's Collector's Editions - Hard News 09/28/12","description":"Congratulations! We were all just trolled by Nintendo Direct - http://www.screwattack.com/video/Congratulations-We-were-all-just-trolled-by-Nintendo-Direct-2878276\r\nMetal Gear Rising and Zone of the Enders HD get some new Collector's Editions! - http://www.screwattack.com/news/metal-gear-rising-and-zone-enders-hd-get-some-new-collectors-editions\r\nXbox Live Rewards is changing the meta-game by adding rebates - http://www.screwattack.com/news/xbox-live-rewards-changing-meta-game-adding-rebates\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/mario-dlc-announced-your-gamerscore-matters-and-konamis-collectors-editions-hard-news-092812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05141915-327e-40b6-8d6d-d21b44a0d1dd/sm/video_thumbnail_2882221.png","duration":140,"publication_date":"2012-09-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-newsroom-cellbow-sam","changefreq":"weekly","video":[{"title":"S1:E20 - [Advantage] Newsroom: Cellbow Sam","description":"Sam really, REALLY likes that joke. And then ruins the shot.\r\nNot an Advantage Member? Sign up here!\r\nSee the full Newsroom episode by clicking here! ","player_loc":"https://roosterteeth.com/embed/advantage-newsroom-cellbow-sam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166742b9-dd5e-411f-a696-1f2fbf55f246/sm/video_thumbnail_2881411.jpg","duration":109,"publication_date":"2012-09-28T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-letdown","changefreq":"weekly","video":[{"title":"S1:E14 - The Worst EVER: Letdown","description":"A letdown so big it brings Lauren to tears? What could it be?","player_loc":"https://roosterteeth.com/embed/the-worst-ever-letdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09424127-e537-4b00-92be-f52738a1259a/sm/video_thumbnail_2879211.jpg","duration":369,"publication_date":"2012-09-28T00:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/we-didnt-go-to-tokyo-for-tgs-we-went-for-battle-kid-2","changefreq":"weekly","video":[{"title":"S1:E421 - We didn't go to Tokyo for TGS, we went for Battle Kid 2","description":"You can find a lot of wild and crazy things in Japan. One day when we were leaving an arcade, we found Sivak, maker of Battle Kid 2! We took him back to our hotel room and he gave us everything about his new game.","player_loc":"https://roosterteeth.com/embed/we-didnt-go-to-tokyo-for-tgs-we-went-for-battle-kid-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/373b3fe8-ad1b-4923-b6ef-50ee37af99a2/sm/video_thumbnail_2875896.jpg","duration":231,"publication_date":"2012-09-27T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/were-gonna-need-a-bigger-can-of-insecticide-chad-and-bryans-first-impressions-of-earth-defense-force-4","changefreq":"weekly","video":[{"title":"S1:E420 - We're gonna need a bigger can of insecticide! Chad and Bryan's first impressions of Earth Defense Force 4.","description":"Earth Defense Force 4 was at Tokyo Game Show, and it was pretty hard to resist blowing the hell out of giant ants.","player_loc":"https://roosterteeth.com/embed/were-gonna-need-a-bigger-can-of-insecticide-chad-and-bryans-first-impressions-of-earth-defense-force-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f8cbba9-43c8-4aa4-8dc6-2499f3a6a533/sm/video_thumbnail_2876746.jpg","duration":103,"publication_date":"2012-09-27T16:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-resident-evil-2-remake-black-ops-ii-zombies-and-metal-gear-off-of-consoles-hard-news-092712","changefreq":"weekly","video":[{"title":"S1:E275 - A Resident Evil 2 Remake?, Black Ops II Zombies, and Metal Gear Off of Consoles - Hard News 09/27/12","description":"Craig gets the scoop about the new game modes in Black Ops II zombie mode - http://www.screwattack.com/trailers/craig-gets-scoop-about-new-game-modes-black-ops-ii-zombie-mode\r\nMGS: Ground Zeroes will have smartphone features - http://www.screwattack.com/news/mgs-ground-zeroes-will-have-smartphone-features\r\nLove Resident Evil 2? Well Capcom is teasing you with a remake - http://www.screwattack.com/news/love-resident-evil-2-well-capcom-teasing-you-remake\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/a-resident-evil-2-remake-black-ops-ii-zombies-and-metal-gear-off-of-consoles-hard-news-092712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c0c4d97-005e-4d0d-addd-6d107b3c49e9/sm/video_thumbnail_2875956.png","duration":129,"publication_date":"2012-09-27T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tommy-the-toucan-@a-fest-the-hunt-for-a-women","changefreq":"weekly","video":[{"title":"S1:E419 - Tommy the Toucan @A-Fest - The Hunt For A Women","description":"On the small list of things Tommy actually enjoys, the opposite sex ranks highly.  But after years of (mostly) non-success in finding a mate, will his fortunes turn around this time?","player_loc":"https://roosterteeth.com/embed/tommy-the-toucan-@a-fest-the-hunt-for-a-women","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/812da0de-fb33-4d44-ad47-67b0886d0e25/sm/video_thumbnail_2872936.jpg","duration":212,"publication_date":"2012-09-26T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-mass-effect-trilogy-wii-us-23-launch-titles-and-injustices-collectors-edition-hard-news-092612","changefreq":"weekly","video":[{"title":"S1:E274 - The Mass Effect Trilogy, Wii U's 23 Launch Titles, and Injustice's Collector's Edition - Hard News 09/26/12","description":"Mass Effect Trilogy pack announced - http://www.screwattack.com/news/mass-effect-trilogy-pack-announced\r\n23 Wii U games at launch, plus another 9 before December - http://www.screwattack.com/news/23-wii-u-games-launch-plus-another-9-december\r\nInjustice: Gods Among Us Collector’s Edition Wonder Woman is fierce - http://www.screwattack.com/news/injustice-gods-among-us-collector%E2%80%99s-edition-wonder-woman-fierce\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/the-mass-effect-trilogy-wii-us-23-launch-titles-and-injustices-collectors-edition-hard-news-092612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/940cab1e-a96c-4db0-9d70-b99fe585c461/sm/video_thumbnail_2870591.png","duration":126,"publication_date":"2012-09-26T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/check-out-our-tokyo-game-show-\"swag\"","changefreq":"weekly","video":[{"title":"S1:E418 - Check out our Tokyo Game Show \"swag\".","description":"We're using the term \"swag\" very loosely when it comes to the stuff we got while at TGS. Look at all the...neat...stuff we got at Tokyo Game Show.","player_loc":"https://roosterteeth.com/embed/check-out-our-tokyo-game-show-\"swag\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4071f7e7-2395-41c7-98ff-c4c0040753ba/sm/video_thumbnail_2870491.jpg","duration":314,"publication_date":"2012-09-26T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-092612","changefreq":"weekly","video":[{"title":"S1:E417 - SideScrollers Extended 09/26/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-092612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/743aad7d-e77c-4e7a-92af-4d07978316fa/sm/video_thumbnail_2862101.jpg","duration":597,"publication_date":"2012-09-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"one-with-the-tigers\"","changefreq":"weekly","video":[{"title":"S1:E83 - SideScrollers - \"One With the Tigers\"","description":"Get the audio version here! - http://bit.ly/NOWS6g\r\nSideScrollers Extended can be watched here! - http://bit.ly/PVLNyu\r\nCheck out our Tokyo Game Show Coverage - http://bit.ly/NOSAvC\r\n \r\nCheck out our newest content by clicking the links below!\r\n\r\n\tDeath Battle - Blanka vs. Pikachu - http://bit.ly/P0YLKd\r\n\tClip of the Week Outtakes - Going to Tokyo - http://bit.ly/TvOtIo\r\n\tNewsroom - Social - http://bit.ly/ShVhSK\r\n\tVideo Game Vault - Zombie Nation - http://bit.ly/NJbOTm\r\n\tGearbox Borderlands 2 Launch Panel - http://bit.ly/QASVPS\r\n\tCinemassacre Mailbag Episode 9 - http://bit.ly/SYSc0B\r\n\tDeath Battle Gag Reel - Boom-Tiger - http://bit.ly/UDsGh5\r\n\tThe Clip - Going to Tokyo - http://bit.ly/RQhFmw\r\n\tBrentalfloss @ Nintendo Direct - http://bit.ly/QqwD61\r\n\tThe Game OverThinker - Easy Does It - http://bit.ly/S5xOsd\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\n\tJared - http://Twitter.com/ProJared\r\n\tSam - http://Twitter.com/ScrewAttackSam\r\n\tDrake - http://Twitter.com/TrailerDrake","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"one-with-the-tigers\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03e83730-5bff-4996-b3ef-dae5f71b72f7/sm/video_thumbnail_2863606.jpg","duration":1781,"publication_date":"2012-09-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sony-has-day-1-digital-downloads-kickstarters-rival-and-tvs-might-get-games-hard-news-092512","changefreq":"weekly","video":[{"title":"S1:E273 - Sony Has Day 1 Digital Downloads, Kickstarter's Rival, and TVs Might Get Games - Hard News 09/25/12","description":"Gambitious is the industry’s next crowdsourcing platform for gaming - http://www.screwattack.com/news/gambitious-industry%E2%80%99s-next-crowdsourcing-platform-gaming\r\nCable companies want to play games with the big boys - http://www.screwattack.com/news/cable-companies-want-play-games-big-boys\r\nSony begins new PSN promotion “Day 1 Digital” - http://www.screwattack.com/news/sony-begins-new-psn-promotion-%E2%80%9Cday-1-digital%E2%80%9D\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/sony-has-day-1-digital-downloads-kickstarters-rival-and-tvs-might-get-games-hard-news-092512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/096776e6-c68e-4d14-9529-6bdf81f88188/sm/video_thumbnail_2863891.png","duration":125,"publication_date":"2012-09-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-pictionary","changefreq":"weekly","video":[{"title":"S1:E372 - VGV - Pictionary","description":"The game about drawing was actually better for listening.","player_loc":"https://roosterteeth.com/embed/vgv-pictionary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54383356-6ede-4101-a43a-9a1ce2c09cc8/sm/video_thumbnail_2687391.jpg","duration":126,"publication_date":"2012-09-25T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-going-to-tokyo","changefreq":"weekly","video":[{"title":"S1:E416 - [Advantage Content] Clip of the Week Outtakes - Going To Tokyo","description":"You'd be impressed how many different ways we can screw up a very basic skit.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-going-to-tokyo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/398acaca-15ca-401e-9600-1a3a36a3a430/sm/video_thumbnail_2859836.jpg","duration":375,"publication_date":"2012-09-24T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-social","changefreq":"weekly","video":[{"title":"S1:E19 - Newsroom: Social","description":"He's also really good at tickle fights.\r\n(New episodes every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-social","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9475c059-df39-4627-a592-023a9230594c/sm/video_thumbnail_2859336.jpg","duration":97,"publication_date":"2012-09-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gearbox-borderlands-2-panel-part-3","changefreq":"weekly","video":[{"title":"S1:E415 - Gearbox Borderlands 2 Panel (Part 3)","description":"Watch Part 1 Here\r\nWatch Part 2 Here\r\n \r\nRandy Pitchford, Anthony Burch, and Morgan Webb discuss Borderlands 2 and answer fans' questions from the crowd!","player_loc":"https://roosterteeth.com/embed/gearbox-borderlands-2-panel-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c9faedd-bc30-4174-b67b-273cd84cf209/sm/video_thumbnail_2857101.jpg","duration":1326,"publication_date":"2012-09-24T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gearbox-borderlands-2-panel-part-2","changefreq":"weekly","video":[{"title":"S1:E414 - Gearbox Borderlands 2 Panel (Part 2)","description":"Watch Part 1 Here\r\nWatch Part 3 Here\r\n \r\nRandy Pitchford, Anthony Burch and Morgan Webb discuss Borderlands 2 and answer fans' questions!","player_loc":"https://roosterteeth.com/embed/gearbox-borderlands-2-panel-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf9e8625-bda7-4fe8-b711-7cbcd408da12/sm/video_thumbnail_2857061.jpg","duration":1529,"publication_date":"2012-09-24T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gearbox-borderlands-2-panel-part-1","changefreq":"weekly","video":[{"title":"S1:E413 - Gearbox Borderlands 2 Panel (Part 1)","description":"Watch Part 2 Here\r\nWatch Part 3 Here\r\n \r\nRandy Pitchford, Anthony Burch, and Morgan Webb discuss Borderlands 2 and answer fans' questions!\r\n ","player_loc":"https://roosterteeth.com/embed/gearbox-borderlands-2-panel-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16e907f9-3507-49df-84c0-168003f2f954/sm/video_thumbnail_2857051.jpg","duration":1243,"publication_date":"2012-09-24T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/starcraft-2-goes-free-to-play-popcap-dublin-closes-and-no-bayonetta-2-without-nintendo-hard-news-092412","changefreq":"weekly","video":[{"title":"S1:E272 - StarCraft 2 Goes Free to Play?!, PopCap Dublin Closes, and No Bayonetta 2 Without Nintendo - Hard News 09/24/12","description":"Bayonetta 2 would “not exist without Nintendo” according to producer Atsushi Inaba - http://www.screwattack.com/news/bayonetta-2-would-%E2%80%9Cnot-exist-without-nintendo%E2%80%9D-according-producer-atsushi-inaba\r\nEA closes PopCap Dublin and we all become a bit depressed - http://www.screwattack.com/news/ea-closes-popcap-dublin-and-we-all-become-bit-depressed\r\nBlizzard might make Starcraft II’s multiplayer free to play - http://www.screwattack.com/news/blizzard-might-make-starcraft-ii%E2%80%99s-multiplayer-free-play\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/starcraft-2-goes-free-to-play-popcap-dublin-closes-and-no-bayonetta-2-without-nintendo-hard-news-092412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/336e7f0b-5e32-49ae-926a-a456a670142f/sm/video_thumbnail_2856821.png","duration":120,"publication_date":"2012-09-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-going-to-tokyo","changefreq":"weekly","video":[{"title":"S1:E179 - Clip of the Week - Going To Tokyo","description":"We're pretty jealous of the adventures in Japan that Craig, Chad, and Bryan are having right now.  Jealous enough that we'll do just about anything to get there.  Just.  About.  Anything.\r\nSee Bryan, Chad, and Cheapy D play a full round of Big Bang Smash here.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-going-to-tokyo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ec6c39-fdff-49cd-8170-8569f646bb5a/sm/japanthumb.jpg","duration":133,"publication_date":"2012-09-21T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/an-arcade-stick-with-no-stick-this-is-the-hit-box","changefreq":"weekly","video":[{"title":"S1:E412 - An arcade stick with no stick? This is the Hit Box!","description":"What started as a project of one salty fighting game fan is now being sold and it will change the way you play fighting games.\r\nFind out more about the Hit Box at http://www.hitboxarcade.com","player_loc":"https://roosterteeth.com/embed/an-arcade-stick-with-no-stick-this-is-the-hit-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dac106f-c5bc-4075-8195-2985bf0acfd3/sm/video_thumbnail_2837391.jpg","duration":134,"publication_date":"2012-09-21T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dragons-dogma-expansion-sleeping-dogs-dlc-and-a-360-exclusive-medal-of-honor-beta-hard-news-092112","changefreq":"weekly","video":[{"title":"S1:E271 - Dragon's Dogma Expansion, Sleeping Dogs DLC, and a 360 Exclusive Medal of Honor Beta - Hard News 09/21/12","description":"Dragon’s Dogma to get new modes this holiday and an expansion in 2013 - http://www.screwattack.com/news/dragon%E2%80%99s-dogma-get-new-modes-holiday-and-expansion-2013\r\nSleeping Dogs’ latest DLC will have you racing your way up the Triad ranks - http://www.screwattack.com/news/sleeping-dogs%E2%80%99-latest-dlc-will-have-you-racing-your-way-triad-ranks\r\nMoH: Warfighter has a Beta coming in October, but only on Xbox 360 - http://www.screwattack.com/news/moh-warfighter-has-beta-coming-october-only-xbox-360\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/dragons-dogma-expansion-sleeping-dogs-dlc-and-a-360-exclusive-medal-of-honor-beta-hard-news-092112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39fa2445-4ef5-48d2-b081-9f7982a95288/sm/video_thumbnail_2836361.png","duration":132,"publication_date":"2012-09-21T14:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pikachu-vs-blanka-death-battle","changefreq":"weekly","video":[{"title":"S1:E24 - Pikachu VS Blanka","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/pikachu-vs-blanka-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d65490b9-700e-4c40-8b5b-a6e39ce6ef32/sm/video_thumbnail_2821211.jpg","duration":519,"publication_date":"2012-09-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/big-bang-smash-the-greatest-arcade-game-youve-never-heard-of","changefreq":"weekly","video":[{"title":"S1:E411 - Big Bang Smash. The greatest arcade game you've never heard of.","description":"While in Akihabara with Cheapy D, we stumbled upon a game that was more fun than we ever expected.  Why is it so great? One word: Chaos.","player_loc":"https://roosterteeth.com/embed/big-bang-smash-the-greatest-arcade-game-youve-never-heard-of","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6927280d-c9bd-42e0-bb29-7420e8aec439/sm/video_thumbnail_2830681.png","duration":156,"publication_date":"2012-09-20T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/kingdom-hearts-hd-collection-half-life-3-news-and-the-nintendo-gets-the-unity-engine-hard-news-092012","changefreq":"weekly","video":[{"title":"S1:E270 - Kingdom Heart's HD Collection, Half Life 3 News?!, and the Nintendo Gets the Unity Engine - Hard News 09/20/12","description":"Kingdom Hearts HD 1.5 announced for PS3 - http://www.screwattack.com/news/kingdom-hearts-hd-15-announced-ps3\r\n[Rumor] Half-Life 3 to be an open world game for 2013 - http://www.screwattack.com/news/rumor-half-life-3-be-open-world-game-2013\r\nUnity engine is coming to Wii U for all you indie hopefuls - http://www.screwattack.com/news/unity-engine-coming-wii-u-all-you-indie-hopefuls\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/kingdom-hearts-hd-collection-half-life-3-news-and-the-nintendo-gets-the-unity-engine-hard-news-092012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/109fde9d-00f9-4516-8532-4ab603958a8f/sm/video_thumbnail_2829741.png","duration":132,"publication_date":"2012-09-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/inafunes-ninja-gaiden-bioware-loses-its-founders-and-city-of-heros-closes-hard-news-091912","changefreq":"weekly","video":[{"title":"S1:E269 - Inafune's Ninja Gaiden, BioWare Loses Its Founders, and City of Heros Closes - Hard News 09/19/12","description":"BioWare founders say goodbye to video games and retire - http://www.screwattack.com/news/bioware-founders-say-goodbye-video-games-and-retire\r\nNCSoft’s City of Heroes subscribers will begin receiving refunds - http://www.screwattack.com/news/ncsoft%E2%80%99s-city-heroes-subscribers-will-begin-receiving-refunds\r\nYaiba: Ninja Gaiden Z is when Keiji Inafune’s cyborg tries to kill Ryu Hayabusa - http://www.screwattack.com/video/Yaiba-Ninja-Gaiden-Z-is-when-Keiji-Inafunes-cyborg-tries-to-kill-Ryu-Hayabusa-2823526\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/inafunes-ninja-gaiden-bioware-loses-its-founders-and-city-of-heros-closes-hard-news-091912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dead6f34-f069-444a-8fcd-815e5e6920b8/sm/video_thumbnail_2824576.png","duration":131,"publication_date":"2012-09-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/microsoft-renews-killer-instinct-sonic-nights-release-dates-wipeouts-online-lives-on-hard-news-091812","changefreq":"weekly","video":[{"title":"S1:E268 - Microsoft Renews Killer Instinct, Sonic & NiGHTS Release Dates, Wipeout's Online Lives on - Hard News 09/18/12","description":"C-c-c-c-c-Combo Maker? Killer Instinct trademark Renewed by Microsoft - http://www.screwattack.com/news/c-c-c-c-c-combo-maker-killer-instinct-trademark-renewed-microsoft\r\nWipEout 2048 lives on despite Sony Liverpool’s closure - http://www.screwattack.com/news/wipeout-2048-lives-despite-sony-liverpool%E2%80%99s-closure\r\nSonic Adventure 2, NiGHTS Into Dreams ports dated & priced - http://www.screwattack.com/news/sonic-adventure-2-nights-dreams-ports-dated-priced\r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/microsoft-renews-killer-instinct-sonic-nights-release-dates-wipeouts-online-lives-on-hard-news-091812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0cefde8-27b5-47de-ba71-9b2594cfca92/sm/video_thumbnail_2818481.png","duration":126,"publication_date":"2012-09-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-091912","changefreq":"weekly","video":[{"title":"S1:E410 - SideScrollers Extended 09/19/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-091912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d332a51-2a30-44ba-826a-9cf8b2f249c7/sm/video_thumbnail_2816591.jpg","duration":604,"publication_date":"2012-09-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"fill-ins\"","changefreq":"weekly","video":[{"title":"S1:E82 - SideScrollers - \"Fill Ins\"","description":"Get the audio version here! - http://bit.ly/RnKfks\r\nSideScrollers Extended can be watched here! - http://bit.ly/PwiuSU\r\nCheck out all of our PAX coverage! - http://bit.ly/Ql4Fdu\r\n \r\nCheck out our newest content by clicking the links below!\r\nNewsroom - Soft Shell - http://bit.ly/PnTy06\r\n\tTommy the Toucan's The Birthday Party - http://bit.ly/Rlu1Tr\r\n\tCinemassacre Mailbag Episode 9 - http://bit.ly/SYSc0B\r\n\t12 Reasons We HATE g4/TechTV - http://bit.ly/PKsJVx\r\n\t12 Reasons We LOVE g4/TechTV - http://bit.ly/R5FPPg\r\n\tGame Theory - Video Game Crossovers - http://bit.ly/PENkum\r\n\tClip of the Week - Winners Don't Use Drugs - http://bit.ly/UhtFiz\r\n\tReview - The Last Story - http://bit.ly/U8KoJd\r\n\tThe Best EVER Announcer - http://bit.ly/PBrnwu\r\n\tLive at Nintendo Direct with brentalfloss! - http://bit.ly/SiMaSa\r\n\tThe Game OverThinker - Easy Does It - http://bit.ly/S5xOsd\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\n\tJared - http://Twitter.com/ProJared\r\n\tSam - http://Twitter.com/ScrewAttackSam\r\n\tDrake - http://Twitter.com/TrailerDrake","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"fill-ins\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb6a1f5c-8d42-43b6-8a58-c16c8afd7179/sm/video_thumbnail_2816416.jpg","duration":1898,"publication_date":"2012-09-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-the-adventures-of-batman-robin-genesis","changefreq":"weekly","video":[{"title":"S1:E371 - VGV - The Adventures of Batman & Robin (Genesis)","description":"Less powerful hardware?  Not a problem for The Batman (and the Boy Wonder, I guess).\r\n ","player_loc":"https://roosterteeth.com/embed/vgv-the-adventures-of-batman-robin-genesis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17a79aff-0855-42ad-95f6-a58aba646cc6/sm/video_thumbnail_2687406.jpg","duration":146,"publication_date":"2012-09-18T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-soft-shell","changefreq":"weekly","video":[{"title":"S1:E18 - Newsroom: Soft Shell","description":"Maybe if its bells were more bueno!\r\n(New episodes every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-soft-shell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e21fee5-b444-4324-a3ec-384bdc3f0e8b/sm/video_thumbnail_2813981.jpg","duration":72,"publication_date":"2012-09-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dragon-age-3-a-new-ps3-model-and-no-online-for-monster-hunter-on-3ds-hard-news-091712","changefreq":"weekly","video":[{"title":"S1:E267 - Dragon Age 3, A New PS3 Model?, and No Online For Monster Hunter on 3DS - Hard News 09/17/12","description":"EA officially announces Dragon Age 3: Inquisition - http://www.screwattack.com/news/ea-officially-announces-dragon-age-3-inquisition\r\n[Rumor] New PS3 SKU announcement in-bound? - http://www.screwattack.com/news/rumor-new-ps3-sku-announcement-bound\r\nMonster Hunter 3 on 3DS has no online and won’t be bundled with Wii U version - http://www.screwattack.com/news/capcom-usa-vp-answers-fan-questions-about-monster-hunter-3-ultimate\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/dragon-age-3-a-new-ps3-model-and-no-online-for-monster-hunter-on-3ds-hard-news-091712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/539a415f-808a-418a-a8c9-0805098465ff/sm/video_thumbnail_2812146.png","duration":131,"publication_date":"2012-09-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tommy-the-toucan-@a-fest-the-birthday-party","changefreq":"weekly","video":[{"title":"S1:E409 - Tommy the Toucan @A-Fest - The Birthday Party","description":"Tommy is turning 4!  It's just a shame nobody got him any decency or politeness for his birthday.  One more thing: do NOT call him Toucan Sam.","player_loc":"https://roosterteeth.com/embed/tommy-the-toucan-@a-fest-the-birthday-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/106cb652-74bf-4496-8983-64a516cbdc93/sm/video_thumbnail_2807576.jpg","duration":241,"publication_date":"2012-09-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-winners-dont-use-drugs","changefreq":"weekly","video":[{"title":"S1:E178 - Clip of the Week - Winners Don't Use Drugs","description":"There are days when some people just simply don't want to be in the Clip of the Week.  Those days are done.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-winners-dont-use-drugs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ecc9e35-fb1d-49f0-bc8b-622fd458cc2f/sm/CotWdrugs.jpg","duration":132,"publication_date":"2012-09-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/van-damme-finally-makes-his-way-to-mortal-kombat","changefreq":"weekly","video":[{"title":"S1:E408 - Van Damme FINALLY makes his way to Mortal Kombat!","description":"If you ever wanted to see Jean-Claude Van Damme kick off someone's head three times this is for you.","player_loc":"https://roosterteeth.com/embed/van-damme-finally-makes-his-way-to-mortal-kombat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ffd62e7-325b-4551-8156-344775a2882b/sm/video_thumbnail_2793951.jpg","duration":524,"publication_date":"2012-09-14T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/blind-fanboy-rage-on-bayonetta-2-no-multiple-wii-u-pads-and-black-mesa-source-hard-news-091412","changefreq":"weekly","video":[{"title":"S1:E266 - Blind Fanboy Rage on Bayonetta 2, No Multiple Wii U Pads, and Black Mesa Source - Hard News 09/14/12","description":"Want two Wii U GamePads? Too bad. - http://www.screwattack.com/news/want-two-wii-u-gamepads-too-bad\r\nBayonetta fans rage over exclusivity, while Platinum weathers the storm - http://www.screwattack.com/news/bayonetta-fans-rage-over-exclusivity-while-platinum-weathers-storm\r\nOMG! Black Mesa Source is ready! OMG! - http://www.screwattack.com/news/omg-black-mesa-source-ready-omg\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/blind-fanboy-rage-on-bayonetta-2-no-multiple-wii-u-pads-and-black-mesa-source-hard-news-091412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcf6e6df-9150-45d1-ab7a-baf08a9b084d/sm/video_thumbnail_2793651.png","duration":142,"publication_date":"2012-09-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-announcer","changefreq":"weekly","video":[{"title":"S1:E13 - The Best EVER: Announcer","description":"Which powerful voices excite your gamer ears? The crew goes over the best video game announcers. Who is your best EVER?","player_loc":"https://roosterteeth.com/embed/the-best-ever-announcer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9a2644a-fb4b-4f3b-ac91-93979d727ea0/sm/video_thumbnail_2790431.jpg","duration":209,"publication_date":"2012-09-14T00:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bayonetta-2-announced-as-a-wii-u-exclusive-and-a-metric-crapton-of-wii-u-news-hard-news-091312","changefreq":"weekly","video":[{"title":"S1:E265 - Bayonetta 2 Announced as a Wii U Exclusive and a Metric Crapton of Wii U News! - Hard News 09/13/12","description":"Wii U is releasing on November 18th for $300 - $350 - http://www.screwattack.com/news/wii-u-releasing-november-18th-300-350\r\nNintendo TVii is trite, but necessary to remain competitive - http://www.screwattack.com/news/nintendo-tvii-trite-necessary-remain-competitive\r\nHere is a list of every game in the Wii U launch window - http://www.screwattack.com/news/here-list-every-game-wii-u-launch-window\r\n \r\nFollow us on Twitter and like us on Facebook!\r\n\tTwitter Jared - Twitter.com/ProJared\r\n\tTwitter ScrewAttack - Twitter.com/ScrewAttack\r\n\tFacebook Jared - Facebook.com/Pro.Jared\r\n\tFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/bayonetta-2-announced-as-a-wii-u-exclusive-and-a-metric-crapton-of-wii-u-news-hard-news-091312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b9deedd-21c9-46e9-a003-bc3f95b985fc/sm/video_thumbnail_2751691.jpg","duration":144,"publication_date":"2012-09-13T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-xcom-enemy-unknown-hands-on","changefreq":"weekly","video":[{"title":"S1:E407 - PAX 12 - XCOM: Enemy Unknown Hands On","description":"I love XCOM, and those who follow my personal Twitch streams know that when I played through the whole game with a g1 army over a year ago. \r\nAt PAX Prime 2012, I got to play the new one!","player_loc":"https://roosterteeth.com/embed/pax-12-xcom-enemy-unknown-hands-on","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ddc5348-cc32-4283-8649-8b89f8629fae/sm/video_thumbnail_2750096.jpg","duration":127,"publication_date":"2012-09-13T12:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-announces-an-announcement-blizzard-can-track-your-screenshots-and-overstrike-is-now-fuze-hard-news-091212","changefreq":"weekly","video":[{"title":"S1:E264 - Nintendo Announces an Announcement, Blizzard Can Track Your Screenshots, and Overstrike is Now Fuze - Hard News 09/12/12","description":"Insomniac’s Fuse changes a lot after ditching the name Overstrike\r\nBlizzard watermarks in-game WoW screenshots and spooks the Internet\r\nNintendo Direct Reminder","player_loc":"https://roosterteeth.com/embed/nintendo-announces-an-announcement-blizzard-can-track-your-screenshots-and-overstrike-is-now-fuze-hard-news-091212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd6e5b62-208d-4d6b-aa60-f83b3b710522/sm/video_thumbnail_2726051.png","duration":141,"publication_date":"2012-09-12T14:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-mechwarrior-tactics","changefreq":"weekly","video":[{"title":"S1:E406 - PAX 12 - Mechwarrior Tactics","description":"Mechwarrior Tactics was on display right next to Mechwarrior Online, though the games couldn't be more different.\r\nTactics brought back the memories I had of the tabletop BattleTech game, with virtual 'mechs replacing the pewter figurines I had poorly painted on a hexagonal-spaced map. The ruleset from the tabletop is recreating (mostly) faithfully here. I was watching my heat tables, using movement to be harder to hit, and using elevation to get a to-hit bonus on rolls. It's far more streamlined here than it ever as with paper and dice, but just as enjoyable.\r\nI would've liked to see more of the customization options, but the free-to-play game looks really good for something that just plays in your browser. It's a slower, more methodical game, which requires a lot of (ahem) tactical thinking, which I love.\r\nMechWarrior Tactics is coming along nicely, and I'm really hoping to get to play it some, even if it is in the beta.\r\nYou can sign up here -- www.MWTactics.com\r\nAnd view more MechWarrior action here -- MechWarrior Online","player_loc":"https://roosterteeth.com/embed/pax-12-mechwarrior-tactics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fad3f289-549e-4388-93df-45bbdb5636be/sm/video_thumbnail_2725571.jpg","duration":182,"publication_date":"2012-09-12T12:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/check-out-tomb-raider-in-action","changefreq":"weekly","video":[{"title":"S1:E405 - Check Out Tomb Raider In Action","description":" Foraging, climbing over things, shooting deer in the ass, what else could you want from Tomb Raider?","player_loc":"https://roosterteeth.com/embed/check-out-tomb-raider-in-action","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1853d0e-48aa-43af-99da-6b85da6a4980/sm/video_thumbnail_2725406.jpg","duration":661,"publication_date":"2012-09-12T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/raiding-tombs-at-pax-prime-2012","changefreq":"weekly","video":[{"title":"S1:E404 - Raiding Tombs at PAX Prime 2012","description":"Tomb Raider was playable at PAX Prime, and besides getting to shoot deer in the ass what else was there to do? ","player_loc":"https://roosterteeth.com/embed/raiding-tombs-at-pax-prime-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee1fca5d-b2c0-4435-ba83-abbe2ef3d128/sm/video_thumbnail_2725396.jpg","duration":67,"publication_date":"2012-09-12T12:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-091212","changefreq":"weekly","video":[{"title":"S1:E403 - SideScrollers Extended 09/12/12","description":"S1:E403 - SideScrollers Extended 09/12/12","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-091212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd88bb44-0f20-4945-95db-a378cc212cd6/sm/video_thumbnail_2718011.jpg","duration":410,"publication_date":"2012-09-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"hanging-with-the-goof-troop\"","changefreq":"weekly","video":[{"title":"S1:E81 - SideScrollers - \"Hanging With the Goof Troop\"","description":"Get the audio version here! - http://bit.ly/QK6AD2\r\nSideScrollers Extended can be watched here! - http://bit.ly/RDlRen\r\nCheck out all of our PAX coverage! - http://bit.ly/Ql4Fdu\r\n \r\nCheck out our newest content by clicking the links below!\r\nMario Party 7 After Dark - http://bit.ly/PQw0Q8\r\nDeath Battle Analysis - Blanka - http://bit.ly/Qmywwv\r\nNewsroom - GQQ - http://bit.ly/UG5RXD\r\n12 Reasons We HATE the Original Game Boy - http://bit.ly/QhbSXS\r\n18 Reasons We LOVE the Original Game Boy - http://bit.ly/TwVnf0\r\nClip of the Week - Nintendo Direct - http://bit.ly/QopTan\r\n[Advantage Content] Clip of the week Outtakes - The Avengers - http://bit.ly/RCYy4a\r\nVideo Game Vault - The Amazing Spider-Derp - http://bit.ly/QDN4xG\r\nVideo Game Vault - Dave Mira's Freestyle BMX - http://bit.ly/QCvszQ\r\nVideo Game Vault - Wild Guns - http://bit.ly/QCvsQz\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"hanging-with-the-goof-troop\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe0b8691-41b0-4ecd-bb0d-09733a995bdf/sm/video_thumbnail_2717726.jpg","duration":2731,"publication_date":"2012-09-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-mechwarrior-online","changefreq":"weekly","video":[{"title":"S1:E402 - PAX 12 - Mechwarrior Online","description":"PAX Prime was the first time I got to play Mechwarrior Online, and it brought me right back to my  Dad's computer desk in 90's. \r\nIt plays just like how a Mechwarrior game should. You're moving around a massive, metal walking tank, and it feels like you're a walking hunk of metal. Shooting off PPCs on my Catapult and following it up with three medium lasers brought the same kind of destruction I've known from the Mechwarrior games of the past. Only this time, it's against another player.\r\nI really, really liked what I played of Mechwarrior Online. So much so that I'm considering that Founder's Pack pretty heavily. I recommend giving it a look too, especially if you're in the mood for a different kind of player versus player game that isn't a shooter or a MOBA.\r\nwww.MWOMercs.com\r\nSee ALL of our PAX Coverage here!","player_loc":"https://roosterteeth.com/embed/pax-12-mechwarrior-online","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41d88f2d-08c2-4b1c-858f-add4c1c06dd8/sm/video_thumbnail_2720981.jpeg","duration":317,"publication_date":"2012-09-11T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sonys-virtual-reality-capcoms-post-launch-dlc-and-terreria-comes-to-consoles-hard-news-091112","changefreq":"weekly","video":[{"title":"S1:E263 - Sony's Virtual Reality, Capcom's POST LAUNCH DLC, and Terreria Comes to Consoles - Hard News 09/11/12","description":"Terreria announced for PSN/XBLA with more content, so why is everyone yelling? - http://www.screwattack.com/news/terreria-announced-psnxbla-more-content-so-why-everyone-yelling\r\nCapcom reveals first wave of DLC plans for RE6 - http://www.screwattack.com/news/capcom-reveals-first-wave-dlc-plans-re6 \r\nSony wants to bring stereoscopic 3D to a VR headset - http://www.screwattack.com/news/sony-wants-bring-stereoscopic-3d-vr-headset\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/sonys-virtual-reality-capcoms-post-launch-dlc-and-terreria-comes-to-consoles-hard-news-091112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2998f381-6a3e-4ef4-b52b-11160cd02d28/sm/video_thumbnail_2719626.png","duration":129,"publication_date":"2012-09-11T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/check-out-the-super-time-force-in-action","changefreq":"weekly","video":[{"title":"S1:E401 - Check Out The Super Time Force In Action","description":" Bryan was just not very good at Super Time Force, but look past his sucking harder than a black hole to see what you should be looking forward to.","player_loc":"https://roosterteeth.com/embed/check-out-the-super-time-force-in-action","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0dedfc94-f376-4a85-9513-8d369cc214e0/sm/video_thumbnail_2719781.jpg","duration":510,"publication_date":"2012-09-11T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/make-time-for-super-time-force","changefreq":"weekly","video":[{"title":"S1:E400 - Make Time For Super Time Force.","description":" From the Indie Mega Booth at PAX comes one of the indie games to watch in 2013: Super Time Force.","player_loc":"https://roosterteeth.com/embed/make-time-for-super-time-force","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbafd828-605e-4744-b010-4b4a617b945b/sm/video_thumbnail_2719786.jpg","duration":78,"publication_date":"2012-09-11T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-gqq","changefreq":"weekly","video":[{"title":"S1:E17 - Newsroom: GQQ","description":"Monocles and a taste for pretentiousness are optional.\r\n(New episode every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-gqq","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8075e7dd-a71e-4876-bb4c-b6f88c00359b/sm/video_thumbnail_2714546.jpg","duration":85,"publication_date":"2012-09-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-super-mario-bros-u-mega-man-online-is-mega-done-and-gamestop-still-thinking-vintage-hard-news-091012","changefreq":"weekly","video":[{"title":"S1:E262 - New Super Mario Bros. U, Mega Man Online Is Mega Done, and GameStop Still Thinking Vintage -Hard News 09/10/12","description":" The Wii U's Mario is unveiled, Another Mega Man could be canceled, and GameStop hasn't given up on the idea of vintage games today on Hard News.\r\nNew Super Mario Bros. U - http://www.screwattack.com/news/new-super-mario-bros-u-features-and-screenshots-revealed\r\nMega Man Online canceled - http://www.screwattack.com/news/rumor-mega-man-online-art-leaks-and-internet-says-it-cancelled\r\nGameStop giving vintage a good hard look - http://www.screwattack.com/news/gamestop-ceo-discusses-chain%E2%80%99s-new-vintage-resale-strategy-greater-depth\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/new-super-mario-bros-u-mega-man-online-is-mega-done-and-gamestop-still-thinking-vintage-hard-news-091012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da809069-e3ba-4394-95d7-f1d3a38937ee/sm/video_thumbnail_2712736.png","duration":131,"publication_date":"2012-09-10T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/injustice-is-a-four-button-fighter-without-a-block-button-please-explain","changefreq":"weekly","video":[{"title":"S1:E399 - Injustice Is A Four Button Fighter Without A Block Button? Please Explain.","description":" We finally got to play Netherrealm Studios' new DC fighter, Injustice: Gods Among Us, at PAX and Jared had some questions for its producer.","player_loc":"https://roosterteeth.com/embed/injustice-is-a-four-button-fighter-without-a-block-button-please-explain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29d886b8-d25d-4b7a-9d0c-7b57910b72dd/sm/video_thumbnail_2710631.jpg","duration":292,"publication_date":"2012-09-10T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/one-does-not-simply-make-a-moba-on-a-console","changefreq":"weekly","video":[{"title":"S1:E398 - One Does Not Simply Make A MOBA On A Console","description":" Warner Bros. is attempting a Lord of the Rings MOBA, and they're doing it on consoles. Does this look like something you want to play?","player_loc":"https://roosterteeth.com/embed/one-does-not-simply-make-a-moba-on-a-console","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d39a43a-c924-40af-a7ea-f1a099018fe2/sm/video_thumbnail_2710626.jpg","duration":227,"publication_date":"2012-09-10T10:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/you-can-do-scary-things-in-scribblenauts-unlimited","changefreq":"weekly","video":[{"title":"S1:E397 - You Can Do Scary Things in Scribblenauts Unlimited","description":" The dictionary only got bigger for Scribblenauts Unlimited, which means Jared is free to find inspired solutions from the darkest corners of his mind.","player_loc":"https://roosterteeth.com/embed/you-can-do-scary-things-in-scribblenauts-unlimited","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/098210a9-6c34-4b42-8ca5-b5b718686c4f/sm/video_thumbnail_2710621.jpg","duration":563,"publication_date":"2012-09-10T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/blood-alone-moves-the-gears-of-war","changefreq":"weekly","video":[{"title":"S1:E396 - Blood Alone Moves The Gears of War","description":" Gears of War Judgement was playable at PAX, and long time fans of the series will feel right at home.","player_loc":"https://roosterteeth.com/embed/blood-alone-moves-the-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3acf0229-b721-490a-a6cc-0fd23547f062/sm/video_thumbnail_2710566.jpg","duration":52,"publication_date":"2012-09-10T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/was-jared-happy-with-happy-wars","changefreq":"weekly","video":[{"title":"S1:E395 - Was Jared Happy With Happy Wars?","description":"Jared got ahold of the 30 man multiplayer MOBA Happy Wars at PAX, is it a war he wants to keep fighting? ","player_loc":"https://roosterteeth.com/embed/was-jared-happy-with-happy-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/101a91ff-ca9c-40b4-a8a1-280b25de6a19/sm/video_thumbnail_2710531.jpg","duration":121,"publication_date":"2012-09-10T07:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/war-war-never-changes-it-only-gets-happier","changefreq":"weekly","video":[{"title":"S1:E394 - War? War Never Changes, It Only Gets...Happier.","description":" Check out the happiest little war coming to XBLA this fall!","player_loc":"https://roosterteeth.com/embed/war-war-never-changes-it-only-gets-happier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df4b891f-d6fe-4d13-ad34-bfd767ce415d/sm/video_thumbnail_2710536.jpg","duration":416,"publication_date":"2012-09-10T07:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-nintendo-direct","changefreq":"weekly","video":[{"title":"S1:E177 - Clip of the Week - Nintendo Direct","description":"We know a lot of people are dying for that Nintendo Direct episode about Wii U details to get here... so we went ahead and stole it for you guys.\r\n ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-nintendo-direct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d48460a-757b-4e55-8fdb-f9768b1d38fb/sm/CotWRotator_0.jpg","duration":202,"publication_date":"2012-09-07T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-spyparty-interview","changefreq":"weekly","video":[{"title":"S1:E393 - PAX 12 - SpyParty Interview","description":"SpyParty is an indie game that elevates the idea of player vs player.\r\nI tried both the Spy and the Sniper mode. The spy must complete objectives in a party without letting the sniper realize that he isn't a computer-controlled character, and the sniper has to figure out which party-goer is the player. It's waaaaay harder than it sounds, on both ends.\r\nMy first time, I completed all of my objectives as a spy. When I tried the sniper, the player-spy escaped just as I lined up my shot. It was invigorating.\r\nIf you're interested in the game or the beta, go to www.SpyParty.com for more. ","player_loc":"https://roosterteeth.com/embed/pax-12-spyparty-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e765dee3-9ed4-4775-af6a-951937752c25/sm/video_thumbnail_2697616.jpg","duration":184,"publication_date":"2012-09-07T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-48","changefreq":"weekly","video":[{"title":"2014:E48 - A Staircase of Assault","description":"In RTAA #140, Miles pushes his little brother down the stairs, then thinks of a way to not get blamed for it.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/449496fb-02e8-4bbb-9af8-f7decabfcb70/sm/ep8947.jpg","duration":76,"publication_date":"2014-04-02T18:23:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-split-screen","changefreq":"weekly","video":[{"title":"S2:E2 - Split Screen","description":"On the latest episode of Immersion, we test whether a split screen view gives advantages in a real life FPS game.","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-split-screen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9080aa0f-35f9-42e1-a8eb-76ece11bb854/sm/ep8943.jpg","duration":503,"publication_date":"2014-04-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-265","changefreq":"weekly","video":[{"title":"2014:E265 - RT Podcast #265","description":"RT Celebrates 11 Years","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-265","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6582,"publication_date":"2014-04-01T21:26:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-11-year-anniversary-of-rooster-teeth-1","changefreq":"weekly","video":[{"title":"S5:E20 - 11 Year Anniversary of Rooster Teeth","description":"JJ finds Kerry editing a celebratory video for Rooster Teeth's 11 Year Anniversary. In celebration of our eleven years, use promo code: RT11Years and get 11% off your entire order from April 1-11. Check out http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-11-year-anniversary-of-rooster-teeth-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0c32206-4491-4bc6-ab03-601fd5e8a0e4/sm/ep8937.jpg","duration":116,"publication_date":"2014-04-01T16:31:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-36","changefreq":"weekly","video":[{"title":"2014:E36 - Rebel The Dog and Chris's Eyes Burn Off","description":"Rebel doesn't care and Chris just can't keep fluids out of his eyes.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d502dd20-770f-440b-b6b5-a1e2ae1c1adb/sm/ep8932.jpg","duration":122,"publication_date":"2014-03-29T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-ah-game-night-live-film","changefreq":"weekly","video":[{"title":"S2:E34 - AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on March 21, 2014","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-ah-game-night-live-film","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72d52a05-8fd3-4e8b-80c1-46c6c8428fdf/sm/ep8929.jpg","duration":3673,"publication_date":"2014-03-28T17:01:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-barbara","changefreq":"weekly","video":[{"title":"S2:E33 - Quick Draw with Patrick! (featuring Barbara)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn.This week's victim is Barbara! Check out the drawing in our RT Store:\nhttp://store.roosterteeth.com/products/quick-draw-...","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-barbara","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f36f29f-fa8c-4554-bef5-8488da218bff/sm/ep8927.jpg","duration":1274,"publication_date":"2014-03-28T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-mousetrap-chain-reaction","changefreq":"weekly","video":[{"title":"S1:E26 - Mousetrap Chain Reaction","description":"Gav sets up a chain of 150 mousetraps. Dan sets them off bravely.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-mousetrap-chain-reaction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12ca1891-cb0d-4ef6-a6e6-783e78f19597/sm/ep8926.jpg","duration":186,"publication_date":"2014-03-28T11:40:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-45","changefreq":"weekly","video":[{"title":"2014:E42 - Speeding and Dreaming","description":"In RTAA #139, Burnie tells the story of his kid finding a speeding ticket, and the ensuing shakedown he got as a result. Then, Gavin has another lucid dream, this time involving his family and gems.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a4fa579-7a88-4798-8c6a-48dba89a6331/sm/ep8919.jpg","duration":87,"publication_date":"2014-03-26T18:54:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-264","changefreq":"weekly","video":[{"title":"2014:E264 - RT Podcast #264","description":"RT Podcast Welcomes Back Brandon","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-264","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6183,"publication_date":"2014-03-25T23:31:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-34","changefreq":"weekly","video":[{"title":"2014:E34 - A Colossal Waste of Time","description":"Blaine and Aaron prank Brandon.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff5c6bca-ded5-44ac-b894-834f021451a1/sm/ep8908.jpg","duration":90,"publication_date":"2014-03-23T00:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-37","changefreq":"weekly","video":[{"title":"2014:E37 - Bad Luck Burnie Rides Again","description":"In RTAA #138, Burnie sees a couple having an argument outside his apartments, and, once again trying to be a nice guy, tries to break it up. But the situation is more complex than he was anticipating.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d4e0076-4cfd-44b8-bd2c-e340b3fbdfcb/sm/ep8897.jpg","duration":102,"publication_date":"2014-03-19T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-263","changefreq":"weekly","video":[{"title":"2014:E263 - RT Podcast #263","description":"RT Downs Some Green Beer","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-263","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6590,"publication_date":"2014-03-18T22:31:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-30","changefreq":"weekly","video":[{"title":"2014:E30 - The Last of Us","description":"In this week's RT Life, Burnie, Gus, and Barbara drive around Austin in search of the locations in the game The Last of Us.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02931909-4a88-456a-8719-ef7e00db9bb0/sm/ep8877.jpg","duration":288,"publication_date":"2014-03-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-262","changefreq":"weekly","video":[{"title":"2014:E262 - RT Podcast #262","description":"RT Partycasts with Onnit and Joe Rogan","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-262","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":3629,"publication_date":"2014-03-14T23:07:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-behind-the-scenes-surgeons-in-space-poster","changefreq":"weekly","video":[{"title":"S2:E32 - Behind the Scenes: Surgeons in Space Poster","description":"Watch @Jon turn a picture on a green screen into the poster for the must see summer blockbuster! (Disclaimer - Surgeons in Space: Deep Space Doctors is not a movie and will never come out...ever.)","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-behind-the-scenes-surgeons-in-space-poster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fc0265e-7a01-495d-b77b-704064ba020d/sm/ep8878.jpg","duration":99,"publication_date":"2014-03-14T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-32","changefreq":"weekly","video":[{"title":"2014:E32 - Michael's Weird Neighbor","description":"In RTAA #137, Michael gets a knock on his door from someone down the hall who needs to call the police. But as the neighbor explains his story on the phone, Michael realizes maybe he is slightly insane.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f60b87b-8d71-4133-a0f5-b5616252e19b/sm/ep8867.jpg","duration":114,"publication_date":"2014-03-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-261","changefreq":"weekly","video":[{"title":"2014:E261 - RT Podcast #261","description":"RT Live from SXSW","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-261","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":3473,"publication_date":"2014-03-12T00:27:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-airbag","changefreq":"weekly","video":[{"title":"S1:E25 - Airbag","description":"Gav and Dan show how fast car airbags inflate by filming them at 2500fps. Research has shown that the only thing that has ever inflated faster, is Dan's ego.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-airbag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9b5b199-0452-48f5-932e-f80835ba04ae/sm/ep8856.jpg","duration":322,"publication_date":"2014-03-09T21:49:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-27","changefreq":"weekly","video":[{"title":"2014:E27 - Chris's Feast and Joel Bowls","description":"Joel works on his bowling skills while Chris hits the lottery.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25448e88-bf9e-44ed-bcba-0596e84abeb5/sm/ep8855.jpg","duration":81,"publication_date":"2014-03-08T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-27","changefreq":"weekly","video":[{"title":"2014:E27 - The One in the Hole","description":"In RTAA #136, Michael goes on a stealth mission in the middle of a Let's Play to free Ryan's \"pet\" cow Edgar from imprisonment. Will his plan succeed","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f3382c9-03b0-43b3-9a7e-4ef40ea0c293/sm/ep8842.jpg","duration":136,"publication_date":"2014-03-05T19:18:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-260","changefreq":"weekly","video":[{"title":"2014:E260 - RT Podcast #260","description":"RT Celebrates Pancake Day","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-260","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":4917,"publication_date":"2014-03-04T22:55:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-21","changefreq":"weekly","video":[{"title":"2014:E21 - Miles vs Chips & Brandon's Trashcan","description":"In this week's RT Life, Miles is no match for the indestructible bag of chips and Brandon gets an early Christmas present.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27675b34-bc94-48be-a69f-0727d7386a96/sm/ep8830.jpg","duration":85,"publication_date":"2014-03-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-kerry","changefreq":"weekly","video":[{"title":"S2:E31 - Quick Draw with Patrick! (featuring Kerry)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn.\nThis week's victim is Kerry! This time Patrick creates an even better drawing!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-kerry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bc15457-00fd-42e7-9bf2-3970b0272cd8/sm/ep8823.jpg","duration":1368,"publication_date":"2014-02-28T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-20","changefreq":"weekly","video":[{"title":"2014:E20 - Kung Shu Wedding","description":"In RTAA #135, Gus goes to a wedding, but ends up having to take care of Drunk Esther and gets groped by one of her relatives. Burnie and Gavin talk about their shoe-based fighting style called Kung Shu","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/525af41d-189d-4b79-8b61-933ee1a4bd0d/sm/ep8813.jpg","duration":77,"publication_date":"2014-02-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-259","changefreq":"weekly","video":[{"title":"2014:E259 - RT Podcast #259","description":"RT Discusses Heroes Reborn","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-259","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6478,"publication_date":"2014-02-25T22:58:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-ah-game-night-live-7","changefreq":"weekly","video":[{"title":"S2:E30 - AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors. Filmed on February 21, 2014.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-ah-game-night-live-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54bbc854-ddde-4703-ab46-c0039b8f9dac/sm/ep8810.jpg","duration":3957,"publication_date":"2014-02-25T19:32:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-17","changefreq":"weekly","video":[{"title":"2014:E17 - Frazzled Joel & Chris Punches Brandon","description":"Joel is stuck in a tangled mess while Chris prepares to punch Brandon in the stomach.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/446f1f0b-c3ea-4719-a414-5b269717d6c0/sm/ep8802.jpg","duration":81,"publication_date":"2014-02-23T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-full-play-stream-pt-2","changefreq":"weekly","video":[{"title":"S2:E29 - Full Play Stream Pt.2","description":"Pt.2 of Michael's Full Play because by now you finished part 1 right","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-full-play-stream-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1fe35f0-b105-4821-992d-7144c53ea5d9/sm/ep8793.jpg","duration":7583,"publication_date":"2014-02-20T16:35:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-full-play-stream-pt-1","changefreq":"weekly","video":[{"title":"S2:E28 - Full Play Stream Pt.1","description":"Pt.1 of Michael's Full Play live stream from February 8th in case some of you lovely sponsors missed it.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-full-play-stream-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2379a90c-8b61-4596-8c3e-3ec8a7a6bd81/sm/ep8792.jpg","duration":6614,"publication_date":"2014-02-20T16:32:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-13","changefreq":"weekly","video":[{"title":"2014:E14 - Sewers & Freezers","description":"In RTAA #134, Burnie talks about exploring the sewers as a kid, and one time in particular when it became an Indiana Jones adventure. Then, he recalls the time in college some random dudes dropped a freezer on his lawn.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2f56e22-fdf8-46da-8396-d787d5393812/sm/ep8784.jpg","duration":78,"publication_date":"2014-02-19T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-258","changefreq":"weekly","video":[{"title":"2014:E258 - RT Podcast #258","description":"RT Discusses Self Inflation","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-258","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6731,"publication_date":"2014-02-18T22:57:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-fully-automatic-assault-rifle-at-18000fps","changefreq":"weekly","video":[{"title":"S1:E24 - Fully Automatic Assault Rifle at 18,000fps","description":"BEWARE, LOUD VIDEO! Watch in HD. (No 1080p available with this camera).\r\n\r\nGav and Dan head to Alabama to show you the mechanical workings of a fully automatic M4 Carbine with holographic sight as it fires 30 rounds in just over 2 seconds. Dan is in the British Army and has vast gun experience. Gav only has experience with an Xbox controller.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-fully-automatic-assault-rifle-at-18000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6ad6918-9a2f-444d-94ec-c8e6682d6d2d/sm/ep8776.jpg","duration":288,"publication_date":"2014-02-18T17:33:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-10","changefreq":"weekly","video":[{"title":"2014:E10 - Gavin and the Giant Wooden Oar","description":"Barbara uses an oar to smash Gavin in a happy place while Kerry attempts to move an inch on a unicycle.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea102fa3-2c80-41bd-8b23-3efa90e67ce9/sm/ep8769.jpg","duration":76,"publication_date":"2014-02-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-rooster-teeth-newly-wed-game","changefreq":"weekly","video":[{"title":"S2:E27 - Rooster Teeth Newly Wed Game","description":"Everyone has played or knows about the Newlywed game. Well just for the sponsor we got Michael and Lindsay to face off with Miles and Kerry. Who will be the ultimate couple this Valentine's Day","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-rooster-teeth-newly-wed-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41c4ec02-6c40-4fc7-815b-51f1c0c7ba40/sm/ep8768.jpg","duration":1341,"publication_date":"2014-02-15T04:20:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-8","changefreq":"weekly","video":[{"title":"2014:E8 - Workspace & Cavemen","description":"In RTAA #133, at the old office, Burnie finally gets his computer back when Gavin goes back to England, but suddenly everyone wants to use it. Then, Burnie tries to explain how muting a user on Twitter works to a caveman.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71656b70-f2e8-41bc-9588-0d8985d8713d/sm/ep8754.jpg","duration":76,"publication_date":"2014-02-12T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-257","changefreq":"weekly","video":[{"title":"2014:E257 - RT Podcast #257","description":"RT Tests The Super Sniffer","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-257","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6421,"publication_date":"2014-02-11T22:58:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-7","changefreq":"weekly","video":[{"title":"2014:E7 - Surgeon Simulator Extras and Brandon's Ice Slip","description":"In this week's RT Life, Emily helps out the Dr. Free and Dr. Jones, while Brandon takes one for the office.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3463bce-0d83-4549-a554-1daa1a1d0bcd/sm/ep8741.jpg","duration":81,"publication_date":"2014-02-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-4","changefreq":"weekly","video":[{"title":"2014:E4 - Gus' Gas Problem","description":"In RTAA #132, when a mix-up with the gas company cancels his service, Gus must take matters into his own hands to set things straight. Angry Gus takes no prisoners!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f992310-b4a7-4395-8fdf-01aa01e651cc/sm/ep8729.jpg","duration":91,"publication_date":"2014-02-05T18:02:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-256","changefreq":"weekly","video":[{"title":"2014:E256 - RT Podcast #256","description":"RT Discusses Nasty Tap Water","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-256","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6120,"publication_date":"2014-02-04T23:01:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-29","changefreq":"weekly","video":[{"title":"2014:E29 - Lazer Tag Tales","description":"In RTAA #131, the gang plays lazer tag, and things get intense as Michael and Lindsay are pitted against one another. Can love bloom even on a battlefield","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21f32bd4-cf24-491b-b3ed-cb4b6e9d89f6/sm/ep8596.jpg","duration":67,"publication_date":"2014-01-29T17:37:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-255","changefreq":"weekly","video":[{"title":"2014:E255 - RT Podcast #255","description":"RT Discusses Travel Stories","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-255","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5726,"publication_date":"2014-01-29T00:13:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-23","changefreq":"weekly","video":[{"title":"2014:E23 - Michael After Dark","description":"In this week's RT Life, Michael is left alone in the office. #RememberHim","player_loc":"https://roosterteeth.com/embed/rt-life-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b00491b5-dab7-4bde-8313-8b3531feaa3e/sm/ep8583.jpg","duration":95,"publication_date":"2014-01-25T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-miles","changefreq":"weekly","video":[{"title":"S2:E26 - Quick Draw with Patrick! (featuring Miles)","description":"Every Quick Draw, Patrick kidnaps someone in the office to talk to. Once held captive, he asks them to pick a scenario in which they'd like to be drawn.\nThis week's victim is Miles!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-quick-draw-with-patrick-with-miles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb9b24b1-8af9-4dd0-8e11-e407cd575c32/sm/ep8581.jpg","duration":1321,"publication_date":"2014-01-24T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-24","changefreq":"weekly","video":[{"title":"2014:E24 - Gus' Candy Cane-ine","description":"In RTAA #130, it's Gus' turn to have a crazy dream. He discovers his neighbor is the former head coach of University of Texas football team, and his dog is really a Christmas treat.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0f9f959-c700-4c32-b0aa-389795b09f3e/sm/ep8572.jpg","duration":93,"publication_date":"2014-01-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-254","changefreq":"weekly","video":[{"title":"2014:E254 - RT Podcast #254","description":"Rt Discusses Childhood Memories","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-254","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5929,"publication_date":"2014-01-21T23:05:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-melon-fragmentation-at-2500fps","changefreq":"weekly","video":[{"title":"S1:E23 - Melon Fragmentation at 2500fps","description":"If the military made melon grenades, they would probably look like this.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-melon-fragmentation-at-2500fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9e6aa9f-ed66-4963-8ddd-a6064a102475/sm/ep8568.jpg","duration":204,"publication_date":"2014-01-21T20:44:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-ah-game-night-live-2","changefreq":"weekly","video":[{"title":"S2:E25 - AH Game Night Live","description":"The Achievement Hunter guys live stream Game Night for the sponsors.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-ah-game-night-live-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8902c229-6942-41af-bfce-b5cd8d07c106/sm/ep8564.jpg","duration":3972,"publication_date":"2014-01-21T00:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-19","changefreq":"weekly","video":[{"title":"2014:E19 - Robot Ryan and Baby Head Launch","description":"This week's RT Life brings you Ryan playing with his new toy and some of the Rooster Teeth staff doing a scientific testing of sorts.","player_loc":"https://roosterteeth.com/embed/rt-life-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33fff925-8fbb-4aa1-a825-e193417925b1/sm/ep8559.jpg","duration":107,"publication_date":"2014-01-18T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-17","changefreq":"weekly","video":[{"title":"2014:E17 - Burnie's Crazy Dream, Part 2","description":"In RTAA #129, Burnie's epic dream concludes with Lindsay facing off with the leader of the Polish army, but he's unlike any foe she's met so far. Meanwhile, Michael deals with the fallout of his bride-to-be disappearing. Will they have a happy ending","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58b8482f-cc50-4df1-a90b-2b31e505418a/sm/ep8546.jpg","duration":104,"publication_date":"2014-01-15T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-253","changefreq":"weekly","video":[{"title":"2014:E253 - RT Podcast #253","description":"RT Discusses Bathroom Etiquette","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-253","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6131,"publication_date":"2014-01-14T22:57:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-splashdown","changefreq":"weekly","video":[{"title":"S5:E9 - Splashdown","description":"Matt kicks off a celebration in the office that he will soon regret.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-splashdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fc674ea-d5f5-41f7-9a67-e6cae23a720c/sm/ep8539.jpg","duration":272,"publication_date":"2014-01-13T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-14","changefreq":"weekly","video":[{"title":"2014:E14 - Lad Action News","description":"The annex crew traps the Lads. Will they be able to escape\nCheck out the new Lad Action News shirt! http://store.roosterteeth.com/products/ah-lads-act...","player_loc":"https://roosterteeth.com/embed/rt-life-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b7bd38d-6ae4-46e4-8579-28de0caa26b9/sm/ep8537.jpg","duration":71,"publication_date":"2014-01-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2014-14","changefreq":"weekly","video":[{"title":"2014:E12 - Burnie's Crazy Dream, Part 1","description":"In RTAA #128, Burnie talks about a crazy dream he had wherein Lindsay becomes invisible in her wedding dress and fights the Polish army. Sounds legit.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bfd604d-c7c0-41b6-8110-33448edd2972/sm/ep8526.jpg","duration":119,"publication_date":"2014-01-08T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-252","changefreq":"weekly","video":[{"title":"2014:E252 - RT Podcast #252","description":"RT Reveals Our Resolutions","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-252","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6063,"publication_date":"2014-01-07T23:15:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-super-hydrophobic-surface-and-magnetic-liquid","changefreq":"weekly","video":[{"title":"S1:E22 - Super Hydrophobic Surface and Magnetic Liquid","description":"Gav and Dan are in the GE lab using nanotechnology to show you cool liquid physics at 2500fps.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-super-hydrophobic-surface-and-magnetic-liquid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbc8f532-bfce-495d-8ac9-d57920dade99/sm/ep8517.jpg","duration":334,"publication_date":"2014-01-06T18:11:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2014-9","changefreq":"weekly","video":[{"title":"2014:E9 - Michael eats 12 Lava Cakes","description":"During the Extra Life live stream, Michael eats 12 Lava Cakes.\nImage Credit Goes to Shutterstock.com","player_loc":"https://roosterteeth.com/embed/rt-life-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf568953-18d1-4203-85bc-eccbb1b794e7/sm/ep8513.jpg","duration":152,"publication_date":"2014-01-04T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-mocap-with-shane","changefreq":"weekly","video":[{"title":"S2:E24 - Sponsor Cut: MoCap with Shane","description":"Shane gives a little insight into how we do motion capture here at Rooster Teeth.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-mocap-with-shane","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8357a591-d015-4516-a26b-c04300ac5523/sm/ep8514.jpg","duration":120,"publication_date":"2014-01-03T20:57:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-251","changefreq":"weekly","video":[{"title":"2013:E251 - RT Podcast #251","description":"2013 RT Podcast Awards","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-251","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5819,"publication_date":"2013-12-31T22:57:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-15","changefreq":"weekly","video":[{"title":"2013:E15 - Gavin's Pre-Op Photo Op","description":"In RTAA #127, while in Spain with his mates, Gavin drunkenly attempts to get a woman to take their picture, not realizing she is trying to get somewhere more important...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bd69326-aea2-489c-ad92-86807a3a2541/sm/ep8502.jpg","duration":72,"publication_date":"2013-12-31T20:57:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-10","changefreq":"weekly","video":[{"title":"2013:E10 - Reddit Car Jump","description":"Burnie. Gus Barbara and Brandon rescue a redditor whose car has broken down.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2c446c0-ceaa-4dc7-9bb1-c15d382cb099/sm/ep8489.jpg","duration":245,"publication_date":"2013-12-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-9","changefreq":"weekly","video":[{"title":"2013:E9 - Dogs & Disappointment","description":"In RTAA #126, Gus wakes up when he dog inaudibly whimpers, Burnie has troubles with Siri, and Brandon is disappointed.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfffb8c6-289d-4556-b5c5-6cd8fe23f0f3/sm/ep8482.jpg","duration":92,"publication_date":"2013-12-25T17:04:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-250","changefreq":"weekly","video":[{"title":"2013:E250 - RT Podcast #250","description":"RT Discusses Our Best Gifts Ever","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-250","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5570,"publication_date":"2013-12-24T20:29:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-4","changefreq":"weekly","video":[{"title":"2013:E4 - SWAT Van","description":"The RT Crew hits the road in a SWAT Van and forget to use their seat belts.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3d237f9-ee1c-433a-b110-15f6ab1e6ad2/sm/ep8472.jpg","duration":114,"publication_date":"2013-12-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-barbs-q-and-a","changefreq":"weekly","video":[{"title":"S2:E23 - Sponsor Cut: Barb's Q and A","description":"Barbara sits down and answers some user submitted questions in this week's sponsor video.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-barbs-q-and-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8d49100-8924-413d-b960-537d4c48428e/sm/ep8468.jpg","duration":165,"publication_date":"2013-12-20T16:30:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-7","changefreq":"weekly","video":[{"title":"2013:E7 - Chopped Stick","description":"Gus tells the story of a man in China who, in a spell of loneliness, decided to cut off his junk, and the aftermath which followed.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad40c7e9-90e0-4d36-8c3f-fdcbcaa29624/sm/ep8463.jpg","duration":75,"publication_date":"2013-12-18T19:25:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-nsa-psa","changefreq":"weekly","video":[{"title":"S1:E38 - NSA PSA","description":"What to do if the NSA spies on you while you're playing video games.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-nsa-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39faf9ec-9fb3-4cc6-8ffd-08a745d8e186/sm/ep8457.jpg","duration":263,"publication_date":"2013-12-17T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-249","changefreq":"weekly","video":[{"title":"2013:E249 - RT Podcast #249","description":"RT Discusses Our Worst Pain","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-249","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5830,"publication_date":"2013-12-17T22:59:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-2","changefreq":"weekly","video":[{"title":"2013:E2 - Gavin is on set at Youtube Rewind","description":"Gavin, Dan and Burnie hang out in the middle of California on the Youtube rewind shoot.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9024c81f-4461-485f-93e5-a9b44f8664ff/sm/ep8453.jpg","duration":82,"publication_date":"2013-12-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-sponsor-cut-cameras","changefreq":"weekly","video":[{"title":"S2:E22 - Sponsor Cut: Cameras","description":"Kyle gives the sponsors a quick look at two cameras we use the most at Rooster Teeth productions.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-sponsor-cut-cameras","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdacbac7-b503-4fb1-82ee-3e93b8e10831/sm/ep8449.jpg","duration":172,"publication_date":"2013-12-13T17:08:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-amazon-delivery-drone-vs-rooster-teeth-catapult","changefreq":"weekly","video":[{"title":"S5:E21 - Amazon Delivery Drone vs. Rooster Teeth Catapult","description":"With the holidays right around the corner, Rooster Teeth finds effective ways to deliver your orders. Make sure to check out the Rooster Teeth Store for all of your holiday shipping needs.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-amazon-delivery-drone-vs-rooster-teeth-catapult","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a8db35a-a11e-4d03-a24b-9037ed7eaa04/sm/ep8444.jpg","duration":181,"publication_date":"2013-12-12T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-53","changefreq":"weekly","video":[{"title":"2013:E53 - Joel's Bottle Blooper","description":"In RTAA #124, Joel gets into the worst fight ever after failing miserably to throw a bottle.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7ae5fc6-ed99-4d4f-a9f0-3301251c85af/sm/ep8437.jpg","duration":84,"publication_date":"2013-12-11T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-248","changefreq":"weekly","video":[{"title":"2013:E248 - RT Podcast #248","description":"RT Discusses 2013 Awards","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-248","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5833,"publication_date":"2013-12-10T22:56:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-40","changefreq":"weekly","video":[{"title":"2013:E40 - Joel brings you Behind the Gauntlet","description":"See all the sophisticated voice and film work with Chris and Joel.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13d27647-99a9-4123-8dce-8e651b979b4d/sm/ep8425.jpg","duration":136,"publication_date":"2013-12-08T01:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-beer-bottle-trick-at-2500fps-the-slow-mo-guys","changefreq":"weekly","video":[{"title":"S1:E21 - Beer Bottle Trick at 2500fps - The Slow Mo Guys","description":"Gav and Dan find an interesting way to destroy their bev bottles while showing off some cool science.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-beer-bottle-trick-at-2500fps-the-slow-mo-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e011c8c5-e62e-4529-aba6-faa87130c347/sm/ep8414.jpg","duration":219,"publication_date":"2013-12-05T13:54:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-47","changefreq":"weekly","video":[{"title":"2013:E45 - Michael Punches Poo","description":"In RTAA #123, while at his old job, Michael uses a client's restroom and has to be creative when he clogs the toilet.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a7fd2f-7f7f-4366-8c59-c39e584282d9/sm/ep8412.jpg","duration":72,"publication_date":"2013-12-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-247","changefreq":"weekly","video":[{"title":"2013:E247 - RT Podcast #247","description":"RT Discusses Black Friday Fights","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-247","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5680,"publication_date":"2013-12-03T22:58:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-35","changefreq":"weekly","video":[{"title":"2013:E35 - Walmart Trips and a Redemption Dog","description":"Miles and Arryn go to Walmart to look for the new DVDs while the Gauntlet crew works with The Redemption Dog.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bf00369-5a81-48cd-8389-d97472851551/sm/ep8399.jpg","duration":113,"publication_date":"2013-12-01T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-47","changefreq":"weekly","video":[{"title":"2013:E47 - Facebox: Shane Newville","description":"Shane spends some alone time in the conference room.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee7aed93-f0d1-4197-bc28-c002c90556e6/sm/ep8398.jpg","duration":66,"publication_date":"2013-12-01T14:30:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-rooster-teeth-shopping-games","changefreq":"weekly","video":[{"title":"S5:E22 - Rooster Teeth: Shopping Games","description":"Katniss is back and in her biggest adventure ever. Way bigger than the movie that just came out. Like 4 times bigger than that.\r\n\r\nMake sure to check out the Rooster Teeth store for all your holiday shipping needs.\r\n\r\nSpecial thanks to Blazer Tag Adventure Center.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-rooster-teeth-shopping-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e572c9-a760-437f-8431-b5bee95f548a/sm/ep8389.jpg","duration":124,"publication_date":"2013-11-28T05:42:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-42","changefreq":"weekly","video":[{"title":"2013:E42 - Bobble Headed Adventures","description":"The Great iPhone Debate","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1417c8ed-85bb-4786-ac6a-eb7e1fe2d82f/sm/ep8385.jpg","duration":114,"publication_date":"2013-11-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-246","changefreq":"weekly","video":[{"title":"2013:E246 - RT Podcast #246","description":"RT Discusses Gavin's Ghosts","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-246","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5813,"publication_date":"2013-11-26T22:59:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-8","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 8: The Finale: Hitler Must Die","description":"And now, the exciting conclusion to The Gauntlet.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd819849-793b-4cf6-a535-035c5356f2ce/sm/ep8376.jpg","duration":1003,"publication_date":"2013-11-24T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-max-capacity","changefreq":"weekly","video":[{"title":"S2:E21 - Max Capacity","description":"Chris, Michael and Jordan get kicked out of their offices.\r\n\r\nThe new 2014 Scion tC is featured in this short. Check out the 2014 Scion tC now at: http://www.scion.com/cars/tC/ Vehicle shown with optional equipment. Scion tC's depiction as a home office is a dramatization and not an actual demonstration of the tC's capabilities. Do not attempt.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-max-capacity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa699225-871b-407c-a7b6-3c4f86f563b6/sm/ep8371.jpg","duration":420,"publication_date":"2013-11-22T18:40:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-36","changefreq":"weekly","video":[{"title":"2013:E36 - Dan Likes Cross-Eyed Girls","description":"In RTAA #122, Gavin talks about Dan's apparent fetish when it comes to girls.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9deed15b-5489-41b9-8e9a-f9f31bf93a77/sm/ep8363.jpg","duration":70,"publication_date":"2013-11-20T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-26","changefreq":"weekly","video":[{"title":"2013:E26 - Say bye PS4","description":"Kerry gets jacked.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaad1aac-1a8e-4cf8-850a-66eac102bf34/sm/ep8349.jpg","duration":69,"publication_date":"2013-11-16T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-30","changefreq":"weekly","video":[{"title":"2013:E30 - Geoff's Pyro Friend","description":"In RTAA #121, Geoff tell the story of his pyro friend who caught a field on fire and cost Geoff a puffy jacket.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf4798e-f270-4c83-b57c-840e6898f046/sm/ep8329.jpg","duration":89,"publication_date":"2013-11-13T17:18:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-244","changefreq":"weekly","video":[{"title":"2013:E244 - RT Podcast #244","description":"RT's Bachelor Party for Jack","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-244","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5525,"publication_date":"2013-11-12T22:57:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-19","changefreq":"weekly","video":[{"title":"S11:E19 - Episode 19: Lost But Not Forgotten","description":"Get the theme for Season 11 on iTunes today: http://bit.ly/1j2kDT0","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50215240-9474-4bb1-8d0f-d0d30d15ab3f/sm/ep8313.jpg","duration":534,"publication_date":"2013-11-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-6","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 6: AH fights Team RTX","description":"Team Achievement Hunter and Team RTX face off in a fierce elimination tournament!","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15324703-a1d6-44bf-98a0-432550b326b3/sm/ep8309.jpg","duration":797,"publication_date":"2013-11-10T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-pokemon-vs-gus-and-burnie","changefreq":"weekly","video":[{"title":"S2:E20 - Pokemon vs. Gus & Burnie","description":"Become a Sponsor today: http://bit.ly/17wb8X2","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-pokemon-vs-gus-and-burnie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f6edf9a-c899-4ce3-956d-825c7648287a/sm/ep8310.jpg","duration":244,"publication_date":"2013-11-10T19:17:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-23","changefreq":"weekly","video":[{"title":"2013:E23 - Barbara Thinks Inside The Box","description":"Barbara is trapped and the Gauntlet RTX/Community team has problems with a toilet.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac283566-0fcb-4126-a73c-1ba096601eb8/sm/ep8308.jpg","duration":105,"publication_date":"2013-11-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-16","changefreq":"weekly","video":[{"title":"V1:E20 - Chapter 16: Black and White","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e34c2c66-63a6-41bc-ba99-1c0e4b013ad4/sm/ep8299.jpg","duration":930,"publication_date":"2013-11-07T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-24","changefreq":"weekly","video":[{"title":"2013:E24 - Relaxed Gav & Lost Keys","description":"In RTAA #120, Gavin is concerned he may be too relaxed, Gus and Burnie argue about clouds, and Burnie gets mad when he can't find his keys.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/138d587f-453d-4dfd-adb8-0f0b9f55baff/sm/ep8292.jpg","duration":66,"publication_date":"2013-11-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-243","changefreq":"weekly","video":[{"title":"2013:E243 - RT Podcast #243","description":"RT Discusses Fave Extra Life Moments","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-243","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5742,"publication_date":"2013-11-05T23:03:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-18","changefreq":"weekly","video":[{"title":"S11:E18 - Episode 18: Fire","description":"S11:E18 - Episode 18: Fire","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19c1dbcf-d156-49fa-97ec-036bdc98f4fb/sm/ep8282.jpg","duration":535,"publication_date":"2013-11-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-huge-building-explosion-at-2500fps","changefreq":"weekly","video":[{"title":"S1:E20 - Huge Building Explosion at 2500fps","description":"Gav and Dan celebrate the release of Battlefield 4 by setting off the biggest explosion they have ever done.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-huge-building-explosion-at-2500fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f83495f6-de38-4054-a3d9-d0d6be0b15a8/sm/ep8286.jpg","duration":489,"publication_date":"2013-11-04T22:48:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-5","changefreq":"weekly","video":[{"title":"S2:E5 - Episode 5: Portal 2 Puzzle","description":"Teams AH, RT and RTX compete in a series of games that require them to communicate with each other in an efficient and productive way. Watch and find out who is the best of the worst.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d32a2c20-8eb5-456a-9bf7-0da9c95cabdb/sm/ep8279.jpg","duration":823,"publication_date":"2013-11-03T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-18","changefreq":"weekly","video":[{"title":"2013:E18 - Burritos","description":"The RT Life crew goes to Chipotle to get some cheap food on Halloween.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1907a450-4484-4100-a583-0d3d6f0f2c40/sm/ep8278.jpg","duration":85,"publication_date":"2013-11-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-15","changefreq":"weekly","video":[{"title":"V1:E19 - Chapter 15: The Stray","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e348efd-b741-4f4e-8e89-4d5276a60172/sm/ep8268.jpg","duration":642,"publication_date":"2013-10-31T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-avengers","changefreq":"weekly","video":[{"title":"S1:E392 - [Advantage Content] Clip of the Week Outtakes - The Avengers","description":"Took a while to get this one up because we beat up an intern with a hammer forged by the gods. Had some legal red tape to get through.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-avengers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b1ba762-57c6-4c47-ac05-975bfa6099b6/sm/video_thumbnail_2694201.jpg","duration":379,"publication_date":"2012-09-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/g4-is-shutting-down-the-vita-got-hacked-and-make-your-own-sony-items-hard-news-090712","changefreq":"weekly","video":[{"title":"S1:E261 - G4 is Shutting Down, The Vita Got Hacked, and Make Your Own Sony Items - Hard News 09/07/12","description":"It's Game Over for G4 next year... - http://www.screwattack.com/news/its-game-over-g4-next-year\r\nSOE opens Player Studio to allow development of user-generated content - http://www.screwattack.com/news/soe-opens-player-studio-allow-development-user-generated-content\r\nPS Vita is hacked for homebrew, but not necessarily for piracy - http://www.screwattack.com/news/ps-vita-hacked-homebrew-not-necessarily-piracy\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/g4-is-shutting-down-the-vita-got-hacked-and-make-your-own-sony-items-hard-news-090712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e72fae3c-80f4-4aed-a047-5f093d7e8987/sm/video_thumbnail_2694856.png","duration":130,"publication_date":"2012-09-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-deal-of-the-week-0907-0913","changefreq":"weekly","video":[{"title":"S1:E391 - ScrewAttackStore's Deal of the Week! (09/07 - 09/13)","description":"ScrewAttackStore's Deal of the Week  (09/07 - 09/13)\r\nThis weeks's Deal of the Week is everyone's favorite shit covered pickle! Now through the 13th the Shit Pickle is over 40% off! Head over to ScrewAttackStore.com and get yours Today!","player_loc":"https://roosterteeth.com/embed/screwattackstores-deal-of-the-week-0907-0913","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b30d49df-1f45-4405-a619-26a9f9672f17/sm/video_thumbnail_2693936.jpg","duration":28,"publication_date":"2012-09-07T11:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/venture-into-double-fines-cave-with-jared","changefreq":"weekly","video":[{"title":"S1:E390 - Venture into Double Fine's Cave with Jared","description":" See what happens when Double Fine creates a game that really reminds you of Maniac Mansion and Lost Vikings.","player_loc":"https://roosterteeth.com/embed/venture-into-double-fines-cave-with-jared","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a007b5e2-0b70-4c85-90a8-819e9e2083da/sm/video_thumbnail_2693371.jpg","duration":458,"publication_date":"2012-09-07T10:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/checking-out-aliens-colonial-marines-escape-mode","changefreq":"weekly","video":[{"title":"S1:E389 - Checking Out Aliens: Colonial Marines' Escape Mode","description":" We got to play the Escape Mode in Aliens: Colonial Marines at PAX Prime 2012, and it's good.","player_loc":"https://roosterteeth.com/embed/checking-out-aliens-colonial-marines-escape-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b37c25b4-4ce5-4ab1-9eb6-6cec0ce4ff35/sm/video_thumbnail_2692506.jpg","duration":68,"publication_date":"2012-09-07T09:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/find-out-how-to-escape-with-aliens-colonial-marines-design-director","changefreq":"weekly","video":[{"title":"S1:E388 - Find Out How To Escape With Aliens: Colonial Marines' Design Director","description":" Jared got a few minutes with John Mulkey, the Design Director of Aliens: Colonial Marines, to find out what's going on with the game and it's new multiplayer mode, Escape.","player_loc":"https://roosterteeth.com/embed/find-out-how-to-escape-with-aliens-colonial-marines-design-director","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee3b4c57-1eeb-42cb-9179-29d08b2a4fcf/sm/video_thumbnail_2692516.jpg","duration":182,"publication_date":"2012-09-07T09:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-smite-interview-with-todd-harris","changefreq":"weekly","video":[{"title":"S1:E387 - PAX 12 - SMITE Interview with Todd Harris","description":"I could never get into MOBAs, even though I like the concept. I've tried League of Legends numerous times, and I never enjoyed myself. So I all but gave up on them.\r\nEnter SMITE from Hi-Rez studios. I got some real hands-on time at PAX, and since then, I've been playing it every night at home. I'm hooked, and I'm loving the hell out of it.\r\nI interviewed Todd Harris, the COO of Hi-Rez Studios, about the future of their addicting, free-to-play MOBA. I should've asked about Morgan Freeman.","player_loc":"https://roosterteeth.com/embed/pax-12-smite-interview-with-todd-harris","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6efc6ae-64af-4718-b4b7-e1ec103fcc92/sm/video_thumbnail_2692471.jpg","duration":285,"publication_date":"2012-09-07T09:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-the-amazing-spider-derp","changefreq":"weekly","video":[{"title":"S1:E370 - VGV - The Amazing Spider-Derp","description":"You ain't EVER seen Peter Parker like this.\r\n ","player_loc":"https://roosterteeth.com/embed/vgv-the-amazing-spider-derp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ad4efcf-8a90-4d85-8298-797340e6ba70/sm/video_thumbnail_2687936.jpg","duration":169,"publication_date":"2012-09-06T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-dave-mirras-freestyle-bmx","changefreq":"weekly","video":[{"title":"S1:E369 - VGV - Dave Mirra's Freestyle BMX","description":" This copycat could've done a better job copying","player_loc":"https://roosterteeth.com/embed/vgv-dave-mirras-freestyle-bmx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/192a75d3-2396-421b-a9c8-0dddc257415d/sm/video_thumbnail_2686941.jpg","duration":101,"publication_date":"2012-09-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-killzone-trilogy-the-nextbox-gets-delayed-and-ghost-recon-on-wii-u-gets-paused-hard-news-090612","changefreq":"weekly","video":[{"title":"S1:E260 - The Killzone Trilogy, The Nextbox Gets Delayed, and Ghost Recon on Wii U Gets Paused - Hard News 09/06/12","description":"Guerrilla Games' Killzone Trilogy is announced! - http://www.screwattack.com/news/guerrilla-games-killzone-trilogy-announced\r\nUbisoft delays Wii U’s free-to-play Ghost Recon Online - http://www.screwattack.com/news/ubisoft-delays-wii-u%E2%80%99s-free-play-ghost-recon-online\r\n[Rumor] Nextbox has been delayed before it is even revealed - http://www.screwattack.com/news/rumor-nextbox-has-been-delayed-it-even-revealed\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/the-killzone-trilogy-the-nextbox-gets-delayed-and-ghost-recon-on-wii-u-gets-paused-hard-news-090612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fcf84cb-d2ad-4b2b-80e0-c5be68002fad/sm/video_thumbnail_2686636.jpg","duration":121,"publication_date":"2012-09-06T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/talking-epic-mickey-2-and-life-pt-3","changefreq":"weekly","video":[{"title":"S1:E386 - Talking Epic Mickey 2 and Life Pt.3","description":" After showing some of Epic Mickey 2, Warren Spector fielded questions about the game, its connections to his other games, and his design philosophies. If you want to hear one of the great developers talk games, check this out.\r\nSee what else Warren had to say!\r\nWarren Spector Q&A Pt. 1 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-2-and-life-pt1\r\nWarren Spector Q&A Pt. 2 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-and-life-pt2\r\nWalkthrough - http://www.screwattack.com/shows/originals/random-awesomeness/epic-mickey-2-walkthrough-warren-spector","player_loc":"https://roosterteeth.com/embed/talking-epic-mickey-2-and-life-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc207197-042f-4b44-addb-24e12f58af32/sm/video_thumbnail_2686551.jpg","duration":818,"publication_date":"2012-09-06T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/talking-epic-mickey-2-and-life-pt-1","changefreq":"weekly","video":[{"title":"S1:E384 - Talking Epic Mickey 2 and Life Pt.1","description":" After showing some of Epic Mickey 2, Warren Spector fielded questions about the game, its connections to his other games, and his design philosophies. If you want to hear one of the great developers talk games, check this out.\r\nSee what else Warren had to say!\r\nWarren Spector Q&A Pt. 2 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-and-life-pt2\r\nWarren Spector Q&A pt. 3 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-2-and-life-pt3\r\nWalkthrough - http://www.screwattack.com/shows/originals/random-awesomeness/epic-mickey-2-walkthrough-warren-spector","player_loc":"https://roosterteeth.com/embed/talking-epic-mickey-2-and-life-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9baadea2-8623-4e23-bf09-6775a1dd4348/sm/video_thumbnail_2686571.jpg","duration":872,"publication_date":"2012-09-06T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/talking-epic-mickey-and-life-pt-2","changefreq":"weekly","video":[{"title":"S1:E385 - Talking Epic Mickey and Life Pt.2","description":" After showing some of Epic Mickey 2, Warren Spector fielded questions about the game, its connections to his other games, and his design philosophies. If you want to hear one of the great developers talk games, check this out.\r\nSee what else Warren had to say!\r\nWarren Spector Q&A Pt. 1 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-2-and-life-pt1\r\nWarren Spector Q&A pt. 3 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-2-and-life-pt3\r\nWalkthrough - http://www.screwattack.com/shows/originals/random-awesomeness/epic-mickey-2-walkthrough-warren-spector","player_loc":"https://roosterteeth.com/embed/talking-epic-mickey-and-life-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d93c67bc-8af1-4727-87f8-575a054f0daa/sm/video_thumbnail_2686561.jpg","duration":818,"publication_date":"2012-09-06T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/an-epic-mickey-2-walkthrough-with-warren-spector","changefreq":"weekly","video":[{"title":"S1:E383 - An Epic Mickey 2 Walkthrough With Warren Spector","description":" At a special roundtable at PAX, Warren Spector walked those in attendance through Fort Wasteland, showing some of the new features, characters, and levels in Epic Mickey 2.\r\nSee what Warren had to say when those in attendance got to ask him about Epic Mickey 2 and everything else Warren ever worked on!\r\nWarren Spector Q&A Pt. 1 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-2-and-life-pt1\r\nWarren Spector Q&A Pt. 2 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-and-life-pt2\r\nWarren Spector Q&A pt. 3 - http://www.screwattack.com/shows/originals/random-awesomeness/talking-epic-mickey-2-and-life-pt3","player_loc":"https://roosterteeth.com/embed/an-epic-mickey-2-walkthrough-with-warren-spector","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acbcfe00-777b-4a22-88b6-10b7223783eb/sm/video_thumbnail_2686336.jpg","duration":916,"publication_date":"2012-09-06T11:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-wild-guns","changefreq":"weekly","video":[{"title":"S1:E368 - VGV - Wild Guns","description":"True Grit with robots.  This game is True Grit with robots.","player_loc":"https://roosterteeth.com/embed/vgv-wild-guns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d9bdb0a-ce2e-468c-850e-33c8cea804c7/sm/video_thumbnail_2678286.jpg","duration":131,"publication_date":"2012-09-05T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/phoenix-wright-is-back-ubisoft-removes-drm-and-lightning-returns-hard-news-090512","changefreq":"weekly","video":[{"title":"S1:E259 - Phoenix Wright is Back, Ubisoft 'Removes DRM, and Lightning Returns - Hard News 09/05/12","description":"Ace Attorney 5 confirmed for 3DS - http://www.screwattack.com/news/ace-attorney-5-confirmed-3ds\r\nUbisoft is ready to dispose of their “always-on” DRM - http://www.screwattack.com/news/ubisoft-ready-dispose-their-%E2%80%9Calways-on%E2%80%9D-drm\r\nLightning Returns in this presentation from Square Enix regarding the next Final Fantasy - http://www.screwattack.com/news/lightning-returns-presentation-square-enix-regarding-next-final-fantasy\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/phoenix-wright-is-back-ubisoft-removes-drm-and-lightning-returns-hard-news-090512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d950abf0-3a58-4786-bfa1-a88c10a71a1e/sm/video_thumbnail_2678981.png","duration":180,"publication_date":"2012-09-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-phantasy-star-online-2-gameplay-cam","changefreq":"weekly","video":[{"title":"S1:E382 - PAX 12 - Phantasy Star Online 2 Gameplay (Cam)","description":"Almost 10 minutes of Phantasy Star Online 2 action!\r\nWant to learn more about the game? Watch the Interview with Sega of America's Ken Ogasawara right here!","player_loc":"https://roosterteeth.com/embed/pax-12-phantasy-star-online-2-gameplay-cam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e70bac2-d60b-42a8-8efa-bf1b859a40c3/sm/video_thumbnail_2678046.jpg","duration":559,"publication_date":"2012-09-05T12:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-090512","changefreq":"weekly","video":[{"title":"S1:E380 - SideScrollers Extended 09/05/12","description":"S1:E380 - SideScrollers Extended 09/05/12","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-090512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8159d414-f978-4db1-9e60-8c510b05b61c/sm/video_thumbnail_2676946.jpg","duration":496,"publication_date":"2012-09-05T08:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"please-watch\"","changefreq":"weekly","video":[{"title":"S1:E80 - SideScrollers - \"Please Watch\"","description":"SideScrollers Extended can be watched here! - http://bit.ly/NRx44P\r\n \r\nCheck out our newest content by clicking the links below!\r\n \r\nNewsroom - Takeout - http://bit.ly/Q1xpaX\r\nDeath Battle Analysis - Pikachu - http://bit.ly/Oanjjq\r\nDeath Battle Fan Art - Blanka vs. Pikachu - http://bit.ly/PErPa4\r\n11 Reasons We LOVE Street Fighter 2 - http://bit.ly/RCzeWP\r\n21 Reasons We HATE Street Fighter 2 - http://bit.ly/RBqPTC\r\nNick's Hard News Prank - http://bit.ly/PSSIeZ\r\nClip of the Week - Teenage Alien Ninja Turtles - http://bit.ly/Pzt3Dy\r\nThe Game OverThinker - Rusty Pipes - http://bit.ly/OH5xFK\r\n12 Reasons We HATE Mega Man (With Evil Craig) - http://bit.ly/PANI8Q\r\n \r\nNo audio version this week.  Sorry guys :(\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"please-watch\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7ed1f5c-ba2a-4677-86ec-d42d5fe70c15/sm/video_thumbnail_2677126.jpg","duration":1493,"publication_date":"2012-09-05T08:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-12-card-hunter-developer-walkthrough","changefreq":"weekly","video":[{"title":"S1:E379 - PAX 12 - Card Hunter Developer Walkthrough","description":"Easily one of the coolest games I saw at PAX this year. It's a completely free, web-based tactical RPG that's also a card game. It sounds bizarre, yes, but I really, really liked what I played.\r\nI absolutely love the presenetation of the game, too. It's  made to look like you're playing a table top game, complete with cardboard miniatures, dice, and snacks laying out on the table. \r\nI sat down with the art director, Ben Lee, and he walked me through a few tutorial dungeon fights. I'm really looking forward to this one!","player_loc":"https://roosterteeth.com/embed/pax-12-card-hunter-developer-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38c0a306-eb7d-4d20-82d5-ecc574dd2c62/sm/video_thumbnail_2672836.jpg","duration":763,"publication_date":"2012-09-04T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-furious-4-are-no-longer-brothers-the-wii-u-could-be-coming-in-bundles-and-valve-is-making-hardware-hard-news-090412","changefreq":"weekly","video":[{"title":"S1:E258 - The Furious 4 are no longer brothers, the Wii U could be coming in bundles, and Valve is making hardware - Hard News 09/04/12","description":" The Furious 4 are no longer brothers, the Wii U could be coming in bundles, and Valve is making hardware today on Hard News\r\nGearbox ditches Brothers in Arms - http://www.screwattack.com/news/gearbox-ditches-brothers-arms-furious-4-becomes-its-own-ip\r\nMultiple Wii U SKUs - http://www.screwattack.com/news/rumor-wii-u-gets-dated-and-priced-amazon-distributor\r\nValve creating hardware - http://www.screwattack.com/news/job-listing-seems-confirm-valve-developing-innovative-piece-hardware-0\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/the-furious-4-are-no-longer-brothers-the-wii-u-could-be-coming-in-bundles-and-valve-is-making-hardware-hard-news-090412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b66044bd-5dbf-4f34-8d27-dcddedaa6b2d/sm/video_thumbnail_2672226.png","duration":145,"publication_date":"2012-09-04T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-takeout","changefreq":"weekly","video":[{"title":"S1:E16 - Newsroom: Takeout","description":"This is what happens when the scenes end, but the cameras keep rolling. Lauren's album drops next Spring.","player_loc":"https://roosterteeth.com/embed/newsroom-takeout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93c2294f-3bd7-4b2f-9bc0-96b808fb68f4/sm/video_thumbnail_2667961.jpg","duration":231,"publication_date":"2012-09-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nicks-hard-news-prank","changefreq":"weekly","video":[{"title":"S1:E378 - Nick's Hard News Prank","description":"After filming Hard News while Jared was at PAX, we decided to play a little prank on Nick.\r\nWant to see a similar prank done to Ben?  Click here.","player_loc":"https://roosterteeth.com/embed/nicks-hard-news-prank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd5ad17b-4062-42c7-9c63-3f4568123866/sm/video_thumbnail_2648661.png","duration":104,"publication_date":"2012-09-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattackstores-deal-of-the-week","changefreq":"weekly","video":[{"title":"S1:E377 - ScrewAttackStore's Deal of the Week!","description":" ScrewAttackStore is now featuring a Deal of the Week every week!\r\nEvery week will feature a new discounted item! We're starting it off the the Shell T at 20% off! Head over to ScrewAttackStore.com and pick yours up Today! Don't forget to check back next Friday for the next great deal!","player_loc":"https://roosterteeth.com/embed/screwattackstores-deal-of-the-week","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f93037e-9748-447d-8100-e5bd36ac98c0/sm/video_thumbnail_2650456.jpg","duration":27,"publication_date":"2012-09-02T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-teenage-alien-ninja-turtles","changefreq":"weekly","video":[{"title":"S1:E176 - Clip of the Week - Teenage Alien Ninja Turtles","description":"S1:E176 - Clip of the Week - Teenage Alien Ninja Turtles","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-teenage-alien-ninja-turtles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e09fc7e-6c39-4a0b-b5be-78fd164be871/sm/CotWRotatator_tant.jpg","duration":122,"publication_date":"2012-09-01T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/no-skyrim-dlc-for-ps3-nintendo-partners-with-umbra-and-new-gears-of-war-multiplayer-hard-news-083112","changefreq":"weekly","video":[{"title":"S1:E257 - No Skyrim DLC For PS3?, Nintendo Partners With Umbra, and New Gears of War Multiplayer - Hard News 08/31/12","description":"Is Skyrim’s Dawnguard still coming to PS3? Maybe not - http://www.screwattack.com/news/skyrim%E2%80%99s-dawnguard-still-coming-ps3-maybe-not\r\nNintendo has a partnership with Umbra Software - http://www.screwattack.com/news/nintendo-has-partnership-umbra-software\r\nNew multiplayer mode and playable demo for Pax Prime revealed for Gears of War Judgment - http://www.screwattack.com/news/new-multiplayer-mode-and-playable-demo-pax-prime-revealed-gears-war-judgment","player_loc":"https://roosterteeth.com/embed/no-skyrim-dlc-for-ps3-nintendo-partners-with-umbra-and-new-gears-of-war-multiplayer-hard-news-083112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a8fe463-dbc5-4dbf-97df-08e53c683e1c/sm/video_thumbnail_2649981.png","duration":138,"publication_date":"2012-08-31T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-new-metal-gear-game-and-release-details-for-marvel-vs-capcom-origins-and-god-of-war-ascension-hard-news-083012","changefreq":"weekly","video":[{"title":"S1:E256 - A NEW Metal Gear Game and Release Details for Marvel VS Capcom Origins and God of War: Ascension - Hard News 08/30/12","description":"New Metal Gear games and a movie announced at the 25th anniversary event - http://www.screwattack.com/news/new-metal-gear-games-and-movie-announced-25th-anniversary-event\r\nMvC Origins gets an official release date for next month! - http://www.screwattack.com/news/mvc-origins-gets-official-release-date-next-month\r\nGod of War: Ascension is dated and gets a slew of Collector’s Editions - http://www.screwattack.com/news/god-war-ascension-dated-and-gets-slew-collector%E2%80%99s-editions","player_loc":"https://roosterteeth.com/embed/a-new-metal-gear-game-and-release-details-for-marvel-vs-capcom-origins-and-god-of-war-ascension-hard-news-083012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3a88d2e-0d06-4e4c-8846-bd60801d53b2/sm/video_thumbnail_2643221.png","duration":149,"publication_date":"2012-08-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/12-reasons-we-hate-mega-man-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E3 - 12 Reasons We HATE Mega Man with Evil Craig","description":"As if a blog post was enough, Evil Craig really wanted to let everyone know the 12 reasons we HATE Mega Man.\r\n12 Reasons We LOVE Mega Man can be seen here.","player_loc":"https://roosterteeth.com/embed/12-reasons-we-hate-mega-man-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e4f87e-89ea-4ab3-9842-41cccb0af1d1/sm/video_thumbnail_2638826.jpg","duration":53,"publication_date":"2012-08-30T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/300000-golden-mario-smash-bros-movesets-and-nintendo-direct-hard-news-082912","changefreq":"weekly","video":[{"title":"S1:E255 - $300,000 Golden Mario, Smash Bros. Movesets, and Nintendo Direct - Hard News 08/29/12","description":"Nintendo Direct Japan visits some key franchises on 3DS - http://www.screwattack.com/news/nintendo-direct-japan-visits-some-key-franchises-3ds\r\nSuper Smash Bros characters are going to have new moves - http://www.screwattack.com/news/super-smash-bros-characters-are-going-have-new-moves\r\nThe One-of-a-kind $300,000 Mario Statue - http://www.screwattack.com/news/one-kind-300000-mario-statue","player_loc":"https://roosterteeth.com/embed/300000-golden-mario-smash-bros-movesets-and-nintendo-direct-hard-news-082912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2da0f61-3e47-4fb7-8313-e089114fc34c/sm/video_thumbnail_2634786.png","duration":161,"publication_date":"2012-08-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-082912","changefreq":"weekly","video":[{"title":"S1:E376 - SideScrollers Extended 08/29/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-082912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12a7eaac-ad74-4f2b-9965-afc22cad6db1/sm/video_thumbnail_2626146.png","duration":565,"publication_date":"2012-08-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"sgc-woo\"","changefreq":"weekly","video":[{"title":"S1:E79 - SideScrollers - \"SGC Woo!\"","description":"Get the audio version here - http://bit.ly/MXZNsF\r\nSideScrollers Extended can be watched here! - http://bit.ly/MY4wL3\r\n \r\nCheck out our newest content by clicking the links below!\r\n \r\nReview - Rainbow Moon - http://bit.ly/U8E167\r\nNewsroom - Expired - http://bit.ly/PLShS5\r\n12 Reasons We HATE Mega Man - http://bit.ly/QsDlt7\r\n15 Reasons We LOVE Mega Man - http://bit.ly/Rdx1Rv\r\nNext Time on Death Battle - http://bit.ly/oHdBQw\r\nThe Game OverThinker - Rusty Pipes - http://bit.ly/OH5xFK\r\nCinemassacre Mailbag Episode 8 - http://bit.ly/PYxiuH\r\nClip of the Week - Trapezoid - http://bit.ly/T9uXvr\r\nGame Theory - Polybius - http://bit.ly/QA8ju2\r\nExtra Credits - 16-bit Games You Might Not Have Tried - http://bit.ly/NpyumL\r\n15 Reasons We HATE Super Mario Bros 2 With Evil Craig - http://bit.ly/SZwEeJ\r\nReview - New Super Mario Bros. 2 - http://bit.ly/O7lmqB\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://Twitter.com/ScrewAttack\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"sgc-woo\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ea4fd8a-59d0-428c-9e61-a4aaa1627ed1/sm/video_thumbnail_2625036.png","duration":2737,"publication_date":"2012-08-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/crash-for-all-stars-new-skyrim-dlc-and-black-ops-iis-special-editions-hard-news-082812","changefreq":"weekly","video":[{"title":"S1:E254 - Crash For All-Stars, New Skyrim DLC, and Black Ops II's Special Editions - Hard News 08/28/12","description":"[Rumor] All-Stars Battle Royale may have the Bandicoot you’re looking for - http://www.screwattack.com/news/rumor-all-stars-battle-royale-may-have-bandicoot-you%E2%80%99re-looking\r\nSkyrim is Getting MORE DLC! - http://www.screwattack.com/video/Skyrim-is-Getting-MORE-DLC-2625276\r\nActivision reveals the various Editions of COD: BlOps II - http://www.screwattack.com/news/activision-reveals-various-editions-cod-blops-ii\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/crash-for-all-stars-new-skyrim-dlc-and-black-ops-iis-special-editions-hard-news-082812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1faf37a-902f-4bfb-b2ab-c866cb14e204/sm/video_thumbnail_2626406.jpg","duration":144,"publication_date":"2012-08-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-expired","changefreq":"weekly","video":[{"title":"S1:E15 - Newsroom: Expired","description":"The casket would be a series of shoeboxes.\r\n(New episode every Tuesday!) ","player_loc":"https://roosterteeth.com/embed/newsroom-expired","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dff3c46e-660a-4f63-b325-9f11e31b0ed0/sm/video_thumbnail_2621336.jpg","duration":89,"publication_date":"2012-08-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ps1-games-on-vita-lollipop-chainsaw-succeeds-and-kenji-kaido-leaves-sony-hard-news-082712","changefreq":"weekly","video":[{"title":"S1:E253 - PS1 games on Vita, Lollipop Chainsaw succeeds, and Kenji Kaido leaves Sony -Hard News 08/27/12","description":" PS1 games on Vita, Lollipop Chainsaw is a success, and Kenji Kando leaves Sony today on Hard News\r\nPS1 games comes to Vita - www.screwattack.com/news/ps-vita-update-180-enables-psone-classics\r\nLollipop Chainsaw a success - http://www.screwattack.com/news/lollipop-chainsaw-suda-51%E2%80%99s-most-successful-game-date\r\nKenji Kaido leaves Sony - www.screwattack.com/news/team-ico%E2%80%99s-producer-leaves-sony-enjoy-summer\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/ps1-games-on-vita-lollipop-chainsaw-succeeds-and-kenji-kaido-leaves-sony-hard-news-082712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17f53afc-2a46-4c4b-acc5-b4e0d5ceac41/sm/video_thumbnail_2619166.png","duration":101,"publication_date":"2012-08-27T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-trapezoid","changefreq":"weekly","video":[{"title":"S1:E175 - Clip of the Week - Trapezoid","description":"Some call the documentary covering a gaming web site that's not even out yet \"pretentious.\" Until you've seen what this other start-up tried to do, you don't even KNOW the meaning of the word \"pretentious.\"\r\nSee the website critics haven't even seen yet here! - http://trapezoidmag.webs.com/","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-trapezoid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48e8d7ac-0072-47d4-b998-0f99155066ad/sm/CotWThumbTrapezoid.jpg","duration":160,"publication_date":"2012-08-24T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-world-ends-with-you-returns-xbla-goes-free-to-play-and-persona-4s-limited-edition-hard-news-082412","changefreq":"weekly","video":[{"title":"S1:E252 - The World Ends With You RETURNS, XBLA Goes Free to Play, and Persona 4's Limited Edition - Hard News 08/24/12","description":"[Rumor] The World Ends with iOS as Square Enix creates another port - http://www.screwattack.com/news/rumor-world-ends-ios-square-enix-creates-another-port\r\nXBLA goes free-to-play with Happy Wars this fall - http://www.screwattack.com/news/xbla-goes-free-play-happy-wars-fall\r\nPersona 4 Golden gets limited goodies for a limited time! - http://www.screwattack.com/news/persona-4-golden-gets-limited-goodies-limited-time\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/the-world-ends-with-you-returns-xbla-goes-free-to-play-and-persona-4s-limited-edition-hard-news-082412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c37e31d2-5ce3-4940-be88-142d60d51012/sm/video_thumbnail_2594581.png","duration":132,"publication_date":"2012-08-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nasa-ruins-peter-molyneux-black-isle-returns-and-i-am-alive-for-pcs-hard-news-082312","changefreq":"weekly","video":[{"title":"S1:E251 - NASA Ruins Peter Molyneux, Black Isle Returns, and I Am Alive For PCs - Hard News 08/23/12","description":"Ubisoft takes one more chance on I Am Alive by bringing it to PC - http://www.screwattack.com/news/ubisoft-takes-one-more-chance-i-am-alive-bringing-it-pc\r\nInterplay to revive the fallen Black Isle Studios - http://www.screwattack.com/news/interplay-revive-fallen-black-isle-studios\r\nMolyneux delays Curiosity for name change thanks to NASA - http://www.screwattack.com/news/molyneux-delays-curiosity-name-change-thanks-nasa\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/nasa-ruins-peter-molyneux-black-isle-returns-and-i-am-alive-for-pcs-hard-news-082312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4144de17-51ac-47a9-b9e3-6e6f1518d9a9/sm/HardNews0823.png","duration":122,"publication_date":"2012-08-23T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/15-reasons-we-hate-super-mario-bros-2-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E2 - 15 Reasons We HATE Super Mario Bros 2 with Evil Craig","description":"Evil Craig is back to spread to joy and let you know why you're precious little Super Mario Bros 2 sucks.\r\nIf you're into kittens and rainbows here's your link to 23 Reasons We LOVE Super Mario Bros 2.","player_loc":"https://roosterteeth.com/embed/15-reasons-we-hate-super-mario-bros-2-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ad1e0c5-27a9-4a17-85c7-549293742ceb/sm/video_thumbnail_2571656.jpg","duration":60,"publication_date":"2012-08-22T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/microsoft-cockblocks-killer-instinct-3-counter-strike-missing-in-europe-and-sony-closes-liverpool-studio-hard-news-082212","changefreq":"weekly","video":[{"title":"S1:E250 - Microsoft Cockblocks Killer Instinct 3, Counter-Strike Missing in Europe, and Sony Closes Liverpool Studio - Hard News 08/22/12","description":"Sony closes Studio Liverpool! Two PS4 games cancelled? - http://www.screwattack.com/news/sony-closes-studio-liverpool-two-ps4-games-cancelled\r\nEx-Rare employees claims Microsoft canned Killer Instinct 3 - http://www.screwattack.com/news/ex-rare-employees-claims-microsoft-canned-killer-instinct-3\r\nCS:GO went nowhere for its European launch - http://www.screwattack.com/news/csgo-went-nowhere-its-european-launch\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/microsoft-cockblocks-killer-instinct-3-counter-strike-missing-in-europe-and-sony-closes-liverpool-studio-hard-news-082212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a20aadb7-5e00-4bed-9c38-1a8d8bb6983f/sm/video_thumbnail_2571631.png","duration":193,"publication_date":"2012-08-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-082212","changefreq":"weekly","video":[{"title":"S1:E375 - SideScrollers Extended 08/22/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-082212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a771c6e-5334-4806-9569-8bb4b00d52b3/sm/video_thumbnail_2563601.jpg","duration":474,"publication_date":"2012-08-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"running-out-of-mans\"","changefreq":"weekly","video":[{"title":"S1:E78 - SideScrollers - \"Running Out of Mans\"","description":"Support SGC! - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again\r\nGet the audio version here - http://bit.ly/PCxHmj\r\nSideScrollers Extended can be watched here! - http://bit.ly/TSaPjA\r\n \r\nCheck out our newest content by clicking the links below!\r\n \r\nNewsroom - Dollar - http://bit.ly/OMvil9\r\nLauren's \"Neapolitan\" Dynamite Dance Punishment - http://bit.ly/PqIPDo\r\n15 Reasons We HATE Super Mario Bros 2 - http://bit.ly/PomK8A\r\n23 Reasons We LOVE Super Mario Bros 2 - http://bit.ly/QMFmv8\r\nEgoraptor Q&A Live at San Japan - http://bit.ly/NTYNFJ\r\nVideo Game Vault - Sparkster: Rocket Knight 2 - http://bit.ly/NwPYig\r\nClip of the Week - Busting In - http://bit.ly/SAhyME\r\nTop 10 Batman Games - http://bit.ly/QySaoL\r\nReview - Papo & Yo - http://bit.ly/QmnPt9\r\nbrentalfloss - The Bioshock Song - http://bit.ly/SwItsP\r\nThe Best EVER: Weapon - http://bit.ly/PjgVZU\r\n9 Reasons we HATE Metroid (With Evil Craig) - http://bit.ly/NI817K\r\nExtra Credits - Perfect Imbalance - http://bit.ly/Nq0eZC\r\nReview - Sleeping Dogs - http://bit.ly/NEvpTJ\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://Twitter.com/ScrewAttack\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"running-out-of-mans\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de6839be-be94-4d80-bb78-1fcef506de75/sm/video_thumbnail_2563606.jpg","duration":3202,"publication_date":"2012-08-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nintendo-power-dies-metal-gear-solid-5-in-2013-and-command-conquer-loses-single-player-hard-news-082112","changefreq":"weekly","video":[{"title":"S1:E249 - Nintendo Power Dies, Metal Gear Solid 5 in 2013, and Command & Conquer Loses Single Player - Hard News 08/21/12","description":"New F2P Command & Conquer has ditched the single-player campaign - http://www.screwattack.com/news/new-f2p-command-conquer-has-ditched-single-player-campaign\r\n[Rumor] MGS5 to “launch Summer 2013 at the earliest”  - http://www.screwattack.com/news/rumor-mgs5-%E2%80%9Claunch-summer-2013-earliest%E2%80%9D\r\n[Rumor] Nintendo Power is ceasing its publication - http://www.screwattack.com/news/rumor-nintendo-power-ceasing-its-publication\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/nintendo-power-dies-metal-gear-solid-5-in-2013-and-command-conquer-loses-single-player-hard-news-082112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/813481e5-bb04-4646-a0ea-3c2a4b3e61e2/sm/video_thumbnail_2566116.jpg","duration":144,"publication_date":"2012-08-21T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-dollar","changefreq":"weekly","video":[{"title":"S1:E14 - Newsroom: Dollar","description":"[Purchase witty text here for only $.99/80 MSP!]\r\n(New episode every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-dollar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02dddded-4415-4026-9075-828729e8cc97/sm/video_thumbnail_2560691.jpg","duration":82,"publication_date":"2012-08-20T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-dragon-age-3-leak-onlive-on-life-support-and-diablo-3s-big-update-today-on-hard-news-082012","changefreq":"weekly","video":[{"title":"S1:E248 - A Dragon Age 3 leak, Onlive on life support, and Diablo 3's big update today on Hard News. 08/20/12","description":" A Dragon Age 3 leak, Onlive on life support, and Diablo 3's big update today on Hard News.\r\nDragon Age 3 - http://www.screwattack.com/node/2557846\r\nOnlive bankruptcy - http://www.screwattack.com/news/update-onlive-still-alive-bankrupt\r\nDiablo 3 update - http://www.screwattack.com/news/diablo-iii-get-new-progression-system-and-100-new-player-levels\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/a-dragon-age-3-leak-onlive-on-life-support-and-diablo-3s-big-update-today-on-hard-news-082012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c2f19d6-783e-4643-b79d-ddb3c0a56e99/sm/video_thumbnail_2558591.png","duration":147,"publication_date":"2012-08-20T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/laurens-\"neapolitan\"-dynamite-dance-punishment-take-1","changefreq":"weekly","video":[{"title":"S1:E374 - Lauren's \"Neapolitan\" Dynamite Dance Punishment - Take 1","description":"Remember how Lauren lost the Half Gallon Challenge to Sam and Drake? Remember how you voted on her punishment? Remember when she danced in front of a giant tree where people smoke on their breaks with one guy watching her? Now you do.","player_loc":"https://roosterteeth.com/embed/laurens-\"neapolitan\"-dynamite-dance-punishment-take-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba2ca1f4-2811-40f3-97aa-30b82bf877a8/sm/video_thumbnail_2532126.jpg","duration":139,"publication_date":"2012-08-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/laurens-\"neapolitan\"-dynamite-dance-punishment-take-2","changefreq":"weekly","video":[{"title":"S1:E373 - Lauren's \"Neapolitan\" Dynamite Dance Punishment - Take 2","description":"Remember how Lauren lost the Half Gallon Challenge to Sam and Drake? Remember how you voted on her punishment? Remember when she danced on a street corner in front of hundreds of passing cars? Now you do.","player_loc":"https://roosterteeth.com/embed/laurens-\"neapolitan\"-dynamite-dance-punishment-take-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6f83bb6-4c36-4a97-8da5-327584e77124/sm/video_thumbnail_2532106.jpg","duration":129,"publication_date":"2012-08-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-war-gods","changefreq":"weekly","video":[{"title":"S1:E367 - VGV - War Gods","description":"What did Midway really have planned when they made this game?","player_loc":"https://roosterteeth.com/embed/vgv-war-gods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db645ed-de6b-4e0c-bf84-979b8addd670/sm/video_thumbnail_2115876.jpg","duration":99,"publication_date":"2012-08-19T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/egoraptor-qa-live-at-san-japan-part-1","changefreq":"weekly","video":[{"title":"S1:E372 - Egoraptor Q&A Live at San Japan Part 1","description":"The creator of the Awesome Series, Girlchan in Paradise, Lemon 'n' Bill, and is one half of the Game Grumps was taking questions at this year's San Japan.\r\nWatch part two here.","player_loc":"https://roosterteeth.com/embed/egoraptor-qa-live-at-san-japan-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b208e3f6-3171-4bea-9ae6-b8edb848a0e9/sm/video_thumbnail_2539206.jpg","duration":1568,"publication_date":"2012-08-18T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/egoraptor-qa-live-at-san-japan-part-4","changefreq":"weekly","video":[{"title":"S1:E369 - Egoraptor Q&A Live at San Japan Part 4","description":"The creator of the Awesome Series, Girlchan in Paradise, Lemon 'n' Bill, and is one half of the Game Grumps was taking questions at this year's San Japan.","player_loc":"https://roosterteeth.com/embed/egoraptor-qa-live-at-san-japan-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02da50b3-9b4e-4965-8d28-754561a6df7c/sm/video_thumbnail_2539121.jpg","duration":1515,"publication_date":"2012-08-18T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/egoraptor-qa-live-at-san-japan-part-2","changefreq":"weekly","video":[{"title":"S1:E371 - Egoraptor Q&A Live at San Japan Part 2","description":"The creator of the Awesome Series, Girlchan in Paradise, Lemon 'n' Bill, and is one half of the Game Grumps was taking questions at this year's San Japan.\r\nWatch part three here.","player_loc":"https://roosterteeth.com/embed/egoraptor-qa-live-at-san-japan-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/353c73e8-69a1-4210-96d2-a962534021be/sm/video_thumbnail_2539181.jpg","duration":1614,"publication_date":"2012-08-18T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/egoraptor-qa-live-at-san-japan-part-3","changefreq":"weekly","video":[{"title":"S1:E370 - Egoraptor Q&A Live at San Japan Part 3","description":"The creator of the Awesome Series, Girlchan in Paradise, Lemon 'n' Bill, and is one half of the Game Grumps was taking questions at this year's San Japan.\r\nWatch part four here.","player_loc":"https://roosterteeth.com/embed/egoraptor-qa-live-at-san-japan-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c348455c-d625-4425-b7e9-23be9ba9816e/sm/video_thumbnail_2539141.jpg","duration":1557,"publication_date":"2012-08-18T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-busting-in","changefreq":"weekly","video":[{"title":"S1:E174 - Clip of the Week - Busting In","description":"Video game characters need to realize that breaking into children's rooms to sell them your video game doesn't always work like it does in the commercials. Just look at what happened when Link tried it!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-busting-in","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cc51693-982f-4388-afac-638360c4129c/sm/CotWbustingin.jpg","duration":109,"publication_date":"2012-08-17T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ubisoft-becomes-a-distributor-the-hyrule-historia-comes-west-and-steam-on-tvs-hard-news-081712","changefreq":"weekly","video":[{"title":"S1:E247 - Ubisoft Becomes a Distributor, The Hyrule Historia Comes West, and Steam On TVs - Hard News 08/17/12","description":"Ubisoft enters digital distribution market and offers games for $1 - http://www.screwattack.com/news/ubisoft-enters-digital-distribution-market-and-offers-games-1\r\nHyrule Hystoria confirmed for North America, Europe, and Australia - http://www.screwattack.com/news/hyrule-hystoria-confirmed-north-america-europe-and-australia\r\nValve looks at the “Big Picture” with a beta later this year - http://www.screwattack.com/news/valve-looks-%E2%80%9Cbig-picture%E2%80%9D-beta-later-year\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/ubisoft-becomes-a-distributor-the-hyrule-historia-comes-west-and-steam-on-tvs-hard-news-081712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b713d5c-a803-4f50-99a3-9d391146f175/sm/video_thumbnail_2541191.jpg","duration":152,"publication_date":"2012-08-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-weapon","changefreq":"weekly","video":[{"title":"S1:E12 - The Best EVER: Weapon","description":"What is your best EVER weapon?","player_loc":"https://roosterteeth.com/embed/the-best-ever-weapon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7024c6a1-b6e0-490b-a8e7-73ec6aa80031/sm/video_thumbnail_2535726.jpg","duration":238,"publication_date":"2012-08-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/squarepainter-helps-sgc","changefreq":"weekly","video":[{"title":"S1:E368 - Squarepainter Helps SGC!","description":" Now through August 22nd, 10% of all Squarepainter paintings sold will be donated to the SGC kickstarter! \r\nHead over to the Squarepainter page and help out SGC while also getting a great pice of pixel art!\r\nSquarepainter page: http://www.screwattackstore.com/squarepainter.html","player_loc":"https://roosterteeth.com/embed/squarepainter-helps-sgc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03362e44-569a-4e7d-982f-c9eca73687bc/sm/video_thumbnail_2534261.jpg","duration":40,"publication_date":"2012-08-16T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/9-reasons-we-hate-metroid-with-evil-craig","changefreq":"weekly","video":[{"title":"S1:E1 - 9 Reasons We HATE Metroid (with Evil Craig)","description":"As if a blog post was enough, Evil Craig really wanted to let everyone know the 9 reasons we HATE Metroid. If you don't like it Evil Craig says \"FUCK YOU!\"","player_loc":"https://roosterteeth.com/embed/9-reasons-we-hate-metroid-with-evil-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb61a36c-17ab-450b-8d9b-aee6b27b0b94/sm/video_thumbnail_2528661.jpg","duration":57,"publication_date":"2012-08-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mega-mans-new-game-anonymous-failed-hack-and-gamestops-dlc-hard-news-081612","changefreq":"weekly","video":[{"title":"S1:E246 - Mega Man's New Game, Anonymous' Failed Hack, and GameStop's DLC - Hard News 08/16/12","description":"Anonymous hacked the PSN, but then didn’t - http://www.screwattack.com/news/anonymous-hacked-psn-then-didn%E2%80%99t\r\nGameStop is making DLC easy by ditching those pesky 25-digit codes - http://www.screwattack.com/news/gamestop-making-dlc-easy-ditching-those-pesky-25-digit-codes\r\nCapcom announces new Mega Man X RPG for iOS - http://www.screwattack.com/news/capcom-announces-new-mega-man-x-rpg-ios\r\n\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/mega-mans-new-game-anonymous-failed-hack-and-gamestops-dlc-hard-news-081612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffd7e544-92d5-488d-bab2-709da9c22453/sm/video_thumbnail_2532586.png","duration":151,"publication_date":"2012-08-16T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/command-and-conquer-goes-free-the-last-guardian-is-still-on-and-black-ops-2-multiplayer-tools-hard-news-081512","changefreq":"weekly","video":[{"title":"S1:E245 - Command and Conquer Goes Free, The Last Guardian is Still On, and Black Ops 2 Multiplayer Tools - Hard News 08/15/12","description":"Generals 2 becomes F2P Command & Conquer - http://www.screwattack.com/news/generals-2-becomes-f2p-command-conquer\r\nThe Last Guardian is still coming to PS3 says Sony - http://www.screwattack.com/news/last-guardian-still-coming-ps3-says-sony\r\nCOD: BlOps 2 multiplayer reveal on live from Gamescom right now! - http://www.screwattack.com/news/cod-blops-2-multiplayer-reveal-live-gamescom-right-now\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/command-and-conquer-goes-free-the-last-guardian-is-still-on-and-black-ops-2-multiplayer-tools-hard-news-081512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88190617-876c-4064-952e-532cbbcf4628/sm/video_thumbnail_2525491.png","duration":157,"publication_date":"2012-08-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drake-gets-put-on-the-spot","changefreq":"weekly","video":[{"title":"S1:E367 - Drake Gets Put on the Spot","description":"And he's here to tell you about the Advantage program.","player_loc":"https://roosterteeth.com/embed/drake-gets-put-on-the-spot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3db0b156-ba22-4991-8079-d36b314d5eef/sm/video_thumbnail_2521891.jpg","duration":84,"publication_date":"2012-08-15T08:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-081512","changefreq":"weekly","video":[{"title":"S1:E366 - SideScrollers Extended 08/15/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-081512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3e425eb-3d4a-434a-af17-c96fdcd8c083/sm/video_thumbnail_2515236.jpg","duration":438,"publication_date":"2012-08-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"hookers-on-steroids\"","changefreq":"weekly","video":[{"title":"S1:E77 - SideScrollers - \"Hookers on Steroids\"","description":"As you might have noticed, we have been trying new ways to record Sidescrollers.  Please give us some time to work out all the kinks.  Thanks :)\r\n \r\nSupport SGC! - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again\r\nGet the audio version here - http://bit.ly/NntFjz\r\nSideScrollers Extended can be watched here! - http://bit.ly/PhrxYK\r\n \r\nCheck out our newest content by clicking the links below!\r\n \r\nDeath Battle - Batman Vs. Spider-Man - http://bit.ly/NjlwKS\r\nNewsroom - Leads - http://bit.ly/NneV42\r\nThe Completionist - Resident Evil - http://bit.ly/NfgZXo\r\nClip of the Week Outtakes - Peter Molyneux's New Studio - http://bit.ly/SiaSm6\r\n[NSFW] San Japan - LittleKuriboh Joins the Bancast LIVE - http://bit.ly/Qvmd0O\r\nDrake McWhorter vs the World: Cici's Pizza Edition - http://bit.ly/Sdlzq6\r\n14 Reasons we LOVE Metroid - http://bit.ly/P4nqQc\r\nDeath Battle - Gag Reel #7: Attack of the Killer Throat - http://bit.ly/PUqVo8\r\nExtra Credits - The Hero's Journey (Part 2) - http://bit.ly/PacuR0\r\nReview - Book of Unwritten Tales - http://bit.ly/S4eDvl\r\nSean Hits Up Austin for Street Fighter's 25th Anniversary - http://bit.ly/S4eBUe\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://Twitter.com/ScrewAttack\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"hookers-on-steroids\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6c57006-50b8-4a20-bec0-13a73259fb3f/sm/video_thumbnail_2515091.jpg","duration":2359,"publication_date":"2012-08-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-and-blu-join-forces-sonys-gamescom-and-capcoms-new-ip-hard-news-081412","changefreq":"weekly","video":[{"title":"S1:E244 - RED and BLU Join Forces, Sony's Gamescom, and Capcom's New IP - Hard News 08/14/12","description":"The RED and BLU TF2 Guys Are Working Together? - http://www.screwattack.com/video/Gamescom--The-RED-and-BLU-TF2-Guys-Are-Working-Together-2515171\r\nMedia Molecule enters the paper world of Tearaway - http://www.screwattack.com/video/Media-Molecule-enters-the-paper-world-of-Tearaway-2515846\r\nCapcom's Remember Me looks like a cyberpunk roller coaster - http://www.screwattack.com/video/Capcoms-Remember-Me-looks-like-a-cyberpunk-roller-coaster-2514571\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/red-and-blu-join-forces-sonys-gamescom-and-capcoms-new-ip-hard-news-081412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfd99f9e-a771-46c5-93c8-30ec5c2215da/sm/video_thumbnail_2517351.png","duration":144,"publication_date":"2012-08-14T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-leads","changefreq":"weekly","video":[{"title":"S1:E13 - Newsroom: Leads","description":"It'll be on Kotaku tomorrow.\r\n(New episode every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-leads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b263512a-567e-4d5d-b7f1-a83d88a3ecea/sm/video_thumbnail_2512136.jpg","duration":72,"publication_date":"2012-08-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-outtakes-peter-molyneuxs-new-studio","changefreq":"weekly","video":[{"title":"S1:E365 - Clip of the Week Outtakes - Peter Molyneux's New Studio","description":"Jared Molyneux imagines some new games and Nick gets a surprise visit from... his mom and his sister...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-outtakes-peter-molyneuxs-new-studio","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d36ea3e0-e464-4933-bd28-9d45d4253aae/sm/video_thumbnail_2505406.jpg","duration":273,"publication_date":"2012-08-13T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nsfw-san-japan-littlekuriboh-joins-the-bancast-live","changefreq":"weekly","video":[{"title":"S1:E364 - [NSFW] San Japan - LittleKuriboh Joins the Bancast LIVE","description":"The creator of Yu-Gi-Oh Abridged sits down with the hosts of the Bancast, Trunks and Levi to deliver a \"cream soda\" fueled panel of insane wackiness.\r\nYou can check out the Bancast at http://thebancast.com/","player_loc":"https://roosterteeth.com/embed/nsfw-san-japan-littlekuriboh-joins-the-bancast-live","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5c67b30-08c8-4eb2-837b-015f9109fa61/sm/video_thumbnail_2505671.jpg","duration":4208,"publication_date":"2012-08-13T09:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drake-mcwhorter-vs-the-world-cicis-pizza-edition","changefreq":"weekly","video":[{"title":"S1:E363 - Drake McWhorter vs the World: Cici's Pizza Edition","description":" There's a special link between ScrewAttack and Cici's Pizza, so it was only logical that when we thought were out? They pull us back in. Drake's made an eating name for himself with ice cream but it's time for a real challenge: putting down all the pizza he can in 30 minutes.","player_loc":"https://roosterteeth.com/embed/drake-mcwhorter-vs-the-world-cicis-pizza-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a4a25e5-6a08-4f5f-ab7d-42d9bc896ca1/sm/video_thumbnail_2502441.jpg","duration":304,"publication_date":"2012-08-12T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/no-bioshock-multiplayer-battle-net-has-been-hacked-and-a-uk-wii-u-delay-hard-news-081012","changefreq":"weekly","video":[{"title":"S1:E243 - No Bioshock Multiplayer, Battle.Net Has Been Hacked, and a UK Wii U Delay - Hard News 08/10/12","description":"[Rumor] BioShock Infinite has decided to ditch the multiplayer - http://www.screwattack.com/news/rumor-bioshock-infinite-has-decided-ditch-multiplayer\r\n Important! Blizzard got Hacked! - http://www.screwattack.com/news/important-blizzard-got-hacked\r\n[Rumor] Wii U facing uphill battle to release across Europe - http://www.screwattack.com/news/rumor-wii-u-facing-uphill-battle-release-across-europe\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/no-bioshock-multiplayer-battle-net-has-been-hacked-and-a-uk-wii-u-delay-hard-news-081012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6be96f97-4dac-412c-817f-0b58a61a7fca/sm/video_thumbnail_2484046.png","duration":144,"publication_date":"2012-08-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/batman-vs-spider-man-death-battle","changefreq":"weekly","video":[{"title":"S1:E23 - Batman VS Spider-Man","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/batman-vs-spider-man-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db04fcbc-9f1f-44d3-8397-ed276cf07ebd/sm/video_thumbnail_2466721.jpg","duration":536,"publication_date":"2012-08-09T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/xbox-720-rhode-island-owns-amalur-no-360-silent-hill-patches-hard-news-080912","changefreq":"weekly","video":[{"title":"S1:E242 - Xbox 720, Rhode Island Owns Amalur, No 360 Silent Hill Patches - Hard News 08/09/12","description":"[Rumor] ‘Nextbox’ getting Skype according to job report - http://www.screwattack.com/news/rumor-%E2%80%98nextbox%E2%80%99-getting-skype-according-job-report\r\nEpic builds Impossible from the ashes of Big Huge and RI owns Copernicus - http://www.screwattack.com/news/epic-builds-impossible-ashes-big-huge-and-ri-owns-copernicus\r\nGreat news! Silent Hill HD Collection is patched, but only on PS3 - http://www.screwattack.com/news/great-news-silent-hill-hd-collection-patched-only-ps3\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/xbox-720-rhode-island-owns-amalur-no-360-silent-hill-patches-hard-news-080912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/139e9ce0-ee78-49ef-954a-c6bc3a07ecb6/sm/video_thumbnail_2473906.png","duration":130,"publication_date":"2012-08-09T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/star-trek-gets-canceled-steam-branches-out-and-more-mass-effect-3-dlc-hard-news-080812","changefreq":"weekly","video":[{"title":"S1:E241 - Star Trek Gets Canceled, Steam Branches Out, and More Mass Effect 3 DLC? - Hard News 08/08/12","description":"New MMO Star Trek: Infinite Space has been dropped by Gameforge - http://www.screwattack.com/news/new-mmo-star-trek-infinite-space-has-been-dropped-gameforge\r\nValve takes Steam beyond games offering other types of software - http://www.screwattack.com/news/valve-takes-steam-beyond-games-offering-other-types-software\r\n[Rumor] ME3 DLC aims to change the ending just a little - http://www.screwattack.com/news/rumor-me3-dlc-aims-change-ending-just-little\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/star-trek-gets-canceled-steam-branches-out-and-more-mass-effect-3-dlc-hard-news-080812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9c485b6-437e-4c41-9cbc-597f9b4a9afd/sm/video_thumbnail_2465661.png","duration":129,"publication_date":"2012-08-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sean-hit-up-austin-for-street-fighters-25th-anniversary","changefreq":"weekly","video":[{"title":"S1:E362 - Sean hit up Austin for Street Fighter's 25th anniversary","description":" In part of celebrating turning 25, there is a series of Street Fighter tournaments happening throughout the world and one of the stops happened to be in Texas. There was no way we weren't sending Sean to see what's up.","player_loc":"https://roosterteeth.com/embed/sean-hit-up-austin-for-street-fighters-25th-anniversary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc40eba1-8426-4d16-ba30-429b387accf5/sm/video_thumbnail_2461951.jpg","duration":215,"publication_date":"2012-08-08T11:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-080812","changefreq":"weekly","video":[{"title":"S1:E361 - SideScrollers Extended 08/08/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-080812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bab2a0d-a3d3-4ad7-a256-c55a60fd5c51/sm/video_thumbnail_2451671.jpg","duration":377,"publication_date":"2012-08-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"boob-chronicles\"","changefreq":"weekly","video":[{"title":"S1:E76 - SideScrollers - \"Boob Chronicles\"","description":"Support SGC! - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again\r\nGet the audio version here - http://bit.ly/NhgtsC\r\nSideScrollers Extended can be watched here! - http://bit.ly/O01GGi\r\n \r\nCheck out our newest content by clicking the links below!\r\n \r\nNewroom - Double Kill - http://bit.ly/NaMswv\r\nExtra Credits - The Heroes Journey Part 1 - http://bit.ly/MhvlcJ\r\nThe Game OverThinker - Going Hollywood - http://bit.ly/QGsjyE\r\nClip of the Week - The Gamer Olympics - http://bit.ly/OAwR9I\r\nThe Best EVER - Hottest Hunk - http://bit.ly/Mi0d8m\r\nCorey's Favorite SGC Moment EVER! - http://bit.ly/N6TArL\r\nReview - Tony Hawk's Pro Skater HD - http://bit.ly/PPc7at\r\nGuile's Theme Goes With SFxT on Vita - http://bit.ly/N0hzwu\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://Twitter.com/ScrewAttack\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"boob-chronicles\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb096a2e-87a6-4502-8043-e526f0d87740/sm/video_thumbnail_2451641.jpg","duration":3111,"publication_date":"2012-08-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/day-z-stands-alone-new-scott-pilgrim-dlc-and-ff-vii-gets-released-early-hard-news-080712","changefreq":"weekly","video":[{"title":"S1:E240 - Day Z Stands Alone, New Scott Pilgrim DLC, and FF VII Gets Released Early - Hard News 08/07/12","description":"Day Z developer confirms standalone version is in development - http://www.screwattack.com/news/day-z-developer-confirms-standalone-version-development\r\nScott Pilgrim is getting update on XBLA, two years too late - http://www.screwattack.com/news/scott-pilgrim-getting-update-xbla-two-years-too-late\r\n[Update] Final Fantasy VII PC mistake means free copies for fevered fans - http://www.screwattack.com/news/update-final-fantasy-vii-pc-mistake-means-free-copies-fevered-fans\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/day-z-stands-alone-new-scott-pilgrim-dlc-and-ff-vii-gets-released-early-hard-news-080712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00390443-b9e7-43ec-a21f-bc27a9679156/sm/video_thumbnail_2453671.png","duration":140,"publication_date":"2012-08-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-double-kill","changefreq":"weekly","video":[{"title":"S1:E12 - Newsroom: Double Kill","description":"I heard QuakeCon is shaking things up this year.\r\n(New episodes every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-double-kill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ceac4ca-0e35-490b-8fde-0f5a239dc41d/sm/video_thumbnail_2448601.jpg","duration":88,"publication_date":"2012-08-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drake-tries-to-break-an-eating-record","changefreq":"weekly","video":[{"title":"S1:E360 - Drake Tries to Break an Eating Record","description":"And he might have actually done it!","player_loc":"https://roosterteeth.com/embed/drake-tries-to-break-an-eating-record","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b60cc62-9362-47d5-b9f0-2b187031ef56/sm/video_thumbnail_2447176.jpg","duration":517,"publication_date":"2012-08-06T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sony-hd-collections-a-new-prince-of-persia-and-the-source-2-engine-hard-news-080612","changefreq":"weekly","video":[{"title":"S1:E239 - Sony HD Collections, a new Prince of Persia, and the Source 2 engine - Hard News 08/06/12","description":"God of War and inFamous HD Collections, a new Prince of Persia, and possibly the Source 2 engine on the way today on Hard News\r\nSony HD Collections - http://www.screwattack.com/news/playstation-collections-make-first-party-titles-necessity\r\nA new Prince of Persia - http://www.screwattack.com/news/rumor-leaked-screenshot-may-point-prince-persa-reboot\r\nSource 2 Engine - http://www.screwattack.com/news/rumor-source-filmmaker-might-have-revealed-source-20\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/sony-hd-collections-a-new-prince-of-persia-and-the-source-2-engine-hard-news-080612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f17c7a3f-48df-45f1-b763-d4674f170903/sm/video_thumbnail_2446741.png","duration":132,"publication_date":"2012-08-06T14:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-gamer-olympics","changefreq":"weekly","video":[{"title":"S1:E173 - Clip of the Week - The Gamer Olympics","description":"As the world watches the search for the best athletes, we searched for the greatest gamer.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-gamer-olympics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e70b5f64-1772-4b26-a6c2-05bdd79df956/sm/CotWOlympicsThumb.jpg","duration":260,"publication_date":"2012-08-03T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mass-effect-wii-u-a-rambo-game-and-the-battle-royale-leak-is-confimed-hard-news-080312","changefreq":"weekly","video":[{"title":"S1:E238 - Mass Effect Wii U, A Rambo Game, and the Battle Royale Leak is Confimed - Hard News 08/03/12","description":"EA's Summer Showcase brings new Wii U details - http://www.screwattack.com/news/eas-summer-showcase-brings-new-wii-u-details\r\nJohn Rambo returns in a “fixed-perspective, first-person shooter\" - http://www.screwattack.com/news/john-rambo-returns-%E2%80%9Cfixed-perspective-first-person-shooter\r\n[EXCLUSIVE & CONFIRMED] Anonymous source tells all for \"Playstation All-Stars Battle Royale\" - http://www.screwattack.com/news/exclusive-confirmed-anonymous-source-tells-all-playstation-all-stars-battle-royale\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/mass-effect-wii-u-a-rambo-game-and-the-battle-royale-leak-is-confimed-hard-news-080312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9936c233-e5f1-4970-b965-b7355551d23a/sm/video_thumbnail_2424256.jpg","duration":146,"publication_date":"2012-08-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-lauren-burps-the-alphabet","changefreq":"weekly","video":[{"title":"S1:E359 - [Advantage] Lauren Burps the Alphabet","description":"S1:E359 - [Advantage] Lauren Burps the Alphabet","player_loc":"https://roosterteeth.com/embed/advantage-lauren-burps-the-alphabet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44137545-3ebc-4dd2-8028-8ae5caea11d2/sm/video_thumbnail_2422436.jpg","duration":180,"publication_date":"2012-08-03T12:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-hottest-hunk","changefreq":"weekly","video":[{"title":"S1:E11 - The Best EVER: Hottest Hunk","description":"Who is your best EVER hunk?","player_loc":"https://roosterteeth.com/embed/the-best-ever-hottest-hunk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/254167a8-f411-442c-b99d-b0671b2f6745/sm/video_thumbnail_2418511.jpg","duration":214,"publication_date":"2012-08-02T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-new-army-of-two-virtual-reality-is-real-and-rise-of-the-triad-is-back-hard-news-080212","changefreq":"weekly","video":[{"title":"S1:E237 - A New Army of Two, Virtual Reality is REAL, and Rise of the Triad is Back - Hard News 08/02/12","description":"Army of Two: The Devil’s Cartel will be releasing in March of 2013 - http://www.screwattack.com/news/army-two-devil%E2%80%99s-cartel-will-be-releasing-march-2013\r\nOculus Rift has already been funded on Kickstarter in 24 hours - http://www.screwattack.com/news/oculus-rift-has-already-been-funded-kickstarter-24-hours\r\n[Rumor] Apogee classic Rise of the Triad is coming back - http://www.screwattack.com/news/rumor-apogee-classic-rise-triad-coming-back\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/a-new-army-of-two-virtual-reality-is-real-and-rise-of-the-triad-is-back-hard-news-080212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/263ff7d1-2821-4f8c-9629-afb9fae63144/sm/video_thumbnail_2413746.jpg","duration":158,"publication_date":"2012-08-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/coreys-favorite-sgc-moment-ever","changefreq":"weekly","video":[{"title":"S1:E358 - Corey's Favorite SGC Moment EVER!","description":" An old ScrewAttack member stopped by the HQ recently to share her favorite moment of SGC ever!  \r\nRemember, you can help bring SGC back by backing our Kickstarter.  Check it out here.","player_loc":"https://roosterteeth.com/embed/coreys-favorite-sgc-moment-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ffc48f6-7214-4ac6-98ac-4a7c20b0eb4d/sm/video_thumbnail_2414976.jpg","duration":50,"publication_date":"2012-08-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tor-goes-free-to-play-valves-user-agreement-changes-and-ada-wong-is-back-hard-news-080112","changefreq":"weekly","video":[{"title":"S1:E236 - TOR Goes Free to Play, Valve's User Agreement Changes, and Ada Wong is Back - Hard News 08/01/12","description":"Star Wars MMO will be going free-to-play this year - http://www.screwattack.com/news/star-wars-mmo-will-be-going-free-play-year\r\nValve prohibits class action lawsuits in new ToS - http://www.screwattack.com/news/valve-prohibits-class-action-lawsuits-new-tos\r\n[NSFW] New RE6 trailer reveals Ada Wong and a creepy naked boss - http://www.screwattack.com/news/nsfw-new-re6-trailer-reveals-ada-wong-and-creepy-naked-boss\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/tor-goes-free-to-play-valves-user-agreement-changes-and-ada-wong-is-back-hard-news-080112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba021bf5-a4e1-41db-9cfa-ff8fc55488be/sm/video_thumbnail_2407881.png","duration":182,"publication_date":"2012-08-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/guiles-theme-goes-with-sfxt-on-vita","changefreq":"weekly","video":[{"title":"S1:E357 - Guile's Theme Goes With SFxT on Vita","description":"Sean visited the Street Fighter 25th anniversary event in Austin, Texas.","player_loc":"https://roosterteeth.com/embed/guiles-theme-goes-with-sfxt-on-vita","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51020b2c-298c-42af-b932-74308b1cdad0/sm/video_thumbnail_2408346.jpg","duration":142,"publication_date":"2012-08-01T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-080112","changefreq":"weekly","video":[{"title":"S1:E356 - SideScrollers Extended 08/01/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-080112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a62d71da-7f55-4219-979a-69e98386f5c4/sm/video_thumbnail_2397581.jpg","duration":429,"publication_date":"2012-07-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"strip-club-job-fair\"","changefreq":"weekly","video":[{"title":"S1:E75 - SideScrollers - \"Strip Club Job Fair\"","description":"Support SGC! - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again\r\nGet the audio version here - http://bit.ly/MhfdZZ\r\nSideScrollers Extended can be watched here! - http://bit.ly/MXlati\r\n \r\nCheck out our newest content by clicking the links below!\r\n \r\nNewsroom: THAC0 - http://bit.ly/M7sXkf\r\nNext Time on Death Battle: Spider-Man VS ??? - http://bit.ly/MbQYwq\r\nClip of the Week: SGC Stands For…? - http://bit.ly/OmhC5b\r\nVideo Game Vault: Pictionary - http://bit.ly/PImPDG\r\nGame (Show) Theory: Plinko, Prizes, and Probability - http://bit.ly/MXbtt7\r\nThe Best EVER: Konami Game - http://bit.ly/MpC80H\r\nVideo Game Vault: Twisted Metal - http://bit.ly/OzBfmY\r\nExtra Credits: Power Creep - http://bit.ly/OMuaxA\r\nbrentalfloss: Live SGC Concert - http://bit.ly/M1fvms\r\nReview: Pokemon Conquest - http://bit.ly/LP5DYi\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://Twitter.com/ScrewAttack\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"strip-club-job-fair\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9535d97f-d415-4d89-88f6-59b7d80f1dce/sm/video_thumbnail_2397566.jpg","duration":3259,"publication_date":"2012-07-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-073112","changefreq":"weekly","video":[{"title":"S1:E235 - Hard News 07/31/12","description":"Today on Hard News, EXCLUSIVE details about All-Stars Battle Royale, Bethesda might own the S.T.A.L.K.E.R. series, and Tony Hawk is making a comeback?\r\n[Exclusive] Anonymous source gives us the real story behind Playstation All-Stars Battle Royale - http://www.screwattack.com/news/exclusive-anonymous-source-gives-us-real-story-behind-playstation-all-stars-battle-royale\r\nBethesda might own the S.T.A.L.K.E.R. license after all? - http://www.screwattack.com/news/bethesda-might-own-stalker-license-after-all\r\nTony Hawk HD may be paving its own way to a sequel - http://www.screwattack.com/news/tony-hawk-hd-may-be-paving-its-own-way-sequel\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-073112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e17ef2c-8a65-491b-bcbe-6711892a24fb/sm/video_thumbnail_2399341.png","duration":146,"publication_date":"2012-07-31T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-thac0","changefreq":"weekly","video":[{"title":"S1:E11 - Newsroom: THAC0","description":"To Hit Armor Class Jared.\r\n(New episode every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-thac0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d28995ec-6feb-4300-864e-876836d378ba/sm/video_thumbnail_2395036.jpg","duration":98,"publication_date":"2012-07-31T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-073012","changefreq":"weekly","video":[{"title":"S1:E234 - Hard News 07/30/12","description":"Today on Hard News, a Playstation All Stars roster leak, a Wii U price, and Ubisoft is in your computer with uPlay.\r\nPS All Stars Roster - http://www.screwattack.com/news/rumor-playstation-all-stars-characters-and-stages-leaked\r\nWii U Price and Release Date - http://www.screwattack.com/news/rumor-wii-us-price-and-release-date-might-be-revealed-september\r\nUbisoft issues patch - http://www.screwattack.com/news/ubisoft-issues-patch-drm-uplay%E2%80%99s-security-flaw\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-073012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67d16433-644a-4421-aff0-876332f40c3e/sm/video_thumbnail_2394006.png","duration":154,"publication_date":"2012-07-30T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-sgc-stands-for","changefreq":"weekly","video":[{"title":"S1:E172 - Clip of the Week - SGC Stands For...?","description":"As we attempt to Kickstart SGC 3, there's a lot of people who don't know what SGC stands for. Take a look at what some g1s thought it means...\r\nWant to help bring SGC back? Visit our Kickstarter page and support if you'd like - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-sgc-stands-for","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37889cce-00ac-4085-b17c-9427abe7c67d/sm/video_thumbnail_2380326.jpg","duration":151,"publication_date":"2012-07-27T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-konami-game","changefreq":"weekly","video":[{"title":"S1:E10 - The Best EVER: Konami Game","description":"What is your best EVER Konami game?","player_loc":"https://roosterteeth.com/embed/the-best-ever-konami-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/157fb5ee-82d6-4188-b62b-426e0dae44ef/sm/video_thumbnail_2372101.jpg","duration":280,"publication_date":"2012-07-26T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072612","changefreq":"weekly","video":[{"title":"S1:E232 - Hard News 07/26/12","description":"Today on Hard News, The Witcher 3 might get multiplayer, Metal Gear: Rising's possible release date, and Final Fantasy XIV gets remade again, kind of.\r\n[Rumor] Witcher 3 will have a multiplayer mode - http://http://www.screwattack.com/news/rumor-witcher-3-will-have-multiplayer-mode\r\n[Rumor] Metal Gear Rising: Revengeance is dated for February - http://www.screwattack.com/news/rumor-metal-gear-rising-revengeance-dated-february\r\nSquare Enix reveals Final Fantasy XIV: A Realm Reborn - http://www.screwattack.com/news/square-enix-reveals-final-fantasy-xiv-realm-reborn\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-072612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdb7a03e-bd26-473f-b652-ce01f4c46430/sm/video_thumbnail_2369081.jpg","duration":127,"publication_date":"2012-07-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ever-wanted-to-see-brentalfloss-first-live-performance-at-sgc-09","changefreq":"weekly","video":[{"title":"S1:E355 - Ever wanted to see brentalfloss' first live performance at SGC '09?","description":"Did you know brentalfloss' career performing live started at SGC '09?  Check out his debut performance.\r\nRemember, if you'd like to help SGC return, you can do so by visiting our SGC kickstarter page here.","player_loc":"https://roosterteeth.com/embed/ever-wanted-to-see-brentalfloss-first-live-performance-at-sgc-09","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfafe942-152e-4f25-a43d-2e5d83fcda04/sm/video_thumbnail_2359356.jpg","duration":523,"publication_date":"2012-07-25T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072512","changefreq":"weekly","video":[{"title":"S1:E231 - Hard News 07/25/12","description":"Today on Hard News, some new PSN games have been rumored, Quantum Conundrum's DLC, and World of Warcraft: Mists of Pandaria's collector's edition.\r\n[Rumor] Capcom & SEGA are bringing classic games to PSN - http://www.screwattack.com/news/rumor-capcom-sega-are-bringing-classic-games-psn\r\nQuantum Conundrum set to receive 2 packs of DLC this year - http://www.screwattack.com/news/quantum-conundrum-set-receive-2-packs-dlc-year\r\nBlizzard reveals Mists of Pandaria date and Collector’s Edition - http://www.screwattack.com/news/blizzard-reveals-mists-pandaria-date-and-collector%E2%80%99s-edition\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-072512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55a10635-c456-4d00-8c0d-f18403c1c6aa/sm/video_thumbnail_2358861.png","duration":127,"publication_date":"2012-07-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-072512","changefreq":"weekly","video":[{"title":"S1:E354 - SideScrollers Extended 07/25/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-072512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a464361f-9bf1-480a-be5d-f0f99e42ba98/sm/video_thumbnail_2340131.jpg","duration":665,"publication_date":"2012-07-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"blue-steel\"","changefreq":"weekly","video":[{"title":"S1:E74 - SideScrollers - \"Blue Steel\"","description":"Support SGC! - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again\r\nGet the audio version here - http://bit.ly/QxBqmP\r\nSideScrollers Extended can be watched here! - http://bit.ly/SS674Z\r\n \r\nCkeck out our newest content by clicking the links below!\r\n \r\nTop 10 SGC 2010 Moments - http://bit.ly/PTe7zo\r\nNewsroom - Philophobia - http://bit.ly/MCev7R\r\nReview: Gunlord - http://bit.ly/MynsyW\r\nBen's Favorite SGC Moment EVER - http://bit.ly/OeJF4W\r\n19 Reasons We Love Batman - http://bit.ly/NKnXpS\r\nMario Party 6 After Dark - http://bit.ly/M1x9b3\r\nThe Worst EVER: Sidekick - http://bit.ly/PdIGPG\r\nExtra Credits - Politics - http://bit.ly/MvOGWR\r\nVideo Game Vault - Batman and Robin - http://bit.ly/NZQKWT\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://Twitter.com/ScrewAttack\r\nChad - http://Twitter.com/ScrewAttackChad\r\nJared - http://Twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"blue-steel\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4dc37e2e-2990-45ba-88d6-ba0725a15c4c/sm/video_thumbnail_2340071.jpg","duration":3360,"publication_date":"2012-07-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072412","changefreq":"weekly","video":[{"title":"S1:E230 - Hard News 07/24/12","description":"Today on Hard News, Final Fantasy Versus XIII is still on, Nintendo's Month of Mario, and Kingdoms of Amalur Copernicus almost happened.\r\nFinal Fantasy Versus XIII isn't dead after all!! - http://www.screwattack.com/news/final-fantasy-versus-xiii-isnt-dead-after-all\r\nThe Month of Mario starts in two days - http://www.screwattack.com/news/month-mario-starts-two-days\r\n38 Studios’ Copernicus MMO was almost published by Take-Two - http://www.screwattack.com/news/38-studios%E2%80%99-copernicus-mmo-was-almost-published-take-two\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-072412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0acecd7f-ac62-4396-ab08-cb56017e7c67/sm/video_thumbnail_2344216.jpg","duration":135,"publication_date":"2012-07-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-half-gallon-challenge","changefreq":"weekly","video":[{"title":"S1:E353 - The Half Gallon Challenge","description":"The idea is simple: eat a half gallon of ice cream before the other people do. With Lauren, Sam and Drake all competing against each other things could get messy especially because the loser's punishment could be decided by you!","player_loc":"https://roosterteeth.com/embed/the-half-gallon-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f036883e-28d2-4169-8035-5b17befb2993/sm/video_thumbnail_2201836.jpg","duration":490,"publication_date":"2012-07-24T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-philophobia","changefreq":"weekly","video":[{"title":"S1:E10 - Newsroom: Philophobia","description":"Twelve dollars is not cheap!\r\n(New episode every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-philophobia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d833072-8f8d-41f4-8341-a7e3afc220be/sm/video_thumbnail_2336966.jpg","duration":91,"publication_date":"2012-07-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-snipers-vs-stunters","changefreq":"weekly","video":[{"title":"2015:E296 - GTA V - Snipers Vs Stunters","description":"It's like shooting acrobats with high powered rifles! You'll never see one of the MVPs of this one coming...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-snipers-vs-stunters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00aa46d2-e1b2-4541-ba45-668057142206/sm/2013912-1445229929119-lpGtavsnipersvsstuntersthumb.jpg","duration":2831,"publication_date":"2015-10-19T01:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-n-o-w-w-e-h-a-v-e-a-g-a-m-e-presented-with-comment-9-week-of-october-9-th","changefreq":"weekly","video":[{"title":"2015:E59 - NOW WE HAVE A GAME! - Presented with Comment #9 - Week of October 9th","description":"Competitors Geoff, Ryan, Jack, Gavin, and Matt see who spends their weekend nights reading the comments and possibly crying over the horrible things said. \n\nThe videos included in today's episode are:\n\nFive Facts Fact Check #7 http://achievementhunter.com/episode/five-facts-five-facts-five-facts-fact-check-7\n\nGavin's Return to London! - Assassins Creed Syndicate http://achievementhunter.com/episode/achievement-hunter-season-2-gavin-s-return-to-london-assassins-creed-syndicate\n\nKeep Talking and Nobody Explodes - Play Pals #37 http://achievementhunter.com/episode/play-pals-2015-18\n\nRock Band 4 Jam Session http://achievementhunter.com/episode/achievement-hunter-season-2-rock-band-4-jam-session\n\nTTD in GTAV - The Floor is Wawa http://achievementhunter.com/episode/things-to-do-in-2015-62\n\nTTD in GTAV - Bumpy Race http://achievementhunter.com/episode/things-to-do-in-2015-63\n\nSpecial Delivery - Play Pals #38 http://achievementhunter.com/episode/play-pals-2015-20\n\nDuck Dynasty, Minecraft, and GTA V - Grab Bag #3 http://achievementhunter.com/episode/achievement-hunter-season-2-duck-dynasty-minecraft-and-g-t-a-v-grab-bag-3\n\nLP - Octodad: Dadliest Catch - QUAD-DAD MODE! http://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-octodad-dadliest-catch-q-u-a-d-d-a-d-m-o-d-e\n\nLP - Minecraft Episode 176 - Blocking List http://achievementhunter.com/episode/lets-play-let-s-play-2-176\n\nLP - Speedrunners - The Rooster Teeth Podcast Crew http://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-speedrunners-the-rooster-teeth-podcast-crew\n\nLP - Star Wars Battlefront http://achievementhunter.com/episode/lets-play-let-s-play-2-star-wars-battlefront\n\nLP - Thief Town - PS4 Edition http://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-thief-town-p-s4-edition\n\nLP - Destiny - King's Fall Raid Part 1 http://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-part-1","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-n-o-w-w-e-h-a-v-e-a-g-a-m-e-presented-with-comment-9-week-of-october-9-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28cf432e-86d4-4196-917f-86989bf492c8/sm/2013912-1445129289557-PresentedWithComment9WeekofOctober_9th.jpg","duration":1016,"publication_date":"2015-10-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-lara-croft-and-the-temple-of-osiris","changefreq":"weekly","video":[{"title":"2015:E44 - Lara Croft and the Temple of Osiris","description":"Joel and Adam set out to raid tombs but end up talking about the Mummy and Billy Zane for 40 minutes.","player_loc":"https://roosterteeth.com/embed/how-to-2015-lara-croft-and-the-temple-of-osiris","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/373d281e-ad6e-45f1-97bb-03ac78c3346c/sm/2013912-1445128896656-LaraCroftThumb.jpg","duration":2059,"publication_date":"2015-10-18T00:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-rocket-league-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E295 - Rocket League: The Revenge - The Rooster Teeth Podcast Crew","description":"Gus, Miles, Kerry, and Jon show off the new in-game Rooster Teeth flags and face off in a heart-pounding game of Rocket League! New alliances will be formed, old friendships will be tested, and a mysterious newcomer, named Tusk, may just prove he has what it takes to rise to the top.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-rocket-league-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/440a8083-8150-487e-8efe-abe6cd2bb572/sm/2013912-1445050629720-LPpodcastRocketLeagueThumb.png","duration":2435,"publication_date":"2015-10-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-episode-130-michael-vs-jeremy","changefreq":"weekly","video":[{"title":"2015:E38 - Episode 130: Michael vs Jeremy","description":"AH is fluent in full mouth.","player_loc":"https://roosterteeth.com/embed/vs-2015-episode-130-michael-vs-jeremy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/415e43d8-821d-4f69-b1f7-96b18d243393/sm/2013912-1445037257323-versus_thumb.jpg","duration":427,"publication_date":"2015-10-16T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-sports-highlights","changefreq":"weekly","video":[{"title":"2015:E58 - Sports Highlights","description":"Take a trip down memory lane and relive some of Achievement Hunter's best moments in all of sports video games!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-sports-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bf6b71d-307e-4ece-b3e8-8c513f6a087e/sm/2013912-1445015046041-sports_highlights_thumb.jpg","duration":330,"publication_date":"2015-10-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-finale","changefreq":"weekly","video":[{"title":"2015:E294 - Destiny - King's Fall Raid Finale","description":"This is it. The final stretch. Achievement Hunter vs Oryx. Can their fearless leader, Andrew Panton, help five idiots take down a God","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/839377d4-696a-4621-a12c-cdbf04c83317/sm/2013912-1444939651596-LPKingsFallRaidPart3.jpg","duration":2064,"publication_date":"2015-10-15T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-42","changefreq":"weekly","video":[{"title":"2015:E42 - Volume 265","description":"Jack and Geoff are back for Fails of the Weak Volume 265 with funny fails and glitches from Assassins Creed IV Black Flag, Destiny, Halo The Master Chief Collection, Just Cause 2, and Mafia II.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1901c412-7f0e-4cdc-9046-21c797f7a9e8/sm/2013912-1444938142241-Fails265-Big.jpg","duration":153,"publication_date":"2015-10-15T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-177-blocking-list-part-2","changefreq":"weekly","video":[{"title":"2015:E293 - Minecraft Episode 177 - Blocking List (Part 2)","description":"Jeremy, Michael, Jack, Ryan, and Gavin continue competing in Blocking List! Geoff is still lost. Very very lost.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-177-blocking-list-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16dd6b09-1e7e-4d52-ab32-d73d6d354862/sm/2013912-1444921383403-lp_mc_blockinglist2_thumb.jpg","duration":1857,"publication_date":"2015-10-15T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-41","changefreq":"weekly","video":[{"title":"2015:E41 - Assassin's Creed Revelations","description":"Jack and Geoff discuss Assassins Creed: Revelations in this weeks Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b004023-e762-4eea-8aad-17ef0a878244/sm/2013912-1444846097385-PICK_ME_ACR.jpg","duration":194,"publication_date":"2015-10-14T18:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-part-2","changefreq":"weekly","video":[{"title":"2015:E292 - Destiny - King's Fall Raid Part 2","description":"Replacing Jeremy with Andrew Panton might be the key to beating the raid and taking Oryx down once and for all. The Warpriest, Golgoroth and Oryx's daughters seem to disagree...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d836e56f-c7a3-499e-9e27-c3753d8e3fa6/sm/2013912-1444839047583-LP_KingsFallRaid_Part2.jpg","duration":2976,"publication_date":"2015-10-14T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-20","changefreq":"weekly","video":[{"title":"2015:E20 - Special Delivery","description":"R.I.P. Rodger","player_loc":"https://roosterteeth.com/embed/play-pals-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/515b98ff-0a54-4d10-8327-77dc23d49fce/sm/2013912-1444776599061-playpalsspecialdeliverythumb_2.jpg","duration":1034,"publication_date":"2015-10-13T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-duck-dynasty-minecraft-and-g-t-a-v-grab-bag-3","changefreq":"weekly","video":[{"title":"2015:E57 - Grab Bag #3","description":"Git yer eye spheres ready boys, we got ourselves a Grab Bag! This week enjoy some unseen GTA V Crazy Taxi and Minecraft Ep. 169 clips as well as a special selection from the never-to-be-released Duck Dynasty let's play! || The Grab Bag theme is brought to you by Audio Network: http://bit.ly/GrabBagTheme","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-duck-dynasty-minecraft-and-g-t-a-v-grab-bag-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35ed7e6e-e75a-451c-b39a-2aeaa7446acb/sm/2013912-1444756744819-Grab_Bag_Ep_3_Thumbnail.jpg","duration":255,"publication_date":"2015-10-13T17:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-part-1","changefreq":"weekly","video":[{"title":"2015:E291 - Destiny - King's Fall Raid Part 1","description":"Geoff, Jack, Ryan, Jeremy, Michael, and Gavin go head-to-head with Oryx. Their mission is to board his ship, track him down, and finally destroy him. Can they do it!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-king-s-fall-raid-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c73d129-185b-45c6-b301-64cd2894bb65/sm/2013912-1444752808328-LP_KingsFallRaid_Part1.jpg","duration":2954,"publication_date":"2015-10-13T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-27","changefreq":"weekly","video":[{"title":"2015:E40 - Funhaus Sucks! - AHWU for October 12th, 2015 (#286)","description":"The guys get nutty this week with price drops on the PS4, Battlefront news, a new Minecraft game, details on a live stream on Wednesday, and more! Also, Funhaus sucks. \n\nOur Extra Life Team: http://www.extra-life.org/team/roosterteeth\n\nVid of week: https://www.youtube.com/watchv=AlqDjkER5Ws\n\nCommunity vid: https://www.youtube.com/watchv=Qo99NibleRs","player_loc":"https://roosterteeth.com/embed/ahwu-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6aefbf92-f6e0-4223-b42b-8d08c67dedaf/sm/2013912-1444691620714-AHWU_287_thumb.jpg","duration":614,"publication_date":"2015-10-12T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-thief-town-p-s4-edition","changefreq":"weekly","video":[{"title":"2015:E290 - Thief Town - PS4 Edition","description":"Geoff, Matt, Michael, and Jack face off in the PS4 version of THIEF TOWN!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-thief-town-p-s4-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/976f757c-8645-4576-8387-9e7c7377daea/sm/2013912-1444676504978-thieftown_thumb.jpg","duration":1483,"publication_date":"2015-10-12T19:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-63","changefreq":"weekly","video":[{"title":"2015:E63 - GTA V - Bumpy Race","description":"Geoff tosses a ton of garbage onto a race track then challenges Jeremy, Gavin, Michael, Ryan, and Jack to complete the course!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a04c03d-55c3-4dd2-b6b0-56625554ccf9/sm/2013912-1444426182844-ttd_bumpyrace_thumb.jpg","duration":862,"publication_date":"2015-10-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-star-wars-battlefront","changefreq":"weekly","video":[{"title":"2015:E289 - Star Wars Battlefront","description":"AH takes a brief break from GTA to welcome the Battlefront Beta to the world! Let's see if they can lead the Empire to a rare defeat in Walker Assault!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-star-wars-battlefront","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb881a4-269e-47ef-b21d-16a5f80ced93/sm/2013912-1444427815607-starwarsbattlefront_thumb.jpg","duration":2132,"publication_date":"2015-10-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-38","changefreq":"weekly","video":[{"title":"2015:E42 - Star Wars Battlefront","description":"Joel and Adam got a couple of days head start into the Battlefront beta and wanted to give you guys a quick look of three maps.","player_loc":"https://roosterteeth.com/embed/how-to-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d866e8d-e526-438f-a4b3-7955c3ca1ece/sm/2013912-1444427155005-Battlefrontthumb.jpg","duration":1561,"publication_date":"2015-10-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-speedrunners-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E288 - Speedrunners - The Rooster Teeth Podcast Crew","description":"This week, Gus, Gavin, Barbara, and Chris become speed runners. No, not the kind that can beat Ocarina of Time in under 25 minutes, but the kind that run with their speed in a speedy, runny bout of Speedrunners. There will be speeding. There will be running. There will be fat stacks aplenty. Stacks so fat, you'll be jealous you ain't never seen stacks so fat, for realsies.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-speedrunners-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec40d9b5-0ffa-41da-acc0-5b1d4ce7a887/sm/2013912-1444404770268-Speedrunners_Podcast_LP_Thumb_V003.png","duration":2453,"publication_date":"2015-10-10T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-rock-band-4-jam-session","changefreq":"weekly","video":[{"title":"2015:E56 - Rock Band 4 Jam Session","description":"Jam out like our crew by ordering Rock Band 4 today: http://goo.gl/QtjvID\n\nJeremy, Jack, Michael, and Ryan show us their moves and grooves. Thanks to Harmonix for sponsoring this video!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-rock-band-4-jam-session","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebbcc6d9-167a-470c-a395-9d9f5f96c89a/sm/2013912-1444410649663-lprockband4_thumb.jpg","duration":368,"publication_date":"2015-10-09T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-62","changefreq":"weekly","video":[{"title":"2015:E62 - GTA V - The Floor is Wawa","description":"Geoff builds a new course over the ocean, but this time monster trucks, box trucks, pickup trucks... pretty much any truck is the only means of getting across.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21d8297e-7daf-4bfa-b084-e56a94b625d4/sm/2013912-1444343172896-TTD_GTAV_TheFloorIsWawa.jpg","duration":861,"publication_date":"2015-10-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-18","changefreq":"weekly","video":[{"title":"2015:E18 - Keep Talking and Nobody Explodes","description":"Michael and Gavin learn a little bit about teamwork and a lot about how to not explode in this thrilling Play Pals!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71badd9e-dfba-469d-aeb6-afc688dc97ae/sm/1461653-1444360192329-pp_keeptalking_thumb.jpg","duration":1747,"publication_date":"2015-10-09T03:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-gavin-s-return-to-london-assassins-creed-syndicate","changefreq":"weekly","video":[{"title":"2015:E55 - Gavin's Return To London! - Assassins Creed Syndicate","description":"Gavin is British. Assassin's Creed Syndicate is British. It's a match made in heaven! \n\nThanks to Ubisoft for sponsoring this video! \n\nIf you'd like to find out more about Assassin's Creed Syndicate, click here!: http://bit.ly/ACS_Preview || ESRB Rating Category: M","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-gavin-s-return-to-london-assassins-creed-syndicate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43ad2515-4f14-4159-8942-ff01749dc487/sm/1601067-1509477455457-gavassncrd.jpg","duration":582,"publication_date":"2015-10-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-41","changefreq":"weekly","video":[{"title":"2015:E41 - Volume 264","description":"In Fails of the Weak Volume 264, Jack actually watches the video before recording audio while Geoff goes in blind! Enjoy fails and glitches from Grand Theft Auto V, Halo The Master Chief Collection, Metal Gear Solid V Phantom Pain, and Sleeping Dogs Definitive Edition!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/706f97a9-1553-4543-aeaa-ded43cd042fe/sm/2013912-1444324847129-Fails264-Big.jpg","duration":168,"publication_date":"2015-10-08T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-176","changefreq":"weekly","video":[{"title":"2015:E287 - Minecraft Episode 176 - Blocking List","description":"Achievement City has been fixed so Gavin and Geoff rebuilt an old favorite and give it some new flair!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-176","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4247ca1-c0e9-40fa-9ffc-628f1311e647/sm/2013912-1444253274013-lp_mc_blockinglist_thumb.jpg","duration":2796,"publication_date":"2015-10-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-40","changefreq":"weekly","video":[{"title":"2015:E40 - Fact Check #7","description":"While Jack hosts, Geoff tries once again to sort the fact from the fiction in this weeks Five Facts: Fact Check!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3299d97-11d2-48f6-a390-7e372631c743/sm/2013912-1444244137414-DONE_FC7.jpg","duration":176,"publication_date":"2015-10-07T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-octodad-dadliest-catch-q-u-a-d-d-a-d-m-o-d-e","changefreq":"weekly","video":[{"title":"2015:E286 - Octodad: Dadliest Catch - QUAD-DAD MODE!","description":"Take an arm from Michael and Gavin, take a leg from Geoff and Jack, smash all those bits together and you've got \"The World's Greatest Totally Normal Dad\"","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-octodad-dadliest-catch-q-u-a-d-d-a-d-m-o-d-e","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c530790-24ce-4820-8cd7-aa3166304ca7/sm/2013912-1444238107908-lp_octodad_fourplay_thumb.jpg","duration":1374,"publication_date":"2015-10-07T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-until-dawn-highlight-reel","changefreq":"weekly","video":[{"title":"2015:E54 - Until Dawn - Highlights","description":"Enjoy the best moments from AH's Until Dawn Let's Plays.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-until-dawn-highlight-reel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19bd2e3b-842c-4e5b-902c-aea76cfa301d/sm/2013912-1444158270189-untildawn_highlights_thumb.jpg","duration":428,"publication_date":"2015-10-06T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-goat-m-m-o-simulator","changefreq":"weekly","video":[{"title":"2015:E285 - Goat MMO Simulator","description":"Jack, Ryan, Michael, and Gavin are back in Goat Simulator, but this time there are quests, NPCs, and much more fun to be had... possibly... or not...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-goat-m-m-o-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60b23543-0575-4bb2-acb3-0518748f1279/sm/2013912-1444150759551-LP_GoatMMOSimulator.jpg","duration":1559,"publication_date":"2015-10-06T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-rainbow-six-siege-beta","changefreq":"weekly","video":[{"title":"2015:E284 - Rainbow Six Siege Beta","description":"Thanks to Ubisoft for sponsoring this video! Rainbow Six Siege launches on December 1st and the ESRB rating (M).","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-rainbow-six-siege-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e93bb05-f5c0-4145-bb63-a2d731067f31/sm/2013912-1443737844969-LP_RainbowSixSiegeBeta.jpg","duration":2694,"publication_date":"2015-10-06T15:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-33","changefreq":"weekly","video":[{"title":"2015:E39 - Dead Crickets - AHWU for October 5th, 2015 (#285)","description":"Geoff is out of town and the kids are restless. Who will be the first to bleed Watch and find out!\n\nvid of week: https://www.youtube.com/watchv=VNpAz69oI1U\n\ncommunity vid: https://www.youtube.com/watchv=vbRXbtdige8","player_loc":"https://roosterteeth.com/embed/ahwu-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a1ca4e1-0323-43cd-ac48-93bf4c229bcd/sm/2013912-1444087766038-ahwu285_thumb.jpg","duration":597,"publication_date":"2015-10-05T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-destiny-elimination","changefreq":"weekly","video":[{"title":"2015:E283 - Destiny - Taken King Elimination","description":"Geoff, Gavin, and Adam go against Destiny's most talented players in the new elimination game type.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-destiny-elimination","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d001cf5b-df57-492c-bd7b-62a5bc8329a0/sm/2013912-1444085542170-lp_destiny_elim_thumb.jpg","duration":1405,"publication_date":"2015-10-05T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-s-h-a-d-y-i-n-t-e-n-t-i-o-n-s-presented-with-comment-8-week-of-september-16-th","changefreq":"weekly","video":[{"title":"2015:E53 - SHADY INTENTIONS - Presented with Comment #8 - Week of September 16th","description":"Competitors Geoff, Ryan, Jack, Gavin, and Michael are joined by host Jeremy to as he reveals all, disses coworkers, and pits friends against friends. \n\nThe videos included in today's episode are:\n\n(Link to the image they see): \n\nOctodad HUNT Geoff vs. Michael (Trickshot-gun Wedding) https://achievementhunter.com/episode/achievement-hunt-season-1-octodad-h-u-n-t-geoff-vs-michael-trickshot-gun-wedding\n\nAH-dventures in Germany https://achievementhunter.com/episode/achievement-hunter-season-2-a-h-dventures-in-germany\n\nJEREMYS SECRET! Presented with Comment #7 Week of September 16th https://achievementhunter.com/episode/achievement-hunter-season-2-j-e-r-e-m-y-s-s-e-c-r-e-t-presented-with-comment-7-week-of-september-16-th\n\nShenanigans! AHWU for September 28th, 2015 (#284) https://achievementhunter.com/episode/ahwu-season-1-284\n\nGrab Bag Until Dawn https://achievementhunter.com/episode/achievement-hunter-season-2-grab-bag-until-dawn\n\nThings to do in GTA V BMX Badass 2 https://achievementhunter.com/episode/things-to-do-in-season-1-things-to-do-in-g-t-a-v-b-m-x-badass-2\n\nLP Minecraft Episode 174 There is no Learning Curve https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-174-there-is-no-learning-curve\n\nLP Destiny: The Taken King (Part 5) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-5\n\nLP Destiny: The Taken King (Part 6) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-6\n\nLP GTA V Free Roaming https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-free-roaming\n\nLets Watch: Just Cause 3 Beta Part 1 https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-just-cause-3-beta-part-1\n\nLets Watch: Just Cause 3 Beta Part 2 https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-just-cause-3-beta-part-2\n\nLP Capsule Force https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-capsule-force\n\nLets Watch","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-s-h-a-d-y-i-n-t-e-n-t-i-o-n-s-presented-with-comment-8-week-of-september-16-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a57391-7550-4e57-8249-d3becf174112/sm/2013912-1444082865773-Presented_With_Comment_8_Week_of_October_1st.jpg","duration":1203,"publication_date":"2015-10-05T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-gears-of-war-ue","changefreq":"weekly","video":[{"title":"2015:E52 - Grab Bag - Gears of War UE","description":"Achievement Hunter lost audio on their first attempt at playing Gears of War UE, but only the last half of it. The first half however was pure gold and is ready to be watched here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-gears-of-war-ue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/522f5a7d-8a3c-4541-8bcf-47bc38448f64/sm/2013912-1443853594084-AH_Thumbnail_Template.jpg","duration":369,"publication_date":"2015-10-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-on-the-prowl","changefreq":"weekly","video":[{"title":"2015:E282 - GTA V - On the Prowl","description":"AH plays another few rounds of Hunting Pack to determine if Jack is faster escaping with a taco truck or running one down!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-on-the-prowl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96a5beff-2e1b-4209-911b-d0e89ce5ec1d/sm/2013912-1443818237943-LPGTAV_OnTheProwl_thumb.jpg","duration":1680,"publication_date":"2015-10-04T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-39","changefreq":"weekly","video":[{"title":"2015:E41 - World?s Hardest Game","description":"Were not going to lie, this video is frustrating to watch. Mainly because of the people playing it.","player_loc":"https://roosterteeth.com/embed/how-to-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1acd21a-25f5-4c7e-8fd9-1f61d6519a84/sm/2013912-1443726317505-HardestGameThumb.jpg","duration":1384,"publication_date":"2015-10-03T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-f-i-f-a-16-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E281 - FIFA 16 - The Rooster Teeth Podcast Crew","description":"Time for the most heated rivalry in all of (video game) sports, the epic footie duel between Gavin and Gus. A friendly toss of footie so epic we had to call in the biggest names in video-game-related-color-commentating we know, Geoff and Jordan. Balls will be kicked, dreams will be crushed, and penalties will be given on this non-stop heart-pounding episode of the Podcast Let's Play.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-f-i-f-a-16-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19ad0933-a04f-4004-850a-7ce738f32585/sm/2013912-1443810667203-FIFA_Podcast_LP_Thumb.png","duration":1840,"publication_date":"2015-10-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-8","changefreq":"weekly","video":[{"title":"2015:E8 - Fork Dick In a Box","description":"Gavin is making a new weapon of mass destruction, while Jeremy sees how compact he can get.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa72f0a9-eb49-4144-b7dd-ead71b08fbf6/sm/2013912-1443853051247-ForkDickInABox.jpg","duration":151,"publication_date":"2015-10-03T06:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-destiny-the-taken-king-getting-the-black-spindle","changefreq":"weekly","video":[{"title":"2015:E51 - Destiny The Taken King - Getting the Black Spindle","description":"Achievement Hunter goes on a quest to get one of Destiny's best guns, the Black Spindle. Will they learn to work together in time to get the gun Or will they crash and burn several times and spend like 5 hours of their lives trying to get a gun in a video game, ultimately realizing they could have been doing so much more with their time It's probably one of those.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-destiny-the-taken-king-getting-the-black-spindle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afa82b63-72fa-486e-a977-1b15bda78865/sm/2013912-1443808534291-Black_Spindle_Thumb.jpg","duration":1943,"publication_date":"2015-10-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-6","changefreq":"weekly","video":[{"title":"2015:E6 - Half Life 3 Easter Egg - Mad Max","description":"Geoff and Michael confirm the Half Life 3 Easter Egg in Mad Max.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cba28339-ea1d-4957-8f80-70c6c715d298/sm/2013912-1443721805812-Half_Life_3_Easter_Egg.jpg","duration":64,"publication_date":"2015-10-01T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-17","changefreq":"weekly","video":[{"title":"2015:E280 - Let's Watch: Just Cause 3 Beta - Part 5","description":"Michael takes his turn playing Just Cause 3 in a desperate attempt to master the glide suit.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86550a7f-ed01-47e5-99e6-abd2cb933f0d/sm/2013912-1443721590346-LW_JustCause3Beta_Part5.jpg","duration":1319,"publication_date":"2015-10-01T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-40","changefreq":"weekly","video":[{"title":"2015:E40 - Volume 263","description":"Geoff and Jack witness some serious injuries in Assassins Creed IV Black Flag, Batman Arkham Knight, Grand Theft Auto V, Madden NFL 16, and Titanfall in Fails of the Weak Volume 263.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99ff281d-5e47-42ec-bd75-32a7c742bc23/sm/2013912-1443645669446-Fails263-Big.jpg","duration":170,"publication_date":"2015-10-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-let-s-play-minecraft-episode-175-there-is-no-learning-curve-part-2","changefreq":"weekly","video":[{"title":"2015:E279 - Minecraft Episode 175 - There is no Learning Curve [Part 2]","description":"Michael, Geoff, and Ryan continue to violently smash their brains together to solve some mind melting puzzles! They'll need some aspirin after this for sure...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-let-s-play-minecraft-episode-175-there-is-no-learning-curve-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac648cce-dc22-4f4b-a0a9-2f26feb954e3/sm/2013912-1443651313964-LPMC_TINLC2_Thumb.jpg","duration":2190,"publication_date":"2015-10-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-16","changefreq":"weekly","video":[{"title":"2015:E278 - Let's Watch: Just Cause 3 Beta - Part 4","description":"Geoff runs some human experimentation with the grapple hook on the poor citizens of Just Cause 3. Good luck everybody else!!!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba90b59a-6c90-43e1-95e9-bdc9efedddb9/sm/2013912-1443642684426-LW_JustCause3Beta_Part4.jpg","duration":577,"publication_date":"2015-09-30T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-39","changefreq":"weekly","video":[{"title":"2015:E39 - Franco The Editor","description":"Franco the Five Facts Editor embarks on a journey to learn about himself. Unfortunately, that journey leads him into the YouTube comments section, a land from which no one has ever return from unchanged/\\","player_loc":"https://roosterteeth.com/embed/five-facts-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b802bde1-c9c7-43dc-94e7-ba65b26f8f6c/sm/2013912-1443639107349-FFF_TN_NewOutline.jpg","duration":197,"publication_date":"2015-09-30T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-halo-3-o-d-s-t-part-1","changefreq":"weekly","video":[{"title":"2015:E277 - Halo 3: ODST - Part 1","description":"Geoff, Ryan, Jeremy, and Michael begin their legendary run of Halo 3 ODST. How will their journey through it begin","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-halo-3-o-d-s-t-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d514e13d-23e8-4853-9b32-5bf5050086b5/sm/2013912-1443579052730-LP_Halo3ODST_Part1.jpg","duration":1172,"publication_date":"2015-09-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-61","changefreq":"weekly","video":[{"title":"2015:E61 - GTA V - BMX Badass 2","description":"Geoff challenges Jack, Ryan, Gavin, and Michael to do what they couldn't one year ago. Can they finally cross the ocean on a bike","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bc879c6-869d-4b6f-bf40-6baafe8eb6e4/sm/2013912-1443584349386-TTD_BMXBadasses2.jpg","duration":1079,"publication_date":"2015-09-30T03:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-worms-battlegrounds-with-funhaus","changefreq":"weekly","video":[{"title":"2015:E276 - Worms Battlegrounds with Funhaus","description":"Achievement Hunter puts their top two Wormsers, Michael and Gavin, against Funhaus' own James and Spoole. Who will inch their way to victory Cue suspense!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-worms-battlegrounds-with-funhaus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35337d42-707b-43c1-ada1-0417d6ffbc7b/sm/2013912-1443578824189-Worms_Thumb.jpg","duration":1896,"publication_date":"2015-09-30T02:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-until-dawn","changefreq":"weekly","video":[{"title":"2015:E50 - Grab Bag - Until Dawn","description":"Since AH lost their face-cam for this part, they recorded it again the next day. The original recording went up to complete the series, but now you get to see their second attempt. Here's to second chances and second lives.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-until-dawn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2f1a6a3-7211-4ec5-8a23-981500c47dc9/sm/1461653-1443566009107-grabbag_untildawn_thumb.jpg","duration":581,"publication_date":"2015-09-29T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-assassin-s-creed-syndicate","changefreq":"weekly","video":[{"title":"2015:E275 - Assassin's Creed Syndicate","description":"Geoff and Gavin went to San Francisco and got to check out Assassin's Creed Syndicate!\n\nThanks to Ubisoft for sponsoring this video!\n\nIf you'd like to find out more about Assassin's Creecd Syndicate, click here!: www.assassinscreed.com \n\nESRB Rating Category: M","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-assassin-s-creed-syndicate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eeecd329-0f97-454c-bfbe-d6d667cb7a04/sm/1461653-1443553749856-assassins_thumb.jpg","duration":1207,"publication_date":"2015-09-29T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-15","changefreq":"weekly","video":[{"title":"2015:E274 - Let's Watch: Just Cause 3 Beta - Part 3","description":"Jack and Geoff are back in Just Cause 3 to find out what other destruction they can cause in this normally peaceful world.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5af7a231-eb46-49b1-9ce5-a96417799a0c/sm/1461653-1443547531497-LW_JustCause3Beta_Part3.jpg","duration":771,"publication_date":"2015-09-29T17:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-32","changefreq":"weekly","video":[{"title":"2015:E38 - Shenanigans! - AHWU for September 28th, 2015 (#284)","description":"The boys are here with a slew of new game releases and shenanigans made especially for you and your friends. Enjoy a slice of Geoffs new game releases, Jacks delicious news, and Michael and Gavins soup of the day. Theyll keep you refreshed for minutes.\n\nVid of week: https://www.youtube.com/watchv=YYP8vWcx4W8\n\nCommunity vid: https://www.youtube.com/watchv=QstheXx-knU","player_loc":"https://roosterteeth.com/embed/ahwu-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8018b567-1c62-4713-9c77-a9aa88ced4ea/sm/2013912-1443479119923-AHWU285_thumb.jpg","duration":499,"publication_date":"2015-09-28T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-capsule-force","changefreq":"weekly","video":[{"title":"2015:E273 - Capsule Force","description":"Geoff & Ryan take on Team Nice Dynamite in the ultimate game where the prize is THE UNIVERSE! ...but not our universe, someone else's.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-capsule-force","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ba923ec-f6cf-43bc-9f43-e968ec88ced6/sm/2013912-1443476345716-lp_capsuleforce_thumb.jpg","duration":1005,"publication_date":"2015-09-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-14","changefreq":"weekly","video":[{"title":"2015:E272 - Let's Watch: Just Cause 3 Beta - Part 2","description":"Jack is in the driver's seat now! They discover they can use the grappling hook for some very fun activity... like launching people, cars, and much much worse!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eafb377c-6c52-4ac2-9870-f66056e84917/sm/2013912-1443467561038-LW_JustCause3Beta_Part2.jpg","duration":822,"publication_date":"2015-09-28T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-13","changefreq":"weekly","video":[{"title":"2015:E271 - Let's Watch: Just Cause 3 Beta - Part 1","description":"Ryan and Gavin take the wheel in the first episode of the AH crew playing the Beta of Just Cause 3!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e700222-69ed-47bb-ac0b-d993de361724/sm/2013912-1443411975344-LW_JustCause3Beta_Part1.jpg","duration":1460,"publication_date":"2015-09-28T03:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-free-roaming","changefreq":"weekly","video":[{"title":"2015:E270 - GTA V - Free Roaming","description":"AH has a leisurely podcast style Let's Play while trying to hit some of the new free roam events and check out Michael's new toy!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-free-roaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebfecc1e-324e-4d91-9afa-b26afae87290/sm/2013912-1443402499140-Thumbnail_1.jpg","duration":2477,"publication_date":"2015-09-28T01:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-5","changefreq":"weekly","video":[{"title":"2015:E5 - PT Easter Egg - Metal Gear Solid V: The Phantom Pain","description":"#2Spooky","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9cd49d8-7455-40bc-861c-935a2a83e8c3/sm/2013912-1443249428145-MGSV_ThePhantomPain_PTEasterEgg.jpg","duration":75,"publication_date":"2015-09-27T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-41","changefreq":"weekly","video":[{"title":"2015:E40 - Trine 3","description":"We recorded a fantastic video in Trine 3, but that video accidentally got deleted. So heres this.","player_loc":"https://roosterteeth.com/embed/how-to-2015-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ceae57cd-2057-41d1-8796-21466afa32a8/sm/2013912-1442604131304-TrineThumbLogo.jpg","duration":2261,"publication_date":"2015-09-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-6","changefreq":"weekly","video":[{"title":"2015:E269 - Destiny: The Taken King (Part 6)","description":"Geoff, Gavin, and Ryan are the last hope of the Light Yo, guys, I'm really happy for you, and I'ma let you finish, but my man Oryx has taken entire worlds! You aren't worthy to face him!\n\nSee you again when it's time for the Kings Fall Raid!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d35ff951-108d-4983-92d9-a208cfeaecfe/sm/2013912-1443202391004-lpdestiny6thumbFinale.jpg","duration":2115,"publication_date":"2015-09-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-5","changefreq":"weekly","video":[{"title":"2015:E268 - Destiny: The Taken King (Part 5)","description":"Geoff, Ryan, and Gavin attempt to steal a part of Crota's soul. What could possibly go wrong!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/432c3dc3-f80f-4dd5-8a09-e49310751b07/sm/2013912-1443199724331-lp_destiny5_thumb.jpg","duration":1711,"publication_date":"2015-09-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-j-e-r-e-m-y-s-s-e-c-r-e-t-presented-with-comment-7-week-of-september-16-th","changefreq":"weekly","video":[{"title":"2015:E49 - JEREMY'S SECRET! - Presented with Comment #7 - Week of September 16th","description":"Competitors Geoff, Lindsay, Jack, Gavin, and Michael are joined by host Jeremy to as he reveals all, disses coworkers, and pits friends against friends. \n\nThe videos included in today's episode are:\n\n(Link to the image they see): \n\nVS Episode 128: Jeremy vs. Gavin https://achievementhunter.com/episode/vs-season-1-v-s-episode-128-jeremy-vs-gavin\n\nThe BBQ Challenge https://achievementhunter.com/episode/behind-the-scenes-behind-the-scenes-the-b-b-q-challenge\n\nSnake Suppression! - Go #95 https://achievementhunter.com/episode/go-season-1-snake-suppression-go-95\n\nGTA V, Mad Max, and Metal Gear Solid V! - Fails of the Weak #261 https://achievementhunter.com/episode/fails-of-the-weak-season-1-volume-261\n\nJEREMY IS DEAD! - Presented with Comment #6 - Week of September 14th https://achievementhunter.com/episode/achievement-hunter-season-2-j-e-r-e-m-y-i-s-d-e-a-d-presented-with-comment-6-week-of-september-14-th\n\nHow To: Amnesia https://achievementhunter.com/episode/how-to-season-1-how-to-amnesia\n\nFire and Anus - AHWU for September 21st, 2015 (#283) https://achievementhunter.com/episode/ahwu-season-1-a-h-w-u-for-september-21-st-2015-283\n\nVS Episode 129: Jeremy vs. Matt https://achievementhunter.com/episode/vs-season-1-v-s-episode-129-jeremy-vs-matt\n\nLP - Clash https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-clash\n\nLet's Watch - Party Hard Part 2 https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-party-hard-part-2\n\nLP Minecraft Episode 173 - Thief Town https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-173-thief-town\n\nLP: Hot Seat - Halo: MCC Featuring Ben King https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-hot-seat-halo-m-c-c-featuring-ben-king\n\nLet's Play - GTA V - Hunting Pack https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-hunting-pack\n\nLP - Destiny: The Taken King (Part 2) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-j-e-r-e-m-y-s-s-e-c-r-e-t-presented-with-comment-7-week-of-september-16-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60fc7553-6f37-491f-8a96-b35f54209c45/sm/2013912-1443126918408-Presented_With_Comment_7_Week_of_September_16th.jpg","duration":1167,"publication_date":"2015-09-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-a-h-dventures-in-germany","changefreq":"weekly","video":[{"title":"2015:E48 - AH-dventures in Germany","description":"Germany!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-a-h-dventures-in-germany","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b9ae11a-b59d-4d21-beb2-a27b4a70a8a1/sm/2013912-1443131280983-AH-deventuresinGermany.jpg","duration":306,"publication_date":"2015-09-24T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-29","changefreq":"weekly","video":[{"title":"2015:E33 - Octodad HUNT - Geoff vs. Michael (Trickshot-gun Wedding)","description":"Geoff and Michael face off in the Xbox version of Octodad: Dadliest Catch to see who can be the best tosser (of rings onto their fiances finger) and grab the Trickshot-gun Wedding achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8da3ab47-50ce-4c94-b856-209be5d78ee5/sm/2013912-1443126792614-HUNT95.jpg","duration":513,"publication_date":"2015-09-24T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-39","changefreq":"weekly","video":[{"title":"2015:E39 - Volume 262","description":"Geoff and Jack speculate who the mysterious submitters are in Fails of the Weak Volume 262. Features clips from Far Cry 2, Grand Theft Auto V, Mad Max, and Metal Gear Solid V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d04f8d6-f711-4be4-bb34-94aa09a30874/sm/2013912-1443109557325-Fails262-Big.jpg","duration":159,"publication_date":"2015-09-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-174-there-is-no-learning-curve","changefreq":"weekly","video":[{"title":"2015:E267 - Minecraft Episode 174 - There is no Learning Curve","description":"Ryan gathers together his \"Brain Trust\" (aka Geoff and Michael) to help him solve a series of puzzles only three true geniuses could conquer. So we'll probably be here a while, might want to get some popcorn and a soda for this one.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-174-there-is-no-learning-curve","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b894c896-e945-45c6-90f4-453b65528852/sm/2013912-1443031147295-lpmc_TINLC_thumb.jpg","duration":2755,"publication_date":"2015-09-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-madden-2016","changefreq":"weekly","video":[{"title":"2015:E266 - Madden 2016","description":"Achievement Hunter plays their yearly sports. Home run, or something I guess.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-madden-2016","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbd0d571-f27e-4d47-8c9e-59a062cdf663/sm/2013912-1443068205258-Madden_Thumb.jpg","duration":3928,"publication_date":"2015-09-24T04:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-60","changefreq":"weekly","video":[{"title":"2015:E60 - Gears of War UE - The Smoking Saw","description":"Matt and Michael show off the best way to mentally destroy people in Gears of War UE.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05beed49-d917-4cac-bd7a-faa553733e49/sm/2013912-1443036354146-TTD_Thumb.jpg","duration":201,"publication_date":"2015-09-23T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-4","changefreq":"weekly","video":[{"title":"2015:E265 - Destiny: The Taken King (Part 4)","description":"So Ryan, Geoff, and Gavin think they can beat a story mission on \"Hard\". Care to bet on how long it takes for their collective strength to be smashed into a fine paste","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a8f4487-b811-4e14-8315-14aaae3a8289/sm/2013912-1443029111976-DestinyPart4_thumb.jpg","duration":2155,"publication_date":"2015-09-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-gears-of-war-u-e-multiplayer-part-2","changefreq":"weekly","video":[{"title":"2015:E264 - Gears of War UE Multiplayer Part 2","description":"Achievement Hunter is back to carving each other up in Gears of War UE. Which team will make the other feel bad about ever picking up a controller Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-gears-of-war-u-e-multiplayer-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d250a6d1-0471-4618-b010-6c9f96596f1e/sm/2013912-1443020347897-Gears_Thumb.jpg","duration":2286,"publication_date":"2015-09-23T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-3","changefreq":"weekly","video":[{"title":"2015:E263 - Destiny: The Taken King (Part 3)","description":"Geoff, Gavin, and Ryan take off to Saturn with the new sub-classes for the Titan, Hunter, and Warlock equipped!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e70f62e4-d25b-47ec-a9fe-d735dd9c5349/sm/2013912-1442941536583-DestinyPart3_thumb.jpg","duration":2022,"publication_date":"2015-09-22T17:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-38","changefreq":"weekly","video":[{"title":"2015:E38 - Fable II","description":"In the most EXCITING episode of Five Facts EVER, Geoff and Jack talk about Fable II...Like seriously, DO NOT I repeat DO NOT be put off by how excited Geoff is to talk about Fable II. Hes definitely not watching Ryan play Destiny or anything. Nooooooope. Hes all about it. All. About. It. Also, I dont like Jack anymore.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87bff270-033f-459d-a098-1913eca28357/sm/2013912-1442875274915-FF_F2_TN.jpg","duration":214,"publication_date":"2015-09-21T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-31","changefreq":"weekly","video":[{"title":"2015:E37 - Fire and Anus - AHWU for September 21st, 2015 (#283)","description":"Jack is back from London and he's picking up the pieces of the office that were left in ruins. Broken discs and dreams are scattered about everywhere. Also, Gavin lights things on fire and Michael's anus.\n\nVid of week: https://www.youtube.com/watchv=yVRMbHMNcQo\n\nCommunity vid of week: https://www.youtube.com/watchv=j9A6knyD9zU","player_loc":"https://roosterteeth.com/embed/ahwu-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2453c0e5-1222-4706-8848-f567da9c0378/sm/2013912-1442872345078-AHWU_283.jpg","duration":344,"publication_date":"2015-09-21T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-2","changefreq":"weekly","video":[{"title":"2015:E262 - Destiny: The Taken King (Part 2)","description":"Geoff, Gavin, and Ryan continue in their daily trip in Destiny: The Taken King!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6fe7fae-9a83-4c0c-b6e1-83f1e2fd011b/sm/2013912-1442858683984-LPDestiny2_Thumb.jpg","duration":930,"publication_date":"2015-09-21T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-hot-seat-halo-m-c-c-featuring-ben-king","changefreq":"weekly","video":[{"title":"2015:E261 - Hot Seat - Halo: MCC Featuring Ben King","description":"Geoff, Ryan, Jack, and Michael are joined by Rooster Teeth's Ben King. Amidst the firefight and horrible death... listen to his wonderfully colorful tales.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-hot-seat-halo-m-c-c-featuring-ben-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15b836bd-72f3-43f6-bffd-0c5e1cc61ea2/sm/2013912-1442856126271-LP_HotSeat_HaloMasterChiefCollectionFeaturingBenKing.jpg","duration":1876,"publication_date":"2015-09-21T17:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king","changefreq":"weekly","video":[{"title":"2015:E260 - Destiny: The Taken King","description":"Join Ryan, Gavin, and Geoff as they embark on a new journey in Destiny. Complete with an ACTUAL STORYLINE! AND CHARACTERS! AND PLOT!\n\nAlso, Geoff's capture crashed and he has no footage, sorry about that. He fixed it for next time though.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-destiny-the-taken-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/668ad2e1-6c33-407f-b889-ff9c6ec7a926/sm/2013912-1442614004675-LP_DestinyTakenKing1_thumb.jpg","duration":1180,"publication_date":"2015-09-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-hunting-pack","changefreq":"weekly","video":[{"title":"2015:E259 - GTA V - Hunting Pack","description":"AH and Funhaus see who owns the road in the new Hunting Pack game mode!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-hunting-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/599ae709-45aa-4bdf-9ebd-7d769a2b7047/sm/2013912-1442766171293-Thumbnail.jpg","duration":2259,"publication_date":"2015-09-20T16:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-37","changefreq":"weekly","video":[{"title":"2015:E37 - Episode 129: Jeremy vs. Matt","description":"More like BB-Hate.","player_loc":"https://roosterteeth.com/embed/vs-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7092f323-418c-49e7-90e1-adb379d61965/sm/2013912-1442607342789-VS_MattVSJeremy_BB8Race.png","duration":401,"publication_date":"2015-09-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-live-action-crew-let-s-play-duck-game","changefreq":"weekly","video":[{"title":"2015:E258 - Live Action Crew Let's Play: Duck Game!","description":"Blaine, Chris, Aaron, and Brandon stumble their way through an intense Duck Game tournament!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-live-action-crew-let-s-play-duck-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a002e2b-64c8-4590-92f1-ee7a6cb1c9ef/sm/2013912-1442729446657-Screen_Shot_2015-09-20_at_1.08.41_AM.png","duration":1623,"publication_date":"2015-09-20T05:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-40","changefreq":"weekly","video":[{"title":"2015:E39 - Amnesia","description":"I was supposed to write something here but Ive forgotten what it was.","player_loc":"https://roosterteeth.com/embed/how-to-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d25a5c7-c453-4ebf-9178-18f59fce2037/sm/2013912-1442607047098-AmnesiaThumbLogo.jpg","duration":3612,"publication_date":"2015-09-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-j-e-r-e-m-y-i-s-d-e-a-d-presented-with-comment-6-week-of-september-14-th","changefreq":"weekly","video":[{"title":"2015:E47 - JEREMY IS DEAD! - Presented with Comment #6 - Week of September 14th","description":"Geoff reclaims his hosting title after accidentally stepping on Jeremy, mistaking him for an ant. In this very special episode Gavin and Ryan from Achievement Hunter take on Bruce, Lawrence, and Joel from Funhaus! Who will win!\n\nThe videos included in today's episode are:\n\n(Link to the image they see): \n\n5 Years of Fails - Fails of the Weak Volume 260 https://achievementhunter.com/episode/fails-of-the-weak-season-1-5-years-of-fails-fails-of-the-weak-volume-260\n\nTop 10 Xbox One Games https://achievementhunter.com/episode/countdown-season-1-top-10-xbox-one-games\n\nImportant Information About Things That Are Important, Michael Pees. https://www.youtube.com/watchv=EURfVvr7UdM\n\nHow To: Mad Max https://achievementhunter.com/episode/how-to-season-1-how-to-mad-max\n\nPresented With Comment 5 https://achievementhunter.com/episode/achievement-hunter-season-2-s-u-d-d-e-n-d-e-a-t-h-presented-with-comment-5-week-of-september-5-th\n\nLet's Watch - Until Dawn (Part 5) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-until-dawn-part-5\n\nLet's Play Minecraft Episode 172 - Colosseum Clash https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-172-colosseum-clash\n\nQUEST FOR CHESTS - Dungeon Hunter 5 Gameplay https://fun.haus/episode/funhaus-gameplay-season-1-q-u-e-s-t-f-o-r-c-h-e-s-t-s-dungeon-hunter-5-gameplay\n\nLet's Watch - Until Dawn (Part 6) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-until-dawn-part-6\n\nLet's Play - Lovers in a Dangerous Spacetime - The Rooster Teeth Podcast Crew https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-lovers-in-a-dangerous-spacetime-the-rooster-teeth-podcast-crew\n\nLet's Watch - Until Dawn (Part 7) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-until-dawn-part-8\n\nLet's Play GTA V - Titan VS Dump https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-titan-v-s-dump\n\nGIVE US MONEY (or not) - Funhaus Shorts https://fun.haus/episode/funhaus-shorts-seas","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-j-e-r-e-m-y-i-s-d-e-a-d-presented-with-comment-6-week-of-september-14-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05a811c0-ff8f-4b53-aad6-94925a24473f/sm/2013912-1442595625497-PresntedWithComment6_Thumb.jpg","duration":868,"publication_date":"2015-09-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-blitz-brigade","changefreq":"weekly","video":[{"title":"2015:E257 - Blitz Brigade","description":"Michael witnesses the powerhouse known as Geoff showcase his skills as an FPS master! This video is sponsored by Gameloft.\n\niOS: http://gmlft.co/AqDzx || Android: http://gmlft.co/o-XKU","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-blitz-brigade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43571d43-bcdc-40fb-953a-57264715a829/sm/2013912-1442503663616-LPMC_BlitzBrigade_thumb.jpg","duration":1515,"publication_date":"2015-09-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-38","changefreq":"weekly","video":[{"title":"2015:E38 - Volume 261","description":"In Fails of the Weak Volume 261, Geoff and Ryan talk you through a variety of painful fails and glitches from Grand Theft Auto V, Mad Max, and Metal Gear Solid V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6362b064-26b0-40c6-8adf-a116d2bc705f/sm/2013912-1442516169475-Fails261-Big.jpg","duration":159,"publication_date":"2015-09-17T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-siegefall","changefreq":"weekly","video":[{"title":"2015:E256 - Siegefall","description":"All shall tremble before the might of CASTLEPUNCHER! Faller of all things that must be sieged! This video is sponsored by Gameloft. \n\niOS: http://gmlft.co/g-no2 Android: http://gmlft.co/385JP","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-siegefall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d89ea484-bf3d-4a73-b15c-a36be259c472/sm/2013912-1442440141846-LPSiegefall_Thumb.jpg","duration":1125,"publication_date":"2015-09-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-173-thief-town","changefreq":"weekly","video":[{"title":"2015:E255 - Minecraft Episode 173 - Thief Town","description":"Watch as Zombie Geoff, Zombie Jack, Zombie Ryan, Zombie Michael, and Gavin try to outwit, outplay, and outlast one another in the undead showdown known as Thief Town! \n\n9 Months ago Jeremy and Kdin re-made the game Thief Town in Minecraft and then promptly forgot it existed. Turns out it's a pretty fun gametype!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-173-thief-town","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fb56db7-21b7-4fdc-b78a-22d41ce2b2bd/sm/2013912-1442441633959-LPMC_ThieftownThumb.jpg","duration":2760,"publication_date":"2015-09-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-31","changefreq":"weekly","video":[{"title":"2015:E33 - Snake Suppression! - Go #95","description":"What's Geoff's biggest fear No one killing a snake. Watch GO. Please and Thank you.","player_loc":"https://roosterteeth.com/embed/go-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5afd223f-c6ca-4d9c-922d-64d135b1244f/sm/2013912-1442444219280-go95thumb.jpg","duration":1184,"publication_date":"2015-09-16T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-7","changefreq":"weekly","video":[{"title":"2015:E7 - The BBQ Challenge","description":"Oh, Michael. Will you ever learn","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6582bef6-4034-499f-8e37-f524110510f1/sm/2013912-1442442580123-sadmichael_thumb.jpg","duration":316,"publication_date":"2015-09-16T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-12","changefreq":"weekly","video":[{"title":"2015:E254 - Let's Watch - Party Hard Part 2","description":"Achievement Hunter is back and giving Gavin and Ryan a turn to see just who can party the hardest.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/382837e3-49e8-4339-95b4-ee764b9a3265/sm/2013912-1442437724766-Party_Hard_2_-_THUMB.jpg","duration":1580,"publication_date":"2015-09-16T21:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-36","changefreq":"weekly","video":[{"title":"2015:E36 - Episode 128: Jeremy vs. Gavin","description":"Who sees better in the dark, Gavin or Jeremy","player_loc":"https://roosterteeth.com/embed/vs-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd98cacb-89fb-499a-91ed-229a1df4f67f/sm/2013912-1442415477359-VS_GavinVSJeremy_PerfectDark.png","duration":741,"publication_date":"2015-09-16T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-paging-dr-jones-and-dr-free","changefreq":"weekly","video":[{"title":"2015:E46 - Paging Dr. Jones and Dr. Free","description":"Playing video games on a moving gurney What could go wrong Anything and everything. Lets Play Live: The Documentary is available now on RoosterTeeth.com exclusively for Rooster Teeth Sponsors. Sign up for a FREE 30-day trial at http://bit.ly/Become_A_Sponsor","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-paging-dr-jones-and-dr-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da281a29-397a-4fc2-bb74-aab98bb11c00/sm/2013912-1442353957260-LPL_SurgTease4.jpg","duration":143,"publication_date":"2015-09-16T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-capture-the-fat-jack-in-minecraft","changefreq":"weekly","video":[{"title":"2015:E45 - Capture the Fat Jack in Minecraft","description":"Matt takes us on a tour of his Capture the Tower map from Lets Play Live. Wanna see more Lets Play Live: The Documentary is available now on RoosterTeeth.com exclusively for Rooster Teeth Sponsors. Sign up for a FREE 30-day trial at http://bit.ly/Become_A_Sponsor","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-capture-the-fat-jack-in-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53a16bf-3b99-4365-8f8e-339bfd9ac212/sm/2013912-1442333011219-Thumbnail_FatJack1.jpg","duration":204,"publication_date":"2015-09-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-clash","changefreq":"weekly","video":[{"title":"2015:E253 - Clash","description":"Geoff, Ryan, Michael, and Jeremy smash swords against swords and then fly violently across the map in this Xbox One Arcade title. It's time to clash!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-clash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f13c6bc6-2d72-4e03-8a8f-01116867723c/sm/2013912-1442256444330-LP_Clash.jpg","duration":2213,"publication_date":"2015-09-15T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-30","changefreq":"weekly","video":[{"title":"2015:E36 - Jack's Across the Pond - AHWU for September 14th, 2015 (#281-2)","description":"Jack's across the pond, so, you know.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b078802-85a7-4e2f-9789-6314aed78865/sm/2013912-1442291967800-AHWU_THUMB.jpg","duration":727,"publication_date":"2015-09-15T04:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-37","changefreq":"weekly","video":[{"title":"2015:E37 - Metal Gear Solid V The Phantom Pain","description":"Jack and Geoff return for this weeks Five Facts on Metal Gear Solid V: The Phantom Pain!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be9b44f7-5b90-4d73-8821-477bc26fb594/sm/2013912-1442255465044-FF_PP_TN.jpg","duration":204,"publication_date":"2015-09-14T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-gang-beasts","changefreq":"weekly","video":[{"title":"2015:E252 - Gang Beasts","description":"Geoff, Jack, Ryan, and Michael grab, pick up, bodyslam, and totally eliminate each other. Who is bad enough to be a real gang beast!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-gang-beasts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0676cc6a-7a66-44b9-b88e-63464783283e/sm/2013912-1442249692322-LP_GangBeasts.jpg","duration":2213,"publication_date":"2015-09-14T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-titan-v-s-dump","changefreq":"weekly","video":[{"title":"2015:E251 - GTA V - Titan VS Dump","description":"AH battles it out as slowly as possible in hardcore Titan VS Dump action!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-titan-v-s-dump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4411fc56-01e8-4620-b52e-f21ca818f624/sm/2013912-1442165149172-Thumbnail_1.jpg","duration":2018,"publication_date":"2015-09-13T17:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-s-u-d-d-e-n-d-e-a-t-h-presented-with-comment-5-week-of-september-5-th","changefreq":"weekly","video":[{"title":"2015:E44 - SUDDEN DEATH! - Presented with Comment #5 - Week of September 5th","description":"Competitors Geoff, Ryan, Jack, Gavin, and Michael are joined by host Jeremy to fight for the 5th win in Presented With Comment. Who knows the audience best \n\nThe videos included in today's episode are:\n\n(Link to the image they see): \n\nTop 5 Big Boss Falls In MGSV https://achievementhunter.com/episode/countdown-season-1-top-5-big-boss-falls-in-mgsv\n\nHow To: Alien Isolation at RTX https://achievementhunter.com/episode/how-to-season-1-how-to-alien-isolation-at-r-t-x\n\nHow To: Dungeon Hunter V https://achievementhunter.com/episode/how-to-season-1-how-to-dungeon-hunter-v\n\nRyan the Slide Guy: Lindsay's Remix https://achievementhunter.com/episode/achievement-hunter-season-2-ryan-the-slide-guy-lindsay-s-remix\n\nVS Episode 127: Jeremy VS Ryan https://achievementhunter.com/episode/vs-season-1-v-s-episode-127-jeremy-vs-ryan\n\nLabor Day Special! - AHWU for September 7th, 2015 (#280) https://achievementhunter.com/episode/ahwu-season-1-a-h-w-u-for-september-7-th-2015-280\n\nJUMP and then JUMP! - GO! #94 https://achievementhunter.com/episode/go-season-1-...\n\nLet's Play - Capsule Force - The Rooster Teeth Podcast Crew https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-play-capsule-force-the-rooster-teeth-podcast-crew\n\nLet's Watch - Until Dawn https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-until-dawn\n\nLet's Watch - Until Dawn (Part 2) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-until-dawn-part-2\n\nLet's Watch - Until Dawn (Part 3) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-until-dawn-part-3\n\nLet's Watch - Until Dawn (Part 4) https://achievementhunter.com/episode/lets-play-let-s-play-2-let-s-watch-until-dawn-part-4","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-s-u-d-d-e-n-d-e-a-t-h-presented-with-comment-5-week-of-september-5-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe15e8dd-2327-4537-9236-48d07623ac32/sm/1461653-1442087021396-Presented_With_Comment_5_Week_of_September_5th.jpg","duration":981,"publication_date":"2015-09-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-11","changefreq":"weekly","video":[{"title":"2015:E250 - Let's Watch - Until Dawn (Part 7)","description":"Achievement Hunter continues it's nightmare filled adventure into Until Dawn. Can Geoff lead them to sunrise","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a04379b-5f89-4c4c-900a-c316595a1f5f/sm/2013912-1442034447361-LP_UntilDawn_Part7_THE_FINALE.jpg","duration":4064,"publication_date":"2015-09-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-42","changefreq":"weekly","video":[{"title":"2015:E38 - Mad Max","description":"Joel and Adam play Mad Max and discover that maybe Max is just misunderstood.","player_loc":"https://roosterteeth.com/embed/how-to-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1fdce95-f06f-4da9-95d4-3a105c644183/sm/2013912-1442009048262-MadMaxThumbLogo.jpg","duration":1857,"publication_date":"2015-09-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-lovers-in-a-dangerous-spacetime-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E249 - Lovers in a Dangerous Spacetime - The Rooster Teeth Podcast Crew","description":"In the most intimate Podcast Let's Play yet, Gus and Burnie try to make time for loving as they fight monsters in space.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-lovers-in-a-dangerous-spacetime-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3da5d57-bff2-48e4-9dcf-8cdf14a6b531/sm/2013912-1441994441589-Lovers_Dang_Spacetime_Thumbnail.png","duration":2484,"publication_date":"2015-09-12T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-behind-the-scenes-barenaked-ladies-odds-are","changefreq":"weekly","video":[{"title":"S5:E15 - Behind the Scenes: Barenaked Ladies - \"Odds Are\"","description":"Watch the Behind the Scenes video for the making of Barenaked Ladies - \"Odds Are.\"\r\n\r\n\r\nOrder \"Grinning Streak\" on iTunes- \r\nor iTunes-(CA) \r\n \r\nWe're on Tour in the US | UK | Canada\r\nWebsite- http://www.barenakedladies.com \r\nFacebook- https://www.facebook.com/barenakedladies \r\n \r\nTwitter- https://twitter.com/barenakedladies \r\n \r\nFor more videos visit http://roosterteeth.com \r\nFollow us at http://twitter.com/roosterteeth \r\nLike us at http://facebook.com/roosterteeth","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-behind-the-scenes-barenaked-ladies-odds-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/268f1f88-a010-4e44-ac1a-c2cf6c452a92/sm/ep8269.jpg","duration":222,"publication_date":"2013-10-31T17:37:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-17","changefreq":"weekly","video":[{"title":"2013:E17 - Poopy Horse Blankets","description":"In RTAA #119, Burnie talks about how horses are dumb enough to starve themselves, Gavin drinks coffee, and Geoff has a messy accident of his own.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22e060dc-8904-47a9-86c6-619f854fcc23/sm/ep8260.jpg","duration":69,"publication_date":"2013-10-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-242","changefreq":"weekly","video":[{"title":"2013:E242 - RT Podcast #242","description":"RT Discusses GTA V Strippers","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-242","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5664,"publication_date":"2013-10-29T21:58:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-17","changefreq":"weekly","video":[{"title":"S11:E17 - Episode 17: Ready... Aim...","description":"S11:E17 - Episode 17: Ready... Aim...","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e638b56-c441-478e-b2f1-28b7c1a87f61/sm/ep8250.jpg","duration":478,"publication_date":"2013-10-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-4","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 4: The Sonic Relay","description":"Team Internet, Team Achievement Hunter and Team Rooster Teeth face off in an elimination tag relay through 20 years of Sonic the Hedgehog Games.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28bac8d8-b5c6-4cbc-8bf1-ab8a80d9bb76/sm/ep8248.jpg","duration":956,"publication_date":"2013-10-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-13","changefreq":"weekly","video":[{"title":"2013:E13 - Playing the Odds","description":"Chris, Jordan and Brandon makes some risky choices and the studio crew does some cleaning.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc84d249-66e9-457e-ae81-42f4d20bb91a/sm/ep8247.jpg","duration":123,"publication_date":"2013-10-26T21:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-3","changefreq":"weekly","video":[{"title":"S5:E5 - Pokemon vs. Gus & Burnie","description":"S5:E5 - Pokemon vs. Gus & Burnie","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58a43f67-65aa-4013-a210-2991f67982af/sm/ep8239.jpg","duration":313,"publication_date":"2013-10-24T21:05:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-10","changefreq":"weekly","video":[{"title":"2013:E10 - Wet Dream, Polite Robbery","description":"In RTAA #118, Burnie has a wet dream in the worst place possible and Kerry demonstrates the power of kindness when robbing a store in GTA V.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59b35a1f-f5b5-4add-a896-e5a98c312b59/sm/ep8230.jpg","duration":68,"publication_date":"2013-10-23T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-241","changefreq":"weekly","video":[{"title":"2013:E241 - RT Podcast #241","description":"RT Discusses Girls Girls Girls","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-241","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5577,"publication_date":"2013-10-22T22:00:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-girls-girls-girls","changefreq":"weekly","video":[{"title":"S5:E3 - Girls Girls Girls","description":"Miles gets lost in his thoughts thinking about the ladies. Check out more great footage on The Best of RT Shorts DVD!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-girls-girls-girls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57c72c73-13f7-43d4-aeca-e43efea6af4b/sm/ep8224.jpg","duration":278,"publication_date":"2013-10-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-3","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 3: King of Halo","description":"Teams from Rooster Teeth, Achievement Hunter, the RTX Community are joined with an Internet Allstar cast to compete for the honor to call themselves least worst gamers in The Gauntlet!","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b7d44de-1ca6-49f4-8c30-c3c6c688aa24/sm/ep8219.jpg","duration":900,"publication_date":"2013-10-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-5","changefreq":"weekly","video":[{"title":"2013:E5 - Everything is Wet","description":"Brandon sets off on an adventure to find Gavin, Miles gets destroyed and JJ vines.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c52217af-71d5-4042-b66e-03d218d34108/sm/ep8220.jpg","duration":97,"publication_date":"2013-10-20T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-14","changefreq":"weekly","video":[{"title":"V1:E18 - Chapter 14: Forever Fall, Pt. 2","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f477cd0-52fc-4ed2-8086-6fed07d8dc52/sm/ep8208.jpg","duration":369,"publication_date":"2013-10-17T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-5","changefreq":"weekly","video":[{"title":"2013:E5 - Miles' Crazy Dad","description":"Miles and his high school girlfriend on their way to a date when Miles' dad goes a little insane...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a7798c1-7996-44cb-8413-bafaac1792d9/sm/ep8204.jpg","duration":71,"publication_date":"2013-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-240","changefreq":"weekly","video":[{"title":"2013:E240 - RT Podcast #240","description":"RT Discusses Clone Love","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-240","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5647,"publication_date":"2013-10-15T22:04:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-16","changefreq":"weekly","video":[{"title":"S11:E16 - Episode 16: FAQ","description":"S11:E16 - Episode 16: FAQ","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d177bd7d-646d-45ef-b545-eb5ff2e4fbf8/sm/ep8196.jpg","duration":378,"publication_date":"2013-10-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013","changefreq":"weekly","video":[{"title":"2013:E1 - Scorched DVDs and Late Night Dance","description":"Brandon and Chris destroy some discs while Miles has to dance dance dance.","player_loc":"https://roosterteeth.com/embed/rt-life-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75338bfd-46e7-4b88-97fc-847b701e20e4/sm/ep8194.jpg","duration":106,"publication_date":"2013-10-12T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-13","changefreq":"weekly","video":[{"title":"V1:E17 - Chapter 13: Forever Fall","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ed4aa87-fe18-4e54-8f6b-bb624e62ad11/sm/ep8185.jpg","duration":370,"publication_date":"2013-10-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-paint-on-a-speaker-at-2500fps","changefreq":"weekly","video":[{"title":"S1:E19 - Paint on a Speaker at 2500fps","description":"Gav and Dan ruin a perfectly good speaker by pouring paint all over it. But hey, at least it looks pretty in slow motion.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-paint-on-a-speaker-at-2500fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bced12b-5830-4e57-b708-c4981404e347/sm/ep8184.jpg","duration":362,"publication_date":"2013-10-10T13:30:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-52","changefreq":"weekly","video":[{"title":"2013:E52 - Even More Plane Stories","description":"RTAA #116 has even more plane stories from the RT guys! Gus is in the security checkpoint when they do bomb drill, Burnie talks about how they don't get nervous on planes, and Gus has a \"mini freak-out\" over the Pacific.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b481b290-2119-4f96-bf5f-e54843e953c4/sm/ep8181.jpg","duration":88,"publication_date":"2013-10-09T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-barenaked-ladies-odds-are-official-music-video","changefreq":"weekly","video":[{"title":"S5:E14 - Barenaked Ladies - \"Odds Are\" (Official Music Video)","description":"Order \"Grinning Streak\" on iTunes- \r\nor iTunes-(CA) \r\n \r\nWe're on Tour in the US | UK | Canada\r\nWebsite- http://www.barenakedladies.com \r\nFacebook- https://www.facebook.com/barenakedladies \r\n \r\nTwitter- https://twitter.com/barenakedladies \r\n \r\nFor more videos visit http://roosterteeth.com \r\nFollow us at http://twitter.com/roosterteeth \r\nLike us at http://facebook.com/roosterteeth","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-barenaked-ladies-odds-are-official-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcd18bb1-a78a-4297-98a0-d9aae96a3f3c/sm/ep8177.jpg","duration":184,"publication_date":"2013-10-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-239","changefreq":"weekly","video":[{"title":"2013:E239 - RT Podcast #239","description":"RT Discusses Podcast Regrets","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-239","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5645,"publication_date":"2013-10-08T21:31:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-barenaked-ladies-odds-are-official-music-video","changefreq":"weekly","video":[{"title":"MV:E6 - Barenaked Ladies - \"Odds Are\" (Official Music Video)","description":"Rooster Teeth presents \"Odds Are\" (Official Music Video) from Barenaked Ladies.","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-barenaked-ladies-odds-are-official-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe2f6a64-7200-4b17-89b2-79d60bfab378/sm/1461653-1439912062571-Screen_Shot_2015-08-17_at_5.14.32_PM.png","duration":186,"publication_date":"2013-10-08T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-15","changefreq":"weekly","video":[{"title":"S11:E15 - Episode 15: Neighborhood Watch","description":"S11:E15 - Episode 15: Neighborhood Watch","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e9a560a-855b-4a13-8768-899b33cba04f/sm/ep8173.jpg","duration":594,"publication_date":"2013-10-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-41","changefreq":"weekly","video":[{"title":"2013:E41 - Podcast Ambush and Beer Cam","description":"Monty and Patrick stage an ambush on the RT Podcast while J.J.'s camera gets stuck in his beer mug.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9f8b930-4b34-4779-b902-d45b7baf86d8/sm/ep8171.jpg","duration":85,"publication_date":"2013-10-05T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-12","changefreq":"weekly","video":[{"title":"V1:E16 - Chapter 12: Jaunedice, Pt. 2","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7e31e78-b11e-481b-aa82-7c8f7f2b1426/sm/ep8162.jpg","duration":446,"publication_date":"2013-10-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-45","changefreq":"weekly","video":[{"title":"2013:E47 - Borders & Butts","description":"Burnie tries to cross the border into America, but his son makes things difficult for him, Gavin likes crepes, and Burnie feels weird after asking his doctor for a colonoscopy multiple times.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c58c001f-aee2-4a72-a18c-54d4d92beb0d/sm/ep8158.jpg","duration":81,"publication_date":"2013-10-02T18:24:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-238","changefreq":"weekly","video":[{"title":"2013:E238 - RT Podcast #238","description":"RT Discusses Sex Ed Class","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-238","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6113,"publication_date":"2013-10-01T20:35:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-14","changefreq":"weekly","video":[{"title":"S11:E14 - Episode 14: Reconciliation","description":"S11:E14 - Episode 14: Reconciliation","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7725d116-e6c9-40c7-b804-8a091cc7a7d3/sm/ep8146.jpg","duration":429,"publication_date":"2013-09-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-37","changefreq":"weekly","video":[{"title":"2013:E37 - Fart Hoofer Street Pass","description":"The mysterious \"Fart Hoofer\" drives all of Rooster Teeth mad. Who could this Street Passing prankster be","player_loc":"https://roosterteeth.com/embed/rt-life-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25d55d42-1ea5-477a-8a51-ca9ca4ca754c/sm/ep8144.jpg","duration":96,"publication_date":"2013-09-28T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-11","changefreq":"weekly","video":[{"title":"V1:E15 - Chapter 11: Jaunedice","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/771fe393-fb9b-4b75-8d9f-ef9af88eefd9/sm/ep8135.jpg","duration":291,"publication_date":"2013-09-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-43","changefreq":"weekly","video":[{"title":"2013:E43 - Joel's Meat Diet","description":"Joel tells the story of when he was a waiter on the hit show \"Ally McBeal,\" and an embarrassing food situation he got himself into in front of Portia de Rossi and Lucy Liu.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/579099e7-1c60-4457-b474-277af06fb8bc/sm/ep8131.jpg","duration":85,"publication_date":"2013-09-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-237","changefreq":"weekly","video":[{"title":"2013:E237 - RT Podcast #237","description":"RT is live from the set of The Gauntlet Season 2","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-237","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5950,"publication_date":"2013-09-24T18:31:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-13","changefreq":"weekly","video":[{"title":"S11:E13 - Episode 13: +1 Follower","description":"S11:E13 - Episode 13: +1 Follower","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79f3b8c0-e00f-4d9a-9e68-ae39429d9600/sm/ep8125.jpg","duration":417,"publication_date":"2013-09-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-30","changefreq":"weekly","video":[{"title":"2013:E30 - The Burrito Baby and AH Dance Party","description":"Michael, Gavin and Lindsay have a dance party while Chris gives birth to the ultimate burrito baby.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a15449b1-11cc-40df-9056-760853ea3721/sm/ep8119.jpg","duration":89,"publication_date":"2013-09-21T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-10","changefreq":"weekly","video":[{"title":"V1:E14 - Chapter 10: The Badge and The Burden, Pt. 2","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/083294cc-3e48-4b48-a7dd-85395926e621/sm/ep8109.jpg","duration":419,"publication_date":"2013-09-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-236","changefreq":"weekly","video":[{"title":"2013:E236 - RT Podcast #236","description":"RT goes off the rails","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-236","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5731,"publication_date":"2013-09-17T20:59:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-red-vs-blue-psa","changefreq":"weekly","video":[{"title":"S1:E37 - PSA - Game Changer","description":"The Commissioner of Grifball has some big news for the Rookie...so that's probably bad.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-red-vs-blue-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbde294e-ed36-493f-ab54-338dae0fa572/sm/ep8093.jpg","duration":158,"publication_date":"2013-09-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-slow-mo-car-explosion-the-slow-mo-guys","changefreq":"weekly","video":[{"title":"S1:E18 - Slow Mo Car Explosion - The Slow Mo Guys","description":"This week Gav blows up a car in slow motion. My favourite part is the bit with the explosion. If you want to see what inspired us to blow this red convertible up, go check out the 2 Guns movie at the links below.\r\nTrailer: http://www.youtube.com/watchv=AK6EbfdnTHg&feature=share&list=PLF4313AE131B74661\r\nhttp://www.2guns-movie.net\r\n\r\nShot with a Phantom Flex at 2500fps\r\nSlow Mo Car Explosion - The Slow Mo Guys","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-slow-mo-car-explosion-the-slow-mo-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/474372a5-fd59-4837-9382-6f1434671e61/sm/ep8094.jpg","duration":147,"publication_date":"2013-09-16T19:43:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5","changefreq":"weekly","video":[{"title":"S5:E16 - Burnie vs. Harry Potter","description":"Burnie discuses the Harry Potter series in amazing detail.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82fb7b3e-0c60-4669-97aa-d0375166e940/sm/ep8090.jpg","duration":266,"publication_date":"2013-09-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-9","changefreq":"weekly","video":[{"title":"V1:E13 - Chapter 9: The Badge and The Burden","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64fbe698-6042-4f54-95e3-4ae528fdbdd6/sm/ep8075.jpg","duration":332,"publication_date":"2013-09-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-29","changefreq":"weekly","video":[{"title":"2013:E29 - Barbara Pun-kelman, Jr.","description":"Barbara is back and punnier than ever in this Animated Adventure. Watch as she delivers even more groan-enducing puns to the RT crew, with even Burnie joining in accidentally.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/accc816e-96f8-4bfb-8640-fefc21d1f9a4/sm/ep8071.jpg","duration":63,"publication_date":"2013-09-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-235","changefreq":"weekly","video":[{"title":"2013:E235 - RT Podcast #235","description":"RT welcomes back Matt and Joe The Cat","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-235","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7667,"publication_date":"2013-09-10T21:00:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-12","changefreq":"weekly","video":[{"title":"S11:E12 - Episode 12: Finders Keepers","description":"S11:E12 - Episode 12: Finders Keepers","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d2d8bc4-1b9e-4f9f-8cea-ab91c2c24cce/sm/ep8064.jpg","duration":462,"publication_date":"2013-09-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-2","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 2: The Interviews","description":"Contestants compete on the RTX Center Stage and then face Joel in an intense one on one interview. How will they do Watch Episode 2 of The Gauntlet to find out.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbe661f3-42e4-48a2-b19d-9a19dc897ec0/sm/ep8055.jpg","duration":550,"publication_date":"2013-09-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-24","changefreq":"weekly","video":[{"title":"2013:E24 - Burnie and Gus Street Pass","description":"Burnie drives Gus Mad.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc716526-3d0c-475f-b7b1-32e5c5d29293/sm/ep8054.jpg","duration":349,"publication_date":"2013-09-07T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-8","changefreq":"weekly","video":[{"title":"V1:E12 - Chapter 8: Players and Pieces","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61f3bdf1-567c-460b-90e8-9bba4e4d9adb/sm/ep8040.jpg","duration":826,"publication_date":"2013-09-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-23","changefreq":"weekly","video":[{"title":"2013:E23 - Body Switching & Buckets","description":"Gavin and Geoff talk about what it would be like if they swapped bodies with celebrity couples, and Gav asks what the worst thing Geoff ever did to his mom as a kid.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9182884-21d6-48af-84f1-af43b9bf4eb4/sm/ep8035.jpg","duration":81,"publication_date":"2013-09-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-234","changefreq":"weekly","video":[{"title":"2013:E234 - RT Podcast #234","description":"RT discusses their best flirting tricks","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-234","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":4525,"publication_date":"2013-09-03T21:01:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-11","changefreq":"weekly","video":[{"title":"S11:E11 - Episode 11: Worst Laid Plans","description":"S11:E11 - Episode 11: Worst Laid Plans","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f62db427-715f-4218-a0f3-082c512cf1db/sm/ep8022.jpg","duration":513,"publication_date":"2013-09-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-2-episode-1","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 1","description":"Burnie and Joel welcome you to Season 2 of The Gauntlet! Thousands of attendees at RTX 2013 battled it out for the chance to make it onto the show. Find out who will advance to the next round of the competition on the debut episode of The Gauntlet!","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-2-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/453b427d-5fd8-4fe4-8034-04398e022420/sm/ep8024.jpg","duration":423,"publication_date":"2013-09-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-19","changefreq":"weekly","video":[{"title":"2013:E19 - Go Karts & Ray's Puppy Love","description":"Chris, Brandon and Jordan head to the Grand Prix while Ray and Rebel spend some quality time with one another.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eee8e4f3-1771-42a8-9455-4244da175279/sm/ep8025.jpg","duration":79,"publication_date":"2013-08-31T18:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-7","changefreq":"weekly","video":[{"title":"V1:E11 - Chapter 7: The Emerald Forest, Pt. 2","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11dda29b-a73c-4fda-b30d-66ff5644704b/sm/ep8017.jpg","duration":288,"publication_date":"2013-08-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-19","changefreq":"weekly","video":[{"title":"2013:E19 - Kyle Becomes Wolverine","description":"Miles tells the story of when Kyle got drunk on his 21st birthday, spat on the floor, and thought he was Wolverine.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a989ada-c01e-486a-a0ea-4cbb47392ee5/sm/ep8009.jpg","duration":84,"publication_date":"2013-08-28T17:07:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-233","changefreq":"weekly","video":[{"title":"2013:E233 - RT Podcast #233","description":"RT discusses big Tower of Pimps news","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-233","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5854,"publication_date":"2013-08-27T20:39:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-10","changefreq":"weekly","video":[{"title":"S11:E10 - Episode 10: Long Live the King","description":"S11:E10 - Episode 10: Long Live the King","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5ff40a2-d3b1-4a67-9603-ddd4bbd8c9d2/sm/ep7999.jpg","duration":370,"publication_date":"2013-08-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-14","changefreq":"weekly","video":[{"title":"2013:E14 - Michael Eats Energy Powder","description":"In the tradition of Michael ingesting food that could make an amateur viewer gag, this RT life brings you \"Michael Eats Energy Powder.\"","player_loc":"https://roosterteeth.com/embed/rt-life-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cf3c53a-5ad5-457a-b2c7-8fbbc2a72d6e/sm/ep7997.jpg","duration":79,"publication_date":"2013-08-24T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-6","changefreq":"weekly","video":[{"title":"V1:E10 - Chapter 6: The Emerald Forest","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e923fc-e7f1-4e1b-8363-2d1d96b05fcc/sm/ep7988.jpg","duration":435,"publication_date":"2013-08-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-12","changefreq":"weekly","video":[{"title":"2013:E12 - New Phone, Bad Store","description":"RTAA Omnibus action! Burnie doesn't know what to do without his phone, Gus yells at Burnie because he doesn't know how to use his phone, and Miles got tired of dealing with people at his bad grocery store job.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65f17b56-7e49-4b78-bfa8-9fbc0098bac7/sm/ep7984.jpg","duration":84,"publication_date":"2013-08-21T15:34:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-max-capacity","changefreq":"weekly","video":[{"title":"S5:E4 - Max Capacity","description":"Chris, Michael and Jordan get kicked out of their offices.\r\n\r\nShare on Twitter: http://clicktotweet.com/fZ55V\r\n\r\nThe new 2014 Scion tC is featured in this short. Check out the 2014 Scion tC now at: http://www.scion.com/cars/tC/ Vehicle shown with optional equipment. Scion tC's depiction as a home office is a dramatization and not an actual demonstration of the tC's capabilities. Do not attempt.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-max-capacity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b9b16d0-67d3-4e34-99fc-0281f34f2ea5/sm/ep7981.jpg","duration":356,"publication_date":"2013-08-20T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-232","changefreq":"weekly","video":[{"title":"2013:E232 - RT Podcast #232","description":"RT discusses Gavin's 3 Part Sex Dream","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-232","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5783,"publication_date":"2013-08-20T21:33:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-9","changefreq":"weekly","video":[{"title":"S11:E9 - Episode 9: A House Divided, Then Multiplied","description":"S11:E9 - Episode 9: A House Divided, Then Multiplied","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcfcbe92-1304-4b29-baa2-81a116ac6684/sm/ep7976.jpg","duration":338,"publication_date":"2013-08-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-9","changefreq":"weekly","video":[{"title":"2013:E9 - Bow Ties and Oiled Fish","description":"Brandon and Jordan get up close and personal while Gavin gets some fish all up inside of him.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a418245-3bc0-4ce4-a2ed-bb2447abc98a/sm/ep7975.jpg","duration":91,"publication_date":"2013-08-18T18:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-5","changefreq":"weekly","video":[{"title":"V1:E9 - Chapter 5: The First Step, Pt. 2","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/819bb2dc-9a3b-4806-a269-c19d6b53bf75/sm/ep7967.jpg","duration":273,"publication_date":"2013-08-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-8","changefreq":"weekly","video":[{"title":"2013:E8 - Burnie Fights the Sun","description":"Burnie tells a couple of stories, ranging from his highs and lows in fights, to another trick his cruel brother played on him, this time involving treasure and the sun.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc4eaf50-b360-4de7-898e-cbc9586c985b/sm/ep7961.jpg","duration":66,"publication_date":"2013-08-14T17:57:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-231","changefreq":"weekly","video":[{"title":"2013:E231 - RT Podcast #231","description":"RT discusses Gavin's questionable laundry service.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-231","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5994,"publication_date":"2013-08-13T19:46:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-8","changefreq":"weekly","video":[{"title":"S11:E8 - Episode 8: The Grass is Greener. The Blues are Bluer.","description":"S11:E8 - Episode 8: The Grass is Greener. The Blues are Bluer.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/268be7b6-a4fa-4e58-829b-bd05c047c8fd/sm/ep7955.jpg","duration":285,"publication_date":"2013-08-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-3","changefreq":"weekly","video":[{"title":"2013:E3 - Ice Cream and Fireballs","description":"Rooster,Teeth,Achievement,Hunter,RT,AH,Chris,Alan,Kyle,Ice Cream,Fireballs,Austin,TX","player_loc":"https://roosterteeth.com/embed/rt-life-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/297a1146-fef2-44a7-8c97-5b51f02a51ed/sm/ep7953.jpg","duration":89,"publication_date":"2013-08-10T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-behind-the-scenes-of-the-rtx-water-balloon-fight","changefreq":"weekly","video":[{"title":"S1:E17 - Behind the Scenes of the RTX Water Balloon Fight","description":"At RTX 2013, the Slow Mo Guys took on Freddie W and 1,000 Rooster Teeth fans in a slow motion water balloon fight!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-behind-the-scenes-of-the-rtx-water-balloon-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae8d16f5-cb1c-410e-952b-de4fdbcb630a/sm/ep7952.jpg","duration":152,"publication_date":"2013-08-10T18:58:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-water-balloon-fight-with-1500-people-starring-freddie-wong","changefreq":"weekly","video":[{"title":"S1:E16 - Water Balloon Fight with 1500 people Starring Freddie Wong","description":"Gav and Dan start a water balloon fight with over a thousand people and film it at 2500fps. It does not end well for them.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-water-balloon-fight-with-1500-people-starring-freddie-wong","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af45d7a1-1d12-4aca-a9ed-089c49fa980f/sm/ep7947.jpg","duration":272,"publication_date":"2013-08-09T02:04:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-4","changefreq":"weekly","video":[{"title":"V1:E8 - Chapter 4: The First Step","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1308a6d0-b8d1-4714-8689-6481741df7a7/sm/ep7944.jpg","duration":456,"publication_date":"2013-08-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-2","changefreq":"weekly","video":[{"title":"2013:E2 - Gavin's Secret Admirer","description":"Gavin tells a story of when the chef from a cooking show he was filming fell in love with him and he failed to pick up on the signs.\r\n\r\nAudio from RT Podcast #205: http://roosterteeth.com/podcast/episode.phpid=205","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2f131cd-6519-4af0-aa3a-8f805caad15d/sm/ep7938.jpg","duration":86,"publication_date":"2013-08-07T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-230","changefreq":"weekly","video":[{"title":"2013:E230 - RT Podcast #230","description":"RT discusses what happens behind closed doors.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-230","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5613,"publication_date":"2013-08-06T22:22:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-2","changefreq":"weekly","video":[{"title":"S5:E1 - Gavin vs. Science","description":"Burnie sits Gavin down for an in-depth discussion of science.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16ee1252-0e8e-48f3-b245-a42b30d8b596/sm/ep7936.jpg","duration":234,"publication_date":"2013-08-06T20:49:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-46","changefreq":"weekly","video":[{"title":"2013:E46 - Special RTX Make a Wish Edition","description":"Kathleen shows you the behind the scenes of her Make a Wish feat. Check it out! This video was originally shown during RTX 2013.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0e7023a-4897-4eb2-8f47-8ae74962a1c0/sm/ep7928.jpg","duration":168,"publication_date":"2013-08-03T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-45","changefreq":"weekly","video":[{"title":"2013:E45 - Gavin Hurdle and Awkward Barbara","description":"Gavin scooters around the office, Joe enjoy an afternoon refreshment, and Barbara dances in a crowd-less bar.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcc01ec9-44e1-41ea-ba89-627b029ef3b9/sm/ep7926.jpg","duration":66,"publication_date":"2013-08-02T18:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-3","changefreq":"weekly","video":[{"title":"V1:E7 - Chapter 3: The Shining Beacon, Pt.2","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35865261-2e80-4721-93be-e8f87fbe1b03/sm/ep7917.jpg","duration":399,"publication_date":"2013-08-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-51","changefreq":"weekly","video":[{"title":"2013:E51 - The Original LOLcats","description":"Burnie ponders how future cultures will look back on contemporary society, leading him to wonder if ancient Egyptians really did revere cats, or if they also thought they were really funny.\r\n\r\nAudio from RT Podcast #66: http://roosterteeth.com/podcast/episode.phpid=66","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20e56633-0449-45d8-8a4f-b2d2f01e7feb/sm/ep7913.jpg","duration":65,"publication_date":"2013-07-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-229","changefreq":"weekly","video":[{"title":"2013:E229 - RT Podcast #229","description":"RT discusses the fall of Fez 2 and grouchy gamers","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-229","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6073,"publication_date":"2013-07-30T22:16:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-7","changefreq":"weekly","video":[{"title":"S11:E7 - Episode 7: Can I Keep It?","description":"S11:E7 - Episode 7: Can I Keep It?","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd2e9dfd-5a64-4187-a0ab-064721b91dfc/sm/ep7908.jpg","duration":432,"publication_date":"2013-07-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-39","changefreq":"weekly","video":[{"title":"2013:E39 - Comic Con and a Face Sander","description":"2013:E39 - Comic Con and a Face Sander","player_loc":"https://roosterteeth.com/embed/rt-life-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1be4f0ba-c1aa-4b91-872d-50b297586533/sm/ep7905.jpg","duration":108,"publication_date":"2013-07-27T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-2","changefreq":"weekly","video":[{"title":"V1:E6 - Chapter 2: The Shining Beacon","description":"RWBY is a new animated series from Rooster Teeth, directed by Monty Oum. The story focuses on a group of four girls in their first year at a legendary academy where they will learn to fight monsters.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31ab5b84-258b-43f5-bf02-7ae3a05628d9/sm/ep7897.jpg","duration":376,"publication_date":"2013-07-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-44","changefreq":"weekly","video":[{"title":"2013:E44 - Drunk Detective Miles","description":"RTAA #106 is one of the stories from the gang's trip to Las Vegas. Kyle gets drunk and someone misplaces his bag full of worldly possessions, so it's up to Drunk Detective Miles to track it down!\r\n\r\n\r\nAudio from RT Podcast #221: http://roosterteeth.com/podcast/episode.phpid=221","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0105186-3e79-4c37-95ec-8b1f01e91e90/sm/ep7892.jpg","duration":85,"publication_date":"2013-07-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-228","changefreq":"weekly","video":[{"title":"2013:E228 - RT Podcast #228","description":"RT does it down under from PAX Australia","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-228","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":2744,"publication_date":"2013-07-23T21:49:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-underwater-bullets-at-27000fps","changefreq":"weekly","video":[{"title":"S1:E15 - Underwater Bullets at 27,000fps","description":"Gav and Dan slow down time by over one thousand times to show you how bullets look when fired from an underwater gun.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-underwater-bullets-at-27000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe0266d2-c827-44c2-b892-af470328aec0/sm/ep7885.jpg","duration":574,"publication_date":"2013-07-23T14:22:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-6","changefreq":"weekly","video":[{"title":"S11:E6 - Episode 6: S.O.S.","description":"S11:E6 - Episode 6: S.O.S.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/210cfd10-a7b5-4714-9678-e052be61a34c/sm/ep7881.jpg","duration":518,"publication_date":"2013-07-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-32","changefreq":"weekly","video":[{"title":"2013:E32 - Free Slurpee Day!","description":"The RT gang goes to 7-eleven to get some free slurpees.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bff9e7db-e5cd-4b3a-9a87-0c7a35ce9c9e/sm/ep7878.jpg","duration":132,"publication_date":"2013-07-20T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-episode-1","changefreq":"weekly","video":[{"title":"V1:E5 - Chapter 1: Ruby Rose","description":"The debut episode of the new series RWBY, created by Monty Oum. Music available on iTunes, soundtrack: http://bit.ly/16LXTQy and single \"This Will Be the Day\": http://bit.ly/15PtDaA","player_loc":"https://roosterteeth.com/embed/rwby-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15d8cfff-9f9f-4843-8d35-b3efeb325718/sm/ep7872.jpg","duration":741,"publication_date":"2013-07-18T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-227","changefreq":"weekly","video":[{"title":"2013:E227 - RT Podcast #227","description":"RT discusses number ones, bad birthday cake and Gavin's big RTX mishap","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-227","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7185,"publication_date":"2013-07-16T21:40:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-5","changefreq":"weekly","video":[{"title":"S11:E5 - Episode 5: A Real Fixer Upper","description":"S11:E5 - Episode 5: A Real Fixer Upper","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f45a5368-4f41-405b-aaf4-03e7eb1c7e5d/sm/ep7858.jpg","duration":330,"publication_date":"2013-07-16T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-34","changefreq":"weekly","video":[{"title":"2013:E34 - El Pizza Bandido","description":"RTAA #105 is all about Ray's pizza treachery. Both he and Gavin order a pizza while watching a movie and when Ray mistakenly takes Gav's pizza thinking it's his, he refuses to admit it.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/272fc336-ea5a-4007-9304-d45994032a50/sm/ep7838.jpg","duration":92,"publication_date":"2013-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-226","changefreq":"weekly","video":[{"title":"2013:E226 - RT Podcast #226","description":"RT does it live from RTX 2013! Joel vs. Jack!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-226","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5944,"publication_date":"2013-07-09T21:27:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-4","changefreq":"weekly","video":[{"title":"S11:E4 - Episode 4: Heavy Mettle","description":"S11:E4 - Episode 4: Heavy Mettle","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21c3bb1d-06e2-471d-ba16-eb68fb10095d/sm/ep7832.jpg","duration":337,"publication_date":"2013-07-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-31","changefreq":"weekly","video":[{"title":"2013:E31 - Geoff vs. Porch","description":"In RTAA #104, Geoff recalls fights from his past, specifically the time he tried to fight a man named Porch. That's right, his name was Porch.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df6bf9f1-dfa3-4609-90e3-1eb65b3c5435/sm/ep7819.jpg","duration":60,"publication_date":"2013-07-03T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-psa-halo-global-championship","changefreq":"weekly","video":[{"title":"S1:E36 - PSA: Halo Global Championship","description":"Prepare for the Halo Global Championship, kicking off this summer at RTX 2013!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-psa-halo-global-championship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2db80d44-8d68-4757-8591-704aa11e020b/sm/ep7817.jpg","duration":157,"publication_date":"2013-07-03T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-225","changefreq":"weekly","video":[{"title":"2013:E225 - RT Podcast #225","description":"RT discusses RTX 2013 and buying land on the moon","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-225","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7415,"publication_date":"2013-07-02T23:03:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-3","changefreq":"weekly","video":[{"title":"S11:E3 - Episode 3: Barriers to Entry","description":"S11:E3 - Episode 3: Barriers to Entry","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/648797d1-bdac-4d47-a4b5-ecd90f204772/sm/ep7811.jpg","duration":293,"publication_date":"2013-07-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-25","changefreq":"weekly","video":[{"title":"2013:E25 - More Burnie Tales","description":"RTAA #103 is full of more stories from Burnie, including the time Jason pulled a prank on him in the middle of a filmmaking panel, more tortuous his older brother did to him, and an encounter with an asshole in Austin. So much Burnie!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50055fb5-e1f0-4c17-97cb-36c5824c4a59/sm/ep7794.jpg","duration":79,"publication_date":"2013-06-26T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-224","changefreq":"weekly","video":[{"title":"2013:E224 - RT Podcast #224","description":"RT Eats Marshmallows Down Under","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-224","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7715,"publication_date":"2013-06-25T22:30:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-2","changefreq":"weekly","video":[{"title":"S11:E2 - Episode 2: Get Your Tucks in a Row","description":"S11:E2 - Episode 2: Get Your Tucks in a Row","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47e0b7dd-ed3a-4b7d-b939-eb7239422689/sm/ep7765.jpg","duration":223,"publication_date":"2013-06-25T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072312","changefreq":"weekly","video":[{"title":"S1:E229 - Hard News 07/23/12","description":"Today on Hard News, the Silent Hill dev might be closing, EA Sports loses at Monopoly, and Assassin's Creed 3 DLC.\r\nVatra Games shut down? - http://www.screwattack.com/news/silent-hill-downpour-developer-might-not-make-it-out-alive\r\nEA Sports loses lawsuit - http://www.screwattack.com/news/ea-gives-madden-ghost-sets-aside-27-million-settlement\r\nAssassin's Creed 3 - http://www.screwattack.com/news/rumor-assassin%E2%80%99s-creed-iii-will-get-season-pass\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-072312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bbfac60-1560-43af-b6dc-768f738c6a6d/sm/video_thumbnail_2335061.png","duration":158,"publication_date":"2012-07-23T15:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bens-favorite-sgc-moment-ever","changefreq":"weekly","video":[{"title":"S1:E352 - Ben's Favorite SGC Moment EVER","description":"SGC is an event unlike any other, so what is Ben's favorite SGC moment of all-time? \r\nRemember, you can help bring SGC back by contributing to our SGC Kickstarter by clicking here.","player_loc":"https://roosterteeth.com/embed/bens-favorite-sgc-moment-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49e3dffe-457c-4ab8-83c8-d75eef97f971/sm/video_thumbnail_2330906.jpg","duration":61,"publication_date":"2012-07-23T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/live-sgc-mini-marathon-stream-this-tuesday","changefreq":"weekly","video":[{"title":"S1:E351 - Live SGC Mini-Marathon Stream this Tuesday!","description":"To kickstart our SGC Kickstarter, we're doing a mini-marathon of streaming this Tuesday from Noon to Midnight (Central time)!\r\nWant to help bring SGC back?  Check out our kickstarter here - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again","player_loc":"https://roosterteeth.com/embed/live-sgc-mini-marathon-stream-this-tuesday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/094ee19b-319f-4af3-b8eb-97aeaaafc507/sm/video_thumbnail_2320061.jpg","duration":52,"publication_date":"2012-07-22T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-sgc-2010-moments","changefreq":"weekly","video":[{"title":"S1:E65 - Top 10 SGC 2010 Moments ","description":"ScrewAttack gives us a rundown of the best moments from the SGC 2010 weekend!\r\nWant SGC to return? Check out the Kickstarter here.","player_loc":"https://roosterteeth.com/embed/top-10-sgc-2010-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/839b4788-2700-4200-840f-72d23a5da60c/sm/ScrewAttackGamingConvention09.jpg","duration":609,"publication_date":"2012-07-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-072012","changefreq":"weekly","video":[{"title":"S1:E228 - Hard News 07/20/12","description":"Today on Hard News, Final Fantasy Versus XIII might be canceled, Robert Bowling announces the first Oyua exclusive series, and Fex won't get patched on XBLA.\r\n[Rumor] Square Enix might have cancelled Final Fantasy Versus XIII - http://www.screwattack.com/news/rumor-square-enix-might-have-cancelled-final-fantasy-versus-xiii\r\nRobotoki's first game will be the OUYA's first exclusive - http://www.screwattack.com/news/robotokis-first-game-will-be-ouyas-first-exclusive\r\nPolytron forced to re-release broken FEZ patch - http://www.screwattack.com/news/polytron-forced-re-release-broken-fez-patch\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-072012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a3156c5-5dbf-4de7-b9f1-21ef3908a60d/sm/video_thumbnail_2310771.png","duration":152,"publication_date":"2012-07-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-blooper-reel-1","changefreq":"weekly","video":[{"title":"S1:E350 - Hard News Blooper Reel #1","description":"Take a look behind the scenes of what gets cut from everyone's favorite gaming news show.","player_loc":"https://roosterteeth.com/embed/hard-news-blooper-reel-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74f7105b-5227-445b-aa9f-b1fc280ddfa0/sm/video_thumbnail_2304406.png","duration":98,"publication_date":"2012-07-20T08:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-sidekick","changefreq":"weekly","video":[{"title":"S1:E9 - The Worst EVER: Sidekick","description":"Who is the worst sidekick EVER? Let us know in a comment below!","player_loc":"https://roosterteeth.com/embed/the-worst-ever-sidekick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ae532c8-4bde-41ea-b031-9aaca030b672/sm/video_thumbnail_2301126.jpg","duration":290,"publication_date":"2012-07-19T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071912","changefreq":"weekly","video":[{"title":"S1:E227 - Hard News 07/19/12","description":"Today on Hard News, Shadowrun Online gets a Kickstarter, The War Z gets announced, and Heroes of Newerth goes free.\r\nShadowrun Online heads to Kickstarter - http://www.screwattack.com/news/shadowrun-online-heads-kickstarter\r\nThe War Z is a copycat of DayZ - http://www.screwattack.com/news/war-z-copycat-dayz\r\nHeroes of Newerth finally becomes \"free to own\" - http://www.screwattack.com/news/heroes-newerth-finally-becomes-free-own\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df536f7e-1f5b-4454-bb87-7575b43ea472/sm/video_thumbnail_2296366.png","duration":164,"publication_date":"2012-07-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071812","changefreq":"weekly","video":[{"title":"S1:E226 - Hard News 07/18/12","description":"Today on Hard News, the World of Warcraft movie might still be on, new details on the upcoming Ratchet & Clank game, and more ways to get the Battlefield 4 beta.\r\nSam Raimi departs the World of Warcraft for the merry old land of Oz - http://www.screwattack.com/news/sam-raimi-departs-world-warcraft-merry-old-land-oz\r\nRatchet & Clank: Full Frontal Assault details - http://www.screwattack.com/news/ratchet-clank-full-frontal-assault-details\r\nBattlefield 4 Announced [UPDATE] - http://www.screwattack.com/news/battlefield-4-announced-update\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b85fcdcc-42b1-4d0b-8552-8358310ea8b3/sm/video_thumbnail_2286681.jpg","duration":132,"publication_date":"2012-07-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-battle-for-a-trip-to-japan","changefreq":"weekly","video":[{"title":"S1:E348 - [Advantage Content] Clip of the Week Outtakes - The Battle For (A Trip To) Japan","description":"Tommy can't see anything, the failed attempts at the flying kick, and what were Chad and Nick REALLY saying?","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-battle-for-a-trip-to-japan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c848485-2aff-4256-8b8a-fa14f392ba60/sm/video_thumbnail_2280141.jpg","duration":408,"publication_date":"2012-07-17T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-071812","changefreq":"weekly","video":[{"title":"S1:E347 - SideScrollers Extended 07/18/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-071812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88779a3d-12de-4d67-8401-e981b55f320a/sm/video_thumbnail_2271976.jpg","duration":313,"publication_date":"2012-07-17T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"dont-do-bath-salts\"","changefreq":"weekly","video":[{"title":"S1:E73 - SideScrollers - \"Don't Do Bath Salts!\"","description":"Support SGC! - http://www.kickstarter.com/projects/screwattack/let-throw-the-best-gaming-party-in-the-world-again\r\nGet the audio version here - http://bit.ly/SFj5mq\r\nSideScrollers Extended can be watched here! - http://bit.ly/NfrI86\r\n \r\nWatch our newest videos by clicking the links below!\r\nIron-Man of ScrewAttack: Japan Edition - Day Five - http://bit.ly/SuXFs7\r\nThe Half Gallon Challenge - http://bit.ly/LJHJyG\r\nScrewAttack's Blue Bell Ice Cream Commercial - http://bit.ly/SfJ03X\r\nNewsroom: Press 'X' to Ellen - http://bit.ly/LVP9Ub\r\nDEATH BATTLE! - Link VS Cloud - http://bit.ly/MiBOyT\r\nDEATH BATTLE! : Wily VS Eggman  - http://bit.ly/OE72kr\r\nTop 10 Fat Guys in Games - http://bit.ly/MiMaPc\r\nVideo Game Vault - Daikatana N64 - http://bit.ly/NT0m5V\r\nClip of the Week - The Battle For (A Trip To) Japan - http://bit.ly/MhrImc\r\nbrentalfloss - Little Nemo: The Dream Master WITH LYRICS - http://bit.ly/MFtQQr\r\nCinemassacre Mailbag Ep. 6 - http://bit.ly/M7bIR7\r\nExtra Credits - \"Hard-Boiled\" - http://bit.ly/LWpr1G\r\nThe Game OverThinker - NecroThinker: The Last Stand - http://bit.ly/NtsFoU\r\n \r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://twitter.com/ScrewAttack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"dont-do-bath-salts\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67ec0c7f-7476-44fe-af1a-5d0fbf9ab0ae/sm/video_thumbnail_2271821.jpg","duration":2839,"publication_date":"2012-07-17T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071712","changefreq":"weekly","video":[{"title":"S1:E225 - Hard News 07/17/12","description":"Today on Hard News, Battlefield 4 gets announced, JoJo's Bizarre Adventure HD, and Bad Dudes... two?\r\nBattlefield 4 Announced - http://www.screwattack.com/news/battlefield-4-announced\r\nCapcom reveals new JoJo's Bizarre Adventure HD screens and details  - http://www.screwattack.com/news/capcom-reveals-new-jojos-bizarre-adventure-hd-screens-and-details\r\nBad Dudes 2 gets kickstarted - http://www.screwattack.com/news/bad-dudes-2-gets-kickstarted\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea35f485-dc4e-412c-b4a2-33e3aa2600e7/sm/HardNews0717.png","duration":141,"publication_date":"2012-07-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-press-x-to-ellen","changefreq":"weekly","video":[{"title":"S1:E9 - Newsroom: Press 'X' to Ellen","description":"They also chase people through neon labyrinths.\r\n(New episodes every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-press-x-to-ellen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0bb5d1e-c45f-4768-b30d-c74ad66b0158/sm/video_thumbnail_2267441.jpg","duration":77,"publication_date":"2012-07-16T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071612","changefreq":"weekly","video":[{"title":"S1:E224 - Hard News 07/16/12","description":"Today on Hard News, a Deadpool game is announced, how much Sony wanted Limbo, and the launch window for the Wii U gets smaller.\r\nDeadpool Game - http://www.screwattack.com/trailers/deadpool-game-will-have-bouncy-boobs-and-bounce-castles\r\nSony passed on Limbo exclusivity - http://www.screwattack.com/news/sony-passed-limbo-exclusivity\r\nPotential Wii U Launch Window - http://www.screwattack.com/news/has-wii-us-launch-window-been-outed\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c2acac1-3b47-4ae4-a13f-bf43d100c04a/sm/video_thumbnail_2265686.jpg","duration":151,"publication_date":"2012-07-16T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-battle-for-a-trip-to-japan","changefreq":"weekly","video":[{"title":"S1:E171 - Clip of the Week - The Battle For (A Trip To) Japan","description":"We hate to break it to you, but the epic finale of the Iron-Man of ScrewAttack: Japan Edition was all staged... THIS is how we REALLY decided who was going to the Land of the Rising Sun!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-battle-for-a-trip-to-japan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a9192fa-2a36-42b2-93a9-2d86b3e5eef1/sm/cotwjapanthumb.jpg","duration":190,"publication_date":"2012-07-13T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071312","changefreq":"weekly","video":[{"title":"S1:E223 - Hard News 07/13/12","description":"Today on Hard News, new information on the gameplay for Beyond: Two Souls, more news of Epic's Fornite, and you can join the Assassin's Creed 3 wolf pack.\r\nBeyond: Two Souls gameplay is revealed at Comic Con panel - http://www.screwattack.com/news/beyond-two-souls-gameplay-revealed-comic-con-panel\r\nFortnite will be a PC exclusive and the first game to run on Unreal Engine 4 - http://www.screwattack.com/news/fortnite-will-be-pc-exclusive-and-first-game-run-unreal-engine-4\r\nAssassin’s Creed III will have the Wolf Pack - http://www.screwattack.com/news/assassin%E2%80%99s-creed-iii-will-have-wolf-pack\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5e1ad95-a105-4963-b956-95b78ef0ba36/sm/video_thumbnail_2243081.jpg","duration":162,"publication_date":"2012-07-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/link-vs-cloud-death-battle","changefreq":"weekly","video":[{"title":"S1:E22 - Link VS Cloud","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/link-vs-cloud-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7962450-0223-4b40-ba34-8e8a49ee6456/sm/video_thumbnail_2219691.jpg","duration":540,"publication_date":"2012-07-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071212","changefreq":"weekly","video":[{"title":"S1:E222 - Hard News 07/12/12","description":"Today on Hard News, The Last Story gets an American release date, the Ultima series gets a new entry, and the Steam Summer Sale begins.\r\nThe Last Story has a US release date - http://www.screwattack.com/news/last-story-has-us-release-date\r\nNew entry coming to the Ultima franchise - http://www.screwattack.com/news/new-entry-coming-ultima-franchise\r\nSteam Summer Sale has begun! - http://www.screwattack.com/news/steam-summer-sale-has-begun\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2296fc28-0ece-4a71-aef8-e7785a793ec0/sm/video_thumbnail_2234056.jpg","duration":151,"publication_date":"2012-07-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071112","changefreq":"weekly","video":[{"title":"S1:E221 - Hard News 07/11/12","description":"Today on Hard News, Rocksteady might take Batman back to the silver age, Activision/Blizzard might get sold, and is Halo 2 Anniversary coming?\r\n[Rumor] Rocksteady’s next Batman will return to the Silver Age - http://www.screwattack.com/news/rumor-rocksteady%E2%80%99s-next-batman-will-return-silver-age\r\n[Rumor] Vivendi might be trying sell off Activision Blizzard to Microsoft - www.screwattack.com/news/rumor-vivendi-might-be-trying-sell-activision-blizzard-microsoft\r\n Halo 2 Anniversary Edition rumors squashed - http://www.screwattack.com/news/halo-2-anniversary-edition-rumors-squashed\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f38d4bee-5435-4421-ad4b-fc4eca9d9253/sm/HardNews0711.png","duration":137,"publication_date":"2012-07-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-071112","changefreq":"weekly","video":[{"title":"S1:E346 - SideScrollers Extended 07/11/12","description":"Extra SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-071112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66c257fe-be10-4de9-a2a3-d67af2d88eb0/sm/video_thumbnail_2212341_0.jpg","duration":665,"publication_date":"2012-07-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"performing-a-sex\"","changefreq":"weekly","video":[{"title":"S1:E72 - SideScrollers - \"Performing a Sex\"","description":"This week on SideScrollers, we look into the Legend of the Hidden Temple and lots of fiery explosions.\r\nGet the audio version here - http://bit.ly/PHIayc\r\nSideScrollers Extended can be watched here! - http://bit.ly/Mfdn6h\r\n \r\nWatch our newest videos by clicking the links below!\r\nThe Half Gallon Challenge - http://bit.ly/LJHJyG\r\nNewsroom: EVO Smacktalk - http://bit.ly/NlVqWC\r\nIron-Man of ScrewAttack: Japan Edition - Day One - http://bit.ly/LKe5sU\r\nClip of the Week - Jameson's Plot - http://bit.ly/M3rJWi\r\nThe Best EVER: Giant Robot Game - http://bit.ly/PlAukQ\r\n \r\nNew T-Shirts! - http://bit.ly/bI1yjF\r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://twitter.com/ScrewAttack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"performing-a-sex\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46534b6b-9d51-437e-8414-835222465cc9/sm/video_thumbnail_2212541.jpg","duration":3011,"publication_date":"2012-07-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-071012","changefreq":"weekly","video":[{"title":"S1:E220 - Hard News 07/10/12","description":"Today on Hard News, Angry Birds is coming to home consoles, Mass Effect 3's new DLC, and Namco is unsure about Smash Bros. characters.\r\nAngry Birds Trilogy is coming to consoles - http://www.screwattack.com/news/angry-birds-trilogy-coming-consoles\r\n[Rumor] Mass Effect 3 DLC “Leviathan” revealed by voice actor - http://www.screwattack.com/news/rumor-mass-effect-3-dlc-%E2%80%9Cleviathan%E2%80%9D-revealed-voice-actor\r\n Namco is unsure about adding Tekken characters to Super Smash Bros. - http://www.screwattack.com/news/namco-unsure-about-adding-tekken-characters-super-smash-bros\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-071012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf74e5b-93d1-4067-8e04-faa876b434b2/sm/video_thumbnail_2215076.jpg","duration":146,"publication_date":"2012-07-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-movie-based-games","changefreq":"weekly","video":[{"title":"S1:E64 - Top 10 Movie Based Games","description":"They get a bad rap most of the time, but what about the good ones?","player_loc":"https://roosterteeth.com/embed/top-10-movie-based-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bd3a3cd-03d5-4897-b899-0547ecc79112/sm/video_thumbnail_2670271.jpg","duration":503,"publication_date":"2012-07-10T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-evo-smacktalk","changefreq":"weekly","video":[{"title":"S1:E8 - Newsroom: EVO Smacktalk","description":"Sticks and stones may break my bones, so I'll shout my words from a safe distance.\r\n(New episode every Tuesday!!)","player_loc":"https://roosterteeth.com/embed/newsroom-evo-smacktalk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a16fdc4-76ca-41de-bea3-4657a386ceea/sm/video_thumbnail_2208916.jpg","duration":90,"publication_date":"2012-07-09T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070912","changefreq":"weekly","video":[{"title":"S1:E219 - Hard News 07/09/12","description":"Today on Hard News, the EVO 2012 winners, Furious 4 are still fighting, and will Nintendo introduce unified accounts?\r\nEVO 2012 Wrap-up - http://www.screwattack.com/news/evo-2k12-wrap\r\nBrothers in Arms Furious 4 - http://www.screwattack.com/news/brothers-arms-furious-4-gets-delayed\r\nNintendo unified accounts - http://www.screwattack.com/news/rumor-nintendo-csr-claims-unified-eshop-coming\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-070912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b298e60-7691-43db-a704-975b8d6a5cbc/sm/video_thumbnail_2207056.png","duration":140,"publication_date":"2012-07-09T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/last-day-screwattacks-super-mega-american-birthday-sale","changefreq":"weekly","video":[{"title":"S1:E345 - LAST DAY - ScrewAttack's Super Mega American Birthday Sale","description":"With the United States birthday coming up Chad felt like blowing things up... mainly our store's prices.  Here's a list of all the great things we're offering at ScrewAttackStore.com:\r\nThe AVGN DVD Complete Pack - $60 (save almost $20!)\r\nCinemassacre DVD Double Pack - $24.98 (Save $10)\r\nScrewAttack DVD Triple Pack - $20 (Save $10)\r\nTalking Classics DVD - Volume 1 $10 (Save $5)\r\nAngry Video Game Nerd Hat - $14.98 (Save $5)\r\nYou know Whats Bull Shit Poster - $5 (50% off!)\r\nSelect ScrewAttack and AVGN T's including the all new Beer t's - all 25% off!\r\nbrentalfloss CDs - 50% off!\r\nClick here to check out to do a little browsing for yourself.","player_loc":"https://roosterteeth.com/embed/last-day-screwattacks-super-mega-american-birthday-sale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/668f0fc7-d6f8-4803-b578-05ea4160ac61/sm/video_thumbnail_2150726.jpg","duration":72,"publication_date":"2012-07-08T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-jamesons-plot","changefreq":"weekly","video":[{"title":"S1:E170 - Clip of the Week - Jameson's Plot","description":"J. Jonah Jameson finds out a new Spider-Man film is in the works that will put him back on the big screen, right? ... RIGHT??\r\nClip of the Week suggestion thread.\r\nScrewAttack's Facebook\r\n\tScrewAttack's Twitter\r\n\tNick's Facebook\r\n\tNick's Twitter","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-jamesons-plot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/826a823a-9e05-4054-8885-8790824ecf4e/sm/cotwthumbjjj.jpg","duration":228,"publication_date":"2012-07-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070612","changefreq":"weekly","video":[{"title":"S1:E218 - Hard News 07/06/12","description":"Today on Hard News, the Devil's Third is still coming out, a new Walking Dead game, and Robert Bowling's new game.\r\nValhalla still thinks Devil’s Third is a “blockbuster franchise” - http://www.screwattack.com/news/valhalla-still-thinks-devil%E2%80%99s-third-%E2%80%9Cblockbuster-franchise%E2%80%9D\r\nActivision teams up with Terminal Reality for Walking Dead FPS - http://www.screwattack.com/news/activision-teams-terminal-reality-walking-dead-fps\r\n\r\nRobert Bowling new game is about zombies and the Human Element - http://www.screwattack.com/news/robert-bowling-new-game-about-zombies-and-human-element\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-070612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8faacddb-c260-40c2-94a7-e8c22eceb8e3/sm/video_thumbnail_2189321.jpg","duration":152,"publication_date":"2012-07-06T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-sams-best-ever-giant-robot-game","changefreq":"weekly","video":[{"title":"S1:E344 - [Advantage] Sam's Best EVER Giant Robot Game","description":"S1:E344 - [Advantage] Sam's Best EVER Giant Robot Game","player_loc":"https://roosterteeth.com/embed/advantage-sams-best-ever-giant-robot-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9596e833-66bf-42d1-add1-71fad2575439/sm/video_thumbnail_2186776.jpg","duration":113,"publication_date":"2012-07-06T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-giant-robot-game","changefreq":"weekly","video":[{"title":"S1:E8 - The Best EVER: Giant Robot Game","description":"What is your best giant robot game?","player_loc":"https://roosterteeth.com/embed/the-best-ever-giant-robot-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e743be6-26b5-4be6-9eae-ad82d86e489e/sm/video_thumbnail_2184356.jpg","duration":253,"publication_date":"2012-07-05T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070512","changefreq":"weekly","video":[{"title":"S1:E217 - Hard News 07/05/12","description":"Today on Hard News, NiGHTS Into Dreams, a new video game console, and Marvel vs Capcom is coming back.\r\nNiGHTS into dreams becomes a reality this Fall - http://www.screwattack.com/news/nights-dreams-becomes-reality-fall\r\n[Rumor] Google is ready for the console market with Ouya - http://www.screwattack.com/news/rumor-google-ready-console-market-ouya\r\nCapcom to re-release MvC & Marvel Super Heroes as MvC Origins - http://www.screwattack.com/news/capcom-re-release-mvc-marvel-super-heroes-mvc-origins\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-070512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0900972-47dd-4aca-927b-86c5659fda4a/sm/video_thumbnail_2181811.jpg","duration":144,"publication_date":"2012-07-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-070412","changefreq":"weekly","video":[{"title":"S1:E342 - SideScrollers Extended 07/04/12","description":"Extra SideScrollers for Advantage members!\r\nNot an Advantage Member?  Go here to get the details and receive all the benefits.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-070412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56fe9a5e-1627-4175-8aef-23c980bf50ab/sm/video_thumbnail_2163371.png","duration":605,"publication_date":"2012-07-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"-merica-\"","changefreq":"weekly","video":[{"title":"S1:E71 - SideScrollers - \" 'MERICA! \"","description":"Get the audio version here - http://bit.ly/N61AGH\r\nSideScrollers Extended can be watched here! - http://bit.ly/P321Yd\r\n \r\nWatch our newest videos by clicking the links below!\r\n Video Game Vault - TMNT IV: Turtles in Time - http://bit.ly/NtO6EF\r\nVideo Game Vault - Dave Mirra's Free Style BMX - http://bit.ly/MRbSi3\r\nNewsroom - Endings - http://bit.ly/MQmcUW\r\nExtra Credits - ARGs (Part 2) - http://bit.ly/MTy227\r\nThe Best Ever - Glitches - http://bit.ly/M3NypO\r\nThe Completionist - Top Ten Video Game Villains - http://bit.ly/MGjHHi\r\nClip of the Week - Shauntern's Goodbye - http://bit.ly/Ln1BYa\r\n \r\nNew T-Shirts! - http://bit.ly/bI1yjF\r\nHave a question for the Middle Segment? Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://twitter.com/ScrewAttack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared\r\nMr. West 24 Hour Marathon b-day challenge blog - http://bit.ly/GEAN3G","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"-merica-\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b92e1b3-9454-4ee5-bbdf-899b0393239c/sm/video_thumbnail_2165206.png","duration":2951,"publication_date":"2012-07-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070312","changefreq":"weekly","video":[{"title":"S1:E216 - Hard News 07/03/12","description":"Today on Hard News, the new Smash Bros. won't have a lot of new characters, an all digital EA, and Halo 4 will need a lot of space.\r\nSakurai feels the Super Smash Bros. roster is at its limit - http://www.screwattack.com/news/sakurai-feels-super-smash-bros-roster-its-limit\r\nEA to go entirely digital in the near future - http://www.screwattack.com/news/ea-go-entirely-digital-near-future\r\nHalo 4 will require a HDD or 8 GB flash drive for online play - http://www.screwattack.com/news/halo-4-will-require-hdd-or-8-gb-flash-drive-online-play\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-070312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3b1f265-993f-4a1b-ae41-97f098f248b1/sm/video_thumbnail_2165986.png","duration":134,"publication_date":"2012-07-03T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-endings","changefreq":"weekly","video":[{"title":"S1:E7 - Newsroom: Endings","description":"The ending is just the beginning of the end, anyway.\r\n(New episodes every Tuesday!)","player_loc":"https://roosterteeth.com/embed/newsroom-endings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3c961ff-7f64-40f8-95d9-945928c5621a/sm/video_thumbnail_2159671.jpg","duration":146,"publication_date":"2012-07-02T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-070212","changefreq":"weekly","video":[{"title":"S1:E215 - Hard News 07/02/12","description":"Today on Hard News, Gaikai is acquired, Seth Killian joins Sony, and Left 4 Dead 2's next DLC.\r\nSony buys Gaikai - http://www.screwattack.com/news/sony-spends-380-million-buy-gaikai\r\nSeth Killian to Sony - http://www.screwattack.com/news/seth-joins-sony-and-santa-monica-studios\r\nLeft 4 Dead 2's DLC - http://www.screwattack.com/news/left-4-dead-2-dlc-features-community-content-xbox-360\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-070212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15906b22-85eb-4ead-ae5e-0fec2ba8b8b1/sm/video_thumbnail_2156641.png","duration":150,"publication_date":"2012-07-02T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-chex-quest","changefreq":"weekly","video":[{"title":"S1:E366 - VGV - Chex Quest","description":"Chex started a phenomenon with the best game to ever come from inside a cereal box.\r\n ","player_loc":"https://roosterteeth.com/embed/vgv-chex-quest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15bb3f5c-7a2a-4b17-9e2d-33be9e37e9aa/sm/video_thumbnail_2115691.jpg","duration":107,"publication_date":"2012-07-02T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/its-official-you-can-find-more-screwattack-on-youtube","changefreq":"weekly","video":[{"title":"S1:E341 - It's official: You can find more ScrewAttack on YouTube","description":"Earliest today Craig made a big announcement on YouTube: we plan on using it :)\r\nStarting July 1st we'll begin uploading different peices of content to our YouTube channel.   Everything from the Video Game Vault to DEATH BATTLE!  Yep, every show.  I'm calling it \"ScrewTube\".  It kinda goes with the whole \"it's not a porno site\" thing...\r\nNow I KNOW a lot of you are thinking \"WTF?! Does this mean you're not going to upload it to ScrewAttack on the SpringBoard player anymore?\"  or \"Why do I even need to come to ScrewAttack.com anymore?!\"  To be short: this does NOT change anything as far as our videos go on ScrewAttack.com.  You will ALWAYS be able to find our content on ScrewAttack first.  For those of you who support us through the Advantage Program, don't worry you'll still get some content even more early and of course, all ad free :)  In addition to our content you'll still also be able to find news, trailers and of course the best community created videos and blogs online in one centralized place.\r\nAs for YouTube, you'll be seeing a lot of ScrewAttack videos added that you may have a) totally forgetten about b)never saw in the first place and/or c)think are ScrewAttack Classics.  Hey,  it may be old to you it may be brand new to someone else.\r\nAs I say in the video, we've been asked for a solid 6 years to upload to YouTube on a regular basis and we just hadn't had the right opportunity to do so.  While I've been... umm... less than happy with YouTube in the past I do see this as a great opportunity for both ScrewAttack and the YouTube community.  While YouTube is obviously the largest outlet,  in addition you'll also be able to find our content on Revision3.com and about 40 other video outlets online. Pretty crazy.\r\nThanks for all your support and being the best community online!\r\nIf you'd like to subscribe to our YouTube channel you can do so by clicking here.","player_loc":"https://roosterteeth.com/embed/its-official-you-can-find-more-screwattack-on-youtube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/375f361b-9e73-4b65-9ee5-ca8020f35dce/sm/video_thumbnail_2143786.jpg","duration":102,"publication_date":"2012-06-30T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-shaunterns-goodbye","changefreq":"weekly","video":[{"title":"S1:E169 - Clip of the Week - Shauntern's Goodbye","description":"Sometimes, you want to keep an intern, but you can't. Sometimes, you just have to let them go...\r\nScrewAttack's Facebook\r\nScrewAttack's Twitter\r\nNick's Facebook\r\nNick's Twitter\r\n \r\npsst....","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-shaunterns-goodbye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f6db975-c524-4815-ac46-51a34a51ec4f/sm/CotWshaunternicon.jpg","duration":164,"publication_date":"2012-06-29T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-iron-man-of-screwattack-japan-edition-is-around-the-corner","changefreq":"weekly","video":[{"title":"S1:E340 - The Iron Man of ScrewAttack: Japan Edition is Around the Corner","description":"The entire crew will be facing off in an all out battle of some of the strangest games ever for a chance to go to Tokyo Game Show. Who are you rooting for?","player_loc":"https://roosterteeth.com/embed/the-iron-man-of-screwattack-japan-edition-is-around-the-corner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7f9038a-7016-4d6e-aadc-af967cd28d9f/sm/video_thumbnail_2136396.png","duration":77,"publication_date":"2012-06-29T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062912","changefreq":"weekly","video":[{"title":"S1:E214 - Hard News 06/29/12","description":"Today on Hard News, Radical gets downsized, MiiVerse will be free, and the WatchDogs email leak.\r\nRadical Entertainment broken apart by Activision - http://www.screwattack.com/news/radical-entertainment-broken-apart-activision\r\nWii U online service to be free, but we won’t know anymore until Fall - http://www.screwattack.com/news/wii-u-online-service-be-free-we-won%E2%80%99t-know-anymore-until-fall\r\nWatchdogs' viral marketing campaign makes a mistake - http://www.screwattack.com/news/watchdogs-viral-marketing-campaign-makes-mistake","player_loc":"https://roosterteeth.com/embed/hard-news-062912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23946208-fa74-4a75-b452-782b6b5d64f9/sm/HardNews0629.png","duration":138,"publication_date":"2012-06-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-glitch","changefreq":"weekly","video":[{"title":"S1:E7 - The Best EVER: Glitch","description":"What is your best glitch ever?","player_loc":"https://roosterteeth.com/embed/the-best-ever-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5611aeaa-ce2a-4d76-85b8-b13aa6c41a0a/sm/video_thumbnail_2130756_1.jpg","duration":277,"publication_date":"2012-06-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062812","changefreq":"weekly","video":[{"title":"S1:E213 - Hard News 06/28/12","description":"Today on Hard News, The Last of Us will get co-op, Nuketown returns, and Half Life 3 concept art.\r\nNo co-op in main campaign of The Last of Us - http://www.screwattack.com/news/no-co-op-main-campaign-last-us\r\n[Rumor] COD: BlOps 2 will bring Nuketown to the future - http://www.screwattack.com/news/rumor-cod-blops-2-will-bring-nuketown-future\r\nHalf Life 2 Episode 3 official concept art leaked - http://www.screwattack.com/news/rumor-half-life-2-episode-3-official-concept-art-leaked\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-062812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4abea9b-8771-4e9b-b985-cc49912a2c40/sm/HardNews0628.png","duration":148,"publication_date":"2012-06-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-ermahgerd-lehren-wernt-sterp-lerpheeng","changefreq":"weekly","video":[{"title":"S1:E339 - [Advantage] Ermahgerd! Lehren wern't sterp lerpheeng!","description":"Lauren's discovery of the \"ERMAHGERD!\" meme went on for so long that we had to make it its own video.\r\nSee the rest of the outtakes here.","player_loc":"https://roosterteeth.com/embed/advantage-ermahgerd-lehren-wernt-sterp-lerpheeng","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/426fe1b0-c476-475b-8199-5fa38e0a07a4/sm/video_thumbnail_2113861.jpg","duration":392,"publication_date":"2012-06-27T10:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-iron-man-of-screwattack-japan-edition-games-announcement","changefreq":"weekly","video":[{"title":"S1:E338 - The Iron-Man of ScrewAttack: Japan Edition games announcement!","description":"Go behind the scenes of a ScrewAttack production meeting to find out what games the crew could potentially be competing on for the opportunity to go to Tokyo for ScrewAttack's coverage TGS! Remember, the competition runs July 9th through 13th LIVE at 3pm CT.","player_loc":"https://roosterteeth.com/embed/the-iron-man-of-screwattack-japan-edition-games-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89e3e9c0-a658-44da-bcb4-ae7983fa484e/sm/video_thumbnail_2112781.jpg","duration":288,"publication_date":"2012-06-27T07:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-062712","changefreq":"weekly","video":[{"title":"S1:E337 - SideScrollers Extended 06/27/12","description":"Extra SideScrollers for Advantage members!\r\nNot an Advantage Member?  Go here to get the details and receive all the benefits.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-062712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deb40900-1127-4bbe-a557-c445459fc48a/sm/video_thumbnail_2105461.jpg","duration":526,"publication_date":"2012-06-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"zombie-mickey-mouse\"","changefreq":"weekly","video":[{"title":"S1:E70 - SideScrollers - \"Zombie Mickey Mouse\"","description":"Get the audio version here - http://bit.ly/MXPXRH\r\nSideScrollers Extended can be watched here! - http://bit.ly/NIGKRY\r\nDesign the Next Mario Party 5 After Dark Template - http://bit.ly/MEqEnM\r\n \r\nWatch our newest videos by clicking the links below!\r\nNewsroom: Blown Blown (feat. brentalfloss) - http://bit.ly/LnjvYO\r\nWhich ScrewAttack Crew Member Gets to Go to Japan for TGS? - http://bit.ly/OqEUYu\r\nClip of the Week - Taken - http://bit.ly/Loy0C7\r\nThe Best EVER: Secret - http://bit.ly/LbLqeb\r\nGame Theory: The Problems with Peach - http://bit.ly/Ldwiin\r\n \r\nNew T-Shirts! - http://bit.ly/bI1yjF\r\n \r\nHave a question for the Middle Segment?  Post it on our wall - http://bit.ly/ODx8e3\r\nWant to submit a birthday picture? Send an email to Chad@ScrewAttack.com\r\n \r\nFollow us on Twitter!\r\nCraig - http://twitter.com/ScrewAttack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"zombie-mickey-mouse\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcf8bc9b-34b9-4fcc-933a-2961c45eeb99/sm/video_thumbnail_2105231_0.jpg","duration":3252,"publication_date":"2012-06-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062612","changefreq":"weekly","video":[{"title":"S1:E211 - Hard News 06/26/12","description":"Today on Hard News, the Resistance series might end, we can expect more Dragon's Dogma, and Final Fantasy VII is less likely to be remade.\r\nThe Resistance franchise may be finished - http://www.screwattack.com/news/resistance-franchise-may-be-finished\r\n Dragon's Dogma sells well, sequels incoming - http://www.screwattack.com/news/dragon’s-dogma-sells-well-sequel-works\r\nFinal Fantasy VII would only be remade if it is dethroned - http://www.screwattack.com/news/final-fantasy-vii-would-only-be-remade-if-it-dethroned\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-062612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/661514ad-0c10-4ff2-b369-2ecdf89e2f75/sm/video_thumbnail_2107621.jpg","duration":130,"publication_date":"2012-06-26T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-clip-of-the-week-outtakes-taken","changefreq":"weekly","video":[{"title":"S1:E336 - [Advantage] Clip of the Week Outtakes - Taken","description":"Drake learns about this \"acting\" thing, Chad has a twisted imagination, and Craig (once again) will not stop laughing.\r\nSee the original Clip of the Week here!\r\nWatch more behind-the-scenes stuff for this episode here!","player_loc":"https://roosterteeth.com/embed/advantage-clip-of-the-week-outtakes-taken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a536ac8-b28d-4593-8611-10aa30e3a6d6/sm/video_thumbnail_2103361.jpg","duration":478,"publication_date":"2012-06-25T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/which-screwattack-crew-member-gets-to-go-to-japan-for-tgs","changefreq":"weekly","video":[{"title":"S1:E335 - Which ScrewAttack Crew Member Gets to Go to Japan for TGS?","description":"Craig thought up the best and only fair way to decide!  Tune in July 9th through 13th LIVE at 3pm CST to watch the competition go down!","player_loc":"https://roosterteeth.com/embed/which-screwattack-crew-member-gets-to-go-to-japan-for-tgs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a44b788a-a719-4b78-aae0-d278e72782c3/sm/video_thumbnail_2102326.jpg","duration":165,"publication_date":"2012-06-25T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-blown-blown-feat-brentalfloss","changefreq":"weekly","video":[{"title":"S1:E6 - Newsroom: Blown Blown (feat. brentalfloss)","description":"These hot rhymes are going portable to the 3rd, G.\r\n(New episode every Tuesday!!)","player_loc":"https://roosterteeth.com/embed/newsroom-blown-blown-feat-brentalfloss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4af8913f-4dae-478e-8ab5-c708d253bd76/sm/video_thumbnail_2100261.jpg","duration":159,"publication_date":"2012-06-25T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062512","changefreq":"weekly","video":[{"title":"S1:E210 - Hard News 06/25/12","description":"Today on Hard News, we're a long way from Farcry 3, Resident Evil 6 is special, and it's almost time to meet the Pyro.\r\nFar Cry 3 delay - http://www.screwattack.com/news/ubisoft-delays-far-cry-3-early-december\r\nResident Evil 6 Collector's Edition - http://www.screwattack.com/news/capcom-reveals-re6-ce-europe\r\nMeet the Pyro - http://www.screwattack.com/news/pyromania-full-swing-over-valve\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-062512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e41fbb2a-066b-4e6e-8dbb-6ddb4e5dd064/sm/video_thumbnail_2100486.png","duration":140,"publication_date":"2012-06-25T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-taken","changefreq":"weekly","video":[{"title":"S1:E168 - Clip of the Week - Taken","description":"When one of our own is taken hostage, we know exactly how to respond...\r\nScrewAttack's Twitter\r\n\tScrewAttack's Facebook\r\n\tNick's Twitter\r\n\tNick's Facebook\r\nSuggest clips in the Clip of the Week suggestion thread or the wall!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-taken","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cace9d98-9649-43e8-acc3-50dbc3fe64d0/sm/CotWthumb.jpg","duration":258,"publication_date":"2012-06-22T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062212","changefreq":"weekly","video":[{"title":"S1:E209 - Hard News 06/22/12","description":"Today on Hard News, the 3DS XL, the new Nintendo Direct stream, and a Mario Marathon for charity.\r\nCome hang out with Reggie on Nintendo Direct - http://www.screwattack.com/news/come-hang-out-reggie-nintendo-direct\r\nNintendo Direct 2012 - http://www.screwattack.com/events/nintendo-direct-2012\r\n[Live] Mario Marathon 5 is starting and cannot be stopped! - http://www.screwattack.com/news/live-mario-marathon-5-starting-and-cannot-be-stopped\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-062212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44d7ddd7-965b-4ee4-9a05-376a147a5fa9/sm/video_thumbnail_2081551.jpg","duration":137,"publication_date":"2012-06-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-bryans-best-ever-secret","changefreq":"weekly","video":[{"title":"S1:E334 - [Advantage] Bryan's Best EVER Secret","description":"A deleted scene from the latest Best EVER episode!","player_loc":"https://roosterteeth.com/embed/advantage-bryans-best-ever-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f937c16a-d7d4-491e-9c7f-031b4ca98719/sm/video_thumbnail_2080421.jpg","duration":64,"publication_date":"2012-06-22T09:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-secret","changefreq":"weekly","video":[{"title":"S1:E6 - The Best EVER: Secret","description":"What is your best ever video game secret?","player_loc":"https://roosterteeth.com/embed/the-best-ever-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c78af24-ac76-4d76-a8f0-88e4991d2f69/sm/video_thumbnail_2077601.jpg","duration":225,"publication_date":"2012-06-21T23:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-video-games-on-screwattack-com-for-free","changefreq":"weekly","video":[{"title":"S1:E333 - Play Video Games on ScrewAttack.com for FREE","description":"No super-computer required, just click and play!","player_loc":"https://roosterteeth.com/embed/play-video-games-on-screwattack-com-for-free","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/227935a5-5ac1-45e4-a5ce-bde8f01d3a32/sm/video_thumbnail_2076451_0.jpg","duration":17,"publication_date":"2012-06-21T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-banned-unofficial-gaikai-promo","changefreq":"weekly","video":[{"title":"S1:E332 - The Banned Unofficial Gaikai Promo","description":"Sometimes Drake gets a little too mouthy. Featuring the mad singing talent of our intern ShaunTern!\r\nThis \"promo\" is not officially associated with Gakai in any way. This is just what happens when you tell Drake to \"be edgy.\" AKA a disaster.","player_loc":"https://roosterteeth.com/embed/the-banned-unofficial-gaikai-promo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bf9a13b-70d5-4926-89cf-2ad4631fafe9/sm/video_thumbnail_2076531.jpg","duration":27,"publication_date":"2012-06-21T21:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062112","changefreq":"weekly","video":[{"title":"S1:E208 - Hard News 06/21/12","description":"Today on Hard News, Final Fantasy VII might come to steam, digital copies of Diablo III are on probation, and the Saints Row: The Third DLC has been canceled.\r\nFF7 finally coming to Steam? - http://www.screwattack.com/news/ff7-finally-coming-steam\r\nBuy Diablo 3 digitally and you might have to wait 72 Hours to fight Diablo... WHAT!? - http://www.screwattack.com/news/buy-diablo-3-digitally-and-you-might-have-wait-72-hours-fight-diablo-what\r\nSaints Row: Enter The Dominatrix now part of Saints Row 4 - http://www.screwattack.com/news/saints-row-enter-dominatrix-now-part-saints-row-4\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-062112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/787c07dd-3bcb-4526-aad1-831ed08a0e96/sm/video_thumbnail_2073296.jpg","duration":150,"publication_date":"2012-06-21T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-jazz-jackrabbit","changefreq":"weekly","video":[{"title":"S1:E365 - VGV - Jazz Jackrabbit","description":"Who's behind this jazzy PC platformer? Why, the master of farts himself, Cliffy B of course!","player_loc":"https://roosterteeth.com/embed/vgv-jazz-jackrabbit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8473cef3-56de-4854-95ee-79f348ce2f51/sm/video_thumbnail_2115211.jpg","duration":102,"publication_date":"2012-06-21T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-062012","changefreq":"weekly","video":[{"title":"S1:E207 - Hard News 06/20/12","description":"Today on Hard News, Metal Gear Solid 5, Sonic Adventure 2 HD, and Okami HD are all things!\r\n[Rumor] Kojima sneaks Solid Snake into FOX Engine for MGS5 - http://www.screwattack.com/news/rumor-kojima-sneaks-solid-snake-fox-engine-mgs5-0/\r\nSonic Adventure 2 leaks on Xbox.com for October release - http://www.screwattack.com/news/sonic-adventure-2-leaks-xboxcom-october-release\r\nOkami HD announced for PS3, will be hitting Japan November 1st - http://www.screwattack.com/news/okami-hd-announced-ps3-will-be-hitting-japan-november-1st\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-062012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdc4f0fc-e05e-4de4-a5f4-79f8723753ed/sm/video_thumbnail_2065996.jpg","duration":154,"publication_date":"2012-06-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-062012","changefreq":"weekly","video":[{"title":"S1:E331 - SideScrollers Extended 06/20/12","description":"Extra SideScrollers for Advantage members!\r\nNot an Advantage Member?  Go here to get the details and receive all the benefits.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-062012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d991918e-5e9b-44a4-9f23-a3b8dbe33c91/sm/video_thumbnail_1984851.png","duration":431,"publication_date":"2012-06-19T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"alien-death-ray\"","changefreq":"weekly","video":[{"title":"S1:E69 - SideScrollers - \"Alien Death Ray\"","description":"Get the audio version here - bit.ly/Mcr4WN\r\nSideScrollers Extended can be watched here! - bit.ly/L1FuVb\r\nGet the full story on the EXP bar - bit.ly/LNwm6d\r\nHelp sign the petition - chn.ge/NntP8W\r\nWatch our newest videos by clicking the links below!\r\nNewsroom: Ramen - bit.ly/MJQSp1\r\nClip of the Week - SiNG - bit.ly/LNAgj4\r\nCraig Wants Some - bit.ly/LwKaIj\r\nE3 2012 Cosplay - bit.ly/KFtslS\r\nA-kon 23 - Anime Cosplay - http://bit.ly/MbxUca\r\nGot a question to ask? Post it on our wall.\r\nNew T-Shirts! - bit.ly/bI1yjF\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"alien-death-ray\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfbd06c4-d484-48ff-b5c1-47846b286708/sm/video_thumbnail_1984761.png","duration":2737,"publication_date":"2012-06-19T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061912","changefreq":"weekly","video":[{"title":"S1:E206 - Hard News 06/19/12","description":"Today on Hard News, Metal Gear: Rising is getting DLC, an update on StarCraft: Ghost, and Seth Killian leaves Capcom.\r\nMetal Gear Rising: Revengeance getting DLC - http://www.screwattack.com/news/metal-gear-rising-revengeance-getting-dlc\r\nRemember StarCraft: Ghost?! - http://www.screwattack.com/news/remember-starcraft-ghost\r\nSeth Killian departs Capcom - http://www.screwattack.com/news/seth-killian-departs-capcom\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-061912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f81873b-40e6-46e0-a230-0f4a5fa6c684/sm/video_thumbnail_1988821.png","duration":119,"publication_date":"2012-06-19T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-ramen","changefreq":"weekly","video":[{"title":"S1:E5 - Newsroom: Ramen","description":"It comes with a side order of ice.\r\n(New episodes every Tuesday!) ","player_loc":"https://roosterteeth.com/embed/newsroom-ramen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98bbc28e-d358-4aad-83e4-dfc7b065c0ab/sm/video_thumbnail_1948751.jpg","duration":165,"publication_date":"2012-06-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-sing","changefreq":"weekly","video":[{"title":"S1:E330 - [Advantage Content] Clip of the Week Outtakes - SiNG","description":"Sean and Craig make some sexual statements, Ben is too good at metal vocals, and Craig attempts to yodel. We're very sorry to our German g1s.\r\nSee the original Clip of the Week here.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-sing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9b4c350-a692-4628-9aec-9de949659696/sm/video_thumbnail_1935551.jpg","duration":298,"publication_date":"2012-06-18T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061812","changefreq":"weekly","video":[{"title":"S1:E205 - Hard News 06/18/12","description":"Today on Hard News, an Ascension Collector's Edition, the Swarm is almost complete, and Australia matures.\r\nGod of War Ascension Collector's Edition - http://www.screwattack.com/news/god-war-ascension-collector%E2%80%99s-edition-slips-amazon\r\nHeart of the Swarm status - http://www.screwattack.com/news/blizzard-reveals-heart-swarm-99-complete\r\nAustralia gets R18+ rating - http://www.screwattack.com/news/it-sucks-less-be-australian-gamer\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-061812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067c11ed-9837-4d1e-82db-751efdb37d41/sm/video_thumbnail_1942566.png","duration":146,"publication_date":"2012-06-18T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-sing","changefreq":"weekly","video":[{"title":"S1:E167 - Clip of the Week - SiNG","description":"You know what the problem with SiNG is? It lacks mass appeal. We're fixing that RIGHT NOW.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-sing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eba530e-1c9f-4e07-bb23-9a68ff0ed6f6/sm/cotwthumb.jpg","duration":179,"publication_date":"2012-06-15T22:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061512","changefreq":"weekly","video":[{"title":"S1:E204 - Hard News 06/15/12","description":"Today on Hard News, The Old Republic might go free to play, Neversoft's FPS, and Korea is banning e-trade.\r\nStar Wars MMO might be going F2P  - http://www.screwattack.com/news/star-wars-mmo-might-be-going-f2p\r\nNeversoft begins its Call of Duty - http://www.screwattack.com/node/1805051\r\nSouth Korea wants trading and farming digital content to be illegal - http://www.screwattack.com/news/south-korea-wants-trading-and-farming-digital-content-be-illegal\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-061512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfb28f1a-77f3-4aec-b8a8-a3455a1a2ce7/sm/video_thumbnail_1805996.png","duration":145,"publication_date":"2012-06-15T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-sean-after-work","changefreq":"weekly","video":[{"title":"S1:E329 - [Advantage] Sean After Work","description":"Our News Director has some weird out-of-office hobbies...","player_loc":"https://roosterteeth.com/embed/advantage-sean-after-work","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/839f8610-a884-4817-bd66-ad75b43c1270/sm/video_thumbnail_1794611.jpg","duration":115,"publication_date":"2012-06-15T10:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-wants-some","changefreq":"weekly","video":[{"title":"S1:E328 - Craig Wants Some","description":"Find all this and more at www.ScrewAttackStore.com while supplies last!","player_loc":"https://roosterteeth.com/embed/craig-wants-some","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d869cd5a-aa80-4190-95fd-1abf3c38614d/sm/video_thumbnail_1724776.jpg","duration":40,"publication_date":"2012-06-14T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061412","changefreq":"weekly","video":[{"title":"S1:E203 - Hard News 06/14/12","description":"Today on Hard News, the Wii U will support free to play games, the Kirby 25th anniversary games have been revealed, and EA wants more reboots.\r\nWii U aims for a future in free to play and microtransactions space - http://www.screwattack.com/news/wii-u-aims-future-free-play-and-microtransactions-space\r\nKirby Anniversary Collection games announced - http://www.screwattack.com/news/kirby-anniversary-collection-games-announced\r\nEA reboots see highs and lows with room to grow - http://www.screwattack.com/news/ea-reboots-see-highs-and-lows-room-grow\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-061412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11a8b12b-02ee-4056-bb81-0663a7bf9bf5/sm/video_thumbnail_1707166.png","duration":145,"publication_date":"2012-06-14T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061312","changefreq":"weekly","video":[{"title":"S1:E202 - Hard News 06/13/12","description":"Today on Hard News, Battlefield Premium rips off Australians, Nintendo can't decide on Zelda remakes, and the Mass Effect 3 ending debate comes to a close.\r\nWah Wah! EA mucks up sale of Battlefield Premium in AU - http://www.screwattack.com/news/wah-wah-ea-mucks-sale-battlefield-premium-au\r\nNintendo can’t decide on a new Zelda for 3DS - http://www.screwattack.com/news/nintendo-can%E2%80%99t-decide-new-zelda-3ds\r\nBioWare and EA cleared of ME3 advertising kerfuffle - http://www.screwattack.com/news/bioware-and-ea-cleared-me3-advertising-kerfuffle\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-061312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f4d8428-3f87-4609-abf0-8a1e13f4afec/sm/video_thumbnail_1639766.png","duration":149,"publication_date":"2012-06-13T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-39","changefreq":"weekly","video":[{"title":"S1:E327 - E3 2012 - Lost Planet 3 Gameplay","description":"Lost Planet is coming back for another game, does it looks like this one will make up for Lost Planet 2?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07c4a76d-1db9-452d-9f87-4d9c2f96a044/sm/video_thumbnail_1632631.jpg","duration":125,"publication_date":"2012-06-13T11:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-41","changefreq":"weekly","video":[{"title":"S1:E326 - E3 2012 - Quantum Conundrum Gameplay","description":"You heard what Sean thought of the Portal creator's new game, now see it in action!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a34a646-3673-486c-ab46-997a7beb83af/sm/video_thumbnail_1632651.jpg","duration":128,"publication_date":"2012-06-13T10:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-40","changefreq":"weekly","video":[{"title":"S1:E325 - E3 2012 - Quantum Conundrum Impressions","description":"Quantum Conundrum is the latest game from the creator of Portal, Kim Swift, and what did Sean think of it?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3eac57d5-6dad-466c-9e12-5253fd624c46/sm/video_thumbnail_1632086.jpg","duration":68,"publication_date":"2012-06-13T10:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-061312","changefreq":"weekly","video":[{"title":"S1:E324 - SideScrollers Extended 06/13/12","description":"Ten more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-061312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad9497d9-f752-4913-ad4b-54e05c3844a9/sm/video_thumbnail_1558731.png","duration":516,"publication_date":"2012-06-12T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"do-the-vita\"","changefreq":"weekly","video":[{"title":"S1:E68 - SideScrollers - \"Do the Vita\"","description":"Check out everything E3 on http://www.ScrewAttack.com\r\nGet the audio version here - http://bit.ly/MMJ0r5\r\nSideScrollers Extended can be watched here - http://www.screwattack.com/shows/originals/exclusive-advantage-content/sidescrollers-extended-061312\r\nContest Winners\r\n1st: blackmaniac - http://www.youtube.com/watch?v=sem_9Gkswk8\r\n2nd: Museyfied - http://www.youtube.com/watch?v=QdhbjfbPd90\r\n3rd: Ribster - http://www.youtube.com/watch?v=gGKYo-wA790\r\ng1 After Dark Live Stream - http://www.youtube.com/watch?v=9X09tO1GdKo\r\nBe sure to \"Like\" our video, Subscribe, and share around!\r\nWant to ask us a video question? Post it on our wall! - http://www.screwattack.com/user/sidescrollers\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/StutteringCraig\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"do-the-vita\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a60a4e2f-4beb-452c-b9ff-5501a74980b5/sm/video_thumbnail_1558746.png","duration":2609,"publication_date":"2012-06-12T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-0612124","changefreq":"weekly","video":[{"title":"S1:E201 - Hard News 06/12/124","description":"Today on Hard News, Friend Codes return, Silicon Knights is laying off, and the 3DS might not get a redesign.\r\nWii U Achievements aren’t guaranteed and Friend Codes kind of return - http://www.screwattack.com/news/wii-u-achievements-aren%E2%80%99t-guaranteed-and-friend-codes-kind-return\r\nSilicon Knights lay-offs and debunked rumors - http://www.screwattack.com/news/silicon-knights-lay-offs-and-debunked-rumors\r\nMiyamoto claims the current 3DS design “is the best for this generation\" - http://www.screwattack.com/news/miyamoto-claims-current-3ds-design-%E2%80%9C-best-generation\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-0612124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afed2ea2-87de-48c4-b37b-933a7e879f33/sm/video_thumbnail_1561636.png","duration":133,"publication_date":"2012-06-12T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtake-extravapalooza","changefreq":"weekly","video":[{"title":"S1:E323 - [Advantage Content] Clip of the Week Outtake Extravapalooza","description":"Outtakes from three separate Clip of the Weeks all in one video!\r\nWatch Everything Is Better With Lasers\r\nWatch Sony Can't Keep A Secret\r\nWatch Tommy's Treehouse\r\nClip of the Week suggestion thread!","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtake-extravapalooza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/746d7430-4f85-48ad-bfff-e2a52410b7df/sm/video_thumbnail_1483961.jpg","duration":320,"publication_date":"2012-06-11T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-e3-party","changefreq":"weekly","video":[{"title":"S1:E4 - Newsroom: E3 Party","description":"I guess the games were pretty cool, too.","player_loc":"https://roosterteeth.com/embed/newsroom-e3-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d3ee0e1-ae20-47ac-810e-a573cd37e860/sm/video_thumbnail_1489536.jpg","duration":192,"publication_date":"2012-06-11T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-061112","changefreq":"weekly","video":[{"title":"S1:E200 - Hard News 06/11/12","description":"What were the things that we really liked about E3 2012?\r\nhttp://www.screwattack.com/news/nine-reasons-we-loved-e3-2012\r\nToday on Hard News Nintendo might have canned Eternal Darkness 2, Dead Island is getting a sequel, Diablo 3 is having some issues.\r\nNintendo cancels Eternal Darkness 2 - http://www.vg247.com/2012/06/11/rumour-nintendo-cancels-eternal-darkness-2-following-silicon-knights-lawsuit-loss/\r\nDead Island: Riptide announced - http://www.vg247.com/2012/06/05/dead-island-riptide-announced-more-info-coming-this-summer/\r\nDiablo 3 servers issues - http://www.eurogamer.net/articles/2012-06-11-diablo-3-asian-servers-offline-after-item-duplication-exploit\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-061112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/677b041a-0719-41dd-b081-93e083478060/sm/video_thumbnail_1484051.png","duration":162,"publication_date":"2012-06-11T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-42","changefreq":"weekly","video":[{"title":"S1:E322 - Crysis 3 - First Impressions","description":"Is this upcoming sci-fi shooter worth keeping an eye on? Sean has the inside scoop.","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37940a83-e362-480d-9c6e-aacfde397578/sm/video_thumbnail_1354071.jpg","duration":70,"publication_date":"2012-06-10T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-43","changefreq":"weekly","video":[{"title":"S1:E321 - Sly Cooper: Thieves in Time First Impressions","description":"Did Sony's thieving raccoon steal the show once again?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c969d54a-c8db-4b72-9afc-8fd5f02e0c89/sm/video_thumbnail_1183726.jpg","duration":54,"publication_date":"2012-06-09T09:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060812","changefreq":"weekly","video":[{"title":"S1:E199 - Hard News 06/08/12","description":"Today on Hard News, E3 might get relocated, info on Zelda Wii U, and guess who won E3.\r\nE3 may be leaving the LA area next year - http://www.screwattack.com/news/e3-may-be-leaving-la-area-next-year\r\nMiyamoto talks Zelda Wii U and casual games - http://www.screwattack.com/news/miyamoto-talks-zelda-wii-u-and-casual-games\r\nAngry Birds HD flying over to various consoles - http://www.screwattack.com/news/angry-birds-hd-flying-over-various-consoles","player_loc":"https://roosterteeth.com/embed/hard-news-060812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5f66400-473e-4480-8c3e-40c5425eb02e/sm/video_thumbnail_1054776.png","duration":115,"publication_date":"2012-06-08T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060712","changefreq":"weekly","video":[{"title":"S1:E198 - Hard News 06/07/12","description":"Today on Hard News, Alucard returns, twenty five Vita games have been forgotten, and SwapNote gets censored.\r\nIt's a Belmont Reunion - http://www.screwattack.com/trailers/its-belmont-reunion\r\nSony actually has 25 new Vita games...but forgot to tell us. - http://www.screwattack.com/news/sony-actually-has-25-new-vita-gamesbut-forgot-tell-us\r\nMiiverse messages will be moderated before they're posted - http://www.screwattack.com/news/miiverse-messages-will-be-moderated-theyre-posted","player_loc":"https://roosterteeth.com/embed/hard-news-060712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fe2bdcd-e585-4213-833a-5ee99df96a23/sm/video_thumbnail_916391.png","duration":105,"publication_date":"2012-06-07T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-44","changefreq":"weekly","video":[{"title":"S1:E320 - Castlevania Mirror of Fate First Impressions","description":"Castlevania Mirror of Fate First Impressions","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b88626ee-37f7-443b-8ea1-d85a638217cb/sm/video_thumbnail_914406.jpg","duration":55,"publication_date":"2012-06-07T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060612","changefreq":"weekly","video":[{"title":"S1:E197 - Hard News 06/06/12","description":"Today on Hard News, The Last Guardian is still in development, Miyamoto's new IP, and the Wii U is backwards compatible.\r\nThe Last Guardian not canned yet - http://www.screwattack.com/news/last-guardian-not-canned-yet\r\nMiyamoto's new IP is still a long way off - http://www.screwattack.com/news/miyamotos-new-ip-still-long-way\r\nWii U to be backwards compatible with old Virtual Console titles - http://www.screwattack.com/news/wii-u-be-backwards-compatible-old-virtual-console-titles","player_loc":"https://roosterteeth.com/embed/hard-news-060612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d769349c-bc22-45c5-aa1e-0ab4e14d35a9/sm/video_thumbnail_881576.png","duration":117,"publication_date":"2012-06-06T15:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-45","changefreq":"weekly","video":[{"title":"S1:E319 - Metal Gear Rising: Revengeance First Impressions","description":"Should Hideo Kojima call this Ninja Raiden?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12ec4f70-a88c-4aea-8409-f2d3bc50c4a6/sm/video_thumbnail_877066.jpg","duration":60,"publication_date":"2012-06-06T12:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-46","changefreq":"weekly","video":[{"title":"S1:E318 - Sonic & All-Stars Racing Transformed Gameplay","description":"Why don't these cars exist in real life yet?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/677e1203-d4d6-44f4-a740-655c14d57a8c/sm/video_thumbnail_867856.jpg","duration":162,"publication_date":"2012-06-06T10:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"live-at-a-kon\"","changefreq":"weekly","video":[{"title":"S1:E67 - SideScrollers - \"Live At A-Kon\"","description":"We were at A-Kon this past weekend at at E3 right now!","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"live-at-a-kon\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb9318f3-8322-4022-9207-0c05da194a47/sm/video_thumbnail_765691.png","duration":3159,"publication_date":"2012-06-05T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-47","changefreq":"weekly","video":[{"title":"S1:E317 - Sonic & All-Stars Racing Transformed - Sean's First Impressions","description":"Planes? Boats? Cars? Why not all three in one race?","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b912e93a-0432-4326-b4ce-31e98aaf96ae/sm/video_thumbnail_754926.jpg","duration":49,"publication_date":"2012-06-05T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060512","changefreq":"weekly","video":[{"title":"S1:E196 - Hard News 06/05/12","description":"Today on Hard News, more E3 coverage!\r\nFinally! A new Pikmin game! - http://www.screwattack.com/trailers/finally-new-pikmin-game\r\nZombi U Shows off the Game Pad - http://www.screwattack.com/trailers/zombi-u-shows-game-pad\r\nWatch_Dogs, a New Ubisoft IP - http://www.screwattack.com/trailers/watchdogs-new-ubisoft-ip\r\nLast of Us New Gameplay - http://www.screwattack.com/trailers/last-us-new-gameplay","player_loc":"https://roosterteeth.com/embed/hard-news-060512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6449fda9-1c2e-4005-bcf6-ad6badd38d53/sm/video_thumbnail_731291.jpg","duration":155,"publication_date":"2012-06-05T16:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/whats-activision-got-in-store-for-2012","changefreq":"weekly","video":[{"title":"S1:E316 - What's Activision got in store for 2012?","description":"Activision goes big, and being one of the biggest publishers kind of allows you to do that. What big plans and games do they have for the second half of 2012?","player_loc":"https://roosterteeth.com/embed/whats-activision-got-in-store-for-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ec9e96b-12d3-467d-8ff7-6366b7b07023/sm/video_thumbnail_529821.jpg","duration":172,"publication_date":"2012-06-05T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/getting-the-scoop-on-skylanders-giants-big-additions","changefreq":"weekly","video":[{"title":"S1:E315 - Getting the scoop on Skylanders Giants' big additions","description":"Skylanders was one of the biggest games and toy lines of 2011, how do the people at Toys for Bob plan to improve on that in Skylanders Giants?","player_loc":"https://roosterteeth.com/embed/getting-the-scoop-on-skylanders-giants-big-additions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bd2d7ab-0e2d-4794-9709-61c1199e23c0/sm/video_thumbnail_529811.jpg","duration":281,"publication_date":"2012-06-05T06:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060412","changefreq":"weekly","video":[{"title":"S1:E195 - Hard News 06/04/12","description":"Today on Hard News, E3!\r\nHalo 4 trailer - http://www.screwattack.com/trailers/halo-4-epic-debut-trailer\r\nGears of War Judgement trailer - http://www.screwattack.com/trailers/will-new-gears-war-be-more-same\r\nDead Space 3 trailer - http://www.screwattack.com/trailers/dead-space-3-isnt-space\r\n \r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-060412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baf51c8d-5e1e-47bb-ab5f-df83f91162d2/sm/video_thumbnail_607086.jpg","duration":135,"publication_date":"2012-06-04T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-2012-overtime","changefreq":"weekly","video":[{"title":"S1:E314 - E3 2012 Overtime!","description":" It's time for everyone's favorite E3 pre-show, Overtime! This year's special guests include Geoff Keighley's best friend and Nintendo of America President Reggie Fils-Aime and super star rapper Eminem.","player_loc":"https://roosterteeth.com/embed/e3-2012-overtime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4245be82-5a94-4dc5-bc5f-7219d7298c7f/sm/video_thumbnail_381496.jpg","duration":227,"publication_date":"2012-06-01T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-060112","changefreq":"weekly","video":[{"title":"S1:E194 - Hard News 06/01/12","description":"Reviews, we do them!\r\nGame of Thrones - http://www.screwattack.com/reviews/review-game-thrones\r\nDragon's Dogma - http://www.screwattack.com/reviews/review-dragons-dogma\r\nToday on Hard News the latest on everyone's lawsuits, the big news from Konami's conference, and the new Star Wars game.\r\nActivision and Infinity Ward's lawsuit - http://www.vg247.com/2012/05/31/activision-and-infinity-ward-reach-settlement-terms-confidential/\r\nNew Castlevania: Lords of Shadow - http://www.eurogamer.net/articles/2012-06-01-castlevania-lords-of-shadow-2-announced-with-debut-cgi-trailer\r\nStar Wars 1313 announced - http://www.gameinformer.com/b/news/archive/2012/06/01/star-wars-1313-announced.aspx\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-060112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/396bd92a-498e-4059-a230-8539811a75cd/sm/video_thumbnail_360512.jpg","duration":168,"publication_date":"2012-06-01T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-does-not-have-to-be-a-journey","changefreq":"weekly","video":[{"title":"S1:E313 - E3 Does Not Have to Be a Journey ","description":"You can get all your live press conferences, news, trailers, first impressions, and recaps all in one place","player_loc":"https://roosterteeth.com/embed/e3-does-not-have-to-be-a-journey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/726e2643-cfdf-4654-a902-ff5d035f768d/sm/video_thumbnail_335186.png","duration":57,"publication_date":"2012-05-31T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-10","changefreq":"weekly","video":[{"title":"2015:E248 - Let's Watch - (Until Dawn Part 6)","description":"Achievement Hunter continues it's nightmare filled adventure into Until Dawn. How much longer until dawn again","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35579ff4-bfd3-455a-bd02-2781dd427b24/sm/2013912-1442012985054-LP_UntilDawn_Part6.jpg","duration":3927,"publication_date":"2015-09-11T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-9","changefreq":"weekly","video":[{"title":"2015:E246 - Let's Watch - Until Dawn (Part 5)","description":"We continue our adventure in \"What would happen if Achievement Hunter ran the lives of 7 teenagers\" ... let's be honest, it's not looking too good.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec94ac35-9003-450a-92ca-fc236403c4fa/sm/2013912-1441923530688-UntilDawn_Part5_thumb.jpg","duration":2845,"publication_date":"2015-09-11T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-8","changefreq":"weekly","video":[{"title":"2015:E245 - Let's Watch - Until Dawn (Part 4)","description":"Keep your hand to yourself, psycho! AH keeps trying to survive until Dawn.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e65da983-e5e7-4c85-8b7d-28e4c49e4497/sm/2013912-1441914950185-UntilDawn_Part4_thumb.jpg","duration":4100,"publication_date":"2015-09-10T23:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-172-colosseum-clash","changefreq":"weekly","video":[{"title":"2015:E244 - Minecraft Episode 172 - Colosseum Clash","description":"After 129 episodes, the gauntlet has been thrown again, no longer the Thunderdome, welcome to The Colosseum Clash!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-172-colosseum-clash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d87a5b2b-a772-4dc8-a51f-ccd7b409d4a0/sm/2013912-1441914474840-LPMC_Coliseumclash_thumb.jpg","duration":3574,"publication_date":"2015-09-10T22:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-30","changefreq":"weekly","video":[{"title":"2015:E30 - Top 10 Xbox One Games","description":"Geoff, Michael, and Ryan take a look at the \"Top 10 Xbox One Games Currently Available According To Achievement Hunter\"*!\n\n*I take no personal responsibility for these numberings. - Love, Kdin.","player_loc":"https://roosterteeth.com/embed/countdown-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95784969-d1dc-4dc5-b36d-c85dec184957/sm/2013912-1441922427892-Top10XboxOne_Thumb.jpg","duration":279,"publication_date":"2015-09-10T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-37","changefreq":"weekly","video":[{"title":"2015:E37 - 5 Years of Fails - Fails of the Weak Volume 260","description":"Take a journey with Geoff and Jack through five years of FotW history. See the transition from Halo Reach to Halo 4 to any and all games while listening to the glory that is Geoffs cancer curing laugh! Music - Halo by Kevin Browne and Gareth Johnson: http://www.audionetwork.com/browse/m/track/halo_32...","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfc109fa-0ce5-4c62-9417-75d14ed4a067/sm/2013912-1441915343024-5YearsofFails-Big.jpg","duration":409,"publication_date":"2015-09-10T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - JUMP and then JUMP! - GO! #94","description":"Is it even possible Who cares Physics disagree Well screw physics!","player_loc":"https://roosterteeth.com/embed/go-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/096d709f-19a6-4b16-a849-64c2b4f75298/sm/2013912-1441831789714-GO_94.jpg","duration":733,"publication_date":"2015-09-09T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-7","changefreq":"weekly","video":[{"title":"2015:E242 - Let's Watch - Until Dawn (Part 3)","description":"Achievement Hunter keeps trying to survive in Until Dawn. Will they all make it through this episode Watch and find out!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c2d4a54-e499-4f22-85c0-4f1f37274576/sm/2013912-1441752048329-UntilDawn_Part3_thumb.jpg","duration":2399,"publication_date":"2015-09-08T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-35","changefreq":"weekly","video":[{"title":"2015:E35 - Episode 127: Jeremy vs. Ryan","description":"Ryan and Jeremy are the Lizard Kings. They can do anything.","player_loc":"https://roosterteeth.com/embed/vs-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4d2bd87-3cbc-4769-81ab-e1e3e3c94d6a/sm/2013912-1441742123282-VS_RyanVSJeremy_Godzilla.png","duration":306,"publication_date":"2015-09-08T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-29","changefreq":"weekly","video":[{"title":"2015:E35 - Labor Day Special! - AHWU for September 7th, 2015 (#280)","description":"It's Labor Day, but the boys are still putting up an episode of AHWU. Join them and learn all about this week's Until Dawn takeover, the Streamy awards and beware of the subscribe box!","player_loc":"https://roosterteeth.com/embed/ahwu-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91cf15e0-d3a0-45a3-932f-07858fab90e2/sm/2013912-1441666771942-AHWU_280_Thumbnail.jpg","duration":668,"publication_date":"2015-09-07T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-36","changefreq":"weekly","video":[{"title":"2015:E36 - Far Cry 4","description":"Franco. Five Facts. Far Cry 4. Any Questions","player_loc":"https://roosterteeth.com/embed/five-facts-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70040dc0-b9df-4b49-bc39-6fdadb49cde7/sm/2013912-1441647362601-FC4THUMB.jpg","duration":284,"publication_date":"2015-09-07T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-ryan-the-slide-guy-lindsay-s-remix","changefreq":"weekly","video":[{"title":"2015:E43 - Ryan the Slide Guy: Lindsay's Remix","description":"THIS is how you waste company time and resources. \n\nRyan The \"Slide\" Guy https://achievementhunter.com/episode/achievement-...\n\n\"Ryan the Slide Guy\" - Contest Winners! https://achievementhunter.com/episode/achievement-...\n\nRyan The Slide Guy - Best of the Rest https://achievementhunter.com/episode/achievement-...\n\n\n\nThe music in this video is provided by Audio Network:\n\nhttp://us.audionetwork.com/Track/SearchKeywordkey...\n\nhttp://us.audionetwork.com/Track/SearchKeywordkey...\n\nhttp://us.audionetwork.com/Track/SearchKeywordkey...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-ryan-the-slide-guy-lindsay-s-remix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bda3be2-ef90-4170-b578-0c673ffe43b0/sm/2013912-1441399982187-LindsayRemixThumb_Final.jpg","duration":114,"publication_date":"2015-09-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-6","changefreq":"weekly","video":[{"title":"2015:E241 - Let's Watch - Until Dawn (Part 2)","description":"The gang regroups and attempts to solve problems in the most back asswards ways possible! Homemade flamethrowers, a badger that is actually wolverine, teenage drama, metal condoms, a mnage trois, and lots of jump scares await you in Part 2!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f87f7262-ea87-4f0d-84cb-6a0b8febeae6/sm/2013912-1441605268375-LetsWatch-UntilDawn-Part2.jpg","duration":3330,"publication_date":"2015-09-07T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-5","changefreq":"weekly","video":[{"title":"2015:E240 - Let's Watch - Until Dawn","description":"10 friends, 1 Mountain Vacation, and a multitude of ways to die. Ready to find out what happens Let's Watch!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/297655b6-1528-412a-8483-e4a8b5f579a2/sm/2013912-1441404842846-UntilDawn_Thumb1.jpg","duration":3287,"publication_date":"2015-09-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-36","changefreq":"weekly","video":[{"title":"2015:E37 - Dungeon Hunter V","description":"Adam and Joel crawl through dungeons in this weeks How To! Adam likes himself some big swords. Thanks to Gameloft for making this video possible. Check out Dungeon Hunters V for free on iOS and Android by clicking here: iOS (http://gmlft.co/dVgo2) Android (http://gmlft.co/2w26W)","player_loc":"https://roosterteeth.com/embed/how-to-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eb75f1d-bc44-43e9-8b3c-0892e3cffaf4/sm/2013912-1441393262433-DungeonHunter5_Logo.jpg","duration":798,"publication_date":"2015-09-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-37","changefreq":"weekly","video":[{"title":"2015:E36 - Alien Isolation at RTX","description":"Joel and Adam are at RTX and they show you how to stand gaming up. We apoligize for the quality at the beginning of the video! (...and also for Kara).","player_loc":"https://roosterteeth.com/embed/how-to-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e4cc4e1-c454-487e-b6b7-5a445d052efb/sm/2013912-1441393380367-AlienThumbSite.jpg","duration":3501,"publication_date":"2015-09-05T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-capsule-force-the-rooster-teeth-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E239 - Capsule Force - The Rooster Teeth Podcast Crew","description":"Gus and Blaine take on Miles and Kerry in the most MLG match of Capsule Force in the history of forever. Friendships will be shattered. Chairs will be thrown. Everything will be punched. There will be no survivors. Well, not literally, but at least half of this week's players will be figuratively destroyed. That's close enough, right","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-capsule-force-the-rooster-teeth-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbd127de-9442-4e21-b3bc-ab841fb1ef4c/sm/2013912-1441403066818-LP_Capsule_Force_Thumb.png","duration":2078,"publication_date":"2015-09-05T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-jack-checks-out-some-new-content-for-assassin-s-creed-syndicate-on-center-stage-at-r-t-x-2015","changefreq":"weekly","video":[{"title":"2015:E238 - Jack checks out some new content for Assassin's Creed Syndicate on Center Stage at RTX 2015","description":"Jack Pattillo checks out an exclusive walkthrough of Evie Frye with Assassins Creed Syndicate product director Carsten Myhill at RTX. For more on Assassins Creed Syndicate, visit http://www.assassinscreed.com","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-jack-checks-out-some-new-content-for-assassin-s-creed-syndicate-on-center-stage-at-r-t-x-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b299ccaa-8d16-4107-aec2-388df14f9deb/sm/2013912-1441403452684-Ubisoft_1_thumb2.jpg","duration":671,"publication_date":"2015-09-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-29","changefreq":"weekly","video":[{"title":"2015:E29 - Top 5 Big Boss Falls In MGSV","description":"Geoff and Ryan take a moment to appreciate Big Boss' glorious incoordination after being in a coma for nine years.","player_loc":"https://roosterteeth.com/embed/countdown-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/226251ce-c362-4189-8b31-173b9f95a0b5/sm/2013912-1441396814890-Top5BigBossFallsInMGSV_thumb.jpg","duration":88,"publication_date":"2015-09-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-d-o-e-s-n-t-m-a-k-e-s-e-n-s-e-presented-with-comment-4-week-of-september-2-nd","changefreq":"weekly","video":[{"title":"2015:E42 - DOESN'T MAKE SENSE! - Presented with Comment #4 - Week of September 2nd","description":"Competitors Geoff, Ryan, Jack, and Gavin are joined by host Jeremy to see who can pick the right video, just from the totally reasonable responses to them. \n\n\n\nThe videos included in today's episode are:\n\n\n\nGTA V - Diving for Fish https://achievementhunter.com/episode/things-to-do... \n\nBattlefield 4, GTA V, Mortal Kombat X, and More! - Fails of the Weak #258 https://achievementhunter.com/episode/fails-of-the... \n\nSO INTENSE! - Presented with Comment #3 (Week of August 18th) https://achievementhunter.com/episode/achievement-... \n\nThat's RAD Dude! - GO! #93 https://achievementhunter.com/episode/go-season-1-... \n\nBattletoads Gameplay - The Stream Team (Twitch Highlights) https://achievementhunter.com/episode/achievement-... \n\nTESTING! - Titan Dump https://achievementhunter.com/episode/achievement-... \n\nWind Tunnel - AHWU for August 31st, 2015 (#280) https://achievementhunter.com/episode/ahwu-season-... \n\nLet's Play Starwhal - PS4 Edition https://achievementhunter.com/episode/lets-play-le... \n\nLet's Play - Minecraft Episode 170 - Re-Find The Tower 2 https://achievementhunter.com/episode/lets-play-le... \n\nLet's Play - Bombernauts (The Podcast Crew) https://achievementhunter.com/episode/lets-play-le... \n\nLet's Play - Badland Part 2 https://achievementhunter.com/episode/lets-play-le... \n\nLet's Play - GTA V - Maximum Multiplayer https://achievementhunter.com/episode/lets-play-le...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-d-o-e-s-n-t-m-a-k-e-s-e-n-s-e-presented-with-comment-4-week-of-september-2-nd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/209078b2-e5d7-4028-baae-92745f87d950/sm/2013912-1441295907994-Presented_With_Comment_4_Week_of_September_2nd.jpg","duration":765,"publication_date":"2015-09-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-36","changefreq":"weekly","video":[{"title":"2015:E36 - Volume 259","description":"Fails of the Weak Volume 259 gets taken over by fails and glitches from Halo The Master Chief Collection submitted by our very own chaos king Gavin Free!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fefc4392-11a5-41ac-b052-c6ce19bf1f48/sm/2013912-1441298369861-Fails259-Big.jpg","duration":160,"publication_date":"2015-09-03T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-171-mogataur","changefreq":"weekly","video":[{"title":"2015:E237 - Minecraft Episode 171 - Mogataur","description":"Geoff, Ryan, Jack, and Gavin face off against Michael's Ancient Greek Alter-Ego...THE MOGATAR! Can they get all four blocks of gold to the secret alter hidden in the labyrinth before they run out of time","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-171-mogataur","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eddfafd4-9c73-48b9-99e1-63905e009ea8/sm/2013912-1441233779854-LPMC_Mogataur_Thumb.jpg","duration":2923,"publication_date":"2015-09-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-30","changefreq":"weekly","video":[{"title":"2015:E32 - Prototype HUNT - Geoff vs. Ryan (Speed Bumps)","description":"Geoff and Ryan head back to Prototype and try to be the first to flatten their way to the Speed Bumps achievement. Who is the sicker of the two","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e293fae8-c5b6-4e07-b81a-2fec2c8c0db7/sm/2013912-1441230381730-HUNT_94.jpg","duration":338,"publication_date":"2015-09-02T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-4","changefreq":"weekly","video":[{"title":"2015:E236 - Let's Watch - Party Hard","description":"Achievement Hunter learns how to take the life out of the party.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2f78bf5-b103-4e2e-a757-b028631d9859/sm/2013912-1441230053424-Party_Hard_-_Thumb.jpg","duration":1730,"publication_date":"2015-09-02T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-star-trek-part-3","changefreq":"weekly","video":[{"title":"2015:E235 - Star Trek Part 3","description":"Allons-y, Scotty!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-star-trek-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5a2e0a0-fc9b-4fce-a5d6-693af6b43f0f/sm/2013912-1441135741349-StarTrek_Part3_Thumb.jpg","duration":2128,"publication_date":"2015-09-01T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-34","changefreq":"weekly","video":[{"title":"2015:E34 - Gears of War UE - Achievement Hunter VS The World","description":"Achievement Hunter tries their best to brutally kill the world. Get ready to get chain sawed world!","player_loc":"https://roosterteeth.com/embed/vs-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ba7b650-5b03-43ec-bc8a-eb7df516d579/sm/2013912-1441131009933-Gears_Vs_The_World_-_THUMB.jpg","duration":1119,"publication_date":"2015-09-01T18:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-28","changefreq":"weekly","video":[{"title":"2015:E34 - Wind Tunnel - AHWU for August 31st, 2015 (#280)","description":"Bring out the fans, take down some vampires, and take a seat for this week's AHWU!\n\n\n\nVideo of the Week:\n\nGTA V Kamikaze\n\nCommunity Vid:\n\n2 Deadpool Easter Eggs - Spiderman: Shattered Dimensions","player_loc":"https://roosterteeth.com/embed/ahwu-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4f1de7e-cfa1-40bb-818e-8d68ca8d8453/sm/2013912-1441051704762-AHWU_280.jpg","duration":441,"publication_date":"2015-08-31T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-35","changefreq":"weekly","video":[{"title":"2015:E35 - Variety Pack #10","description":"Franco is back with another Five Facts Variety Pack! Variety Pack #10 features facts from GTA V, Batman Arkham Knight, Bloodborne, Destiny, and The Last of Us!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a36011b-3439-42d7-b1dd-58ce927142a8/sm/2013912-1441040355269-ffvP10tn.jpg","duration":137,"publication_date":"2015-08-31T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-badland-part-2","changefreq":"weekly","video":[{"title":"2015:E234 - Badland Part 2","description":"Geoff, Jack, Michael, and Jeremy are back. They're getting killed harder and sucked faster. Wait... I mean they're getting sucked harder and killed... no... they... they die.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-badland-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d9441d0-6752-4bb6-ba6b-33520558be1f/sm/2013912-1441038556921-LP_Badlands_Part2.jpg","duration":1944,"publication_date":"2015-08-31T16:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-testing-titan-dump","changefreq":"weekly","video":[{"title":"2015:E41 - TESTING! - Titan Dump","description":"Geoff, Jack, Michael, and Ryan are back and testing more stuff. It doesn't mean it won't break later or anything. Just that they can say it was tested.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-testing-titan-dump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdcc0069-8c08-4fed-8008-af6d92db6e44/sm/2013912-1440947362195-Thumb.jpg","duration":899,"publication_date":"2015-08-30T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-maximum-multiplayer","changefreq":"weekly","video":[{"title":"2015:E233 - GTA V - Maximum Multiplayer","description":"AH decides to embrace the chaos with a few games with as a many community members as we could un-safely cram in!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-maximum-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/671d3ddc-91cf-431a-8fc3-88e7ef3988ef/sm/2013912-1440947146171-Thumbnail_1.jpg","duration":2637,"publication_date":"2015-08-30T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-35","changefreq":"weekly","video":[{"title":"2015:E35 - Galak-Z","description":"Joel and Adam fly gracefully through space in Galak-Z. Joel is away on vacation and Adam misses him very much. Joel wont respond to any of his texts. :(","player_loc":"https://roosterteeth.com/embed/how-to-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bc06477-7d87-423f-9b2a-7360cced29d7/sm/2013912-1440798253053-GalakThumbSite.jpg","duration":2380,"publication_date":"2015-08-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-bombernauts-the-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E232 - Bombernauts (The Podcast Crew)","description":"Gus, Brandon, Barbara, and Gavin have a blast as they play Bombernauts. Will they be able to keep their cool, or will their explosive tempers get the better of them Are there any more bomb puns I think we're out of bomb puns. Kaboom kapow explosion.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-bombernauts-the-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9306dc0b-1e66-4d7e-9272-73f722d94bd5/sm/1461653-1440788305530-Bombernauts_Thumbnail.png","duration":2302,"publication_date":"2015-08-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-battletoads-gameplay-the-stream-team-twitch-highlights","changefreq":"weekly","video":[{"title":"2015:E40 - Battletoads Gameplay - The Stream Team (Twitch Highlights)","description":"The Team that Streams, Jeremy, Matt, and Trevor, see who is straddling the the talent of being a toad built for battling. Post any ideas for future episodes in the comments below, or tweet them to #TheStreamTeam","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-battletoads-gameplay-the-stream-team-twitch-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee94ae1a-ce71-494c-9b45-51cfe0e0db00/sm/1461653-1440785879220-TheStreamTeam_Battletoads.jpg","duration":628,"publication_date":"2015-08-28T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-33","changefreq":"weekly","video":[{"title":"2015:E31 - That's RAD Dude! - GO! #93","description":"Robots and Aliens and Dogs! Oh my! Shut your god damn mouth Dorothy! Who invited you!","player_loc":"https://roosterteeth.com/embed/go-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f787009e-fa41-447a-9760-c924cc746454/sm/2013912-1440702213616-Go93_THUMB.jpg","duration":449,"publication_date":"2015-08-27T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-s-o-i-n-t-e-n-s-e-presented-with-comment-3-week-of-august-18-th","changefreq":"weekly","video":[{"title":"2015:E38 - SO INTENSE! - Presented with Comment #3 (Week of August 18th)","description":"Geoff, Ryan, Jack, Gavin, and Michael compete in the gauntlet of Presented With Comment. Who can identify the correct video and propel themselves to a victory \n\nThe videos included in today's episode are:\n\nLet's Play - Badland Part 1: https://achievementhunter.com/episode/lets-play-le...\n\nLet's Play - Trials Fusion: Awesome Level Max DLC: https://achievementhunter.com/episode/lets-play-le...\n\nLet's Play - Minecraft Episode 169 - Re-Find The Tower: https://achievementhunter.com/episode/lets-play-le...\n\nLet's Play - N++ - The Rooster Teeth Podcast Crew: https://achievementhunter.com/episode/lets-play-le...\n\nLet's Play - GTA V - Kamikaze: https://achievementhunter.com/episode/lets-play-le...\n\nLet's Play - Gears of War UE Campaign Part 1: https://achievementhunter.com/episode/lets-play-le...\n\nLet's Play - Gears of War UE Multiplayer: https://achievementhunter.com/episode/lets-play-le...\n\nModern Warfare 3 - Light 'Em Up - Play Pals #36: https://achievementhunter.com/episode/play-pals-se...\n\nAssassin's Creed Unity, Batman Arkham Knight, and More! - Fails of the Weak #257: https://achievementhunter.com/episode/fails-of-the...\n\nSports Friends: Poleriders Tournament: https://achievementhunter.com/episode/achievement-...\n\nThings to do in GTA V - Joust: https://achievementhunter.com/episode/things-to-do...\n\nHow To: Lego Worlds with Gracie!: https://achievementhunter.com/episode/how-to-seaso...\n\nTembo HUNT - Jack vs. Ryan (Peoples Hero & PHANTOM Damaged!): https://achievementhunter.com/episode/achievement-...\n\nGavin's Compressed Air - AHWU for August 24th, 2015 (#279): https://achievementhunter.com/episode/ahwu-season-...\n\nFive Facts - Batman: Arkham Knight: https://achievementhunter.com/episode/five-facts-f...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-s-o-i-n-t-e-n-s-e-presented-with-comment-3-week-of-august-18-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43a0c681-5018-4c83-838b-3af4f281782e/sm/2013912-1440693328148-Presented_With_Comment_3_Week_of_August_18th.jpg","duration":720,"publication_date":"2015-08-27T16:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-35","changefreq":"weekly","video":[{"title":"2015:E35 - Volume 258","description":"In Fails of the Weak Volume 258, Jack and Geoff talk you throw a variety of glitches and fails from Battlefield 4, Grand Theft Auto V, Mortal Kombat X, and Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5ac74b0-8689-493c-a14d-529a8310164b/sm/2013912-1440687992977-Fails258-Big.jpg","duration":161,"publication_date":"2015-08-27T15:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-170-re-find-the-tower-2","changefreq":"weekly","video":[{"title":"2015:E231 - Minecraft Episode 170 - Re-Find The Tower 2","description":"Last week's thrilling episode was interrupted by Gavin's dentist appointment! Who's dentist appointment will get in the way of this episode! My guess is Jack. That guy goes to the dentist at least once a week. Oh, and I guess they're still trying to find the Tower of Pimps. I wonder if Geoff remembers where he hid it...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-170-re-find-the-tower-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bf3cc3e-7a8e-4795-9119-f90e9842a5c7/sm/2013912-1440604730380-LPMC_RefindTheTowerPart2_Thumb.jpg","duration":2173,"publication_date":"2015-08-27T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-ryan-the-slide-guy-best-of-the-rest","changefreq":"weekly","video":[{"title":"2015:E37 - Ryan The Slide Guy - Best of the Rest","description":"There were a lot of great videos so here are the rest of the best of Ryan the Slide Guy entries!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-ryan-the-slide-guy-best-of-the-rest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e60e0979-57c2-43c7-b092-a94550a326f4/sm/2013912-1440622700879-RyanTheSlideGuy_BestoftheRest_Thumb.jpg","duration":1198,"publication_date":"2015-08-26T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-59","changefreq":"weekly","video":[{"title":"2015:E59 - GTA V - Diving for Fish","description":"We're so dumb we almost titled this video Fishing for Fish.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d8cbe0-0d77-43f0-a7f2-e5d25b8d07cb/sm/2013912-1440607298344-DivingForFish_GTAV_thumb.jpg","duration":1602,"publication_date":"2015-08-26T17:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-s-t-a-r-w-h-a-l-p-s4-edition","changefreq":"weekly","video":[{"title":"2015:E230 - STARWHAL - PS4 Edition!","description":"Geoff, Jack, Ryan, and Michael mount their mighty narwhals and attempt to give each other a little more than \"just the tip\"!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-s-t-a-r-w-h-a-l-p-s4-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68be01e5-a4bd-4843-87d7-b8b4651392a9/sm/2013912-1440602977588-LetsPlay-Starwhal-PS4Edition.jpg","duration":1440,"publication_date":"2015-08-26T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-gears-of-war-u-e-multiplayer","changefreq":"weekly","video":[{"title":"2015:E229 - Gears of War UE Multiplayer","description":"Achievement Hunter checks out the multiplayer of Gears of War Ultimate Edition and learn a little bit about what kind of friends they are in the process.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-gears-of-war-u-e-multiplayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16271741-e004-4c25-a15e-e2dc63127109/sm/2013912-1440539147111-Gears_-_YTBLIP.jpg","duration":1389,"publication_date":"2015-08-25T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-ryan-the-slide-guy-contest-winners","changefreq":"weekly","video":[{"title":"2015:E36 - \"Ryan the Slide Guy\" - Contest Winners!","description":"We loved your submissions so much we had to increase our \"Top 3\" to a \"Top 5\"!\n\nCongrats to our five winners!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-ryan-the-slide-guy-contest-winners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/423c9766-c839-48da-ba5d-62e17ce10129/sm/2013912-1440534053861-RTSG_ContestWinners_thumb.jpg","duration":360,"publication_date":"2015-08-25T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-38","changefreq":"weekly","video":[{"title":"2015:E33 - Gavin's Compressed Air - AHWU for August 24th, 2015 (#279)","description":"With new lights, the boys are back with todays new AHWU! Learn about upcoming games, random news and Gavin gets a hold of some compressed air. What could go wrong\n\nvideo of week: https://www.youtube.com/watchv=aQVpXMPZAdg\n\ncommunity: https://www.youtube.com/watchv=x0R8azMfNEQ","player_loc":"https://roosterteeth.com/embed/ahwu-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a8680b7-18a4-4518-9af5-06c495827096/sm/2013912-1440457397159-AHWU_279.jpg","duration":484,"publication_date":"2015-08-24T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-gears-of-war-u-e-campaign-part-1","changefreq":"weekly","video":[{"title":"2015:E228 - Gears of War UE Campaign Part 1","description":"Best of friends, Geoff and Ryan, tear through the campaign of the new Gears of War remaster. Insane difficulty and just each other to rely on. Good luck to them.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-gears-of-war-u-e-campaign-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e2e80ce-9e14-49ef-9953-42f81739632f/sm/2013912-1440440708543-LP_GearsOfWarCampaignUEPart1.jpg","duration":1761,"publication_date":"2015-08-24T18:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-34","changefreq":"weekly","video":[{"title":"2015:E34 - Batman: Arkham Knight","description":"Franco takes a trip to Gotham and reveals Five Facts about Batman: Arkham Knight!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7cc1428-2950-4e5c-975c-c864db6af85d/sm/2013912-1440439507715-BTM_TN.jpg","duration":250,"publication_date":"2015-08-24T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-32","changefreq":"weekly","video":[{"title":"2015:E31 - Tembo HUNT - Jack vs. Ryan (People?s Hero & PHANTOM Damaged!)","description":"Jack and Ryan face off in Tembo The Badass Elephant and fight to see who will be the first person to grab both the Peoples Hero achievement as well as the PHANTOM Damaged! achievement. Who is the more badasser of the elephants","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e708926f-800d-4120-bad6-e948021efe3d/sm/2013912-1440438900388-Tembo_HUNT_-_Jack_vs_Ryan.jpg","duration":431,"publication_date":"2015-08-24T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-kamikaze","changefreq":"weekly","video":[{"title":"2015:E227 - GTA V - Kamikaze","description":"Achievement Hunter tries out a twist on Hasta La Vista... but since those pesky semi trucks were so slow we replaced them. With jets. The result is unspeakably awesome.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-kamikaze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03785255-038c-45f5-94fc-c8f8bab9d38d/sm/2013912-1440434742041-Thumbnail.jpg","duration":2252,"publication_date":"2015-08-24T16:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-34","changefreq":"weekly","video":[{"title":"2015:E34 - Lego Worlds with Gracie!","description":"In this episode of How To, Joel and Adam compete to see who can construct a house faster; Joel and Adam, or a 7 year old.","player_loc":"https://roosterteeth.com/embed/how-to-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1ab15ea-d2bd-4a94-98b7-3315ac52b956/sm/2013912-1440188550380-LEGOTHUMBYT.jpg","duration":453,"publication_date":"2015-08-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-n-the-podcast-crew","changefreq":"weekly","video":[{"title":"2015:E226 - N++ (The Podcast Crew)","description":"Burnie, Gus, Jordan, and Blaine test their super jump ninja skills in N++. Also, their exploding-a-lot skills. Also also, their screaming skills. Mostly their screaming skills.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-n-the-podcast-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/604eeb00-764f-4114-82ff-bac50ab5fbd8/sm/2013912-1440187877053-Podcast_N++_Thumbnail.png","duration":3162,"publication_date":"2015-08-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-58","changefreq":"weekly","video":[{"title":"2015:E58 - GTA V - Joust","description":"Geoff & Ryan VS Jack & Michael VS Jeremy & Gavin compete in what can only be described as the least historically accurate jousting anyone has ever participated in.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95e59b6d-7b9b-4cd9-9b12-2464533b267f/sm/2013912-1440181993268-TTD_GTAV_Joust_Thumb.jpg","duration":890,"publication_date":"2015-08-21T18:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-sports-friends-poleriders-tournament","changefreq":"weekly","video":[{"title":"2015:E35 - Sports Friends: Poleriders Tournament","description":"Geoff, Jack, Ryan, Michael, Lindsay, Matt, Jeremy, and Andy are set to rematch from their last tournament. Team Train, Team Short Temper, Team Magnum Dong, and Jesus and the Intern are all back to prove who is the best at riding that pole.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-sports-friends-poleriders-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6891558e-c9b3-4ddc-9cbb-e1424162a562/sm/2013912-1440006244588-SportsFriends_Poleriders_Tournament_Thumb.jpg","duration":1240,"publication_date":"2015-08-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-34","changefreq":"weekly","video":[{"title":"2015:E34 - Volume 257","description":"Fails of the Weak Volume 257 features Geoff and Jack giggling and laughing through fails and glitches in Assassins Creed Unity, Batman Arkham Knight, Battlefield Hardline, and Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bc2e659-3831-488e-a831-44902b45dd0f/sm/2013912-1440087504933-Fails257-Big.jpg","duration":169,"publication_date":"2015-08-20T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-169-re-find-the-tower","changefreq":"weekly","video":[{"title":"2015:E225 - Minecraft Episode 169 - Re-Find The Tower","description":"So...156 episodes later, we lost the Tower of Pimps again. I blame Gavin.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-169-re-find-the-tower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b05ded73-ecf9-4661-bfda-80da5275abcf/sm/2013912-1440011309713-LPMC_RefindThatTower_thumb.jpg","duration":3191,"publication_date":"2015-08-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-17","changefreq":"weekly","video":[{"title":"2015:E17 - Modern Warfare 3 - Light 'Em Up","description":"Geoff and Ryan play as pals to get the Light 'Em Up achievement in Call of Duty Modern Warfare 3!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfe1dec-1341-4430-9284-4eae8c52f5cf/sm/2013912-1439999677766-Play_Pals_CallofDuty-ModernWarfare3-LightEmUp.jpg","duration":982,"publication_date":"2015-08-19T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play","changefreq":"weekly","video":[{"title":"2015:E224 - Trials Fusion: Awesome Level Max DLC","description":"Geoff, Jack, Ryan and Michael check out the new Trials Fusion Awesome Max DLC. Why ride a bike when you can ride on a unicorn!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40089762-6215-427c-9929-4d6f5ff29ca5/sm/2013912-1439999746267-LP_tfunicorn_thumb.jpg","duration":1052,"publication_date":"2015-08-19T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-33","changefreq":"weekly","video":[{"title":"2015:E33 - Episode 126: Michael vs. Jeremy","description":"This VS is explosive. GET IT!","player_loc":"https://roosterteeth.com/embed/vs-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/714207e7-37b8-4726-a4c8-c92b7a76f6f5/sm/2013912-1439928857670-VS_JeremyVSMichael_CreeperRounds.png","duration":522,"publication_date":"2015-08-18T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-badland-part-1","changefreq":"weekly","video":[{"title":"2015:E223 - Badland Part 1","description":"Geoff, Jack, Michael, and Jeremy are playing Badland, and damned if they wont finish this game! It might take a few parts, but they are destined to get sucked!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-badland-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df4a6c9a-ec0e-46c9-aea4-7ab623322d59/sm/2013912-1439842443297-LP_Badland_Part1.jpg","duration":1500,"publication_date":"2015-08-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-37","changefreq":"weekly","video":[{"title":"2015:E32 - Geoff, Michael, and Gavin's Face - AHWU for August 17th, 2015 (#278) ","description":"In this brightly lit version of AHWU, well see what happens when Geoff and Michael get a hold of Gavins face. Also, well watch Jack forget to swap the mic input for the first few minutes. Silly kids.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/626f2ada-4fff-464d-bca6-1b535252372f/sm/1461653-1439854542494-AHWU278.jpg","duration":557,"publication_date":"2015-08-17T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-33","changefreq":"weekly","video":[{"title":"2015:E33 - Trevor Philips","description":"Jack ad Geoff take a closer look at GTA V's Trevor Philips in this week's Five Facts! ** We had a blast at RTX, and somehow survived the summer heat in downtown Austin. While we were at it, we premiered a lot of HOT new stuff at the store! Use code RTXHOT to save 10.3% on your entire purchase. Rooster Teeth Store: http://bit.ly/ZvZHS1","player_loc":"https://roosterteeth.com/embed/five-facts-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe9b00c3-83a2-48fc-9f4b-7e94e34fd2b4/sm/2013912-1439840402878-FFGTAV_TP_Thumb.jpg","duration":251,"publication_date":"2015-08-17T19:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-star-trek-part-2","changefreq":"weekly","video":[{"title":"2015:E222 - Star Trek Part 2","description":"Spock Kirk and Kirk Spock continue their journey into the stars through gates!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-star-trek-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0f91ac0-af56-4d7c-a1a6-831bef188e55/sm/2013912-1439832314783-LP_StarTrek_part2.jpg","duration":1803,"publication_date":"2015-08-17T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-g-t-a-v-6-way-a-hasta-la-vista-part-2","changefreq":"weekly","video":[{"title":"2015:E221 - GTA V - 6-way AHasta La Vista Part 2","description":"The crushinating continues as AH smashes it's way through some more Hasta La Vista!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-g-t-a-v-6-way-a-hasta-la-vista-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aa51ac0-f82e-4fd0-80bc-78c73e459180/sm/1461653-1439823990984-Thumbnail.jpg","duration":1432,"publication_date":"2015-08-17T15:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-presented-with-comment-2-week-of-august-8-th","changefreq":"weekly","video":[{"title":"2015:E34 - Presented With Comment #2 - Week of August 8th","description":"Jeremy hosts the second episode of Presented With Comment starring Geoff, Ryan, Jack, Lindsay, and Michael. What video did these comments appear in and what site spit them out","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-presented-with-comment-2-week-of-august-8-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdf212ab-8cd9-40ba-9497-cb02d18d2413/sm/1461653-1439823749494-Presented_With_Comment_2_Week_of_August_8th_YTBLIP.jpg","duration":722,"publication_date":"2015-08-17T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-speedrunners-gameplay-the-stream-team-twitch-highlights","changefreq":"weekly","video":[{"title":"2015:E33 - Speedrunners Gameplay - The Stream Team (Twitch Highlights)","description":"The Team that Streams, Jeremy, Matt, and Trevor, feel the need for speed and the fun of running in Speedrunners. Post any ideas for future episodes in the comments below, or tweet them to #TheStreamTeam.\n\nTo watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-speedrunners-gameplay-the-stream-team-twitch-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75abbf6a-73c5-4fbf-8968-095f9e71c00b/sm/1461653-1439670705342-TheStreamTeam_SpeedRunners.jpg","duration":717,"publication_date":"2015-08-15T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-33","changefreq":"weekly","video":[{"title":"2015:E33 - #KILLALLZOMBIES Live at RTX","description":"Joel & Adam play #KillAllZombies on Center Stage at RTX. #KAZ out on Xbox One this fall. Follow @DigeratiDM and subscribe to the newsletter: www.digeratidistribution.com for updates on #KAZ.","player_loc":"https://roosterteeth.com/embed/how-to-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5945143-272b-4449-8712-10b22b84d358/sm/1461653-1439670031415-howtokillallzombies.jpg","duration":1889,"publication_date":"2015-08-15T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Assassin?s Creed: Syndicate","description":"Jack and Geoff take a look at some footage shot during RTX of the newest Assassins Creed. Follow Jack along as he shows off some new tools and introduces you to Evie Frye, the newest assassin in the franchise. Watch out for flying hats!","player_loc":"https://roosterteeth.com/embed/this-is-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7750dcd-b259-4fcb-b3c8-6150c4591d0d/sm/1461653-1439593035666-AC_Syndicate_Walkthrough.jpg","duration":339,"publication_date":"2015-08-14T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-33","changefreq":"weekly","video":[{"title":"2015:E30 - Batman HUNT - Ryan vs. Michael (Gotham After Midnight)","description":"Ryan and Michael become the night and attempt to go after the Gotham After Midnight achievement in Batman Arkham Knight. Who is the Night more The Nightest The Nighterer","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/279eefd2-40ba-463a-b6bd-256d90e2a7cd/sm/1461653-1439568920010-Batman_HUNT_-_Ryan_vs._Michael_(Gotham_After_Midnight).jpg","duration":193,"publication_date":"2015-08-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-achievement-hunter-music-videos-terror-eyes","changefreq":"weekly","video":[{"title":"2015:E31 - RT Music Videos: Terror Eyes!","description":"Download the song now on itunes: http://apple.co/1PaM3XH google play: http://bit.ly/1Wnpx3r or amazon: http://amzn.to/1NevyLQ \n\nAchievement Hunter is back to rapping in a big way. Dive into the terrifying worlds of Slender, Five Nights at Freddys, and Amnesia: The Dark Descent. Can you survive","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-achievement-hunter-music-videos-terror-eyes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd29e512-7b9b-491f-a20d-9be6a79a055f/sm/1461653-1439513755023-TerrorEyes_Thumb.jpg","duration":295,"publication_date":"2015-08-14T00:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-33","changefreq":"weekly","video":[{"title":"2015:E33 - Volume 256","description":"Geoff and Jack are back with Fails of the Weak Volume 256 featuring clips from Assassin's Creed Unity, Battlefield 4, Far Cry 4, and Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b0b32a7-367f-4bb1-b77f-efc92c98b8e4/sm/2013912-1439485869672-fails256-big_2.jpg","duration":183,"publication_date":"2015-08-13T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-minecraft-episode-168-revenge","changefreq":"weekly","video":[{"title":"2015:E220 - Minecraft Episode 168 - Revenge!","description":"You know what happens when someone doesn't show up to work at the AH offices The rest of the crew get a little REVENGE! ** We had a blast at RTX, and somehow survived the summer heat in downtown Austin. While we were at it, we premiered a lot of HOT new stuff at the store! Use code RTXHOT to save 10.3% on your entire purchase. Rooster Teeth Store: http://bit.ly/ZvZHS1","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-minecraft-episode-168-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25adb094-3dd2-4eaf-b16c-8368fd92f7bb/sm/2013912-1439479274339-LPMC_Revenge_thumb.jpg","duration":2208,"publication_date":"2015-08-13T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - Rocket League - Achievement Hunter VS The World","description":"In this corner: Team Gents. In this corner: The World. Ready FIGHT!","player_loc":"https://roosterteeth.com/embed/vs-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac70a8b1-80b2-4a69-8fb6-e0c0a3f8aa6e/sm/2013912-1439398356936-RocketLeague_AHVSTheWorld_Thumb.jpg","duration":1490,"publication_date":"2015-08-13T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-let-s-play-cloudberry-kingdom-part-11","changefreq":"weekly","video":[{"title":"2015:E219 - Cloudberry Kingdom Part 11","description":"The Cloudberry crew is back after a long break, and this time they're better than ever!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-let-s-play-cloudberry-kingdom-part-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26a58611-d64a-4cdd-af2e-71d73e9a0959/sm/2013912-1439408925676-Cloudberry_Part_11_-_YTBLIP.jpg","duration":2101,"publication_date":"2015-08-12T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-t-e-s-t-i-n-g-kamikaze","changefreq":"weekly","video":[{"title":"2015:E29 - TESTING! - Kamikaze","description":"Geoff and Ryan come up with a 100% original idea to test a map before they use it in a video! In no way is this stealing the show idea Kdin, Jeremy, Lindsay and Matt's had called \"Let's Test\", this is a completely new idea called \"TESTING!\" ...totally different.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-t-e-s-t-i-n-g-kamikaze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/088648bd-ef57-4c8b-ae04-4147b8227817/sm/1461653-1439323617514-Testing_-_Kamikaze.jpg","duration":530,"publication_date":"2015-08-12T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - Project Sanctuary","description":"Matt and Trevor visit the post apocalyptic shelter of Project Sanctuary! If you want to download this map and check it out for yourself click here: http://bit.ly/1TgY9EY. If you want us to check out your map, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b41d8014-bafe-4db3-a6cf-1e19f879f367/sm/1461653-1439306015191-MegaCraft_-_YTBLIP.jpg","duration":183,"publication_date":"2015-08-11T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-3","changefreq":"weekly","video":[{"title":"2015:E218 - Let's Watch - Gears of War Ultimate Edition Beta Part 2","description":"Achievement Hunter keeps fighting the Locust scum in Gears of War Ultimate Edition's Beta. Unless they're on the Locust team in which case they're traitors, but whatever.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fe31e0d-5eb7-487a-acd5-7dd0fc8a8d0c/sm/1461653-1439305699969-Gears_of_War_Part_2_-_YTBLIP.jpg","duration":1669,"publication_date":"2015-08-11T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-213","changefreq":"weekly","video":[{"title":"2015:E217 - Slash Dash","description":"Geoff, Jack, Ryan, and Michael train in the way of the ninja to perfect their slashing and dashing skills!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-213","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f28dc6d-446b-4feb-9c82-2a2733a2bec4/sm/2013912-1439324723864-LP-SlashDash.jpg","duration":1341,"publication_date":"2015-08-11T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - Achievement Hunter (Featuring Funhaus)","description":"The Funhaus guys lend Franco a hand at RTX 2015 and discuss Five Facts regarding Achievement Hunter! \n\nBurnout Paradise: Millionaire's Club Achievement Walkthrough: http://m.youtube.com/watchv=y3VPEiXT-wA\n\nLet's Play - Fuel Part 1: http://m.youtube.com/watchv=yIokytk9sHs\n\nGeoff Wins: http://m.youtube.com/watchv=itTSAgLQIXQ\n\nWatchmen - The End is Nigh: Untouchable Guide: http://m.youtube.com/watchv=nhYHeguRmfM","player_loc":"https://roosterteeth.com/embed/five-facts-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8353a21e-1279-48c6-a493-e9e43594a855/sm/1461653-1439238333948-FFAHT.jpg","duration":264,"publication_date":"2015-08-10T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-36","changefreq":"weekly","video":[{"title":"2015:E31 - RTX Exhaustion - AHWU for August 10th, 2015 (#277)","description":"Jack and Geoff are in the office after a long RTX and boy are their arms tired. Enjoy their exhaustion as you learn about this week's new releases as well as some interesting tidbits about upcoming Rooster Teeth productions! Also Caleb is in this episode. Vid of week: https://www.youtube.com/watchv=R8zdP8laxZY","player_loc":"https://roosterteeth.com/embed/ahwu-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c73a57f-54e9-4fd4-8518-d0156c7ca511/sm/1461653-1439235063827-AHWU_277.jpg","duration":456,"publication_date":"2015-08-10T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-sports-friends-bari-bari-ball-tournament","changefreq":"weekly","video":[{"title":"2015:E28 - Sports Friends: BariBariBall Tournament","description":"Geoff, Jack, Ryan, Michael, Lindsay, Matt, Jeremy, and Andy split into four teams and challenge each other on the PS4 part game called Sports Friends. Who is the best at ball handling","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-sports-friends-bari-bari-ball-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/883bd864-a63b-4c31-9f40-f85e3791e97f/sm/1461653-1439222984242-SportsFriends_BariBariBall_Tournament_Thumb.jpg","duration":1462,"publication_date":"2015-08-10T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-219","changefreq":"weekly","video":[{"title":"2015:E216 - GTA V - 6-way AHasta La Vista Part 1","description":"We had such a good time with Hasta La Vista we decided to make our own 6 player version!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-219","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adc93092-48f0-4d93-97b7-1edafa4f4c8a/sm/1461653-1439222258518-Thumbnail_1.jpg","duration":1382,"publication_date":"2015-08-10T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - Batman","description":"SPOILER ALERT: WE SPOIL A LOT OF THINGS IN BATMAN ARKHAM NIGHT IN THIS VIDEO. Also, Adam isnt around so this should be nice and relaxing, enjoy.","player_loc":"https://roosterteeth.com/embed/how-to-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7412a990-64ac-4239-adff-f8e0bfecdeea/sm/1461653-1438963526170-Batthumblogo.jpg","duration":2119,"publication_date":"2015-08-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-218","changefreq":"weekly","video":[{"title":"2015:E215 - Fallout Shelter","description":"Burnie, Teddy, and J.D. play Fallout Shelter.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-218","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf41efee-6a9d-4941-9995-8508a7e8ef8e/sm/1461653-1438963096331-fallout_shelter.jpg","duration":1077,"publication_date":"2015-08-08T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-30","changefreq":"weekly","video":[{"title":"2015:E30 - Boom Arrested! - GO! #92","description":"Boom! Get on the ground! Hands up! Arrested! That's what happens in Go this week.","player_loc":"https://roosterteeth.com/embed/go-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c33dd01-a3e8-44f5-9064-209ab1e9b58d/sm/1461653-1438960379765-Go92-YTBLIP.jpg","duration":328,"publication_date":"2015-08-07T15:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-32","changefreq":"weekly","video":[{"title":"2015:E32 - Volume 255","description":"In Fails of the Weak Volume 255, Geoff and Jack deliver spectacular* commentary over an assortment of glitches and fails from Just Cause 2, Sleeping Dogs: Definitive Edition, Sniper Elite III, Witcher 3: Wild Hunt, and WWE 2K15.\n\n*Commentary may not be spectacular","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/266d410c-8384-4346-82cf-5a45de7e6434/sm/1461653-1438901047490-Fails255-big.jpg","duration":181,"publication_date":"2015-08-06T22:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-6","changefreq":"weekly","video":[{"title":"2015:E6 - AH checks out Echo Of Soul","description":"AH visits Aeria games to try the free to play MMO Echo Of Soul. Play Echo of Soul NOW: http://echoofsoul.aeriagames.com","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89c62375-4df5-401b-84f0-b173439675de/sm/1461653-1438895461394-EOS_THumb.jpg","duration":290,"publication_date":"2015-08-06T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-217","changefreq":"weekly","video":[{"title":"2015:E214 - Minecraft - Episode 167 - Greek Mythology","description":"The AH crew explore the new Greek Mythology mash up pack!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-217","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e4eb736-1871-4ed8-8117-fe53a9e18ed6/sm/1461653-1438806147820-LPMC_greekmythology_thumb.jpg","duration":2233,"publication_date":"2015-08-06T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015","changefreq":"weekly","video":[{"title":"2015:E3 - King's Quest - Graham the Basilisk, Horn Blower, and Froggy Throat Achievements","description":"Geoff and Jack show you how to get the very missable Graham the Basilisk, Horn Blower, and Froggy Throat achievements in the new King's Quest game on the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f11c3f9d-027e-414b-a51f-46a776a585f5/sm/1461653-1438811050626-AHGuide_Graham_the_Basilisk_Thumb.jpg","duration":139,"publication_date":"2015-08-05T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-216","changefreq":"weekly","video":[{"title":"2015:E213 - Let's Play - Worm's Battlegrounds Part 7","description":"Achievement Hunter heads back to Worm's Battlegrounds! The fighting is finally heating up in this new age of worm on worm violence.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-216","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55eab3d7-32c2-468c-bd82-e8c8b6de2062/sm/1461653-1438804950786-Worms_-_YTBLIP.jpg","duration":1481,"publication_date":"2015-08-05T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-5","changefreq":"weekly","video":[{"title":"2015:E5 - How I Spent My Summer Vacation By Geoff Ramsey","description":"Geoff shows us just how beautiful Hawaii can be.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d909192-325e-4220-bdcb-0eb6a7958bd7/sm/1461653-1438720680717-HowISpentMySummerVacationByGeoffRamsey.jpg","duration":88,"publication_date":"2015-08-04T20:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-215","changefreq":"weekly","video":[{"title":"2015:E212 - ARK: Survival Evolved: Building Home Base","description":"The Gents decided it would be in everyone's best interest if they had a home base for future ARK Let's Plays. Well, firs they have to build it. Good luck to them.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-215","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c551766f-b5df-46b0-b763-f1bc00bab090/sm/1461653-1438709909558-LP_ARK_Building_Home_Base_Thumb.jpg","duration":1353,"publication_date":"2015-08-04T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-35","changefreq":"weekly","video":[{"title":"2015:E30 - Achievement Hunter Weekly Update - August 3rd, 2015 (#276)","description":"It's Pre-RTX in the AH office and everyone is just bustling with energy. So much energy. Incredible amounts of the stuff. You should tell three of your friends to subscribe to the Achievement Hunter YouTube channel so we can stop telling you to tell them that.\n\nvid of week: https://www.youtube.com/watchv=fZGGh_wYMaE\n\ncommunity vid of week: https://www.youtube.com/watchv=5EFWRqFDRSc","player_loc":"https://roosterteeth.com/embed/ahwu-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e233ed1-96aa-48a3-8033-ddf0e035efc6/sm/1461653-1438637720150-AHWU_276.jpg","duration":492,"publication_date":"2015-08-03T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-31","changefreq":"weekly","video":[{"title":"2015:E31 - GTA V","description":"Jack and Geoff are back in the GTA franchise in this weeks Five Facts on GTA V!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6253640b-4b7e-41c4-a60f-83d1ae1053d5/sm/1461653-1438636157157-FF_GTA_V_THUMB.jpg","duration":210,"publication_date":"2015-08-03T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-214","changefreq":"weekly","video":[{"title":"2015:E211 - Star Trek","description":"Michael and Ryan begin a trek through the stars to fight in some wars.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56bc8da7-df41-4fed-9a7a-4d856cb273b7/sm/1461653-1438635346310-LP_StarTrek_Episode1_Thumb.jpg","duration":1555,"publication_date":"2015-08-03T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-grab-bag-2","changefreq":"weekly","video":[{"title":"2015:E27 - Grab Bag #2","description":"Enjoy a sampling of unseen moments from your favorite videos in Things to do in Battlefield Hardline: Dot Shot, VS: Lindsay vs. Michael, Things to do in GTA V: Aqua Joust and More Killiad.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-grab-bag-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d68f4457-87f2-4092-8ef2-22107e5ed1a1/sm/1461653-1438627527671-GrabBag.jpg","duration":469,"publication_date":"2015-08-03T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-211","changefreq":"weekly","video":[{"title":"2015:E210 - GTA V - Guest Stars & Explosions","description":"Geoff, Ryan, Jack, Jeremy, Michael and special guest star Colton Dunn play some GTA!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae9bfa3b-b2f5-4bff-ae21-7face8684574/sm/1461653-1438570166027-Thumbnail.jpg","duration":2591,"publication_date":"2015-08-03T02:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-joel-and-adam-stream-terraraia-part-3","changefreq":"weekly","video":[{"title":"2015:E26 - Joel and Adam Stream Terraria - Part 3","description":"Joel and Adam are back, and this time they mean business. Not really. They just want to play Terraria some more. Joel dies, Adam dies, other things die; everyone has fun.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-joel-and-adam-stream-terraraia-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ae5f4d7-e868-4b75-a7dc-460b61bf2965/sm/1461653-1438378939774-TerrariaUFOThumbYT.jpg","duration":6466,"publication_date":"2015-08-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-31","changefreq":"weekly","video":[{"title":"2015:E31 - Terraria Martian Madness","description":"This is seriously a guide for the martian madness event in Terraria. We're not being sarcastic damnit, we're showing you how to do hard stuff easily.","player_loc":"https://roosterteeth.com/embed/how-to-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97678f8f-0906-4900-a0c4-8b29bcbc8b6e/sm/1461653-1438379570449-TerrariaUFOThumbYT.jpg","duration":449,"publication_date":"2015-08-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-2-presented-with-comment-1-week-of-july-26-th","changefreq":"weekly","video":[{"title":"2015:E25 - Presented With Comment #1 - Week of July 26th","description":"Geoff test out a new show featuring the comments from you, the viewers. Can Jack, Gavin, and Ryan guess which video and which site these comments came from Earn five points, and you'll be named the winner.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-2-presented-with-comment-1-week-of-july-26-th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ec975c8-5f6c-4f76-bd70-da3e67b0ecd8/sm/1461653-1438377328983-Presented_With_Comment_1_Week_of_July_26th_YTBLIP.jpg","duration":708,"publication_date":"2015-08-01T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-210","changefreq":"weekly","video":[{"title":"2015:E209 - Rocket League (The Podcast Crew)","description":"Gus and Blaine get winded as they take on Miles and Jordan in Rocket League! Who knew sports was this exhausting","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-210","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22aacc0f-3142-4dc6-92d6-a5b5b992ce77/sm/1461653-1438378177828-RT_Thumbnail_Template.jpg","duration":2090,"publication_date":"2015-08-01T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - King's Quest - Unicorn Snack Food, A Secret Entrance & A Prickly Situation Achievement Guide","description":"Michael and Geoff show you how to get the \"Unicorn Snack Food\" \"A Secret Entrance\" & \"A Prickly Situation\" Achievements in King's Quest: Chapter 1 for the Xbox One. Unicorns, caves, and thorns, oh my!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99829848-bb02-49e2-9e58-b381670c180c/sm/1461653-1438379820763-King%27s_Quest_Chapter_One_Achievement_Guides_-_Unicorn_Snack_Food,_A_Secret_Entrance,_&_A_Prickly_Situation.jpg","duration":162,"publication_date":"2015-07-31T21:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-13","changefreq":"weekly","video":[{"title":"2013:E13 - Gus' Squirrelly Situation","description":"The mean squirrel tormenting Gus' life returns in RTAA #102. This time, the squirrel acquires a special taste of Gus' nuts. No, not that kind of nut.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9676ef0-3f9c-4650-9000-9fe60e5dfa30/sm/ep7730.jpg","duration":65,"publication_date":"2013-06-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-223","changefreq":"weekly","video":[{"title":"2013:E223 - RT Podcast #223","description":"RT opens its gates.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-223","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6621,"publication_date":"2013-06-18T22:46:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-crossbow-vs-dr-pepper-ten-at-2500fps","changefreq":"weekly","video":[{"title":"S1:E14 - Crossbow vs Dr Pepper TEN at 2500fps","description":"Gav ruins some perfectly good beverages with a crossbow IN SUPER SLOW MOTION!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-crossbow-vs-dr-pepper-ten-at-2500fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17bbed5c-8a16-46ef-89e4-e54d9c2cb10f/sm/ep7724.jpg","duration":191,"publication_date":"2013-06-17T20:14:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-6","changefreq":"weekly","video":[{"title":"2013:E6 - Bane Mask Edition","description":"Monty got Miles a present. Oh the horror, the horror.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d768a7f1-5be2-4e32-b742-e07e3086a9a7/sm/ep7709.jpg","duration":120,"publication_date":"2013-06-15T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-11-episode-1","changefreq":"weekly","video":[{"title":"S11:E1 - Episode 1: One-Zero-One","description":"S11:E1 - Episode 1: One-Zero-One","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-11-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a51fa415-a2cd-4276-8bc9-1cd6c2f3936f/sm/ep7608.jpg","duration":279,"publication_date":"2013-06-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-6","changefreq":"weekly","video":[{"title":"2013:E6 - Gav's Creeper Parents","description":"Like the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/slOoBo\r\n\r\nRTAA #101 is about Gav's Minecraft encounter with a couple of chummy creepers, whom he suspects may be his parents.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e57e35bd-81a3-47fc-a383-2f96f1937f16/sm/ep7694.jpg","duration":66,"publication_date":"2013-06-12T21:40:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-222","changefreq":"weekly","video":[{"title":"2013:E222 - RT Podcast #222","description":"RT punches their poop","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-222","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6995,"publication_date":"2013-06-11T21:44:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-42","changefreq":"weekly","video":[{"title":"2013:E42 - Podcast Brew Part 3 (Plus A-Kon and Speech Zapper)","description":"Kara goes to A-Kon 2013 with Monty to premiere the Yellow trailer. Meanwhile Kerry and Miles have a new toy to play with. Finally after Kara returns from Dallas, Chris decides it is time to break out the Podcast Beer!","player_loc":"https://roosterteeth.com/embed/rt-life-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56260010-8f82-47c0-a1f6-92cd89cb0bc6/sm/ep7663.jpg","duration":172,"publication_date":"2013-06-08T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-49","changefreq":"weekly","video":[{"title":"2013:E49 - The Podcast King","description":"In the 100th RTAA, King Gus quests to find his misplaced crown before the podcast peons revolt.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fad45cbf-787c-4d16-81e1-de5efa9d9138/sm/ep7652.jpg","duration":358,"publication_date":"2013-06-06T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-221","changefreq":"weekly","video":[{"title":"2013:E221 - RT Podcast #221","description":"RT survives Las Vegas!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-221","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6195,"publication_date":"2013-06-04T20:20:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-surface-tension-droplets-at-2500fps","changefreq":"weekly","video":[{"title":"S1:E13 - Surface Tension Droplets at 2500fps","description":"Gav and Dan whip out their best globules just for you! This video shows you the amazing bouncing water droplet effect super close up and super slow.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-surface-tension-droplets-at-2500fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b4e6c55-89c8-4a75-a3e0-7390baa9326b/sm/ep7622.jpg","duration":221,"publication_date":"2013-06-04T04:43:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-yellow-trailer","changefreq":"weekly","video":[{"title":"V1:E4 - \"Yellow\" Trailer","description":"Get the Music here: iTunes: http://bit.ly/1bSiHZI Google Play: http://bit.ly/19O1e7X Amazon Mp3: http://amzn.to/1aveWvh\r\n\r\nFourth look at Rooster Teeth's newest project RWBY helmed by Red vs. Blue Lead Animator Monty Oum. See the premiere at RTX 2013!\r\nrtxevent.com","player_loc":"https://roosterteeth.com/embed/rwby-season-1-yellow-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95ca9a64-9d86-4da6-9254-14899d533a31/sm/ep7615.jpg","duration":345,"publication_date":"2013-06-01T03:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-31","changefreq":"weekly","video":[{"title":"2013:E31 - Ray in a Cage","description":"Raysomehowgot in Rebel's cage. I wonder what Adam will do when he gets back.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/430f26f7-43b8-423a-a5b8-417e5e19ab66/sm/ep7611.jpg","duration":78,"publication_date":"2013-05-31T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-37","changefreq":"weekly","video":[{"title":"2013:E37 - Famous Asteroid","description":"In RTAA #99, Gus regales the crew with a tale from when he was dating Esther and she didn't believe him to be a real internet celebrity, and Burnie discovers the perfect way to destroy Joel's happiest moment.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2816167-1e9b-45e8-9d64-ed957109f426/sm/ep7600.jpg","duration":72,"publication_date":"2013-05-29T19:21:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-220","changefreq":"weekly","video":[{"title":"2013:E220 - RT Podcast #220","description":"Rooster Teeth Eats Your Pizza","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-220","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5988,"publication_date":"2013-05-28T22:04:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-28","changefreq":"weekly","video":[{"title":"2013:E28 - Michael Chugs BBQ Sauce","description":"Gavin bets Michael $100 dollars that he cannot chug an entire bottle of BBQ sauce in under 4 minutes, without throwing up before he is done. Also if you believe really hard, there might be a clip of Joe the cat at the end.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5732d3ce-b9d3-4684-a1a7-facc032659b3/sm/ep7590.jpg","duration":135,"publication_date":"2013-05-26T01:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-slow-mo-love","changefreq":"weekly","video":[{"title":"S5:E17 - Slow Mo Love","description":"Gavin gets more than he bargained for when an innocent encounter takes an unexpected romantic turn.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-slow-mo-love","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2dff2b1-a06d-4b9c-87d0-1dd390b3481b/sm/ep7579.jpg","duration":182,"publication_date":"2013-05-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-2-immersion-simulation-racer","changefreq":"weekly","video":[{"title":"S2:E1 - Simulation Racer","description":"Burnie Burns is back with a new crew of scientists and lab-rats in Immersion! Gavin and Michael are thrown behind the wheel to figure out if a video game car can beat its real life equivalent with a professional race car driver.\n\n\nThanks Kia Motors America for providing the All-New 2014 Kia Forte for this episode. Check out other Kia videos here: http://www.youtube.com/user/KiaMotorsAmerica\n\n2014 Forte Sedan EX shown with optional features. Expected Q2 2013.","player_loc":"https://roosterteeth.com/embed/immersion-season-2-immersion-simulation-racer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e640617-9001-4fc1-87e4-8874b54efe22/sm/ep7573.jpg","duration":655,"publication_date":"2013-05-22T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-27","changefreq":"weekly","video":[{"title":"2013:E27 - Barbara Pun-kelman","description":"RTAA #98 is a pun-tacular pun-travaganza! Featuring some of Barbara's most groan-inducing puns from throughout the years. Sit back, relax, and enjoy the PUNishment.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0003321b-5eb6-4a8b-9952-c5d87b21eb8b/sm/ep7549.jpg","duration":73,"publication_date":"2013-05-22T15:32:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-219","changefreq":"weekly","video":[{"title":"2013:E219 - RT Podcast #219","description":"RT doesn't pay their time bill.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-219","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6639,"publication_date":"2013-05-21T21:59:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-21","changefreq":"weekly","video":[{"title":"2013:E21 - Gallium and Falling Trees","description":"Chris brings in some gallium to play with before the podcast. Meanwhile a tree fell in the parking lot and we bear witness to the ruckus.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/407dfa2e-20d6-460b-bc61-01f3f1e0a732/sm/ep7536.jpg","duration":140,"publication_date":"2013-05-18T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-22","changefreq":"weekly","video":[{"title":"2013:E22 - Mean Squirrels & Blind People","description":"In RTAA #97, Gus talks about a mean squirrel in his yard who used to bully him whenever he'd walk outside, and Miles ditches a blind homeless man in the middle of a conversation because he's a scumbag. Then Lindsay shares an awkward experience she had with a blind person as well","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d16bc38-9afc-4e4f-90ab-e94c7fda5bb1/sm/ep7519.jpg","duration":82,"publication_date":"2013-05-15T15:23:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-218","changefreq":"weekly","video":[{"title":"2013:E218 - RT Podcast #218","description":"RT Remembers Their Friends","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-218","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6776,"publication_date":"2013-05-14T20:20:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-17","changefreq":"weekly","video":[{"title":"2013:E17 - Dearly Departed","description":"A furry little surprise is found at the RT parking lot and everyone at Rooster Teeth has to check it out.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/887ecde1-325e-4634-88e5-e2c52ab4a668/sm/ep7510.jpg","duration":142,"publication_date":"2013-05-11T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-14","changefreq":"weekly","video":[{"title":"2013:E14 - Brandon Explains Magnets","description":"In RTAA #95, Brandon explains to Gus how magnets work after a discussion about the iPhone's compass, and Gus plays along to see just how much Brandon actually doesn't know about science. Spoiler alert: it's a lot.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc83978c-a97e-4957-8db1-944d6ea00d14/sm/ep7476.jpg","duration":79,"publication_date":"2013-05-08T14:54:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-217","changefreq":"weekly","video":[{"title":"2013:E217 - RT Podcast #217","description":"RT looks at their assholes.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-217","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6145,"publication_date":"2013-05-07T22:46:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-11","changefreq":"weekly","video":[{"title":"2013:E11 - Rage Quit - Kerry Edition","description":"Jordan set a time in Trials Evolution that Kerry thinks he can beat. Spoiler Alert, he can't.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70f5a907-d7b1-4004-8847-49630057d3b0/sm/ep7470.jpg","duration":85,"publication_date":"2013-05-04T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-joel-and-matt-go-to-the-opera-extended-cut-w-alternate-ending","changefreq":"weekly","video":[{"title":"S2:E19 - Joel and Matt go to the Opera (Extended Cut w/ Alternate Ending)","description":"S2:E19 - Joel and Matt go to the Opera (Extended Cut w/ Alternate Ending)","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-joel-and-matt-go-to-the-opera-extended-cut-w-alternate-ending","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3143d911-2880-4efe-843e-3a663a2411df/sm/ep7466.jpg","duration":282,"publication_date":"2013-05-03T21:05:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-banger-week-day-5-giant-paint-explosion","changefreq":"weekly","video":[{"title":"S1:E12 - Banger Week Day 5 - Giant Paint Explosion","description":"It's the final day of Banger Week! Gav and Dan blow up paint tins in what easily is the messiest and bloodiest episode ever.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-banger-week-day-5-giant-paint-explosion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ccba6d4-6045-48f7-bd82-cb94e7b0c59c/sm/ep7463.jpg","duration":405,"publication_date":"2013-05-03T19:28:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-joel-and-matt-go-to-the-opera","changefreq":"weekly","video":[{"title":"S5:E2 - Joel and Matt go to the Opera","description":"When Matt and Joel get dragged on a double date to the opera, they bolt and go on an adventure of their own.\r\n\r\nMore manly videos here: http://bit.ly/158czhO\r\n\r\nShare on Twitter! http://bit.ly/11G2gLV\r\nShare on Facebook! http://on.fb.me/11ZGJ2e\r\n\r\nThank you to:\r\nAustin's Park\r\niFLY Austin","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-joel-and-matt-go-to-the-opera","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ca95d37-f351-4419-ad63-f32da3c2bb22/sm/ep7456.jpg","duration":223,"publication_date":"2013-05-02T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-banger-week-day-4-planet-earth","changefreq":"weekly","video":[{"title":"S1:E11 - Banger Week Day 4 - Planet Earth","description":"Day 4 of Banger Week! Today, as promised, Gav and Dan blow up the world!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-banger-week-day-4-planet-earth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd8354e4-f598-4b11-9fd6-2426da0becd3/sm/ep7444.jpg","duration":195,"publication_date":"2013-05-02T15:17:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-banger-week-day-3-lego-house","changefreq":"weekly","video":[{"title":"S1:E10 - Banger Week Day 3 - Lego House","description":"It's Wednesday of Banger Week! Wednesday sounds like a good day for Gav and Dan to destroy childhood memories.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-banger-week-day-3-lego-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4861ef88-883f-45b7-a845-a505f37dff1f/sm/ep7439.jpg","duration":206,"publication_date":"2013-05-02T01:45:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-4","changefreq":"weekly","video":[{"title":"2013:E4 - Stinky Fools","description":"RTAA #95 has Burnie demonstrating the perfect way to diffuse the termination of an employee as he fires Gavin on April Fool's Day, Joel playing with his cardboard friends again, and Gus contemplating the stench of the past.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cb71c9e-1bb8-4a72-9e36-a41683b8d8d6/sm/ep7430.jpg","duration":62,"publication_date":"2013-05-01T15:18:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-216","changefreq":"weekly","video":[{"title":"2013:E216 - RT Podcast #216","description":"RT curses your baby. Again.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-216","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6661,"publication_date":"2013-04-30T22:43:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-banger-week-day-2-bowl-of-cereal","changefreq":"weekly","video":[{"title":"S1:E9 - Banger Week Day 2 - Bowl of Cereal","description":"Start your Tuesday with an ACTION BREAKFAST! Banger Week continues!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-banger-week-day-2-bowl-of-cereal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b682cdff-4c49-4795-8e75-1fa6d6da0aed/sm/ep7424.jpg","duration":134,"publication_date":"2013-04-30T16:13:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-banger-week-exploding-fertility-statue","changefreq":"weekly","video":[{"title":"S1:E8 - Banger Week - Exploding Fertility Statue","description":"It's Monday! It's day 1 of banger week. Come back every day this week for a new explosion. Today, Gav and Dan blow up a weird Peruvian fertility statue.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-banger-week-exploding-fertility-statue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45136c8c-a197-47b0-a84b-6bfd7c6f2500/sm/ep7419.jpg","duration":175,"publication_date":"2013-04-29T19:27:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-44","changefreq":"weekly","video":[{"title":"2013:E44 - Finger in a desk","description":"Someone gets a tattoo, another person plays with a puppy, and finally somebody gets their finger stuck in a desk.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b635aace-b65b-41c4-b2db-51d0186ef03b/sm/ep7414.jpg","duration":77,"publication_date":"2013-04-27T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-50","changefreq":"weekly","video":[{"title":"2013:E50 - Lost Not Found","description":"RTAA #94 is all about losing shit. Burnie tells the story of Geoff allegedly losing a check two seconds after he handed to him, and how that trait reminds him of his son, who also loses stuff all the time.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/019cc27c-d2e9-41a9-88bb-3161f9b1e2ee/sm/ep7397.jpg","duration":70,"publication_date":"2013-04-24T15:50:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-215","changefreq":"weekly","video":[{"title":"2013:E215 - RT Podcast #215","description":"RT sets off the alarm.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-215","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6012,"publication_date":"2013-04-23T20:52:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-33","changefreq":"weekly","video":[{"title":"2013:E33 - How does chair?","description":"The RT crew could sit in chairs the regular way but how lame would that be","player_loc":"https://roosterteeth.com/embed/rt-life-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8b126c1-f2ad-4460-8140-a6631479eaac/sm/ep7369.jpg","duration":118,"publication_date":"2013-04-20T19:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-39","changefreq":"weekly","video":[{"title":"2013:E39 - Drunk Burnie Returns","description":"Drunk Burnie returns in RTAA #93! This time, Burnie is at a PAX East party and has too much to drink, then proceeds to make false toasts at a company dinner, then later, takes it upon himself to kick people out of another party.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f107e0c4-7595-44ff-b7e1-6649382293c7/sm/ep7353.jpg","duration":107,"publication_date":"2013-04-17T15:45:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-214","changefreq":"weekly","video":[{"title":"2013:E214 - RT Podcast #214","description":"RT eats a giant spoonful of Bac Os.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6763,"publication_date":"2013-04-16T22:45:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-29","changefreq":"weekly","video":[{"title":"2013:E29 - Gavin's on a Leash","description":"Don't ask how it happened but I bet the same person who told Gavin that this was a good idea also told Kara to run in the rain.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d19da3a-90bb-41ca-a604-49dd6f0fb3dd/sm/ep7342.jpg","duration":90,"publication_date":"2013-04-13T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-paint-exploding-at-15000fps","changefreq":"weekly","video":[{"title":"S1:E7 - Paint Exploding at 15,000fps","description":"Gav and Dan find an interesting way to paint ceilings 600 times slower than you can see with your regular human eyeball!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-paint-exploding-at-15000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d4b30da-4754-40b8-902b-b482b4b176cc/sm/ep7337.jpg","duration":346,"publication_date":"2013-04-11T21:17:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-32","changefreq":"weekly","video":[{"title":"2013:E32 - More Plane Stories","description":"RTAA #92 takes off with two more plane stories, featuring an overly dramatic woman who won't settled for a gluten-full meal, and a plane with suspect mechanical integrity. Make sure your chair is in the upright and locked position, and prepare for HILARITY!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8618558a-9f51-4b15-8140-cd2ab4188e42/sm/ep7319.jpg","duration":89,"publication_date":"2013-04-10T17:12:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-213","changefreq":"weekly","video":[{"title":"2013:E213 - RT Podcast #213","description":"RT punches squirrels.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-213","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6621,"publication_date":"2013-04-09T23:17:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-22","changefreq":"weekly","video":[{"title":"2013:E22 - A Frosty Brew","description":"Gus puts the Podcast Brew in a jug-- er, I mean the \"Fermenter\", meanwhile Kerry and Ray try to explain how to play Frosty the Snowman.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/275fd70a-1814-4c7e-8533-227de23c8a2c/sm/ep7283.jpg","duration":140,"publication_date":"2013-04-06T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-20","changefreq":"weekly","video":[{"title":"2013:E20 - Dan vs. Food","description":"RTAA #91 has Burnie and Gav retelling the tale of Dan 'the Man\" Gruchy's difficulties understanding how menus work and the awkward restaurant interactions it creates.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a62c45b2-5c6e-4a9c-86c1-46bb9d25db46/sm/ep7244.jpg","duration":85,"publication_date":"2013-04-03T16:11:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-212","changefreq":"weekly","video":[{"title":"2013:E212 - RT Podcast #212","description":"RT spits on Matt","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6028,"publication_date":"2013-04-02T23:36:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-5-rt-shorts-reunion","changefreq":"weekly","video":[{"title":"S5:E6 - RT Shorts Reunion","description":"Gus can't take it anymore.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-5-rt-shorts-reunion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7efe3428-4894-4d3a-bdbc-7ce450c32083/sm/ep7232.jpg","duration":346,"publication_date":"2013-04-01T10:17:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-15","changefreq":"weekly","video":[{"title":"2013:E15 - Action Paxed :D","description":"The Rooster Teeth gang have to road trip it from NY to Boston for PAX East!","player_loc":"https://roosterteeth.com/embed/rt-life-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/923c2ac2-5a0d-437b-957c-f4ab3f6035d5/sm/ep7231.jpg","duration":73,"publication_date":"2013-03-30T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-jackie-chan-coin-challenge","changefreq":"weekly","video":[{"title":"S1:E6 - Jackie Chan Coin Challenge","description":"Gav and Dan put their hand-eye coordination skills to the test. Due to the fact that both of them were terrible, we had to resort to a montage. Oh and for the record, Jackie Chan definitely did more than 3.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-jackie-chan-coin-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/355f0e4d-35aa-4ced-9871-d02ce7141af3/sm/ep7227.jpg","duration":195,"publication_date":"2013-03-29T19:27:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-11","changefreq":"weekly","video":[{"title":"2013:E11 - Lucid Bear Dreams","description":"We've got some Gavin-themed stories for you in RTAA #90! After realizing he's in a lucid dream, Gav gets a little carried away with his super powers. Then, Burnie tries to teach him how to survive a bear encounter. And finally, we have the idiotic conclusion to the headphone saga!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28ebba08-bf13-4316-be0d-4ecd5268efb2/sm/ep7210.jpg","duration":69,"publication_date":"2013-03-27T16:37:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-211","changefreq":"weekly","video":[{"title":"2013:E211 - RT Podcast #211","description":"RT gets friendship necklaces.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6776,"publication_date":"2013-03-26T21:50:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-7","changefreq":"weekly","video":[{"title":"2013:E7 - Butter Beer and Soggy Bread","description":"Gus and Kara make brew Rooster Teeth's own beer and Gavin gets sick.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33925ac9-ab91-4eac-a779-a31c50e912c2/sm/ep7201.jpg","duration":133,"publication_date":"2013-03-23T04:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-black-trailer","changefreq":"weekly","video":[{"title":"V1:E3 - \"Black\" Trailer","description":"Third look at Rooster Teeth's newest project RWBY helmed by Red vs. Blue Lead Animator Monty Oum. See the premiere at RTX 2013!\r\nrtxevent.com","player_loc":"https://roosterteeth.com/embed/rwby-season-1-black-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/317f9bc9-3fe2-48f9-8b8b-2f85c9612481/sm/ep7194.jpg","duration":313,"publication_date":"2013-03-22T16:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-cat-jumping-in-slow-motion","changefreq":"weekly","video":[{"title":"S1:E5 - Cat Jumping in Slow Motion","description":"To Gav and Dan's dismay, viewer feedback indicates that Lloyd the cat is in fact the most popular member of the Slow Mo Guys team. So here is a short and sweet clip of Lloyd in action. Oh and by the way, Lloyd is a female cat... that's right.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-cat-jumping-in-slow-motion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db2aaded-34c5-47eb-b542-7ab261f76602/sm/ep7189.jpg","duration":82,"publication_date":"2013-03-21T03:17:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013","changefreq":"weekly","video":[{"title":"2013:E1 - Gus Hates Interns","description":"In RTAA #89, Gus has awkward encounters with Lindsay and Miles back when they were lowly interns and undeserving of his attention.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/146b2c9e-88d2-45b8-9572-f64311e5d0db/sm/ep7170.jpg","duration":66,"publication_date":"2013-03-20T19:35:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-210","changefreq":"weekly","video":[{"title":"2013:E210 - RT Podcast #210","description":"RT eats babies.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-210","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6799,"publication_date":"2013-03-19T22:17:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-43","changefreq":"weekly","video":[{"title":"2013:E43 - SXSW Party","description":"Rooster Teeth and Machinima party the night away down at Speak Easy during SXSW. Who could say no to an open bar","player_loc":"https://roosterteeth.com/embed/rt-life-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0075d650-80b9-43d9-a6f3-a65d4595d588/sm/ep7152.jpg","duration":71,"publication_date":"2013-03-16T17:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-tuning-fork-at-1600fps","changefreq":"weekly","video":[{"title":"S1:E4 - Tuning Fork at 1600fps","description":"A bunch of people requested a tuning fork so... BOOM! Here's a video of a tuning fork.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-tuning-fork-at-1600fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6f3e41c-d8ae-41ae-b640-bea4c798c53f/sm/ep7145.jpg","duration":156,"publication_date":"2013-03-14T19:00:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-48","changefreq":"weekly","video":[{"title":"2013:E48 - Big Noses & Little Sisters","description":"RTAA #88 reveals the origins of Gavin's giant nose and the problems having a schnoz like his can cause when falling. Then, Kara messes up Gus' playtime in true little sister fashion.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d575710-7583-4a57-972c-8ae1d6294ff6/sm/ep7140.jpg","duration":66,"publication_date":"2013-03-13T17:17:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-209","changefreq":"weekly","video":[{"title":"2013:E209 - RT Podcast #209","description":"RT introduces themselves again.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-209","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6090,"publication_date":"2013-03-13T00:26:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-38","changefreq":"weekly","video":[{"title":"2013:E38 - Water Duel","description":"Better get some paper towels.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e05400b-0a43-4fe7-a82a-81326d38e677/sm/ep7129.jpg","duration":152,"publication_date":"2013-03-10T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-smashing-a-tv-with-a-hammer","changefreq":"weekly","video":[{"title":"S1:E3 - Smashing a TV with a Hammer","description":"In the next video from the archive, Gav and Dan show you what happens when a TV from the late 80s meets a hammer from the late 90s.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-smashing-a-tv-with-a-hammer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18ce87f7-72df-4431-b5cd-9f8114e57c11/sm/ep7112.jpg","duration":170,"publication_date":"2013-03-07T02:24:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-41","changefreq":"weekly","video":[{"title":"2013:E41 - Gus' Rooftop Rat","description":"RTAA #87 is about how a mysterious \"crunking\" noise coming from the wall baits Gus into an encounter with a rat living inside his house. Also, Gus tries to cope as the \"backwards headphone plague\" spreads to other members of the podcast.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd949b29-d571-4df5-b34c-675c56b99e9e/sm/ep7103.jpg","duration":66,"publication_date":"2013-03-06T13:47:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-208","changefreq":"weekly","video":[{"title":"2013:E208 - RT Podcast #208","description":"RT is half an egg","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-208","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7220,"publication_date":"2013-03-06T00:05:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-27","changefreq":"weekly","video":[{"title":"2013:E27 - Pizza Guy Surprise","description":"The podcast production crew shows some appreciation for their hard working delivery driver.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/244066c0-fa94-49cf-ade6-3d6d24772a3d/sm/ep7070.jpg","duration":91,"publication_date":"2013-03-03T04:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-exploding-lighters-at-1000fps","changefreq":"weekly","video":[{"title":"S1:E2 - Exploding lighters at 1000fps","description":"In the first video from the archive, Dan forgot to bring the meat to the bqq, so he cooked the lighters.","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-exploding-lighters-at-1000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6b5f31b-0671-4dfa-8806-5ed9241d329b/sm/ep7046.jpg","duration":133,"publication_date":"2013-02-27T22:37:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-28","changefreq":"weekly","video":[{"title":"2013:E28 - Homeless Depot","description":"In RTAA #86 we find Geoff having an awkward encounter with a person he assumed worked at Home Depot, Gus' anger over Gavin's headphones grows, and Marshall's stint of office-living comes to a morbid end.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e8dd6c7-fbd1-4b01-95c3-9b579c90ac3c/sm/ep7043.jpg","duration":70,"publication_date":"2013-02-27T17:03:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-207","changefreq":"weekly","video":[{"title":"2013:E207 - RT Podcast #207","description":"RT doesn't help people up.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7436,"publication_date":"2013-02-26T22:48:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-206","changefreq":"weekly","video":[{"title":"2013:E206 - RT Podcast #206","description":"RT is blinded and burned by the light.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-206","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7816,"publication_date":"2013-02-21T02:16:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-slow-mo-guys-season-1-bubble-bursting-at-18000fps","changefreq":"weekly","video":[{"title":"S1:E1 - Bubble bursting at 18,000fps","description":"In the slowest video they have ever done, Gav and Dan slow down the moment a bubble pops by over 700 times. This is the first time we've used the Phantom v1610 which shoots at 18,000fps at 720p. This camera is absolutely mental!","player_loc":"https://roosterteeth.com/embed/the-slow-mo-guys-season-1-bubble-bursting-at-18000fps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/356ba367-f811-446c-b15b-48f48a2daa68/sm/ep6984.jpg","duration":222,"publication_date":"2013-02-20T20:31:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-18","changefreq":"weekly","video":[{"title":"2013:E18 - Headphones & Peeing","description":"RTAA #85 is the start of a futile saga wherein Gus tries to get Gavin to wear his headphones the right way, then Burnie gets a rude text, and Gus pees in public and almost lands on the registered sex offender list.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b1039db-c6b9-4d26-92e3-fcbb933bbd73/sm/ep6982.jpg","duration":69,"publication_date":"2013-02-20T17:13:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-12","changefreq":"weekly","video":[{"title":"2013:E12 - Dick Ice and 1 Million Likes","description":"Geoff and Gavin square off on a age old game of dick ice while Brandon tries to get a marketing screenshot for the 1,000,000th like on the Red vs. Blue facebook page.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05ea6362-4386-4d1d-89fd-dbf0c822bfa7/sm/ep6967.jpg","duration":139,"publication_date":"2013-02-16T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-205","changefreq":"weekly","video":[{"title":"2013:E205 - RT Podcast #205","description":"RT can't fit a whole pancake in their mouths.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6674,"publication_date":"2013-02-13T22:31:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-white-trailer","changefreq":"weekly","video":[{"title":"V1:E2 - \"White\" Trailer","description":"The second trailer for the new animated show RWBY from Rooster Teeth.\n\nBuy the song here!\niTunes - http://bit.ly/ZC1e6T\nGoogle Play - http://bit.ly/Y5oWWa\n\nSee the premiere at RTX 2013!\nrtxevent.com","player_loc":"https://roosterteeth.com/embed/rwby-season-1-white-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0206253a-a0ef-43be-83cc-a5c867a49f3e/sm/ep6934.jpg","duration":229,"publication_date":"2013-02-13T21:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-3","changefreq":"weekly","video":[{"title":"2013:E3 - Gus on Mars","description":"RTAA #84 tells the tale of Gus taking a one-way trip to Mars just to spite Gavin, and what his life would be like on the Red Planet.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29639c25-e70a-43e3-8984-d581b23004ab/sm/ep6918.jpg","duration":72,"publication_date":"2013-02-13T16:18:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-36","changefreq":"weekly","video":[{"title":"2013:E36 - Jack and Gavin play Tennis","description":"Gavin and Jack play a nice friendly game of Tennis in Austin. Oh and the loser has to lick Gus' diseased leg... LETS PLAY!","player_loc":"https://roosterteeth.com/embed/rt-life-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cce1afa-de53-43c1-b756-88261e96fd69/sm/ep6864.jpg","duration":209,"publication_date":"2013-02-10T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-204","changefreq":"weekly","video":[{"title":"2013:E204 - RT Podcast #204","description":"RT washes their bodies with shampoo.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-204","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6869,"publication_date":"2013-02-06T22:41:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-38","changefreq":"weekly","video":[{"title":"2013:E38 - Plane Stories","description":"RTAA #83 is a trilogy of plane-themed stories told by Geoff. Watch as Matt has trouble going through security, while Gus and Geoff question the integrity of their aircraft and have an awkward encounter with a pilot.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f8288c4-9699-4aa0-b527-a3293aaef087/sm/ep6833.jpg","duration":84,"publication_date":"2013-02-06T16:08:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2013-rt-recap-week-of-february-3rd","changefreq":"weekly","video":[{"title":"2013:E5 - RT Recap - Week of February 3rd","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit goes to Shutterstock.com\r\n\r\n Hospital Background 1, Mouse Pointer Icon, Hospital Background 2, Mannequin Head Background 1, Mannequin Head Background 2, Hospital Background 3, Hospital Background 4, Stethescope,","player_loc":"https://roosterteeth.com/embed/rt-recap-2013-rt-recap-week-of-february-3rd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b2f2e5d-bcf6-458f-898d-ef20859e07b6/sm/ep6811.jpg","duration":248,"publication_date":"2013-02-03T23:37:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-25","changefreq":"weekly","video":[{"title":"2013:E25 - Award Season","description":"Miles and Brandon are attending the IAWTV Awards in Las Vegas while Kathleen, Matt, Burnie and Monty attend the Producers Guild Awards in Los Angeles. One group hob nobs with celebrities, the other group tries on silly hats.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24a464fd-f16c-42d9-9637-7fd1ba0f41cf/sm/ep6810.jpg","duration":106,"publication_date":"2013-02-03T00:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-simple-walk-a-simple-walk-episode-05","changefreq":"weekly","video":[{"title":"ASW:E5 - The Ring is Found! - Episode 5","description":"After \"destroying\" the ring on top of Mount Doom, Kerry and Chris returned to America. However, it wasn't long before the evil One Ring of Power resurfaced!","player_loc":"https://roosterteeth.com/embed/a-simple-walk-a-simple-walk-episode-05","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d06f2c4b-043c-4252-aba4-35ca58dace4e/sm/2013912-1444339046020-SimpleWalk_Thumbail_Pt5.jpg","duration":440,"publication_date":"2013-01-31T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-203","changefreq":"weekly","video":[{"title":"2013:E203 - RT Podcast #203","description":"RT snacks on clittles.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6758,"publication_date":"2013-01-30T22:31:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-26","changefreq":"weekly","video":[{"title":"2013:E26 - Donuts for Cake","description":"In Rooster Teeth Animated Adventures #82, Miles' miserable evening takes a turn for the better when his drunk friend steals a birthday cake.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c93e83c5-4c0a-4e78-8ba4-dc2761391dc3/sm/ep6773.jpg","duration":129,"publication_date":"2013-01-30T16:08:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2013-rt-recap-week-of-january-27th","changefreq":"weekly","video":[{"title":"2013:E4 - RT Recap - Week of January 27th","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit goes to Shutterstock.com\r\n\r\n Perseus Statue, Hercules Statue, Roses, Mannequin Head Background 1, Mannequin Head Background 2, Chester Cathedral, Mannequin Head Background 3, Bucket of Kittens, Mannequin Head with Brushes, Whale Breech, Beluga Whale, Clay Whale.","player_loc":"https://roosterteeth.com/embed/rt-recap-2013-rt-recap-week-of-january-27th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c388ea0-285c-4eaa-8410-dc88c67babca/sm/ep6738.jpg","duration":232,"publication_date":"2013-01-28T00:32:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-16","changefreq":"weekly","video":[{"title":"2013:E16 - Cribs and D****","description":"Miles and Brandon start a simple walk of their own towards Sin City. Also when you're hanging around Middle Earth, what do you talk about Maybe Kara knows if she finally gets that tool box closed.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d11f8b5-fd1d-423d-a2a6-af3a91d12424/sm/ep6737.jpg","duration":136,"publication_date":"2013-01-26T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-202","changefreq":"weekly","video":[{"title":"2013:E202 - RT Podcast #202","description":"RT hides dead bodies.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-202","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6737,"publication_date":"2013-01-24T00:15:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-16","changefreq":"weekly","video":[{"title":"2013:E16 - Geoff's Vespa Crash","description":"Rooster Teeth Animated Adventures #81 is the embarrassing story of how Geoff crashed a Vespa, then got insult added to injury.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17691360-6476-4443-b126-65de1685e42e/sm/ep6724.jpg","duration":67,"publication_date":"2013-01-23T16:08:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2013-rt-recap-week-of-january-20th","changefreq":"weekly","video":[{"title":"2013:E3 - RT Recap - Week of January 20th","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit goes to Shutterstock.com\r\n\r\n Princess Castle, Blue Room, Path to the Castle, Red Bow Tie, Fairy Tale Garden, King's Crown","player_loc":"https://roosterteeth.com/embed/rt-recap-2013-rt-recap-week-of-january-20th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38b3423b-3792-4bf0-a80d-f2a663ec4a05/sm/ep6693.jpg","duration":201,"publication_date":"2013-01-20T21:40:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-8","changefreq":"weekly","video":[{"title":"2013:E8 - The Impossible Box","description":"4. It takes 4.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9196a8cc-417e-4059-b211-57866f71f635/sm/ep6692.jpg","duration":121,"publication_date":"2013-01-19T19:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-201","changefreq":"weekly","video":[{"title":"2013:E201 - RT Podcast #201","description":"RT puts knobs in clunges.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5923,"publication_date":"2013-01-16T23:49:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-46","changefreq":"weekly","video":[{"title":"2013:E46 - For Whom the Bell Trolls","description":"Rooster Teeth Animated Adventures #80 unravels the mystery of Marshall's secret doorbell.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ec04d59-bf8e-45af-92e8-e74e8e0a40f9/sm/ep6621.jpg","duration":66,"publication_date":"2013-01-16T16:40:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2013-rt-recap-week-of-january-13th","changefreq":"weekly","video":[{"title":"2013:E2 - RT Recap - Week of January 13th ","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Background 1 goes to Shutterstock\r\n\r\nImage Credit for Background 2 goes to Shutterstock\r\n\r\nImage Credit for Background 3 goes to Shutterstock\r\n\r\nImage Credit for Beach Ball goes to Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2013-rt-recap-week-of-january-13th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/801e75b4-9787-4f7e-a4de-fd5b0ca1ce0c/sm/ep6606.jpg","duration":148,"publication_date":"2013-01-14T00:51:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-34","changefreq":"weekly","video":[{"title":"2013:E34 - Last Coffee Last Kiss","description":"Gav and Miles \"battle\" over the last bit of coffee.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad5d69f8-ced7-451e-8ae0-c9323c0eb888/sm/ep6605.jpg","duration":42,"publication_date":"2013-01-12T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-200","changefreq":"weekly","video":[{"title":"2013:E200 - RT Podcast #200","description":"RT celebrates podcast 200!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-200","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6297,"publication_date":"2013-01-09T18:44:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-33","changefreq":"weekly","video":[{"title":"2013:E33 - Miles' Daring Party Escape","description":"Rooster Teeth Animated Adventures #79 is the tale of Miles' panicked attempt to escape a party when the cops show up.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27560520-3f6f-4e97-969d-c3e1ecc2f245/sm/ep6552.jpg","duration":100,"publication_date":"2013-01-09T16:22:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2013-rt-recap-week-of-january-6th","changefreq":"weekly","video":[{"title":"2013:E1 - RT Recap - Week of January 6th","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Dinosaur Herd goes to Shutterstock\r\n\r\nImage Credit for Triceratops Herd goes to Shutterstock\r\n\r\nImage Credit for Big Dinosaur Walking goes to Shutterstock\r\n\r\nImage Credit for Dinosaur in The Dark Forest goes to Shutterstock\r\n\r\nImage Credit for Small T-Rex goes to Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2013-rt-recap-week-of-january-6th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75e7e8f1-17a2-45cd-a589-d0595cfaae93/sm/ep6513.jpg","duration":174,"publication_date":"2013-01-06T23:48:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2013-20","changefreq":"weekly","video":[{"title":"2013:E20 - New Year Nipples","description":"Enjoy a new year with the Rooster Teeth Crew.","player_loc":"https://roosterteeth.com/embed/rt-life-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a41bfed9-9093-434c-a7d5-dabbd688f050/sm/ep6511.jpg","duration":80,"publication_date":"2013-01-05T23:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-053112","changefreq":"weekly","video":[{"title":"S1:E193 - Hard News 05/31/12","description":"Today on Hard News the lawsuit between Epic Games and Silicon Knights has come to a close, a new Splinter Cell has been rumored, and a new DC comics fighting game.\r\nEpic wins court battle with Silicon Knights to the tune of $4.4 million - http://www.screwattack.com/news/epic-wins-court-battle-silicon-knights-tune-44-million\r\n[Rumor] Splinter Cell: Blacklist is coming to E3 - http://www.screwattack.com/news/rumor-splinter-cell-blacklist-coming-e3\r\nA New DC Heroes Fighting Game? - http://www.screwattack.com/trailers/e3-2012-new-dc-heroes-fighting-game\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA ","player_loc":"https://roosterteeth.com/embed/hard-news-053112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a02d91bb-8150-448e-a52e-216b4ba7d8f3/sm/video_thumbnail_316956.png","duration":151,"publication_date":"2012-05-31T20:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-happy-a-kon-convention","changefreq":"weekly","video":[{"title":"S1:E312 - Super Happy A-Kon Convention!","description":"Be there to get your fill of American curves.","player_loc":"https://roosterteeth.com/embed/super-happy-a-kon-convention","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01ccda81-b63b-4818-abe4-93c1e02d202f/sm/video_thumbnail_289955.png","duration":41,"publication_date":"2012-05-31T08:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/explore-your-new-screwattack-features","changefreq":"weekly","video":[{"title":"S1:E311 - Explore Your New ScrewAttack Features","description":" We've added a heck of a lot of new things to ScrewAttack. See how you can benefit from using them!\r\nGo to your new profile and go crazy!","player_loc":"https://roosterteeth.com/embed/explore-your-new-screwattack-features","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9729eded-6dd0-4384-8588-9375ab215584/sm/video_thumbnail_157066.jpg","duration":82,"publication_date":"2012-05-30T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-053012","changefreq":"weekly","video":[{"title":"S1:E192 - Hard News 05/30/12","description":"Today on Hard News Doom 3 is getting a facelift, more Castlevania 3DS details, and a new Ratchet & Clank game.\r\nBethesda Announces Doom 3 BFG Edition - http://www.screwattack.com/news/bethesda-announces-doom-3-bfg-edition\r\nCastlevania 3DS fully named Castlevania: Lords of Shadow - Mirror of Fate - http://www.screwattack.com/news/castlevania-3ds-fully-named-castlevania-lords-shadow-mirror-fate\r\nInsomniac to create new Ratchet and Clank for 10 year anniversary - http://www.screwattack.com/news/insomniac-create-new-ratchet-and-clank-10-year-anniversary\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-053012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4af50870-97d4-4933-8dac-6516674fb910/sm/video_thumbnail_275913.png","duration":162,"publication_date":"2012-05-30T17:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amanda-mckays-battleship-is-sponsored-by-coke-zero","changefreq":"weekly","video":[{"title":"S1:E310 - Amanda McKay's Battleship is Sponsored by Coke Zero","description":"Recently, Craig got a chance to sit down with Amanda McKay to talk about the upcoming browser game, Battle For Everything.","player_loc":"https://roosterteeth.com/embed/amanda-mckays-battleship-is-sponsored-by-coke-zero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13a8b6aa-0f5a-4eb7-b63e-c594e82d5702/sm/video_thumbnail_266443.png","duration":283,"publication_date":"2012-05-30T09:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-053012","changefreq":"weekly","video":[{"title":"S1:E309 - SideScrollers Extended 05/30/12","description":"Ten more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-053012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac7712e6-a5f7-4900-a3ee-7cd4339ef438/sm/video_thumbnail_263072.jpg","duration":449,"publication_date":"2012-05-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"upside-the-face\"","changefreq":"weekly","video":[{"title":"S1:E66 - SideScrollers - \"Upside the Face\"","description":"We give our E3 predictions, and the zombie apocalypse has begun. In Florida, of course.\r\nWhat You Did While ScrewAttack Was Down Contest - http://www.screwattack.com/news/contest-what-you-did-while-screwattack-was-down\r\nWatch SideScrollers Extended here! -- http://bit.ly/LDHpQo\r\nAUDIO VERSION -- http://traffic.libsyn.com/sidescrollers/SideScrollersAudio053012.mp3\r\nSubscribe to the gang's ScrewAttack feeds!!\r\nCraig -- screwattack.com/user/craig\r\nChad -- screwattack.com/user/chad\r\nJared --  screwattack.com/user/jared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"upside-the-face\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/407f090e-a84d-4ee8-963d-9ee43a6a20bd/sm/video_thumbnail_263080.jpg","duration":2543,"publication_date":"2012-05-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052912","changefreq":"weekly","video":[{"title":"S1:E191 - Hard News 05/29/12","description":"Today on Hard News Metro might not be coming to the Wii U, PlayStation Plus is possibly getting an overhaul, and Kingdoms of Amalur 2 will not be made.\r\nMetro: Last Light is not coming to Wii U - http://www.screwattack.com/news/metro-last-light-not-coming-wii-u\r\n[Rumor] Playstation Plus tiers appear alongside Gaikai and the Vita Cloud - http://www.screwattack.com/news/rumor-playstation-plus-tiers-appear-alongside-gaikai-and-vita-cloud\r\nKingdoms of Amalur: Reckoning 2 was in development before 38 Studios shut down - http://www.screwattack.com/news/kingdoms-amalur-reckoning-2-was-development-38-studios-shut-down\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-052912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57be2fbd-5f8a-414e-bbb8-e8e25bf2e695/sm/video_thumbnail_261283.png","duration":173,"publication_date":"2012-05-29T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-covering-e3-of-the-future","changefreq":"weekly","video":[{"title":"S1:E308 - ScrewAttack: Covering E3 of the Future!","description":"Hopefully you will find this easy to make whoopie to.","player_loc":"https://roosterteeth.com/embed/screwattack-covering-e3-of-the-future","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87d41eba-65fb-4feb-b600-7cb2a7170e26/sm/video_thumbnail_255526.png","duration":31,"publication_date":"2012-05-29T08:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-8-mile","changefreq":"weekly","video":[{"title":"S1:E3 - Newsroom: 8 Mile","description":"I would walk about 8 miles and I would walk about 8 more.","player_loc":"https://roosterteeth.com/embed/newsroom-8-mile","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96393b76-2c44-434a-a23a-3033e652a482/sm/newsroomthumb.jpg","duration":83,"publication_date":"2012-05-28T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-chad-payne","changefreq":"weekly","video":[{"title":"S1:E166 - Clip of the Week - Chad Payne","description":"Max Payne's recent habits are not something anybody should try to replicate. Too bad nobody told Chad this.\r\nScrewAttack's Twitter\r\nScrewAttack's Facebook\r\nNick's Twitter\r\nNick's Facebook","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-chad-payne","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2eb4185-7966-4c39-a79c-a2b68232ddfe/sm/video_thumbnail_232762.jpg","duration":221,"publication_date":"2012-05-25T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052512","changefreq":"weekly","video":[{"title":"S1:E190 - Hard News 05/25/12","description":"Today on Hard News Sony's in game ads, 38 Studios and Big Huge Games are no more, and the Demon's Soul servers live on.\r\nSony patent wants to pause games for advertising - http://www.screwattack.com/news/sony-patent-wants-pause-games-advertising\r\nHard times for another American game studio - http://www.screwattack.com/news/hard-times-another-american-game-studio\r\nDemon Souls to continue haunting you for “foreseeable future” - http://www.screwattack.com/news/demon-souls-continue-haunting-you-%E2%80%9Cforeseeable-future%E2%80%9D\r\n \r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-052512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b86d810d-218b-468c-8782-d15ff52bbf8b/sm/video_thumbnail_226641.png","duration":159,"publication_date":"2012-05-25T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/mario-party-4-after-dark-is-coming","changefreq":"weekly","video":[{"title":"S1:E306 - Mario Party 4 After Dark is Coming","description":"And it is a storm of passion.\r\nShow your support.  Four will enter, one will win.","player_loc":"https://roosterteeth.com/embed/mario-party-4-after-dark-is-coming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/047d6a7b-a427-41ec-8988-7bc11c6ddde2/sm/video_thumbnail_213104.png","duration":50,"publication_date":"2012-05-25T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/exclusive-transformers-universe-interview","changefreq":"weekly","video":[{"title":"S1:E305 - EXCLUSIVE Transformers Universe Interview","description":"Jared and Bryan went to BotCon to check out Fall of Cybertron, but also managed to score an exclusive interview on the upcoming MMO, Transformers Universe.","player_loc":"https://roosterteeth.com/embed/exclusive-transformers-universe-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a58def27-544a-47c1-a684-28acb885c256/sm/video_thumbnail_221902.jpg","duration":182,"publication_date":"2012-05-24T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052412","changefreq":"weekly","video":[{"title":"S1:E189 - Hard News 05/24/12","description":"Today on Hard News Ron Gilbert's new game, a Shadow of the Colossus movie, and Konami gets sued by a bank.\r\nDouble Fine and Sega reveal Ron Gilbert’s The Cave - http://www.screwattack.com/news/double-fine-and-sega-reveal-ron-gilbert%E2%80%99s-cave\r\nShadow of the Colossus: The Movie has a Director - http://www.screwattack.com/news/shadow-colossus-movie-has-director\r\nKonami & Autumn sued over Def Jam Rapstar loan - http://www.screwattack.com/news/konami-autumn-sued-over-def-jam-rapstar-loan\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-052412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9be9820-19cd-4187-b21a-099bf4202d0d/sm/video_thumbnail_215133_0.png","duration":149,"publication_date":"2012-05-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sitting-down-with-a-black-ops-2-bigwig","changefreq":"weekly","video":[{"title":"S1:E304 - Sitting down with a Black Ops 2 bigwig","description":"While out at Activision's Pre-E3 event, Bryan got to see a live demonstration of Black Ops 2 and sit down with Daniel Suarez, one of the top men working on the game. What did Daniel have to say about his game that would separate it from the rest of the series?","player_loc":"https://roosterteeth.com/embed/sitting-down-with-a-black-ops-2-bigwig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c1b9980-7398-43d6-ac06-1fb9560abd7f/sm/video_thumbnail_206864.png","duration":270,"publication_date":"2012-05-23T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/going-to-la-and-coming-back-with-black-ops-2-impressions","changefreq":"weekly","video":[{"title":"S1:E303 - Going to LA and coming back with Black Ops 2 Impressions!","description":"Bryan got to head out to LA to see some of Activision's upcoming games before E3. One of them was a title from a series people tend to feel strongly about, and that was Call of Duty: Black Ops 2.\r\nIf you want to find out more about Black Ops 2, check out Bryan's interview with the games VP of Production!","player_loc":"https://roosterteeth.com/embed/going-to-la-and-coming-back-with-black-ops-2-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/584df200-0763-45b5-8039-17815c4de5b5/sm/video_thumbnail_206484.png","duration":102,"publication_date":"2012-05-23T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052312","changefreq":"weekly","video":[{"title":"S1:E188 - Hard News 05/23/12","description":"Today on Hard News the Street Fighter 25th Anniversary pack, new XCom details, and some more Wii U rumors.","player_loc":"https://roosterteeth.com/embed/hard-news-052312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c823e08-f29f-45d6-b19f-69a9b8c5edff/sm/video_thumbnail_201500.jpg","duration":172,"publication_date":"2012-05-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-052212","changefreq":"weekly","video":[{"title":"S1:E302 - SideScrollers Extended 05/22/12","description":"Ten extra minutes for Advantage members.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-052212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8db2a7db-2973-44ee-af4c-6aef7dcaa6c9/sm/video_thumbnail_163765.png","duration":513,"publication_date":"2012-05-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-want-a-dildo","changefreq":"weekly","video":[{"title":"S1:E65 - SideScrollers - \"Want a Dildo?\"","description":"We hope you're having fun playing around with the new site features.\r\nGet the Audio Version here.\r\nExtra content for Advantage members can be found here.\r\nGot a question to ask? Post it on our wall.\r\nFollow us on Twitter!\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/projared\r\nBryan - http://twitter.com/MrBryanBaker","player_loc":"https://roosterteeth.com/embed/sidescrollers-want-a-dildo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/606316ef-03ae-4c06-be8f-e497bd78ef86/sm/video_thumbnail_162974.png","duration":3016,"publication_date":"2012-05-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052212","changefreq":"weekly","video":[{"title":"S1:E187 - Hard News 05/22/12","description":"Today on Hard News more info on upcoming Castlevania games, Bungie's new franchise, and more details about the Activision trial.\r\n[Rumor] Two new Castlevania games are in development - http://www.screwattack.com/news/rumor-two-new-castlevania-games-are-development\r\nThe L.A. Times reveals Bungie’s new franchise codenamed “Destiny” - http://www.screwattack.com/news/la-times-reveals-bungie%E2%80%99s-new-franchise-codenamed-%E2%80%9Cdestiny%E2%80%9D\r\nActivision executive e-mails made public during trial - http://www.screwattack.com/news/activision-executive-e-mails-made-public-during-trial","player_loc":"https://roosterteeth.com/embed/hard-news-052212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b7cd564-4e78-4a22-a3a2-9e5938b43f49/sm/video_thumbnail_163797.jpg","duration":169,"publication_date":"2012-05-22T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-re-evaluated","changefreq":"weekly","video":[{"title":"S1:E2 - Newsroom: Re-evaluated","description":"DLC needs to be handled with TLC.","player_loc":"https://roosterteeth.com/embed/newsroom-re-evaluated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d6ccfe2-4ab9-4766-b2f8-ec8947efa50b/sm/video_thumbnail_157431.jpg","duration":119,"publication_date":"2012-05-22T13:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-052112","changefreq":"weekly","video":[{"title":"S1:E186 - Hard News 05/21/12","description":"Today on Hard News Nintendo changes the Wii U controller, Aliens Colonial Marines is delayed, and possibly the next Castlevania. ","player_loc":"https://roosterteeth.com/embed/hard-news-052112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e061d84-ad44-4ea2-8a46-c395974f84f2/sm/video_thumbnail_156314.jpg","duration":155,"publication_date":"2012-05-22T07:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051812","changefreq":"weekly","video":[{"title":"S1:E185 - Hard News 05/18/12","description":"Today a lot of news but the big stuff is about the site you're currently on! Check out your new profile!","player_loc":"https://roosterteeth.com/embed/hard-news-051812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12c5f3ef-48e1-4e44-a429-3d11e470a862/sm/video_thumbnail_156140.jpg","duration":152,"publication_date":"2012-05-18T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-051612","changefreq":"weekly","video":[{"title":"S1:E301 - SideScrollers Extended 05/16/12","description":"More SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-051612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":230,"publication_date":"2012-05-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-pbjd","changefreq":"weekly","video":[{"title":"S1:E64 - SideScrollers - \"PB&J&D\"","description":"Today is all about what could potentially be a culinary explosion of taste.\r\nGet the audio version here - http://bit.ly/JDlScs\r\nSideScrollers Extended can be watched here!! - http://bit.ly/JeUGnt\r\nWatch the videos mentioned by clicking the links below!\r\nNewsroom: 40 Seconds - http://bit.ly/KZMt10\r\nScrewAttack vs Dorkly ROUND ONE - http://bit.ly/IYznjn\r\nScrewAttack vs Dorkly ROUND TWO - http://bit.ly/IWJs73\r\nScrewAttack vs Dorkly ROUND THREE -  http://bit.ly/LZVmg6\r\nClip of the Week - Peter Molyneux's New Studio - http://bit.ly/JHLvZ2\r\nTerrible Thursday - Beetlejuice & Double Dragon V - http://bit.ly/K38TkT\r\nVGV - NBA Hangtime - http://bit.ly/KfKgmo\r\nVGV - Battle Chess - http://bit.ly/JqFq6G \r\nGot a question to ask? Post it in the forums!\r\nNew T-Shirts! - http://bit.ly/JHoiZ2\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-pbjd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2979,"publication_date":"2012-05-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/newsroom-40-seconds","changefreq":"weekly","video":[{"title":"S1:E1 - Newsroom: 40 Seconds","description":"It feels more like forty forevers.","player_loc":"https://roosterteeth.com/embed/newsroom-40-seconds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bb61dbb-f9b7-4f11-93a3-fb475289e3d1/sm/jaredface.jpg","duration":113,"publication_date":"2012-05-15T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051412","changefreq":"weekly","video":[{"title":"S1:E181 - Hard News 05/14/12","description":"Why is good old Ollie North pushing Call of Duty? That's what Overthinker is wondering.\r\nhttp://www.screwattack.com/shows/partners/game-overthinker/game-overthinker-episode-70-fall-duty\r\nToday on Hard News Battlefield might do more to challenge Call of Duty, Blizzard and Valve reach a DotA decision, and the Book of Memories is gonna be shut for a while longer.\r\nBattlefield Premium - http://www.screwattack.com/news/rumor-battlefield-premium-being-developed-combat-cod-elite\r\nValve and Blizzard decide on DotA - http://www.screwattack.com/news/valve-and-blizzard-have-come-agreement-regarding-rights-dota\r\nSilent Hill: Book of Memories delay - http://www.screwattack.com/news/silent-hill-book-memories-gets-delayed-yet-again\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-051412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3f200bf-d20a-4b45-96ec-83202ff67184/sm/dota-2-heroes.jpg","duration":163,"publication_date":"2012-05-14T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-battle-chess","changefreq":"weekly","video":[{"title":"S1:E364 - VGV - Battle Chess","description":"Even if you have no idea how to play chess this game has something for you.","player_loc":"https://roosterteeth.com/embed/vgv-battle-chess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac2634eb-379f-4ef5-9f13-437fe11ff3e9/sm/03071BattleChess.jpg","duration":89,"publication_date":"2012-05-13T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-peter-molyneuxs-new-studio","changefreq":"weekly","video":[{"title":"S1:E165 - Clip of the Week - Peter Molyneux's New Studio","description":"Always a dreamer but seldom a promise keeper, Peter Molyneux recently announced his future plans to open a new studio. As we just discovered, though, even THAT is something of a broken promise...\r\nFollow ScrewAttack on Twitter and like us on Facebook.  That makes us happy.\r\nAnd also follow Nick if you want to suggest clips or read the best tweets that have ever been tweeted.\r\nClips can also be suggested in the Clip of the Week suggestion thread in the forums!  We check it, we promise.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-peter-molyneuxs-new-studio","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43627311-188d-433e-8696-81a24dd21a15/sm/CotWRotator2.jpg","duration":119,"publication_date":"2012-05-11T20:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051112","changefreq":"weekly","video":[{"title":"S1:E180 - Hard News 05/11/12","description":"Today on Hard News Minecraft 360's split screen exclusivity, Republique barely gets funded, and Battlefield 3 might have a server crisis.\r\nMinecraft for XBLA doesn’t support SD co-op - http://www.screwattack.com/news/minecraft-xbla-doesn%E2%80%99t-support-sd-co-op\r\nRépublique reaches its Kickstarter goal, but just barely - http://www.screwattack.com/news/r%C3%A9publique-reaches-its-kickstarter-goal-just-barely\r\nEA is pulling free official servers in favor of paid servers - http://www.screwattack.com/news/ea-pulling-free-official-servers-favor-paid-servers\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-051112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c8f5241-48d5-4f43-b98b-861c977e8f8e/sm/republique_kickstarter_large_verge_medium_landscape.jpg","duration":174,"publication_date":"2012-05-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-nba-hangtime","changefreq":"weekly","video":[{"title":"S1:E363 - VGV - NBA Hangtime","description":"One of the best games in the NBA Jam franchise, it's a shame people forget about this gem.","player_loc":"https://roosterteeth.com/embed/vgv-nba-hangtime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ae6c81a-5749-4a7f-ab7e-847776bbe1ce/sm/03071Hangtime.jpg","duration":124,"publication_date":"2012-05-10T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-051012","changefreq":"weekly","video":[{"title":"S1:E179 - Hard News 05/10/12","description":"Today on Hard News the Avengers are getting a game, StarFox might be coming to Wii U, and the 360 might get a web browser.\r\nUbisoft teams up with Marvel to bring us the Avengers video game - http://www.screwattack.com/news/ubisoft-teams-marvel-bring-us-avengers-video-game\r\n[Rumor] Retro might be working on a new Star Fox for Wii U - http://www.screwattack.com/news/rumor-retro-might-be-working-new-star-fox-wii-u\r\n[Rumor] Kinect and Microsoft are bringing IE9 to Xbox 360 - http://www.screwattack.com/news/rumor-kinect-and-microsoft-are-bringing-ie9-xbox-360\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-051012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c0be453-011d-4180-9afb-d5ce15295811/sm/Star-Fox-for-Wii-U-at-E3_0.jpg","duration":135,"publication_date":"2012-05-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-dorkly-wcw-vs-nwo-revenge","changefreq":"weekly","video":[{"title":"S1:E300 - ScrewAttack VS Dorkly - WCW vs NWO Revenge","description":"With the series already lost, Dorkly is fighting for pride in their game, WCW vs NWO Revenge. Will they at least take the game they should be good at or is it a clean sweep for ScrewAttack?\r\nMissed the first two games? Here they are!\r\n\r\nRound 1 - Super Mario Kart\r\n\r\nRound 2 - Double Dragon Mode B","player_loc":"https://roosterteeth.com/embed/screwattack-vs-dorkly-wcw-vs-nwo-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":373,"publication_date":"2012-05-09T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050912","changefreq":"weekly","video":[{"title":"S1:E178 - Hard News 05/09/12","description":"Today on Hard News Dead Space 3 might get co-op, there might be a new Resident Evil game on the 3DS, and Bioshock Infinite gets delayed.\r\n[Rumor] Dead Space 2 will have drop in/out co-op - http://www.screwattack.com/news/rumor-dead-space-2-will-have-drop-inout-co-op\r\n[Rumor] Capcom bringing another new Resident Evil title to 3DS this year - http://www.screwattack.com/news/rumor-capcom-bringing-another-new-resident-evil-title-3ds-year\r\n[Rumor] Capcom bringing another new Resident Evil title to 3DS this year - http://www.screwattack.com/news/ken-levine-breaks-bioshock-infinite%E2%80%99s-delay-softly\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-050912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60cba704-c1c9-4cf5-ae3a-8a0ff81ae573/sm/bioshockinfinitepc021.jpg","duration":150,"publication_date":"2012-05-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-050912","changefreq":"weekly","video":[{"title":"S1:E299 - SideScrollers Extended 05/09/12","description":"10 more minutes of SideScrollers for Advanatage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-050912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7bc7559-d22c-463a-8310-6ea044299a94/sm/extended.jpg","duration":538,"publication_date":"2012-05-08T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"leather-face\"","changefreq":"weekly","video":[{"title":"S1:E63 - SideScrollers - \"Leather Face\"","description":"We talk about our time in New York, and why you shouldn't tan so much.\r\nGot a question to ask? Post it in the forums!!\r\nSideScrollers Extended can be watched here!! -- http://bit.ly/JSaSnE\r\nWatch our stuff!\r\nScrewAttack vs Dorkly ROUND ONE -- http://bit.ly/IYznjn\r\nScrewAttack vs Dorkly ROUND TWO -- http://bit.ly/IWJs73\r\nDEATH BATTLE - Raiden vs Thor -- http://bit.ly/IWJtYA\r\nClip of the Week: Avengers -- http://bit.ly/JeykwQ\r\nReview - Fez -- http://bit.ly/IP2mu7\r\nReview - Marvel vs. Capcom 2 (iOS) -- http://bit.ly/J3iGXj\r\nVideo Review - Tribes: Ascend -- http://bit.ly/KO46Ad\r\nNew T-Shirts! -- http://bit.ly/JHoiZ2\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad -- http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"leather-face\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58b6b769-93e9-42be-a764-2b15a76301f2/sm/ss.jpg","duration":3338,"publication_date":"2012-05-08T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050812","changefreq":"weekly","video":[{"title":"S1:E177 - Hard News 05/08/12","description":"Check out the second round of ScrewAttack vs Dorkly on ScrewAttack!\r\nhttp://www.screwattack.com/shows/originals/random-awesomeness/screwattack-vs-dorkly-double-dragon\r\nToday on Hard News Hitman has a second game on the way, EA confirms a lot of new titles, and Blizzard may delay you from getting on Diablo 3 for your convenience.\r\nHitman Games - http://www.screwattack.com/news/hitman-sniper-challenge-pre-order-bonus-gamestop\r\nConfirmed EA games - http://www.screwattack.com/news/ea-confirms-dead-space-and-need-speed-2013\r\nDiablo 3 launch - http://www.screwattack.com/news/diablo-iii-has-prep-guide-launch-day\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-050812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18ec0fe6-2972-417e-8b5f-073e8e966189/sm/diablo_3.jpg","duration":153,"publication_date":"2012-05-08T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-dorkly-double-dragon","changefreq":"weekly","video":[{"title":"S1:E298 - ScrewAttack VS Dorkly - Double Dragon","description":"This is the game that could swing the competition in any direction, Double Dragon Mode B. Will the boys from ScrewAttack clinch the series or will Dorkly fight their way back into things?\r\nSee how the rest of the competition went down!\r\n\r\nRound 1 - Super Mario Kart\r\n\r\nRound 3 - WCW vs NWO Revenge","player_loc":"https://roosterteeth.com/embed/screwattack-vs-dorkly-double-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":347,"publication_date":"2012-05-07T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-super-mario-kart","changefreq":"weekly","video":[{"title":"S1:E362 - VGV - Super Mario Kart","description":"Return to the origin of fun with the first game in this now legendary franchise.","player_loc":"https://roosterteeth.com/embed/vgv-super-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a4c3ed5-d6e3-4a3f-bdfd-ae34bc7612a9/sm/03071MarioKart.jpg","duration":108,"publication_date":"2012-05-07T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050712","changefreq":"weekly","video":[{"title":"S1:E176 - Hard News 05/07/12","description":"Check out the first round of ScrewAttack vs Dorkly on ScrewAttack!\r\nhttp://www.screwattack.com/shows/originals/random-awesomeness/screwattack-vs-dorkly-super-mario-kart\r\nToday on Hard News Beyond Good and Evil 2 could be next gen, Blockbuster might have leaked Wii U games, and The Binding of Isaac is about to have a lot of DLC for not a lot of money.\r\nBeyond Good and Evil 2 - http://www.screwattack.com/news/beyond-good-evil-2-has-been-confirmed-next-generation\r\nBlockbuster UK leaks Wii U games - http://www.screwattack.com/news/rumor-has-blockbuster-uk-leaked-wii-u-launch-titles\r\nThe Binding of Isaac Expansion - http://www.screwattack.com/news/binding-isaac-expansion-steal-3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Twitter.com/ProJared\r\nTwitter ScrewAttack - Twitter.com/ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-050712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a654ea17-d02d-4e63-aa5e-d0ca2c3df543/sm/1336339378_blockbuster-wiiu-list-00.jpg","duration":140,"publication_date":"2012-05-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-dorkly-super-mario-kart","changefreq":"weekly","video":[{"title":"S1:E297 - ScrewAttack VS Dorkly - Super Mario Kart","description":"It went down at Dave and Busters in New York City, ScrewAttack vs Dorkly! Three games to see who could really play and it all started with Super Mario Kart.\r\nCheck out the next two games!\r\n\r\nRound 2 - Double Dragon Mode B\r\n\r\nRound 3 - WCW vs NWO Revenge","player_loc":"https://roosterteeth.com/embed/screwattack-vs-dorkly-super-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":386,"publication_date":"2012-05-06T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/thor-vs-raiden-death-battle","changefreq":"weekly","video":[{"title":"S1:E21 - Thor VS Raiden","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/thor-vs-raiden-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5c3d9d3-6df4-49dc-9d76-8dbe6cf65100/sm/video_thumbnail_154080.jpg","duration":518,"publication_date":"2012-05-05T12:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-avengers","changefreq":"weekly","video":[{"title":"S1:E164 - Clip of the Week - The Avengers","description":"One of the most hyped-up films in history has finally been released and... do we really need an excuse to make this?","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-avengers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d91497dd-cf7d-496d-9e9d-5fd3ec827c51/sm/CotWRotator.jpg","duration":224,"publication_date":"2012-05-05T00:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050412","changefreq":"weekly","video":[{"title":"S1:E175 - Hard News 05/04/12","description":"Today on Hard News new info about the Elder Scrolls: Online, Company of Heroes 2 is set to be revealed, and Black Ops II will make a lot of money.\r\n[Rumor] The Elder Scrolls Online details and screens pop-up - http://www.screwattack.com/news/rumor-elder-scrolls-online-details-and-screens-pop\r\nCompany of Heroes 2 is official, reveal set for next Monday - http://www.screwattack.com/news/company-heroes-2-official-reveal-set-next-monday\r\nBlack Ops 2 pre-orders are 10 times that of its predecessor - http://www.screwattack.com/news/black-ops-2-pre-orders-are-10-times-its-predecessor\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-050412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/049005d0-4714-4394-b636-97730b4aa42b/sm/elderscrollsonline01-2_1.jpg","duration":156,"publication_date":"2012-05-04T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050312","changefreq":"weekly","video":[{"title":"S1:E174 - Hard News 05/03/12","description":"Today on Hard News the Elder Scrolls MMO has been confirmed, Pid will go on XBLA publisherless, and Saints Row: The Third gives you freaking super powers.\r\nElder Scrolls Online is being developed by ZeniMax Online - http://www.screwattack.com/news/elder-scrolls-online-being-developed-zenimax-online\r\nMystery publisher letting an indie developer rent an XBLA slot - http://www.screwattack.com/news/mystery-publisher-letting-indie-developer-rent-xbla-slot\r\n[Update] Volition Announces \"Enter The Dominatrix\" DLC for Saint's Row: The Third - http://www.screwattack.com/news/update-volition-announces-enter-dominatrix-dlc-saints-row-third\r\nFollow us on Twitter and like us on Facebook!\r\nFacebook SA - https://www.facebook.com/OfficialSA\r\nTwitter SA - http://www.twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9cc1b2e-2d7c-4824-8569-133d0dc0cf4f/sm/carousel_enter-the-dominatrix_en.jpg","duration":119,"publication_date":"2012-05-03T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-050212","changefreq":"weekly","video":[{"title":"S1:E173 - Hard News 05/02/12","description":"Today on Hard News you might be able to get a 360 and Kinect bundle for $99, PlayStation Plus might get tiered memberships, and Rock Band iOS might be discontinued.\r\n[Rumor] Microsoft is working on a subsidized Xbox 360 - http://www.screwattack.com/news/rumor-microsoft-working-subsidized-xbox-360\r\n[Rumor] Playstation Plus is considering a tiered service - http://www.screwattack.com/news/rumor-playstation-plus-considering-tiered-service\r\nRock Band iOS might disappear forever on May 31st - http://www.screwattack.com/news/rock-band-ios-might-disappear-forever-may-31st\r\nFollow us on Twitter and like us on Facebook!\r\nFacebook SA - https://www.facebook.com/OfficialSA\r\nTwitter SA - http://www.twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-050212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cadffdd-4693-42a5-9485-3c8288c2fdaa/sm/PSPlus_FeaturedImage002_0.png","duration":128,"publication_date":"2012-05-02T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-050212","changefreq":"weekly","video":[{"title":"S1:E296 - SideScrollers Extended 05/02/12","description":"Ten more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-050212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":739,"publication_date":"2012-05-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"raining-penis\"","changefreq":"weekly","video":[{"title":"S1:E62 - SideScrollers - \"Raining Penis\"","description":"We're in New York, but we're also not. Suck it space time continuum.\r\nGot a question to ask? Post it in the forums!!\r\nSideScrollers Extended can be watched here!! -- http://bit.ly/Kp8VQe\r\nNew T-Shirts! -- http://bit.ly/JHoiZ2\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad -- http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"raining-penis\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb96e15-e59b-4a04-bc4d-0b44275e61ae/sm/THUMB_ssraining.jpg","duration":2775,"publication_date":"2012-05-01T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-043012","changefreq":"weekly","video":[{"title":"S1:E171 - Hard News 04/30/12","description":"Today on Hard News God of War gets multiplayer, Dead or Alive 5 will feature new boob physics, and the 3DS now comes in purple.\r\nGod of War: Ascension Q&A with Multiplayer footage - http://www.screwattack.com/news/god-war-ascension-qa-multiplayer-footage\r\nDOA 5 to feature costumes with transparency and boob physics - http://www.screwattack.com/news/doa-5-feature-costumes-transparency-and-boob-physics\r\nMidnight Purple 3DS confirmed by Nintendo - http://www.screwattack.com/news/midnight-purple-3ds-confirmed-nintendo\r\nFollow us on Twitter and like us on Facebook!\r\nFacebook SA - https://www.facebook.com/OfficialSA\r\nTwitter SA - http://www.twitter.com/ScrewAttack","player_loc":"https://roosterteeth.com/embed/hard-news-043012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d71c0491-3a9b-478b-9d47-0cd8d0d083af/sm/ayane_doa_breasts.jpg","duration":124,"publication_date":"2012-04-30T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fall-of-cybertron-at-botcon-2012","changefreq":"weekly","video":[{"title":"S1:E295 - Fall of Cybertron at BotCon 2012","description":"Dinobots, no campaign co-op, and MMO level character creation? Jared got the scoop and the skinny on the upcoming Transformers: Fall of Cybertron at BotCon 2012.","player_loc":"https://roosterteeth.com/embed/fall-of-cybertron-at-botcon-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":208,"publication_date":"2012-04-29T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-sony-cant-keep-a-secret","changefreq":"weekly","video":[{"title":"S1:E163 - Clip of the Week - Sony Can't Keep A Secret","description":"Poor Sony... yet another major announcement was just revealed that everybody has known about for months. But why DO all their plans get leaked all the time?","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-sony-cant-keep-a-secret","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77293686-99e7-42af-99ed-bd3726ec1c73/sm/CotW_sony2.jpg","duration":231,"publication_date":"2012-04-27T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042712","changefreq":"weekly","video":[{"title":"S1:E170 - Hard News 04/27/12","description":"Today on Hard News Rayman Origins 2 has been confirmed, Nintendo is going to have digital distribution, and Sony is making their own Super Smash Bros.\r\nRayman Legends is real and coming to Wii U - http://www.screwattack.com/news/rayman-legends-real-and-coming-wii-u\r\nNew Super Mario Bros. 2 set to be downloadable - http://www.screwattack.com/news/new-super-mario-bros-2-set-be-downloadable\r\nFirst footage of Playstation All-stars Battle Royale released - http://www.screwattack.com/news/first-footage-playstation-all-stars-battle-royale-released\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-042712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d6009aa-1a87-4848-ab5b-87f5b31366bb/sm/large_19.jpg","duration":166,"publication_date":"2012-04-27T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042612","changefreq":"weekly","video":[{"title":"S1:E169 - Hard News 04/26/12","description":"Today on Hard News more Wii U rumors, Steam is coming to Linux, and Nexon wants to buy EA.\r\n[Rumor] Wii U getting a new Metroid and maybe Android support? - http://www.screwattack.com/news/rumor-wii-u-getting-new-metroid-and-maybe-android-support\r\nValve is bringing Steam and Source to Linux - http://www.screwattack.com/news/valve-bringing-steam-and-source-linux\r\n[Rumor] Nexon makes EA an offer and stocks soar - http://www.screwattack.com/news/rumor-nexon-makes-ea-offer-and-stocks-soar\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-042612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/203d6b54-b25d-41d9-9794-f356c956837d/sm/nexonandeahearts530pxheaderimg.jpg","duration":148,"publication_date":"2012-04-26T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-dorkly-the-games-are-selected","changefreq":"weekly","video":[{"title":"S1:E294 - ScrewAttack vs Dorkly - The Games Are Selected!","description":"We have FINALLY selected the games for the all out battle between when we head to New York to take on Dorkly!\r\nCome out to the event? Let us know on the event's facebook page!","player_loc":"https://roosterteeth.com/embed/screwattack-vs-dorkly-the-games-are-selected","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a0ca096-03b8-4eaf-b3b0-3dcb83d47f3a/sm/042512Dorkly.jpg","duration":189,"publication_date":"2012-04-25T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042512","changefreq":"weekly","video":[{"title":"S1:E168 - Hard News 04/25/12","description":"Today on Hard News Timesplitters 4, Pikmin 2 is finally getting an American Wii release, and S.T.A.L.K.E.R. 2 has been canceled.\r\n[Rumor] Timesplitters 4 seen running - http://www.screwattack.com/news/rumor-timesplitters-4-seen-running\r\nNew Play Control Pikmin 2 will be hitting shelves this June! - http://www.screwattack.com/news/new-play-control-pikmin-2-will-be-hitting-shelves-june\r\nDeveloper of S.T.A.L.K.E.R. 2 moves onto new MMOFPS - http://www.screwattack.com/news/developer-stalker-2-moves-new-mmofps\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-042512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4578fb39-8453-41e1-a260-0320b4e7b170/sm/66279-Pikmin_2-2.jpg","duration":117,"publication_date":"2012-04-25T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-042512","changefreq":"weekly","video":[{"title":"S1:E293 - SideScrollers Extended 04/25/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-042512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0373893e-c534-4402-a2fd-72acab273c52/sm/extended.png","duration":568,"publication_date":"2012-04-24T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"serial-pooper\"","changefreq":"weekly","video":[{"title":"S1:E61 - SideScrollers - \"Serial Pooper\"","description":"Go figure. Chad is out with his baby and we have one of the crappiest episodes ever.\r\nAUDIO VERSION -- http://bit.ly/InXCdW\r\nGot a question to ask? Post it in the forums!!\r\nSideScrollers Extended can be watched here!! -- http://bit.ly/J81lso\r\nWatch the videos mentioned by clicking the link below!\r\nNew T-Shirts! -- http://bit.ly/JHoiZ2\r\nClip of the Week: Lasers -- http://bit.ly/Ib5rEu\r\nReview: Xenoblade Chronicles -- http://bit.ly/HVIPFL\r\nReview: World Gone Sour -- http://bit.ly/JHnW4B\r\nReview: Legend of Grimrock -- http://bit.ly/Jmzg4U\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nBryan -- http://twitter.com/MrBryanBaker\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"serial-pooper\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7abf3b04-beab-4716-9798-0f9ef65cbfce/sm/poop.jpeg","duration":2765,"publication_date":"2012-04-24T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-42412","changefreq":"weekly","video":[{"title":"S1:E167 - Hard News 4/24/12","description":"Today on Hard News Some canceled Sony titles get revealed, Robert Bowling opens a new studio, and Black Ops 2.\r\nAnimation artist's CV contains several canned Playstation projects - http://www.screwattack.com/news/animation-artists-cv-contains-several-canned-playstation-projects\r\nRobert Bowling opens new studio called Robotoki - http://www.screwattack.com/news/robert-bowling-opens-new-studio-called-robotoki\r\nCOD:BLACK OP2 (Or whatever) countdowns on site - http://www.screwattack.com/news/codblack-op2-or-whatever-countdowns-site\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-42412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50c391e9-7b4a-454d-ac22-64623524965c/sm/robert-bowling-resigns-600x369.jpg","duration":154,"publication_date":"2012-04-24T15:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-everything-is-better-with-lasers","changefreq":"weekly","video":[{"title":"S1:E162 - Clip of the Week - Everything is Better with Lasers","description":"If there's one thing that instantly improves anything... let's face it, it would be lasers.\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick if you want to suggest clips. And also because he wills it. Or, you can suggest clips in the Clip of the Week suggestion thread.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-everything-is-better-with-lasers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":88,"publication_date":"2012-04-20T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-042012","changefreq":"weekly","video":[{"title":"S1:E165 - Hard News 04/20/12","description":"Today on Hard News new info on the Prey 2 delay, Marvel vs Capcom 2 is coming to iOS, and Diablo III is getting a free beta weekend, just not for one group.\r\n[Rumor] Prey 2 development halted last year due to developer strike - http://www.screwattack.com/news/rumor-prey-2-development-halted-last-year-due-developer-strike\r\nCapcom wants to “take you for a ride” on iOS - http://www.screwattack.com/news/capcom-wants-%E2%80%9Ctake-you-ride%E2%80%9D-ios\r\n[Update] Diablo 3 Beta - Available for everyone during the weekend! - http://www.screwattack.com/news/update-diablo-3-beta-available-everyone-during-weekend\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-042012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02e4fcb6-d062-442e-ae07-287190e0c012/sm/MVC2Montage.jpg","duration":141,"publication_date":"2012-04-20T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/our-new-\"beer\"-t-shirts-will-make-you-drunk-with-happiness","changefreq":"weekly","video":[{"title":"S1:E292 - Our new \"Beer\" t-shirts will make you drunk with happiness","description":" No, you won't be carded to purchase these. Pick them up at ScrewAttackStore.com\r\nScrewAttack Beer t-shirt\r\nAVGN Beer t-shirt\r\nDouble Fist 'em!","player_loc":"https://roosterteeth.com/embed/our-new-\"beer\"-t-shirts-will-make-you-drunk-with-happiness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb00f487-ff72-47bb-a41b-7082d76af236/sm/041912BeerTThumb.jpg","duration":51,"publication_date":"2012-04-19T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041912","changefreq":"weekly","video":[{"title":"S1:E164 - Hard News 04/19/12","description":"Today on Hard News God of War gets a prequel, Prey 2 is NOT canceled, and Assassins Creed is getting sued.\r\nGod of War IV confirmed by Amazon, named Ascension - http://www.screwattack.com/news/god-war-iv-confirmed-amazon-named-ascension\r\nEveryone be cool, Prey 2 isn’t cancelled - http://www.screwattack.com/news/everyone-be-cool-prey-2-isn%E2%80%99t-cancelled\r\nUbisoft sued as author wants to block sale of Assassin’s Creed III - http://www.screwattack.com/news/ubisoft-sued-author-wants-block-sale-assassin%E2%80%99s-creed-iii\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be673d0f-4c7f-4015-8b54-059a2ce3beeb/sm/god-of-war-ascension-prequel.jpg","duration":148,"publication_date":"2012-04-19T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041812","changefreq":"weekly","video":[{"title":"S1:E163 - Hard News 04/18/12","description":"Today on Hard News Super Monday Night Combat accidentally gets released early, Diablo III's beta got leaked and hinted at a free to play version, and 007 Legends.\r\nSuper MNC launches early and the devs roll with it - http://www.screwattack.com/news/super-mnc-launches-early-and-devs-roll-it\r\n“Starter Edition” for Diablo III leaks, Blizzard shuts down servers for “maintenance” - http://www.screwattack.com/news/%E2%80%9Cstarter-edition%E2%80%9D-diablo-iii-leaks-blizzard-shuts-down-servers-%E2%80%9Cmaintenance%E2%80%9D\r\nActivision reveals their latest Bond game with 007 Legends - http://www.screwattack.com/news/activision-reveals-their-latest-bond-game-007-legends\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed18cf6-2711-4d6a-b766-3d004aa13114/sm/thumbnail_2_3da90f1c_v2.jpg","duration":140,"publication_date":"2012-04-18T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-041812","changefreq":"weekly","video":[{"title":"S1:E291 - SideScrollers Extended 04/18/12","description":"10 more minutes of SideScrollers for Advantage members, where we discuss E3 a bit. ","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-041812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a44993d2-0b47-43da-8285-86a10b4ccc9d/sm/feature-e3-logo.png","duration":560,"publication_date":"2012-04-17T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"desire-to-knife\"","changefreq":"weekly","video":[{"title":"S1:E60 - SideScrollers - \"Desire to Knife\"","description":"We talk about our competitive gaming past and the violent natures it transpired. \r\nAUDIO VERSION -- http://bit.ly/HQg9lF\r\nGot a question to ask? Post it in the forums!!\r\nSideScrollers Extended can be watched here!! -- http://bit.ly/HQLzVw\r\nPAX East 2012 Coverage ALL here! -- http://bit.ly/IofmDD\r\nWatch the videos mentioned by clicking the link below!\r\nNext time on DEATH BATTLE!! -- http://bit.ly/I2SEjb\r\nCraig vs Mike Tyson Round 2 -- http://bit.ly/HQZcqn\r\nScrewAttack vs DORKLY: Our Game Choices -- http://bit.ly/I2SNDf\r\nClip of the Week: Quake 4 -- http://bit.ly/HVIJy6\r\nReview: Xenoblade Chronicles -- http://bit.ly/HVIPFL\r\nReview: Max Payne Mobile -- http://bit.ly/HVITWe\r\nReview: Angry Birds Space -- http://bit.ly/IoeJtP\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared\r\ng1 Mr. West's 52 Week Birthday Challenge (WHO HAS FALLEN BEHIND!!) - http://bit.ly/GEAMNt","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"desire-to-knife\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae2bd3ed-78fd-4e5b-9cce-0d9fe83a9866/sm/species-spotlight-grizzly-bear-brown-mouth-open-black-nose-attacking-growling-biting-photo-468x351.jpg","duration":2964,"publication_date":"2012-04-17T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-awesomenauts-interview","changefreq":"weekly","video":[{"title":"S1:E290 - PAX East '12 - Awesomenauts Interview","description":"Find out more about the awesomely 80s inspired MOBA coming to Xbox 360 and PS3, Awesomenauts!\r\nWant to see more of Awesomenauts in action? Check it out on Screwin' Around!\r\nwww.screwattack.com/shows/originals/screwin-around/archived-screwin-around-w-awesomenauts","player_loc":"https://roosterteeth.com/embed/pax-east-12-awesomenauts-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9f7aad4-1eb3-47be-9d63-cf530ac04ec6/sm/Awesomenauts-Characters-600x337.png","duration":129,"publication_date":"2012-04-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041712","changefreq":"weekly","video":[{"title":"S1:E162 - Hard News 04/17/12","description":"Today on Hard News Tekken Tag Tournament 2 will get free DLC, Halo 4 gets a release date, and Xbox Live is free this weekend... sort of.\r\nTekken Tag Tournament 2 promises free DLC - http://www.screwattack.com/news/tekken-tag-tournament-2-promises-free-dlc\r\nHalo 4 has been dated - http://www.screwattack.com/news/halo-4-has-been-dated\r\nXbox Live is kind of free this weekend - http://www.screwattack.com/news/xbox-live-kind-free-weekend\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - http://www.twitter.com/ProJared\r\nTwitter SA - http://www.twitter.com/ScrewAttack\r\nFacebook Jared - http://www.facebook.com/Pro.Jared\r\nFacebook SA - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e937a558-b062-4b0f-8806-e9c92839f640/sm/Tekken-Tag-Tournament-2_4-17.jpg","duration":122,"publication_date":"2012-04-17T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-max-payne-3-impressions","changefreq":"weekly","video":[{"title":"S1:E289 - PAX East '12 - Max Payne 3 Impressions","description":"Like Aliens CM, Max Payne 3 was on again/off again before being on and staying that way. What can you expect come May 15th?","player_loc":"https://roosterteeth.com/embed/pax-east-12-max-payne-3-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":74,"publication_date":"2012-04-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041612","changefreq":"weekly","video":[{"title":"S1:E161 - Hard News 04/16/12","description":"Check out all of ScrewAttack's coverage of PAX East!\r\nhttp://www.screwattack.com/events/pax-east-2012\r\nToday on Hard News Mario will be at E3, Crysis 3 is official, and the banned can play their EA games on PC again.\r\nSome of NIntendo's E3 plans - http://www.screwattack.com/news/miyamoto-confirms-mario-wii-u-will-be-e3\r\nCrysis 3 announced - http://www.screwattack.com/news/crysis-3-unveiled-along-pre-order-retailer-bonuses\r\nOffline Mode introduced to Origin - http://www.screwattack.com/news/ea-brings-offline-mode-origin\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/780c25f8-42e9-48c6-a9ff-3ccda615c497/sm/shigeru-miyamoto.jpg","duration":138,"publication_date":"2012-04-16T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-super-mario-kart-2","changefreq":"weekly","video":[{"title":"S1:E361 - VGV - Super Mario Kart","description":"Return to the origin of fun with the first game in this now legendary franchise.","player_loc":"https://roosterteeth.com/embed/vgv-super-mario-kart-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6aa0695-b55d-4ae4-933b-febd41f81d47/sm/super-mario-kart-500x375.jpg","duration":108,"publication_date":"2012-04-15T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-dorkly-our-games-are-selected","changefreq":"weekly","video":[{"title":"S1:E288 - ScrewAttack vs Dorkly - Our Games Are Selected!","description":" Mark it on your calendars: it's officially going down in New York City May 1st! Before the throwdown we have to select the game though, right?\r\nCheck out our first challenge video to Dorkly! And Dorkly's response. Check out the actual Dorkly site here.\r\nPlanning to attend? Let us know on the event's facebook page.","player_loc":"https://roosterteeth.com/embed/screwattack-vs-dorkly-our-games-are-selected","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbe4e5f5-3d22-4466-9e1c-f4d5b95f1732/sm/041612Dorkly2.jpg","duration":95,"publication_date":"2012-04-14T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-quake-4-treatment","changefreq":"weekly","video":[{"title":"S1:E161 - Clip of the Week - The Quake 4 Treatment","description":"Quake 4 is getting the laziest and most pointless re-release in recent memory. What does that mean for the Clip of the Week?","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-quake-4-treatment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0cf8a4c-2acb-4b7f-bda9-0f42c662c6de/sm/Quake_4_Wallpaper_by_igotgame1075.jpg","duration":99,"publication_date":"2012-04-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041312","changefreq":"weekly","video":[{"title":"S1:E160 - Hard News 04/13/12","description":"Check out all of ScrewAttack's coverage of PAX East!\r\nhttp://www.screwattack.com/events/pax-east-2012\r\nToday on Hard News the saga continues with the Old Republic patch, Sleeping Dogs has MMA bonuses, and Valve might make hardware after all.\r\nThe Old Republic Patch 1.2 - http://www.screwattack.com/news/tor-updated-12-tauntauns-and-free-month\r\nSleeping Dogs Pre-orders - http://www.screwattack.com/news/sleeping-dogs-receives-official-release-date-and-pre-order-bonuses\r\nValve recruits for hardware - http://www.screwattack.com/news/valve-recruiting-hardware-positions\r\n\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-041312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd62fe4f-9e69-4d35-9b8d-f15c27c05fdd/sm/Star-Wars-The-Old-Republic-Patch-111.jpg","duration":136,"publication_date":"2012-04-13T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-far-cry-3-interview","changefreq":"weekly","video":[{"title":"S1:E287 - PAX East '12 - Far Cry 3 Interview","description":"Jared found out at PAX East what's going to bring people in and keep them playing Far Cry 3 from one of the game's developers.","player_loc":"https://roosterteeth.com/embed/pax-east-12-far-cry-3-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dba9fab-37b6-413d-9fcd-4bf900ed434c/sm/FC3_PVP0412_screenshot_zipline_hero_nologo.jpg","duration":220,"publication_date":"2012-04-13T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-sonic-4-episode-2-interview","changefreq":"weekly","video":[{"title":"S1:E286 - PAX East '12 - Sonic 4 Episode 2 Interview","description":"An interview with Ken  Balough, the Digital Brand Manager of Sonic the Hedgehog!","player_loc":"https://roosterteeth.com/embed/pax-east-12-sonic-4-episode-2-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd7cb7ce-3458-4169-8a3c-6456c18dbb49/sm/DtwSAh.jpg","duration":240,"publication_date":"2012-04-13T13:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041212","changefreq":"weekly","video":[{"title":"S1:E159 - Hard News 04/12/12","description":"Check out all of ScrewAttack's coverage of PAX East!\r\nhttp://www.screwattack.com/events/pax-east-2012\r\nToday on Hard News really Fus Ro Dah, Sony may announce God of War 4 next week, and now you can really kamehameha.\r\nSkyrim's Kinect update - http://www.screwattack.com/trailers/kinect-lets-you-fus-ro-dah-irl\r\nGod of War 4 clues - https://www.facebook.com/SonyPlaystation\r\nDragonball Z Kinect - http://www.screwattack.com/news/dragon-ball-z-taking-your-kinect-9000\r\n\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f63b0e40-38c9-4e93-9ef1-143775e34dc7.jpg/sm/dbzesf.jpg","duration":137,"publication_date":"2012-04-12T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-double-dragon-neon-interview","changefreq":"weekly","video":[{"title":"S1:E285 - PAX East '12 - Double Dragon Neon Interview","description":"Billy and Jimmy are coming back, mullets and everything! Bryan finds out why Double Dragon Neon is more than just a high def facelift.","player_loc":"https://roosterteeth.com/embed/pax-east-12-double-dragon-neon-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":155,"publication_date":"2012-04-12T09:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-final-fantasy-theatrhythm-impressions","changefreq":"weekly","video":[{"title":"S1:E284 - PAX East '12 - Final Fantasy Theatrhythm Impressions","description":"Square Enix had Final Fantasy Theatrhythm on the show floor, and I got my hands on it.","player_loc":"https://roosterteeth.com/embed/pax-east-12-final-fantasy-theatrhythm-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deac48f3-15fa-4db9-acfb-ad0bc47c34ad/sm/Theatrhythm_cloud.png","duration":65,"publication_date":"2012-04-12T09:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041112","changefreq":"weekly","video":[{"title":"S1:E158 - Hard News 04/11/12","description":"Today on Hard News the crossover between Sega, Capcom, and Namco has been revealed and new details on Resident Evil 6 and Halo 4.\r\nSEGA + Capcom + Namco 3DS collaboration project revealed - http://www.screwattack.com/news/sega-capcom-namco-3ds-collaboration-project-revealed\r\nRE6 will feature 30 hour campaign, drop in/out co-op, and zombies! - http://www.screwattack.com/news/re6-will-feature-30-hour-campaign-drop-inout-co-op-and-zombies\r\nHalo 4 cover story reveals new multiplayer and Cortana’s mortality - http://www.screwattack.com/news/halo-4-cover-story-reveals-new-multiplayer-and-cortana%E2%80%99s-mortality\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6226b6d9-cac4-4710-8fd8-8339e9cb5e95/sm/halo-4_3.jpg","duration":159,"publication_date":"2012-04-11T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-aliens-colonial-marines-impression","changefreq":"weekly","video":[{"title":"S1:E283 - PAX East '12 - Aliens Colonial Marines Impression","description":"Gearbox has a history now with games taking really long periods of time to come out, but Aliens: Colonial Marines is in the home stretch. See how Bryan is feeling about it after a little hands on time at PAX East.","player_loc":"https://roosterteeth.com/embed/pax-east-12-aliens-colonial-marines-impression","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":71,"publication_date":"2012-04-11T13:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-041112","changefreq":"weekly","video":[{"title":"S1:E282 - SideScrollers Extended 04/11/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-041112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":553,"publication_date":"2012-04-10T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-scrotum-ripping","changefreq":"weekly","video":[{"title":"S1:E59 - SideScrollers - \"Scrotum Ripping\"","description":"The usual gang is back together! We discuss the games of April, followed by one of the most painful Newsdesk stories ever!\r\nAUDIO VERSION -- http://bit.ly/HzkOVA\r\nGot a question to ask? Post it in the forums!!\r\nSideScrollers Extended can be watched here!! -- http://bit.ly/Hwcjgl\r\nPAX East 2012 Coverage ALL here! -- http://bit.ly/IofmDD\r\nWatch the videos mentioned by clicking the link below!\r\nSean looks at the Vita's Future -- http://bit.ly/IKtHsQ\r\nThe Tester 3 With Commentary FINALE! -- http://bit.ly/HxS2bE\r\nClip of the Week: Unique Sponsorships -- http://bit.ly/IpGSDv\r\nDrake's Driving Test -- http://bit.ly/HywATs\r\nChallenge Monday: Craig vs Tyson -- http://bit.ly/HxSmHq\r\nReview: Angry Birds Space -- http://bit.ly/IoeJtP\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared\r\ng1 Mr. West's 52 Week Birthday Challenge - http://bit.ly/GEAMNt ","player_loc":"https://roosterteeth.com/embed/sidescrollers-scrotum-ripping","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2361,"publication_date":"2012-04-10T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-12-extremely-candid-interview-with-randy-pitchford","changefreq":"weekly","video":[{"title":"S1:E281 - PAX East '12 - Extremely Candid Interview With Randy Pitchford","description":"Everyone was asking Gearbox head Randy Pitchford about Aliens and Borderlands 2 at PAX East, but only Jared could get cold hard facts out of the man.","player_loc":"https://roosterteeth.com/embed/pax-east-12-extremely-candid-interview-with-randy-pitchford","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":43,"publication_date":"2012-04-10T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-041012","changefreq":"weekly","video":[{"title":"S1:E157 - Hard News 04/10/12","description":"Today on Hard News Lost Planet 3 is a thing, lots of Capcom Captivate news, and Bulletstorm 2 has been canceled.\r\nLost Planet 3 is revealed and there will be snow - http://www.screwattack.com/news/lost-planet-3-revealed-and-there-will-be-snow\r\nLatest DmC trailer reveals Dante sleeps in the nude - http://www.screwattack.com/news/latest-dmc-trailer-reveals-dante-sleeps-nude\r\nBulletstorm pirates have sequel shelved due to piracy - http://www.screwattack.com/news/bulletstorm-pirates-have-sequel-shelved-due-piracy\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-041012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b7eeff6-f4e8-4fe0-80d3-4a1c5abc20dc/sm/BulletStorm-Gray-Ishi-article.jpg","duration":125,"publication_date":"2012-04-10T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040912","changefreq":"weekly","video":[{"title":"S1:E156 - Hard News 04/09/12","description":"Today on Hard News Gears of War won't return from exile, PC gamers will know the pain of Dark Souls, and Borderlands 2 gets a fifth class.\r\nGears of War Exile canceled - http://www.screwattack.com/news/gears-war-exile-no-longer-thing\r\nDark Souls to PC - http://www.screwattack.com/news/update-dark-souls-coming-pc-all-official\r\nBorderlands 2's Mechromancer - http://www.screwattack.com/news/borderlands-2-will-feature-crazy-cool-character-customization-and-another-new-class\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-040912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/722f9879-b1ef-4621-b61e-e5e09c257e74/sm/1312871289borderlands-2-wallpapers-hd.jpg","duration":128,"publication_date":"2012-04-09T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pax-east-2012-dorkly-panel","changefreq":"weekly","video":[{"title":"S1:E280 - PAX East 2012 - Dorkly Panel","description":"The big names of Dorkly showed themselves at PAX East 2012, talked about what goes into those awesome animations, comics, articles, and revealed how sad their stuff really is.","player_loc":"https://roosterteeth.com/embed/pax-east-2012-dorkly-panel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":3314,"publication_date":"2012-04-09T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-unique-sponsorships","changefreq":"weekly","video":[{"title":"S1:E160 - Clip of the Week - Unique Sponsorships","description":"After news came down this week of a pro fighting game player getting sponsored by a porno site, that got Craig thinking about sponsorship opportunities ScrewAttack may be missing out on...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-unique-sponsorships","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/399a42b7-013b-4849-a85a-6eb8257e348d/sm/040712Clip.jpg","duration":138,"publication_date":"2012-04-06T22:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040612","changefreq":"weekly","video":[{"title":"S1:E155 - Hard News 04/06/12","description":"Today on Hard News Nintendo might get a new racer, Sonic's co-creator joins Nintendo, and Double Dragon is back!\r\n[Rumor] Nintendo working with Lucid Games on \"Forza/Gran Turismo\" killer - http://www.screwattack.com/news/rumor-nintendo-working-lucid-games-forzagran-turismo-killer\r\nSonic co-creator Hirokazu Yasuhara joins Nintendo -  http://www.screwattack.com/news/sonic-co-creator-hirokazu-yasuhara-joins-nintendo\r\nWayFoward is rebooting a classic NES game - http://www.screwattack.com/news/wayfoward-rebooting-classic-nes-game\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Lauren - Http://www.twitter.com/LaurMoor\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-040612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/476488ff-2df4-4e2d-a0d3-227aa919e95d/sm/double-dragon-neon-coming-to-xbla-and-psn_2.jpg","duration":110,"publication_date":"2012-04-06T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-9","changefreq":"weekly","video":[{"title":"S1:E278 - The Tester 3 Commentary Ep. 9","description":"We're down to the final 3 competitors! Join Chad, Craig and Jared as they wrap up the final commentary of the season!","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0915c5bd-a376-4c51-8711-2fa1e6d281ca/sm/TheTester_1.png","duration":1667,"publication_date":"2012-04-06T14:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040512","changefreq":"weekly","video":[{"title":"S1:E154 - Hard News 04/05/12","description":"Today on Hard News Mass Effect 3's DLC will add clarity to the ending, EA is officially the worst company in America, and thousands of gamers are losing online gaming privileges.\r\nBioWare announces Mass Effect 3: Extended Cut - http://www.screwattack.com/news/bioware-announces-mass-effect-3-extended-cut\r\nEA wins title of \"Worst Company in America\" - www.screwattack.com/news/ea-wins-title-worst-company-america\r\nNew York State banned 3,580 sex offenders from gaming online - http://www.screwattack.com/news/new-york-state-banned-3580-sex-offenders-gaming-online\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Lauren - Http://www.twitter.com/LaurMoor\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-040512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8173be6-783b-40ad-9fdd-554003d2aae3/sm/goldenpoo3.jpg","duration":119,"publication_date":"2012-04-05T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/looking-at-vitas-future","changefreq":"weekly","video":[{"title":"S1:E276 - Looking at Vita's Future","description":"We got to see a lot of the Vita during South by Southwest, and Sean has all the details on what you can get your hands on soon.","player_loc":"https://roosterteeth.com/embed/looking-at-vitas-future","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":173,"publication_date":"2012-04-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-batman-return-of-the-joker","changefreq":"weekly","video":[{"title":"S1:E360 - VGV - Batman: Return of the Joker","description":"Not many people remember this Batman adventure, but they certainly should.","player_loc":"https://roosterteeth.com/embed/vgv-batman-return-of-the-joker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f13944d-2cd4-41d0-93d9-50432c044e52/sm/03071Batman.jpg","duration":83,"publication_date":"2012-04-04T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040412","changefreq":"weekly","video":[{"title":"S1:E153 - Hard News 04/04/12","description":"On Sidescrollers, the gang finds living a double life and can be awesome.\r\nSidescrollers - \"Dialing Back the Stripping\" \r\nhttp://www.screwattack.com/shows/originals/sidescrollers/sidescrollers-dialing-back-stripping\r\nToday on Hard News Rock Band gets an encore, Notch has a new game, and a second Shadowrun enters production.\r\nRock Band Blitz - http://www.screwattack.com/news/rock-band-blitz-ready-rockin%E2%80%99-summer\r\nNotch's new project - http://www.screwattack.com/news/team-mojang%E2%80%99s-latest-game-heading-space\r\nAnother Shadowrun looking for funding - http://www.screwattack.com/news/shadowrun-looking-make-proper-return\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-040412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed756042-bd75-4e78-a541-aa3298caf2a3/sm/Rock-Band-Blitz-logo.jpg","duration":151,"publication_date":"2012-04-04T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-040412","changefreq":"weekly","video":[{"title":"S1:E275 - SideScrollers Extended 04/04/12","description":"10 more minutes of SideScrollers for Advantage members!\r\nApologize for the delay. There were tornadoes.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-040412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":477,"publication_date":"2012-04-04T12:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"dialing-back-the-stripping\"","changefreq":"weekly","video":[{"title":"S1:E58 - SideScrollers - \"Dialing Back the Stripping\"","description":"Sometimes, living a double-life can be awesome.\r\nGot a question to ask? Post it in the forums!!\r\n(Sidescrollers Extended coming later because tornadoes)\r\nWatch the videos mentioned by clicking the link below!\r\nDEATH BATTLE! Peach vs Zelda - http://bit.ly/HevT1y\r\nSaturday Morning RPG - http://bit.ly/HIG8ro\r\nMario Party 3 After Dark - http://bit.ly/HI4LIi\r\nJared and Chad Beat Predator - http://bit.ly/HRUsjR\r\nCOTW: Worst Company in the USA - http://bit.ly/HeS4R9\r\nTester 3 Episode 8 Commentary - http://bit.ly/HSEhgU\r\nScrewAttack vs The Internet #2: DORKLY Accepts! - http://bit.ly/HSEctN\r\nVideo Review - Silent Hill: Downpour - http://bit.ly/HXEwIb\r\nReview - Tales of Graces f - http://bit.ly/HRePfS\r\nFollow us on Twitter!\r\nBryan - http://twitter.com/MrBryanBaker\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared\r\ng1 Mr. West's 52 Week Birthday Challenge - http://bit.ly/GEAMNt","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"dialing-back-the-stripping\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d987445-d66b-4218-95cc-3437263eed39/sm/pole_dancing_01.jpg","duration":2364,"publication_date":"2012-04-03T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040312","changefreq":"weekly","video":[{"title":"S1:E152 - Hard News 04/03/12","description":"We got the last interview with Zipper Interactive ever!\r\nUnit 13 with Mark Rogers - http://www.screwattack.com/shows/originals/random-awesomeness/last-zipper-interactive-interview-ever\r\nToday on Hard News get in the Secret World beta, Leisure Suit Larry needs a kickstart, and Super Meat Boy is going mobile.\r\nSecret World Beta - http://www.screwattack.com/news/secret-world-pre-orders-will-provide-beta-access-and-bonuses\r\nLeisure Suit Larry Kickstarter - http://www.screwattack.com/news/leisure-suit-larry-needs-half-million-dollars\r\nMeat Boy goes to iOS - http://www.screwattack.com/news/team-meat-bring-meat-boy-ios\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-040312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a0627c6-6f77-4fe1-8030-9e92b9b1237e/sm/supermeat.jpg","duration":143,"publication_date":"2012-04-03T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-last-zipper-interactive-interview-ever","changefreq":"weekly","video":[{"title":"S1:E274 - The Last Zipper Interactive Interview Ever","description":"It was announced Zipper Interactive is closing, but not before we got to talk to them about their final project, Unit 13.","player_loc":"https://roosterteeth.com/embed/the-last-zipper-interactive-interview-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d6b3919-05c8-4557-b87a-955afe1931dd/sm/bg_home.png","duration":192,"publication_date":"2012-04-02T23:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-040212","changefreq":"weekly","video":[{"title":"S1:E151 - Hard News 04/02/12","description":"Today on Hard News Zipper bites the dust, GAME gets a continue, and did Raccoon City begin as another Star Wars Battlefront?\r\nZipper Interactive shuts down - http://www.screwattack.com/news/sony-shuts-down-zipper-interactive\r\nGAME is saved - http://www.screwattack.com/news/rejoice-uk-gamers-game-savedkinda\r\nA new Star Wars Battlefront? - http://www.screwattack.com/news/rumor-it-looks-there-was-new-battlefront-game\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-040212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/2c898c51-dc1b-45b6-bbe7-efdb59ebbbd8.jpg/sm/sa_default.jpg","duration":122,"publication_date":"2012-04-02T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-izzys-quest-for-the-olympic-rings","changefreq":"weekly","video":[{"title":"S1:E359 - VGV - Izzy's Quest for the Olympic Rings","description":"There was a time we had to use the actual Olympics mascots in our video games. Thank goodness Mario and Sonic stepped in!","player_loc":"https://roosterteeth.com/embed/vgv-izzys-quest-for-the-olympic-rings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/319fbc81-73c2-473e-b8ca-11eb34a59b3d/sm/video_thumbnail_2115776.jpg","duration":112,"publication_date":"2012-04-02T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-209","changefreq":"weekly","video":[{"title":"2015:E208 - Dead Realm","description":"Geoff, Jack, Ryan, Michael, and Gavin are in the sights of Baby Williams. He's lurking in the hallway and only the quickest can find all the watches before he pulls off his head in front of them. I'm not making any of this up...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-209","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/225da3c0-1c6e-45e3-9f02-701008d557d7/sm/1461653-1438363660517-LP_DeadRealm.jpg","duration":974,"publication_date":"2015-07-31T17:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-207","changefreq":"weekly","video":[{"title":"2015:E207 - Achievement Hunter Vindictus Live Stream","description":"Geoff, Jack, Ryan, and Michael sat down to do a live stream of Vindictus! Watch as they attempt to understand high level skills with low level intellect! Thanks to Nexon for making this video possible! Play Vindictus: http://bit.ly/1MAfF2T","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eddd2b41-53bd-4fea-a170-201021b0c119/sm/1461653-1438199680957-LP_AchievementHunterVindictusLiveStream_YTBLIP.jpg","duration":2040,"publication_date":"2015-07-31T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-31","changefreq":"weekly","video":[{"title":"2015:E31 - Volume 254","description":"Geoff and Jack are so FLIPPING excited for Fails of the Weak Volume 254 they DROP comedy gold and HAPPY dance their way up a LADDER of games including Assassin's Creed Unity, Grand Theft Auto V, Last of Us Remastered, and Metro 2033 Redux. P.S. STATUE (Couldn't figure out how to incorporate the title of that fail, sorry)\n\nChallenge: Write a better description than us using a word from each clip title!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5195f3d-10a4-47a3-a021-e3a5b844ea59/sm/1461653-1438285945016-Fails254-Big.jpg","duration":178,"publication_date":"2015-07-30T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-208","changefreq":"weekly","video":[{"title":"2015:E206 - Minecraft - Episode 166 - Turbo Kart Racers","description":"Geoff, Jack, Ryan, Michael, and Gavin hop onto the Hypixel server and play some Turbo Kart Racers!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-208","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cef4061a-80d6-4d17-be60-066a9408ff1f/sm/1461653-1438285299380-lpMC_TurboKartRacers_Thumb.jpg","duration":1865,"publication_date":"2015-07-30T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-2015-2","changefreq":"weekly","video":[{"title":"2015:E1 - King's Quest: Chapter One - Achievement Guides: Napping on the Job & In the Mouth of Danger","description":"Michael and Geoff show you how to get the \"Napping on the Job\" and \"In the Mouth of Danger\" Achievements in King's Quest: Chapter 1 for the Xbox One. Are ye brave enough to best thine fears and claim the golden gamerscore Your quest draws ny!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af60b731-1e87-4ab5-b225-20299420b8bf/sm/1461653-1438364682905-King%27s_Quest_-_Chapter_1_Achieveemt_Guide.jpg","duration":169,"publication_date":"2015-07-30T17:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-31","changefreq":"weekly","video":[{"title":"2015:E31 - Call of Duty: Black Ops 2 - Achievement Hunter VS The World","description":"The epic contest continues between the men and women of Achievement Hunter and the outside population of arguably better gamers. In this episode, Geoff, Jack, Ryan, Michael, Lindsay, and Andy challenge planet Earth to a game of Call of Duty.","player_loc":"https://roosterteeth.com/embed/vs-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/081bd90a-cfa1-4d62-9b65-653165d56123/sm/1461653-1438206334607-AHVSTheWorld_CallOfDutyBlackOps2_YTBLIP.jpg","duration":247,"publication_date":"2015-07-29T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-206","changefreq":"weekly","video":[{"title":"2015:E205 - Let's Watch - Gears of War Ultimate Edition Beta","description":"Achivement Hunter relives some of it's old memories of gaming by checking out the Gears of War Ultimate Edition Beta.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-206","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6657f0db-000f-4295-a7fc-5a2ee9c660fd/sm/1461653-1438112605250-Gears-YTBLIP.jpg","duration":1694,"publication_date":"2015-07-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-3","changefreq":"weekly","video":[{"title":"2015:E3 - Achievement Hunter New Office Tour","description":"Come deep inside our new offices and (subscribe) get to know the man, the myth, the legend, Geoff Ramsey (http://www.youtube.com/achievementhunter).","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bec6c4ee-579c-4804-bd13-d15f419edce2/sm/1461653-1438172582667-AHNewOfficeTour.jpg","duration":59,"publication_date":"2015-07-29T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-16","changefreq":"weekly","video":[{"title":"2015:E16 - Five Nights At Freddy's 4","description":"Michael and Gavin fight off the frights in Five Nights 4!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b00d75ce-3da2-41a9-bd62-03fd240f673a/sm/1461653-1438120895257-PlayPals-FiveNightsAtFreddys4-THUMB.jpg","duration":1314,"publication_date":"2015-07-28T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015-2","changefreq":"weekly","video":[{"title":"2015:E2 - HAPPY 7TH BIRTHDAY ACHIEVEMENT HUNTER!!!","description":"Geoff throws everyone a super special Achievement Hunter 7th Birthday bash!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f325109-005b-40b2-bb13-8181e204645b/sm/1461653-1438114547633-AH7thBirthday.jpg","duration":108,"publication_date":"2015-07-28T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Behind the Magic","description":"While Michael, Lindsay, and Matt got new cameras and had a bit of a potty break....Ryan was plotting, Geoff rekindled an old rivalry with Gus, and Kdin attempted to give Geoff a peptalk. Watch Let's Play - Magic the Gathering: http://bit.ly/MagictheGathering","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87f79566-733f-4f2c-bed5-30847814f763/sm/1461653-1438102189257-BehindTheMagic-THUMB.jpg","duration":343,"publication_date":"2015-07-28T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-205","changefreq":"weekly","video":[{"title":"2015:E204 - No Time To Explain","description":"Geoff, Jack, Ryan, and Michael play a game. That's it. No nothing more. I can't say anymore about... LISTEN THERE'S NO TIME TO EXPLAI....","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9374181e-1482-4ba8-aba4-4cf1cf4606cd/sm/1461653-1438033840123-LP_NoTimeToExplain_YTBLIP.jpg","duration":1284,"publication_date":"2015-07-28T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-34","changefreq":"weekly","video":[{"title":"2015:E29 - New Achievement Hunter Office ","description":"In this very special episode of AHWU, you learn the secrets of the world and get a peek at the new Achievement Hunter office. Also, stay tuned until the very end for a special announcement about the Achievement Hunter channel and future AH content! Its important. For more info read Geoff's journal: http://roosterteeth.com/post/51134302 \n\nVid of week: \n\n(No community vid of week because Treyco couldnt be bothered.)","player_loc":"https://roosterteeth.com/embed/ahwu-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cddf1355-8bae-42c9-a8e1-d24ea933cba8/sm/1461653-1438041229422-AHWU_275-thumbnail.jpg","duration":652,"publication_date":"2015-07-27T23:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ryan-the-slide-guy","changefreq":"weekly","video":[{"title":"2015:E24 - Ryan The \"Slide\" Guy ","description":"Weeeeeeeeeeeee! For a chance to win some RoosterTeeth Merch submit your own version of Ryan's amazing adventure! For more info read Geoff's journal: http://roosterteeth.com/post/51134302","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ryan-the-slide-guy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/732dbe5a-f5a0-493a-ba12-ec7696b4b953/sm/1461653-1438040957121-RyanTheSlideGuy-THUMB.jpg","duration":140,"publication_date":"2015-07-27T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-204","changefreq":"weekly","video":[{"title":"2015:E203 - Magic the Gathering","description":"We made it to 500k Subscribers on the Achievement Hunter channel! So it's time to bust out the cards and make some MAGIC! We have more goals to reach, but we need your help! Want to see Michael get tased How about a 24 Hour Achievement Hunter live stream including DUNGEONS AND DRAGONS Subscribe to the Achievement Hunter channel now: http://bit.ly/AHYTChannel","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-204","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c8500f0-deae-41a5-bf64-dc4e96547beb/sm/1461653-1438017227682-LetsPlay-MagicTheGathering-THUMB-WithLogo.jpg","duration":4852,"publication_date":"2015-07-27T17:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-30","changefreq":"weekly","video":[{"title":"2015:E30 - The Ghost (Destiny)","description":"Jack and Geoff talk about the Ghost from Destiny in this weeks Five Facts! \n\nSuper Secret Bonus Fact: This video came from the moon!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7761e73-c923-4a29-9f00-72af759789df/sm/1461653-1438016155585-FFDinkThumb.jpg","duration":189,"publication_date":"2015-07-27T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-203","changefreq":"weekly","video":[{"title":"2015:E202 - GTA V - Bounty Hunters","description":"Geoff, Jack, Ryan, Michael and Gavin finally completed their mail correspondence course in bounty hunting! To celebrate, they take to the road to bring some cold hard justice to the lawless.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6b1ce16-6dbe-4a21-a486-354fbbf6fecc/sm/1461653-1438009521411-Thumbnail.jpg","duration":2083,"publication_date":"2015-07-27T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-1-episode-2098","changefreq":"weekly","video":[{"title":"2015:E23 - Amnesia: The Dark Descent - Gameplay - The Stream Team (Twitch Highlights)","description":"The Team that Streams, Jeremy, Matt, and Trevor, head into the spooky haunted castle of Amnesia! Will they be able to contain their excitement/fear The answer is no... Post any ideas for future episodes in the comments below, or tweet them to #TheStreamTeam.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-1-episode-2098","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3dae864-a9d0-46de-b9bc-f04a61e55bcf/sm/1461653-1437918285122-Amnesia-YTBLIP.jpg","duration":656,"publication_date":"2015-07-26T13:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-1-episode-2097","changefreq":"weekly","video":[{"title":"2015:E22 - Joel and Adam Stream Terraria - Part 2","description":"In this stream, Joel discovers the side effects of taking potions, while Adam continues to be impatient.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-1-episode-2097","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d2332ce-5ce5-4179-af26-8e42daa2cb93/sm/1461653-1437918432457-Stream2ThumbYT.jpg","duration":6721,"publication_date":"2015-07-26T13:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-202","changefreq":"weekly","video":[{"title":"2015:E201 - Don't Starve Together (The Podcast Crew)","description":"Gus, Meg, Ashley, and Gus try not to starve together in Dont Starve Together. Friendships will be tested, shadows will be fought, and something is guaranteed to catch fire.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-202","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecd4bfd9-76ed-4260-8d35-667a6eceb708/sm/24363-1437866520995-lp_dontstavetogether_thsm.jpg","duration":1952,"publication_date":"2015-07-25T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-57","changefreq":"weekly","video":[{"title":"2015:E57 - GTA V - Aqua Joust","description":"Water is fucking scary. Especially when AH is in it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d052963c-a54b-4b54-a445-fc55b020f14f/sm/1461653-1437770453852-TTD_GTAV_AquaJoust_Thumb.jpg","duration":293,"publication_date":"2015-07-24T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-season-1-episode-2096","changefreq":"weekly","video":[{"title":"2015:E21 - Want to play Black Ops III with Achievement Hunter... for charity?","description":"As if the opportunity to be a zombie in Black Ops 3 werent exciting enough, Achievement Hunter is here to sweeten the pot with an offer you wont want to miss. Enter to win: http://bit.ly/BO3With-AchievementHunterEach entry of $5 or more supports the Call of Duty Endowment and helps them put 25,000 veterans back to work.Subscribe to our social channels for all of the latest campaign updates and winner announcements! YouTube: www.youtube.com/omazeTwitter - https://twitter.com/omazeFacebook - https://www.facebook.com/omazeworld","player_loc":"https://roosterteeth.com/embed/achievement-hunter-season-1-episode-2096","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96e1a2e3-c01a-420c-8c2f-6ac71196acbb/sm/984097-1437686255337-RoosterTeeth_Thumb_V1.png","duration":62,"publication_date":"2015-07-23T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-201","changefreq":"weekly","video":[{"title":"2015:E200 - Minecraft - Episode 165 - July Update Part 2","description":"The AH crew are still appreciating the July Update, unfortunately they have no idea how to \"colors\" correctly.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35fb239d-da61-4f9a-84ac-15e5f1e8f0b1/sm/984097-1437669714790-LP_MC_JulyUpdate_Part2_Thumb.jpg","duration":2075,"publication_date":"2015-07-23T16:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-4","changefreq":"weekly","video":[{"title":"2015:E4 - Batman Arkham Knight - Man Bat Easter Egg ","description":"Jack and Geoff walk you through a frightening new Easter Egg in Batman Arkham Knight. Beware of the skies on Halloween!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a4b1ac7-b290-4fd7-8387-8cea260e5a35/sm/984097-1437669357284-Arkham_Knight_-_Man_Bat_Easter_Egg.jpg","duration":125,"publication_date":"2015-07-23T16:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-56","changefreq":"weekly","video":[{"title":"2015:E56 - GTA V - One Hand","description":"The AH crew learn what it would be like to race with one hand tied behind their back.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdd885ed-f237-4ce8-8e4c-d6b5e7094e60/sm/984097-1437669254906-TTD_GTAV_OneHand_Thumb.jpg","duration":795,"publication_date":"2015-07-23T16:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-15","changefreq":"weekly","video":[{"title":"2015:E15 - No Time to Explain","description":"There's no time to explain this video.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc1e090-ad6c-4a1c-8a07-8f5d284f5e55/sm/2013912-1441898533133-RQ_NoTimeToExplain_Thumb.JPG","duration":429,"publication_date":"2015-07-22T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-200","changefreq":"weekly","video":[{"title":"2015:E199 - Rocket League","description":"Geoff, Jack, and Ryan take on Michael, Jeremy, and Intern-Andy in ROCKET LEAGUE!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-200","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/186d6ca7-0bfe-452a-b37b-ce53aae9e6c6/sm/984097-1437686751990-LP-RocketLeague-THUMB-WEBSITE.jpg","duration":500,"publication_date":"2015-07-22T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-30","changefreq":"weekly","video":[{"title":"2015:E30 - Episode 125: Michael vs. Lindsay","description":"Hockey is Canadian soccer","player_loc":"https://roosterteeth.com/embed/vs-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3ba6d22-e97e-4fcd-9122-c1d336bb94bf/sm/2013912-1441742168888-VS_LindsayVSMichael_HatTrick_Thumb.JPG","duration":474,"publication_date":"2015-07-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-28","changefreq":"weekly","video":[{"title":"2015:E28 - Top 5 Video Game Hospitals","description":"Geoff and a fresh out of the hospital Kdin take a look at some famous fictitious healing facilities!","player_loc":"https://roosterteeth.com/embed/countdown-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da2d0427-74ef-4d5e-b1d0-7f376c953c84/sm/984097-1437686679551-Top5-Hospitals-THUMB-Website.jpg","duration":165,"publication_date":"2015-07-21T20:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-199","changefreq":"weekly","video":[{"title":"2015:E198 - Fibbage XL: Part 2","description":"Join Geoff, Jack, Ryan, Michael, Lindsay, and Max as they sort the fact from the fiction and discover what it truly is that Lindsay Lohan is tweeting about.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-199","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7812a610-0779-4c66-be26-2ec828f6a945/sm/2013912-1449768791152-maxresdefault.jpg","duration":1768,"publication_date":"2015-07-21T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-2","changefreq":"weekly","video":[{"title":"2015:E28 - Week #274","description":"Were in the middle of our subscription drive to our YouTube Achievement Hunter channel and we cant be happier. Geoff is so happy he shaved his face. Gavin is so happy that he cant walk through doors. Jack is just happy in general. Seriously. Oh, and check out our new website tomorrow. Love you.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77fd357c-d876-4d54-b8e9-68e5778d8069/sm/2013912-1452797676295-maxresdefault.jpg","duration":489,"publication_date":"2015-07-20T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-2","changefreq":"weekly","video":[{"title":"2015:E29 - Niko Bellic","description":"Jack and Geoff head back to Liberty City to talk about Niko Bellic in this weeks Five Facts! Got a character you want to see next Leave your suggestions in the comments!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":184,"publication_date":"2015-07-20T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-2","changefreq":"weekly","video":[{"title":"2015:E29 - Gavin Dousing - GO! #91","description":"What says summer better than dousing Gavin in water Nothing. Seriously. Cover Gavin in water. Get a sticker. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":260,"publication_date":"2015-07-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-12","changefreq":"weekly","video":[{"title":"2015:E197 - Towerfall Ascension Part 4","description":"It's all down to this. Geoff, Jack, Ryan, Gavin... and a whoooole bunch of drill arrows.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1723,"publication_date":"2015-07-20T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015","changefreq":"weekly","video":[{"title":"2015:E29 - Arkham Knight HUNT","description":"Jack and Michael take to the skies as the Dark Knight and try to be the first to glide their way to the Run Through the Jungle achievement. Who will be the first to avenge Batmans parents and walk away with this achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1033,"publication_date":"2015-07-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-7","changefreq":"weekly","video":[{"title":"2015:E196 - GTA V - Hasta La Vista","description":"Geoff, Michael, Jack and Ryan have a magical time squishing the life out of each other in the Hasta La Vista game type!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2217,"publication_date":"2015-07-19T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-starwhal-just-the-tip-gameplay","changefreq":"weekly","video":[{"title":"2015:E20 - Starwhal: Just the Tip Gameplay","description":"The Team that Streams, Jeremy, Matt, and Trevor, head into deep space. I mean really deep. Like where narwhals fly free and ram each other in the heart. Post any ideas for future episodes in the comments below, or tweet them to #TheStreamTeam.\r\nTo watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-starwhal-just-the-tip-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":609,"publication_date":"2015-07-19T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015","changefreq":"weekly","video":[{"title":"2015:E29 - Joel and Adam Stream Terraria Part 1","description":"In this recorded live stream, Joel and Adam play Terraria. Joel hates robots, and emojis, but loves caps lock.","player_loc":"https://roosterteeth.com/embed/how-to-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":7055,"publication_date":"2015-07-19T12:06:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-29","changefreq":"weekly","video":[{"title":"2015:E28 - Domesticated Dog Simulator","description":"Woof. Woof woof woof. Arf. AROOOOOOOOOO woof. BACON. woof. bark. bark. sniff sniff sniff. woof. arf arf. ARRRRRRRRRR","player_loc":"https://roosterteeth.com/embed/how-to-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":801,"publication_date":"2015-07-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-3","changefreq":"weekly","video":[{"title":"2015:E195 - Call of Duty: Advanced Warfare Part 2","description":"Barbara, Brandon, Burnie, and Gus return to try their hand at Exo Zombies again. Have they learned their lesson or will history repeat itself Spoiler: history repeats itself.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2036,"publication_date":"2015-07-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-31","changefreq":"weekly","video":[{"title":"2015:E31 - Adventure Time: Finn and Jake's House","description":"Matt and Lindsay check out the last bit of Dr.Boomerang's Adventure Time world! If you want us to check out your map, head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":156,"publication_date":"2015-07-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-55","changefreq":"weekly","video":[{"title":"2015:E55 - Battlefield Hardline - Dot Shot","description":"This did not take more than 5 minutes to film.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":365,"publication_date":"2015-07-17T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-192","changefreq":"weekly","video":[{"title":"2015:E194 - Minecraft - Episode 164 - July Update","description":"Achievement Hunter learns to appreciate the new July Update.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-192","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1678,"publication_date":"2015-07-17T11:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-channel-trailer","changefreq":"weekly","video":[{"title":"2015:E19 - Channel Trailer","description":"SUBSCRIBE\r\n|| Weekly Show Schedule:\r\nMONDAY: HUNT and AHWU\r\nTUESDAY: GO! and Five Facts\r\nWEDNESDAY: Things to do in Minecraft and Top 5\r\nTHURSDAY: Rage Quit/Play Pals and VS\r\nFRIDAY: Things to do in GTA and Fails of the Weak\r\nSATURDAY: Megacraft\r\nSUNDAY: How To","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-channel-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d44f1fe-ae2b-4d62-9a55-b95a82280267/sm/ep11763.jpg","duration":46,"publication_date":"2015-07-16T17:30:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-28","changefreq":"weekly","video":[{"title":"2015:E29 - Volume 252","description":"In Fails of the Weak Volume 252, Geoff and Jack narrate and laugh through fails and glitches in Assassin's Creed Unity, Batman Arkham Knight, Halo 3, and The Last of Us Remastered.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7d33311-ab0c-4ed0-9c51-fa7b16ae8f97/sm/ep11762.jpg","duration":179,"publication_date":"2015-07-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-25","changefreq":"weekly","video":[{"title":"2015:E29 - Episode 124: Michael vs. Jack","description":"Jack blasts Michael into the past.","player_loc":"https://roosterteeth.com/embed/vs-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":377,"publication_date":"2015-07-15T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-168","changefreq":"weekly","video":[{"title":"2015:E193 - Cloudberry Kingdom Part 10","description":"Achievement Hunter is back in Cloudberry Kingdom. How many levels will they manage to complete this time Not a lot is the answer.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2200,"publication_date":"2015-07-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-batman-arkham-knight-all-snug-in-their-beds-achievement-guide","changefreq":"weekly","video":[{"title":"2015:E2500 - Batman Arkham Knight - All Snug in Their Beds Achievement Guide ","description":"Michael and Geoff show you how to have a great time at the carnival and how to get the \"All Snug in Their Beds\" Achievement in Batman: Arkham Knight - A Matter of Family DLC for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-batman-arkham-knight-all-snug-in-their-beds-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":473,"publication_date":"2015-07-14T23:51:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-19","changefreq":"weekly","video":[{"title":"2015:E27 - Top 5 Most Expensive Games","description":"Geoff, Ryan, and Trevor take a look at the Top 5 most expensive video games to develop. Ignore inflation. It's just a myth anyway.","player_loc":"https://roosterteeth.com/embed/countdown-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":162,"publication_date":"2015-07-14T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-39","changefreq":"weekly","video":[{"title":"2015:E54 - GTA V - More Killiad","description":"AH doesn't watch out for that tree.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":583,"publication_date":"2015-07-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-141","changefreq":"weekly","video":[{"title":"2015:E192 - Alone In The Dark","description":"You crazy mad bro Ryan and Michael make their way through the horrible apocalypse that is Alone In The Dark.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2087,"publication_date":"2015-07-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-21","changefreq":"weekly","video":[{"title":"2015:E28 - Grand Theft Auto IV","description":"Jack and Geoff take a trip to Liberty City and talk about GTA IV in this weeks Five Facts! P.S. Jack eats coffee, spread the word.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":327,"publication_date":"2015-07-14T14:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-138","changefreq":"weekly","video":[{"title":"2015:E191 - TowerFall Ascension Part 3","description":"Geoff VS Jack VS Ryan VS Gavin. Who is the best at Towerfall Bramble arrows are running rampant and only the most skilled players can catch them and use them to their full potential.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1727,"publication_date":"2015-07-14T11:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-20","changefreq":"weekly","video":[{"title":"2015:E27 - AHWU #273","description":"The boys survived one week on the new channel and have racked up over 500,000 subscribers! Just another 500k more to get the 24 hour live stream. Follow along this week as Geoff shows off his new hat and Jack gets excited about Trials Fusion DLC.\r\n\r\nVid of week: https://www.youtube.com/watchv=2XuVWVFcNns\r\nCommunity vid of week: https://www.youtube.com/watchv=CchcDnFAZjE","player_loc":"https://roosterteeth.com/embed/ahwu-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":491,"publication_date":"2015-07-13T21:41:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-21","changefreq":"weekly","video":[{"title":"2015:E28 - Beach Buggy HUNT","description":"Michael and Ryan return to everyone's favorite multiplayer screen racer Beach Buggy to see who will be the first to grab the Challenger achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":379,"publication_date":"2015-07-13T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-134","changefreq":"weekly","video":[{"title":"2015:E190 - GTA V - Chopper vs. Chopper X","description":"AH tries out a new version of Chopper Vs Chopper! But can they overcome their short attention spans and inability to read long enough to properly play it","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2386,"publication_date":"2015-07-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gang-beasts-gameplay","changefreq":"weekly","video":[{"title":"2015:E18 - Gang Beasts Gameplay","description":"The Team that Streams, Jeremy, Matt, and Trevor, see who ends up the least deceased, and now you can feast your eyes on ths treat because they've released their video of Gang Beasts. Post any ideas for future episodes in the comments below, or tweet them to #TheStreamTeam.\r\nTo watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gang-beasts-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":594,"publication_date":"2015-07-12T17:05:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-130","changefreq":"weekly","video":[{"title":"2015:E189 - Call of Duty: Advanced Warfare","description":"Barbara, Brandon, Burnie, and Gus try to survive the horror of Exo Zombies. Do they live Of course not. Is it funny Hopefully.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1334,"publication_date":"2015-07-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-17","changefreq":"weekly","video":[{"title":"2015:E30 - Embarrassing Pictures of Achievement Hunter","description":"Matt, Geoff, Jack, and Ryan check out some faithful recreations of some of their more embarrassing moments. If you want to download this map to get inspiration for your own masterpiece click here: http://bit.ly/1HjldYQ If you want us to check out your map attempt to embarrass us, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":155,"publication_date":"2015-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-18","changefreq":"weekly","video":[{"title":"2015:E28 - Volume 251","description":"Jack and Geoff return in Fails of the Weak Volume 251 with lots of laughs in Batman Arkham Knight, Battlefield 4, Far Cry 4, Grand Theft Auto V, and The Last of Us Remastered. Leave a comment letting us know which was your favorite!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":167,"publication_date":"2015-07-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-120","changefreq":"weekly","video":[{"title":"2015:E188 - Minecraft - Episode 163 - Ender DrAgain","description":"With Eyes of Ender in hand, the Achievement Hunter crew dive into The End to finally have their rematch with the Againder-Dragon!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1780,"publication_date":"2015-07-09T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-32","changefreq":"weekly","video":[{"title":"2015:E53 - GTA V - Mount Killiad X","description":"Different vehicles, different, teams, same crew, same mountain, same death. It's Mount Killiad X inside of the new armored vehicles. First team to deliver three of them to the bottom of the mountain will be the victor.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":463,"publication_date":"2015-07-09T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-19","changefreq":"weekly","video":[{"title":"2015:E28 - Episode 123: Matt vs. Michael","description":"Soccer is harder than it looks","player_loc":"https://roosterteeth.com/embed/vs-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":539,"publication_date":"2015-07-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-107","changefreq":"weekly","video":[{"title":"2015:E187 - Quiplash","description":"Geoff, Ryan, Michael, Gavin, Matt, and Jeremy group up to play the new Jackbox game, Quiplash. Over 3000 of you, AH's biggest fans joined in to vote on which answers they found the funniest. There's also definitely no trick to winning this one... also Gavin is stupid... give me votes.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1599,"publication_date":"2015-07-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-30","changefreq":"weekly","video":[{"title":"2015:E52 - Arkham Knight - Bat Bait","description":"Jack and Michael check out a new way to take out evil doers in Batman Arkham Knight. Look both ways before you cross","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":98,"publication_date":"2015-07-08T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-8","changefreq":"weekly","video":[{"title":"2015:E14 - INK","description":"Can you rage with all the colors of the quit","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":308,"publication_date":"2015-07-07T19:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-15","changefreq":"weekly","video":[{"title":"2015:E26 - Top 5 Xbox 360 Games You Never Played","description":"Kdin, Geoff, and Michael show off some really amazing Xbox 360 games you probably overlooked!","player_loc":"https://roosterteeth.com/embed/countdown-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":181,"publication_date":"2015-07-07T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-15","changefreq":"weekly","video":[{"title":"2015:E26 - Week #272","description":"If you're watching this, you are at the brand new Achievement Hunter Youtube page. Congratulations. You are the best person we know. Please tell all of your friends to join you in this magical Valhalla of YouTube. We'll provide the *cookies.\n\n*There will be no cookies.\n\nVid of week: \nCommunity vid of week:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":514,"publication_date":"2015-07-06T20:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-102","changefreq":"weekly","video":[{"title":"2015:E186 - Rugby 15","description":"Geoff and Jack are a bit salty from their NHL losses, will that anger fuel them to victory against Ryan and Michael in Rugby or will Team OG destroy themselves from the inside out","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1180,"publication_date":"2015-07-06T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-16","changefreq":"weekly","video":[{"title":"2015:E27 - Resident Evil 3","description":"As the loser of the great sonnet war\nI have to congratulate Joel Rubin.\nThere is nothing I've wanted to win more,\nOh crap, nothing really rhymes with Rubin.\n\nPerhaps that's a reason for why I lost.\nMy skills don't match his, I now understand.\nSo now I must train no matter the cost,\nI know I have to gain the upper hand.\n\nSo please Joel, get ready, for I will train.\nI'll study each poem book that I can find.\nSince my loss to you has caused me such pain,\nI'll expand my words, my thoughts, and my mind.\n\nNow I've made something for you all to see\nEnjoy Five Facts: Resident Evil 3!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":213,"publication_date":"2015-07-06T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-97","changefreq":"weekly","video":[{"title":"2015:E185 - GTA V - Alphabet Assassins","description":"Geoff, Gavin, Jack and Michael run a few more Missions and see if they can kill their way through the alphabet. Also they rack up some Arkham Knight achievements. Somehow.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2040,"publication_date":"2015-07-06T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-15","changefreq":"weekly","video":[{"title":"2015:E27 - Four Points - GO! #89","description":"Super simple. Score 4 points. Thats it. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":293,"publication_date":"2015-07-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-100","changefreq":"weekly","video":[{"title":"2015:E184 - The Ship: Part 4","description":"We set sail one last time with Geoff, Ryan, Jeremy, Michael, Brandon, and Max. Scores need to be settled and rivalries need to be ended. As tensions rise, trigger fingers become itchy, and money takes a backseat to pure bloodlust.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1678,"publication_date":"2015-07-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-surgeon-simulator-gameplay","changefreq":"weekly","video":[{"title":"2015:E17 - Surgeon Simulator Gameplay","description":"Jeremy and Trevor take their medical practice just off the coast of Mexico to deliver botched surgeries at an affordable rate! No, we're not Michael and Gavin.\r\nTo watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-surgeon-simulator-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":435,"publication_date":"2015-07-05T15:23:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-94","changefreq":"weekly","video":[{"title":"2015:E183 - Agario","description":"Join Burnie, Barbara, Gus, and Gavin as they attempt to play Agario","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1791,"publication_date":"2015-07-05T01:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-91","changefreq":"weekly","video":[{"title":"2015:E182 - Destiny: Trials of Osiris","description":"Geoff, Jack, and Gavin prove once and for all that they are a force to be reckoned with. Or maybe they just get killed a lot. Yeah... nevermind... it's definitely more of the second one.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2247,"publication_date":"2015-07-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-13","changefreq":"weekly","video":[{"title":"2015:E27 - Volume 250","description":"In a wild change of pace, Kerry and Lindsay bring you fails and glitches from Batman Arkham Knight, Destiny, Evolve, and Far Cry 4 in Fails of the Weak Volume 250.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":170,"publication_date":"2015-07-03T13:13:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-first-achievement-hunter-youtube-channel-video","changefreq":"weekly","video":[{"title":"2015:E16 - The First Achievement Hunter YouTube Channel Video! ","description":"Don't you think it's about time that Michael does a painful experiment or that Geoff gets another tattoo Do you want to see the new Achievement Hunter office If you do, then watch the very first Achievement Hunter YT Channel Video and find out what are the subscription incentives. Or just read them here:\r\n\r\n- 500,000 subscribers, we play Magic the Gathering\r\n- 750,000 we use a taser on Michael\r\n- 1,000,000 24 hour live stream from new AH office including live Dungeons and Dragons game\r\n- 1,500,000 Geoff gets a tattoo of Gavins nose on his body. The tattoo will be to scale.\r\n- 2,000,000 Painstation X","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-first-achievement-hunter-youtube-channel-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":392,"publication_date":"2015-07-02T19:16:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-6","changefreq":"weekly","video":[{"title":"2015:E14 - Guns Gore & Cannoli","description":"Hot dogs are delicious and Gavin's an idiot.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1291,"publication_date":"2015-07-02T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-78","changefreq":"weekly","video":[{"title":"2015:E181 - Minecraft - Episode 162 - Cretaceous Park","description":"Ryan felt genetic modification would up the 'wow' factor, the rest of us think the dinosaurs are \"Wow\" enough.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56d697f5-6b1a-4717-9636-beacbbbeba2f/sm/ep11611.jpg","duration":3114,"publication_date":"2015-07-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-13","changefreq":"weekly","video":[{"title":"2015:E27 - Episode 122: Jeremy vs. Matt","description":"Nostalgia is full of surprises.","player_loc":"https://roosterteeth.com/embed/vs-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":326,"publication_date":"2015-07-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-13","changefreq":"weekly","video":[{"title":"2015:E26 - Kholat","description":"Joel and Adam head to Russia to find out if they are also bad at video games in other countries. As it turns out, they are!","player_loc":"https://roosterteeth.com/embed/how-to-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2508,"publication_date":"2015-07-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-84","changefreq":"weekly","video":[{"title":"2015:E180 - Let's Watch - Batman Arkham Knight","description":"Gus and Michael watch Geoff learn what it means to be Batman and find out all of the struggles that come with that great power.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":1728,"publication_date":"2015-07-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-20","changefreq":"weekly","video":[{"title":"2015:E51 - Minecraft - Bouncy Battle","description":"Hate hops.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":396,"publication_date":"2015-07-01T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sunday-driving-season-1-going-deep-sunday-driving","changefreq":"weekly","video":[{"title":"S1:E4 - Going Deep","description":"Griffon gets deep and personal about filling Geoff's life full of joy.","player_loc":"https://roosterteeth.com/embed/sunday-driving-season-1-going-deep-sunday-driving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f1d1af8-dcb2-4a36-b12c-6858d8c78b3e/sm/ep11612.jpg","duration":1886,"publication_date":"2015-06-30T19:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-achievement-hunter-important-announcement","changefreq":"weekly","video":[{"title":"2015:E15 - Achievement Hunter Important Announcement","description":"Go Subscribe to the Achievement Hunter YT Channel: http://bit.ly/AHYTChannel || If we get to 1 Million Subscribers by August 6th we'll do an Achievement Hunter 24 Hour Live Stream!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-achievement-hunter-important-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16dabdd8-15f7-4428-ae5a-1379659e1e2c/sm/ep11610.jpg","duration":208,"publication_date":"2015-06-30T19:36:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-77","changefreq":"weekly","video":[{"title":"2015:E179 - The PainStation","description":"Pong + Pain = THE PAINSTATION! Watch as the trip to Germany becomes absolute torture!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bd76ad6-e782-45e8-8dda-dc40476d89f7/sm/ep11607.jpg","duration":1088,"publication_date":"2015-06-30T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-11","changefreq":"weekly","video":[{"title":"2015:E26 - Wolfenstein HUNT","description":"Michael and Ryan finish off Wolfenstein: The Old Blood in this episode of HUNT. Who will scoop up the achievement to kill the final boss first","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccf5bb5e-5e60-4135-a784-81081ba9eb0e/sm/ep11608.jpg","duration":397,"publication_date":"2015-06-30T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-11","changefreq":"weekly","video":[{"title":"2015:E25 - Week #271","description":"The boys are back in the office going nuts with golf clubs, video game news, announcement teases, crackers, and playing cards.\n\nVid of week: \nCommunity:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4505d6f-e035-43db-b0e2-e7d28806fb53/sm/ep11606.jpg","duration":488,"publication_date":"2015-06-29T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-9","changefreq":"weekly","video":[{"title":"2015:E29 - Adventure Time: Fire Kingdom","description":"Matt and Lindsay return to the world of Adventure Time and check out the Fire Kingdom! If you want us to check out your map that is an accurate representation of your favorite tv show to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a4659df-0c4c-4c1b-93f4-f7c430ebfc22/sm/ep11605.jpg","duration":190,"publication_date":"2015-06-29T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-10","changefreq":"weekly","video":[{"title":"2015:E26 - Kill a Spider - GO! #88","description":"This week is a simple one: be the first to kill a spider (no Minecraft). Go!","player_loc":"https://roosterteeth.com/embed/go-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a8a6da5-e069-42f2-b556-7be2509ade41/sm/ep11604.jpg","duration":421,"publication_date":"2015-06-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-11","changefreq":"weekly","video":[{"title":"2015:E26 - Call of Duty Black Ops II","description":"Hmm, they always tell me I can write whatever I want here...\n\nJack and Geoff talk about facts.\nJust watch the whole thing, and relax!\nBlack Ops II is so fun,\nYou can shoot a big gun,\nAnd wear cool camouflage slacks.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da06a6d6-cdab-4ab0-a793-236ecec7ef55/sm/ep11602.jpg","duration":218,"publication_date":"2015-06-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-72","changefreq":"weekly","video":[{"title":"2015:E178 - The Ship: Part 3","description":"The hodgepodge crew of Geoff, Ryan, Michael, Jeremy, Brandon, and Max board the next murderous cruise liner out of Achievement Hunter. Who will earn the most cash by the end of the game and walk away as the best killer of the bunch","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1204d3d3-54be-4556-b4da-46d257153aaa/sm/ep11603.jpg","duration":1726,"publication_date":"2015-06-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-9","changefreq":"weekly","video":[{"title":"2015:E25 - Top 5 Rivalries in Video Games","description":"Kdin and Michael take a break from their intense hatred of one another to look at the most bitter rivalries in all of video games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a662ecbc-3285-4b78-825d-60301a876ae0/sm/ep11597.jpg","duration":171,"publication_date":"2015-06-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-67","changefreq":"weekly","video":[{"title":"2015:E177 - GTA V - DLC Missions","description":"Geoff, Jack, Michael, and Jeremy deliver some cars, steal some coke, and destroy some trucks in these three new missions.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a43d4a3-541d-48d0-b22d-66a1819cadea/sm/ep11596.jpg","duration":2189,"publication_date":"2015-06-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-65","changefreq":"weekly","video":[{"title":"2015:E176 - Couples Therapy in Contagion Part 2","description":"Gavin, Burnie, Meg, and Ashley continue their ill-advised quest and play more Contagion.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51f2b76f-c93c-4f02-ad3e-15d79925f480/sm/ep11595.jpg","duration":1872,"publication_date":"2015-06-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-batman-arkham-knight-gameplay","changefreq":"weekly","video":[{"title":"2015:E14 - Batman: Arkham Knight Gameplay","description":"Matt and Trevor deliver justice to Gotham, one lethal tranquilizer at a time. Backseat Batman has no rules! To watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-batman-arkham-knight-gameplay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/573bfd1c-0896-45b0-9017-42e91866adeb/sm/ep11594.jpg","duration":563,"publication_date":"2015-06-27T03:17:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ah-vs-funhaus-dirty-bomb-stream-highlights","changefreq":"weekly","video":[{"title":"2015:E13 - AH Vs FunHaus Dirty Bomb Stream Highlights","description":"The 100% accurate stream highlights of Achievement Hunter Vs FunHaus in Dirty Bomb! Thank you to Nexon for making this video possible!\r\n\r\nAchievement Hunter is in no way just showing the parts where they won. FunHaus is just that terrible at games and should go back to \"Video Game Playing School\"...if that even exists. We're such prodigies we never needed none of that fancy schoolin' or book learnin'! Go checkout Dirty Bomb, available now for PC on Steam and play today: http://bit.ly/1FZdPon","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ah-vs-funhaus-dirty-bomb-stream-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc67db53-4e9e-44b2-aeac-2d01ab0c58d7/sm/ep11593.jpg","duration":493,"publication_date":"2015-06-27T03:16:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-15","changefreq":"weekly","video":[{"title":"2015:E50 - Minecraft - Trampoline Terror","description":"AH jumps in the pool in this bouncy deathtrap of a things to do. Don't try this at home.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd63c756-1d0b-46cc-a7fb-2efe84d30743/sm/ep11592.jpg","duration":687,"publication_date":"2015-06-26T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-58","changefreq":"weekly","video":[{"title":"2015:E175 - Destiny: Prison of Elders Level 32","description":"Comprised of Jack, Ryan, and Gavin, no one in the Prison of Elders is prepared to face the undying, unrelentless, and unstoppable force that is... Team Fffff.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ac9a1a5-29c0-472a-952e-f0f5f490bf23/sm/ep11586.jpg","duration":2134,"publication_date":"2015-06-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-199","changefreq":"weekly","video":[{"title":"2013:E199 - RT Podcast #199","description":"RT has a shitty little dog","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-199","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6103,"publication_date":"2013-01-02T20:50:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2013-21","changefreq":"weekly","video":[{"title":"2013:E21 - Nice Carrot Sweat","description":"Rooster Teeth Animated Adventures #78 is a grand compilation of stories. Listen as Burnie rants about dropping vegetables and the five second rule. Gus demonstrates his shitty super power! Finally Michael tells everyone why he's skeptical of people who are nice in Texas.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3e1e145-41b6-4b27-97ab-4f95ca098a54/sm/ep6482.jpg","duration":84,"publication_date":"2013-01-02T16:19:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-december-30th","changefreq":"weekly","video":[{"title":"2012:E16 - RT Recap - Week of December 30th ","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Mistletoe goes to Shutterstock\r\n\r\nImage Credit for 2013 Fireworks goes to Shutterstock\r\n\r\nImage Credit for Happy New Year Sparkler Writing goes to Shutterstock\r\n\r\nImage Credit for 2013 Champagne Glasses goes to Shutterstock\r\n\r\nImage Credit for 2013 Candles goes to Shutterstock\r\n\r\nImage Credit for Happy New Year Baby goes to Shutterstock\r\n\r\nImage Credit for New Year Celebration goes to Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-december-30th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/055b3360-b66a-4dfd-b260-0fb4ce7404d0/sm/ep6477.jpg","duration":221,"publication_date":"2012-12-30T17:18:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-15","changefreq":"weekly","video":[{"title":"2012:E15 - XMAS Feast","description":"Chris is disgusting.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e1058cc-a78b-45d2-8d00-9d0eb6fcafae/sm/ep6476.jpg","duration":108,"publication_date":"2012-12-30T06:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-10","changefreq":"weekly","video":[{"title":"S1:E10 - Episode 10: The Finale","description":"It all comes down to one final episode to determine the winner of the $10,000 grand prize.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ddc6b36-41bc-4574-9f3a-b1cf345d8dbe/sm/ep6469.jpg","duration":1153,"publication_date":"2012-12-27T19:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-198","changefreq":"weekly","video":[{"title":"2012:E198 - RT Podcast #198","description":"What we lack in feet we make up for in inches","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-198","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6619,"publication_date":"2012-12-26T19:25:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-14","changefreq":"weekly","video":[{"title":"2012:E14 - Miles' Strip Club Predicament","description":"Rooster Teeth Animated Adventures #77 details Miles' first experience ever in a strip club.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/948e254b-3d13-433d-b284-65efeba9c3d3/sm/ep6466.jpg","duration":68,"publication_date":"2012-12-26T15:48:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-50","changefreq":"weekly","video":[{"title":"2012:E50 - Facebox - Happy Holidays Part II","description":"Our animator, Shane Newville, brings you a special holiday message from Jack and Kara.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d80b0ad-dbad-4088-ba6b-52c502b3b5b2/sm/ep6462.jpg","duration":48,"publication_date":"2012-12-25T17:22:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-facebox-happy-holidays-from-gavin-and-jack","changefreq":"weekly","video":[{"title":"S4:E10 - Facebox - Happy Holidays from Gavin and Jack","description":"Our animator, Shane Newville, brings you a special holiday message from Jack and Gavin.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-facebox-happy-holidays-from-gavin-and-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120ae77d-60f7-4bff-8e3c-14ab2f69efa8/sm/ep6458.jpg","duration":53,"publication_date":"2012-12-24T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-9-meet-the-final-four","changefreq":"weekly","video":[{"title":"S1:E9 - Episode 9: Meet the Final Four","description":"S1:E9 - Episode 9: Meet the Final Four","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-9-meet-the-final-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a593b5e4-8825-435a-b753-9ba87bf5f078/sm/ep6457.jpg","duration":770,"publication_date":"2012-12-23T23:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-december-23rd","changefreq":"weekly","video":[{"title":"2012:E15 - RT Recap - Week of December 23rd","description":"Miles has entered the Matrix to give you this week's RT Recap! Happy Holidays, everyone!\r\n\r\nImage Credit goes to Shutterstock.com\r\n\r\n Background, One Direction Photo, Boat, Happy Holidays Card, Great White Shark.","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-december-23rd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5615b22-0f58-4f9b-948d-320895cb1db9/sm/ep6456.jpg","duration":205,"publication_date":"2012-12-23T23:19:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-12","changefreq":"weekly","video":[{"title":"2012:E12 - Rooster Teeth gets Musical","description":"...it's not great.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c85400a1-fc3d-4762-a4e4-3da3fb8f6d8a/sm/ep6453.jpg","duration":40,"publication_date":"2012-12-23T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-51","changefreq":"weekly","video":[{"title":"2012:E51 - Megaman X Fanimation by Shane Newville","description":"Original Soundtrack on iTunes http://bit.ly/UoAJfi & Google Play: http://bit.ly/VwBwu6 & Amazon MP3: http://amzn.to/YVx88L\r\n\r\nIn honor of the 25th anniversary of Mega Man, Shane Newville animates a day in the life of Megaman X.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f81d3f0-1b7a-4915-b18e-9f46148b2eb9/sm/ep6448.jpg","duration":421,"publication_date":"2012-12-21T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-simple-walk-a-simple-walk-episode-04","changefreq":"weekly","video":[{"title":"ASW:E4 - Mount Doom - Episode 4","description":"In the final episode of A Simple Walk Into Mordor, our hobbits attempt to take a shortcut through private property as they make their way to Mount Doom.","player_loc":"https://roosterteeth.com/embed/a-simple-walk-a-simple-walk-episode-04","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dfac483-00ba-4220-a18f-1d7b75ed1b7a/sm/ep6447.jpg","duration":714,"publication_date":"2012-12-21T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - Episode 8: Minecraft","description":"It's every man for himself in a dark and dangerous Minecraft Crypt!","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50db12dc-7be7-42cf-aa5d-6cdf7fac2a75/sm/ep6441.jpg","duration":938,"publication_date":"2012-12-20T04:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-197","changefreq":"weekly","video":[{"title":"2012:E197 - RT Podcast #197","description":"It's the RT Podcast Awards for 2012!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-197","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6629,"publication_date":"2012-12-19T22:50:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-7","changefreq":"weekly","video":[{"title":"2012:E7 - Burnie's Drunk Touchdown","description":"Rooster Teeth Animated Adventures #76 is Burnie recalling the time he scored a touchdown at a college football game...despite the fact he wasn't on the team or sober.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4546f112-b604-4acd-8a36-a2e202a756ff/sm/ep6436.jpg","duration":91,"publication_date":"2012-12-19T15:06:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-simple-walk-a-simple-walk-episode-03","changefreq":"weekly","video":[{"title":"ASW:E3 - Blisters & Balrogs! - Episode 3","description":"On the third part of their journey, the hobbits suffer through ever worsening blisters, dodge cars, and take on a 70km stretch of highway.","player_loc":"https://roosterteeth.com/embed/a-simple-walk-a-simple-walk-episode-03","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/843f466e-98db-47de-a1bd-76d55a0c9ec0/sm/ep6433.jpg","duration":676,"publication_date":"2012-12-18T18:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-december-16th","changefreq":"weekly","video":[{"title":"2012:E14 - RT Recap - Week of December 16th ","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Hobbiton goes to Shutterstock\r\n\r\nImage Credit for Mt. Ngauruhoe goes to Shutterstock\r\n\r\nImage Credit for Kitten goes to Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-december-16th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/380898d6-c617-46f7-a851-6121d1d60843/sm/ep6428.jpg","duration":195,"publication_date":"2012-12-17T02:08:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-6","changefreq":"weekly","video":[{"title":"2012:E6 - Around the Block","description":"We take gaming very seriously at Rooster Teeth.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f708f650-b422-413d-97c9-416d1de272e4/sm/ep6426.jpg","duration":225,"publication_date":"2012-12-16T00:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-simple-walk-a-simple-walk-episode-02","changefreq":"weekly","video":[{"title":"ASW:E2 - Rivendell to Moria! - Episode 2","description":"In day two and three of their journey, the physical pain and exhaustion hit the travelers hard. And when they become lost in a forest, they must find their way out before nightfall when the temperature drops to freezing.","player_loc":"https://roosterteeth.com/embed/a-simple-walk-a-simple-walk-episode-02","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99c88c9e-80e9-4a96-a8b6-91726be61c90/sm/ep6417.jpg","duration":647,"publication_date":"2012-12-14T16:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-7","changefreq":"weekly","video":[{"title":"S1:E7 - Episode 7: Zombie Day","description":"Team Gus and Brooke come back from the dead and square off in one of the most popular Zombie games in existence!","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e76e151d-9577-4c68-9236-113e3ca16c94/sm/ep6409.jpg","duration":848,"publication_date":"2012-12-14T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rtx-2013-rtx-2013-official-video-trailer","changefreq":"weekly","video":[{"title":"2013:E1 - RTX 2013: Official Video Trailer","description":"We're incredibly excited to announce that RTX 2013 will take place July 5-7 2013 in Austin, TX! Join us for an unforgettable event!\r\n\r\nTickets go on sale January 5, 2013. \r\n\r\nFor more information regarding ticket sales, event info, and exhibitor and marketing/sponsorship opportunities, go to http://www.rtxevent.com","player_loc":"https://roosterteeth.com/embed/rtx-2013-rtx-2013-official-video-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd42c8ca-d995-42a2-b007-443ab77b9aff/sm/ep6379.jpg","duration":370,"publication_date":"2012-12-13T19:58:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-196","changefreq":"weekly","video":[{"title":"2012:E196 - RT Podcast #196","description":"RT lists their nominees for their 2012 Podcast Awards","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-196","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":7428,"publication_date":"2012-12-13T00:56:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-45","changefreq":"weekly","video":[{"title":"2012:E45 - Ray's Photo Bomb","description":"Rooster Teeth Animated Adventures #75 shows what Ray does when faced with an awkward photo op. He can truly blend into any situation.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e82c3d78-1cb7-4707-a060-184436cca184/sm/ep6346.jpg","duration":72,"publication_date":"2012-12-12T15:35:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-rooster-teeth-holiday-commercial","changefreq":"weekly","video":[{"title":"S4:E9 - Rooster Teeth Holiday Commercial","description":"Michael gets the gang some Rooster Teeth merch for XMAS!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-rooster-teeth-holiday-commercial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/642f5576-9304-4643-a10f-ca3b1dc7e478/sm/ep6318.jpg","duration":117,"publication_date":"2012-12-10T21:16:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-simple-walk-a-simple-walk-episode-01","changefreq":"weekly","video":[{"title":"ASW:E1 - A Simple Walk Into Mordor - Episode 1","description":"To celebrate the release of The Hobbit this month, Kerry Shawcross and Chris Demarais, two staff member of Rooster Teeth Productions (the producers of Red vs Blue, Immersion, and Achievement Hunter), will do in six days what took Frodo and Sam three movies to complete. They will walk the 120+ mile journey across New Zealand from the filming location of Hobbiton in Matamata to the filming location of Mount Doom, Mount Ngauruhoe. They will sleep on the ground, cross rivers, and of course, eat Lembas Bread. Documenting the entire journey on video, the two Rooster Teeth staff will prove that one does simply walk into Mordor.","player_loc":"https://roosterteeth.com/embed/a-simple-walk-a-simple-walk-episode-01","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a27963-dacc-4161-b265-2747516ff2cb/sm/ep6314.jpg","duration":401,"publication_date":"2012-12-10T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-32","changefreq":"weekly","video":[{"title":"2012:E32 - Kerry in a Box","description":"Rooster Teeth saves some cash getting Kerry to New Zealand.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c122d88-9631-4a0e-85c1-4e963adfccf5/sm/ep6313.jpg","duration":77,"publication_date":"2012-12-09T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-december-8th","changefreq":"weekly","video":[{"title":"2012:E13 - RT Recap - Week of December 8th","description":"Joel and Kerry play Halo 4! I mean, give you the Recap!\r\n\r\nClick Here to See More RT Recaps","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-december-8th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b73d877d-89a4-4a07-901b-6fba6cc897cb/sm/ep6311.jpg","duration":276,"publication_date":"2012-12-07T23:00:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-6","changefreq":"weekly","video":[{"title":"S1:E6 - Episode 6: Super Mario Bros.","description":"Team Gus and Team Brook head to the state for a Mario Bros. Generational relay!","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4dbbaa7-896e-4569-a922-8bad601935f2/sm/ep6303.jpg","duration":760,"publication_date":"2012-12-06T22:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-195","changefreq":"weekly","video":[{"title":"2012:E195 - RT Podcast #195","description":"RT is always angry.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-195","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6864,"publication_date":"2012-12-05T20:59:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-20","changefreq":"weekly","video":[{"title":"2012:E20 - Grapes, Calls & Storage","description":"Rooster Teeth Animated Adventures #74 is a montage of stories. Find out what people's overall opinion is about grapes (positive), Burnie takes a phone call in a weird fashion, and finally Burnie talks about Tupperware.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92ed3a7d-8605-496f-8521-d0c805910314/sm/ep6237.jpg","duration":66,"publication_date":"2012-12-05T15:31:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-december-1st","changefreq":"weekly","video":[{"title":"2012:E12 - RT Recap - Week of December 1st","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Background Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-december-1st","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce07e501-9d85-484f-81aa-410e934d38d1/sm/ep6204.jpg","duration":194,"publication_date":"2012-12-01T18:55:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Episode 5: Halo - Combat Evolved","description":"Teams Red and Yellow square off in a classic game of Capture the Flag in good ole Blood Gulch.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/968fb820-09d1-46ae-9679-7c8a56102658/sm/ep6193.jpg","duration":791,"publication_date":"2012-11-29T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-11","changefreq":"weekly","video":[{"title":"2012:E11 - Boat's 'N' Bros","description":"Miles gives Kyle a hand. Meanwhile, Brandon and Chris are tying to start Matt's car.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d694167e-29fb-4abd-a00b-f8218e6c8d05/sm/ep6192.jpg","duration":63,"publication_date":"2012-11-29T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-194","changefreq":"weekly","video":[{"title":"2012:E194 - RT Podcast #194","description":"RT farts on little girls heads.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-194","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5825,"publication_date":"2012-11-28T21:39:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-8","changefreq":"weekly","video":[{"title":"2012:E8 - Gus Doesn't Wanna Go To Vegas","description":"Rooster Teeth Animated Adventures #73 retells a classic tale of conflict between Burnie and Gus. Burnie wants to go to Vegas, but Gus does not. Who will win Nobody, because in the end it was a stupid disagreement.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4230e4b4-8896-428c-8f45-b6a36cd6d5cf/sm/ep6182.jpg","duration":88,"publication_date":"2012-11-28T14:10:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4: The Concert","description":"The 3 teams square off on stage and rock out in Rock Band and the losers face a special guest in this week's episode of The Gauntlet","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8a6bb37-f651-4287-98b7-a3a0b971923b/sm/ep6165.jpg","duration":714,"publication_date":"2012-11-23T08:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-3","changefreq":"weekly","video":[{"title":"2012:E3 - Grifball Plushie Football","description":"The guys and gals at Rooster Teeth play some Thanksgiving Grifball Plushie football just like the pilgrims and Indians did thousands of years ago.\n\nGrifballs available in the RT Store until Monday, Nov. 26!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f0d9ca2-8e8b-4b90-a4a4-bfbf0868db24/sm/ep6161.jpg","duration":197,"publication_date":"2012-11-22T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-193","changefreq":"weekly","video":[{"title":"2012:E193 - RT Podcast #193","description":"RT takes two dates to prom.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-193","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6656,"publication_date":"2012-11-21T21:16:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-4","changefreq":"weekly","video":[{"title":"2012:E4 - Doctor Free Pants Gavin","description":"Rooster Teeth Animated Adventures #72 shows exactly how great Gavin would be if he were a doctor (not very), and it also shows the ugly consequences of a Peggle celebration that goes a little too extreme.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a84da9fd-e241-4ac8-a6ed-3cbb0064d2be/sm/ep6155.jpg","duration":69,"publication_date":"2012-11-21T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-november-17th","changefreq":"weekly","video":[{"title":"2012:E11 - RT Recap - Week of November 17th ","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Turkey Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-november-17th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a27304f-cb4d-4aa8-b3f6-9d1e672fa241/sm/ep6143.jpg","duration":221,"publication_date":"2012-11-17T20:58:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3: Team Fortress 2 and Call of Duty Black Ops","description":"Four teams face off against one another with two of the most popular first person shooting games ever. Who will go home Watch this week's episode of The Gauntlet.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a1f1918-c8cf-4250-8f77-a21b42962571/sm/ep6130.jpg","duration":1081,"publication_date":"2012-11-16T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-192","changefreq":"weekly","video":[{"title":"2012:E192 - RT Podcast #192","description":"RT pisses in arches","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-192","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6269,"publication_date":"2012-11-15T01:04:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-47","changefreq":"weekly","video":[{"title":"2012:E48 - Raw Meat Lumps","description":"Rooster Teeth Animated Adventures #71 shows how Burnie and Geoff handle being fed raw meat in Europe, plus it also gives you tips on how to deal with Saints Row multiplayer games!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fdc8c52-0c5d-4597-98e6-8bcf3bb0a9d6/sm/ep6104.jpg","duration":76,"publication_date":"2012-11-14T16:22:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-november-10th","changefreq":"weekly","video":[{"title":"2012:E10 - RT Recap - Week of November 10th ","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Corucopia Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-november-10th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18406127-1ff6-4a00-9e86-1339e4bb9256/sm/ep6088.jpg","duration":230,"publication_date":"2012-11-10T20:24:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2: The Draft","description":"The contestants meet each other for the first time and get introduced to the Rooster Teeth staff, but all is not exactly as it appears...","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00dac34d-fcb5-4a77-a0d7-ba7de206567a/sm/ep6080.jpg","duration":763,"publication_date":"2012-11-09T01:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-191","changefreq":"weekly","video":[{"title":"2012:E191 - RT Podcast #191","description":"RT breaks fences","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-191","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5355,"publication_date":"2012-11-08T00:14:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rwby-season-1-red-trailer","changefreq":"weekly","video":[{"title":"V1:E1 - \"Red\" Trailer","description":"First look at Rooster Teeth's newest project RWBY helmed by Red vs. Blue Lead Animator Monty Oum.","player_loc":"https://roosterteeth.com/embed/rwby-season-1-red-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf74ba7b-4ea4-4973-bfa1-4137d1db7f64/sm/ep6052.jpg","duration":209,"publication_date":"2012-11-07T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-32","changefreq":"weekly","video":[{"title":"2012:E32 - More NYCC Stories","description":"Rooster Teeth Animated Adventures #70 is a continuation of stories from New York Comic Con. Find out what things Drunk Gus does that Sober Gus would never do! Also, watch as Michael yells at a Frenchman's son!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bc64f2c-6eb1-48e0-9dd6-e12dfc85c231/sm/ep6043.jpg","duration":74,"publication_date":"2012-11-07T17:02:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-22","changefreq":"weekly","video":[{"title":"S10:E22 - Episode 22: Don't Say It","description":"S10:E22 - Episode 22: Don't Say It","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2e4f7f0-0df0-4c75-911a-843b2e80c4de/sm/ep6014.jpg","duration":807,"publication_date":"2012-11-06T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-gauntlet-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1: Auditions","description":"Gamers trek down to the Rooster Teeth Studios to audition for a spot in the new gaming series: The Gauntlet.","player_loc":"https://roosterteeth.com/embed/the-gauntlet-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20d8a7d2-90b5-4a80-a04d-c1574b97888d/sm/ep6004.jpg","duration":445,"publication_date":"2012-11-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-190","changefreq":"weekly","video":[{"title":"2012:E190 - RT Podcast #190","description":"Happy Halloween from RT!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-190","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5747,"publication_date":"2012-10-31T22:07:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-23","changefreq":"weekly","video":[{"title":"2012:E23 - Burnie's Sleeper Power","description":"Rooster Teeth Animated Adventures #69 is Matt explaining the full power of Burnie's ability to fall asleep anywhere in an instant.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0be00dd-f955-48a5-9562-3d2311d2aa4f/sm/ep5991.jpg","duration":70,"publication_date":"2012-10-31T17:41:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-21","changefreq":"weekly","video":[{"title":"S10:E21 - Episode 21: True Colors","description":"S10:E21 - Episode 21: True Colors","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85c94ff7-b8ab-4f29-8b3c-89176131c466/sm/ep5982.jpg","duration":429,"publication_date":"2012-10-30T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-52","changefreq":"weekly","video":[{"title":"2012:E52 - FaceBox: Michael Jones (of Rage Quit fame)","description":"Our animator, Shane Newville, brings you the best of Mr. Jones.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af6cad05-203c-4adc-afa6-aecb71954416/sm/ep5968.jpg","duration":77,"publication_date":"2012-10-25T21:02:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-189","changefreq":"weekly","video":[{"title":"2012:E189 - RT Podcast #189","description":"RT busts its nuts.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-189","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":6043,"publication_date":"2012-10-24T23:00:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-11","changefreq":"weekly","video":[{"title":"2012:E11 - Bets & Flirts","description":"Rooster Teeth Animated Adventures #68 is a story about Gavin's love of making dumb bets, and Gavin's secret man crush at the Rooster Teeth office. Gossip time!!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe81e063-789e-492a-8cc8-53feb6f64831/sm/ep5947.jpg","duration":76,"publication_date":"2012-10-24T15:57:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-psa-voting-fever","changefreq":"weekly","video":[{"title":"S1:E35 - PSA: Voting Fever","description":"What do you get when you combine Halo 4, GameStop, the Election, a musical number and Red vs. Blue This very special PSA. Do your duty as an American and watch it now! Then go vote and play Halo 4! Visit http://www.gamestop.com/halo4 for more.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-psa-voting-fever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/266753a2-8a9d-4b21-af53-f47cbf7ff4bb/sm/ep5943.jpg","duration":202,"publication_date":"2012-10-23T19:53:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-red-vs-blue-p-s-a-voting-fever","changefreq":"weekly","video":[{"title":"MV:E9 - Red vs. Blue PSA: Voting Fever","description":"What do you get when you combine Halo 4, GameStop, the Election, a \nmusical number and Red vs. Blue This very special PSA. Do your duty as \nan American and watch it now!","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-red-vs-blue-p-s-a-voting-fever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b52a636-4001-4072-8f15-248eb606b18f/sm/1461653-1439912572286-Screen_Shot_2015-08-18_at_10.42.40_AM.png","duration":202,"publication_date":"2012-10-23T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-20","changefreq":"weekly","video":[{"title":"S10:E20 - Episode 20: Reckless","description":"S10:E20 - Episode 20: Reckless","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/115c2db6-7cec-4624-a516-98b239155128/sm/ep5923.jpg","duration":465,"publication_date":"2012-10-23T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-oct-21st","changefreq":"weekly","video":[{"title":"2012:E9 - RT Recap - Week of Oct. 21st","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Background Shutterstock\r\n\r\nImage Credit for Jack-O-Lantern Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-oct-21st","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a0cc2dd-28e2-4374-8cad-b1dccae51f64/sm/ep5920.jpg","duration":244,"publication_date":"2012-10-19T21:20:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-5","changefreq":"weekly","video":[{"title":"2012:E5 - Gavin Nut Shot","description":"Michael hits Gavin's bullseye while Ali loses a prized possession. Meanwhile, somewhere Gus runs down a hallway with a bucket of ice.\nClick Here to See More RT Life","player_loc":"https://roosterteeth.com/embed/rt-life-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/044e24d5-c70a-4309-95cf-1f45c0c014c8/sm/ep5913.jpg","duration":127,"publication_date":"2012-10-19T01:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-188","changefreq":"weekly","video":[{"title":"2012:E188 - RT Podcast #188","description":"RT totally manscapes","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-188","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5875,"publication_date":"2012-10-17T21:56:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-50","changefreq":"weekly","video":[{"title":"2012:E50 - When Kites Attack","description":"Rooster Teeth Animated Adventures #67 describes a near fatal accident where Burnie's son almost inadvertently kills a man with a kite. I swear officer, it was an accident.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf962e40-47dd-4efc-b47e-36a497e293c9/sm/ep5866.jpg","duration":57,"publication_date":"2012-10-17T14:13:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-19","changefreq":"weekly","video":[{"title":"S10:E19 - Episode 19: Party Crasher","description":"S10:E19 - Episode 19: Party Crasher","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2f04dd8-e6f2-4fd1-85db-33569d74fca4/sm/ep5845.jpg","duration":709,"publication_date":"2012-10-16T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-oct-13th","changefreq":"weekly","video":[{"title":"2012:E8 - RT Recap - Week of Oct. 13th","description":"Click Here to See More RT Recaps\r\n\r\nImage Credit for Background Shutterstock\r\n\r\nImage Credit for Gold Star Shutterstock\r\n\r\nImage Credit for Pumpkin Shutterstock\r\n\r\nImage Credit for TARDIS Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-oct-13th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34e0bdb6-58f4-4b55-9c2e-6000914d994d/sm/ep5844.jpg","duration":216,"publication_date":"2012-10-13T00:27:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-42","changefreq":"weekly","video":[{"title":"2012:E42 - The Introduction of Pokepella","description":"Barbara attends her first football game and Gus' underwear.\r\n\r\nClick Here to See More RT Life","player_loc":"https://roosterteeth.com/embed/rt-life-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb01266d-a45a-4a52-98d2-61a839794103/sm/ep5839.jpg","duration":94,"publication_date":"2012-10-11T23:50:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-187","changefreq":"weekly","video":[{"title":"2012:E187 - RT Podcast #187","description":"RT gets personal. Real personal.","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-187","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5949,"publication_date":"2012-10-10T21:51:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-40","changefreq":"weekly","video":[{"title":"2012:E40 - Gavin's Has Brain Problems","description":"Rooster Teeth Animated Adventures #66 is absolutely jam packed with stories of Gavin destroying his own brain. In part one of our adventure, Gavin forgets how to read and write, while in part two he goes blind for three days.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f52eb07-252f-4ab3-b7b0-a645b517cb9b/sm/ep5820.jpg","duration":93,"publication_date":"2012-10-10T14:09:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-18","changefreq":"weekly","video":[{"title":"S10:E18 - Episode 18: Change of Plans","description":"S10:E18 - Episode 18: Change of Plans","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6775f735-6793-46fb-b967-c2e9c7936a10/sm/ep5800.jpg","duration":481,"publication_date":"2012-10-09T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-rt-recap-week-of-oct-6th","changefreq":"weekly","video":[{"title":"2012:E7 - RT Recap - Week of Oct. 6th","description":"Chris and Recaps. Something about the combo just feels right. He'll tell you what went down this week. \r\n\r\nClick Here to See More RT Recaps","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-rt-recap-week-of-oct-6th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04b9ab93-78ac-44cf-b089-680a60b6c3cd/sm/ep5796.jpg","duration":175,"publication_date":"2012-10-06T14:48:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-30","changefreq":"weekly","video":[{"title":"2012:E30 - Gavin's a Bother","description":"Gavin lives to annoy. And we are here to deal with it. \r\n\r\nClick Here to See More RT Life","player_loc":"https://roosterteeth.com/embed/rt-life-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65a4801b-6395-4e8f-a38a-79c06b2446c1/sm/ep5787.jpg","duration":81,"publication_date":"2012-10-04T22:59:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-186","changefreq":"weekly","video":[{"title":"2012:E186 - RT Podcast #186","description":"RT knows poop is funny","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-186","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5824,"publication_date":"2012-10-03T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-29","changefreq":"weekly","video":[{"title":"2012:E29 - Burnie Tales","description":"Rooster Teeth Animated Adventures #65 is a collection of embarrassing stories told by Burnie. Find out how Burnie thought TV worked when he was a kid, his thoughts on porn disposal, and how he got trolled by a potentially murderous nurse at a hospital!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e62b6a17-fedb-4156-b173-56f4f259587f/sm/ep5766.jpg","duration":76,"publication_date":"2012-10-03T15:49:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-17","changefreq":"weekly","video":[{"title":"S10:E17 - Episode 17: Remember Me How I Was","description":"S10:E17 - Episode 17: Remember Me How I Was","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2e4bf72-e169-496a-8bbe-449a63d45cff/sm/ep5757.jpg","duration":372,"publication_date":"2012-10-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-week-of-september-28th","changefreq":"weekly","video":[{"title":"2012:E6 - Week of September 28th ","description":"Barbs takes you on set of the Live Stream RT Podcast to fill you in on this week's happenings. \r\n\r\nClick Here to See More RT Recaps\r\n\r\nImage Credit Goes To Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-week-of-september-28th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c521553e-13ca-467d-a651-ef3c79f6e976/sm/ep5752.jpg","duration":185,"publication_date":"2012-09-29T23:46:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-21","changefreq":"weekly","video":[{"title":"2012:E21 - Wasabi and Wind Power","description":"This week, Barbs deals with some serious spice and Burnie proves that science is fun. \r\n\r\nClick Here to See More RT Life","player_loc":"https://roosterteeth.com/embed/rt-life-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/beaf0eb7-bcec-4e2f-9960-6fdef2b5be28/sm/ep5739.jpg","duration":83,"publication_date":"2012-09-27T21:36:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rt-podcast-185","changefreq":"weekly","video":[{"title":"2012:E185 - RT Podcast #185","description":"RT celebrates their first live stream podcast!","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rt-podcast-185","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":5946,"publication_date":"2012-09-26T21:54:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-16","changefreq":"weekly","video":[{"title":"2012:E16 - Michael Gets Locked Out","description":"Rooster Teeth Animated Adventures #64 is the story of Lindsay accidentally locking Michael out of his apartment. Watch Michael use all of his powers to try and get back into his own apartment. Bonus appearance in this episode by Kara the cheerleader!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a131d490-4685-47d8-8f09-af4ffbdc4081/sm/ep5701.jpg","duration":84,"publication_date":"2012-09-26T14:27:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-16","changefreq":"weekly","video":[{"title":"S10:E16 - Episode 16: Happy Birthday","description":"S10:E16 - Episode 16: Happy Birthday","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a017e77c-154c-41d5-8bf6-7c336e457b4b/sm/ep5676.jpg","duration":364,"publication_date":"2012-09-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-week-of-september-21st","changefreq":"weekly","video":[{"title":"2012:E5 - Week of September 21st ","description":"Lindsay says: Don't go into the long grass! But do check out what RT did this week. \r\n\r\nClick Here to See More RT Recaps\r\n\r\nImage Credit Goes To Shutterstock","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-week-of-september-21st","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d030bb8-1259-48dc-bbd6-ffb3ccfee750/sm/ep5661.jpg","duration":207,"publication_date":"2012-09-22T15:17:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-2","changefreq":"weekly","video":[{"title":"2012:E2 - The Sampler","description":"RT brings you three tales complete with fruit, a bathroom, and ERROR404s. \r\n\r\nClick Here to See More RT Life","player_loc":"https://roosterteeth.com/embed/rt-life-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66b49a53-96b1-4855-9494-58cf7b443168/sm/ep5649.jpg","duration":87,"publication_date":"2012-09-21T01:01:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-53","changefreq":"weekly","video":[{"title":"2012:E53 - Drunk in the City","description":"Rooster Teeth Animated Adventures #63 is NOT a story about Geoff and Gus being good samaritans. It is a story of Geoff and Gus being assholes laughing at someone who is too drunk to take care of themselves while Burnie and Kathleen try to help the idiot.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab5a401d-8bc0-4ed3-8340-0158c94b3fb2/sm/ep5625.jpg","duration":82,"publication_date":"2012-09-19T14:55:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-15","changefreq":"weekly","video":[{"title":"S10:E15 - Episode 15: Three's a Crowd","description":"S10:E15 - Episode 15: Three's a Crowd","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6acf9db-fa65-42c6-9d70-fe2c2bd478df/sm/ep5604.jpg","duration":390,"publication_date":"2012-09-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-45","changefreq":"weekly","video":[{"title":"2012:E45 - Love Your Country","description":"Gus, Barbara, and Adam show Ben that these colors don't run.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f902ca2-5354-402a-a997-f6b5d721194d/sm/ep5598.jpg","duration":116,"publication_date":"2012-09-14T09:45:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-48","changefreq":"weekly","video":[{"title":"2012:E47 - Gavin's Dong Gong","description":"Rooster Teeth Animated Adventures #62 shows what happens when Burnie finally crosses the line and upsets Gavin by kicking him in the butt at a urinal. Lets just say the result is Gavin makes some very familiar contact with the urinal wall. Gross.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/783e891a-7979-40a8-92ce-c6fe1cf28c2f/sm/ep5591.jpg","duration":71,"publication_date":"2012-09-12T17:31:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-14","changefreq":"weekly","video":[{"title":"S10:E14 - Episode 14: New and Improved","description":"S10:E14 - Episode 14: New and Improved","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/753226d8-b57b-4bb9-b329-7f724d74c9a6/sm/ep5587.jpg","duration":267,"publication_date":"2012-09-11T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-40","changefreq":"weekly","video":[{"title":"2012:E40 - Pills and Ping Pong","description":"Click here for the podcast! http://bit.ly/tK7pjy\r\n\r\nThey're both in this week's RT Life! Gavin tries to take a pill and Miles and Kerry find time to relax at work.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69078c5b-e1e3-4e4e-b74b-e4be40c079a9/sm/ep5578.jpg","duration":103,"publication_date":"2012-09-07T01:24:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-42","changefreq":"weekly","video":[{"title":"2012:E42 - OmniGus","description":"Rooster Teeth Animated Adventures #61 is ALL GUS ALL THE TIME! Listen as Gus discusses having to get embarrassing medicines from a pharmacist, programs a robot for fun and takes a leg from a one legged man. FUN!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74545ab4-1de4-4082-a3b3-d23f6eba3185/sm/ep5572.jpg","duration":88,"publication_date":"2012-09-05T15:51:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-13","changefreq":"weekly","video":[{"title":"S10:E13 - Episode 13: Greenish-Blue With Envy","description":"S10:E13 - Episode 13: Greenish-Blue With Envy","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8b8a0fb-7609-458c-a4e1-2a28a923b0cf/sm/ep5567.jpg","duration":549,"publication_date":"2012-09-04T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-36","changefreq":"weekly","video":[{"title":"2012:E36 - Packing for PAX 2012","description":"Chris, Brandon, Gus and Lindsay prepare for PAX 2012. Relax, we're professionals.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a46f2d5e-f2a1-465e-bc0b-6632dc928347/sm/ep5562.jpg","duration":101,"publication_date":"2012-08-30T22:33:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-39","changefreq":"weekly","video":[{"title":"2012:E39 - Bad Luck Burnie","description":"Rooster Teeth Animated Adventures #60 is Burnie's failed attempt at chivalry on an airplane. Watch as he makes a fool of himself trying to help what he believes are star crossed lovers.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5a0c098-4542-42c0-91f4-c06e3583b51a/sm/ep5555.jpg","duration":66,"publication_date":"2012-08-29T15:11:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-12","changefreq":"weekly","video":[{"title":"S10:E12 - Episode 12: Out of Mind","description":"S10:E12 - Episode 12: Out of Mind","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2be7959-3f00-4efc-bbb5-8111e50b0aeb/sm/ep5548.jpg","duration":540,"publication_date":"2012-08-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-town-season-1-the-meaning-of-life","changefreq":"weekly","video":[{"title":"S1:E6 - The Meaning of Life","description":"The forest animals philosophize about their purpose on earth.","player_loc":"https://roosterteeth.com/embed/nature-town-season-1-the-meaning-of-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7900bb7-f2f8-4409-99b1-316e955b192c/sm/ep5544.jpg","duration":87,"publication_date":"2012-08-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-31","changefreq":"weekly","video":[{"title":"2012:E31 - Michael Takes the Gummy Bear Challenge","description":"Can he eat a 5 pound gummy bear in an hour and a half See for yourself!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1975116c-347a-488f-bc45-147fcbc4297d/sm/ep5543.jpg","duration":207,"publication_date":"2012-08-24T03:43:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-34","changefreq":"weekly","video":[{"title":"2012:E34 - Gavin's Drunken Shenanigans","description":"Rooster Teeth Animated Adventures #59 is Burnie telling the story of what it is like trying to take care of a rowdy drunken Brit while on a business trip.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf92333-8556-4bef-b974-e59cd5960f83/sm/ep5535.jpg","duration":74,"publication_date":"2012-08-22T14:18:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-11","changefreq":"weekly","video":[{"title":"S10:E11 - Episode 11: Out of Body","description":"S10:E11 - Episode 11: Out of Body","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd2a833c-e860-4871-9697-769cf0288e13/sm/ep5531.jpg","duration":449,"publication_date":"2012-08-21T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-week-of-august-17th","changefreq":"weekly","video":[{"title":"2012:E4 - Week of August 17th ","description":"Miles can't find his team mate, but he can tell you what happened this week at RT.","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-week-of-august-17th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d013f568-34e2-4c49-90be-d952b5ba94fc/sm/ep5528.jpg","duration":226,"publication_date":"2012-08-17T23:51:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-town-season-1-dog-years-dance","changefreq":"weekly","video":[{"title":"S1:E5 - Dog Years Dance","description":"Tony the Turtle attempts to take a nap but is pressured into a dance contest with Fido the Squirrel.","player_loc":"https://roosterteeth.com/embed/nature-town-season-1-dog-years-dance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54dc4eba-daa9-4066-a59a-0828235f9602/sm/ep5524.jpg","duration":145,"publication_date":"2012-08-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/check-out-saturday-morning-rpg","changefreq":"weekly","video":[{"title":"S1:E273 - Check out Saturday Morning RPG!","description":"This is seriously the coolest RPG that you need to pay attention to!\r\nSaturday Morning RPG comes from Mighty Rabbit Studios, an indie studio looking to create great iOS games.\r\nBe sure to check them out at MightyRabbitStudios.com, and look for Saturday Morning RPG on April 5th!","player_loc":"https://roosterteeth.com/embed/check-out-saturday-morning-rpg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a9fcd5d-5e7b-4c37-bbaf-99cb3f773d07/sm/MARTY(HERO).png","duration":123,"publication_date":"2012-04-01T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-ea-for-worst-company-in-america","changefreq":"weekly","video":[{"title":"S1:E159 - Clip of the Week - EA for Worst Company in America!","description":"While the NCAA basketball tournament is going on, so is the tournament for the worst company in America, and one videogame company has made the final four.\r\nWant to check out the real competition? Find out more here! http://www.screwattack.com/news/ea-could-be-worst-company-america-year","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-ea-for-worst-company-in-america","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":148,"publication_date":"2012-03-30T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-033012","changefreq":"weekly","video":[{"title":"S1:E150 - Hard News 03/30/12","description":"Today on Hard News Sega is hemorrhaging money, the 360's hard drive isn't safe, and Wasteland 2 might have some help from Obsidian.\r\nSega losing money and canceling games - http://www.screwattack.com/news/sega-bleeding-money-and-cancelling-games\r\nCredit Card info can be taken from 360 HDD - http://www.screwattack.com/news/hackers-can-recover-credit-card-information-any-xbox-360-hdd\r\ninXile possibly collaborating with Obsidian - http://www.screwattack.com/news/inxile-may-be-collaborating-obsidian-wasteland-2\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-033012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6477303c-c3bc-443e-ae83-a112b3562a6e/sm/sega_2.jpg","duration":150,"publication_date":"2012-03-30T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-10","changefreq":"weekly","video":[{"title":"E:E12 - Gag Reel #10: Link is a Fairy","description":"E:E12 - Gag Reel #10: Link is a Fairy","player_loc":"https://roosterteeth.com/embed/death-battle-extras-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b75df6a-b1f9-4466-b8c3-e0ee43c15517/sm/video_thumbnail_11743624_0.jpg","duration":379,"publication_date":"2012-03-30T08:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-9","changefreq":"weekly","video":[{"title":"E:E11 - Gag Reel #9: Superman's Bunny Slippers","description":"E:E11 - Gag Reel #9: Superman's Bunny Slippers","player_loc":"https://roosterteeth.com/embed/death-battle-extras-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0763d1ac-950e-4b58-9367-6fe7532b189d/sm/video_thumbnail_7406866.jpg","duration":316,"publication_date":"2012-03-30T07:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-8","changefreq":"weekly","video":[{"title":"E:E10 - Gag Reel #8: The Boom-Tiger","description":"E:E10 - Gag Reel #8: The Boom-Tiger","player_loc":"https://roosterteeth.com/embed/death-battle-extras-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9ed8388-535f-400c-9b4f-71f30de0ec25/sm/video_thumbnail_2840166.jpg","duration":254,"publication_date":"2012-03-30T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-7","changefreq":"weekly","video":[{"title":"E:E9 - Gag Reel #7: Attack of the Killer Throat","description":"E:E9 - Gag Reel #7: Attack of the Killer Throat","player_loc":"https://roosterteeth.com/embed/death-battle-extras-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29aa9cf2-1af5-4846-8ca3-85ecaf1ed1fe/sm/video_thumbnail_2473136.jpg","duration":198,"publication_date":"2012-03-30T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-6","changefreq":"weekly","video":[{"title":"E:E8 - Gag Reel #6: Wiz's Worst Nightmare","description":"E:E8 - Gag Reel #6: Wiz's Worst Nightmare","player_loc":"https://roosterteeth.com/embed/death-battle-extras-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/effd9cd0-5668-4900-b54e-3a8dcce62a1f/sm/video_thumbnail_2245466.jpg","duration":164,"publication_date":"2012-03-30T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-5","changefreq":"weekly","video":[{"title":"E:E7 - Gag Reel #5: What's a Womp Rat?","description":"E:E7 - Gag Reel #5: What's a Womp Rat?","player_loc":"https://roosterteeth.com/embed/death-battle-extras-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feddd8e9-5f2f-4984-b1db-9c5decf5fcb8/sm/video_thumbnail_154469.jpg","duration":158,"publication_date":"2012-03-30T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-4","changefreq":"weekly","video":[{"title":"E:E6 - Gag Reel #4: Double Ds","description":"E:E6 - Gag Reel #4: Double Ds","player_loc":"https://roosterteeth.com/embed/death-battle-extras-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57754bd1-3413-4e22-8562-cae97c274dfd/sm/video_thumbnail_145995.jpg","duration":123,"publication_date":"2012-03-30T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-3","changefreq":"weekly","video":[{"title":"E:E5 - Gag Reel #3: OMG It's a Giant Pterodactyl!","description":"E:E5 - Gag Reel #3: OMG It's a Giant Pterodactyl!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890dc435-abfb-4108-94dd-e69e11d7dc4b/sm/video_thumbnail_104459.jpg","duration":223,"publication_date":"2012-03-30T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-2","changefreq":"weekly","video":[{"title":"E:E4 - Gag Reel #2: The Life of Boomstick","description":"E:E4 - Gag Reel #2: The Life of Boomstick","player_loc":"https://roosterteeth.com/embed/death-battle-extras-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f878f01-3e53-4f7a-b090-ccd425471250/sm/video_thumbnail_102634.jpg","duration":199,"publication_date":"2012-03-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras","changefreq":"weekly","video":[{"title":"E:E3 - Gag Reel #1: Flowers Make You Fat","description":"E:E3 - Gag Reel #1: Flowers Make You Fat","player_loc":"https://roosterteeth.com/embed/death-battle-extras","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/955e85c0-2068-4342-ba2a-401ee16ad660/sm/video_thumbnail_79268.jpg","duration":219,"publication_date":"2012-03-29T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/zelda-vs-peach-death-battle","changefreq":"weekly","video":[{"title":"S1:E20 - Zelda VS Peach","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/zelda-vs-peach-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fbec444-21f4-44b6-8078-e7924248f9ba/sm/video_thumbnail_145173.jpg","duration":474,"publication_date":"2012-03-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tester-3-episode-8-commentary","changefreq":"weekly","video":[{"title":"S1:E271 - Tester 3 Episode 8 Commentary","description":"How exciting can a clip show recap of seven episodes be?\r\nAnswer: not at all. This episode sucks. ","player_loc":"https://roosterteeth.com/embed/tester-3-episode-8-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b16ba01a-bbe3-42fe-9870-d54074301075/sm/the-tester-season-3.jpeg","duration":1642,"publication_date":"2012-03-29T20:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032912","changefreq":"weekly","video":[{"title":"S1:E149 - Hard News 03/29/12","description":"Today on Hard News Yoshinori Ono needs a break, Asura's Wrath has lots of DLC, and Assassin's Creed 3 on PC isn't supposed to be played without a controller.\r\nYoshinori Ono steps down - http://www.screwattack.com/news/yoshinori-ono-temporarily-stepping-down\r\nAsura's Wrath DLC - http://www.screwattack.com/news/first-batch-asuras-wrath-dlc-hits-consoles\r\nAssassins Creed 3 details - http://www.screwattack.com/news/assassins-creed-3-wii-u-details-red-dead-redemption-inspiration-and-why-no-female-leads\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f39e9f7f-4fa9-4b66-9c32-5f42d85fcc49/sm/Asura-4.jpg","duration":140,"publication_date":"2012-03-29T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032812","changefreq":"weekly","video":[{"title":"S1:E148 - Hard News 03/28/12","description":"Today on Hard News the Black Ops 2 multiplayer might have leaked, PS4 could be very anti-used games, and Atlus is making their PSP games supercheap.\r\nBlack Ops 2 Leak - http://www.screwattack.com/news/rumor-black-ops-2-multiplayer-details-leak\r\nPS4 hates used games - http://www.screwattack.com/news/rumor-ps4-codenamed-orbis-and-it-also-hates-used-games\r\nAtlus cuts PSP prices - http://www.screwattack.com/news/atlus-cutting-prices-across-all-psp-games-psn\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/492c6f15-e74b-4b38-ae72-a2a3a3f60713/sm/persona3_02.jpg","duration":153,"publication_date":"2012-03-28T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-032812","changefreq":"weekly","video":[{"title":"S1:E270 - SideScrollers Extended 03/28/12","description":"More SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-032812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":324,"publication_date":"2012-03-27T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-high-five-to-the-face","changefreq":"weekly","video":[{"title":"S1:E57 - SideScrollers - \"High Five to the Face\"","description":"Bryan is at the desk today! ...so then where is Craig?\r\nAUDIO VERSION - http://bit.ly/GUFwlJ\r\nGot a question to ask? Post it in the forums!!\r\nWatch the Extended Sidescrollers here! - http://bit.ly/HeZzrH\r\nWatch the videos mentioned by clicking the link below!\r\nCOTW: Michael Bay's Legend of Zelda Trailer - http://bit.ly/GWhJSR\r\nTester 3 Episode 7 Commentary - http://bit.ly/GYuA3P\r\nScrewAttack vs The Internet #2: DORKLY - http://bit.ly/GVQQKY\r\nWorst EVER Sexy Chick - http://bit.ly/GUMEwG\r\nVideo Review - Street Fighter X Tekken - http://bit.ly/GLGayX\r\nReview - Journey - http://bit.ly/HiVOSt\r\nReview - I Am Alive - http://bit.ly/GBNBM5\r\nFollow us on Twitter!\r\nBryan - http://twitter.com/MrBryanBaker\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared\r\ng1 Mr. West's 52 Week Birthday Challenge - http://bit.ly/GEAMNt ","player_loc":"https://roosterteeth.com/embed/sidescrollers-high-five-to-the-face","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2288,"publication_date":"2012-03-27T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032712","changefreq":"weekly","video":[{"title":"S1:E147 - Hard News 03/27/12","description":"Today on Hard News the next assassins will be special, Silent Hill Book of Memories is shelved, and it was only a matter of time before the Vita was hacked.\r\n \r\nAssassin's Creed 3 Special Editions - http://www.screwattack.com/news/asscreed-iii-getting-few-collectors%E2%80%99-editions-europe\r\nSilent Hill: Book of Memories - http://www.screwattack.com/news/silent-hill-book-memories-has-been-delayedagain\r\nPSP Games used to hack Vita - http://www.screwattack.com/news/sony-pulling-psp-games-prevent-vita-being-hacked\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c65bcf3a-8e63-46cc-a984-c3489fe796db/sm/AC3-freedom-edition.jpg","duration":134,"publication_date":"2012-03-27T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sa-at-sxsw-talking-ps3-and-vita-with-rey-gutierrez","changefreq":"weekly","video":[{"title":"S1:E269 - SA at SXSW - Talking PS3 and Vita with Rey Gutierrez","description":"We ran down to Austin during SXSW to see what Sony has coming up, while we were there we got to talk with former Dtoider and now Sony man Rey Gutierrez!","player_loc":"https://roosterteeth.com/embed/sa-at-sxsw-talking-ps3-and-vita-with-rey-gutierrez","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":149,"publication_date":"2012-03-27T13:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032612","changefreq":"weekly","video":[{"title":"S1:E146 - Hard News 03/26/12","description":"Today on Hard News Grand Theft Auto V leaks, Prey 2 might have been canceled, and is Eternal Darkness could drive you crazy again.\r\nGTA V Leaks - http://www.screwattack.com/news/rumor-giant-gta-v-leak-former-rockstar-employee\r\nPrey 2 Canceled? - http://www.screwattack.com/news/rumor-prey-2-cancelled\r\nEternal Darkness returns? - http://www.screwattack.com/news/denis-dyack-excited-about-developing-%E2%80%9Cmost-requested%E2%80%9D-ip\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc8fcc43-fa3e-4d72-9d29-4bf72b5f330a/sm/ETERNAL-DARKNESS-2-600x306.jpg","duration":144,"publication_date":"2012-03-26T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-michael-bays-zelda","changefreq":"weekly","video":[{"title":"S1:E158 - Clip of the Week - Michael Bay's Zelda","description":"Everyone's mad about the movie they know Michael Bay is making, but what about the one they don't?","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-michael-bays-zelda","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38617a98-2428-4a12-b511-f7fd305604f5/sm/032312Clip.jpg","duration":175,"publication_date":"2012-03-23T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032312","changefreq":"weekly","video":[{"title":"S1:E145 - Hard News 03/23/12","description":"Today on Hard News GameStop will no longer accept GameCube games, Slant Six knows that Operation Raccoon City sucks, and a new Wing Commander game.\r\nGamestop no longer accepting Gamecube stuff - http://www.screwattack.com/news/gamestop-no-longer-accepting-gamecube-stuff\r\nSlant Six knows of Operation Raccoon City's problems - http://www.screwattack.com/news/slant-six-knows-operation-raccoon-citys-problems\r\nWing Commander: The Darkest Dawn is released! - http://www.screwattack.com/news/wing-commander-darkest-dawn-released\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/753081bf-6870-48e6-b2be-1a10ea61a548/sm/Wing_Commander_Saga_01_0.jpg","duration":123,"publication_date":"2012-03-23T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-7","changefreq":"weekly","video":[{"title":"S1:E268 - The Tester 3 Commentary Ep. 7","description":"ITS ALMOST OVER! We're down to 4 competitors! Who will be safe and who will \"strike out\" in this episode full of Baseball puns!","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdb204ef-a9c0-4d15-9432-c2ddc7d2b60e/sm/TheTester.png","duration":1890,"publication_date":"2012-03-23T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-of-\"this-weird-vhs-tape-we-found\"","changefreq":"weekly","video":[{"title":"S1:E267 - Behind the Scenes of \"This Weird VHS Tape We Found\"","description":"How did the idea of the VHS tape come together? We have no idea. See the original video here - http://www.screwattack.com/shows/originals/random-awesomeness/weird-vhs-tape-we-found\r\n \r\nSee more James Rolfe here - http://www.screwattack.com/shows/partners/angry-video-game-nerd and here http://www.screwattack.com/shows/partners/cinemassacre-mailbag\r\nSee more Keith Apicary here - http://www.screwattack.com/shows/partners/talking-classics\r\nSee more egoraptor here - http://www.screwattack.com/egoraptors-sequelitis-classic-mega-man-vs-mega-man-x","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-of-\"this-weird-vhs-tape-we-found\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e982cfc-e479-4674-b7d4-61d7ab3d5ad1/sm/032312BehindtheScenesThumb.jpg","duration":111,"publication_date":"2012-03-22T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-tekken-3","changefreq":"weekly","video":[{"title":"S1:E358 - VGV - Tekken 3","description":"This classic fighter hits the mark with a deadly dinosaur wielding a weapon of ass destruction.","player_loc":"https://roosterteeth.com/embed/vgv-tekken-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e48379e1-346c-4e2e-940f-95d73203099d/sm/03071Tekken.jpg","duration":104,"publication_date":"2012-03-22T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032212","changefreq":"weekly","video":[{"title":"S1:E144 - Hard News 03/22/12","description":"Today on Hard News Microsoft has next, take your Max Payne 3 crew to GTA V, and Sackboy is going karting.\r\nMicrosoft's Arcade Next - http://www.screwattack.com/news/microsoft-reveals-%E2%80%98arcade-next%E2%80%99-promotion\r\nMax Payne 3 crews - www.screwattack.com/news/max-payne-3-multiplayer-crews-will-work-gta-v\r\nLittleBigPlanet Karting - http://www.screwattack.com/news/littlebigplanet-karting-announced\r\n\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f30d0f77-37d0-44d4-bc8a-0d125cd49889/sm/2b08f72f7af1c44805b5b2f4e05058f320100427191057_20790.nphd_.jpg","duration":135,"publication_date":"2012-03-22T13:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-the-internet-challenge-2","changefreq":"weekly","video":[{"title":"S1:E266 - ScrewAttack vs the Internet - Challenge #2","description":"We continue our quest of internet domination by making a U-turn from L.A. and heading WAY past Dallas. Who is our next competitor and will they accept our challenge?","player_loc":"https://roosterteeth.com/embed/screwattack-vs-the-internet-challenge-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dec8186-5b25-4bb3-8d87-bb151c460351/sm/032212vstheInternetThumb.jpg","duration":74,"publication_date":"2012-03-21T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-golden-axe-the-duel","changefreq":"weekly","video":[{"title":"S1:E357 - VGV - Golden Axe: The Duel","description":"The hack 'n' slashers of Golden Axe go side-to-side in this fighting game version of SEGA's beat 'em up!","player_loc":"https://roosterteeth.com/embed/vgv-golden-axe-the-duel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a440b1c1-60f1-41b1-b1c8-7903cd3a9bed/sm/03071GoldenAxe.jpg","duration":117,"publication_date":"2012-03-21T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-craig-on-poison-raw-uncut","changefreq":"weekly","video":[{"title":"S1:E265 - [Advantage] Craig on Poison RAW & UNCUT","description":"Craig had a lot more to say about the video game character who made him question his sexuality in the latest Worst EVER episode. He even wrote a song!","player_loc":"https://roosterteeth.com/embed/advantage-craig-on-poison-raw-uncut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f9ff4b6-b275-41a3-8c64-fb7e362752e3/sm/THUMB_craigsexychick.jpg","duration":530,"publication_date":"2012-03-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032112","changefreq":"weekly","video":[{"title":"S1:E143 - Hard News 03/21/12","description":"Today on Hard News Epic Mickey gets a sequel, GAME is entering administration, and will Mass Effect 3 DLC cover for the original ending?\r\nEpic Mickey 2 - http://www.screwattack.com/news/epic-mickey-sequel-something-sing-about\r\nGAME files for administration - http://www.screwattack.com/news/gamegamestation-files-administration\r\nMass Effect 3 DLC - http://www.screwattack.com/news/bioware-announces-they-are-working-fixing-ending-mass-effect-3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b091e1a2-4e57-4007-8725-b22b4447a171/sm/large_11.jpg","duration":137,"publication_date":"2012-03-21T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"fire-baby\"","changefreq":"weekly","video":[{"title":"S1:E56 - SideScrollers - \"Fire Baby\"","description":"The most entertaining 30-45 minutes of your video game week! Older graphics, a fire baby, and we definitely fill our quotia this week!\r\nAUDIO VERSION - http://bit.ly/GBkl3A\r\nLike the Middle Segment music? It's by STARSHIP AMAZING! Support their work by purchasing their music! - http://tinyurl.com/4gqum64\r\nGot a question to ask? Post it in the forums!!\r\nWatch the Extended Sidescrollers here! - http://bit.ly/GBuQ67\r\nWatch the videos mentioned by clicking the link below!\r\nCOTW: Kid Icarus Fan Film 2: The Reckoning - http://bit.ly/GF9pR2\r\nWeird VHS Tape - http://bit.ly/GBr0Zg\r\nVideo Review - Mass Effect 3 - http://bit.ly/GBLozg\r\nReview - I Am Alive - http://bit.ly/GBNBM5\r\nReview - Touch My Katamari - http://bit.ly/GEXJCA\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack \r\nChad - http://twitter.com/screwattackchad \r\nJared - http://twitter.com/projared\r\ng1 Mr. West's 56 Week Birthday Challenge - http://bit.ly/GEAMNt","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"fire-baby\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/491b6a4f-719a-4d3a-971b-bae74e7298dd/sm/firebaby.jpg","duration":2497,"publication_date":"2012-03-20T21:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-super-mario-bros-fun-facts","changefreq":"weekly","video":[{"title":"S1:E356 - VGV - Super Mario Bros Fun Facts","description":"Want some useless knowledge? Here's a bunch about the original Super Mario Bros.","player_loc":"https://roosterteeth.com/embed/vgv-super-mario-bros-fun-facts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b291d357-9786-4670-aa6d-71ab00a5964b/sm/03071SMB.jpg","duration":111,"publication_date":"2012-03-20T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-032112","changefreq":"weekly","video":[{"title":"S1:E264 - SideScrollers Extended 03/21/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-032112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":648,"publication_date":"2012-03-20T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-032012","changefreq":"weekly","video":[{"title":"S1:E142 - Hard News 03/20/12","description":"Today on Hard News Kain's legacy may continue, Telltale is doing The Walking Dead, and did Dragon Age 2 DLC die so Dragon Age 3 could live?\r\nSoul Reaver reboot - http://www.screwattack.com/news/rumour-crystal-dynamics-%E2%80%9Csoul-reaver%E2%80%9D-reboot\r\nWalking Dead announcement - http://www.screwattack.com/news/telltale-has-revealed-official-walking-dead-trailer\r\nDragon Age 2 DLC canceled - http://www.screwattack.com/news/dragon-age-2-expansion-was-cancelled-%E2%80%9Cother-da-opportunities-came-up%E2%80%9D\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-032012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8b9901d-c032-463c-a915-9ef30021f165/sm/REAVERPSN_1.jpg","duration":126,"publication_date":"2012-03-20T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-sexy-chick","changefreq":"weekly","video":[{"title":"S1:E5 - The Worst EVER: Sexy Chick","description":"There's a lot of sexy women in the world of gaming and some that just look like they've been hit with the ugly stick. What are the worst sexy chicks of all-time?","player_loc":"https://roosterteeth.com/embed/the-worst-ever-sexy-chick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56af6d4d-9213-4d70-b0a5-cb476e88dfad/sm/THUMB_WorstSexyChick.jpg","duration":223,"publication_date":"2012-03-19T20:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031912","changefreq":"weekly","video":[{"title":"S1:E141 - Hard News 03/19/12","description":"Today on Hard News Capcom is going after hackers, Beamdog might make another Baldur's Gate, and an angry ME3 fan takes his case to Washington.\r\nCapcom attacks hackers - http://www.screwattack.com/news/capcom-working-find-ballsy-hackers-xbox-live\r\nBaldur's Gate 3 desire - http://www.screwattack.com/news/beamdog-wants-make-baldur%E2%80%99s-gate-3\r\nMass Effect 3 FTC Case - http://www.screwattack.com/news/unsatisfied-fan-files-ftc-complaint-against-mass-effect-3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-031912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afd64bf5-bd8a-45a0-abe8-f7020caeb597/sm/SFxT-Screen-No.-5.jpg","duration":161,"publication_date":"2012-03-19T16:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-kid-icarus-2-the-reckoning-fan-film-behind-the-scenes","changefreq":"weekly","video":[{"title":"S1:E263 - [Advantage] Kid Icarus 2: The Reckoning Fan Film Behind the Scenes","description":"We had to try to not try to make the ultimate Kid Icarus Fan Film.","player_loc":"https://roosterteeth.com/embed/advantage-kid-icarus-2-the-reckoning-fan-film-behind-the-scenes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":426,"publication_date":"2012-03-19T12:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-weird-vhs-tape-we-found","changefreq":"weekly","video":[{"title":"S1:E262 - This Weird VHS Tape We Found","description":"We were watching old VHS tapes from the 90's when we stumbled upon this really strange commercial break.\r\nSee behind the scenes here - http://www.screwattack.com/shows/originals/random-awesomeness/behind-scenes-weird-vhs-tape-we-found\r\nSee more James Rolfe here - http://www.screwattack.com/shows/partners/angry-video-game-nerd and here http://www.screwattack.com/shows/partners/cinemassacre-mailbag\r\nSee more Keith Apicary here - http://www.screwattack.com/shows/partners/talking-classics\r\nSee more egoraptor here - http://www.screwattack.com/egoraptors-sequelitis-classic-mega-man-vs-mega-man-x\r\n ","player_loc":"https://roosterteeth.com/embed/this-weird-vhs-tape-we-found","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c67b0ba-7cba-4c13-bc77-7b3499c81a9a/sm/031812CrossOverThumb.jpg","duration":106,"publication_date":"2012-03-18T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-blades-of-steel","changefreq":"weekly","video":[{"title":"S1:E355 - VGV - Blades of Steel","description":"Holy CRAP! This game TALKS TO YOU?!!!?","player_loc":"https://roosterteeth.com/embed/vgv-blades-of-steel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38620976-ec31-43ff-b331-38cb6326fbd9/sm/03071BladesofSteel.jpg","duration":108,"publication_date":"2012-03-18T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-willow-arcade","changefreq":"weekly","video":[{"title":"S1:E353 - VGV - Willow Arcade","description":"Venture into the long-lost arcade scene for a not-so-pint-sized adventure with more Val Kilmer than you can handle.","player_loc":"https://roosterteeth.com/embed/vgv-willow-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23181e0d-fe1f-4e6f-a670-3f947c6448a3/sm/03071Willow.jpg","duration":109,"publication_date":"2012-03-17T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-radical-rex","changefreq":"weekly","video":[{"title":"S1:E354 - VGV - Radical Rex","description":"Meet the skateboard-shredding Dinosaur who can burn your face off and ride a pogo stick!","player_loc":"https://roosterteeth.com/embed/vgv-radical-rex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bb61c62-e6cf-4fe4-8fcc-e87e93cd0738/sm/03071RR.jpg","duration":92,"publication_date":"2012-03-17T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-kid-icarus-fan-film-2-the-reckoning","changefreq":"weekly","video":[{"title":"S1:E157 - Clip of the Week - Kid Icarus Fan Film 2: The Reckoning","description":"With the new Kid Icarus coming out, we figured it was time for a fan film reckoning. Now with special effects!\r\nHaven't seen the original Kid Icarus fan film? Catch up with this ScrewAttack Classic: www.screwattack.com/shows/originals/clip-of-the-week/clip-week-kid-icarus-fan-film","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-kid-icarus-fan-film-2-the-reckoning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":240,"publication_date":"2012-03-16T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-mischief-makers","changefreq":"weekly","video":[{"title":"S1:E352 - VGV - Mischief Makers","description":"Grab hold of this N64 side-scrolling classic and shake the crap out of it.","player_loc":"https://roosterteeth.com/embed/vgv-mischief-makers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/114609ac-0423-453c-9f0c-b969b8d6a6e7/sm/03071MischiefMakers.jpg","duration":98,"publication_date":"2012-03-16T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031612","changefreq":"weekly","video":[{"title":"S1:E140 - Hard News 03/16/12","description":"Today on Hard News there might be an Elder Scrolls MMO, Shenmue HD can be a thing, and the new Neo Geo is pricey as hell.\r\nElder Scrolls MMO - http://www.screwattack.com/news/rumor-bethesda-putting-mmo-elder-scrolls-may\r\nShenmue HD - http://www.screwattack.com/news/rumor-shenmue-hd-has-been-complete-%E2%80%9Cover-year%E2%80%9D\r\nNeo Geo Handheld  - http://www.screwattack.com/news/new-neo-geo-handheld-official\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-031612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72589f9e-c73b-4c76-83e6-4528a8a59e62/sm/Shenmue-HD.jpg","duration":137,"publication_date":"2012-03-16T16:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-6","changefreq":"weekly","video":[{"title":"S1:E261 - The Tester 3 Commentary Ep. 6","description":"Kwajamonster is out, and we're down to five remaining contestants. Tensions run high, the limits are broken, the willpower of blah blah blah this show is dumb.","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/828dd859-8cee-4e45-a503-9238895818dd/sm/tester.png","duration":1790,"publication_date":"2012-03-16T09:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-xevious","changefreq":"weekly","video":[{"title":"S1:E351 - VGV - Xevious","description":"One of the most classic sh'mups of all time is also one of the hardest.","player_loc":"https://roosterteeth.com/embed/vgv-xevious","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f2a78e3-e7cc-40b1-a4b6-44ede52e14c9/sm/03071Xevious.jpg","duration":83,"publication_date":"2012-03-15T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031512","changefreq":"weekly","video":[{"title":"S1:E139 - Hard News 03/15/12","description":"Today on Hard News Diablo 3 actually has a release date, Baldur's Gate is enhanced, and a 24 year old RPG gets a kickstart.\r\nDiablo 3 Release - http://www.screwattack.com/news/diablo-iii-has-official-release-date\r\nBaldur's Gate: Enhanced Edition - http://www.joystiq.com/2012/03/15/baldurs-gate-enhanced-edition-arrives-this-summer/\r\nWasteland 2 - http://www.screwattack.com/news/wasteland-2-was-sequel-i-never-knew-you-wanted\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-031512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/92968c32-d6e5-4355-9861-0de32075bf34.jpg/sm/diablo3.jpg","duration":121,"publication_date":"2012-03-15T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-aero-fighters-assault","changefreq":"weekly","video":[{"title":"S1:E350 - VGV - Aero Fighters Assault","description":"Who needs power-ups? Suit up for a schmup that wasn't afraid to be more realistic.","player_loc":"https://roosterteeth.com/embed/vgv-aero-fighters-assault","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1c7dfa1-9572-46b8-b9bf-2ab6b8bb7165/sm/03071Aerofighters.jpg","duration":121,"publication_date":"2012-03-14T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-031412","changefreq":"weekly","video":[{"title":"S1:E260 - SideScrollers Extended 03/14/12","description":"10 more minutes of SideScrollers for Advantage members!\r\nBEFORE WATCHING Fill out your March Madness brackets with us! Click here - http://www.screwattack.com/news/play-mega-march-madness-insanity-screwattack-crew","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-031412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":1191,"publication_date":"2012-03-13T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-snot-bubble","changefreq":"weekly","video":[{"title":"S1:E55 - SideScrollers - \"Snot Bubble\"","description":"This week the gang discusses disappointing endings, face punches, and embarrassing costumes.\r\nAUDIO VERSION - http://bit.ly/w6WDoP\r\nLike the Middle Segment music? It's by STARSHIP AMAZING! Support their work by purchasing their music! - http://tinyurl.com/4gqum64\r\nGot a question to ask? Post it in the forums!!\r\nWatch the Extended Sidescrollers here! - http://bit.ly/z36G54\r\nWatch the videos mentioned by clicking the link below!\r\nClip of the Week: Mario Party - http://bit.ly/ygWB5Y\r\nTester 3 Episode 5 Commentary - http://bit.ly/yT7iGs\r\nCinemassacre Mailbag - http://bit.ly/xgZrxI\r\nThe GameOverthinker: \"I, Zombie\" - http://bit.ly/xsFWGy\r\nMario Party 2 After Dark - http://bit.ly/ywy6HY\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack \r\nChad - http://twitter.com/screwattackchad \r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-snot-bubble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2582,"publication_date":"2012-03-13T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-tmnt-arcade","changefreq":"weekly","video":[{"title":"S1:E349 - VGV - TMNT Arcade","description":"Craig sinks his teeth into one of the most awesome quarter-suckers of all time!","player_loc":"https://roosterteeth.com/embed/vgv-tmnt-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5150457c-0113-4ce2-ac90-f1899fdf87f2/sm/03071TMNT.jpg","duration":132,"publication_date":"2012-03-13T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031312","changefreq":"weekly","video":[{"title":"S1:E137 - Hard News 03/13/12","description":"Today on Hard News Mass Effect 3 glitches affect players wallets, Microsoft already has Molyneux successor, and there's a lot of Resident Evil coming.\r\nMass Effect 3 problem - http://www.screwattack.com/news/some-me3-players-are-missing-multiplayer-content-they%E2%80%99ve-paid\r\nPhil Harrison to Microsoft - http://www.screwattack.com/news/phil-harrison-has-now-joined-microsoft-studios-europe\r\nPlent of Resident Evil - http://www.screwattack.com/news/capcom-bringing-resident-evil-chronicles-hd-collection\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-031312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2f1c9c2-b786-48c9-a10d-1ffe52b676a8/sm/5nsdj.jpg","duration":129,"publication_date":"2012-03-13T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-mega-man-the-power-battle","changefreq":"weekly","video":[{"title":"S1:E348 - VGV - Mega Man: The Power Battle","description":"Get straight to the boss fights in this gem of a game.","player_loc":"https://roosterteeth.com/embed/vgv-mega-man-the-power-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58db4691-f15d-40dd-a00b-d0175edf541d/sm/03071MM.jpg","duration":101,"publication_date":"2012-03-12T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-031212","changefreq":"weekly","video":[{"title":"S1:E136 - Hard News 03/12/12","description":"Is a new Donkey Kong Country on the way, Notch avoids the law and is there ANOTHER Marvel vs Capcom 3 on the way?","player_loc":"https://roosterteeth.com/embed/hard-news-031212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e50dee98-2561-467d-83f0-a7923c20b261/sm/03121HardNews.jpg","duration":126,"publication_date":"2012-03-12T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-bubsy","changefreq":"weekly","video":[{"title":"S1:E347 - VGV - Bubsy","description":"Move over, Mario. It's time to hang with the cool cats.","player_loc":"https://roosterteeth.com/embed/vgv-bubsy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13a8a05d-7cf1-4548-858e-57540627d6a2/sm/03071Bubsy.jpg","duration":132,"publication_date":"2012-03-11T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-super-tennis","changefreq":"weekly","video":[{"title":"S1:E346 - VGV - Super Tennis","description":"Craig played sports games long before they were cool.","player_loc":"https://roosterteeth.com/embed/vgv-super-tennis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b153bdaa-16e2-423a-b092-dbf0794f0c09/sm/03071SuperTennis.jpg","duration":126,"publication_date":"2012-03-10T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-honest-mario-party","changefreq":"weekly","video":[{"title":"S1:E156 - Clip of the Week - Honest Mario Party","description":"People who have played it know this, but for everyone else Mario Party is more serious than Nintendo ever let on.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-honest-mario-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":73,"publication_date":"2012-03-10T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-krustys-super-fun-house","changefreq":"weekly","video":[{"title":"S1:E345 - VGV - Krusty's Super Fun House","description":"Super Fun House? Talk about a game that doesn't live up to its name.","player_loc":"https://roosterteeth.com/embed/vgv-krustys-super-fun-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35e5c5ba-0dcc-4109-875e-cb3f2bbca769/sm/03071KrustyThumbn.jpg","duration":90,"publication_date":"2012-03-09T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030912","changefreq":"weekly","video":[{"title":"S1:E135 - Hard News 03/09/12","description":"Today on Hard News the next Xbox might not have discs, the Vita games Sony confirmed, and GAME is going under.\r\nNextBox without discs - http://www.screwattack.com/news/rumor-could-nextbox-really-be-disc-free\r\nVita Game Heaven recap - http://www.screwattack.com/news/recap-playstation-vita-game-heaven-event\r\nGAME purging stock - http://www.screwattack.com/news/fishmans-thoughts-game-breaking-news\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-030912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65cfbb89-b38e-4c43-9a80-48080f5789f8/sm/2iqh3xu.jpg","duration":131,"publication_date":"2012-03-09T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-multiplayer-pc-games","changefreq":"weekly","video":[{"title":"S1:E61 - Top 10 Multiplayer PC Games","description":"After a year of speculation and mass internet hysteria, the be-all end-all list of PC Multiplayer essentials is finally here!","player_loc":"https://roosterteeth.com/embed/top-10-multiplayer-pc-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a3de7f9-53fa-45aa-9c22-9a133d51c4e7/sm/03071Top10PC.jpg","duration":539,"publication_date":"2012-03-09T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-5","changefreq":"weekly","video":[{"title":"S1:E259 - The Tester 3 Commentary Ep. 5","description":"After the best episode of The Tester in history what will follow?","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af75fce3-9aa2-47a9-a737-8f890457670c/sm/03071LIve.jpg","duration":1820,"publication_date":"2012-03-09T19:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-jareds-worst-ever-street-fighter","changefreq":"weekly","video":[{"title":"S1:E258 - [Advantage] Jared's Worst EVER Street Fighter","description":"Exclusive to Advantage Members, Jared's extra interview from the latest Worst Ever episode! Is she the most forgettable chick in fighting game history?","player_loc":"https://roosterteeth.com/embed/advantage-jareds-worst-ever-street-fighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08100323-928c-456a-a259-7b6809f66197/sm/THUMB_JaredStreetFighter.jpg","duration":64,"publication_date":"2012-03-09T10:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030812","changefreq":"weekly","video":[{"title":"S1:E134 - Hard News 03/08/12","description":"Today on Hard News there might be multiplayer in the Golden Abyss, Sega isn't allowed to make Marvel games anymore, and Sony is giving Dust 514 a lot of leeway.\r\nUncharted Golden Abyss Multiplayer - http://www.screwattack.com/news/rumor-uncharted-golden-abyss-get-card-based-multiplayer\r\nNo more Marvel Sega games - http://www.screwattack.com/news/disney-tells-sega-they-can%E2%80%99t-make-marvel-games-anymore\r\nDust 514's SEN freedoms - http://www.screwattack.com/news/sony-breaking-down-barriers-psn-dust-514\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-030812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd3e91a7-89fb-431e-ada6-fb3d1955b521/sm/1213-uncharted-vita-golden-abyss4.jpg","duration":122,"publication_date":"2012-03-08T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030712","changefreq":"weekly","video":[{"title":"S1:E133 - Hard News 03/07/12","description":"Today on Hard News Vita games announced before Sony says it, Battlefield 3 has plenty of DLC coming, and Peter Molyneux is leaving Lionhead.\r\nUpcoming Vita Games - http://www.screwattack.com/news/playcom-leaks-fist-full-new-vita-titles\r\nUPDATE: It would seem the only legit title of the bunch is Monster Hunter.  GTA, Tales of Innocence, and Final Fantasy were the result of internet chicanery.\r\nBattlefield 3 DLC - http://www.screwattack.com/news/battlefield-3-getting-number-expansions\r\nPeter Molyneux leaves Lionhead - http://www.screwattack.com/news/peter-molyneux-has-left-lionhead-join-start\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-030712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b551c7b-e4a8-43eb-b375-f60996313e36/sm/KeyArt_CQ_16_9-640x360.jpg","duration":149,"publication_date":"2012-03-07T15:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-030712","changefreq":"weekly","video":[{"title":"S1:E257 - SideScrollers Extended 03/07/12","description":"More SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-030712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":355,"publication_date":"2012-03-06T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-dick-hood","changefreq":"weekly","video":[{"title":"S1:E54 - SideScrollers - \"Dick Hood\"","description":"It's the first week of March, which means we discuss the games of the month!\r\nAUDIO VERSION - http://bit.ly/yhOndN\r\nLike the Middle Segment music? It's by STARSHIP AMAZING! Support their work by purchasing their music! - http://tinyurl.com/4gqum64\r\nGot a question to ask? Post it in the forums!!\r\nWatch the Extended Sidescrollers here! - http://bit.ly/wuGnQP\r\nWatch the videos mentioned by clicking the link below!\r\nClip of the Week - Voice Commands - http://bit.ly/w3cJhc\r\nScrewAttack vs Machinima - http://bit.ly/vZNfKm\r\nTester 3 Episode 4 Commentary - http://bit.ly/ychr2F\r\nTurtle Van Interview - http://bit.ly/xvnFrE\r\nVideo Review: Asura's Wrath - http://bit.ly/zc1zBd\r\nVideo Review: Syndicate - http://bit.ly/yUqtju\r\nReview - Tales of the Abyss 3D - http://bit.ly/z5xz7m\r\nReview - Tekken Prime 3D Edition - http://bit.ly/zrw2Ue\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-dick-hood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2594,"publication_date":"2012-03-06T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030612","changefreq":"weekly","video":[{"title":"S1:E132 - Hard News 03/06/12","description":"Today on Hard News Mass Effect 3 has a bumpy launch, Adidas is suing THQ, and Assassin's Creed 3 will have many assassins.\r\nMass Effect 3 launch issues - http://www.screwattack.com/news/mass-effect-3-launch-experience-hardly-stellar\r\nTHQ sued by Adidas - http://www.screwattack.com/news/adidas-now-suing-thq\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-030612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1263f49-cbd7-477c-a808-22b708ae0f3f/sm/adidas-micoach-20110826060608115.jpg","duration":139,"publication_date":"2012-03-06T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worst-ever-street-fighter","changefreq":"weekly","video":[{"title":"S1:E4 - The Worst EVER: Street Fighter","description":"Street Fighter has a LOT of characters. Some good... some horrible. These are the absolute worst Street Fighters no sane human being should ever take the pain to play. What is your worst?","player_loc":"https://roosterteeth.com/embed/the-worst-ever-street-fighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/162e4c8e-3229-4490-819f-0efc5a1b8060/sm/StreetFighter_THUMB.jpg","duration":201,"publication_date":"2012-03-05T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-machinima-bieber-achieved","changefreq":"weekly","video":[{"title":"S1:E256 - ScrewAttack vs Machinima - Bieber Achieved","description":"At the beginning of the night a goal was set to get the Justin Bieber doll. Mission Accomplished.","player_loc":"https://roosterteeth.com/embed/screwattack-vs-machinima-bieber-achieved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":127,"publication_date":"2012-03-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-machinima-game-3-skeeball","changefreq":"weekly","video":[{"title":"S1:E255 - ScrewAttack vs Machinima Game 3 - Skeeball","description":"Machinima pulled level by soundly beating ScrewAttack in Super Bomberman 2, which means it all comes down to Skeeball.\r\nMissed the action in NBA Jam OFE? Check it out!\r\nhttp://www.screwattack.com/shows/originals/random-awesomeness/screwattack-vs-machinima-game-1-nba-jam-ofe\r\nMissed the action in Super Bomberman 2? Here it is!\r\nwww.screwattack.com/shows/originals/random-awesomeness/screwattack-vs-machinima-game-2-super-bomberman-2","player_loc":"https://roosterteeth.com/embed/screwattack-vs-machinima-game-3-skeeball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cc4e006-3e54-4b55-a2d3-d61e6c7fddb5/sm/skeeballthumb.jpg","duration":226,"publication_date":"2012-03-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-machinima-game-2-super-bomberman-2","changefreq":"weekly","video":[{"title":"S1:E254 - ScrewAttack vs Machinima Game 2 - Super Bomberman 2","description":"Craig and Bryan gave ScrewAttack the early lead by winning NBA Jam On Fire Edition, can Jared and Lauren secure victory in Super Bomberman 2?\r\nHaven't seen all the action from NBA Jam On Fire Edition? Check it out!\r\nhttp://www.screwattack.com/shows/originals/random-awesomeness/screwattack-vs-machinima-game-1-nba-jam-ofe","player_loc":"https://roosterteeth.com/embed/screwattack-vs-machinima-game-2-super-bomberman-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/186c7a98-5ae3-4974-98a5-09d51877ee97/sm/bombermanthumb.jpg","duration":236,"publication_date":"2012-03-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-retro-voice-command","changefreq":"weekly","video":[{"title":"S1:E155 - Clip of the Week - Retro Voice Command","description":"With the incredible technology of voice command in video games coming to reality we have to wonder what it would have been like to have the some technology in retro games.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-retro-voice-command","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea257331-c559-40ae-a47f-d5f6dcbac6e6/sm/030312ClipThumb.jpg","duration":153,"publication_date":"2012-03-02T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030212","changefreq":"weekly","video":[{"title":"S1:E130 - Hard News 03/02/12","description":"Today on Hard News all Silent Hills are delayed, get a free Payday, and is a Ratchet and Clank compilation on the way?\r\nSilent Hill delays - http://www.screwattack.com/news/konami-delays-every-silent-hill-game-due-month\r\nPayday: The Heist free - http://www.screwattack.com/news/payday-heist-free-all-weekend\r\nRatchet and Clank HD Collection - http://www.screwattack.com/news/rumor-ratchet-clank-hd-collection-coming\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-030212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df11eb42-a547-459c-b604-bc806a35983d/sm/Ratchet-and-Clank-Future-A-Crack-In-Time-11.jpg","duration":125,"publication_date":"2012-03-02T16:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-4","changefreq":"weekly","video":[{"title":"S1:E253 - The Tester 3 Commentary Ep. 4","description":"After seeing egoraptor get the axe last episode, what's in store for the remaining hopefuls? Who would of thought it would be bad ass fight scenes...","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95f7d096-591e-479b-9b21-3a214090705b/sm/030112TesterThumb.jpg","duration":1974,"publication_date":"2012-03-01T21:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-machinima-game-1-nba-jam-ofe","changefreq":"weekly","video":[{"title":"S1:E252 - ScrewAttack vs Machinima Game 1 - NBA Jam OFE","description":"In a humble Dave and Busters in Arcadia, CA, two internet giants, ScrewAttack and Machinima met to see who had the better gamers. The first test? NBA Jam On Fire Edition.","player_loc":"https://roosterteeth.com/embed/screwattack-vs-machinima-game-1-nba-jam-ofe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a1b996-a4dd-40ab-9703-466382c37cfd/sm/thumbnail_21.png","duration":349,"publication_date":"2012-03-01T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-030112","changefreq":"weekly","video":[{"title":"S1:E129 - Hard News 03/01/12","description":"Today on Hard News SimCity 5 is in the works, Assassin's Creed 3 is American, and Doom 4 isn't dead!\r\nSimCity 5 - http://www.screwattack.com/news/rumor-simcity-5-concept-art-leaks-details\r\nAssassin's Creed 3 announced - http://www.screwattack.com/news/rumor-star-assassin%E2%80%99s-creed-iii\r\nDoom 4 art leak - http://www.screwattack.com/news/rumor-doom-4-art-leaks-internet\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-030112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3412ea3c-8301-4c35-8059-c8d3da41fd76/sm/cov_228_v2_l_0.jpg","duration":136,"publication_date":"2012-03-01T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/coming-out-of-our-shell-with-the-tmnt-van-guy","changefreq":"weekly","video":[{"title":"S1:E251 - Coming out of our shell with the TMNT van guy","description":"It's time to get inside the head of the dude who owns the coolest car in history.","player_loc":"https://roosterteeth.com/embed/coming-out-of-our-shell-with-the-tmnt-van-guy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42dab7d5-2bc5-41e1-8d01-1878f47d501c/sm/022912Van.jpg","duration":95,"publication_date":"2012-02-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022912","changefreq":"weekly","video":[{"title":"S1:E128 - Hard News 02/29/12","description":"Today on Hard News GAME isn't selling games, Nintendo doesn't want Isaac, and are gigantic miniature hamsters returning?\r\nGame refusing to stock EA games - http://www.screwattack.com/news/game-refuses-stock-ea-titles-and-mario-party-9\r\nNintendo blocks Binding of Isaac on 3DS - http://www.screwattack.com/news/nintendo-blocks-binding-isaac-3ds\r\nNew Baldur's Gate Game - http://www.screwattack.com/news/new-baluders-gate-gameand-sim-city-5\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-022912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4e9cd0b-0658-4bde-959a-cb4a6a6a1925/sm/ss_57c7fb142d6b8f7d38ab62d9f39a055a5b2d4c4c.1920x1080_0.jpg","duration":129,"publication_date":"2012-02-29T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-022912","changefreq":"weekly","video":[{"title":"S1:E250 - SideScrollers Extended 02/29/12","description":" 10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-022912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":547,"publication_date":"2012-02-28T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"extra-ball\"","changefreq":"weekly","video":[{"title":"S1:E53 - SideScrollers - \"Extra Ball\"","description":"We talk about our incredible trip to Los Angeles!\r\nAUDIO VERSION - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio22912.mp3 \r\nLike the Middle Segment music? It's by STARSHIP AMAZING! Support their work by purchasing their music! - http://tinyurl.com/4gqum64\r\nGot a question to ask? Post it in the forums!! http://bit.ly/zQdcLw\r\nWatch the Extended Sidescrollers here! - http://bit.ly/AfXrNv\r\nWatch the videos mentioned by clicking the link below!\r\nClip of the Week - Sean is Glamorous - http://bit.ly/AEAqdF\r\nTester Episode 3 Commentary Featuring Egoraptor - http://bit.ly/z9cLnB\r\nNathan Barnatt's Birthday Gift - http://bit.ly/Ao1m3c\r\nGame Theory: Boobs - http://bit.ly/xFBZbR\r\nREVIEW: Shank 2 - http://bit.ly/zIVi1X\r\nREVIEW: Twisted Metal - http://bit.ly/xGsYQQ\r\nREVIEW: Tekken 3D Prime Edition - http://bit.ly/zrw2Ue\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"extra-ball\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1549eb5a-617f-4949-b780-21518432e25f/sm/Skee_Ball_Ice_Ball.jpg","duration":2551,"publication_date":"2012-02-28T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022812","changefreq":"weekly","video":[{"title":"S1:E127 - Hard News 02/28/12","description":"Today on Hard News Hydrophobia's dev is doggy paddling, Jets are set to grind again, and the Vita just might make it after all.\r\nHydrophoba dev enter administration - http://www.screwattack.com/news/hydrophobia-developer-enters-administration\r\nJet Set Radio returns - http://www.screwattack.com/news/jet-set-radio-prepares-summer-release\r\nVita sales up thanks to the West - http://www.screwattack.com/news/vita-sales-are-thanks-west\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-022812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68c174c4-79d1-43c1-86df-0b6505a06040/sm/Hydrophobia-Prophecy_2011_04-26-11_002.jpg","duration":114,"publication_date":"2012-02-28T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022712","changefreq":"weekly","video":[{"title":"S1:E126 - Hard News 02/27/12","description":"Today on Hard News Pokemon goes numeric, Klei's got a ninja, and the dream drop may not be that far off for Kingdom Hearts fans.\r\nPokemon Black and White 2 - http://www.screwattack.com/news/pok%C3%A9mon-black-and-white-2-officially-announced\r\nMark of the Ninja - http://www.screwattack.com/news/klei-entertainment-bringing-ninjas-xbla-summer\r\nKingdom Hearts: Dream Drop Distance - http://www.screwattack.com/news/rumor-we-might-see-july-release-kingdom-hearts-3d-dream-drop-distance\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-022712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7780bebb-9da9-42f2-a8a1-18ba95ad0c60/sm/hearts-21.jpg","duration":121,"publication_date":"2012-02-27T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nathans-birthday-gift-from-craig-and-chad","changefreq":"weekly","video":[{"title":"S1:E249 - Nathan's Birthday Gift from Craig and Chad","description":" Craig and Chad had the opportunity to deliver our buddy Nathan Barnatt a once-in-a-lifetime birthday gift at his party... and you won't believe what it was.","player_loc":"https://roosterteeth.com/embed/nathans-birthday-gift-from-craig-and-chad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24306b0a-ee34-43ed-bab8-89249ae45df5/sm/022712NathanGift.jpg","duration":162,"publication_date":"2012-02-26T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-help-sean-be-glamorous","changefreq":"weekly","video":[{"title":"S1:E154 - Clip of the Week - Help Sean Be Glamorous!","description":"We hired a professional photographer to help Sean win a photo contest... but we'll still need your help!\r\nThis Tuesday, look for three pictures to vote on.  The one with the most votes will be the one ultimately submitted for the contest.  If you help us win, we'll give the prizes to some lucky g1s!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-help-sean-be-glamorous","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68678590-82c6-44a5-a745-f0b34529a6b9/sm/CotWRotator2.png","duration":138,"publication_date":"2012-02-24T23:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022412","changefreq":"weekly","video":[{"title":"S1:E125 - Hard News 02/24/12","description":"Today on Hard News play Killzone 3's multiplayer for free, the Counter-Strike beta opens, and retailers leak God of War 4.\r\nKillzone 3 Multiplayer - http://www.screwattack.com/news/killzone-3-multiplayer-becomes-f2p\r\nCounter-Strike GO beta - http://www.screwattack.com/news/cs-go-details-and-beta-invites-are-available-all\r\nGod of War 4 - http://www.screwattack.com/news/retailer-taking-pre-orders-god-war-4\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-022412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9764ee3d-6b91-4289-a18d-8452113949c6/sm/killzone3_1.jpg","duration":117,"publication_date":"2012-02-24T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-3","changefreq":"weekly","video":[{"title":"S1:E248 - The Tester 3 Commentary Ep. 3","description":" Who will get voted off this week? Find out as we welcome special commentary guest and cast member of The Tester, egoraptor!","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0301965d-ef69-47b6-8dab-ec6df16684fb/sm/Tester3-3.jpg","duration":1903,"publication_date":"2012-02-24T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022312","changefreq":"weekly","video":[{"title":"S1:E124 - Hard News 02/23/12","description":"Today on Hard News a new Medal of Honor, possibly a new Metal Gear, and has the last chapter of The Last Story been written in the UK?\r\nGAME cancels Last Story orders - http://www.screwattack.com/news/last-story-faces-stockout-game-cancels-pre-orders-all\r\nKojima is hiring - http://www.screwattack.com/news/bigboss-wants-you-next-metal-gear-solid\r\nNew Medal of Honor - http://www.screwattack.com/news/new-medal-honor-more-shooting-more-beards\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-022312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8c5003c-2e14-4f4f-83b2-200e2c45d11a/sm/The_Last_Story_1.jpg","duration":140,"publication_date":"2012-02-23T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-022212","changefreq":"weekly","video":[{"title":"S1:E247 - SideScrollers Extended 02/22/12","description":"More SideScrollers for Advantage Members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-022212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":407,"publication_date":"2012-02-21T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-one-on-the-dong","changefreq":"weekly","video":[{"title":"S1:E52 - SideScrollers - \"One on the Dong\"","description":"An abbreviated show as we throwdown with Machinima!\r\nWatch the Extended Cut here! - http://bit.ly/yIy4BG\r\nWatch the videos mentioned by clicking the link below!\r\nJared talks to a Spambot - http://bit.ly/AevPLt\r\nCOTW: New Call of Duty Trailer - http://bit.ly/yUaijr\r\nTester 3 Episode 2 Commentary - http://bit.ly/wNWQjX\r\nJared's Prototype 2 Interview - http://bit.ly/zd1guA\r\nREVIEW - Darkness II - http://bit.ly/zQtCpH\r\nREVIEW - Resident Evil Revelations - http://bit.ly/ye4vD3\r\nREVIEW - Shank 2 - http://bit.ly/zIVi1X\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-one-on-the-dong","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":1077,"publication_date":"2012-02-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-outtakes-call-of-duty-trailer","changefreq":"weekly","video":[{"title":"S1:E153 - Clip of the Week Outtakes - Call of Duty Trailer","description":"When a Clip of the Week shoot begins with the accidental formation of the Batman logo, we take it as a sign that there will be LOTS of outtakes to go...\r\nCheck out the original video here - http://www.screwattack.com/shows/originals/clip-of-the-week/world-exclusive-call-duty-debut-trailer","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-outtakes-call-of-duty-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1f7feb3-21b9-4a59-9f02-da1025b7611b/sm/CotWouttakes.png","duration":525,"publication_date":"2012-02-20T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-behind-the-scenes-craig-becomes-soap-mactavish","changefreq":"weekly","video":[{"title":"S1:E246 - [Advantage Content] Behind-The-Scenes: Craig Becomes Soap MacTavish","description":"Witness before your very eyes Stuttering Craig's transformation into John \"Soap\" MacTavish (aka the head shaving video you can actually see).","player_loc":"https://roosterteeth.com/embed/advantage-content-behind-the-scenes-craig-becomes-soap-mactavish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4994b425-cb6e-45c3-8f90-b1de4cafaa71/sm/CotWBTS.png","duration":352,"publication_date":"2012-02-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-022012","changefreq":"weekly","video":[{"title":"S1:E122 - Hard News 02/20/12","description":"Today on Hard News the devils in the details, indie games get a bump, and Microsoft gets a wake up call.\r\nDigital Devil Saga on SEN - http://www.screwattack.com/news/sen-psn-makes-deal-devil\r\nIndie Games come back - http://www.screwattack.com/news/developers-rejoice-xbox-live-indie-games-return-form\r\nAlan Wake banks on PC - http://www.screwattack.com/news/alan-wake-what-pc-dreams-are-made\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-022012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db37fe17-d09f-474f-92eb-472d48335f60/sm/moe-33640-digital_devil_saga-megaten-wallpaper.jpg","duration":126,"publication_date":"2012-02-20T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-duke-nukem-2","changefreq":"weekly","video":[{"title":"S1:E344 - VGV - Duke Nukem 2","description":"Meet the Duke before he busted into the third dimension!","player_loc":"https://roosterteeth.com/embed/vgv-duke-nukem-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96a1273a-dbe4-4abd-85a0-4f50b1390f28/sm/video_thumbnail_2115531.jpg","duration":110,"publication_date":"2012-02-20T10:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-jared-talks-with-a-bot","changefreq":"weekly","video":[{"title":"S1:E245 - A Day in the Life - Jared Talks with a Bot","description":" You know those annoying bots that send you messages when you log in to you messaging service? Well Jared had a very in-depth conversation with one.","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-jared-talks-with-a-bot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74291674-d009-4fbb-a7e5-dc4c62a5b62f/sm/022012JaredvstheBot.jpg","duration":185,"publication_date":"2012-02-19T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-machinima-were-going-to-have-guests","changefreq":"weekly","video":[{"title":"S1:E244 - ScrewAttack vs Machinima - We're Going to Have Guests...","description":"Are you coming? Let us know on the event facebook page - http://www.facebook.com/events/372633759417671/\r\n It's finally going down this Tuesday as we face off against Machinima but we're going to have a couple guests that will be hanging out with us.","player_loc":"https://roosterteeth.com/embed/screwattack-vs-machinima-were-going-to-have-guests","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18d69836-4361-4410-800d-4de01e66260e/sm/022012vstheInternet.jpg","duration":61,"publication_date":"2012-02-19T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-machinima-the-games-are-selected","changefreq":"weekly","video":[{"title":"S1:E243 - ScrewAttack vs Machinima - The Games Are Selected!","description":" We have officially selected the games for the competition against Machinima this Tuesday!","player_loc":"https://roosterteeth.com/embed/screwattack-vs-machinima-the-games-are-selected","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8527c26-1e89-4953-b5d4-810ce2de9277/sm/021812Games.jpg","duration":294,"publication_date":"2012-02-18T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/world-exclusive-call-of-duty-debut-trailer","changefreq":"weekly","video":[{"title":"S1:E152 - World Exclusive: Call of Duty Debut Trailer","description":"In case you haven't heard, Bobby Kotick is now ALSO the director of Coca-Cola. Big news. So big, in fact, it even overshadowed the announcement of the next Call of Duty.\r\nCheck out outtakes here - http://www.screwattack.com/shows/originals/clip-of-the-week/clip-week-outtakes-call-duty-trailer","player_loc":"https://roosterteeth.com/embed/world-exclusive-call-of-duty-debut-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5385b9c1-ae31-4244-9e83-64f0e30985ef/sm/CotWRotator.png","duration":128,"publication_date":"2012-02-18T00:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/prototype-2-interview-and-impressions","changefreq":"weekly","video":[{"title":"S1:E242 - Prototype 2 Interview And Impressions","description":"While at the Las Vegas Activision preview event last week, I got a chance to sit down and chat with Dave Fracchia, the Studio Vice President behind Prototype 2. I got some hands on time with the game too.\r\nI kind of liked the first game, but it had its obvious flaws. Running controls were too loose, powers were imbalanced, pacing, etc. I asked Fracchia about all of these things, and he addressed them with the answers I was hoping to hear.\r\nThe gameplay reflected that, too. Traversing the city was a lot more precise and targeting enemies was a little bit smoother. Combat is still visceral with the five different powers, and the new Tendrils power does provide opportunity for more ranged attacks. There's also a new \"sonar\" ability that main character Heller uses to find his next objective, which usually ends up being the next target to brutally eviscerate. I'm not sure if I'm crazy about the story (I only got to play about an hour into it), but the refined mechanics and gameplay definitely point to a more solid experience than the first Prototype.\r\nWhat I  got my hands on has me rather optimistic. It launches on Xbox 360, PS3, and PC on April 24th, and I'm looking forward to playing it then.","player_loc":"https://roosterteeth.com/embed/prototype-2-interview-and-impressions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7c92e96-5490-471b-b877-2ef708a2f5c3/sm/lloydburr_000002.jpg","duration":169,"publication_date":"2012-02-17T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-7","changefreq":"weekly","video":[{"title":"2015:E26 - Volume 249","description":"Jack and Geoff are back for Fails of the Weak Volume 249 bringing you lazy descriptions and cheap laughs in Battlefield 4, Grand Theft Auto V, Halo 3 ODST, inFamous Second Son, LEGO Jurassic World, and Sniper Elite III.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85148ad4-ab36-4c69-aa2f-dbb31f526c03/sm/ep11582.jpg","duration":205,"publication_date":"2015-06-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-55","changefreq":"weekly","video":[{"title":"2015:E174 - Minecraft - Episode 161 - Jurassic Dorks","description":"\"Oooh\", \"Ahhh\", that's how it always starts. Then later there's running and screaming.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52b04710-e879-4f73-a9db-17060a9b60ac/sm/ep11581.jpg","duration":3530,"publication_date":"2015-06-25T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-4","changefreq":"weekly","video":[{"title":"2015:E13 - Race the Sun","description":"If you race the sun, you're going to lose.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af135f9b-0435-4658-b391-144493ea3630/sm/ep11580.jpg","duration":280,"publication_date":"2015-06-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-8","changefreq":"weekly","video":[{"title":"2015:E25 - Surgeon Simulator","description":"Sometimes when you are a surgeon it is okay to yell at your patients because they're asleep and can't hear you. You can tell them anything and they will have no idea. It's like a diary that forgets how mad you are at it.","player_loc":"https://roosterteeth.com/embed/how-to-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b176a9c-388b-41f1-8967-0cf745332e4f/sm/ep11579.jpg","duration":1562,"publication_date":"2015-06-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-8","changefreq":"weekly","video":[{"title":"2015:E26 - Episode 121: Jeremy vs. Gavin","description":"Gav challenges Jeremy to smack some balls around. You know, the usual.","player_loc":"https://roosterteeth.com/embed/vs-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f83b690-7eda-4b08-92c7-63b62ec8b336/sm/ep11577.jpg","duration":552,"publication_date":"2015-06-24T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-52","changefreq":"weekly","video":[{"title":"2015:E173 - Hot Seat: 3D Ultra Minigolf Featuring Andrew Blanchard","description":"The AH Crew put Andrew Blanchard in the Hot Seat and learn all of his deepest most terrible secrets. There are a lot of them as it turns out.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4c7319a-6913-4d5b-8292-c2119f80e248/sm/ep11578.jpg","duration":1939,"publication_date":"2015-06-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-50","changefreq":"weekly","video":[{"title":"2015:E172 - Dirty Bomb (AH VS FH)","description":"Achievement Hunter fresh from their win against the nerds over at Funhaus have thrown down the gauntlet once again! Will their hubris be their inevitable downfall or will Funhaus be the one's left crying again Thank you Nexon for making this video possible. Go checkout Dirty Bomb, available now for PC on Steam and play today: http://bit.ly/1eM0h5f","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d242c3-54b4-4c63-bec8-830ce7b51ce7/sm/ep11576.jpg","duration":1166,"publication_date":"2015-06-24T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-12","changefreq":"weekly","video":[{"title":"2015:E49 - GTA V - Melee Maze","description":"Maze blood in, maze blood out.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85fb339f-54e5-4f40-bcf9-6c1daa0e528b/sm/ep11575.jpg","duration":418,"publication_date":"2015-06-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-7","changefreq":"weekly","video":[{"title":"2015:E25 - Trials Fusion Achievement HUNT","description":"Jack and Gavin head in to HUNT for what could possibly be the last Trials Fusion HUNT ever. Or the new DLC could possibly have more, I'm not sure. Stop harassing me.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6123da97-b503-4b8e-b2e9-93f9cdcfb3c3/sm/ep11571.jpg","duration":295,"publication_date":"2015-06-23T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-46","changefreq":"weekly","video":[{"title":"2015:E171 - Beach Buggy Racing","description":"Six Players. One screen. A complete fluster cluck!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0699d0d4-f825-470e-8a69-cb919f6ee0b5/sm/ep11572.jpg","duration":1399,"publication_date":"2015-06-23T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-5","changefreq":"weekly","video":[{"title":"2015:E28 - Adventure Time Ice Kingdom","description":"Matt and Lindsay return to the world of Adventure Time and check out the Ice Kingdom! If you want us to check out your elemental kingdom map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abf7c8e4-58a1-4128-8d38-4b95339b3749/sm/ep11569.jpg","duration":206,"publication_date":"2015-06-23T00:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-7","changefreq":"weekly","video":[{"title":"2015:E24 - Week #270","description":"Geoff is somewhere on a beach, so Jack and Michael take over AHWU. Join them as they talk about games, news, and their life in general. Also, FunHaus sucks.\nCheck out Dirty Bomb for PC now on Steam! http://bit.ly/1K5qcB3\nCommunity vid of week 1: \nCommunity vid of week 2: \nVid of Week: \nMichael vid of week:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10dc3f8f-02f6-41d7-80fa-403886638bbd/sm/ep11568.jpg","duration":695,"publication_date":"2015-06-22T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-6","changefreq":"weekly","video":[{"title":"2015:E24 - Top 5 Easy 1000 Gamerscore Games Part 4","description":"Kdin, Matt, and Jeremy take a look at five more games where you can get some super easy Gamerscore!","player_loc":"https://roosterteeth.com/embed/countdown-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b249ee6-027b-4278-be54-a5bd52670740/sm/ep11567.jpg","duration":151,"publication_date":"2015-06-22T19:03:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-7","changefreq":"weekly","video":[{"title":"2015:E25 - Hitman Absolution","description":"Franco takes over Five Facts this week to give you some fun facts about Hitman: Absolution!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25fe8ea9-1ca3-407f-a42d-a8604694f444/sm/ep11566.jpg","duration":198,"publication_date":"2015-06-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-7","changefreq":"weekly","video":[{"title":"2015:E25 - GO! #87","description":"We've definitely never done this Go before. Nope. Alright, well, if we did it definitely wasn't as cool. First to open a chest in three different games wins a sticker. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d16ccec5-3107-4b59-bb00-10609ccae955/sm/ep11564.jpg","duration":613,"publication_date":"2015-06-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-44","changefreq":"weekly","video":[{"title":"2015:E170 - Echo of Soul Part 2","description":"With their Germany trip at an end, can the Achievement Hunter's finish the journey with the win in an epic boss battle They must team up, use all their expert skills, and manage to take down the beast before he enrages! Hopes are low...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/534a8555-639b-41f1-bc9d-a935deedc6d6/sm/ep11565.jpg","duration":1806,"publication_date":"2015-06-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-42","changefreq":"weekly","video":[{"title":"2015:E169 - GTA V - Free Play Ill Gotten Gains","description":"Geoff, Ryan, Michael, Jack and a special guest have some free play time with the new GTA DLC Ill Gotten Gains!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/411ab1bf-d922-4c1b-85b2-bedfb5a7abc0/sm/ep11563.jpg","duration":2591,"publication_date":"2015-06-22T13:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gmod-prop-hunt","changefreq":"weekly","video":[{"title":"2015:E12 - Gmod Prop Hunt","description":"Stop, drop, and pop a shot into a prop! This week Matt and Trevor misplace Jeremy and hunt down some props in Garry's Mod! To watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gmod-prop-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4f67c2a-d481-46b3-981e-296eeed3b726/sm/ep11562.jpg","duration":484,"publication_date":"2015-06-20T14:15:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-8","changefreq":"weekly","video":[{"title":"2015:E48 - GTA V - Flare Maze","description":"There's a black flag. Allegedly","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc70e5db-a506-4ad7-8e89-8991d8d8543f/sm/ep11556.jpg","duration":535,"publication_date":"2015-06-19T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-34","changefreq":"weekly","video":[{"title":"2015:E168 - Destiny: House of Wolves Strike","description":"The Gents are in the last stretch of the DLC. The only thing that stands between them and ultimate completion is the dreaded nightfall strike. Will arc burn be enough to save them and take down the evil Tanuki Now's your chance to find out!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7759679-81ff-4cee-a25e-c4b339c22a30/sm/ep11555.jpg","duration":1421,"publication_date":"2015-06-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-4","changefreq":"weekly","video":[{"title":"2015:E25 - Volume 248","description":"With Geoff on vacation and Jack at E3, Ryan and Michael take over Fails of the Weak Volume 248 featuring clips from Elder Scrolls Online, Grand Theft Auto V, Metro: Last Light Redux, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fee4989-92f4-461e-88ae-bc1a7e8505bf/sm/ep11554.jpg","duration":192,"publication_date":"2015-06-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-4","changefreq":"weekly","video":[{"title":"2015:E25 - Episode 120: Ryan vs. Jeremy","description":"Ryan porcs Jeremy. Then, Jeremy porcs back. Repeat cycle.","player_loc":"https://roosterteeth.com/embed/vs-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a37e1fe-803b-44ad-9406-f6b29ed2aed1/sm/ep11552.jpg","duration":387,"publication_date":"2015-06-18T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-30","changefreq":"weekly","video":[{"title":"2015:E167 - Echo of Soul","description":"The AH crew gather their wits and fly all the way to Germany to play Echo of Soul!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8bdaace-9d8c-4890-ad9f-dad5ac8456da/sm/ep11551.jpg","duration":1784,"publication_date":"2015-06-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-33","changefreq":"weekly","video":[{"title":"2015:E166 - Minecraft - Episode 160 - Againderman Part 2","description":"The quest to Re-Slay the Enderdragon continues!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe825a4b-7c25-4be9-8ce1-0fb2abfbd879/sm/ep11553.jpg","duration":2977,"publication_date":"2015-06-18T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-2","changefreq":"weekly","video":[{"title":"2015:E13 - Badland","description":"Michael and Ryan, the classic \"Play Pals Team\" make their triumphant return!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ceb6a5ff-6800-4062-8751-3446f4deed87/sm/ep11550.jpg","duration":650,"publication_date":"2015-06-17T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-4","changefreq":"weekly","video":[{"title":"2015:E24 - Pet Dinosaur","description":"You want to know how TO pet dinosaur (Man, we're really glad you asked us such a specific question) Joel SHOWS Adam how TO pet dinosaur. (Now everyone is going to be pet dinosauring.)","player_loc":"https://roosterteeth.com/embed/how-to-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/132fbf1e-d68b-48d6-9495-4945550eb6ec/sm/ep11548.jpg","duration":132,"publication_date":"2015-06-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-28","changefreq":"weekly","video":[{"title":"2015:E165 - Trivial Pursuit Part 4","description":"Achievement Hunter is back showcasing their vast knowledge of all things trivia! Act surprised by how little that vast knowledge is.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34e94d96-6a6e-4c81-b880-3c07a66589c1/sm/ep11549.jpg","duration":1713,"publication_date":"2015-06-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-4","changefreq":"weekly","video":[{"title":"2015:E24 - Lego Jurassic Park HUNT","description":"Jack and Michael head in to Lego Jurassic Park to see who can be the first to pick up the \"Welcome to Jurassic Park' achievement. *Ian Malcolm laugh noise*","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ce6c13b-6d4e-4e04-84d8-bf2d47163a8b/sm/ep11545.jpg","duration":968,"publication_date":"2015-06-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-6","changefreq":"weekly","video":[{"title":"2015:E47 - Minecraft - Hoop Hop","description":"AH poops and pops in this Minecraft remake of the Banjo-Tooie mini-game, Hoop Hurry. Music for this video was provided by Audio Network: http://us.audionetwork.com/Track/SearchKeywordkey...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27e9312e-df09-4e50-aed3-677e091c6b64/sm/ep11546.jpg","duration":366,"publication_date":"2015-06-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-23","changefreq":"weekly","video":[{"title":"2015:E164 - Left 4 Dead 2 with Rahul Kohli","description":"Geoff and Michael travel all the way to LA to play Left 4 Dead 2 with iZombie's Rahul Kohli! Adam Kovic is there too but he's not very good, loses his footage, breaks the game, and is a nuisance.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3c6056b-a58c-4e2a-95ef-346599994aa2/sm/ep11543.jpg","duration":2698,"publication_date":"2015-06-16T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-3","changefreq":"weekly","video":[{"title":"2015:E23 - Week #269","description":"Jack is off at E3 while Geoff is in Hawaii, Gavin is trapped in an airport and Ryan and Michael are burning the office down. Join Jack and Caiti (Geoff's lovely replacement) as they briefly look at a couple of news bits from some E3 press conferences and go over this week's games.\n\nVideo of the week:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3e547fb-7ceb-4ee3-9397-fa22d3f365c4/sm/ep11542.jpg","duration":359,"publication_date":"2015-06-16T01:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-21","changefreq":"weekly","video":[{"title":"2015:E163 - Gmod: Stop It Slender","description":"Geoff, Jack, Ryan, Jeremy, Michael, and Max wander through the woods looking for pages... but one of them is the evil entity known as Slender. Who will be the horrible monster And will any of the Achievement Hunters manage to collect all 8 pages before they are caught","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f138040f-fd65-44c0-be28-bda0d08d3d20/sm/ep11539.jpg","duration":1433,"publication_date":"2015-06-15T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-3","changefreq":"weekly","video":[{"title":"2015:E24 - Far Cry 3","description":"Jack and Geoff discuss \"tennis ball acting,' as well as some facts, in Five Facts: Far Cry 3.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a489402b-4304-4b56-a0fd-eba18754ed48/sm/ep11540.jpg","duration":230,"publication_date":"2015-06-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-3","changefreq":"weekly","video":[{"title":"2015:E24 - Pick a Lock - GO! #86","description":"This weeks Go is all about thievery! First to pick a lock in a game gets the vault's prize... a sticker! Go!","player_loc":"https://roosterteeth.com/embed/go-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/768ce797-4296-4030-8e10-2d598cdc3960/sm/ep11538.jpg","duration":431,"publication_date":"2015-06-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-18","changefreq":"weekly","video":[{"title":"2015:E162 - GTA V - The Pacific Standard Job Finale","description":"The dramatic conclusion of the Pacific Standard Job! How much of the 1.2 million will the crew escape with","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e0a705d-bd9e-4a31-92dd-f0db39d25681/sm/ep11537.jpg","duration":2020,"publication_date":"2015-06-15T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-2","changefreq":"weekly","video":[{"title":"2015:E23 - Top 5 Most Destructive Weapons In Fallout 3","description":"To prepare themselves for Fallout 4, Kdin and Jeremy take a look at the Top 5 most destructive weapons in Fallout 3!","player_loc":"https://roosterteeth.com/embed/countdown-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29fe3775-4de1-4fa0-a55b-3970c425ea23/sm/ep11530.jpg","duration":160,"publication_date":"2015-06-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-am-bread-gameplay-the-stream-team-twitch-highlights","changefreq":"weekly","video":[{"title":"2015:E11 - I Am Bread Gameplay - The Stream Team (Twitch Highlights)","description":"The Team that Streams, Jeremy, Matt, and Trevor, are on a quest to roast some bread into toast. Here's the highlights from their plight. \r\nTo watch the streams live, tune in to www.twitch.tv/RoosterTeeth every Tuesday at 5 PM CT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-am-bread-gameplay-the-stream-team-twitch-highlights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdefb98b-36b0-41bb-b841-7cb144ffcc22/sm/ep11536.jpg","duration":560,"publication_date":"2015-06-14T15:17:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-16","changefreq":"weekly","video":[{"title":"2015:E161 - Couples Therapy in Contagion","description":"In this special edition of the Podcast Let's Play -- regular hosts Gavin and Burnie venture into the horrifying world of Contagion with their girlfriends Meg and Ashley. Hopefully, their relationships survive longer than their characters.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75b4968e-0455-4b39-8aa8-b4f5758ceb90/sm/ep11532.jpg","duration":1830,"publication_date":"2015-06-13T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-2","changefreq":"weekly","video":[{"title":"2015:E46 - Minecraft - Ender Cannon","description":"AH learns the best way to travel in Minecraft with this week's Things to Do.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b3920a7-2b69-4aab-8f17-cc0960fc24fd/sm/ep11533.jpg","duration":745,"publication_date":"2015-06-12T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-8","changefreq":"weekly","video":[{"title":"2015:E160 - Destiny: Prison of Elders","description":"The Elders demand that Geoff, Ryan, and Jack test their skills against five rounds of enemies in the Prison of Elders. Each species is involved, and even a boss. Can they survive and retrieve the exotic weapons that are their reward","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0b2bc34-0cba-4922-b873-604b6b9fcf22/sm/ep11526.jpg","duration":1377,"publication_date":"2015-06-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015","changefreq":"weekly","video":[{"title":"2015:E24 - Volume 247","description":"In Fails of the Weak Volume 247, Jack and Geoff bring you an array of fails and glitches from Battlefield 4, Far Cry 4, Metal Gear Solid V Ground Zeroes, Witcher 3 Wild Hunt, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dc9c96d-db48-40cf-a4d7-73eadd66efec/sm/ep11523.jpg","duration":190,"publication_date":"2015-06-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015","changefreq":"weekly","video":[{"title":"2015:E12 - Jurassic Park","description":"DAMMIT, GRANT.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb993ca4-22fc-4ab4-9018-d40b4aa194a3/sm/ep11524.jpg","duration":468,"publication_date":"2015-06-11T17:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-4","changefreq":"weekly","video":[{"title":"2015:E159 - Orion Prelude","description":"The AH Crew continue their goal of total dinosaur extinction by hunting dinos in Orion Prelude!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b24d56f0-3d40-4472-bff0-0b8d93d22e1e/sm/ep11522.jpg","duration":2260,"publication_date":"2015-06-11T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015","changefreq":"weekly","video":[{"title":"2015:E24 - Episode 119: Jeremy vs. Lindsay","description":"Jeremy and Lindsay embrace their inner Calebs.","player_loc":"https://roosterteeth.com/embed/vs-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5ec9104-983a-4d20-9f0d-414d8581de86/sm/ep11521.jpg","duration":290,"publication_date":"2015-06-11T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-6","changefreq":"weekly","video":[{"title":"2015:E158 - Minecraft - Episode 159 - Dino Dads","description":"God creates dinosaur. God destroys dinosaur. God creates man. Man creates Minecraft. Modders create dinosaur mods. Dinosaur mods destroy Minecraft. Screaming envelops the earth.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f72afefe-c670-4c52-8165-4ab4c70b3ede/sm/ep11525.jpg","duration":2353,"publication_date":"2015-06-11T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015-2","changefreq":"weekly","video":[{"title":"2015:E157 - Let's Watch - The Lost World: Jurassic Park - Ryan's Attempt","description":"Gavin sucks. Ryan rules. Griffon shows up and makes everything better.","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6077866b-555b-4750-8eed-d90283684a12/sm/ep11520.jpg","duration":1164,"publication_date":"2015-06-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-28","changefreq":"weekly","video":[{"title":"2015:E23 - Kidz!","description":"Joel and Adam find some cute fluffy animals and make them nice and clean!","player_loc":"https://roosterteeth.com/embed/how-to-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/808da433-608a-4932-bec8-ffef0816938b/sm/ep11515.jpg","duration":170,"publication_date":"2015-06-10T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/let-s-watch-2015","changefreq":"weekly","video":[{"title":"2015:E156 - Let's Watch - The Lost World: Jurassic Park","description":"Gavin attempts to play The Lost World: Jurassic Park for the Playstation while the rest of the crew mercilessly heckles him into extinction!","player_loc":"https://roosterteeth.com/embed/let-s-watch-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71185baa-9a58-4000-8e29-d87f9e0460e3/sm/ep11512.jpg","duration":1180,"publication_date":"2015-06-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-31","changefreq":"weekly","video":[{"title":"2015:E23 - Trials Fusion Challenges HUNT","description":"Jack and Gavin continue their race through Trials Fusion. Today they go for the \"Curiosity Killed the Cat' achievement. Will Gavin get lost Of course he will.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1d6151-4175-49ac-9438-5833be921f48/sm/ep11513.jpg","duration":447,"publication_date":"2015-06-09T19:49:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-53","changefreq":"weekly","video":[{"title":"2015:E45 - GTA V - Slippy Race","description":"AH Slipped n' Slammed. Now, they'll slip their way to victory. And death. Mostly death.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed06989-9720-42a1-bcd7-580a4d86f54a/sm/ep11511.jpg","duration":300,"publication_date":"2015-06-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-28","changefreq":"weekly","video":[{"title":"2015:E23 - Fact Check #6","description":"It's time for another Five Facts Fact Check (#6) with Jack and Geoff!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0feb13-fda3-4ed3-b87f-43fcd308fa75/sm/ep11508.jpg","duration":152,"publication_date":"2015-06-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-190","changefreq":"weekly","video":[{"title":"2015:E155 - ARK: Survival Evolved","description":"Geoff, Jack, Ryan, and Gavin test their skills against prehistoric creatures. Can they survive, thrive, and hunt the massive dino beasts in their way","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-190","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb583249-0000-461f-9632-9e1f54573d11/sm/ep11507.jpg","duration":1350,"publication_date":"2015-06-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-39","changefreq":"weekly","video":[{"title":"2015:E22 - AHWU #268","description":"It's the week before E3 and the crew is super full of energy and excitement. Brace yourselves for a massive dose of AHWU. Vid of week: https://www.youtube.com/watchv=nwn23UR4W7g\r\nCommunity vid: https://www.youtube.com/watchv=fX19MDMqavw\r\nArt of week: Username: Madiniwa","player_loc":"https://roosterteeth.com/embed/ahwu-2015-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71effa4-c873-4d61-8796-aa7baf2ea4dc/sm/ep11509.jpg","duration":351,"publication_date":"2015-06-08T19:39:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-29","changefreq":"weekly","video":[{"title":"2015:E23 - Spare Games - GO! #85","description":"Merry (early) Christmas everyone! Geoff has gotten everyone presents: spare games! The first to open their game and beat the first level, wins. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/049ac68d-cdf8-4ef1-9c4e-cdb346b8f9d6/sm/ep11506.jpg","duration":1102,"publication_date":"2015-06-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-189","changefreq":"weekly","video":[{"title":"2015:E154 - GTA V - The Pacific Standard Job Part 3","description":"The Last Star Fighter, Gary Busey, and AH wrap up the prep work for the last heist!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-189","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53bf0e24-744d-4239-9b94-27985ef3c81f/sm/ep11504.jpg","duration":1596,"publication_date":"2015-06-08T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-26","changefreq":"weekly","video":[{"title":"2015:E22 - Top 5 - Dinosaur Games","description":"Kdin and Jeremy take a look at some of the best games featuring dino dna!","player_loc":"https://roosterteeth.com/embed/countdown-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/820746c0-024a-4b71-8307-677f20f0d339/sm/ep11499.jpg","duration":135,"publication_date":"2015-06-05T21:14:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-50","changefreq":"weekly","video":[{"title":"2015:E44 - GTA V - Chuting the Chit","description":"AH Chutes da whoop.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b2d738-f6fc-474f-9a7d-02d5a72af42e/sm/ep11497.jpg","duration":116,"publication_date":"2015-06-05T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-181","changefreq":"weekly","video":[{"title":"2015:E153 - Destiny: House of Wolves Part 2","description":"The Gents finish up the House of Wolves DLC story missions. Geoff, Ryan, and Jack VS Skolas. Three on one. Is it even fair Nope. Maybe if Skolas broke his leg... and was a bit under the weather.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-181","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cbb7411-4aaf-4964-b2e6-77ffaf996e05/sm/ep11495.jpg","duration":1192,"publication_date":"2015-06-05T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-26","changefreq":"weekly","video":[{"title":"2015:E23 - Episode 118: Jeremy vs. Lindsay","description":"This week's VS features new faces in new places. Music for this video was provided by Audio Network\nDeadly Transformation: http://us.audionetwork.com/Track/SearchKeywordkey... and Bears Party: http://us.audionetwork.com/Track/SearchKeywordkey...","player_loc":"https://roosterteeth.com/embed/vs-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41241c40-62f7-4669-9a33-a869a84390dd/sm/ep11489.jpg","duration":192,"publication_date":"2015-06-04T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-25","changefreq":"weekly","video":[{"title":"2015:E23 - Volume 246","description":"Fresh back from Berlin, Geoff and Jack bring you Fails of the Weak Volume 246 featuring clips from Assassin's Creed IV Black Flag, Assassin's Creed Unity, Battlefield 4, NHL 15, Witcher 3 Wild Hunt, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a425922-e941-41c4-a146-7613ecc09756/sm/ep11488.jpg","duration":180,"publication_date":"2015-06-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-175","changefreq":"weekly","video":[{"title":"2015:E152 - Minecraft - Episode 158 - Againderman","description":"The Xbox 360 version of Minecraft updated and added more achievements! So Geoff, Jack, Michael, Ryan, and Gavin are taking up the task to slay the Enderdragon...again!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-175","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c9813c7-1c6f-4520-9e60-77ba2101df6c/sm/ep11487.jpg","duration":2731,"publication_date":"2015-06-04T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-12","changefreq":"weekly","video":[{"title":"2015:E12 - Spintires","description":"Michael and Gavin get stuck in the mud and scream.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d45b190d-190a-4b9e-8ee8-e265705312a6/sm/ep11481.jpg","duration":632,"publication_date":"2015-06-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-24","changefreq":"weekly","video":[{"title":"2015:E22 - Grow Home","description":"Joel and Adam set off to stick their long green plant thingy into the yellow plant thingy.","player_loc":"https://roosterteeth.com/embed/how-to-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdd00536-2136-4804-b8f1-e570b51662e7/sm/ep11483.jpg","duration":3492,"publication_date":"2015-06-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-47","changefreq":"weekly","video":[{"title":"2015:E43 - Battlefield Hardline - X-Games","description":"Geoff, Ryan, Michael, and Gavin pull out the C4 and start launching things into the air. They go across the sky, onto buildings, across buildings, into helicopters... or you know... maybe they don't do any of that stuff. In reality, they seem to have made a long video where they actually accomplished very little, went to Germany, and then asked for a Things to Do. This is the result from that decision. They didn't even call it X-Games... BUT IT'S X-GAMES NOW DAMN IT! AND YOU WILL WATCH IT!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c47f5084-22b7-4b29-b9cd-edd7af63ad48/sm/ep11482.jpg","duration":470,"publication_date":"2015-06-03T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-169","changefreq":"weekly","video":[{"title":"2015:E151 - Mega Coin Squad","description":"The AH Crew franticly fight each other to grab as many coins as possible in a squad like fashion.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bad3a940-1dc1-418b-8510-4385fc4ed49c/sm/ep11480.jpg","duration":1585,"publication_date":"2015-06-03T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-26","changefreq":"weekly","video":[{"title":"2015:E22 - X-Men HUNT","description":"Jack and Ryan, the lonely Achievement Hunters, play and compete in X-Men: The Arcade Game in this week's HUNT.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83aedb23-db45-4249-9e9d-68b6103756e9/sm/ep11474.jpg","duration":398,"publication_date":"2015-06-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-162","changefreq":"weekly","video":[{"title":"2015:E150 - NHL 15 Part 2","description":"Geoff and Jack demanded a rematch! Ryan and Michael must defend their NHL Championship title!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40264245-ef40-447d-9b67-c53819af7a84/sm/ep11468.jpg","duration":1336,"publication_date":"2015-06-02T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-25","changefreq":"weekly","video":[{"title":"2015:E22 - Skate 3","description":"Jack and Geoff grab their boards and roll out to discuss Skate 3 in this week's Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2131805-a066-43f7-ba06-a62088dafac5/sm/ep11466.jpg","duration":169,"publication_date":"2015-06-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-23","changefreq":"weekly","video":[{"title":"2015:E22 - 35 Gamerscore - GO! #84","description":"This week's Go is pretty simple: get 35 gamerscore. Not 30. Not 40. Exactly 35. Should be easy, right","player_loc":"https://roosterteeth.com/embed/go-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7e3fd2c-5084-4ef0-9f85-69609aae668c/sm/ep11467.jpg","duration":656,"publication_date":"2015-06-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-24","changefreq":"weekly","video":[{"title":"2015:E21 - AHWU #267","description":"This week the AH crew are in Berlin, Germany, we show off the new interns, and do a live action \"Achievement of the Week\"! Video of the Week - https://www.youtube.com/watchv=vztzieftRHE Community Video of the Week - https://www.youtube.com/watchv=on0OU6Z8QXw","player_loc":"https://roosterteeth.com/embed/ahwu-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73d99e58-6f80-4756-bc8f-ec93e9ba5cbf/sm/ep11469.jpg","duration":486,"publication_date":"2015-06-01T18:59:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-23","changefreq":"weekly","video":[{"title":"2015:E21 - Top 5 Video Games from 1995","description":"Kdin and Matt attempt to list the Top 5 Games from 1995 while Trevor and Jeremy do their best to stop them.","player_loc":"https://roosterteeth.com/embed/countdown-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca8abc67-15ee-456d-a704-d288f2d481a8/sm/ep11464.jpg","duration":123,"publication_date":"2015-06-01T16:18:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-161","changefreq":"weekly","video":[{"title":"2015:E149 - Depth","description":"Geoff, Jack, Ryan, Michael, Jeremy, and special guest Max Kruemcke become deadly sharks and terrified divers in the high stress game of Depth. When there's blood in the water... sharks will come...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec2d86c6-dd88-4927-9bf8-f86c07cffedc/sm/ep11465.jpg","duration":1994,"publication_date":"2015-06-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-159","changefreq":"weekly","video":[{"title":"2015:E148 - GTA V - The Pacific Standard Job Part 2","description":"AH continues their relentless and totally legit professional prep for the last GTA Heist!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3fe576e-b87c-4da4-b14a-fab933137ba5/sm/ep11463.jpg","duration":2538,"publication_date":"2015-06-01T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-146","changefreq":"weekly","video":[{"title":"2015:E147 - Destiny: House of Wolves","description":"The Gents are back in Destiny, hunting down Fallen from the House of Wolves. Check out their adventure through the newest DLC.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91af1d6d-a2e7-4cf0-a120-2f933e9270de/sm/ep11442.jpg","duration":1393,"publication_date":"2015-05-29T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-147","changefreq":"weekly","video":[{"title":"2015:E146 - Tera","description":"Geoff, Jack, Ryan, Michael, and Matt party up and take on a dungeon in Tera Online! Download the video game here: http://bit.ly/1zOM6pU Follow this link to redeem your in game exclusive RT/AH item with the code \"AchievementHunter\": http://bit.ly/1J91IYn","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/484cb7d0-7cf3-4f32-89a4-0854ca6fa195/sm/ep11445.jpg","duration":2084,"publication_date":"2015-05-29T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-40","changefreq":"weekly","video":[{"title":"2015:E42 - GTA V - Cab Challenge","description":"Geoff, Ryan, Jack, Michael, and Sam the Cab Driver go on an epic journey to see who can reach their destination first. Who has the better driver Who has the greatest resolve And who will end up at the bottom of the river","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc795c0a-f5de-4e3a-8c87-9f34f1bb37d2/sm/ep11440.jpg","duration":668,"publication_date":"2015-05-28T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-22","changefreq":"weekly","video":[{"title":"2015:E22 - Volume 245","description":"With Geoff in LA, Ryan takes a dive and joins Jack for Fails of the Weak Volume 245 featuring clips from Grand Theft Auto V, Titanfall, Watch Dogs and The Witcher 3: Wild Hunt. Please excuse Caleb's spelling.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d739e721-c3dc-47ed-9b1c-9bba1be8952c/sm/ep11438.jpg","duration":192,"publication_date":"2015-05-28T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-144","changefreq":"weekly","video":[{"title":"2015:E145 - Minecraft - Episode 157 - Shopping List X Finale","description":"It's time to check out and see who comes out with the full cart!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/001a30fd-99e0-4d1c-a085-41af38a97508/sm/ep11439.jpg","duration":2556,"publication_date":"2015-05-28T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-7","changefreq":"weekly","video":[{"title":"2015:E21 - Stop it Slender","description":"I have to write this description but honestly I have no idea what to put. Adam was mean to me in the last one he wrote so I probably should be mean to him in this one. Adam is stupid and smells not good, also we play Stop it Slender.","player_loc":"https://roosterteeth.com/embed/how-to-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b41091f-0c5c-420c-b081-23aa02c1f232/sm/ep11060.jpg","duration":1965,"publication_date":"2015-05-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-7","changefreq":"weekly","video":[{"title":"2015:E22 - Episode 117: Lindsay vs. Jack","description":"Lindsay takes Jack on a journey of the mind, body and beard.","player_loc":"https://roosterteeth.com/embed/vs-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32768a8e-3355-4363-8c6c-9fd4bc4f1505/sm/ep11061.jpg","duration":533,"publication_date":"2015-05-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-160","changefreq":"weekly","video":[{"title":"2015:E144 - Trivial Pursuit Live Part 3","description":"The AH crew returns to showing off how smart they are about specific things. Trivia is not one of those things.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a1eaad2-1822-4aa0-a331-0a6acb72f6bc/sm/ep10953.jpg","duration":1520,"publication_date":"2015-05-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-25","changefreq":"weekly","video":[{"title":"2015:E21 - Wolfenstein HUNT","description":"Michael and Ryan go old school in this week's episode of HUNT. They drop in to Wolfenstein The Old Blood and go for the \"German Alps Nightmare' achievement. Who will win Who will eat turkey first","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbcc1714-6c3d-44c7-8924-7f0b1749b1f5/sm/ep10949.jpg","duration":610,"publication_date":"2015-05-27T13:45:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-155","changefreq":"weekly","video":[{"title":"2015:E143 - NHL 15","description":"The \"Team OG\" Ducks face off against the \"Crazy Mad\" Devils in the very first Achievement Hunter NHL Let's Play!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca905585-04af-4d19-915a-1abbbe35e236/sm/ep10945.jpg","duration":1005,"publication_date":"2015-05-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-4","changefreq":"weekly","video":[{"title":"2015:E11 - Double Dragon 2","description":"It's time to double the Double Dragon in Double Dragon 2 as Geoff and Michael team up for The Revenge!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60205415-4ecf-4fd9-81b9-8e4d9940f979/sm/ep11059.jpg","duration":1123,"publication_date":"2015-05-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-43","changefreq":"weekly","video":[{"title":"2015:E41 - Minecraft - Skeeball","description":"Matt has constructed one of everyone's favorite arcade games in Minecraft. Who will be able to score the most points out of Geoff, Ryan, Michael, and Jack And what prizes will they spend their tickets on!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/646615e6-442d-403e-802e-ef647dcec6ed/sm/ep10946.jpg","duration":686,"publication_date":"2015-05-26T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-25","changefreq":"weekly","video":[{"title":"2015:E21 - Be the Worst at Video Games - GO! #83","description":"This Go is all about being the worst. First to go 0-20 (no kills, 20 deaths) in a multiplayer game, wins a sticker. And a bucket of delicious shame. Mmmmm. Shame.","player_loc":"https://roosterteeth.com/embed/go-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a7f0c60-4970-41c1-a401-80b7cff31a7c/sm/ep10942.jpg","duration":597,"publication_date":"2015-05-26T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-23","changefreq":"weekly","video":[{"title":"2015:E20 - AHWU #266","description":"Today's AHWU was filmed on Friday with the complete hope that nothing of major importance happens over Memorial Day weekend. We hope you had a good one. Vid of week: https://www.youtube.com/watchv=cXXZizPmmxk\r\nCommunity vid: https://www.youtube.com/watchv=lgl4QP6km3I","player_loc":"https://roosterteeth.com/embed/ahwu-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/882ff599-3db2-4451-a332-f8f301892eef/sm/ep10941.jpg","duration":452,"publication_date":"2015-05-25T15:48:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-151","changefreq":"weekly","video":[{"title":"2015:E141 - GTA V Heists - The Pacific Standard Job","description":"Geoff, Michael, Ryan and Jack kick off the last of the GTA V heist missions!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/958a186a-e507-4dbd-bfb6-77ee3f8b30ad/sm/ep10938.jpg","duration":2110,"publication_date":"2015-05-25T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-21","changefreq":"weekly","video":[{"title":"2015:E20 - Top 5 Ground Pounds in Video Games","description":"Kdin and Geoff take a look at the most destructive ground pounds in video games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5292cd6c-c965-4708-bb21-9b4f43758bb3/sm/ep10933.jpg","duration":122,"publication_date":"2015-05-22T20:26:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-3","changefreq":"weekly","video":[{"title":"2015:E3 - Wolfenstein: The Old Blood - Six Easter Eggs","description":"Kdin and Ryan take a look at 6 Easter Eggs found in Wolfenstein: The Old Blood!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e5635d6-5223-463a-80a9-25582cbf5279/sm/ep10932.jpg","duration":178,"publication_date":"2015-05-22T20:14:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-41","changefreq":"weekly","video":[{"title":"2015:E40 - GTA V - Slip N' Slam","description":"Not to be confused with \"Slip AND Slam,\" Geoff, Jack, Ryan, Matt, Jeremy, and Gavin drive their cars into a fountain and see who will be the last one left doing so. No guns, just smashing each other out of the water.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85c84547-4a96-40d0-822d-a03af3282430/sm/ep10931.jpg","duration":382,"publication_date":"2015-05-22T17:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-142","changefreq":"weekly","video":[{"title":"2015:E140 - 3D Ultra MiniGolf Adventures 2 Part 9","description":"The Minigolf crew knocks out the last four holes, it all comes down to this!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65285935-8598-4ee8-9635-8e5f4fd6f508/sm/ep10924.jpg","duration":2559,"publication_date":"2015-05-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-20","changefreq":"weekly","video":[{"title":"2015:E21 - Volume 244","description":"In Fails of the Weak Volume 244, Jack and Geoff lose it over clumsy fails in Grand Theft Auto V, State of Decay Year 1 Survival Edition, and The Amazing Spider-Man 2.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c2fb859-1fd2-4acd-9ac1-3b9263928c25/sm/ep10922.jpg","duration":192,"publication_date":"2015-05-21T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-11","changefreq":"weekly","video":[{"title":"2015:E11 - Receiver","description":"This piece is out for vengeance. R.I.P. Grandson Gun.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d916a700-c9c4-4d90-9453-8a0075dcdb13/sm/ep10923.jpg","duration":329,"publication_date":"2015-05-21T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-139","changefreq":"weekly","video":[{"title":"2015:E139 - Minecraft - Episode 156 - Shopping List X Part 2","description":"The most ridiculous shopping trip ever continues!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67dd4d26-8d1e-4880-858c-85d2fd8b8be7/sm/ep10921.jpg","duration":2538,"publication_date":"2015-05-21T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-137","changefreq":"weekly","video":[{"title":"2015:E138 - Towerfall Darkworld","description":"Achievement Hunter checks out the new Darkworld DLC in one of their favorite games, Towerfall. There's a lot of arrows everywhere.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09cafe7b-c3a0-46cd-be89-3624b8dd154b/sm/ep10920.jpg","duration":2357,"publication_date":"2015-05-21T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-21","changefreq":"weekly","video":[{"title":"2015:E21 - Episode 116: Jack vs. Michael","description":"Jack and Michael take AH out of the office and into the next lane. Music for this video was provided by Audio Network - Kaiju Chaos: http://bit.ly/1QEpi3r and Robot Rock: http://bit.ly/1GZkb9r","player_loc":"https://roosterteeth.com/embed/vs-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9798a160-d33e-4406-9eca-74118d8a7b06/sm/ep10919.jpg","duration":566,"publication_date":"2015-05-21T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-20","changefreq":"weekly","video":[{"title":"2015:E20 - QWOP","description":"Bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, smfelhltz, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top, bottom, top. Please le","player_loc":"https://roosterteeth.com/embed/how-to-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c89906ea-9186-4d5f-b858-ec5afb5e02da/sm/ep10915.jpg","duration":1486,"publication_date":"2015-05-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-36","changefreq":"weekly","video":[{"title":"2015:E39 - Minecraft - Air Raid","description":"AH is dropped into a war zone with only their Minecraft guns to protect them","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4ffd3c0-3101-4bb2-b4d5-fccf4fdfe85f/sm/ep10910.jpg","duration":568,"publication_date":"2015-05-19T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-20","changefreq":"weekly","video":[{"title":"2015:E20 - Minecraft HUNT","description":"Michael and Gavin face off in Minecraft in an attempt to grab the \"Sniper Duel\" achievement. Find out who is best with the bow!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03e36bce-b08c-4311-8aec-d0f45c5bcc3a/sm/ep10911.jpg","duration":937,"publication_date":"2015-05-19T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-25","changefreq":"weekly","video":[{"title":"2012:E25 - Michael's Rage Affects Others","description":"The RT office has a few things to say and do about Michael's recording time.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bc83b4b-a026-4f62-b788-357e28c5e92a/sm/ep5515.jpg","duration":94,"publication_date":"2012-08-17T03:01:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-28","changefreq":"weekly","video":[{"title":"2012:E28 - Gus' Bathroom Encounter","description":"Rooster Teeth Animated Adventures #58 is taken from the live podcast recording at RTX and is Gus telling the story of being accosted by someone in a public bathroom. Gross.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a0663e1-f44d-476d-b1c4-3fd37804381e/sm/ep5509.jpg","duration":65,"publication_date":"2012-08-15T15:34:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-10","changefreq":"weekly","video":[{"title":"S10:E10 - Episode 10: C.T.","description":"S10:E10 - Episode 10: C.T.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6310f81-e2cb-487f-b23f-3ca22a29a68a/sm/ep5485.jpg","duration":398,"publication_date":"2012-08-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-week-of-august-10th","changefreq":"weekly","video":[{"title":"2012:E3 - Week of August 10th","description":"Barbara is now Texan enough to do this recap.","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-week-of-august-10th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/816e4f46-213a-482c-93ee-60aab01adda8/sm/ep5484.jpg","duration":139,"publication_date":"2012-08-10T23:15:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-town-season-1-the-bill-cosby-tree","changefreq":"weekly","video":[{"title":"S1:E4 - The Bill Cosby Tree","description":"Fido the Squirrel notices a very unusual tree in the forest...","player_loc":"https://roosterteeth.com/embed/nature-town-season-1-the-bill-cosby-tree","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab191570-aa60-4b1a-a99c-4823b2918304/sm/ep5464.jpg","duration":142,"publication_date":"2012-08-10T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-17","changefreq":"weekly","video":[{"title":"2012:E17 - Gangnam Style!","description":"Miles, Chris, Kara and Lindsay take dance breaks.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d71db3d1-e52d-44c7-9c97-5f5854ab00a9/sm/ep5458.jpg","duration":93,"publication_date":"2012-08-09T21:34:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-12","changefreq":"weekly","video":[{"title":"2012:E12 - Lost Phone Karma","description":"Rooster Teeth Animated Adventures #57 explains what happens to Burnie when he loses his cell phone in a cab as well as the instant karma Gavin gets for giving Burnie grief about his phone.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30f3c5d1-df88-4988-a59c-92edfd40a4d6/sm/ep5436.jpg","duration":66,"publication_date":"2012-08-08T14:59:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-9","changefreq":"weekly","video":[{"title":"S10:E9 - Episode 9: Fighting Fire","description":"S10:E9 - Episode 9: Fighting Fire","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03a441a7-20e1-46d0-b02a-5ab3ee6603cf/sm/ep5432.jpg","duration":492,"publication_date":"2012-08-07T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-week-of-august-3rd","changefreq":"weekly","video":[{"title":"2012:E2 - Week of August 3rd ","description":"This is Lindsay. She is here to recap","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-week-of-august-3rd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70ba4c87-3c81-490a-93e2-018b31679fe6/sm/ep5429.jpg","duration":170,"publication_date":"2012-08-04T01:04:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-town-season-1-attack-of-the-sloth","changefreq":"weekly","video":[{"title":"S1:E3 - Attack of the Sloth","description":"A mysterious sloth appears, but what does he want","player_loc":"https://roosterteeth.com/embed/nature-town-season-1-attack-of-the-sloth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8227fc4-9213-4833-a2a6-dab5bc1d3e5d/sm/ep5428.jpg","duration":179,"publication_date":"2012-08-03T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-10","changefreq":"weekly","video":[{"title":"2012:E10 - Oh, Joe","description":"Joe butters us up only to bring us down.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/640af29a-0270-4ab2-a3de-7ea24ada695f/sm/ep5419.jpg","duration":122,"publication_date":"2012-08-02T15:24:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-9","changefreq":"weekly","video":[{"title":"2012:E9 - My Blue Eyes!","description":"Rooster Teeth Animated Adventures #56 is a dramatic recreation of a true nerd's worst nightmare....damage to rare collectible cards!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0638c70-745a-432c-8eb6-dcebc47e2420/sm/ep5415.jpg","duration":77,"publication_date":"2012-08-01T14:44:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-psa-higgs-bozos","changefreq":"weekly","video":[{"title":"S1:E34 - PSA: Higgs Bozos","description":"The RvB Science Team discusses the Higgs Boson. Watch now and learn absolutely nothing about the thing that created absolutely everything.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-psa-higgs-bozos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3cb9578-2c13-417f-8f50-bf0246bd2f1b/sm/ep5407.jpg","duration":211,"publication_date":"2012-07-31T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-recap-2012-week-of-july-27th","changefreq":"weekly","video":[{"title":"2012:E1 - Week of July 27th ","description":"Michael has one too many...RT things to tell you about!","player_loc":"https://roosterteeth.com/embed/rt-recap-2012-week-of-july-27th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b5e6870-0f64-4e1b-8cf7-43e9f864a974/sm/ep5400.jpg","duration":184,"publication_date":"2012-07-27T23:22:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-town-season-1-nuts-nuts-nuts","changefreq":"weekly","video":[{"title":"S1:E2 - Nuts! Nuts! Nuts.","description":"This pigeon knows nuts. Really well.","player_loc":"https://roosterteeth.com/embed/nature-town-season-1-nuts-nuts-nuts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e7da4c4-3d43-4656-bc8e-1fce3e796558/sm/ep5399.jpg","duration":98,"publication_date":"2012-07-27T20:29:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-4","changefreq":"weekly","video":[{"title":"2012:E4 - Return of the Cricket","description":"The cricket is back. Chris and Kerry attempt to finally put it to rest. Meanwhile, Burnie and Gav fail to find a pen.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/019baa01-ff92-4161-9309-ebb042425fd7/sm/ep5394.jpg","duration":94,"publication_date":"2012-07-26T21:06:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-3","changefreq":"weekly","video":[{"title":"2012:E3 - Co-Pilot Calamity","description":"Rooster Teeth Animated Adventures #55 shows you how Geoff and Gus would handle a disaster in the air if they were pilots.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0fbee67-09cb-4f0d-899c-fbf86a0ab6de/sm/ep5387.jpg","duration":73,"publication_date":"2012-07-25T14:24:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-8","changefreq":"weekly","video":[{"title":"S10:E8 - Episode 8: Fall From Heaven","description":"S10:E8 - Episode 8: Fall From Heaven","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78aabe34-3477-4fd3-88fc-059bfa046428/sm/ep5364.jpg","duration":542,"publication_date":"2012-07-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nature-town-season-1-tortoise-and-the-rare-disease","changefreq":"weekly","video":[{"title":"S1:E1 - Tortoise and the Rare Disease","description":"Come on down to Nature Town!","player_loc":"https://roosterteeth.com/embed/nature-town-season-1-tortoise-and-the-rare-disease","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71d9d154-0703-4384-b9bc-3f4716855115/sm/ep5356.jpg","duration":147,"publication_date":"2012-07-20T14:53:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-43","changefreq":"weekly","video":[{"title":"2012:E43 - Drunken Donuts with Grace Helbig and Hannah Hart","description":"Burnie makes Grace Helbig from Daily Grace and Hannah Hart from My Drunk Kitchen take the Drunken Donuts challenge.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ccc2b25-5af8-4fa5-8f28-7b060b22fa9b/sm/ep5332.jpg","duration":150,"publication_date":"2012-07-18T22:16:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-46","changefreq":"weekly","video":[{"title":"2012:E44 - Hotdog Planes & \"Pranks\"","description":"Rooster Teeth Animated Adventures #54 explains the most efficient way to control an RC plane with an iPhone and a hot dog as well as reveals a nefarious plan by Burnie to break Gus' mind.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58258241-7a72-4aeb-a9d5-8107d920c2bc/sm/ep5319.jpg","duration":68,"publication_date":"2012-07-18T15:00:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-7","changefreq":"weekly","video":[{"title":"S10:E7 - Episode 7: Oversight","description":"S10:E7 - Episode 7: Oversight","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05f6d25c-9a56-4010-bd67-6ef479f16852/sm/ep5301.jpg","duration":371,"publication_date":"2012-07-17T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-37","changefreq":"weekly","video":[{"title":"2012:E37 - Attack of the Burnies OUTTAKES","description":"This is a special compilation of outtakes from RTAA Episode 50. Never before seen alternate takes bound to make you laugh your ass off!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e417c818-5e50-4b42-a248-3bc862c7ed7b/sm/ep5296.jpg","duration":70,"publication_date":"2012-07-16T14:43:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-33","changefreq":"weekly","video":[{"title":"2012:E33 - July 4th","description":"The office celebrates explosions. I mean patriotism.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82ee446-743b-4be8-b77c-1b4227ff9754/sm/ep5290.jpg","duration":132,"publication_date":"2012-07-12T22:28:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-35","changefreq":"weekly","video":[{"title":"2012:E35 - Anarchist Cooking with Burnie","description":"Rooster Teeth Animated Adventures #53 is a reminder of how stupid kids can be as well as the dangers of following instructions given to you on the internet.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a293b13b-ebe6-4996-b671-5dbf74a3d544/sm/ep5284.jpg","duration":68,"publication_date":"2012-07-11T18:13:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-6","changefreq":"weekly","video":[{"title":"S10:E6 - Episode 6: What's the \"I\" Stand For?","description":"S10:E6 - Episode 6: What's the \"I\" Stand For?","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b72f2b10-75e5-4d75-826c-f76bf3c11cf1/sm/ep5279.jpg","duration":476,"publication_date":"2012-07-10T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-29","changefreq":"weekly","video":[{"title":"2012:E29 - Kara Scare","description":"Kara's only fault is that she's too trusting.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/021bc6de-8408-4902-baf1-3cad0c786f5d/sm/ep5272.jpg","duration":92,"publication_date":"2012-07-06T19:38:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-25","changefreq":"weekly","video":[{"title":"2012:E25 - Burnie and the Cup","description":"Rooster Teeth Animated Adventures #52 is a tale of a care free spring break at the beach gone horribly wrong, with life altering mental trauma!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/941ced5e-e25f-4cd4-ab67-9cac79855390/sm/ep5238.jpg","duration":65,"publication_date":"2012-07-04T14:14:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-5","changefreq":"weekly","video":[{"title":"S10:E5 - Episode 5: The New Kid","description":"S10:E5 - Episode 5: The New Kid","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/212a2254-2a4a-4ec8-bee2-06dfe9bf7797/sm/ep5232.jpg","duration":430,"publication_date":"2012-07-03T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-19","changefreq":"weekly","video":[{"title":"2012:E19 - Joe's Day Out","description":"Joe doesn't take orders from anyone, including Miles and Brandon","player_loc":"https://roosterteeth.com/embed/rt-life-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0d87420-ca12-4016-aa86-cd75c888dfd8/sm/ep5217.jpg","duration":134,"publication_date":"2012-06-29T02:07:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-17","changefreq":"weekly","video":[{"title":"2012:E17 - That's Sway-cist!","description":"Rooster Teeth Animated Adventures #51 retells a story about Sway's experience visiting the old RT apartment office.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dbf9ad6-adcc-4b41-9e12-89dd4f8832d7/sm/ep5191.jpg","duration":65,"publication_date":"2012-06-27T14:07:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-psa-online-survival","changefreq":"weekly","video":[{"title":"S1:E33 - PSA: Online Survival","description":"The cast of Red vs. Blue lays down essential survival tips for navigating the internet.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-psa-online-survival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a30abc6-2477-4b76-a678-cfaca5dd7a9c/sm/ep5179.jpg","duration":250,"publication_date":"2012-06-26T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-9","changefreq":"weekly","video":[{"title":"2012:E9 - Drinking Game!","description":"RT puts their pint glasses to good use with a drinking game full of gross organic smoothies! RT and AH Pint Glasses on sale in the Rooster Teeth Store!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cc6c105-58c6-46cd-87e6-1687a7141dcd/sm/ep5163.jpg","duration":103,"publication_date":"2012-06-23T04:36:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-5","changefreq":"weekly","video":[{"title":"2012:E5 - Attack of the Burnies","description":"Rooster Teeth Animated Adventures #50 shows you the grim reality of a world over run by Burnie's alternate personalities. Be afraid.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/299c0398-67c3-475f-96ad-67b74b1e993e/sm/ep5139.jpg","duration":118,"publication_date":"2012-06-20T17:23:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-4","changefreq":"weekly","video":[{"title":"S10:E4 - Episode 4: Turbulence","description":"S10:E4 - Episode 4: Turbulence","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/721d15fa-0956-44e6-8272-7eacc0a3ab49/sm/ep5119.jpg","duration":354,"publication_date":"2012-06-19T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-47","changefreq":"weekly","video":[{"title":"2012:E47 - Office Murder","description":"Barbara's revenge.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8eae0b24-077a-4664-b0c3-d989e0117df4/sm/ep5094.jpg","duration":103,"publication_date":"2012-06-15T00:35:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-44","changefreq":"weekly","video":[{"title":"2012:E46 - Ice Cream Comic Con","description":"Rooster Teeth Animated Adventures #49 is a collection of stories from New York Comic Con all revolving around ice cream. Watch as people mistake Barbara for Kara and we get some helpful sales advice from a former ice cream salesman.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8faed5f0-4c35-4462-8a1a-001baaa0220f/sm/ep5067.jpg","duration":93,"publication_date":"2012-06-13T14:08:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-3","changefreq":"weekly","video":[{"title":"S10:E3 - Episode 3: Follow the Leader","description":"S10:E3 - Episode 3: Follow the Leader","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91c4b695-bfcb-453c-9f4c-6b4757efb47b/sm/ep5047.jpg","duration":349,"publication_date":"2012-06-12T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-28","changefreq":"weekly","video":[{"title":"2012:E28 - Joe the Cat talks to Brandon","description":"Brandon and Joe have a shouting match. Meanwhile, Burnie grew a beard.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/924988d9-124d-4c55-bc49-0aa10a0c4ab0/sm/ep5013.jpg","duration":82,"publication_date":"2012-06-07T21:31:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-30","changefreq":"weekly","video":[{"title":"2012:E30 - Drunk Burnie","description":"Rooster Teeth Animated Adventures #48 tells a tale of two Burnies. One sober, one drunk. Two men enter the ring, only one leaves. FIGHT!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f322f8e1-6b3a-4088-8e01-8018c12af3e2/sm/ep4999.jpg","duration":61,"publication_date":"2012-06-06T17:11:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-2","changefreq":"weekly","video":[{"title":"S10:E2 - Episode 2: Heavy Metal","description":"S10:E2 - Episode 2: Heavy Metal","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11d56661-76a9-4ee4-88ad-5fb61f723615/sm/ep4991.jpg","duration":321,"publication_date":"2012-06-05T02:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-23","changefreq":"weekly","video":[{"title":"2012:E23 - Brandon Skates, Chris Dances","description":"Brandon and Chris show off some of their lesser known skills.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/037d13e7-3602-4943-abce-e5557c597788/sm/ep4985.jpg","duration":89,"publication_date":"2012-05-31T23:52:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-22","changefreq":"weekly","video":[{"title":"2012:E22 - Chris Stories","description":"Rooster Teeth Animated Adventures #47 is an effective simulation showing you what it would be like to work next to Chris at the Rooster Teeth Studio. Be amazed at Chris' vast knowledge of nuts and his ability to figure out a conspiracy.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12151ccd-c5fa-4cb5-bea2-b39ea4c7cbea/sm/ep4967.jpg","duration":80,"publication_date":"2012-05-30T13:52:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-10-episode-1","changefreq":"weekly","video":[{"title":"S10:E1 - Episode 1: Revenants","description":"S10:E1 - Episode 1: Revenants","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-10-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01f61a45-0727-42d7-96d0-9a974a6977e3/sm/ep4962.jpg","duration":413,"publication_date":"2012-05-29T01:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-10","changefreq":"weekly","video":[{"title":"2012:E10 - Signs & Shotguns","description":"Rooster Teeth Animated Adventures #46 shows the combined detective prowess of Geoff and Gus as they attempt to solve the case of the mysterious sleeping Burnie. As an added bonus you also get to re-live the story of Burnie and the missing shotgun shells at no additional cost!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54c8e315-d8e7-4f51-9948-a9368a595564/sm/ep4914.jpg","duration":74,"publication_date":"2012-05-23T14:09:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-8","changefreq":"weekly","video":[{"title":"2012:E8 - Pest Control","description":"Gus leads the attack on the invading cricket army.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be1f1e90-4985-4c9b-994c-cd31fc971aeb/sm/ep4897.jpg","duration":147,"publication_date":"2012-05-18T14:52:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012","changefreq":"weekly","video":[{"title":"2012:E1 - Dance Floor Fight","description":"Rooster Teeth Animated Adventures #45 lets you know how to throw down Jersey Style in case your girlfriend is ever confronted by another man at a bar. Watch and learn!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e03216ca-adc1-4eb2-a85c-553ada817b3e/sm/ep4872.jpg","duration":96,"publication_date":"2012-05-16T14:09:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-48","changefreq":"weekly","video":[{"title":"2012:E48 - Burnie Makes Mess","description":"Gavin deals with the walking mess machine that is Burnie Burns.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aa5b517-de62-415d-bbc1-2db8edbffd72/sm/ep4841.jpg","duration":65,"publication_date":"2012-05-10T21:34:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-49","changefreq":"weekly","video":[{"title":"2012:E49 - Brandon & Chris Move Furniture","description":"Rooster Teeth Animated Adventures #44 is a recount of how Brandon and Chris should never consider a job in the furniture moving industry.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=161","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb25a520-75ff-4a6a-9d58-4cf565d4fd2d/sm/ep4828.jpg","duration":98,"publication_date":"2012-05-09T15:24:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-35","changefreq":"weekly","video":[{"title":"2012:E35 - Cheek Mario","description":"Miles and Chris reveal some unknown talent by playing the Super Mario theme using their cheeks. Oh and Gav gets hurt.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7811d6a7-3c66-4762-911c-7b830add190d/sm/ep4794.jpg","duration":110,"publication_date":"2012-05-03T20:33:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-36","changefreq":"weekly","video":[{"title":"2012:E36 - Resident A.I.","description":"Rooster Teeth Animated Adventures #43 explains why Ashley is awesome in Resident Evil 4 and it also gives some tips on how to play the game more effectively.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=156","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89d5cfcd-896e-4cc3-8b7a-66795df11c6a/sm/ep4773.jpg","duration":70,"publication_date":"2012-05-02T14:31:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-26","changefreq":"weekly","video":[{"title":"2012:E26 - Kung Shu","description":"Burnie and Gav go head to head in the ancient art of Kung Shu.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/799bc1d6-dcee-4145-8a74-a8c7a336d726/sm/ep4748.jpg","duration":296,"publication_date":"2012-04-28T00:29:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-24","changefreq":"weekly","video":[{"title":"2012:E24 - The Dolphin Experiment","description":"Rooster Teeth Animated Adventures #42 shows Gus' retelling of a crazy experiment from the 1960s involving a dolphin, a flooded house, a poor research assistant, sexual favors and LSD.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2552c05-9a8e-443d-a729-6f069517c985/sm/ep4722.jpg","duration":80,"publication_date":"2012-04-25T13:30:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-14","changefreq":"weekly","video":[{"title":"2012:E14 - Stuntman Burnie/Meerkat Gus","description":"Gavin challenges Burnie to jump into a car with style. Meanwhile, Gus tries some unorthodox selling techniques at PAX East.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf4fd112-efac-4727-8c8b-261579291351/sm/ep4682.jpg","duration":90,"publication_date":"2012-04-19T20:33:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-13","changefreq":"weekly","video":[{"title":"2012:E13 - Mass Defect","description":"Rooster Teeth Animated Adventures #41 is a spirited (and spoiler free) discussion about Mass Effect 3 and the level of respect that Shepard deserves.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b831648-96d0-4448-a79b-9542297dd8d2/sm/ep4669.jpg","duration":60,"publication_date":"2012-04-18T15:09:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-7","changefreq":"weekly","video":[{"title":"2012:E7 - HeliMike","description":"Gav messes with Michael some more.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0663a837-bd6b-4ebb-9580-34a418920d5e/sm/ep4640.jpg","duration":57,"publication_date":"2012-04-13T00:59:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-2","changefreq":"weekly","video":[{"title":"2012:E2 - RTX-travaganza","description":"Rooster Teeth Animated Adventures #40 gives a rundown of what RTX 2011 was like and what you can possibly expect in 2012.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=116","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2efdb046-b735-421c-a086-c5257cdc530c/sm/ep4618.jpg","duration":64,"publication_date":"2012-04-11T15:17:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-49","changefreq":"weekly","video":[{"title":"2012:E49 - John Erler on Jeopardy","description":"The Rooster Teeth staff anxiously watch the voice of Red vs. Blue's Agent North as he competes on Jeopardy.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20eab86c-8470-4d0f-9bc6-a2d7c0b8e7c2/sm/ep4604.jpg","duration":110,"publication_date":"2012-04-05T15:12:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-52","changefreq":"weekly","video":[{"title":"2012:E52 - Google Mind Tricks","description":"Rooster Teeth Animated Adventures #39 explores what the world would be like if we all lived by Google law, explains Monty's work and sleep state, and finally talks about how you could kill yourself with your own brain.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b520318-7200-4f34-9359-c9ba5a25794f/sm/ep4600.jpg","duration":84,"publication_date":"2012-04-04T19:35:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-46","changefreq":"weekly","video":[{"title":"2012:E46 - RTX: July 7th & 8th","description":"Check out more info and get your tickets at http://RTXEvent.com","player_loc":"https://roosterteeth.com/embed/rt-life-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74e067ec-fd33-4d4b-ad19-a816172d897e/sm/ep4581.jpg","duration":60,"publication_date":"2012-03-31T17:13:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-44","changefreq":"weekly","video":[{"title":"2012:E44 - Shocking and Waxing","description":"Burnie starts electrocuting some of the some staff. Meanwhile, Barbara takes issue with the amount of hair on Gav's arm.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3591ccf-c8c0-4438-a2c4-51ffe386b172/sm/ep4565.jpg","duration":117,"publication_date":"2012-03-29T19:13:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-41","changefreq":"weekly","video":[{"title":"2012:E41 - Impressions & Fishing","description":"Rooster Teeth Animated Adventures #38 shows Joel's amazing impression of Gus and the peculiarities of Gus' accent on the podcast versus his regular speaking voice. Also be amazed at the podcast's first attempt to make a commercial for the Fleshlight. Finally you will be treated to Geoff's analysis of the sport of fishing and why it is a good way to pass the time until you die.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c55262e3-4bd1-4a0a-b436-305055dfdf1b/sm/ep4545.jpg","duration":67,"publication_date":"2012-03-28T17:27:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-34","changefreq":"weekly","video":[{"title":"2012:E34 - Gavino Runs Amok","description":"Gav hasn't wasted a lot of time since stepping off the boat.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df46e13f-0d8c-4bf3-84f1-9739f05551d3/sm/ep4534.jpg","duration":138,"publication_date":"2012-03-24T21:27:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-murder-for-hire","changefreq":"weekly","video":[{"title":"S4:E8 - Murder for Hire","description":"It's not an easy job but someone has to apply for it.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-murder-for-hire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a89c5086-aa42-431d-be2b-8e73e374d299/sm/ep4533.jpg","duration":454,"publication_date":"2012-03-24T02:06:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-33","changefreq":"weekly","video":[{"title":"2012:E33 - Health Kick to the Balls","description":"Rooster Teeth Animated Adventures #37 gives advice on how to change people's perspectives about you, lets you know what a morning radio show with Marshall and Miles would sound like and also clues you in to how to execute the perfect crime...","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6aeb3fe0-1606-4dc5-b8ff-2bffe7251a3d/sm/ep4508.jpg","duration":84,"publication_date":"2012-03-21T19:57:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-24","changefreq":"weekly","video":[{"title":"2012:E24 - Achievement Horse","description":"The guys film an episode of Achievement Horse.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93637514-ab93-4a38-8ef9-0b444ab4fda4/sm/ep4486.jpg","duration":135,"publication_date":"2012-03-16T18:05:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-the-exorcism","changefreq":"weekly","video":[{"title":"S4:E7 - The Exorcism","description":"Recovered footage from an exorcism gone wrong.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-the-exorcism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/748fe287-bef8-4538-8012-9058c210c7ad/sm/ep4482.jpg","duration":235,"publication_date":"2012-03-16T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-26","changefreq":"weekly","video":[{"title":"2012:E26 - Joel vs Technology","description":"Rooster Teeth Animated Adventures #36 is a play by play breakdown of how Joel handles a technology crisis in the office.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=72","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/331590e5-cf2a-431c-b62e-cb82408349b1/sm/ep4476.jpg","duration":79,"publication_date":"2012-03-14T13:52:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-20","changefreq":"weekly","video":[{"title":"2012:E20 - Faith's Headphones","description":"Burnie conducts an experiment.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5073e2a9-4459-4270-a5a6-81bd88a71a5e/sm/ep4452.jpg","duration":51,"publication_date":"2012-03-07T23:20:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-19","changefreq":"weekly","video":[{"title":"2012:E19 - An Internet Conversation","description":"Rooster Teeth Animated Adventures #35 is a re-enactment of a typical conversation with a chat bot trying to talk to a real person.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=148","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a05af707-b590-445c-8279-26719849097f/sm/ep4445.jpg","duration":84,"publication_date":"2012-03-07T15:50:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-18","changefreq":"weekly","video":[{"title":"2012:E18 - Mike Jumps Over His Own Leg","description":"Seriously Read the title. Oh yeah, Mike's the intern.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/453005bb-2b8b-4b3c-9e5f-fd295a382401/sm/ep4435.jpg","duration":40,"publication_date":"2012-03-03T00:10:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-16","changefreq":"weekly","video":[{"title":"2012:E16 - Guy Movies VS Kara","description":"Burnie ambush interviews Kara, RT's office manager, about guy movies. The force is not with this one.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2386a950-6a1b-4167-a46a-7cd7890400ea/sm/ep4434.jpg","duration":248,"publication_date":"2012-03-02T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-15","changefreq":"weekly","video":[{"title":"2012:E15 - The Five Signs of Death","description":"Rooster Teeth Animated Adventures #34 helps you figure out how to determine if someone is truly dead or not. Matt tells a story helping you identify the five signs of death.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=145","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a21117c-0bd1-4439-ae00-9a9fefde8242/sm/ep4421.jpg","duration":67,"publication_date":"2012-02-29T16:33:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-13","changefreq":"weekly","video":[{"title":"2012:E13 - RTX Announcement Video","description":"Check out http://RTXEvent.com/ for more information, and Tickets!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/323bab52-800f-4bcd-9985-c6461a14255b/sm/ep4416.jpg","duration":60,"publication_date":"2012-02-27T23:27:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-and-the-nominees-are","changefreq":"weekly","video":[{"title":"S4:E6 - And the Nominees Are...","description":"The Motion Picture Academy of Arts & Sciences mulls over what should win the Oscar for Best Picture.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-and-the-nominees-are","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85cf76b1-cde6-4c7a-a5af-98aa2a60b902/sm/ep4402.jpg","duration":221,"publication_date":"2012-02-24T19:21:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-6","changefreq":"weekly","video":[{"title":"2012:E6 - Joel Goes Skydiving","description":"Rooster Teeth Animated Adventures #33 explains what happened to Joel when he decided to go skydiving once.\r\n\r\nAudio from RT Podcast: http://roosterteeth.com/podcast/episode.phpid=149","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f723e34-025c-4b1a-8341-539f7c4cb991/sm/ep4388.jpg","duration":101,"publication_date":"2012-02-23T01:48:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-critical-mission-failure","changefreq":"weekly","video":[{"title":"S4:E5 - Critical Mission Failure","description":"Commander Joel tries to go back and unlock the Miranda \"Achievement\" before the release of Mass Effect 3.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-critical-mission-failure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2044cae0-c7f0-427b-8160-9c12616e0c3e/sm/ep4364.jpg","duration":131,"publication_date":"2012-02-20T23:08:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012","changefreq":"weekly","video":[{"title":"2012:E1 - Balloon Fight","description":"No Mercy.","player_loc":"https://roosterteeth.com/embed/rt-life-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d20b47db-cc44-416b-b162-7d555c9f89f3/sm/ep4361.jpg","duration":185,"publication_date":"2012-02-18T02:43:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-51","changefreq":"weekly","video":[{"title":"2012:E51 - Weird Dreams and Shitty Jobs","description":"Rooster Teeth Animated Adventures #32 is a Gus extravaganza!! Watch as Gus stresses out about producing the podcast, Brandon gets kicked out of the podcast for getting too political, and Burnie tells the story of an old job Gus used to have where he ran wild with power.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/235657a7-2cc8-43db-89a6-82e2cd228d4c/sm/ep4333.jpg","duration":79,"publication_date":"2012-02-15T16:47:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-past-cast-history-blogs-of-yesteryear-1","changefreq":"weekly","video":[{"title":"S2:E18 - Past Cast: History Blogs of YesterYear","description":"Check out this rare behind the scenes video from one of Dylan's recording sessions.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-past-cast-history-blogs-of-yesteryear-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85d89403-85f1-4581-96b5-2f90a9be5743/sm/ep4326.jpg","duration":85,"publication_date":"2012-02-13T21:04:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-snapshot","changefreq":"weekly","video":[{"title":"S4:E4 - Snapshot","description":"Rooster Teeth presents a special Valentine's Day RT Short.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-snapshot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45a61021-1c7e-462a-87d7-cd0342836081/sm/ep4321.jpg","duration":303,"publication_date":"2012-02-11T04:12:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-chris-vs-sports-sponsor-cut","changefreq":"weekly","video":[{"title":"S2:E17 - Chris vs. Sports (Sponsor Cut)","description":"See all the questions that we cut from Chris's ambush interview.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-chris-vs-sports-sponsor-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d81c4c-ab5e-4aaa-a3b6-621bdcbd5664/sm/ep4304.jpg","duration":241,"publication_date":"2012-02-10T03:19:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-41","changefreq":"weekly","video":[{"title":"2012:E41 - RvB Season 9 Soundtrack Music Video Contest: 1st Place","description":"Congratulations to user Fablerunner4 on the win!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07360b33-d563-47bc-8ba9-90f708c6f3c6/sm/ep4299.jpg","duration":211,"publication_date":"2012-02-09T00:01:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-39","changefreq":"weekly","video":[{"title":"2012:E39 - RvB Season 9 Soundtrack Music Video Contest: 2nd Place","description":"Congratulations to user Easyrider on the win!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe6c69ae-9241-48b9-9dc2-7635567551c4/sm/ep4298.jpg","duration":188,"publication_date":"2012-02-09T00:00:02.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-38","changefreq":"weekly","video":[{"title":"2012:E38 - RvB Season 9 Soundtrack Music Video Contest: 3rd Place","description":"Congratulations to user Slithe on the win!","player_loc":"https://roosterteeth.com/embed/rt-life-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaad9928-2a37-46c0-af86-afacc056b753/sm/ep4297.jpg","duration":106,"publication_date":"2012-02-08T23:41:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-43","changefreq":"weekly","video":[{"title":"2012:E43 - Disease Movie Theatre","description":"Rooster Teeth Animated Adventures #31 describes the ultimate disease apocalypse movie and then describes the exact theater you do not want to watch this movie at.\r\n\r\nAudio from RT Podcast: roosterteeth.com/podcast/","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee1f4d24-4d23-4814-a648-ad968f46ba62/sm/ep4295.jpg","duration":88,"publication_date":"2012-02-08T15:43:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-37","changefreq":"weekly","video":[{"title":"2012:E37 - Chris vs. Sports","description":"Burnie grills Chris on sports trivia.","player_loc":"https://roosterteeth.com/embed/rt-life-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44651ced-869d-4f3c-b059-547857e5c7ba/sm/ep4284.jpg","duration":339,"publication_date":"2012-02-03T23:08:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-38","changefreq":"weekly","video":[{"title":"2012:E38 - Left 4 Trek","description":"Rooster Teeth Animated Adventures #30 is an explanation of Japanese story telling (according to Burnie), every great Star Trek story ever told and strategies for good teamwork while playing Left 4 Dead.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b3641c2-9e7e-4501-9a11-e618cb6764ce/sm/ep4273.jpg","duration":81,"publication_date":"2012-02-01T19:36:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-cast-season-1-past-cast-bloopers-part-2","changefreq":"weekly","video":[{"title":"S1:E8 - Past Cast Bloopers Part 2","description":"S1:E8 - Past Cast Bloopers Part 2","player_loc":"https://roosterteeth.com/embed/past-cast-season-1-past-cast-bloopers-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bee5ac25-fc9b-4e98-8173-0fd1f2d9455f/sm/ep4266.jpg","duration":88,"publication_date":"2012-01-27T23:30:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-31","changefreq":"weekly","video":[{"title":"2012:E31 - Joel Meets a Panther","description":"Rooster Teeth Animated Adventures #29 is Joel's experience meeting a panther while at work. Handy panther tips abound!","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc1cb7ca-06b0-4f3e-aac6-2ed211118404/sm/ep4245.jpg","duration":85,"publication_date":"2012-01-25T17:08:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-passing-through","changefreq":"weekly","video":[{"title":"S4:E3 - Passing Through","description":"S4:E3 - Passing Through","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-passing-through","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9810300-a386-4e6b-8b29-e1ca0118e8f1/sm/ep4244.jpg","duration":145,"publication_date":"2012-01-24T20:58:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-27","changefreq":"weekly","video":[{"title":"2012:E27 - Saltine Challenge","description":"2012:E27 - Saltine Challenge","player_loc":"https://roosterteeth.com/embed/rt-life-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/265b3009-90d6-4444-ba74-e23b13df612a/sm/ep4237.jpg","duration":97,"publication_date":"2012-01-21T22:52:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-27","changefreq":"weekly","video":[{"title":"2012:E27 - Dishwashers and Bad Fliers","description":"Rooster Teeth Animated Adventures #28 covers Burnie's quest to purchase a dishwasher for the office and the last will and testament of a travelling salesman.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/654c8989-29ff-43b9-8f3e-233f8756c87b/sm/ep4226.jpg","duration":71,"publication_date":"2012-01-17T22:31:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2012-22","changefreq":"weekly","video":[{"title":"2012:E22 - Water Balloon Bashing","description":"2012:E22 - Water Balloon Bashing","player_loc":"https://roosterteeth.com/embed/rt-life-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81477762-dd84-492c-a1d2-a7460751c077/sm/ep4217.jpg","duration":50,"publication_date":"2012-01-14T06:18:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-21","changefreq":"weekly","video":[{"title":"2012:E21 - Robot Future Toys","description":"Rooster Teeth Animated Adventures #27 contains a spirited discussion about the proper pronunciation of the name of the protagonist from the Portal series. You will also be treated to a discussion between Burnie and his wife where she tries to describe how the Covenant from Halo look.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24ea7a3e-d472-49c2-b930-fcc0c1307820/sm/ep4196.jpg","duration":65,"publication_date":"2012-01-11T18:49:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-cast-season-1-past-cast-history-blogs-of-yesteryear-guevara","changefreq":"weekly","video":[{"title":"S1:E7 - Past Cast: History Blogs of YesterYear","description":"Gus shirt available at: http://roosterteeth.com/store/product.phpid=287","player_loc":"https://roosterteeth.com/embed/past-cast-season-1-past-cast-history-blogs-of-yesteryear-guevara","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/937ac536-4f54-4185-b2a5-5c7736476a6d/sm/ep4188.jpg","duration":134,"publication_date":"2012-01-07T00:27:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-2012-18","changefreq":"weekly","video":[{"title":"2012:E18 - Award for Drink Ordering","description":"Rooster Teeth Animated Adventures #26 is Burnie talking about presenting an award at the Inside Gaming Awards and Gus describing a typical night at a bar with Chris.\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan\r\n\r\nAudio from Rooster Teeth Podcast: http://roosterteeth.com/podcast/","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37fb3c03-7e61-4137-af22-b9647a34c04e/sm/ep4170.jpg","duration":76,"publication_date":"2012-01-04T18:41:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-cast-season-1-past-cast-bloopers","changefreq":"weekly","video":[{"title":"S1:E6 - Past Cast Bloopers","description":"S1:E6 - Past Cast Bloopers","player_loc":"https://roosterteeth.com/embed/past-cast-season-1-past-cast-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a69b84a9-9713-4d22-a22c-18cc995dc65e/sm/ep4152.jpg","duration":98,"publication_date":"2011-12-31T00:26:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-michael-meets-a-drug-dealer","changefreq":"weekly","video":[{"title":"2011:E3 - Michael Meets a Drug Dealer","description":"Rooster Teeth Animated Adventures #25 tells how Michael met a drug dealer in New York City with an offer that was difficult to refuse...\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan\r\n\r\nAudio from Rooster Teeth Podcast: http://roosterteeth.com/podcast/episode.phpid=136","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-michael-meets-a-drug-dealer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd4eead5-37fa-46a0-b861-a299e9243566/sm/ep4141.jpg","duration":71,"publication_date":"2011-12-28T21:46:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2011","changefreq":"weekly","video":[{"title":"2011:E1 - Eggnog Wrestling","description":"Let's get it on!","player_loc":"https://roosterteeth.com/embed/rt-life-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/565dc96f-1a69-49ca-abd4-fcae2d0b3c5b/sm/ep4130.jpg","duration":141,"publication_date":"2011-12-24T19:13:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-2","changefreq":"weekly","video":[{"title":"S1:E241 - The Tester 3 Commentary Ep. 2","description":"Fan-favorite Egoraptor was so close to getting cut, how do the contestants react? Who cares. There are clowns.","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dad478f3-d108-4b28-bc39-a23809a1be03/sm/the-tester-logo-400-x-224.jpg","duration":1825,"publication_date":"2012-02-17T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021712-bobby-kotick-asuras-wrath-mass-effect-3","changefreq":"weekly","video":[{"title":"S1:E121 - Hard News 02/17/12 (Bobby Kotick, Asura's Wrath, Mass Effect 3)","description":"Today on Hard News Kotick is moving Coke, Ryu is facing Asura's Wrath, and Mass Effect 3 is going to space.\r\nBobby Kotick to Coke - http://www.screwattack.com/news/bobby-kotick-now-director-coca-cola-company\r\nAsura's Wrath DLC - http://www.screwattack.com/news/ryu-will-appear-asura%E2%80%99s-wrath-crossover-dlc\r\nMass Effect 3 in space - http://www.screwattack.com/news/mass-effect-going-spaaaace\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-021712-bobby-kotick-asuras-wrath-mass-effect-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecffa9de-10a3-48b6-9f85-85cbfe116d79/sm/Cap-Asuras-Wrath-DLC-Tease.jpg","duration":117,"publication_date":"2012-02-17T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021612","changefreq":"weekly","video":[{"title":"S1:E120 - Hard News 02/16/12","description":"Today on Hard News a bigger budget means a bigger Double Fine Adventure, the Vita is in trouble, and Assassin's Creed 3 is finally happening\r\nDouble Fine Adventure budget - http://www.screwattack.com/news/double-fine-adventure-will-be-drm-free\r\nPS Vita - http://www.screwattack.com/news/vita-developers-might-be-jumping-ship-3ds\r\nAssassin's Creed 3 release date - http://www.screwattack.com/news/assassins-creed-iii-releasing-october-30\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-021612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f6a6817-773e-4fb0-bc6e-ff0bb38cbb8d/sm/assassins-creed-revelations-4_0.jpg","duration":138,"publication_date":"2012-02-16T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-021512","changefreq":"weekly","video":[{"title":"S1:E240 - SideScrollers Extended 02/15/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-021512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":648,"publication_date":"2012-02-15T09:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"slowly-recovering\"","changefreq":"weekly","video":[{"title":"S1:E51 - SideScrollers - \"Slowly Recovering\"","description":"Still tired from the marathon, we reflect back on what was an amazing 24 hours.\r\nWatch the Extended Cut here! - http://bit.ly/A39dwS\r\nWatch the videos mentioned by clicking the link below!\r\nPeeing on Machinima - http://bit.ly/A7Kxfr\r\nShaq Fu Destruction (WITH GUNS) - http://bit.ly/A503wG\r\nTester Season 3 Episode 1 Commentary - http://bit.ly/y3TkRQ\r\nBest EVER! - Love Stories - http://bit.ly/wbrcOv\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"slowly-recovering\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd791b2f-1096-4c5d-ba59-6ef67c1f6a89/sm/chadface.PNG","duration":1732,"publication_date":"2012-02-14T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-nicks-best-ever-love-story","changefreq":"weekly","video":[{"title":"S1:E239 - [Advantage] Nick's Best EVER Love Story","description":"An extra interview from the latest Best EVER episode! What is Nick's favorite video game love story?","player_loc":"https://roosterteeth.com/embed/advantage-nicks-best-ever-love-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f80860c-7e77-4515-a12b-7f5ff1c30c2e/sm/THUMB_NickLoveStory.jpg","duration":88,"publication_date":"2012-02-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021412","changefreq":"weekly","video":[{"title":"S1:E118 - Hard News 02/14/12","description":"Today on Hard News Metal Gear Solid Online is going offline, Final Fantasy 14 might be taking some servers offline, and we might have a line on Ubisoft's 2012 lineup.\r\nMGS Online going down - http://www.screwattack.com/news/metal-gear-online-shutting-down-june-12th\r\nFinal Fantasny 14 - http://www.screwattack.com/news/update-numerous-ffxiv-servers-shut-down-or-not\r\nUbisoft 2012 lineup - http://www.screwattack.com/news/rumor-ubisoft-2012-lineup-has-hit-internets\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-021412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d726761-d6e5-48fe-89a5-8dae7db8dccf/sm/metal-gear-solid-wallpaper-5.jpg","duration":120,"publication_date":"2012-02-14T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-love-story","changefreq":"weekly","video":[{"title":"S1:E3 - The Best EVER: Love Story","description":"Let's face it, more often than not video game romances absolutely suck. Yet every so often, a rare gem pops up. What's the ScrewAttack crew's favorite love stories? What is your favorite?","player_loc":"https://roosterteeth.com/embed/the-best-ever-love-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffb11ab2-2b16-464e-b1c7-87dc74822c6e/sm/THUMB_BestLoveStory.jpg","duration":222,"publication_date":"2012-02-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/were-gonna-pee-on-the-machinima-guys","changefreq":"weekly","video":[{"title":"S1:E238 - We're Gonna Pee on the Machinima Guys","description":"Yeah, we said it. If you live in the SoCal area you can also come join in on the peeing, live on February 21st from 6pm-10pm! We'll be drawing the games that will be played for ScrewAttack vs Machinima on Screwin' Around Tuesday the 14th! ","player_loc":"https://roosterteeth.com/embed/were-gonna-pee-on-the-machinima-guys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8218a8ef-2f0d-4c2e-a952-333181e432d6/sm/021312TigerThumb.jpg","duration":149,"publication_date":"2012-02-12T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-chad-and-dad-shooting-contest","changefreq":"weekly","video":[{"title":"S1:E237 - [Advantage Content] Chad and Dad Shooting Contest","description":"Between the sensei and the grasshopper, who is the best sharpshooter? The better question may be who has the most ammo?","player_loc":"https://roosterteeth.com/embed/advantage-content-chad-and-dad-shooting-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4747004e-20fc-4408-ba10-a100ccda40bb.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":68,"publication_date":"2012-02-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chad-and-his-dad-save-the-world-from-shaq-fu","changefreq":"weekly","video":[{"title":"S1:E235 - Chad And His Dad Save The World From Shaq Fu","description":"In a world still populated by Shaq Fu cartridges, two heroes set out to make things right...","player_loc":"https://roosterteeth.com/embed/chad-and-his-dad-save-the-world-from-shaq-fu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f8259588-a96d-4f67-a460-56a787316de2.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":153,"publication_date":"2012-02-11T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/machinima-responds-to-our-challenge","changefreq":"weekly","video":[{"title":"S1:E234 - Machinima Responds to Our Challenge!","description":"We threw our the challenge and Machinima has officially responded. So what do they have to say and what games do they want to compete on?","player_loc":"https://roosterteeth.com/embed/machinima-responds-to-our-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2d02c80-9d7d-4e84-bba6-c1cae9d75b1e/sm/021112MachinimaResponse.jpg","duration":217,"publication_date":"2012-02-11T08:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-021012","changefreq":"weekly","video":[{"title":"S1:E117 - Hard News 02/10/12","description":"Today on Hard News Blizzard and Valve fight over Dota, Mario Karts on Facebook, and we're having a birthday!\r\nDota lawsuit - http://www.screwattack.com/news/blizzard-suing-valve-over-dota-2\r\nMario Kart on Facebook - http://www.screwattack.com/news/mario-kart-facebook-app-development\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-021012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1173ef4c-1f5c-4097-ba1d-3b6d4145278d/sm/DotA-2-Heroes.jpg","duration":89,"publication_date":"2012-02-10T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-tester-3-commentary-ep-1","changefreq":"weekly","video":[{"title":"S1:E233 - The Tester 3 Commentary Ep.1","description":"The Tester is back, and so is our commentary!","player_loc":"https://roosterteeth.com/embed/the-tester-3-commentary-ep-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/ce2d687c-aa49-4c58-b9a4-63d6c869e4fb.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":1839,"publication_date":"2012-02-09T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020912","changefreq":"weekly","video":[{"title":"S1:E116 - Hard News 02/09/12","description":"Today on Hard News an interesting movie game, Double Fine gets a kickstart, and people want Apple out of Foxconn.\r\nBattleship game - http://www.screwattack.com/news/battleship-movie-tie-game-be-fps\r\nDouble Fine Kickstarter - http://www.screwattack.com/news/update-double-fine-creates-kickstarter-adventure-game\r\nEthical iPhones - http://www.screwattack.com/news/consumers-demand-iphone-5-be-built-under-ethical-conditions\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-020912","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e02246f-5c3a-4f18-8e1d-41161e4ee458/sm/LOGO3_0.jpg","duration":150,"publication_date":"2012-02-09T16:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020812","changefreq":"weekly","video":[{"title":"S1:E115 - Hard News 02/08/12","description":"Today on Hard News Sackboy might go racing, Americans won't have the Passport, and what's the Space Core doing in Skyrim?\r\nLittle Big Planet Karting - http://www.screwattack.com/news/rumor-littlebigplanet-getting-kart-racer-wps-move-wheel\r\nPS Vita Passport - http://www.screwattack.com/news/no-psp-ps-vita-transfer-service-north-america\r\nSpace Core in Skyrim - http://www.screwattack.com/news/valve-teams-bethesda-spaaaaaace\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-020812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a83e98c-5f53-4231-bd0f-73a6b2695607/sm/space_core_wallpaper_by_deathonabun-d3eq8r6.jpg","duration":142,"publication_date":"2012-02-08T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-020812","changefreq":"weekly","video":[{"title":"S1:E232 - SideScrollers Extended 02/08/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-020812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/eaa62079-7285-4918-8ab6-3bf960a69388.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":589,"publication_date":"2012-02-07T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"dead-weight\"","changefreq":"weekly","video":[{"title":"S1:E50 - SideScrollers - \"Dead Weight\"","description":"Our 24-Hour Anniversary Marathon is coming up! We talk about some memories, and plans for this year!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio020812.mp3\r\nLike the Middle Segment music? It's by STARSHIP AMAZING! Support their work by purchasing their music! - http://tinyurl.com/4gqum64\r\nWatch the Extended Sidescrollers here! - http://bit.ly/zL8YG6\r\nWatch the videos mentioned by clicking the link below!\r\nClip of the Week - Tommy's Treehouse - http://bit.ly/wSEXuO\r\nThe Completionist: Scott Pilgrim vs The World - http://bit.ly/wWrERN\r\nJared's Review: Final Fantasy XIII-2 - http://bit.ly/yJWTMl\r\nJared's Review: Kingdoms of Amalur - http://bit.ly/xlh39C\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"dead-weight\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/c1eed074-6637-4227-b92b-8475b6988d4c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2743,"publication_date":"2012-02-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020712","changefreq":"weekly","video":[{"title":"S1:E114 - Hard News 02/07/12","description":"Today on Hard News David Jaffe will no longer eat, sleep, play, Notch might be supporting the next Tim Schafer game, and Activison has a new cash cow.\r\nDavid Jaffe leaves Eat, Sleep, Play - http://www.screwattack.com/news/david-jaffe-leaves-own-studio-fresh-start\r\nNotch offers Psychonauts help -  http://www.screwattack.com/news/todays-takeaway-developers-could-team-make-psychonauts-2\r\nSkylanders Giants - http://www.screwattack.com/news/activision-thinks-we-are-ready-skylanders-giants\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-020712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95ef4fb3-a3d2-48d3-815c-268607fb0867/sm/Skylanders2.jpg","duration":155,"publication_date":"2012-02-07T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-24-hour-marathon-promo-take-15","changefreq":"weekly","video":[{"title":"S1:E231 - [Advantage] 24 Hour Marathon Promo Take #15","description":"Generally we're pretty good about shooting promos but this one started off bad and went straight down hill.","player_loc":"https://roosterteeth.com/embed/advantage-24-hour-marathon-promo-take-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab354739-6f54-4b6f-8d6f-22eab61aaf3c/sm/020712Advantage.jpg","duration":68,"publication_date":"2012-02-07T10:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/our-24-hour-gaming-marathon-starts-february-10th","changefreq":"weekly","video":[{"title":"S1:E230 - Our 24 Hour Gaming Marathon Starts February 10th!","description":"Mark your calendars! To celebrate our 6th birthday this month we're doing another marathon. 24 straight hours of gaming insanity starts this Friday at Noon CST! Tune in for prizes, games and a video scavenger hunt!","player_loc":"https://roosterteeth.com/embed/our-24-hour-gaming-marathon-starts-february-10th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":46,"publication_date":"2012-02-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-tommys-treehouse","changefreq":"weekly","video":[{"title":"S1:E151 - Clip of the Week - Tommy's Treehouse","description":"In the late '80s, King Koopa graced American public access channels with his child-targeted show. If THAT sounds messed up to you... well, there have been worse influences.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-tommys-treehouse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/793e2365-f8f1-4ed6-aaea-fe146ac73f90/sm/CotWRotator_0.png","duration":237,"publication_date":"2012-02-03T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020312","changefreq":"weekly","video":[{"title":"S1:E112 - Hard News 02/03/12","description":"Today on Hard News Team Fortress 2 hints, THQ delays, and Twisted Metal is pushed back a few days in Europe.\r\nTeam Fortress 2 hints - http://www.screwattack.com/news/valve-hints-new-tf2-content-2012\r\nTHQ game delays - http://www.screwattack.com/news/thq-game-delays-incoming-and-more-financial-woes\r\nTwisted Metal delays - http://www.screwattack.com/news/twisted-metal-delayed-censorship-europe\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter - SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-020312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8abd364f-fad3-4aad-8fa0-06583b02a2f4/sm/Twisted_Metal_-_PS3_-_1.jpg","duration":132,"publication_date":"2012-02-03T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-jareds-new-favorite-game-arrives","changefreq":"weekly","video":[{"title":"S1:E229 - [Advantage] Jared's New Favorite Game Arrives","description":" Coming off Jared's review of Final Fantasy XIII-2, we thought we'd show you what it was actually like when we received the game and showed it to Jared. With all that said, rest assured that Jared went in to this review with 100% open mind.","player_loc":"https://roosterteeth.com/embed/advantage-jareds-new-favorite-game-arrives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91ec7a45-d5fc-481b-9bc0-e644e491029b/sm/020312AdvantageThumb.jpg","duration":88,"publication_date":"2012-02-02T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020212","changefreq":"weekly","video":[{"title":"S1:E111 - Hard News 02/02/12","description":"Today on Hard News go to Austin for The Old Republic, Rage comes to Macs, and Ubisoft won't let you play their games.\r\nOld Republic Guild Summit - http://www.screwattack.com/news/bioware-looking-face-time-swtor-guild-leaders\r\nRage to Mac - http://www.screwattack.com/news/rage-comes-mac-new-format\r\nUbisoft DRM - http://www.screwattack.com/news/todays-takeaway-ubisoft-drm-will-punish-customers\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/projared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-020212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db96fcf4-1f22-4422-9b7b-73eb212256e8/sm/rage-game-wallpapers-1024x768.jpg","duration":132,"publication_date":"2012-02-02T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-020112","changefreq":"weekly","video":[{"title":"S1:E110 - Hard News 02/01/12","description":"Today on Hard News a Simpsons game you actually want to play, THQ in trouble, and is the Vita's digital download gonna cost more than physical games?\r\nSimpsons Arcade - http://www.screwattack.com/news/simpsons-arcade-game-comes-ps3\r\nTHQ lay-offs - http://www.screwattack.com/news/more-thq-lay-offs-inbound-and-nasdaq-leaves-warning\r\nDigital Vita games - http://www.screwattack.com/news/digital-vita-games-be-cheaper-cartridge-counterparts\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter Jared - Http://www.twitter.com/ProJared\r\nTwitter SA - Http://www.twitter.com/ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook SA - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-020112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43312fd1-68b7-4038-8cf9-fb10ad392cf8/sm/PSVitaLarge.jpg","duration":146,"publication_date":"2012-02-01T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-020112","changefreq":"weekly","video":[{"title":"S1:E228 - SideScrollers Extended 02/01/12","description":"See how Jared really feels about kids.","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-020112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":607,"publication_date":"2012-01-31T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"super-wii-64-cube\"","changefreq":"weekly","video":[{"title":"S1:E49 - SideScrollers - \"Super Wii 64 Cube\"","description":"It's the beginning of February, which means GAMEbruary!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio020112.mp3\r\nWatch the Extended Sidescrollers here! - http://bit.ly/xTkeqT\r\nWatch the videos mentioned by clicking the link below!\r\nGame Theory: War Crimes - http://bit.ly/xwPtm3\r\nThe Best EVER! Power Ups - http://bit.ly/wKPfUN\r\nIndie Game Wave Cave - http://bit.ly/yXJLwa\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"super-wii-64-cube\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85fcb85d-4a0b-4924-b2ab-d40995da29dd/sm/tolietfood.jpg","duration":2896,"publication_date":"2012-01-31T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-vs-the-internet-challenge-1","changefreq":"weekly","video":[{"title":"S1:E227 - ScrewAttack vs the Internet - Challenge #1","description":"Our year long quest to dominate the internet begins here. Who are we challenging? Will they accept? Either way, we're going to have a great time. ALL AGES ARE WELCOME! Dave and Buster's require an adult 25 or older for every 6 guests under the age of 21. Under the age of 21 will not be able to enter the building by themselves.\r\nGet more info on the ScrewAttack vs the Internet info page here.\r\nCan you attend? Let us know on the event's Facebook page.","player_loc":"https://roosterteeth.com/embed/screwattack-vs-the-internet-challenge-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8860601-d033-412a-ab68-df9a2cf3eadd/sm/013012vsTheInternetThumb.jpg","duration":79,"publication_date":"2012-01-30T22:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-013012","changefreq":"weekly","video":[{"title":"S1:E108 - Hard News 01/30/12","description":"Today on Hard News the Ace has a new case, Halo 4 scams, and is Nintendo considering Mario 3DS DLC?\r\nNew Ace Attorney - http://www.screwattack.com/news/japan-ace-attorney-5-announced\r\nHalo 4 Beta Scam - http://www.screwattack.com/news/microsoft-trying-claim-ownership-false-halo-4-beta-domain\r\nSuper Mario 3D Land DLC - http://www.screwattack.com/news/iwata-teases-super-mario-3d-land-may-get-dlc\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-013012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/384c116b-9141-4bdc-9d3b-dd59555624ea/sm/super_mario_3D_land.jpg","duration":122,"publication_date":"2012-01-30T16:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-death-battle-q-a-2","changefreq":"weekly","video":[{"title":"E:E2 - DEATH BATTLE Q&A #2","description":"Originally recorded in late 2011, Wiz and Boomstick answer even more questions!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-death-battle-q-a-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98dc7d41-548c-4057-8a66-89aece4f8995/sm/2031125-1462376564005-DBQA2.jpg","duration":237,"publication_date":"2012-01-30T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-extras-death-battle-q-a-1","changefreq":"weekly","video":[{"title":"E:E1 - DEATH BATTLE Q&A #1","description":"Originally recorded way back in 2011, WIz and Boomstick step up to answer some questions from the viewers!","player_loc":"https://roosterteeth.com/embed/death-battle-extras-death-battle-q-a-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1fba29a-a9c4-4e2d-a0ff-fbe90fd3a4bb/sm/2031125-1462376387052-DBQA1.jpg","duration":271,"publication_date":"2012-01-30T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/take-the-avgn-to-bed-with-you","changefreq":"weekly","video":[{"title":"S1:E226 - Take the AVGN to bed with you ","description":" You can own the AVGN for yourself and rub Shit Pickle all over your body by simply picking one up at ScrewAttackStore.com!\r\nAVGN Plush - $17.98\r\nShit Pickle Plush - $17.98\r\nAVGN and Shit Pickle Plush Pack - $30\r\nAVGN Vol. 5 and Plush Combo - $35","player_loc":"https://roosterteeth.com/embed/take-the-avgn-to-bed-with-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9d8919d-16b8-495b-b82e-cfbe7587eed1/sm/013012AVGNThumb_0.jpg","duration":42,"publication_date":"2012-01-29T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/checking-out-wave-cave","changefreq":"weekly","video":[{"title":"S1:E225 - Checking out Wave Cave","description":"We know there are plenty of indie game devs out there, and sometimes you find one of them making a neat game like Wave Cave.","player_loc":"https://roosterteeth.com/embed/checking-out-wave-cave","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":104,"publication_date":"2012-01-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-pokemon-relief-fund","changefreq":"weekly","video":[{"title":"S1:E150 - Clip of the Week - The Pok?mon Relief Fund","description":" Sometimes giving a little bit will help the ones you love a lot.\r\nMad props to Chad's brother-in-law Will for suggesting this depressing, depressing idea...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-pokemon-relief-fund","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0818f08-997d-4792-8381-5f122f052166/sm/012712ClipThumb.jpg","duration":127,"publication_date":"2012-01-27T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-jareds-best-ever-power-up","changefreq":"weekly","video":[{"title":"S1:E224 - [Advantage] Jared's Best EVER Power Up","description":"A bonus deleted scene from the latest Best EVER episode! What is Jared's favorite power up?\r\nMissed the episode? Watch it here!","player_loc":"https://roosterteeth.com/embed/advantage-jareds-best-ever-power-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/315079a7-fffe-4e07-b90f-27b66a268afe/sm/Samus03--article_image.jpg","duration":130,"publication_date":"2012-01-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012712","changefreq":"weekly","video":[{"title":"S1:E107 - Hard News 01/27/12","description":"Today on Hard News EA reckons you'll need an offline pass, Nintendo has big plans and near field communications come to a wider audience.\r\nKingdoms of Amalur offline pass - http://www.destructoid.com/kingdoms-of-amalur-hides-seven-quests-behind-online-pass-220459.phtml\r\nNintendo Network - http://www.screwattack.com/news/nintendos-new-network\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - http://www.facebook.com/pro.jared\r\nFacebook SA - http://www.facebook.com/officialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-012712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/597dcb60-eff4-4143-a248-a5e768eceb28/sm/KingdomsOfAmalurReckoning_1.jpg","duration":148,"publication_date":"2012-01-27T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-power-up","changefreq":"weekly","video":[{"title":"S1:E2 - The Best EVER: Power Up","description":"What is the best Power Up ever? The ScrewAttack Crew relives their fondest memories of the over-powering, action-packed, and often bat-shit-crazy Power Ups they've used.\r\nWhat is your favorite Power Up? Let us know in the comments below! (That totally rhymes...)","player_loc":"https://roosterteeth.com/embed/the-best-ever-power-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/724edcd1-bc8e-4a4b-9cb7-eee75a298397/sm/THUMB_PowerUps.jpg","duration":240,"publication_date":"2012-01-26T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/catching-up-with-square-painter","changefreq":"weekly","video":[{"title":"S1:E223 - Catching up with Square Painter","description":"When we were at MAGFest we caught up with the kickass artist, Square Painter!\r\nIf you want to win that awesome Metroid piece by Square Painter send your submission of a great old school videogame memory, send your entries to Adam.Shub@Hotmail.com!\r\nCheck out Adam's work and pick some up yourself at ScrewAttackStore!","player_loc":"https://roosterteeth.com/embed/catching-up-with-square-painter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbc3a806-dab4-4e76-9f33-086207fa6a1a/sm/SquarePainterMetroidArt.jpg","duration":153,"publication_date":"2012-01-26T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012612","changefreq":"weekly","video":[{"title":"S1:E106 - Hard News 01/26/12","description":"Today on Hard News Nintendo might have listened to the Wii U talk, Neo Geo is returning to pockets, and Witcher 2 finally makes its way to Xbox.\r\nWii U facts and rumors - http://www.screwattack.com/news/improved-wii-u-arrives-just-time-christmas\r\nNeo Geo Portable - http://www.screwattack.com/news/retro-gamers-rejoice-classic-gaming-platform-returns\r\nWitcher 2 - http://www.screwattack.com/news/witcher-2-gets-official-release-date-xbox-360\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-012612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06da3ee4-6de4-4954-a34f-b48d41f84382/sm/wii-u-GR.jpg","duration":134,"publication_date":"2012-01-26T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012512","changefreq":"weekly","video":[{"title":"S1:E105 - Hard News 01/25/12","description":"Today on Hard News Blizzcon is put on hold, some great Xbox rumors, and Zynga gets caught copying a game.\r\nNo Blizzcon in 2012 - http://www.screwattack.com/news/blizzcon-taking-year\r\nNext Xbox rumors - http://www.screwattack.com/news/todays-takeaway-nextbox-rumors-spiral-out-control\r\nZynga steals a game idea - http://www.screwattack.com/news/zynga-called-out-their-upcoming-game\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-012512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17bea971-79b4-4728-9c80-d401f0db839a/sm/dream-heights-tiny-tower.jpg","duration":153,"publication_date":"2012-01-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-012512","changefreq":"weekly","video":[{"title":"S1:E222 - SideScrollers Extended 01/25/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-012512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":464,"publication_date":"2012-01-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-blowing-for-nuggets","changefreq":"weekly","video":[{"title":"S1:E48 - SideScrollers - \"Blowing for Nuggets\"","description":"Some people will do anything for food. We also talk about how we feel about save points these days!\r\nMiddle Topic Segment music done by the incredible Starship Amazing! - http://starshipamazing.com/\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio012512.mp3\r\nWatch the Extended Sidescrollers here! - http://bit.ly/wnnKud\r\nWatch the videos mentioned by clicking the link below!\r\nReboot or Retro: Kirby - http://bit.ly/y4IxG3\r\nDia de Huevos - http://bit.ly/ycQ5cO\r\nMAGfest Robots - http://bit.ly/xAegXl\r\nAVGN Plush Toys! - http://bit.ly/y51qdt\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-blowing-for-nuggets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2289,"publication_date":"2012-01-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012412","changefreq":"weekly","video":[{"title":"S1:E104 - Hard News 01/24/12","description":"Today's Content - http://www.screwattack.com/shows/originals/random-awesomeness/its-screwattack-vs-internet\r\nToday on Hard News Microsoft could use real money, Gamestop kind of leaving the UK, and are parts for the next Xbox in production?\r\nMicrosoft done with points - http://www.screwattack.com/news/rumor-sayonara-microsoft-points\r\nGamestop closes UK brick and mortars - http://www.screwattack.com/news/gamestop-closes-across-northern-ireland\r\nNext Xbox parts in production - http://www.screwattack.com/news/rumor-nextbox-chip-named-and-dev-kits-will-ship-april\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-012412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/812e8b72-2e72-4064-b433-760fbc80406a/sm/will-the-xbox-720-design-be-similar-to-this-sm-xbox-prototype-big.jpg","duration":133,"publication_date":"2012-01-24T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/its-screwattack-vs-the-internet","changefreq":"weekly","video":[{"title":"S1:E221 - It's ScrewAttack vs the Internet!","description":"We've always said ScrewAttack is the greatest website in the world and in 2012 we're going to prove it!\r\nCheck out the official ScrewAttack vs the Internet page here.","player_loc":"https://roosterteeth.com/embed/its-screwattack-vs-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8ea0add-d5c1-44ac-a20c-f510af972213/sm/012411vs.jpg","duration":43,"publication_date":"2012-01-23T21:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012312","changefreq":"weekly","video":[{"title":"S1:E103 - Hard News 01/23/12","description":"Today on Hard News Guild Wars 2 is coming to beta soon, play with 5 Shevas in Resident Evil 6, and what you can get for Twisted Metal.\r\nGuild Wars 2 Beta/Release Date - http://www.screwattack.com/news/guild-wars-2-confirmed-late-2012\r\nResident Evil 6 Co-Op? - http://www.screwattack.com/news/resident-evil-6-have-6-player-co-op\r\nTwisted Metal Online Pass - http://www.screwattack.com/news/twisted-metal-will-definitely-have-online-pass\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-012312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01d20412-142c-4f54-9c9e-0f18b3f03176/sm/Guild-Wars-2-Races.jpg","duration":109,"publication_date":"2012-01-23T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-kirby","changefreq":"weekly","video":[{"title":"S1:E7 - Reboot or Retro - Kirby","description":"Kirby's back to sucking! ...powers that is. His games are actually quite good, honest. But how does his latest outing, Return to Dreamland, compare to the SNES Kirby Super Star?","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-kirby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":290,"publication_date":"2012-01-22T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/thank-you-for-standing-together","changefreq":"weekly","video":[{"title":"S1:E220 - Thank You for Standing Together","description":"Thank you for Standing Together.","player_loc":"https://roosterteeth.com/embed/thank-you-for-standing-together","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4b00c16-074a-44e2-a870-baf8aa9e7d7d/sm/012011GJ.jpg","duration":88,"publication_date":"2012-01-21T12:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-seans-first-dia-de-huevos-2012","changefreq":"weekly","video":[{"title":"S1:E149 - Clip of the Week - Sean's First Dia de Huevos (2012)","description":"This was the year ScrewAttack's newest faces were introduced to the worst holiday in the world, but Sean was in the holiday spirit just a liiiiiiitle too much. This isn't a skit; this is as real as it gets.\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick if you want to suggest clips. And also because he wills it. Or, you can suggest clips in the Clip of the Week suggestion thread.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-seans-first-dia-de-huevos-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6157bb54-15b8-47b7-8126-92bc400ee086/sm/diadehuevos.png","duration":306,"publication_date":"2012-01-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-012012","changefreq":"weekly","video":[{"title":"S1:E102 - Hard News 01/20/12","description":"Today on Hard News catch spirits with your 3DS, Diablo 3 is rebuilt, SOPA and PIPA hit the shelf, and the ESA pulls its support.\r\nDiablo 3 delay - http://www.screwattack.com/news/diablo-iii-may-or-may-not-be-coming-out-year\r\nSOPA/PIPA shelved - http://www.screwattack.com/news/sopa-shelved-again\r\nESA pulla SOPA/PIPA support - http://www.screwattack.com/news/sopa-shelved-again\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-012012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5b56384-f7f2-4eb5-b535-17bd4be025e3/sm/spiritcamera.jpg","duration":181,"publication_date":"2012-01-20T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-the-robot-master","changefreq":"weekly","video":[{"title":"S1:E219 - MAGFest X - The Robot Master","description":"Mike, for one, not only welcomes our new robot overlords, but he creates them out of broken consoles.","player_loc":"https://roosterteeth.com/embed/magfest-x-the-robot-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":118,"publication_date":"2012-01-18T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011812","changefreq":"weekly","video":[{"title":"S1:E100 - Hard News 01/18/12","description":"Today on Hard News there are some very hard SOPA facts.\r\nIf you want to download the video Jared is talking about, you can get it here: http://www.megaupload.com/?d=VQ0JZFQK\r\nFollow us on Twitter and like us on Facebook to see everything Jared and ScrewAttack is doing about SOPA and PIPA!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttac - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-011812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b0ca6c9-3769-419e-a0e6-f8ac2049ff0f/sm/TapeOverMouth.png","duration":162,"publication_date":"2012-01-18T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/stand-together-the-gaming-community-vs-sopa-and-pipa","changefreq":"weekly","video":[{"title":"S1:E218 - Stand Together: The Gaming Community vs SOPA and PIPA","description":" Sign a petition to have the ESA remove their support from SOPA/PIPA here - http://www.change.org/petitions/stop-the-esa-petition-and-boycott-e3\r\nBUT DON'T STOP THERE! Actions speak louder than signatures!\r\nDownload this video, upload it to youtube, facebook and anywhere else you feel will get this video out there! Send or link this video to other gaming websites and media! Use your social networks to spread this video everywhere!\r\n\r\nAsk your favorite gaming websites, youtube channels, and media to join the cause by not attending and covering E3 this year until the ESA changes their stance on SOPA and PIPA! If they truly opposed this legislation the last thing they want to do is support an entity that spent $190,000 on PIPA lobbying.\r\n Are you a video game developer, publisher or gaming website that wants to be involved with this movement?  Email StandTogetherSOPA  at gmail.com","player_loc":"https://roosterteeth.com/embed/stand-together-the-gaming-community-vs-sopa-and-pipa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d8fd52e-50bb-4c01-9324-290335344403/sm/SOPAThumb2.jpg","duration":176,"publication_date":"2012-01-17T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-stand-together","changefreq":"weekly","video":[{"title":"S1:E47 - SideScrollers - \"Stand Together\"","description":"We talk about our stand against the ESA and SOPA/PIPA, followed by what may be the worst newsdesk story ever.\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio011812.mp3 \r\nWatch the Extended Sidescrollers here! - http://bit.ly/z0Bo1f\r\nWatch the videos mentioned by clicking the link below!\r\nEddie Lebron's Chun-Li vs Cammy - http://bit.ly/zK8Rcq\r\nGame Theory: Arrow to the Knee - http://bit.ly/wTxRRG\r\nBest Ever Retro Bosses - http://bit.ly/Argn4l\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-stand-together","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2503,"publication_date":"2012-01-17T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-011812","changefreq":"weekly","video":[{"title":"S1:E217 - SideScrollers Extended 01/18/12","description":"10 more minutes of SideScrollers for Advantage members! Basketball talk?","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-011812","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":686,"publication_date":"2012-01-17T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011712","changefreq":"weekly","video":[{"title":"S1:E99 - Hard News 01/17/12","description":"Today on Hard News you've got to endure a little longer for Payne, Mortal Kombat is coming to the Vita, and Ubisoft really hopes you never have to upgrade your PC.\r\nMax Payne 3 delay - http://www.screwattack.com/news/max-payne-3-show-late\r\nMortal Kombat on Vita - http://www.screwattack.com/news/mortal-kombat-bound-vita-kratos-tow\r\nUbisoft's ridiculous DRM - http://www.screwattack.com/news/community-showcase-ubisoft-drm-taking-it-step-too-far\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-011712","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fda7418-ab41-45a0-81d2-0762e879a908/sm/max-payne-3.jpg","duration":129,"publication_date":"2012-01-17T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-fizz-man-makes-sweet-statues","changefreq":"weekly","video":[{"title":"S1:E216 - MAGFest X - Fizz Man Makes Sweet Statues","description":" We saw some amazing things at MAGfest but seeing your favorite video game characters in clay form may have been the most amazing! Check out your favorites!","player_loc":"https://roosterteeth.com/embed/magfest-x-fizz-man-makes-sweet-statues","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3f63c6c-a546-4cec-85f0-624fdb409191/sm/011711Sculptures.jpg","duration":195,"publication_date":"2012-01-16T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011612","changefreq":"weekly","video":[{"title":"S1:E98 - Hard News 01/16/12","description":"Today on Hard News developers are striking back, Mass Effect 3 will be on Steam, and the latest on SOPA.\r\nDevelopers want pirates to pay up - http://www.screwattack.com/news/developers-band-together-collect-pirate-plunder\r\nSOPA Postponed - http://www.screwattack.com/news/sopa-vote-has-been-postponed\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-011612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aad69e9-64fa-4c45-a994-1fac81c46552/sm/pirates_0.jpg","duration":152,"publication_date":"2012-01-16T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-fresh-maker","changefreq":"weekly","video":[{"title":"S1:E215 - [Advantage Content] Clip of the Week Outtakes - The Fresh Maker","description":"It's a lot harder to pop a Mentos than you think. Apparently, throwing cups is too.\r\nWatch the original Clip of the Week here.\r\nDon't see the video?  No worries!  You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads!  Woo hoo!  Upgrade here!","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-fresh-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":386,"publication_date":"2012-01-16T09:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-little-time-with-hey-ash-whatcha-playin","changefreq":"weekly","video":[{"title":"S1:E214 - A Little Time with Hey Ash' Whatcha Playin'?","description":"A lot of people go to MAGFest and we like to talk to them. People like the cast of Hey Ash' Whatcha Playin'?!","player_loc":"https://roosterteeth.com/embed/a-little-time-with-hey-ash-whatcha-playin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":140,"publication_date":"2012-01-15T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-the-wicked-arcade","changefreq":"weekly","video":[{"title":"S1:E213 - MAGfest X - The Wicked Arcade","description":"Ever wanted to see how an arcade should be like? Check out this one.\r\nCredit goes to out buddy FantomenK for the wicked background tune!","player_loc":"https://roosterteeth.com/embed/magfest-x-the-wicked-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":195,"publication_date":"2012-01-15T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-fresh-maker","changefreq":"weekly","video":[{"title":"S1:E148 - Clip of the Week - The Fresh Maker","description":"Ben's figured out THE best way to get away with stuff. For real this time. It's way better than that last method...\r\nFor Advantage members, there's an outtake reel for this CotW!  Watch here!\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick if you want to suggest clips. And also because he wills it. Or, you can suggest clips in the Clip of the Week suggestion thread.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-fresh-maker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf84e77-92fa-4638-9029-ead45a07ce41/sm/cotw_1.png","duration":159,"publication_date":"2012-01-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011312","changefreq":"weekly","video":[{"title":"S1:E97 - Hard News 01/13/12","description":"Today on Hard News a lot of Silent Hill all at once, more devs denounce SOPA, and a fresh take on an old XCOM.\r\nSilent Hill release dates - http://www.screwattack.com/news/spend-spring-break-silent-hill\r\nDevs against SOPA - http://www.screwattack.com/news/few-more-developers-take-stand-against-sopa\r\nXCOM Enemy Unknown - http://www.screwattack.com/news/xcom-enemy-unknown-game-you-are-looking\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-011312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a1f34b3-8462-4c32-92de-7802da486f57/sm/Firefall1_0.jpg","duration":160,"publication_date":"2012-01-13T16:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-ever-retro-boss","changefreq":"weekly","video":[{"title":"S1:E1 - The Best EVER: Retro Boss","description":" The crew relives their life-changing final battles as they answer one question: \"What is the greatest old-school boss fight ever?\"\r\nWhat is your favorite retro boss? Leave a comment about it below!","player_loc":"https://roosterteeth.com/embed/the-best-ever-retro-boss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0998a9e8-9239-4a12-8bee-a0d47ce784ee/sm/THUMB_BestEver_RetroBoss_0.jpg","duration":267,"publication_date":"2012-01-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011212","changefreq":"weekly","video":[{"title":"S1:E96 - Hard News 01/12/12","description":"Today on Hard News Assassin's Creed loses another person, GAME leaks EA games, and a new way to play your 3DS.\r\nAssCreed Creative Directo leaves - http://www.screwattack.com/news/asscreed-creative-director-jumps-ship-marketing-company\r\nEA games unofficially announced - http://www.screwattack.com/news/medal-honor-2-and-need-speed-13-unofficially-announced\r\n3DS Stand - http://www.screwattack.com/news/kid-icarus-uprising-bundled-3ds-accessory\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-011212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1652a0f5-2b35-4b84-9788-a0542d6ed3c6/sm/xlarge_f62f91d1e9bbe1d6d6f7cb75a40d8b21.jpg","duration":119,"publication_date":"2012-01-12T13:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-video-game-improv","changefreq":"weekly","video":[{"title":"S1:E212 - MAGfest X - Video Game Improv","description":" What do you get when you take a group of some of the most creative gamers online and put them in an improv troupe? Hilarity.","player_loc":"https://roosterteeth.com/embed/magfest-x-video-game-improv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":3698,"publication_date":"2012-01-11T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011112","changefreq":"weekly","video":[{"title":"S1:E95 - Hard News 01/11/12","description":"Today on Hard News demos giving more than demonstrations, id leaves some employees in a rage, and Kaz Hirai shuts down rumors.\r\nFree DLC from demos - http://www.screwattack.com/news/ea-bringing-free-dlc-me3-and-reckoning\r\nLayoffs at id - http://www.screwattack.com/news/bethesda-puts-id-software-chopping-block\r\nNo PS4 at E3 - http://www.screwattack.com/news/jumping-gun-no-ps4-e3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-011112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7145db0e-996d-423c-a173-698d90cec04a/sm/Kingdoms-of-Amalur-Reckoning-Reveal-Trailer_7.jpg","duration":128,"publication_date":"2012-01-11T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chun-li-vs-cammy-fan-film-fight","changefreq":"weekly","video":[{"title":"S1:E211 - Chun Li vs Cammy Fan Film Fight!","description":"From the team that brought you the Mega Man fan film, Street Fighter's leading ladies battle it in this live action eye candy! \r\nCheck out more from Eddie Lebron and Blue Core Studios at http://bluecorestudios.com/ChunLi-vs-Cammy/","player_loc":"https://roosterteeth.com/embed/chun-li-vs-cammy-fan-film-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9939f4d-9f41-4eb0-af51-bab7cb955c9d/sm/011112CvC.jpg","duration":296,"publication_date":"2012-01-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-screwattack-vs-the-internet","changefreq":"weekly","video":[{"title":"S1:E46 - SideScrollers - \"ScrewAttack vs the Internet\"","description":"A huge show recorded live at MAGfest X, the boys welcome James Rolfe, brentalfloss and Eddie Lebron to the show. In addition Craig outlines what ScrewAttack will be doing in 2012 with new shows, new community features and our attempt to conquer the internet once and for all.","player_loc":"https://roosterteeth.com/embed/sidescrollers-screwattack-vs-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":3509,"publication_date":"2012-01-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-extra-credits-panel","changefreq":"weekly","video":[{"title":"S1:E210 - MAGfest X - Extra Credits Panel","description":" Check out Extra Credits creators James Portnow and Daniel Floyd sit down with their buddies  - including the boys from Loading, Ready, Run - to answer questions from their audience at MAGfest X.","player_loc":"https://roosterteeth.com/embed/magfest-x-extra-credits-panel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b9665b3-83c3-48a8-b26d-5b870bf29ca6/sm/extra_credits.jpeg","duration":4216,"publication_date":"2012-01-10T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-011012","changefreq":"weekly","video":[{"title":"S1:E94 - Hard News 01/10/12","description":"Today on Hard News EA protects Battlefield 3, Future Soldier releases a little later, and what we did and didn't find out about Diablo 3 this weekend.\r\nBattlefield 3 Helicopter Lawsuits - http://www.screwattack.com/news/ea-under-pressure-its-helicopter-use\r\nFuture Soldier delay - http://www.screwattack.com/news/ghost-recon-future-soldier-slips-may\r\nDiablo 3 - http://www.screwattack.com/news/updateagain-blizzard-confirms-best-buy-did-fact-get-diablo-3-release-date-wrong\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-011012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7b3ee1a-04f0-4207-8ef3-3c3508f40555/sm/grfsallscreenshot1stlookhitechghost20-4122010-580px.jpg","duration":137,"publication_date":"2012-01-10T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-egoraptor-panel","changefreq":"weekly","video":[{"title":"S1:E209 - MAGfest X - egoraptor Panel","description":"The creator of \"The Awesome Series\" hit the stage at MAGfest X and boy oh boy was he insane... ","player_loc":"https://roosterteeth.com/embed/magfest-x-egoraptor-panel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bb8b303-e04b-46db-a022-29fa9314ef99/sm/1218120294987_f.jpeg","duration":4160,"publication_date":"2012-01-09T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/magfest-x-hey-ash-whatcha-playin-panel","changefreq":"weekly","video":[{"title":"S1:E208 - MAGfest X - Hey Ash, Whatcha Playin' Panel","description":" Watch \"Hey Ash's\" crew go nuts with their full panel at MAGfest X.","player_loc":"https://roosterteeth.com/embed/magfest-x-hey-ash-whatcha-playin-panel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/493c3633-7f2f-42b4-8dd5-7913942f7728/sm/tumblr_l8xcrcFbFn1qdi56no1_500.jpeg","duration":3626,"publication_date":"2012-01-09T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-punishment-we-cant-exactly-show-you","changefreq":"weekly","video":[{"title":"S1:E207 - The Punishment We Can't Exactly Show You","description":"Craig made the wager that if Ben could beat Sonic CD and had 1,000 viewers he'd shave his head. Ben did, now it's time to pay up. Or shave off, rather. Only thing is if we showed you all of what's under Craig's hat there would be a very Raiders of the Lost Ark moment. So here's everything we can safely show you and prove Craig did shave up there.\r\nIf you want to see all the action that lead to Craig's punishment, here it is on Twitch.tv!","player_loc":"https://roosterteeth.com/embed/the-punishment-we-cant-exactly-show-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":227,"publication_date":"2012-01-08T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-new-super-mario-bros-wii-race-challenge","changefreq":"weekly","video":[{"title":"S1:E206 - The New Super Mario Bros. Wii Race Challenge","description":"Sometimes, playing games by your own rules is more fun than the intended rules. That's why Sam, Sean, and Nick had races in New Super Mario Bros. Wii where the losers must surrender control of their Twitter accounts for the most embarrassing tweet they could come up with.\r\nTweet at us, bros (and girls)\r\nSam - @ScrewAttackSam\r\nNick - @TheNervousNick\r\nSean - @SeanHinz","player_loc":"https://roosterteeth.com/embed/the-new-super-mario-bros-wii-race-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c699308-bd57-4ad9-b623-154a0a5310ac/sm/_-New-Super-Mario-Bros-Wii-Wii-_.jpg","duration":397,"publication_date":"2012-01-06T21:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010612","changefreq":"weekly","video":[{"title":"S1:E92 - Hard News 01/06/12","description":"Today on Hard News Devil May Cry fans are deadly, the Old Republic gets down, and will we see more next gen systems at E3?\r\nDevil May Cry Death Threats - http://www.destructoid.com/ninja-theory-got-death-threats-over-dmc-devil-may-cry-219147.phtml?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Destructoid+%28Destructoid%29\r\nTOR's Invincible Dance - http://www.rockpapershotgun.com/2012/01/04/let-the-wookiee-waltz-swtors-god-cheat/\r\nNext Gen Systems At E3 - http://www.screwattack.com/news/rumor-nextbox-and-ps4-will-appear-e3-2012\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\nBryan likes followers and Facebook friends too!\r\nTwitter - @MrBryanBaker\r\nFacebook Bryan - Facebook.com/MrBryanBaker","player_loc":"https://roosterteeth.com/embed/hard-news-010612","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa2321a3-180d-44da-90d7-171a41a9ae03/sm/183960-header.jpg","duration":139,"publication_date":"2012-01-06T16:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-nfl-blitz","changefreq":"weekly","video":[{"title":"S1:E9 - Out of the Box - NFL Blitz","description":"It's time to put the arcade pads back on! Craig and Bryan are checking out the new NFL Blitz!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-nfl-blitz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa74d566-043a-4a3b-a04d-05e5a9231545/sm/NFL-Blitz-2012-XBLA.jpg","duration":1501,"publication_date":"2012-01-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010512","changefreq":"weekly","video":[{"title":"S1:E91 - Hard News 01/05/12","description":"Today on Hard News there's a new XCOM that isn't an FPS, Ubisoft has some interesting bundles, and Epic takes a stand against SOPA.\r\nNew XCOM - http://www.screwattack.com/news/xcom-enemy-unknown-game-you-are-looking\r\nUbisoft Bundles - http://www.screwattack.com/news/asscreed-rainbow-six-and-graw-all-getting-double-packs\r\nEpic and SOPA - http://www.screwattack.com/news/epic-doesnt-support-current-version-sopa\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @Screwattack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-010512","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01f848ca-861c-4aa9-82fa-ca41a949950c/sm/tumblr_ktzc2vDHH21qzexpio1_500.jpg","duration":190,"publication_date":"2012-01-05T16:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010412","changefreq":"weekly","video":[{"title":"S1:E90 - Hard News 01/04/12","description":"Today on Hard News the PS Vita has lifeless sales, Microsoft will let you fly for free, and what big gun pre-ordering Mass Effect 3 gets you.\r\nPS Vita Sales - http://www.screwattack.com/news/japan-3g-vita-prices-are-being-slashed\r\nMicrosoft Flight - http://www.screwattack.com/news/microsoft-flight-free-download-spring\r\nMass Effect 3 Pre-Order Trailer - http://www.screwattack.com/trailers/mass-effect-3-m55-argus-assault-rifle-pre-order-trailer\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @Screwattack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-010412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e4129ee-cee5-4fd7-a62a-c0c643bd6958/sm/flight.jpg","duration":142,"publication_date":"2012-01-04T16:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-010412","changefreq":"weekly","video":[{"title":"S1:E205 - SideScrollers Extended 01/04/12","description":"10 more minutes of SideScrollers for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-010412","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":545,"publication_date":"2012-01-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-tiger-upyourbutt","changefreq":"weekly","video":[{"title":"S1:E45 - SideScrollers - \"Tiger Upyourbutt\"","description":"The first SideScrollers of 2012! ...and Craig messes it all up!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio010412.mp3\r\nWatch the Extended Sidescrollers here! - http://bit.ly/y5n6ch\r\nWatch the videos mentioned by clicking the link below!\r\nGame Overthinker: \"Rose-Colored Reality\" - http://bit.ly/ynsWVu\r\nTop 10 ScrewAttack Moments 2011 - http://bit.ly/yC9rpk\r\nCinemassacre/AVGN Mailbag - http://bit.ly/wVHiiL\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-tiger-upyourbutt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2269,"publication_date":"2012-01-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010312","changefreq":"weekly","video":[{"title":"S1:E89 - Hard News 01/03/12","description":"Today on Hard News there is peace in the fallout, the Wii U Tablet could be much more than a controller, and sometimes you should let the developer win.\r\nBethesda and Interplay Settlement - http://www.screwattack.com/news/bethesda-and-interplay-settlement-finally-reached\r\nWii U Tablet E-Reader - http://www.screwattack.com/news/rumor-wii-u-could-be-e-reader\r\nOld Republic Bans - http://www.screwattack.com/news/old-republic-bans-are-explained-bioware\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @Screwattack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-010312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ae5c4e7-5a84-4579-93aa-55d6ceba2043/sm/illum_fail_3151-560x315.jpg","duration":137,"publication_date":"2012-01-03T15:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-010212","changefreq":"weekly","video":[{"title":"S1:E88 - Hard News 01/02/12","description":"Today on Hard News a Final Fantasy X remake, God of War 4 rumors, and what you can play when you get a Vita.\r\nFinal Fantasy X Remake - http://www.screwattack.com/news/upcoming-final-fantasy-x-remake-early-development\r\n[Rumor] God of War 4 Co-Op - http://www.screwattack.com/news/rumor-god-war-iv-have-co-op\r\nPS Vita Launch - http://www.screwattack.com/news/gamestops-official-vita-launch-listings\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-010212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/921e8403-5d37-431b-a416-bdc43f4e3868/sm/sm_2.jpg","duration":142,"publication_date":"2012-01-02T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-multiplatform-game-winner","changefreq":"weekly","video":[{"title":"S1:E204 - SAGYS 2011 - Worst Multiplatform Game Winner","description":"Which of the nominees was deemed the worst multiplatform game of 2011?","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-multiplatform-game-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d4516d-7535-4966-9774-43e1a526b087/sm/SAGYMPWinner.jpg","duration":59,"publication_date":"2012-01-01T12:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-handheld-game-winner","changefreq":"weekly","video":[{"title":"S1:E203 - SAGYS 2011 - Worst Handheld Game Winner","description":"Ever held a piece of poop in your hand? If you've played the winner of this category you have.","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-handheld-game-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c5cac40-e655-4873-8b0f-51f55d5ca606/sm/SAGYHandheldWinner.jpg","duration":51,"publication_date":"2012-01-01T11:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-screwattack-moments-of-2011","changefreq":"weekly","video":[{"title":"S1:E60 - Top 10 - ScrewAttack Moments of 2011","description":"Take a look at the best moments of 2011!","player_loc":"https://roosterteeth.com/embed/top-10-screwattack-moments-of-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e833a68-4ef7-4c67-9ab4-14ebb6d0ced7/sm/video_thumbnail_7855561.jpg","duration":491,"publication_date":"2011-12-31T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-ocean","changefreq":"weekly","video":[{"title":"S1:E147 - Clip of the Week - The Ocean","description":"The highly-publicized scandal involving \"Ocean Marketing\" has gotten far more attention than anyone anticipated, but what nobody realizes is that this could have happened long, long ago.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-ocean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5449e80-55b2-4926-8df7-0f258861c89d/sm/TheOcean2_2.png","duration":348,"publication_date":"2011-12-30T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-123011","changefreq":"weekly","video":[{"title":"S1:E87 - Hard News 12/30/11","description":"Today on Hard News Anonymous is ready to strike again, the Wii U may be more than a console, and who won't be playing the next Sonic game.\r\nAnonymous going after Sony - http://www.screwattack.com/news/anonymous-targets-sony-over-sopa\r\nWii U Abilities - http://www.screwattack.com/news/rumor-wii-u-have-full-app-store\r\nSonic 4 Ep. 2 - http://www.screwattack.com/news/sonic-4-episode-2-will-not-be-ported-wii\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook Screwattack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-123011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81dc6867-5a80-48ae-98f9-5bfe59d70bb5/sm/wii-u-2011-06-07-600-26.jpg","duration":108,"publication_date":"2011-12-30T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-downloadable-winner","changefreq":"weekly","video":[{"title":"S1:E202 - SAGYs 2011 - Worst Downloadable Winner","description":" Did Ghostbusters destroy the brand in one game that took over decades to grow? The results are in!","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-downloadable-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5870e750-3336-4dc5-b0c6-244577f0eb2b/sm/SAGYDownloadableWinner.jpg","duration":54,"publication_date":"2011-12-29T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-ps3-game-winner","changefreq":"weekly","video":[{"title":"S1:E201 - SAGY's 2011 - Worst PS3 Game Winner","description":"Motion controls have dominated the 2011 SAGYs so far - does it continue with the PS3?","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-ps3-game-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9dabab9-035e-4d18-8372-c550c31c9004/sm/SAGYPS3Winner.jpg","duration":43,"publication_date":"2011-12-28T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122811","changefreq":"weekly","video":[{"title":"S1:E85 - Hard News 12/28/11","description":"Today on Hard News Humble Bundle bundles up the cash, Sonic 4 Ep. 2 is revealed, and we were this close to another Kings Quest.\r\nHumble Bundle Success - http://www.screwattack.com/news/humble-indie-bundle-raises-stacks-stacks-stacks\r\nSonic 4 Ep. 2 reveal - http://www.screwattack.com/news/sonic-4-episode-2-announcement-tomorrow\r\nSilicon Knights Lawsuit - http://www.screwattack.com/news/silicon-knights-almost-had-kings-quest\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-122811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93bcb479-d3c4-43dc-9170-7b658c3c3794/sm/Sonic-the-Hedgehog-4.jpg","duration":135,"publication_date":"2011-12-28T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-122811","changefreq":"weekly","video":[{"title":"S1:E200 - SideScrollers Extended 12/28/11","description":" 10 more minutes of SideScrollers, only for Advantage Members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-122811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5303889-d9ce-4c0b-9f02-df19b1af5df7/sm/cap1.PNG","duration":534,"publication_date":"2011-12-27T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"ninja-star-hashbrown\"","changefreq":"weekly","video":[{"title":"S1:E44 - SideScrollers - \"Ninja Star Hashbrown\"","description":" We are so PUMPED for MAGfest X! Get some of the first details today!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio122811.mp3\r\nWatch the Extended Sidescrollers here! - http://bit.ly/tJNOIJ\r\nWANT TO POST FORUM QUESTIONS? - http://bit.ly/vWq8Ur\r\nWatch the videos mentioned by clicking the link below!\r\nDEATH BATTLE - Dr. Wily vs Dr. Eggman - http://bit.ly/tuQxkZ\r\ng1 Of The Year - http://bit.ly/uyTuNV\r\nClip of the Week - http://bit.ly/uM8JdK\r\nScrewAttack Sees Santa - http://bit.ly/u8XFDV\r\nSAGYs 2011 - http://bit.ly/taEOM7\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/screwattack\r\nChad - http://twitter.com/screwattackchad\r\nJared - http://twitter.com/projared\r\n ","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"ninja-star-hashbrown\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45cb4113-ec66-4d7f-b6a9-8bf575dbf523/sm/webbercounty.jpg","duration":1939,"publication_date":"2011-12-27T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-wii-game-winner","changefreq":"weekly","video":[{"title":"S1:E199 - SAGY's 2011 - Worst Wii Game Winner","description":"Gummi bears, generic sports compilation or dance game based on smurfs? They all suck but which one sucked the most in 2011 for the Wii?","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-wii-game-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48a9031a-6f09-4bfb-aa49-00409b622809/sm/SAGYWiiWinner.jpg","duration":51,"publication_date":"2011-12-27T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122711","changefreq":"weekly","video":[{"title":"S1:E84 - Hard News 12/27/11","description":"Today we learn how Nintendo's getting into the DLC market, why Square Enix just saved 5 MILLION DOLLARS and why not to be a total doucher to gamers.","player_loc":"https://roosterteeth.com/embed/hard-news-122711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a0e615a-d64b-4aef-b142-9b64864bafa1/sm/n1301705117_5967_reasonably_small_0.jpg","duration":141,"publication_date":"2011-12-27T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-xbox-360-game-winner","changefreq":"weekly","video":[{"title":"S1:E198 - SAGY's 2011 - Worst Xbox 360 Game Winner","description":"After two weeks of intense voting we have our winner! Which of the worst is the worst for the 360?","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-xbox-360-game-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9ff3892-6179-46ae-bbfc-928e1179f8b6/sm/SAGY360Winner.jpg","duration":52,"publication_date":"2011-12-26T18:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2011-g1-of-the-year-winner","changefreq":"weekly","video":[{"title":"S1:E197 - The 2011 g1 of the Year Winner!","description":"It's time to announce the winner of the 2011 g1 of the year!","player_loc":"https://roosterteeth.com/embed/the-2011-g1-of-the-year-winner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a59222bf-37ac-41ce-88a5-2bf87923ea03/sm/g1oty.jpg","duration":213,"publication_date":"2011-12-25T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/eggman-vs-wily-death-battle","changefreq":"weekly","video":[{"title":"S1:E19 - Eggman VS Wily","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/eggman-vs-wily-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bda1e23-64d2-489d-9019-2f76afe0778d/sm/video_thumbnail_100466.jpg","duration":855,"publication_date":"2011-12-24T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-games-of-2011-20-11","changefreq":"weekly","video":[{"title":"S1:E59 - Top 10 Games of 2011 (20-11)","description":" With our Top 10 Games of 2011 going up on GT we thought we'd let you guys see the games you voted on that didn't make the 10 best. You may be surprised as to what did and didn't make the cut.\r\nCheck out the Top 10 on GT here.","player_loc":"https://roosterteeth.com/embed/top-10-games-of-2011-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/745b727a-2a50-4b11-85fd-fd5a602826c9/sm/Mario_Kart_7_Box.jpeg","duration":392,"publication_date":"2011-12-24T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-twas-the-night-before-christmas","changefreq":"weekly","video":[{"title":"S1:E146 - Clip of the Week - 'Twas The Night Before Christmas","description":"This year, the Clip of the Week falls squarely on Christmas Eve! Also, anything that doesn't rhyme will start to sound weird to you after you're done watching... like this, for example.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-twas-the-night-before-christmas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc71ee08-7283-44c6-8d2e-266a95e16d60/sm/CotW1.png","duration":141,"publication_date":"2011-12-24T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-132","changefreq":"weekly","video":[{"title":"2015:E137 - 3D Ultra MiniGolf Adventures 2 Part 8","description":"In the penultimate episode of the series do the Minigolf Crew finally pull their acts together or do they continue to fall apart","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ca928f9-d22f-4924-a940-a728bf12eb0f/sm/ep10912.jpg","duration":2010,"publication_date":"2015-05-19T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-19","changefreq":"weekly","video":[{"title":"2015:E19 - Week #265","description":"Today's AHWU is brought to you by Geoff's food poisoning. Don't worry, he's probably not dead yet. Jack and Michael will help ease your pain as they look at this week's games and a bit of news. Don't forget to join Jeremy and Trevor tomorrow for their community stream as well! http://www.twitch.tv/roosterteeth","player_loc":"https://roosterteeth.com/embed/ahwu-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/556255b4-b431-4676-8162-4de8f3d28f32/sm/ep10906.jpg","duration":685,"publication_date":"2015-05-18T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-18","changefreq":"weekly","video":[{"title":"2015:E19 - Top 5 Lego Games","description":"Kdin, Geoff, and surprise guest Michael take a look at the Top 5 Lego games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c07e31ee-c44b-4435-8a76-d4129783cab5/sm/ep10905.jpg","duration":155,"publication_date":"2015-05-18T19:42:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-127","changefreq":"weekly","video":[{"title":"2015:E136 - Star Wars Battlefront 2","description":"Geoff, Jack, Ryan, Matt, Michael, and Gavin relive the old days in Star Wars Battlefront 2, while testing Gavin's knowledge of the universe at the same time. Technical issues...shmechanical issues...","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d7e2b7b-ecf4-4c74-89e0-ba4b1ad87be0/sm/ep10904.jpg","duration":1430,"publication_date":"2015-05-18T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-19","changefreq":"weekly","video":[{"title":"2015:E20 - Mortal Kombat X","description":"Jack and Geoff take a look at Mortal Kombat X in this week's Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e49ef828-656e-430c-8e71-b0d6043d6ddd/sm/ep10903.jpg","duration":221,"publication_date":"2015-05-18T18:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-19","changefreq":"weekly","video":[{"title":"2015:E20 - Three Kills - GO! #82","description":"This week's Go is all about new experiences. The first to get a kill in three different games that they've never played before, gets a sticker. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d9f4965-185f-4289-995a-50df8b246b6f/sm/ep10902.jpg","duration":805,"publication_date":"2015-05-18T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-125","changefreq":"weekly","video":[{"title":"2015:E135 - GTA V - Series A Funding Finale","description":"The dramatic... hmm... thrilling No, not that. End Yeah, sure... End. The End of the Series A Heist with Geoff, Ryan, Michael, and Gavin.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1ab0ade-1420-4884-bd00-d1982cb66c77/sm/ep10901.jpg","duration":1585,"publication_date":"2015-05-18T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-118","changefreq":"weekly","video":[{"title":"2015:E134 - 3D Ultra MiniGolf Adventures 2 Part 7","description":"The madness continues.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e739c5e-05bc-4a20-a20b-35f5cd9258eb/sm/ep10892.jpg","duration":2637,"publication_date":"2015-05-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-33","changefreq":"weekly","video":[{"title":"2015:E38 - GTA V - Flarechute","description":"AH dabbles in high flaring stunts.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8907f17f-c371-4968-afe5-2633cdee0368/sm/ep10893.jpg","duration":368,"publication_date":"2015-05-15T18:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-115","changefreq":"weekly","video":[{"title":"2015:E133 - Fuel Part 2","description":"Achievement Hunter takes on Fuel again. Because they love you.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/854eb4fd-9dfb-4d42-8a13-744f95438b1f/sm/ep10888.jpg","duration":6546,"publication_date":"2015-05-14T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-114","changefreq":"weekly","video":[{"title":"2015:E132 - Minecraft - Episode 155 - Shopping List X","description":"You wanted it, you got it! The AH crew return to do some more shopping!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/733e4227-27c4-4cf9-88b3-558b54ed39ee/sm/ep10887.jpg","duration":2350,"publication_date":"2015-05-14T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-113","changefreq":"weekly","video":[{"title":"2015:E131 - AH vs Funhaus in Smite","description":"Achievement Hunter takes on Funhaus in a few 5v5 matches on the battleground of the Gods. SMITE. Which team will prove to be more devastating Which team will prove to have more skill But most important... which team will prove to be the most clever","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f90c514e-9b03-4032-99fa-6555640a9d8b/sm/ep10884.jpg","duration":2327,"publication_date":"2015-05-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-17","changefreq":"weekly","video":[{"title":"2015:E20 - Episode 115: Michael vs. Matt","description":"This week, Michael and Matt tease the rim, together.","player_loc":"https://roosterteeth.com/embed/vs-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27f8df0a-2627-4a23-92fa-f2fbf7bb1f97/sm/ep10885.jpg","duration":928,"publication_date":"2015-05-14T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-15","changefreq":"weekly","video":[{"title":"2015:E20 - Volume 243","description":"Jack and Geoff bring you a bounty of fails and glitches from Grand Theft Auto V in Fails of the Weak Volume 243.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4671339e-ea93-44b6-85e6-261657ee9b80/sm/ep10882.jpg","duration":211,"publication_date":"2015-05-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-9","changefreq":"weekly","video":[{"title":"2015:E10 - Don't Starve Together","description":"Michael and Gavin attempt to not starve...together!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a715a05a-a19f-49b8-8f01-83df7fe57855/sm/ep10878.jpg","duration":871,"publication_date":"2015-05-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-tea-party-simulator","changefreq":"weekly","video":[{"title":"2014:E49 - Tea Party Simulator","description":"Joel and Adam head to a tropical island to have a nice tea party, but things on the island aren't what they seem. Smoke monsters and things like that. Who knows anymore. Dharma.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-tea-party-simulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57ce77c4-7e87-40de-93a7-952c54a74c1c/sm/ep10876.jpg","duration":1322,"publication_date":"2015-05-13T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-99","changefreq":"weekly","video":[{"title":"2015:E130 - Prop Hunt: Obj Hunt","description":"Geoff, Ryan, Jack, Michael, Gavin, and special guest Brandon \"The Farm\" Farmahini pop into Prop Hunt's OBJ Hunt mode!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1567211-a466-4246-8312-9eded689c885/sm/ep10872.jpg","duration":2645,"publication_date":"2015-05-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-27","changefreq":"weekly","video":[{"title":"2015:E37 - Battlefield Hardline - Bike Blast","description":"AH takes to the skies right...nowwwwwwwwwwwwwwwwww.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ddf5199-74bf-436f-aa18-492f1fd1b4cb/sm/ep10873.jpg","duration":329,"publication_date":"2015-05-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-15","changefreq":"weekly","video":[{"title":"2015:E19 - Trials Fusion HUNT","description":"Jack and Gavin continue their long-form HUNT that has actually changed into a different kind of HUNT which is now the normal kind of HUNT. Anyway, enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a4607c7-ff87-4a37-84a7-f7f5c1dd9ccd/sm/ep10869.jpg","duration":292,"publication_date":"2015-05-12T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-14","changefreq":"weekly","video":[{"title":"2015:E19 - The Order: 1886","description":"Franco ventures out on his own to bring back Five Facts on The Order: 1886!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c362ca84-81e4-4868-859c-495e2457cded/sm/ep10868.jpg","duration":265,"publication_date":"2015-05-12T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-92","changefreq":"weekly","video":[{"title":"2015:E129 - 7 Days to Die: Survival Day One","description":"It's still community appreciation week, and you chose 7 Days to Die. So watch Geoff, Gavin, Michael, Ryan, and Jack attempt to last 7 days and nights in this harsh zombie-filled world. If they die, they're out for the day. Who will survive Will any of them make it These questions and many more are going to be answered.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d801b30-7754-493f-82b9-4a339d278a42/sm/ep10861.jpg","duration":1688,"publication_date":"2015-05-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-14","changefreq":"weekly","video":[{"title":"2015:E19 - Episode 2X - GO! #81","description":"This week's Go is all live action! Geoff has hidden a sticker, and it's up to the crew to find it. I wonder if they'll make a mess while they do it Yes. Yes they will.","player_loc":"https://roosterteeth.com/embed/go-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53065933-508b-49b6-b013-9218ac3d8cca/sm/ep10860.jpg","duration":464,"publication_date":"2015-05-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-13","changefreq":"weekly","video":[{"title":"2015:E18 - Week #264","description":"Join us for Gavin's last AHWU forever. Or for at least a week or six. This week's Fan Art of the Week is from iCoffeecake. What's your favorite Guillermo del Toro movie Vid of week: \nCommunity vid:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5f5f259-8ed8-42e6-8090-0c6ca8fe87fd/sm/ep10864.jpg","duration":501,"publication_date":"2015-05-11T18:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-12","changefreq":"weekly","video":[{"title":"2015:E18 - Top 5 Easy Arcade Completions","description":"Kdin and Geoff take a look at 5 super-simple, super-quick, super-fun easy arcade completions! Enjoy the extra 1600 Gamerscore!","player_loc":"https://roosterteeth.com/embed/countdown-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7161d82-89d2-4b50-81b7-e47ff70d64d5/sm/ep10863.jpg","duration":180,"publication_date":"2015-05-11T18:39:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-90","changefreq":"weekly","video":[{"title":"2015:E128 - GTA V - Freeplay Hydra","description":"The first video of AH's fan-selected content week! You guys picked free play, which is basically a AH podcast. We talk about socks and fly hydras.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1faac80-0d30-401b-944a-e063cf317fe9/sm/ep10859.jpg","duration":2373,"publication_date":"2015-05-11T17:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-achievement-hunter-vs-the-world-block-n-load","changefreq":"weekly","video":[{"title":"2015:E10 - Achievement Hunter VS The World: Block N Load","description":"Geoff, Jack, Ryan, Michael, and Gavin defend their house in the new game Block N Load. Watch them build. Watch them destroy. Thank you Jagex for endorsing this video.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-achievement-hunter-vs-the-world-block-n-load","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fc99dc7-48e7-4837-b3cd-2d10d43ebb99/sm/ep10857.jpg","duration":2737,"publication_date":"2015-05-09T11:59:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-23","changefreq":"weekly","video":[{"title":"2015:E36 - Call of Duty - Delayed Reaction","description":"AH fights the delay of their capture devices. And each other.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d28cc600-ad29-4977-8ad3-96512b0dbc2f/sm/ep10856.jpg","duration":624,"publication_date":"2015-05-08T22:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-83","changefreq":"weekly","video":[{"title":"2015:E127 - Let's Watch Destiny: Solo Crota Raid","description":"Geoff, Jack, Ryan, Gavin, and Jeremy initially try to help Andrew Panton complete the Crota Raid, until finally he decides it's easier to take the challenge on alone. 1 v 1. Panton VS Crota.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a404c49-3071-48fd-bb75-bd5c0cc57c06/sm/ep10852.jpg","duration":2075,"publication_date":"2015-05-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-74","changefreq":"weekly","video":[{"title":"2015:E126 - Minecraft - Episode 154 - Finish This House!","description":"With some outside help from the community, the AH crew finally finish up the renovations!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/515ba59c-96c1-445d-893a-9120b00233ae/sm/ep10838.jpg","duration":3360,"publication_date":"2015-05-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-10","changefreq":"weekly","video":[{"title":"2015:E19 - Volume 242","description":"Jack is out sick, so Ryan joins Geoff for Fails of the Weak Volume 242 where we see the return of Geoff's cancer-curing laugh!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4612f412-18f5-4224-b57d-b16425eb031a/sm/ep10841.jpg","duration":213,"publication_date":"2015-05-07T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-12","changefreq":"weekly","video":[{"title":"2015:E19 - Episode 114: Gavin vs. Matt","description":"A brutal showdown happens in this weeks VS.","player_loc":"https://roosterteeth.com/embed/vs-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4a96bef-38e5-4997-a887-33df41379fb6/sm/ep10849.jpg","duration":817,"publication_date":"2015-05-07T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-11","changefreq":"weekly","video":[{"title":"2015:E19 - Drawful","description":"Joel, Adam, Jaramy, and Poophead play Drawful. For those wondering, that's an oxford comma. I feel like the Oxford comma is an important part of writing things out in a list, but what do I know. We hope you enjoy, this video.","player_loc":"https://roosterteeth.com/embed/how-to-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eba97a56-1240-4bac-87ff-87b81d529d6b/sm/ep10833.jpg","duration":1656,"publication_date":"2015-05-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-71","changefreq":"weekly","video":[{"title":"2015:E125 - Borderlands The Pre-Sequel Melee Only Part 3","description":"Geoff, Jack, Michael, and Ray continue their quest to punch everyone in space in the face. Who will they punch this time Watch to find out!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f16d579-35c9-487a-aea3-5022441b9ed5/sm/ep10835.jpg","duration":2436,"publication_date":"2015-05-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-18","changefreq":"weekly","video":[{"title":"2015:E35 - Minecraft - Rainbow Collection","description":"Taste the rainbow of death","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77de9b57-50e1-43cb-9a5f-71997434b54b/sm/ep10837.jpg","duration":596,"publication_date":"2015-05-06T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-10","changefreq":"weekly","video":[{"title":"2015:E18 - State of Decay HUNT","description":"Geoff and Michael go for three achievements in the new release of State of Decay. Who will grab all three achievements and who will launch across the bridge","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b323e441-b9f8-4d3d-9394-833e25caa2aa/sm/ep10834.jpg","duration":1235,"publication_date":"2015-05-06T17:50:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-36","changefreq":"weekly","video":[{"title":"2015:E124 - 3D Ultra MiniGolf Adventures 2 Part 6","description":"While Ryan has officially lost it and become a duck, the rest of the Minigolf crew continue their decent into Minigolf Madness!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94bfdf9f-1ea0-4989-ab30-5de7f50b6f05/sm/ep10788.jpg","duration":3605,"publication_date":"2015-05-05T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-25","changefreq":"weekly","video":[{"title":"2015:E123 - Borderlands The Pre-Sequal Melee Only Part 2","description":"Geoff, Jack, Michael, and Ray are back and are punching all their foes into a bloody pulp.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e927e43-55bb-4263-ac5c-f8c039ec4cfa/sm/ep10780.jpg","duration":2741,"publication_date":"2015-05-04T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-6","changefreq":"weekly","video":[{"title":"2015:E17 - Week #263","description":"Jack and Geoff and Gavin and Others are here to update you on some news and gaming releases in today's AHWU. Also, check out the new Achievement Hunter poster featured in the episode. Also, Matt is extra furry today. Vid of week: \nCommunity vid of week:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcbba253-fe83-4de4-bb08-a61033e1b02d/sm/ep10784.jpg","duration":451,"publication_date":"2015-05-04T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-4","changefreq":"weekly","video":[{"title":"2015:E23 - The Battle of Hoth","description":"Matt, Adam, and Joel visit a galaxy far far away in the present and check out Hypixel's Incredible Battle of Hoth Adventure map! If you want to download this and fight for the Rebel Allience in their battle against empirial tyranny click here http://bit.ly/1DMo2hX. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7329713f-8bff-4844-999f-e93db3cde174/sm/ep10783.jpg","duration":191,"publication_date":"2015-05-04T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015-2","changefreq":"weekly","video":[{"title":"2015:E2 - Shovel Knight - Kratos Easter Egg","description":"You asked for it, you got it! Kdin and Geoff hop into the PS4 version of Shovel Knight and show off the Kratos Easter Egg!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c066839-5e62-4fef-bd44-1eecb78ca499/sm/ep10782.jpg","duration":139,"publication_date":"2015-05-04T19:59:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-4","changefreq":"weekly","video":[{"title":"2015:E18 - Stabbing Edition - GO! #80","description":"This week's Go is about stabbing. Getting stabbed, the act of stabbing, you name it! The last living stabber gets a sticker. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea7dff9a-24c7-4763-a598-649129529180/sm/ep10778.jpg","duration":191,"publication_date":"2015-05-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-27","changefreq":"weekly","video":[{"title":"2015:E122 - GTA V - The PC Grind","description":"Michael, Ryan, Jack and special guest filler players Kerry, Jeremy, and Matt experience life back at level 1 in the first AH GTA V PC Let's Play!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bbef3e1-9c2c-49fe-af37-1584cbe99e4c/sm/ep10781.jpg","duration":2000,"publication_date":"2015-05-04T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-4","changefreq":"weekly","video":[{"title":"2015:E18 - Fact Check #5","description":"Jack and Geoff play a little true/false game in Five Facts: Fact Check #5!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/345ccd9b-64ad-434a-bb1a-448202d408af/sm/ep10777.jpg","duration":174,"publication_date":"2015-05-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-3","changefreq":"weekly","video":[{"title":"2015:E17 - Top 5 Best DLC in Video Games","description":"Geoff and Kdin take a look at the \"Best DLC\" in video games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dcc4c28-8f3d-4bd8-8ae3-05e7d4a194d9/sm/ep10773.jpg","duration":230,"publication_date":"2015-05-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-188","changefreq":"weekly","video":[{"title":"2015:E121 - Family Feud Part 3","description":"Mica and Lindsay are out for revenge, will they get it or will Ryan's curious food cravings distract them long enough for the guys to take the victory again","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-188","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f61aa6e1-d851-4a0e-9c8d-fe1fa7ce40bf/sm/ep10734.jpg","duration":1611,"publication_date":"2015-05-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Shovel Knight - Hall Champion Guide & Battletoads Easter Egg","description":"Kdin and Geoff show you how to get the Hall Champion Achievement and take a look at the Battletoads Easter Egg in Shovel Knight for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfd9f784-deb2-45ba-80ef-e695a63a5ebb/sm/ep10771.jpg","duration":370,"publication_date":"2015-05-02T12:25:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-may-2015","changefreq":"weekly","video":[{"title":"2015:E9 - Coming Soon - May 2015","description":"Kdin is here to give us the list of video game releases for May in this month's episode of Coming Soon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-may-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b85c112a-b10c-4a68-a738-e35ae78dacfa/sm/ep10732.jpg","duration":201,"publication_date":"2015-05-01T14:58:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-183","changefreq":"weekly","video":[{"title":"2015:E119 - Minecraft - Episode 153 - Flip This House Part 2","description":"The renovations continue, but will the lack of a proper floor-plan destroy friendships","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-183","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bef7f646-4dd1-412f-a16c-7cea4bb3aae9/sm/ep10729.jpg","duration":2426,"publication_date":"2015-04-30T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-27","changefreq":"weekly","video":[{"title":"2015:E18 - Volume 241","description":"In Fails of the Weak #241, Jack and sick Geoff highlight some deadly, and some friendly, fails and glitches from Battlefield Hardline, Far Cry 4, and Grand Theft Auto V! Be sure to go to http://www.youtube.com/gamefails to vote your your favorite fails!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d46cdbbf-ba69-4646-a2c2-73c8560a352c/sm/ep10731.jpg","duration":203,"publication_date":"2015-04-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-51","changefreq":"weekly","video":[{"title":"2015:E34 - GTA V - Michael Smash","description":"AH joins Super Ryan as he \"saves\" the city.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcda94d7-2b61-4a42-bea1-9980fe0780bb/sm/ep10730.jpg","duration":556,"publication_date":"2015-04-30T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-27","changefreq":"weekly","video":[{"title":"2015:E18 - Episode 113: Ryan vs. Gavin","description":"Brain beats brawn, right What if AH has neither","player_loc":"https://roosterteeth.com/embed/vs-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adf71a49-722f-4b6f-b861-7c944a81ab81/sm/ep10726.jpg","duration":1271,"publication_date":"2015-04-30T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-26","changefreq":"weekly","video":[{"title":"2015:E18 - Titan Souls","description":"Adam and Joel demonstrate expert team work while showing us how to beat the first four bosses in Titan Souls.","player_loc":"https://roosterteeth.com/embed/how-to-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aa68314-8937-4968-ae2c-afe12675cf45/sm/ep10725.jpg","duration":1538,"publication_date":"2015-04-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-13","changefreq":"weekly","video":[{"title":"2015:E9 - Call Of Duty: Modern Warfare 3","description":"Geoff's ass gives the best ammo.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2a9f7fc-9197-40b5-a8be-1f9af3258bb7/sm/ep10724.jpg","duration":1001,"publication_date":"2015-04-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-28","changefreq":"weekly","video":[{"title":"2015:E17 - Achievement HUNT #79","description":"Jack and Ryan go head to head in today's HUNT to see who can be the first to grab the \"I'm Alive!\" achievement in Shovel Knight. If you like this new style of HUNT, let us know in the comments.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbe0c970-9ad3-40ab-84fc-68f0c123de17/sm/ep10727.jpg","duration":454,"publication_date":"2015-04-29T19:54:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-178","changefreq":"weekly","video":[{"title":"2015:E117 - Tales From The Borderlands: Atlas Mugged","description":"Geoff, Jack, and Ryan let the dice decide the fate of Rhys and Fiona in Tales From The Borderlands: Atlas Mugged! Download Tales From The Borderlands Here: http://bit.ly/1Dkw6dd","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-178","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9a12461-201e-49e4-a62e-7cc9ae4277e2/sm/ep10722.jpg","duration":3156,"publication_date":"2015-04-29T14:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-49","changefreq":"weekly","video":[{"title":"2015:E33 - Minecraft - Avenging","description":"AH fights to avenge those who need avenging from the Avengers...For justice.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b5b36dd-1684-4f3e-b2c0-db179f97afc6/sm/ep10721.jpg","duration":974,"publication_date":"2015-04-29T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-177","changefreq":"weekly","video":[{"title":"2015:E116 - Marvel: Ultimate Alliance 2","description":"The Incredible Geoff, Iron Jack, Captain Michael, and Ryan: God of Thundurr fumble their way through Marvel Ultimate Alliance 2, meanwhile The Spectacular Kdin drops some Marvel knowledge and sassy one-liners.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-177","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e2b8997-a84c-4435-9175-dadf11f28984/sm/ep10720.jpg","duration":1795,"publication_date":"2015-04-28T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-27","changefreq":"weekly","video":[{"title":"2015:E17 - Battlefield 4","description":"Jack and Geoff get together to discuss Five Facts about Battlefield 4!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/421aa54b-9aad-4706-894f-259daa2ed4e4/sm/ep10718.jpg","duration":201,"publication_date":"2015-04-28T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-170","changefreq":"weekly","video":[{"title":"2015:E115 - Drawful Part 4","description":"Special guests Griffon and Linda return for an \"All Thumbs\" match in this episode of Drawful!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/174c9ab4-7725-4cc7-a114-bd59457fef09/sm/ep10713.jpg","duration":1412,"publication_date":"2015-04-27T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-26","changefreq":"weekly","video":[{"title":"2015:E16 - AHWU #262","description":"In today's AHWU we've replaced Geoff's brand of coffee with pure oil, will he notice Also, check out Geoff's journal on how to send us awesome art here: http://roosterteeth.com/members/journal/entry.phpid=3334880 and how to suggest games for our community appreciation week right here: http://roosterteeth.com/members/journal/entry.phpid=3334881 Vid of week 1: https://www.youtube.com/watchv=MIj4fgcMpwA Vid of week 2: https://www.youtube.com/watchv=s3NmYmcNOLM Community vid: https://www.youtube.com/watchv=Lc6iFfjCnQU","player_loc":"https://roosterteeth.com/embed/ahwu-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8944ca04-793b-4ce3-8a5b-21f2e6f29b1d/sm/ep10717.jpg","duration":774,"publication_date":"2015-04-27T21:37:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-28","changefreq":"weekly","video":[{"title":"2015:E22 - Avenger's City","description":"Matt and Jack visit a city ravenged by war and a few dudes in shiny costumes. If you want to download this map and pretend to be an Avenger click here http://bit.ly/1dm8Jri. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/168304bd-461d-4466-b4a3-c805175b18ef/sm/ep10716.jpg","duration":206,"publication_date":"2015-04-27T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-172","changefreq":"weekly","video":[{"title":"2015:E114 - GTA V Heists - Series A Funding Part 3","description":"Geoff, Michael, Ryan and Gavin continue learning about all the different types of snatchable drugs in Los Santos!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89bf7be3-899f-428f-bc6b-8cd4b5f9f36b/sm/ep10715.jpg","duration":3185,"publication_date":"2015-04-27T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-27","changefreq":"weekly","video":[{"title":"2015:E17 - Marvel Edition - GO! #79","description":"It's Marvel week! And what better way to celebrate Avengers 2 coming out then by beating a level in a Marvel game. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/885bafb3-31a4-4de4-bbdb-e6831de476d1/sm/ep10712.jpg","duration":484,"publication_date":"2015-04-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-24","changefreq":"weekly","video":[{"title":"2015:E16 - Top 5 Easy 1000 Gamerscore Games - Part 3","description":"Kdin, Geoff, and Matt (now with working microphone) bring you five more games with an easy 1000GS! That's 15,000GS so far!","player_loc":"https://roosterteeth.com/embed/countdown-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/069de5ed-7998-4511-b4f2-956f71519b4d/sm/ep10706.jpg","duration":190,"publication_date":"2015-04-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-166","changefreq":"weekly","video":[{"title":"2015:E113 - Family Feud Part 2","description":"The R Connection and friend fight Lindsay and special guest Mica Burton in Family Feud. Trivia Tuesday is a conspiracy theory.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bb4f4d3-ae32-4962-b573-38e68835c124/sm/ep10704.jpg","duration":1534,"publication_date":"2015-04-25T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-165","changefreq":"weekly","video":[{"title":"2015:E112 - Saints Row IV: Re-Elected Part 11","description":"Geoff and Michael finish up their loyalty missions. Only a small portion of the story remains.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1756626-b072-4dea-9a54-f16a5136f863/sm/ep10703.jpg","duration":2293,"publication_date":"2015-04-24T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-46","changefreq":"weekly","video":[{"title":"2015:E32 - GTA V - Mount Killiad","description":"AH races for the kill.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b64f042e-5b7d-4652-8a07-da2910e49692/sm/ep10707.jpg","duration":623,"publication_date":"2015-04-24T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-fails-rap-game-failed","changefreq":"weekly","video":[{"title":"2015:E8 - Game Fails Rap - Game Failed","description":"Download the song: iTunes Achievement Hunter presents it's next rap song. Fails are unavoidable in gaming, so why not dedicate a song to all the hilarity... and rage... they create","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-fails-rap-game-failed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1adf245d-7689-4d22-a61b-0086ec071f9d/sm/ep10701.jpg","duration":198,"publication_date":"2015-04-24T16:27:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-23","changefreq":"weekly","video":[{"title":"2015:E17 - Volume 240","description":"Jack and Geoff gathered your votes and now bring you fails and glitches in GTA V, Halo MCC, Assassin's Creed Unity, and Sleeping Dogs for Fails of the Weak #240. Be sure to go to http://www.youtube.com/gamefails to vote for your favorite fails!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d5de0db-ec6a-49b9-ab97-650f597db547/sm/ep10694.jpg","duration":207,"publication_date":"2015-04-24T15:20:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-goat-simulator-gaotville-achievement-guide","changefreq":"weekly","video":[{"title":"2015:E2499 - Goat Simulator - GaotVille Achievement Guide","description":"Michael and Gavin travel to GoatVille and show us how to get 10 simple(ish) achievements in Goat Simulator for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-goat-simulator-gaotville-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d113ded-2bae-4456-a155-6e67896bb18a/sm/ep10693.jpg","duration":1702,"publication_date":"2015-04-24T14:56:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-4","changefreq":"weekly","video":[{"title":"2015:E2498 - Mortal Kombat X - Fatalities Part 4","description":"Jack and Geoff polish off the rest of the fatalities in Mortal Kombat X. Join them as they check out the new characters Cassie Cage, D'Vorah, Erron Black, Ferra/Torr, Jacqui Briggs, Kotal Kahn, Kung Jin, and Takeda.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a093aa3b-7c19-43df-8823-c020f75869db/sm/ep10692.jpg","duration":306,"publication_date":"2015-04-24T14:54:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-156","changefreq":"weekly","video":[{"title":"2015:E111 - Minecraft - Episode 152 - Flip This House","description":"The Achievement Hunter demolition crew is in, time to pave the way for new adventures!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/257b4d0d-c48f-408a-b520-8feab08953c0/sm/ep10690.jpg","duration":2619,"publication_date":"2015-04-23T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-3","changefreq":"weekly","video":[{"title":"2015:E2497 - Mortal Kombat X - Fatalities Part 3","description":"Jack and Geoff finish off the rest of the Mortal Kombat characters from everything past 3. Learn both fatalities for Quan Chi, Shinnok, Goro, Kenshi, and Ermac.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1241cab4-9182-4526-8866-827715d95feb/sm/ep10691.jpg","duration":209,"publication_date":"2015-04-23T19:46:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-22","changefreq":"weekly","video":[{"title":"2015:E17 - Mortal Kombat X","description":"Joel, Adam, Jeremy, and Matt split two controllers and fight it out. Holy sh... his HEAD JUST CAME OFF! What the hell is wrong with this game! Oh my god! That's... that's... why! Oh... we just won...","player_loc":"https://roosterteeth.com/embed/how-to-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16b891a1-b1ae-4e07-8bc2-c01a7439322f/sm/ep10689.jpg","duration":1275,"publication_date":"2015-04-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-152","changefreq":"weekly","video":[{"title":"2015:E110 - Hot Seat: Left 4 Dead 2 Featuring Andrew Panton","description":"The real team OG returns to run their way through Left 4 Dead 2 on realism mode. So join Geoff, Gavin, Caleb and special guest Andrew Panton as they show everyone how it's done.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88b73d35-a54b-46d2-b5fe-cd9f69be7022/sm/ep10684.jpg","duration":2739,"publication_date":"2015-04-22T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-23","changefreq":"weekly","video":[{"title":"2015:E16 - Achievement HUNT - Vengeance Begins","description":"Michael and Gavin start a new take on HUNT, an actual HUNT for an Achievement. Today these two square off to be the first to collect the \"Vengeance Begins' achievement in Assassin's Creed Chronicles: China.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c6964b6-23d7-4189-afa8-7ebbee5033a9/sm/ep10688.jpg","duration":878,"publication_date":"2015-04-22T20:44:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-12","changefreq":"weekly","video":[{"title":"2015:E9 - Le Tour De France 2009","description":"WHERE'S ARMSTRONG","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ac92885-f3f6-4fc8-a42b-60ff1d0ff928/sm/ep10685.jpg","duration":227,"publication_date":"2015-04-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-42","changefreq":"weekly","video":[{"title":"2015:E31 - Minecraft - Mineokart Coin Runners","description":"AH collects some cash in this Minecraft remake of Mario Kart's Battle Mode - Coin Runners.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27705b1a-d7f7-405b-98f2-801fcc4de99a/sm/ep10687.jpg","duration":500,"publication_date":"2015-04-22T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-23","changefreq":"weekly","video":[{"title":"2015:E17 - Episode 112: Jeremy vs. Ryan","description":"AH settles in for a bit of footie.","player_loc":"https://roosterteeth.com/embed/vs-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a11022cb-0a88-4a2a-8ae1-457b97c8995c/sm/ep10683.jpg","duration":284,"publication_date":"2015-04-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-2","changefreq":"weekly","video":[{"title":"2015:E2496 - Mortal Kombat X - Fatalities Part 2","description":"Jack and Geoff are punishing more folks in MKX with fatalities by Reptile, Kung Lao, Kitana, Mileena, and Jax. Stay tuned for more!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4df596d8-a2f9-41cf-9d85-14251c86abc6/sm/ep10682.jpg","duration":194,"publication_date":"2015-04-21T22:08:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-148","changefreq":"weekly","video":[{"title":"2015:E109 - 3D Ultra MiniGolf Adventures 2 Part 5","description":"The Minigolf crew have been at it for over two years, have they finally learned how to play the game","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34933bf8-4bae-49db-8cbf-bce818b1b5be/sm/ep10680.jpg","duration":2134,"publication_date":"2015-04-21T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-149","changefreq":"weekly","video":[{"title":"2015:E108 - Farcry4 co-op Part 4","description":"Geoff and Ryan are back on their latest adventure into the land of Kyrat!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b493f9e-76d0-4cf9-a911-97ac295e7cc4/sm/ep10681.jpg","duration":2441,"publication_date":"2015-04-21T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-22","changefreq":"weekly","video":[{"title":"2015:E16 - Injustice: Gods Among Us","description":"Jack and Geoff discuss Injustice: Gods Among Us in this week's Five Facts.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f414520-038b-483f-9921-68f2b783a750/sm/ep10679.jpg","duration":265,"publication_date":"2015-04-21T15:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-22","changefreq":"weekly","video":[{"title":"2015:E16 - Pop a Fire Hydrant - GO! #78","description":"It's summer! And what's the best way to beat the digital heat Pop a fire hydrant! First one to do it gets a sticker. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13912fc0-fe16-436d-8f97-48662e6d64d3/sm/ep10678.jpg","duration":324,"publication_date":"2015-04-21T11:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-23","changefreq":"weekly","video":[{"title":"2015:E21 - Mega Jack's House","description":"Matt and Jack check out MrBuildsALot's tribute to Jack and his house. It's a solid 4 out of 10, you should check it out. If you want to download this map to pretend to be a giant Jack all by yourself click here http://bit.ly/1bekK0v. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e8cf27f-5cec-46d7-a1c0-13f083cd01f4/sm/ep10676.jpg","duration":191,"publication_date":"2015-04-20T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-20","changefreq":"weekly","video":[{"title":"2015:E15 - Top 5 Birds in Video Games","description":"Kdin and Geoff talk about the Top 5 Birds in video games while Matt continues to talk even though he unplugged his mic accidentally just before the recording began!","player_loc":"https://roosterteeth.com/embed/countdown-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c0fe4cc-e906-4dac-9dda-46d80ba4f33d/sm/ep10675.jpg","duration":184,"publication_date":"2015-04-20T19:32:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-21","changefreq":"weekly","video":[{"title":"2015:E15 - AHWU #261","description":"In today's AHWU Geoff and Jack discuss how much Geoff looks like Jim from Taxi. If you understand that, congratulations, you are old too. Vid of week 1: http://bit.ly/1bmbwQw, Vid of week 2: http://bit.ly/1be8xcq, and Community vid: http://bit.ly/1GdL4FM","player_loc":"https://roosterteeth.com/embed/ahwu-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fe2849b-cdd5-4f80-b500-de58a48a3b28/sm/ep10674.jpg","duration":380,"publication_date":"2015-04-20T18:43:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-145","changefreq":"weekly","video":[{"title":"2015:E107 - GTA V Heists - Series A Funding Part 2","description":"Geoff, Ryan, Gavin and Michael (Batman got busy with that whole Superman business) continue cleaning up the city in part 2 of the Series A Funding Heist.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa1d6225-d4f4-409f-bea7-93c22fed246e/sm/ep10673.jpg","duration":2436,"publication_date":"2015-04-20T17:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-22","changefreq":"weekly","video":[{"title":"2015:E20 - Westeroscraft King's Landing","description":"Matt and Geoff are back for the final day of our Westeroscraft special! For the last day they're heading to the biggest city in all of Westeros, King's Landing. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad1c058d-9517-422c-99f8-3a3f2938fa4c/sm/ep10668.jpg","duration":238,"publication_date":"2015-04-18T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-21","changefreq":"weekly","video":[{"title":"2015:E19 - Westeroscraft Casterly Rock and Harrenhall","description":"Matt, Joel, and Adam, take on day six of our Westeroscraft special! Today they head to Casterly Rock and Harrenhall to see what it is about those places that makes the Lannisters jerks. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31e87c5d-0229-4055-8cb4-1e9b1deb957a/sm/ep10667.jpg","duration":247,"publication_date":"2015-04-18T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-140","changefreq":"weekly","video":[{"title":"2015:E106 - Saints Row IV: Re-Elected Part 10","description":"Geoff and Michael are getting close to the end. See them get to the end of their journey.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e7dee91-0414-4e3f-93bc-3c5a8a8116f4/sm/ep10666.jpg","duration":2387,"publication_date":"2015-04-18T00:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-38","changefreq":"weekly","video":[{"title":"2015:E30 - GTA V - Flare Fight","description":"AH flares for their friends. Check out Michael's view:","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1a3abf5-36da-40ad-bf74-0f83d4f42f05/sm/ep10665.jpg","duration":336,"publication_date":"2015-04-17T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-1","changefreq":"weekly","video":[{"title":"2015:E2495 - Mortal Kombat X - Fatalities Part 1","description":"Jack and Geoff go old school and show you all of the original Mortal Kombat character's fatalities in Mortal Kombat X. Learn Kano, Liu Kang, Johnny Cage, Sub-Zero, Scorpion, Sonya Blade, and Raiden's fatality while Jack and Geoff groan. More parts coming soon.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mortal-kombat-x-fatalities-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef4b0315-32b4-48fb-97f3-43dd55e4d662/sm/ep10664.jpg","duration":271,"publication_date":"2015-04-17T19:45:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-20","changefreq":"weekly","video":[{"title":"2015:E18 - Westeroscraft Dragonstone, Pyke, and Sunspear","description":"Matt and Jack tackle day five of Westeroscraft! Today they cover a lot of ground by checking out Dragonstone, Pyke, and Sunspear. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4574ebfb-d245-4ab4-9e60-013f30a89582/sm/ep10663.jpg","duration":231,"publication_date":"2015-04-17T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-19","changefreq":"weekly","video":[{"title":"2015:E16 - Volume 239","description":"In Fails of the Weak #239, Jack and Geoff bring you an episode filled with Grand Theft Auto V fails and glitches! Be sure to go to http://www.youtube.com/gamefails to vote for your favorite fails!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e175f0b-adc3-41db-915f-7d705a3cf1b8/sm/ep10661.jpg","duration":212,"publication_date":"2015-04-17T17:27:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-133","changefreq":"weekly","video":[{"title":"2015:E105 - Minecraft - Episode 151 - Brown Out","description":"The dawn of a new era...Ray In Peace.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1882cc78-6b90-4e78-91ad-fac88ac11985/sm/ep10657.jpg","duration":2228,"publication_date":"2015-04-16T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-20","changefreq":"weekly","video":[{"title":"2015:E16 - Episode 111: Ray vs. Jeremy","description":"Jeremy steps into the ring in his first VS challenge.","player_loc":"https://roosterteeth.com/embed/vs-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3d32d2a-24ca-4d6d-b373-f58c63c4a2e8/sm/ep10658.jpg","duration":498,"publication_date":"2015-04-16T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-19","changefreq":"weekly","video":[{"title":"2015:E16 - I am Bread Real Life Edition","description":"Joel and Adam set out to accomplish a simple daily task... as a slice of bread. As it turns out, life is hard for bread","player_loc":"https://roosterteeth.com/embed/how-to-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4041ca18-442a-4e69-8d1e-d01c072eba17/sm/ep10654.jpg","duration":2582,"publication_date":"2015-04-16T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-131","changefreq":"weekly","video":[{"title":"2015:E104 - Rainbow Six Vegas Co-Op Part 2","description":"Geoff, Michael, Gavin, and Ray continue through the Rainbow Six Campaign. How far can they get before friendly fire gets the best of them","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22149cde-6d8e-44d6-9ff2-69d94fe97ffb/sm/ep10655.jpg","duration":1544,"publication_date":"2015-04-16T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-19","changefreq":"weekly","video":[{"title":"2015:E17 - Westeroscraft The Twins and Riverrun","description":"Matt and Trevor are here for day four of Westeroscraft! Today they're checking out some of the best bridges in Westeros, The Twins and Riverrun. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3be323ce-1124-4594-8d37-9685ad78f299/sm/ep10656.jpg","duration":221,"publication_date":"2015-04-16T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-cast-season-1-past-cast-history-blogs-of-yesteryear-cesar","changefreq":"weekly","video":[{"title":"S1:E5 - Past Cast: History Blogs of YesterYear","description":"Caesar makes his customary video blog to his constitutes. Oh and Brutus was there too.","player_loc":"https://roosterteeth.com/embed/past-cast-season-1-past-cast-history-blogs-of-yesteryear-cesar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c32108e-5c05-4b95-8ffb-8b5c87ea8075/sm/ep4123.jpg","duration":108,"publication_date":"2011-12-23T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-cookies-and-hobos","changefreq":"weekly","video":[{"title":"2011:E1 - Cookies and Hobos","description":"Rooster Teeth Animated Adventures #24 tells how Girls Scouts use their guilt powers to force you to buy cookies. It also tells the story about the homeless guy who was always having his legs cut off.\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan\r\n\r\nAudio from Rooster Teeth Podcast: http://roosterteeth.com/podcast/","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-cookies-and-hobos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daf5ce12-ed04-438c-8a3b-b9c2f054eab9/sm/ep4109.jpg","duration":73,"publication_date":"2011-12-21T20:37:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-siri-the-movie-trailer","changefreq":"weekly","video":[{"title":"S4:E2 - Siri: The Movie (Trailer)","description":"S4:E2 - Siri: The Movie (Trailer)","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-siri-the-movie-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8adc58f-3e75-4001-a27c-7e4f7b9c8e9b/sm/ep4105.jpg","duration":129,"publication_date":"2011-12-21T00:10:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-brandon-and-the-electric-fence","changefreq":"weekly","video":[{"title":"2011:E25 - Brandon and the Electric Fence","description":"Rooster Teeth Animated Adventures #23 is the story of Burnie's attempt to murder Brandon using an electric fence in New Zealand\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan\r\n\r\nAudio from Rooster Teeth Podcast #140: http://roosterteeth.com/podcast/episode.phpid=140","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-brandon-and-the-electric-fence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0833c9b-7924-41d6-91c7-7b554cd947a6/sm/ep4066.jpg","duration":80,"publication_date":"2011-12-14T16:21:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-burnie-burns-horse-puncher","changefreq":"weekly","video":[{"title":"2011:E22 - Burnie Burns Horse Puncher","description":"Animated Adventures #22 is the story of Burnie and his epic horse punching fight against a hungry horse. Animation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-burnie-burns-horse-puncher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33939c8c-24b7-46c6-8d70-8c0c30b391d2/sm/ep4031.jpg","duration":67,"publication_date":"2011-12-07T05:23:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-burnie-and-joels-bathroom-encounter","changefreq":"weekly","video":[{"title":"2011:E21 - Burnie and Joel's Bathroom Encounter","description":"Rooster Teeth Animated Adventures #21 is Joel's story about Burnie invading his privacy in a hotel room shower. A steamy situation results.\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan\r\n\r\nAudio from Rooster Teeth Podcast #135: http://roosterteeth.com/podcast/episode.phpid=135","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-burnie-and-joels-bathroom-encounter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62f78910-fe21-464b-bb9c-12bbe00b872d/sm/ep4000.jpg","duration":66,"publication_date":"2011-11-30T16:37:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-prank-king","changefreq":"weekly","video":[{"title":"S3:E34 - Prank King","description":"S3:E34 - Prank King","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-prank-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78231e13-b71d-4989-9f20-a6f509f4f0bf/sm/ep3978.jpg","duration":338,"publication_date":"2011-11-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-shamu-plane-and-naked-joel","changefreq":"weekly","video":[{"title":"2011:E19 - Shamu Plane and Naked Joel","description":"Like the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/slOoBo\r\n\r\nRooster Teeth Animated Adventures #20 tells the story about Jack's excitement to ride the Shamu plane and Joel's confusion with hospital gowns.\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-shamu-plane-and-naked-joel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95c93310-d0cd-4088-ac37-2f1dcbff4a32/sm/ep3974.jpg","duration":71,"publication_date":"2011-11-23T19:27:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/past-cast-season-1-past-cast-history-blogs-of-yesteryear-john","changefreq":"weekly","video":[{"title":"S1:E1 - Past Cast: History Blogs of YesterYear","description":"It seems the story of John Smith and Pocahontas skipped over one very important detail of that relationship...","player_loc":"https://roosterteeth.com/embed/past-cast-season-1-past-cast-history-blogs-of-yesteryear-john","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffe90dbc-4818-4a4b-b8cd-c058f9655c80/sm/ep3965.jpg","duration":168,"publication_date":"2011-11-22T09:40:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2011-3","changefreq":"weekly","video":[{"title":"2011:E3 - Cinnamon Tablespoon Challenge!!!","description":"Michael \"Rage Quit\" Jones answers the calls of fans and downs a spoon of cinnamon.","player_loc":"https://roosterteeth.com/embed/rt-life-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6543cb6-86b9-481c-85f0-a7acb42a226e/sm/ep3953.jpg","duration":110,"publication_date":"2011-11-19T01:00:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-burnie-fights-animals","changefreq":"weekly","video":[{"title":"2011:E4 - Burnie Fights Animals","description":"Rooster Teeth Animated Adventures #19 is Burnie explaining why he isn't afraid of any animal and claims he can fight any of them.\r\n\r\nAudio from Rooster Teeth Podcast #113: http://roosterteeth.com/podcast/episode.phpid=113\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-burnie-fights-animals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/398b468a-ac0a-4b73-afd3-bb1f9b80e114/sm/ep3925.jpg","duration":68,"publication_date":"2011-11-16T22:49:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-20-season-finale","changefreq":"weekly","video":[{"title":"S9:E20 - Episode 20: Hate to Say Goodbye - Season Finale","description":"Head to http://RoosterTeeth.com/Store to get the DVD!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-20-season-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f48f9b-2abf-4002-844a-ef3a7a075c0f/sm/ep3907.jpg","duration":358,"publication_date":"2011-11-15T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-heavenly-ends","changefreq":"weekly","video":[{"title":"S3:E33 - Heavenly Ends","description":"Pre-Order RT Shorts Season 3 today! Geoff reaches the pearly gates.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-heavenly-ends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01cc786a-a6a7-4b3f-b54d-67d8290cddcf/sm/ep3873.jpg","duration":256,"publication_date":"2011-11-12T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-gus-vs-machete-man","changefreq":"weekly","video":[{"title":"2011:E2 - Gus vs Machete Man","description":"Like the animated adventure Check out all of the Rooster Teeth Podcast here: http://bit.ly/slOoBo\r\n\r\nRooster Teeth Animated Adventures #18 is Gus' story about nearly getting hacked to death by a crazed machete wielding maniac in El Paso.\r\n\r\nAudio from Rooster Teeth Podcast #126: http://roosterteeth.com/podcast/episode.phpid=126\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-gus-vs-machete-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8a37422-aadd-4ac2-8c83-eb52dc18bc58/sm/ep3854.jpg","duration":55,"publication_date":"2011-11-09T19:00:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-19","changefreq":"weekly","video":[{"title":"S9:E19 - Episode 19: Whole Lot of Shaking","description":"S9:E19 - Episode 19: Whole Lot of Shaking","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d69f5cc-8cb7-48f7-8828-f6d59dcad41e/sm/ep3846.jpg","duration":334,"publication_date":"2011-11-08T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-fun-with-earthquakes","changefreq":"weekly","video":[{"title":"2011:E24 - Fun With Earthquakes","description":"Rooster Teeth Animated Adventures #17 shares the RT Crew's thoughts about earthquakes including Matt's first earthquake and Gus' earthquake fetish.\r\n\r\nAudio from Rooster Teeth Podcast: http://roosterteeth.com/podcast/\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-fun-with-earthquakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/726af6ab-7e59-43c7-aed8-84751a4c8a1a/sm/ep3810.jpg","duration":69,"publication_date":"2011-11-02T19:20:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-18","changefreq":"weekly","video":[{"title":"S9:E18 - Episode 18: Labor Pains","description":"S9:E18 - Episode 18: Labor Pains","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57be6da7-e3e3-4b4e-a0af-a3a69e82034e/sm/ep3798.jpg","duration":387,"publication_date":"2011-11-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2011-5","changefreq":"weekly","video":[{"title":"2011:E5 - Ghost Pepper Challenge!!!","description":"Michael \"Rage Quit\" Jones and Miles Luna both take on the dreaded Ghost Pepper, the HOTTEST pepper in the world! Can their tongues and their bodies handle the heat When a new challenger enters the fray, will he conquer the Ghost Pepper","player_loc":"https://roosterteeth.com/embed/rt-life-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0752db0-f3ed-43e2-8c6f-48684c08d644/sm/ep3795.jpg","duration":154,"publication_date":"2011-10-28T23:06:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-karas-exciting-day","changefreq":"weekly","video":[{"title":"2011:E23 - Kara's Exciting Day","description":"Rooster Teeth Animated Adventures #16 tells of the things Kara enjoys most about her job at Rooster Teeth. As a bonus in this episode, Joel talks about Geoff's fancy grill.\r\n\r\nAudio from Rooster Teeth Podcast: http://roosterteeth.com/podcast/\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-karas-exciting-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2048928d-6153-4240-ad73-0b43fe30c9fe/sm/ep3781.jpg","duration":61,"publication_date":"2011-10-26T14:11:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-17","changefreq":"weekly","video":[{"title":"S9:E17 - Episode 17: Spiral","description":"S9:E17 - Episode 17: Spiral","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/340500d5-2528-4192-9012-d0ebc4c5103d/sm/ep3766.jpg","duration":412,"publication_date":"2011-10-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-4-video-game-president","changefreq":"weekly","video":[{"title":"S4:E1 - Video Game President","description":"America needs a new leader for a new leaderboard.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-4-video-game-president","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c498c0a-7e1a-4657-be02-7e2f6e95b3d3/sm/ep3763.jpg","duration":100,"publication_date":"2011-10-22T20:41:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-gus-anesthesia","changefreq":"weekly","video":[{"title":"2011:E20 - Gus Anesthesia","description":"Rooster Teeth Animated Adventures #15 shows Gus' true colors once he is under the effects of mind altering drugs. \r\n\r\nAudio from Rooster Teeth Podcast 126: http://roosterteeth.com/podcast/episode.phpid=126\r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-gus-anesthesia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7e284c9-0fc7-4c7d-9768-853844186005/sm/ep3741.jpg","duration":65,"publication_date":"2011-10-19T19:20:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-16","changefreq":"weekly","video":[{"title":"S9:E16 - Episode 16: Hell's Angel","description":"S9:E16 - Episode 16: Hell's Angel","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86d90d9d-fa63-40d0-8a94-bbb47f104583/sm/ep3733.jpg","duration":400,"publication_date":"2011-10-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-life-2011-4","changefreq":"weekly","video":[{"title":"2011:E4 - Cooking with Geoff","description":"2 steps to cook cornbread that will get you drunk.","player_loc":"https://roosterteeth.com/embed/rt-life-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/161e66fa-a596-40a4-a52a-d066c1066d39/sm/ep3728.jpg","duration":50,"publication_date":"2011-10-15T01:14:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-joel-hates-snakes","changefreq":"weekly","video":[{"title":"2011:E18 - Joel Hates Snakes","description":"Rooster Teeth Animated Adventures #14 shows Joel and his brother terrorizing his neighborhood with a snake \r\n\r\nAudio from Rooster Teeth Podcast 119: http://roosterteeth.com/podcast/episode.phpid=119 \r\n\r\nAnimation by JayOrDan http://roosterteeth.com/jayordan","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-joel-hates-snakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/827172af-0e44-4181-bad1-fb79ee2530b9/sm/ep3712.jpg","duration":57,"publication_date":"2011-10-11T22:33:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-15","changefreq":"weekly","video":[{"title":"S9:E15 - Episode 15: The Sarcophagus","description":"S9:E15 - Episode 15: The Sarcophagus","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48989503-6c77-4eb1-b391-bcc94941ff76/sm/ep3708.jpg","duration":526,"publication_date":"2011-10-11T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-party-of-the-dead","changefreq":"weekly","video":[{"title":"2011:E17 - Party of the Dead","description":"Rooster Teeth Animated Adventures #13 shows the Rooster Teeth crew recreating a gaming industry party and tells the story of Burnie's older brother trolling him into thinking Dawn of the Dead was based on a true story.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-party-of-the-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df50a13d-a3da-4af4-946e-237dbae9533b/sm/ep3706.jpg","duration":64,"publication_date":"2011-10-10T18:00:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-shakedowns-and-breakdowns","changefreq":"weekly","video":[{"title":"2011:E16 - Shakedowns & Breakdowns","description":"Rooster Teeth Animated Adventures #12 is the story of Millie learning how to use the threat of violence to get what she wants. Additionally, Gus and Geoff revisit their discussion about why the rules on a plane are important. Finally, Joel explains why he was right about everything.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-shakedowns-and-breakdowns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13bb6407-21f8-482d-9c76-38beff431b2e/sm/ep3705.jpg","duration":106,"publication_date":"2011-10-10T17:58:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-double-derps","changefreq":"weekly","video":[{"title":"2011:E15 - Double Derps","description":"Rooster Teeth Animated Adventures #11 tells the story about two idiots and their questions about stromboli and soda machines.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-double-derps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/287cfa52-bc26-4169-9a71-0120de571373/sm/ep3704.jpg","duration":90,"publication_date":"2011-10-10T17:58:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-omnibus-3","changefreq":"weekly","video":[{"title":"2011:E12 - Omnibus 3","description":"Rooster Teeth Animated Adventures #10 is a collection of stories; Gus shows the \"situation\" to some people at PAX East, Burnie learns what \"cribbing\" is.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-omnibus-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7edb3946-8795-4e1c-a153-69e2a20b44e9/sm/ep3703.jpg","duration":94,"publication_date":"2011-10-10T17:57:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-new-orleans-pt-2","changefreq":"weekly","video":[{"title":"2011:E14 - New Orleans pt 2","description":"Rooster Teeth Animated Adventures #9 tells the conclusion of Geoff and Griffon's eventful trip to New Orleans","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-new-orleans-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa4bc02a-e03c-47f8-a1be-296bae8eeb81/sm/ep3702.jpg","duration":85,"publication_date":"2011-10-10T17:56:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-new-orleans-pt-1","changefreq":"weekly","video":[{"title":"2011:E13 - New Orleans pt 1","description":"Rooster Teeth Animated Adventures #8 tells the first part of the story of Geoff and Griffon in New Orleans.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-new-orleans-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc90de1e-bd48-4d2d-b52e-68b8b9037120/sm/ep3701.jpg","duration":107,"publication_date":"2011-10-10T17:56:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-omnibus-2","changefreq":"weekly","video":[{"title":"2011:E11 - Omnibus 2","description":"Rooster Teeth Animated Adventures #7 is a collection of stories. Watch as young Geoff gets an adult in trouble, the podcast crew meets \"the man\", and young Burnie thinks he may have set a world record.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-omnibus-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5202fa4-66b4-4563-b4f8-4c99570d4aef/sm/ep3700.jpg","duration":110,"publication_date":"2011-10-10T17:54:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-omnibus-1","changefreq":"weekly","video":[{"title":"2011:E10 - Omnibus 1","description":"Rooster Teeth Animated Adventures #6 is a collection of stories. Watch as Burnie trolls frightened airplane passengers, Gavin experiences America in its purest form, a misplaced phone upsets Burnie and Gus' car gets egged.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-omnibus-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfbf9064-65e5-4d60-ac4a-8429645bf65f/sm/ep3699.jpg","duration":89,"publication_date":"2011-10-10T17:53:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-expert-parent","changefreq":"weekly","video":[{"title":"2011:E9 - Expert Parent","description":"Rooster Teeth Animated Adventures #5 is the story of Geoff and his advice on how to raise a child.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-expert-parent","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1c4798d-a32d-4b54-80aa-c3b48df4fff4/sm/ep3698.jpg","duration":65,"publication_date":"2011-10-10T17:53:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-headlight-fluid","changefreq":"weekly","video":[{"title":"2011:E8 - Headlight Fluid","description":"Rooster Teeth Animated Adventures #4 is the story of Gavin and his work with a professional stunt driver who had an accident.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-headlight-fluid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aafa816-84a2-4796-84ef-92786b084d2f/sm/ep3697.jpg","duration":60,"publication_date":"2011-10-10T17:52:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-lightning","changefreq":"weekly","video":[{"title":"2011:E7 - Lightning","description":"Rooster Teeth Animated Adventures #3 is the story of Geoff and his experience with lightning and a surly tow truck driver.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-lightning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df03a87e-015e-49c5-b204-13580982c77d/sm/ep3696.jpg","duration":101,"publication_date":"2011-10-10T17:51:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-statue","changefreq":"weekly","video":[{"title":"2011:E6 - Statue","description":"Rooster Teeth Animated Adventures #2 is the story of Burnie and his fight to get a statue of him erected in Burnie, Tasmania.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-statue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a42a357c-c610-46cf-9285-115b8d7a8a38/sm/ep3695.jpg","duration":70,"publication_date":"2011-10-10T17:49:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-animated-adventures-rtaa-san-diego","changefreq":"weekly","video":[{"title":"2011:E5 - San Diego","description":"Rooster Teeth Animated Adventures #1 is the story of Geoff and Gus encountering some rude passengers on their flight to San Diego.","player_loc":"https://roosterteeth.com/embed/rt-animated-adventures-rtaa-san-diego","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4a5ed2e-44a9-469c-8c66-e5798d309021/sm/ep3694.jpg","duration":78,"publication_date":"2011-10-10T17:47:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-14","changefreq":"weekly","video":[{"title":"S9:E14 - Episode 14: Son of a Bitch","description":"S9:E14 - Episode 14: Son of a Bitch","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87610e90-d5fc-4c5e-bb1e-ad64f85a067e/sm/ep3654.jpg","duration":381,"publication_date":"2011-10-04T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-rage-quit-gets-ketchuped","changefreq":"weekly","video":[{"title":"S2:E16 - Rage Quit Gets Ketchuped","description":"The people wanted to see Ketchup thrown on Michael and we do not disappoint.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-rage-quit-gets-ketchuped","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c9c8edb-a891-40cf-927a-bf37583bae9f/sm/ep3627.jpg","duration":92,"publication_date":"2011-09-23T23:52:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-life-2011-2","changefreq":"weekly","video":[{"title":"2011:E2 - Michael Gets Ketchuped","description":"The people wanted to see Ketchup thrown on Michael and we do not disappoint.","player_loc":"https://roosterteeth.com/embed/rt-life-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b47dcb14-74f7-403c-bc05-7fd4734be837/sm/ep3626.jpg","duration":86,"publication_date":"2011-09-23T23:51:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-13","changefreq":"weekly","video":[{"title":"S9:E13 - Episode 13: Planning the Heist","description":"S9:E13 - Episode 13: Planning the Heist","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a86e0811-dd26-4780-b6da-1f1821b1541c/sm/ep3608.jpg","duration":262,"publication_date":"2011-09-20T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-12","changefreq":"weekly","video":[{"title":"S9:E12 - Episode 12: Mid-Game Substitution","description":"S9:E12 - Episode 12: Mid-Game Substitution","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01ea0614-199d-4075-8dfb-c7eebf181ca0/sm/ep3590.jpg","duration":402,"publication_date":"2011-09-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-11","changefreq":"weekly","video":[{"title":"S9:E11 - Episode 11: Lifting the Veil","description":"S9:E11 - Episode 11: Lifting the Veil","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f9a4877-df93-4b11-bb25-1d44f746038d/sm/ep3548.jpg","duration":348,"publication_date":"2011-09-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-10","changefreq":"weekly","video":[{"title":"S9:E10 - Episode 10: Introductions","description":"S9:E10 - Episode 10: Introductions","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3ab3de3-6b0e-4772-8072-01adf0eac53e/sm/ep3525.jpg","duration":487,"publication_date":"2011-08-29T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-psa-gamer-etiquette","changefreq":"weekly","video":[{"title":"S1:E32 - PSA: Gamer Etiquette","description":"Sarge and Church walk you through proper behavior in a gaming environment.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-psa-gamer-etiquette","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8902f96b-255e-47c4-9b2e-912d945ed934/sm/ep3511.jpg","duration":196,"publication_date":"2011-08-23T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-danger-zone","changefreq":"weekly","video":[{"title":"S3:E32 - Danger Zone","description":"Joel is wary of a few warning signs around the office.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-danger-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48039f57-0e3e-4966-8cdd-5739c7ffb20f/sm/ep3506.jpg","duration":86,"publication_date":"2011-08-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-9","changefreq":"weekly","video":[{"title":"S9:E9 - Episode 9: Captive Audience","description":"S9:E9 - Episode 9: Captive Audience","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a4c895b-1782-4127-a676-53781e555679/sm/ep3493.jpg","duration":366,"publication_date":"2011-08-16T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-7","changefreq":"weekly","video":[{"title":"S9:E7 - Episode 7: Case File 01.045","description":"S9:E7 - Episode 7: Case File 01.045","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60e6fa3f-c00c-42b5-9a18-be2baa2a0f42/sm/ep3465.jpg","duration":324,"publication_date":"2011-08-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-captain-america","changefreq":"weekly","video":[{"title":"S3:E31 - Captain America","description":"Steve Rogers readies for his transformation but finds out some negative side effects of the syndrome.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-captain-america","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bc3ebf3-1129-4c85-b8e9-243d16d68f99/sm/ep3450.jpg","duration":258,"publication_date":"2011-07-23T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-google-vs-facebook","changefreq":"weekly","video":[{"title":"S3:E30 - Google+ vs. Facebook","description":"Mark Zuckerberg reflects on the oncoming threat of Google+","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-google-vs-facebook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fde63f72-95a0-4392-aaaf-f0cef5881256/sm/ep3439.jpg","duration":166,"publication_date":"2011-07-19T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-5","changefreq":"weekly","video":[{"title":"S9:E5 - Episode 5: Realignment","description":"S9:E5 - Episode 5: Realignment","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/985daa1c-7bf8-4247-a46b-c72ed499d3c8/sm/ep3437.jpg","duration":372,"publication_date":"2011-07-19T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-god-save-the-brit","changefreq":"weekly","video":[{"title":"S2:E15 - God Save the Brit","description":"S2:E15 - God Save the Brit","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-god-save-the-brit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cfa5315-e1e4-43d4-babd-444f2618a998/sm/ep3411.jpg","duration":159,"publication_date":"2011-07-07T20:11:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2","changefreq":"weekly","video":[{"title":"S2:E24 - God Save the Brit","description":"Burnie quizzes Ben, our resident Englishman, on American history.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23f9f0fa-5f21-4a1e-b240-1951890f3978/sm/ep3396.jpg","duration":288,"publication_date":"2011-07-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-3","changefreq":"weekly","video":[{"title":"S9:E3 - Episode 3: Number One","description":"S9:E3 - Episode 3: Number One","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0805ddb-cbf0-4450-99a0-03b5e17906de/sm/ep3384.jpg","duration":304,"publication_date":"2011-06-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-bungies-20th-anniversary-psa","changefreq":"weekly","video":[{"title":"S1:E31 - Bungie's 20th Anniversary PSA","description":"The guys from Red vs. Blue explain almost everything you need to know about Bungie's anniversary... kinda.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-bungies-20th-anniversary-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aeeed42-52eb-4c18-87be-0ea05d34477f/sm/ep3374.jpg","duration":201,"publication_date":"2011-06-23T23:12:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/drunk-tank-2011","changefreq":"weekly","video":[{"title":"2011:E1 - Drunk Tank #119","description":"Burnie, Gus, Jack and Joel talk about silent rattlesnakes and throwing pythons in swimming pools. Quite possibly the funniest podcast ever.","player_loc":"https://roosterteeth.com/embed/drunk-tank-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad38827b-2e5e-4226-a50d-47948231a6ff/sm/ep3364.jpg","duration":3564,"publication_date":"2011-06-22T17:14:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-9-episode-2","changefreq":"weekly","video":[{"title":"S9:E2 - Episode 2: The Twins","description":"S9:E2 - Episode 2: The Twins","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-9-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4ea57b3-dc8b-47bf-bfd9-15e3fcb3e80b/sm/ep3355.jpg","duration":327,"publication_date":"2011-06-21T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-horde-mode","changefreq":"weekly","video":[{"title":"S1:E9 - Horde Mode","description":"Geoff and Gus, armed with a nerf arsenal, take on 400 zombies. Can they defeat the horde Find out on Immersion.","player_loc":"https://roosterteeth.com/embed/immersion-season-1-horde-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/073abfd3-10d0-4223-a69b-d308004ad17b/sm/ep3349.jpg","duration":354,"publication_date":"2011-06-18T03:31:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drunk-tank-2011-12","changefreq":"weekly","video":[{"title":"2011:E12 - Drunk Tank #117","description":"Geoff, Griffon, Gus and Joel eat moonshine soaked cherries and talk about E3.","player_loc":"https://roosterteeth.com/embed/drunk-tank-2011-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6793e56a-8313-47b5-bca7-3dcd5e71d692/sm/ep3293.jpg","duration":3610,"publication_date":"2011-06-11T02:06:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-the-atari-kid","changefreq":"weekly","video":[{"title":"S3:E28 - The Atari Kid","description":"A nerd is looking for love in all the wrong places until he meets a wise Dungeon Master who trains him on how to meet women.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-the-atari-kid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e3aeb0f-4fe4-47d0-a43d-38e399660068/sm/ep3271.jpg","duration":405,"publication_date":"2011-06-04T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-the-slow-mo-guys-present-welcome-to-rtx","changefreq":"weekly","video":[{"title":"S3:E27 - The Slow Mo Guys Present: Welcome to RTX!","description":"This video from Gavino opened up the RTX 2011 screening. Enjoy.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-the-slow-mo-guys-present-welcome-to-rtx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56bf5c76-8027-4b90-ae1f-3bceb506e7dd/sm/ep3268.jpg","duration":162,"publication_date":"2011-06-03T18:15:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-i-am-the-best-music-video-feat-the-e-l-i-t-e-s","changefreq":"weekly","video":[{"title":"MV:E7 - I am the Best Music Video (feat. The ELITES)","description":"Get \"I am the Best\" on iTunes. CLICK HERE: http://bit.ly/lxog8S\n\nhttp://RoosterTeeth.com for more. Animated by Monty Oum. Rap lyrics and performance by Lamar Hall. Music by Jeff Williams.","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-i-am-the-best-music-video-feat-the-e-l-i-t-e-s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25f703b2-c4c4-45fa-8e3f-17504872b0c5/sm/1461653-1439912197744-Screen_Shot_2015-08-17_at_5.17.45_PM.png","duration":131,"publication_date":"2011-06-02T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-next-next-gen","changefreq":"weekly","video":[{"title":"S3:E26 - Next Next Gen","description":"Gus picks up the new Wii console early.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-next-next-gen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf0bd815-d4aa-47f7-9d17-de39c25f6035/sm/ep3259.jpg","duration":156,"publication_date":"2011-05-31T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-doomsday","changefreq":"weekly","video":[{"title":"S3:E25 - Doomsday","description":"Rebecca Black's version of the apocalypse","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-doomsday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38c4379e-aba8-4dff-b868-c3cab7b6d340/sm/ep3241.jpg","duration":186,"publication_date":"2011-05-22T05:58:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-hunting-foul","changefreq":"weekly","video":[{"title":"S3:E24 - Hunting Foul","description":"Marshall and Chris go out on a hunting trip into the woods.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-hunting-foul","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ea1f997-92ca-4329-bb90-122d04d1d3f9/sm/ep3240.jpg","duration":227,"publication_date":"2011-05-21T00:29:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-a-pirates-life","changefreq":"weekly","video":[{"title":"S3:E23 - A Pirate's Life","description":"Jon lands in some hot water after pirating video games. Written by special guest Jon Graham.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-a-pirates-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15294d01-f61e-4c6f-87b2-aabbcae8c9e6/sm/ep3221.jpg","duration":205,"publication_date":"2011-05-14T02:30:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rooster-teeth-podcast-113","changefreq":"weekly","video":[{"title":"2011:E113 - Rooster Teeth Podcast #113","description":"Rooster Teeth fights animals","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rooster-teeth-podcast-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":3771,"publication_date":"2011-05-11T20:19:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-star-struck","changefreq":"weekly","video":[{"title":"S3:E21 - Star Struck","description":"Jon Graham, creator of Arby 'n' the Chief drops by the Rooster Teeth office. Luckily, cameras were rolling.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-star-struck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c05dbab2-2e36-4a25-b595-cb060d7041ea/sm/ep3182.jpg","duration":180,"publication_date":"2011-04-30T01:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-untimely-discovery","changefreq":"weekly","video":[{"title":"S3:E20 - Untimely Discovery","description":"Kerry makes an odd discovery while doing some yard work.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-untimely-discovery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/340b56df-c6a7-4a32-8736-7fcd1d9086c3/sm/ep3134.jpg","duration":124,"publication_date":"2011-04-23T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-silence-is-diamond","changefreq":"weekly","video":[{"title":"S3:E19 - Silence Is Diamond","description":"Workplace distractions...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-silence-is-diamond","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bf01ee9-30b5-4fcd-9a50-5f96c53c8c00/sm/ep3098.jpg","duration":59,"publication_date":"2011-04-15T18:25:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-stalled","changefreq":"weekly","video":[{"title":"S3:E18 - Stalled","description":"Crime knows no boundary.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-stalled","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2d1ac26-9bb4-4021-a6b9-36dc37c5716c/sm/ep3075.jpg","duration":225,"publication_date":"2011-04-09T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-bye-nikki-bye","changefreq":"weekly","video":[{"title":"S1:E107 - Bye Nikki Bye","description":"Bye Nikki Bye...","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-bye-nikki-bye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40869d7e-4d86-4b13-b68d-91ceb40e5f56/sm/ep3042.jpg","duration":97,"publication_date":"2011-04-04T14:28:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-rooster-teeth-productions-facility-tour","changefreq":"weekly","video":[{"title":"S3:E17 - Rooster Teeth Productions Facility Tour","description":"Take a tour through our illustrious production house.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-rooster-teeth-productions-facility-tour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a72db0c9-8bec-414d-92fb-d4d5d15fea50/sm/ep3041.jpg","duration":223,"publication_date":"2011-04-02T05:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-angry-birds-the-movie-bloopers","changefreq":"weekly","video":[{"title":"S3:E16 - Angry Birds: The Movie Bloopers","description":"The Bullpen share their thoughts on some outtakes from Angry Birds the Movie! Michael Bay couldn't make it.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-angry-birds-the-movie-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cec5787-bd6a-42d1-8914-908aa752e954/sm/ep3040.jpg","duration":204,"publication_date":"2011-04-02T04:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-zombie-headshots-director-commentary","changefreq":"weekly","video":[{"title":"S2:E14 - Zombie Headshots: Director Commentary","description":"Burnie Griffon and Brandon give you their behind the scenes thoughts.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-zombie-headshots-director-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7132a54-db5f-4a40-9ef0-a8bd6012dc77/sm/ep3033.jpg","duration":472,"publication_date":"2011-04-01T01:02:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-side-scroller-director-commentary","changefreq":"weekly","video":[{"title":"S2:E13 - Side Scroller: Director Commentary","description":"Burnie Griffon and Brandon give you their behind the scenes thoughts.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-side-scroller-director-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1809be3-c155-4f6d-ad68-7c48c911df95/sm/ep3032.jpg","duration":327,"publication_date":"2011-04-01T00:59:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-the-video-game-car-director-commentary","changefreq":"weekly","video":[{"title":"S2:E12 - The Video Game Car: Director Commentary","description":"Burnie Griffon and Brandon give you their behind the scenes thoughts.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-the-video-game-car-director-commentary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c208a3a5-c16b-4e81-8e8f-3b0ac7e3311a/sm/ep3031.jpg","duration":352,"publication_date":"2011-04-01T00:26:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-taste-test","changefreq":"weekly","video":[{"title":"S2:E11 - Taste Test","description":"How does real fruit compare to artificial flavoring","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-taste-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41655a1b-f14f-4936-abdb-4760f0c979d7/sm/ep3030.jpg","duration":246,"publication_date":"2011-03-31T22:10:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-podcast-season-1-rooster-teeth-podcast-107","changefreq":"weekly","video":[{"title":"2011:E107 - Rooster Teeth Podcast #107","description":"Rooster Teeth battles a video podcast","player_loc":"https://roosterteeth.com/embed/rt-podcast-season-1-rooster-teeth-podcast-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfbe995-53f9-4429-965d-27f85c6ea582/sm/984097-1437750971293-Untitled-1.png","duration":4077,"publication_date":"2011-03-31T01:30:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-fight-or-flight","changefreq":"weekly","video":[{"title":"S3:E15 - Fight or Flight","description":"It has begun. Angry Birds: The Movie starring Marshall Rimmer, John Erler, Gus Sorola, Joel Heyman, Becca Frasier, Brandon Farmahini, Chris Demarais, Kerry Shawcross. Music by Conor Brace. Production design by Griffon Ramsey. Special Thanks to Green Gate Farms and John-Mike Reed.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-fight-or-flight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95c81f36-8329-44c6-927b-d0ec66cada88/sm/ep3015.jpg","duration":132,"publication_date":"2011-03-26T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-minor-interruption","changefreq":"weekly","video":[{"title":"S3:E14 - Minor Interruption","description":"Gus brings a little problem into the office.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-minor-interruption","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5895f0ad-cc65-4926-b68c-d62a1250cb9f/sm/ep2991.jpg","duration":199,"publication_date":"2011-03-19T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-dastardly-painter","changefreq":"weekly","video":[{"title":"S3:E13 - Dastardly Painter","description":"Music by Jeff Williams.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-dastardly-painter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f453bfaa-f761-4451-85b1-c5f5f68cc7e3/sm/ep2958.jpg","duration":178,"publication_date":"2011-03-05T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-inside-joke","changefreq":"weekly","video":[{"title":"S3:E12 - Inside Joke","description":"Matt and Chris warn Burnie about the amount of coffee he has been drinking...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-inside-joke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0174589-d24c-4be5-96db-d7f1369ac0b1/sm/ep2943.jpg","duration":180,"publication_date":"2011-02-26T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-severance-snackage","changefreq":"weekly","video":[{"title":"S3:E11 - Severance Snackage","description":"Burnie has his eyes on Brandon's sandwich.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-severance-snackage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0600f7ef-fa82-41a3-a8fc-50c995e2df79/sm/ep2927.jpg","duration":170,"publication_date":"2011-02-18T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-switch","changefreq":"weekly","video":[{"title":"S3:E10 - Switch","description":"Joel tries to shed some light on an office problem. Music by Kevin MacLeod.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-switch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2f95aaf-492f-4d3f-b2b9-ff1cae6445c7/sm/ep2897.jpg","duration":104,"publication_date":"2011-02-12T01:31:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/drunk-tank-2011-7","changefreq":"weekly","video":[{"title":"2011:E7 - Drunk Tank #100","description":"Drunk Tank in video form.","player_loc":"https://roosterteeth.com/embed/drunk-tank-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eda4e75a-127f-4ef1-857f-5dbc3be58117/sm/ep2884.jpg","duration":1924,"publication_date":"2011-02-09T17:08:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-superbowl-funday","changefreq":"weekly","video":[{"title":"S3:E9 - Superbowl Funday","description":"Chris explains to Marshall how he can have the best super bowl party ever.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-superbowl-funday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c43c6586-e7f6-4c83-ba1f-141c11fad936/sm/ep2878.jpg","duration":204,"publication_date":"2011-02-05T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-picture-perfect","changefreq":"weekly","video":[{"title":"S3:E8 - Picture Perfect","description":"Matt has trouble with some head shots he had Chris take of Burnie.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-picture-perfect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f518579e-8bc5-4907-b168-55796ed7bc18/sm/ep1952.jpg","duration":229,"publication_date":"2011-01-29T05:02:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-behind-the-scenes-zombie","changefreq":"weekly","video":[{"title":"S2:E10 - Behind The Scenes: Zombie","description":"Go behind the scenes of episode 7 of Immersion!","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-behind-the-scenes-zombie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/955c3e7c-380b-413b-b14e-9584bc94b55b/sm/ep1937.jpg","duration":109,"publication_date":"2011-01-25T00:27:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-8-bit-interview-extended-cut","changefreq":"weekly","video":[{"title":"S2:E9 - 8 Bit Interview Extended Cut","description":"Some less than qualified applicants interview for a job.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-8-bit-interview-extended-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee95b588-a7e0-482b-ac8d-7c79ac41fc49/sm/ep1933.jpg","duration":123,"publication_date":"2011-01-21T23:20:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-8-bit-interview","changefreq":"weekly","video":[{"title":"S3:E7 - 8 Bit Interview","description":"Some less than qualified applicants interview for a job.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-8-bit-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1a105bf-3a03-4ef3-be32-f8b28f6903df/sm/ep1920.jpg","duration":99,"publication_date":"2011-01-20T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-jump","changefreq":"weekly","video":[{"title":"S3:E6 - Jump!","description":"Not all endings are as awesome as they seem...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-jump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f2cf6e2-bcd8-481f-bd06-7fa62db552a2/sm/ep1889.jpg","duration":150,"publication_date":"2011-01-13T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-homeless-man-with-golden-voice","changefreq":"weekly","video":[{"title":"S2:E8 - Homeless Man with Golden Voice","description":"This homeless guy has an amazing voice! Worth watching again even if you've already seen it. Wish we had voice over talent like this.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-homeless-man-with-golden-voice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92048dac-e09b-484c-a879-95bfd63df1f0/sm/ep1872.jpg","duration":30,"publication_date":"2011-01-09T18:12:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-dead-birds-falling-from-sky","changefreq":"weekly","video":[{"title":"S2:E7 - Dead Birds Falling From Sky?","description":"Over 2000 birds mysteriously fell dead out of the sky. Cause unknown.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-dead-birds-falling-from-sky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88757552-686f-477a-b5b3-c56d3bfae79f/sm/ep1871.jpg","duration":72,"publication_date":"2011-01-08T03:30:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-zombie-headshots","changefreq":"weekly","video":[{"title":"S1:E8 - Zombie Headshots","description":"So how easy is it to pickup a gun and start shooting zombies in the head","player_loc":"https://roosterteeth.com/embed/immersion-season-1-zombie-headshots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a4957aa-b29e-4f13-a9a8-ebbdd6162261/sm/ep1863.jpg","duration":378,"publication_date":"2011-01-06T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-video-game-foods","changefreq":"weekly","video":[{"title":"S1:E7 - Video Game Foods","description":"Does random food really heal the sick like it does in video games","player_loc":"https://roosterteeth.com/embed/immersion-season-1-video-game-foods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3818e06d-acc4-474f-8424-5335e1607be4/sm/ep1846.jpg","duration":304,"publication_date":"2010-12-30T05:05:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-video-game-inventory-systems","changefreq":"weekly","video":[{"title":"S1:E6 - Video Game Inventory Systems","description":"We test how exactly inventory systems would work with real life physics.","player_loc":"https://roosterteeth.com/embed/immersion-season-1-video-game-inventory-systems","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1609e2bd-35c9-4e4a-b7bf-060ab5f91d0e/sm/ep1835.jpg","duration":337,"publication_date":"2010-12-23T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-wikileaks-is-at-it-again","changefreq":"weekly","video":[{"title":"S3:E5 - WikiLeaks is at it Again","description":"WikiLeaks releases Santa's naughty list and the consequences are dire.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-wikileaks-is-at-it-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e98bc28c-7f25-4716-8320-48b296aed111/sm/ep1827.jpg","duration":114,"publication_date":"2010-12-17T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/texting-of-the-bread-is-now-is-99","changefreq":"weekly","video":[{"title":"S1:E196 - Texting of the Bread is now is 99?!","description":"You can now pick up ScrewAttack's first (and only) iPhone game for only 99¢! Woo hoo!\r\nDownload it here - http://itunes.apple.com/us/app/texting-of-the-bread/id389866044?mt=8\r\nUnfortunately the Android version, while originally planned, will not be happening.  Sorry Android users!","player_loc":"https://roosterteeth.com/embed/texting-of-the-bread-is-now-is-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":52,"publication_date":"2011-12-23T10:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122211","changefreq":"weekly","video":[{"title":"S1:E83 - Hard News 12/22/11","description":"Today on Hard News you might get old and gray waiting for The Old Republic, and some jackasses are abusing the Humble Indie Bundle.\r\nOld Republic waits - http://www.screwattack.com/news/star-wars-waiting-queues-their-website\r\nHumble Indie Bundle cheat - http://www.screwattack.com/news/jerks-use-humble-bundle-cheat-steam-raffle-thus-shaming-humanity\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-122211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/876d0fc3-64f0-4616-8d16-18f06185a0d5/sm/National-Lampoon-s-Christmas-Vacation-chevy-chase-fanclub-25408780-1280-720.jpg","duration":125,"publication_date":"2011-12-22T14:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-goes-to-see-santa","changefreq":"weekly","video":[{"title":"S1:E195 - ScrewAttack goes to see Santa!","description":"A lot of people like to make Christmas cards, and so do we. We just enjoy taking ours with mall Santas.","player_loc":"https://roosterteeth.com/embed/screwattack-goes-to-see-santa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":169,"publication_date":"2011-12-21T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122111","changefreq":"weekly","video":[{"title":"S1:E82 - Hard News 12/21/11","description":"Today on Hard News there's a whole lot of DLC coming!\r\nGears 3 Fenix Rising - http://www.screwattack.com/news/fenix-rising-dlc-coming-gears-war-3-next-month\r\nFinal Fantasy XIII-2 Launch DLC - http://www.screwattack.com/news/xbox-version-ffxiii-2-gets-exclusive-dlc\r\nUMvC 3 Heroes and Heralds - http://www.screwattack.com/news/community-showcase-ultimate-marvel-vs-capcom-3-heroes-and-heralds-mode-available-also-card-artw\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-122111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03597ec-c8ce-4596-a85a-05da8de328da/sm/rotator_0.png","duration":149,"publication_date":"2011-12-21T16:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-122111","changefreq":"weekly","video":[{"title":"S1:E194 - SideScrollers Extended 12/21/11","description":"Ten more minutes of SideScrollers, only for Advantage members!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-122111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":498,"publication_date":"2011-12-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-happiness-abound","changefreq":"weekly","video":[{"title":"S1:E43 - SideScrollers - \"Happiness Abound\"","description":"Craig's getting into the Christmas spirit, so after a very special message, we go into some holiday cheer (and with one person, anti-cheer) talk!\r\nAdvantage members can watch the Extended minutes here! - http://bit.ly/uPu9k9\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio122111.mp3\r\nWatch the videos mentioned by clicking the links below!\r\nScrewAttack WWE Royal Rumble Champion Throwdown - http://bit.ly/tvQvsY\r\nScrewAttack 2011 Royal Rumble! - http://bit.ly/uglr5O \r\nClip of the Week: SOPA - http://bit.ly/vq3Lva\r\nMIDDLE SEGMENT SUGGESTION THREAD - http://bit.ly/tRonXp\r\nFORUM QUESTION THREAD FOR NEXT WEEK - http://bit.ly/v50zWE\r\nFollow us on Twitter!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-happiness-abound","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f46c000b-7f35-43cf-97f4-4be21f69f85f.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2517,"publication_date":"2011-12-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-122011","changefreq":"weekly","video":[{"title":"S1:E81 - Hard News 12/20/11","description":"Today on Hard News Sony gets what they wanted to avoid, Australia won't get Syndicate, and the next Kingdom Hearts is bound for America.\r\nSony Class Action - http://www.screwattack.com/news/anti-class-action-lawsuit-filed-against-sony\r\nAustralia bans Syndicate - http://www.screwattack.com/news/syndicate-banned-australia\r\nDream Drop Distance - http://www.screwattack.com/news/kingdom-hearts-3d-confirmed-useu-teases-kh3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-122011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17cce814-192d-45f4-9356-b1a455bb495a/sm/syndicate_2012-t2.jpg","duration":145,"publication_date":"2011-12-20T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2011-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E193 - The 2011 ScrewAttack Royal Rumble","description":"Twenty ScrewAttack personalities are getting in the ring to see who will be the 2011 ScrewAttack Royal Rumble Champion.  Jimmy Jimmy Woods and Spanky 'Knows His Shit' Putnam have the call as these internet icons slug it out.","player_loc":"https://roosterteeth.com/embed/the-2011-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bb0b42c-8bc4-40d7-bd14-aea41554c90a/sm/rumble.jpg","duration":940,"publication_date":"2011-12-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121911","changefreq":"weekly","video":[{"title":"S1:E80 - Hard News 12/19/11","description":"Today on Hard News Heavy Rain is moving in the wrong direction, The Old Republic already has farmers, and the Vita is selling like lukewarm cakes.\r\nHeavy Rain Move - http://www.screwattack.com/news/missing-content-some-heavy-rain-move-editions\r\nOld Republic Problems - http://www.screwattack.com/news/spend-all-eternity-swtor-queues\r\nPS Vita Sales and Problems - http://www.screwattack.com/news/psvita-owners-report-freezing-other-major-issues\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-121911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/215275a5-6714-4df1-8884-efde8ac1e56e/sm/heavyrain_624_031010_1268357168.jpg","duration":162,"publication_date":"2011-12-19T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-sopa-act","changefreq":"weekly","video":[{"title":"S1:E192 - [Advantage Content] Clip of the Week Outtakes - The SOPA Act","description":"Well... it's mostly behind-the-scenes this week, but you get to see the evolution of Ben's mustache, the beginning and end of The Limewire, and more of Bowser being cute.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-sopa-act","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":406,"publication_date":"2011-12-19T09:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tommy-the-toucan-visits-perv-con","changefreq":"weekly","video":[{"title":"S1:E191 - Tommy the Toucan Visits Perv Con","description":"We tricked Nick into attending a furry convention dressed as Tommy.","player_loc":"https://roosterteeth.com/embed/tommy-the-toucan-visits-perv-con","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/478f738d-83a6-4026-9904-c0636f76cb47/sm/video_thumbnail_5789311.jpg","duration":444,"publication_date":"2011-12-19T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-wrestling-champion-battle-royale","changefreq":"weekly","video":[{"title":"S1:E190 - ScrewAttack Wrestling - Champion Battle Royale","description":"In the build up for the 2011 ScrewAttack Royal Rumble, the four winners of the first four Royal Rumbles are going at it in an elimination match to see who is the champion of champions!","player_loc":"https://roosterteeth.com/embed/screwattack-wrestling-champion-battle-royale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb45bb5c-a742-499e-ad36-25962852d1a3/sm/allstarsrotator.jpg","duration":537,"publication_date":"2011-12-18T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-sopa-act","changefreq":"weekly","video":[{"title":"S1:E145 - Clip of the Week - The SOPA Act","description":"The recent debate over the Stop Online Piracy Act has gathered so much attention lately because of the ramifications it could have on places such as ScrewAttack. But think about it... could it really be all that bad?\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick if you want to suggest clips. And also because he wills it. Or, you can suggest clips in the Clip of the Week discussion thread.\r\nHelp protect the technology, culture, and freedom of the internet by signing this Stop American Censorship petition, or even better, by writing and calling your state congressmen and women! It's not hard, they're usually easilly contacted through their own websites!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-sopa-act","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14ffcd0e-051e-442f-b1af-f73ec8caa993/sm/cotw_sopa.png","duration":121,"publication_date":"2011-12-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121611","changefreq":"weekly","video":[{"title":"S1:E79 - Hard News 12/16/11","description":"Today on Hard News The Old Republic has grace, Modern Warfare 3 shares with its community, and Sony dashes some Vita hopes.\r\nOld Republic grace period - http://www.screwattack.com/news/old-republic-gets-two-day-grace-period\r\nModern Warfare 3 update - http://www.screwattack.com/news/mw3-update-brings-new-modes\r\nMultiple PSN accounts - http://www.screwattack.com/news/shocking-sony-says-no-multiple-psn-accounts-vita\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-121611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e14c8485-a5a9-439e-bf58-dd918981eb65/sm/Star-Wars-The-Old-Republic.jpg","duration":133,"publication_date":"2011-12-16T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121511","changefreq":"weekly","video":[{"title":"S1:E78 - Hard News 12/15/11","description":"Today on Hard News Nintendo has a Skyward Sword solution, get Ninja Gaiden 3 early and get a little extra cleavage, and Square Enix got hacked. Again.\r\nSkyward sword solution - http://www.screwattack.com/news/nintendo-will-fix-corrupted-skyward-sword-save-files\r\nNinja Gaiden 3 pre-order - http://www.screwattack.com/news/ninja-gaiden-3-release-date-confirmed\r\nSquare Enix hacked - http://www.screwattack.com/news/18-million-square-enix-accounts-may-be-compromised\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-121511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10e57fd9-39e4-409f-98ac-04d6c71e03b8/sm/ninja-gaiden-3-confirmed-for-2012-release.jpg","duration":135,"publication_date":"2011-12-15T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/g1-of-the-year-finalists","changefreq":"weekly","video":[{"title":"S1:E189 - g1 of the Year Finalists!","description":"Craig and Bryan are here to announce the finalists for g1 of the year! Who actually wins? That's for you to decide!\r\nTO VOTE: Send Bryan an email at Bryan@ScrewAttack.com with your choice for g1 of the year in the subject line!","player_loc":"https://roosterteeth.com/embed/g1-of-the-year-finalists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":225,"publication_date":"2011-12-14T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121411","changefreq":"weekly","video":[{"title":"S1:E77 - Hard News 12/14/11","description":"Today on Hard News the other half of the Ambassadors have arrived, Lionhead is looking for programmers, and did Just Cause 3 get confirmed?\r\nGBA Ambassador Games - http://www.screwattack.com/news/community-showcase-gba-ambassador-games-and-release-date-announced\r\nLionhead Employment - http://www.screwattack.com/news/strange-job-listing-lionhead-studios\r\nJust Cause Movie and Third Game - http://www.screwattack.com/news/just-cause-movie-gets-title-and-re-write\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-121411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fafab0d-f04a-4f6f-9f3b-878be2358ae2/sm/metroidfae4.jpg","duration":135,"publication_date":"2011-12-14T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-121411","changefreq":"weekly","video":[{"title":"S1:E188 - SideScrollers Extended 12/14/11","description":"Ten more minutes of SideScrollers for Advantage members!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-121411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":471,"publication_date":"2011-12-13T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"miyamorobo\"","changefreq":"weekly","video":[{"title":"S1:E42 - SideScrollers - \"Miyamorobo\"","description":"Craig and Jared talk about their Spike Video Game Award gripes in this episode of SideScrollers!\r\nAdvantage members can watch the Extended minutes here! - http://bit.ly/uBX5e1\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio121411.mp3\r\nWatch the videos mentioned by clicking the links below!\r\nREVIEW - Minecraft - http://bit.ly/sHEfAj\r\nCraig bumrushes Amanda McKay - http://bit.ly/vO91nM\r\n4 Lucky Mountain Dew Winners - http://bit.ly/rJ1Fx1\r\nClip of the Week: Sean's Imposter  - http://bit.ly/tmqXFq\r\nMIDDLE SEGMENT SUGGESTION THREAD - http://bit.ly/tRonXp\r\nFORUM QUESTION THREAD FOR NEXT WEEK  - http://bit.ly/uq9beF\r\nFollow us on Twitter!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"miyamorobo\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4063bfd0-a593-4901-84ba-62be7965f2ad/sm/meth-in-cheese-sauce-and-jalapenos-12.2011_custom.jpg","duration":2912,"publication_date":"2011-12-13T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121311","changefreq":"weekly","video":[{"title":"S1:E76 - Hard News 12/13/11","description":"Today on Hard News Gamestop did a nice thing, Valve keeps on trolling, and rumors surface from Steam's wake.\r\nAlan Wake on PC - http://www.screwattack.com/news/rumor-alan-wake-heading-pc\r\nGamestop helped get Xenoblade - http://www.screwattack.com/news/rumor-you-can-thank-gamestop-xenoblade-chronicles\r\nValve making a game with a 3 in the title - http://www.screwattack.com/news/rumor-valve-prepping-game-3-it\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-121311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce5e02af-84b4-42c5-b963-a6999bb8a034/sm/AlanWakeWakeAiming720p.jpg","duration":165,"publication_date":"2011-12-13T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-luckiest-mountain-dew-drinkers-in-the-world","changefreq":"weekly","video":[{"title":"S1:E187 - The Luckiest Mountain Dew Drinkers in the World","description":"Recently Craig and Jared had the opportunity to go Cowboys Stadium in Dallas and see something only a handful of people in the world have experienced.","player_loc":"https://roosterteeth.com/embed/the-luckiest-mountain-dew-drinkers-in-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":106,"publication_date":"2011-12-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-121211","changefreq":"weekly","video":[{"title":"S1:E75 - Hard News 12/12/11","description":"Today on Hard News Link will stay in motion, some big announcements from the VGAs, and what's up with the next Metal Gear?\r\nMotion Control Zelda - http://www.screwattack.com/news/zelda-series-will-keep-its-motion-controls\r\nC&C Generals 2 - http://www.screwattack.com/trailers/command-conquer-generals-2-teaser-trailer\r\nFortnite - http://www.screwattack.com/news/epic-shows-fortnite-vgas\r\nThe Last of Us - http://www.screwattack.com/news/community-showcase-naughty-dog-sheds-some-light-last-us\r\nTony Hawk HD - http://www.screwattack.com/news/upcoming-tony-hawk-project-tony-hawk-pro-skater-hd\r\nMetal Gear Rising Revengeance - http://www.screwattack.com/news/metal-rising-gets-new-developer-and-subtitle\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-121211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d41f1834-e26d-42c1-9a4b-e8289b42bda2/sm/Metal-Gear-Rising-Revengeance-Story-Update.jpg","duration":141,"publication_date":"2011-12-12T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craig-bumrushes-amanda-mckay","changefreq":"weekly","video":[{"title":"S1:E186 - Craig Bumrushes Amanda McKay","description":"Recently while at an event, Craig saw Amanda McKay (from GTTV and SpikeTV) and decided he needed to get the answers to the question we all want to know: Why has ScrewAttack never been invited to the Video Game Awards.","player_loc":"https://roosterteeth.com/embed/craig-bumrushes-amanda-mckay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":120,"publication_date":"2011-12-10T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-multiplatform-game-nominees","changefreq":"weekly","video":[{"title":"S1:E185 - SAGYs 2011 - Worst Multiplatform Game Nominees","description":"Vote here - http://www.screwattack.com/polls/what-multiplatform-title-do-you-feel-deserving-2011-sagy-award\r\nThe games that soiled more consoles are up for consideration. Which is the worst? ","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-multiplatform-game-nominees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48f9b2fe-75f1-40fc-a7dd-c3b259a3e9d2/sm/120911SAGYMultiplatform.jpg","duration":79,"publication_date":"2011-12-10T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-seans-imposter","changefreq":"weekly","video":[{"title":"S1:E144 - Clip of the Week - Sean's Imposter","description":"The strangest thing happened this week. A man who looks nothing like Sean showed up and actually tried to convince us it was really him. Good thing he didn't stay long; we're now trying to find the real Sean.\r\nWant to discuss this week's Clip of the Week more in-depth in the forums?  Go here!  It's alright, we're all cool back here.\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick if you want to suggest clips.  And also because he wills it.\r\nOr, you can suggest clips in the Clip of the Week discussion thread.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-seans-imposter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/664cc0b3-c749-4fab-9db9-f2211dbfac18/sm/cotw_0.png","duration":179,"publication_date":"2011-12-09T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120911","changefreq":"weekly","video":[{"title":"S1:E74 - Hard News 12/09/11","description":"Today on Hard News Dead Rising 3 rumors appear, Stalker 2 might not make it, and the Half-Life teases just keep coming.\r\nDead Rising 3 - http://www.screwattack.com/news/rumor-dead-rising-3-leaks-and-introduces-new-protagonist\r\nStalker dev closing - http://www.screwattack.com/news/gsc-has-closed-and-stalker-2-dead\r\nHalf-Life 2 Episode 3 - http://www.computerandvideogames.com/329151/voice-actor-claims-working-on-half-life-episode-3/\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95903add-7f02-4988-806b-6e125d7bcd38/sm/Half_Life_2_-_Gordon_Freeman.jpg","duration":141,"publication_date":"2011-12-09T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-handheld-game-nominees","changefreq":"weekly","video":[{"title":"S1:E184 - SAGYs 2011 - Worst Handheld Game Nominees","description":"Vote here - http://www.screwattack.com/polls/what-handheld-title-do-you-feel-deserving-2011-sagy-award\r\nWe've narrowed it down to the worst games you can play on the \"can\". Which one's the worst?","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-handheld-game-nominees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed25d365-cc63-4713-91c4-4a982a8fff89/sm/120811SAGYHandheld.jpg","duration":84,"publication_date":"2011-12-08T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120811","changefreq":"weekly","video":[{"title":"S1:E73 - Hard News 12/08/11","description":"Today on Hard News Miyamoto isn't retiring, Jaffe doesn't want an online pass, and Microsoft is about to get a lawsuit because they tried to avoid lawsuits.\r\nMiyamoto retiring - http://www.screwattack.com/news/community-showcase-miyamoto-not-retiring-current-position\r\nJaffe and Twitsted Metal online pass - http://www.screwattack.com/news/confirmed-david-jaffe-enjoys-masturbation\r\nXbox Live Class Action Suits - http://www.shacknews.com/article/71439/updated-xbox-live-tos-blocks-class-action-suits\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9226aa1-bd42-4bdc-aaef-a2213a1c00d8/sm/davidjaffegcskeynote.jpg","duration":171,"publication_date":"2011-12-08T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-downloadable-game-nomination","changefreq":"weekly","video":[{"title":"S1:E183 - SAGY's 2011 - Worst Downloadable Game Nomination","description":"Vote here - http://www.screwattack.com/polls/what-downloadable-title-do-you-feel-deserving-2011-sagy-award\r\nWhile all these nominees aren't worth the bandwidth used to download them, which one is the worst?","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-downloadable-game-nomination","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f0193e6-86d9-408c-b13c-8ebc59413857/sm/120811SAGYDownloadable.jpg","duration":99,"publication_date":"2011-12-07T21:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120711","changefreq":"weekly","video":[{"title":"S1:E72 - Hard News 12/07/11","description":"Today on Hard News Tony Hawk rides again, Link doesn't have to die for you to lose at Skyward Sword, and Last Guardian loses another one.\r\nNew Tony Hawk - http://www.screwattack.com/news/tony-hawk-will-announce-new-game-vgas\r\nSkyward Sword Glitch - http://www.vg247.com/2011/12/06/nintendo-acknowledges-game-breaking-skyward-sword-glitch/\r\nLast Guardian Departure - http://www.joystiq.com/2011/12/07/last-guardian-executive-producer-resigns-joins-bossa-studios/\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30ace0c4-e1d0-4cb2-ab1d-9067688adb7e/sm/36429-188002-skateboardfailjpg-noscale.jpg","duration":146,"publication_date":"2011-12-07T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-120711","changefreq":"weekly","video":[{"title":"S1:E182 - SideScrollers Extended 12/07/11","description":" More than ten minutes of SideScrollers, only for Advantage members!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-120711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":653,"publication_date":"2011-12-07T13:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"steak-in-the-pants\"","changefreq":"weekly","video":[{"title":"S1:E41 - SideScrollers - \"Steak in the Pants\"","description":" We're getting ready for MAGFest X, and we need YOUR help! If you have a suggestion for what we can do for our LIVE SideScrollers at MAGFest, tell us in the forums! http://bit.ly/rVtJFF\r\n\r\nAUDIO VERSION - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio120711.mp3\r\nWatch the videos mentioned by clicking below!\r\nSAGY Nominations 2011 Wii Games - http://bit.ly/tb3hMp\r\nSAGY Nominations 2011 PS3 Games - http://bit.ly/uU4vR8 \r\nOut of the Box - King of Fighters XIII - http://bit.ly/v773Tj\r\nHOODIE Design Contest! - http://bit.ly/rCD8iG\r\nREVIEW: Legend of Zelda: Skyward Sword - http://bit.ly/u1GbvJ\r\nClip of the Week: ScrewAttack EmotiPin - http://bit.ly/rQLkCs\r\n\r\nGot a forum question to ask? Then ask them on the forums! http://bit.ly/tHQE0M\r\nFollow the gang on Twitter! \r\nCraig - http://www.twitter.com/ScrewAttack\r\nChad - http://www.twitter.com/ScrewAttackChad\r\nJared - http://www.twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"steak-in-the-pants\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce91118-f7ea-4f35-be66-8a326a367569/sm/shaq_fu_sharper.jpg","duration":3114,"publication_date":"2011-12-07T13:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-ps3-game-nomination","changefreq":"weekly","video":[{"title":"S1:E181 - SAGY's 2011 - Worst PS3 Game Nomination","description":"Vote here - http://www.screwattack.com/polls/what-ps3-exclusive-title-do-you-feel-deserving-2011-sagy-award\r\nWhat game is most deserving of the 2011 SAGY for Worst PS3 Exclusive? You decide!","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-ps3-game-nomination","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f477c954-4fe8-4dac-86c4-de3973f71356/sm/120611SAGYPS3.jpg","duration":92,"publication_date":"2011-12-06T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120611","changefreq":"weekly","video":[{"title":"S1:E71 - Hard News 12/06/11","description":"Today on Hard News EA has a great plan for Theme Park, handle vendettas in Darkness 2, and if you pre-ordered The Old Republic at Wal-mart? Yeah….\r\nVery expensive Theme Park - http://www.screwattack.com/news/ea-releases-another-ios-game-rip-consumers\r\nDarkness 2 Vendetta Co-Op - http://www.screwattack.com/news/darkness-ii-wants-you-bring-your-friends\r\nWalmart lost pre-orders of Old Republic - http://www.screwattack.com/news/swtor-walmart-goofs-preorders-okay\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad8f714e-c1c0-4fdb-b5b0-dfcd5e1ec2da/sm/photo-1_0.png","duration":134,"publication_date":"2011-12-06T13:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-wii-game-nomination","changefreq":"weekly","video":[{"title":"S1:E180 - SAGY's 2011 - Worst Wii Game Nomination","description":"Which game is deserving of the 2011 SAGY for Worst Wii Exclusive? You decide!\r\nVote here - http://www.screwattack.com/polls/what-wii-exclusive-title-do-you-feel-deserving-2011-sagy-award","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-wii-game-nomination","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a3d4023-0130-4f54-85a3-a2b82148de7a/sm/120711SAGYWii.jpg","duration":80,"publication_date":"2011-12-05T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120511","changefreq":"weekly","video":[{"title":"S1:E70 - Hard News 12/05/11","description":"Today on Hard News not all Vita games will cost the same, Star Wars Galaxies will be cut down but carry on, and the game people say is like Legos might actually become Legos.\r\nVita games - http://www.screwattack.com/news/rumor-vita-digital-titles-are-almost-40-cheaper-retail\r\nStar Wars Galaxies - http://www.screwattack.com/news/star-wars-galaxies-will-live-forever\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/649def07-ce1a-47cc-87f7-ae9c3eebbd82/sm/1297080188_minecraft.jpg","duration":126,"publication_date":"2011-12-05T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-need-for-speed","changefreq":"weekly","video":[{"title":"S1:E143 - Clip of the Week - Need For Speed","description":"The most anticipated racing event of the century.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-need-for-speed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8b8cc7c-84f1-43c7-ac2f-c2affab40d36/sm/NeedForSpeedClip.jpg","duration":199,"publication_date":"2011-12-05T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sagys-2011-worst-xbox-360-game-nominees","changefreq":"weekly","video":[{"title":"S1:E179 - SAGYs 2011 - Worst Xbox 360 Game Nominees","description":"The nominations are in and after much deliberation we've narrowed down your suggestions to the worst of the year. Which game is deserving of the 2011 SAGY for Worst 360 Exclusive?\r\nVote here - http://www.screwattack.com/polls/what-xbox-360-exclusive-title-do-you-feel-deserving-2011-sagy-award","player_loc":"https://roosterteeth.com/embed/sagys-2011-worst-xbox-360-game-nominees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2efb679d-f1ba-49fd-af66-137d1541cac7/sm/120511SAGY360.jpg","duration":82,"publication_date":"2011-12-04T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-screwattack-emotipin","changefreq":"weekly","video":[{"title":"S1:E142 - Clip of the Week - The ScrewAttack EmotiPin","description":" We come up with all sort of neat ideas at the HQ that unfortunately you don't get to see. The EmotiPin was one that needed a little more testing...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-screwattack-emotipin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-12-02T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120211","changefreq":"weekly","video":[{"title":"S1:E69 - Hard News 12/02/11","description":"Today on Hard News Valve is trolling its fans, Tetris gets a subscription, and Opertaion Rainfall succeeds!\r\nHalf-Life 3 - http://www.screwattack.com/news/valve-officially-trolling-us\r\nTetris Subscriptions - http://www.screwattack.com/news/tetris-moves-subscription-model-ios\r\nOperation Rainfall and Xenoblade - http://www.screwattack.com/news/update-operation-rainfall-actually-worked\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/638abb36-fcf3-4187-b858-35966570ead7/sm/troll1202-610_1.jpg","duration":136,"publication_date":"2011-12-02T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/promo-hoodie-contest-extended","changefreq":"weekly","video":[{"title":"S1:E178 - [Promo] Hoodie Contest Extended!","description":"To participate in the hoodie design contest submit a JPEG of your design to Merchcontest@ScrewAttack.com between now and December 7th.  If you have already submitted a design you do not need to re-send it.\r\nFor more details and informationon on prizes check out the Hoodie Contest Blog","player_loc":"https://roosterteeth.com/embed/promo-hoodie-contest-extended","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":42,"publication_date":"2011-12-02T12:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2011-g1-of-the-year-nominations","changefreq":"weekly","video":[{"title":"S1:E177 - The 2011 g1 of the Year nominations!","description":"It's time to figure out the 2011 g1 of the year! What should you, the g1s, be looking for in your nominations for the best of your fellow g1s? This isn't just about making the best videos or blogs, this is about being a positive member of the community. The g1 who helps others, brings g1s together, and generally makes your experience here on ScrewAttack a little brighter. Make all the nominations you want in the comments but when you leave a name, leave us a reason why you think that person should be g1 of the year!\r\nWe'll be taking nominations until December 9th, then we'll figure out the final candidates which you can vote for over the following week. So get nominating to figure out the 2011 g1 of the year!\r\n \r\nIF IT NEEDS CLARIFICATION: You can vote for ANY g1, not just the ones mentioned in the video.","player_loc":"https://roosterteeth.com/embed/the-2011-g1-of-the-year-nominations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd958e6a-1717-4efa-8a7d-b0436fa28cfe/sm/Square-gOTY.png","duration":69,"publication_date":"2011-12-01T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-king-of-fighters-xiii","changefreq":"weekly","video":[{"title":"S1:E8 - Out of the Box - King of Fighters XIII","description":"This time on Out of the Box, Craig and Bryan are checking out King of Fighters XIII! Can SNK's latest fighter compete in today's 2D arena?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-king-of-fighters-xiii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8da1b54f-3619-4310-93ca-ddb71e44c4d9/sm/tnt24.info_The_King_of_Fighters_XIII_2011_PC_ENG_.4816__354003.jpeg","duration":1067,"publication_date":"2011-12-01T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-120111","changefreq":"weekly","video":[{"title":"S1:E68 - Hard News 12/01/11","description":"Today on Hard News something's missing from the Vita, Army of Two might double its numbers, and do fetch quests in South Park.\r\nUMD Passports - http://www.screwattack.com/news/umd-passport-list-goes-live-many-publishers-mia\r\nArmy of Four - http://www.screwattack.com/news/rumor-army-two-trilogy-pulls-venture-bros\r\nSouth Park RPG - http://www.screwattack.com/news/south-park-rpg-works\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-120111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/877757d7-b612-4643-b96b-76feaf23dfe8/sm/South-Parkseason13e10.jpg","duration":123,"publication_date":"2011-12-01T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-tekken-hybrid","changefreq":"weekly","video":[{"title":"S1:E7 - Out of the Box - Tekken Hybrid","description":"This time on Out of the Box, Craig and Bryan are looking at Tekken Hybrid! Is this movie/game/demo compilation worth picking up if you love your Tekken?\r\nCheck out our trip to see Tekken: Blood Vengeance.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-tekken-hybrid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95eb27d8-3e44-45f1-83b6-e2dfee851a0c/sm/hybrid.jpg","duration":1005,"publication_date":"2011-11-30T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-113011","changefreq":"weekly","video":[{"title":"S1:E67 - Hard News 11/30/11","description":"Today on Hard News what could be in Dragon Age 3, what's happening with The Last Guardian, and they're making how many Dead Space games?\r\nDragon Age 3 rumors - http://www.screwattack.com/news/rumor-be-dragon-next-dragon-age\r\nDead Space rumors - http://www.screwattack.com/news/rumor-there-are-four-dead-space-games-our-future\r\nLast Guardian rumors - http://www.screwattack.com/news/rumor-last-guardian-creator-fumito-ueda-leaves-sony\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-113011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3011fc45-3d98-4ce4-b78a-bfbbd586c817/sm/dead-space-2-jan-25-530px.jpg","duration":129,"publication_date":"2011-11-30T13:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-113011","changefreq":"weekly","video":[{"title":"S1:E176 - SideScrollers Extended 11/30/11","description":"10 more minutes of SideScrollers for Advantage members!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-113011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":573,"publication_date":"2011-11-29T20:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-chadless","changefreq":"weekly","video":[{"title":"S1:E40 - SideScrollers - \"Chadless\"","description":"Just the two guys today. Talking about brains and poop.\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio113011.mp3\r\nAdvantage Members can find the Extended Minutes here! - http://bit.ly/rzPwM6\r\nWatch the videos mentioned by clicking the link below!\r\nREVIEW - Assassin's Creed: Revelations - http://bit.ly/rApk2H\r\nREVIEW - Need For Speed: The Run - http://bit.ly/uP05As\r\nJared Goes Metal Gear - http://bit.ly/uKRK6j\r\nSAGY 2011 Nominations - http://bit.ly/tlhImS\r\n\r\nFollow the crew on Twitter!\r\nCraig - http://twitter.com/ScrewAttack\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-chadless","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2156,"publication_date":"2011-11-29T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112911","changefreq":"weekly","video":[{"title":"S1:E66 - Hard News 11/29/11","description":"Today on Hard News the ESRB wants to rate mobile games, Kotick doesn't believe in The Old Republic, and is Sony set to smash the competition?\r\nSony's Title Fight - http://www.screwattack.com/news/more-ps3-smash-bros-style-fighter-rumors\r\nESRB Mobile - http://www.screwattack.com/news/apple-and-google-pass-new-mobile-rating-system\r\nKotick Questions The Old Republic - http://www.screwattack.com/news/activision-ceo-questions-old-republics-profitability\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-112911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d10a26-00fc-4793-a0e5-2a2bb86a2d18/sm/shift_ESRB.jpg","duration":129,"publication_date":"2011-11-29T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112811","changefreq":"weekly","video":[{"title":"S1:E65 - Hard News 11/28/11","description":"Today on Hard News EA will deliver on their promise, Epic might not be done with the COG, and what might make the Kinect 2 worth buying.\r\nBF3 will have 1943 - http://www.screwattack.com/news/ps3-users-get-battlefield-1943-free-after-all\r\nThe Pendulum Wars - http://www.screwattack.com/news/rumor-people-can-fly-might-be-working-pendulum-wars\r\nThe next Kinect - http://www.screwattack.com/news/rumor-kinect-2-will-read-lips-and-know-how-you-feel\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-112811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcca63e2-b0df-43a0-9869-529a2c8f5fae/sm/Pendulum_war_0.jpg","duration":122,"publication_date":"2011-11-28T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-rosetta-stone-fighter-edition","changefreq":"weekly","video":[{"title":"S1:E175 - [Advantage Content] Clip of the Week Outtakes - Rosetta Stone: Fighter Edition","description":"We already knew Craig wasn't an actor, but we learn a new secret about Sean... a horrifying secret.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-rosetta-stone-fighter-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":330,"publication_date":"2011-11-26T00:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-a-very-screwattack-thanksgiving","changefreq":"weekly","video":[{"title":"S1:E141 - Clip of the Week - A Very ScrewAttack Thanksgiving","description":"How was your Thanksgiving? Good? Ours wasn't. Ours wasn't good at ALL...\r\nFor Advantage members, there are outtakes for this episode! Watch the reel here.\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick. Because he wills it.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-a-very-screwattack-thanksgiving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93580c2e-f430-417a-a5ea-41cde4d8bc46/sm/SAThanksgiving.png","duration":180,"publication_date":"2011-11-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-jared-goes-metal-gear","changefreq":"weekly","video":[{"title":"S1:E174 - A Day in the Life - Jared Goes Metal Gear","description":" Recently Jared accidentally locked one of our doors shut with the keys inside the room. The only solution? METAL GEAR!","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-jared-goes-metal-gear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":86,"publication_date":"2011-11-24T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/black-friday-deals-we-have-them","changefreq":"weekly","video":[{"title":"S1:E173 - Black Friday Deals. We Have Them.","description":"http://bit.ly/SABlackFriday2011 \r\nWe're practically giving our stuff away for Black Friday. Way to go Chad...","player_loc":"https://roosterteeth.com/embed/black-friday-deals-we-have-them","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":32,"publication_date":"2011-11-24T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-bucket-of-oblivion","changefreq":"weekly","video":[{"title":"S1:E172 - [Advantage Content] Clip of the Week Outtakes - The Bucket of Oblivion","description":"Craig has difficulty making it through a single take, Tommy cannot see for the life of him, and Lauren nails Chad in the throat.\r\nSee the original Clip of the Week here.\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-bucket-of-oblivion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":346,"publication_date":"2011-11-24T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/games-the-screwattack-crew-gives-thanks-for-2011-edition","changefreq":"weekly","video":[{"title":"S1:E171 - Games the ScrewAttack Crew Gives Thanks For - 2011 Edition","description":"The ScrewAttack Crew takes some time to review which games this year meant the most to them... and apparently Sean has a thing for rainbow farts.","player_loc":"https://roosterteeth.com/embed/games-the-screwattack-crew-gives-thanks-for-2011-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aae79236-2029-4dbf-b4bc-ccba55a9b593/sm/November2662.jpg","duration":129,"publication_date":"2011-11-24T07:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-street-fighter-is-srs-bsns","changefreq":"weekly","video":[{"title":"S1:E170 - [Advantage Content] Clip of the Week Outtakes - Street Fighter is SRS BSNS","description":"Lauren tries to find Ben's pain threshold while everyone else tries just keeping a straight face.\r\nSee the original Clip of the Week here.\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-street-fighter-is-srs-bsns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":121,"publication_date":"2011-11-24T07:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-3-million-dollar-ad","changefreq":"weekly","video":[{"title":"S1:E169 - [Advantage Content] Clip of the Week Outtakes - The 3 Million Dollar Ad","description":"Jared's scribbles make zero sense, Ben's internet turns Japanese, and all the while, everybody keeps trolling Nick.\r\nSee the original Clip of the Week aquí.\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-3-million-dollar-ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":239,"publication_date":"2011-11-22T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-ass-injections","changefreq":"weekly","video":[{"title":"S1:E39 - SideScrollers - \"Ass Injections\"","description":"(EDITOR'S NOTE - The sound quality is terrible this week, I know. We tried something to fix previous sound issues, and will continue to look into it. ~Jared)\r\nOur Thanksgiving episode almost wasn't, until Craig did some quick belt magic!\r\n \r\nGot a question? Make a post about it in our forums! http://bit.ly/rM4ngl\r\nWatch the videos mentioned by clicking below!\r\nREVIEW: Super Tanooki Skin 2D - http://bit.ly/svooUf\r\nREVIEW: Halo Anniversary - http://bit.ly/sUxDga\r\nREVIEW: Assassin's Creed: Revelations - http://bit.ly/rApk2H\r\nCheck out our Twitter feeds!\r\nCraig -http://www.twitter.com/ScrewAttack\r\nChad - http://www.twitter.com/ScrewAttackChad\r\nJared - http://www.twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-ass-injections","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2985,"publication_date":"2011-11-22T20:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-112311","changefreq":"weekly","video":[{"title":"S1:E168 - SideScrollers Extended 11/23/11","description":"This week's additional SideScrollers gives you the rare look of BEFORE the show starts...\r\nOnly for Advantage members!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-112311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":328,"publication_date":"2011-11-22T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-controller-sock","changefreq":"weekly","video":[{"title":"S1:E167 - [Advantage Content] Clip of the Week Outtakes - The Controller Sock","description":"This Thanksgiving week, we're celebrating with a new outtake reel from past Clip of the Weeks every day! We're kicking it off with stuff from The Controller Sock that didn't make the cut.\r\nWatch the original Clip of the Week here!\r\nCan't see the video? Then you're not an Advantage Member. Don't worry, you can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-controller-sock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25e916d5-e370-4bae-abb8-b795766f6e20/sm/Ben_wuuuuuuuuuuut.png","duration":214,"publication_date":"2011-11-22T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112211","changefreq":"weekly","video":[{"title":"S1:E64 - Hard News 11/22/11","description":"Today on Hard News Beyond Good and Evil 2 is still in some state of production, the 360 is set to take a great leap forward, and the official UK PS3 magazine might've put words in Kojima's mouth.\r\nBeyond Good and Evil 2 - http://www.screwattack.com/news/concept-art-beyond-good-evil-2-hits-internet\r\n360 Dashboard - http://www.screwattack.com/news/xbox-360-dashboard-dated-and-outlined\r\nMetal Gear Solid 5 not confirmed - http://www.screwattack.com/news/todays-takeaway-stop-speculation-already\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-112211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120fd028-fa4e-4938-8a0d-ebb1a7a555df/sm/beyond-good-evil-2-being-released-after-march-2010_0.jpg","duration":127,"publication_date":"2011-11-22T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-112111","changefreq":"weekly","video":[{"title":"S1:E63 - Hard News 11/21/11","description":"Today on Hard News Battlefield 3 could use a class action clause, Rampage no longer in just the theater's arcade, and do game publishers like Blockbuster more than Gamestop?\r\nRampage Movie - http://www.screwattack.com/news/george-ralph-lizzie-may-rampage-theaters\r\nBlockbuster support - http://www.screwattack.com/news/blockbuster-bring-end-trade-ins\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-112111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daa8aecd-a7b6-4244-a455-52bb4d47b103/sm/rampage_01.png","duration":134,"publication_date":"2011-11-21T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/contest-how-many-people-are-in-line","changefreq":"weekly","video":[{"title":"S1:E166 - [CONTEST!] How Many People Are in Line?!","description":"Think of this as one of those giant jars of gumballs where you need to guess how many are in it. Winner(s) gets hooked up with a free shirt and a free month of Advantage Membership!","player_loc":"https://roosterteeth.com/embed/contest-how-many-people-are-in-line","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":129,"publication_date":"2011-11-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-super-mario-land-3ds-glitch","changefreq":"weekly","video":[{"title":"S1:E165 - The Super Mario Land 3DS Glitch?","description":"While playing Super Mario Land 3DS Craig found an amazing glitch.... or did he?","player_loc":"https://roosterteeth.com/embed/the-super-mario-land-3ds-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":159,"publication_date":"2011-11-19T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-rosetta-stone-fighter-edition","changefreq":"weekly","video":[{"title":"S1:E140 - Clip of the Week - Rosetta Stone: Fighter Edition","description":"No0bs to the fighting game world may be offset by the foreign language die-hard fans speak. With Rosetta Stone: Fighter Edition, however, you can quickly learn to communicate like a pro!\r\nFor Advantage members, there are outtakes for this episode! Watch the reel here.\r\nFollow ScrewAttack on Twitter and like us on Facebook or you will suffer our wrath.\r\nAnd also follow Nick.  Because he wills it.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-rosetta-stone-fighter-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":167,"publication_date":"2011-11-18T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111811","changefreq":"weekly","video":[{"title":"S1:E62 - Hard News 11/18/11","description":"Today on Hard News Hideo Kojima is talking Metal Gear Solid 5, Telltale is writing their own reviews, and the 3DS will have DLC.\r\nMetal Gear Solid 5 - http://www.screwattack.com/news/rumor-metal-gear-solid-5-happening\r\nTelltale writing reviews - http://www.screwattack.com/news/telltale-caught-reviewing-their-own-game\r\nDLC on the 3DS - http://www.screwattack.com/news/nintendo-allow-dlc-3ds\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-111811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/624ab763-16ee-4fdb-98d2-a2413d50c9bc.jpg/sm/hardnews111811.jpg","duration":132,"publication_date":"2011-11-18T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111711","changefreq":"weekly","video":[{"title":"S1:E61 - Hard News 11/17/11","description":"Today on Hard News MW3 sells like we all thought it would, Skyrim doesn't want to be played, and how do you lose an MMORPG?\r\nSo many MW3s sold - http://www.screwattack.com/news/five-ways-you-could-spend-activisions-money\r\nSave Skyrim, crash Skyrim - http://www.screwattack.com/news/save-skyrim-ps3-and-break-game\r\nMMO permanently offline - http://www.screwattack.com/news/japan-entire-mmo-disappears-face-earth\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-111711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bae484a8-6a5d-4f17-a64d-9319a2776b6a/sm/M2-584x304.png","duration":127,"publication_date":"2011-11-17T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chad-puts-screwattack-out-of-business-with-a-pre-black-friday-sale-and-new-shirts","changefreq":"weekly","video":[{"title":"S1:E164 - Chad puts ScrewAttack out of business (with a pre-Black Friday sale and new shirts!)","description":"We're upping our shirt count by five with a ScrewAttack logo tee and four shirts in a brand new line of gamer clothing! And if you spend at least $19 between now and the 27th, you get a second mystery shirt FREE!\r\nGet this ridiculous deal here!","player_loc":"https://roosterteeth.com/embed/chad-puts-screwattack-out-of-business-with-a-pre-black-friday-sale-and-new-shirts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":132,"publication_date":"2011-11-16T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-111611","changefreq":"weekly","video":[{"title":"S1:E163 - SideScrollers Extended 11/16/11","description":"10 more minutes of SideScrollers for Advantage members!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-111611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d326085-b5ad-4375-abd7-6b107a454b1e/sm/extended.PNG","duration":872,"publication_date":"2011-11-15T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"dick-stabbing\"","changefreq":"weekly","video":[{"title":"S1:E38 - SideScrollers - \"Dick Stabbing\"","description":" Threesomes aren't as awesome as you would think.\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio111611.mp3 \r\nGot a question? Make a post about it in our forums! http://bit.ly/rM4ngl\r\nWatch the videos mentioned by clicking below!\r\nREVIEW: Sonic Generations - http://bit.ly/rUAHam\r\nREVIEW: Elder Scrolls V: Skyrim - http://bit.ly/uT9VXu\r\nREVIEW: Modern Warfare 3 - http://bit.ly/t0gyXt\r\nOut of the Box: Rocksmith - http://bit.ly/s8g7uw\r\n \r\nCheck out our Twitter feeds!\r\nCraig -http://www.twitter.com/ScrewAttack\r\nChad - http://www.twitter.com/ScrewAttackChad\r\nJared - http://www.twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"dick-stabbing\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7989e04-60c7-4252-975c-d876679af8c6/sm/hippo.png","duration":2909,"publication_date":"2011-11-15T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111511","changefreq":"weekly","video":[{"title":"S1:E59 - Hard News 11/15/11","description":"Today on Hard News Cheapy D is free DLC, Arkham City is erasing saves, and will the PC ever be elite?\r\nCoD Elite on PC - http://www.screwattack.com/news/cod-elite-may-not-happen-pc\r\nArkham City saves erased - http://www.screwattack.com/news/are-some-arkham-city-360-save-files-deleting-themselves\r\nCheapy D Free DLC - http://www.screwattack.com/news/cheapy-d-everyones-homie-saints-row-third\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-111511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f58b7c18-7f71-4c4b-9543-4f9c97aa8505/sm/cheapycar.jpg","duration":130,"publication_date":"2011-11-15T13:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-bubsy-player-ever","changefreq":"weekly","video":[{"title":"S1:E162 - The Best Bubsy Player EVER","description":"Think you're good at video games? Check out this amazing run at Bubsy the Bobcat. Why would anyone ever want to be this good at THAT game? The Iron-Man of Gaming of course.\\\r\nWant to see something also awesome? Check out the Insane F-Zero Jump!","player_loc":"https://roosterteeth.com/embed/the-best-bubsy-player-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12132211-8e19-4cfa-8026-93c86a644974/sm/bubsycartoon01.png","duration":268,"publication_date":"2011-11-14T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111411","changefreq":"weekly","video":[{"title":"S1:E58 - Hard News 11/14/11","description":"Today on Hard News PETA is going after Mario, get some Capcom classics on the Virtual Console, and where might EA invade your privacy next?\r\nOrigin on Wii U - http://www.screwattack.com/news/rumor-origin-wants-become-one-wii-u\r\nPETA against Tanooki suits - http://www.screwattack.com/news/peta-pissed-marios-tanooki-suit\r\nCapcom games go to the Virtual Console - http://www.screwattack.com/news/street-fighter-ii-coming-virtual-console-online-play\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-111411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0349fca5-14a3-48fd-be30-85e492bba5ca/sm/box_161032-hd.jpg","duration":115,"publication_date":"2011-11-14T16:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-rocksmith","changefreq":"weekly","video":[{"title":"S1:E6 - Out of the Box - Rocksmith","description":"Chad and Bryan are checking out the latest rhythm game, Rocksmith! If you're a guitar hero or master of Rock Band should you pick this up too?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-rocksmith","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60149357-44aa-4c80-b10d-7eb171c5c6b2/sm/Rocksmith_PS3_1.jpg","duration":1101,"publication_date":"2011-11-13T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-bucket-of-oblivion","changefreq":"weekly","video":[{"title":"S1:E139 - Clip of the Week - The Bucket of Oblivion","description":" Craig runs a pretty tight ship at the HQ, so sometimes the crew will do anything to take a break...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-bucket-of-oblivion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":174,"publication_date":"2011-11-11T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111111","changefreq":"weekly","video":[{"title":"S1:E57 - Hard News 11/11/11","description":"Today on Hard News the damage gets deeper for Steam's hack, everyone's playing Skyrim, and what it might take to get another Beyond Good and Evil.\r\nBeyond Good and Evil odds - http://www.screwattack.com/news/rayman-origins-becomes-tipping-point\r\nSteam hacking - http://www.screwattack.com/news/valve-confirms-steam-databases-hacked\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-111111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d99922e-1e7d-44e0-ad47-7d60893c7bf1/sm/beyond-good-evil-2-being-released-after-march-2010.jpg","duration":112,"publication_date":"2011-11-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2011-iron-man-of-gaming-has-been-crowned","changefreq":"weekly","video":[{"title":"S1:E161 - The 2011 Iron-Man of Gaming Has Been Crowned","description":"Every year, ScrewAttack names one person the greatest all-around gamer of the year. Out of the top 16 contenders in the Mystery Game round for the fifth Iron-Man of Gaming championship belt, only one will receive the glory.","player_loc":"https://roosterteeth.com/embed/the-2011-iron-man-of-gaming-has-been-crowned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-11-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-111011","changefreq":"weekly","video":[{"title":"S1:E56 - Hard News 11/10/11","description":"Today on Hard News Call of Duty Elite is being overrun, Jak and Daxter are going to be HD, and are the Simpsons coming to a digital marketplace near you?\r\nSimpsons Arcade - http://www.screwattack.com/news/rumor-simpsons-coming-xblapsn-doh\r\nJak and Daxter HD Collection - http://www.screwattack.com/news/jak-and-daxter-hd-collection-coming-ps3\r\nCoD Elite Issues - http://www.screwattack.com/news/cod-elite-members-get-30-days-free\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-111011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49d6cc1d-f030-4f20-b667-f46a107d8e7e/sm/the-simpsons-arcade-game.jpg","duration":114,"publication_date":"2011-11-10T14:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-a-link-to-craigs-past-bonus-footage","changefreq":"weekly","video":[{"title":"S1:E160 - [Advantage Content] A Link to Craig's Past Bonus Footage","description":"Check out some of the footage from Craig's epic quest to see what was behind that door...\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/advantage-content-a-link-to-craigs-past-bonus-footage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":233,"publication_date":"2011-11-09T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-110911","changefreq":"weekly","video":[{"title":"S1:E159 - SideScrollers Extended 11/09/11","description":" Up to 10 more minutes of SideScrollers! More glitch talk!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-110911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":471,"publication_date":"2011-11-09T08:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"cleavage-is-important\"","changefreq":"weekly","video":[{"title":"S1:E37 - SideScrollers - \"Cleavage is Important\"","description":" Back from NekoCon, and the new Iron Man of Gaming is chosen!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio110911.mp3\r\nGot a question? Ask it on our forums! http://bit.ly/u0V1ro\r\nWatch the mentioned ScrewAttack videos NOW!\r\nScrewin' Around Every Monday - Friday 4:30 pm CST! - http://twitch.tv/screwattack\r\nREVIEW - Call of Duty: Modern Warfare 3 - http://bit.ly/t0gyXt\r\nMW3 Multiplayer Analysis (By Chad) - http://bit.ly/s6aWy1  \r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"cleavage-is-important\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2fa7397-e8e6-4648-ae02-8f4e6b736dd6/sm/IMAG0753_0.jpg","duration":1401,"publication_date":"2011-11-08T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-11811","changefreq":"weekly","video":[{"title":"S1:E54 - Hard News 11/8/11","description":"Today on Hard News use your Kinect with Windows, Modern Warfare 3 is hated on Metacritic, and can the Wii U actually use more than one tablet?\r\nKinect for Windows - http://www.screwattack.com/news/kinect-aims-be-bigger-part-everyones-life\r\nWii U Tablet Support - http://www.screwattack.com/news/wii-u-could-support-multi-tablet-action\r\nModern Warfare 3 on Metacritic - http://www.screwattack.com/news/metacritic-users-troll-mw3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-11811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/806cfe76-9b01-4666-a279-f7fb9ade2e56/sm/tumblr_l7tc0zKvbb1qzzhzdo1_500.jpg","duration":128,"publication_date":"2011-11-08T14:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vgv-spider-manx-men-arcades-revenge","changefreq":"weekly","video":[{"title":"S1:E343 - VGV - Spider-Man/X-Men: Arcade's Revenge","description":" Two epic forces combine to pulverize all expectations.","player_loc":"https://roosterteeth.com/embed/vgv-spider-manx-men-arcades-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":154,"publication_date":"2011-11-08T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-not-to-suck-nba-jam-on-fire-edition","changefreq":"weekly","video":[{"title":"S1:E158 - How Not to Suck - NBA Jam: On Fire Edition","description":" While he could continue to beat everyone online by 30 points, Craig has decided to lend some of his knowledge of how to dominate in NBA Jam: On Fire Edition. You'll suck less in no time!","player_loc":"https://roosterteeth.com/embed/how-not-to-suck-nba-jam-on-fire-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeb6727f-2587-4ff9-851d-c99f63a7b427/sm/JamTips.jpg","duration":115,"publication_date":"2011-11-06T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2011-nintendo-holiday-preview","changefreq":"weekly","video":[{"title":"S1:E157 - The 2011 Nintendo Holiday Preview","description":"Nintendo rolled into Dallas with their trailer full of Holiday goodies, and Sean and Jared couldn't help themselves but see what Nintendo has in store.","player_loc":"https://roosterteeth.com/embed/the-2011-nintendo-holiday-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":191,"publication_date":"2011-11-05T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-norcal-crew","changefreq":"weekly","video":[{"title":"S1:E138 - Clip of the Week - The NorCal Crew","description":"A legend rings about the internet. A legend of a dancing duo known as The NorCal Crew whose career ended just as quickly as it had begun. This is their story.\r\nSee The NorCal Crew's entire existence unedited here.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-norcal-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":266,"publication_date":"2011-11-04T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-11411","changefreq":"weekly","video":[{"title":"S1:E52 - Hard News 11/4/11","description":"Today on Hard News what you'll see on the VGAs, play Modern Warfare 3 early and you'll get banned early, and what is Nintendo patenting this time?\r\nVGA trailers - http://www.screwattack.com/news/spike-reveal-new-alan-wake-vgas\r\nCan't play MW3 early - http://www.screwattack.com/news/fan-drops-1800-early-mw3-cant-play\r\nNintendo's new patent - http://www.screwattack.com/news/nintendos-new-patent-will-make-you-look-tool\r\nLike us on Facebook and follow us on Twitter!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook SA - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-11411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9bb0d93-78d2-472e-8cf5-d7dba5782df3/sm/modernwarfare3wallpaper.jpg","duration":122,"publication_date":"2011-11-04T12:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-11311","changefreq":"weekly","video":[{"title":"S1:E51 - Hard News 11/3/11","description":"Today on Hard News 2012 will be very, very, silent, make tough decisions in the new Rainbow Six, and an island isn't enough for all these zombies.\r\nSilent Hill games in 2012 - http://www.screwattack.com/news/start-your-2012-silent-hill\r\nRainbow 6 Patriots - http://www.screwattack.com/news/rainbow-6-patriots-development\r\nDead World - http://www.screwattack.com/news/deep-silver-wants-bring-zombies-world\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - facebook.com/Pro.Jared\r\nFacebook ScrewAttack - facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-11311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f3f4990-5378-4b7c-a56d-b35901afd760/sm/R6P_610.jpg","duration":131,"publication_date":"2011-11-03T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/checking-out-uncharted-3-on-the-big-screen","changefreq":"weekly","video":[{"title":"S1:E156 - Checking Out Uncharted 3 on the Big Screen!","description":"When Uncharted 3 was holding it's cinema events, we were lucky enough to have one in Dallas. What else could we do besides go check it out?","player_loc":"https://roosterteeth.com/embed/checking-out-uncharted-3-on-the-big-screen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":124,"publication_date":"2011-11-02T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-gaming-2011-is-this-weekend","changefreq":"weekly","video":[{"title":"S1:E155 - Iron-Man of Gaming 2011 is THIS WEEKEND!","description":"The final rundown before the world's best gaming tournament... ever.  Get more info on the ScrewAttack Iron-Man page.  We'll see you at NekoCon this weekend!","player_loc":"https://roosterteeth.com/embed/iron-man-of-gaming-2011-is-this-weekend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":48,"publication_date":"2011-11-02T17:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-110211","changefreq":"weekly","video":[{"title":"S1:E154 - SideScrollers Extended 11/02/11","description":"Additional SideScrollers for Advantage Members!\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-110211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":644,"publication_date":"2011-11-01T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"baby-hitler\"","changefreq":"weekly","video":[{"title":"S1:E36 - SideScrollers - \"Baby Hitler\"","description":"It's Halloween! Oh wait... no it isn't. We're late for it. Too bad. Here's some spooky Halloween talk!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio110211.mp3\r\nGot a question? Ask it on our forums! http://bit.ly/u0V1ro\r\nWatch the mentioned ScrewAttack videos NOW!\r\nScrewin' Around Every Monday - Friday 4:30 pm CST! - http://twitch.tv/screwattack\r\nA Link to Craig's Past - http://bit.ly/sqrXpv\r\nREVIEW: Battlefield 3 - http://bit.ly/tUh5YN\r\nREVIEW: Kirby's Return to Dreamland - http://bit.ly/sNxbjT\r\nBe sure to \"Like\" our video, Subscribe, and share around!\r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nSee more gaming goodness at www.ScrewAttack.com!\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"baby-hitler\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9790f4c-94bd-4ec1-9b4e-12289efc6333/sm/legoman.jpg","duration":2795,"publication_date":"2011-11-01T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-11111","changefreq":"weekly","video":[{"title":"S1:E49 - Hard News 11/1/11","description":"Today on Hard News Origin has Germans returning BF3 in droves, Silicon Knights isn't doing so hot, and you can strap back in your mech suit next year.\r\nOrigin Spying - http://www.screwattack.com/news/bf3-origin-users-arent-being-spied-ea-says\r\nSilicon Knights layoffs - http://www.screwattack.com/news/rumor-massive-layoffs-silicon-knights\r\nNew Mechwarrior - http://www.screwattack.com/news/new-mechwarrior-online-announced-piranha-games-inc\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-11111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1c7a767-7128-4067-b5d6-38af9cfdd7c4/sm/ss_1_lg_mechwarrior4july9_0.jpg","duration":125,"publication_date":"2011-11-01T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-103111","changefreq":"weekly","video":[{"title":"S1:E48 - Hard News 10/31/11","description":"Today on Hard News Resident Evil is old enough for a learner's permit, what EA is doing to fix Battlefield 3, and is God of War 4 in the works?\r\nResident Evil turns 15 - http://www.screwattack.com/news/biohazard-chronicles-hd-selection-announced\r\nGod of War 4 - http://www.screwattack.com/news/rumor-new-god-war-being-developed-santa-monica-studio\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-103111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40996dc7-54ad-483d-b265-d079ae53dcba/sm/004_4.jpg","duration":122,"publication_date":"2011-10-31T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-link-to-craigs-past","changefreq":"weekly","video":[{"title":"S1:E153 - A Link to Craig's Past","description":"There has been a secret that's been hiding from Craig in a Link to the Past for 20 years. Today Craig finds out what's behind that door with some major help from Jared.","player_loc":"https://roosterteeth.com/embed/a-link-to-craigs-past","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b6433c-c048-4383-8ae1-15f2be2ed9df/sm/LtCPRot.jpg","duration":647,"publication_date":"2011-10-30T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-street-fighter-is-srs-bsns","changefreq":"weekly","video":[{"title":"S1:E137 - Clip of the Week - Street Fighter is SRS BSNS","description":"A lot of us have games that we really get into. For some it's FPS games, for some guy in Thailand it's arcade rail shooters, and for others it's fighting games. In Lauren's case, fighting games are serious... life-and-death serious. Mostly death.\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\nBut don't follow Nick. Don't do it. Unless you want to send him Clip of the Week suggestions.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-street-fighter-is-srs-bsns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":134,"publication_date":"2011-10-28T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102811","changefreq":"weekly","video":[{"title":"S1:E47 - Hard News 10/28/11","description":"Today on Hard News codes keep some from the BF3 fight, Nintendo will re-premiere the Wii U, and how you can get the PS Vita early.\r\nBattlefield 3 codes - http://www.screwattack.com/news/battlefield-3-online-passes-not-working-certain-users\r\nWii U unveil again - http://www.screwattack.com/news/nintendo-will-re-unveil-wii-u-what\r\nGet PS Vita early - http://www.screwattack.com/news/playstation-vita-will-be-coming-early-north-america\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.jared\r\nFacebook SA - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-102811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a98810f7-16ea-4cf8-b794-65de67b6cca8/sm/ps-vita-554x341.jpg","duration":113,"publication_date":"2011-10-28T13:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102711","changefreq":"weekly","video":[{"title":"S1:E46 - Hard News 10/27/11","description":"Today on Hard News is there's a new XIII, you can play more than EA on Origin, and is a new Just Cause in the works?\r\nJust Cause 3 - http://www.justpushstart.com/2011/10/26/just-cause-3-currently-in-development/\r\nXIII: Lost Identity - http://www.screwattack.com/news/xiii-lost-identity-be-interactive-story\r\n3rd party games on Origin - http://www.screwattack.com/news/batman-and-saints-row-head-origin\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-102711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c06f65ca-a4fc-46da-8226-34f7bc1577cf/sm/JC.jpg","duration":105,"publication_date":"2011-10-27T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102611","changefreq":"weekly","video":[{"title":"S1:E45 - Hard News 10/26/11","description":"Today on Hard News Battlefield 3 breaks its promise, Thief 4 is still happening, and where will you call home in GTA 5?\r\nBattlefield 1943 not on PS3 - http://www.screwattack.com/news/battlefield-3-already-breaking-promises\r\nThief 4 Storyboards - http://www.screwattack.com/news/first-images-thief-4-sneak-net\r\nGTA 5 location - http://www.screwattack.com/news/update-grand-theft-auto-5-no-longer-rumor\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-102611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/019724f2-ba71-47e7-8412-e9adf159d8c7/sm/thief-pg3sml_0.jpg","duration":108,"publication_date":"2011-10-26T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-10","changefreq":"weekly","video":[{"title":"2015:E8 - Goat Simulator","description":"Michael and Gavin are at it again! ...You've goat to be kidding me.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc50a89c-9498-4050-858a-bebc9f76943d/sm/ep10653.jpg","duration":942,"publication_date":"2015-04-16T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-18","changefreq":"weekly","video":[{"title":"2015:E16 - The Vale","description":"Matt and Geoff are back for day three of Westeroscraft! Today they're heading to The Vale and jumping out of the famous Moon Door. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08ea62f3-92c7-484e-9852-cddcb748c0e0/sm/ep10652.jpg","duration":206,"publication_date":"2015-04-15T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-19","changefreq":"weekly","video":[{"title":"2015:E15 - Achievement HUNT #77","description":"Jack and Gavin continue their battle in Trials Fusion and pick up another achievement along the way.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b95d782-0f90-48e1-8e52-83e541b316ad/sm/ep10651.jpg","duration":291,"publication_date":"2015-04-15T19:33:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-35","changefreq":"weekly","video":[{"title":"2015:E29 - Minecraft - Cake Walk","description":"AH learn about cake physics in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9c7c30a-4513-4b53-9d1f-fed3b874b922/sm/ep10650.jpg","duration":1038,"publication_date":"2015-04-15T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-128","changefreq":"weekly","video":[{"title":"2015:E103 - Dying Light April Fools!","description":"The Ah Crew check out Dying Light's Co-op with all of it's April Fools day add ons. Zombie Pong is pretty fun as it turns out.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0d5b645-f95c-4077-9ac6-1894d111fdb3/sm/ep10649.jpg","duration":1335,"publication_date":"2015-04-15T18:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-126","changefreq":"weekly","video":[{"title":"2015:E102 - Mortal Kombat X - Tournament","description":"Geoff hosts the first \"International Intercontinental Interplanetary Intergalactic Achievement Hunter Only\" Mortal Kombat X Tournament! Shoutout to the camera-man and editor, he's super-special-awesome in every way and totally not also the person who is writing this description.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ccf5a9c-6250-4741-a3a8-e7298d463763/sm/ep10647.jpg","duration":1622,"publication_date":"2015-04-14T23:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-123","changefreq":"weekly","video":[{"title":"2015:E101 - Drawful Part 3","description":"The lovely Griffon and Linda drop in while Geoff hosts the biggest game of Drawful yet!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/371abfbb-46bd-4b9d-8efc-cd0b5d1fb797/sm/ep10643.jpg","duration":1756,"publication_date":"2015-04-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-16","changefreq":"weekly","video":[{"title":"2015:E15 - Westeroscraft The Wall","description":"Matt and Joel are back for day two of Westeroscraft! Today they're checking out The Wall and all things north of it to see if a blocky version matches up to the real thing. White Walkers not included. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abee8bfb-ec5c-46d9-ae23-a759a3004ba5/sm/ep10646.jpg","duration":202,"publication_date":"2015-04-14T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-18","changefreq":"weekly","video":[{"title":"2015:E15 - Call of Duty: Advanced Warfare - GO! #77","description":"In this week's Go, screens aren't necessary! Trapped in a small room, our 4 heroes must fight blindly to survive. The last one standing, wins!","player_loc":"https://roosterteeth.com/embed/go-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8b02e65-a585-4ec2-837c-93c3f8d658b5/sm/ep10645.jpg","duration":722,"publication_date":"2015-04-14T17:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-18","changefreq":"weekly","video":[{"title":"2015:E15 - Bloodborne","description":"Adam and James of Funhaus give you five fun(haus) facts about Bloodborne!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea6ab99b-bb6c-49a3-a860-1ad6986084b1/sm/ep10644.jpg","duration":382,"publication_date":"2015-04-14T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-17","changefreq":"weekly","video":[{"title":"2015:E14 - Week #260","description":"It's Ray's last AHWU ever, come and join us for the sadness and the ritual beating. Also, check out Michael's perspective from last week's Things to Do In right here: Vid of week 1: \nVid of week 2: Community vid: https://www.youtube.com/watchv=Gb-m7npMj","player_loc":"https://roosterteeth.com/embed/ahwu-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a617b743-16d1-4c1e-b753-46e6c1612a64/sm/ep10642.jpg","duration":519,"publication_date":"2015-04-13T22:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-14","changefreq":"weekly","video":[{"title":"2015:E14 - Westeroscraft Winterfell","description":"Matt and Geoff check out Westeroscraft! For this first day we're going to head to Winterfell and get a feel for it before everything terrible happens to it. If you wanna learn more about westeroscraft and check out the server head over to www.westeroscraft.com to see more. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83b334f8-144e-4d66-910f-2747b9a6b97f/sm/ep10641.jpg","duration":199,"publication_date":"2015-04-13T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-122","changefreq":"weekly","video":[{"title":"2015:E100 - GTA V Heists - Series A Funding Part 1","description":"Michael, Geoff, Gavin, Ryan and sometimes Batman attend a fancy yacht party for Trevor!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f98484a-207c-419b-a7be-e6aba9de57d3/sm/ep10640.jpg","duration":2454,"publication_date":"2015-04-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-16","changefreq":"weekly","video":[{"title":"2015:E14 - Top 5 Easy 1000 Gamerscore Games - Part 2","description":"Geoff, Kdin, and Ray embark on the never ending quest to find video games with easy gamerscore! Welcome to Part 2 everybody!","player_loc":"https://roosterteeth.com/embed/countdown-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e69ef5e7-8e80-4c36-86cf-308aba60663b/sm/ep10639.jpg","duration":179,"publication_date":"2015-04-13T12:39:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-117","changefreq":"weekly","video":[{"title":"2015:E99 - Saints Row IV: Re-Elected Part 9","description":"Geoff and Michael are going after Keith David. But to bring him in, their gonna need help from a maniac... also Sunny references. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49c11cc4-7d7f-417c-99ff-ae641115725c/sm/ep10633.jpg","duration":2920,"publication_date":"2015-04-11T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-31","changefreq":"weekly","video":[{"title":"2015:E28 - GTA V - Steamroller","description":"Geoff has created a monster. A body and soul crushing monster. Check out Michael's perspective: || RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb8b6863-5f18-474e-a4fd-6ecd929cbf31/sm/ep10636.jpg","duration":714,"publication_date":"2015-04-10T20:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-16","changefreq":"weekly","video":[{"title":"2015:E15 - Volume 238","description":"Jack is gleeful and Geoff is well... he's Geoff, in episode 238 of Fails of the Weak as they endure mostly glitches in Assassin's Creed: Brotherhood, Assassin's Creed IV: Black Flag, Far Cry 4, and Halo: Master Chief Collection. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dbce0fa-8d41-4e80-b21c-809e56c8fdd8/sm/ep10631.jpg","duration":256,"publication_date":"2015-04-10T17:06:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-9","changefreq":"weekly","video":[{"title":"2015:E8 - Kinect Sports Rivals","description":"Michael is back playing Kinect Sports Rivals in this week's Rage Quit. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6b9a911-99b8-49b7-a6d3-5bdd527bbf7d/sm/ep10630.jpg","duration":338,"publication_date":"2015-04-09T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-110","changefreq":"weekly","video":[{"title":"2015:E98 - Minecraft - Episode 150 - Darwin X Pt. 2","description":"The quest to make Charles Darwin \"proud\" continues! Will the AH crew find more creative ways to die or will Minecraft do that job for them RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec47cdd7-5d45-4bbb-9d47-1ec185963cab/sm/ep10627.jpg","duration":3136,"publication_date":"2015-04-09T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-112","changefreq":"weekly","video":[{"title":"2015:E97 - Rainbow Six Vegas Co-Op Part 1","description":"Geoff, Michael, Gavin, and Ray begin their campaign playthrough. What happens on the helicopter, stays on the helicopter. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b290189-3fe7-43a3-aa04-fbf392733547/sm/ep10628.jpg","duration":1904,"publication_date":"2015-04-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-16","changefreq":"weekly","video":[{"title":"2015:E15 - The Order 1886","description":"Joel and Adam \"play' The Order 1886. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1OWSBLe","player_loc":"https://roosterteeth.com/embed/how-to-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26347e6c-7009-410c-a968-6a87d8cae23e/sm/ep10626.jpg","duration":1320,"publication_date":"2015-04-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-16","changefreq":"weekly","video":[{"title":"2015:E15 - Episode 110: Michael vs. Ray","description":"AH gets handsy. And confused. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/vs-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55edc182-4331-4c3a-8dfe-e5036d0b0c1f/sm/ep10629.jpg","duration":965,"publication_date":"2015-04-09T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-17","changefreq":"weekly","video":[{"title":"2015:E14 - Achievement HUNT #76","description":"Ray and Michael face off in a Mortal Kombat themed HUNT this week to celebrate the new title next week. Then Ray went home... so Michael joins two Rays to record with! You'll figure it out. Enjoy! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/405f555c-b7a0-4187-8a90-beba68b98f55/sm/ep10625.jpg","duration":463,"publication_date":"2015-04-08T21:31:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-106","changefreq":"weekly","video":[{"title":"2015:E96 - Call Of Duty: Advanced Warfare - Exo Zombies","description":"Ryan, Jack, Michael, and Gavin attempt to fight off a zombie infestation! Their ace in the hole An excellent coach! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72629066-1d37-46b3-88c6-f5a9df8ca134/sm/ep10624.jpg","duration":3419,"publication_date":"2015-04-08T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-hand-helsing","changefreq":"weekly","video":[{"title":"IA:E35 - Hand Helsing","description":"Jeremy and Kdin are playing some Bloodborne. Can confirm.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-hand-helsing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/284c0661-b743-4872-aafc-fb62610a9c4b/sm/ep10623.jpg","duration":273,"publication_date":"2015-04-08T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-28","changefreq":"weekly","video":[{"title":"2015:E27 - Minecraft - Mineokart Balloon Battle","description":"AH bursts each other's bubbles in this Minecraft remake of the Mario Kart's Battle Mode - Balloon Battle. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05168699-8aa7-4e7e-a0c8-01a088cf859c/sm/ep10622.jpg","duration":287,"publication_date":"2015-04-08T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-103","changefreq":"weekly","video":[{"title":"2015:E94 - Far Cry 4 Co-op Part 3","description":"Geoff and Ryan are back on their pulse pounding adventure through Kyrat. It's a good thing they're the best Far Cry players ever or this might be dangerous for them. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d63e57f9-db2b-4d98-85d0-12b024f97277/sm/ep10619.jpg","duration":1885,"publication_date":"2015-04-07T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-17","changefreq":"weekly","video":[{"title":"2015:E14 - Cartography in Minecraft - GO! #76","description":"The cartography is strong with this Go! Whoever can \"write' the first letter of their name in their Minecraft map, wins! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/go-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26015f54-d238-4620-876e-7a8ffb6b22ce/sm/ep10618.jpg","duration":574,"publication_date":"2015-04-07T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-15","changefreq":"weekly","video":[{"title":"2015:E14 - Cities Skylines","description":"Jack and Ryan discuss the hit PC game Cities: Skylines in this week's Five Facts! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/five-facts-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99c429cd-9fd7-49e0-83eb-a5ccdd4d663d/sm/ep10617.jpg","duration":202,"publication_date":"2015-04-07T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-14","changefreq":"weekly","video":[{"title":"2015:E13 - Week #259","description":"In today's AHWU you can witness the last shred of Jack's hope for humanity vanishing. See if you can spot the momment it happens. Also, check out our Claptrap-in-a-Box Giveaway right here! Vid of week: http://bit.ly/1Ct2qql Community vid: http://bit.ly/1Ct2sP0 RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/ahwu-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70a4763e-8a8b-4fcc-b61c-e25637bf1cf2/sm/ep10616.jpg","duration":585,"publication_date":"2015-04-06T22:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-98","changefreq":"weekly","video":[{"title":"2015:E93 - GTA V Heists - Humane Labs Raid Part 2","description":"Ray, Gavin, Michael and Ryan are back for part 2 of the Humane Labs Raid! Check back Wednesday for the last part in a special mid-week GTA! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c6dfb34-122e-47fd-a24b-8dfa642dc1de/sm/ep10615.jpg","duration":2369,"publication_date":"2015-04-06T22:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-13","changefreq":"weekly","video":[{"title":"2015:E13 - Top 5 Games With Cameras","description":"Geoff and Kdin take a look at the best games that feature cameras! And we also learn that Frank West followed in Geoff's footsteps. Geoff covered wars you know. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/countdown-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8575997-4882-4975-93a9-eab389ec9323/sm/ep10614.jpg","duration":205,"publication_date":"2015-04-06T21:11:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sunday-driving-season-1-sunday-driving-how-muddy-do-you-like-it","changefreq":"weekly","video":[{"title":"S1:E3 - How Muddy Do You Like It?","description":"Geoff takes the crew \"Muddin\"!","player_loc":"https://roosterteeth.com/embed/sunday-driving-season-1-sunday-driving-how-muddy-do-you-like-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae07a65f-e54e-403d-8230-7c527833c4b1/sm/ep10609.jpg","duration":2726,"publication_date":"2015-04-05T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-93","changefreq":"weekly","video":[{"title":"2015:E92 - Saints Row IV: Re-Elected Part 8","description":"Geoff and Michael go full 2D and insert themselves where they don't belong. It's part 8 of Saints Row Saturday!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f00d30d-789d-4e83-a496-a8bed8c7577a/sm/ep10608.jpg","duration":2715,"publication_date":"2015-04-04T12:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-25","changefreq":"weekly","video":[{"title":"2015:E26 - GTAV - BMX Badass","description":"The AH Crew takes on an intense BMX challenge in GTA V! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35d8eb34-c084-419d-a700-c7073b8921f6/sm/ep10606.jpg","duration":1786,"publication_date":"2015-04-03T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-claptrap-in-a-box-unboxing-and-giveaway","changefreq":"weekly","video":[{"title":"2015:E7 - Claptrap-in-a-Box Unboxing and Giveaway!","description":"The guys at 2k have given us a Claptrap-in-a-Box to give away to one lucky fan! Watch the video and then post the secret comment on the journal found right here: http://roosterteeth.com/members/journal/entry.phpid=3327589 Good luck to you! We'll pick a winner the week of April 6th! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-claptrap-in-a-box-unboxing-and-giveaway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f63a2f6-46e9-46cd-9705-890b37521c3e/sm/ep10605.jpg","duration":233,"publication_date":"2015-04-03T16:07:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-12","changefreq":"weekly","video":[{"title":"2015:E14 - Volume 237","description":"Yet again Caleb isn't at work and didn't write a description. Here are some fails, Geoff sometimes laughs, Jack says stuff. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaf30056-8f61-4343-8af5-ecb33cfcae92/sm/ep10604.jpg","duration":236,"publication_date":"2015-04-03T14:20:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-7","changefreq":"weekly","video":[{"title":"2015:E7 - Don Bradman Cricket","description":"Gavin makes up some sort of sport, Quidditch or something, while Michael tries his best to understand what the heck is going on. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/play-pals-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39c41106-1cfc-4c4f-92b2-b3507fd371d9/sm/ep10603.jpg","duration":1504,"publication_date":"2015-04-02T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-88","changefreq":"weekly","video":[{"title":"2015:E91 - Minecraft - Episode 149 - Darwin Awards X","description":"Geoff summons the AH Crew back to Achievement City to find out who can claim the Darwin Award...X! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d635f1f4-33a7-4ab0-89e2-65a25ce27d54/sm/ep10601.jpg","duration":2494,"publication_date":"2015-04-02T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-14","changefreq":"weekly","video":[{"title":"2015:E14 - The Hidden","description":"Joel, Adam, Matt, and Jeremy ask the question on everyone's mind. Who are you I AM THE HIDDEN!","player_loc":"https://roosterteeth.com/embed/how-to-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05bacf69-36b1-46f6-af5c-a05c3ee3bb5f/sm/ep10599.jpg","duration":1751,"publication_date":"2015-04-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-86","changefreq":"weekly","video":[{"title":"2015:E90 - Rainbow Six Vegas Part 5","description":"Will Geoff, Michael, Gavin, and Ray complete their final terrorist hunt map Will the achievement be achieved! STAY TUNED!!! || RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48337ead-ea1b-44a5-a7af-d4d6b22db6a6/sm/ep10600.jpg","duration":999,"publication_date":"2015-04-02T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-advanced-warfare-love-tap-guide","changefreq":"weekly","video":[{"title":"2015:E2494 - Call of Duty: Advanced Warfare - Love Tap Guide","description":"Ray shows you how to get the \"Love Tap\" achievement in the Ascendance DLC for Call of Duty: Advanced Warfare for the Xbox One. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-advanced-warfare-love-tap-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88ac135c-f803-4502-b15d-89384a62a800/sm/ep10598.jpg","duration":103,"publication_date":"2015-04-02T14:14:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-22","changefreq":"weekly","video":[{"title":"2015:E25 - Minecraft - Fly Fishing X","description":"AH tries to catch pussies and cocks. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aaf3952-4c40-4e4d-8779-aac9feeafdfc/sm/ep10596.jpg","duration":548,"publication_date":"2015-04-01T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-april-2015","changefreq":"weekly","video":[{"title":"2015:E6 - Coming Soon - April 2015","description":"Kdin is here to give us the list of video game releases for April in this month's episode of Coming Soon! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-april-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/218825dc-fca2-472b-8cc2-fff6dc72c49b/sm/ep10595.jpg","duration":187,"publication_date":"2015-04-01T19:52:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-13","changefreq":"weekly","video":[{"title":"2015:E13 - Achievement HUNT #75","description":"Jack and Gavin face off again in Trials Fusion. Who will be the first to grab the achievement and deliver their opponent a letter! RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/574f8e03-d27a-4be6-a36c-774363de0d4a/sm/ep10594.jpg","duration":333,"publication_date":"2015-04-01T19:04:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-81","changefreq":"weekly","video":[{"title":"2015:E89 - Borderlands The Pre-Sequel (Melee Only)","description":"Geoff, Jack, Ray, and Michael take on the ultimate challenge, can they beat Borderlands: The Pre-Sequel \"The Gun Game\" without Guns RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/601705d3-ab7c-41b3-ac03-4c47d4f537e6/sm/ep10591.jpg","duration":2522,"publication_date":"2015-04-01T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-borderlands-the-handsome-collection","changefreq":"weekly","video":[{"title":"IA:E34 - Borderlands The Handsome Collection","description":"Jeremy and Matt look better than ever as they get 2 achievements in the new remastered edition of Borderlands: The Pre-Sequel. RT 12th ANNIVERSARY SALE! Save 12% on your entire purchase using code RT12YEARS. Hurry... ends April 12th! http://bit.ly/1BNeCDk","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-borderlands-the-handsome-collection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e04655f0-20ea-48d0-8f37-b7445fbff58e/sm/ep10593.jpg","duration":261,"publication_date":"2015-04-01T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-80","changefreq":"weekly","video":[{"title":"2015:E88 - I am Bread Part 4","description":"Michael and Gavin are back with the next installment of their bread filled adventure. Watch as their friendship crumbles.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/261c0da6-cbd3-49b7-bec2-9c14cdde1782/sm/ep10589.jpg","duration":2689,"publication_date":"2015-03-31T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-12","changefreq":"weekly","video":[{"title":"2015:E13 - Variety Pack #9","description":"GTA IV, Left 4 Dead 2, Portal 2, Bioshock Infinite, and Dead Space all make an appearance in the 9th Five Facts Variety Pack!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fec6aad7-9dad-4549-a535-0787b7d6860e/sm/ep10587.jpg","duration":184,"publication_date":"2015-03-31T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-11","changefreq":"weekly","video":[{"title":"2015:E13 - Car Fight Club in GTA V - GO! #75","description":"Geoff's challenge this week is to be the first to destroy a car in GTAV with just their bare hands. Who will be the first Who will explode Is it even possible Tune in to find out!","player_loc":"https://roosterteeth.com/embed/go-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37b68165-a230-4b51-8771-07d0684b35c1/sm/ep10586.jpg","duration":660,"publication_date":"2015-03-31T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-12","changefreq":"weekly","video":[{"title":"2015:E12 - Week #258","description":"Jack is back and the AHWU is fresh and new. Will Gavin murder Geoff by accident Has Jack lost his catching ability Find out now! Vid of week: http://bit.ly/1IiIr2j Community vid: http://bit.ly/1GcyO6o","player_loc":"https://roosterteeth.com/embed/ahwu-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a6df68b-1d4f-49c8-9208-0e59c32a8309/sm/ep10585.jpg","duration":547,"publication_date":"2015-03-30T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-76","changefreq":"weekly","video":[{"title":"2015:E87 - GTA V - Humane Labs Raid Part 1","description":"Michael, Ray, Gavin & Ryan run the Humane Labs Raid!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0529a6-fe53-46c3-b23a-95eac9c963a0/sm/ep10583.jpg","duration":2980,"publication_date":"2015-03-30T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-11","changefreq":"weekly","video":[{"title":"2015:E12 - Top 5 Easy 1000 Gamerscore Games","description":"Ray, Kdin, and Geoff take a look at 5 games that will be sure to give you an easy 1000 Gamerscore!","player_loc":"https://roosterteeth.com/embed/countdown-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65fa583b-189a-400e-9741-59735c3985e0/sm/ep10582.jpg","duration":181,"publication_date":"2015-03-30T19:38:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-17","changefreq":"weekly","video":[{"title":"2015:E24 - GTA V - Thread the Lazer","description":"This week, AH tests their jet driving. Not piloting, driving. We know what we said.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71c53dca-167d-45ab-b255-d99cf7b311d0/sm/ep10575.jpg","duration":499,"publication_date":"2015-03-27T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-9","changefreq":"weekly","video":[{"title":"2015:E13 - Volume 236","description":"Geoff and Jack take a look at the best Fails, but what they don't know is Caleb forgot to write a description, thus being the biggest fail of all time. Way to go, Caleb. - Love, Kdin |","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d4f59f-a266-4084-8c30-080146118e0e/sm/ep10574.jpg","duration":205,"publication_date":"2015-03-27T19:37:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-rap-tower-of-pimps-t-o-p-","changefreq":"weekly","video":[{"title":"2015:E5 - Minecraft Rap - Tower of Pimps (T.O.P.) ","description":"Download the song: iTunes Google Play\r\nAchievement Hunter presents a rap song dedicated the their golden symbol of victory. Bow down to the Tower of Pimps! Song: Tower of Pimps || Artist: Achievement Hunter featuring Jeremy Dooley","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-rap-tower-of-pimps-t-o-p-","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a592734-bb68-4f2c-859f-a7ab96261dc4/sm/ep10571.jpg","duration":222,"publication_date":"2015-03-27T16:34:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-5","changefreq":"weekly","video":[{"title":"2015:E7 - Bloodborne","description":"Michael is back with more Rage Quit!","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00d82062-571f-4105-8744-ac4e5cc9200f/sm/ep10570.jpg","duration":410,"publication_date":"2015-03-26T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-63","changefreq":"weekly","video":[{"title":"2015:E85 - Minecraft - Episode 148 - Chutes and Ladders","description":"The AH crew hop into a friendly game Minecraft for a round of Chutes and Ladders!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3a90993-df31-48e4-bdbb-0690e606396d/sm/ep10569.jpg","duration":3098,"publication_date":"2015-03-26T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-61","changefreq":"weekly","video":[{"title":"2015:E84 - Rainbow Six Vegas Part 4","description":"Geoff, Michael, Gavin, and Ray are on shaky ground after their last terrorist hunt. Will they learn to trust doors as well as each other again","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b6a291-3ee3-4e98-b21f-636418bcb7a4/sm/ep10566.jpg","duration":2808,"publication_date":"2015-03-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-10","changefreq":"weekly","video":[{"title":"2015:E13 - Evolve","description":"Joel, Adam, Matt, and Jeremy dress up like monsters and pretend to hunt each other, also they play Evolve.","player_loc":"https://roosterteeth.com/embed/how-to-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d046af6-9bbe-4f68-b6c3-18c637a39bf0/sm/ep10565.jpg","duration":1609,"publication_date":"2015-03-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-10","changefreq":"weekly","video":[{"title":"2015:E13 - Episode 108: Michael vs. Jack","description":"AH journeys to the Serengeti for a new form of VS: man vs beast.","player_loc":"https://roosterteeth.com/embed/vs-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06dcdb0c-26ab-4fcd-bf86-67fa6e729af1/sm/ep10567.jpg","duration":614,"publication_date":"2015-03-26T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-9","changefreq":"weekly","video":[{"title":"2015:E12 - Achievement HUNT #74","description":"Jack and Ray head in to Battlefield: Hardline to challenge each other to a game of HUNT.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/604a5e8b-3d64-492f-9f72-2b161cea3e07/sm/ep10564.jpg","duration":293,"publication_date":"2015-03-25T20:09:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-sign-here","changefreq":"weekly","video":[{"title":"IA:E33 - Sign Here","description":"Jeremy and Matt are out to get some collectibles and dodge some yetis in Far Cry 4.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-sign-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2c90050-e77e-45e2-ab0a-dd89ad85ff4c/sm/ep10563.jpg","duration":299,"publication_date":"2015-03-25T18:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-14","changefreq":"weekly","video":[{"title":"2015:E23 - Minecraft - Diamond Challenge","description":"AH test their Minecrafting skills in a unique new environment.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b169167-4213-4761-9252-49364d8f14e0/sm/ep10560.jpg","duration":637,"publication_date":"2015-03-25T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-56","changefreq":"weekly","video":[{"title":"2015:E82 - Zombie Army Trilogy","description":"Geoff, Ryan, Michael, and Jeremy put their differences aside and fight the undead in Zombie Army Trilogy!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4732c2ce-a09e-46f7-8b58-c3613e006307/sm/ep10558.jpg","duration":1430,"publication_date":"2015-03-24T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-9","changefreq":"weekly","video":[{"title":"2015:E12 - Battlefield 1943","description":"Geoff and Ryan take a look at Battlefield 1943 in this week's Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/277d2489-cdf5-4ade-884b-1ddc96bba22b/sm/ep10557.jpg","duration":205,"publication_date":"2015-03-24T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-9","changefreq":"weekly","video":[{"title":"2015:E12 - Don't Look! in GTA V - GO! #74","description":"Don't look now! No seriously, they can't look at their screens. Whoever can fly a jet the longest without looking at their screens, wins! Let's see who's still in the air!","player_loc":"https://roosterteeth.com/embed/go-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/457b4096-386d-4e52-9cf5-bb957e16edb2/sm/ep10556.jpg","duration":259,"publication_date":"2015-03-24T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-7","changefreq":"weekly","video":[{"title":"2015:E11 - Five Nights at Freddy's","description":"Matt, Jeremy, and the always surprising Joel check out a recreation of the horrifying pizza survival game, Five Nights at Freddy's, in Minecraft! If you wanna grab the map to mess around with yourself grab it here http://bit.ly/1xdJjou. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c878978-8ecb-4cf6-9b45-31e1f28c8175/sm/ep10555.jpg","duration":195,"publication_date":"2015-03-23T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-49","changefreq":"weekly","video":[{"title":"2015:E81 - GTA V - The Prison Job Part 3","description":"The dramatic [Technical Difficulties] conclusion [Technical Difficulties] to the Prison Job Heist!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bca52676-6b23-4c47-a054-0ce0a9db880f/sm/ep10552.jpg","duration":2033,"publication_date":"2015-03-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-9","changefreq":"weekly","video":[{"title":"2015:E11 - Week #257","description":"Jack is out, so AH holds a karate demonstration, impersonates animals and gurkles hard.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab533ea3-142f-405a-8cda-bb5ad4c75005/sm/ep10554.jpg","duration":485,"publication_date":"2015-03-23T19:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-47","changefreq":"weekly","video":[{"title":"2015:E80 - Saints Row IV: Re-Elected Part 6","description":"Geoff and Michael grab some new items and save Shaundi in this week's episode of Saints Row Saturday.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55263f87-3564-4d12-ab6b-c90dc4b519a4/sm/ep10549.jpg","duration":2483,"publication_date":"2015-03-21T17:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-10","changefreq":"weekly","video":[{"title":"2015:E22 - GTA V - Parallel Parking","description":"Join Geoff, Ryan, Michael, Ray, Gavin, and special guest Dan as they try to take on drivings greatest challenge, parallel parking, in GTA V! I hope you have insurance.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bca56eb-e70d-4069-820d-3c88b8b8f41b/sm/ep10543.jpg","duration":709,"publication_date":"2015-03-20T18:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-5","changefreq":"weekly","video":[{"title":"2015:E12 - Volume 235","description":"In Fails of the Weak #235 Jack and Geoff endure bitter enemies, daredevils, sounding, broken spines, and juiced up soldiers in Far Cry 4, FIFA 15, Grand Theft Auto V, Halo 3, and Madden NFL 15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e73650e5-3c8d-4efc-afb0-85d33eafea94/sm/ep10542.jpg","duration":193,"publication_date":"2015-03-20T15:15:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-39","changefreq":"weekly","video":[{"title":"2015:E78 - Minecraft - Episode 147 - Cloud Down X","description":"The AH crew is back in Achievement City on the Xbox One and wondering why it took us 101 episodes to realize we could make Cloud Down taller.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3b454bb-0878-41a7-9459-5d59e94c2b07/sm/ep10535.jpg","duration":3316,"publication_date":"2015-03-19T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-6","changefreq":"weekly","video":[{"title":"2015:E12 - Episode 107: Michael vs. Matt","description":"This VS is pure emotional, physical and mental volleying.","player_loc":"https://roosterteeth.com/embed/vs-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48bbd41d-4d76-4701-85f7-779bfd2b1e8d/sm/ep10540.jpg","duration":742,"publication_date":"2015-03-19T19:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-40","changefreq":"weekly","video":[{"title":"2015:E77 - Rainbow Six Vegas Part 3","description":"Geoff, Michael, Gavin, and Ray realize that terrorists aren't the biggest danger to them. It's actually doors.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb7e8e5d-2d6b-48f4-8c71-039661daace1/sm/ep10536.jpg","duration":3051,"publication_date":"2015-03-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-5","changefreq":"weekly","video":[{"title":"2015:E12 - Five Nights at Freddy's 3","description":"Watch as Joel and Adam produce and secrete excessive amounts of bodily fluids.","player_loc":"https://roosterteeth.com/embed/how-to-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d359ea04-78ab-4290-8962-1b1b10d1d9de/sm/ep10538.jpg","duration":1069,"publication_date":"2015-03-19T16:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-3","changefreq":"weekly","video":[{"title":"2015:E6 - Double Dragon","description":"Michael and Geoff live the code of the dragon and fight for right with the might of the dragon and have the mark of the dragon in Double Dragon. Dragon. Dragon. Dragon.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f590f60f-3b4e-43bb-b817-b69ed9007ec2/sm/ep10537.jpg","duration":778,"publication_date":"2015-03-19T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-38","changefreq":"weekly","video":[{"title":"2015:E76 - GTA V - The Prison Job Part 2","description":"Part 2 of AH's Prison job heist!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bd35cba-eb5e-44b3-b9f1-a01a4674704f/sm/ep10534.jpg","duration":2228,"publication_date":"2015-03-18T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-5","changefreq":"weekly","video":[{"title":"2015:E11 - Achievement HUNT #73","description":"Jack and Gavin continue their epic return to Trials Fusion in the second part of their HUNT challenge... this time, there are achievements!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ec644f8-1a3c-4d3a-beb6-a60cafff1a8c/sm/ep10533.jpg","duration":803,"publication_date":"2015-03-18T19:12:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-merica","changefreq":"weekly","video":[{"title":"IA:E32 - MERICA","description":"Jeremy and Adam sit back, relax, and kill in this week's Imaginary Achievement, featuring the new game Battlefield: Hardline.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-merica","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b72cd84-aca3-466d-8562-ff0c2c1837ca/sm/ep10532.jpg","duration":243,"publication_date":"2015-03-18T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-7","changefreq":"weekly","video":[{"title":"2015:E21 - Minecraft - Sheep Wrangling","description":"AH goes country and flaunts their flock appeal.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/560be25e-4551-476e-a6b3-eb8548fb5fe9/sm/ep10531.jpg","duration":453,"publication_date":"2015-03-18T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-32","changefreq":"weekly","video":[{"title":"2015:E75 - 3D Ultra MiniGolf Adventures 2 Part 4","description":"The Minigolf crew attempt to keep from clubbing one-another in the head, but injuries are bound to happen.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fe0e18e-e207-4f5a-b4d1-147e86a1ee9b/sm/ep10529.jpg","duration":2786,"publication_date":"2015-03-18T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-5","changefreq":"weekly","video":[{"title":"2015:E11 - inFAMOUS Second Son","description":"Matt and Jack argue about launch titles while discussing Five Facts about inFAMOUS Second Son.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5c667cb-295d-4e2a-ab49-0b22e4e3d593/sm/ep10528.jpg","duration":271,"publication_date":"2015-03-17T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-29","changefreq":"weekly","video":[{"title":"2015:E74 - Drawful Part 2","description":"Join Geoff, Ryan, Gus, Ray, Lindsay, and special guest Mica Burton as they test out their artistic abilities in another round of Drawful!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47aac1ed-78bf-489b-85e8-d00169a44379/sm/ep10527.jpg","duration":2266,"publication_date":"2015-03-17T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-5","changefreq":"weekly","video":[{"title":"2015:E11 - Stop and...Pick the Flowers? - GO! #73","description":"In the most violent Go! ever, the crews challenge is quite simple... pick... flowers Oh, so it's not violent. Oh... okay... First to pick flowers in three different games, Go!","player_loc":"https://roosterteeth.com/embed/go-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/521f4bfa-8ce9-4735-8be4-9c546772be33/sm/ep10526.jpg","duration":658,"publication_date":"2015-03-17T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-behind-the-scenes-in-360-degrees","changefreq":"weekly","video":[{"title":"2015:E4 - Behind the Scenes in 360 degrees","description":"Finally the question of \"What is Ryan doing with all those Go Pros\" can be answered! This is an alternate view of VS episode 98 filmed in 360 degree video. \r\n\r\nTo view it you will need to use Google Chrome or the YouTube app on an android device (currently the best experience). A really good internet connection is also recommended as you should play it at the maximum quality available. Even if you don't have a 4K monitor, that is the best resolution to stream it in as you are only seeing a part of the video at any one time.\r\n\r\nLook for more videos to come!\r\n\r\nFilmed on 12/30/14","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-behind-the-scenes-in-360-degrees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec38ade7-8961-49a6-82f9-d2323d89d1e9/sm/ep10525.jpg","duration":75,"publication_date":"2015-03-17T16:17:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-4","changefreq":"weekly","video":[{"title":"2015:E10 - AHWU #256","description":"Today's AHWU is brought to you by the guy who decided it would be a good idea to send us throwing knives. Please don't send us throwing knives. Gavin is going to hurt himself.","player_loc":"https://roosterteeth.com/embed/ahwu-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d44f3c1-4343-4084-9311-fc4cf15ee241/sm/ep10524.jpg","duration":486,"publication_date":"2015-03-16T20:03:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-24","changefreq":"weekly","video":[{"title":"2015:E73 - GTA V - The Prison Job Part 1","description":"The AH Crew is back with another heist with \"The Prison Job.\"","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30b5719d-4d2b-4464-9670-c9bcf325ca9b/sm/ep10521.jpg","duration":1831,"publication_date":"2015-03-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-4","changefreq":"weekly","video":[{"title":"2015:E10 - Top 5 Crossover Game Series","description":"Kdin takes a look at the Top 5 Crossover Video Game series, however none of these compare to Abbott and Costello Meet Frankenstein.","player_loc":"https://roosterteeth.com/embed/countdown-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e810b8ef-d672-4688-a927-90c60d83096f/sm/ep10522.jpg","duration":162,"publication_date":"2015-03-16T19:05:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-19","changefreq":"weekly","video":[{"title":"2015:E72 - Saints Row IV: Re-Elected Part 5","description":"Geoff and Michael are back and even stronger than ever. Do their enemies even stand a chance No... no they don't.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69c9f39f-3179-4987-b636-0250389d2c12/sm/ep10514.jpg","duration":2494,"publication_date":"2015-03-14T14:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-5","changefreq":"weekly","video":[{"title":"2015:E2492 - Gold Bar And Bottle Locations: Part 5","description":"Jeremy and Matt finish up collecting the 135 collectible items in Zombie Army Trilogy.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fb7e15c-9551-4dce-976d-b315daecc80b/sm/ep10513.jpg","duration":603,"publication_date":"2015-03-14T14:49:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-4","changefreq":"weekly","video":[{"title":"2015:E20 - Saint's Row IV - Meat Toss","description":"The AH crew play with some protein.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae3974f1-e99b-4ced-a94f-88d504ba2b05/sm/ep10512.jpg","duration":128,"publication_date":"2015-03-13T19:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-15","changefreq":"weekly","video":[{"title":"2015:E71 - Minecraft - Episode 146 - Tornado Alley","description":"The AH crew are back in Minecraft PC to explore \"The Suck Zone\" which is the point when the tornado sucks you up. There's no a real technical term for it, obviously. Also Jack died in the last video, RIP in Peace.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cd6e56e-9520-422c-b85d-5d103341aa22/sm/ep10508.jpg","duration":1857,"publication_date":"2015-03-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-2","changefreq":"weekly","video":[{"title":"2015:E11 - Volume 234","description":"Fails of the Weak #234 lifts off as Jack and Geoff endure sky high fails and unruly public servants in Far Cry 4, Grand Theft Auto V, Sleeping Dogs, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07c7223b-c1da-4586-a0cd-1a6937715606/sm/ep10509.jpg","duration":223,"publication_date":"2015-03-13T15:12:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-14","changefreq":"weekly","video":[{"title":"2015:E70 - Battlefield 4","description":"Join Jack, Ryan, Michael, Ray, and Gavin as they cover the Battlefield 4 segment of Battlefield week. Are they better at this installment of the series What do you think","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8adc3b7d-5475-4d26-a793-b541c825298a/sm/ep10507.jpg","duration":1900,"publication_date":"2015-03-12T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-2","changefreq":"weekly","video":[{"title":"2015:E6 - Hotline Miami 2","description":"Michael suffers at the will of the auto-lock.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6efff8cd-cbe5-4905-8b94-6ec9efe1e739/sm/ep10506.jpg","duration":257,"publication_date":"2015-03-12T20:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-10","changefreq":"weekly","video":[{"title":"2015:E69 - Rainbow Six Vegas Part 2","description":"Geoff, Michael, Gavin, and Ray continue to hunt down terrorists in Rainbow Six Vegas. The thing about friendly fire... is that there's nothing friendly about it.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca375337-fd96-4b0b-b2a5-764eba48a65b/sm/ep10505.jpg","duration":2125,"publication_date":"2015-03-12T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-2","changefreq":"weekly","video":[{"title":"2015:E11 - Helldivers","description":"If you like Magicka, then you'll really like watching 4 guys spin their capes around in a circle. I spent two and a half hours on the thumbnail for this video. You'd better watch it or we won't be able to make such perfect thumbnails in the future. Also, Matt smells bad.","player_loc":"https://roosterteeth.com/embed/how-to-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa82f2eb-626b-4ac9-9435-3227e1659c4f/sm/ep10503.jpg","duration":1810,"publication_date":"2015-03-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-2","changefreq":"weekly","video":[{"title":"2015:E11 - Episode 106: Matt vs. Gavin","description":"For Matt's first VS, AH gets a special visit from a special friend.","player_loc":"https://roosterteeth.com/embed/vs-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bc5787f-0eb1-43c2-b141-32847965cd63/sm/ep10504.jpg","duration":620,"publication_date":"2015-03-12T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-side-scroller","changefreq":"weekly","video":[{"title":"S1:E5 - Side Scroller","description":"Living your life as a side scrolling game might not work quite as well as it does in video games.","player_loc":"https://roosterteeth.com/embed/immersion-season-1-side-scroller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a12e0e4-7cd4-4b6f-bd79-dc9fc7dd4a71/sm/ep1822.jpg","duration":301,"publication_date":"2010-12-15T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-noted-to-death","changefreq":"weekly","video":[{"title":"S2:E23 - Noted to Death","description":"Matt struggles to finish the final short of the season while Joel keeps trying to change the script.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-noted-to-death","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8491db4c-5c36-4ea2-91dd-8a76b2551ae8/sm/ep1812.jpg","duration":262,"publication_date":"2010-12-11T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-fighting-girl-clothes","changefreq":"weekly","video":[{"title":"S1:E4 - Fighting Girl Clothes","description":"So how exactly do video game characters fight with the costumes they are given","player_loc":"https://roosterteeth.com/embed/immersion-season-1-fighting-girl-clothes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c118321e-9bc4-4895-98cd-7b2966386a81/sm/ep1802.jpg","duration":268,"publication_date":"2010-12-09T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-farewell-extended-sponsor-cut","changefreq":"weekly","video":[{"title":"S2:E6 - Farewell - Extended Sponsor Cut","description":"The Rooster Teeth and Mega 64 guys say goodbye after a week of working together.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-farewell-extended-sponsor-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0abaeded-fc3c-4cc5-99a4-a12ff6ec166d/sm/ep1794.jpg","duration":175,"publication_date":"2010-12-06T23:04:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-farewell","changefreq":"weekly","video":[{"title":"S3:E4 - Farewell","description":"The Rooster Teeth and Mega 64 guys say goodbye after a week of working together.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-farewell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8986bf4c-fe90-4cb4-9ddb-deb08973ae36/sm/ep1790.jpg","duration":118,"publication_date":"2010-12-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-mega64-kills-themselves","changefreq":"weekly","video":[{"title":"S3:E3 - MEGA64 KILLS THEMSELVES","description":"The guys from Mega 64 haunt the Rooster Teeth office.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-mega64-kills-themselves","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86b80d40-a580-40e1-aa97-e3831755d941/sm/ep1789.jpg","duration":208,"publication_date":"2010-12-02T20:10:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-online-gaming-distractions","changefreq":"weekly","video":[{"title":"S1:E3 - Online Gaming Distractions","description":"Ever wonder what effect other players have on your online gaming skills","player_loc":"https://roosterteeth.com/embed/immersion-season-1-online-gaming-distractions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/157277e1-3cca-4dc5-abfb-f8c99d42a101/sm/ep1781.jpg","duration":338,"publication_date":"2010-12-02T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-non-compliance","changefreq":"weekly","video":[{"title":"S3:E2 - Non Compliance","description":"Joel tries to avoid playing Kinect at a party.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-non-compliance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed3c205e-c2f3-4f11-b03c-be51d6a39fab/sm/ep1776.jpg","duration":230,"publication_date":"2010-11-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-3-starry-night","changefreq":"weekly","video":[{"title":"S3:E1 - Starry Night","description":"Gus goes out on a late night errand.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-3-starry-night","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8fe76cf-ddc8-458b-bd55-f72ddfbded5f/sm/ep1773.jpg","duration":94,"publication_date":"2010-11-29T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-the-video-game-car","changefreq":"weekly","video":[{"title":"S1:E2 - The Video Game Car","description":"We celebrate the launch of IMMERSION with a relaunch of the pilot that started it all.","player_loc":"https://roosterteeth.com/embed/immersion-season-1-the-video-game-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7680c249-1ca5-4121-be78-b08c2b67ba4e/sm/ep1745.jpg","duration":345,"publication_date":"2010-11-25T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-unusual-suspects","changefreq":"weekly","video":[{"title":"S2:E22 - Unusual Suspects","description":"Gus goes on a joyride, and picks up a few people on the way.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-unusual-suspects","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d83dfc2d-4d02-40db-8690-ab53d16e6712/sm/ep1724.jpg","duration":198,"publication_date":"2010-11-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-unusual-suspects","changefreq":"weekly","video":[{"title":"MV:E8 - Unusual Suspects","description":"http://bit.ly/fF2zMm Get \"Talking That Shit\" on iTunes or http://amzn.to/e4LG1w Amazon MP3 http://roosterteeth.com - Gus takes a joyride. Season 2 DVD available now at http://roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-unusual-suspects","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4c510dc-6c98-452f-8a8f-f9acd56f5250/sm/1461653-1439912310391-Screen_Shot_2015-08-17_at_5.19.33_PM.png","duration":197,"publication_date":"2010-11-19T16:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-fish-wish","changefreq":"weekly","video":[{"title":"S2:E21 - Fish Wish","description":"Geoff goes fishing and makes a new friend.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-fish-wish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5610252-27c2-44e9-9e65-97a99ffe4079/sm/ep1712.jpg","duration":209,"publication_date":"2010-11-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-kerry-comes-out-of-the-closet","changefreq":"weekly","video":[{"title":"S2:E5 - Kerry Comes Out of the Closet","description":"A news crew came out after we shot the Halloween video for a live report.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-kerry-comes-out-of-the-closet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/864c46be-09d3-4a0c-9012-03919c5f7e4a/sm/ep1684.jpg","duration":22,"publication_date":"2010-11-04T23:12:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-haunted-tales-of-mystery","changefreq":"weekly","video":[{"title":"S2:E20 - Haunted Tales of Mystery","description":"Beware! These six chillingful tales of intriguery will suspensify you with their mysteriosity...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-haunted-tales-of-mystery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36230b07-c525-41b9-b84d-4c73553ca53a/sm/ep1677.jpg","duration":308,"publication_date":"2010-10-30T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-psa-4","changefreq":"weekly","video":[{"title":"S1:E30 - PSA #4","description":"Sarge and Church walk you through the upgrading process.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-psa-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f25821b5-1f81-4403-a497-65b4260d4273/sm/ep1637.jpg","duration":155,"publication_date":"2010-10-26T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-speechless","changefreq":"weekly","video":[{"title":"S2:E19 - Speechless","description":"Joel tries to eat his lunch in peace.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-speechless","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7602ca29-9c72-4c1a-ae2f-39acea0a9662/sm/ep1650.jpg","duration":121,"publication_date":"2010-10-23T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-captchad","changefreq":"weekly","video":[{"title":"S2:E18 - Captcha'd","description":"Brandon raises Geoff's suspicions when he can't access a website.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-captchad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85affc79-862c-4bb0-9e61-f77b60a551b8/sm/ep1631.jpg","duration":130,"publication_date":"2010-10-16T06:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-stand-alone","changefreq":"weekly","video":[{"title":"S2:E17 - Stand Alone","description":"Brandon gets put in an awkward situation when Gus exposes his lack of depth.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-stand-alone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9356bff-42f6-4368-baa3-c30bbfefe53b/sm/ep1608.jpg","duration":307,"publication_date":"2010-10-09T07:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-scissors","changefreq":"weekly","video":[{"title":"S2:E16 - Scissors","description":"Will Joel find his scissors","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-scissors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96d61a14-2c74-4a7b-89b2-5d3313ca00c3/sm/ep1589.jpg","duration":99,"publication_date":"2010-10-02T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-many-years-ago","changefreq":"weekly","video":[{"title":"S2:E15 - Many Years Ago...","description":"The guys check out the RT office for the first time and make some bold predictions about the future.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-many-years-ago","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75a1c1f2-34dd-46f8-a815-16142158f05a/sm/ep1575.jpg","duration":299,"publication_date":"2010-09-25T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-food-war","changefreq":"weekly","video":[{"title":"S2:E14 - Food War","description":"Joel and Gus introduce Jack to a totally new, totally disgusting game.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-food-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e643b7fd-3349-46f9-9e78-2a7f988d6f04/sm/ep1564.jpg","duration":278,"publication_date":"2010-09-18T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-20-the-finale","changefreq":"weekly","video":[{"title":"S8:E20 - Chapter 20; The Finale","description":"The final installment of Revelation. The Reds and Blues take on Meta in their ultimate battle.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-20-the-finale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd73cc4c-d742-41bf-9163-0a9c884a41b3/sm/ep1541.jpg","duration":574,"publication_date":"2010-09-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-credit-counseling","changefreq":"weekly","video":[{"title":"S2:E13 - Credit Counseling","description":"Burnie discusses Geoff's recent charges to the company credit card.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-credit-counseling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7058ea90-353d-4627-86f8-7431979530e2/sm/ep1540.jpg","duration":182,"publication_date":"2010-09-10T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/music-videos-season-1-forge-world-red-vs-blue","changefreq":"weekly","video":[{"title":"MV:E10 - Forge World - Red vs. Blue","description":"Sarge meets with up with the troops on Reach.","player_loc":"https://roosterteeth.com/embed/music-videos-season-1-forge-world-red-vs-blue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79014902-c423-4d35-9310-c72f529a4672/sm/1461653-1439913066158-Screen_Shot_2015-08-17_at_5.20.29_PM.png","duration":181,"publication_date":"2010-09-08T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-19","changefreq":"weekly","video":[{"title":"S8:E19 - Chapter 19","description":"Tex executes her trap, fights Wash & Meta in an epic battle.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb9ec549-0915-42b6-b1ae-fcb737a89fbe/sm/ep1527.jpg","duration":490,"publication_date":"2010-09-07T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-frag-dude","changefreq":"weekly","video":[{"title":"S2:E12 - Frag Dude","description":"At PAX, Joel introduces the newest member of the Frag Dolls.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-frag-dude","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e3a91e5-92f1-4c7f-b495-ae5dca020104/sm/ep1526.jpg","duration":340,"publication_date":"2010-09-04T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-18","changefreq":"weekly","video":[{"title":"S8:E18 - Chapter 18","description":"Sarge rallys the troops.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd0c26dd-abb9-44ea-8766-5e9601c2d308/sm/ep1513.jpg","duration":295,"publication_date":"2010-08-31T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-paper-cut","changefreq":"weekly","video":[{"title":"S2:E11 - Paper Cut","description":"Matt helps Joel with a common office problem.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-paper-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac128d36-65a8-4e83-b56b-25b67af6fc5c/sm/ep1512.jpg","duration":190,"publication_date":"2010-08-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-17","changefreq":"weekly","video":[{"title":"S8:E17 - Chapter 17","description":"S8:E17 - Chapter 17","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54e783c0-0f4c-4fbf-a5a4-aaa7af2636c2/sm/ep1486.jpg","duration":381,"publication_date":"2010-08-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-16","changefreq":"weekly","video":[{"title":"S8:E16 - Chapter 16","description":"The Reds test out some Freelancer equipment while Church and Tex arrive at a familiar Freelancer facility.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e94776a7-506f-4cbd-9598-0daee823c06c/sm/ep1447.jpg","duration":311,"publication_date":"2010-08-17T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-psa-3","changefreq":"weekly","video":[{"title":"S1:E29 - PSA #3","description":"Church and Sarge gives some tips on how to make a successful internet video.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-psa-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4697b440-f6cd-4a2d-9553-dc000c72c98d/sm/ep1434.jpg","duration":222,"publication_date":"2010-08-10T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-reach-halo-fest-psa","changefreq":"weekly","video":[{"title":"S1:E28 - Reach: Halo Fest PSA","description":"Sarge and Grif give some pointers for anyone moving to Reach.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-reach-halo-fest-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6e245fc-6b9d-40da-b6b8-751158571789/sm/ep1428.jpg","duration":85,"publication_date":"2010-08-06T22:24:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-15","changefreq":"weekly","video":[{"title":"S8:E15 - Chapter 15","description":"Grif and Simmons find some interesting equipment.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/208fb83d-d63c-40d8-9d88-d9ddd15ec6a8/sm/ep1414.jpg","duration":356,"publication_date":"2010-08-03T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-14","changefreq":"weekly","video":[{"title":"S8:E14 - Chapter 14","description":"Wash and the Meta concoct an evil plan while Church and Tex try to sort out the past.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bf7971b-72a4-46c4-a071-1e20bd35a213/sm/ep1403.jpg","duration":301,"publication_date":"2010-07-27T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-13","changefreq":"weekly","video":[{"title":"S8:E13 - Chapter 13","description":"Epsilon tries to unlock Tex while Wash and The Meta come up with an evil plan.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27cbb334-7054-4f7f-940c-d2e44a8698a2/sm/ep1391.jpg","duration":292,"publication_date":"2010-07-20T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-12","changefreq":"weekly","video":[{"title":"S8:E12 - Chapter 12","description":"Epsilon tries to unlock the Reds while Wash and Doc investigate The Meta's discovery.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/110e0ce6-d272-477b-9180-fa83d8fb3e12/sm/ep1384.jpg","duration":326,"publication_date":"2010-07-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-stoppage-time","changefreq":"weekly","video":[{"title":"S2:E10 - Stoppage Time","description":"Jack gets penalized when Gus takes one for the team.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-stoppage-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9490f81c-5af5-4a4a-9eaf-b6addbb312ab/sm/ep1383.jpg","duration":66,"publication_date":"2010-07-10T06:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-deja-view-psa","changefreq":"weekly","video":[{"title":"S1:E27 - Deja View PSA","description":"The guys visit an old friend.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-deja-view-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0688d5b2-b7be-462c-af51-3df1764097b7/sm/ep1376.jpg","duration":309,"publication_date":"2010-07-07T14:11:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-the-button","changefreq":"weekly","video":[{"title":"S2:E9 - The Button","description":"Joel is visited by a stranger with an unusual proposition.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-the-button","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5aec4df-e7c2-4efd-98bb-2388af064c05/sm/ep1371.jpg","duration":266,"publication_date":"2010-07-03T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-11","changefreq":"weekly","video":[{"title":"S8:E11 - Chapter 11","description":"Epsilon and Tex have a show down for the ages.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5857fdb3-67ee-4701-9e0d-6cc52f987485/sm/ep1368.jpg","duration":299,"publication_date":"2010-06-29T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-coasting","changefreq":"weekly","video":[{"title":"S2:E8 - Coasting","description":"Joel asks for some tech support from Gus via iChat.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-coasting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c899b7e8-2a8e-49c8-85bd-8b47e411ca94/sm/ep1366.jpg","duration":126,"publication_date":"2010-06-26T01:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-10","changefreq":"weekly","video":[{"title":"S8:E10 - Chapter 10","description":"Agent Tex catches up on some lost time.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38462783-f250-4274-9eba-a332ebfa3a1a/sm/ep1344.jpg","duration":432,"publication_date":"2010-06-22T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-psa-2","changefreq":"weekly","video":[{"title":"S1:E26 - PSA #2","description":"Grif and Simmons break down the video game industry.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-psa-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b21952d6-7495-4497-ad3f-6e7b8f85747e/sm/ep1340.jpg","duration":232,"publication_date":"2010-06-15T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-complaint-box","changefreq":"weekly","video":[{"title":"S2:E7 - Complaint Box","description":"Matt walks Joel through the new complaint system.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-complaint-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9382438-8b74-43a1-9cc1-d0e5541aef1e/sm/ep1338.jpg","duration":172,"publication_date":"2010-06-11T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-9","changefreq":"weekly","video":[{"title":"S8:E9 - Chapter 9","description":"The Red and Blues discover what the Director's secret project is.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c07e0dc-22fb-4e71-a189-896afe538ad1/sm/ep1328.jpg","duration":260,"publication_date":"2010-06-08T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-bloopers","changefreq":"weekly","video":[{"title":"S2:E6 - Bloopers","description":"A collection of bloopers from season 2 of RT Shorts.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/112e507a-f930-4120-acac-701a21dcdaf9/sm/ep1327.jpg","duration":89,"publication_date":"2010-06-04T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-8","changefreq":"weekly","video":[{"title":"S8:E8 - Chapter 8","description":"Epsilon and Caboose look for the Director's personal project while Wash and the Meta track down a recovery beacon.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aac9ccb1-4328-443a-bda5-a685f0f4d28b/sm/ep1318.jpg","duration":349,"publication_date":"2010-06-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-spillover","changefreq":"weekly","video":[{"title":"S2:E5 - Spillover","description":"Gus does his worst for the environment.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-spillover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00d23827-d96e-443b-9dd9-5c0b9291cfac/sm/ep1313.jpg","duration":284,"publication_date":"2010-05-29T04:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-7","changefreq":"weekly","video":[{"title":"S8:E7 - Chapter 7","description":"Blue Team travels to a secret facility and meets and old friend. Red Team tags along, leaving Tucker to fend for himself.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/078df1c5-9908-4c84-a98a-a5a61fa2ecd9/sm/ep1293.jpg","duration":324,"publication_date":"2010-05-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-seconds","changefreq":"weekly","video":[{"title":"S2:E4 - Seconds","description":"Matt discovers that going back for seconds is not always a good idea.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-seconds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/710bc772-840b-4077-8d87-cf00ae2da57f/sm/ep1289.jpg","duration":130,"publication_date":"2010-05-22T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-6","changefreq":"weekly","video":[{"title":"S8:E6 - Chapter 6","description":"Caboose talks to an old friend while Wash and Meta get stonewalled by Doc.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a539556-1254-45e3-ba8a-0bc01c1d2e8c/sm/ep1273.jpg","duration":261,"publication_date":"2010-05-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-new-employees","changefreq":"weekly","video":[{"title":"S2:E3 - New Employees","description":"Burnie gives Jack and Brandon the standard initiation.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-new-employees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7406a759-8f98-4d24-a52a-34317c89de44/sm/ep1267.jpg","duration":259,"publication_date":"2010-05-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-5","changefreq":"weekly","video":[{"title":"S8:E5 - Chapter 5","description":"The Reds return victorious to find the Blues in a bit of a situation.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67530ae6-1868-4fe1-be44-58b81b2f2b95/sm/ep1263.jpg","duration":257,"publication_date":"2010-05-11T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-downstairs","changefreq":"weekly","video":[{"title":"S2:E2 - Downstairs","description":"Burnie and Joel debate an issue they are having with the restaurant downstairs.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-downstairs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77a62de6-f029-4fab-9711-3b117148522c/sm/ep1253.jpg","duration":181,"publication_date":"2010-05-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-psa-1","changefreq":"weekly","video":[{"title":"S1:E25 - PSA #1","description":"Sarge and Simmons break down some key demographic information about the RvB audience.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-psa-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b427aeae-a28f-454f-8ca8-e81af2fd6411/sm/ep1250.jpg","duration":186,"publication_date":"2010-05-04T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-4","changefreq":"weekly","video":[{"title":"S8:E4 - Chapter 4","description":"Meanwhile, Simmons and Doc are in a diabolical pickle!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60e82a05-d983-4c59-96e7-2bb266f24708/sm/ep1235.jpg","duration":416,"publication_date":"2010-04-27T02:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-2-prototype","changefreq":"weekly","video":[{"title":"S2:E1 - Prototype","description":"Joel shares something magical and revolutionary with Gus.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-2-prototype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67297c52-5984-46d3-b653-9cc38edabc95/sm/ep1233.jpg","duration":174,"publication_date":"2010-04-24T06:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-3","changefreq":"weekly","video":[{"title":"S8:E3 - Chapter 3","description":"Sarge and Grif attempt to rescue Simmons from his imprisonment at Valhalla.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/757e3906-83e2-47b1-b63a-283892eaff5a/sm/ep1221.jpg","duration":339,"publication_date":"2010-04-20T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-2","changefreq":"weekly","video":[{"title":"S8:E2 - Chapter 2","description":"Sarge and Grif hatch a plan to make some plans. Simmons and Doc cower in fear while Epsilon continues his roundness.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7473918d-f283-4aaf-9747-d3f15d57cdc0/sm/ep1210.jpg","duration":303,"publication_date":"2010-04-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/immersion-season-1-pilot","changefreq":"weekly","video":[{"title":"S1:E1 - Pilot","description":"The team tries to make their lives more like video games.","player_loc":"https://roosterteeth.com/embed/immersion-season-1-pilot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df420ac0-f91d-4e3b-9a80-39d56c6e8049/sm/ep1199.jpg","duration":346,"publication_date":"2010-04-06T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-8-revelation-chapter-1","changefreq":"weekly","video":[{"title":"S8:E1 - Chapter 1","description":"Simmons gets a visit from an old friend, who gets more than he bargained for; meanwhile the rest of the Reds deal with the newly-anointed deity of the desert.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-8-revelation-chapter-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b6e5f4-877b-45ac-975d-87941de43c92/sm/ep1191.jpg","duration":482,"publication_date":"2010-04-02T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-19","changefreq":"weekly","video":[{"title":"S7:E19 - Chapter 19","description":"The Valhalla squad continue their escape attempts while the Reds, Aliens and Caboose all chase after CT in a three-way race to get control of Epsilon.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b16eb1f-5771-4117-88e5-cf479d00552f/sm/ep931.jpg","duration":386,"publication_date":"2009-10-27T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-18","changefreq":"weekly","video":[{"title":"S7:E18 - Chapter 18","description":"Church learns that with great power, comes great responsibility... also a wicked left hook.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71a054c5-4876-4174-a3c2-6ac7499b8bea/sm/ep927.jpg","duration":283,"publication_date":"2009-10-20T02:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-conspiracy-weary","changefreq":"weekly","video":[{"title":"S1:E13 - Conspiracy Weary","description":"Matt exposes Joel to a whole list of Conspiracy Theories that tie in all of the crazy stuff that's been happening around the office.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-conspiracy-weary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee362011-4aa4-4e2a-a58d-cc114021bb99/sm/ep924.jpg","duration":527,"publication_date":"2009-10-17T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-17","changefreq":"weekly","video":[{"title":"S7:E17 - Chapter 17","description":"Things start to shake up on Sandtrap, while the Reds at Valhalla spring into action.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9219a102-a724-4a65-ac46-75d679ab39ca/sm/ep914.jpg","duration":259,"publication_date":"2009-10-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-16","changefreq":"weekly","video":[{"title":"S7:E16 - Chapter 16","description":"Church is having a little trouble with the \"out of the box\" experience.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40ef24b4-5cd2-46e0-982a-3c85b38218af/sm/ep898.jpg","duration":327,"publication_date":"2009-10-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-new-old-car","changefreq":"weekly","video":[{"title":"S1:E12 - New Old Car","description":"Jason shows Gus his totally authentic, completely retro new ride.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-new-old-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/603e4ec5-569b-44eb-8465-fc630495d980/sm/ep897.jpg","duration":261,"publication_date":"2009-10-03T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-15","changefreq":"weekly","video":[{"title":"S7:E15 - Chapter 15","description":"Epsilon Church takes charge of the escalating situation at Sandtrap, while the reds back at Valhalla have their hands full.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07e571ea-b81c-4443-90e4-9c2443cfba5f/sm/ep890.jpg","duration":334,"publication_date":"2009-09-29T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-chain-of-thought","changefreq":"weekly","video":[{"title":"S1:E19 - Chain of Thought","description":"Go inside the minds of Rooster Teeth and discover why nothing ever gets done around here.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-chain-of-thought","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de01e63c-9c14-4936-be7d-41a542121a10/sm/ep875.jpg","duration":256,"publication_date":"2009-09-24T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-14","changefreq":"weekly","video":[{"title":"S7:E14 - Chapter 14","description":"Simmons and Lopez try to hold their ground, while the desert team members find themselves in shifting sands.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/679545ae-78bc-4753-9985-e772f861a1ad/sm/ep873.jpg","duration":273,"publication_date":"2009-09-22T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-pongo-bonus-scene","changefreq":"weekly","video":[{"title":"S2:E4 - Pongo Bonus Scene","description":"Burnie and Geoff confront Joel when he makes some serious allegations about Pongo.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-pongo-bonus-scene","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45443109-7d17-4128-adf4-6a3c83246bd8/sm/ep870.jpg","duration":67,"publication_date":"2009-09-17T21:30:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-13","changefreq":"weekly","video":[{"title":"S7:E13 - Chapter 13","description":"Tucker brings the Reds up to speed. The Reds bring Tucker down to Earth.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e6c9e84-b348-4e34-a506-c8f8f08c6e34/sm/ep866.jpg","duration":326,"publication_date":"2009-09-15T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-pongo","changefreq":"weekly","video":[{"title":"S1:E18 - Pongo","description":"Burnie introduces the rest of the group to the new, slightly controversial company intern.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-pongo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/376b6d44-bb53-43d3-a2cc-958488c7bfa9/sm/ep864.jpg","duration":396,"publication_date":"2009-09-13T04:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-12","changefreq":"weekly","video":[{"title":"S7:E12 - Chapter 12","description":"Caboose's sneaky antics have aroused suspicion among the Desert dig team.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb24ae96-522d-47e5-98d3-a7aae9e2e172/sm/ep854.jpg","duration":254,"publication_date":"2009-09-08T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-secret-door","changefreq":"weekly","video":[{"title":"S1:E17 - Secret Door","description":"Gavino becomes very curious about a Door no one in the office wants him to open.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-secret-door","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e401aeff-fefe-4fe0-bf37-18ff5ffc7d75/sm/ep853.jpg","duration":341,"publication_date":"2009-09-06T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-11","changefreq":"weekly","video":[{"title":"S7:E11 - Chapter 11","description":"Caboose causes trouble for the Reds while Lopez causes motorcycles for Simmons.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01823fe0-aad7-4d83-b5b9-27ba250f6dfe/sm/ep845.jpg","duration":317,"publication_date":"2009-09-01T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-10","changefreq":"weekly","video":[{"title":"S7:E10 - Chapter 10","description":"The team discover more about their sandy new home.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2be3a82-abf0-45b8-b6ad-a9851a3bb825/sm/ep826.jpg","duration":263,"publication_date":"2009-08-25T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-blur","changefreq":"weekly","video":[{"title":"S1:E16 - Blur","description":"Matt explains his new technique for increasing the production value of the videos.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-blur","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d1b526c-4622-4d3a-9ba2-38ada85a1e73/sm/ep825.jpg","duration":146,"publication_date":"2009-08-23T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-9","changefreq":"weekly","video":[{"title":"S7:E9 - Chapter 9","description":"Sarge, Grif and Caboose finally meet the face behind the mysterious voice.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f802fdc-1e47-48fc-8cef-72be8aa8cdfe/sm/ep821.jpg","duration":291,"publication_date":"2009-08-18T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-behind-rt-shorts-dress-rehearsal","changefreq":"weekly","video":[{"title":"S1:E15 - Behind RT Shorts: Dress Rehearsal","description":"Behind the scenes of a failed RT short.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-behind-rt-shorts-dress-rehearsal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d33b2d2-633f-4ed4-81b0-b36adfa0af5b/sm/ep817.jpg","duration":323,"publication_date":"2009-08-15T01:03:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-8","changefreq":"weekly","video":[{"title":"S7:E8 - Chapter 8","description":"The Reds and Caboose navigate a delicate situation with the help of a mysterious stranger","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/859753c6-24c6-49bf-8812-f75ff37074c7/sm/ep814.jpg","duration":293,"publication_date":"2009-08-11T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-7","changefreq":"weekly","video":[{"title":"S7:E7 - Chapter 7","description":"The guys try not to get in over their heads as they set out on their latest mission.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1f11d79-904b-4610-bc1a-a2063cadf975/sm/ep805.jpg","duration":232,"publication_date":"2009-08-04T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-mixed-messages","changefreq":"weekly","video":[{"title":"S1:E14 - Mixed Messages","description":"Geoff receives some unexpected news from Gavino. And some more. And a little more after that.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-mixed-messages","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f9d6e72-a649-47be-bf91-e45e23bb8a25/sm/ep802.jpg","duration":171,"publication_date":"2009-08-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-6","changefreq":"weekly","video":[{"title":"S7:E6 - Chapter 6","description":"Caboose's project moves to the next level.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92613928-914b-4653-a9e1-96d4974a2701/sm/ep797.jpg","duration":301,"publication_date":"2009-07-28T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-hotel-buddies","changefreq":"weekly","video":[{"title":"S1:E13 - Hotel Buddies","description":"In San Diego, Joel and Matt share a room for the first time since college.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-hotel-buddies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99484f64-085b-40e1-bcbf-2affdbfe07c8/sm/ep798.jpg","duration":341,"publication_date":"2009-07-27T23:34:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-psa-fire-safety","changefreq":"weekly","video":[{"title":"S1:E23 - PSA: Fire Safety","description":"Sarge and Simmons give their best advice on how to deal with flammable situations.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-psa-fire-safety","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33cc8b91-c067-4bfa-b0c0-51d72b65d898/sm/ep789.jpg","duration":207,"publication_date":"2009-07-21T02:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-gratuities-are-appreciated","changefreq":"weekly","video":[{"title":"S1:E12 - Gratuities Are Appreciated","description":"Geoff and Burnie discuss a new revenue incentive program at the company.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-gratuities-are-appreciated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8361b8a7-f0af-4de1-97fc-55920877d16a/sm/ep788.jpg","duration":154,"publication_date":"2009-07-18T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-5","changefreq":"weekly","video":[{"title":"S7:E5 - Chapter 5","description":"Caboose looks for alternative solutions to his construction problems.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a331fa-f542-4d77-83be-65f880b9163b/sm/ep783.jpg","duration":287,"publication_date":"2009-07-14T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-warning-error","changefreq":"weekly","video":[{"title":"S1:E11 - Warning / Error","description":"Gus helps Joel with an epic computer malfunction.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-warning-error","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c84d4a5-c0a6-4121-b3af-1abd073cea89/sm/ep781.jpg","duration":282,"publication_date":"2009-07-11T12:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-4","changefreq":"weekly","video":[{"title":"S7:E4 - Chapter 4","description":"Donut fills in Caboose with loads of rock-hard info. Tons of hot backstory action with an explosive, yet happy ending. Rated E for Everyone.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34ed4717-55a8-4173-9c34-c62dcbbc5a7a/sm/ep767.jpg","duration":317,"publication_date":"2009-07-07T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-lunch-bunch","changefreq":"weekly","video":[{"title":"S1:E10 - Lunch Bunch","description":"Gus and Matt have a little coffee talk in the kitchen.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-lunch-bunch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eeb4f85b-f2d6-4860-ac13-73988cb016fc/sm/ep763.jpg","duration":168,"publication_date":"2009-07-04T04:59:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-3","changefreq":"weekly","video":[{"title":"S7:E3 - Chapter 3","description":"Caboose gets a visitor while the Reds look for their missing teammate.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f37c6750-82a5-41f4-8e08-4ec2c17512ba/sm/ep759.jpg","duration":294,"publication_date":"2009-06-30T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-crazy-dream","changefreq":"weekly","video":[{"title":"S1:E9 - Crazy Dream","description":"Geoff tells Joel about this totally crazy dream he had. I mean, like, super crazy.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-crazy-dream","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ea208ea-a154-4763-b4bd-4ce251e40be7/sm/ep756.jpg","duration":375,"publication_date":"2009-06-27T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-2","changefreq":"weekly","video":[{"title":"S7:E2 - Chapter 2","description":"Simmons uses the holo-room to continue his design work while Caboose continues his own mysterious project at Blue Base.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e820002e-5439-493e-9242-332148e0c94d/sm/ep752.jpg","duration":362,"publication_date":"2009-06-23T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-catch","changefreq":"weekly","video":[{"title":"S1:E8 - Catch","description":"Matt, Joel and Nathan share a game of catch and memories of their fathers...","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-catch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f706224-b1cc-4376-9704-993de61062c9/sm/ep746.jpg","duration":246,"publication_date":"2009-06-19T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-chapter-1","changefreq":"weekly","video":[{"title":"S7:E1 - Chapter 1","description":"Sarge tries to make contact with someone from blue base.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-chapter-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e844472b-094a-4cef-b630-c5100f4695c3/sm/ep738.jpg","duration":366,"publication_date":"2009-06-16T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-random-mandatory","changefreq":"weekly","video":[{"title":"S1:E7 - Random, Mandatory","description":"Burnie tries to explain to Geoff the importance of filling certain company requirements.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-random-mandatory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890edafa-8ccc-47ba-ad99-d0a29865943e/sm/ep736.jpg","duration":133,"publication_date":"2009-06-13T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-dev-cycle","changefreq":"weekly","video":[{"title":"S1:E6 - Dev Cycle","description":"Geoff tries to create his own video game starring an unlikely hero.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-dev-cycle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43b26930-b11a-4de1-82cb-83233bb13faf/sm/ep727.jpg","duration":261,"publication_date":"2009-06-06T00:11:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-saving-face","changefreq":"weekly","video":[{"title":"S1:E5 - Saving Face","description":"Burnie and Gus discuss the terrible state of the economy and try to figure out ways to save.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-saving-face","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2079725d-6a60-4a3a-8e6f-b852c70da0fa/sm/ep713.jpg","duration":132,"publication_date":"2009-05-28T00:16:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-102611","changefreq":"weekly","video":[{"title":"S1:E152 - SideScrollers Extended 10/26/11","description":"In the extra minutes after the camera's done rolling, the gang looks at hot American Gladiators.\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-102611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07d78b47-fa65-4b9d-966c-7de632d9bb36/sm/crush-cacre3copy.jpg","duration":387,"publication_date":"2011-10-25T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"two-birds-with-one-testicle\"","changefreq":"weekly","video":[{"title":"S1:E35 - SideScrollers - \"Two Birds With One Testicle\"","description":"It's the return of GAMEVEMBER! ...and Craig saying something terrible!\r\nAUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio102611.mp3 \r\nWatch the mentioned ScrewAttack videos NOW!\r\nScrewin' Around Every Monday - Friday 4:30 pm CST! - http://twitch.tv/screwattack\r\nZangief's Make You Strong! - http://bit.ly/twTQOq\r\nOut of the Box: Rayman Origins - http://bit.ly/uKPFBk\r\nREVIEW: Batman: Arkham Asylum - http://bit.ly/rCeFoL\r\nBe sure to \"Like\" our video, Subscribe, and share around!\r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nSee more gaming goodness at www.ScrewAttack.com!\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"two-birds-with-one-testicle\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef710f4e-05da-40e5-ac60-68cf48870fa7/sm/testicle3.png","duration":3094,"publication_date":"2011-10-25T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-diddy-kong-racing","changefreq":"weekly","video":[{"title":"S1:E342 - Video Game Vault - Diddy Kong Racing","description":"Although a true blast to play, Diddy Kong Racing only faced competition from one other game...","player_loc":"https://roosterteeth.com/embed/video-game-vault-diddy-kong-racing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":150,"publication_date":"2011-10-25T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-@-the-arcade-auction","changefreq":"weekly","video":[{"title":"S1:E151 - ScrewAttack @ The Arcade Auction","description":"You never know WHAT you're going to run into at an arcade auction, so it's best to not get your hopes up too high. Despite our low expectations, we may have found our \"diamond in the rough.\"","player_loc":"https://roosterteeth.com/embed/screwattack-@-the-arcade-auction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":240,"publication_date":"2011-10-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-driver","changefreq":"weekly","video":[{"title":"S1:E341 - Video Game Vault - Driver","description":"Four open-world cities only means four easily-angered police squads.","player_loc":"https://roosterteeth.com/embed/video-game-vault-driver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":131,"publication_date":"2011-10-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-zangief-make-you-strong","changefreq":"weekly","video":[{"title":"S1:E136 - Clip of the Week - Zangief Make You Strong!","description":"Hulk Hogan's making a Kinect game, but a certain Soviet Russian has already beaten him to the punch... and the double lariat... and the spinning pile driver...\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\nBut don't follow Nick. Don't do it. Unless you want to send him Clip of the Week suggestions.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-zangief-make-you-strong","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6caf0e16-0d1b-41f6-8a8b-a82c9cd040f2/sm/CotW_Chazgief.png","duration":131,"publication_date":"2011-10-21T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102111","changefreq":"weekly","video":[{"title":"S1:E42 - Hard News 10/21/11","description":"Today on Hard news the 3DS gets some updates, get the Mass Effect 3 demo early, and did the Brits leak the Wii U's release date?\r\n3DS Update - http://www.screwattack.com/news/weve-got-3ds-firmware-update-highlights\r\nMass Effect 3 demo - http://www.screwattack.com/news/battlefield-3-buyers-get-mass-effect-3-demo\r\nWii U date leak - http://www.screwattack.com/news/british-store-dates-wii-u-games-july-20th\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-102111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da37664f-baee-4b04-80f2-1cb55cdc831a/sm/Battle.png","duration":111,"publication_date":"2011-10-21T13:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2-weeks-until-the-iron-man-of-gaming","changefreq":"weekly","video":[{"title":"S1:E150 - 2 Weeks Until the Iron-Man of Gaming!","description":"The ultimate tournament to find the king of gamers is just around the corner! Be at Nekocon this November to prove that YOU are the Iron-Man of Gaming!\r\nSee the rules and info here!\r\n\r\nClick here to register for the Iron-Man at Nekocon.com!","player_loc":"https://roosterteeth.com/embed/2-weeks-until-the-iron-man-of-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f03d4e81-a33f-4a1c-9a59-6b56aab39621/sm/Thumb_IMoG.jpg","duration":57,"publication_date":"2011-10-21T09:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-rayman-origins","changefreq":"weekly","video":[{"title":"S1:E5 - Out of the Box - Rayman Origins","description":"This time on Out of the Box, Craig, Ben, Bryan, and Jared gather round the TV to check out Rayman Origins. Is it everything they want in a Rayman game?","player_loc":"https://roosterteeth.com/embed/out-of-the-box-rayman-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee0e4262-d9b4-474c-bcf1-209bec831f60/sm/url.jpg","duration":2006,"publication_date":"2011-10-20T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-102011","changefreq":"weekly","video":[{"title":"S1:E41 - Hard News 10/20/11","description":"Today on Hard News EA pushes for positive reviews, the next generation is getting closer, and what's the Final Fantasy rumor mill churning out this time?\r\n*UPDATE* - Localized Final Fantasy Type-0 rumor is only a rumor and Photoshop job.\r\nNext gen systems - http://www.screwattack.com/news/next-gen-sony-and-microsoft-console-rumors-heat\r\nFinal Fantasy Type-0 Localized - http://playstationlifestyle.net/2011/10/20/voice-actor-hints-at-localization-of-final-fantasy-type-0/\r\nEA pushing for positive reviews - http://www.screwattack.com/news/ea-pressuring-reviewers-over-bf3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-102011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d0533cd-8f3a-4c7b-8fff-03d03ea93e44/sm/feature-final-fantasy-type-0.jpg","duration":137,"publication_date":"2011-10-20T15:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101911","changefreq":"weekly","video":[{"title":"S1:E40 - Hard News 10/19/11","description":"Today on Hard News the PS Vita has a date and price, Arkham City is having DLC problems, and EA Sports is coming with the blitz.\r\nPS Vita - http://www.screwattack.com/news/vita-given-official-release-date\r\nBatman Arkham City DLC - http://www.screwattack.com/news/update-new-arkham-city-catwoman-code-fustercluck\r\nNFL Blitz Revival - http://www.screwattack.com/news/ea-reviving-blitz-franchise\r\nPat the NES Punk's Charity Marathon - www.NESMarathon.com\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-101911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87d26d9c-bd04-4c96-93f0-16ec77ea46f8/sm/Gauntlet_638_0_0.jpg","duration":136,"publication_date":"2011-10-19T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-101911","changefreq":"weekly","video":[{"title":"S1:E149 - SideScrollers Extended 10/19/11","description":" With all that super hero talk, the guys talk about creating their own super hero personalities.\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here!","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-101911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":646,"publication_date":"2011-10-19T12:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"dwarf-tossing\"","changefreq":"weekly","video":[{"title":"S1:E34 - SideScrollers - \"Dwarf Tossing\"","description":" There's an epidemic spreading across America... and Craig doesn't understand it. There's also talk about tossing dwarves!\r\nWatch the mentioned ScrewAttack videos NOW!\r\nScrewin' Around Every Monday - Friday 4:30 pm CST! - http://twitch.tv/screwattack\r\nFun with Cabela's - http://bit.ly/qq7FSb\r\nClip of the Week - S.C.A.M. - http://bit.ly/psRJnX\r\nScrewAttack Grants Hardcore Zach's Wish - http://bit.ly/qACUnF\r\nDEATH BATTLE Master Chief vs Doomguy - http://bit.ly/qQ7PUF\r\nREVIEW Dark Souls - http://bit.ly/nmUgbA\r\nBe sure to \"Like\" our video, Subscribe, and share around!\r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nSee more gaming goodness at www.ScrewAttack.com!\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"dwarf-tossing\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d32198b8-4d63-4aee-9e25-300012a0305d/sm/angle-grinder-man-1.jpg","duration":2499,"publication_date":"2011-10-19T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-sidekicks","changefreq":"weekly","video":[{"title":"S1:E58 - Top 10 Sidekicks","description":"It's about time for sidekicks everywhere to stop living in the shadows... these are the ten best!","player_loc":"https://roosterteeth.com/embed/top-10-sidekicks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/f1b21dda-0279-4f12-b3a0-117fc98ffc6d.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":455,"publication_date":"2011-10-19T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101811","changefreq":"weekly","video":[{"title":"S1:E39 - Hard News 10/18/11","description":"Today on Hard News Ezio could be sneaking into Soul Calibur 5, Notch may beat Bethesda in court, and Uncharted 3 gets a pass.\r\nEzio in Soul Cal 5 - http://www.screwattack.com/news/rumor-someone-mixed-asscreed-soulcal\r\nNotch gets an injunction - http://www.screwattack.com/news/team-mojang-will-get-keep-their-scrolls\r\nUncharted 3 Fortune Hunters Club - http://www.screwattack.com/news/uncharted-3-fortune-hunters-club-savings\r\nFollow us on Twitter and like us on Facebook\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-101811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d840a5be-fe16-46f8-8232-ed46be862235/sm/ezioinsoulcalibur5_0.jpg","duration":115,"publication_date":"2011-10-18T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/master-chief-vs-doomguy-death-battle","changefreq":"weekly","video":[{"title":"S1:E18 - Master Chief VS Doomguy","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/master-chief-vs-doomguy-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aa9e9fe-17c9-4c2a-aded-7723700f7fca/sm/video_thumbnail_79028.jpg","duration":706,"publication_date":"2011-10-17T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101711","changefreq":"weekly","video":[{"title":"S1:E38 - Hard News 10/17/11","description":"Today on Hard News one Sonic gets a price drop while another gets a demo, a new overpowered mode in Ultimate Marvel vs Capcom 3, and it's not the zombies Project Zomboid has to worry about.\r\nSonic 4 Price Cut - http://www.screwattack.com/news/sonic-4-receives-permanent-price-drop\r\nSonic Generations Demo - http://www.screwattack.com/news/2nd-sonic-generations-demo-confirmed\r\nUMvC 3's Heroes and Heralds - http://www.screwattack.com/news/fight-galactus-minions-ultimate-marvel-vs-capcom-3s-heroes-vs-heralds-dlc\r\nProject Zomboid Robbed - http://www.screwattack.com/news/thieves-kick-project-zomboid-devs-balls\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-101711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f252918a-2cf6-43bd-bc42-9016ab3d8ec9/sm/Project-Zomboid-627x246_0.jpg","duration":130,"publication_date":"2011-10-17T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-the-perfect-s-c-a-m","changefreq":"weekly","video":[{"title":"S1:E148 - [Advantage Content] Clip of the Week Outtakes - The Perfect S.C.A.M.","description":"Don't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here.\r\nGoofy stuff happens when shooting pretty much any ScrewAttack video. This, however, is the first time we've ever encountered sharks in space.\r\nSee the original Clip of the Week here.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-the-perfect-s-c-a-m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":270,"publication_date":"2011-10-17T01:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-gaming-2011-game-6-announcement","changefreq":"weekly","video":[{"title":"S1:E147 - Iron-Man of Gaming 2011 Game #6 Announcement","description":"With just a few weeks to go before the event, it's time to announce the 6th game in the 2011 Iron-Man of Gaming! We'll see you in Virginia!","player_loc":"https://roosterteeth.com/embed/iron-man-of-gaming-2011-game-6-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":71,"publication_date":"2011-10-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-perfect-s-c-a-m","changefreq":"weekly","video":[{"title":"S1:E135 - Clip of the Week - The Perfect S.C.A.M.","description":"Against all odds, one indie game will try to shatter pre-order records during a month packed with AAA releases. The $1 price tag sounds nice... unless they don't hit their goal in which case you would need another $30. Or... maybe that was the plan all along...\r\nWatch the full Afterfall: InSanity pre-order announcement here.\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\nBut don't follow Nick. Don't do it. Unless you want to send him Clip of the Week suggestions.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-perfect-s-c-a-m","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83a74627-cfa3-445e-8b1a-a1e610f165e7/sm/IMAGE.png","duration":192,"publication_date":"2011-10-14T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101411","changefreq":"weekly","video":[{"title":"S1:E37 - Hard News 10/14/11","description":"Today on Hard News how Square's gonna get people to play Final Fantasy 14, Captain Titus' war may be over, and what's Gamestop up to this time?\r\nFinal Fantasy 14 Update - http://www.screwattack.com/news/ffxiv-gets-major-overhaul-ps3-version-announced\r\nSpace Marine sequel - http://www.screwattack.com/news/thq-not-sure-theres-room-space-marine\r\nGamestop's free passes - http://www.screwattack.com/news/catwoman-cozying-gamestop\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-101411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99f682c5-a258-40e7-8dc5-6f55efec1a88/sm/Warhammer-Space-Marine.jpg","duration":115,"publication_date":"2011-10-14T15:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-with-cabelas","changefreq":"weekly","video":[{"title":"S1:E146 - Fun with Cabela's","description":"The latest Cabelas games are coming and so Activision thought it would be a good idea to send a truck on a national tour promoting the game. We thought it'd be a good idea to go have a little fun with that truck.","player_loc":"https://roosterteeth.com/embed/fun-with-cabelas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88951d59-8d9b-4536-8995-b8e0b062e1a6/sm/GroupShot.png","duration":269,"publication_date":"2011-10-13T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101311","changefreq":"weekly","video":[{"title":"S1:E36 - Hard News 10/13/11","description":"Today on Hard News Shadowrun comes to a browser near you, Men in Black is getting a game, and what's Capcom trying to say about Mega Man?\r\nNew Shadowrun - http://www.screwattack.com/news/new-shadowrun-goes-web-based\r\nMen in Black game - http://www.screwattack.com/news/new-mib-game-announced\r\nMega Man in Ultimate MvC 3 - http://www.screwattack.com/news/exclusive-mega-man-not-dead\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-101311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26d65808-3066-4404-bd62-775cea2ed783/sm/Untitled-3_0.jpg","duration":133,"publication_date":"2011-10-13T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-grants-a-wish-hardcore-zachs-hq-visit","changefreq":"weekly","video":[{"title":"S1:E145 - ScrewAttack Grants A Wish - Hardcore Zach's HQ Visit","description":"Not so long ago, we received a message from the Children's Wish Foundation of Canada saying a certain someone really wanted to come hang out with us. We couldn't resist throwing a party for our new friend Hardcore Zach. Best. Day. Ever.\r\nWatch Zach and the gang Screwin' Around with random games here!\r\nThanks so much to Children's Wish, to Zach, and to his family!  You guys gave us all a day we'll never forget!","player_loc":"https://roosterteeth.com/embed/screwattack-grants-a-wish-hardcore-zachs-hq-visit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":297,"publication_date":"2011-10-12T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"b*tch-is-crazy-edition\"","changefreq":"weekly","video":[{"title":"S1:E33 - SideScrollers - \"B*tch is Crazy Edition\"","description":"On the site last week, you may have noticed a cool dude named Zach at the HQ. We talk about why he was here and our time with him, along with a newsdesk filled with crazy women.\r\nWatch the mentioned ScrewAttack videos NOW!\r\nTop Ten Space Marines! - http://bit.ly/qqfbyp\r\nReview - RAGE - http://bit.ly/oDRv2w\r\nBe sure to \"Like\" our video, Subscribe, and share around!\r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nSee more gaming goodness at www.ScrewAttack.com!\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"b*tch-is-crazy-edition\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e590c52d-0caa-461d-82f4-40149907fad3/sm/crazy.jpg","duration":2775,"publication_date":"2011-10-11T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-101211","changefreq":"weekly","video":[{"title":"S1:E144 - SideScrollers Extended 10/12/11","description":"Find out what Craig wanted to say for the birthday challenge, along with chat about Screwtober.\r\n Don't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-101211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":589,"publication_date":"2011-10-11T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-old-cotw-compilation-1","changefreq":"weekly","video":[{"title":"S1:E143 - [Advantage Content] Clip of the Week Outtakes - Old CotW Compilation #1","description":"Don't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage\r\nStuff from Clip of the Weeks past has finally resurfaced for your entertainment. Now watch it so Nick can finally delete this stuff off of his hard drive!\r\nWatch the original CotWs\r\nI Love Me Some Deadpool\r\nBowser's Lost\r\nCareful What You Wish For","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-old-cotw-compilation-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":174,"publication_date":"2011-10-11T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101111","changefreq":"weekly","video":[{"title":"S1:E34 - Hard News 10/11/11","description":"Today on Hard News save the galaxy without Shepard, pay for Sony's shortcomings, and what you get if you get Arkham City early.\r\nMass Effect 3 Multiplayer - http://www.screwattack.com/news/mass-effect-3-co-op-will-not-feature-commander-shepard\r\nVita/UMD compatability - http://www.screwattack.com/news/insider-leaks-vitaumd-compatibility-info\r\nArkham City Pre-Order Bonus - http://www.screwattack.com/news/batman-dlc-dated-and-priced\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-101111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebb47cc2-c63f-486d-9e52-fa0fbc14f2cf/sm/hw3WE.png","duration":134,"publication_date":"2011-10-11T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-101011","changefreq":"weekly","video":[{"title":"S1:E33 - Hard News 10/10/11","description":"Today on Hard News Qwikster isn't happening, Leisure Suit Larry visits the update tailors, and Bioware confirms a big rumor.\r\nLeisure Suit Larry remakes - http://www.screwattack.com/news/leisure-suit-larry-remake-works\r\nQwikster not happening - http://www.screwattack.com/news/goodbye-qwikster-we-hardly-knew-thee\r\nMass Effect 3 Multiplayer - http://www.screwattack.com/news/updated-mass-effect-3-multiplayer-pass\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-101011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad53edd3-c191-4e28-91cf-36d797a0db53/sm/bloglllhottubega.jpg","duration":121,"publication_date":"2011-10-10T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-more-accurate-battlefield-3-trailer","changefreq":"weekly","video":[{"title":"S1:E134 - Clip of the Week - The More Accurate Battlefield 3 Trailer","description":"With several months of hype behind it, Battlefield 3 is poised to compete with CoD for sales. It's trailers such as this one, however, that made the glitchy open beta all the more shocking. And hilarious.\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\nBut don't follow Nick. Don't do it. Unless you want to send him Clip of the Week suggestions.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-more-accurate-battlefield-3-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72d00124-0a1c-4732-a129-39b8b43cb542/sm/bf3-glitch.jpg","duration":138,"publication_date":"2011-10-07T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100711","changefreq":"weekly","video":[{"title":"S1:E32 - Hard News 10/07/11","description":"Today on Hard News Team Bondi's hole gets deeper, Farmville could be leaving computer screens for the silver screen, and Dinobots are on the way.\r\nFarmville movie - http://www.screwattack.com/news/toy-story-writers-rumored-be-doing-farmville-movie\r\nTeam Bondi debts - http://www.screwattack.com/news/team-bondi-owes-dev-team-nearly-14-million\r\nFall of Cybertron - http://www.screwattack.com/news/fact-dinosaurs-exist-cybertron\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-100711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45a158cc-da43-49f2-af47-b10673a422ae/sm/farmville1_1.jpg","duration":113,"publication_date":"2011-10-07T15:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100611","changefreq":"weekly","video":[{"title":"S1:E31 - Hard News 10/06/11","description":"Today on Hard News Duke is coming with DLC, Gran Turismo 5 gets a tune up and has the Halo movie respawned?\r\nDuke Nukem Forever DLC - http://www.screwattack.com/news/duke-nukem-forever-dlc-parody-pack\r\nHalo movie - http://www.screwattack.com/news/spielberg-and-dreamworks-working-halo-movie\r\nGT5 DLC - http://www.screwattack.com/news/gran-turismo-5-gets-spec-20-and-dlc\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/pro.jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-100611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52cb9c14-66e1-4943-933d-1924fc0d4744/sm/SteveApple.jpg","duration":123,"publication_date":"2011-10-06T14:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-nba-jam-on-fire-edition","changefreq":"weekly","video":[{"title":"S1:E4 - Out of the Box - NBA Jam: On Fire Edition","description":" It is ON as Ben and Lauren square off in a battle of NBA Jam skills... oh, and they give you their first impressions as well while Craig gushes over his favorite game right now.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-nba-jam-on-fire-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70800a47-e91f-4152-9066-4e1e6a611694/sm/OotBJamRot.jpg","duration":1770,"publication_date":"2011-10-05T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"dont-rationalize-it\"","changefreq":"weekly","video":[{"title":"S1:E32 - SideScrollers - \"Don't Rationalize It\"","description":"The gang discusses some of the best gaming parties of their past... before Craig's mind takes the Newsdesk too far. Again.\r\nAUDIO LINK! - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio100511.mp3\r\nScrewin' Around, everyday at 4:30 pm CST! www.twitch.tv/screwattack\r\nUse our forums to post Middle Topic Suggestions and Forum Questions! www.screwattack.com/forums\r\nAre you an Advantage Member? Check out this week's Extended Cut here.\r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nCheck out our Twitter feeds! \r\nCraig - http://www.twitter.com/screwattack\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"dont-rationalize-it\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/794ea9e8-9436-4f52-ac57-3c5f244c4b5b/sm/Chef-Gordon-Ramsay.jpg","duration":2425,"publication_date":"2011-10-04T21:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-sidescrollers-extended-100511","changefreq":"weekly","video":[{"title":"S1:E142 - [Advantage Content] SideScrollers Extended 10/05/11","description":" Simple question today: whatcha been playin' recently?\r\nDon't see the video? No worries! You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage","player_loc":"https://roosterteeth.com/embed/advantage-content-sidescrollers-extended-100511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5108405-ab31-471d-bcbc-19853ae90045/sm/hacker.jpg","duration":686,"publication_date":"2011-10-04T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100411","changefreq":"weekly","video":[{"title":"S1:E29 - Hard News 10/04/11","description":"Today on Hard News the gears keep on turning, you'll need to pass everything to play Sony games, and PC gamers are raging on Rage.\r\nGears of War 3 DLC - http://www.screwattack.com/news/gears-war-3-has-horde-mode-dlc\r\nSony Online Passes - http://www.screwattack.com/news/psn-online-passes-are-future-sony-multiplayer\r\nRage PC Problems - http://www.screwattack.com/news/rage-mega-textures-dont-play-well-pc\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-100411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b17e5b0-c9a3-4858-92d2-f82b86f4b689/sm/RageBoxArt1.jpg","duration":123,"publication_date":"2011-10-04T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-100311","changefreq":"weekly","video":[{"title":"S1:E28 - Hard News 10/03/11","description":"Today on Hard News what you can get only on PSN, Mass Effect 3's got multiplayer, and what you can get with Final Fantasy XIII-2\r\nOnly on PSN Games - http://www.screwattack.com/news/g1lunchpunch-sony-starts-new-only-psn-program\r\nMass Effect 3 Multiplayer - http://www.screwattack.com/news/spotted-mass-effect-3-multiplayer-pass\r\nFinal Fantasy XIII-2 Bonuses - http://www.screwattack.com/news/final-fantasy-xiii-2-dlc-detailed\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-100311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66194075-318e-4e25-adf0-1183d0988126/sm/godhand_warning.jpg","duration":127,"publication_date":"2011-10-03T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-supremacy-mma-and-fifa-12","changefreq":"weekly","video":[{"title":"S1:E3 - Out of the Box - Supremacy MMA and FIFA 12","description":"This time we quick hit \"the Blitz of MMA\" and a EA's \"other Madden\", FIFA '12. You may not be into sports but you may be into broken faces and overly intense soccer games so this could be a fun watch.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-supremacy-mma-and-fifa-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2358bfcc-7ec0-44e7-80e9-007de12959f2/sm/supremacymma_02.jpg","duration":1402,"publication_date":"2011-10-02T23:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-clip-of-the-week-outtakes-chad-has-a-better-idea","changefreq":"weekly","video":[{"title":"S1:E141 - [Advantage Content] Clip of the Week Outtakes - Chad Has a Better Idea","description":"Nick is afraid of heights, Chad takes a brutal treadmill fall, and Lauren, of course, gets slapped in the face. Haven't seen the original episode? Watch it here.\r\nCan't see the video? Then you're not an Advantage Member. Don't worry, you can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here.","player_loc":"https://roosterteeth.com/embed/advantage-content-clip-of-the-week-outtakes-chad-has-a-better-idea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":324,"publication_date":"2011-10-02T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-chad-has-a-better-idea","changefreq":"weekly","video":[{"title":"S1:E133 - Clip of the Week - Chad Has a Better Idea","description":"Some companies just don't advertise the way they should. That's why Chad's here to give SLAP Energy Drink the commercials they didn't ask for. Then again, maybe there's a good reason that stuff is only 98 cents per can...\r\nAre you an Advantage Member? There's Advantage Content related to this content that you can find here! Not an Advantage Member? Don't worry, you can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here.\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\n\tBut don't follow Nick. Don't do it. Unless you want to send him Clip of the Week suggestions.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-chad-has-a-better-idea","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":121,"publication_date":"2011-09-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-093011","changefreq":"weekly","video":[{"title":"S1:E27 - Hard News 09/30/11","description":"Today on Hard News a new MK movie, the PS Vita has some limits, and robots can keep dreaming of cake.\r\nPortal 2 DLC - http://www.screwattack.com/news/free-portal-2-dlc-be-released-oct-4th\r\nPS Vita Download Limits - http://www.screwattack.com/news/ps-vita-limits-downloads-20mb\r\nMortal Kombat Movie - http://www.screwattack.com/news/g1lunchpunch-mortal-kombat-set-return-big-screen\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA\r\n ","player_loc":"https://roosterteeth.com/embed/hard-news-093011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b371e54-7d46-4556-99bc-235d84d24901/sm/portal2_robots.jpg","duration":127,"publication_date":"2011-09-30T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hanks-zombie-apocalypse-survival-guide-3","changefreq":"weekly","video":[{"title":"S1:E140 - Hank's Zombie Apocalypse Survival Guide 3","description":" Running from zombies and your friend is slowing you down? Don't worry. Hank's got a plan to get you through.","player_loc":"https://roosterteeth.com/embed/hanks-zombie-apocalypse-survival-guide-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":129,"publication_date":"2011-09-30T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-battlefield-3-beta","changefreq":"weekly","video":[{"title":"S1:E2 - Out of the Box - Battlefield 3 Beta","description":"This time on Out of the Box the guys take a raw look at the beta of the proclaimed \"Call of Duty Killer\", Battlefield 3. Does this game REALLY compare to Call of Duty in the first place?\r\nWhat do you think of this \"set up and play\" format?  Do you enjoy getting our genuine first impression?  We'd love your feedback.","player_loc":"https://roosterteeth.com/embed/out-of-the-box-battlefield-3-beta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dde17a0-4139-43ad-adc0-d57481d12748/sm/battlefield3postrerm.jpg","duration":2525,"publication_date":"2011-09-29T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092911","changefreq":"weekly","video":[{"title":"S1:E26 - Hard News 09/29/11","description":"Today on Hard News the Future is changing, I Am Alive is actually coming out, and what Persona 2 doesn't have in America.\r\nPersona 2 absentees - http://www.screwattack.com/news/persona-2-remake-commits-not-so-innocent-sin\r\nFuture Media changing formats - http://www.screwattack.com/news/does-nintendo-power-have-future\r\nI Am Alive is coming - http://www.screwattack.com/news/i-am-alive-coming-xbox-live-and-psn\r\nDesign our new set! - http://www.screwattack.com/news/make-your-mark-screwattack-design-hard-news-set-contest\r\nFollow us on Twitter and like us on Facebook! \r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b88dae40-1303-46d0-a2de-624b62faa694/sm/110580_0_org.jpg","duration":138,"publication_date":"2011-09-29T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-show-join-us-live-for-screwin-around","changefreq":"weekly","video":[{"title":"S1:E139 - New Show! Join Us LIVE for \"Screwin' Around!\"","description":"You're invited to a crazy hour of games,  fun, and random awesomeness... every day! Join us weekdays at 4:30 pm CST for Screwin' Around! We'll be taking some time off every day just to hang out with you and mess around with all sorts of games, old and new. Whether you want to ask some questions, get in on a discussion, check out some games, or just chill with us and other g1s, Screwin' Around has all the bases covered!\r\nCome hang with us on Screwin' Around Monday through Friday, starting this Monday (October 3rd) at 4:30 pm CST!  \r\nNeed a time zone convertor to figure out when 4:30 CST is for you?  Check out this time zone converter.","player_loc":"https://roosterteeth.com/embed/new-show-join-us-live-for-screwin-around","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":43,"publication_date":"2011-09-28T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092811","changefreq":"weekly","video":[{"title":"S1:E25 - Hard News 09/28/11","description":"Today on Hard News get shanked again, look forward to disappointment, and LA Noire closes the case on PC.\r\nSyndicate Release Date - http://www.screwattack.com/news/syndicate-gets-release-date\r\nShank 2 is coming - http://www.screwattack.com/news/ea-reveals-shank-2-vegas\r\nLA Noire PC Complete Edition - http://www.screwattack.com/news/la-noire-closes-your-pc\r\nExclusive NBA Jam On Fire Edition screenshots - http://www.screwattack.com/news/boomshakalaka-these-exclusive-nba-jam-screens-are-fire\r\nFollow us on Twitter and like us on Facebook\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/pro.jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeabc403-678f-4587-97a2-92a9543cc61c/sm/PandaVSNinjas2_0_0.jpg","duration":62,"publication_date":"2011-09-28T16:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-blast-corps","changefreq":"weekly","video":[{"title":"S1:E340 - Video Game Vault - Blast Corps.","description":"Save the world by DESTROYING EVERYTHING!!","player_loc":"https://roosterteeth.com/embed/video-game-vault-blast-corps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":147,"publication_date":"2011-09-28T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-\"his-sauce-in-jail\"","changefreq":"weekly","video":[{"title":"S1:E31 - SideScrollers - \"His Sauce in Jail\" ","description":"Craig is PISSED. Super pissed. Why is he so angry? He'll tell you, and exactly what he will do to the person that has angered him.\r\nAre you an Advantage Member?  Check out this week's Extended Cut here.\r\nWatch the ScrewAttack Exclusive NBA Jam Screens!! - http://bit.ly/p2RzqH\r\nBe sure to \"Like\" our video, Subscribe, and share around!\r\nWant to ask us a video question? Post it as a Response to this episode of SideScrollers!\r\nSee more gaming goodness at www.ScrewAttack.com!\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/StutteringCraig\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-\"his-sauce-in-jail\"","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd0c54c5-3591-4b5a-bea5-917f31ab1c7e/sm/friday13gameover.png","duration":3018,"publication_date":"2011-09-28T06:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-092811","changefreq":"weekly","video":[{"title":"S1:E138 - SideScrollers Extended Cut - 09/28/11","description":"Made just for Advantage Members, in this Extended Cut you'll learn why Jared's never had a bad fast food experience... but probably not for the reason you would think.\r\nDon't see the video?  No worried.  You can upgrade an Advantage Membership and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-092811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc640d9a-93cd-4d91-9202-70069987778b/sm/MES3687.jpg","duration":664,"publication_date":"2011-09-28T05:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092711","changefreq":"weekly","video":[{"title":"S1:E24 - Hard News 09/27/11","description":"Today on Hard News do the Dew for double XP, Dead Space 3 is leaking out, and why did they stop working on Duke Nukem Reloaded?\r\nCoD XP from Dew and Doritos - http://www.screwattack.com/news/cod-mw3-encourages-me-be-fat\r\nDead Space 3 - http://www.screwattack.com/news/more-dead-space-3-rumors-emerge\r\nDuke Nukem Reloaded Shelved - http://www.screwattack.com/news/duke-nukem-3d-reloaded-put-hold-waiting-gearbox\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/pro.jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dec6ecd-2d38-47db-a033-73ad44fad2ef/sm/Wallpapersmall.jpg","duration":171,"publication_date":"2011-09-27T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-gaming-2011-game-5-announcement","changefreq":"weekly","video":[{"title":"S1:E137 - Iron-Man of Gaming 2011 Game #5 Announcement","description":"The Iron-Man of Gaming is known for crowning the best gamer in the world and with this next game we're going to push it to the max. We promise no tournament of this stature has EVER competed on this game.","player_loc":"https://roosterteeth.com/embed/iron-man-of-gaming-2011-game-5-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/419b3f81-594d-4d0b-bbfc-2bdbaf020e71/sm/IMoG5.jpg","duration":64,"publication_date":"2011-09-26T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/advantage-content-sword-vs-gun","changefreq":"weekly","video":[{"title":"S1:E136 - Advantage Content - Sword vs Gun","description":"One of the last things the guys did before we moved offices was play sword vs guns. So this is what they do when Craig's not around.  Just some of the random tomfoolery that happens on a day-to-day basis.\r\nCan't see the video?  Not an Advantage Member? You can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage","player_loc":"https://roosterteeth.com/embed/advantage-content-sword-vs-gun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":25,"publication_date":"2011-09-26T22:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092611","changefreq":"weekly","video":[{"title":"S1:E23 - Hard News 09/26/11","description":"Today on Hard News class is out at EA, how you can get Uncharted 3 early, and Dark Souls is a little less collectible.\r\nEA Origin No Class Action - http://www.screwattack.com/news/ea-origin-terms-also-forbid-class-action-suits\r\nUncharted 3 - http://www.screwattack.com/news/play-uncharted-3-amc-and-get-copy-one-week-early\r\nDark Souls downgrades collectors edition - http://www.screwattack.com/news/dark-souls-ce-will-get-downgraded\r\nDesign the new Hard News! - http://www.screwattack.com/news/make-your-mark-screwattack-design-hard-news-set-contest\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed59e83a-a93a-45b2-8bd2-32759ab7a161/sm/ea_origin.jpeg","duration":156,"publication_date":"2011-09-26T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/out-of-the-box-gears-of-war-3","changefreq":"weekly","video":[{"title":"S1:E1 - Out of the Box - Gears of War 3","description":"This time on Out of the Box, Craig and Bryan join the COG for one last battle in Gears of War 3. Is this really the same old game or does it gear up for an epic finish?\r\n \r\nLike what you see? Get Gears of War 3 here!\r\n \r\nHave a game you want to see on Out of the Box? Let us know in the comments!","player_loc":"https://roosterteeth.com/embed/out-of-the-box-gears-of-war-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/715cda8b-0586-4bfc-b3bc-58505024d374/sm/news_e3_gears_of_war_3_new_screens-9491.jpg","duration":962,"publication_date":"2011-09-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-random-live-show-archive","changefreq":"weekly","video":[{"title":"S1:E135 - The Random Live Show Archive","description":"This past Friday Craig and Jared did a live show to answer some questions you guys have been wondering about and to announce a new show coming to ScrewAttack called \"Screwin' Around\". This is only the first 10 minutes of the hour-long stream but hopefully you'll get the gist of what's to come - hanging out with you!","player_loc":"https://roosterteeth.com/embed/the-random-live-show-archive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":590,"publication_date":"2011-09-25T16:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-3-million-dollar-ad","changefreq":"weekly","video":[{"title":"S1:E132 - Clip of the Week - The 3 Million Dollar Ad","description":"Some games need only a brief montage on TV to sell millions.  Final Fantasy IV wanted to sell even more, so they went all-out with the most insane advertisement ever conceived.  Thanks, g1_JP for the suggestion!\r\nFor Advantage members, there are outtakes for this episode!  Watch the reel here.\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\nBut don't follow Nick. Don't do it.  Unless you want to send him Clip of the Week suggestions.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-3-million-dollar-ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":116,"publication_date":"2011-09-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092311","changefreq":"weekly","video":[{"title":"S1:E22 - Hard News 09/23/11","description":"Today on Hard News Diablo 3 will be late, DotA 2 will be early, and Dark Souls won't be hard just because of the gameplay\r\nDiablo 3 - http://www.screwattack.com/news/diablo-3-delay-means-more-time-work-your-beard\r\nDotA 2 - http://www.screwattack.com/news/dota-2-home-stretch\r\nDark Souls - http://www.screwattack.com/news/dark-souls-rough-start\r\nDesign our new set! - http://bit.ly/qlSapq\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e48e71-b4aa-4b78-86bc-12c91bdd4236/sm/diablo3screen.jpg","duration":134,"publication_date":"2011-09-23T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092211","changefreq":"weekly","video":[{"title":"S1:E21 - Hard News 09/22/11","description":"Today on Hard News PS3 is going to Karkand first, Minecraft wants feedback, and who knows when The Old Republic is coming out.\r\nBattlfield 3 DLC - http://www.screwattack.com/news/battlefield-3-gets-unexpected-exclusive\r\nMineCraft 1.9 - http://www.screwattack.com/news/update-minecraft-19-pre-release-has-dropped\r\nThe Old Republic release date - http://www.screwattack.com/news/ea-dancing-around-old-republics-release-window\r\nSet Design Contest\r\nLike us on Facebook and follow us on Twitter!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/484ab4cd-f3c7-4a44-ac40-3d7c22afba1e/sm/Minecraft.jpg","duration":153,"publication_date":"2011-09-22T14:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lost-street-fighter","changefreq":"weekly","video":[{"title":"S1:E134 - The Lost Street Fighter","description":"Street Fighter is known for its wide variety of characters but not all of them make the cut to the final game. For the first time ever, see the Street Fighter 4 character that didn't quite make it.","player_loc":"https://roosterteeth.com/embed/the-lost-street-fighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":75,"publication_date":"2011-09-22T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hanks-zombie-apocalypse-survival-guide-2","changefreq":"weekly","video":[{"title":"S1:E133 - Hank's Zombie Apocalypse Survival Guide 2","description":"Hank's back with even more tips for the Zombie Apocalypse. This one involves a pull-up bar. ","player_loc":"https://roosterteeth.com/embed/hanks-zombie-apocalypse-survival-guide-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":67,"publication_date":"2011-09-22T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/starscream-vs-rainbow-dash-death-battle","changefreq":"weekly","video":[{"title":"S1:E17 - Starscream VS Rainbow Dash","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/starscream-vs-rainbow-dash-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/866d723d-6dc7-492e-a335-7183ff61587c/sm/video_thumbnail_75188.jpg","duration":538,"publication_date":"2011-09-22T02:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-092111","changefreq":"weekly","video":[{"title":"S1:E20 - Hard News 09/21/11","description":"Today on Hard News Viacom wants its money back, there's an old face in the new Kingdom Hearts, and did the new Smash Bros. get leaked?\r\nThe World Ends cameo - http://www.screwattack.com/news/world-ends-you-may-continue\r\nViacom sues Harmonix - http://www.screwattack.com/news/g1lunchpunch-viacom-sues-harmonix-over-130-million\r\nNew Smash Bros. - http://www.screwattack.com/news/new-smash-bros-may-have-name\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-092111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62d2b6cb-bc45-466b-8910-21a0e2bd5818/sm/5761918.png","duration":171,"publication_date":"2011-09-21T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-extended-cut-092111","changefreq":"weekly","video":[{"title":"S1:E132 - SideScrollers Extended Cut - 09/21/11","description":"Made just for Advantage Members, in this Extended Cut you'll learn about the board game that helped shaped and scar Chad's life.\r\nNot an Advantage Member? You can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage","player_loc":"https://roosterteeth.com/embed/sidescrollers-extended-cut-092111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a0bfecd-2217-48a2-b26b-b9391dabb34f/sm/nyc-38.jpg","duration":473,"publication_date":"2011-09-20T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-092111-the-hour-of-power-outage","changefreq":"weekly","video":[{"title":"S1:E30 - SideScrollers 09/21/11 \"The Hour of Power (Outage)\"","description":"So much going on this week as the boys have something happen while filming that has never EVER happened in a piece of ScrewAttack content.\r\nAUDIO DOWNLOAD - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio091411.mp3\r\nWatch the videos mentioned by clicking the links below!\r\nClip of the Week - \"ScrewAttack: The Game\" - http://bit.ly/qjdWvh\r\nCall of Duty (In Real Life!) - http://bit.ly/nml7Cb\r\nDEATH BATTLE! - Rainbow Dash - http://bit.ly/nztTgz\r\nAre you an Advantage Member and want to want to watch this week's SideScrollers Extended Cut? Click here - http://www.screwattack.com/shows/webstuff/exclusive-advantage-content/sidescrollers-extended-cut-092111\r\nWant to watch Extended Cut but are not an Advantage Member?  Don't worry, you can still become an Advantage Member! http://www.screwattack.com/advantage\r\nLike our videos? Share them!\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/StutteringCraig\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-092111-the-hour-of-power-outage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14019f7b-fa52-4800-9af1-9f38d3f0a57b/sm/super-mario-world-2.jpg","duration":3259,"publication_date":"2011-09-20T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091911","changefreq":"weekly","video":[{"title":"S1:E18 - Hard News 09/19/11","description":"Today we Chocobo Riding DLC, Chrono Trigger Returns, Big Netflix Changes and Deus Ex was Outsourced?\r\nToday's Stories:\r\nFinal Fantasy XIII-2 DLC - http://www.screwattack.com/news/incoming-dlc-final-fantasy-xiii-2\r\nFinal Fantasy VI and Chrono Trigger to PSN - http://www.screwattack.com/news/psn-about-get-kicked-face-jrpgs\r\nNetflix Changes - http://www.screwattack.com/news/netflix-boss-i-messed\r\nDeus Ex Outsourced - http://www.screwattack.com/news/g1lunchpunch-outsourcing-game-development-problematic","player_loc":"https://roosterteeth.com/embed/hard-news-091911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdfcee5a-509f-4078-ac02-d4fff68f836a/sm/qwikster-launch-netflix.jpg","duration":103,"publication_date":"2011-09-19T17:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-screwattack-the-game","changefreq":"weekly","video":[{"title":"S1:E131 - Clip of the Week - ScrewAttack: The Game","description":"Did you know Nick knows every single thing to put in game about ScrewAttack? Neither did we.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-screwattack-the-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff812cb2-8a91-4b66-afda-b739ec452d98/sm/Screen-shot-2011-09-16-at-9.jpg","duration":138,"publication_date":"2011-09-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hanks-zombie-apocalypse-survival-guide-1","changefreq":"weekly","video":[{"title":"S1:E131 - Hank's Zombie Apocalypse Survival Guide 1","description":" Call of Duty Military Advisor Hank will make sure you are ready for the inevitable zombie apocalypse, as long as you follow his advice.","player_loc":"https://roosterteeth.com/embed/hanks-zombie-apocalypse-survival-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":76,"publication_date":"2011-09-15T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonus-advantage-content-bryans-dark-side-clip-of-the-week-behind-the-scenes-and-bloopers","changefreq":"weekly","video":[{"title":"S1:E130 - Bonus Advantage Content - \"Bryan's Dark Side\" Clip of the Week Behind the Scenes and Bloopers","description":"Made just for Advantage Members, see all the fun and outtakes that go into producing one episode of the Clip of the Week in a single afternoon.  Haven't seen the original episode?  Watch it here.\r\nCan't see the video?  Then you're not an Advantage Member.  Don't worry, you can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage","player_loc":"https://roosterteeth.com/embed/bonus-advantage-content-bryans-dark-side-clip-of-the-week-behind-the-scenes-and-bloopers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":533,"publication_date":"2011-09-15T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-and-destructoid-how-to-build-a-website-at-pax-11-pt-1","changefreq":"weekly","video":[{"title":"S1:E129 - ScrewAttack and Destructoid: How To Build a Website at PAX '11 Pt. 1","description":"Craig and Niero have been around the block a few times when it comes to making sites so they shared their knowledge at PAX '11, see what they had to say!","player_loc":"https://roosterteeth.com/embed/screwattack-and-destructoid-how-to-build-a-website-at-pax-11-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b80efcc0-a978-4ee1-939d-bc6181cbb866/sm/356709.jpg","duration":1249,"publication_date":"2011-09-15T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-and-destructoid-how-to-build-a-website-at-pax-11-pt-2","changefreq":"weekly","video":[{"title":"S1:E128 - ScrewAttack and Destructoid: How To Build a Website at PAX '11 Pt. 2","description":"Craig and Niero have been around the block a few times when it comes to making sites so they shared their knowledge at PAX '11, see what they had to say!\r\n \r\nThanks to Hamza and Destructoid for sharing footage!","player_loc":"https://roosterteeth.com/embed/screwattack-and-destructoid-how-to-build-a-website-at-pax-11-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0a0d6f8-2211-4082-86b9-209bee6d1216/sm/358113.jpg","duration":1133,"publication_date":"2011-09-15T11:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-and-destructoid-how-to-build-a-website-at-pax-11-pt-3","changefreq":"weekly","video":[{"title":"S1:E127 - ScrewAttack and Destructoid: How To Build a Website at PAX '11 Pt. 3","description":"Craig and Niero have been around the block a few times when it comes to making sites so they shared their knowledge at PAX '11, see what they had to say!","player_loc":"https://roosterteeth.com/embed/screwattack-and-destructoid-how-to-build-a-website-at-pax-11-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/109c6288-07ae-4a73-820d-96e3e37337b9/sm/356731.jpg","duration":1133,"publication_date":"2011-09-15T11:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dragon-power","changefreq":"weekly","video":[{"title":"S1:E339 - Video Game Vault - Dragon Power","description":"The Dragon Ball game that isn't Dragon Ball at all. Only it is(n't).","player_loc":"https://roosterteeth.com/embed/video-game-vault-dragon-power","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":160,"publication_date":"2011-09-15T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/call-of-duty-in-real-life","changefreq":"weekly","video":[{"title":"S1:E126 - Call of Duty in Real Life","description":" While at Call of Duty XP, Craig got a chance to play Modern Warfare 2 in real life!","player_loc":"https://roosterteeth.com/embed/call-of-duty-in-real-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":127,"publication_date":"2011-09-15T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091411","changefreq":"weekly","video":[{"title":"S1:E15 - Hard News 09/14/11","description":"Today on Hard News Bodycount's total hits 66, and all the big announcements from Sony at TGS.\r\nBodycount Dev - http://www.screwattack.com/news/bodycount-dev-gets-cut\r\nPS Vita Models - http://www.screwattack.com/news/new-colors-psp-ps3-vitas-3g-model-att-exclusive\r\nPS Vita Launch Games - http://www.screwattack.com/news/ps-vitas-japanese-launch-date-and-lineup-revealed\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - http://www.facebook.com/pro.jared\r\nFacebook SA - http://www.facebook.com/officialsa","player_loc":"https://roosterteeth.com/embed/hard-news-091411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea3f0566-dc1f-462b-a419-f077fdfb9486/sm/rotator.png","duration":161,"publication_date":"2011-09-14T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-091411-not-politically-correct","changefreq":"weekly","video":[{"title":"S1:E29 - SideScrollers 09/14/11 \"Not Politically Correct\"","description":"As promised, this week Craig DOUBLES up the SideScrollers Newsdesk with SIX stories!\r\nAUDIO DOWNLOAD - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio091411.mp3\r\nAre you an Advantage Member?  Check out this week's Extended Cut here - http://www.screwattack.com/shows/originals/sidescrollers/sidescrollers-extended-cut-091411\r\nBe sure to check out the ALL NEW ScrewAttack.com! Want to watch the SideScrollers Extended Cut? Become an Advantage Member on ScrewAttack - http://www.screwattack.com/advantage\r\nLike our videos? Share them!\r\nFollow us on Twitter!\r\nCraig - http://twitter.com/StutteringCraig\r\nChad - http://twitter.com/ScrewAttackChad\r\nJared - http://twitter.com/ProJared","player_loc":"https://roosterteeth.com/embed/sidescrollers-091411-not-politically-correct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2728,"publication_date":"2011-09-14T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091311","changefreq":"weekly","video":[{"title":"S1:E14 - Hard News 09/13/11","description":"Today on Hard News people are serious about pirating Serious Sam, and all the big news coming from Nintendo's pre-TGS showing.\r\nSerious Sam Piracy - http://www.screwattack.com/news/serious-sam-dev-pleads-pirates\r\nThe Nintendo 3DS Motherload - http://www.screwattack.com/news/nintendo-3ds-press-conference-motherload\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Facebook.com/Pro.Jared\r\nFacebook SA - Facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-091311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ced2df0c-09a4-4efd-816a-ee7b57b77f39/sm/19-Monster-Hunter-4.jpg","duration":172,"publication_date":"2011-09-13T16:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-091211","changefreq":"weekly","video":[{"title":"S1:E13 - Hard News 09/12/11","description":"Today on Hard News games can take a mulligan on Tiger Woods, Gamestop has its own system, and another great PC strategy game becomes a first person shooter.\r\nGamestop Tablet - http://www.screwattack.com/news/gamestop-launching-gaming-tablet-fo-real\r\nTiger Woods Refund - http://www.screwattack.com/news/ea-tees-another-failure-fans\r\nSyndicate FPS - http://www.screwattack.com/news/screenshots-new-syndicate-info\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ScrewAttack and @Projared\r\nFacebook SA - Http://www.facebook.com/officialsa\r\nFacebook Jared - Http://www.facebook.com/pro.jared","player_loc":"https://roosterteeth.com/embed/hard-news-091211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b390215a-a761-4606-b973-2f2f7789d85c/sm/syndicate_1_0.jpg","duration":139,"publication_date":"2011-09-12T16:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tmnt-fall-of-the-foot-clan","changefreq":"weekly","video":[{"title":"S1:E338 - Video Game Vault - TMNT: Fall Of The Foot Clan","description":"Are there any decent TMNT games outside of the beat-em-ups?","player_loc":"https://roosterteeth.com/embed/video-game-vault-tmnt-fall-of-the-foot-clan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":117,"publication_date":"2011-09-12T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/interview-with-the-burger-town-dude","changefreq":"weekly","video":[{"title":"S1:E124 - Interview with the Burger Town Dude","description":"You've all the seen the commercials with this guy. Now get to know \"Pedro\" and learn how much of a lucky SOB he is to have gotten the part of the \"Burger Town Guy\" in the Call of Duty ad campaigns. ","player_loc":"https://roosterteeth.com/embed/interview-with-the-burger-town-dude","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed5aca01-29d1-41c4-9bcd-3f2910c62d09/sm/Screen-shot-2011-09-11-at-8.jpg","duration":159,"publication_date":"2011-09-11T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-bryans-dark-side","changefreq":"weekly","video":[{"title":"S1:E130 - Clip of the Week - Bryan's Dark Side","description":"Everything has a dark side to it... but what we were unaware of was that one of our own at the HQ had a dark side the likes of which we never would have suspected. We think it's even affected you g1s...\r\nAre you an Advantage Member?  There's Advantage Content related to this content that you can find here! Not an Advantage Member? Don't worry, you can upgrade and along with bonus content and higher quality video you also score NO ads! Woo hoo! Upgrade here - http://www.screwattack.com/advantage\r\nSee where it all began in The Others.\r\nBryan's birthday gets stolen in Illegal Downloading.\r\nFind the glowing eyes in Armory Testing.\r\nAlso, follow ScrewAttack on Twitter and like us on Facebook!\r\nBut don't follow Nick. Don't do it.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-bryans-dark-side","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d41736-bf98-4fe7-834e-e6f0a5df78bb/sm/cotw.png","duration":246,"publication_date":"2011-09-09T22:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090911","changefreq":"weekly","video":[{"title":"S1:E12 - Hard News 09/09/11","description":"Today on Hard News You could be buying Saints Row 3 for a long time, some big names leave Grasshopper Manufacture, and Dead Island's closet sexism.\r\nSaints Row 3 DLC - http://www.screwattack.com/news/forty-weeks-dlc-new-saints-row\r\nDead Island Sexism - http://www.screwattack.com/news/techland-needs-lesson-etiquette\r\nGrasshopper Manufacture departures - http://www.screwattack.com/news/they-came-they-saw-they-called-it-quits\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - http://www.facebook.com/pro.jared\r\nFacebook ScewAttack - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-090911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2280a16-7dfe-4e5a-8208-44e2a0d2cd1a/sm/saintsrow3_xbox360.jpg","duration":138,"publication_date":"2011-09-09T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090811","changefreq":"weekly","video":[{"title":"S1:E11 - Hard News 09/08/11","description":"Today on Hard News what is going on with Max Payne 3, the Wii U is a problem child, and we might be done feeling the force for awhile.\r\nWii U Problems - http://www.screwattack.com/news/wii-u-already-problem-child-developers\r\nOld Republic Beta Canceled - http://www.screwattack.com/news/old-republic-beta-canceled-weekend\r\nMax Payne 3 - http://www.screwattack.com/news/screenshots-max-payne-3-has-release-month\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - http://www.facebook.com/pro.jared\r\nFacebook ScrewAttack - http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-090811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0e75531-3f2b-4873-80ef-78cae5132e18/sm/max-payne-3-wallpapers-1920x12001314653684.jpg","duration":158,"publication_date":"2011-09-08T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090711","changefreq":"weekly","video":[{"title":"S1:E10 - Hard News 09/07/11","description":"Today on Hard News some Nintendo rumors are Nintendo truth, Sonic Generations has a shiny collectors edition, and you play, I play, we all get Uplay for Driver San Francisco\r\nDriver SF Uplay -http://screwattack.com/blogs/ScrewAttack-News/Uplay-Passport-lets-you-explore-San-Francisco\r\nNintendo Rumors - http://screwattack.com/blogs/ScrewAttack-News/Analog-sticks-and-Monster-Hunter-for-3DS-Maybe\r\nSonic Generations - http://screwattack.com/blogs/ScrewAttack-News/Sonic-Generations-Collectors-Ed-is-loaded\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/pro.jared\r\nFacebook ScrewAttack - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-090711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1a1c0e9-81b8-421f-b998-e0958f8b02d2/sm/view_52004_1_1315425968.jpg","duration":160,"publication_date":"2011-09-07T14:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-090711-the-next-step","changefreq":"weekly","video":[{"title":"S1:E28 - SideScrollers 09/07/11 \"The Next Step\"","description":"With the new ScrewAttack on the horizon, we are asked all the time \"how can we support you guys more?!\" and we've never had an answer. This week on SideScrollers Craig, Jared and Chad finally have the answer. Thanks to everyone for your support!","player_loc":"https://roosterteeth.com/embed/sidescrollers-090711-the-next-step","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2364,"publication_date":"2011-09-07T10:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090611","changefreq":"weekly","video":[{"title":"S1:E9 - Hard News 09/06/11","description":"Today on Hard News Dragon Quest X doing brave things on the Wii, Dead Island should be called Dev Island on PC, and Halo 4 could use a little creativity.\r\nRyan Payon leaves 343 Studios - http://screwattack.com/blogs/ScrewAttack-News/Ryan-Payton-leaves-343-Industries-for-Camouflaj\r\nDead Island sells incomplete on Steam - http://screwattack.com/blogs/ScrewAttack-News/Dead-Island-Steams-up-community\r\nDragon Quest X grinds for your money - http://screwattack.com/blogs/ScrewAttack-News/Dragon-Quest-X-needs-more-money\r\nFollow us on Twitter and Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/pro.jared\r\nFacebook ScrewAttack - Http://www.facebook.com/officialsa","player_loc":"https://roosterteeth.com/embed/hard-news-090611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bae8e0d6-ac32-487c-85df-88f457a21857/sm/Halo-4-2.jpg","duration":165,"publication_date":"2011-09-06T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-valt-kirby-tilt-n-tumble","changefreq":"weekly","video":[{"title":"S1:E337 - Video Game Valt - Kirby Tilt 'N Tumble","description":"When Kirby sets a record for least amount of effort by a video game character, it sets a record for most awkward VGV to get footage for.","player_loc":"https://roosterteeth.com/embed/video-game-valt-kirby-tilt-n-tumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":139,"publication_date":"2011-09-06T13:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-simcity-2000","changefreq":"weekly","video":[{"title":"S1:E336 - Video Game Vault - SimCity 2000","description":"There's only one thing that can happen when Nick is mayor of a city... lots of debt, lots of destruction, and lots of death.","player_loc":"https://roosterteeth.com/embed/video-game-vault-simcity-2000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-09-06T13:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-marios-game-gallery","changefreq":"weekly","video":[{"title":"S1:E335 - Video Game Vault - Mario's Game Gallery","description":"Chillaxing with video game legends is all good and fun until they cheat like Mario does.","player_loc":"https://roosterteeth.com/embed/video-game-vault-marios-game-gallery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":150,"publication_date":"2011-09-06T13:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-abadox","changefreq":"weekly","video":[{"title":"S1:E334 - Video Game Vault - Abadox","description":"Even in NES shmups that take place inside of gigantic planet-devouring aliens, we learned that camping is still a legitimate strategy.","player_loc":"https://roosterteeth.com/embed/video-game-vault-abadox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-09-06T13:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-ninja-kids","changefreq":"weekly","video":[{"title":"S1:E333 - Video Game Vault - The Ninja Kids","description":"You know you're in a bad neighborhood when satanic puppets and ninja puppets regularly do battle. Plus, Nick reveals a secret about your childhood heroes you may not have known.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-ninja-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":134,"publication_date":"2011-09-06T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-space-station-silicon-valley","changefreq":"weekly","video":[{"title":"S1:E332 - Video Game Vault - Space Station Silicon Valley","description":"Before the makers of the GTA series let you hijack vehicles, they made a game where you hijack... animals? Also, Craig's a jerk.","player_loc":"https://roosterteeth.com/embed/video-game-vault-space-station-silicon-valley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":176,"publication_date":"2011-09-06T12:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dragonball-z-the-legacy-of-goku","changefreq":"weekly","video":[{"title":"S1:E331 - Video Game Vault - DragonBall Z: The Legacy of Goku","description":"After years of begging for a DBZ game in the States, all we got was a crappy top-down RPG. Sad face.","player_loc":"https://roosterteeth.com/embed/video-game-vault-dragonball-z-the-legacy-of-goku","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":145,"publication_date":"2011-09-06T12:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-robo-pit","changefreq":"weekly","video":[{"title":"S1:E330 - Video Game Vault - Robo Pit","description":"Even if this Saturn game advances the day the machines take over the world, at least we'll have fun playing Robo Pit!","player_loc":"https://roosterteeth.com/embed/video-game-vault-robo-pit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":141,"publication_date":"2011-09-06T12:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-cod-xp-zip-line-experience","changefreq":"weekly","video":[{"title":"S1:E123 - The CoD XP Zip line Experience","description":" Ever been zip-lining? Ever been zip-lining at a event based around a video game? Well now you can say you have.","player_loc":"https://roosterteeth.com/embed/the-cod-xp-zip-line-experience","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":41,"publication_date":"2011-09-05T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-controller-sock","changefreq":"weekly","video":[{"title":"S1:E129 - Clip of the Week - Controller Sock","description":"This week's commercial advertises something that protects your hands; WE'VE got something that nips the problem right in the bud. If you're a gamer, at least.\r\nThere's bonus content for Advantage members for this episode!  Watch it here.\r\nFollow Nick on Twitter if you're into that sort of thing:","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-controller-sock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5c4559e-8376-46ac-98f2-2b183243bab6/sm/Ben2.png","duration":190,"publication_date":"2011-09-02T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090211","changefreq":"weekly","video":[{"title":"S1:E8 - Hard News 09/02/11","description":"Today on Hard News Star Trek Online is going free, Modern Warfare 3 has new multiplayer modes, and the Call of Duty that no one will answer.\r\nNew modes in Modern Warfare 3 - http://zillas.screwattack.com/news/five-things-you-didnt-know-about-mw3\r\nStar Trek Online goes free - http://zillas.screwattack.com/news/star-trek-online-goes-free-play\r\nCanceled CoD - http://zillas.screwattack.com/news/sledgehammer-leaves-behind-game-modern-warfare-3\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-090211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26708635-b2cd-4b81-853d-f5aa55e56e16/sm/MW3Spring.jpg","duration":159,"publication_date":"2011-09-02T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-gaming-2011-games-1-and-2-announcement","changefreq":"weekly","video":[{"title":"S1:E122 - Iron-Man of Gaming 2011 Games #1 and #2 Announcement","description":"The Iron-Man of Gaming is BACK! Find out what the first two games announced in this year's tournament are!","player_loc":"https://roosterteeth.com/embed/iron-man-of-gaming-2011-games-1-and-2-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":97,"publication_date":"2011-09-01T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-gaming-2011-games-3-and-4-announcement","changefreq":"weekly","video":[{"title":"S1:E121 - Iron-Man of Gaming 2011 Games #3 and #4 Announcement ","description":"It's time to find out the next two games at the 2011 Iron-Man of Gaming. So what will you be playing for the Current Puzzle/Arcade and Classic Sports this year?\r\n Get your rules here! http://screwattack.com/news/rules-classic-sports-and-current-arcade-games-2011-imog","player_loc":"https://roosterteeth.com/embed/iron-man-of-gaming-2011-games-3-and-4-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0701c4a4-74f6-43e1-9c5e-3560c23eea4f/sm/Reveal.jpg","duration":76,"publication_date":"2011-09-01T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-090111","changefreq":"weekly","video":[{"title":"S1:E7 - Hard News 09/01/11","description":"Today on Hard News 3rd Strike is getting more color, Germany is doomed, and Modern Warfare 3 is hard.\r\nGermany lifts Doom ban - http://zillas.screwattack.com/news/germanys-doom-ban-history\r\nCall of Duty Modern Warfare 3 Hardened Edition - http://zillas.screwattack.com/news/modern-warfare-3-hardened-edition-leaked\r\nStreet Fighter 3 Third Strike DLC - http://zillas.screwattack.com/news/third-strike-get-colorful-dlc\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @Projared and @ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-090111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e77646af-2658-4b93-8e26-24dc11c6769f/sm/sf4_0.jpg","duration":155,"publication_date":"2011-09-01T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-083111","changefreq":"weekly","video":[{"title":"S1:E6 - Hard News 08/31/11","description":"Today on Hard News there's a lot going on with Persona, Take Two gets exposed, and Bayonetta tugs at our heartstrings.\r\nTake Two employee - http://zillas.screwattack.com/news/take-two-may-be-abusing-its-testers\r\nBayonetta 2 Rumors - http://zillas.screwattack.com/news/no-bayonetta-2-just-developer-lols\r\nPersona Announcements - http://zillas.screwattack.com/news/three-big-persona-announcements\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-083111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/812747f4-508d-41a8-b3b0-93416d3c1dda/sm/orig_29332_1_1314769252.jpg","duration":151,"publication_date":"2011-08-31T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-2","changefreq":"weekly","video":[{"title":"2015:E10 - Achievement HUNT #72","description":"Geoff and Michael take to the streets again in an epic rematch from their last episode of HUNT. Who will win in this turning back of time","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/033eb37a-ce85-4de2-8810-ab614ea51f74/sm/ep10502.jpg","duration":301,"publication_date":"2015-03-11T19:42:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-zombie-army-trilogy","changefreq":"weekly","video":[{"title":"IA:E31 - Zombie Army Trilogy","description":"Jeremy and Matt grab two quick Imaginary Achievements in Zombie Army Trilogy. Did those snipers really deserve it","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-zombie-army-trilogy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c46213f7-6f97-4049-9828-6add50d9097c/sm/ep10501.jpg","duration":152,"publication_date":"2015-03-11T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2","changefreq":"weekly","video":[{"title":"2015:E68 - Battlefield 1943","description":"In celebration of Battlefield Hardline's upcoming release, Geoff, Ryan, Jeremy, and Ray travel back in time and wreck all the planes, tanks, and soldiers they can. They'll be sure to send you a postcard.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5444aac-cee7-481f-b8f6-47996c132183/sm/ep10496.jpg","duration":2347,"publication_date":"2015-03-11T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-4","changefreq":"weekly","video":[{"title":"2015:E2490 - Gold Bar And Bottle Locations: Part 4","description":"Geoff and Jeremy continue into the depths of hell to find all the Gold Bars and Blood Bottles in Zombie Army Trilogy... again","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d350c5c9-6e15-4a85-b657-3bc6d7496285/sm/ep10500.jpg","duration":553,"publication_date":"2015-03-11T17:07:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-198","changefreq":"weekly","video":[{"title":"2015:E67 - Helldivers","description":"Ryan enlists Geoff, Ray, and Lindsay into his Helldivers team. His only rule Everyone fights. No one quits. You don't do your job, he'll shoot you himself.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-198","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09ae6851-96fa-4a1d-8cad-4501079637d0/sm/ep10495.jpg","duration":1737,"publication_date":"2015-03-11T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015","changefreq":"weekly","video":[{"title":"2015:E19 - Minecraft - Barrel Race","description":"AH competes in a rodeo barrel race. It's all in how you pick the horse.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fc6e139-4e0a-40a4-8bc1-6197477ae2cc/sm/ep10499.jpg","duration":367,"publication_date":"2015-03-11T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-3","changefreq":"weekly","video":[{"title":"2015:E2489 - Gold Bar And Bottle Locations: Part 3 ","description":"Geoff and Jeremy continue into the depths of hell to find all the Gold Bars and Blood Bottles in Zombie Army Trilogy.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/866aba8d-0ec5-4da9-89b7-9e56dad19e4b/sm/ep10498.jpg","duration":409,"publication_date":"2015-03-11T16:40:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-29","changefreq":"weekly","video":[{"title":"2015:E10 - Five Facts","description":"Franco goes over five facts over Five Facts.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c965ad0-4291-4a8d-90ad-e7ec4cc55518/sm/ep10494.jpg","duration":210,"publication_date":"2015-03-10T23:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-196","changefreq":"weekly","video":[{"title":"2015:E66 - Trivial Pursuit Part 2","description":"The AH Crew is back with another round of Trivial Pursuit! Who will be the smartest Achievement Hunter around Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-196","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dcb4587-ca91-48c1-8256-80d84f93b26f/sm/ep10493.jpg","duration":1593,"publication_date":"2015-03-10T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-195","changefreq":"weekly","video":[{"title":"2015:E65 - GTA V - The Fleeca Job","description":"Michael and Gavin, under the tutelage of Geoff and Ryan, attempt the first of Rockstar's Grand Theft Auto V Online Heists!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-195","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a70d4c4-1e6c-4b9b-ad1b-72dc27ef2fde/sm/ep10492.jpg","duration":2593,"publication_date":"2015-03-10T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-28","changefreq":"weekly","video":[{"title":"2015:E10 - Safari - GO! #72","description":"The crew is on a safari! The first person to kill 7 animals in GTA single player gets their pick of animal stickers. Followed by their pick of animal crackers. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7301d6b-3dd1-42cb-be21-e62ef62c8680/sm/ep10491.jpg","duration":885,"publication_date":"2015-03-10T17:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-2","changefreq":"weekly","video":[{"title":"2015:E2488 - Gold Bar And Bottle Locations: Part 2","description":"Geoff, Jeremy, Michael, and sometimes Ryan, Gavin, and Ray are continuing there collection in the Zombie Army Trilogy. If you can't understand it... neither can I.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02a754b2-b953-48ba-a2fc-004aec47356f/sm/ep10490.jpg","duration":492,"publication_date":"2015-03-10T14:53:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-1","changefreq":"weekly","video":[{"title":"2015:E2487 - Gold Bar And Bottle Locations: Part 1","description":"Jeremy, Ray, Geoff, and Michael are beginning the collection of everything in the Zombie Army Trilogy.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gold-bar-and-bottle-locations-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8f3e5a7-8c49-4ab1-a7f3-574470ab558c/sm/ep10489.jpg","duration":492,"publication_date":"2015-03-10T14:52:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-27","changefreq":"weekly","video":[{"title":"2015:E9 - Top 5 Games from 2005","description":"Kdin, Jeremy, and a drunk Geoff and Michael take a look at the Top 5 games from 2005 which Geoff doesn't remember making with Kdin last week, in fact I'm pretty sure he doesn't remember what he had for breakfast this morning anymore","player_loc":"https://roosterteeth.com/embed/countdown-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/865a84c3-917d-4b0c-a367-2426e4c00f08/sm/ep10488.jpg","duration":319,"publication_date":"2015-03-09T20:35:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-191","changefreq":"weekly","video":[{"title":"2015:E64 - GTA V - The Trojan Bar Heist","description":"The AH crew strikes again! We take another crack at the Heist we originally attempted during Let's Play Live!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-191","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f09c494-27c4-410c-b3d5-c38483beca1b/sm/ep10485.jpg","duration":2396,"publication_date":"2015-03-09T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-40","changefreq":"weekly","video":[{"title":"2015:E9 - AHWU #255","description":"The AH Crew bring you the news for the week of March 8th. Vid of the week: http://bit.ly/1AXD57c and Community Vid of the week: http://bit.ly/1C2IgKb","player_loc":"https://roosterteeth.com/embed/ahwu-2015-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41abf491-ddb1-448a-8024-342661fa28a1/sm/ep10486.jpg","duration":583,"publication_date":"2015-03-09T18:50:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-185","changefreq":"weekly","video":[{"title":"2015:E63 - Saints Row IV: Re-Elected Part 4","description":"Geoff and Michael return with more superpowers than ever. With fire, ice, telekinesis, and Dubstep on their side... how can they be beat!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-185","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92284a15-7ee4-4762-9f5a-400841125b37/sm/ep10477.jpg","duration":2332,"publication_date":"2015-03-07T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-52","changefreq":"weekly","video":[{"title":"2015:E18 - GTA V - Blood Sport","description":"AH enters the circular octagon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bd60d24-709b-4b29-95f1-f9ba9775da07/sm/ep10481.jpg","duration":1067,"publication_date":"2015-03-07T00:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-184","changefreq":"weekly","video":[{"title":"2015:E62 - NIGHTS 4 & 5 - Five Nights at Freddy's 3 - Part 3","description":"Michael and Gavin are back for Nights 4 and 5 of Five Nights At Freddy's 3! They also discuss the magic of replacing your testicles with tiny brains! \"Put that over , Dick!\"","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-184","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1fd2660-2026-4504-b30e-ba0aa1e059f5/sm/ep10475.jpg","duration":1325,"publication_date":"2015-03-06T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-187","changefreq":"weekly","video":[{"title":"2015:E61 - GTA V - The Trojan Bar Heist Trailer","description":"Coming Monday on the Let's Play channel... the heist first seen at Let's Play Live!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-187","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/632a1356-5c6a-414b-bfdb-68a2564d3120/sm/ep10478.jpg","duration":74,"publication_date":"2015-03-06T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-182","changefreq":"weekly","video":[{"title":"2015:E60 - Minecraft - Episode 145 - Feels Fishy","description":"The AH crew hop into Minecraft PC to find a pollution solution for the tainted Lake of Pimps!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-182","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10bac767-9b15-4e5d-a3d9-048c0b80a5c3/sm/ep10473.jpg","duration":2279,"publication_date":"2015-03-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-26","changefreq":"weekly","video":[{"title":"2015:E10 - Volume 233","description":"Fails of the Weak #233 gets musical as Jack and Ryan endure big booties, a bit of bad mojo, ghostly blades, explosions, and betrayal in Destiny, Far Cry 4, FIFA 15, Grand Theft Auto V, Just Cause 2, and Trials Fusion. Buy the song by ALostPeople on iTunes: http://bit.ly/12SGwzk\r\n|| Original video: https://www.youtube.com/watchv=eIri9YLHpOg","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0988e181-2899-4d59-8aba-ebee9928ea24/sm/ep10472.jpg","duration":200,"publication_date":"2015-03-06T13:07:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-28","changefreq":"weekly","video":[{"title":"2015:E10 - Episode 105: Gavin vs. Ryan","description":"Gavin and Ryan feel the need for speed. Also, they are very respectful of their fellow coworkers.","player_loc":"https://roosterteeth.com/embed/vs-2015-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce7fe2e3-a412-45c1-9ced-5f0c5a494d9e/sm/ep10471.jpg","duration":508,"publication_date":"2015-03-05T23:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-180","changefreq":"weekly","video":[{"title":"2015:E59 - Rainbow Six Vegas","description":"Geoff, Michael, Gavin, and Ray hunt down terrorists in this prequel to their Rainbow Six Vegas 2 playthroughs. How did they get to where they are now The hard way.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a73f0b5-bffb-43c1-8db2-1ddba3915dd4/sm/ep10470.jpg","duration":2048,"publication_date":"2015-03-05T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-14","changefreq":"weekly","video":[{"title":"2015:E5 - Five Night's At Freddy's 2","description":"Michael and Gavin whip it out and bung a bit of Freddy's.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc0d440d-a96b-4690-b3e4-af6dc0e953a7/sm/ep10469.jpg","duration":630,"publication_date":"2015-03-05T17:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-25","changefreq":"weekly","video":[{"title":"2015:E10 - Dying Light","description":"Joel and Adam find out what it's like to parkour in the middle of night. As it turns out it's very nice and they have a wonderful time.","player_loc":"https://roosterteeth.com/embed/how-to-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d820a329-de1e-486d-95db-f1b7867178e0/sm/ep10468.jpg","duration":2640,"publication_date":"2015-03-05T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-27","changefreq":"weekly","video":[{"title":"2015:E9 - Achievement HUNT #71","description":"Jack and Gavin load up the new DLC for Trials Fusion and begin a new HUNT competition. Be prepared for a thrilling conclusion... in a month or two.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53730bcb-3d48-46ad-add6-a99869199843/sm/ep10466.jpg","duration":647,"publication_date":"2015-03-04T19:48:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-side-arm-insanity","changefreq":"weekly","video":[{"title":"IA:E30 - Side Arm Insanity","description":"Jeremy and Kat play through the first ever live recorded Imaginary Achievement to try and complete a mission with only pistols in Army of Two: The Devil's Cartel. Best of luck.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-side-arm-insanity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd2bb708-b0d0-4537-80d5-2cc26a26e1bc/sm/ep10465.jpg","duration":503,"publication_date":"2015-03-04T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-174","changefreq":"weekly","video":[{"title":"2015:E58 - NIGHTS 3 & 4 - Five Nights at Freddy's 3 - Part 2","description":"Michael and Gavin take on Nights 3 and 4 in Part 2 of their Five Nights At Freddy's 3 gameplay!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e11bc098-0dab-4d72-9d34-5b4bbd8e8c98/sm/ep10462.jpg","duration":1266,"publication_date":"2015-03-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-48","changefreq":"weekly","video":[{"title":"2015:E17 - Minecraft - Simon","description":"AH competes in Matt's Minecraft recreation of the Hasbro game Simon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f794fa7-91c3-4c34-9d2e-7d15dcd23fd2/sm/ep10463.jpg","duration":332,"publication_date":"2015-03-04T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-171","changefreq":"weekly","video":[{"title":"2015:E57 - Trivial Pursuit","description":"Geoff, Michael, Gavin, Ray, and Jack play a rousing game of Trivial Pursuit! Who knows the most about everything Probably not anyone in this video.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfb44fe2-83c9-4be3-9da0-3a191d74bfc0/sm/ep10459.jpg","duration":1401,"publication_date":"2015-03-03T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-173","changefreq":"weekly","video":[{"title":"2015:E56 - F*** THIS GAME - Five Nights at Freddy's 3 - Part 1","description":"Michael and Gavin become part of the new horror attraction in this gameplay of Five Nights at Freddy's 3.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b7ed597-c4fb-4fb7-8d92-54891b943a79/sm/ep10461.jpg","duration":1329,"publication_date":"2015-03-03T19:05:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-26","changefreq":"weekly","video":[{"title":"2015:E9 - Y is the New X - GO! #71","description":"Ys are the new Xs this year! The first AH member to kill someone in a multiplayer game with a dumb \"x' in their name (xXxYOLOSWAGxXx) gets a shiny sticker. Go!","player_loc":"https://roosterteeth.com/embed/go-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/498ff4a1-64e1-47dc-a37a-9b5fffbbdfec/sm/ep10460.jpg","duration":459,"publication_date":"2015-03-03T18:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-26","changefreq":"weekly","video":[{"title":"2015:E9 - Fact Check #4","description":"Jack and Ryan join forces to overcome Franco's laziness and bring you the fourth installment of Five Facts: Fact Check!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00ee4400-66d5-426a-97ad-641cd0665654/sm/ep10458.jpg","duration":177,"publication_date":"2015-03-03T16:25:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-25","changefreq":"weekly","video":[{"title":"2015:E8 - AHWU #254","description":"Today marks the fifth year of producing Achievement Hunter Weekly Update and like usual, we totally missed it until after the episode was done. Also, no one sent us cake. Where is the cake Watch today's episode and learn about Geoff's love of the PS4 and Jack's love of all things cake. Vid of week: http://bit.ly/1DyTmRW and community vid of week: http://bit.ly/1F2LdHF","player_loc":"https://roosterteeth.com/embed/ahwu-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52ed2e55-8114-4803-887e-8330e8f766c9/sm/ep10456.jpg","duration":532,"publication_date":"2015-03-02T21:30:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-167","changefreq":"weekly","video":[{"title":"2015:E55 - GTA V - Cops N Crooks","description":"AH tries another version of Cops N Crooks by Crab Soul!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64db4f1c-a445-4bcf-91c3-2fbf36d084c8/sm/ep10452.jpg","duration":1890,"publication_date":"2015-03-02T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-25","changefreq":"weekly","video":[{"title":"2015:E8 - Top 5 Dogs in Video Games","description":"Last week Kdin asked you, the community, for your favorite dogs in video games...and here's your list!","player_loc":"https://roosterteeth.com/embed/countdown-2015-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44646baa-fbf6-41f4-8275-e34070d5a4dc/sm/ep10455.jpg","duration":148,"publication_date":"2015-03-02T20:50:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-27","changefreq":"weekly","video":[{"title":"2015:E8 - Chrota's End","description":"Matt and Jeremy head to Minecraft's moon to see if killing Chrota in Minecraft is easier than it is in Destiny. It is in case anyone was wondering. If you want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f69f2a3-e93d-4647-83cb-734501cafc68/sm/ep10454.jpg","duration":204,"publication_date":"2015-03-02T19:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon","changefreq":"weekly","video":[{"title":"2015:E3 - Coming Soon","description":"It's Coming Soon's anniversary, so Kdin sits down to tell us the major game releases for the month of March 2015!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c4a8b35-44df-40b8-a6c5-8dee5332dc86/sm/ep10451.jpg","duration":285,"publication_date":"2015-03-01T03:34:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-45","changefreq":"weekly","video":[{"title":"2015:E16 - GTA V - Big Boom!","description":"The AH Crew try to make a really big explosion in GTA V! They're good at big explosions, right","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a457226-4f61-4a01-ac5c-5bc4167bf666/sm/ep10448.jpg","duration":1742,"publication_date":"2015-02-28T01:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-164","changefreq":"weekly","video":[{"title":"2015:E54 - Saints Row IV: Re-Elected Part 3","description":"Geoff and Michael lose their clothes, grab some dubstep guns, and continue their playthrough of Saints Row. Happy Saints Row Saturday!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23e30d34-2842-4b29-affe-66e4be8ccc5b/sm/ep10446.jpg","duration":2009,"publication_date":"2015-02-27T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-163","changefreq":"weekly","video":[{"title":"2015:E53 - Minecraft - Episode 144 - Temple Run","description":"The legend comes to a thrilling conclusion!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e24b4bc-233c-438f-b836-3f75a46d8886/sm/ep10445.jpg","duration":2310,"publication_date":"2015-02-27T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-24","changefreq":"weekly","video":[{"title":"2015:E9 - Volume 232","description":"In Fails of the Weak #232, Geoff and Jack witness three-way spawning, killer vehicles, and crazy hand grenades in Call of Duty: Black Ops II, Grand Theft Auto V, and Worms Battlegrounds.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f737bba0-fd7a-41c5-96a1-c018db19b36c/sm/ep10442.jpg","duration":195,"publication_date":"2015-02-27T20:23:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-24","changefreq":"weekly","video":[{"title":"2015:E9 - Episode 104: Reset","description":"AH practices their golf claps.","player_loc":"https://roosterteeth.com/embed/vs-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92b35c85-eeb1-4e86-84e4-f327e905f077/sm/ep10440.jpg","duration":570,"publication_date":"2015-02-27T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-158","changefreq":"weekly","video":[{"title":"2015:E52 - Hot Seat: Prop Hunt Featuring Max Kruemcke","description":"Geoff, Ryan, Ray, Michael, and Gavin put Max Kruemcke in the Hot Seat to interrogate him as they play some Prop Hunt. What will they find out about him as they find each other","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/667e8032-5765-466a-bc07-bce586ffe1b7/sm/ep10438.jpg","duration":3088,"publication_date":"2015-02-26T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-13","changefreq":"weekly","video":[{"title":"2015:E5 - Rage Quit","description":"Michael is too dumb to learn and doesn't know what happened.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c51ea3c7-f1be-4605-a93a-e341ac8ceca1/sm/ep10439.jpg","duration":300,"publication_date":"2015-02-26T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-23","changefreq":"weekly","video":[{"title":"2015:E9 - Sports Friends","description":"\"Just edit the video\" they said. \"We weren't that loud\" they said. \"We're all friends\" they said. So we tried to prove our friendship by playing Sports Friends.","player_loc":"https://roosterteeth.com/embed/how-to-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d3ed54b-987d-488f-a612-736164ef2a07/sm/ep10437.jpg","duration":1026,"publication_date":"2015-02-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-157","changefreq":"weekly","video":[{"title":"2015:E51 - Dying Light - Be The Zombie","description":"Gavin is dead, so Geoff returns to help out the crew but it the dead dead friend has become an undead foe!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f94ed6f0-f7a7-484f-9b40-8f6ead8cd5c2/sm/ep10436.jpg","duration":1973,"publication_date":"2015-02-25T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-44","changefreq":"weekly","video":[{"title":"2015:E15 - Minecraft - The Memory Game","description":"Ryan and Michael fight against going senile -- it's a losing battle.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8be7c6b5-43d3-404a-9819-1eb4d0798b02/sm/ep10435.jpg","duration":406,"publication_date":"2015-02-25T19:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-minisode-3","changefreq":"weekly","video":[{"title":"IA:E29 - Minisode #3","description":"Jeremy (Jerem6401) and special guest Kat (COPYxKAT) return to Imaginary Achievements just like the old days on AHCommunityvids. Fittingly, their doing 3 achievements from that channel and rerecording them for your viewing pleasure.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-minisode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74e02b71-e6f6-4f2e-bfda-4b214f4703ad/sm/ep10434.jpg","duration":274,"publication_date":"2015-02-25T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-24","changefreq":"weekly","video":[{"title":"2015:E8 - Achievement HUNT #70","description":"Today's episode of HUNT is themed around SPEED. Watch as Michael and Geoff decide who is the fastest of the Achievement Hunters.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba3fd332-dc3d-4f28-8967-1446f0f3e4fc/sm/ep10433.jpg","duration":253,"publication_date":"2015-02-25T19:08:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-154","changefreq":"weekly","video":[{"title":"2015:E50 - Worms Battlegrounds Part 6","description":"Geoff, Ray, Michael, and Gavin are playing Worms Battlegrounds again! Are they better then last time Watch and see exactly what you would expect!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d0dd73-2134-432b-9d67-425cdc7ec34a/sm/ep10431.jpg","duration":2340,"publication_date":"2015-02-24T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-24","changefreq":"weekly","video":[{"title":"2015:E8 - Death By Car - GO! #70","description":"In this week's Go! Geoff asks the crew to get run over... by their own car. Or, you know, just hit by it. Whatever, kill yourself with your own car in any game.","player_loc":"https://roosterteeth.com/embed/go-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59a5dfaf-f996-49fc-a719-62f33428293a/sm/ep10430.jpg","duration":591,"publication_date":"2015-02-24T16:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-23","changefreq":"weekly","video":[{"title":"2015:E8 - The Last of Us Remastered Part 2","description":"Geoff and Jack learn 5 more facts about The Last of Us. Maybe next time we'll get someone who has actually played the game to sit in!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40e4ea37-4002-405b-b340-bf4eca9ecec0/sm/ep10429.jpg","duration":220,"publication_date":"2015-02-24T16:01:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-22","changefreq":"weekly","video":[{"title":"2015:E7 - AHWU #253","description":"Today's episode of AHWU is following a long weekend of recovering from Let's Play Live. Is Geoff awake Did shards of broken guitar get stuck in Jack's beard Can Jeremy and Matt survive the lights going out Watch and learn!","player_loc":"https://roosterteeth.com/embed/ahwu-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8e40b93-1fed-4085-a28e-f421e6b9c59c/sm/ep10428.jpg","duration":538,"publication_date":"2015-02-24T00:16:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-150","changefreq":"weekly","video":[{"title":"2015:E49 - GTA V - Chopper VS Chopper","description":"We had so much fun with the VS we decided to try it 3 V 3! Special guest star - the diseased, mutated and partially re-animated GTA V character Michael & Geoff made for Kerry.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/314eda3b-ebbd-477d-b3c9-787f59cd620c/sm/ep10426.jpg","duration":2203,"publication_date":"2015-02-23T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-22","changefreq":"weekly","video":[{"title":"2015:E7 - Top 5 Cats In Video Games","description":"Kdin finds the fantastic feline favorites in video games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df6a1f1-0538-489b-9a8c-75b752712c6c/sm/ep10425.jpg","duration":139,"publication_date":"2015-02-23T18:14:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-143","changefreq":"weekly","video":[{"title":"2015:E48 - Minecraft - Episode 143 - Legends of the Hidden Tower Part 2","description":"After the shambles of round 1, the AH crew return for round 2 of Legends of the Hidden Tower.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f939f6f-ba90-4955-b58f-463587d48f34/sm/ep10414.jpg","duration":1961,"publication_date":"2015-02-20T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-21","changefreq":"weekly","video":[{"title":"2015:E8 - Volume 231","description":"In Fails of the Weak #231, Geoff and Jack witness nut shots, vengeful vehicles, and sneaky bushes in Battlefield 3, Battlefield 4, Call of Duty Advanced Warfare, and Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00a0239e-b392-4d3e-8759-aee846b116f9/sm/ep10411.jpg","duration":171,"publication_date":"2015-02-20T14:49:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-11","changefreq":"weekly","video":[{"title":"2015:E4 - Home Improvisation","description":"Michael and Gavin try their hand at interior decorating. The flow in their room is just perfect.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45460cbf-ba36-4007-9315-5c5f8426980e/sm/ep10410.jpg","duration":1042,"publication_date":"2015-02-19T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-22","changefreq":"weekly","video":[{"title":"2015:E8 - Episode 103: Michael vs. Ryan","description":"Michael gives Ryan a blast from the past in his butthole. Wait, no, we meant to say \"In this week's VS, Michael and Ryan compete in GTA V...\" Thanks to Crab Soul.","player_loc":"https://roosterteeth.com/embed/vs-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e3c9629-f8cb-45d1-a00a-a0cdefa86da6/sm/ep10409.jpg","duration":1548,"publication_date":"2015-02-19T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-136","changefreq":"weekly","video":[{"title":"2015:E47 - Battlefield Hardline Beta: Heist Mode","description":"Geoff, Jack, Ray, Michael, and Gavin relive their heist days, but in a different format. Will this be the beginning of a beautiful thing","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f3e7dbe-78ed-4015-9509-2c1d9de1f523/sm/ep10408.jpg","duration":1563,"publication_date":"2015-02-19T21:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-21","changefreq":"weekly","video":[{"title":"2015:E8 - Belligerent","description":"Last week we showed Adam's balls and got surprising little pushback. So this week we thought we would take it up a notch. #Adam'sballs","player_loc":"https://roosterteeth.com/embed/how-to-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd26a8be-b5f7-4e3b-9dc7-b93ee0a0b24d/sm/ep10407.jpg","duration":802,"publication_date":"2015-02-19T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-135","changefreq":"weekly","video":[{"title":"2015:E46 - Call of Duty Advanced Warfare Zombies","description":"Ray, Geoff, Ryan, and Gavin played Advanced Warfare. The non-treyarch guys made zombies for the first time. Or was it treyarchWell they played zombies and it was good.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88a9351e-dc90-4c2a-9e89-29a7c53d636b/sm/ep10406.jpg","duration":2098,"publication_date":"2015-02-19T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-22","changefreq":"weekly","video":[{"title":"2015:E7 - Achievement HUNT #69","description":"Jack and Geoff face off in various Mortal Kombat themed titles, Geoff picking Jack's character and vice-versa. Who will win","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c222dcee-fdaa-49c0-afb1-37b13b3126d5/sm/ep10405.jpg","duration":366,"publication_date":"2015-02-18T19:39:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-37","changefreq":"weekly","video":[{"title":"2015:E14 - Things to Do(n't) in Minecraft - Crack The Whip","description":"Geoff, Jack, Ryan, Ray, Michael, and Matt show you the best way to help your horses fly in Minecraft. Or not fly... no definitely not fly. Horses don't fly.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dc79a28-7e67-4bf1-8a5f-a80d61b148fc/sm/ep10404.jpg","duration":816,"publication_date":"2015-02-18T19:32:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-blue-estate-keep-quiet-achievement-guide","changefreq":"weekly","video":[{"title":"2015:E2484 - Blue Estate - Keep Quiet Achievement Guide","description":"Ray and Geoff show you how to get the \"Keep Quiet\" achievement in Blue Estate for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-blue-estate-keep-quiet-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bb2c7c2-f408-42f7-9510-022044c678c4/sm/ep10403.jpg","duration":198,"publication_date":"2015-02-18T18:48:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-skyrim","changefreq":"weekly","video":[{"title":"IA:E28 - Skyrim","description":"Jeremy and Adam dive into Skyrim to hunt some dragons in the weirdest of ways. Also, Matt is a cheater.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-skyrim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78ac2d49-cefc-4787-ae4d-2999c5826f13/sm/ep10395.jpg","duration":196,"publication_date":"2015-02-18T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-129","changefreq":"weekly","video":[{"title":"2015:E45 - Deathtrap","description":"Geoff, Ryan, Ray, and Gavin learn that trapping isn't always as easy as it seems in Deathtrap!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f9e00c2-c740-4deb-a552-a2e45d9069db/sm/ep10394.jpg","duration":1681,"publication_date":"2015-02-17T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-20","changefreq":"weekly","video":[{"title":"2015:E7 - How do you spell Geoff? - GO! #69","description":"This week, Geoff has a very... Geoff centric task. Get a kill in a game that starts with G. Then get a kill that starts with E. Then O. I think you see where this is going. G-E-O-F-F. GO!","player_loc":"https://roosterteeth.com/embed/go-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eeb5668c-9e1b-45f7-887e-0266ab21392e/sm/ep10393.jpg","duration":1160,"publication_date":"2015-02-17T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-20","changefreq":"weekly","video":[{"title":"2015:E7 - The Last of Us Remastered","description":"Franco brings you five facts over The Last of Gus...err I mean The Last of Us Remastered.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/717c22f2-cdce-4f54-bcf0-906e6af3222f/sm/ep10392.jpg","duration":319,"publication_date":"2015-02-17T20:48:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-18","changefreq":"weekly","video":[{"title":"2015:E6 - Week #252","description":"2015:E6 - Week #252","player_loc":"https://roosterteeth.com/embed/ahwu-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22640b56-2fa3-4100-b7de-0d0077e390d5/sm/ep10391.jpg","duration":493,"publication_date":"2015-02-16T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-15","changefreq":"weekly","video":[{"title":"2015:E6 - Majora's Mask Clocktown","description":"Matt and Kerry visit a minecraft map in another dimension that borrows assets from our own. That's right it's Majora's Mask's Clocktown!","player_loc":"https://roosterteeth.com/embed/megacraft-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89e6415a-96fb-48b2-9192-80aa4a97584f/sm/ep10390.jpg","duration":247,"publication_date":"2015-02-16T22:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-124","changefreq":"weekly","video":[{"title":"2015:E44 - GTA V - AC130 or Airbus","description":"AH tries to arm a titan and solve problems with the Los Santos public transit system.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9eac5caf-e488-45d6-beaa-41c14ceb07f8/sm/ep10389.jpg","duration":2925,"publication_date":"2015-02-16T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-34","changefreq":"weekly","video":[{"title":"2015:E13 - GTA V - Stop That Train XX","description":"The bastard's back, without its breaks. Again.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e155a7e0-8c00-4bc9-b80d-b84b3bc39a6f/sm/ep10386.jpg","duration":412,"publication_date":"2015-02-14T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-121","changefreq":"weekly","video":[{"title":"2015:E43 - Saints Row IV: Re-Elected Part 2","description":"Geoff and Michael attempt to not collect collectables and fail.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b022a79-a6e4-4461-b1b1-892045864e5c/sm/ep10384.jpg","duration":2047,"publication_date":"2015-02-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-119","changefreq":"weekly","video":[{"title":"2015:E42 - Minecraft - Episode 142 - Legends of the Hidden Tower","description":"Over year of planning, months of building, and , let the legend finally be told!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8986a264-efc9-4e5a-91aa-c3ae6d4966c2/sm/ep10383.jpg","duration":2979,"publication_date":"2015-02-14T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-17","changefreq":"weekly","video":[{"title":"2015:E7 - Volume 230","description":"In Fails of the Weak #230, Geoff and Jack witness daredevils, bad drivers, and delusional bikers in Assassin's Creed Unity, Grand Theft Auto V, and Trials Fusion.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d31b89df-ede7-4d3c-b5ec-d75091744113/sm/ep10380.jpg","duration":156,"publication_date":"2015-02-13T15:38:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-10","changefreq":"weekly","video":[{"title":"2015:E4 - Succulent","description":"This game sucks. A lot","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/091d61c9-b312-4df7-8c2b-8382526598a5/sm/ep10379.jpg","duration":150,"publication_date":"2015-02-12T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-18","changefreq":"weekly","video":[{"title":"2015:E7 - Episode 102: Ryan vs. Jack","description":"Jingle all the way to victory","player_loc":"https://roosterteeth.com/embed/vs-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b31ae771-053e-4d37-abbb-046f14ba59d8/sm/ep10378.jpg","duration":751,"publication_date":"2015-02-12T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-116","changefreq":"weekly","video":[{"title":"2015:E41 - Battlefield Hardline Beta: Hotwire Mode","description":"Geoff, Ryan, Gavin, Ray, and Michael play the new game mode in the Battlefield Beta. Intense moments and fast chases are to come.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b873fee3-8943-46b0-adcc-19e3f40488a8/sm/ep10377.jpg","duration":1979,"publication_date":"2015-02-12T19:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-17","changefreq":"weekly","video":[{"title":"2015:E7 - Mount...Stuff","description":"Joel, Adam, Matt, & Jeremy have been staring at this for 20-30 minutes and can't come up with anything. Jeremy said he'd take over for a minute. Hi this is Jeremy. Far Cry is fun. Moving on... Alright that was pretty good. If there are any more words after this sentence, Matt has decided to weigh in. Why can't we think of a good description for this video I thought we were better than this. ...Also Kevin Spacey is the Villain in this, and Matt was covered in hot oil during the filming of this. Weird.","player_loc":"https://roosterteeth.com/embed/how-to-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08a64a81-684b-4ffe-abaf-332352299cb6/sm/ep10376.jpg","duration":892,"publication_date":"2015-02-12T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-111","changefreq":"weekly","video":[{"title":"2015:E40 - Dying Light Co-Op Part 2","description":"Geoff was eaten by the virals, so Gavin joins Ryan, Ray, and Michael in their quest to figure out which of them is the most inept at parkour!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd584fe1-248a-4499-99e3-c61a145f8975/sm/ep10372.jpg","duration":2479,"publication_date":"2015-02-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-evolve","changefreq":"weekly","video":[{"title":"IA:E27 - Evolve","description":"Jeremy and Matt are in the new game, Evolve, showing that the fight can begin before the hunters are even prepared for it.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-evolve","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef272f32-570b-4d1e-b6ad-e9218b715239/sm/ep10375.jpg","duration":223,"publication_date":"2015-02-11T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-29","changefreq":"weekly","video":[{"title":"2015:E12 - Minecraft - End Game","description":"Only fools rush in. Gavin is a fool.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0093873d-bca4-44d0-8864-bdb43564df11/sm/ep10373.jpg","duration":590,"publication_date":"2015-02-11T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-18","changefreq":"weekly","video":[{"title":"2015:E6 - Achievement HUNT #68","description":"This week's HUNT brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/736cbe65-4a83-4413-bbfe-2150dd58aeef/sm/ep10371.jpg","duration":273,"publication_date":"2015-02-11T14:53:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-108","changefreq":"weekly","video":[{"title":"2015:E39 - Evolve Beta Part 2","description":"Geoff, Jack, Michael, Ryan, and Ray are back and hunting each other again. Who's the best monster of the bunch Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1f5913e-f7cf-449d-bdda-5d6f8650f98f/sm/ep10369.jpg","duration":1425,"publication_date":"2015-02-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-109","changefreq":"weekly","video":[{"title":"2015:E38 - Let's Build in Minecraft - Gerudo Shooting Gallery","description":"\"Matt, Kdin, Lindsay, and Michael build the Gerudo Shooting Gallery from Zelda: Ocarina of Time. Everyone start singing the song, now.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5553a79f-ac8c-4f89-8e21-622064aa2ae7/sm/ep10370.jpg","duration":1929,"publication_date":"2015-02-10T19:54:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-17","changefreq":"weekly","video":[{"title":"2015:E6 - DuckTales","description":"Jack and Ray bring you five facts over DuckTales: Remastered.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3e6c71b-ea82-4214-bb8b-006998dbf26a/sm/ep10368.jpg","duration":201,"publication_date":"2015-02-10T16:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-16","changefreq":"weekly","video":[{"title":"2015:E6 - Ray VS. the Crew - GO! #68","description":"In this week's Go!, it's Ray vs the gang! Whoever has the most points wins. The catch Ray picks the game. It's definitely not a COD game. Definitely not. Nope.","player_loc":"https://roosterteeth.com/embed/go-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ad8e715-3a52-4369-b113-9e3ffbd12734/sm/ep10367.jpg","duration":758,"publication_date":"2015-02-10T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-16","changefreq":"weekly","video":[{"title":"2015:E5 - AHWU #251","description":"Jack is out of the office. Adam Kovic is in the office. Conditions are perfect.\r\nCommunity Video of the Week: http://bit.ly/FeaturedCommunityVids","player_loc":"https://roosterteeth.com/embed/ahwu-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40011a02-26dc-4e6e-a510-ea514ed94f75/sm/ep10366.jpg","duration":692,"publication_date":"2015-02-09T22:56:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-105","changefreq":"weekly","video":[{"title":"2015:E37 - GTA V - Extreme","description":"It's too extreme. No title even fits. Look up extreme in the dictionary, then burn it in the flame of Saturn V rocket and it might be close to explaining the extreme-ness.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5288ad45-409e-4cb8-b16c-faae383c166e/sm/ep10365.jpg","duration":2346,"publication_date":"2015-02-09T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-14","changefreq":"weekly","video":[{"title":"2015:E5 - Top 5 Collectathon Video Games","description":"Kdin takes us on a trip through the Top 5 Collectathon Video Games! He covers the Assassin's Creed Series, Banjo Tooie, Crackdown 2, Metroid Series, and Donkey Kong 64.","player_loc":"https://roosterteeth.com/embed/countdown-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad7ab430-e503-4d74-86ca-98e4f76a6cf0/sm/ep10363.jpg","duration":176,"publication_date":"2015-02-09T18:44:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-101","changefreq":"weekly","video":[{"title":"2015:E36 - Saints Row IV: Re-Elected","description":"Geoff and Michael return to their Let's Play roots in Saints Row IV: Re-Elected!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f13150bb-9dab-44ad-914f-7071138b6e49/sm/ep10361.jpg","duration":2082,"publication_date":"2015-02-07T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-26","changefreq":"weekly","video":[{"title":"2015:E11 - GTA V - Stop That Train X","description":"Geoff, Ryan, Ray, Michael, and Gavin attempt to stop the train all over again. Buses couldn't do it, but what about some massive dumps","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93a19e56-c140-48fa-99f2-ae8be2247a9b/sm/ep10360.jpg","duration":839,"publication_date":"2015-02-06T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-96","changefreq":"weekly","video":[{"title":"2015:E35 - Minecraft - Episode 141 - Wither Hunt Part 2","description":"The Wither VS The Achievement Hunter Crew, who will win!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b31f254f-6c2b-46b1-8845-91b706832fa0/sm/ep10357.jpg","duration":2261,"publication_date":"2015-02-06T18:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-14","changefreq":"weekly","video":[{"title":"2015:E6 - Volume 229","description":"In Fails of the Weak #229, Geoff and Jack witness zombie basketball players, relentless cops, and robot commentators in Dying Light, Grand Theft Auto V, Halo: MCC, Madden NFL 15, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/653c4d97-ea4f-49b2-9a75-82a319930acc/sm/ep10356.jpg","duration":153,"publication_date":"2015-02-06T15:15:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-95","changefreq":"weekly","video":[{"title":"2015:E34 - Dying Light Co-Op","description":"Geoff, Ryan, Ray, and Michael begin their journey in Dying Light. Here's the highlights of their desperate need for survival. Best of luck to them.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5943d84d-9566-4506-8f51-a7be5fa73ffe/sm/ep10355.jpg","duration":1380,"publication_date":"2015-02-05T21:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-15","changefreq":"weekly","video":[{"title":"2015:E6 - Episode 101: Jack vs. Lindsay","description":"The pinker they are, the harder they fall.","player_loc":"https://roosterteeth.com/embed/vs-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c84e0267-569c-4cd0-b76b-85da25124c65/sm/ep10354.jpg","duration":551,"publication_date":"2015-02-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-8","changefreq":"weekly","video":[{"title":"2015:E3 - Brothers: A Tale of Two Sons","description":"Michael and Gavin pretend to be related, hilarity ensues.","player_loc":"https://roosterteeth.com/embed/play-pals-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/173b4484-8a38-4e89-a4ba-1c87a9388c54/sm/ep10353.jpg","duration":645,"publication_date":"2015-02-05T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-writers-balk","changefreq":"weekly","video":[{"title":"S1:E4 - Writer's Balk","description":"Joel tries to write an awesome Rooster Teeth short, but everyone keeps messing with me! Stop being jerks and ruining my genius!","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-writers-balk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6242b843-f5d5-49a3-af36-5b489e8c8189/sm/ep705.jpg","duration":141,"publication_date":"2009-05-20T20:52:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-spoiler-alert","changefreq":"weekly","video":[{"title":"S1:E3 - Spoiler Alert","description":"Joel and Matt have a friendly discussion about movies. Then Joel punches Matt in the face. You might want to watch this short before someone ruins it for you.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-spoiler-alert","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be51e557-bc31-4f02-b854-b0365593f853/sm/ep694.jpg","duration":284,"publication_date":"2009-05-06T18:53:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-1-spoiler-alert-extended-version","changefreq":"weekly","video":[{"title":"S1:E2 - Spoiler Alert - Extended Version","description":"Joel and Matt have a friendly discussion about movies. Then Joel punches Matt in the face. This is the extended sponsor version.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-1-spoiler-alert-extended-version","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d076124-ca89-4a57-ad8c-73534980254a/sm/ep693.jpg","duration":311,"publication_date":"2009-05-06T14:38:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-the-recording-session","changefreq":"weekly","video":[{"title":"S1:E2 - The Recording Session","description":"This is a dialog recording session from last year that was very important for Shannon. Burnie and Geoff share some unusual insights.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-the-recording-session","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcde82ad-87e1-4ab7-9901-c2921fad4e58/sm/ep689.jpg","duration":273,"publication_date":"2009-04-29T16:10:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-7-recreation-the-sixth-anniversary-psa","changefreq":"weekly","video":[{"title":"S1:E22 - The Sixth Anniversary PSA","description":"Go behind-the-scenes as the guys from RvB prepare to film a PSA to celebrate their sixth anniversary.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-7-recreation-the-sixth-anniversary-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a86ce729-7b3a-4535-a345-1ac6278d81a6/sm/ep647.jpg","duration":212,"publication_date":"2009-04-01T23:29:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/captain-dynamic-season-1-outtakes","changefreq":"weekly","video":[{"title":"S1:E4 - Outtakes!","description":"Push the awesome button one more time with outtakes and behind-the-scenes footage from Captain Dynamic.","player_loc":"https://roosterteeth.com/embed/captain-dynamic-season-1-outtakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89dbb02c-9c78-4024-8447-d00047fded20/sm/ep636.jpg","duration":346,"publication_date":"2009-03-25T19:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-rt-comic-timelapse-writer-style","changefreq":"weekly","video":[{"title":"S1:E25 - RT Comic Timelapse (writer style)","description":"Griffon one-ups Luke by making the best creative process video ever.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-rt-comic-timelapse-writer-style","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df54dd07-5eab-445e-88bd-8b178dc1c939/sm/ep613.jpg","duration":280,"publication_date":"2009-03-15T00:53:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/captain-dynamic-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3","description":"Captain Dynamic must confront his arch-nemesis, the Great Face. Starring Ed Robertson as Captain Dynamic. Based on the game City of Heroes by NCSoft.","player_loc":"https://roosterteeth.com/embed/captain-dynamic-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd363a64-9272-468c-95bc-0769e39facdf/sm/ep609.jpg","duration":274,"publication_date":"2009-03-12T17:56:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/captain-dynamic-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2","description":"Captain Dynamic works closely with the writers to come up with his own awesome custom mission. Starring Ed Robertson as Captain Dynamic. Based on the game City of Heroes from NCSoft.","player_loc":"https://roosterteeth.com/embed/captain-dynamic-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b47ba209-b00d-4e73-ac6b-6e05f904bd45/sm/ep599.jpg","duration":237,"publication_date":"2009-03-05T17:40:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/captain-dynamic-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1","description":"A team of writers is hired to use the new content creation tools in the game City of Heroes to promote the worst superhero in the world, Captain Dynamic. Starring Ed Roberston of Barenaked Ladies. Based on the game City of Heroes from NCSoft.","player_loc":"https://roosterteeth.com/embed/captain-dynamic-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53b3fae-676e-437c-919a-e83a7447c1d2/sm/ep589.jpg","duration":280,"publication_date":"2009-02-26T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-ninja-gus","changefreq":"weekly","video":[{"title":"S1:E22 - Ninja Gus","description":"Silent but deadly.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-ninja-gus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37342185-9ff1-4c1a-aba7-5a6a3b753f2d/sm/ep563.jpg","duration":37,"publication_date":"2009-02-05T17:19:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-cracker-contest","changefreq":"weekly","video":[{"title":"S1:E23 - Cracker Contest","description":"Geoff and Gav try to eat 7 Saltines in one minute.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-cracker-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb65cc97-4882-446d-9944-0dc4997a8530/sm/ep562.jpg","duration":125,"publication_date":"2009-02-04T18:08:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-rt-comic-timelapse","changefreq":"weekly","video":[{"title":"S1:E24 - RT Comic Timelapse","description":"This nifty little video shows Luke drawing the latest RT Comic at super high speeds.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-rt-comic-timelapse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eca450c8-443b-4587-b723-7cedcce3f948/sm/ep551.jpg","duration":279,"publication_date":"2009-01-29T18:29:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-19","changefreq":"weekly","video":[{"title":"S6:E19 - Chapter 19","description":"The final chapter of Red vs Blue Reconstruction.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/225749a5-1d7c-4e8f-8be9-e38abad34043/sm/ep401.jpg","duration":584,"publication_date":"2008-10-30T21:39:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-18","changefreq":"weekly","video":[{"title":"S6:E18 - Chapter 18","description":"Under attack from Recovery agents, the Reds and Blues regroup and begin to hatch their final plan.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9317890-8909-4e6c-bb9d-9443d40cf63d/sm/ep382.jpg","duration":359,"publication_date":"2008-10-21T08:16:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-sponsor-psa-columbus-day","changefreq":"weekly","video":[{"title":"S1:E21 - Sponsor PSA: Columbus Day","description":"In this exclusive-for-sponsors PSA, Caboose explains everyone's holiday while the rest of the guys are busy setting up for the final episodes of Reconstruction.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-sponsor-psa-columbus-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82791a57-863c-4cfd-8037-65caf3115b2e/sm/ep378.jpg","duration":132,"publication_date":"2008-10-16T21:24:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-17","changefreq":"weekly","video":[{"title":"S6:E17 - Chapter 17","description":"The Reds continue their industrial espionage while Church copes with recent revelations.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b1a3c5a-8164-4ef4-85bc-2fc9bee64339/sm/ep371.jpg","duration":373,"publication_date":"2008-10-14T06:36:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-psa-4-rock-bottom","changefreq":"weekly","video":[{"title":"S1:E20 - PSA #4 Rock Bottom","description":"The Reds and Blues help us all figure out how to tighten the belt during tough economic times.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-psa-4-rock-bottom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f99cf162-c804-4d70-a0c6-022a2c843886/sm/ep365.jpg","duration":190,"publication_date":"2008-10-07T01:13:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-16","changefreq":"weekly","video":[{"title":"S6:E16 - Chapter 16","description":"Wash explains the origins of Project Freelancer while Church struggles with the images he's receiving from the Epsilon AI. Meanwhile, the Reds hatch a diabolical plan.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1db29e7-10d5-478b-8917-5b4207310b84/sm/ep359.jpg","duration":424,"publication_date":"2008-09-30T03:54:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-15","changefreq":"weekly","video":[{"title":"S6:E15 - Chapter 15","description":"The team is forced to split up in order to infiltrate command.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52bf2135-18f2-4ede-90af-5e9e6cc202ae/sm/ep349.jpg","duration":346,"publication_date":"2008-09-23T07:40:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-14","changefreq":"weekly","video":[{"title":"S6:E14 - Chapter 14","description":"When the vehicle acquisition goes awry, Wash is forced to take matters into his own hands.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f5c13d4-7f80-4beb-8518-9cfba3d6c933/sm/ep342.jpg","duration":394,"publication_date":"2008-09-16T05:24:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/stroyent-season-1-stroyent-man","changefreq":"weekly","video":[{"title":"S1:E4 - Stroyent Man","description":"Stroyent: it's what all the kids want these days.","player_loc":"https://roosterteeth.com/embed/stroyent-season-1-stroyent-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b3695b3-67fa-4ddd-b9a6-e7de47b50240/sm/ep338.jpg","duration":47,"publication_date":"2008-09-10T22:47:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-13","changefreq":"weekly","video":[{"title":"S6:E13 - Chapter 13","description":"The team tries to secure a vehicle for their upcoming assault on Command.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76b1c0a6-59d3-4c22-9c23-37e1004abdbc/sm/ep335.jpg","duration":268,"publication_date":"2008-09-09T06:46:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-rock-the-vote-psas","changefreq":"weekly","video":[{"title":"S1:E19 - Rock The Vote PSAs","description":"Red and Blue both have a little trouble figuring out how to support their own team.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-rock-the-vote-psas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7465ec6c-894a-4137-acdb-9d663d054a06/sm/ep330.jpg","duration":181,"publication_date":"2008-09-03T01:34:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-12","changefreq":"weekly","video":[{"title":"S6:E12 - Chapter 12","description":"Church tries to explain his unusual condition to Wash.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7025fcd-01f4-4bab-9a92-a4048f307f26/sm/ep323.jpg","duration":309,"publication_date":"2008-08-26T04:24:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-11","changefreq":"weekly","video":[{"title":"S6:E11 - Chapter 11","description":"Meta unleashes a vicious attack.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f1ac137-0e9c-41bd-a5b8-0ce8c07593bb/sm/ep317.jpg","duration":381,"publication_date":"2008-08-19T04:06:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-10","changefreq":"weekly","video":[{"title":"S6:E10 - Chapter 10","description":"Washington is forced to confront the Reds.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0b5e15f-8f44-44d2-8b6d-119749b42bc7/sm/ep311.jpg","duration":309,"publication_date":"2008-08-11T21:16:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-9","changefreq":"weekly","video":[{"title":"S6:E9 - Chapter 9","description":"Sarge sets out on an important mission.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f80c5154-5486-4e1a-9f83-97793d12f12b/sm/ep305.jpg","duration":440,"publication_date":"2008-08-04T22:17:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-reconstruction-psa-2","changefreq":"weekly","video":[{"title":"S1:E18 - Reconstruction PSA 2","description":"The guys from Blood Gulch discuss the latest development in addiction technology.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-reconstruction-psa-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65fc5e15-7ac6-4d24-9c2a-4c8d23890d40/sm/ep296.jpg","duration":214,"publication_date":"2008-07-28T17:01:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/stroyent-season-1-infomercial","changefreq":"weekly","video":[{"title":"S1:E3 - Infomercial","description":"It slices, it dices, it smells like rotting corpses.","player_loc":"https://roosterteeth.com/embed/stroyent-season-1-infomercial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/366b58df-6742-4cdd-ae70-4172f972a843/sm/ep295.jpg","duration":60,"publication_date":"2008-07-28T00:39:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-8","changefreq":"weekly","video":[{"title":"S6:E8 - Chapter 8","description":"Wash continues his search for the Meta.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19433bb2-4791-40b7-ad74-62426888ae2a/sm/ep294.jpg","duration":328,"publication_date":"2008-07-22T08:17:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-7","changefreq":"weekly","video":[{"title":"S6:E7 - Chapter 7","description":"The one where everybody enjoys the exposition.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5b7831a-1e53-4a3d-8c16-af26c390c348/sm/ep293.jpg","duration":426,"publication_date":"2008-07-15T07:30:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-6","changefreq":"weekly","video":[{"title":"S6:E6 - Chapter 6","description":"The Meta goes on the offensive as Agent South finds herself in a lot of trouble.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cd4af23-9654-4883-bf09-7d958eeaa3d6/sm/ep292.jpg","duration":327,"publication_date":"2008-07-08T14:50:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-5","changefreq":"weekly","video":[{"title":"S6:E5 - Chapter 5","description":"Caboose and Church help Wash when he encounters resistance from others in his investigation.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9219df8-a122-47f2-a0bb-8de6dddb198f/sm/ep290.jpg","duration":429,"publication_date":"2008-07-01T02:02:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-psa-36","changefreq":"weekly","video":[{"title":"S1:E17 - PSA 36","description":"Looking for a great conversation starter online Try posting one of these ten things we've never heard on an Internet forum.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-psa-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4db48a0-fa25-41d0-a027-3f6ecc7ba9f1/sm/ep288.jpg","duration":274,"publication_date":"2008-06-23T20:09:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/stroyent-season-1-human-juicifier","changefreq":"weekly","video":[{"title":"S1:E2 - Human Juicifier","description":"Are you tired Low on Ammo Human Juice could be your disgusting key to health.","player_loc":"https://roosterteeth.com/embed/stroyent-season-1-human-juicifier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a9bf29d-da19-4f6b-b8f6-3d6edc37f29f/sm/ep287.jpg","duration":75,"publication_date":"2008-06-19T14:58:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/stroyent-season-1-projectile-dysfunction","changefreq":"weekly","video":[{"title":"S1:E1 - Projectile Dysfunction","description":"Are you having a problem with projectile dysfunction Maybe Stroyent is right for you.","player_loc":"https://roosterteeth.com/embed/stroyent-season-1-projectile-dysfunction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26e468a9-7b8c-4043-a68f-8bb6a09d0798/sm/ep286.jpg","duration":76,"publication_date":"2008-06-19T04:07:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-4","changefreq":"weekly","video":[{"title":"S6:E4 - Chapter 4","description":"Caboose helps Wash in pursuit of the elusive Meta.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c64cafc8-c6e1-4db2-b9ed-ffba236c9fc8/sm/ep283.jpg","duration":390,"publication_date":"2008-06-17T00:34:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-3","changefreq":"weekly","video":[{"title":"S6:E3 - Chapter 3","description":"It's tragedy at Outpost 28 when somebody dies at the hands of an old acquaintance.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0b07736-379c-4edd-ba26-0d30e9a53ef0/sm/ep282.jpg","duration":363,"publication_date":"2008-06-09T17:58:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-2","changefreq":"weekly","video":[{"title":"S6:E2 - Chapter 2","description":"Agent Washington arrives at Blood Gulch and is greeted by some familiar faces.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e531e074-5ff2-4594-b699-701cdfbf97b8/sm/ep281.jpg","duration":324,"publication_date":"2008-06-02T23:09:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-6-reconstruction-chapter-1","changefreq":"weekly","video":[{"title":"S6:E1 - Chapter 1","description":"Project Freelancer sends a Recovery Force to Outpost 17-B in hopes of finding out what happened there.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-6-reconstruction-chapter-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d14bdd71-241b-4768-88cc-26e0669f8658/sm/ep280.jpg","duration":402,"publication_date":"2008-05-30T20:09:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-grifball-psa","changefreq":"weekly","video":[{"title":"S1:E16 - Grifball PSA","description":"Ever wanted to know how to play Grifball but were too afraid to ask","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-grifball-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d1b9c70-b2f2-403d-a426-3f4837b443b0/sm/ep267.jpg","duration":203,"publication_date":"2008-03-04T16:51:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-episode-100-alternate-ending-b","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 100 Alternate Ending B","description":"It's the end of many things, but it ain't over 'till it's over.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-episode-100-alternate-ending-b","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6ca52bc-e047-494f-b4c0-135485a8b7c0/sm/ep4980.jpg","duration":1095,"publication_date":"2007-07-20T02:49:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-episode-100-alternate-ending-c","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 100 Alternate Ending C","description":"It's the end of many things, but it ain't over 'till it's over.","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-episode-100-alternate-ending-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d62ef53f-8b9b-4bd4-a31e-c250649036b0/sm/ep4978.jpg","duration":1043,"publication_date":"2007-07-20T02:49:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-100","changefreq":"weekly","video":[{"title":"S5:E23 - Episode 100: Why Were We Here?","description":"It's the end of many things, but it ain't over 'till it's over.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25f4e095-b27a-4a4b-86f4-950d2cf0d1fe/sm/ep261.jpg","duration":1022,"publication_date":"2007-07-20T02:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/1-800-magic-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4","description":"The blue monster continues to assault the troll with the chaingun. Bidderman attempts to fix the problem with his powers, but only ends up making things worse.","player_loc":"https://roosterteeth.com/embed/1-800-magic-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1775254b-2e66-4083-9fd3-03b975e519f3/sm/ep260.jpg","duration":295,"publication_date":"2007-07-04T20:40:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/1-800-magic-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3","description":"The hotline operator insists that magic doesn't exist, and claims Bidderman didn't teleport, but instead experienced some \"minor lag in the system\".","player_loc":"https://roosterteeth.com/embed/1-800-magic-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e0ddd3a-bdbe-49a6-a95b-c2f435572fd6/sm/ep259.jpg","duration":305,"publication_date":"2007-06-25T19:43:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/1-800-magic-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2","description":"Bidderman finds himself in a weird landscape, where he has a conversation with a talking tree named Frank.","player_loc":"https://roosterteeth.com/embed/1-800-magic-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2988ac6d-1d7e-4e2c-bf0e-72ff558ddf13/sm/ep258.jpg","duration":274,"publication_date":"2007-06-14T16:21:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-99","changefreq":"weekly","video":[{"title":"S5:E22 - Episode 99: Repent, The End Is Near","description":"Some spooky faces hatch a plan.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7dc8bc4-39c5-40fa-afc4-7268d3824813/sm/ep257.jpg","duration":406,"publication_date":"2007-06-11T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/1-800-magic-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1","description":"A team of two humans and an elf engages in a firefight against a team of four trolls.","player_loc":"https://roosterteeth.com/embed/1-800-magic-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc1d5fda-4533-4bdc-a214-d47f1ed97ff1/sm/ep256.jpg","duration":321,"publication_date":"2007-06-07T19:03:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-98","changefreq":"weekly","video":[{"title":"S5:E21 - Episode 98: Same Old, Same Old","description":"The Wyoming(s) wreak havoc on the Blood Gulch Canyon.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64a3de2d-9c45-411c-b260-e99fbad2749a/sm/ep254.jpg","duration":351,"publication_date":"2007-05-28T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-97","changefreq":"weekly","video":[{"title":"S5:E20 - Episode 97: Uncommunicado","description":"Some stuff goes down. It's very dramatic and/or entertaining.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd81b0bc-0431-4a2d-b15b-a6ee3f07ca34/sm/ep253.jpg","duration":417,"publication_date":"2007-05-15T03:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-96","changefreq":"weekly","video":[{"title":"S5:E19 - Episode 96: The Wrong Crowd","description":"Grif falls in love with Donut, but Sarge has something to say about it.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/909c52ba-40df-44d3-abcd-6d87f8647cc9/sm/ep252.jpg","duration":261,"publication_date":"2007-04-30T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-95","changefreq":"weekly","video":[{"title":"S5:E18 - Episode 95: Loading...","description":"This summary is currently loading. Perhaps you would like a cup of coffee while you wait","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62c20b25-7d52-4248-acd2-c2c95431d094/sm/ep249.jpg","duration":321,"publication_date":"2007-04-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-94","changefreq":"weekly","video":[{"title":"S5:E17 - Episode 94: Tucker Knows Best","description":"The world ends (again). For real this time. All episodes after this one are prequels.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdca0b45-00e3-4952-b285-c95e40157edf/sm/ep248.jpg","duration":254,"publication_date":"2007-04-09T17:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-93","changefreq":"weekly","video":[{"title":"S5:E16 - Episode 93: Biting The Hand","description":"Since this is Halo, no hands really get bitten. Sorry we scared you for a second there.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ecb54b-d008-42fb-b29a-fd7215fc08db/sm/ep247.jpg","duration":338,"publication_date":"2007-04-02T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-92","changefreq":"weekly","video":[{"title":"S5:E15 - Episode 92: Where Credit Is Due","description":"Sheila is transferred into the ship. You can imagine what hilarity ensues.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d7acd09-a80c-4ebb-899a-014eefa8fd28/sm/ep246.jpg","duration":316,"publication_date":"2007-03-19T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-91","changefreq":"weekly","video":[{"title":"S5:E14 - Episode 91: Missed Direction","description":"Tucker finds himself in a hairy situation. (When you see the episode you'll realize how disgusting that is.)","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac03a5e3-7023-4028-b6d3-053272810174/sm/ep244.jpg","duration":297,"publication_date":"2007-03-05T20:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-90","changefreq":"weekly","video":[{"title":"S5:E13 - Episode 90: Terms and Provisions","description":"Caboose puts on his womanizing skills.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aec116e8-d09e-47f2-83e4-22c7dc2082fa/sm/ep243.jpg","duration":304,"publication_date":"2007-02-19T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-psa-go-go-gadget","changefreq":"weekly","video":[{"title":"S1:E15 - PSA - Go, Go Gadget","description":"Don't ask us how anything works.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-psa-go-go-gadget","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/554e2b4e-b04c-4557-9428-40e611f45bfd/sm/ep242.jpg","duration":210,"publication_date":"2007-02-12T17:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-89","changefreq":"weekly","video":[{"title":"S5:E12 - Episode 89: The Haystack","description":"Bats.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e556dff3-7646-4837-849b-9b9418f9ecfe/sm/ep241.jpg","duration":299,"publication_date":"2007-02-05T18:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-88","changefreq":"weekly","video":[{"title":"S5:E11 - Episode 88: Spelunked","description":"Is Sarge in Hell Find out in this extraordinary episode of Red vs. Blue!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e50d6ef4-bf5a-4acd-8794-9816843cf385/sm/ep240.jpg","duration":214,"publication_date":"2007-01-15T16:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-87","changefreq":"weekly","video":[{"title":"S5:E10 - Episode 87: The Nesting Theory","description":"Everybody's under attack and it's all incredibly stressful.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcfb6e6f-4eaa-4918-aeff-39d0ca1cf530/sm/ep237.jpg","duration":262,"publication_date":"2007-01-08T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-psa-holiday-2006","changefreq":"weekly","video":[{"title":"S1:E14 - PSA Holiday 2006","description":"Available in HD on XBL Marketplace.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-psa-holiday-2006","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd03e98a-31f5-42ca-87e3-4e173a6a38b5/sm/ep235.jpg","duration":189,"publication_date":"2006-12-30T18:24:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-86","changefreq":"weekly","video":[{"title":"S5:E9 - Episode 86: Brass Tacks","description":"Sister gets turned over to the other team.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea92ac60-6c7a-44b7-b780-659e78be4961/sm/ep234.jpg","duration":251,"publication_date":"2006-12-23T04:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-psa-lets-all-go-to-the-movies","changefreq":"weekly","video":[{"title":"S1:E13 - PSA - Let's all Go to the Movies","description":"If you go before 4pm tickets are only $75 for seniors.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-psa-lets-all-go-to-the-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/471d992e-793b-4693-a505-943ab90dcb1f/sm/ep233.jpg","duration":189,"publication_date":"2006-12-16T05:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-85","changefreq":"weekly","video":[{"title":"S5:E8 - Episode 85: Yellow Fever","description":"Not really a contagious disease.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5097668e-39cf-4498-a2bf-812608c2e6e7/sm/ep232.jpg","duration":377,"publication_date":"2006-12-09T02:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-84","changefreq":"weekly","video":[{"title":"S5:E7 - Episode 84: Strong Male Figure","description":"Church and Tucker admire the new abomination.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ab3a384-62f9-4200-b0ce-6c5f69305eb8/sm/ep230.jpg","duration":256,"publication_date":"2006-11-25T09:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-83","changefreq":"weekly","video":[{"title":"S5:E6 - Episode 83: In Memoriam","description":"A very depressing funeral takes place at Outpost #1.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8d5e9b1-d6de-4b11-8d1a-6cdafaeab5a2/sm/ep229.jpg","duration":256,"publication_date":"2006-11-17T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-82","changefreq":"weekly","video":[{"title":"S5:E5 - Episode 82: The Grif Reaper","description":"Caboose tries to spy with the sniper rifle.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcc8abcc-810c-491a-94da-4554906541ea/sm/ep228.jpg","duration":254,"publication_date":"2006-11-04T05:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-81","changefreq":"weekly","video":[{"title":"S5:E4 - Episode 81: Sibling Arrivalries","description":"Sister gets set-up with her new friends.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fabed85c-09b6-451d-9201-92941d49af57/sm/ep227.jpg","duration":290,"publication_date":"2006-10-28T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-psa","changefreq":"weekly","video":[{"title":"S1:E12 - PSA - Planning to Fail","description":"The gang talk about their zombie plans.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78dcc6ce-e61c-40fe-b476-97573b64b3e8/sm/ep226.jpg","duration":174,"publication_date":"2006-10-20T20:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-80","changefreq":"weekly","video":[{"title":"S5:E3 - Episode 80: Baby Steps","description":"Tiny Tim gets some exercise.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f255733-14a9-4758-9bee-249273b847f4/sm/ep220.jpg","duration":249,"publication_date":"2006-10-13T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-79","changefreq":"weekly","video":[{"title":"S5:E2 - Episode 79: Got Your Back","description":"Speaking of which, I want you back for goood...","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fe6a65d-6e45-4993-8213-9534d685700f/sm/ep215.jpg","duration":288,"publication_date":"2006-10-07T00:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-5-episode-78","changefreq":"weekly","video":[{"title":"S5:E1 - Episode 78: You Can't Park Here","description":"It's the happy day for the Blood Gulch crew as new arrivals upset everything.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-5-episode-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6d68a08-d6a0-4e8f-ad50-2f5fef1bbe2b/sm/ep213.jpg","duration":399,"publication_date":"2006-09-30T05:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-17","changefreq":"weekly","video":[{"title":"S1:E17 - The Final Countdown - Episode 17","description":"In the final episode of the series the residents of Strangerhood Lane finally get to go home.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/954f7922-a1ab-4dbb-937d-529a41082027/sm/ep199.jpg","duration":396,"publication_date":"2006-04-27T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-16","changefreq":"weekly","video":[{"title":"S1:E16 - The Montage Exposition - Episode 16","description":"After scolding the mysterious man for being overly dramatic about the possibility of getting fired, everybody begins to question who he is.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93a85c18-e708-46b7-b199-66d4f99c1826/sm/ep197.jpg","duration":230,"publication_date":"2006-04-12T03:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-77","changefreq":"weekly","video":[{"title":"S4:E20 - Episode 77: The Arrival","description":"S4:E20 - Episode 77: The Arrival","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dda4c81c-3147-476a-9960-0eaa6a229ba7/sm/ep196.jpg","duration":441,"publication_date":"2006-04-01T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-15","changefreq":"weekly","video":[{"title":"S1:E15 - Lost in Place - Episode 15","description":"While attempting to discover what the hell is going on, the inhabitants of Strangerhood Lane get lost.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/477c5c1c-b1ed-43a5-8ef7-144644dd3d67/sm/ep195.jpg","duration":221,"publication_date":"2006-03-29T04:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-76","changefreq":"weekly","video":[{"title":"S4:E19 - Episode 76: Two for One","description":"S4:E19 - Episode 76: Two for One","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d49936-3600-485d-9109-862626031160/sm/ep194.jpg","duration":432,"publication_date":"2006-03-17T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-14","changefreq":"weekly","video":[{"title":"S1:E14 - Nikki's Alias - Episode 14","description":"A ghost from the grave reveals the truth behind the murder.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7d5be9e-1545-44e1-ac3a-1dbf1e67bf4b/sm/ep193.jpg","duration":238,"publication_date":"2006-03-15T02:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-75","changefreq":"weekly","video":[{"title":"S4:E18 - Episode 75: Things Are Looking Down","description":"S4:E18 - Episode 75: Things Are Looking Down","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3678369a-ec54-487a-81f4-2e59ea6c4015/sm/ep192.jpg","duration":357,"publication_date":"2006-03-13T22:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-74","changefreq":"weekly","video":[{"title":"S4:E17 - Episode 74: Right To Remain Silenced","description":"S4:E17 - Episode 74: Right To Remain Silenced","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a611738-20ee-4528-8bbe-0ed7bc442974/sm/ep190.jpg","duration":402,"publication_date":"2006-03-01T00:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-13","changefreq":"weekly","video":[{"title":"S1:E13 - Double Indumbnity - Episode 13","description":"Griggs goes on trial.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5040ea56-792a-4961-8ebb-ac89a7c76e0e/sm/ep189.jpg","duration":306,"publication_date":"2006-02-28T20:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-12","changefreq":"weekly","video":[{"title":"S1:E12 - Surprise Guest - Episode 12","description":"Dutchmiller hosts his own late night show.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc6568e5-3499-47f3-b633-a7821d3e0455/sm/ep188.jpg","duration":231,"publication_date":"2006-02-14T21:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-73","changefreq":"weekly","video":[{"title":"S4:E16 - Episode 73: Under The Weather","description":"S4:E16 - Episode 73: Under The Weather","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ed98075-5750-4f91-b2ba-180308f42d4a/sm/ep187.jpg","duration":354,"publication_date":"2006-02-08T06:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-11","changefreq":"weekly","video":[{"title":"S1:E11 - Cell Block Duh - Episode 11","description":"In a prison cell Griggs meets Tovar and Dutchmiller, acting as his lawyer.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8393a672-dfb7-4340-ad6d-1bf0934f0105/sm/ep186.jpg","duration":231,"publication_date":"2006-01-31T23:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-72","changefreq":"weekly","video":[{"title":"S4:E15 - Episode 72: Getting Debriefed","description":"S4:E15 - Episode 72: Getting Debriefed","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecc655bb-8266-4296-aef7-356c0bfae543/sm/ep185.jpg","duration":274,"publication_date":"2006-01-21T04:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-10","changefreq":"weekly","video":[{"title":"S1:E10 - Devil May Care - Episode 10","description":"As Griggs realizes that he is a wanted man, he gets into a car that he finds. But, first, he stops to consider his options, unaware that a garden gnome is in the seat next to his.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/4d0112e9-d787-41e9-ae21-8e8535a2e415.jpg/sm/sh_ep183.jpg","duration":185,"publication_date":"2006-01-18T02:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-71","changefreq":"weekly","video":[{"title":"S4:E14 - Episode 71: You Keep Using That Word","description":"S4:E14 - Episode 71: You Keep Using That Word","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3829ae1e-05c9-4c7c-82e2-a9d183f0038f/sm/ep182.jpg","duration":319,"publication_date":"2006-01-12T01:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-70","changefreq":"weekly","video":[{"title":"S4:E13 - Episode 70: Sneaking In","description":"S4:E13 - Episode 70: Sneaking In","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5266251-d68e-4054-86b8-3bcfd4a28687/sm/ep180.jpg","duration":232,"publication_date":"2005-12-19T02:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-69","changefreq":"weekly","video":[{"title":"S4:E12 - Episode 69: Talk Of The Town","description":"S4:E12 - Episode 69: Talk Of The Town","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8c8ef8f-adb5-404c-a018-d8de41365030/sm/ep179.jpg","duration":229,"publication_date":"2005-12-12T06:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-68","changefreq":"weekly","video":[{"title":"S4:E11 - Episode 68: Getting All Misty","description":"S4:E11 - Episode 68: Getting All Misty","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4380cca-167d-4162-887a-3b9c186ee82a/sm/ep178.jpg","duration":332,"publication_date":"2005-12-03T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-9","changefreq":"weekly","video":[{"title":"S1:E9 - Detective Defective - Episode 9","description":"Wade finds a pre-built police station and assumes the role of detective. Almost immediately, he sets to work, trying to find clues to solve the murder on Strangerhood Lane.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75235209-c95c-4551-b172-81d8b0745550/sm/ep176.jpg","duration":296,"publication_date":"2005-11-30T02:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-2-trl-video","changefreq":"weekly","video":[{"title":"S2:E1 - TRL Video","description":"S2:E1 - TRL Video","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-2-trl-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57cc37f7-58fc-44e7-9d33-93922f034727/sm/ep175.jpg","duration":125,"publication_date":"2005-11-29T00:48:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-67","changefreq":"weekly","video":[{"title":"S4:E10 - Episode 67: Setting A High Bar","description":"S4:E10 - Episode 67: Setting A High Bar","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff92a0d8-d9e4-4b33-ad3f-629ffe1c60c7/sm/ep173.jpg","duration":262,"publication_date":"2005-11-20T04:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - WSI - Episode 8","description":"Sam and Dr. Chalmers speculate where Strangerhood Lane is located. For unfounded reasons, Dr. Chalmers believes that they are in Cleveland, Ohio.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b9e8b50-c8d0-40b5-a8b3-b875df445ead/sm/ep172.jpg","duration":284,"publication_date":"2005-11-15T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-66","changefreq":"weekly","video":[{"title":"S4:E9 - Episode 66: Exploring Our Differences","description":"S4:E9 - Episode 66: Exploring Our Differences","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8934c58f-566d-4266-a895-665909c2389b/sm/ep171.jpg","duration":216,"publication_date":"2005-11-05T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-halloween-special","changefreq":"weekly","video":[{"title":"S1:E5 - Halloween Special","description":"Halloween Tips, Tricks and Treats from The Strangerhood.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-halloween-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cbce377-4977-4ef4-b302-836e29b1e03e/sm/ep169.jpg","duration":210,"publication_date":"2005-10-29T19:32:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-65","changefreq":"weekly","video":[{"title":"S4:E8 - Episode 65: Looking For Group","description":"S4:E8 - Episode 65: Looking For Group","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/429c932d-84a8-4ca8-95ee-121a778d5f5b/sm/ep168.jpg","duration":246,"publication_date":"2005-10-23T04:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-dinky-doops","changefreq":"weekly","video":[{"title":"S1:E27 - SideScrollers - \"Dinky Doops\"","description":" HOLY CRAP! New Site! We talk a little bit about it today after our livestream tease. We also talk about our time at PAX and some of our favorite games we saw there.","player_loc":"https://roosterteeth.com/embed/sidescrollers-dinky-doops","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2212,"publication_date":"2011-08-30T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/brad-interviews-lauren-part-1","changefreq":"weekly","video":[{"title":"S1:E120 - Brad Interviews Lauren Part 1","description":"Brad introduced you to one of our new interns Chaz but what information can pry out of one of our new writers, Lauren?","player_loc":"https://roosterteeth.com/embed/brad-interviews-lauren-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/193ce5ba-a6c4-4e93-bda9-e8147e2f0302/sm/082511Lauren1.jpg","duration":253,"publication_date":"2011-08-30T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/brad-interviews-lauren-part-2","changefreq":"weekly","video":[{"title":"S1:E119 - Brad Interviews Lauren Part 2","description":"What's Lauren's favorite movie and why does she have her head in a box? Only Brad can find the answers.","player_loc":"https://roosterteeth.com/embed/brad-interviews-lauren-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e760649c-8abb-4199-9e66-43c63ee28de9/sm/082511Lauren2.jpg","duration":126,"publication_date":"2011-08-30T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-seans-cover-letter","changefreq":"weekly","video":[{"title":"S1:E128 - Clip of the Week - Sean's Cover Letter","description":"Interviews can be a really stressful experience... unless you're like Sean and totally ace it.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-seans-cover-letter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":160,"publication_date":"2011-08-30T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-083011","changefreq":"weekly","video":[{"title":"S1:E5 - Hard News 08/30/11","description":"Today on Hard News Modern Warfare has dedication, what you get with the Ambassador Program, and what you can't get at Walmart.","player_loc":"https://roosterteeth.com/embed/hard-news-083011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47c97eb7-8a35-4940-8a23-0b8068c16b82/sm/the-wet-bandits.jpg","duration":152,"publication_date":"2011-08-30T13:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-brain-dead-13","changefreq":"weekly","video":[{"title":"S1:E329 - Video Game Vault - Brain Dead 13","description":"The colorful animated adventure game that takes you through a spooky ca- WHAT IS HE DOING WITH THAT BLENDER??","player_loc":"https://roosterteeth.com/embed/video-game-vault-brain-dead-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":149,"publication_date":"2011-08-30T13:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-donkey-kong-64","changefreq":"weekly","video":[{"title":"S1:E328 - Video Game Vault - Donkey Kong 64","description":"Another Rare platformer, another Rare mystery...","player_loc":"https://roosterteeth.com/embed/video-game-vault-donkey-kong-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-08-30T12:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-daze-before-christmas","changefreq":"weekly","video":[{"title":"S1:E327 - Video Game Vault - Daze Before Christmas","description":"'Twas the Daze Before Christmas on the SNES... heck, even if it's not Christmas when you're reading this, just watch the Vault anyway!","player_loc":"https://roosterteeth.com/embed/video-game-vault-daze-before-christmas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":137,"publication_date":"2011-08-30T12:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mario-party","changefreq":"weekly","video":[{"title":"S1:E326 - Video Game Vault - Mario Party","description":"The board game/video game about skill, chance, and burning holes through your palms.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mario-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":150,"publication_date":"2011-08-30T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-hey-you-pikachu","changefreq":"weekly","video":[{"title":"S1:E325 - Video Game Vault - Hey You, Pikachu!","description":"A game where you do strange things with wild creatures... doesn't that just sound like a blast?","player_loc":"https://roosterteeth.com/embed/video-game-vault-hey-you-pikachu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":186,"publication_date":"2011-08-30T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-video-will-make-you-feel-old","changefreq":"weekly","video":[{"title":"S1:E118 - This Video Will Make You Feel Old","description":"First announced in 1997, Duke Nukem Forever is finally a thing. Over its extended development time, what's changed? Or maybe a scarier question to ask... what hasn't? If you nostalgia, you lose!","player_loc":"https://roosterteeth.com/embed/this-video-will-make-you-feel-old","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":201,"publication_date":"2011-08-30T11:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2011-chicken-nugget-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E117 - 2011 Chicken Nugget Eating Challenge","description":"OMG. The first video to take place in the new HQ! We start things off right by inaugurating our News Director Sean Hinz in an all-new Chicken Nugget Eating Challenge against Brad!\r\nStay up-to-date with Sean on his Twitter account here: http://twitter.com/#!/speedracerUNT","player_loc":"https://roosterteeth.com/embed/2011-chicken-nugget-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":218,"publication_date":"2011-08-30T11:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-@-the-movies-tekken-blood-vengeance","changefreq":"weekly","video":[{"title":"S1:E116 - ScrewAttack @ The Movies - Tekken: Blood Vengeance","description":"When a video game film is in theaters for one day only, we HAVE to be there... and you joined us! Bad movie or not, it's always a blast when all of us can get together. Thanks for a great time, g1s!","player_loc":"https://roosterteeth.com/embed/screwattack-@-the-movies-tekken-blood-vengeance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":223,"publication_date":"2011-08-30T11:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-ms-splosion-man","changefreq":"weekly","video":[{"title":"S1:E115 - How Many Lives? - Ms. 'Splosion Man","description":"This time on How Many Lives?, Ben and Chad must rely on not only their own skills, but on each other's as well. Will the two of them be able to make it through a level of Ms. 'Splosion Man? And how much death will it take to get there?","player_loc":"https://roosterteeth.com/embed/how-many-lives-ms-splosion-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":318,"publication_date":"2011-08-30T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-cruisn-exotica","changefreq":"weekly","video":[{"title":"S1:E324 - Video Game Vault - Cruis'n Exotica","description":"A bland Cruis'n game is bland music, gameplay, and unlockables. Yeah, it just sucks.","player_loc":"https://roosterteeth.com/embed/video-game-vault-cruisn-exotica","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9059f988-e87f-4c81-ada8-6e8b508ff700/sm/cruisn-exotica.gif","duration":80,"publication_date":"2011-08-30T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-survivor-man-nicks-guide-to-offices","changefreq":"weekly","video":[{"title":"S1:E127 - Clip of the Week - Survivor Man Nick's Guide to Offices","description":"Jungles? Deserts? PLEASE... anybody who's anybody knows that your run-of-the-mill office is the harshest environment you can tackle. Just watch out for camera-hogging interns.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-survivor-man-nicks-guide-to-offices","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":195,"publication_date":"2011-08-30T09:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wrestlemania","changefreq":"weekly","video":[{"title":"S1:E323 - Video Game Vault - Wrestlemania","description":" We thank Wrestlemania for paving the way for newer, better wrestling games.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wrestlemania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09c5716a-c462-4cc5-95a9-68c8ae5f32e5/sm/WWF_NES.png","duration":104,"publication_date":"2011-08-29T21:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/evo-2011-talking-skullgirls","changefreq":"weekly","video":[{"title":"S1:E113 - EVO 2011 - Talking Skullgirls","description":"While at EVO 2011, Craig and Chad got a chance to talk to the lead designer of the upcoming fighter, Skullgirls, Mike Z. What is this game all about and what are they doing about infinites?","player_loc":"https://roosterteeth.com/embed/evo-2011-talking-skullgirls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aff5c3c2-a506-439c-8494-6e3bbe37b791/sm/pax-east-2011-skullgirls-logo.jpg","duration":157,"publication_date":"2011-08-29T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-goes-to-quakecon-11-pt-2","changefreq":"weekly","video":[{"title":"S1:E112 - Unaware Steve goes to Quakecon '11 Pt. 2","description":"What's going on at QuakeCon this time? Boobs.","player_loc":"https://roosterteeth.com/embed/unaware-steve-goes-to-quakecon-11-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54732f25-62dd-449d-80ae-51f822b5c66a/sm/348515.jpg","duration":179,"publication_date":"2011-08-29T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/unaware-steve-goes-to-quakecon-11-pt-1","changefreq":"weekly","video":[{"title":"S1:E111 - Unaware Steve goes to Quakecon '11 Pt. 1","description":"A lot of people always turn out for Quakecon and know what's up, but not Steve.","player_loc":"https://roosterteeth.com/embed/unaware-steve-goes-to-quakecon-11-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3756998-951a-41c9-80dd-94210d6f3c80/sm/348509.jpg","duration":244,"publication_date":"2011-08-29T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hard-news-082911","changefreq":"weekly","video":[{"title":"S1:E4 - Hard News 08/29/11","description":"Today on Hard News Gears of War 3 is ready for the season, Skyward Sword is coming with a soundtrack, and will Mickey be epic again?\r\nGears of War 3 Season Pass - http://screwattack.com/blogs/ScrewAttack-News/Microsoft-introduces-the-Gears-of-War-3-Season-Pass\r\nEpic Mickey 2 - http://screwattack.com/blogs/ScrewAttack-News/Is-Epic-Mickey-2-in-development\r\nZelda Skyward Sword Bundle - http://screwattack.com/blogs/ScrewAttack-News/Zelda-Skyward-Sword-gets-golden-bundle\r\nFollow us on Twitter and like us on Facebook!\r\nTwitter - @ProJared and @ScrewAttack\r\nFacebook Jared - Http://www.facebook.com/Pro.Jared\r\nFacebook ScrewAttack - Http://www.facebook.com/OfficialSA","player_loc":"https://roosterteeth.com/embed/hard-news-082911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/824b7000-e273-4729-a4f6-bc027db4fe26/sm/orig_29332_1_1314635031.jpg","duration":140,"publication_date":"2011-08-29T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/chun-li-vs-mai-shiranui-death-battle","changefreq":"weekly","video":[{"title":"S1:E16 - Chun-Li VS Mai Shiranui","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/chun-li-vs-mai-shiranui-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/766c6052-26a8-4989-9f38-9ae351e28c83/sm/video_thumbnail_70307.jpg","duration":420,"publication_date":"2011-08-29T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-08-24-11-the-big-announcement","changefreq":"weekly","video":[{"title":"S1:E26 - SideScrollers - 08.24.11 \"The Big Announcement\"","description":" After a week or rumors and speculation Craig, Jared, and Chad are here to fill you in on the future of ScrewAttack and the wonderful things ahead for gamers everywhere.","player_loc":"https://roosterteeth.com/embed/sidescrollers-08-24-11-the-big-announcement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":3232,"publication_date":"2011-08-26T08:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-08-17-11-rock-on-lady","changefreq":"weekly","video":[{"title":"S1:E25 - SideScrollers - 08.17.11 'Rock On, Lady'","description":"There is HUGE news coming around the corner. Some of it is talked about today, some of it comes later this week, but the biggest is a week away...\r\n( AUDIO LINK - http://traffic.libsyn.com/sidescrollers/SideScrollersAudio081711.mp3 )\r\nCheck out the videos mentioned by following the links below!\r\nUnaware Steve at QuakeCon 2011 - http://bit.ly/ngDXIu\r\nIron Man of Gaming Returns - http://bit.ly/ogTev4\r\nClip of the Week: Sean's Cover Letter - http://bit.ly/p3HA9Y\r\nWanna be a part of the ANGRY VIDEO GAME NERD Movie!? - http://bit.ly/r7HUvk\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/StutteringCraig\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared ","player_loc":"https://roosterteeth.com/embed/sidescrollers-08-17-11-rock-on-lady","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2801,"publication_date":"2011-08-26T08:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sidescrollers-08-10-11-nubbie","changefreq":"weekly","video":[{"title":"S1:E24 - SideScrollers - 08.10.11 \"Nubbie\"","description":"We're almost all moved in, so it's back to normal this week with a full-length SideScrollers, and the most Florida-filled Newsdesk ever!\r\nAUDIO LINK - (http://traffic.libsyn.com/sidescrollers/SideScrollersAudio081011.mp3)\r\nCheck out our Twitter feeds!\r\nCraig - http://www.twitter.com/StutteringCraig\r\nChad - http://www.twitter.com/screwattackchad\r\nJared - http://www.twitter.com/projared","player_loc":"https://roosterteeth.com/embed/sidescrollers-08-10-11-nubbie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":2612,"publication_date":"2011-08-26T08:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-batman-nes","changefreq":"weekly","video":[{"title":"S1:E322 - Video Game Vault - Batman (NES)","description":"Handsome Tom takes you through the Caped Crusader's first, and best, adventure on the NES. Where does he get those wonderful toys?","player_loc":"https://roosterteeth.com/embed/video-game-vault-batman-nes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd880d28-7ab5-4b94-9bb8-adef57b58aff/sm/Batman_NES_ScreenShot1.gif","duration":137,"publication_date":"2011-08-25T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rbi-baseball","changefreq":"weekly","video":[{"title":"S1:E321 - Video Game Vault - RBI Baseball","description":"Still a great American past time for a Nintendo game and still better than real baseball.","player_loc":"https://roosterteeth.com/embed/video-game-vault-rbi-baseball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e52a4c70-feb1-4316-ba1d-2a60725b36dc/sm/zrbiscreen.gif","duration":114,"publication_date":"2011-08-25T10:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-bowsers-lost","changefreq":"weekly","video":[{"title":"S1:E126 - Clip of the Week - Bowser's Lost","description":"Craig's on vacation and for some reason left the care of his dog, Bowser, to Nick. Naturally, he's now gone without a trace...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-bowsers-lost","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":204,"publication_date":"2011-08-24T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-worlds-shortest-elevator-ride","changefreq":"weekly","video":[{"title":"S1:E110 - The World's Shortest Elevator Ride","description":"\"This elevator ride is soooo short.\" \"How short is it?\"","player_loc":"https://roosterteeth.com/embed/the-worlds-shortest-elevator-ride","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":33,"publication_date":"2011-08-22T15:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2011-4th-of-july-break-stuff-day","changefreq":"weekly","video":[{"title":"S1:E109 - The 2011 4th of July Break Stuff Day","description":"Continuing the tradition of blowing things up on July 4th after our hometown team, the Dallas Mavericks, fail in the playoffs the guys actually have something to cheer about this year - a championship!","player_loc":"https://roosterteeth.com/embed/the-2011-4th-of-july-break-stuff-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":92,"publication_date":"2011-08-22T15:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattacks-dance-central-ad","changefreq":"weekly","video":[{"title":"S1:E108 - ScrewAttack's Dance Central Ad","description":"We know what it's gonna take to get you to buy Dance Central.","player_loc":"https://roosterteeth.com/embed/screwattacks-dance-central-ad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf10dbbe-c0dd-4633-af45-cc269e676e7f/sm/332167.jpg","duration":19,"publication_date":"2011-08-22T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/checking-out-duke-at-gearbox","changefreq":"weekly","video":[{"title":"S1:E107 - Checking Out Duke at Gearbox","description":"Gearbox had been working on Duke Nukem Forever when it finally made it into their hands and they wanted to show off what they had. So Destin headed to Plano to see what all the hubbub was.","player_loc":"https://roosterteeth.com/embed/checking-out-duke-at-gearbox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":171,"publication_date":"2011-08-22T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/street-fighter-4-national-championship-plano-texas-regional-round","changefreq":"weekly","video":[{"title":"S1:E106 - Street Fighter 4 National Championship (Plano, Texas Regional Round)","description":"Some of the crew made it past the first round in the national Street Fighter 4 competition, but did they go any further?","player_loc":"https://roosterteeth.com/embed/street-fighter-4-national-championship-plano-texas-regional-round","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":183,"publication_date":"2011-08-22T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/tom-and-craig-get-a-part-in-farcry","changefreq":"weekly","video":[{"title":"S1:E105 - Tom and Craig Get a Part in Farcry","description":"Uwe Boll said if someone would put up the money to get there he would cast them in the Farcry movie. Craig and Tom got that money, so they got their time in front of Uwe's camera.","player_loc":"https://roosterteeth.com/embed/tom-and-craig-get-a-part-in-farcry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":141,"publication_date":"2011-08-22T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pimp-yo-place-pt-1","changefreq":"weekly","video":[{"title":"S1:E104 - Pimp Yo Place Pt. 1","description":"MarzGurl won our arcade cabinet but she kinda lived on the other side of Texas from ScrewAttack. A deal is a deal so Craig and Jose went down to San Antonio to deliver her prize.","player_loc":"https://roosterteeth.com/embed/pimp-yo-place-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":128,"publication_date":"2011-08-22T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/isaac-clark-skates-skate-3","changefreq":"weekly","video":[{"title":"S1:E103 - Isaac Clark Skates Skate 3","description":"Some of the coolest stuff in games is the stuff you don't see right off the bat, like hidden characters, like Isaac in Skate 3","player_loc":"https://roosterteeth.com/embed/isaac-clark-skates-skate-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":148,"publication_date":"2011-08-22T14:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-dead-posse","changefreq":"weekly","video":[{"title":"S1:E102 - Red Dead Posse","description":"Three crazy outlaws form a legendary gang and search for a rare treasure in the wild west.","player_loc":"https://roosterteeth.com/embed/red-dead-posse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":422,"publication_date":"2011-08-22T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nba-jam-then-and-now","changefreq":"weekly","video":[{"title":"S1:E101 - NBA Jam - Then and Now","description":"Sure the \"legends\" may be great but are they as good as we remember? Craig looks at how the legends stats stack up in the new Jam as compared to the old school Jam.","player_loc":"https://roosterteeth.com/embed/nba-jam-then-and-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":158,"publication_date":"2011-08-22T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/la-noire-its-all-in-the-eyes","changefreq":"weekly","video":[{"title":"S1:E100 - LA Noire - It's All in the Eyes","description":"A good cop can read a man like an open book, but what does that cop do when he can't even get past the cover?","player_loc":"https://roosterteeth.com/embed/la-noire-its-all-in-the-eyes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feee908b-c0bc-41d6-b68d-cffefab37b5f/sm/324273.jpg","duration":150,"publication_date":"2011-08-22T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bryans-yoga-quest","changefreq":"weekly","video":[{"title":"S1:E99 - Bryan's Yoga Quest","description":"Every kid had a crazy dream or wanted to be a certain cartoon/game/movie character. For awhile, Bryan really wanted to be Dhalsim, and just recently he found out it's not as easy as it looks.","player_loc":"https://roosterteeth.com/embed/bryans-yoga-quest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":159,"publication_date":"2011-08-22T14:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-impossible-mission-2","changefreq":"weekly","video":[{"title":"S1:E320 - Video Game Vault - Impossible Mission 2","description":"Handsome Tom's first entry into the Video Game Vault remembers the game that needs to be forgotten.","player_loc":"https://roosterteeth.com/embed/video-game-vault-impossible-mission-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":92,"publication_date":"2011-08-22T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-q*bert","changefreq":"weekly","video":[{"title":"S1:E319 - Video Game Vault - Q*Bert","description":"An arcade icon long forgotten.","player_loc":"https://roosterteeth.com/embed/video-game-vault-q*bert","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91b6a42e-a9ee-4e20-a87e-e7d5fa32eac5/sm/qbert.gif","duration":107,"publication_date":"2011-08-22T13:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-balloon-fight","changefreq":"weekly","video":[{"title":"S1:E318 - Video Game Vault - Balloon Fight","description":"A first generation game for the NES, Balloon Fight has stood the test of time. It's just f'n fun.","player_loc":"https://roosterteeth.com/embed/video-game-vault-balloon-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82a75e99-57d6-4d66-879c-8a31ee5da863/sm/balloon-fight.e_00.png","duration":82,"publication_date":"2011-08-22T13:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-bubble-bobble","changefreq":"weekly","video":[{"title":"S1:E317 - Video Game Vault - Bubble Bobble","description":"Two cute dragons spitting bubbles that turn monsters into various fruit... The NES at its finest.","player_loc":"https://roosterteeth.com/embed/video-game-vault-bubble-bobble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2b31606-3853-42ed-a0a3-5f25370d6eb8/sm/bubble-bobble.jpg","duration":94,"publication_date":"2011-08-22T12:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-5","changefreq":"weekly","video":[{"title":"S1:E316 - Video Game Vault - Mega Man 5","description":"With a new Blue Bomber game on the way it's time to recall his second to last game on the NES.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fea64bf1-934b-494d-a429-585ca5a438ac/sm/MegaMan5_1.jpg","duration":136,"publication_date":"2011-08-22T12:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/welcome-to-natal","changefreq":"weekly","video":[{"title":"S1:E98 - Welcome to Natal","description":"Welcome to a new world of gaming. Welcome to Natal.","player_loc":"https://roosterteeth.com/embed/welcome-to-natal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":199,"publication_date":"2011-08-22T12:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-arkanoid","changefreq":"weekly","video":[{"title":"S1:E315 - Video Game Vault - Arkanoid","description":"How can a game about breaking blocks with balls be fun? That's easy... it teaches you sexual skills.","player_loc":"https://roosterteeth.com/embed/video-game-vault-arkanoid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/555bcf74-899a-4477-b6e5-7656b80a31e1/sm/118124204856.png","duration":84,"publication_date":"2011-08-22T12:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-insane-f-zero-jump","changefreq":"weekly","video":[{"title":"S1:E97 - The Insane F-Zero Jump","description":"Game Genies make all things possible, you'll even learn a thing or two about games you've played for years...","player_loc":"https://roosterteeth.com/embed/the-insane-f-zero-jump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":72,"publication_date":"2011-08-22T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-once-again-every-now-and-then-mario-kart-64-challenge","changefreq":"weekly","video":[{"title":"S1:E96 - The Once Again Every Now and Then Mario Kart 64 Challenge","description":"There was Jose, and there was snow. A challenge had to happen!","player_loc":"https://roosterteeth.com/embed/the-once-again-every-now-and-then-mario-kart-64-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":360,"publication_date":"2011-08-22T12:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jareds-never-used-a-snes-game-genie","changefreq":"weekly","video":[{"title":"S1:E95 - Jared's Never Used a SNES Game Genie?!?","description":"Evidently Jared missed one of the joys of gaming in the 16 bit days: seeing how much you can mess with a game. Since we have a Game Genie we felt compelled to fill in his childhood.","player_loc":"https://roosterteeth.com/embed/jareds-never-used-a-snes-game-genie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":193,"publication_date":"2011-08-22T12:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tmnt-2-the-arcade-game","changefreq":"weekly","video":[{"title":"S1:E314 - Video Game Vault - TMNT 2: The Arcade Game","description":"An all time arcade and NES classic, TMNT: The Arcade Game made anyone who played it say \"Tubular Dudes!\"","player_loc":"https://roosterteeth.com/embed/video-game-vault-tmnt-2-the-arcade-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca4e8cc8-88ee-4365-ae0a-cbc292499c42/sm/nes_tmnt2_1.jpg","duration":100,"publication_date":"2011-08-22T12:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/space-jam","changefreq":"weekly","video":[{"title":"S1:E94 - Space Jam","description":"Bryan likes a couple games from EA, Dead Space and NBA Jam. He also wondered what would happen if you put the two together...","player_loc":"https://roosterteeth.com/embed/space-jam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":106,"publication_date":"2011-08-22T12:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-whomp-em","changefreq":"weekly","video":[{"title":"S1:E313 - Video Game Vault - Whomp 'Em","description":"This crazy Native American showed us some good times. It's a shame more gamers didn't get a chance to experience it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-whomp-em","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9da9a7d-8725-43a3-b007-18d17520f2ae/sm/Whomp%27Em.gif","duration":84,"publication_date":"2011-08-22T12:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-punisher-nes","changefreq":"weekly","video":[{"title":"S1:E312 - Video Game Vault - The Punisher (NES)","description":"When the highlight of a game is a dying saxophone player, you know your in for an embarrassment.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-punisher-nes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07d9e2f4-7ec3-401f-8c1c-3f89be353c50/sm/images-8.jpg","duration":83,"publication_date":"2011-08-22T12:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-hard-corps-uprising-jose","changefreq":"weekly","video":[{"title":"S1:E93 - How Many Lives Hard Corps: Uprising - Jose","description":"Jose isn't the most experienced when it comes to platformers and old school games, but if there's a gun in his hand he knows what to do. Does he know enough to defeat Craig and Jared?","player_loc":"https://roosterteeth.com/embed/how-many-lives-hard-corps-uprising-jose","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":120,"publication_date":"2011-08-22T12:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-little-nemo-the-dream-master","changefreq":"weekly","video":[{"title":"S1:E311 - Video Game Vault - Little Nemo: The Dream Master","description":"Known for it's other franchises, Capcom's Little Nemo was one of the best games on the NES. No, we're not kidding.","player_loc":"https://roosterteeth.com/embed/video-game-vault-little-nemo-the-dream-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-22T12:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/we-make-interns-earn-it","changefreq":"weekly","video":[{"title":"S1:E92 - We Make Interns Earn It","description":"We make all our interns earn their position at ScrewAttack, even if it means doing something potentially life threatening, like Mark here.","player_loc":"https://roosterteeth.com/embed/we-make-interns-earn-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":136,"publication_date":"2011-08-22T12:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-4","changefreq":"weekly","video":[{"title":"S1:E310 - Video Game Vault - Mega Man 4","description":"Even after three highly successful games and adding the Mega Buster to the series, gamers could see what was going on - Mega Man was getting stale.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/413b6a0b-9237-485c-8394-e6f748c1f3a6/sm/Mega_Man_4_NES_Title-Screen.jpg","duration":120,"publication_date":"2011-08-22T11:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-3","changefreq":"weekly","video":[{"title":"S1:E309 - Video Game Vault - Mega Man 3","description":"Some consider it the top of the mountain of the Mega Man series. We consider it one of the best games of all time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03eb74b2-ef96-4484-8af0-0c74649fa7b4/sm/megaman-3-title-screen.gif","duration":140,"publication_date":"2011-08-22T11:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-2","changefreq":"weekly","video":[{"title":"S1:E308 - Video Game Vault - Mega Man 2","description":"After the success of the first Mega Man, could the series get better? Hell yes.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":146,"publication_date":"2011-08-22T11:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man","changefreq":"weekly","video":[{"title":"S1:E307 - Video Game Vault - Mega Man","description":"Make no bones about it, gamers should not remember Mega Man for what he is now, but for his legendary status on the NES.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a62b42a-4de7-4066-9a81-7e28ca401378/sm/start1.gif","duration":159,"publication_date":"2011-08-22T11:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mickey-mousecapade","changefreq":"weekly","video":[{"title":"S1:E306 - Video Game Vault - Mickey Mousecapade","description":"One of the first attempts at a video game for the most famous mouse in the world turned out to be pretty damn cool.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mickey-mousecapade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08f48e0d-c5f7-4863-81f1-0fcc398725fa/sm/mickey_mousecapade.png","duration":123,"publication_date":"2011-08-22T11:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-astyanax","changefreq":"weekly","video":[{"title":"S1:E305 - Video Game Vault - Astyanax","description":"A game about a sixteen year old kid beating some ass with an axe. It's so cool we had to put it in our Video Game Vault intro.","player_loc":"https://roosterteeth.com/embed/video-game-vault-astyanax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1686b6cf-979e-4151-9e3f-3b81e9927ddf/sm/Astyanax.gif","duration":80,"publication_date":"2011-08-22T11:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-excitebike","changefreq":"weekly","video":[{"title":"S1:E304 - Video Game Vault - Excitebike","description":"One of the first games to allow you design your own tracks, Excitebike was way ahead of it's time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-excitebike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/847d94c3-03ce-4f87-a31a-30f95d54a26e/sm/Excitebike.gif","duration":85,"publication_date":"2011-08-22T11:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-bad-dudes","changefreq":"weekly","video":[{"title":"S1:E303 - Video Game Vault - Bad Dudes","description":"Two dudes beating up on ninjas, drinking soft drinks and saving presidents. Are you bad enough to play this game?","player_loc":"https://roosterteeth.com/embed/video-game-vault-bad-dudes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e338ba08-cc58-4caa-83cb-eae41235f53b/sm/Bad_Dudes_-_NES_-_Title.png","duration":114,"publication_date":"2011-08-22T11:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-karnov","changefreq":"weekly","video":[{"title":"S1:E302 - Video Game Vault - Karnov","description":"The best fat, bald, russian/asian video game mascot of all time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-karnov","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e0f997f-8cdd-47d4-82d3-b1f2d7ba391c/sm/karnov-screenshot-001.png","duration":99,"publication_date":"2011-08-22T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-robocop","changefreq":"weekly","video":[{"title":"S1:E301 - Video Game Vault - Robocop","description":"The ultimate cop comes to the NES with one goal in mind: beat the crap out of helpless neighborhoods.","player_loc":"https://roosterteeth.com/embed/video-game-vault-robocop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8949486-a43b-46bf-9842-9c3d7cbd228a/sm/Robocop.gif","duration":123,"publication_date":"2011-08-22T11:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ghosts-n-goblins","changefreq":"weekly","video":[{"title":"S1:E300 - Video Game Vault - Ghosts 'n Goblins","description":"One of the hardest games ever to be put out, Ghosts 'N Goblins is also one of the best.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ghosts-n-goblins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40e55b47-a5b0-4ac6-bf84-e07f227cb07f/sm/Ghosts_%27N_Goblins_-_NES_-_Title.png","duration":114,"publication_date":"2011-08-22T11:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-spy-hunter","changefreq":"weekly","video":[{"title":"S1:E299 - Video Game Vault - Spy Hunter","description":"Some would label Spy Hunter one of the best of all-time. They obviously haven't played it lately.","player_loc":"https://roosterteeth.com/embed/video-game-vault-spy-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/729fe5d4-995c-428a-8c08-a2d91d980b60/sm/spy_hunter_backglass.jpg","duration":113,"publication_date":"2011-08-22T11:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-contra-force","changefreq":"weekly","video":[{"title":"S1:E298 - Video Game Vault - Contra Force","description":"One of the classic early 8-bit series...that went totally down the crapper with this game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-contra-force","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59656232-30c4-4571-9bf0-a02c7e683992/sm/Contra_Force_NES_ScreenShot1.gif","duration":123,"publication_date":"2011-08-22T11:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-big-nose-the-caveman","changefreq":"weekly","video":[{"title":"S1:E297 - Video Game Vault - Big Nose the Caveman","description":"Most unlicensed games just plain suck, but Handsome Tom is here to tell you that this Hanna-Barbera knock off is not as craptastic as you might think.","player_loc":"https://roosterteeth.com/embed/video-game-vault-big-nose-the-caveman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbf8b697-bb3b-467e-947c-b33a1a8ec253/sm/title-1.png","duration":139,"publication_date":"2011-08-22T10:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-3d-worldrunner","changefreq":"weekly","video":[{"title":"S1:E296 - Video Game Vault - 3D WorldRunner","description":"Often overlooked and always under-appreciated, 3D WorldRunner needs to get some love! Stuttering Craig explains why 3D is a good thing.","player_loc":"https://roosterteeth.com/embed/video-game-vault-3d-worldrunner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/987970e7-7d3c-43b7-b607-20c33ace7c1e/sm/images-7.jpg","duration":117,"publication_date":"2011-08-22T10:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wrecking-crew","changefreq":"weekly","video":[{"title":"S1:E295 - Video Game Vault - Wrecking Crew","description":"Would you believe this is a Mario game? Why is Luigi dressed in purple? This game is labeled a \"classic\" but don't get classic confused with old.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wrecking-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2920a49-d505-4b62-a6c7-e6642fbefeaa/sm/wrecking-crew-screenshot-001.png","duration":89,"publication_date":"2011-08-22T10:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ristar","changefreq":"weekly","video":[{"title":"S1:E294 - Video Game Vault - Ristar","description":"Retro is rad! Stuttering Craig introduces you to \"the next Sonic\"...that just never became the next Sonic.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ristar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6919f025-730b-4237-8fdc-6cd7ab3348f5/sm/Ristar_final.PNG","duration":140,"publication_date":"2011-08-22T10:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-soccer","changefreq":"weekly","video":[{"title":"S1:E293 - Video Game Vault - Super Soccer","description":"If the world's most popular sport was changed to be just like Super Soccer it would still suck.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-soccer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f651484-e2e8-4363-a2f9-c13ac1b405fe/sm/images-6.jpg","duration":102,"publication_date":"2011-08-22T09:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-growl","changefreq":"weekly","video":[{"title":"S1:E292 - Video Game Vault - Growl","description":"A beat 'em up about kicking women's ass and saving wild animals. Wow... just... wow.","player_loc":"https://roosterteeth.com/embed/video-game-vault-growl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/483aa498-8eef-4b3a-b866-1f950050c9bb/sm/images-5_0.jpg","duration":140,"publication_date":"2011-08-22T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-poke-ball-pokemon-series","changefreq":"weekly","video":[{"title":"S1:E8 - The Armory - The Poke Ball (Pokemon Series)","description":"Somehow enslaving small animals is attractive to children but lets take a closer look at why this ball is evil, yet effective.","player_loc":"https://roosterteeth.com/embed/the-armory-the-poke-ball-pokemon-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e00e8ab-45d2-4a24-b832-ef17ba8560a0/sm/Pokeball.jpg","duration":120,"publication_date":"2011-08-22T08:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-annihilator-grand-theft-auto","changefreq":"weekly","video":[{"title":"S1:E10 - The Armory - Annihilator (Grand Theft Auto)","description":"The game may not have that many unique weapons, so sometimes you need to get inventive, and use a helicopter.","player_loc":"https://roosterteeth.com/embed/the-armory-annihilator-grand-theft-auto","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28f9f0f0-49a0-43dc-bd1a-910acaabddd4/sm/Annihilator.jpg","duration":141,"publication_date":"2011-08-22T07:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-plasmids-bioshock","changefreq":"weekly","video":[{"title":"S1:E11 - The Armory - Plasmids (Bioshock)","description":"The series that throws all morality out the window and allows you to do anything you want, gets a gene altering compound added to the armory.","player_loc":"https://roosterteeth.com/embed/the-armory-plasmids-bioshock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/002da1ca-b34d-47a8-9c94-5cc3516b5db1/sm/Plasmids.jpg","duration":138,"publication_date":"2011-08-22T07:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-taser-syphon-filter","changefreq":"weekly","video":[{"title":"S1:E18 - The Armory - The Taser (Syphon Filter)","description":"You could be a football field away and still manage to hit someone with this weapon and send enough voltage through their body to make them burst into flames. Sounds pretty fun to me.","player_loc":"https://roosterteeth.com/embed/the-armory-the-taser-syphon-filter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3baed3e4-b7c1-4571-b22a-f925d4ad7edf/sm/Taser.jpg","duration":164,"publication_date":"2011-08-22T06:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-nintendo-wiimote-nintendo-wii","changefreq":"weekly","video":[{"title":"S1:E19 - The Armory - Nintendo Wiimote (Nintendo Wii)","description":"Its caused injuries, broken our televisions and even killed a small dog. I think it's time to put it somewhere safe, before it does any more damage.\r\n\t ","player_loc":"https://roosterteeth.com/embed/the-armory-nintendo-wiimote-nintendo-wii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf5949d-f826-4f53-8f22-c5803d226f64/sm/Wiimote.jpg","duration":152,"publication_date":"2011-08-22T06:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-flashback","changefreq":"weekly","video":[{"title":"S1:E125 - Clip of the Week - Flashback","description":"With ScrewAttack relocating to a bigger, better HQ, it's time to give the old one a proper send-off.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-flashback","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":320,"publication_date":"2011-08-21T17:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1","changefreq":"weekly","video":[{"title":"S1:E91 - How to With Chad - NES Repair","description":" Today I show you how to replace the 72-pin connector in an NES! With just a replacement part and a screwdriver your NES will work like new!\r\n72-Pin Connector - http://tiny.cc/xskjfw","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b114e5d-2abd-41db-a724-1c2eb42e30eb/sm/video_thumbnail_897806.jpeg","duration":310,"publication_date":"2011-08-20T09:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-a-to-z","changefreq":"weekly","video":[{"title":"S1:E124 - Clip of the Week - A to Z","description":" Yeah, the Dead Island trailer was really cool, but we've suffered a chain of events far worse than a zombie outbreak.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-a-to-z","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":311,"publication_date":"2011-08-19T15:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-everyone-is-doing-it","changefreq":"weekly","video":[{"title":"S1:E123 - Clip of the Week - Everyone is Doing It","description":" See, Call of Duty? We can make sexual innuendos too.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-everyone-is-doing-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":109,"publication_date":"2011-08-19T15:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-club-mario","changefreq":"weekly","video":[{"title":"S1:E122 - Clip of the Week - Club Mario","description":"When the Super Mario Super Show got replaced by Club Mario in the 90's, we replaced our own shows with 90's versions of themselves. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-club-mario","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":177,"publication_date":"2011-08-19T15:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-california","changefreq":"weekly","video":[{"title":"S1:E121 - Clip of the Week - California","description":" Destin's leaving ScrewAttack for a job in California. Watch his journey unfold before you!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-california","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":176,"publication_date":"2011-08-19T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/metal-gear-ben-origins-2","changefreq":"weekly","video":[{"title":"S1:E2 - Metal Gear Ben: Origins 2","description":"Metal Gear Ben's second epic adventure! ","player_loc":"https://roosterteeth.com/embed/metal-gear-ben-origins-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cded8328-1d30-43d8-9509-5f72b57b5740/sm/ben.jpg","duration":144,"publication_date":"2011-08-19T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-best-dream-ever","changefreq":"weekly","video":[{"title":"S1:E120 - Clip of the Week - Best Dream Ever","description":"Ever dream about working at ScrewAttack? Allow us to crush those dreams.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-best-dream-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":105,"publication_date":"2011-08-19T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/metal-gear-ben-origins","changefreq":"weekly","video":[{"title":"S1:E1 - Metal Gear Ben: Origins","description":" The original classic that started it all!","player_loc":"https://roosterteeth.com/embed/metal-gear-ben-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6d662a0-bf95-472e-9a54-9c7c6e9f5c24/sm/images.jpeg","duration":139,"publication_date":"2011-08-19T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-end-is-here","changefreq":"weekly","video":[{"title":"S1:E119 - Clip of the Week - The End is Here","description":" The Rapture is coming! They promise it and everything! It's cool. We got it handled.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-end-is-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":132,"publication_date":"2011-08-19T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-they-would-like-to-play","changefreq":"weekly","video":[{"title":"S1:E118 - Clip of the Week - They Would Like to Play","description":"Never trust two guys showing up at your house asking to play. They're like those uninvited guys at a party who only want to break stuff.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-they-would-like-to-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":137,"publication_date":"2011-08-19T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-careful-what-you-wish-for","changefreq":"weekly","video":[{"title":"S1:E117 - Clip of the Week - Careful What You Wish For","description":" We all dream about how cool it would be to have power ups from video games. The thing is, those things come with a price.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-careful-what-you-wish-for","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":140,"publication_date":"2011-08-19T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-filling-in","changefreq":"weekly","video":[{"title":"S1:E116 - Clip of the Week - Filling In","description":" With a lot of people gone in Las Vegas, somebody has to fill in their roles around the office.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-filling-in","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":229,"publication_date":"2011-08-19T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-guitar-hiro-part-2","changefreq":"weekly","video":[{"title":"S1:E115 - Clip of the Week - Guitar Hiro (Part 2)","description":" Chad has obtained the power of Guitaroomon! Combine forces to special power attack bad enemies!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-guitar-hiro-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":128,"publication_date":"2011-08-19T15:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-wee-mote","changefreq":"weekly","video":[{"title":"S1:E114 - Clip of the Week - Wee Mote","description":" Nothing ruins gaming sessions more than having to go to the stupid bathroom. We have created a solution.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-wee-mote","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":98,"publication_date":"2011-08-19T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-video-gear-command-center","changefreq":"weekly","video":[{"title":"S1:E113 - Clip of the Week - Video Gear Command Center","description":"Nick was so excited to get his own Video Gear Command Center. You should've seen his face when his little hear broke. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-video-gear-command-center","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":131,"publication_date":"2011-08-19T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-twitter","changefreq":"weekly","video":[{"title":"S1:E112 - Clip of the Week - Twitter","description":"Twitter is a social networking sensation, so we use our superior technology to hook up Twitter right into Jose's brain. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-twitter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":211,"publication_date":"2011-08-19T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-turkish-oil-wrestling","changefreq":"weekly","video":[{"title":"S1:E111 - Clip of the Week - Turkish Oil Wrestling","description":" Hakan in Super Street Fighter IV gave Jose the inspiration to try Turkish oil wrestling! But without the oil. Or the Turkish. Or professional experience.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-turkish-oil-wrestling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-08-19T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-testee","changefreq":"weekly","video":[{"title":"S1:E110 - Clip of the Week - The Testee","description":" After Sony announced their reality game show, \"The Tester\", we know Microsoft would respond. We also auditioned for them.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-testee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":360,"publication_date":"2011-08-19T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-15","changefreq":"weekly","video":[{"title":"2015:E6 - Maere","description":"Joel & Adam were unable to record this week so, we're putting out a previously unreleased episode. You can see all the weight Adam lost, then redistributed to his beard. Thanks for understanding.","player_loc":"https://roosterteeth.com/embed/how-to-2015-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd404878-7c2a-4b96-8fad-db7b92253a9b/sm/ep10352.jpg","duration":777,"publication_date":"2015-02-05T16:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-14","changefreq":"weekly","video":[{"title":"2015:E5 - Achievement HUNT #67","description":"This week's HUNT brings you Geoff vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dae099f-db59-4bca-b008-cbec3ac15596/sm/ep10350.jpg","duration":386,"publication_date":"2015-02-04T21:41:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-24","changefreq":"weekly","video":[{"title":"2015:E10 - Minecraft - Neigh Slayers X","description":"The AH Crew is back playing Neigh Slayers X in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32deb989-cacb-4e2b-bc6a-531c51141985/sm/ep10349.jpg","duration":708,"publication_date":"2015-02-04T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-dying-light","changefreq":"weekly","video":[{"title":"IA:E26 - Dying Light","description":"Jeremy and Geoff are playing Dying Light to get two Imaginary Achievements related to some cool easter eggs hidden in this chaotic, zombie-filled world.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-dying-light","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2154d2a-276a-4d21-8e86-0691dfb13ddf/sm/ep10348.jpg","duration":280,"publication_date":"2015-02-04T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-89","changefreq":"weekly","video":[{"title":"2015:E33 - Lethal League","description":"Geoff, Jack, Ray, and Michael knock each other's balls around in Lethal League!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad278ea5-4e40-4f34-949e-b7acfaee2e32/sm/ep10346.jpg","duration":1236,"publication_date":"2015-02-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-87","changefreq":"weekly","video":[{"title":"2015:E32 - I Am Bread Part 3","description":"Michael and Gavin return for another crust biting adventure in I am Bread!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f89d184-cc7f-4771-84dc-9720e1bb6724/sm/ep10345.jpg","duration":2608,"publication_date":"2015-02-03T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-13","changefreq":"weekly","video":[{"title":"2015:E5 - Fact Check #3","description":"Geoff and Jack return with another installment of Five Facts - Fact Check!","player_loc":"https://roosterteeth.com/embed/five-facts-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55d3d088-a41f-465e-86a9-792e8fdfd4fd/sm/ep10344.jpg","duration":189,"publication_date":"2015-02-03T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-85","changefreq":"weekly","video":[{"title":"2015:E31 - Let's Build in Minecraft","description":"Geoff and Gavin are back with the second installment of Let's Build in Minecraft - Mario.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed784e10-ca77-4d98-9186-78d28c90c29b/sm/ep10343.jpg","duration":1482,"publication_date":"2015-02-03T22:12:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-13","changefreq":"weekly","video":[{"title":"2015:E5 - 25 Discs & 3 Kills - GO #67","description":"In this week's Go!, Geoff mixes things up. 25 discs. 3 kills. Who will be first!","player_loc":"https://roosterteeth.com/embed/go-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d88c8369-07b2-462f-ac68-d803b9f8b122/sm/ep10342.jpg","duration":633,"publication_date":"2015-02-03T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-february-2015","changefreq":"weekly","video":[{"title":"2015:E2 - Coming Soon - February 2015","description":"Kdin is back with gaming news for the month of February 2015!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-february-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b55eff9c-863d-4753-9759-ac35a4d10ada/sm/ep10341.jpg","duration":251,"publication_date":"2015-02-02T13:51:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-11","changefreq":"weekly","video":[{"title":"2015:E5 - Volume 228","description":"In Fails of the Weak #228, Geoff and Jack witness horny Batman, fragile Franklin, and angry Crota in Destiny, FIFA 15, Grand Theft Auto V, LEGO The Movie Videogame, and Worms Battlegrounds.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9211456a-a0fc-429b-8927-05a0983175a4/sm/ep10340.jpg","duration":159,"publication_date":"2015-01-30T18:26:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-21","changefreq":"weekly","video":[{"title":"2015:E9 - GTA V - Fight Club","description":"Don't talk about this video.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05afac89-8037-41b8-865e-c32dc40f2fc9/sm/ep10339.jpg","duration":962,"publication_date":"2015-01-30T18:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-82","changefreq":"weekly","video":[{"title":"2015:E30 - Minecraft - Episode 140 - Wither Hunt","description":"They're off to kill the Wither! The Wonderful Wither of...Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e313f28-d23a-4187-8048-e05bbd6fc258/sm/ep10337.jpg","duration":3080,"publication_date":"2015-01-30T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-7","changefreq":"weekly","video":[{"title":"2015:E3 - JumpJet Rex","description":"Dinosaurs are extinct. Michael's anger isn't.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99a02f4c-1c6a-4902-9f57-74fc6c9a77bb/sm/ep10336.jpg","duration":437,"publication_date":"2015-01-29T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-79","changefreq":"weekly","video":[{"title":"2015:E29 - Evolve Beta Part 1","description":"Geoff, Jack, Michael, Ray, and Ryan play as either the hunters or the hunted in the open beta for the new game Evolve. Fire breath, rock throws, ground pounds and plenty of wild beasts. What more could you want","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56ac2c11-066a-46cb-93d9-d7f4ffc49fa9/sm/ep10333.jpg","duration":1107,"publication_date":"2015-01-29T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-12","changefreq":"weekly","video":[{"title":"2015:E5 - Grand Theft Auto V","description":"Some of the following description is no longer relevant. Joel and Adam have a relay race in GTAV., I have been staring at this for 20-30 minutes and can't come up with anything. Jeremy said he'd take over for a minute. Hi this is Jeremy. Far Cry is fun. Moving on... Alright that was pretty good. If there are any more words after this sentence, Matt has decided to weigh in. Why can't we think of a good description for this video I thought we were better than this. ...Also Kevin Spacey is the Villain in this. The winner of this video gets a pie.","player_loc":"https://roosterteeth.com/embed/how-to-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/227d5256-f7c5-4302-8b44-d04abacec4cf/sm/ep10331.jpg","duration":1434,"publication_date":"2015-01-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-11","changefreq":"weekly","video":[{"title":"2015:E5 - Episode 100: Geoff vs. Lindsay","description":"Can the student surpass the master Again","player_loc":"https://roosterteeth.com/embed/vs-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/579c175b-855b-4706-98d5-f1df38293ef3/sm/ep10332.jpg","duration":381,"publication_date":"2015-01-29T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-12","changefreq":"weekly","video":[{"title":"2015:E4 - Achievement HUNT #66","description":"This week's HUNT brings you Jack vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/528cd6fc-b4b3-40e5-bb03-2c906cdbfbf3/sm/ep10330.jpg","duration":369,"publication_date":"2015-01-28T22:01:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-minisode-2","changefreq":"weekly","video":[{"title":"IA:E25 - Minisode #2","description":"Jeremy and Caleb are back in the second Minisode. Good suggestions, that just wouldn't fill a full episode. Check it out and leave your suggestions.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-minisode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfc97c7d-1eeb-421d-8d54-a43bb69c19d6/sm/ep10329.jpg","duration":282,"publication_date":"2015-01-28T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-75","changefreq":"weekly","video":[{"title":"2015:E28 - Madden NFL 15: Super Bowl Special","description":"Coach Ramsey faces off against coach Narvaez Jr. in the hardest hitting Super Bowl Special yet!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ec0d773-0a56-4578-8e4e-a485a1d2a8d8/sm/ep10327.jpg","duration":3320,"publication_date":"2015-01-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-19","changefreq":"weekly","video":[{"title":"2015:E8 - Minecraft - Neigh Slayers","description":"AH knocks each other off of their high horses.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d99afb7-e4b8-42f4-89e3-26e3bda5801f/sm/ep10326.jpg","duration":250,"publication_date":"2015-01-28T16:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-12","changefreq":"weekly","video":[{"title":"2015:E4 - In Search for the Rainbow - GO! #66","description":"This week, Geoff decides to pursue a more... peaceful route. First person to see a rainbow in a video games wins! Go!","player_loc":"https://roosterteeth.com/embed/go-2015-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13dca68c-4dad-4e5f-9ffc-ea1b13938482/sm/ep10325.jpg","duration":352,"publication_date":"2015-01-28T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-73","changefreq":"weekly","video":[{"title":"2015:E27 - Let's Build in Minecraft - Mario Part 1","description":"Geoff and Gavin have been building in Minecraft for almost 3 years. During this time they have aged severely as Achievement City slowly filled up with their whimsical creations. But there was once a time when they were young, full of gusto and of course, full of alcohol. This is a look back at one of those times.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c116f50-236b-4109-91f3-4cffc37c5ab9/sm/ep10324.jpg","duration":1626,"publication_date":"2015-01-27T21:31:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-70","changefreq":"weekly","video":[{"title":"2015:E26 - Thief Town","description":"Michael, Ray, Ryan, and Geoff test each other's deduction skills in Thief Town! It's a good thing they're not detectives.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf919640-9fff-48cb-887e-f30afaf597ed/sm/ep10323.jpg","duration":1038,"publication_date":"2015-01-27T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-10","changefreq":"weekly","video":[{"title":"2015:E4 - Mario Kart 64","description":"Ray and Michael bring you five facts over Mario Kart 64.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2f41fde-8b87-46cf-a8ed-0ca59ee0b908/sm/ep10322.jpg","duration":332,"publication_date":"2015-01-27T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-10","changefreq":"weekly","video":[{"title":"2015:E4 - Week #250","description":"The AH Crew bring you the news for the week of January 26th!\nVideo of the Week: http://bit.ly/1z3RNfe\nCommunity Video of the Week: http://bit.ly/1LdacwN\nLet's Play Live: http://bit.ly/1B5T3gb","player_loc":"https://roosterteeth.com/embed/ahwu-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4df7b5d-6c7d-4a58-86ef-ba099cc049e1/sm/ep10321.jpg","duration":567,"publication_date":"2015-01-26T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-8","changefreq":"weekly","video":[{"title":"2015:E4 - NotchLand","description":"Matt and Lindsay check out a crazy Minecraft themed amusement park! If you want to check the map out for yourself grab it here: http://bit.ly/1C95xJu. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5beb0ba-5fc0-4e99-8c1e-d45ea1876804/sm/ep10320.jpg","duration":195,"publication_date":"2015-01-26T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-68","changefreq":"weekly","video":[{"title":"2015:E25 - GTA V - Lindsay's Heist","description":"AH sees if they have what it take on Lindsay's heist!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a53ec571-93d3-49fa-a15a-02aa488ff9b2/sm/ep10319.jpg","duration":2422,"publication_date":"2015-01-26T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-10","changefreq":"weekly","video":[{"title":"2015:E4 - Top 5 Weakest Enemies in Video Games","description":"Ray, Geoff, and Michael take a look at the Top 5 Weakest Enemies in Video Games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edec171e-ade7-41eb-a753-73b8bbdf9f66/sm/ep10318.jpg","duration":113,"publication_date":"2015-01-26T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sunday-driving-season-1-sunday-driving-the-haywood-chronicles","changefreq":"weekly","video":[{"title":"S1:E2 - The Haywood Chronicles","description":"Geoff gets the gang back together for another leisurely drive around Los Santos in hopes of finding the ending to Ryan's story!","player_loc":"https://roosterteeth.com/embed/sunday-driving-season-1-sunday-driving-the-haywood-chronicles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c292c133-ae9e-4148-b33f-213af9fb228f/sm/ep10317.jpg","duration":2872,"publication_date":"2015-01-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-66","changefreq":"weekly","video":[{"title":"2015:E24 - Let's Play Live: Event Tickets Available Now!","description":"2015:E24 - Let's Play Live: Event Tickets Available Now!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":63,"publication_date":"2015-01-25T00:59:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-64","changefreq":"weekly","video":[{"title":"2015:E23 - Destiny: Crota Raid Out Takes","description":"Geoff, Jack, Ryan, Caleb, Jeremy, and Gavin managed to take down Crota... but it took them many hours to do so. There were a bunch of jokes that just didn't make the cut for those videos... but don't worry, we saved them and put them together here for you. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f1804e8-4639-435a-8e73-f3e7db914f24/sm/ep10315.jpg","duration":1235,"publication_date":"2015-01-24T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-16","changefreq":"weekly","video":[{"title":"2015:E7 - GTA V - Blimp Duel","description":"In this week's TTD, the lads and gents take to the skies for some mile-high murder.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/447ea279-638e-41ed-af41-34ed598bdbf8/sm/ep10314.jpg","duration":447,"publication_date":"2015-01-23T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-60","changefreq":"weekly","video":[{"title":"2015:E22 - Minecraft - Episode 139 - Ice Cube X","description":"The Achievement Hunter crew take on the much larger and much more dangerous Ice Cube X! Who will go home with the Tower of Pimps this week!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c88aad05-55ab-4ad1-8048-543f0027282c/sm/ep10310.jpg","duration":2029,"publication_date":"2015-01-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-8","changefreq":"weekly","video":[{"title":"2015:E4 - Volume 227","description":"In Fails of the Weak #227, Geoff and Jack witness vengeful vehicles, rogue missiles, and rude wildlife in Far Cry 4, Grand Theft Auto V, Saint's Row IV: ReElected, and Worms Battlegrounds.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9502412e-ccfc-4e9c-9539-347f43daf8d7/sm/ep10309.jpg","duration":175,"publication_date":"2015-01-23T15:37:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-9","changefreq":"weekly","video":[{"title":"2015:E4 - Episode 99: Lindsay vs. Gavin","description":"This week's VS brings you Lindsay vs. Gavin!","player_loc":"https://roosterteeth.com/embed/vs-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a7c7234-1e90-4d93-be9e-a6cb9fb41020/sm/ep10308.jpg","duration":543,"publication_date":"2015-01-22T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-9","changefreq":"weekly","video":[{"title":"2015:E4 - Mario Twins","description":"Joel, Adam, Matt, & Jeremy have been staring at this for 20-30 minutes and can't come up with anything. Jeremy said he'd take over for a minute. Hi this is Jeremy. Far Cry is fun. Moving on... Alright that was pretty good. If there are any more words after this sentence, Matt has decided to weigh in. Why can't we think of a good description for this video I thought we were better than this. ...Also Kevin Spacey is the Villain in this.","player_loc":"https://roosterteeth.com/embed/how-to-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7f6724d-cded-4155-965c-cadedcfec827/sm/ep10305.jpg","duration":1519,"publication_date":"2015-01-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015-5","changefreq":"weekly","video":[{"title":"2015:E2 - The Binding of Isaac Rebirth","description":"Michael and Gavin hop into the horrifying depths of the basement in The Binding of Isaac Rebirth!","player_loc":"https://roosterteeth.com/embed/play-pals-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01672976-9281-4b9e-bdfe-5a7ec24abc8c/sm/ep10306.jpg","duration":690,"publication_date":"2015-01-22T16:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-59","changefreq":"weekly","video":[{"title":"2015:E21 - Destiny: Crota Raid Attempt 2 Part 2","description":"Geoff, Jack, Ryan, Caleb, Jeremy, and Gavin are back facing Crota in the Destiny DLC raid. It all leads up to this. Can they beat him legitimately","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a887c48f-09d8-4e15-b7f8-a27538309022/sm/ep10307.jpg","duration":2812,"publication_date":"2015-01-22T07:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-13","changefreq":"weekly","video":[{"title":"2015:E6 - Minecraft - Angry Birds","description":"The AH Crew is back in Minecraft. This time they're checking out Angry Birds. What could possibly go wrong","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3acfe16a-c929-4cdb-9668-f7e6276fde04/sm/ep10304.jpg","duration":1016,"publication_date":"2015-01-22T00:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-8","changefreq":"weekly","video":[{"title":"2015:E3 - Achievement HUNT #65","description":"This weeks HUNT brings you Matt vs. Jeremy.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac1018d-3805-46dc-8365-baf07b4d7014/sm/ep10303.jpg","duration":1158,"publication_date":"2015-01-21T23:45:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-walking-armory","changefreq":"weekly","video":[{"title":"IA:E24 - Walking Armory","description":"Jeremy and Matt are playing Black on the PS2 to find the 8 hidden weapons scattered throughout the game. Nostalgia comes in the form of explosions, guns, and more explosions.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-walking-armory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/788fc2a5-4e03-4d8d-ac0b-f3cfdead38e5/sm/ep10302.jpg","duration":311,"publication_date":"2015-01-21T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-54","changefreq":"weekly","video":[{"title":"2015:E20 - Screen Cheat","description":"Geoff, Ryan, Ray, and Gavin break all the rules and cheat their way to victory in Screen Cheat!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab6340ed-ffe7-4de0-aab3-3a06a4a50bfe/sm/ep10300.jpg","duration":1506,"publication_date":"2015-01-21T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-53","changefreq":"weekly","video":[{"title":"2015:E19 - I am Bread Part 2","description":"Michael and Gavin are back with more I am Bread! This time they're pretending to be a whole new slice of bread in a completely different room on their epic quest to become toast! Watch to see how they get out of this jam!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7319ecc-d546-4a1c-9ff9-168d0684a876/sm/ep10299.jpg","duration":2106,"publication_date":"2015-01-20T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-51","changefreq":"weekly","video":[{"title":"2015:E18 - Let's Build in Minecraft - New Years","description":"Kdin, Matt, and Lindsay end 2014 with a bang and a ball drop. All hail new updates.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e54f453-79ef-4652-9200-9d0e6a5cb219/sm/ep10298.jpg","duration":1415,"publication_date":"2015-01-20T22:47:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-8","changefreq":"weekly","video":[{"title":"2015:E3 - Red, Green, and Blue Edition - GO #65","description":"In this week's Go, Geoff tests the gang's color knowledge. They have to kill a Red, Green, and Blue enemy. RGB! Colors! Go!","player_loc":"https://roosterteeth.com/embed/go-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/701e130d-b40b-4d2a-9a42-483b5ee73e68/sm/ep10297.jpg","duration":636,"publication_date":"2015-01-20T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-8","changefreq":"weekly","video":[{"title":"2015:E3 - Super Mario Kart","description":"Ray and Michael go over five facts in Super Mario Kart.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f24e8fb7-7717-477a-97fc-74d920854bcf/sm/ep10296.jpg","duration":252,"publication_date":"2015-01-20T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-6","changefreq":"weekly","video":[{"title":"2015:E3 - Airship Attack","description":"Matt and Jeremy look at airships attacking a giant monster. I can't even think of anything witty to say here. Damn I'm tired. If you want to check the map out for yourself grab it here: http://bit.ly/15rfgg1. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fd31df9-e63e-44ec-9d3f-90dba030ec85/sm/ep10295.jpg","duration":186,"publication_date":"2015-01-19T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-48","changefreq":"weekly","video":[{"title":"2015:E17 - GTA V - Tow Truckin","description":"AH finally earns their trucker hats!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78b96c96-da75-44e5-891f-c42d605524b2/sm/ep10294.jpg","duration":1692,"publication_date":"2015-01-19T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-8","changefreq":"weekly","video":[{"title":"2015:E3 - Week #249","description":"The Achievement Hunter Crew bring you the news for the week of January 19th.\n\nVid of week: \nCommunity vid:","player_loc":"https://roosterteeth.com/embed/ahwu-2015-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d5f740-4380-40a1-a244-da3132363451/sm/ep10293.jpg","duration":471,"publication_date":"2015-01-19T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-7","changefreq":"weekly","video":[{"title":"2015:E3 - Top 10 Swords in Video Games","description":"Geoff, Ray, and Michael take a look at the Top 10 Swords in Video Games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f048ea9a-9ecf-4066-a7b9-11111d5662bc/sm/ep10292.jpg","duration":205,"publication_date":"2015-01-19T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-11","changefreq":"weekly","video":[{"title":"2015:E5 - GTA V - NPC Launch","description":"In this week's Things To Do in GTAV, AH makes them fly. But, NPCs don't like to be told what to do","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00bf8dfd-4837-4c66-a0fc-e420c4eac9f2/sm/ep10289.jpg","duration":765,"publication_date":"2015-01-16T21:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-6","changefreq":"weekly","video":[{"title":"2015:E3 - Volume 226","description":"In Fails of the Weak #226, Geoff and Jack witness metal dicks, angry deer, and violent kidnappings in Call of Duty: Advanced Warfare, Far Cry 4, Grand Theft Auto V, The Crew, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b90716bd-051f-4224-9dd5-7d56e43e7964/sm/ep10288.jpg","duration":160,"publication_date":"2015-01-16T19:22:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-45","changefreq":"weekly","video":[{"title":"2015:E16 - Minecraft - Episode 138 - I Spy 2","description":"The Achievement Hunter crew hop into a brand new Minecraft world for the long awaited I SPY 2!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a759294-8043-4eab-bb95-2038ac9b02d7/sm/ep10287.jpg","duration":2211,"publication_date":"2015-01-16T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - Dead Bits","description":"Any way you slice it, there's a dick and balls.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9bc5eec-6445-452a-96fc-91426a46ac3b/sm/ep10286.jpg","duration":580,"publication_date":"2015-01-15T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-41","changefreq":"weekly","video":[{"title":"2015:E15 - Destiny: Crota Raid Attempt 2 Part 1","description":"Geoff, Jack, Ryan, Caleb, Jeremy, and Gavin reattempt the 1st DLC raid in Destiny. Can they bring Crota to his knees","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/888d2d30-57be-42f6-8511-a1e5ec2a2210/sm/ep10283.jpg","duration":2997,"publication_date":"2015-01-15T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-6","changefreq":"weekly","video":[{"title":"2015:E3 - Drink","description":"Being pretty lazy, I just recycled the description from the week before last... I've been staring at this for 20-30 minutes and can't come up with anything. Jeremy said he'd take over for a minute. Hi this is Jeremy. Far Cry is fun. Moving on... Alright that was pretty good. If there are any more words after this sentence, Matt has decided to weigh in. Why can't we think of a good description for this video I thought we were better than this. ...Also Drinking.","player_loc":"https://roosterteeth.com/embed/how-to-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d20fbe62-c0e0-4928-bba3-f54f87e8c42d/sm/ep10285.jpg","duration":2264,"publication_date":"2015-01-15T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-5","changefreq":"weekly","video":[{"title":"2015:E3 - Episode 98: Ray vs. Gavin","description":"To the delight of the Rooster Teeth office, Gavin and Ray have a chair race to find out who is the new VS champion!","player_loc":"https://roosterteeth.com/embed/vs-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c888b171-733a-4e3d-9fae-6276c95f9539/sm/ep10284.jpg","duration":461,"publication_date":"2015-01-15T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-9","changefreq":"weekly","video":[{"title":"2015:E4 - Minecraft - Gerudo Shooting Gallery","description":"The AH Crew is back with more Minecraft in Things to do in Minecraft - Gerudo Shooting Gallery.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cd29243-67a9-4b2c-9099-313db97fb379/sm/ep10282.jpg","duration":1004,"publication_date":"2015-01-14T23:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-6","changefreq":"weekly","video":[{"title":"2015:E2 - Achievement HUNT #64","description":"This week's HUNT brings you Geoff vs. Michael.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/308d89cb-802e-4077-8b7e-77c8bebc3f81/sm/ep10281.jpg","duration":637,"publication_date":"2015-01-14T20:14:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-37","changefreq":"weekly","video":[{"title":"2015:E14 - Drawful","description":"Geoff, Ryan, Ray, Gavin, and once again Special Guest Lindsay Hicks are playing Drawful! Witness their artistic talents or lack thereof!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03b6788a-ac36-4d10-9e6f-2ffd3f7652e3/sm/ep10278.jpg","duration":1533,"publication_date":"2015-01-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-whats-a-gun","changefreq":"weekly","video":[{"title":"IA:E23 - What's A Gun","description":"Jeremy and Matt are back in Far Cry 4 to liberate a fortress using nothing but close encounters and well placed throwing knives. Best of luck.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-whats-a-gun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05779e48-64f7-4533-811f-3cc137ad4b9b/sm/ep10280.jpg","duration":299,"publication_date":"2015-01-14T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015-6","changefreq":"weekly","video":[{"title":"2015:E2 - Alien Isolation","description":"Jack and Geoff bring you five facts in Alien Isolation.","player_loc":"https://roosterteeth.com/embed/five-facts-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c2d0f09-76b1-4c07-9f67-6acfec0312e6/sm/ep10277.jpg","duration":150,"publication_date":"2015-01-14T01:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-35","changefreq":"weekly","video":[{"title":"2015:E13 - Mario Party 8 Goomba's Boardwalk Part 2","description":"Ryan, Gavin, Michael, and Ray are back finishing up their trip to Goomba's Booty Boardwalk!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/127aaebc-cdfb-4186-9737-561deaf8aaed/sm/ep10276.jpg","duration":2908,"publication_date":"2015-01-13T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015-6","changefreq":"weekly","video":[{"title":"2015:E2 - Land on a Blimp Edition - GO! #64","description":"In this week's Go!, Geoff tasks the gang to be the first to land on a blimp in GTA V. Sounds easy... right","player_loc":"https://roosterteeth.com/embed/go-2015-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8fb068a-a67a-410d-bbf3-0ec82247de1c/sm/ep10274.jpg","duration":2475,"publication_date":"2015-01-13T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-31","changefreq":"weekly","video":[{"title":"2015:E12 - Let's Build in Minecraft - Polar Express","description":"Team Building Exercise are back to create another holiday gift. This time it's the Polar Express Things to Do. How can the AH crew deliver presents without a track and sled to do it","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf5733bc-724a-4b3e-b0b6-79ebc8c75507/sm/ep10273.jpg","duration":3138,"publication_date":"2015-01-13T18:27:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015-5","changefreq":"weekly","video":[{"title":"2015:E2 - Week #248","description":"The AH Crew brings you the news for the week of January 12th!\nVideo of Week: http://bit.ly/1IFmF8q\nCommunity Video: http://bit.ly/1C0CC6w","player_loc":"https://roosterteeth.com/embed/ahwu-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93d6252b-86fe-4603-b2d1-464b4785a89e/sm/ep10272.jpg","duration":392,"publication_date":"2015-01-12T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - Glowstone Palace","description":"Matt and Lindsay check out one of the most well lit builds ever featured in this week's MegaCraft! If you want to check the map out for yourself grab it here: http://bit.ly/1In1klQ. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab.","player_loc":"https://roosterteeth.com/embed/megacraft-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a24ac62-d8f9-462d-aa56-f841db575f3a/sm/ep10271.jpg","duration":239,"publication_date":"2015-01-12T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015-5","changefreq":"weekly","video":[{"title":"2015:E2 - Ryan Haywood's Top 5 Favorite Games","description":"Geoff, Ray, and Ryan take a look at Ryan's Top 5 Favorite Video Games!","player_loc":"https://roosterteeth.com/embed/countdown-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80f65c7d-4493-4307-a2c5-1f9c84021eb4/sm/ep10270.jpg","duration":133,"publication_date":"2015-01-12T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-26","changefreq":"weekly","video":[{"title":"2015:E11 - GTA V - Bingo","description":"AH plays a little high-stakes Bingo in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/710fd122-e85c-4055-9ee3-324876cab610/sm/ep10269.jpg","duration":1922,"publication_date":"2015-01-12T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - Volume 225","description":"In Fails of the Weak #225, Geoff and Jack bring you fails in Call of Duty: Advanced Warfare, Far Cry 4, Grand Theft Auto V, and Halo 5: Guardians Beta.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60bce31b-077f-4aba-a2f4-3cf49a49d7a2/sm/ep10264.jpg","duration":153,"publication_date":"2015-01-09T20:59:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-22","changefreq":"weekly","video":[{"title":"2015:E10 - Minecraft - Episode 137 - Bingo","description":"The AH crew decides to play a \"friendly\" game of BINGO in Minecraft!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a1fca9f-fd6a-4007-95af-b4b0d1ce8250/sm/ep10261.jpg","duration":2474,"publication_date":"2015-01-09T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-5","changefreq":"weekly","video":[{"title":"2015:E3 - GTA V - Snowball Fight","description":"It's a winter wonderland, so it's only natural that the crew gathers together for a good old fashioned snowball fight!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/032beddf-cb64-46b4-bb67-b68d74507161/sm/ep10262.jpg","duration":455,"publication_date":"2015-01-09T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - Episode 97: Gavin vs. Michael vs. Ryan","description":"Gavin, Michael and Ryan compete in a three-way VS in GTA IV to settle the dispute from the previous episode. Who will come out on top","player_loc":"https://roosterteeth.com/embed/vs-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bbe9507-c154-43d5-8c36-a0352f7ddcab/sm/ep10260.jpg","duration":753,"publication_date":"2015-01-08T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-20","changefreq":"weekly","video":[{"title":"2015:E9 - Fibbage XL","description":"Geoff, Ryan, Ray, Gavin, and special guest Lindsay Hicks are playing the new Fibbage XL. What weird lies will they create And which truths are stranger than fiction","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37d326c3-1374-4cfd-a116-1db0b7e1c292/sm/ep10259.jpg","duration":1668,"publication_date":"2015-01-08T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - Call of Duty Advanced Warfare","description":"Being pretty lazy, I just recycled the description from last week... Joel is on vacation so Adam gets to write this description. I've been staring at this for 20-30 minutes and can't come up with anything. Jeremy said he'd take over for a minute. Hi this is Jeremy. Far Cry is fun. Moving on... Alright that was pretty good. If there are any more words after this sentence, Matt has decided to weigh in. Why can't we think of a good description for this video I thought we were better than this. ...Also Kevin Spacey is the Villain in this.","player_loc":"https://roosterteeth.com/embed/how-to-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b55be968-ed0a-422e-b0fe-ee36e802faf0/sm/ep10257.jpg","duration":2168,"publication_date":"2015-01-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Halo 2","description":"Since Gavin and Michael's return, there's been some question as to who deserves to be the TRUE Play Pals Team. So Geoff and Ryan take up the challenge, winners take all!","player_loc":"https://roosterteeth.com/embed/play-pals-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/375cbd38-b91a-4640-9ac2-0551f2d3720b/sm/ep10258.jpg","duration":552,"publication_date":"2015-01-08T13:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-3","changefreq":"weekly","video":[{"title":"2015:E2 - Minecraft - Skeet Shooting","description":"The AH Crew test their archery skills in this pulse pounding game. It's a shame we couldn't launch bigger targets.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dddc2377-9794-4b18-865e-5f60ae9493b5/sm/ep10256.jpg","duration":450,"publication_date":"2015-01-08T01:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-shellf-inflicted","changefreq":"weekly","video":[{"title":"IA:E22 - Shellf Inflicted","description":"Jeremy and Gavin are in Mario Kart 8. Can they use the ultimate weapon against themselves Yes... because that's what the video is about.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-shellf-inflicted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4143be09-2766-4fe7-9597-6d66e26b148e/sm/ep10255.jpg","duration":250,"publication_date":"2015-01-07T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2015-3","changefreq":"weekly","video":[{"title":"2015:E1 - Achievement HUNT #63","description":"This week's HUNT brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2015-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5835626f-d9b9-46cc-b24c-edfc5889c833/sm/ep10254.jpg","duration":470,"publication_date":"2015-01-07T20:56:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-17","changefreq":"weekly","video":[{"title":"2015:E8 - Lara Croft and the Temple of Osiris Part 2","description":"Geoff, Jack, Ray, and Michael are back and raiding some temples!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92f3b930-cd0e-4f16-86a3-149c4428e9ca/sm/ep10253.jpg","duration":1467,"publication_date":"2015-01-07T19:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-13","changefreq":"weekly","video":[{"title":"2015:E7 - Mario Party 8 Goomba's Boardwalk Part 1","description":"Ryan, Gavin, Michael, and Ray are back playing Mario Party 8! This time they're hitting the beaches of Goomba's Booty Boardwalk. Watch as their friendship slowly unravels!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aed0dc91-6226-4a0f-9ae7-6daa1fa0061d/sm/ep10251.jpg","duration":2493,"publication_date":"2015-01-06T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-11","changefreq":"weekly","video":[{"title":"2015:E6 - Let's Build in Minecraft - Cakewalk Part 2","description":"It's a Let's Build with Geoff and Gavin, and featuring Ryan and Michael. See them put down cakes, place cakes, and generally just be around cakes.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca975d3a-90f8-4e4a-8aac-fa04c29eb43b/sm/ep10250.jpg","duration":1609,"publication_date":"2015-01-06T23:28:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-9","changefreq":"weekly","video":[{"title":"2015:E5 - GTA V - Tales From The Internet 2 - Alternate Views & Outtakes","description":"Alternate takes and outtakes from Let's Play - GTA V - Tales From The Internet 2.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/060e4d59-02bc-49e3-9528-a6446b392936/sm/ep10249.jpg","duration":191,"publication_date":"2015-01-06T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2015","changefreq":"weekly","video":[{"title":"2015:E1 - New Years Edition - GO! #63","description":"Geoff rings in the new year by challenging the group to get a score of 2015! Now they won't write 2014 on their...checks Do people still write checks","player_loc":"https://roosterteeth.com/embed/go-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc702c76-1f87-47fe-87b7-71a423a0f548/sm/ep10248.jpg","duration":531,"publication_date":"2015-01-06T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Super Mario Galaxy 2","description":"Franco brings you five facts over Super Mario Galaxy 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3e12950-4afa-45aa-a247-20da88aa7e31/sm/ep10247.jpg","duration":240,"publication_date":"2015-01-06T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2015","changefreq":"weekly","video":[{"title":"2015:E1 - AHWU #247","description":"The AH Crew and Jon bring you the news for the week of January 5th!\r\n\r\nVideo of Week: http://bit.ly/1yu6SZP\r\nCommunity Video: http://bit.ly/1FdhTSV","player_loc":"https://roosterteeth.com/embed/ahwu-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06f8b40f-d93a-4b18-aabe-4cd22ccfc87a/sm/ep10246.jpg","duration":400,"publication_date":"2015-01-06T00:10:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-5","changefreq":"weekly","video":[{"title":"2015:E4 - GTA V - Tales From The Internet 2","description":"AH takes on two more popular GTA V stunts from around the internet!","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66af62e0-f541-4693-88e4-5a6331e94619/sm/ep10245.jpg","duration":1988,"publication_date":"2015-01-05T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Top 10 Let's Plays of 2014","description":"It's that time! So let's take a look at our favorite Let's Plays from 2014!","player_loc":"https://roosterteeth.com/embed/countdown-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8f7c18e-869c-459d-aa9e-45b0d143429f/sm/ep10244.jpg","duration":297,"publication_date":"2015-01-05T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-197","changefreq":"weekly","video":[{"title":"2015:E3 - Minecraft - Episode 136 - Mega Dig Part 2","description":"What started out as a simple quest for gold turned into a six hour test of the true patience and mental capabilities of everyone in Achievement Hunter...these are their stories.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-197","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/479064b6-15d4-4bef-8b95-2587e597b264/sm/ep10239.jpg","duration":3415,"publication_date":"2015-01-03T02:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2015-29","changefreq":"weekly","video":[{"title":"2015:E1 - Volume 224","description":"In Fails of the Weak #224, Geoff and Jack bring you fails in Call of Duty: Black Ops II, Euro Truck Simulator, Far Cry 4, Grand Theft Auto V, and Halo: MCC.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2015-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb6f1a81-1590-46f1-a12f-872890841af2/sm/ep10234.jpg","duration":144,"publication_date":"2015-01-02T18:25:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2015-54","changefreq":"weekly","video":[{"title":"2015:E1 - GTA V - Fire Starter","description":"Geoff and Gavin bring up the heat in this week's Things to do in GTA V - Fire Starter. Things get a tad toasty.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2015-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7368fbf-3b2d-4cb3-bc80-8da26e5e1ca0/sm/ep10233.jpg","duration":169,"publication_date":"2015-01-02T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-2015-27","changefreq":"weekly","video":[{"title":"2015:E1 - FarCry 4","description":"Joel and Adam play Far Cry 4. Joel is on vacation so Adam gets to write this description. I've been staring at this for 20-30 minutes and can't come up with anything. Jeremy said he'd take over for a minute. Hi this is Jeremy. Far Cry is fun. Moving on... Alright that was pretty good. If there are any more words after this sentence, Matt has decided to weigh in. Why can't we think of a good description for this video I thought we were better than this.","player_loc":"https://roosterteeth.com/embed/how-to-2015-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60642df6-391e-4bae-9a52-a55debe519c4/sm/ep10231.jpg","duration":2631,"publication_date":"2015-01-01T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-193","changefreq":"weekly","video":[{"title":"2015:E2 - Let's Fail - Ghost Recon Advanced Warfighter 2","description":"Geoff, Ryan, Ray, Michael, Gavin, and Dan decided it's time you all saw their failed first attempt at GRAW 2. Was it their fault or the game's Does it really matter","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-193","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fff024d-8083-4a48-869b-9a42ef6b715b/sm/ep10230.jpg","duration":2395,"publication_date":"2015-01-01T19:44:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-january-2015","changefreq":"weekly","video":[{"title":"2015:E1 - Coming Soon - January 2015","description":"Join Kdin in the first Coming Soon of 2015!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-january-2015","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96f5eefe-d5f1-4536-b142-39e9ea0e6447/sm/ep10229.jpg","duration":247,"publication_date":"2015-01-01T11:55:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2015-14","changefreq":"weekly","video":[{"title":"2015:E1 - Volgarr The Viking","description":"Michael starts the year off right by playing Volgarr The Viking.","player_loc":"https://roosterteeth.com/embed/rage-quit-2015-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ffd065d-23a5-47b8-b67a-150c33b9891d/sm/ep10228.jpg","duration":785,"publication_date":"2015-01-01T11:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-67","changefreq":"weekly","video":[{"title":"2014:E71 - Minecraft - Happy New Year","description":"Happy New Year from Achievement Hunter!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd7a4766-f045-403f-aa3c-d3d188a721b7/sm/ep10227.jpg","duration":639,"publication_date":"2015-01-01T00:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-48","changefreq":"weekly","video":[{"title":"2014:E52 - Achievement HUNT #62","description":"The last HUNT of 2014 brings you Jack vs. Ryan!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2be6331b-18f9-4068-a000-8f9f95c71662/sm/ep10226.jpg","duration":386,"publication_date":"2014-12-31T20:36:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-one-tough-blimp","changefreq":"weekly","video":[{"title":"IA:E21 - One Tough Blimp","description":"Jeremy and Matt return to GTA V once again, but this time they take to the sky and make a beautiful combination of vehicles.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-one-tough-blimp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c054c85-f615-4b52-9611-4e83c42cfb58/sm/ep10225.jpg","duration":211,"publication_date":"2014-12-31T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-317","changefreq":"weekly","video":[{"title":"2014:E334 - Lara Croft and the Temple of Osiris","description":"Geoff, Jack, Ray, and Michael must utilize an unknown ancient relic called as \"teamwork\" to survive the trials of these tombs!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-317","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f87b7c2-d1da-4230-8bc0-2467fe81c52b/sm/ep10224.jpg","duration":1380,"publication_date":"2014-12-31T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-7","changefreq":"weekly","video":[{"title":"S1:E7 - Star-Crossed Suckers - Episode 7","description":"Sam looks through his telescope and notices that the constellations are incorrect.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd5be908-644a-413d-b3d2-21c947e183bf/sm/ep166.jpg","duration":275,"publication_date":"2005-10-19T14:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-64","changefreq":"weekly","video":[{"title":"S4:E7 - Episode 64: Previous Commitments","description":"S4:E7 - Episode 64: Previous Commitments","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df282f68-8bf2-4630-860a-b34539f376f3/sm/ep165.jpg","duration":327,"publication_date":"2005-10-15T06:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-strangerhood-studios-6","changefreq":"weekly","video":[{"title":"S1:E106 - Exception Speech - Strangerhood Studios #6","description":"Sam finally takes a stand and argues that the focus group is unqualified to judge his movies.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-strangerhood-studios-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b19b6add-179f-43f4-9d6c-569daf533389/sm/ep164.jpg","duration":142,"publication_date":"2005-10-12T15:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-63","changefreq":"weekly","video":[{"title":"S4:E6 - Episode 63: The Hard Stop","description":"S4:E6 - Episode 63: The Hard Stop","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1d54d5f-b98d-4751-adc5-63df73112305/sm/ep162.jpg","duration":302,"publication_date":"2005-10-05T03:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-62","changefreq":"weekly","video":[{"title":"S4:E5 - Episode 62: Lost in Triangulation","description":"S4:E5 - Episode 62: Lost in Triangulation","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e718b84-7906-4061-815b-1c11de87dbdd/sm/ep160.jpg","duration":356,"publication_date":"2005-10-01T13:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-61","changefreq":"weekly","video":[{"title":"S4:E4 - Episode 61: Fair Competition","description":"S4:E4 - Episode 61: Fair Competition","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0e791f1-d629-4d9b-9e43-768b76857d07/sm/ep159.jpg","duration":298,"publication_date":"2005-10-01T13:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/panics-bravo-team-episode-1","changefreq":"weekly","video":[{"title":"BT:E1 - Episode 1","description":"As Bravo Team moves into the facility, Frank begins to narrate the moment with some internal monologue.","player_loc":"https://roosterteeth.com/embed/panics-bravo-team-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76832379-1a0e-4e5a-ad16-9aab293f390d/sm/ep158.jpg","duration":201,"publication_date":"2005-09-30T21:22:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-60","changefreq":"weekly","video":[{"title":"S4:E3 - Episode 60: Fight or Fright","description":"S4:E3 - Episode 60: Fight or Fright","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c2ce93b-ca4b-4dbd-9f72-2afd529cdc1f/sm/ep157.jpg","duration":398,"publication_date":"2005-09-10T04:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-strangerhood-studios-5","changefreq":"weekly","video":[{"title":"S1:E105 - Reinventing The Wagon Wheel - Strangerhood Studios #5","description":"Dutchmiller and Catherine inform Sam that the focus group still is unhappy with the latest version of his film, a cowboy western called The Old Wagon.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-strangerhood-studios-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3558c761-e784-4e6b-9b08-694e8b42746b/sm/ep156.jpg","duration":79,"publication_date":"2005-09-08T00:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-59","changefreq":"weekly","video":[{"title":"S4:E2 - Episode 59: Hunting Time","description":"S4:E2 - Episode 59: Hunting Time","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/545aa998-a224-49b1-a6d9-bae2b4a76f3d/sm/ep155.jpg","duration":277,"publication_date":"2005-09-04T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-4-episode-58","changefreq":"weekly","video":[{"title":"S4:E1 - Episode 58: Familiar Surroundings","description":"S4:E1 - Episode 58: Familiar Surroundings","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-4-episode-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6db8efe-10a1-41c1-b2df-527528fe9875/sm/ep154.jpg","duration":265,"publication_date":"2005-08-30T02:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-strangerhood-studios-4","changefreq":"weekly","video":[{"title":"S1:E104 - Reality Check - Strangerhood Studios #4","description":"Sam meets the focus group; they begin to make typical objections to his film.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-strangerhood-studios-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fca89d15-dd1c-4d87-9de1-5d023c70df11/sm/ep153.jpg","duration":84,"publication_date":"2005-08-15T18:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-strangerhood-studios-3","changefreq":"weekly","video":[{"title":"S1:E103 - Punk 'Til I Puke - Strangerhood Studios #3","description":"The production crew finally makes a movie about punk rock.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-strangerhood-studios-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1deb1503-47c4-4a8e-a551-de874b1777f0/sm/ep152.jpg","duration":74,"publication_date":"2005-08-01T14:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-strangerhood-studios-2","changefreq":"weekly","video":[{"title":"S1:E102 - Statistically Speaking - Strangerhood Studios #2","description":"The good news is that the pitch is highly anticipated by the studio. The catch is that no one in the focus group likes the characters or the story.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-strangerhood-studios-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e4607bd-cc56-4c82-b901-11e78cc908af/sm/ep151.jpg","duration":72,"publication_date":"2005-07-13T04:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-strangerhood-studios-1","changefreq":"weekly","video":[{"title":"S1:E101 - The Pitch - Strangerhood Studios #1","description":"The network studios pitch in to Sam's idea about a new motion picture.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-strangerhood-studios-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a4dd3f8-1c9e-4b6f-8229-b10d0e1d8c42/sm/ep150.jpg","duration":66,"publication_date":"2005-07-13T04:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-57","changefreq":"weekly","video":[{"title":"S3:E19 - Episode 57: The Storm","description":"S3:E19 - Episode 57: The Storm","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09d7f63b-b044-425c-ae79-b099b75e5b4c/sm/ep148.jpg","duration":502,"publication_date":"2005-05-16T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-56","changefreq":"weekly","video":[{"title":"S3:E18 - Episode 56: Calm Before The Storm","description":"S3:E18 - Episode 56: Calm Before The Storm","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebcfc12a-d5f0-4338-a60c-9047f1574c07/sm/ep146.jpg","duration":311,"publication_date":"2005-05-07T01:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-55","changefreq":"weekly","video":[{"title":"S3:E17 - Episode 55: Defusing The Situation","description":"S3:E17 - Episode 55: Defusing The Situation","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1882232e-bb40-405e-9646-69a78ac33128/sm/ep144.jpg","duration":303,"publication_date":"2005-04-27T17:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-6","changefreq":"weekly","video":[{"title":"S1:E6 - Idol Desperation - Episode 6","description":"Sam, Wade, and Chalmers call everyone else to tell the news of the death.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab86f3eb-2e56-4332-afa8-5369d9725650/sm/ep142.jpg","duration":309,"publication_date":"2005-04-24T01:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-54","changefreq":"weekly","video":[{"title":"S3:E16 - Episode 54: Hello My Name Is Andrew","description":"S3:E16 - Episode 54: Hello My Name Is Andrew","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/861d9ffc-8a7c-43e2-90f1-58b051da00b1/sm/ep138.jpg","duration":323,"publication_date":"2005-04-09T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Things Misremembered - Episode 5","description":"Wade and Tovar report to Sam and Dr. Chalmers that somebody was murdered while they were swimming in the pool.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec98ca7d-0237-42ea-95c6-0291f319e87c/sm/ep135.jpg","duration":278,"publication_date":"2005-03-30T03:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-53","changefreq":"weekly","video":[{"title":"S3:E15 - Episode 53: Come To Order","description":"S3:E15 - Episode 53: Come To Order","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fb7638a-9341-4a97-9a34-0e5ee77dcce0/sm/ep134.jpg","duration":283,"publication_date":"2005-03-25T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-52","changefreq":"weekly","video":[{"title":"S3:E14 - Episode 52: Have We Met?","description":"S3:E14 - Episode 52: Have We Met?","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb9d4f7-936e-4a20-b82a-f4afbd9f8563/sm/ep132.jpg","duration":625,"publication_date":"2005-03-20T01:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-51","changefreq":"weekly","video":[{"title":"S3:E13 - Episode 51: Episode 50 part 2","description":"S3:E13 - Episode 51: Episode 50 part 2","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec2e8638-fa65-4c01-9cb2-f4001c2bfbf6/sm/ep131.jpg","duration":522,"publication_date":"2005-03-13T06:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-50","changefreq":"weekly","video":[{"title":"S3:E12 - Episode 50: Silver Linings","description":"S3:E12 - Episode 50: Silver Linings","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31528d8e-5d2e-48bd-a8de-dcfce9b60fef/sm/ep130.jpg","duration":990,"publication_date":"2005-02-27T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-rvb-psa-winter-2005","changefreq":"weekly","video":[{"title":"S1:E11 - RvB PSA Winter 2005","description":"S1:E11 - RvB PSA Winter 2005","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-rvb-psa-winter-2005","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/255c64a2-3028-400d-908b-3f95d5f86930/sm/ep129.jpg","duration":236,"publication_date":"2005-02-19T06:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-49","changefreq":"weekly","video":[{"title":"S3:E11 - Episode 49: Roaming Charges","description":"S3:E11 - Episode 49: Roaming Charges","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12d9bba6-adea-42cf-8ea7-08851117db71/sm/ep128.jpg","duration":421,"publication_date":"2005-02-12T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Sublimination Round - Episode 4","description":"The Omnipotent Voice orders Sam, Wade, and Tovar to compete against Catherine, Dr. Chalmers, and Dutchmiller in a contest to cook and eat grilled cheese sandwiches.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f906582-ee4a-4032-8fc9-830f8635fea2/sm/ep127.jpg","duration":288,"publication_date":"2005-02-03T00:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-48","changefreq":"weekly","video":[{"title":"S3:E10 - Episode 48: Heavy Metal","description":"S3:E10 - Episode 48: Heavy Metal","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d48cf7c-a270-4332-bb7b-818ea256cc8f/sm/ep125.jpg","duration":390,"publication_date":"2005-01-22T07:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-47","changefreq":"weekly","video":[{"title":"S3:E9 - Episode 47: It's A Biological Fact","description":"S3:E9 - Episode 47: It's A Biological Fact","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/041678ce-fe31-4432-b391-2abbd356bd42/sm/ep124.jpg","duration":335,"publication_date":"2005-01-15T08:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-46","changefreq":"weekly","video":[{"title":"S3:E8 - Episode 46: We're Being Watched","description":"S3:E8 - Episode 46: We're Being Watched","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db491e3b-cccf-4f87-bb80-118450993cea/sm/ep123.jpg","duration":349,"publication_date":"2005-01-09T08:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-holiday-wishes","changefreq":"weekly","video":[{"title":"S1:E4 - Holiday Wishes","description":"Although the eight residents have lost their memories and are unaware of the date, The Omnipotent Voice tells them in this episode that it is the holiday season, and orders them to celebrate the twenty days of Christmanukkah, combining the twelve days of Christmas with the eight of Hanukkah.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-holiday-wishes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d87b23da-c451-4390-9ab3-4a893e26970f/sm/ep121.jpg","duration":128,"publication_date":"2004-12-23T01:26:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rt-sponsor-cut-season-1-episode-45-9-special-sponsor-video","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 45.9 (Special Sponsor Video)","description":"S1:E4 - Episode 45.9 (Special Sponsor Video)","player_loc":"https://roosterteeth.com/embed/rt-sponsor-cut-season-1-episode-45-9-special-sponsor-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9af420a8-f1d0-4866-9fc4-761d148bc7b8/sm/ep120.jpg","duration":239,"publication_date":"2004-12-17T03:24:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-45","changefreq":"weekly","video":[{"title":"S3:E7 - Episode 45: New Toys","description":"S3:E7 - Episode 45: New Toys","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bfac6c2-2fcc-4311-b898-3a13667c29d5/sm/ep119.jpg","duration":302,"publication_date":"2004-12-04T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rt-shorts-season-1-mac-gamer-switch-parody","changefreq":"weekly","video":[{"title":"S1:E1 - Mac Gamer Switch Parody","description":"Ever heard of a Mac Gamer Neither have we.","player_loc":"https://roosterteeth.com/embed/rt-shorts-season-1-mac-gamer-switch-parody","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8812d2de-eb45-4df3-8cf0-3d9e42b8a9df/sm/ep118.jpg","duration":69,"publication_date":"2004-12-03T23:26:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - We Have a Floater - Episode 3","description":"To replace the recently deceased goldfish, the house gets a new goldfish in addition to the ones remaining in the tank.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c9b0ca8-1f1b-49bc-9c43-dca0e3f9f2c3/sm/ep117.jpg","duration":221,"publication_date":"2004-12-02T09:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-thanksgiving-day-psa","changefreq":"weekly","video":[{"title":"S1:E10 - Thanksgiving Day PSA","description":"S1:E10 - Thanksgiving Day PSA","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-thanksgiving-day-psa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb3eed68-c783-4618-9a8c-8e6b0c73887e/sm/ep115.jpg","duration":184,"publication_date":"2004-11-25T22:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-44","changefreq":"weekly","video":[{"title":"S3:E6 - Episode 44: We Must Rebuild","description":"S3:E6 - Episode 44: We Must Rebuild","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e336b18d-1b18-4258-8972-a2a87eabff00/sm/ep113.jpg","duration":219,"publication_date":"2004-11-21T06:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-psa-5","changefreq":"weekly","video":[{"title":"S1:E9 - PSA 5 - The RvBIAA","description":"The creative geniuses behind RvB take matters into their own hands.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-psa-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3a891d-0b31-43be-985b-e619d1645752/sm/ep112.jpg","duration":220,"publication_date":"2004-11-11T04:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-psa-4","changefreq":"weekly","video":[{"title":"S1:E8 - PSA 4 - The PDC Video","description":"Hey, time out!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-psa-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3681f7c1-1f7c-46fd-9a61-2930481233fd/sm/ep111.jpg","duration":328,"publication_date":"2004-11-11T03:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-psa-3","changefreq":"weekly","video":[{"title":"S1:E7 - PSA 3 - Tattoo Point/Counterpoint","description":"Should you get a tattoo","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-psa-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51e16c63-7f4a-4315-a210-22d7b8f60ea9/sm/ep110.jpg","duration":208,"publication_date":"2004-11-11T03:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-psa-2","changefreq":"weekly","video":[{"title":"S1:E6 - PSA 2 - Armor Cleaning","description":"Shortest PSA ever You bet!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-psa-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e8b8f4-2747-499d-abda-148cac2fe015/sm/ep109.jpg","duration":36,"publication_date":"2004-11-11T03:47:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-psa-1","changefreq":"weekly","video":[{"title":"S1:E5 - PSA 1 - W.M.D.","description":"Guns don't kill people, W.M.D's do.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-psa-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a85e6bff-086d-4d95-a235-05781993e1ba/sm/ep108.jpg","duration":78,"publication_date":"2004-11-11T03:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-19","changefreq":"weekly","video":[{"title":"S1:E19 - Episode 19: Last One Out, Hit the Lights","description":"The final episode of Red vs. Blue season one.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c027beef-ba60-4626-abaa-fed4d91c31f4/sm/ep107.jpg","duration":501,"publication_date":"2004-11-11T03:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-18","changefreq":"weekly","video":[{"title":"S1:E18 - Episode 18: SPF 0","description":"Church tries to warn the Red Team of Tex's impending attack.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17abf2fe-d210-4421-a566-e8c644d75b17/sm/ep106.jpg","duration":248,"publication_date":"2004-11-11T03:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-17","changefreq":"weekly","video":[{"title":"S1:E17 - Episode 17: Points of Origin","description":"The origin points here.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e5cf6a8-31c3-4301-91af-1778c59f2a90/sm/ep105.jpg","duration":270,"publication_date":"2004-11-11T03:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-16","changefreq":"weekly","video":[{"title":"S1:E16 - Episode 16: A Slightly Crueler Cruller","description":"Donut returns with new armor, and Lopez finally speaks.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79231951-53ed-4fd2-a7ff-92f1dfdcec80/sm/ep104.jpg","duration":286,"publication_date":"2004-11-11T03:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-15","changefreq":"weekly","video":[{"title":"S1:E15 - Episode 15: How the Other Half Lives","description":"Sarge and Church meet up in the spirit world and talk about the afterlife until Sarge is revived by Grif.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec5f5f11-399b-4f9f-9794-4e16995d67a1/sm/ep103.jpg","duration":248,"publication_date":"2004-11-11T02:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-14","changefreq":"weekly","video":[{"title":"S1:E14 - Episode 14: Roomier Than it Looks","description":"The Blues fake an attack on the Reds in order to free Tex and inadvertently get Sarge shot in the head.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abb13be4-083c-4a03-8c3b-3f3657a04cfc/sm/ep102.jpg","duration":367,"publication_date":"2004-11-11T02:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-13","changefreq":"weekly","video":[{"title":"S1:E13 - Episode 13: Human Peer Bonding","description":"Simmons and Grif guard Tex while Church explains to the Blues about Tex's AI.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c7326da-67bb-479b-88b2-a2d60a8145fa/sm/ep101.jpg","duration":216,"publication_date":"2004-11-11T02:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-12","changefreq":"weekly","video":[{"title":"S1:E12 - Episode 12: Down, but not Out","description":"Church reveals that Tex was his former girlfriend and the Red Team airlifts a severely injured Donut back to headquarters.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7101027f-b29d-4037-92ce-9b5cfc683566/sm/ep100.jpg","duration":250,"publication_date":"2004-11-11T02:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-11","changefreq":"weekly","video":[{"title":"S1:E11 - Episode 11: Knock, knock. Who's there? Pain.","description":"Tex assaults the Red Base, injuring donut and knocking out Grif and Simmons.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66230305-c8ed-4539-bf1a-598bb988ec7c/sm/ep99.jpg","duration":251,"publication_date":"2004-11-11T02:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-10","changefreq":"weekly","video":[{"title":"S1:E10 - Episode 10: A Shadow of His Former Self","description":"Tucker requests reinforcements, and gets more than he bargained for.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59625a45-6f02-4a5f-9c0b-2a1bdb4ffaed/sm/ep98.jpg","duration":327,"publication_date":"2004-11-11T01:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-9","changefreq":"weekly","video":[{"title":"S1:E9 - Episode 9: After Church","description":"The cavalry arrives, and Caboose gets stuck.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5692cf0f-33ef-4810-9242-26fd82481fa8/sm/ep97.jpg","duration":200,"publication_date":"2004-11-11T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - Episode 8: Don't Ph34r the Reaper","description":"Grif and Simmons flee as Caboose's trigger happy firing has dire consequences.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97f1c6bf-47db-4b2a-8d44-3d64f8a2ffc9/sm/ep96.jpg","duration":203,"publication_date":"2004-11-11T01:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-7","changefreq":"weekly","video":[{"title":"S1:E7 - Episode 7: Check Out The Treads on That Tank","description":"While Church and Tucker lament their current situation, Caboose hops into the tank.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9a6fbe3-3cbd-4774-8cfb-f78b8515c3d0/sm/ep95.jpg","duration":172,"publication_date":"2004-11-11T01:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-6","changefreq":"weekly","video":[{"title":"S1:E6 - Episode 6: 1.21 Giga-Whats??","description":"The Blues go through the teleporter. The Reds get the upper hand.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec07a2ed-6c1b-4e47-8443-a1c3f6fe577a/sm/ep94.jpg","duration":203,"publication_date":"2004-11-11T01:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Episode 5: The Package is in the Open","description":"Donut returns from the store with a surprise.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35bb3a8b-e939-4a64-ab7a-9caa8234368b/sm/ep93.jpg","duration":221,"publication_date":"2004-11-11T01:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4: Head Noob in Charge","description":"Caboose is given the job of \"guarding the flag\". Donut goes to the store.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2bfaa91-1a72-40f7-8474-869ddb08586f/sm/ep92.jpg","duration":270,"publication_date":"2004-11-11T01:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3: The Rookies","description":"The Red and Blue armies get new recruits.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2059c0e3-a471-46dc-8ace-a4b1cf3a452f/sm/ep90.jpg","duration":201,"publication_date":"2004-11-11T01:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2: Red Gets a Delivery","description":"The Reds get a new piece of equipment, and Grif has a problem with its name.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88afca85-936e-4c7b-b589-708937f96425/sm/ep89.jpg","duration":242,"publication_date":"2004-11-11T01:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1: Why Are We Here?","description":"The first episode of Red vs. Blue introduces the main characters, and poses the all-important question, why are we here","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aca06573-7016-4fa0-9ec6-7b32506da5c9/sm/ep88.jpg","duration":256,"publication_date":"2004-11-11T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - The One With The Premise - Episode 2","description":"Everybody finds a note telling him or her to go to the house that Wade and Sam are inhabiting.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ce1738a-8be2-4007-879a-bcb9b6eec853/sm/ep87.jpg","duration":285,"publication_date":"2004-11-10T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-strangerhood-season-1-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Why Are You Here? - Episode 1","description":"Several strangers wake up to find themselves in a mysterious suburban neighborhood.","player_loc":"https://roosterteeth.com/embed/the-strangerhood-season-1-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78971e78-e066-4dac-b7e3-6f74cbe387b3/sm/ep86.jpg","duration":321,"publication_date":"2004-11-10T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-43","changefreq":"weekly","video":[{"title":"S3:E5 - Episode 43: Make Your Time","description":"S3:E5 - Episode 43: Make Your Time","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75abc2e8-c6fa-480a-9377-362b01638dcd/sm/ep84.jpg","duration":603,"publication_date":"2004-11-10T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-42","changefreq":"weekly","video":[{"title":"S3:E4 - Episode 42: You're The Bomb, Yo","description":"S3:E4 - Episode 42: You're The Bomb, Yo","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b6b56cb-b154-47b6-a9e5-1145977d8246/sm/ep80.jpg","duration":364,"publication_date":"2004-11-09T03:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-41","changefreq":"weekly","video":[{"title":"S3:E3 - Episode 41: Let's Get Together","description":"S3:E3 - Episode 41: Let's Get Together","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df8952bc-ae83-41cd-a4f0-13c5d780cb70/sm/ep79.jpg","duration":375,"publication_date":"2004-11-08T07:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-psa-tax-day","changefreq":"weekly","video":[{"title":"S1:E4 - PSA - Tax Day","description":"Why, it's only the greatest day of the year!","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-psa-tax-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5ad7447-e862-411f-bf97-64a8a2306b3c/sm/ep70.jpg","duration":131,"publication_date":"2004-10-26T23:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-psa-mothers-day","changefreq":"weekly","video":[{"title":"S1:E3 - PSA - Mother's Day","description":"The Blood Gulch Crew spread the love to their Moms.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-psa-mothers-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cef41783-5c34-4419-ba9f-c9f6ed2427a0/sm/ep69.jpg","duration":193,"publication_date":"2004-10-26T23:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-psa-july-4th","changefreq":"weekly","video":[{"title":"S1:E2 - PSA - July 4th","description":"Learn how to celebrate your July 4th with complete peace of mind.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-psa-july-4th","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fc5988d-4030-461e-8515-d9b4df62ff9c/sm/ep67.jpg","duration":190,"publication_date":"2004-10-26T23:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-40","changefreq":"weekly","video":[{"title":"S3:E2 - Episode 40: Visiting Old Friends","description":"S3:E2 - Episode 40: Visiting Old Friends","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5ce8820-e1ea-4414-a35a-873e9a7bca51/sm/ep62.jpg","duration":443,"publication_date":"2004-10-25T06:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-3-episode-39","changefreq":"weekly","video":[{"title":"S3:E1 - Episode 39: Best Laid Plans","description":"S3:E1 - Episode 39: Best Laid Plans","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-3-episode-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb03471d-8e12-47d4-8d86-bc1e81d2dee0/sm/ep58.jpg","duration":503,"publication_date":"2004-10-12T09:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-psa-6","changefreq":"weekly","video":[{"title":"S1:E1 - PSA 6 - A Message to the Science Community","description":"Is there life on Halo","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-psa-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f91e7f2b-cbc9-4913-b04d-49d810e16954/sm/ep54.jpg","duration":171,"publication_date":"2004-10-04T19:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-38","changefreq":"weekly","video":[{"title":"S2:E20 - Episode 38: K.I.T. B.F.F.","description":"In the final episode of season two, the battle for Blood Gulch moves beyond just Red versus Blue.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eda182c-17bd-4034-8cd5-0263fcdc2bf2/sm/ep53.jpg","duration":969,"publication_date":"2004-10-04T18:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-37","changefreq":"weekly","video":[{"title":"S2:E19 - Episode 37: Dealer Incentive","description":"Blue Team interrogates Donut then Church possesses him in an attempt to trick Sarge.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e0f4a17-8f55-4002-beb4-a4cc0bfc84ed/sm/ep52.jpg","duration":391,"publication_date":"2004-10-04T18:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-36","changefreq":"weekly","video":[{"title":"S2:E18 - Episode 36: Blunderball","description":"Grif and Donut undertake a secret spy mission and Donut overhears Doc/O'Malley making plans.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d6fed2b-45e2-4865-b11c-0bd57cae0a05/sm/ep51.jpg","duration":350,"publication_date":"2004-10-04T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-35","changefreq":"weekly","video":[{"title":"S2:E17 - Episode 35: What's Mine is Yours","description":"Simmons and Grif bicker over surgery while Sarge discloses that Lopez is hiding secret plans.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b877be1c-ecce-45b5-ba3e-d203697699d7/sm/ep50.jpg","duration":280,"publication_date":"2004-10-04T18:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-34","changefreq":"weekly","video":[{"title":"S2:E16 - Episode 34: Aftermath, Before Biology","description":"Doc discovers a strange vehicle and Grif has an operation.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ecde625-1b8b-4fe0-be71-3d6fa62f3dc8/sm/ep49.jpg","duration":260,"publication_date":"2004-10-04T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-33","changefreq":"weekly","video":[{"title":"S2:E15 - Episode 33: An Audience of Dumb","description":"Lopez serenades the Red Team to get them to shut off their radios and O'Malley infects Doc.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eccddb51-299c-4b3e-ba90-8d49878a7595/sm/ep48.jpg","duration":400,"publication_date":"2004-10-04T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-32","changefreq":"weekly","video":[{"title":"S2:E14 - Episode 32: Me, Myself and You","description":"Church and Tex continue their search while Tucker, Sheila and Lopez approach Red Base.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e35c131b-06f3-4dcc-81dd-be95256985f2/sm/ep47.jpg","duration":171,"publication_date":"2004-10-04T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-31","changefreq":"weekly","video":[{"title":"S2:E13 - Episode 31: Room For Rent","description":"Church and Tex venture into Caboose's mind to search for O'Malley.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/442da213-6854-4e36-80a4-82e903444913/sm/ep46.jpg","duration":230,"publication_date":"2004-10-04T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-30","changefreq":"weekly","video":[{"title":"S2:E12 - Episode 30: I Dream of Meanie","description":"Tex tries to explain her mysterious return, while Sarge looks for a volunteer for a special project.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a2d390b-fb41-4dd1-bf19-7e4e4f4ac662/sm/ep45.jpg","duration":242,"publication_date":"2004-10-04T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-29","changefreq":"weekly","video":[{"title":"S2:E11 - Episode 29: Radar Love","description":"Sparks fly when Lopez and Sheila meet, but the unexpected return of a former ally changes everything.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/101bd343-ba7b-4c6a-8eae-2568efd94161/sm/ep44.jpg","duration":239,"publication_date":"2004-10-04T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-28-5","changefreq":"weekly","video":[{"title":"S2:E10 - Episode 28.5: The Last Episode Ever","description":"In the series finale of Red vs. Blue, Grif and Donut mourn their loss.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-28-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5b75112-1473-4088-af7e-80e90ca54c06/sm/ep43.jpg","duration":137,"publication_date":"2004-10-04T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-28","changefreq":"weekly","video":[{"title":"S2:E9 - Episode 28: In Stereo Where Available","description":"The Blues try to control Lopez, while the Reds set out looking for a little payback.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbedfeaa-b265-4000-8238-84be4af6483a/sm/ep42.jpg","duration":213,"publication_date":"2004-10-04T18:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-27","changefreq":"weekly","video":[{"title":"S2:E8 - Episode 27: Nine Tenths of the Law","description":"Donut gets to know the other members of Red Team better, while Church makes a strategic error - listening to Caboose.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7dcee41-3ac6-4426-bcfd-3ce02d1c399e/sm/ep41.jpg","duration":304,"publication_date":"2004-10-04T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-26","changefreq":"weekly","video":[{"title":"S2:E7 - Episode 26: Nobody Likes You","description":"When the Reds try to make a deal with the Blues, one solider gets stuck in the middle.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ce8cca1-c0d3-4384-8cb8-785d90bc8985/sm/ep40.jpg","duration":265,"publication_date":"2004-10-04T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-25","changefreq":"weekly","video":[{"title":"S2:E6 - Episode 25: Last Words","description":"Doc makes an impression on Sarge while the Blues try to fix Church's switch.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c956082-66e6-41f9-a0f4-5b3ae35a2fa5/sm/ep39.jpg","duration":277,"publication_date":"2004-10-04T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-24","changefreq":"weekly","video":[{"title":"S2:E5 - Episode 24: Sweet Ride","description":"The Blues almost accidentally toggle Sarge to death.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ad57543-37b2-479d-a2dc-eec7c57a5935/sm/ep38.jpg","duration":221,"publication_date":"2004-10-04T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-23","changefreq":"weekly","video":[{"title":"S2:E4 - Episode 23: The Joy of Toggling","description":"Doc distances himself from Grif, the Blues make a discovery.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ce83cb4-7d28-4029-aa6e-822c8548defc/sm/ep37.jpg","duration":260,"publication_date":"2004-10-04T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-22","changefreq":"weekly","video":[{"title":"S2:E3 - Episode 22: Red vs Bleu","description":"The Blues surrender and sacrifice Doc, the Reds sacrifice Grif's self-esteem.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7418d7fb-9b30-4c84-9ead-1004133be3c5/sm/ep36.jpg","duration":234,"publication_date":"2004-10-04T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-21","changefreq":"weekly","video":[{"title":"S2:E2 - Episode 21: Motion to Adjourn","description":"The Blues fend off an attack from the Reds, the Reds fend off themselves.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f28ba7c3-11b1-4bd6-8563-e18bbb087e70/sm/ep35.jpg","duration":230,"publication_date":"2004-10-04T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/red-vs-blue-season-2-episode-20","changefreq":"weekly","video":[{"title":"S2:E1 - Episode 20: Everything Old is New Again","description":"Episode 20 introduces the character Doc to the Blood Gulch, and to the Blues.","player_loc":"https://roosterteeth.com/embed/red-vs-blue-season-2-episode-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42a7b88e-6da3-4cc2-a99a-1057e7c20a9f/sm/ep34.jpg","duration":419,"publication_date":"2004-10-04T16:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-hard-corps-uprising-craig","changefreq":"weekly","video":[{"title":"S1:E90 - How Many Lives: Hard Corps Uprising - Craig","description":"The rule this time has been competitors must have minimal experience with Hard Corps Uprising. But with everyone at the HQ beyond busy, the one rule was bent so one man could take down the King of Battle Kid: Stuttering Craig.","player_loc":"https://roosterteeth.com/embed/how-many-lives-hard-corps-uprising-craig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9b167b9-fca8-497a-aed7-10369791b7d8/sm/324233.jpg","duration":216,"publication_date":"2011-08-19T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/amazing-japanese-game-stores","changefreq":"weekly","video":[{"title":"S1:E89 - Amazing Japanese Game Stores!","description":"While exploring in Japan, Craig and Angel visited two of the most amazing video game stores ever!","player_loc":"https://roosterteeth.com/embed/amazing-japanese-game-stores","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":151,"publication_date":"2011-08-19T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-roaring-twenties","changefreq":"weekly","video":[{"title":"S1:E109 - Clip of the Week - The Roaring Twenties","description":"We flashback to the 1920s to see our ScrewAttack ancestors in their every day lives.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-roaring-twenties","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":309,"publication_date":"2011-08-19T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-most-beautiful-thing","changefreq":"weekly","video":[{"title":"S1:E108 - Clip of the Week - The Most Beautiful Thing","description":"Nobody wants to see an accident. That's why your friends are there to prevent them, using love. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-most-beautiful-thing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":236,"publication_date":"2011-08-19T14:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-survival-battle-aftermath","changefreq":"weekly","video":[{"title":"S1:E88 - The Survival Battle Aftermath","description":"After Santiago and Ian downed so much nasty nastiness, we figured it was only fair for the rest of us to sample it as well. It's gross.","player_loc":"https://roosterteeth.com/embed/the-survival-battle-aftermath","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":111,"publication_date":"2011-08-19T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-moon","changefreq":"weekly","video":[{"title":"S1:E107 - Clip of the Week - The Moon","description":" The moon is falling, and the world is ending. See how we are going spend our final minutes alive.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-moon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":340,"publication_date":"2011-08-19T14:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/who-wants-to-have-an-ice-cream-party","changefreq":"weekly","video":[{"title":"S1:E87 - Who Wants To Have An Ice Cream Party?!?","description":"While Craig's on vacation, we get to do whatever we want!","player_loc":"https://roosterteeth.com/embed/who-wants-to-have-an-ice-cream-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":64,"publication_date":"2011-08-19T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-japanese-game-show","changefreq":"weekly","video":[{"title":"S1:E106 - Clip of the Week - Japanese Game Show","description":" Being weirder than a Japanese game show is a lot more difficult that you can imagine. We tried our hardest anyways.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-japanese-game-show","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":219,"publication_date":"2011-08-19T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-best-idea-ever","changefreq":"weekly","video":[{"title":"S1:E105 - Clip of the Week - Best Idea Ever","description":"Those Kinect commercials make that camera look like so much fun, but we know what really happens when two people wildly flail their arms about.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-best-idea-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":124,"publication_date":"2011-08-19T14:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-ultimate-gamers","changefreq":"weekly","video":[{"title":"S1:E104 - Clip of the Week - Ultimate Gamers","description":" The Ultimate Gamer is getting a second season, and a lot of celebrities are auditioning for the show.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-ultimate-gamers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":322,"publication_date":"2011-08-19T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-super-balloon-fighter-4","changefreq":"weekly","video":[{"title":"S1:E103 - Clip of the Week - Super Balloon Fighter 4","description":"Gamestop gets all the cool pre-order bonuses, and we tried our hardest to do one better.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-super-balloon-fighter-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":196,"publication_date":"2011-08-19T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-stepping-stones","changefreq":"weekly","video":[{"title":"S1:E102 - Clip of the Week - Stepping Stones","description":"Everyone comes from humble beginnings. Our shows never started out as the polished, nuggets of gold you see before you now. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-stepping-stones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":238,"publication_date":"2011-08-19T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-somebody-dies","changefreq":"weekly","video":[{"title":"S1:E101 - Clip of the Week - Somebody Dies","description":" Tommy is sick, and his life is fading fast. Before he goes, Tommy gives everyone some truly sound advice on his death bed.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-somebody-dies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":130,"publication_date":"2011-08-19T14:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-ryan-strikes-back","changefreq":"weekly","video":[{"title":"S1:E100 - Clip of the Week - Ryan Strikes Back","description":" It's Ryan's last day at ScrewAttack, and he's finally had enough of all the videos in which he dies.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-ryan-strikes-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":198,"publication_date":"2011-08-19T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-real-men-of-gaming","changefreq":"weekly","video":[{"title":"S1:E99 - Clip of the Week - Real Men of Gaming","description":" There are many gamers all over the world. We take the time to give praise to the unsung jerks among them.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-real-men-of-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":244,"publication_date":"2011-08-19T13:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-pokemon-screwattack-bronze-version","changefreq":"weekly","video":[{"title":"S1:E98 - Clip of the Week - Pokemon ScrewAttack Bronze Version","description":"With the release of Pokemon Gold and Silver, the super-rare Bronze version features never-before-seen Pokemon!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-pokemon-screwattack-bronze-version","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":179,"publication_date":"2011-08-19T13:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-play-it-loud","changefreq":"weekly","video":[{"title":"S1:E97 - Clip of the Week - Play It Loud","description":" The Nintendo Generation is hardcore, and they're not afraid to let you know it! With special guest star, brentalfloss!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-play-it-loud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":219,"publication_date":"2011-08-19T13:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-failed-wii-peripherals","changefreq":"weekly","video":[{"title":"S1:E96 - Clip of the Week - Failed Wii Peripherals","description":" The Wii comes with a lot of stupid accessories and peripherals. The sad thing is, we've gotten see the ones that weren't good enough for the market.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-failed-wii-peripherals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":201,"publication_date":"2011-08-19T13:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-never-say-no-to-purple","changefreq":"weekly","video":[{"title":"S1:E95 - Clip of the Week - Never Say No to Purple","description":"Tommy the Toucan wants you to try his Purple Drink, no matter the cost. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-never-say-no-to-purple","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":221,"publication_date":"2011-08-19T13:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-milo","changefreq":"weekly","video":[{"title":"S1:E94 - Clip of the Week - Milo","description":" Peter Molyneux's Project Milo turned some heads when it was first announced, but its sequel, \"Mijo\", was way cooler.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-milo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":247,"publication_date":"2011-08-19T13:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-party-time","changefreq":"weekly","video":[{"title":"S1:E93 - Clip of the Week - Party Time","description":" Half the crew is gone or out sick, so we throw a party in their honor! Or because we wanted to. Whichever.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-party-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":176,"publication_date":"2011-08-19T13:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-moms-on-online-gaming","changefreq":"weekly","video":[{"title":"S1:E92 - Clip of the Week - Moms on Online Gaming","description":" If moms can be introduced to using the internet, surely they can be introduced to the world of online gaming.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-moms-on-online-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":206,"publication_date":"2011-08-19T13:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-screwattack-cereal","changefreq":"weekly","video":[{"title":"S1:E91 - Clip of the Week - ScrewAttack Cereal","description":"It seems like every toy, cartoon, and video game on the planet gets its own cereal. We have our own, too! ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-screwattack-cereal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":66,"publication_date":"2011-08-19T13:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-i-believe-i-can-fly","changefreq":"weekly","video":[{"title":"S1:E90 - Clip of the Week - I Believe I Can Fly","description":" Poor Tommy the Toucan. He's delusional. He has to learn the truth the hard way about being a flightless bird.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-i-believe-i-can-fly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":196,"publication_date":"2011-08-19T12:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-boss-for-a-day","changefreq":"weekly","video":[{"title":"S1:E89 - Clip of the Week - Boss for a Day","description":"Craig is gone getting married, which means it's up to the rest of the crew to step up to fill the shoes of the boss. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-boss-for-a-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":369,"publication_date":"2011-08-19T12:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-others","changefreq":"weekly","video":[{"title":"S1:E88 - Clip of the Week - The Others","description":"Parallel dimensions are a scary thing. Everyone's \"other\" emerges from an unexplained interdiminesional portal.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-others","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":421,"publication_date":"2011-08-19T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-return-of-gorethok","changefreq":"weekly","video":[{"title":"S1:E87 - Clip of the Week - Return of Gorethok","description":"Gorethok hungers, and embarks on a mighty quest of sustenance alongside his companions. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-return-of-gorethok","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":165,"publication_date":"2011-08-19T12:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-fantasy-files","changefreq":"weekly","video":[{"title":"S1:E86 - Clip of the Week - Fantasy Files","description":"Not sure who to pick for your fantasy ScrewAttack team? Let this video help you make your decision on who's the best. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-fantasy-files","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":234,"publication_date":"2011-08-19T12:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-christmas-conspiracy","changefreq":"weekly","video":[{"title":"S1:E85 - Clip of the Week - The Christmas Conspiracy","description":"After our Top 10 Zombie Games, viewers were absolutely positive of an entire conspiracy theory behind the games chosen on the list. Turns out, they were right. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-christmas-conspiracy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":199,"publication_date":"2011-08-19T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-lost-vgv-jack-nicklaus-greatest-18-holes-major-championship-golf","changefreq":"weekly","video":[{"title":"S1:E291 - The Lost VGV - Jack Nicklaus Greatest 18 Holes Major Championship Golf","description":"The long lost episode of the Vault has been found!  (From Halloween 2009)","player_loc":"https://roosterteeth.com/embed/the-lost-vgv-jack-nicklaus-greatest-18-holes-major-championship-golf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":51,"publication_date":"2011-08-19T11:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-teenage-mutant-ninja-turtles-iii-the-manhattan-project","changefreq":"weekly","video":[{"title":"S1:E290 - Video Game Vault - Teenage Mutant Ninja Turtles III: The Manhattan Project","description":"Often overlooked, could Manhattan Project be the best TMNT game on the NES?","player_loc":"https://roosterteeth.com/embed/video-game-vault-teenage-mutant-ninja-turtles-iii-the-manhattan-project","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":181,"publication_date":"2011-08-19T11:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pokemon-stadium","changefreq":"weekly","video":[{"title":"S1:E289 - Video Game Vault - Pok?mon Stadium","description":"Nervous Nick takes a harsh look at what some consider a classic!","player_loc":"https://roosterteeth.com/embed/video-game-vault-pokemon-stadium","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":179,"publication_date":"2011-08-19T11:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-gunstar-heroes","changefreq":"weekly","video":[{"title":"S1:E288 - Video Game Vault - Gunstar Heroes","description":"Nick asks why home consoles never got a sequel to one of the best titles on Sega Genesis.","player_loc":"https://roosterteeth.com/embed/video-game-vault-gunstar-heroes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/052fbcd4-7021-4e1b-90f5-151721130276/sm/Gunstar_Heroes_GEN_ScreenShot1.gif","duration":157,"publication_date":"2011-08-19T11:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-color-a-dinosaur","changefreq":"weekly","video":[{"title":"S1:E287 - Video Game Vault - Color a Dinosaur","description":"Everyone has to start somewhere--even Tommy Tallarico.","player_loc":"https://roosterteeth.com/embed/video-game-vault-color-a-dinosaur","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daea22a0-69c6-4609-bd89-657ed725f62c/sm/images-4_0.jpg","duration":207,"publication_date":"2011-08-19T11:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-star-wars-shadows-of-the-empire","changefreq":"weekly","video":[{"title":"S1:E286 - Video Game Vault - Star Wars: Shadows of the Empire","description":"Did you pay to participate in a Star Wars focus group?","player_loc":"https://roosterteeth.com/embed/video-game-vault-star-wars-shadows-of-the-empire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":126,"publication_date":"2011-08-19T11:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-smurfs","changefreq":"weekly","video":[{"title":"S1:E285 - Video Game Vault - Smurfs","description":"With a Smurfs movie on the way, from where did the mythical Smurf come?","player_loc":"https://roosterteeth.com/embed/video-game-vault-smurfs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7496a157-0690-470f-95c7-52a9013f387c/sm/Smurfs.gif","duration":119,"publication_date":"2011-08-19T11:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-final-fight-3","changefreq":"weekly","video":[{"title":"S1:E284 - Video Game Vault - Final Fight 3","description":"It's time to finish the fight--finally!","player_loc":"https://roosterteeth.com/embed/video-game-vault-final-fight-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":139,"publication_date":"2011-08-19T11:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-new-zealand-story","changefreq":"weekly","video":[{"title":"S1:E283 - Video Game Vault - New Zealand Story","description":"Kiwis fought a giant leopard seal and New Zealand was born.","player_loc":"https://roosterteeth.com/embed/video-game-vault-new-zealand-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0f3c27c-6481-4be4-849b-37b007aed4b9/sm/images-3_0.jpg","duration":83,"publication_date":"2011-08-19T11:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-faceball-2000","changefreq":"weekly","video":[{"title":"S1:E282 - Video Game Vault - Faceball 2000","description":"Could this be the worst title ever placed in the Video Game Vault?","player_loc":"https://roosterteeth.com/embed/video-game-vault-faceball-2000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c99ac6a-7e62-4f56-96dc-9d047bb8022d/sm/2390-1-faceball-2000-for-snes.jpg","duration":119,"publication_date":"2011-08-19T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-adventures-of-tom-sawyer","changefreq":"weekly","video":[{"title":"S1:E281 - Video Game Vault - The Adventures of Tom Sawyer","description":"Have you ever been excited to play a relative's games even if the games weren't good?","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-adventures-of-tom-sawyer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120958fe-9599-4711-af1b-df810f63eb5d/sm/416540-title_super.png","duration":117,"publication_date":"2011-08-19T11:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mystery-japanese-shooter","changefreq":"weekly","video":[{"title":"S1:E280 - Video Game Vault - Mystery Japanese Shooter","description":"Look what Craig found on a trip to glorious Nippon!","player_loc":"https://roosterteeth.com/embed/video-game-vault-mystery-japanese-shooter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/650efa31-49d7-482e-84ad-152b2182420f/sm/superfamicom_1680x1050.gif","duration":182,"publication_date":"2011-08-19T11:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sonic-3-and-knuckles","changefreq":"weekly","video":[{"title":"S1:E279 - Video Game Vault - Sonic 3 and Knuckles","description":"Was \"lock on technology\" a gimmick or DLC before its time?","player_loc":"https://roosterteeth.com/embed/video-game-vault-sonic-3-and-knuckles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb68074-4bd9-48ca-a99a-bc83249447a9/sm/S3k_title.png","duration":155,"publication_date":"2011-08-19T11:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sonic-cd","changefreq":"weekly","video":[{"title":"S1:E278 - Video Game Vault - Sonic CD","description":"Just when you thought Sonic couldn't get any better, he time-travels to the future to save the world!","player_loc":"https://roosterteeth.com/embed/video-game-vault-sonic-cd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efccbb71-021a-42e7-acfe-66154695c9e1/sm/37362641.gif","duration":135,"publication_date":"2011-08-19T11:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sonic-the-hedgehog-2","changefreq":"weekly","video":[{"title":"S1:E277 - Video Game Vault - Sonic the Hedgehog 2","description":"Is Sonic's second his most memorable?","player_loc":"https://roosterteeth.com/embed/video-game-vault-sonic-the-hedgehog-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3be9bf4a-686d-4402-aa76-b43eb1a3e3d8/sm/03+Sonic+The+Hedgehog+2.jpg","duration":148,"publication_date":"2011-08-19T11:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sonic-the-hedgehog","changefreq":"weekly","video":[{"title":"S1:E276 - Video Game Vault - Sonic the Hedgehog","description":"Craig settles the Robotnik/Eggman controversy once and for all.","player_loc":"https://roosterteeth.com/embed/video-game-vault-sonic-the-hedgehog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3ad1342-7a92-482f-b23a-cc6c23911553/sm/01+Sonic+The+Hedgehog+1.jpg","duration":142,"publication_date":"2011-08-19T11:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sonic-blast-man","changefreq":"weekly","video":[{"title":"S1:E275 - Video Game Vault - Sonic Blast Man","description":"One of the best names for a super hero ever, the game is just as crazy as the name--and Craig likes it!","player_loc":"https://roosterteeth.com/embed/video-game-vault-sonic-blast-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41fe6a20-2008-4419-be78-06751d9a4ae0/sm/1181242170116.png","duration":131,"publication_date":"2011-08-19T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-trojan","changefreq":"weekly","video":[{"title":"S1:E274 - Video Game Vault - Trojan","description":"A game that shaped Craig's youth in the most horrible way... and now it's time for payback.","player_loc":"https://roosterteeth.com/embed/video-game-vault-trojan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f984b2c-0c09-4d77-90c3-985f5fc3598f/sm/trojan_(12).png","duration":132,"publication_date":"2011-08-19T11:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-columns","changefreq":"weekly","video":[{"title":"S1:E273 - Video Game Vault - Columns","description":"The NES had Tetris but the Genesis had Columns. Which did you play?","player_loc":"https://roosterteeth.com/embed/video-game-vault-columns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca8ae89d-923a-4fa8-8618-fed90fa253fd/sm/Columns_GEN_ScreenShot1.jpg","duration":103,"publication_date":"2011-08-19T10:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-robocop-versus-the-terminator","changefreq":"weekly","video":[{"title":"S1:E272 - Video Game Vault - RoboCop Versus The Terminator","description":"It was actually RoboCop that caused Judgment Day.","player_loc":"https://roosterteeth.com/embed/video-game-vault-robocop-versus-the-terminator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4af33168-8e14-4810-ad6b-2af60d116730/sm/RoboCop_vs._Terminator_SNES_ScreenShot1.gif","duration":107,"publication_date":"2011-08-19T10:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-r-type","changefreq":"weekly","video":[{"title":"S1:E271 - Video Game Vault - Super R-Type","description":"A small glowing orb made this shmup great.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-r-type","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":98,"publication_date":"2011-08-19T10:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-world-heroes","changefreq":"weekly","video":[{"title":"S1:E270 - Video Game Vault - World Heroes","description":"In a world of Street Fighter imitators, World Heroes may have been the most infamous of all.","player_loc":"https://roosterteeth.com/embed/video-game-vault-world-heroes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7013e73-f279-48ac-92ed-8859c639ad82/sm/wh1.gif","duration":132,"publication_date":"2011-08-19T10:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-sidekicks-3","changefreq":"weekly","video":[{"title":"S1:E269 - Video Game Vault - Super Sidekicks 3","description":"SNK's 1995 soccer video game makes a resurgence for the 2010 World Cup!","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-sidekicks-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ff49d9a-8279-4acb-8740-33079fbf43f4/sm/631880-ssideki3title_large.png","duration":115,"publication_date":"2011-08-19T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-turok-dinosaur-hunter","changefreq":"weekly","video":[{"title":"S1:E268 - Video Game Vault - Turok: Dinosaur Hunter","description":"Dinosaurs, tribesmen, aliens, nuclear weapons and cheat codes all in one game. That's really all you need.","player_loc":"https://roosterteeth.com/embed/video-game-vault-turok-dinosaur-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":109,"publication_date":"2011-08-19T09:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-iron-man-and-x-o-manowar-in-heavy-metal","changefreq":"weekly","video":[{"title":"S1:E267 - Video Game Vault - Iron Man and X-O Manowar in Heavy Metal","description":"Unfortunately this game isn't as super as the characters in it and the title makes it out to be.","player_loc":"https://roosterteeth.com/embed/video-game-vault-iron-man-and-x-o-manowar-in-heavy-metal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fd6e8d3-003d-42d6-bad1-4d72a735e63a/sm/iron-man-x-o-manowar-in-heavy-metal-ss01.jpg","duration":107,"publication_date":"2011-08-19T09:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-m-c-kids","changefreq":"weekly","video":[{"title":"S1:E266 - Video Game Vault - M.C. Kids","description":"After everything you've heard over the last four years or so you probably think this game sucks; that's probably because you haven't played it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-m-c-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":165,"publication_date":"2011-08-19T09:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rayman","changefreq":"weekly","video":[{"title":"S1:E265 - Video Game Vault - Rayman","description":"Now for an example of a new-school platformer done right!","player_loc":"https://roosterteeth.com/embed/video-game-vault-rayman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f437c05-1f8c-4864-8897-91cf1e399486/sm/rayman1_dos_windows_box550_front_eu.jpg","duration":106,"publication_date":"2011-08-19T09:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-revenge-of-shinobi","changefreq":"weekly","video":[{"title":"S1:E264 - Video Game Vault - The Revenge of Shinobi","description":"A ninja that's so bad-ass he's not afraid to walk right up to you and hand you your death card.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-revenge-of-shinobi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6de75af8-8420-4292-9674-e943dd838825/sm/Revenge_Of_Shinobi,_The_GEN_ScreenShot1.jpg","duration":126,"publication_date":"2011-08-19T09:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-kablooey","changefreq":"weekly","video":[{"title":"S1:E263 - Video Game Vault - Kablooey","description":"Don't judge a game by its lead character.","player_loc":"https://roosterteeth.com/embed/video-game-vault-kablooey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9defc6df-e2c5-44ec-8e24-b492a985fc02/sm/Kablooey.gif","duration":99,"publication_date":"2011-08-19T09:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-seaman","changefreq":"weekly","video":[{"title":"S1:E262 - Video Game Vault - Seaman","description":"The tragic tale of a Nick and the man-fish baby he bought for just three bucks.","player_loc":"https://roosterteeth.com/embed/video-game-vault-seaman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fa89a67-8517-402a-bed4-136341c1e0d6/sm/seaman.jpg","duration":215,"publication_date":"2011-08-19T09:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-captain-america-the-avengers","changefreq":"weekly","video":[{"title":"S1:E261 - Video Game Vault - Captain America & the Avengers","description":"Craig reads Destin's childhood diary and proves that sometimes gaming memories don't have much to do with the games themselves.","player_loc":"https://roosterteeth.com/embed/video-game-vault-captain-america-the-avengers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18f90915-bb2e-4be2-a83a-21ee9ea7a5f8/sm/332811-captain_america_and_the_avengers.323_super.png","duration":138,"publication_date":"2011-08-19T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-zero-the-kamikaze-squirrel","changefreq":"weekly","video":[{"title":"S1:E260 - Video Game Vault - Zero the Kamikaze Squirrel","description":"If you make one incredibly average game, why would you make another that is exactly the same?","player_loc":"https://roosterteeth.com/embed/video-game-vault-zero-the-kamikaze-squirrel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":115,"publication_date":"2011-08-19T09:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-buck-bumble","changefreq":"weekly","video":[{"title":"S1:E259 - Video Game Vault - Buck Bumble","description":"Are you ready to hear the worst catchy tune in video game history?","player_loc":"https://roosterteeth.com/embed/video-game-vault-buck-bumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":166,"publication_date":"2011-08-19T09:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ski-or-die","changefreq":"weekly","video":[{"title":"S1:E258 - Video Game Vault - Ski or Die","description":"A video game with a real-life win button. Really.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ski-or-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/672af813-88e3-45e8-8217-dc63122c9da5/sm/Ski_or_Die_NES_ScreenShot1.gif","duration":159,"publication_date":"2011-08-19T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sonson","changefreq":"weekly","video":[{"title":"S1:E257 - Video Game Vault - SonSon","description":"You know that cute monkey chick from Marvel vs Capcom 2? Well, she's Satan.","player_loc":"https://roosterteeth.com/embed/video-game-vault-sonson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cc03411-e72a-465a-b3c8-ca9ff8d795d1/sm/sonson1.png","duration":111,"publication_date":"2011-08-19T09:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-final-fantasy","changefreq":"weekly","video":[{"title":"S1:E256 - Video Game Vault - Final Fantasy","description":"Destin sneaks an RPG into the Vault--and Craig likes it!","player_loc":"https://roosterteeth.com/embed/video-game-vault-final-fantasy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1346df52-6bdf-4e16-90d6-1381a39cf400/sm/FinalFantasyTitle.png","duration":189,"publication_date":"2011-08-19T09:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-top-gear","changefreq":"weekly","video":[{"title":"S1:E255 - Video Game Vault - Top Gear","description":"How can you forget to put \"Select\" on your menu?","player_loc":"https://roosterteeth.com/embed/video-game-vault-top-gear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/721c84c0-8a0e-41b1-9a6e-cfa1ec0bbba5/sm/Top_Gear_SNES_ScreenShot1.gif","duration":126,"publication_date":"2011-08-19T09:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mighty-final-fight","changefreq":"weekly","video":[{"title":"S1:E254 - Video Game Vault - Mighty Final Fight","description":"Could the NES version eclipse its SNES successor? Find out... finally!","player_loc":"https://roosterteeth.com/embed/video-game-vault-mighty-final-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b1fc008-5f78-4791-8260-f7907893e440/sm/MightyFFJapanArt.png","duration":98,"publication_date":"2011-08-19T09:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-perfect-dark","changefreq":"weekly","video":[{"title":"S1:E253 - Video Game Vault - Perfect Dark","description":"This game is good for one reason, and Craig's not afraid to say it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-perfect-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6c4b474-88ef-4289-a665-da49e66b2246/sm/perfect_dark.jpg","duration":125,"publication_date":"2011-08-19T09:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-advance-wars","changefreq":"weekly","video":[{"title":"S1:E252 - Video Game Vault - Advance Wars","description":"Andy's first job required him to lead armies into battle. No big deal.","player_loc":"https://roosterteeth.com/embed/video-game-vault-advance-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":109,"publication_date":"2011-08-19T09:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wing-commander-iv","changefreq":"weekly","video":[{"title":"S1:E251 - Video Game Vault - Wing Commander IV","description":"Why would you ever go to a movie when you can have this beast?","player_loc":"https://roosterteeth.com/embed/video-game-vault-wing-commander-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ea6eb15-268e-4ca6-9743-bb296a7c89e1/sm/199308_52973_front_0.jpg","duration":127,"publication_date":"2011-08-19T09:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pirates-of-dark-water","changefreq":"weekly","video":[{"title":"S1:E250 - Video Game Vault - Pirates of Dark Water","description":"Riding the wave of Final Fight's success wasn't as easy as it seemed--even when based on a \"hit\" cartoon.","player_loc":"https://roosterteeth.com/embed/video-game-vault-pirates-of-dark-water","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbce467e-0171-49b8-8171-8854e7b7eedc/sm/Pirates_of_Dark_Water_GEN_ScreenShot1.gif","duration":110,"publication_date":"2011-08-19T08:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-spelunker","changefreq":"weekly","video":[{"title":"S1:E249 - Video Game Vault - Spelunker","description":"It's not a bad game at all, but chances are you're going to hate it!","player_loc":"https://roosterteeth.com/embed/video-game-vault-spelunker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7354eac4-3742-4bbe-8cec-8a9bba98d837/sm/Spelunker.gif","duration":105,"publication_date":"2011-08-19T08:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-ninja-warriors","changefreq":"weekly","video":[{"title":"S1:E248 - Video Game Vault - The Ninja Warriors","description":"The Ninja Warriors isn't based on the TV show, nor is it a bad game. It's just generic.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-ninja-warriors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/658884dc-b9b1-4e69-aca5-efb1d869342e/sm/Ninja_Warriors_SNES_ScreenShot1.gif","duration":127,"publication_date":"2011-08-19T08:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-one-must-fall-2097","changefreq":"weekly","video":[{"title":"S1:E247 - Video Game Vault - One Must Fall 2097","description":"Fight other robots and make hot girls talk to you. Yes.","player_loc":"https://roosterteeth.com/embed/video-game-vault-one-must-fall-2097","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96c9383c-791c-4ab6-a367-71ec9f15fa3c/sm/Screenshot-1.png","duration":104,"publication_date":"2011-08-19T08:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pit-fighter","changefreq":"weekly","video":[{"title":"S1:E246 - Video Game Vault - Pit Fighter","description":"Would you expect muscle men and underwear-clad little boys to be linked with this game?","player_loc":"https://roosterteeth.com/embed/video-game-vault-pit-fighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73adb087-25dd-4954-90dd-4db70ff7b790/sm/Pit-Fighter_GEN_ScreenShot1.gif","duration":141,"publication_date":"2011-08-19T08:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-3","changefreq":"weekly","video":[{"title":"S1:E86 - How to With Chad - 360 Stuck Disc Tray Repair","description":"Have an Xbox 360 with a stuck disc tray? Today I show you how to repair a stuck disc tray on an Xbox 360 WITHOUT voiding your warranty! **This repair also works on original Xbox!**","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":376,"publication_date":"2011-08-19T08:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-battletanx","changefreq":"weekly","video":[{"title":"S1:E245 - Video Game Vault - BattleTanx","description":"The scariest future of all time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-battletanx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d9e8bcc-840f-498e-8452-e8d3a4c621c3/sm/BattleTanx.gif","duration":145,"publication_date":"2011-08-19T08:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-need-for-speed-iii-hot-pursuit","changefreq":"weekly","video":[{"title":"S1:E244 - Video Game Vault - Need For Speed III: Hot Pursuit","description":"Forget power-to-weight ratios: haul balls in 1998's fastest and finest!","player_loc":"https://roosterteeth.com/embed/video-game-vault-need-for-speed-iii-hot-pursuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2a106ce-4bce-4da3-b8cc-b7e9222f860a/sm/NFS_III_Hot_Pursuit_(PC,_US)_cover_art.jpg","duration":104,"publication_date":"2011-08-19T08:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-gradius-3","changefreq":"weekly","video":[{"title":"S1:E243 - Video Game Vault - Gradius 3","description":"One of Craig's personal SNES favorites, this is what shmups are all about.","player_loc":"https://roosterteeth.com/embed/video-game-vault-gradius-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":150,"publication_date":"2011-08-19T08:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wario-land-super-mario-land-3","changefreq":"weekly","video":[{"title":"S1:E242 - Video Game Vault - Wario Land: Super Mario Land 3","description":"Mario's nemesis finally got his own game, and Craig loves it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wario-land-super-mario-land-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a9d6c23-7e80-4770-ba2c-2bca85e631c9/sm/Wario_Land_-_Super_Mario_Land_3_GBC_ScreenShot1.gif","duration":156,"publication_date":"2011-08-19T08:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-attack-of-the-killer-tomatoes","changefreq":"weekly","video":[{"title":"S1:E241 - Video Game Vault - Attack of the Killer Tomatoes","description":"Beware! This game isn't so hot.","player_loc":"https://roosterteeth.com/embed/video-game-vault-attack-of-the-killer-tomatoes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc0b3748-6d54-4911-b71b-41b56fe37839/sm/Title.gif","duration":107,"publication_date":"2011-08-19T08:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-adventure-island","changefreq":"weekly","video":[{"title":"S1:E240 - Video Game Vault - Super Adventure Island","description":"Get off me, candle!","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-adventure-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-19T08:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-widget","changefreq":"weekly","video":[{"title":"S1:E239 - Video Game Vault - Super Widget","description":"Shape shifting power ups? Sounds awesome! It's a shame it's one of \"those\" games.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-widget","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":148,"publication_date":"2011-08-19T08:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-s-c-a-t","changefreq":"weekly","video":[{"title":"S1:E238 - Video Game Vault - S.C.A.T.","description":"The name might make you LOL, but you'll QQ if you haven't played it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-s-c-a-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b7f4987-1deb-4589-be62-768200de6b2e/sm/129709503245_SCAT_01.jpg","duration":108,"publication_date":"2011-08-19T07:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-die-hard-arcade","changefreq":"weekly","video":[{"title":"S1:E237 - Video Game Vault - Die Hard Arcade","description":"An awesome game, but where's Bruce Willis?","player_loc":"https://roosterteeth.com/embed/video-game-vault-die-hard-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7a02bca-9ee1-4706-aea0-7d3c632caa50/sm/reviewdiehardarcade-2.jpg","duration":145,"publication_date":"2011-08-19T07:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-karate-champ","changefreq":"weekly","video":[{"title":"S1:E236 - Video Game Vault - Karate Champ","description":"A grandfather of the fighting genre.","player_loc":"https://roosterteeth.com/embed/video-game-vault-karate-champ","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":92,"publication_date":"2011-08-19T07:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-cabal","changefreq":"weekly","video":[{"title":"S1:E235 - Video Game Vault - Cabal","description":"Senseless, over-the-top animated violence with a girly twist.","player_loc":"https://roosterteeth.com/embed/video-game-vault-cabal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d7fb1d-fa56-48ac-87d9-ec1ec99701bb/sm/cabalnes-1.gif","duration":95,"publication_date":"2011-08-19T07:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-devils-crushdragons-fury","changefreq":"weekly","video":[{"title":"S1:E234 - Video Game Vault - Devil's Crush/Dragon's Fury","description":"A pinball game so metal that it needed two titles.","player_loc":"https://roosterteeth.com/embed/video-game-vault-devils-crushdragons-fury","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3028b6e6-356d-41dc-8295-4de521b8bec0/sm/dragons-fury-ss01.jpg","duration":102,"publication_date":"2011-08-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-lemmings","changefreq":"weekly","video":[{"title":"S1:E233 - Video Game Vault - Lemmings","description":"Some of nature's dumbest creatures are good for one thing--explosions!","player_loc":"https://roosterteeth.com/embed/video-game-vault-lemmings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5056604-ab95-4454-befa-05a3359669d7/sm/SNES_Lemmings_(V1.0)_Screen_2.jpg","duration":146,"publication_date":"2011-08-18T23:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-yo-noid","changefreq":"weekly","video":[{"title":"S1:E232 - Video Game Vault - Yo! Noid","description":"No matter what anyone tells you, The Noid does not make for a good game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-yo-noid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bb97d9c-0aa2-4cb8-a1da-13d74b611396/sm/home_yo-noid-header.png","duration":138,"publication_date":"2011-08-18T23:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-bart-simpsons-escape-from-camp-deadly","changefreq":"weekly","video":[{"title":"S1:E231 - Video Game Vault - Bart Simpson's Escape from Camp Deadly","description":"In a world before the internet, screenshots were suspect.","player_loc":"https://roosterteeth.com/embed/video-game-vault-bart-simpsons-escape-from-camp-deadly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5845a664-c541-4cb8-904c-e28b9e6ec3af/sm/5546A382.png","duration":104,"publication_date":"2011-08-18T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-virtua-fighter-kids","changefreq":"weekly","video":[{"title":"S1:E230 - Video Game Vault - Virtua Fighter Kids","description":"What makes a fighting game better? GIANT HEADS!","player_loc":"https://roosterteeth.com/embed/video-game-vault-virtua-fighter-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9eee119-e33d-4ad0-a210-7f358f5dc405/sm/1067035742.jpg","duration":122,"publication_date":"2011-08-18T22:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-zero-wing","changefreq":"weekly","video":[{"title":"S1:E229 - Video Game Vault - Zero Wing","description":"Internet famous? Yep. Worst game ever? Not exactly.","player_loc":"https://roosterteeth.com/embed/video-game-vault-zero-wing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":159,"publication_date":"2011-08-18T22:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-ren-stimpy-show-buckaroo","changefreq":"weekly","video":[{"title":"S1:E228 - Video Game Vault - The Ren & Stimpy Show: Buckaroo$","description":"A great show--but not a great game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-ren-stimpy-show-buckaroo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":130,"publication_date":"2011-08-18T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-future-cop-lapd","changefreq":"weekly","video":[{"title":"S1:E227 - Video Game Vault - Future Cop: LAPD","description":"Who would have thought that Robocop's mortal enemy would clean up Los Angeles?","player_loc":"https://roosterteeth.com/embed/video-game-vault-future-cop-lapd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":153,"publication_date":"2011-08-18T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-kirbys-dream-land","changefreq":"weekly","video":[{"title":"S1:E226 - Video Game Vault - Kirby's Dream Land","description":"The game that really... sucks. Get it?","player_loc":"https://roosterteeth.com/embed/video-game-vault-kirbys-dream-land","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":128,"publication_date":"2011-08-18T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-iggys-reckin-balls","changefreq":"weekly","video":[{"title":"S1:E225 - Video Game Vault - Iggy's Reckin' Balls","description":"Classic platforming combined with racing--What's not to love?","player_loc":"https://roosterteeth.com/embed/video-game-vault-iggys-reckin-balls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":148,"publication_date":"2011-08-18T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-kirby-64-the-crystal-shards","changefreq":"weekly","video":[{"title":"S1:E224 - Video Game Vault - Kirby 64: The Crystal Shards","description":"Power-ups are awesome, especially when combined!","player_loc":"https://roosterteeth.com/embed/video-game-vault-kirby-64-the-crystal-shards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":159,"publication_date":"2011-08-18T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ecco-the-tides-of-time","changefreq":"weekly","video":[{"title":"S1:E223 - Video Game Vault - Ecco: The Tides of Time","description":"Has Craig finally seen the light with the Ecco series?","player_loc":"https://roosterteeth.com/embed/video-game-vault-ecco-the-tides-of-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f686c8f0-b298-4821-afc4-c9a60fe8688c/sm/Ecco_The_Tides_Of_Time_GEN_ScreenShot1.jpg","duration":171,"publication_date":"2011-08-18T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-boundaries","changefreq":"weekly","video":[{"title":"S1:E84 - Clip of the Week - Boundaries","description":" There is no way to describe the clip. It's too bizarre. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-boundaries","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":162,"publication_date":"2011-08-18T17:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-314","changefreq":"weekly","video":[{"title":"2014:E333 - Let's Build in Minecraft - Cakewalk Part 1","description":"Plan G returns to make a perilous walk across some cakes. Ray will sense a disturbance in the force.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-314","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2227bff2-2dfd-4341-bcc5-4059d384299f/sm/ep10222.jpg","duration":1517,"publication_date":"2014-12-30T20:58:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-312","changefreq":"weekly","video":[{"title":"2014:E332 - #IDARB","description":"The AH Crew is back playing one of the most intense games around...IDARB!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-312","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47313625-c4b3-4adc-b0d7-b99618289c28/sm/ep10221.jpg","duration":1161,"publication_date":"2014-12-30T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-49","changefreq":"weekly","video":[{"title":"2014:E52 - Drinking Edition - GO! #62","description":"In GO! this week, Geoff tasks the gang with a New Year's tradition: drinking. First to get drunk in a video game wins!","player_loc":"https://roosterteeth.com/embed/go-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecfee977-b811-47eb-abf0-dd8ed6839034/sm/ep10220.jpg","duration":505,"publication_date":"2014-12-30T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-47","changefreq":"weekly","video":[{"title":"2014:E51 - Fact Check #2","description":"Jack and Geoff play a little fact check game and go over The Godfather: The Game, Mortal Kombat, Super Mario World, Resident Evil 4, and Destiny.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70a19013-c87d-406d-bf8d-fb4c7110d029/sm/ep10219.jpg","duration":160,"publication_date":"2014-12-30T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-49","changefreq":"weekly","video":[{"title":"2014:E52 - AHWU #246","description":"The Achievement Hunter Crew brings you this week's news in AHWU #246. \r\nVideo of the week: Play Pals #19 - Kalimba - http://bit.ly/1vDonRp","player_loc":"https://roosterteeth.com/embed/ahwu-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e563532-ce6c-45b2-be55-efc7e9f77894/sm/ep10218.jpg","duration":277,"publication_date":"2014-12-29T23:38:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-305","changefreq":"weekly","video":[{"title":"2014:E331 - GTA V - Crime Lord","description":"Time for a crime refresher course for the AH gang!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-305","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0f4ac2b-edd9-4910-a218-5eb7c6dca3db/sm/ep10217.jpg","duration":1788,"publication_date":"2014-12-29T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-mega-ryans-house","changefreq":"weekly","video":[{"title":"2014:E21 - Mega Ryan's House","description":"Matt and Ryan check out Revnaught's Massive tribute to the Mad King's House. It's about as creepy as you would expect.","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-mega-ryans-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aa9bb5e-718c-41b4-850a-5d3c2c17ebd0/sm/ep10216.jpg","duration":205,"publication_date":"2014-12-29T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-games-that-just-missed-the-top-10-of-2014","changefreq":"weekly","video":[{"title":"2014:E34 - Top 10 Games that Just Missed the Top 10 of 2014","description":"Jack, Ryan, and Ray take a look at 10 games Achievement Hunter loved, but not enough to give them a spot on the Best of 2014 list!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-games-that-just-missed-the-top-10-of-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c54b439-a2af-4153-8174-3d3c21b2bd9f/sm/ep10215.jpg","duration":289,"publication_date":"2014-12-29T17:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-293","changefreq":"weekly","video":[{"title":"2014:E330 - Minecraft - Episode 135 - Expanded Achievement City","description":"No longer held back by the old world limit, it's time to begin exploring the brand new lands beyond the walls.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-293","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10060621-40dc-481a-a0a1-bf40ead8c9dd/sm/ep10204.jpg","duration":3515,"publication_date":"2014-12-26T18:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-48","changefreq":"weekly","video":[{"title":"2014:E52 - Episode 223","description":"In Fails of the Weak #223, Geoff and Jack bring you fails in Destiny, Wolfenstein: TNO, Grand Theft Auto V, Far Cry 4, and WWE 2K15.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd80e097-2638-44e8-9970-b916628cd4c0/sm/ep10211.jpg","duration":187,"publication_date":"2014-12-26T17:56:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-64","changefreq":"weekly","video":[{"title":"2014:E70 - GTA V - Flipped Off","description":"The crew take control of a bulldozer and some rusty old cars to see who can be the last one driving.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0f61e33-0f69-4aec-90ae-02fff955cc32/sm/ep10209.jpg","duration":943,"publication_date":"2014-12-26T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-288","changefreq":"weekly","video":[{"title":"2014:E329 - Mario Kart 8 Part 2","description":"Michael, Ray, Gavin, and Ryan put the pedal to the metal and compete in two more tournaments.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-288","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f011dfb-f5b3-44c6-8aa8-a7a0c367a36a/sm/ep10200.jpg","duration":1929,"publication_date":"2014-12-25T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-slap-part-2","changefreq":"weekly","video":[{"title":"2014:E48 - Slap Part 2","description":"Joel and Adam show each other love and affection in the only way they know how; violence.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-slap-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1733149-5f71-4a85-95b1-c182b627683a/sm/ep10203.jpg","duration":1625,"publication_date":"2014-12-25T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-19-kalimba","changefreq":"weekly","video":[{"title":"2014:E19 - Kalimba","description":"Gavin and Michael test the true friendship between the Reds and Blues.","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-19-kalimba","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f66f5e32-1aaa-4d10-87ec-77fc9f964e12/sm/ep10202.jpg","duration":1631,"publication_date":"2014-12-25T00:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-46","changefreq":"weekly","video":[{"title":"2014:E52 - Episode 95: Jack vs. Ryan","description":"The two go face-to-face to see who can hide right under their opponent's nose.","player_loc":"https://roosterteeth.com/embed/vs-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/277443b4-dc44-4831-a71b-91dd715248d8/sm/ep10201.jpg","duration":602,"publication_date":"2014-12-25T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-281","changefreq":"weekly","video":[{"title":"2014:E328 - Halo 3 Legendary Co-op Part 3","description":"Geoff, Ryan, Jack, and Ray return to The Master Chief Collection to continue their Legendary Co-op journey in Halo 3!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-281","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3ca7f33-fa11-40f9-990d-9210743451ff/sm/ep10195.jpg","duration":1106,"publication_date":"2014-12-24T16:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-the-spartans-skull","changefreq":"weekly","video":[{"title":"IA:E20 - The Spartan's Skull","description":"Jeremy and Matt take a look at a hidden secret in Halo 3 that didn't carry over to the new version. How do you arm yourself for the final fight","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-the-spartans-skull","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/963bb3cb-961e-46f3-9715-6f843fae8485/sm/ep10198.jpg","duration":277,"publication_date":"2014-12-24T14:15:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-43","changefreq":"weekly","video":[{"title":"2014:E51 - Achievement HUNT #61","description":"This week's HUNT brings you Ray vs. Matt vs. Kerry vs. Kdin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166be83d-135a-456a-a766-9728436b213c/sm/ep10197.jpg","duration":488,"publication_date":"2014-12-24T14:10:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-59","changefreq":"weekly","video":[{"title":"2014:E69 - Minecraft - Polar Express","description":"The AH crew attempt to spread a little holiday cheer this year. It only sorta worked.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/648b5179-9ac9-419f-a542-fac8a671835a/sm/ep10196.jpg","duration":740,"publication_date":"2014-12-24T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-274","changefreq":"weekly","video":[{"title":"2014:E327 - I am Bread","description":"Michael and Gavin are back on one of the doughyest adventures of their lives! Tensions rise as they get closer to becoming the toast they always dreamed of. Watch This slice of entertainment now!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-274","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/839bea94-b7f9-40e0-8873-15edb1019dbb/sm/ep10189.jpg","duration":2735,"publication_date":"2014-12-23T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-42","changefreq":"weekly","video":[{"title":"2014:E50 - The Godfather: The Game","description":"Jack and Ryan give you five facts on The Godfather: The Game.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cee7bf8-769c-4832-a8a6-775af62a30ab/sm/ep10191.jpg","duration":211,"publication_date":"2014-12-23T16:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-40","changefreq":"weekly","video":[{"title":"2014:E51 - Holiday Edition - GO! #61","description":"This week's Go! is a test of holiday cheer! Who will be the first to find either a snowman, a Christmas tree, or a wrapped present in a video game! Sorry Kwanza.","player_loc":"https://roosterteeth.com/embed/go-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b494f813-2a7a-48e8-82ab-84f0a1241233/sm/ep10190.jpg","duration":330,"publication_date":"2014-12-23T12:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-272","changefreq":"weekly","video":[{"title":"2014:E326 - Let's Build in Minecraft - Legends of the Hidden Tower Part 5","description":"Matt, Kdin, and Lindsay finally finish their biggest build to date. Let's Rock.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-272","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/966c6c3e-30f5-4a1b-b0cd-448cbf812fb3/sm/ep10188.jpg","duration":3663,"publication_date":"2014-12-23T12:18:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-268","changefreq":"weekly","video":[{"title":"2014:E325 - GTA V - Santa's Delivery Service","description":"The Lads and Gents go head to head for Santa's love in a holiday edition of Let's Play GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-268","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c0db559-61d4-4b8e-be7b-b0b62d1260c8/sm/ep10187.jpg","duration":2158,"publication_date":"2014-12-23T00:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-42","changefreq":"weekly","video":[{"title":"2014:E51 - AHWU #245","description":"The Achievement Hunter Crew brings you this week's news in AHWU #245. \r\nCommunity video of the week: Operation - Grand Theft Auto V - Things to do in -- https://www.youtube.com/watchv=y0Vlkm2TfuM \r\nVid of the week: Let's Play - Destiny: Crota Raid Attempt 1 -- https://www.youtube.com/watchv=ej_UJy1c3-I","player_loc":"https://roosterteeth.com/embed/ahwu-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76d9eef8-e47c-4f3a-bbab-a4384cdce6cc/sm/ep10186.jpg","duration":498,"publication_date":"2014-12-22T19:18:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-games-of-2014","changefreq":"weekly","video":[{"title":"2014:E33 - Top 10 Games of 2014","description":"Jack, Ray, and Ryan take a look at AH's Top 10 Video Games of 2014!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-games-of-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a38bc6f9-65fe-4a66-bd6d-f0b32b582696/sm/ep10184.jpg","duration":290,"publication_date":"2014-12-22T17:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-261","changefreq":"weekly","video":[{"title":"2014:E324 - Halo 5: Guardians Multiplayer Beta","description":"Geoff, Gavin, and 'Ryan' try their hand at the new Halo 5: Guardians multiplayer beta!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-261","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06cc937e-c1dd-43da-b14a-08fcf0896d16/sm/ep10183.jpg","duration":646,"publication_date":"2014-12-22T17:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shenanigans-2014","changefreq":"weekly","video":[{"title":"2014:E1 - Give Me Your Milk","description":"In this new segment, the AH crew decide to pull a prank on Ryan.","player_loc":"https://roosterteeth.com/embed/shenanigans-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89f59431-77d7-4188-82ee-09f70e8c9b6d/sm/ep10178.jpg","duration":795,"publication_date":"2014-12-19T22:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-53","changefreq":"weekly","video":[{"title":"2014:E68 - GTA V - Cargoball Run","description":"Geoff, Ryan, Jack, Ray, Lindsay, and Matt take a trip back to the past with Cargoball Run.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d995a9d-4f40-4b8c-85a7-6aa3883d89fe/sm/ep10177.jpg","duration":1191,"publication_date":"2014-12-19T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-248","changefreq":"weekly","video":[{"title":"2014:E323 - Minecraft - Episode 134 - Mega Dig","description":"Five players, four blocks of gold, and one giant mound of dirt...let the hunt begin!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-248","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d66bd25-7e4b-4c6f-b474-a7f3441273f0/sm/ep10173.jpg","duration":3734,"publication_date":"2014-12-19T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-40","changefreq":"weekly","video":[{"title":"2014:E51 - Episode 222","description":"In Fails of the Weak #222, Geoff and Jack bring you fails in Destiny, The Last of Us, Grand Theft Auto V, and Halo: The Master Chief Collection.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95bfc0f5-8552-44ce-ab8c-89e8559253d0/sm/ep10172.jpg","duration":170,"publication_date":"2014-12-19T19:46:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-246","changefreq":"weekly","video":[{"title":"2014:E322 - Destiny: Crota Raid Attempt 1","description":"Geoff, Jack, Ryan, Ray, Jeremy, and Caleb give the new raid a go in Destiny. Maybe they'll succeed first time","player_loc":"https://roosterteeth.com/embed/lets-play-2014-246","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/707c16ca-5cfe-4be1-883e-1ff38ff869f5/sm/ep10171.jpg","duration":2753,"publication_date":"2014-12-18T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-18-i-am-bread","changefreq":"weekly","video":[{"title":"2014:E18 - I am Bread","description":"Michael and Gavin are back and they are Bread-er than ever!","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-18-i-am-bread","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8eba5bd-9fd7-4658-93a5-17e4787074bb/sm/ep10168.jpg","duration":1060,"publication_date":"2014-12-18T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-world-of-tanks","changefreq":"weekly","video":[{"title":"2014:E47 - World of Tanks","description":"Joel, Adam, Matt and Jeremy make their home countries proud by charging their tanks into battle. Will they prevail\n\nFor more information on World of Tanks click here!: http://bit.ly/1x0oMmV","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-world-of-tanks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fefd97f5-c80b-46d2-9a5c-0cb59e599b72/sm/ep10164.jpg","duration":1352,"publication_date":"2014-12-18T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-40","changefreq":"weekly","video":[{"title":"2014:E51 - Episode 94: Jack vs. Ray","description":"In this week's episode, AH gets naked during the VS graphic slide in.","player_loc":"https://roosterteeth.com/embed/vs-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94a25599-5af6-48ae-a086-094563ba1c9e/sm/ep10169.jpg","duration":505,"publication_date":"2014-12-18T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-50","changefreq":"weekly","video":[{"title":"2014:E67 - Minecraft - Fly Fishing","description":"In this week's TTD, the lads and gents visit Matt's world in Minecraft for some fly fishing. GET THAT LURE!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c215d714-5487-49f3-94b1-50b465201ded/sm/ep10167.jpg","duration":593,"publication_date":"2014-12-17T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-37","changefreq":"weekly","video":[{"title":"2014:E50 - Achievement HUNT #60","description":"This weeks HUNT brings you Jack vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a51a60b-ba0b-4781-b71d-67852c728032/sm/ep10166.jpg","duration":410,"publication_date":"2014-12-17T21:31:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-bb-bandit","changefreq":"weekly","video":[{"title":"IA:E19 - BB Bandit","description":"Jeremy and Matt are in the Capital Wasteland to try and pump up their guns and take a Deathclaw's eye out.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-bb-bandit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2636a83c-94fc-47eb-b4ff-22e8da0c3632/sm/ep10165.jpg","duration":304,"publication_date":"2014-12-17T19:57:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-237","changefreq":"weekly","video":[{"title":"2014:E321 - Far Cry 4 Co-Op Part 2","description":"Geoff and Ryan return to Kyrat for more shenanigans!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-237","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8381c5b4-baa9-45e4-be22-03de462f911a/sm/ep10162.jpg","duration":4108,"publication_date":"2014-12-17T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-235","changefreq":"weekly","video":[{"title":"2014:E320 - Worms Battegrounds Part 5","description":"Geoff, Jack, Michael, and Ray are back for another round of Worms Battlegrounds!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-235","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df5d177a-daa4-45a7-84ce-760badee57d5/sm/ep10161.jpg","duration":1429,"publication_date":"2014-12-16T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-37","changefreq":"weekly","video":[{"title":"2014:E50 - Lone Wolf Edition - GO! #60","description":"This week, the gang celebrates the Master Chief Collection by not playing it and instead playing Halo Reach. Whoever lasts the longest in Lone Wolf wins a sticker!!!","player_loc":"https://roosterteeth.com/embed/go-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd614ea5-5917-4dbe-bd7e-ad67ff047f74/sm/ep10159.jpg","duration":776,"publication_date":"2014-12-16T18:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-232","changefreq":"weekly","video":[{"title":"2014:E319 - Let's Build in Minecraft - Legends of the Hidden Tower Part 4","description":"Team Building Exercise are just about done with one of their biggest builds yet. RIP Sprinkles.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-232","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3362796d-513b-4f2f-b83f-0b33eec3c2e2/sm/ep10158.jpg","duration":3313,"publication_date":"2014-12-16T16:40:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-36","changefreq":"weekly","video":[{"title":"2014:E49 - Pirate Punishments Part 2","description":"Ryan and Jack bring you another five facts on Pirate Punishments.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c23b50b-0345-409e-b3fe-6ac1ffcf282d/sm/ep10157.jpg","duration":169,"publication_date":"2014-12-16T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-37","changefreq":"weekly","video":[{"title":"2014:E50 - AHWU #244","description":"The Achievement Hunter Crew brings you this week's news in AHWU #244. Community video: This is... Christmas Shopper Simulator (http://bit.ly/1yW4A5y) and Vid of week: Let's Play Ghost Recon Advanced Warfighter 2 (http://bit.ly/1AAnVGy)","player_loc":"https://roosterteeth.com/embed/ahwu-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f696aab-0aa8-43f7-9cab-7328ac5df447/sm/ep10156.jpg","duration":480,"publication_date":"2014-12-15T22:44:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-snow-levels-in-video-games","changefreq":"weekly","video":[{"title":"2014:E32 - Top 5 Snow Levels In Video Games","description":"Geoff, Michael, and Gavin take a look at some frosty favorites!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-snow-levels-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3028cfe0-813e-4a69-a3f5-4fb95d2d812e/sm/ep10154.jpg","duration":164,"publication_date":"2014-12-15T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-227","changefreq":"weekly","video":[{"title":"2014:E318 - GTA V - Tales From The Internet","description":"Geoff, Michael, Ryan, Ray and Lindsay match wits with some popular stunts from the Internet. Failure is not not an option.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-227","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf5142d5-08f5-420f-bf52-fd191b8892e4/sm/ep10153.jpg","duration":2126,"publication_date":"2014-12-15T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-214","changefreq":"weekly","video":[{"title":"2014:E317 - Vindictus","description":"Geoff, Ryan, Jack, and Ray hop into Vindictus for some action and adventure! \nClick here to play Vindictus: http://bit.ly/1w2RfrV \nThanks to Nexon for endorsing this video!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/202a43b1-ff4e-4b5f-b552-7e1172aa7730/sm/ep10144.jpg","duration":1356,"publication_date":"2014-12-12T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-35","changefreq":"weekly","video":[{"title":"2014:E50 - Episode 221","description":"In Fails of the Weak #221, Geoff and Jack bring you fails in Destiny, Grand Theft Auto V, Battlefield 4, and Far Cry 4.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15186b87-c888-42aa-9e27-c10fc224d88a/sm/ep10143.jpg","duration":168,"publication_date":"2014-12-12T16:52:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-209","changefreq":"weekly","video":[{"title":"2014:E316 - Minecraft - Episode 133 - Top Chef Part 3","description":"Proving that there's no such thing as \"too many cooks\", the crew is back for the finale of Top Chef!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-209","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b85c7d49-ab38-4876-b0e2-9435366c50fd/sm/ep10141.jpg","duration":2577,"publication_date":"2014-12-12T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-43","changefreq":"weekly","video":[{"title":"2014:E66 - Far Cry 4 - Rawr","description":"Geoff tosses the rest of the crew to the wolves, literally.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebc9dbc0-1fd6-4336-a96c-29e2c09b7f9b/sm/ep10142.jpg","duration":165,"publication_date":"2014-12-12T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-17-the-forest","changefreq":"weekly","video":[{"title":"2014:E17 - The Forest","description":"Presenting the first three (four) person Play Pals! How many AH members does it take to survive in the wild One: Ryan.","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-17-the-forest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3768e93-fb38-4ccb-8392-c09f947b6e15/sm/ep10140.jpg","duration":856,"publication_date":"2014-12-12T04:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-bayonetta-2","changefreq":"weekly","video":[{"title":"2014:E46 - Bayonetta 2","description":"Joel and Adam discuss hair suits.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-bayonetta-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3b10b6a-e178-4569-85ec-0d34fd305671/sm/ep10129.jpg","duration":1871,"publication_date":"2014-12-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-206","changefreq":"weekly","video":[{"title":"2014:E315 - Ghost Recon Advanced Warfighter 2","description":"Geoff, Ray, Ryan, Michael, Gavin, and special guest Dan play some GRAW2 and mop up some of the hardest achievements in the game.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-206","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb96f80-347d-4f3f-b7de-a4240ace57cf/sm/ep10139.jpg","duration":4130,"publication_date":"2014-12-11T18:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-final","changefreq":"weekly","video":[{"title":"2014:E36 - Rooster Teeth Inter-Office SMITE Tournament","description":"The final match is here! Team Dark Souls takes on Team Rainbow Tiger in a battle for your eternal souls...and other slightly more important things. Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-final","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a7fa986-fb80-4c07-90a7-78f4528ecd9c/sm/ep10138.jpg","duration":1293,"publication_date":"2014-12-11T18:42:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-34","changefreq":"weekly","video":[{"title":"2014:E50 - Episode 93: Geoff vs. Ray","description":"This week, Geoff throws down with Ray on some familiar yet foreign territory.","player_loc":"https://roosterteeth.com/embed/vs-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49a6f6db-ff35-404d-a433-22c29456ab40/sm/ep10136.jpg","duration":564,"publication_date":"2014-12-11T17:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-30","changefreq":"weekly","video":[{"title":"2014:E49 - Achievement HUNT #59","description":"This week's HUNT brings you Jack vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbece1cd-1a49-44e1-b4e1-fa63ab2b8a4e/sm/ep10135.jpg","duration":455,"publication_date":"2014-12-10T21:34:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-198","changefreq":"weekly","video":[{"title":"2014:E314 - Dragon Age: Inquisition","description":"Geoff, Ryan, Jack, and Michael embark on a mysterious adventure of wonder and magic...and there's a good chance they have no idea what they're doing.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-198","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b23a3d4-28ba-49a2-a9b6-911f3940d924/sm/ep10131.jpg","duration":1714,"publication_date":"2014-12-10T18:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-41","changefreq":"weekly","video":[{"title":"2014:E65 - Super Smash Bros. for WiiU - Smashketball","description":"Matt and Kdin begin the jam in Super Smash Bros for WiiU and would like to welcome you all to the slam.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd7cf45e-12c1-4523-8896-df0bd7a0099e/sm/ep10134.jpg","duration":712,"publication_date":"2014-12-10T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-come-at-me-bro","changefreq":"weekly","video":[{"title":"IA:E18 - Come at Me Bro","description":"Jeremy and Matt are back in GTA V to show some cougars/mountain lions/pumas/tigers apparently, who's boss.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-come-at-me-bro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85f22e1c-e290-4f67-b1e9-5f14edaa1f1c/sm/ep10133.jpg","duration":208,"publication_date":"2014-12-10T17:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-190","changefreq":"weekly","video":[{"title":"2014:E313 - Wrecked: Revenge Revisited Part 2","description":"Jack, Ray, Michael, and Gavin are back in Wrecked Revenge Revisited! Their driving skills have not improved.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-190","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dc17c9b-b652-41bc-99cd-71590f9486b2/sm/ep10126.jpg","duration":1644,"publication_date":"2014-12-09T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-189","changefreq":"weekly","video":[{"title":"2014:E312 - Let's Build in Minecraft - Legends of the Hidden Tower Part 3","description":"Team Building Exercise continues construction on their massive Legends of the Hidden Temple build. Will this series be as long as the Halloween one Maybe.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-189","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e7c253a-53f2-45fc-b23e-6405e5be0cde/sm/ep10124.jpg","duration":3394,"publication_date":"2014-12-09T21:50:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-30","changefreq":"weekly","video":[{"title":"2014:E48 - Call of Duty: Ghosts","description":"Franco gives you five facts over Call of Duty: Ghosts...err, we mean Goats.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7088f41-b847-4fcb-ba1b-8d1cf36fd972/sm/ep10123.jpg","duration":209,"publication_date":"2014-12-09T17:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-30","changefreq":"weekly","video":[{"title":"2014:E49 - Kill an Eagle Edition - GO! #59","description":"This week, the task is as un-American as possible: kill an eagle in\nFar Cry 4. The first to do it will earn a sticker. The last... well no\none cares about them because this is America.","player_loc":"https://roosterteeth.com/embed/go-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7df5c1e1-02df-441d-b2fe-1d864e602264/sm/ep10122.jpg","duration":332,"publication_date":"2014-12-09T16:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-third-person-open-world-game-series","changefreq":"weekly","video":[{"title":"2014:E31 - Top 10 Third Person Open World Game Series","description":"Geoff and Ray take a look at the best of the best when it comes to Third Person Open World Video Games!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-third-person-open-world-game-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61b14737-d18f-47bb-ae4c-2ac56440f50a/sm/ep10118.jpg","duration":297,"publication_date":"2014-12-08T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-30","changefreq":"weekly","video":[{"title":"2014:E49 - Week #243","description":"The Achievement Hunter Crew brings you this week's news in AHWU #243. Community Video (actually a playlist this week) - http://bit.ly/bestofAH and Vid of Week: Let's Play Farcry 4: Multiplayer Part 1 -- http://bit.ly/1vxBL8e","player_loc":"https://roosterteeth.com/embed/ahwu-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87d586ca-f475-430d-93d1-1a507ae9478f/sm/ep10117.jpg","duration":421,"publication_date":"2014-12-08T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-179","changefreq":"weekly","video":[{"title":"2014:E311 - GTA V - Things We Did","description":"Geoff, Ryan, Jack, Ray and Lindsay revisit some things to do in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-179","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04355214-243a-4475-ac76-7e86580d7888/sm/ep10116.jpg","duration":2045,"publication_date":"2014-12-08T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-34","changefreq":"weekly","video":[{"title":"2014:E64 - GTAV - Skeet Shooting","description":"This week, Gavin proves that he is almost as good as a clay pigeon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcc07382-55c2-4fd0-9945-971506cb6dcc/sm/ep10111.jpg","duration":1470,"publication_date":"2014-12-06T01:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-28","changefreq":"weekly","video":[{"title":"2014:E49 - Volume 220","description":"In Fails of the Weak #220, Geoff and Jack bring you fails in Assassin's Creed: Unity, Far Cry 4, Grand Theft Auto V, Halo: MCC, and Middle-earth: Shadow of Mordor.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7c8c404-beda-4b70-b125-46f463e87f93/sm/ep10110.jpg","duration":167,"publication_date":"2014-12-05T20:22:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-166","changefreq":"weekly","video":[{"title":"2014:E310 - Minecraft - Episode 132 - Fishing Rodeo And Jamboree III","description":"It's that time again, the annual Fishing Rodeo & Jamboree returns for its third installment!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c65bccc3-c7e5-46ad-be06-d4f21883638c/sm/ep10108.jpg","duration":2344,"publication_date":"2014-12-05T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-158","changefreq":"weekly","video":[{"title":"2014:E309 - Far Cry 4: Multiplayer Part 1","description":"Geoff, Jack, Ryan, Michael, Ray, Lindsay, Jeremy, and Matt run loose in Far Cry 4. The name of the game is Outpost, and only the best mercenaries and hunters can win this one. Good thing they're only competing against each other.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/488abb5f-da7c-4270-903f-0a8a7206d200/sm/ep10103.jpg","duration":2332,"publication_date":"2014-12-04T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-12","changefreq":"weekly","video":[{"title":"2014:E23 - Grand Theft Auto V - Hidden Peyote Plant Easter Eggs Part 1","description":"Geoff and Michael show you where to find the first seven hidden peyote plant easter eggs in GTA V for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f205ec0-2df9-449e-ad39-01b290d6ce6b/sm/ep10107.jpg","duration":480,"publication_date":"2014-12-04T20:05:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-27","changefreq":"weekly","video":[{"title":"2014:E49 - Episode 92: Lindsay vs. Ray","description":"In a surprise turn of events, this week's champion is no where to be found. Who will step in to take the belt","player_loc":"https://roosterteeth.com/embed/vs-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a5141d3-f95b-4683-a977-ab37cd47bb97/sm/ep10106.jpg","duration":633,"publication_date":"2014-12-04T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-the-ship","changefreq":"weekly","video":[{"title":"2014:E45 - The Ship","description":"Joel, Adam, Matt and Jeremy embark on a trip rife with mystery, murder, and marina madness.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-the-ship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81c876db-f6fa-41ef-a65b-aabae71e7a14/sm/ep10105.jpg","duration":3517,"publication_date":"2014-12-04T18:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-8","changefreq":"weekly","video":[{"title":"2014:E35 - Rooster Teeth Inter-Office SMITE Tournament","description":"Team Leftover Leftovers fight Team Cranberries to find out which team is the best of the losers! Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/930c7613-3c48-499d-8354-8cc0e0e9ecb7/sm/ep10102.jpg","duration":1448,"publication_date":"2014-12-04T16:56:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-16-geometry-wars-3","changefreq":"weekly","video":[{"title":"2014:E16 - Geometry Wars 3","description":"This week Jack and Ray are the dynamic duo as they attempt Geometry Wars 3!","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-16-geometry-wars-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/586af20f-375a-4954-8c6c-d99750f8c24f/sm/ep10101.jpg","duration":827,"publication_date":"2014-12-04T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-23","changefreq":"weekly","video":[{"title":"2014:E48 - Achievement HUNT #58","description":"This week's HUNT brings you Jack vs Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c09d2865-34fd-4c33-9073-b3b28b360925/sm/ep10100.jpg","duration":433,"publication_date":"2014-12-03T22:22:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-148","changefreq":"weekly","video":[{"title":"2014:E308 - Halo 3 Legendary Co-op Part 2","description":"Geoff, Ryan, Jack, and Ray continue their adventures in Halo 3!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd7db61f-ea53-4250-b26d-a51b7d433747/sm/ep10097.jpg","duration":1474,"publication_date":"2014-12-03T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-30","changefreq":"weekly","video":[{"title":"2014:E63 - Minecraft - Flare Blitz","description":"In this week's Things to do in Minecraft, Geoff and Jack launch fireballs at one another in a competition to see which one can plunge the other into the lava below!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c825d42-ea7b-433d-a898-2b40c3d0155c/sm/ep10099.jpg","duration":646,"publication_date":"2014-12-03T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-a-walk-to-end-it-all","changefreq":"weekly","video":[{"title":"IA:E17 - A Walk To End It All","description":"Kdin walks Jeremy through The Legend of Zelda: A Link to the Past to show him how to beat the whole game in under 10 minutes. Start timer... now.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-a-walk-to-end-it-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36509e95-6fd9-42a5-ba93-f51132ccedee/sm/ep10098.jpg","duration":169,"publication_date":"2014-12-03T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-144","changefreq":"weekly","video":[{"title":"2014:E307 - Sniper Elite 3 Part 2","description":"The AH Crew are back in Sniper Elite 3. They're still not good at shooting each other.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea217e14-ef90-4d42-b7a1-abdb77171c0d/sm/ep10095.jpg","duration":2208,"publication_date":"2014-12-03T00:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-the-master-chief-collection-3-achievement-guides","changefreq":"weekly","video":[{"title":"2014:E2483 - Halo: The Master Chief Collection - 3 Achievement Guides","description":"Geoff and Jack show you how to get three easter egg related Achievements in Halo: The Master Chief Collection.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-the-master-chief-collection-3-achievement-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab14aa8b-e831-4d29-854c-0fbd349a1181/sm/ep10093.jpg","duration":138,"publication_date":"2014-12-02T21:00:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-141","changefreq":"weekly","video":[{"title":"2014:E306 - GTA V - First Person Free Play Alternate Takes","description":"Alternate takes and outtakes from Let's Play GTA V: First Person Free Play.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/453df2c0-1dd0-4c77-8f32-bfc4d819827b/sm/ep10092.jpg","duration":268,"publication_date":"2014-12-02T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-138","changefreq":"weekly","video":[{"title":"2014:E305 - Let's Build in Minecraft - Halloween Spooktacular Part 5","description":"Team Building Exercise is back to present the final episode of their Halloween build. The remainder of the build was done by Matt in his apartment with no pants, and we aren't allowed to show that footage.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29f9ea50-2011-4ebf-9fa6-a27da0f67b36/sm/ep10091.jpg","duration":2838,"publication_date":"2014-12-02T19:31:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-geometry-wars-3-cleaning-up-achievement-guide","changefreq":"weekly","video":[{"title":"2014:E2482 - Geometry Wars 3 - Cleaning Up Achievement Guide","description":"Jack and Geoff pick up the Cleaning Up achievement in Geometry Wars 3 and show you how you can grab it yourself!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-geometry-wars-3-cleaning-up-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d353a071-2c7b-48ca-897c-6642c6cd96ca/sm/ep10090.jpg","duration":84,"publication_date":"2014-12-02T19:24:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-geometry-wars-3-deadliest-achievement-guide","changefreq":"weekly","video":[{"title":"2014:E2481 - Geometry Wars 3 - Deadliest Achievement Guide","description":"Jack and Geoff show you how to pick up the Deadliest achievement in Geometry Wars 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-geometry-wars-3-deadliest-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/689939b8-b338-463a-8e6c-49aa093e8d90/sm/ep10089.jpg","duration":113,"publication_date":"2014-12-02T19:23:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-25","changefreq":"weekly","video":[{"title":"2014:E48 - Kill a Whale Edition - GO! #58","description":"Geoff wants the gang to kill a whale in GTAV. Geoff thought it wouldn't take long. Geoff was wrong.","player_loc":"https://roosterteeth.com/embed/go-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ad13741-24e0-454d-839c-82261c0ec261/sm/ep10088.jpg","duration":1589,"publication_date":"2014-12-02T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-21","changefreq":"weekly","video":[{"title":"2014:E47 - Fact Check #1","description":"Jack and Geoff play a little fact check game and go over Bioshock Infinite, Sonic the Hedgehog, Tetris, Pac-Man, and Super Mario Bros.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e69d840c-a981-42a7-89f3-981bfbfd644e/sm/ep10086.jpg","duration":200,"publication_date":"2014-12-02T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-first-person-open-world-game-series","changefreq":"weekly","video":[{"title":"2014:E30 - Top 5 First Person Open World Game Series","description":"Geoff and Ray take a look at the Top 5 First Person Open Video Game Series!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-first-person-open-world-game-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f71d8dc1-1f64-4fa5-b835-8f79274986ac/sm/ep10084.jpg","duration":203,"publication_date":"2014-12-01T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-21","changefreq":"weekly","video":[{"title":"2014:E48 - Week #242","description":"The Achievement Hunter Crew brings you this week's news in AHWU #242. Video of the Week: http://bit.ly/1weDrKc and Community Video of the Week: http://bit.ly/1weDBRS","player_loc":"https://roosterteeth.com/embed/ahwu-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d8fe99b-be9b-49e5-9ef5-79dbceab4d02/sm/ep10083.jpg","duration":496,"publication_date":"2014-12-01T20:03:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-124","changefreq":"weekly","video":[{"title":"2014:E304 - GTA V - Top Fun Times","description":"Gavin, Geoff, Jack, Lindsay and Ryan take another crack at Top Fun in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35ee2d51-3b00-4986-b82a-83268e33ab5f/sm/ep10081.jpg","duration":1868,"publication_date":"2014-12-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-december-2014","changefreq":"weekly","video":[{"title":"2014:E34 - Coming Soon - December 2014","description":"Kdin is back with a ton of new games and other information for the month of December. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-december-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd018b93-d500-41ea-960c-8d564d362edc/sm/ep10082.jpg","duration":246,"publication_date":"2014-12-01T18:57:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-20","changefreq":"weekly","video":[{"title":"2014:E48 - Episode 91: Geoff and Gavin vs. Ryan and Jack","description":"It's Geoff and Gavin versus Ryan and Jack in this weeks special Thanksgiving day battle. Which team will win Tune in to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aec7232-cd97-4627-99ac-c147fc5f1c9a/sm/ep10078.jpg","duration":1358,"publication_date":"2014-11-27T00:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-16","changefreq":"weekly","video":[{"title":"2014:E47 - Achievement HUNT #57","description":"This week's HUNT brings you Matt vs. Jeremy.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f581e1f-59db-428b-acdd-95aab9203443/sm/ep10075.jpg","duration":260,"publication_date":"2014-11-26T20:32:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-24","changefreq":"weekly","video":[{"title":"2014:E62 - GTA V - Cargo Catch","description":"The AH crew gather up to prove how wily they can be and escape the grip of the cargobobs. Is there anything those helicopters can't do","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae145a55-eed1-400e-8806-0cd7d9258b96/sm/ep10073.jpg","duration":1200,"publication_date":"2014-11-26T20:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-111","changefreq":"weekly","video":[{"title":"2014:E303 - NBA2K15","description":"Geoff, Ryan, Michael, Gavin, and Ray put their basketball skills to the test against some of the greatest teams in the NBA... except not really.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b14b56a-70cc-4f22-a2e5-ed776ac43807/sm/ep10072.jpg","duration":2039,"publication_date":"2014-11-26T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-unbreaking","changefreq":"weekly","video":[{"title":"IA:E16 - Unbreaking","description":"Jeremy and Miles pit their skills against Gaius in Shadow of the Collossus. Time to launch, grip, and take him down.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-unbreaking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dca9877-9fd3-4db5-9e2e-e488d4b7cb08/sm/ep10071.jpg","duration":278,"publication_date":"2014-11-26T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-98","changefreq":"weekly","video":[{"title":"2014:E302 - Far Cry 4 Co-Op","description":"Geoff and Ryan venture off into the wilds of Kyrat in search for truth, justice, and the American way!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8872fe75-7a1e-4e35-9aa8-2696b5966415/sm/ep10062.jpg","duration":3531,"publication_date":"2014-11-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-15-black-hat-oculus","changefreq":"weekly","video":[{"title":"2014:E15 - Black Hat Oculus","description":"Geoff and Ryan team up once again, this time the goal is simple get the gold orbs and get out...but there's a catch!","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-15-black-hat-oculus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/590c385a-1dc1-4476-b6ef-953fd53845b5/sm/ep10068.jpg","duration":811,"publication_date":"2014-11-26T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-103","changefreq":"weekly","video":[{"title":"2014:E301 - Minecraft - Episode 131 - Top Chef Part 2","description":"The heat is still on at the cooking competition in Achievement City!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dbca7b2-9649-4c60-9cf0-bbf67e591a26/sm/ep10067.jpg","duration":3165,"publication_date":"2014-11-26T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-7","changefreq":"weekly","video":[{"title":"2014:E33 - Rooster Teeth Inter-Office SMITE Tournament","description":"Team Leftovers are a man down, so it's up to a lovely lady to save them! But will their power combined be enough to topple Team Rainbow Tiger! Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53991952-cd5d-475a-b83b-d1c356211dd0/sm/ep10064.jpg","duration":1656,"publication_date":"2014-11-26T17:34:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-epic-forces-collide","changefreq":"weekly","video":[{"title":"S1:E83 - Clip of the Week - Epic Forces Collide","description":" When two of ScrewAttack's mightiest forces meet on the field of battle, no matter who wins, we lose.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-epic-forces-collide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":271,"publication_date":"2011-08-18T16:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-real-world-power-ups","changefreq":"weekly","video":[{"title":"S1:E82 - Clip of the Week - Real World Power Ups","description":" The crew several video game power ups laying around in the headquarters. Yeah, that's normal.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-real-world-power-ups","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":163,"publication_date":"2011-08-18T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-invasion","changefreq":"weekly","video":[{"title":"S1:E81 - Clip of the Week - The Invasion","description":"A terrible, terrible evil gets unleased upon the ScrewAttack Headquarters! ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-invasion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":186,"publication_date":"2011-08-18T16:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-byrons-initiation","changefreq":"weekly","video":[{"title":"S1:E80 - Clip of the Week - Byron's Initiation","description":"We did have a Clip ready, but Nick broke it. Instead, you get Byron's intern initiation! ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-byrons-initiation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":93,"publication_date":"2011-08-18T16:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-moral-choices","changefreq":"weekly","video":[{"title":"S1:E79 - Clip of the Week - Moral Choices","description":"Infamous has some terrible moral choices. Then again, we have no morals.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-moral-choices","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":247,"publication_date":"2011-08-18T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-closet-parrot","changefreq":"weekly","video":[{"title":"S1:E78 - Clip of the Week - Closet Parrot","description":" When normal security systems fail, we send our most sophisticated piece of equipment - Closet Parrot.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-closet-parrot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":253,"publication_date":"2011-08-18T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-creepy-ads","changefreq":"weekly","video":[{"title":"S1:E77 - Clip of the Week - Creepy Ads","description":"Sony sure made some weird ass advertisements for the PlayStation 3. Ours are less weird. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-creepy-ads","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":129,"publication_date":"2011-08-18T16:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-dia-de-huevos-2010","changefreq":"weekly","video":[{"title":"S1:E76 - Clip of the Week - Dia De Huevos 2010","description":"After an entire year, Craig did not forget about his favorite (made up) holiday, Dia De Huevos. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-dia-de-huevos-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":341,"publication_date":"2011-08-18T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-survival-battle-eating-contest","changefreq":"weekly","video":[{"title":"S1:E85 - The Survival Battle Eating Contest","description":"We received some icky survival food as part of a PR package for Gods Eater Burst on PSP, but couldn't find a use for it. That's when we hired new ScrewAttack intern Santiago and merch man Ian to consume it for us! Give 'em a warm ScrewAttack welcome, g1s!","player_loc":"https://roosterteeth.com/embed/the-survival-battle-eating-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":236,"publication_date":"2011-08-18T16:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-hard-corps-uprising-jared","changefreq":"weekly","video":[{"title":"S1:E84 - How Many Lives: Hard Corps Uprising - Jared","description":"The King of How Many Lives returns to defend his crown, this time in Konami's latest \"Contra,\" Hard Corps Uprising. How high will he set the bar for his opponents?","player_loc":"https://roosterteeth.com/embed/how-many-lives-hard-corps-uprising-jared","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e12970d2-a786-4078-b9a6-a2f821015161/sm/324193.jpg","duration":167,"publication_date":"2011-08-18T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-competitive-co-op","changefreq":"weekly","video":[{"title":"S1:E75 - Clip of the Week - Competitive Co-op","description":" With all of these competitive co-op games coming out, it directly influenced our day to day attitudes around the office.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-competitive-co-op","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":197,"publication_date":"2011-08-18T16:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-gauntlet-2010-part-2","changefreq":"weekly","video":[{"title":"S1:E83 - ScrewAttack Gauntlet 2010 Part 2","description":"As we move to Craig's turn to tackle the Gauntlet, he seemed pretty confident after watching Jose's pathetic performance. Who will have to wax their legs and suffer ultimate humiliation?","player_loc":"https://roosterteeth.com/embed/screwattack-gauntlet-2010-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67c80874-17ab-4b2d-ac21-1fe48f7b677f/sm/42998_low_1293509628.jpg","duration":266,"publication_date":"2011-08-18T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-bounce","changefreq":"weekly","video":[{"title":"S1:E74 - Clip of the Week - Bounce","description":" Jose's obsession with bouncy things crosses a whole new line.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-bounce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":122,"publication_date":"2011-08-18T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-armory-testing","changefreq":"weekly","video":[{"title":"S1:E73 - Clip of the Week - Armory Testing","description":"Destin doesn't just add any weapon into The Armory. He does extensive testing on weapons of all types. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-armory-testing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":107,"publication_date":"2011-08-18T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-box-bot-wars","changefreq":"weekly","video":[{"title":"S1:E72 - Clip of the Week - Box Bot Wars","description":"When Adam the Intern returns to challenge Ben's dominance, an all-out Box Bot war breaks out!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-box-bot-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":340,"publication_date":"2011-08-18T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-wolvernick","changefreq":"weekly","video":[{"title":"S1:E71 - Clip of the Week - The Wolvernick","description":" Plenty of strange creatures habit the office, but none more elusive than the Wolvernick.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-wolvernick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":186,"publication_date":"2011-08-18T15:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-tour-of-motus","changefreq":"weekly","video":[{"title":"S1:E82 - A Tour of Motus","description":"We showed you the good stuff we did at Mocap, but if you were wondering what the rest of the place looks like, here it is.","player_loc":"https://roosterteeth.com/embed/a-tour-of-motus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":121,"publication_date":"2011-08-18T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fun-with-the-nintendo-3ds","changefreq":"weekly","video":[{"title":"S1:E81 - Fun with the Nintendo 3DS","description":"So a couple of us at the HQ got the new Nintendo 3DS, and they kinda took over the office.","player_loc":"https://roosterteeth.com/embed/fun-with-the-nintendo-3ds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":163,"publication_date":"2011-08-18T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-of-screwattack-airsoft-killing-spree","changefreq":"weekly","video":[{"title":"S1:E80 - A Day in the Life of ScrewAttack: Airsoft Killing Spree","description":"Chad has thoughtfully let us borrow his airsoft guns for use as props in our videos, but they look so real some of the staff members feel a little queasy whenever they're brought out. Chad decided to make it his mission to challenge everybody to an airsoft contest to settle the diabolical queasiness once and for all - a killing spree. Don't worry, nobody was permanently injured during the making of this video... sort of.","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-of-screwattack-airsoft-killing-spree","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":411,"publication_date":"2011-08-18T15:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-play-n64-games-on-your-wii","changefreq":"weekly","video":[{"title":"S1:E79 - How to Play N64 Games on Your Wii","description":"Consider it an experiment. Jared and Nick use adapters to use old-school N64 controllers on their Wii console, and test them against modern games.","player_loc":"https://roosterteeth.com/embed/how-to-play-n64-games-on-your-wii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":192,"publication_date":"2011-08-18T15:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-blooper-reel-2","changefreq":"weekly","video":[{"title":"S1:E70 - Clip of the Week - Blooper Reel 2","description":"We like to have a lot of fun when making our videos, and here's proof of that. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-blooper-reel-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":321,"publication_date":"2011-08-18T15:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2010-screwattack-gauntlet","changefreq":"weekly","video":[{"title":"S1:E78 - The 2010 ScrewAttack Gauntlet","description":"ScrewAttack has a history with challenges, but we've never thrown down a gauntlet...until now. Jose vs Craig. 4 challenges, 2 games and 2 physical, winner keeps his dignity and the loser gives up theirs. How, let's just say the punishment could get a little hairy.\r\nWatch part two here: http://screwattack.com/videos/The-ScrewAttack-Gauntlet-Pt-2","player_loc":"https://roosterteeth.com/embed/the-2010-screwattack-gauntlet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6206e2cd-f3a6-4fa6-9fd1-cee2ef25d65c/sm/42997_low_1293420791.jpg","duration":242,"publication_date":"2011-08-18T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-team-screwattack","changefreq":"weekly","video":[{"title":"S1:E69 - Clip of the Week - Team ScrewAttack","description":"The original introduction video to the crew of ScrewAttack!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-team-screwattack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":256,"publication_date":"2011-08-18T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-arcade-in-austin-tx","changefreq":"weekly","video":[{"title":"S1:E77 - The Best Arcade in Austin, TX","description":"As arcades keep dying, one arcade was brave enough to open in Austin, TX - Arcade UFO. Japanese cabs, lots of your favorite games, all found in a converted laundromat.","player_loc":"https://roosterteeth.com/embed/the-best-arcade-in-austin-tx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":152,"publication_date":"2011-08-18T15:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/post-halloween-09-break-stuff","changefreq":"weekly","video":[{"title":"S1:E76 - Post-Halloween 09' Break Stuff","description":"It was after Halloween and stuff needed breaking. We don't need much more of an excuse to do this kind of thing.","player_loc":"https://roosterteeth.com/embed/post-halloween-09-break-stuff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":188,"publication_date":"2011-08-18T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-blooper-reel","changefreq":"weekly","video":[{"title":"S1:E68 - Clip of the Week - Blooper Reel","description":" A collection of bloopers from the dozens of Clip of the Weeks we have done.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-blooper-reel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":227,"publication_date":"2011-08-18T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-potty-humor","changefreq":"weekly","video":[{"title":"S1:E67 - Clip of the Week - Potty Humor","description":" Nobody just goes to the bathroom anymore. We all have our own, unique way of entertaining ourselves during that excruciating 5 to 10 minute period every day.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-potty-humor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":171,"publication_date":"2011-08-18T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-video-will-make-you-feel-old-2","changefreq":"weekly","video":[{"title":"S1:E75 - This Video Will Make You Feel Old","description":"Duke Nukem Forever took 15 years to make. It's time to remember how much has happened in those fifteen years and to see how much you remember. Depends not included.","player_loc":"https://roosterteeth.com/embed/this-video-will-make-you-feel-old-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":201,"publication_date":"2011-08-18T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-psp-auditions","changefreq":"weekly","video":[{"title":"S1:E66 - Clip of the Week - PSP Auditions","description":"Sony's new PSP marketing spokesperson, Marcus, sucks. Why did they choose him over all of our fantastic audition tapes? ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-psp-auditions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":208,"publication_date":"2011-08-18T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-night-vision","changefreq":"weekly","video":[{"title":"S1:E65 - Clip of the Week - Night Vision","description":"Ben orders new equipment to give him the advantage in his neverending escape from Jose's appeitite. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-night-vision","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":164,"publication_date":"2011-08-18T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-assassin","changefreq":"weekly","video":[{"title":"S1:E64 - Clip of the Week - Assassin","description":" No matter where he turns, Jose can feel eyes watching him. What is Jared's agenda? Why does he stalk Jose relentlessly?","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-assassin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":201,"publication_date":"2011-08-18T14:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-zombie-attack","changefreq":"weekly","video":[{"title":"S1:E63 - Clip of the Week - Zombie Attack","description":"Fans are so upset about Left 4 Dead 2, that even the zombies are boycotting. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-zombie-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":288,"publication_date":"2011-08-18T14:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-snake-rattle-n-roll","changefreq":"weekly","video":[{"title":"S1:E222 - Video Game Vault - Snake Rattle 'n' Roll","description":"A game that encourages you to lengthen your snake.","player_loc":"https://roosterteeth.com/embed/video-game-vault-snake-rattle-n-roll","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":110,"publication_date":"2011-08-18T14:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/waiting-a-decade-for-duke","changefreq":"weekly","video":[{"title":"S1:E74 - Waiting a Decade for Duke","description":"This man waited a decade for Duke Nukem Forever. When the day finally came he still had to wait to play DNF, did he think it was worth the wait?","player_loc":"https://roosterteeth.com/embed/waiting-a-decade-for-duke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":366,"publication_date":"2011-08-18T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-a-gamers-new-year","changefreq":"weekly","video":[{"title":"S1:E62 - Clip of the Week - A Gamer's New Year","description":" It's another New Year's Eve, and let's face it. We all know exactly how every gamer spends their New Year's.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-a-gamers-new-year","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":99,"publication_date":"2011-08-18T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pac-in-time","changefreq":"weekly","video":[{"title":"S1:E221 - Video Game Vault - Pac-in-Time ","description":"Pac is back but has he restored his masculinity?","player_loc":"https://roosterteeth.com/embed/video-game-vault-pac-in-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cebf6bf-b8fa-407c-981a-380412798c91/sm/Pac-In-Time_SNES_ScreenShot1.gif","duration":144,"publication_date":"2011-08-18T14:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-intense","changefreq":"weekly","video":[{"title":"S1:E61 - Clip of the Week - Intense","description":"Everyone at the office takes their job so seriously, we are downright intense about it.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-intense","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":158,"publication_date":"2011-08-18T14:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-hook","changefreq":"weekly","video":[{"title":"S1:E220 - Video Game Vault - Hook","description":"A kick-ass game from a kick-ass movie--what are the chances?","player_loc":"https://roosterteeth.com/embed/video-game-vault-hook","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbd7aa44-4470-4ec1-9f61-189ec081f3d9/sm/hook-ss01.jpg","duration":131,"publication_date":"2011-08-18T14:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-addicts","changefreq":"weekly","video":[{"title":"S1:E60 - Clip of the Week - Addicts","description":" World of Warcraft is one addicting game. But don't worry. There is help. We are here for you.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-addicts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":473,"publication_date":"2011-08-18T14:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-yoshis-cookie","changefreq":"weekly","video":[{"title":"S1:E219 - Video Game Vault - Yoshi's Cookie","description":"That sicko Yoshi is at it again.","player_loc":"https://roosterteeth.com/embed/video-game-vault-yoshis-cookie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e634da26-4f49-47d0-b2a7-6b9d51bfef12/sm/Yoshis_Cookie_SNES_ScreenShot1.gif","duration":144,"publication_date":"2011-08-18T14:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-g-i-destin","changefreq":"weekly","video":[{"title":"S1:E59 - Clip of the Week - G.I. Destin","description":" Public Service Announcements are always there to make sure kids stay safe, help each other, and do the right thing. Destin doesn't believe in any of that crap.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-g-i-destin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":195,"publication_date":"2011-08-18T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/super-bowl-45-predicitons-nfl-blitz-style","changefreq":"weekly","video":[{"title":"S1:E73 - Super Bowl 45 Predicitons NFL Blitz Style","description":"What better way to predict the Super Bowl in 2011 than with rosters from 1998?","player_loc":"https://roosterteeth.com/embed/super-bowl-45-predicitons-nfl-blitz-style","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":186,"publication_date":"2011-08-18T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-troll-islands","changefreq":"weekly","video":[{"title":"S1:E218 - Video Game Vault - Super Troll Islands","description":"Getting hit in the face with their attack is not advised...","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-troll-islands","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":138,"publication_date":"2011-08-18T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-screwattack-gauntlet-punishment","changefreq":"weekly","video":[{"title":"S1:E72 - The ScrewAttack Gauntlet Punishment","description":"Craig lost the Gauntlet, and that means he's getting a wax. Craig is about to be silky smooth.","player_loc":"https://roosterteeth.com/embed/the-screwattack-gauntlet-punishment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":345,"publication_date":"2011-08-18T14:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-nintendo-world-championship-1990","changefreq":"weekly","video":[{"title":"S1:E217 - Video Game Vault - Nintendo World Championship 1990","description":"ScrewAttack got its hands on the Holy Grail of gaming... and it's awesome.","player_loc":"https://roosterteeth.com/embed/video-game-vault-nintendo-world-championship-1990","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b056158a-3812-48c4-84c5-3012c58baf11/sm/nintendo-championships1.jpg","duration":124,"publication_date":"2011-08-18T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-fatal-fury","changefreq":"weekly","video":[{"title":"S1:E216 - Video Game Vault - Fatal Fury","description":"It's time to fight a bad guy with a bird's name.","player_loc":"https://roosterteeth.com/embed/video-game-vault-fatal-fury","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d7cccf4-f600-4c35-9453-cbb60e4008a2/sm/ff1.gif","duration":134,"publication_date":"2011-08-18T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-bryans-handy-stapler","changefreq":"weekly","video":[{"title":"S1:E58 - Clip of the Week - Bryan's Handy Stapler","description":"We joked about putting Bryan's stapler up on ScrewAttackStore.com, and somebody actually bought it! With special guest star, brentalfloss! ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-bryans-handy-stapler","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":238,"publication_date":"2011-08-18T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-90s-revolution","changefreq":"weekly","video":[{"title":"S1:E57 - Clip of the Week - 90s Revolution","description":" The 90s game advertisements were so tripping, they just had to be applied to today's products.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-90s-revolution","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":127,"publication_date":"2011-08-18T13:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pokemon-snap","changefreq":"weekly","video":[{"title":"S1:E215 - Video Game Vault - Pok?mon Snap","description":"Finally, the 3D Pokemon game everyone wanted!","player_loc":"https://roosterteeth.com/embed/video-game-vault-pokemon-snap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":184,"publication_date":"2011-08-18T13:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-altered-toucan","changefreq":"weekly","video":[{"title":"S1:E56 - Clip of the Week - Altered Toucan","description":" A beast lurks within Nick, and only the harshest of conditions can let loose his inner demon.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-altered-toucan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":367,"publication_date":"2011-08-18T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-captain-commando","changefreq":"weekly","video":[{"title":"S1:E214 - Video Game Vault - Captain Commando","description":"Who lets the bad guy go? Twice!","player_loc":"https://roosterteeth.com/embed/video-game-vault-captain-commando","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31f2d9e3-c1c4-4307-b95f-a3a969df44da/sm/50336_54188206149_2531692_n.jpg","duration":144,"publication_date":"2011-08-18T13:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-tank","changefreq":"weekly","video":[{"title":"S1:E55 - Clip of the Week - The Tank","description":" The almighty Tank makes his first appearance ever. WE DON'T TAKE BREAKS!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-tank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":108,"publication_date":"2011-08-18T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-darkwing-duck","changefreq":"weekly","video":[{"title":"S1:E213 - Video Game Vault - Darkwing Duck","description":"When there's trouble you can call D-W.","player_loc":"https://roosterteeth.com/embed/video-game-vault-darkwing-duck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed0a9355-7470-402c-be65-0a2043b6cac0/sm/Darkwing_Duck_NES_ScreenShot1.gif","duration":142,"publication_date":"2011-08-18T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-worst-commercial-ever","changefreq":"weekly","video":[{"title":"S1:E54 - Clip of the Week - Worst Commercial Ever","description":"Bad commercials are everywhere, but when one is this bad, we had to out-bad it. We failed. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-worst-commercial-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":118,"publication_date":"2011-08-18T13:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-art-of-fighting","changefreq":"weekly","video":[{"title":"S1:E212 - Video Game Vault - Art of Fighting","description":"Keith Apicary is right. Neo-Geo IS awesome.Keith Apicary is right. Neo-Geo IS awesome.","player_loc":"https://roosterteeth.com/embed/video-game-vault-art-of-fighting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c54691de-83d9-463d-a70e-b4cbe3c07c5a/sm/Art-of-Fighting_lg_image.jpg","duration":162,"publication_date":"2011-08-18T13:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-banjo-tooie","changefreq":"weekly","video":[{"title":"S1:E211 - Video Game Vault - Banjo-Tooie","description":"This is how all sequels should be made!","player_loc":"https://roosterteeth.com/embed/video-game-vault-banjo-tooie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf548ca9-5b28-4a98-aa6d-3c0632c5a007/sm/Banjo-Tooie.gif","duration":218,"publication_date":"2011-08-18T13:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-screwattack-grand-prix","changefreq":"weekly","video":[{"title":"S1:E53 - Clip of the Week - ScrewAttack Grand Prix","description":" Jose and Nick take their broken down, completely average cars and throw down in a street race for the ultimate street cred.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-screwattack-grand-prix","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":199,"publication_date":"2011-08-18T13:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mutant-league-hockey","changefreq":"weekly","video":[{"title":"S1:E210 - Video Game Vault - Mutant League Hockey","description":"Not just a sports game, a gamer's game!","player_loc":"https://roosterteeth.com/embed/video-game-vault-mutant-league-hockey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":155,"publication_date":"2011-08-18T13:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-banjo-kazooie","changefreq":"weekly","video":[{"title":"S1:E209 - Video Game Vault - Banjo-Kazooie","description":"A bear wearing a backpack with a bird in it = the best idea for a video game, ever.","player_loc":"https://roosterteeth.com/embed/video-game-vault-banjo-kazooie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0cd1b87-c01a-4060-b764-0bae26cedac3/sm/Banjo-Kazooie.gif","duration":172,"publication_date":"2011-08-18T13:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-street-fighter-rainbow","changefreq":"weekly","video":[{"title":"S1:E52 - Clip of the Week - Street Fighter Rainbow","description":"The BackStreet Fighters were so popular, they released their second single: a slow, love ballad. For the ladies.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-street-fighter-rainbow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":123,"publication_date":"2011-08-18T13:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-jackie-chans-action-kung-fu","changefreq":"weekly","video":[{"title":"S1:E208 - Video Game Vault - Jackie Chan's Action Kung Fu","description":"Jackie Chan is a real life ninja who doesn't want any trouble.","player_loc":"https://roosterteeth.com/embed/video-game-vault-jackie-chans-action-kung-fu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":130,"publication_date":"2011-08-18T13:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-building-a-jetpack","changefreq":"weekly","video":[{"title":"S1:E51 - Clip of the Week - Building a Jetpack","description":" Halo: Reach adds in a bunch of jetpacks, which makes Destin want one of his own. Unfortunately, there are only two people that could build it for him.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-building-a-jetpack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":294,"publication_date":"2011-08-18T13:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-quarterback-attack","changefreq":"weekly","video":[{"title":"S1:E207 - Video Game Vault - Quarterback Attack","description":"\"Iron Mike\" Ditka presents a game for every superfan.","player_loc":"https://roosterteeth.com/embed/video-game-vault-quarterback-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18b09519-7022-4a00-a0a7-07aae75df2f5/sm/Z0036398_2.jpg","duration":120,"publication_date":"2011-08-18T13:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-king-of-the-monsters","changefreq":"weekly","video":[{"title":"S1:E206 - Video Game Vault - King of the Monsters","description":"Sometimes games just didn't make the transition from the arcade to home consoles.","player_loc":"https://roosterteeth.com/embed/video-game-vault-king-of-the-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3aaab8f-0d7e-45c6-9547-8cfb5e29791e/sm/kotm.gif","duration":145,"publication_date":"2011-08-18T13:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-craigs-upgrade","changefreq":"weekly","video":[{"title":"S1:E50 - Clip of the Week - Craig's Upgrade","description":"When we first upgraded to Version 4, the site wasn't the only thing to get an upgrade. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-craigs-upgrade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":145,"publication_date":"2011-08-18T13:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-battleship","changefreq":"weekly","video":[{"title":"S1:E205 - Video Game Vault - Battleship","description":"Uh oh... Craig's out of town on his honeymoon, who will talk about this game?","player_loc":"https://roosterteeth.com/embed/video-game-vault-battleship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13003ad2-3bb3-41f4-9897-6779feefcae2/sm/Battleship+(U)+[!]+0.jpg","duration":204,"publication_date":"2011-08-18T13:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-awesome-possum","changefreq":"weekly","video":[{"title":"S1:E204 - Video Game Vault - Awesome Possum","description":"The worst rip-off ever?","player_loc":"https://roosterteeth.com/embed/video-game-vault-awesome-possum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e5bd482-6ae9-4ed7-8374-3006cca46a67/sm/title.png","duration":135,"publication_date":"2011-08-18T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-voltron","changefreq":"weekly","video":[{"title":"S1:E49 - Clip of the Week - Voltron","description":" When monsters attack, it's up to everybody to put themselves together to form the ultimate evil-fighting creation!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-voltron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":136,"publication_date":"2011-08-18T12:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-punisher-genesis","changefreq":"weekly","video":[{"title":"S1:E203 - Video Game Vault - The Punisher (Genesis)","description":"Tame compared to today... but still good!","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-punisher-genesis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dd9840f-dbb9-4a0b-b2c1-e3aa3f229302/sm/2894-1-the-punisher-for-genesis.jpg","duration":142,"publication_date":"2011-08-18T12:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-our-birthday-wish","changefreq":"weekly","video":[{"title":"S1:E48 - Clip of the Week - Our Birthday Wish","description":" It's our four year anniversary, and everybody is excited for us! Well, except the HATERS...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-our-birthday-wish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":230,"publication_date":"2011-08-18T12:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wayne-gretzkys-3d-hockey","changefreq":"weekly","video":[{"title":"S1:E202 - Video Game Vault - Wayne Gretzky's 3D Hockey","description":"This is how sports games should be made!","player_loc":"https://roosterteeth.com/embed/video-game-vault-wayne-gretzkys-3d-hockey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":155,"publication_date":"2011-08-18T12:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sword-of-the-berserk","changefreq":"weekly","video":[{"title":"S1:E201 - Video Game Vault - Sword of the Berserk ","description":"If you're a fan of the anime series you still probably won't like this game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-sword-of-the-berserk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a4a5423-b97f-4ff8-8138-62821b7b0596/sm/41gqL6vcveL._SL500_AA300_.jpg","duration":132,"publication_date":"2011-08-18T12:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-hate-proof","changefreq":"weekly","video":[{"title":"S1:E47 - Clip of the Week - Hate Proof","description":" The internet is filled with hate. This is the best way toughen up your skin and prepare for the destructive words from internet commenters everywhere.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-hate-proof","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":142,"publication_date":"2011-08-18T12:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-comix-zone","changefreq":"weekly","video":[{"title":"S1:E200 - Video Game Vault - Comix Zone","description":"One of the most original games on the Genesis, how come you haven't played it?","player_loc":"https://roosterteeth.com/embed/video-game-vault-comix-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80da8a99-6435-400a-ab7d-544bdb08d487/sm/comix_zone_0.gif","duration":155,"publication_date":"2011-08-18T12:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-crazy-personalities","changefreq":"weekly","video":[{"title":"S1:E46 - Clip of the Week - Crazy Personalities","description":" Our office is filled with a large, diverse set of personalities. They don't always get along.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-crazy-personalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":206,"publication_date":"2011-08-18T12:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-eco-fighters","changefreq":"weekly","video":[{"title":"S1:E198 - Video Game Vault - Eco-Fighters","description":"Planes saving the environment against bad porno 'staches... one laser at a time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-eco-fighters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":135,"publication_date":"2011-08-18T12:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-mexi-con","changefreq":"weekly","video":[{"title":"S1:E45 - Clip of the Week - Mexi-Con","description":" It seems like you can have a convention for anything. We've got ideas for our own conventions, too.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-mexi-con","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":159,"publication_date":"2011-08-18T12:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-lode-runner","changefreq":"weekly","video":[{"title":"S1:E197 - Video Game Vault - Lode Runner","description":"One of the games that shape Stuttering Craig's childhood... of misery.","player_loc":"https://roosterteeth.com/embed/video-game-vault-lode-runner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":94,"publication_date":"2011-08-18T12:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tiger-road","changefreq":"weekly","video":[{"title":"S1:E196 - Video Game Vault - Tiger Road","description":"One of the hardest arcade games ever, Tiger Road will kick your ass and make you pay for it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-tiger-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":105,"publication_date":"2011-08-18T12:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tetris","changefreq":"weekly","video":[{"title":"S1:E195 - Video Game Vault - Tetris","description":"One of the all-time great puzzle games, Tetris is still an industry money maker.","player_loc":"https://roosterteeth.com/embed/video-game-vault-tetris","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/918e5d2f-c839-47de-8e67-8396f01da432/sm/Tetris.gif","duration":105,"publication_date":"2011-08-18T12:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dick-tracey-genesis","changefreq":"weekly","video":[{"title":"S1:E194 - Video Game Vault - Dick Tracey (Genesis)","description":"The NES version may suck, but what about Dick on Genesis?","player_loc":"https://roosterteeth.com/embed/video-game-vault-dick-tracey-genesis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-18T12:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tiny-toon-adventures","changefreq":"weekly","video":[{"title":"S1:E193 - Video Game Vault - Tiny Toon Adventures","description":"A classic 90's cartoon, did Konami make a good game to match it?","player_loc":"https://roosterteeth.com/embed/video-game-vault-tiny-toon-adventures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11821d49-246d-4bad-a3cd-9cbed26c1e69/sm/Tiny_Toon_Adventures_NES_ScreenShot1.gif","duration":91,"publication_date":"2011-08-18T12:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-nfl-blitz-2000","changefreq":"weekly","video":[{"title":"S1:E192 - Video Game Vault - NFL Blitz 2000","description":"One of the best arcade games ever, NFL Blitz deserves it's place in the Hall of Fame.","player_loc":"https://roosterteeth.com/embed/video-game-vault-nfl-blitz-2000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":96,"publication_date":"2011-08-18T12:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mach-rider","changefreq":"weekly","video":[{"title":"S1:E191 - Video Game Vault - Mach Rider","description":"One of the first games to hit the original NES, Mach Rider can still put hair on gamer's chest.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mach-rider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0a8bd99-9fef-4053-827b-33c463eba356/sm/Mach_Rider_NES_ScreenShot1.gif","duration":88,"publication_date":"2011-08-18T12:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-fighting-games-round-5-street-fighter-3-3rd-strike","changefreq":"weekly","video":[{"title":"S1:E71 - Iron-Man of FIghting Games Round 5: Street Fighter 3 3rd Strike","description":"Craig and Destin are left fighting for the the title of Iron-Man of Fighting Games, while Chad still has a chance at second place and Bryan has no chance at all. So Bryan's going beardless but what will happen with the other three?","player_loc":"https://roosterteeth.com/embed/iron-man-of-fighting-games-round-5-street-fighter-3-3rd-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b09c9db-2134-489a-96bf-df9fbcc92753/sm/38872_low_1280858979.jpg","duration":228,"publication_date":"2011-08-18T11:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-screwattack-fantasy-retrospective-part-3","changefreq":"weekly","video":[{"title":"S1:E70 - A ScrewAttack Fantasy Retrospective Part 3","description":"As fantasy turned to a massively multiplayer environment, fantasy was going places it never had before.","player_loc":"https://roosterteeth.com/embed/a-screwattack-fantasy-retrospective-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":171,"publication_date":"2011-08-18T11:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sky-kid","changefreq":"weekly","video":[{"title":"S1:E190 - Video Game Vault - Sky Kid","description":"Craig says: Shoot 'em in the face!","player_loc":"https://roosterteeth.com/embed/video-game-vault-sky-kid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-18T11:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-screwattack-fantasy-retrospective-part-2","changefreq":"weekly","video":[{"title":"S1:E69 - A ScrewAttack Fantasy Retrospective Part 2","description":"As consoles and computers got better, so did fantasy games. With companies like Square and Enix coming up, big things were on the way for fantasy.","player_loc":"https://roosterteeth.com/embed/a-screwattack-fantasy-retrospective-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":196,"publication_date":"2011-08-18T11:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ice-hockey","changefreq":"weekly","video":[{"title":"S1:E189 - Video Game Vault - Ice Hockey","description":"The way hockey games should always be made.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ice-hockey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-18T11:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-fighting-games-round-4-mortal-kombat-4","changefreq":"weekly","video":[{"title":"S1:E68 - Iron-Man of FIghting Games Round 4: Mortal Kombat 4","description":"Craig went top in Tekken 5 while Bryan began facing a clean shaven reality. Destin and Chad still have faces to fight for, but can they overtake Craig for a beardless victory?","player_loc":"https://roosterteeth.com/embed/iron-man-of-fighting-games-round-4-mortal-kombat-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fad34f4e-01fc-4f80-bce3-c2326aac67b0/sm/38854_low_1280859023.jpg","duration":220,"publication_date":"2011-08-18T11:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-michael-jacksons-moonwalker","changefreq":"weekly","video":[{"title":"S1:E188 - Video Game Vault - Michael Jackson's Moonwalker","description":"The man, the myth, the legend... THE GAME!","player_loc":"https://roosterteeth.com/embed/video-game-vault-michael-jacksons-moonwalker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":150,"publication_date":"2011-08-18T11:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-grand-theft-auto-2","changefreq":"weekly","video":[{"title":"S1:E187 - Video Game Vault - Grand Theft Auto 2","description":"Sure it was overhead but causing destruction was never so much fun.","player_loc":"https://roosterteeth.com/embed/video-game-vault-grand-theft-auto-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6eb55e4-9259-4e76-887d-30898fc91c16/sm/Grand_theft_auto_2.jpg","duration":135,"publication_date":"2011-08-18T11:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-g-i-joe","changefreq":"weekly","video":[{"title":"S1:E186 - Video Game Vault - G.I. Joe","description":"Is it a real American hero?","player_loc":"https://roosterteeth.com/embed/video-game-vault-g-i-joe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/938feb59-bfd4-4723-a0bb-dc2ad3cb5f63/sm/GI_Joe_NES_ScreenShot1.jpg","duration":169,"publication_date":"2011-08-18T11:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2009-mustache-challenge-round-2","changefreq":"weekly","video":[{"title":"S1:E67 - 2009 Mustache Challenge Round 2","description":"After a round of Contra Nick held the lead while Corey was bringing up the rear. Will anyone make any big moves in F-Zero?","player_loc":"https://roosterteeth.com/embed/2009-mustache-challenge-round-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":224,"publication_date":"2011-08-18T11:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wave-race-64","changefreq":"weekly","video":[{"title":"S1:E185 - Video Game Vault - Wave Race 64","description":"Clearly one of the best games about jet skis ever.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wave-race-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/341719ba-004b-48fc-9690-1ba3896bc416/sm/images-2.jpg","duration":110,"publication_date":"2011-08-18T11:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-elmos-number-journey","changefreq":"weekly","video":[{"title":"S1:E184 - Video Game Vault - Elmo's Number Journey","description":"The most epic story ever told.","player_loc":"https://roosterteeth.com/embed/video-game-vault-elmos-number-journey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":151,"publication_date":"2011-08-18T11:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-screwattack-fantasy-retrospective-part-1","changefreq":"weekly","video":[{"title":"S1:E66 - A ScrewAttack Fantasy Retrospective Part 1","description":"Fantasy games have been going in table top and video game form for decades, in part 1 of this retrospective we look back to see where it all began.","player_loc":"https://roosterteeth.com/embed/a-screwattack-fantasy-retrospective-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":147,"publication_date":"2011-08-18T11:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-last-action-hero","changefreq":"weekly","video":[{"title":"S1:E183 - Video Game Vault - Last Action Hero","description":"Could Arnold avoid the bad movie to game adaptation? What do you think?","player_loc":"https://roosterteeth.com/embed/video-game-vault-last-action-hero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35385d46-7594-4636-b2d3-f328a6231b0a/sm/snes_last_action_hero_1.gif","duration":121,"publication_date":"2011-08-18T11:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-burnout-challenge","changefreq":"weekly","video":[{"title":"S1:E65 - The Burnout Challenge","description":"When Craig's away, the crew will play Burnout! Some will play better than others, obviously.","player_loc":"https://roosterteeth.com/embed/the-burnout-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":254,"publication_date":"2011-08-18T11:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-night-warriors-darkstalkers-revenge","changefreq":"weekly","video":[{"title":"S1:E182 - Video Game Vault - Night Warriors: Darkstalkers' Revenge","description":"Meet the demon spawn of Capcom and Universal Studios.","player_loc":"https://roosterteeth.com/embed/video-game-vault-night-warriors-darkstalkers-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eed4ddef-997f-4fd7-8f31-2767d59311e9/sm/1051198806.gif","duration":137,"publication_date":"2011-08-18T11:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-17","changefreq":"weekly","video":[{"title":"2014:E61 - Minecraft - Thanksgiving","description":"It's the start of the holiday season over at Achievement Hunter, and before the real Thanksgiving begins the crew decided to have a little snack before the big feast!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ba815db-041c-41f0-b9b8-be996e493627/sm/ep10061.jpg","duration":1463,"publication_date":"2014-11-26T16:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-92","changefreq":"weekly","video":[{"title":"2014:E300 - Halo: Master Chief Collection Blood Gulch Multiplayer","description":"Geoff, Ryan, Jack, Ray, Jeremy, and Matt take a trip down memory lane and see just how much Blood Gulch has changed over the years in Halo Master Chief Collection","player_loc":"https://roosterteeth.com/embed/lets-play-2014-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2457c22b-a969-4f0c-93bb-4826fffecd6a/sm/ep10059.jpg","duration":2637,"publication_date":"2014-11-25T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-88","changefreq":"weekly","video":[{"title":"2014:E299 - Let's Build in Minecraft -Thanksgiving","description":"Team Building Exercise is back and celebrating Thanksgiving. Let's build a turkey.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae4c44b0-48d8-457f-bde8-e9f4c6199587/sm/ep10057.jpg","duration":3383,"publication_date":"2014-11-25T19:30:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-15","changefreq":"weekly","video":[{"title":"2014:E47 - Lego Edition - GO! #57","description":"This week, the gang has a task much greater than any video game: real life! The first one to accurately build a Lego set, wins!","player_loc":"https://roosterteeth.com/embed/go-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1918617-c0db-4964-846b-49ed2567a918/sm/ep10056.jpg","duration":862,"publication_date":"2014-11-25T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-13","changefreq":"weekly","video":[{"title":"2014:E46 - Rooster Teeth Vs Zombiens","description":"Geoff and Jack bring you five facts over Rooster Teeth Vs Zombiens.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/117ffc1f-5c30-4b0f-9e25-23c74a71e849/sm/ep10055.jpg","duration":239,"publication_date":"2014-11-25T15:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-hidden-leaf-village","changefreq":"weekly","video":[{"title":"2014:E16 - Hidden Leaf Village","description":"Matt and Ryan check out DR_Boomerang and JoeJustPlays' stunning recreation of Naruto's Hidden Leaf Village. Don't blink or you might miss it! Cause ya know...ninjas are crafty like that. If you want us to check out your map to be featured head to the group and submit your map here:http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-hidden-leaf-village","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef974d97-a86c-42fc-8202-a8b0b70854ad/sm/ep10054.jpg","duration":201,"publication_date":"2014-11-24T22:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-14","changefreq":"weekly","video":[{"title":"2014:E47 - Week #241","description":"Happy Thanksgiving from AHWU! In today's episode you will see nothing out of the ordinary, just your basic, average, run of the mill shenanigans from the guys. This week's community video is an Indiana Jones Easter Egg in Farcry 4: https://www.youtube.com/watchv=GhIGb8gb3P0 And this week's video of the week is Let's Play GTAV: Crazy Taxi: https://www.youtube.com/watchv=A4iW00Xtw9s Enjoy!","player_loc":"https://roosterteeth.com/embed/ahwu-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5abf3f4-5b5a-4ede-ad84-5f2ae21b0e3a/sm/ep10053.jpg","duration":351,"publication_date":"2014-11-24T20:56:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-80","changefreq":"weekly","video":[{"title":"2014:E298 - GTA V - First Person Free Play","description":"Geoff, Ryan, Jack, Lindsay and Ray experiment with GTA V in next gen first person mode! Don't forget to take your Dramamine!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80d12f4b-a840-446c-a172-0c10dcf6dc9e/sm/ep10052.jpg","duration":2516,"publication_date":"2014-11-24T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-things-to-be-thankful-for-as-a-rooster-teeth-fan-for-2014","changefreq":"weekly","video":[{"title":"2014:E29 - Top 5 Things to Be Thankful for As a Rooster Teeth Fan for 2014","description":"For the week of Thanksgiving, Countdown takes a look at some reasons for the Rooster Teeth community to be thankful!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-things-to-be-thankful-for-as-a-rooster-teeth-fan-for-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6841c053-0e13-4742-89f1-d47125b491e3/sm/ep10051.jpg","duration":216,"publication_date":"2014-11-24T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-74","changefreq":"weekly","video":[{"title":"2014:E297 - Minecraft - Episode 130 - Top Chef","description":"Known around the world as one of the best chefs of all time, Geoff tests the crew to see who among them could be the next...TOP CHEF!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff50e1c5-8b93-4a8b-a8a9-855d489fcf03/sm/ep10046.jpg","duration":3590,"publication_date":"2014-11-21T21:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-15","changefreq":"weekly","video":[{"title":"2014:E60 - GTA V - Unhungry Unhungry Cargos","description":"AH changes things up and learns to put their toys back when they split into teams and return their cars to the water.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e56e4b6-da01-41f2-bb9b-31767e36c845/sm/ep10044.jpg","duration":785,"publication_date":"2014-11-21T19:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-11","changefreq":"weekly","video":[{"title":"2014:E47 - Volume 218","description":"In Fails of the Weak #218, Geoff and Jack bring you fails in Assassin's Creed: Unity, Call of Duty: Advanced Warfare, Far Cry 4, Grand Theft Auto V, Halo: MCC, and Sunset Overdrive.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d421c4-729c-427c-a102-00da64e09b14/sm/ep10042.jpg","duration":141,"publication_date":"2014-11-21T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-14-modern-warfare-3-spec-ops-negotiator","changefreq":"weekly","video":[{"title":"2014:E14 - Modern Warfare 3 - Spec Ops: Negotiator","description":"Ryan and Geoff had such a success with Black Ice, they return to Modern Warfare 3 for some rough negotiations!","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-14-modern-warfare-3-spec-ops-negotiator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4755eefc-e6d2-4e58-962c-de363d065157/sm/ep10039.jpg","duration":824,"publication_date":"2014-11-20T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-63","changefreq":"weekly","video":[{"title":"2014:E296 - Assassin's Creed: Unity Heist","description":"Jack, Geoff, Ryan, and Ray try to steal some loot the only way they know how. With a heist.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/873fb859-5f76-43a4-81e9-64f34948f950/sm/ep10038.jpg","duration":2714,"publication_date":"2014-11-20T23:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-depth","changefreq":"weekly","video":[{"title":"2014:E43 - Depth","description":"Joel, Adam, Jeremy, and Matt dive into the deep dark waters of Depth to collect gold and hunt sharks. Wait, did someone say sharks Sharks Where BEHIND YOU! OH GOD MY LEGS!","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-depth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ef81fb5-796a-4dee-b207-db1346cc581a/sm/ep10033.jpg","duration":3027,"publication_date":"2014-11-20T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-6","changefreq":"weekly","video":[{"title":"2014:E32 - Rooster Teeth Inter-Office SMITE Tournament","description":"The overpowered Team Dark Souls takes on the squishy yet lovable Team Cranberries! Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e8f7777-ec38-496e-a2cd-7d358e97260e/sm/ep10036.jpg","duration":1194,"publication_date":"2014-11-20T19:53:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-9","changefreq":"weekly","video":[{"title":"2014:E47 - Episode 90: Ryan vs. Gavin","description":"This week on VS, Gavin and Ryan get into some deep shit.","player_loc":"https://roosterteeth.com/embed/vs-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dab6bc9-9894-4e6a-a613-543383b22d83/sm/ep10035.jpg","duration":1313,"publication_date":"2014-11-20T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-7","changefreq":"weekly","video":[{"title":"2014:E46 - Achievement HUNT #56","description":"This week's HUNT brings you Jack vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/217242ba-8d40-435f-916e-5da3884f1b40/sm/ep10031.jpg","duration":1001,"publication_date":"2014-11-20T01:24:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-56","changefreq":"weekly","video":[{"title":"2014:E295 - Halo 3 Legendary Co-op","description":"Geoff, Ryan, Jack, and Ray head into The Master Chief Collection and begin a Legendary Co-op journey in Halo 3!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9967db0f-80dd-4de3-8bf8-bd46273d1626/sm/ep10030.jpg","duration":1242,"publication_date":"2014-11-19T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-its-a-virtue","changefreq":"weekly","video":[{"title":"IA:E15 - It's A Virtue","description":"Jeremy and Kdin speed through Far Cry 4 and finish the campaign in minutes. How Watch and find out.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-its-a-virtue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fa31250-57c9-4104-a804-8bfebcb4cd40/sm/ep10028.jpg","duration":276,"publication_date":"2014-11-19T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-8","changefreq":"weekly","video":[{"title":"2014:E59 - Minecraft - Rug Burn","description":"In this week's Things to do in Minecraft Geoff, Lindsay, and Matt show an awesome way to kill your enemies using carpet, signs, and trip mines.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2655100e-0f72-465b-a3f0-e08b27510cdd/sm/ep10026.jpg","duration":134,"publication_date":"2014-11-19T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-46","changefreq":"weekly","video":[{"title":"2014:E294 - Assassin's Creed Unity Co-op","description":"Join Geoff, Ryan, Ray, and Lindsay as they venture back to the french revolution to learn a little bit about murder. And maybe if they're lucky, even a little bit about each other.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/124c3848-70ff-4004-8e38-52058701096a/sm/ep10020.jpg","duration":2135,"publication_date":"2014-11-18T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-43","changefreq":"weekly","video":[{"title":"2014:E293 - Let's Build in Minecraft - Halloween Spooktacular Part 4","description":"Kdin, Jeremy, and Matt continue chipping away at their Halloween world. They're so close... but will they finish it I mean, yes, because you've seen it already.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8549ab03-a933-43f0-af05-517d3a8e10ea/sm/ep10019.jpg","duration":3467,"publication_date":"2014-11-18T21:44:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-2-the-return-of-megg-guide","changefreq":"weekly","video":[{"title":"2014:E2476 - Halo: MCC [Halo 2] - The Return of Megg Guide","description":"Ray shows you how to get the Halo 2 achievement \"The Return of Megg\" in Halo: The Master Chief Collection for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-2-the-return-of-megg-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cff4b608-9e5d-43fb-a78f-42628e6a8271/sm/ep10018.jpg","duration":495,"publication_date":"2014-11-18T17:55:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-40","changefreq":"weekly","video":[{"title":"2014:E292 - GTA V - Crazy Taxi Alternate Takes","description":"Alternate takes and between round conversations from Let's Play GTA V: Crazy Taxi!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88739355-ac48-42d1-acd7-5e2ee59ccb84/sm/ep10017.jpg","duration":757,"publication_date":"2014-11-18T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-6","changefreq":"weekly","video":[{"title":"2014:E46 - Halo 3 - GO! #56","description":"In this week's Go, it's a race to beat the last level of Halo 3! Watch as the gang drives, falls and... falls some more!","player_loc":"https://roosterteeth.com/embed/go-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5071467-eda2-4c5e-8e67-4a500bd1764f/sm/ep10016.jpg","duration":591,"publication_date":"2014-11-18T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-2-blastacular-guide","changefreq":"weekly","video":[{"title":"2014:E2475 - Halo: MCC [Halo 2] - BLASTacular! Guide","description":"Ray shows you how to get the Halo 2 achievement \"BLASTacular!\" in Halo: The Master Chief Collection for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-2-blastacular-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4dbd5234-e22f-496c-a04a-c6eeb1c84044/sm/ep10015.jpg","duration":199,"publication_date":"2014-11-18T14:29:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-6","changefreq":"weekly","video":[{"title":"2014:E45 - Call of Duty: Advanced Warfare","description":"Geoff and Jack bring you five facts over Call of Duty: Advanced Warfare.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56a412df-1af7-45ee-a9ce-45171a0698b9/sm/ep10014.jpg","duration":218,"publication_date":"2014-11-18T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-6","changefreq":"weekly","video":[{"title":"2014:E46 - Week #240","description":"Today's AHWU features a brand new AH employee, mustaches, Australia, information, games, and mustaches. Go and vote for your favorite new Achievement Hunter show at http://bit.ly/frisbeecaleb and let your voice be heard. This week's Community Video is The Golden Warthog (https://www.youtube.com/watchv=MQXDwzYK6lc) and the video of the week is Let's Play Super Smash Brothers (https://www.youtube.com/watchv=rqZGbMk-KTQ)","player_loc":"https://roosterteeth.com/embed/ahwu-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff19f069-97a4-4c60-8d08-06a808ed2f07/sm/ep10013.jpg","duration":482,"publication_date":"2014-11-17T23:08:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-12-multiplayer-maps-in-the-master-chief-collection","changefreq":"weekly","video":[{"title":"2014:E28 - Top 12 Multiplayer Maps in The Master Chief Collection","description":"Geoff, Ray, and Ryan take a look the best of the best for multiplayer in The Master Chief Collection!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-12-multiplayer-maps-in-the-master-chief-collection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0509dbc5-de8c-4f83-b398-92a8a206e92b/sm/ep10011.jpg","duration":343,"publication_date":"2014-11-17T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-32","changefreq":"weekly","video":[{"title":"2014:E291 - GTA V - Crazy Taxi","description":"The AH crew recreates Crazy Taxi with a few special tweaks in this week's GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f75d09e-2635-47a6-84ca-644a39d22d81/sm/ep10010.jpg","duration":2135,"publication_date":"2014-11-17T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-3-witch-doctor-guide","changefreq":"weekly","video":[{"title":"2014:E2474 - Halo: MCC [Halo 3] - Witch Doctor Guide","description":"Geoff and Ray show you where to find all of the hidden skulls in Halo 3, and get the Witch Doctor Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-3-witch-doctor-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35002367-c73b-4aea-9758-83bde701c19d/sm/ep10008.jpg","duration":523,"publication_date":"2014-11-17T20:28:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-4","changefreq":"weekly","video":[{"title":"2014:E58 - GTA V - Hungry Hungry Cargos","description":"In this week's Things to do in GTA V, the lads and gents compete in Hungry Hungry Cargos.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbdf40ea-2937-4c77-8901-1552c372d31b/sm/ep10002.jpg","duration":889,"publication_date":"2014-11-15T00:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-2-toybox-guide","changefreq":"weekly","video":[{"title":"2014:E2473 - Halo: MCC [Halo 2] - Toybox Guide","description":"Ray shows you how to get the Halo 2 achievement \"Toybox\" in Halo: The Master Chief Collection for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-2-toybox-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2c2c378-4471-4532-9eda-808acd6ef2e7/sm/ep9999.jpg","duration":569,"publication_date":"2014-11-14T22:25:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-19","changefreq":"weekly","video":[{"title":"2014:E290 - Minecraft - Episode 129 - Zombie Doctor Part 2","description":"The Gents and Lads original zombie plan failed miserably. Will their new plan pan out Either way, I'm going to Alaska.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d21f2c37-0756-48d7-920a-9a79a900e1a7/sm/ep9998.jpg","duration":4311,"publication_date":"2014-11-14T22:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-2-walking-encyclopedia-guide","changefreq":"weekly","video":[{"title":"2014:E2472 - Halo: MCC [Halo 2] - Walking Encyclopedia Guide","description":"Ray shows you how to get the Halo 2 achievement \"Walking Encyclopedia\" in Halo: The Master Chief Collection for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-2-walking-encyclopedia-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a49828b-b390-4d32-9532-a450c8f26dde/sm/ep9995.jpg","duration":300,"publication_date":"2014-11-14T15:52:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-the-evil-within","changefreq":"weekly","video":[{"title":"2014:E42 - The Evil Within","description":"The following re-enactment was contained in a controlled environment where the actors were supervised by a supervisor under the strict guidance of the trained professional who was monitored by medical personnel throughout the course. Medical personnel monitored the trained professional strictly guiding the supervisor supervising the actors in the environment which was controlled and contained during the re-enactment. Please do not get injured, die, or damage property by attempting to recreate these re-creations.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-the-evil-within","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e93819b5-3604-46aa-b502-d1435d147951/sm/ep9984.jpg","duration":3224,"publication_date":"2014-11-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-5","changefreq":"weekly","video":[{"title":"2014:E31 - Rooster Teeth Inter-Office SMITE Tournament","description":"Team BAM takes on the underdogs Team Cranberries! Will BAM be knocked out Or will the Cranberries get juiced Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/335ab4a4-c64a-4efa-b222-915f966c303d/sm/ep9991.jpg","duration":1232,"publication_date":"2014-11-13T20:59:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-7","changefreq":"weekly","video":[{"title":"2014:E289 - Worms Battlegrounds Part 4","description":"Ryan, Gavin, Michael, and Ray return to Worms Battleground with some interesting new rules. Can they make it to the end of the world","player_loc":"https://roosterteeth.com/embed/lets-play-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ed9179c-dd84-4d47-8d65-ba3b62314bf2/sm/ep9990.jpg","duration":3311,"publication_date":"2014-11-13T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-adam-preview-assassins-creed-unity","changefreq":"weekly","video":[{"title":"2014:E30 - Jack and Adam preview Assassin's Creed Unity","description":"Ubisoft brought Jack and Adam out to Paris (the one in Vegas, not in France) to check out Assassin's Creed Unity before it hit the streets! Watch as they get in to shenanigans and get a chance to play Assassin's Creed before anyone else.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-adam-preview-assassins-creed-unity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a73edc7-e9ae-47d6-a2f2-0d9de83e6626/sm/ep9989.jpg","duration":279,"publication_date":"2014-11-13T20:23:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014","changefreq":"weekly","video":[{"title":"2014:E46 - Episode 89: Ryan vs. Michael","description":"For this week's VS, Michael and Ryan get swole. \n\nClick here to watch the official trailer and learn more about Shape Up: http://bit.ly/1tJ09D7\n\nShape Up is rated E for Everyone. Thank you Ubisoft for endorsing this video.","player_loc":"https://roosterteeth.com/embed/vs-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4c68f16-fce3-4b66-90aa-0816361349fb/sm/ep9988.jpg","duration":764,"publication_date":"2014-11-13T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-2","changefreq":"weekly","video":[{"title":"2014:E22 - Halo: The Master Chief Collection - Rooster Teeth Assault Bomb Easter Egg","description":"Geoff and Jack take a look at an Easter Egg in Halo: The Master Chief Collection that shows Austin some well deserved love.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77e24022-0802-45b7-b9e8-fb7420e95dfb/sm/ep9987.jpg","duration":73,"publication_date":"2014-11-13T19:54:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-13-modern-warfare-3","changefreq":"weekly","video":[{"title":"2014:E13 - Modern Warfare 3","description":"Ryan and Geoff take on the task of being elite soldiers in this week's Play Pals!","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-13-modern-warfare-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/299bfb5a-a66c-429d-9dc7-2c3195485b13/sm/ep9986.jpg","duration":783,"publication_date":"2014-11-13T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-2-trophy-collector-guide","changefreq":"weekly","video":[{"title":"2014:E2471 - Halo: MCC [Halo 2] - Trophy Collector Guide ","description":"Ray shows you how to get the Halo 2 achievement \"Trophy Collector\" in Halo: The Master Chief Collection for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-2-trophy-collector-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37e5f4ba-6ca0-44cc-bea9-4a0447e3f505/sm/ep9985.jpg","duration":769,"publication_date":"2014-11-13T19:38:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-333","changefreq":"weekly","video":[{"title":"2014:E288 - Super Smash Bros For Wii U","description":"Ray, Ryan, Matt, and Kdin hop into Smash Bros for Wii U and have some friendly* sparring matches! (*Matches may not actually be friendly)","player_loc":"https://roosterteeth.com/embed/lets-play-2014-333","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5adc2d1-0342-4f0e-9501-1155daa6086f/sm/ep9982.jpg","duration":2088,"publication_date":"2014-11-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-331","changefreq":"weekly","video":[{"title":"2014:E287 - Kirby's Return To Dreamland","description":"Michael, Ray, Ryan, and Gavin make a trip to Dreamland where candy, cake, and rainbows are literally everywhere.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-331","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fd51ab2-01a3-45aa-ab63-fe53e264e03a/sm/ep9979.jpg","duration":2179,"publication_date":"2014-11-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-70","changefreq":"weekly","video":[{"title":"2014:E57 - Minecraft - Mob Launch","description":"In this week's Things to do in Minecraft, Geoff and Matt show you how to make it rain mobs.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebb8eb3e-311d-4d97-8e4d-109cc4910878/sm/ep9981.jpg","duration":120,"publication_date":"2014-11-12T20:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-airspace-occupied","changefreq":"weekly","video":[{"title":"IA:E14 - Airspace Occupied","description":"Jeremy and Geoff explore the Master Chief Collection. A lot of good and fun achievements in this game, but here's one they missed.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-airspace-occupied","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6483da2-3ff9-4395-b577-4808fc6b4d39/sm/ep9980.jpg","duration":195,"publication_date":"2014-11-12T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-51","changefreq":"weekly","video":[{"title":"2014:E45 - Achievement HUNT #55","description":"Ryan is back for revenge after last week's HUNT. This time he challenges Geoff to his own custom created game type!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2d73265-0746-48c0-9ee2-4ee33496dc73/sm/ep9977.jpg","duration":297,"publication_date":"2014-11-12T19:15:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-advanced-warfare-intel-locations-31-45-guide","changefreq":"weekly","video":[{"title":"2014:E2470 - Call Of Duty: Advanced Warfare - Intel Locations 31-45 Guide","description":"Ray and Ryan show you the collectable locations for intel items 31 through 45 in Call of Duty Advanced Warfare.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-advanced-warfare-intel-locations-31-45-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/622fe6fc-bacd-41d5-9f00-0cee8f68f996/sm/ep9976.jpg","duration":338,"publication_date":"2014-11-11T23:03:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-50","changefreq":"weekly","video":[{"title":"2014:E44 - Resident Evil 6","description":"Michael and Ray bring you five facts over Resident Evil 6.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc33f146-b367-4fa7-9ad5-53338f528170/sm/ep9974.jpg","duration":401,"publication_date":"2014-11-11T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-326","changefreq":"weekly","video":[{"title":"2014:E286 - Let's Build in Minecraft - Halloween Spooktacular Part 3","description":"Jeremy, Kdin, Matt and, for a short time, Lindsay, are back in their Halloweentown. Can they complete before they fall apart","player_loc":"https://roosterteeth.com/embed/lets-play-2014-326","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7b45ee5-6df1-40d2-ba33-34f520e10e0b/sm/ep9973.jpg","duration":2808,"publication_date":"2014-11-11T21:55:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-323","changefreq":"weekly","video":[{"title":"2014:E285 - Trials Fusion: Community Supercross","description":"Geoff, Jack, Michael, and Ray check out some of the top community levels in Trials Fusion. The community is clearly much better than they are.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-323","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9da76ed2-3330-4004-9eaf-a04fbe28ea4c/sm/ep9972.jpg","duration":1932,"publication_date":"2014-11-11T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-52","changefreq":"weekly","video":[{"title":"2014:E45 - Scary Character Edition - GO! #55","description":"In this week's completely relevant Go, Geoff tasks the group with creating the scariest character they can in a player creator. The winner will be selected with the power of democracy (voting). Who will get the most votes Will Ray try Tune in to find out!","player_loc":"https://roosterteeth.com/embed/go-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb9c8c21-8499-4438-a7b3-6627321a6e5f/sm/ep9970.jpg","duration":1473,"publication_date":"2014-11-11T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-mcc-halo-2-5-achievement-guides","changefreq":"weekly","video":[{"title":"2014:E2468 - Halo: MCC [Halo 2] - 5 Achievement Guides","description":"Ray shows you how to the Halo 2 achievements \"Why Am I Here\", \"Animal Habitat\", \"Why So Serious\", \"Sid Graffiti\", & \"Siege of Ivory Tower\" in Halo: The Master Chief Collection for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-mcc-halo-2-5-achievement-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03c4725b-04e5-4dea-8215-fcd4b3925278/sm/ep9969.jpg","duration":273,"publication_date":"2014-11-11T18:33:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-advanced-warfare-intel-locations-guide","changefreq":"weekly","video":[{"title":"2014:E2467 - Call Of Duty: Advanced Warfare - Intel Locations Guide ","description":"Ray and Ryan show you the first 15 intel collectable locations in Call of Duty Advanced Warfare.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-advanced-warfare-intel-locations-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/796f049e-4777-47d8-b523-040e06843519/sm/ep9968.jpg","duration":273,"publication_date":"2014-11-11T18:29:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-310","changefreq":"weekly","video":[{"title":"2014:E284 - GTA V - Monster Truck Madness","description":"The AH Crew is back playing more GTA V in \"Monster Truck Madness.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-310","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b568e92-289f-4930-9ff8-f5034a4603ce/sm/ep9964.jpg","duration":2368,"publication_date":"2014-11-10T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-innovations-in-video-games","changefreq":"weekly","video":[{"title":"2014:E27 - Top 10 Innovations in Video Games","description":"Geoff, Ray, and Ryan take a look at the Top 10 Innovations in Video Games!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-innovations-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/968c6192-cbe7-4cb5-b7ed-569441ec8120/sm/ep9967.jpg","duration":194,"publication_date":"2014-11-10T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-50","changefreq":"weekly","video":[{"title":"2014:E45 - Week #239","description":"Geoff and Millicent take on the gaming news and releases for the week of November 10th! Also Jeremy and Kdin are there I guess.\r\n\r\nCommunity Hunter Video of the Week: http://bit.ly/1swYam1","player_loc":"https://roosterteeth.com/embed/ahwu-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7255b831-3099-434a-bd68-16a3495a3868/sm/ep9965.jpg","duration":355,"publication_date":"2014-11-10T21:07:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-300","changefreq":"weekly","video":[{"title":"2014:E283 - Evolve Big Alpha Part 2","description":"Geoff, Ryan, Ray, Lindsay, and Jack return to the world of Evolve. Will Ryan, Ray, or Lindsay prove to be a better monster","player_loc":"https://roosterteeth.com/embed/lets-play-2014-300","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1d8d1da-6b60-45ab-bc91-2dd2c096ca8d/sm/ep9956.jpg","duration":1716,"publication_date":"2014-11-08T02:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-295","changefreq":"weekly","video":[{"title":"2014:E282 - Minecraft - Episode 128 - Zombie Doctor","description":"The Lads and Gents are back on the Xbox One attempting to claim the Zombie Doctor achievement! Will they succeed or will they be dead meat!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-295","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a6da208-d589-4b3d-9dde-52ca712fcfdb/sm/ep9952.jpg","duration":3579,"publication_date":"2014-11-07T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-63","changefreq":"weekly","video":[{"title":"2014:E56 - Destiny - Surfing","description":"Geoff and Gavin reunite and do some surfing in Things to do in Destiny.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a68cdca-1cb9-4c70-ab27-751869e73636/sm/ep9951.jpg","duration":117,"publication_date":"2014-11-07T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-291","changefreq":"weekly","video":[{"title":"2014:E281 - Titanfall Frontier Defense","description":"Join Geoff, Ryan, Gavin, and Jeremy as they drop into Titanfall's new Frontier Defense mode!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-291","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb7477cc-d5ec-4636-9a35-9926349ba27d/sm/ep9947.jpg","duration":2328,"publication_date":"2014-11-07T03:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-4","changefreq":"weekly","video":[{"title":"2014:E29 - Rooster Teeth Inter-Office SMITE Tournament","description":"Team Dark Souls takes on Team Gents in SMITE! Will it be a clash of the titans or a clash of the kittens Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/362a65c4-ee7e-44ad-ad87-526a6987a1e5/sm/ep9940.jpg","duration":1376,"publication_date":"2014-11-06T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/sunday-driving-season-1-sunday-driving","changefreq":"weekly","video":[{"title":"S1:E1 - Sunday Driving","description":"Geoff goes cruising in GTA V, along the way he picks up some friends, shares stories, and they all enjoy a nice Sunday Drive.","player_loc":"https://roosterteeth.com/embed/sunday-driving-season-1-sunday-driving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75bb2d18-5540-45c9-a714-a35cbdfa1b4d/sm/ep9946.jpg","duration":1755,"publication_date":"2014-11-06T20:59:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-45","changefreq":"weekly","video":[{"title":"2014:E45 - Episode 88: Lindsay vs. Ryan","description":"This week in VS, Ryan and Lindsay search for the sweet taste of victory. And chips.","player_loc":"https://roosterteeth.com/embed/vs-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf227bbb-9f76-4499-b4ce-70e6e40034dd/sm/ep9943.jpg","duration":459,"publication_date":"2014-11-06T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-12-bayonetta-2","changefreq":"weekly","video":[{"title":"2014:E12 - Bayonetta 2","description":"While Gavin and Michael are away, Ryan and Geoff will Play...Pals!","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-12-bayonetta-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b7b3962-dc5b-4971-9116-84c08adf0a5f/sm/ep9941.jpg","duration":615,"publication_date":"2014-11-06T19:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-the-crew","changefreq":"weekly","video":[{"title":"2014:E41 - The Crew","description":"Need to know how to drive Or how to drive fast How about how to drive fast with friends How about how to drive fast with Joel, Adam, Jeremy, and Matt They're playing the crew. Drive fast. Check out The Crew here: http://bit.ly/1zjKDqm","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-the-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c8facf4-0034-46ce-bc1c-2d5c80382d2c/sm/ep9939.jpg","duration":1764,"publication_date":"2014-11-06T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-borderlands-the-pre-sequel-family-guy-reference-mission","changefreq":"weekly","video":[{"title":"2014:E2463 - Borderlands: The Pre-Sequel - Family Guy Reference Mission","description":"Jeremy and Kdin take a look at a shout-out to the Family Guy Star Wars saga in this cool reference mission.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-borderlands-the-pre-sequel-family-guy-reference-mission","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20683172-3149-4436-8a18-99967e4948fc/sm/ep9938.jpg","duration":126,"publication_date":"2014-11-05T22:19:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-borderlands-the-pre-sequel-star-wars-reference-mission","changefreq":"weekly","video":[{"title":"2014:E2462 - Borderlands: The Pre-Sequel - Star Wars Reference Mission ","description":"Jeremy and Kdin follow two strange bots into the wild of the moon in this reference mission.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-borderlands-the-pre-sequel-star-wars-reference-mission","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58f6ad58-72cf-4bd6-b880-b517639cbf5e/sm/ep9937.jpg","duration":189,"publication_date":"2014-11-05T22:14:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-minisode","changefreq":"weekly","video":[{"title":"IA:E13 - Minisode","description":"Jeremy and Matt show off three suggestions that couldn't fill their own episode, but deserved their time in the spotlight","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-minisode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa6cecf6-ff1c-490d-a391-f2e2907a2106/sm/ep9936.jpg","duration":284,"publication_date":"2014-11-05T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-277","changefreq":"weekly","video":[{"title":"2014:E280 - Evolve Big Alpha","description":"Geoff, Jack, Ryan, Ray, and Lindsay play the role of hunters and hunted in the Evolve Alpha.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-277","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94aaf54e-7dc4-4870-a463-f31ea62aed8b/sm/ep9935.jpg","duration":1974,"publication_date":"2014-11-05T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-57","changefreq":"weekly","video":[{"title":"2014:E55 - Minecraft - Firing Squad","description":"This week in Things To Do in Minecraft, Matt shows us how to quickly and inefficiently kill the enemy.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79227ab1-993e-4f95-b350-c8076f00de70/sm/ep9934.jpg","duration":128,"publication_date":"2014-11-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-41","changefreq":"weekly","video":[{"title":"2014:E44 - Achievement HUNT #54","description":"Find out who's Danny Glover and who's the Predator between Geoff and Ryan as they face off using a custom game type in Call of Duty: Advanced Warfare!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70270e9a-ef2f-41d6-bb37-76a37d8c7a8f/sm/ep9933.jpg","duration":314,"publication_date":"2014-11-05T17:55:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-267","changefreq":"weekly","video":[{"title":"2014:E279 - Let's Build in Minecraft - Halloween Spooktacular Part 2","description":"Team Building Exercise continues their quest to make the perfect Halloween world. Watch the insanity set in.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-267","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8627a30e-71db-45b9-b393-525d5af61102/sm/ep9931.jpg","duration":2847,"publication_date":"2014-11-04T23:15:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-262","changefreq":"weekly","video":[{"title":"2014:E278 - Call of Duty: Advanced Warfare","description":"Geoff, Ryan, Gus, Matt, Jeremy, and Kdin engage in the future of warfare...which apparently means using proton packs, giant mechs guns, and dropping care packages on each other.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-262","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f0838aa-73c9-455f-8f01-64c77ca4374a/sm/ep9928.jpg","duration":2375,"publication_date":"2014-11-04T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-265","changefreq":"weekly","video":[{"title":"2014:E277 - GTA V - Super Stunt Alternate Takes","description":"Watch some alternate takes from Let's Play - GTA V - Super Stunt Watch the Let's Play in it's entirety here: http://bit.ly/1usDi4S","player_loc":"https://roosterteeth.com/embed/lets-play-2014-265","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2665a38f-5667-4527-94fb-9106f3d7960c/sm/ep9930.jpg","duration":273,"publication_date":"2014-11-04T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-41","changefreq":"weekly","video":[{"title":"2014:E44 - Destiny #2 - GO! #54","description":"Another Destiny week! This time, the challenge is much simpler: be the first to get a kill on every planet (and the moon). Not the reef though, since... well let's not talk about the reef.","player_loc":"https://roosterteeth.com/embed/go-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf06014b-377c-4965-b74a-ccd8e180cf86/sm/ep9927.jpg","duration":480,"publication_date":"2014-11-04T18:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-29","changefreq":"weekly","video":[{"title":"2014:E37 - Trials Files #125","description":"Geoff and Ryan bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb2dce66-a534-4844-93e5-b9d7fdb67dd0/sm/ep9926.jpg","duration":79,"publication_date":"2014-11-04T18:48:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-40","changefreq":"weekly","video":[{"title":"2014:E43 - Sunset Overdrive","description":"Geoff and Ryan bring you five facts over Sunset Overdrive.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30f2382e-639e-4c5a-8527-fd70312275b0/sm/ep9925.jpg","duration":243,"publication_date":"2014-11-04T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-advanced-warfare-sitting-ducks","changefreq":"weekly","video":[{"title":"2014:E2461 - Call of Duty: Advanced Warfare - Sitting Ducks","description":"Geoff and Ryan show you how to get the Sitting Ducks Achievement in Call of Duty: Advanced Warfare for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-advanced-warfare-sitting-ducks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b0e551f-885c-4811-9ec4-2401b5cc2bbd/sm/ep9924.jpg","duration":120,"publication_date":"2014-11-04T18:46:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-257","changefreq":"weekly","video":[{"title":"2014:E276 - Call of Duty Black Ops 2","description":"The AH crew take on the zombie hoard in Call of Duty Black Ops 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-257","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e925eafd-40ba-446f-9701-3ec225b65e66/sm/ep9923.jpg","duration":2867,"publication_date":"2014-11-04T01:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-254","changefreq":"weekly","video":[{"title":"2014:E275 - GTA V - Super Stunt","description":"One late night, six Achievement Hunters, and a stunt that seems impossible. AH tries to out stunt every stunt they've ever stunted!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-254","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74771110-77bf-49fa-b17b-42de1a43007c/sm/ep9922.jpg","duration":2415,"publication_date":"2014-11-03T21:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-41","changefreq":"weekly","video":[{"title":"2014:E44 - Week #238","description":"A sick Geoff along with Team Mates bring you the gaming news for the week of November 3rd in this week's AHWU! Video of the Week: http://bit.ly/13B9Uyk\r\nCommunity Video of the Week: http://bit.ly/1A7q94B","player_loc":"https://roosterteeth.com/embed/ahwu-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5151c70b-fef1-4b4d-81d7-a2ebf7d9f920/sm/ep9921.jpg","duration":441,"publication_date":"2014-11-03T21:06:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-10-games-with-gold-so-far","changefreq":"weekly","video":[{"title":"2014:E26 - 10 Games With Gold...So Far","description":"Kdin, Ryan, and Matt take a look at something to be always be thankful for...FREE GAMES!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-10-games-with-gold-so-far","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de804b39-8af5-4db2-97d6-576abc4194f2/sm/ep9920.jpg","duration":204,"publication_date":"2014-11-03T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-november-2014","changefreq":"weekly","video":[{"title":"2014:E28 - Coming Soon - November 2014","description":"Kdin is back with a ton of new games and other information for the month of November. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-november-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99ad85d6-ef87-4bef-9a2e-d1c018e4d7b2/sm/ep9917.jpg","duration":424,"publication_date":"2014-11-01T23:04:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-245","changefreq":"weekly","video":[{"title":"2014:E274 - Call of Duty Black Ops","description":"Geoff, Jack, Ryan, Ray, Kdin, and Jeremy continue Call of Duty week with a trip into Black Ops.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-245","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/528f58d9-22de-4c11-8b8c-8847424085af/sm/ep9915.jpg","duration":2420,"publication_date":"2014-10-31T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-halloween-spooktacular-mansion","changefreq":"weekly","video":[{"title":"2014:E12 - Halloween Spooktacular Mansion","description":"Matt and Lindsay take another look at the Halloween Spooktacular Mansion that was featured in today's Minecraft Let's Play. Whatever team that built it must have been really talented. If you think you can compete with something this cool and want us to check out your map to be featured, head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-halloween-spooktacular-mansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4cd2ce7-9ca6-4a39-9a41-ae654c1c2d1c/sm/ep9914.jpg","duration":216,"publication_date":"2014-10-31T20:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-51","changefreq":"weekly","video":[{"title":"2014:E54 - GTA V - Real Reverse Race","description":"AH Crew is back playing \"Real Reverse Race\" for this week's Things to do in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/317c169f-1925-4e03-b569-14ecc4efb858/sm/ep9912.jpg","duration":700,"publication_date":"2014-10-31T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-242","changefreq":"weekly","video":[{"title":"2014:E273 - Minecraft - Episode 127 - Halloween Spooktacular Part 2","description":"The AH crew venture into the haunted mansion and brave its horrors! Who will be victorious and claim the Tower of Pimps","player_loc":"https://roosterteeth.com/embed/lets-play-2014-242","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba9c9373-585f-44c8-81b3-4ee997014dbc/sm/ep9911.jpg","duration":2432,"publication_date":"2014-10-31T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-39","changefreq":"weekly","video":[{"title":"2014:E44 - Volume 215","description":"In Fails of the Weak #215, Geoff and Jack bring you fails in Watch Dogs, Borderlands: TPS, Destiny, NHL 15, GTA V, and State of Decay.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa2520df-6c76-45f1-8794-c076ac294ab3/sm/ep9910.jpg","duration":159,"publication_date":"2014-10-31T14:44:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-best-of-achievement-hunter-singing","changefreq":"weekly","video":[{"title":"2014:E2460 - Best Of Achievement Hunter - Singing","description":"AH introduces their newest test show: Best Of. First up, we have the crew's best singing moments.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-best-of-achievement-hunter-singing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120db3c4-c75f-4705-b388-af60d8de6db7/sm/ep9907.jpg","duration":406,"publication_date":"2014-10-31T14:19:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-21","changefreq":"weekly","video":[{"title":"2014:E21 - Borderlands The Pre-Sequel - Pink Floyd Easter Egg","description":"Kdin and Jeremy show where to find a shoutout to a classic album in Borderlands.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7edcf211-2c89-4d7e-939b-0523528edb06/sm/ep9905.jpg","duration":128,"publication_date":"2014-10-30T20:34:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-20","changefreq":"weekly","video":[{"title":"2014:E20 - Borderlands The Pre-Sequel - Daft Punk Easter Egg","description":"Kdin and Jeremy find the hit techno duo playing in Concordia.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8417823d-8613-43cd-ba2f-1cd3cdc97d1d/sm/ep9904.jpg","duration":90,"publication_date":"2014-10-30T20:27:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-3","changefreq":"weekly","video":[{"title":"2014:E27 - Rooster Teeth Inter-Office SMITE Tournament","description":"Fire Team Orge takes on Team Rainbow Tiger, which of the two teams with incredibly silly names will take the victory Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c197c2f-5738-4271-b1a2-6cef153efce7/sm/ep9903.jpg","duration":956,"publication_date":"2014-10-30T18:41:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-outlast-halloween-special","changefreq":"weekly","video":[{"title":"2014:E40 - Outlast Halloween Special","description":"Funny how a 150 year old 'partially' abandoned asylum, some batteries, and a $29.95 ghost meter can result in the death of 6 people. Weird.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-outlast-halloween-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95391b3e-5baf-464c-9de9-7dcbb6eb43e5/sm/ep9900.jpg","duration":3143,"publication_date":"2014-10-30T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-228","changefreq":"weekly","video":[{"title":"2014:E272 - Call of Duty 4","description":"Call of Duty week continues as Team Gents faces off against Ray, Lindsay, and Matt in Call of Duty 4!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-228","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ca9c4b8-76e0-486e-baeb-67ee9921bb5c/sm/ep9898.jpg","duration":2543,"publication_date":"2014-10-30T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-behind-the-scenes-halloween-special","changefreq":"weekly","video":[{"title":"2014:E39 - Behind the Scenes Halloween Special","description":"Revenge is a dish best served in a dark, haunted, and probably mostly asbestos filled hallway.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-behind-the-scenes-halloween-special","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0650c021-7a6c-4df3-a253-c7c49898c591/sm/ep9901.jpg","duration":307,"publication_date":"2014-10-30T13:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-37","changefreq":"weekly","video":[{"title":"2014:E44 - Episode 87: Lindsay vs. Jack","description":"This week, Jack takes on Lindsay in the most action-filled, gut-wrenching, heart-stopping VS to date!!","player_loc":"https://roosterteeth.com/embed/vs-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d698354e-72a2-4d22-b916-29e8a973a66a/sm/ep9899.jpg","duration":514,"publication_date":"2014-10-30T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-19","changefreq":"weekly","video":[{"title":"2014:E19 - Borderlands The Pre-Sequel - Oscar the Grouch Easter Egg","description":"Jeremy and Kdin show where to find a famous character from Sesame Street in Borderlands.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86e8519d-7e6a-4193-9890-de58dfac7d2d/sm/ep9897.jpg","duration":86,"publication_date":"2014-10-29T20:35:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-fighting-games-round-3-tekken-5","changefreq":"weekly","video":[{"title":"S1:E64 - Iron-Man of FIghting Games Round 3: Tekken 5","description":"Swapping spots with Destin, Chad climbed to the top after Soul Calibur while Bryan remained stuck in last place. With time running out, will Bryan avoid having to shave? Who's gonna have to grow their bad facial hair for how long from the rest? Tekken 5 will help decide.","player_loc":"https://roosterteeth.com/embed/iron-man-of-fighting-games-round-3-tekken-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d3d2f16-b2a8-4406-9dbb-01409ab49325/sm/38893_low_1280868059.jpg","duration":186,"publication_date":"2011-08-18T11:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mechwarrior-3050","changefreq":"weekly","video":[{"title":"S1:E181 - Video Game Vault - MechWarrior 3050","description":"Do you believe a company that makes sports title made this game?!","player_loc":"https://roosterteeth.com/embed/video-game-vault-mechwarrior-3050","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":104,"publication_date":"2011-08-18T11:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-fighting-games-round-2-soul-calibur","changefreq":"weekly","video":[{"title":"S1:E63 - Iron-Man of FIghting Games Round 2: Soul Calibur","description":"After Round 1 Destin was sitting in the lead with Craig, Chad, and Bryan falling in behind him. Next up is Soul Calibur, will Destin hold onto 1st place? Will Bryan get off the bottom of the table?","player_loc":"https://roosterteeth.com/embed/iron-man-of-fighting-games-round-2-soul-calibur","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fba9a4aa-cbde-4cc9-b168-5f5186587d97/sm/38852_low_1280859473.jpg","duration":172,"publication_date":"2011-08-18T11:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-smash-tv","changefreq":"weekly","video":[{"title":"S1:E180 - Video Game Vault - Smash TV","description":"Big money, big prizes, Craig LOVES it!","player_loc":"https://roosterteeth.com/embed/video-game-vault-smash-tv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/438ed34e-6b7b-434d-ae16-7b4157f1ea68/sm/11812421703.png","duration":158,"publication_date":"2011-08-18T11:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-swat-kats","changefreq":"weekly","video":[{"title":"S1:E179 - Video Game Vault - SWAT Kats","description":"Pussies so badass, they spell \"cat\" with a K.","player_loc":"https://roosterteeth.com/embed/video-game-vault-swat-kats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":166,"publication_date":"2011-08-18T11:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonus-vgv-footage-can-pikachu-ever-find-the-pinata","changefreq":"weekly","video":[{"title":"S1:E62 - Bonus VGV Footage - Can Pikachu Ever Find the Pinata?","description":"Will Pikachu ever find the pinata? Can Nick guide him to victory?","player_loc":"https://roosterteeth.com/embed/bonus-vgv-footage-can-pikachu-ever-find-the-pinata","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":81,"publication_date":"2011-08-18T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-double-dragon-v","changefreq":"weekly","video":[{"title":"S1:E178 - Video Game Vault - Double Dragon V","description":"What a way for a franchise to go.","player_loc":"https://roosterteeth.com/embed/video-game-vault-double-dragon-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b96c1f03-f111-45e3-93c5-9ad038bbc8c2/sm/1137462-pt_2009_09_16_15_39_31_17_super.jpg","duration":110,"publication_date":"2011-08-18T11:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2009-summer-intern-interrogation","changefreq":"weekly","video":[{"title":"S1:E61 - 2009 Summer Intern Interrogation ","description":"We mess with our interns before they even get the job. This one here? he got messed with.","player_loc":"https://roosterteeth.com/embed/2009-summer-intern-interrogation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":327,"publication_date":"2011-08-18T10:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-streets-of-rage","changefreq":"weekly","video":[{"title":"S1:E177 - Video Game Vault - Streets of Rage","description":"Ass-kicking and sixteen bit tunes that spawned a night club career.","player_loc":"https://roosterteeth.com/embed/video-game-vault-streets-of-rage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de08863d-8a9a-4668-b46b-666b1b28d5f0/sm/sega-megadrive-streets-of-rage-pal-2_0.jpg","duration":125,"publication_date":"2011-08-18T10:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-bryans-rap-skills","changefreq":"weekly","video":[{"title":"S1:E60 - Behind the Scenes - Bryan's Rap Skills","description":"Whenever it's time to push the button or galvanize, Bryan will definitely be prepared. We have proof.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-bryans-rap-skills","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ddf8b85-70ae-48ea-b9a5-4ab8a22954c2/sm/324045.jpg","duration":138,"publication_date":"2011-08-18T10:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-jungle-strike","changefreq":"weekly","video":[{"title":"S1:E176 - Video Game Vault - Jungle Strike","description":"What makes helicopters even cooler? Being able to shoot things with them.","player_loc":"https://roosterteeth.com/embed/video-game-vault-jungle-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":128,"publication_date":"2011-08-18T10:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-alien-vs-predator-snes","changefreq":"weekly","video":[{"title":"S1:E175 - Video Game Vault - Alien vs. Predator (SNES)","description":"If you were expecting the arcade game you'll be disappointed... big time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-alien-vs-predator-snes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/476c1176-3425-4dff-8e5b-3eee2f70bd93/sm/Alien_vs_Predator_SNES_01.png","duration":90,"publication_date":"2011-08-18T10:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-doom-snes","changefreq":"weekly","video":[{"title":"S1:E174 - Video Game Vault - Doom (SNES)","description":"One of the most influential FPS games ever--just not on the SNES.","player_loc":"https://roosterteeth.com/embed/video-game-vault-doom-snes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8a24cef-042e-4def-9a5f-ccb554b88c86/sm/Doom.gif","duration":125,"publication_date":"2011-08-18T10:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-kid-icarus-of-myths-and-monsters","changefreq":"weekly","video":[{"title":"S1:E173 - Video Game Vault - Kid Icarus: Of Myths and Monsters","description":"One of the NES classics made its way handheld, but did it have the same magic?","player_loc":"https://roosterteeth.com/embed/video-game-vault-kid-icarus-of-myths-and-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05fe0beb-b72c-4bd3-9a96-3fde3e48e217/sm/kidic1001608.png","duration":137,"publication_date":"2011-08-18T10:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-conkers-bad-fur-day","changefreq":"weekly","video":[{"title":"S1:E172 - Video Game Vault - Conker's Bad Fur Day","description":"Need we say more?","player_loc":"https://roosterteeth.com/embed/video-game-vault-conkers-bad-fur-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a8eebd4-c0a6-4ba3-8510-5f9bdd8e4b9e/sm/gfs_41917_1_10_0.jpg","duration":128,"publication_date":"2011-08-18T10:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonus-vgv-footage-ben-rofls-at-hey-you-pikachu","changefreq":"weekly","video":[{"title":"S1:E59 - Bonus VGV Footage - Ben ROFLs at Hey You Pikachu","description":"Hey You Pikachu was an interesting game to try and vault, and the LOLs just couldn't be contained by Ben or Nick.","player_loc":"https://roosterteeth.com/embed/bonus-vgv-footage-ben-rofls-at-hey-you-pikachu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":53,"publication_date":"2011-08-18T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ready-2-rumble-boxing","changefreq":"weekly","video":[{"title":"S1:E171 - Video Game Vault - Ready 2 Rumble Boxing","description":"One of the premier boxing games ever, there was really just one drawback.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ready-2-rumble-boxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":105,"publication_date":"2011-08-18T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/craigs-dj-hero-interview","changefreq":"weekly","video":[{"title":"S1:E58 - Craig's DJ Hero Interview","description":"Craig was flown out to find out more about DJ Hero and ask the big question that was on everybody's mind.","player_loc":"https://roosterteeth.com/embed/craigs-dj-hero-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27b00f98-3ded-40d5-899d-8e7f76ec0f59/sm/324041.jpg","duration":165,"publication_date":"2011-08-18T10:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-anticipation","changefreq":"weekly","video":[{"title":"S1:E170 - Video Game Vault - Anticipation","description":"Quite possibly the best first board game for NES ever!","player_loc":"https://roosterteeth.com/embed/video-game-vault-anticipation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebac8fa7-77b5-4ead-9a3f-043913babb7b/sm/Anticipation.gif","duration":132,"publication_date":"2011-08-18T10:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/iron-man-of-fighting-games-round-1-killer-instinct","changefreq":"weekly","video":[{"title":"S1:E57 - Iron-Man of FIghting Games Round 1: Killer Instinct","description":"Five games, all fighting ones, four fighters, facial hair on the line. Destin, Craig, and Chad have to grow facial hair if they lose but if Bryan loses he has to lose the facial hair. First game in the competition: Killer Instinct.","player_loc":"https://roosterteeth.com/embed/iron-man-of-fighting-games-round-1-killer-instinct","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":246,"publication_date":"2011-08-18T10:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-marvel-vs-capcom-2","changefreq":"weekly","video":[{"title":"S1:E169 - Video Game Vault - Marvel vs Capcom 2","description":"One of the coolest 2-D fighters ever.","player_loc":"https://roosterteeth.com/embed/video-game-vault-marvel-vs-capcom-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f6861b8-6a3e-4775-a3b4-0e3604181313/sm/1181242137121.jpg","duration":177,"publication_date":"2011-08-18T10:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-virtual-bart","changefreq":"weekly","video":[{"title":"S1:E168 - Video Game Vault - Virtual Bart","description":"You thought the NES games were bad? Leave it to the SNES to make the Simpsons super suck.","player_loc":"https://roosterteeth.com/embed/video-game-vault-virtual-bart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80a36f7c-2681-4713-abd8-e1783db1036b/sm/Virtual_Bart_SNES_ScreenShot1.jpg","duration":112,"publication_date":"2011-08-18T10:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gameworks-loss-or-screwattacks-gain","changefreq":"weekly","video":[{"title":"S1:E56 - Gameworks Loss or ScrewAttack's Gain?","description":"The local Gameworks was closing down and since they were getting rid of all of their machines anyways, who was gonna notice if we took a few? Check out all the machines we had!","player_loc":"https://roosterteeth.com/embed/gameworks-loss-or-screwattacks-gain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":263,"publication_date":"2011-08-18T10:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-burgertime","changefreq":"weekly","video":[{"title":"S1:E167 - Video Game Vault - Burgertime","description":"Peter Pepper is a dirty, dirty man.","player_loc":"https://roosterteeth.com/embed/video-game-vault-burgertime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e974b6a5-b897-4404-90d8-2e9a80b218e4/sm/BurgerTime_ARC_GMode_205_71bc0.PNG","duration":103,"publication_date":"2011-08-18T10:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lifetags","changefreq":"weekly","video":[{"title":"S1:E55 - Lifetags","description":"Nametags and Life in a Game cross over for a very animated video!","player_loc":"https://roosterteeth.com/embed/lifetags","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":106,"publication_date":"2011-08-18T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-spawn","changefreq":"weekly","video":[{"title":"S1:E166 - Video Game Vault - Spawn","description":"One of the most bad ass comic book characters ever, does the SNES game do him justice?","player_loc":"https://roosterteeth.com/embed/video-game-vault-spawn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37041d98-266b-4a61-b694-b3a28b7d107b/sm/Spawn_SNES_ScreenShot1.jpg","duration":111,"publication_date":"2011-08-18T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-halloween-candy-eating-contest","changefreq":"weekly","video":[{"title":"S1:E54 - ScrewAttack Halloween Candy Eating Contest","description":"We had lots of candy from Halloween and what better way to get it eaten than a challenge? Corey, Jose, and Ben gotta figure out what candy has been placed in front of them. Can they figure everything out? Will everything set before our competitors actually be candy?","player_loc":"https://roosterteeth.com/embed/screwattack-halloween-candy-eating-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":322,"publication_date":"2011-08-18T09:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-splatterhouse","changefreq":"weekly","video":[{"title":"S1:E165 - Video Game Vault - SplatterHouse","description":"A game so gory, it gave itself a warning before it had to.","player_loc":"https://roosterteeth.com/embed/video-game-vault-splatterhouse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b6ee5a8-810d-4875-8e98-6f6690cd42c7/sm/splatterhouse_01.png","duration":122,"publication_date":"2011-08-18T09:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-demons-crest","changefreq":"weekly","video":[{"title":"S1:E164 - Video Game Vault - Demon's Crest","description":"Part ninja, part gargoyle, all insanely difficult.","player_loc":"https://roosterteeth.com/embed/video-game-vault-demons-crest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":139,"publication_date":"2011-08-18T09:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonus-vgv-footage-seaman-and-careers","changefreq":"weekly","video":[{"title":"S1:E53 - Bonus VGV Footage - Seaman and Careers","description":"Nick had some interesting conversations with Seaman while making this VGV. Even Seaman wasn't sure if we were a porn site or not.","player_loc":"https://roosterteeth.com/embed/bonus-vgv-footage-seaman-and-careers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":131,"publication_date":"2011-08-18T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-plok","changefreq":"weekly","video":[{"title":"S1:E163 - Video Game Vault - Plok!","description":"A red dude who shoots his hands and feet at you. How can that be bad?","player_loc":"https://roosterteeth.com/embed/video-game-vault-plok","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29c81f87-f6b6-451c-b4b7-6a4e23640afc/sm/Plok_SNES_ScreenShot1.gif","duration":128,"publication_date":"2011-08-18T09:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-star-wars-rogue-squadron","changefreq":"weekly","video":[{"title":"S1:E162 - Video Game Vault - Star Wars: Rogue Squadron","description":"When will Lucas get smart and make this game into a movie?","player_loc":"https://roosterteeth.com/embed/video-game-vault-star-wars-rogue-squadron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":160,"publication_date":"2011-08-18T09:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bonus-vgv-footage-seaman-cannibals","changefreq":"weekly","video":[{"title":"S1:E52 - Bonus VGV Footage - Seaman Cannibals","description":"One of the weirder VGVs we've done, Nick vaulted Seaman and doing this vault was definitely a learning experience for him and Seaman. Seaman might not have actually learned anything but Nick learned something terrible about Seaman.","player_loc":"https://roosterteeth.com/embed/bonus-vgv-footage-seaman-cannibals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":259,"publication_date":"2011-08-18T09:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-metal-slug","changefreq":"weekly","video":[{"title":"S1:E161 - Video Game Vault - Metal Slug","description":"See it? Shoot it! That's the name of the game in Metal Slug.","player_loc":"https://roosterteeth.com/embed/video-game-vault-metal-slug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":113,"publication_date":"2011-08-18T09:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-many-lives-final-fight","changefreq":"weekly","video":[{"title":"S1:E51 - How Many Lives: Final Fight","description":"Final Fight is an arcade classic, but like many arcade classics Jose wasn't too familiar with them. So Craig wanted to see how many lives, and how many quarters, it would take Jose to knock a man through a skyscraper window.","player_loc":"https://roosterteeth.com/embed/how-many-lives-final-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":304,"publication_date":"2011-08-18T09:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-soldier-of-fortune","changefreq":"weekly","video":[{"title":"S1:E160 - Video Game Vault - Soldier of Fortune","description":"An old guy going to town on the rest of the world--and it's awesome.","player_loc":"https://roosterteeth.com/embed/video-game-vault-soldier-of-fortune","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77074674-c68e-465c-8657-7af380564ee2/sm/Soldier-of-Fortune.jpg","duration":132,"publication_date":"2011-08-18T09:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-spy-hunter","changefreq":"weekly","video":[{"title":"S1:E159 - Video Game Vault - Super Spy Hunter","description":"The sequel to the arcade classic, could it actually be better?","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-spy-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d0b057-c691-4a72-9973-44ecfc8b6feb/sm/Super_Spy_Hunter_NES_ScreenShot1.gif","duration":178,"publication_date":"2011-08-18T09:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-giant-snowball-build-that-turned-into-a-snow-fort","changefreq":"weekly","video":[{"title":"S1:E50 - The Giant Snowball Build That Turned Into a Snow Fort","description":"It does not snow often in Texas, so those of us not from the great white north didn't know the finer points of giant snowball building. That's why we ended up with a snow fort.","player_loc":"https://roosterteeth.com/embed/the-giant-snowball-build-that-turned-into-a-snow-fort","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":205,"publication_date":"2011-08-18T09:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mace-the-dark-age","changefreq":"weekly","video":[{"title":"S1:E158 - Video Game Vault - Mace: The Dark Age","description":"Want a good 3D fighter for your N64? Look here.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mace-the-dark-age","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":139,"publication_date":"2011-08-18T09:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-bases-loaded","changefreq":"weekly","video":[{"title":"S1:E157 - Video Game Vault - Bases Loaded","description":"Was this NES classic a strike, or a ball?","player_loc":"https://roosterteeth.com/embed/video-game-vault-bases-loaded","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef946d77-e527-4fd6-bcf8-faaab77faaf2/sm/bases_loaded.png","duration":133,"publication_date":"2011-08-18T09:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-lion-king","changefreq":"weekly","video":[{"title":"S1:E156 - Video Game Vault - The Lion King","description":"A Disney classic, was the game as good as the movie?","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-lion-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":136,"publication_date":"2011-08-18T09:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/nick-gets-screwattack-sideburns","changefreq":"weekly","video":[{"title":"S1:E49 - Nick gets ScrewAttack Sideburns","description":"How hardcore is Nick? Hardcore enough to get a ScrewAttack bolt in his sideburns.","player_loc":"https://roosterteeth.com/embed/nick-gets-screwattack-sideburns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":106,"publication_date":"2011-08-18T09:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/luke-skywalker-vs-harry-potter-death-battle","changefreq":"weekly","video":[{"title":"S1:E15 - Luke Skywalker VS Harry Potter","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/luke-skywalker-vs-harry-potter-death-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/624a973a-83a5-4dd0-b07c-23518dc195de/sm/video_thumbnail_819.jpg","duration":475,"publication_date":"2011-08-18T09:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-soulja-boy-sgc-challenge","changefreq":"weekly","video":[{"title":"S1:E48 - The Soulja Boy SGC Challenge","description":"Soulja Boy was still being a bitch and not responding to the real gamers of the internet so Craig threw down one last challenge. Come to SGC and take on ScrewAttack in person, and see once and for all who was the better gamer.","player_loc":"https://roosterteeth.com/embed/the-soulja-boy-sgc-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":89,"publication_date":"2011-08-18T09:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1","changefreq":"weekly","video":[{"title":"S1:E1 - Justin Bieber VS Rebecca Black","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48abe4f5-adb2-4b52-ae5d-13f5f428cbc5/sm/video_thumbnail_817.jpg","duration":466,"publication_date":"2011-08-18T09:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gone-mo-cappin-part-2","changefreq":"weekly","video":[{"title":"S1:E47 - Gone Mo-cappin' Part 2","description":"The trip to Motus continued as Ben and Jose got into the mocap suits and made some computer models do some very interesting things that can't be unseen.","player_loc":"https://roosterteeth.com/embed/gone-mo-cappin-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":175,"publication_date":"2011-08-18T09:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-2","changefreq":"weekly","video":[{"title":"S1:E2 - Mario VS Sonic","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fd1156f-16dc-4d16-a5ae-4cf1d3ad4a39/sm/video_thumbnail_812.jpg","duration":578,"publication_date":"2011-08-18T09:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-3","changefreq":"weekly","video":[{"title":"S1:E3 - Vegeta VS Shadow","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7e36c48-a298-477f-a832-65341cc1daee/sm/video_thumbnail_811.jpg","duration":548,"publication_date":"2011-08-18T09:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-4","changefreq":"weekly","video":[{"title":"S1:E4 - Bomberman VS Dig Dug","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dec6b70-16d8-41f4-9eda-f17e3310fdac/sm/video_thumbnail_809.jpg","duration":427,"publication_date":"2011-08-18T09:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-5","changefreq":"weekly","video":[{"title":"S1:E5 - Kratos VS Spawn","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77a405ca-b299-4e82-94be-1f1a4c9dbf6d/sm/video_thumbnail_807.jpg","duration":518,"publication_date":"2011-08-18T09:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-6","changefreq":"weekly","video":[{"title":"S1:E6 - Felicia VS Taokaka","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c713ae6d-75c9-4c0e-a57c-023ab7080310/sm/video_thumbnail_806.jpg","duration":435,"publication_date":"2011-08-18T08:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/gone-mo-cappin-part-1","changefreq":"weekly","video":[{"title":"S1:E46 - Gone Mo-cappin' Part 1","description":"We've been able to do some cool and crazy stuff at ScrewAttack, like the time we were invited out to a motion capture studio. Some of the guys suited up and motion captured mayhem ensued.","player_loc":"https://roosterteeth.com/embed/gone-mo-cappin-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":232,"publication_date":"2011-08-18T08:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-7","changefreq":"weekly","video":[{"title":"S1:E7 - Yoshi VS Riptor","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bab15ec-0c86-4641-b15b-a70e1181a7de/sm/video_thumbnail_801.jpg","duration":397,"publication_date":"2011-08-18T08:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-of-screwattack-street-fighter-taffy-power","changefreq":"weekly","video":[{"title":"S1:E45 - A Day in the Life of ScrewAttack: Street Fighter Taffy Power","description":"The idea that different colored candies applies to more than just a boy who happens to have befriended a gelatinous creature. It also works when playing Street Fighter!","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-of-screwattack-street-fighter-taffy-power","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":282,"publication_date":"2011-08-18T08:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-8","changefreq":"weekly","video":[{"title":"S1:E8 - Zitz VS Leonardo","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e73feaa-0c0e-4124-b5e8-a6dcf841b52a/sm/video_thumbnail_795.jpg","duration":346,"publication_date":"2011-08-18T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/break-stuff-day-cold-weather-edition","changefreq":"weekly","video":[{"title":"S1:E44 - Break Stuff Day! Cold Weather Edition","description":"What better way to warm up in a Texas winter than breaking stuff. It didn't really warm us up but Corey beat the hell out of that computer monitor.","player_loc":"https://roosterteeth.com/embed/break-stuff-day-cold-weather-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/255c7546-d22c-4099-b75a-3c32d7093e90/sm/323957.jpg","duration":248,"publication_date":"2011-08-18T08:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-of-screwattack-nfl-blitz-sharpie-stache-challenge","changefreq":"weekly","video":[{"title":"S1:E43 - A Day in the Life of ScrewAttack: NFL Blitz Sharpie Stache Challenge","description":"NFL Blitz holds a special place in the HQ's collective hearts, or maybe it's just Craigs...either way there were enough Blitz players in the office to see who was the best and who had to face mortality and don a sharpie mustache.","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-of-screwattack-nfl-blitz-sharpie-stache-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":207,"publication_date":"2011-08-18T08:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-9","changefreq":"weekly","video":[{"title":"S1:E9 - Ninja Turtles Battle Royale","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47f4d043-e0ae-46de-ac03-1e081880026e/sm/video_thumbnail_776.jpg","duration":524,"publication_date":"2011-08-18T08:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-of-screwattack-street-fighter-iii","changefreq":"weekly","video":[{"title":"S1:E42 - A Day in the Life of ScrewAttack: Street Fighter III","description":"It sat dormant for more than anyone cared to remember, but when the Street Fighter 3 cab came back to life, the ScrewAttack HQ was changed forever...","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-of-screwattack-street-fighter-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":89,"publication_date":"2011-08-18T08:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-responds-to-soulja-boys-challenge","changefreq":"weekly","video":[{"title":"S1:E41 - ScrewAttack Responds to Soulja Boy's Challenge","description":"Young buck Soulja Boy threw out the challenge to the internet, a gaming challenge, and ScrewAttack accepted.","player_loc":"https://roosterteeth.com/embed/screwattack-responds-to-soulja-boys-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f17c1805-5d35-4478-9401-1f5d43a663c9/sm/323921.jpg","duration":135,"publication_date":"2011-08-18T08:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-10","changefreq":"weekly","video":[{"title":"S1:E10 - Haggar VS Zangief","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0821c979-c4ca-4eab-86fd-53c4bd351414/sm/video_thumbnail_772.jpg","duration":443,"publication_date":"2011-08-18T08:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-11","changefreq":"weekly","video":[{"title":"S1:E11 - Goomba VS Koopa","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d61bdb31-78f0-4fe7-ba5d-3bad56c0698b/sm/video_thumbnail_771.jpg","duration":420,"publication_date":"2011-08-18T08:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-12","changefreq":"weekly","video":[{"title":"S1:E12 - Rogue VS Wonder Woman","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/473d8a9e-34c6-415d-b45a-0d1fd4423267/sm/video_thumbnail_766.jpg","duration":393,"publication_date":"2011-08-18T08:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/random-awesomeness-season-1-2","changefreq":"weekly","video":[{"title":"S1:E40 - How to With Chad - Arcade Stick Gate Changing","description":"Today I show you how to change the gate in a Madcatz Street Fighter IV Tournament Edition Fightstick! So easy you won't believe it!","player_loc":"https://roosterteeth.com/embed/random-awesomeness-season-1-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddf7f5cb-efdd-42ef-99c2-20e0e4cbdb66/sm/Fightstick_gate_0.jpg","duration":178,"publication_date":"2011-08-18T08:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-13","changefreq":"weekly","video":[{"title":"S1:E13 - Akuma VS Shang Tsung","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88a15ddb-25a1-42ff-b1df-25fe00363240/sm/video_thumbnail_765.jpg","duration":483,"publication_date":"2011-08-18T08:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-captain-internet","changefreq":"weekly","video":[{"title":"S1:E44 - Clip of the Week - Captain Internet","description":" When trolls rise to power on the internet, Al Gore's toucan creates five special rings for five special Internet users.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-captain-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":151,"publication_date":"2011-08-17T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-stuttering-craig-slamball-highlight-reel","changefreq":"weekly","video":[{"title":"S1:E39 - The Stuttering Craig Slamball Highlight Reel","description":"One of the fun facts of Craig's past is his time spent playing Slamball. If you give him a court with trampolines built in he's got some skills.","player_loc":"https://roosterteeth.com/embed/the-stuttering-craig-slamball-highlight-reel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":89,"publication_date":"2011-08-17T15:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-screwys-back","changefreq":"weekly","video":[{"title":"S1:E43 - Clip of the Week - Screwy's Back","description":" There's only one person that would cause this kind of hijinx. One person who would dare steal things from everybody in the office. One person who would dare think he is \"cool\"...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-screwys-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":143,"publication_date":"2011-08-17T15:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-centipede-randomness","changefreq":"weekly","video":[{"title":"S1:E42 - Clip of the Week - Centipede Randomness","description":" There is no amount of words I could type into this box that would clarify anything that happens in this video. Enjoy!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-centipede-randomness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":162,"publication_date":"2011-08-17T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-los-angeles-arcade-adventure","changefreq":"weekly","video":[{"title":"S1:E38 - The Los Angeles Arcade Adventure","description":"Los Angeles is a pretty big town, so you figure they might have a few arcades hidden somewhere. Somewhere the reality arcades faced hadn't reached yet. But reach them Craig and Tom did.","player_loc":"https://roosterteeth.com/embed/the-los-angeles-arcade-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":257,"publication_date":"2011-08-17T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/meet-call-of-duty-hank","changefreq":"weekly","video":[{"title":"S1:E37 - Meet Call of Duty Hank","description":"Call of Duty Hank has had a hand in many of the Call of Duty games and he is truly one bad man. Meet the man who by his own words is \"as hard as woodpecker lips\" and when asked how many pushups he can do will respond with \"all the pushups.\"","player_loc":"https://roosterteeth.com/embed/meet-call-of-duty-hank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":238,"publication_date":"2011-08-17T15:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-nicks-intervention","changefreq":"weekly","video":[{"title":"S1:E41 - Clip of the Week - Nick's Intervention","description":" This Clip of the Week celebrates our three year anniversary by revisiting an old Quote of the Week and reimagined into what you see before you.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-nicks-intervention","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":203,"publication_date":"2011-08-17T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/welcome-to-the-cockpit","changefreq":"weekly","video":[{"title":"S1:E36 - Welcome to the Cockpit","description":"Austin, TX is full of game developers, but not all of them wear boxing gloves, capes, and chicken masks. Welcome to the Cockpit!","player_loc":"https://roosterteeth.com/embed/welcome-to-the-cockpit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":285,"publication_date":"2011-08-17T15:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-nick-the-destroyer","changefreq":"weekly","video":[{"title":"S1:E40 - Clip of the Week - Nick the Destroyer","description":" When everything was breaking, people were out sick, and only two people were left in the office, Craig knew who to blame.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-nick-the-destroyer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":89,"publication_date":"2011-08-17T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-need-more-firepower","changefreq":"weekly","video":[{"title":"S1:E39 - Clip of the Week - Need More Firepower?","description":" Jose's constant pursuit of Ben has finally worn Ben down. The only way he can survive now is if he gets some help.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-need-more-firepower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":98,"publication_date":"2011-08-17T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-tank-returns","changefreq":"weekly","video":[{"title":"S1:E38 - Clip of the Week - The Tank Returns","description":"The Tank does not allow breaks. None are safe on his path of destruction through the laziness of the office!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-tank-returns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":192,"publication_date":"2011-08-17T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-amazing-mustache-interview","changefreq":"weekly","video":[{"title":"S1:E35 - The Amazing Mustache Interview","description":"Sure Craig and Tom were at this event for yet another Tony Hawk game but they found a bigger story, a story within a story: this man's mustache.","player_loc":"https://roosterteeth.com/embed/the-amazing-mustache-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":159,"publication_date":"2011-08-17T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/austins-best-game-store","changefreq":"weekly","video":[{"title":"S1:E34 - Austin's Best Game Store","description":"You may have to do a little digging, you may have to cross the state, but if you persevere you will find great game stores like Game Over in Austin, TX.","player_loc":"https://roosterteeth.com/embed/austins-best-game-store","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":407,"publication_date":"2011-08-17T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-golden-gameboy","changefreq":"weekly","video":[{"title":"S1:E37 - Clip of the Week - Golden Gameboy","description":"A few things about this Clip:\r\n1) Jose is gaining more super powers every day.\r\n2) Why Nick is eating where he's eating is a mystery to me.\r\n3) If you're mad, email Ben@ScrewAttack.com","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-golden-gameboy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":103,"publication_date":"2011-08-17T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-tiddy-bears","changefreq":"weekly","video":[{"title":"S1:E36 - Clip of the Week - Tiddy Bears","description":" Infomercials sell the worst stuff. But we don't! Buy the ScrewBox today! Before it's too late!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-tiddy-bears","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":124,"publication_date":"2011-08-17T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2007-e3-la-montage-part-2","changefreq":"weekly","video":[{"title":"S1:E33 - 2007 E3 LA Montage Part 2","description":"A lot of things happened on that trip to LA in 2007, things that make Amanda McKay make faces like this.","player_loc":"https://roosterteeth.com/embed/2007-e3-la-montage-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":112,"publication_date":"2011-08-17T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-mustache-challenge-round-3-wii-boxing","changefreq":"weekly","video":[{"title":"S1:E32 - The Mustache Challenge Round 3: Wii Boxing","description":"Tom pulled level in Wii Tennis so it's all coming down to the final round of The Mustache Challenge: Wii Boxing. Which man can waggle a wiimote harder? Which man dons the terrible mustache?","player_loc":"https://roosterteeth.com/embed/the-mustache-challenge-round-3-wii-boxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":110,"publication_date":"2011-08-17T14:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-noob-dudes","changefreq":"weekly","video":[{"title":"S1:E35 - Clip of the Week - Noob Dudes","description":" This is why you can't trust kids from the 90s with technology of today.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-noob-dudes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":140,"publication_date":"2011-08-17T14:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-screwattack-mario-kart","changefreq":"weekly","video":[{"title":"S1:E34 - Clip of the Week - ScrewAttack Mario Kart","description":" Right after the Iron Man of Gaming 2008, our break got crashed by some unexpected faces.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-screwattack-mario-kart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":83,"publication_date":"2011-08-17T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-mustache-challenge-round-2-wii-tennis","changefreq":"weekly","video":[{"title":"S1:E31 - The Mustache Challenge Round 2: Wii Tennis","description":"Craig won in round one but can he channel is inner McEnroe and take a commanding lead in round two of The Mustache Challenge?","player_loc":"https://roosterteeth.com/embed/the-mustache-challenge-round-2-wii-tennis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-17T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-gotta-kill-em-all","changefreq":"weekly","video":[{"title":"S1:E33 - Clip of the Week - Gotta Kill 'em All","description":"We all know Jose loves Call of Duty, and he loves Pokemon. What better way to combine them than to create this serenade. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-gotta-kill-em-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":99,"publication_date":"2011-08-17T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-mustache-challenge-round-1-wii-bowling","changefreq":"weekly","video":[{"title":"S1:E30 - The Mustache Challenge Round 1: Wii Bowling","description":"The first time facial hair was on the line in a ScrewAttack challenege, Craig and Tom face off first in Wii Bowling to see who has to do something terrible to their face.","player_loc":"https://roosterteeth.com/embed/the-mustache-challenge-round-1-wii-bowling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":136,"publication_date":"2011-08-17T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-metal-gear-ben-origins-2","changefreq":"weekly","video":[{"title":"S1:E32 - Clip of the Week - Metal Gear Ben: Origins 2","description":" The Iron Man of Gaming approaches, but what good is a game tournament without games? Metal Gear Ben is on the job!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-metal-gear-ben-origins-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":144,"publication_date":"2011-08-17T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-one-question-man","changefreq":"weekly","video":[{"title":"S1:E29 - The One Question Man","description":"The One Question Man will ask you once, and only once.","player_loc":"https://roosterteeth.com/embed/the-one-question-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":83,"publication_date":"2011-08-17T14:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-funcoland-again","changefreq":"weekly","video":[{"title":"S1:E31 - Clip of the Week - Funcoland Again","description":" We make a lot of original stuff every day. How much? Well, allow us to demonstrate.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-funcoland-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":90,"publication_date":"2011-08-17T14:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-illegal-downloading","changefreq":"weekly","video":[{"title":"S1:E30 - Clip of the Week - Illegal Downloading","description":"Piracy is a problem, as it is theft. And there are some things you just don't steal. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-illegal-downloading","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":172,"publication_date":"2011-08-17T14:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-jump-in","changefreq":"weekly","video":[{"title":"S1:E29 - Clip of the Week - Jump In","description":"When comes to war in the office, one man has a clear advantage over the others from all of his FPS playing experience. Sometimes for the worse. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-jump-in","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":262,"publication_date":"2011-08-17T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2007-e3-la-montage","changefreq":"weekly","video":[{"title":"S1:E28 - 2007 E3 LA Montage","description":"While ScrewAttack was in LA for E3 in 2007 the whole trip was documented. This is the true story of what happened for that one week in June.","player_loc":"https://roosterteeth.com/embed/2007-e3-la-montage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":85,"publication_date":"2011-08-17T13:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-virus-attack","changefreq":"weekly","video":[{"title":"S1:E28 - Clip of the Week - Virus Attack","description":" Ben's not feeling to well, and Jose does have an infectious personality.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-virus-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":104,"publication_date":"2011-08-17T13:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-adam-sessler-interview","changefreq":"weekly","video":[{"title":"S1:E27 - The Adam Sessler Interview","description":"Look who Craig and Tom found at a Call of Duty 4 event, it's Adam Sessler! Isn't this the happiest video thumbnail ever?","player_loc":"https://roosterteeth.com/embed/the-adam-sessler-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":677,"publication_date":"2011-08-17T13:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-sega-fanboys","changefreq":"weekly","video":[{"title":"S1:E27 - Clip of the Week - Sega Fanboys","description":" They call that smack talk? The Nintendo/Sega War would have been much better with the colorful gamers of today!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-sega-fanboys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":87,"publication_date":"2011-08-17T13:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-purple-stuff","changefreq":"weekly","video":[{"title":"S1:E26 - Clip of the Week - Purple Stuff","description":" Jose's source of hydration is also his source of FPS POWER!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-purple-stuff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":103,"publication_date":"2011-08-17T13:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-screwattack-for-president","changefreq":"weekly","video":[{"title":"S1:E25 - Clip of the Week - ScrewAttack for President","description":"Everybody at ScrewAttack is a candidate for presidency. Listen to their platforms, and cast your vote! ...or just enjoy the video.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-screwattack-for-president","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":193,"publication_date":"2011-08-17T13:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-gametap-again","changefreq":"weekly","video":[{"title":"S1:E24 - Clip of the Week - GameTap Again","description":"After mouthing off to Jose, Ben gets caught and... prepared. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-gametap-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":88,"publication_date":"2011-08-17T13:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-japanese-weirdness","changefreq":"weekly","video":[{"title":"S1:E23 - Clip of the Week - Japanese Weirdness","description":" In an attempt to better understand their history and culture, Nick takes a dive into Japanese games. He was not prepared.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-japanese-weirdness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":179,"publication_date":"2011-08-17T13:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-18","changefreq":"weekly","video":[{"title":"2014:E18 - Borderlands The Pre-Sequel - Gaige Chest Easter Egg","description":"Jeremy and Kdin show you how to relive Borderlands 2 and cover your screen with one of Gaige's wicked effects.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56e41561-ddb5-4690-b3e8-b534a8493e1e/sm/ep9896.jpg","duration":92,"publication_date":"2014-10-29T20:33:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-47","changefreq":"weekly","video":[{"title":"2014:E53 - Minecraft - Natural Selection","description":"Lindsay, Kdin, and Matt follow their animal instincts in this week's Things to do in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fd199f2-0a7a-43f2-9c9c-85bb39680637/sm/ep9895.jpg","duration":128,"publication_date":"2014-10-29T18:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-223","changefreq":"weekly","video":[{"title":"2014:E271 - Let's Watch - Slender: The Arrival","description":"Geoff faces off against the Slender Man while the rest of AH laughs at his misery.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-223","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26337ca8-6ae0-438a-a3b4-552224d9af62/sm/ep9894.jpg","duration":2537,"publication_date":"2014-10-29T18:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-220","changefreq":"weekly","video":[{"title":"2014:E270 - Call of Duty 2","description":"AH keeps up their Call of Duty week by heading back to Call of Duty 2!\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-220","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/358606f4-f706-45ee-aab2-c4bbe78505b5/sm/ep9893.jpg","duration":2288,"publication_date":"2014-10-29T18:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-the-ship","changefreq":"weekly","video":[{"title":"IA:E12 - The Ship","description":"Jeremy and Matt board The Ship and snag two murderous Imaginary Achievements.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-the-ship","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e3dd036-9125-4f71-b8c7-bafd7877f72a/sm/ep9892.jpg","duration":175,"publication_date":"2014-10-29T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-33","changefreq":"weekly","video":[{"title":"2014:E43 - Achievement HUNT #53","description":"This week's HUNT brings you Geoff vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65a846a4-b780-4ab7-b275-7de9f8acf5f5/sm/ep9891.jpg","duration":107,"publication_date":"2014-10-29T16:16:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-216","changefreq":"weekly","video":[{"title":"2014:E269 - Let's Build in Minecraft - Halloween Spooktacular Part 1","description":"Matt, Kdin, Lindsay and a very angry Jeremy build the first part of their massive Halloween map.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-216","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83d855c4-b256-4e9f-953c-4f4a797cc4d9/sm/ep9889.jpg","duration":3134,"publication_date":"2014-10-28T20:57:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-213","changefreq":"weekly","video":[{"title":"2014:E268 - Call of Duty: Classic","description":"AH prepares for the release of Call of Duty: Advanced Warfare with a week full of Call of Duty! First up, Call of Duty: Classic","player_loc":"https://roosterteeth.com/embed/lets-play-2014-213","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64ff867b-bcce-40dd-b992-c0fb71208a0f/sm/ep9888.jpg","duration":2218,"publication_date":"2014-10-28T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-33","changefreq":"weekly","video":[{"title":"2014:E42 - Variety Pack #8","description":"Franco brings you the eight Five Facts Variety Pack and covers FIFA 14, Bayonetta, Left 4 Dead, Watch Dogs, and Avatar the Last Airbender: The Burning Earth.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38affc1f-c1b6-4cea-8c5f-77d38fe9a7a8/sm/ep9887.jpg","duration":205,"publication_date":"2014-10-28T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-33","changefreq":"weekly","video":[{"title":"2014:E43 - Destiny - GO! #53","description":"This week, Geoff realizes that the guys just want to play Destiny, so he lets them! The challenge is to be the first to find a Legendary Engram. No gift packages. No buying. Finding. Will they play multiplayer Will they go to the moon Watch to find out!","player_loc":"https://roosterteeth.com/embed/go-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96cd90e7-46f6-451c-ba8e-5744dcb60651/sm/ep9886.jpg","duration":923,"publication_date":"2014-10-28T19:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-17","changefreq":"weekly","video":[{"title":"2014:E17 - Borderlands The Pre-Sequel - 2001 A Space Odyssey Easter Egg","description":"Jeremy and Kdin are still in Borderlands The Pre-Sequel showing you the 2001: A Space Odyssey Easter Egg found in Stanton's Liver!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/caf9e89b-0d05-4f52-aec2-bcedc60204a1/sm/ep9885.jpg","duration":138,"publication_date":"2014-10-28T19:11:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sunset-overdrive-i-should-get-paid-for-this-guide","changefreq":"weekly","video":[{"title":"2014:E2459 - Sunset Overdrive - I Should Get Paid for This Guide","description":"Ray and Ryan show you how to get the \"I Should Get Paid for This\" achievement in Sunset Overdrive for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sunset-overdrive-i-should-get-paid-for-this-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7285e2e-2e2b-49c4-9491-8d71aa3db777/sm/ep9884.jpg","duration":254,"publication_date":"2014-10-28T19:04:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-205","changefreq":"weekly","video":[{"title":"2014:E267 - GTA V: Halloween Havoc","description":"AH starts their trick or treating early this year with some GTA Halloween games! The tricks come out on top.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9fb950d-daa6-4d6f-b571-2cc5f68088ef/sm/ep9883.jpg","duration":3156,"publication_date":"2014-10-27T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-16","changefreq":"weekly","video":[{"title":"2014:E16 - Borderlands The Pre-Sequel - Super Mario Bros Easter Egg","description":"Kdin and Jeremy are back in Borderlands The Pre-Sequel showing off the Super Mario Bros Easter Egg located in Tycho's Ribs!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19917955-a7ed-4b2e-98bb-cfb10d39ca1f/sm/ep9882.jpg","duration":175,"publication_date":"2014-10-27T17:01:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-15","changefreq":"weekly","video":[{"title":"2014:E15 - Borderlands The Pre-Sequel - Buzz Lightyear Easter Egg","description":"Jeremy and Kdin show you the Buzz Lightyear Easter Egg located in Triton Flats in Borderlands The Pre-Sequel!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27cf2c2e-81fe-4855-8f5f-b64603293bf9/sm/ep9881.jpg","duration":97,"publication_date":"2014-10-27T17:01:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-haunted-halloween-land","changefreq":"weekly","video":[{"title":"2014:E11 - Haunted Halloween Land","description":"Matt and Jeremy, with the occassional spooky interuptions from Joel and Jack, check out one of FyreUK's scariest maps. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-haunted-halloween-land","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d9c7a7f-27bc-4452-bbd8-c927564a0c13/sm/ep9880.jpg","duration":198,"publication_date":"2014-10-27T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-33","changefreq":"weekly","video":[{"title":"2014:E43 - Week #237","description":"The AH crew are winding down from the craziness of the Extra-Life stream but is still bringing you this week's Achievement Hunter News! Community Video of the week: http://bit.ly/1DmrwZl\r\nVideo of the week: http://bit.ly/1w9pWtL","player_loc":"https://roosterteeth.com/embed/ahwu-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23c41baf-96a3-4d89-aa67-02124d04398d/sm/ep9878.jpg","duration":507,"publication_date":"2014-10-27T16:59:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-games-to-play-on-halloween-of-2014","changefreq":"weekly","video":[{"title":"2014:E25 - Top 5 Games To Play On Halloween Of 2014","description":"Ray, Matt, and Kdin take a look at some games you should totally check out and play this Friday on Halloween!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-games-to-play-on-halloween-of-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67b7a19a-5b22-41c1-886e-ae2f9e4b8ed6/sm/ep9879.jpg","duration":114,"publication_date":"2014-10-27T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-187","changefreq":"weekly","video":[{"title":"2014:E266 - Minecraft - Episode 126 - Halloween Spooktacular Part 1","description":"Geoff leads the rest of the crew through a spook land specially created by Team Building Exercise!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-187","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94b50169-bf07-46ea-9fe7-46c8d64ecdf7/sm/ep9867.jpg","duration":2751,"publication_date":"2014-10-24T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-40","changefreq":"weekly","video":[{"title":"2014:E52 - GTA V - Treadless","description":"The AH gang decide \"tires are for losers\" and hit the streets without them.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53681460-27dd-479c-8da8-c103c74d247e/sm/ep9875.jpg","duration":1387,"publication_date":"2014-10-24T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-borderlands-the-pre-sequel-secret-boss-nel","changefreq":"weekly","video":[{"title":"2014:E2458 - Borderlands The Pre-Sequel - Secret Boss Nel","description":"Kdin and Jeremy show you how to enrage Nel and initiate a secret boss fight in Borderlands The Pre-Sequel!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-borderlands-the-pre-sequel-secret-boss-nel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa087a6e-e5aa-4b7b-8475-350725c33037/sm/ep9873.jpg","duration":195,"publication_date":"2014-10-24T19:00:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-borderlands-the-pre-sequel-secret-boss-iwajira","changefreq":"weekly","video":[{"title":"2014:E2457 - Borderlands The Pre-Sequel - Secret Boss Iwajira","description":"Jeremy and Kdin show you how to find the secret boss \"Iwajira\" hidden in Serenity's Waste in Borderlands The Pre-Sequel.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-borderlands-the-pre-sequel-secret-boss-iwajira","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b944d46-359d-4028-87c2-f1850d92f893/sm/ep9872.jpg","duration":124,"publication_date":"2014-10-24T18:59:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-14","changefreq":"weekly","video":[{"title":"2014:E14 - Borderlands The Pre-Sequel - Not Pink, Light Red! Easter Egg","description":"Kdin and Jeremy show you the hidden \"Red Vs Blue\" easter egg in Borderlands The Pre-Sequel! Remember folks, it's not pink, it's Lightish Red!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a58ea53-e483-48e3-ad4a-fc3801fd8685/sm/ep9871.jpg","duration":67,"publication_date":"2014-10-24T18:57:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-31","changefreq":"weekly","video":[{"title":"2014:E43 - Volume 214","description":"In Fails of the Weak #214, Geoff and Jack bring you fails in Assassin's Creed IV: Black Flag, Battlefield 4, Borderlands: The Pre-Sequel, FIFA 15, Middle-earth: Shadow of Mordor, and Saints Row IV.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1003bfa-bbb5-45ae-aea6-6d47a2c9f23b/sm/ep9870.jpg","duration":154,"publication_date":"2014-10-24T17:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-31","changefreq":"weekly","video":[{"title":"2014:E43 - Episode 86: Lindsay vs. Geoff","description":"Geoff takes on Lindsay in this week's VS. Can the student take down the master and keep her belt","player_loc":"https://roosterteeth.com/embed/vs-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a3fc772-7b2a-4302-912c-7c90649de4a9/sm/ep9866.jpg","duration":423,"publication_date":"2014-10-23T23:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-183","changefreq":"weekly","video":[{"title":"2014:E265 - Square Heroes","description":"The AH gang try out the upcoming indie game Square Heroes and do a little shooting and bashing. Want this game available on Steam Go rate it up here: http://bit.ly/1uMTQQ7 Learn more about Square Heroes here: http://bit.ly/1rsbDKn","player_loc":"https://roosterteeth.com/embed/lets-play-2014-183","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4c7f5ad-6e4d-45dc-a9d2-534e73457bfd/sm/ep9865.jpg","duration":1594,"publication_date":"2014-10-23T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-182","changefreq":"weekly","video":[{"title":"2014:E264 - Nidhogg Tournament","description":"Achievement Hunter holds another 8-man office tournament to decide who is the king of Nidhogg. Who will reach the FINAL SCREEN!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-182","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d8899f5-a222-4c9d-97d9-537047ba4d92/sm/ep9864.jpg","duration":976,"publication_date":"2014-10-23T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-space-engineers","changefreq":"weekly","video":[{"title":"2014:E38 - Space Engineers","description":"Joel & Adam show you how to argue the merits of the 'Kessel Run', all while in zero G. Go check out Space Engineers here: http://bit.ly/1xeh2ZQ","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-space-engineers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7829e20-ea33-4b49-b598-1a9ae04d7646/sm/ep9862.jpg","duration":732,"publication_date":"2014-10-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-2","changefreq":"weekly","video":[{"title":"2014:E26 - Rooster Teeth Inter-Office SMITE Tournament","description":"It's Team Lads Vs Team Leftovers, who will break first in a match between the fan favorites and the underdogs! Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1125537e-280e-42d1-9023-7c501b30d9d1/sm/ep9861.jpg","duration":1050,"publication_date":"2014-10-23T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sunset-overdrive-the-floor-is-lava-guide","changefreq":"weekly","video":[{"title":"2014:E2456 - Sunset Overdrive - The Floor Is Lava Guide","description":"Ray and Ryan show you how to get the \"The Floor is Lava\" achievement in Sunset Overdrive for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sunset-overdrive-the-floor-is-lava-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f5f44b6-ecaa-4a16-8e34-02b2ce445e51/sm/ep9860.jpg","duration":105,"publication_date":"2014-10-23T14:54:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-172","changefreq":"weekly","video":[{"title":"2014:E263 - Let's Watch - Sunset Overdrive","description":"Michael sits down to play Sunset Overdrive while the rest of the crew watch in awe as he takes on the energy drink fueled Apocalypse!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80f7ce35-28e6-4792-85f2-2702e2955d83/sm/ep9856.jpg","duration":2034,"publication_date":"2014-10-22T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-26","changefreq":"weekly","video":[{"title":"2014:E42 - Achievement HUNT #52","description":"This week's HUNT brings you Ryan vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96e2b9a2-701a-40ed-8117-cf0d47a5beec/sm/ep9859.jpg","duration":853,"publication_date":"2014-10-22T20:29:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-go-long","changefreq":"weekly","video":[{"title":"IA:E11 - Go Long","description":"Jeremy drags Joel back into Hotline Miami for this community-submitted achievement.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-go-long","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28ccb38c-7c07-487c-8685-d15ae37be5d7/sm/ep9858.jpg","duration":211,"publication_date":"2014-10-22T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-35","changefreq":"weekly","video":[{"title":"2014:E51 - Minecraft - Perfection","description":"Geoff, Ryan and Gavin put the pieces into the right slot and make the right selections. This week they're playing Perfection in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3faf4198-b916-429d-9668-4b28e6d8db07/sm/ep9857.jpg","duration":874,"publication_date":"2014-10-22T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-170","changefreq":"weekly","video":[{"title":"2014:E262 - 3D Ultra MiniGolf Adventures 2 Part 3","description":"The Minigolf crew is back and badder than ever! ...literally, they just suck.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecb1e9cc-62c1-43ed-aab9-cece9cabcd4d/sm/ep9854.jpg","duration":4080,"publication_date":"2014-10-22T13:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-18","changefreq":"weekly","video":[{"title":"2014:E36 - Trials Files #124","description":"Geoff and Ryan bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67b528f3-cb7c-4872-b129-0beb33f893c9/sm/ep9853.jpg","duration":67,"publication_date":"2014-10-21T19:30:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-165","changefreq":"weekly","video":[{"title":"2014:E261 - Cloudberry Kingdom Part 9","description":"The AH Crew heads back to Cloudberry Kingdom after a long vacation from it","player_loc":"https://roosterteeth.com/embed/lets-play-2014-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/326dad47-1174-44fd-ac4c-c53e05748223/sm/ep9852.jpg","duration":1823,"publication_date":"2014-10-21T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-163","changefreq":"weekly","video":[{"title":"2014:E260 - Let's Test - Bumper Boats and Invisible Creepers","description":"The build team take a break from building to test out some games for the main crew.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59527a48-c517-4005-9be2-3bf5bbd4eb89/sm/ep9851.jpg","duration":480,"publication_date":"2014-10-21T19:14:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-26","changefreq":"weekly","video":[{"title":"2014:E41 - Ryse: Son of Rome","description":"Ryan and Ray bring you five facts over Ryse: Son of Rome.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63706d33-4dd4-4a3d-a07e-f51c885dba0e/sm/ep9850.jpg","duration":282,"publication_date":"2014-10-21T18:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-28","changefreq":"weekly","video":[{"title":"2014:E42 - Anniversary Edition - GO! #52","description":"For the one year anniversary of Go, Geoff throws a curve ball to the gang! This week, two stickers are up for grabs: one for redoing Go episode five and one for recreating episode two (get it). Tune in to find out who gets the stickers!","player_loc":"https://roosterteeth.com/embed/go-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41088255-5c60-452e-b2b6-9012928d2029/sm/ep9849.jpg","duration":1151,"publication_date":"2014-10-21T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-mario-circuit-wii","changefreq":"weekly","video":[{"title":"2014:E10 - Mario Circuit Wii","description":"Matt and Ray grab a Wii Wheel and race through Dr Boomerang's Mario Circuit recreation in this weeks MegaCraft! If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-mario-circuit-wii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c0c8038-1f6f-43ed-a337-dcf0f027934c/sm/ep9848.jpg","duration":172,"publication_date":"2014-10-20T20:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-horror-games","changefreq":"weekly","video":[{"title":"2014:E24 - Top 10 Horror Games","description":"Kdin, Matt, and Jeremy brave the terrors many terrors of a list that is #2Spooky","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-horror-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/335d2730-0007-43e3-b8af-18677928823a/sm/ep9847.jpg","duration":195,"publication_date":"2014-10-20T20:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-26","changefreq":"weekly","video":[{"title":"2014:E42 - Week #236","description":"The AH Crew is back bringing you this week's Achievement Hunter News!\r\nCommunity Video of the week: http://bit.ly/1FsF3CA\r\nVideo of the week: http://bit.ly/11ZfKIT and http://bit.ly/1ro0gmA","player_loc":"https://roosterteeth.com/embed/ahwu-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd4fdec7-2ccc-449e-bb73-2c424502a86e/sm/ep9846.jpg","duration":523,"publication_date":"2014-10-20T18:52:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-154","changefreq":"weekly","video":[{"title":"2014:E259 - GTA V - Fly 'n' Chat Mystery Play","description":"Geoff, Ryan, Ray, Michael and Gavin have a little chat and do... something in GTA. Try and figure out their objective in this week's Mystery Play! Hint: It's not that hard to figure out.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b5f1f43-3df3-471b-bb91-8faedaacd16c/sm/ep9845.jpg","duration":2794,"publication_date":"2014-10-20T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-28","changefreq":"weekly","video":[{"title":"2014:E50 - GTA V - Launch Mower","description":"In this week's Things To Do in GTA V, AH launches some lawn mowers. Minus the lawn mowers.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cefb29a-ee6d-4826-a811-403e50a3822b/sm/ep9840.jpg","duration":816,"publication_date":"2014-10-17T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-143","changefreq":"weekly","video":[{"title":"2014:E258 - Minecraft - Episode 125 - Battleship","description":"It's Gents Vs Lads in the most exciting version of Battleship ever made!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d60d3d6-05b3-4636-bb73-6b4c493c1ed0/sm/ep9839.jpg","duration":3815,"publication_date":"2014-10-17T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-24","changefreq":"weekly","video":[{"title":"2014:E42 - Volume 213","description":"In Fails of the Weak #213, Geoff and Jack bring you fails in Alien: Isolation, Assassin's Creed II, Battlefield 4, Destiny, FIFA 15, and Forza Horizon 2.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9da37e7f-5e1b-4acd-bf11-1d70fb4e4914/sm/ep9838.jpg","duration":172,"publication_date":"2014-10-17T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-23","changefreq":"weekly","video":[{"title":"2014:E42 - Episode 85: Ray vs. Lindsay","description":"This week on VS, Lindsay and Ray go nautical all over each other's asses.","player_loc":"https://roosterteeth.com/embed/vs-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2b64c91-e0cd-422b-8cb3-d0267f860689/sm/ep9837.jpg","duration":347,"publication_date":"2014-10-16T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-140","changefreq":"weekly","video":[{"title":"2014:E257 - Destiny: Raid Attempt 2 Part 2","description":"The AH crew continue their run through the Vault of Glass... but will they be able to finally finish the raid, or is an attempt #3 in the future.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd7559c2-76e8-465e-8816-7dca291be92f/sm/ep9836.jpg","duration":2681,"publication_date":"2014-10-16T21:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-vs-the-world-smite","changefreq":"weekly","video":[{"title":"2014:E2455 - Achievement Hunter Vs The World - SMITE","description":"The AH crew have become so good at fighting amongst themselves they've decided to take on THE WORLD! Test yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-vs-the-world-smite","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f68d9dd2-47c7-4147-8e60-b06733c89382/sm/ep9835.jpg","duration":1000,"publication_date":"2014-10-16T20:16:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-state-of-decay","changefreq":"weekly","video":[{"title":"2014:E37 - State of Decay","description":"If you're really into long introductions that seemingly go on forever and ever then you'll love this video's description of State of Decay's DLC Breakdown. Then you'll go on to love the description of State of Decay's DLC Lifeline, which this video is actually suppose to be about. In any case, we're sure this description has gone on too long.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-state-of-decay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37d7c2aa-6dc4-4db4-8d6d-4498c8237734/sm/ep9834.jpg","duration":1406,"publication_date":"2014-10-16T17:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-19","changefreq":"weekly","video":[{"title":"2014:E41 - Achievement HUNT #51","description":"This week's HUNT brings you Jack vs. Adam.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5b81a35-36d6-4d09-8dc8-00ec5d5e4fe4/sm/ep9832.jpg","duration":634,"publication_date":"2014-10-15T22:19:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-135","changefreq":"weekly","video":[{"title":"2014:E256 - Adventure Time: Explore the Dungeon Because I Don't Know!","description":"Michael, Jack, Ray, and Ryan explore a world made of candy and a dungeon full of danger!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fe4d410-ea33-445f-a9ab-52e39a5543f3/sm/ep9831.jpg","duration":2498,"publication_date":"2014-10-15T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-borderlands-the-pre-sequel","changefreq":"weekly","video":[{"title":"IA:E10 - Borderlands: The Pre-Sequel","description":"Jeremy and Ray head into the Borderlands to stomp some squids and cross some beams.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-borderlands-the-pre-sequel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf48d142-ebba-42f8-8fe7-8bc718937166/sm/ep9830.jpg","duration":217,"publication_date":"2014-10-15T19:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-26","changefreq":"weekly","video":[{"title":"2014:E49 - Minecraft - Frogger","description":"Geoff and Ryan visit Matt's Minecraft world to play Frogger.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69b9fd09-9fa1-4078-b43e-a1c9e5eeaaf1/sm/ep9828.jpg","duration":132,"publication_date":"2014-10-15T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-8","changefreq":"weekly","video":[{"title":"2014:E13 - Destiny - Loot Cave Easter Egg","description":"Ray and Geoff show you where to find the Loot Cave Easter Egg in Destiny for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fc66405-75d4-4340-9aa3-73f2430c18cd/sm/ep9827.jpg","duration":106,"publication_date":"2014-10-14T21:33:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-126","changefreq":"weekly","video":[{"title":"2014:E255 - GTA V - The Prison Job: Outtakes","description":"Watch some alternate takes and outtakes from Let's Play - The Prison Job. Watch the Let's Play in it's entirety here: http://bit.ly/1rtkb3b","player_loc":"https://roosterteeth.com/embed/lets-play-2014-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/654b55ad-418c-49dc-96dd-736e3ec143aa/sm/ep9826.jpg","duration":312,"publication_date":"2014-10-14T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-123","changefreq":"weekly","video":[{"title":"2014:E254 - Sniper Elite 3","description":"The AH Crew take on Sniper Elite 3. There are no elite snipers among them.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68b1e695-bc2c-4d10-89a1-a1e97c7c54ad/sm/ep9825.jpg","duration":1967,"publication_date":"2014-10-14T19:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-121","changefreq":"weekly","video":[{"title":"2014:E253 - Let's Build in Minecraft - Perfection Part 2","description":"Jeremy, Matt, Kdin, and Lindsay are back and finishing up their Perfection build.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cf7ca4e-8a9d-473b-9281-3e8f5a0d33f7/sm/ep9824.jpg","duration":3851,"publication_date":"2014-10-14T19:12:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-118","changefreq":"weekly","video":[{"title":"2014:E252 - Borderlands: The Pre-Sequel","description":"No one in AH wants to do a Borderlands Let's Play Well Team Building Exercise, Kdin, Lindsay, Matt, and Jeremy jump into the Pre-Sequel and see what it's all about.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42cfc1a0-2110-4560-a476-9e5a2b6a0af7/sm/ep9822.jpg","duration":2552,"publication_date":"2014-10-14T19:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-11","changefreq":"weekly","video":[{"title":"2014:E35 - Trials Files #123","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3378f3e8-c3ef-4df9-890a-d0fd6257d9c0/sm/ep9821.jpg","duration":82,"publication_date":"2014-10-14T19:02:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-18","changefreq":"weekly","video":[{"title":"2014:E40 - Angry Birds","description":"Jack and Geoff bring you five facts over Angry Birds","player_loc":"https://roosterteeth.com/embed/five-facts-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cde8bf5-2712-4f13-afbb-ade6c41a8460/sm/ep9820.jpg","duration":211,"publication_date":"2014-10-14T18:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-borderlands-the-pre-sequel-360-no-scope-guide","changefreq":"weekly","video":[{"title":"2014:E2454 - Borderlands: The Pre-Sequel - 360 No Scope Guide","description":"Ray and Michael show you how to get the \"360 No Scope\" achievement in Borderlands: The Pre-Sequel for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-borderlands-the-pre-sequel-360-no-scope-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2650a6e1-2861-4738-b8aa-aa5f7b44ae82/sm/ep9819.jpg","duration":72,"publication_date":"2014-10-14T17:04:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-20","changefreq":"weekly","video":[{"title":"2014:E41 - Highest Score Edition - GO! #51","description":"It's the 51st episode of GO! This week, the crew has 10 minutes to get the highest score they can. Who will win Who will give up immediately Tune in to find out!","player_loc":"https://roosterteeth.com/embed/go-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53859462-fccd-4b12-9d3f-da4f0895e594/sm/ep9818.jpg","duration":751,"publication_date":"2014-10-14T17:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-18","changefreq":"weekly","video":[{"title":"2014:E41 - Week #235","description":"The AH Crew is back bringing you this week's Achievement Hunter News!\r\nCommunity Video of the week: http://bit.ly/1D7QHRl\r\nVideo of the week: http://bit.ly/1vogIuk","player_loc":"https://roosterteeth.com/embed/ahwu-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c058c15-0d0d-47b6-ad2d-89e411b987c2/sm/ep9817.jpg","duration":706,"publication_date":"2014-10-13T18:39:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-110","changefreq":"weekly","video":[{"title":"2014:E251 - GTA V - The Prison Job","description":"Join the AH Crew as they do a prison job in GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bbd3d86-c184-4ae3-85e5-c9e6b01868da/sm/ep9816.jpg","duration":2180,"publication_date":"2014-10-13T18:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-hanging-gardens","changefreq":"weekly","video":[{"title":"2014:E9 - Hanging Gardens","description":"Matt and Joel check out Onslaught Fei's mathematically perfect Hanging Gardens in this weeks MegaCraft. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-hanging-gardens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/027de9a2-fa66-4aef-b4be-3c50453042b4/sm/ep9815.jpg","duration":188,"publication_date":"2014-10-13T17:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-golden-age-of-arcade-games","changefreq":"weekly","video":[{"title":"2014:E23 - Top 10 Golden Age of Arcade Games","description":"Geoff, Ray, and Michael take a look at the Top 10 Golden Age of Arcade games! (The Golden Age of Arcades started in the 1970s and lasted until the mid 80's)","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-golden-age-of-arcade-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1de5004d-61e6-4809-ad6a-c905f5641ecf/sm/ep9813.jpg","duration":164,"publication_date":"2014-10-13T15:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-21","changefreq":"weekly","video":[{"title":"2014:E48 - GTA V - Skee Ball","description":"The AH crew relive their days at the arcade and play some skeeball in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a2c8faf-4665-448c-9dca-a4e0c67dcfb9/sm/ep9809.jpg","duration":752,"publication_date":"2014-10-10T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-95","changefreq":"weekly","video":[{"title":"2014:E250 - Minecraft - Episode 124 - On A Rail 2 Part 2","description":"When Gavin Free was a little baby,\nSitting on his papa's knee.\nHe picked up a bucket of lava,\nWith much excitement and glee.\nTripping he dropped his bucket and screamed,\n\"Lava's gonna be the death of me.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d3723e5-e611-4389-ad56-a54de830c82c/sm/ep9804.jpg","duration":2593,"publication_date":"2014-10-10T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-16","changefreq":"weekly","video":[{"title":"2014:E41 - Volume 212","description":"In Fails of the Weak #212, Geoff and Jack bring you fails in Assassin's Creed IV: Black Flag, Destiny, EA Sports UFC, FIFA 15, Grand Theft Auto V, Middle-earth: Shadow of Mordor, and Ryse: Son of Rome.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a68a389e-62ff-47e9-8211-be95483ae76b/sm/ep9805.jpg","duration":183,"publication_date":"2014-10-10T13:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-1","changefreq":"weekly","video":[{"title":"2014:E25 - Rooster Teeth Inter-Office SMITE Tournament","description":"Today begins the Rooster Teeth Inter-Office SMITE Tournament. In this video you will see who will advance past the first round into the Elite 8. Starting with our next episode, you will see complete SMITE matches where the best of the best face off for glorious prizes. Stay tuned next week for more SMITE!\r\n\r\nTest yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65c7b58c-51a8-4014-b409-7ba992d1d727/sm/ep9803.jpg","duration":467,"publication_date":"2014-10-09T21:00:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-87","changefreq":"weekly","video":[{"title":"2014:E249 - Destiny: Raid Attempt 2","description":"Ray, Jack, Geoff, Ryan, Gavin, and Michael return to the raid in Destiny with better gear and better skills. Will their second attempt be their last","player_loc":"https://roosterteeth.com/embed/lets-play-2014-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce9b25c1-49eb-410c-a0a0-7a853fc24d28/sm/ep9801.jpg","duration":4543,"publication_date":"2014-10-09T17:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-9","changefreq":"weekly","video":[{"title":"2014:E29 - Massive Cleavage VS Zombies","description":"This week on Rage Quit, Michael faces his greatest fear: boobies.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e94bf87-7345-44c2-9e1b-650c157f32bc/sm/ep9802.jpg","duration":399,"publication_date":"2014-10-09T17:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-oh-my-mod-no-more-room-in-hell","changefreq":"weekly","video":[{"title":"2014:E24 - Oh My Mod! - No More Room in Hell","description":"The AH crew explore the world of user created content for PC games in Oh My Mod! First up, No More Room in Hell!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-oh-my-mod-no-more-room-in-hell","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58a76582-0714-4c39-913d-f41345a7814b/sm/ep9800.jpg","duration":894,"publication_date":"2014-10-09T17:52:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-15","changefreq":"weekly","video":[{"title":"2014:E41 - Episode 84: Ray vs. Ryan","description":"This week on VS, The R and R connection is broken in battle. Which R will rise again","player_loc":"https://roosterteeth.com/embed/vs-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce65792b-ffa6-4de3-aac3-c22a1335e6c3/sm/ep9798.jpg","duration":577,"publication_date":"2014-10-09T16:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-alien-isolation","changefreq":"weekly","video":[{"title":"2014:E36 - Alien Isolation","description":"Joel & Adam take you on a journey to... AHHH! GET IT OFF! GET IT OFF! AH GOD!","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-alien-isolation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a53e128c-0e13-453e-aef8-db9ceca16640/sm/ep9795.jpg","duration":4255,"publication_date":"2014-10-09T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-11","changefreq":"weekly","video":[{"title":"2014:E40 - Achievement HUNT #50","description":"This week's HUNT brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eac0599-3c6c-483e-84aa-29209814c5b1/sm/ep9794.jpg","duration":658,"publication_date":"2014-10-09T00:40:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-78","changefreq":"weekly","video":[{"title":"2014:E248 - Crawl","description":"Geoff, Michael, Ryan, and Ray compete to become a true hero in Crawl!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c862ed01-cf4c-4cbe-8684-9b112fc20761/sm/ep9792.jpg","duration":1443,"publication_date":"2014-10-08T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-spyro-the-dragon","changefreq":"weekly","video":[{"title":"IA:E9 - Spyro The Dragon","description":"Jeremy and Matt load up the PS1 and snag three Imaginary Achievements in Spyro the Dragon. Or Spiro the Dargon.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-spyro-the-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36a96527-e4e9-4560-92f2-28e70341d9af/sm/ep9793.jpg","duration":316,"publication_date":"2014-10-08T17:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-16","changefreq":"weekly","video":[{"title":"2014:E47 - Minecraft - EnderDarts","description":"AH takes a trip to Matt's world for a rousing game of darts: now with an extreme twist.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/916b9b77-d714-4172-b71c-232110dd5dd4/sm/ep9791.jpg","duration":819,"publication_date":"2014-10-08T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-72","changefreq":"weekly","video":[{"title":"2014:E247 - Let's Build in Minecraft - Perfection Part 1","description":"In this week's Let's Build, Kdin, Lindsay, Matt, and Jeremy work on building Perfection. Can they complete it before it pops","player_loc":"https://roosterteeth.com/embed/lets-play-2014-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc9cbfa1-aca2-47d3-8891-f3b5d78f2517/sm/ep9789.jpg","duration":3153,"publication_date":"2014-10-07T21:46:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-70","changefreq":"weekly","video":[{"title":"2014:E246 - Gauntlet","description":"Geoff, Ryan, Michael, and Ray take a stab at Gauntlet.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e41cd8bd-c20e-44bc-b8e1-28395aa3dc77/sm/ep9787.jpg","duration":2510,"publication_date":"2014-10-07T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-11","changefreq":"weekly","video":[{"title":"2014:E40 - 5 Challenges - GO! #50","description":"In the 50th episode of GO!, everyone is old. Also, Geoff gives the guys 5 challenges, but doesn't tell them which one will earn them a sticker. Let the process of elimination commence!","player_loc":"https://roosterteeth.com/embed/go-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/839fad17-649c-45b1-bf3e-dcd6cf5e7b97/sm/ep9786.jpg","duration":799,"publication_date":"2014-10-07T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-6","changefreq":"weekly","video":[{"title":"2014:E34 - Trails Files #122","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f62a67d-df92-4271-9025-6dfb4f2224d3/sm/ep9785.jpg","duration":107,"publication_date":"2014-10-07T17:47:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-11","changefreq":"weekly","video":[{"title":"2014:E39 - Watch Dogs","description":"Jack and Ray bring you five facts over Watch Dogs.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2ef6343-314c-4606-8733-78534eab84b0/sm/ep9784.jpg","duration":220,"publication_date":"2014-10-07T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-65","changefreq":"weekly","video":[{"title":"2014:E245 - GTA V - Action News Teams Part 2: Alternate Take","description":"There seems to be some confusion as to who was at fault in the great Cargobob collision of 2014. Thus we present to you: Jack's view of the incident.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd993282-6029-46dd-a20f-f3a77d34a284/sm/ep9783.jpg","duration":60,"publication_date":"2014-10-07T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-62","changefreq":"weekly","video":[{"title":"2014:E244 - Middle-Earth: Shadow of Mordor Part 3","description":"Michael and Lindsay return to Mordor with even more amazing gameplay and the most accurate LOTR lore discussion on the web.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dccaea8-9bc9-4030-9d2f-7130d0dc4fd7/sm/ep9782.jpg","duration":2972,"publication_date":"2014-10-07T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-60","changefreq":"weekly","video":[{"title":"2014:E243 - GTA V - Action News Teams Part 2","description":"The Lads and Gents continue competing to see which Action News Team is the best in Let's Play - GTA V - Action News Teams Part 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1417b555-b241-40d9-a103-6d59983d6ffc/sm/ep9778.jpg","duration":2470,"publication_date":"2014-10-06T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-mario-party-2-western-land","changefreq":"weekly","video":[{"title":"2014:E8 - Mario Party 2 Western Land","description":"Matt and Lindsay bring MegaCraft back to the old west by checking out KingCuervo88's Mario Party 2 Western World remake! If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-mario-party-2-western-land","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46903772-f7dc-472a-bd9a-102f9bbd5db0/sm/ep9781.jpg","duration":179,"publication_date":"2014-10-06T21:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-11","changefreq":"weekly","video":[{"title":"2014:E40 - Week #234","description":"The AH Crew is back bringing you this week's Achievement Hunter News!\r\nCommunity Video of the week: http://bit.ly/1t0e9yk\r\nVideo of the week: http://bit.ly/1q5Oe0L and http://bit.ly/1t0e6CH","player_loc":"https://roosterteeth.com/embed/ahwu-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067586ea-6c7a-459b-8400-89a819177c09/sm/ep9780.jpg","duration":612,"publication_date":"2014-10-06T19:53:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-gavins-top-10-favorite-video-games","changefreq":"weekly","video":[{"title":"2014:E22 - Gavin's Top 10 Favorite Video Games","description":"Michael, Ray, and Lindsay explore the mind of Mr. Free to find out his Top 10 Favorite Video Games!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-gavins-top-10-favorite-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1d6bf04-8cb9-4d0c-912f-87f6091734e8/sm/ep9779.jpg","duration":197,"publication_date":"2014-10-06T19:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-9","changefreq":"weekly","video":[{"title":"2014:E46 - GTAV - Some Form of Sport","description":"AH takes time out of their busy schedule to enjoy America's favorite pastime.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/465e19a4-e7f8-4d46-87a0-87142dfbf7ce/sm/ep9774.jpg","duration":1271,"publication_date":"2014-10-03T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-55","changefreq":"weekly","video":[{"title":"2014:E242 - Middle-Earth: Shadow of Mordor Part 2","description":"Michael is back playing Middle-Earth: Shadow of Mordor.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a7842bf-68d4-43cb-8d7e-b08957c388cc/sm/ep9773.jpg","duration":2971,"publication_date":"2014-10-03T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-middle-earth-shadow-of-mordor-no-power-in-numbers-guide","changefreq":"weekly","video":[{"title":"2014:E2453 - Middle Earth: Shadow of Mordor - No Power in Numbers Guide","description":"Ray shows you how to get the \"No Power in Numbers\" achievement in Middle Earth: Shadow of Mordor for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-middle-earth-shadow-of-mordor-no-power-in-numbers-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/791a6b26-d22c-45f7-9151-58e541a9158c/sm/ep9772.jpg","duration":154,"publication_date":"2014-10-03T19:06:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-53","changefreq":"weekly","video":[{"title":"2014:E241 - Minecraft - Episode 123 - On A Rail","description":"868 days after the original On A Rail, it's time for the Lads and Gents to do it all over again!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d13392-2244-435a-927f-58a19133574d/sm/ep9771.jpg","duration":2354,"publication_date":"2014-10-03T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-middle-earth-shadow-of-mordor-black-celebration-guide","changefreq":"weekly","video":[{"title":"2014:E2452 - Middle Earth: Shadow of Mordor - Black Celebration Guide","description":"Ray shows you how to get the \"Black Celebration\" achievement in Middle Earth: Shadow of Mordor for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-middle-earth-shadow-of-mordor-black-celebration-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0039b5bb-1361-450e-b2a0-b9c93962904f/sm/ep9769.jpg","duration":124,"publication_date":"2014-10-03T15:10:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-alpha-xl","changefreq":"weekly","video":[{"title":"2014:E23 - Rooster Teeth Inter-Office Smite Tournament Alpha XL","description":"This is the preview for next week's Rooster Teeth Inter-Office Smite Tournament Alpha XL. Twelve teams will compete for a lavish prize within the RT office and for some massive bragging rights. Watch over the next few weeks as we post brand new Smite head-to-head tournament videos in addition to our normal content.\r\n\r\nTest yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooster-teeth-inter-office-smite-tournament-alpha-xl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b96fb904-b421-4a4c-9a91-1b516dc58037/sm/ep9768.jpg","duration":108,"publication_date":"2014-10-02T21:27:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-50","changefreq":"weekly","video":[{"title":"2014:E240 - Destiny: Raid Attempt 1","description":"Watch Geoff, Gavin, Jack, Ryan, Michael, and Ray's first Raid Attempt in Destiny.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb63ba47-52d4-4da7-a212-1569b747ca03/sm/ep9767.jpg","duration":2301,"publication_date":"2014-10-02T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-11-chariot","changefreq":"weekly","video":[{"title":"2014:E11 - Chariot","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of \"Chariot.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-11-chariot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff3ced53-eec7-435c-bb8b-8978ac8f8a2b/sm/ep9766.jpg","duration":674,"publication_date":"2014-10-02T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-gametap","changefreq":"weekly","video":[{"title":"S1:E22 - Clip of the Week - GameTap","description":"Ben talks smack to Jose.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-gametap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":72,"publication_date":"2011-08-17T13:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-zelda-sucks","changefreq":"weekly","video":[{"title":"S1:E21 - Clip of the Week - Zelda Sucks","description":"S1:E21 - Clip of the Week - Zelda Sucks","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-zelda-sucks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":98,"publication_date":"2011-08-17T13:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-comment-aggression","changefreq":"weekly","video":[{"title":"S1:E20 - Clip of the Week - Comment Aggression","description":"We get hate comments everyday.  And there's only one logical explanation of where all this unbridled hate comes from.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-comment-aggression","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":62,"publication_date":"2011-08-17T13:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-clip-from-the-future","changefreq":"weekly","video":[{"title":"S1:E14 - Clip of the Week - Clip from the Future","description":" While filming  a bit for the Top Ten Mortal Kombat Kharacters, we came up with a better way to remove Jose's balls.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-clip-from-the-future","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a384a763-9476-449c-86ad-3c59bfea83e2/sm/COTW1.png","duration":127,"publication_date":"2011-08-17T12:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/french-and-german","changefreq":"weekly","video":[{"title":"S1:E26 - French and German","description":"Some of Craig's friends were like 'hey we made this video, can we put it on your site?' Craig was like 'sure, it will kill a day of content.' That day French and German was introduced to the world then never heard from again.","player_loc":"https://roosterteeth.com/embed/french-and-german","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":577,"publication_date":"2011-08-17T11:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-ps3-pre-order-interview","changefreq":"weekly","video":[{"title":"S1:E25 - The PS3 Pre-Order Interview","description":"The Playstation 3 was kind of a big deal when it was coming out, so to see how excited people were we took it to the streets.","player_loc":"https://roosterteeth.com/embed/the-ps3-pre-order-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":118,"publication_date":"2011-08-17T11:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/einsteins-arcade","changefreq":"weekly","video":[{"title":"S1:E24 - Einstein's Arcade","description":"Kids growing up now will one day ask what an arcade was, and you will show them this video of Einstein's Arcade in Austin, TX. It was awesome.","player_loc":"https://roosterteeth.com/embed/einsteins-arcade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":69,"publication_date":"2011-08-17T11:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/death-battle-season-1-14","changefreq":"weekly","video":[{"title":"S1:E14 - Boba Fett VS Samus Aran","description":"Like ScrewAttack on FACEBOOK: http://bit.ly/ScrewAttackFacebook\n\nFollow ScrewAttack on TWITTER: http://bit.ly/ScrewAttackTwitter\n\n\n\nWiz: Ben Singer - https://twitter.com/ScrewAttackBen\n\nBoomstick: Chad James - https://twitter.com/ScrewAttackChad","player_loc":"https://roosterteeth.com/embed/death-battle-season-1-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c66cd0f2-500a-4066-acb8-c59cf7f339be/sm/video_thumbnail_679.jpg","duration":424,"publication_date":"2011-08-17T11:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/toilet-tuesday","changefreq":"weekly","video":[{"title":"S1:E23 - Toilet Tuesday","description":"We asked and you responded with how you pass the time while you pass a bowel movement.","player_loc":"https://roosterteeth.com/embed/toilet-tuesday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":172,"publication_date":"2011-08-17T10:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/toilet-gaming-the-angry-video-game-nerd","changefreq":"weekly","video":[{"title":"S1:E22 - Toilet Gaming - The Angry Video Game Nerd","description":"What could the AVGN possibly have to play on the pooper? Something that made him make that face.","player_loc":"https://roosterteeth.com/embed/toilet-gaming-the-angry-video-game-nerd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":36,"publication_date":"2011-08-17T10:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/toilet-gaming","changefreq":"weekly","video":[{"title":"S1:E21 - Toilet Gaming","description":"What do you do on the crapper? Craig plays with dogs, but we wanna know what you do!","player_loc":"https://roosterteeth.com/embed/toilet-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":103,"publication_date":"2011-08-17T09:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-duck-hunt-dog","changefreq":"weekly","video":[{"title":"S1:E20 - The Duck Hunt Dog","description":"Did you ever wonder what would happen if the Duck Hunt dog got out in the real world? So did Craig, and what else would he do but put on a dog suit to find out.","player_loc":"https://roosterteeth.com/embed/the-duck-hunt-dog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":66,"publication_date":"2011-08-17T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-hidden-blade-assassins-creed-series","changefreq":"weekly","video":[{"title":"S1:E21 - The Armory - Hidden Blade (Assassin's Creed Series)","description":"Altair may have been the first we know of to wield the hidden blade, but he most likely will not be the last.","player_loc":"https://roosterteeth.com/embed/the-armory-hidden-blade-assassins-creed-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4700b339-bd48-46e3-8709-945dc17f9f98/sm/Eerste-info-onthuld-over-assassin-s-creed-2_5_460x0.jpg","duration":131,"publication_date":"2011-08-17T09:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-ulaks-chronicles-of-riddick","changefreq":"weekly","video":[{"title":"S1:E22 - The Armory - Ulaks (Chronicles of Riddick)","description":"You may be laughing at the silly name, but you'll stop pretty darn quick when one of these are embedded into your skull.","player_loc":"https://roosterteeth.com/embed/the-armory-ulaks-chronicles-of-riddick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0cb369a-1fa3-4c30-95a6-12ee3b63d9df/sm/ulaks.jpg","duration":126,"publication_date":"2011-08-17T08:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-final-smash-super-smash-bros-brawl","changefreq":"weekly","video":[{"title":"S1:E23 - The Armory - Final Smash (Super Smash Bros. Brawl)","description":"It will make you unleash a devastating attack on your enemies sending them flying out of sight, only to explode.","player_loc":"https://roosterteeth.com/embed/the-armory-final-smash-super-smash-bros-brawl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c16925b-d81c-47ca-a88d-881622d8aac7/sm/ivy_final_smash_lg.jpg","duration":135,"publication_date":"2011-08-17T08:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-jacks-arm-madworld","changefreq":"weekly","video":[{"title":"S1:E24 - The Armory - Jack's Arm (Madworld)","description":"His arm is made of metal, can somehow conceal a chainsaw, and all you have to do is cut off your current arm and slap this one on in it's place.","player_loc":"https://roosterteeth.com/embed/the-armory-jacks-arm-madworld","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4525a19a-7b19-4802-8824-cdd18288cdf9/sm/madworld-2.jpg","duration":123,"publication_date":"2011-08-17T08:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-vc5-electricity-gun-killzone","changefreq":"weekly","video":[{"title":"S1:E25 - The Armory - VC5 Electricity Gun (Killzone)","description":"We waited almost 4 years for Killzone 2 and it's finally here, but does it have anything worth adding. UMMMM YEAH!","player_loc":"https://roosterteeth.com/embed/the-armory-vc5-electricity-gun-killzone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adcd6119-d62e-4571-9701-77b88f791162/sm/electric.jpg","duration":116,"publication_date":"2011-08-17T08:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-scorpions-spear-mortal-kombat-series","changefreq":"weekly","video":[{"title":"S1:E26 - The Armory - Scorpions Spear (Mortal Kombat Series)","description":"Characters can throw fireballs, ice balls, and defy gravity with a bicycle kick, but we added a spear that can take down a man of steel.","player_loc":"https://roosterteeth.com/embed/the-armory-scorpions-spear-mortal-kombat-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d2f83a4-aea4-4fc8-ae8e-eeb603283b7b/sm/scorpion.jpg","duration":128,"publication_date":"2011-08-17T08:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-celestial-brush-okami","changefreq":"weekly","video":[{"title":"S1:E28 - The Armory - Celestial Brush (Okami)","description":"This white wolf has a paintbrush that can distort reality. We need to add it.","player_loc":"https://roosterteeth.com/embed/the-armory-celestial-brush-okami","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9beda260-f6f0-4ba0-baf2-aee4e80934b4/sm/okami-celestial-brush.jpg","duration":98,"publication_date":"2011-08-17T08:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-fiberwire-hitman","changefreq":"weekly","video":[{"title":"S1:E29 - The Armory - The Fiberwire (Hitman)","description":"Silent, easily concealable, and can kill a man in seconds.....unless you suck with it.","player_loc":"https://roosterteeth.com/embed/the-armory-the-fiberwire-hitman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa742eaf-2020-4afe-9177-13be5812a8f3/sm/421037-hitman1_large.jpg","duration":101,"publication_date":"2011-08-17T08:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-whip-castlevania","changefreq":"weekly","video":[{"title":"S1:E30 - The Armory - The Whip (Castlevania)","description":"This whip can break through a brick wall. It's that awesome.","player_loc":"https://roosterteeth.com/embed/the-armory-the-whip-castlevania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/802d6d06-2820-47b8-934a-026aee63bf8e/sm/castlevania-wall.jpg","duration":112,"publication_date":"2011-08-17T07:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-master-sword-the-legend-of-zelda-series","changefreq":"weekly","video":[{"title":"S1:E31 - The Armory - The Master Sword (The Legend of Zelda Series)","description":"The Legendary sword from Zelda. Of course we've got room for it.","player_loc":"https://roosterteeth.com/embed/the-armory-the-master-sword-the-legend-of-zelda-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19cd2b31-335e-4429-a87e-4b35ffd51210/sm/mastersword8001.jpg","duration":106,"publication_date":"2011-08-17T07:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-aperture-science-handheld-portal-device-portal","changefreq":"weekly","video":[{"title":"S1:E32 - The Armory - The Aperture Science Handheld Portal Device (Portal)","description":"This was a triumph. I'm making a note here, huge success.","player_loc":"https://roosterteeth.com/embed/the-armory-the-aperture-science-handheld-portal-device-portal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bcedc41-0c8a-4186-9e2f-c70d39533395/sm/Portal-gun.jpg","duration":179,"publication_date":"2011-08-17T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-farsight-xr-20-perfect-dark","changefreq":"weekly","video":[{"title":"S1:E33 - The Armory - Farsight XR-20 (Perfect Dark)","description":"Ever wanted to shoot a bad guy without leaving the room? With this weapon you can do exactly that.","player_loc":"https://roosterteeth.com/embed/the-armory-farsight-xr-20-perfect-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ac53d71-2de8-47e5-b071-e85199dd33c0/sm/Farsight.jpg","duration":101,"publication_date":"2011-08-17T07:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-shotgun-mutliple-game-series","changefreq":"weekly","video":[{"title":"S1:E35 - The Armory - Shotgun (Mutliple Game Series)","description":"One weapon seems to universally be a good deterrent to ********. The Shotgun.","player_loc":"https://roosterteeth.com/embed/the-armory-shotgun-mutliple-game-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22f4e0db-7924-4406-a347-00a73ddec54b/sm/Shotgun.jpg","duration":110,"publication_date":"2011-08-17T07:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-2-x-4-splatterhouse","changefreq":"weekly","video":[{"title":"S1:E40 - The Armory - 2 X 4 (Splatterhouse)","description":"If it was this bad ass when the game was 2D, imagine how bad ass it'll be in the new one.","player_loc":"https://roosterteeth.com/embed/the-armory-2-x-4-splatterhouse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73d2cd6f-0f68-473f-8f28-fedf5a0dafcc/sm/2x4.jpg","duration":119,"publication_date":"2011-08-17T06:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-lancer-gears-of-war","changefreq":"weekly","video":[{"title":"S1:E44 - The Armory - Lancer (Gears of War)","description":"The Lancer can cut dumb bastards in half. It's also awesome even though it's cheap.\r\n\t ","player_loc":"https://roosterteeth.com/embed/the-armory-lancer-gears-of-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2918771d-a70c-458e-bad2-11be0785130a/sm/Lancer.jpg","duration":108,"publication_date":"2011-08-17T06:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-gradius","changefreq":"weekly","video":[{"title":"S1:E6 - Reboot or Retro - Gradius","description":" Nothing says \"shoot-em up\" like Gradius. How does the reboot of the series, Gradius Rebirth, compare to the SNES classic, Gradius III?","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-gradius","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c0f207e-1850-4c58-9cc6-205a2aa3ff4f/sm/GRADIUS-3.jpeg","duration":213,"publication_date":"2011-08-16T14:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-ooze","changefreq":"weekly","video":[{"title":"S1:E155 - Video Game Vault - The Ooze","description":"One of the most overlooked titles on the Genesis.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-ooze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/320078c5-c915-4b79-a763-d01ffd23462d/sm/Ooze.png","duration":136,"publication_date":"2011-08-16T14:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-donkey-kong-jr","changefreq":"weekly","video":[{"title":"S1:E154 - Video Game Vault - Donkey Kong Jr.","description":"Mario a bad guy? You bet your plumber ass.","player_loc":"https://roosterteeth.com/embed/video-game-vault-donkey-kong-jr","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ca7a1c4-d3ba-45ae-bd0a-4044287b7e6f/sm/donkeykongjunior.jpg","duration":111,"publication_date":"2011-08-16T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pac-man-2","changefreq":"weekly","video":[{"title":"S1:E153 - Video Game Vault - Pac-Man 2","description":"What the hell happened?","player_loc":"https://roosterteeth.com/embed/video-game-vault-pac-man-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/166f2e41-6d68-4259-b9c7-257e895bdee7/sm/Pac-Man_2_-_The_New_Adventures_0.png","duration":149,"publication_date":"2011-08-16T14:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-mario-rpg","changefreq":"weekly","video":[{"title":"S1:E152 - Video Game Vault - Super Mario RPG","description":"Mario's last adventure on the SNES may have also been his best.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-mario-rpg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":125,"publication_date":"2011-08-16T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wolfenstein-3d-snes","changefreq":"weekly","video":[{"title":"S1:E151 - Video Game Vault - Wolfenstein 3D (SNES)","description":"What happened to the home console? Stuttering Craig knows.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wolfenstein-3d-snes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5643a9f0-5428-45d0-b0b0-ff34ca982267/sm/wolf3d-t.png","duration":174,"publication_date":"2011-08-16T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ken-griffey-jr-presents-mlb","changefreq":"weekly","video":[{"title":"S1:E150 - Video Game Vault - Ken Griffey, Jr. Presents MLB","description":"This is what every baseball game should strive to be.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ken-griffey-jr-presents-mlb","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6161fa7-8ab6-437b-8ecb-7be8023cceb9/sm/Ken_Griffey_Jr._Presents_Major_League_Baseball_SNES_ScreenShot1.gif","duration":112,"publication_date":"2011-08-16T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-strider-nes","changefreq":"weekly","video":[{"title":"S1:E149 - Video Game Vault - Strider (NES)","description":"Did the best game on Sega Genesis make the transition to the NES?","player_loc":"https://roosterteeth.com/embed/video-game-vault-strider-nes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bec15fa-cadf-4203-9cef-8c676b248530/sm/Strider_NES_ScreenShot1.jpg","duration":132,"publication_date":"2011-08-16T13:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-final-fight-2","changefreq":"weekly","video":[{"title":"S1:E148 - Video Game Vault - Final Fight 2","description":"What the hell happened to Cody and Guy?","player_loc":"https://roosterteeth.com/embed/video-game-vault-final-fight-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":170,"publication_date":"2011-08-16T13:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rock-n-roll-racing","changefreq":"weekly","video":[{"title":"S1:E147 - Video Game Vault - Rock n' Roll Racing","description":"Is this game on your \"best racer\" list?","player_loc":"https://roosterteeth.com/embed/video-game-vault-rock-n-roll-racing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/763a4b7a-f1ae-401a-9371-276c20deba5d/sm/rrr.png","duration":128,"publication_date":"2011-08-16T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sub-terrania","changefreq":"weekly","video":[{"title":"S1:E146 - Video Game Vault - Sub-Terrania","description":"Take a trip to Sub-Terrania! Just don't get left behind in the cave.","player_loc":"https://roosterteeth.com/embed/video-game-vault-sub-terrania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1222d60c-7b84-40fd-ab59-a796dec1550f/sm/video_thumbnail_602.jpg","duration":108,"publication_date":"2011-08-16T13:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dig-dug","changefreq":"weekly","video":[{"title":"S1:E145 - Video Game Vault - Dig Dug","description":"One of the sickest games you'll ever play. Ever.","player_loc":"https://roosterteeth.com/embed/video-game-vault-dig-dug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdba3ca4-c7b0-48e6-9b76-5c0fa57709ae/sm/dig-dug.png","duration":128,"publication_date":"2011-08-16T13:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-magician-lord","changefreq":"weekly","video":[{"title":"S1:E144 - Video Game Vault - Magician Lord","description":"How this game got on a \"best of\" disc, we will never know.","player_loc":"https://roosterteeth.com/embed/video-game-vault-magician-lord","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eded02d1-e731-497d-b62d-fcba27fa5907/sm/1171767-magician_lord1_super.gif","duration":112,"publication_date":"2011-08-16T13:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rampage","changefreq":"weekly","video":[{"title":"S1:E143 - Video Game Vault - Rampage","description":"An arcade classic about destruction. What could be better?","player_loc":"https://roosterteeth.com/embed/video-game-vault-rampage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eca37a64-b480-4acd-97de-eac323344389/sm/1181242155329.png","duration":131,"publication_date":"2011-08-16T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-metal-slug-3","changefreq":"weekly","video":[{"title":"S1:E142 - Video Game Vault - Metal Slug 3","description":"What makes this the best game in the series?","player_loc":"https://roosterteeth.com/embed/video-game-vault-metal-slug-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6903621-ccdd-4ff9-8cee-7c063ba87236/sm/1050861234.gif","duration":134,"publication_date":"2011-08-16T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-shadow-of-the-ninja","changefreq":"weekly","video":[{"title":"S1:E141 - Video Game Vault - Shadow of the Ninja","description":"I've got some more monkeys to kill.","player_loc":"https://roosterteeth.com/embed/video-game-vault-shadow-of-the-ninja","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ec7ce0c-d635-4c34-b778-05a3c74f9ba4/sm/pg_shadow_of_the_ninja_1.png","duration":113,"publication_date":"2011-08-16T12:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-track-field-ii","changefreq":"weekly","video":[{"title":"S1:E140 - Video Game Vault - Track & Field II","description":"Burn more calories than the Subway guy ever did!","player_loc":"https://roosterteeth.com/embed/video-game-vault-track-field-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9269b55a-af01-4102-af80-16e97aded6d5/sm/Track+and+Field+2.jpg","duration":148,"publication_date":"2011-08-16T12:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ninja-gaiden-shadow","changefreq":"weekly","video":[{"title":"S1:E139 - Video Game Vault - Ninja Gaiden Shadow","description":"Aging and experience aren't necessarily bad things.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ninja-gaiden-shadow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":150,"publication_date":"2011-08-16T12:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-boxing-fever","changefreq":"weekly","video":[{"title":"S1:E138 - Video Game Vault - Boxing Fever","description":"All the fisticuffs you can handle on a handheld on the GBA.","player_loc":"https://roosterteeth.com/embed/video-game-vault-boxing-fever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":105,"publication_date":"2011-08-16T12:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tony-hawks-pro-skater-2","changefreq":"weekly","video":[{"title":"S1:E137 - Video Game Vault - Tony Hawk's Pro Skater 2","description":"This game made Tony Hawk zillions.","player_loc":"https://roosterteeth.com/embed/video-game-vault-tony-hawks-pro-skater-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9f81354-048e-4b0d-840c-2e3ca659f0ce/sm/20527_1306858392_0.jpg","duration":131,"publication_date":"2011-08-16T12:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-space-channel-5","changefreq":"weekly","video":[{"title":"S1:E136 - Video Game Vault - Space Channel 5","description":"One of the girliest games ever, if you're down with dancing and Michael Jackson then it just might be for you...","player_loc":"https://roosterteeth.com/embed/video-game-vault-space-channel-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47238af4-b874-40b5-ad5f-a8a0cc4fb70c/sm/Space_Channel_5.PNG","duration":157,"publication_date":"2011-08-16T12:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-duck-tales-2-game-boy","changefreq":"weekly","video":[{"title":"S1:E135 - Video Game Vault - Duck Tales 2 (Game Boy)","description":"How did this game get overlooked?!","player_loc":"https://roosterteeth.com/embed/video-game-vault-duck-tales-2-game-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73c175f6-88d9-4dec-8dc1-8c12cb47558e/sm/144954-duck-tales-2-game-boy-screenshot-title-screens.png","duration":141,"publication_date":"2011-08-16T12:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-fun-house","changefreq":"weekly","video":[{"title":"S1:E134 - Video Game Vault - Fun House","description":"Fun? More like a house of horrors!","player_loc":"https://roosterteeth.com/embed/video-game-vault-fun-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":156,"publication_date":"2011-08-16T12:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-micro-machines-2","changefreq":"weekly","video":[{"title":"S1:E133 - Video Game Vault - Micro Machines 2","description":"Eight players at the same time--we think.","player_loc":"https://roosterteeth.com/embed/video-game-vault-micro-machines-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":194,"publication_date":"2011-08-16T12:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-18-wheeler-american-pro-trucker","changefreq":"weekly","video":[{"title":"S1:E132 - Video Game Vault - 18 Wheeler: American Pro Trucker","description":"A badass arcade game that made the jump to the Dreamcast. It was only lacking one thing...","player_loc":"https://roosterteeth.com/embed/video-game-vault-18-wheeler-american-pro-trucker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":92,"publication_date":"2011-08-16T12:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-6","changefreq":"weekly","video":[{"title":"S1:E131 - Video Game Vault - Mega Man 6","description":"The final Mega Man game on the NES, did the Blue Bomber end the 8-bit era with a bang?","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":139,"publication_date":"2011-08-16T12:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wrestle-mania-2000","changefreq":"weekly","video":[{"title":"S1:E130 - Video Game Vault - Wrestle Mania 2000","description":"One of the best wrestling games on the Nintendo 64, many would agree that it lays the smacketh down.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wrestle-mania-2000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73b0fe43-db9f-4d23-a7dc-e4e4467ac29f/sm/300px-Wwf_wrestlemania_2000-title.png","duration":184,"publication_date":"2011-08-16T11:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-worms","changefreq":"weekly","video":[{"title":"S1:E129 - Video Game Vault - Worms","description":"Who knew that war could be so much fun?","player_loc":"https://roosterteeth.com/embed/video-game-vault-worms","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f8b4e34-f7e9-4f8d-8190-bb71098fc3a6/sm/145559-worms-genesis-screenshot-worms-lists.gif","duration":119,"publication_date":"2011-08-16T11:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wrath-of-the-black-manta","changefreq":"weekly","video":[{"title":"S1:E128 - Video Game Vault - Wrath of the Black Manta ","description":"Ninjas? Little kids? Bad Hair? It's all in this game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wrath-of-the-black-manta","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8956e88d-d344-4eee-9023-f0fde37cd62c/sm/Wrath_of_the_Black_Manta_NES_ScreenShot1.jpg","duration":109,"publication_date":"2011-08-16T11:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-zombies-ate-my-neighbors","changefreq":"weekly","video":[{"title":"S1:E127 - Video Game Vault - Zombies Ate my Neighbors","description":"One of the best from the SNES library, it set the standard for undead fun.","player_loc":"https://roosterteeth.com/embed/video-game-vault-zombies-ate-my-neighbors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":134,"publication_date":"2011-08-16T11:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mr-nutz","changefreq":"weekly","video":[{"title":"S1:E126 - Video Game Vault - Mr. Nutz","description":"Head on down to Woody Land and hit enemies in the face with your nuts!","player_loc":"https://roosterteeth.com/embed/video-game-vault-mr-nutz","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44214cfd-8b33-4960-bbee-68b8553e67d5/sm/genesis_mr._nutz_1.gif","duration":99,"publication_date":"2011-08-16T11:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-adventure-island","changefreq":"weekly","video":[{"title":"S1:E125 - Video Game Vault - Adventure Island","description":"Master Higgins needs to make a comeback!","player_loc":"https://roosterteeth.com/embed/video-game-vault-adventure-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68b04896-b9dd-482b-a464-9ed8e261a67f/sm/AdventureIslandStart.PNG","duration":128,"publication_date":"2011-08-16T11:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-altered-beast","changefreq":"weekly","video":[{"title":"S1:E124 - Video Game Vault - Altered Beast","description":"One of the most popular games on the Genesis, Altered Beast needs to be in the Hall of Fame.","player_loc":"https://roosterteeth.com/embed/video-game-vault-altered-beast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8806dab1-e5c0-4a00-9039-cdd920e3c1a1/sm/images-1_1.jpg","duration":121,"publication_date":"2011-08-16T11:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wipeout-64","changefreq":"weekly","video":[{"title":"S1:E123 - Video Game Vault - Wipeout 64","description":"Was there anything special about this racer?","player_loc":"https://roosterteeth.com/embed/video-game-vault-wipeout-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdc87a46-55f9-4d65-bfa0-1b7608fd78ae/sm/Wipeout_64_front.jpg","duration":109,"publication_date":"2011-08-16T11:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-final-fight","changefreq":"weekly","video":[{"title":"S1:E122 - Video Game Vault - Final Fight","description":"What better way to celebrate our nation's birthday than with one of the marquee games about kicking ass?","player_loc":"https://roosterteeth.com/embed/video-game-vault-final-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31cae263-ad0b-407a-8f83-77d9976a49b7/sm/1099581963.jpg","duration":148,"publication_date":"2011-08-16T11:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-jet-grind-radio","changefreq":"weekly","video":[{"title":"S1:E121 - Video Game Vault - Jet Grind Radio","description":"There's nothing like a little J-pop to get you going.","player_loc":"https://roosterteeth.com/embed/video-game-vault-jet-grind-radio","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33476b1c-a772-415a-9da6-ac7586896fb8/sm/JetGrindRadio_1.jpg","duration":130,"publication_date":"2011-08-16T11:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ecco-the-dolphin","changefreq":"weekly","video":[{"title":"S1:E120 - Video Game Vault - Ecco the Dolphin","description":"Ecco's a game that makes Craig wish the oceans were polluted.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ecco-the-dolphin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49722b98-2cd0-4b60-aa7e-11a399025b33/sm/Ecco_GEN_ScreenShot1_0.gif","duration":151,"publication_date":"2011-08-16T11:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tecmo-world-wrestling","changefreq":"weekly","video":[{"title":"S1:E119 - Video Game Vault - Tecmo World Wrestling","description":"One of the best games Tecmo made for the NES. No, we're not kidding!","player_loc":"https://roosterteeth.com/embed/video-game-vault-tecmo-world-wrestling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c0f25f1-3947-4a9c-afcf-46978e36287f/sm/tecmo1.jpg","duration":136,"publication_date":"2011-08-16T11:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-buster-bros","changefreq":"weekly","video":[{"title":"S1:E118 - Video Game Vault - Super Buster Bros.","description":"Watch out for the bubbles... they are coming for your babies!","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-buster-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":113,"publication_date":"2011-08-16T11:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-battletoads-and-double-dragon","changefreq":"weekly","video":[{"title":"S1:E117 - Video Game Vault - Battletoads and Double Dragon","description":"Battletoads and Double Dragon--in the same game? Whoa!","player_loc":"https://roosterteeth.com/embed/video-game-vault-battletoads-and-double-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03d16bb3-1b2d-4a3a-ba25-6fc43055d4d4/sm/BattletoadsAndDoubleDragon_1.jpg","duration":123,"publication_date":"2011-08-16T11:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-clayfighter","changefreq":"weekly","video":[{"title":"S1:E116 - Video Game Vault - ClayFighter","description":"In a mid-90's world of Street Fighter knock-offs, ClayFighter stood out because it's clay... and that's about it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-clayfighter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5a35b50-3c78-48a2-b5ec-6eb036a06dd3/sm/clay-fighter-01.jpg","duration":137,"publication_date":"2011-08-16T11:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-power-rangers","changefreq":"weekly","video":[{"title":"S1:E115 - Video Game Vault - Power Rangers","description":"Holy Cow! The Power Rangers were awesome... in 1993.","player_loc":"https://roosterteeth.com/embed/video-game-vault-power-rangers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":134,"publication_date":"2011-08-16T11:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rockos-modern-life","changefreq":"weekly","video":[{"title":"S1:E114 - Video Game Vault - Rocko's Modern Life","description":"One of the coolest cartoons in the 90s, it's a shame the game turned out the way it did.","player_loc":"https://roosterteeth.com/embed/video-game-vault-rockos-modern-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82efa7b6-9712-44c4-8ad7-3e05cb252dfa/sm/588625_40368_front.jpg","duration":139,"publication_date":"2011-08-16T11:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-zool","changefreq":"weekly","video":[{"title":"S1:E113 - Video Game Vault - Zool","description":"This ninja gremlin from space has more or less been forgotten.","player_loc":"https://roosterteeth.com/embed/video-game-vault-zool","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/689cb188-2a65-4ed7-b436-89c6d9d68002/sm/genesis_zool_1.gif","duration":124,"publication_date":"2011-08-16T11:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-section-z","changefreq":"weekly","video":[{"title":"S1:E112 - Video Game Vault - Section Z","description":"Not just your average shooter, Section Z featured TWO buttons to press over and over again.","player_loc":"https://roosterteeth.com/embed/video-game-vault-section-z","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07ba92e5-1176-422c-a965-a30b45434598/sm/Section_Z_-_NES_-_1_0.png","duration":125,"publication_date":"2011-08-16T11:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-uniracers","changefreq":"weekly","video":[{"title":"S1:E111 - Video Game Vault - Uniracers","description":"A game you probably don't remember, we jog your memory the only way we thought would fit: Monster Truck style.","player_loc":"https://roosterteeth.com/embed/video-game-vault-uniracers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4446970-910b-4648-bb91-550fed0fdac3/sm/46723-uniracers-snes-screenshot-main-menus.jpg","duration":93,"publication_date":"2011-08-16T10:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wheres-waldo","changefreq":"weekly","video":[{"title":"S1:E110 - Video Game Vault - Where's Waldo?","description":"How could the makers of Fallout 3 screw up Waldo?","player_loc":"https://roosterteeth.com/embed/video-game-vault-wheres-waldo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":151,"publication_date":"2011-08-16T10:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-splatterhouse-2","changefreq":"weekly","video":[{"title":"S1:E109 - Video Game Vault - SplatterHouse 2","description":"Nothing says scary like zombie sex and chopping up baby fetus' with your penis.","player_loc":"https://roosterteeth.com/embed/video-game-vault-splatterhouse-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":127,"publication_date":"2011-08-16T10:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ninja-gaiden","changefreq":"weekly","video":[{"title":"S1:E108 - Video Game Vault - Ninja Gaiden","description":"Some say the old school NES games are better than those released today. What do you think?","player_loc":"https://roosterteeth.com/embed/video-game-vault-ninja-gaiden","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1b8a5a6-cc1e-4e98-b649-317e7a4f6e2e/sm/NinjaGaiden.gif","duration":104,"publication_date":"2011-08-16T10:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-slalom","changefreq":"weekly","video":[{"title":"S1:E107 - Video Game Vault - Slalom","description":"Nothing says \"awesome game\" like a giant ass staring you in the face.","player_loc":"https://roosterteeth.com/embed/video-game-vault-slalom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0eac94bf-095e-4c63-a51e-0f38d3bae0e1/sm/Slalom.gif","duration":102,"publication_date":"2011-08-16T10:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-joe-and-mac","changefreq":"weekly","video":[{"title":"S1:E106 - Video Game Vault - Joe and Mac","description":"A straightforward platformer starring two cavemen who just happen to like poon tang.","player_loc":"https://roosterteeth.com/embed/video-game-vault-joe-and-mac","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc36e296-db49-4e90-bc19-0fcdfa7f8691/sm/Joe_And_Mac_SNES_ScreenShot1.gif","duration":107,"publication_date":"2011-08-16T10:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-skeleton-warriors","changefreq":"weekly","video":[{"title":"S1:E105 - Video Game Vault - Skeleton Warriors","description":"A game you've never heard of with an ending you want to forget.","player_loc":"https://roosterteeth.com/embed/video-game-vault-skeleton-warriors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37289ecd-7551-416d-ac8f-923499ff9a2e/sm/Skeleton_Warriors_Logo.jpg","duration":132,"publication_date":"2011-08-16T10:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-street-smart","changefreq":"weekly","video":[{"title":"S1:E104 - Video Game Vault - Street Smart","description":"A fighting game that is not street or smart has two of the best named characters in history.","player_loc":"https://roosterteeth.com/embed/video-game-vault-street-smart","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03f3e3eb-2d52-4e4b-bb61-7b30c287d296/sm/Street_Smart_GEN_ScreenShot1.gif","duration":113,"publication_date":"2011-08-16T10:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dr-chaos","changefreq":"weekly","video":[{"title":"S1:E103 - Video Game Vault - Dr. Chaos","description":"Have you ever heard of this game? Let's keep it that way.","player_loc":"https://roosterteeth.com/embed/video-game-vault-dr-chaos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":103,"publication_date":"2011-08-16T10:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-barbie","changefreq":"weekly","video":[{"title":"S1:E102 - Video Game Vault - Barbie","description":"One of the most stereotypical games of all time, did we mention it sucks too?","player_loc":"https://roosterteeth.com/embed/video-game-vault-barbie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85a91d09-3cc8-40c1-a2dc-b15ccbf6fcae/sm/Barbie.gif","duration":135,"publication_date":"2011-08-16T10:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-road-blasters","changefreq":"weekly","video":[{"title":"S1:E101 - Video Game Vault - Road Blasters","description":"It's about racing and blowing stuff up in the future.","player_loc":"https://roosterteeth.com/embed/video-game-vault-road-blasters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25101911-e085-446d-8a9e-004fc5f34809/sm/RoadBlasters.gif","duration":105,"publication_date":"2011-08-16T10:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-yoshis-story","changefreq":"weekly","video":[{"title":"S1:E100 - Video Game Vault - Yoshi's Story","description":"While Yoshi's Story may be covered with happy faces, Craig has figured out it's all a charade.","player_loc":"https://roosterteeth.com/embed/video-game-vault-yoshis-story","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/295ebb02-e9da-4cff-94aa-266016ce413b/sm/YoshisStory.jpg","duration":136,"publication_date":"2011-08-16T10:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rambo-iii","changefreq":"weekly","video":[{"title":"S1:E99 - Video Game Vault - Rambo III","description":"Movies and video games don't always go hand in hand but when you add a little Stalone and some blast processing together somehow you manage to get a decent game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-rambo-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f47114e-fe38-4e57-8484-698c3e68cb38/sm/154669-rambo-iii-genesis-screenshot-title-screens.gif","duration":105,"publication_date":"2011-08-16T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/diarrhea-of-technology-sidescrollers-081115","changefreq":"weekly","video":[{"title":"S1:E23 - Diarrhea of Technology | SideScrollers 08/11/15","description":"We're STILL trying to move the HQ, so instead of no SideScrollers, we give another short one. Some things may fall apart.","player_loc":"https://roosterteeth.com/embed/diarrhea-of-technology-sidescrollers-081115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3129b893-7c32-48af-980c-e961871a4aaf/sm/video_thumbnail_12888229-1450391576.jpg","duration":1707,"publication_date":"2011-08-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-earthworm-jim","changefreq":"weekly","video":[{"title":"S1:E98 - Video Game Vault - Earthworm Jim","description":"One of the wackiest, craziest games you will ever play, Earthworm Jim needs to make a comeback.","player_loc":"https://roosterteeth.com/embed/video-game-vault-earthworm-jim","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3dc3c27-4f66-4eb9-b2f6-13a2d22c3050/sm/EarthwormJim1.jpg","duration":112,"publication_date":"2011-08-15T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-aero-the-acrobat","changefreq":"weekly","video":[{"title":"S1:E97 - Video Game Vault - Aero the Acrobat","description":"He's a bat... that is an acrobat! Get it?","player_loc":"https://roosterteeth.com/embed/video-game-vault-aero-the-acrobat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/315834b6-5eb7-4ba9-a8eb-ffc8fe1004d4/sm/images_3.jpg","duration":122,"publication_date":"2011-08-15T14:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-outrun","changefreq":"weekly","video":[{"title":"S1:E96 - Video Game Vault - OutRun","description":"You want a racing game? Look somewhere else. This is a driving game... and an absolute classic.","player_loc":"https://roosterteeth.com/embed/video-game-vault-outrun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4ec9050-b6e9-4ee0-a614-ce802cf6a2d8/sm/Outrun_GEN_ScreenShot1.gif","duration":93,"publication_date":"2011-08-15T14:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-vectorman","changefreq":"weekly","video":[{"title":"S1:E95 - Video Game Vault - Vectorman","description":"One of the marquee titles on the Genesis, Vectorman was one hundred percent complete.","player_loc":"https://roosterteeth.com/embed/video-game-vault-vectorman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aab05790-84e7-43da-b234-1af84c93d6cc/sm/Vectorman.gif","duration":119,"publication_date":"2011-08-15T14:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mortal-kombat-game-boy","changefreq":"weekly","video":[{"title":"S1:E94 - Video Game Vault - Mortal Kombat (Game Boy)","description":"One of the greatest fighting games in history! Oh wait... this is the Game Boy version.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mortal-kombat-game-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a50d1c9-a769-476b-aeb2-cb1d1189e4cc/sm/911065b.jpg","duration":138,"publication_date":"2011-08-15T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-micro-machines","changefreq":"weekly","video":[{"title":"S1:E93 - Video Game Vault - Micro Machines","description":"Bite size, unlicensed racing on the NES? You bet your fast talking ass.","player_loc":"https://roosterteeth.com/embed/video-game-vault-micro-machines","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0a77655-3388-410c-a7eb-a62539c074d4/sm/Micro_Machines_NES_ScreenShot1.jpg","duration":138,"publication_date":"2011-08-15T14:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-lethal-enforcers","changefreq":"weekly","video":[{"title":"S1:E92 - Video Game Vault - Lethal Enforcers","description":"Bust out your purple and pink Konami Justifier because it's time to shoot stuff.","player_loc":"https://roosterteeth.com/embed/video-game-vault-lethal-enforcers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35084c08-1276-40f7-8352-117ed5d536aa/sm/Lethal_Enforcers_SNES_ScreenShot1.gif","duration":94,"publication_date":"2011-08-15T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-coms-best-and-worst-of-e3-2011","changefreq":"weekly","video":[{"title":"S1:E57 - ScrewAttack.com's Best and Worst of E3 2011","description":"Some moments brought glory--others brought shame. ScrewAttack counts down five each from E3 2011!","player_loc":"https://roosterteeth.com/embed/screwattack-coms-best-and-worst-of-e3-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba5666c2-e96a-4844-b2a2-bab0377313ea/sm/e3-2011.jpg","duration":410,"publication_date":"2011-08-15T13:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-reboots-remakes","changefreq":"weekly","video":[{"title":"S1:E56 - Top 10 Worst Reboots & Remakes ","description":"Revisiting old IP can yield incredible games. These are not those games.","player_loc":"https://roosterteeth.com/embed/top-10-worst-reboots-remakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/506dd72b-f139-4a10-a86d-b99ea66cc37a/sm/4464715371525671.jpg","duration":451,"publication_date":"2011-08-15T13:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-mortal-kombat-kharacters","changefreq":"weekly","video":[{"title":"S1:E55 - Top 10 Worst Mortal Kombat Kharacters ","description":"ScrewAttack counts down the ten worst combatants of all time.","player_loc":"https://roosterteeth.com/embed/top-10-worst-mortal-kombat-kharacters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/210509b5-876b-4c02-9e31-8c151b38db81/sm/1161109041959.jpg","duration":335,"publication_date":"2011-08-15T13:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-mortal-kombat-kharacters","changefreq":"weekly","video":[{"title":"S1:E54 - Top 10 Mortal Kombat Kharacters ","description":"Craig celebrates the Mortal Kombat franchise and counts down the best and baddest kombatants!","player_loc":"https://roosterteeth.com/embed/top-10-mortal-kombat-kharacters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a3b526b-bfb6-4fcf-9a69-f26180b1605e/sm/Scorpion_Vs_Sub_Zero__Color__by_UlcaTron.png","duration":387,"publication_date":"2011-08-15T13:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-doctors","changefreq":"weekly","video":[{"title":"S1:E53 - Top 10 Worst Doctors ","description":"Craig and Nick break down the ten least impressive practitioners of medicine!","player_loc":"https://roosterteeth.com/embed/top-10-worst-doctors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3493a08-cf4b-4f44-baf1-2a2dcdd5d7ff/sm/drmarioinsulin.jpg","duration":478,"publication_date":"2011-08-15T13:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-mega-man-robot-masters","changefreq":"weekly","video":[{"title":"S1:E52 - Top 10 Mega Man Robot Masters","description":"Which Robot Masters own the most face?","player_loc":"https://roosterteeth.com/embed/top-10-mega-man-robot-masters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d5be895-7c4c-45ee-b0ee-7a15ef00b353/sm/images-5.jpg","duration":360,"publication_date":"2011-08-15T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-gaming-headlines-of-2011","changefreq":"weekly","video":[{"title":"S1:E51 - Top 10 Gaming Headlines of 2011","description":"Craig and Nick serve up another year's worth of prophetic headlines for 2011!","player_loc":"https://roosterteeth.com/embed/top-10-gaming-headlines-of-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/322586a8-0336-454f-b62c-8e87d2683531/sm/3ds_cracked.jpg","duration":462,"publication_date":"2011-08-15T12:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-left-4-dead-2","changefreq":"weekly","video":[{"title":"2014:E35 - Left 4 Dead 2","description":"Joel, Adam, Matt, and Jeremy fight off zombies. A lot of zombies. More zombies than four people could handle... unless those four people are Joel, Adam, Matt, and Jeremy.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-left-4-dead-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16fc2458-f731-40f8-a898-e9ab0ce7d263/sm/ep9765.jpg","duration":2858,"publication_date":"2014-10-02T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-remix-super-smash-bros","changefreq":"weekly","video":[{"title":"2014:E22 - Remix - Super Smash Bros","description":"Kdin, Lindsay, Matt, and Jeremy go back and play the classic Super Smash Bros games!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-remix-super-smash-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfec055a-1fec-4b52-b2ea-cb36806bf4bb/sm/ep9764.jpg","duration":1437,"publication_date":"2014-10-02T18:56:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-42","changefreq":"weekly","video":[{"title":"2014:E239 - Middle-Earth: Shadow of Mordor","description":"Michael and Lindsay start a journey to see if they can simply walk into Mordor!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff676993-1506-4ff8-8749-a8b9c2c9fdbb/sm/ep9763.jpg","duration":2030,"publication_date":"2014-10-02T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-8","changefreq":"weekly","video":[{"title":"2014:E40 - Episode 83: Gavin vs. Ryan","description":"This week's VS brings you Gavin vs. Ryan!","player_loc":"https://roosterteeth.com/embed/vs-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/286c11c5-f1e7-405b-9c2e-2f60c44e7342/sm/ep9762.jpg","duration":472,"publication_date":"2014-10-02T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-destiny-mars-golden-chests","changefreq":"weekly","video":[{"title":"2014:E34 - Destiny - Mars' Golden Chests","description":"Adam and Joel show us where to find the final five golden chests in Destiny...And Joel gets a special prize.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-destiny-mars-golden-chests","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e2fb9a-612d-401b-8040-baabe8451741/sm/ep9760.jpg","duration":150,"publication_date":"2014-10-02T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-36","changefreq":"weekly","video":[{"title":"2014:E238 - 3D Ultra MiniGolf Adventures 2 Part 2","description":"The MiniGolf crew are back! It's time to Putt Up or shut up as the courses gets harder.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbf5383c-4916-45d4-987e-fe6deab85a44/sm/ep9759.jpg","duration":4959,"publication_date":"2014-10-01T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-october-2014","changefreq":"weekly","video":[{"title":"2014:E21 - Coming Soon - October 2014","description":"Kdin is back with a ton of new games and other information for the month of October. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-october-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae13a132-fb53-4c59-9c59-72f80132339d/sm/ep9758.jpg","duration":329,"publication_date":"2014-10-01T19:44:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-5","changefreq":"weekly","video":[{"title":"2014:E39 - Achievement HUNT #49","description":"While Jack is out of the office, Michael and Geoff find a great way to honor his missing presence.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa669280-8174-45bb-875b-0bba970726f8/sm/ep9757.jpg","duration":273,"publication_date":"2014-10-01T19:19:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-cargobash","changefreq":"weekly","video":[{"title":"IA:E8 - Cargobash","description":"Jeremy and Kdin combine a jet, a cargobob, and a car in this week's Imaginary Achievement.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-cargobash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0dbd4b4-be17-4164-8134-c3aea8e4f700/sm/ep9756.jpg","duration":228,"publication_date":"2014-10-01T18:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-middle-earth-shadow-of-mordor-height-of-despair-guide","changefreq":"weekly","video":[{"title":"2014:E2451 - Middle Earth: Shadow of Mordor - Height of Despair Guide","description":"Ray and Michael show you how to get the \"Height of Despair\" achievement in Middle Earth: Shadow of Mordor for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-middle-earth-shadow-of-mordor-height-of-despair-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d03f8e37-a46b-4847-9236-6e7380da6b4e/sm/ep9755.jpg","duration":92,"publication_date":"2014-10-01T17:16:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-6","changefreq":"weekly","video":[{"title":"2014:E45 - Minecraft - Pilot Wings","description":"Geoff, Ryan, Michael, Jack, Gavin, and Ray compete to make it through all of the rings in this week's Things do in Minecraft - Pilot Wings.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f34b38b6-ee91-401c-aa2d-3f970c2df7c0/sm/ep9753.jpg","duration":620,"publication_date":"2014-10-01T14:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-31","changefreq":"weekly","video":[{"title":"2014:E237 - Let's Test - Foosball","description":"Join Kdin, Matt, Jeremy, and Lindsay as they test Foosball in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e84e7d25-7c5a-41ca-9311-b5348a60e422/sm/ep9752.jpg","duration":570,"publication_date":"2014-09-30T20:23:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-29","changefreq":"weekly","video":[{"title":"2014:E236 - Diablo 3 Hardcore Part 2","description":"Geoff, Jack, Michael, and Ryan continue their fight in the second part of Let's Play - Diablo 3 Hardcore.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8ffeb19-07a0-4167-99f6-939b604d9b6c/sm/ep9750.jpg","duration":2263,"publication_date":"2014-09-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-5","changefreq":"weekly","video":[{"title":"2014:E39 - Keith David Edition - GO! #49","description":"In the 49th episode of GO!, the first person to hear Keith David's beautiful voice becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbb52223-aecc-4bfa-99d5-bec65cd50f7a/sm/ep9751.jpg","duration":355,"publication_date":"2014-09-30T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-4","changefreq":"weekly","video":[{"title":"2014:E38 - Destiny Part 2","description":"Geoff and Michael bring you another five facts over Destiny.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad3ac6f4-5595-47d3-ab39-07dfc692fde1/sm/ep9749.jpg","duration":295,"publication_date":"2014-09-30T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-3","changefreq":"weekly","video":[{"title":"2014:E33 - Trials Files #121","description":"Geoff and Gavin bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f8799f1-1144-41a5-946b-335f4e0e1f73/sm/ep9748.jpg","duration":138,"publication_date":"2014-09-30T17:50:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-21","changefreq":"weekly","video":[{"title":"2014:E235 - GTA V - Action News Teams Part 1","description":"Achievement Hunter goes Lads Vs Gents for a news team show down! Which team can land the scoop of the century","player_loc":"https://roosterteeth.com/embed/lets-play-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/874f41be-334e-48b7-ad4b-fce42c6a9832/sm/ep9744.jpg","duration":1833,"publication_date":"2014-09-29T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-5","changefreq":"weekly","video":[{"title":"2014:E39 - Week #233","description":"The AH Crew is back bringing you this week's Achievement Hunter News!\r\nCommunity Video of the week: http://bit.ly/1Bxrb5i\r\nVideo of the week: http://bit.ly/1roxxnu","player_loc":"https://roosterteeth.com/embed/ahwu-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3e84117-df36-41fb-98ec-cb3d80f136d9/sm/ep9746.jpg","duration":819,"publication_date":"2014-09-29T21:34:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-2d-beatem-ups","changefreq":"weekly","video":[{"title":"2014:E21 - Top 10 2D Beat'Em Ups","description":"Geoff, Ray, and Michael go over the top 10 2D Beat'Em Ups.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-2d-beatem-ups","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc2e8aaa-5ddc-4323-94cc-7e5dce9cb4bd/sm/ep9745.jpg","duration":208,"publication_date":"2014-09-29T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-2","changefreq":"weekly","video":[{"title":"2014:E44 - GTA V - Sunset Skid","description":"AH learns the true meaning of defensive driving in this week's Things to do.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/655dd2d4-5810-4864-ad84-64882d440c06/sm/ep9740.jpg","duration":1782,"publication_date":"2014-09-27T01:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-13","changefreq":"weekly","video":[{"title":"2014:E234 - Hyrule Warriors","description":"Matt and Kdin play the recently released Dynasty Warriors and Zelda Mashup 'Hyrule Warriors.'","player_loc":"https://roosterteeth.com/embed/lets-play-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13f315e5-0aa3-4719-b808-c69a0bdf202e/sm/ep9738.jpg","duration":1481,"publication_date":"2014-09-26T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-9","changefreq":"weekly","video":[{"title":"2014:E233 - Minecraft - Episode 122 - King Gavin Part 2","description":"The Achievement Hunter Crew is still under the reign of King Gavin. Will they all survive under his rule Watch and find out in Let's Play Minecraft - King Gavin Part 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d56bb149-0d79-43e0-8ecf-a6023b598bde/sm/ep9735.jpg","duration":2576,"publication_date":"2014-09-26T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014","changefreq":"weekly","video":[{"title":"2014:E39 - Volume 210","description":"In Fails of the Weak #210, Jack and Geoff bring you fails in Sniper Elite 3, FIFA 13, Sportsfriends, Destiny, Halo: Reach, and FIFA 14.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c041e6a-7769-4581-a0b4-9d4cc352f06a/sm/ep9734.jpg","duration":139,"publication_date":"2014-09-26T13:25:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-2","changefreq":"weekly","video":[{"title":"2014:E39 - Episode 82: Michael vs. Ryan","description":"M-Jones challenges the Rye Bread this week, on VS!","player_loc":"https://roosterteeth.com/embed/vs-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40d4102c-f767-426a-b027-25ecfb37180f/sm/ep9733.jpg","duration":777,"publication_date":"2014-09-26T11:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014","changefreq":"weekly","video":[{"title":"2014:E28 - Heavy Bullets","description":"This week on Rage Quit, Michael gets hard and heavy in Heavy Bullets for Steam. Does he even lift, bro","player_loc":"https://roosterteeth.com/embed/rage-quit-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25de348c-90fa-4557-865e-4328bf2b7c95/sm/ep9732.jpg","duration":900,"publication_date":"2014-09-26T00:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-grab-bag","changefreq":"weekly","video":[{"title":"2014:E2450 - Achievement Hunter Presents: Grab Bag","description":"Enjoy a sampling of unseen moments from your favorite videos, straight from the cutting room floor!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-grab-bag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a634549-5205-4ca8-bf06-0b05a6a39419/sm/ep9731.jpg","duration":891,"publication_date":"2014-09-25T22:19:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-334","changefreq":"weekly","video":[{"title":"2014:E232 - Destiny Part 2","description":"Geoff, Michael, and Ray are back playing Destiny in Let's Play - Destiny Part 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-334","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50b3d5df-9c8c-484f-aec8-71b0d5f4b103/sm/ep9727.jpg","duration":2480,"publication_date":"2014-09-25T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-soccer","changefreq":"weekly","video":[{"title":"2014:E33 - Soccer","description":"Joel & Adam show you how to play soccer by running off a cliff.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-soccer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fea6a5ac-985e-4e14-a6ce-d80a5833898c/sm/ep9730.jpg","duration":770,"publication_date":"2014-09-25T18:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-destiny-venus-golden-chests","changefreq":"weekly","video":[{"title":"2014:E32 - Destiny - Venus' Golden Chests","description":"Joel is back... But something is... off. Here's how to find the gold chests on Venus.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-destiny-venus-golden-chests","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6a788d5-0222-4b00-934d-5ef63a3aa8d5/sm/ep9729.jpg","duration":137,"publication_date":"2014-09-25T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-71","changefreq":"weekly","video":[{"title":"2014:E43 - Minecraft - Mark Nutt Training","description":"The AH Crew do a little bit of \"Mark Nutt Training\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a12412a3-8c3e-4970-afe0-264dde3286e0/sm/ep9726.jpg","duration":1437,"publication_date":"2014-09-24T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-328","changefreq":"weekly","video":[{"title":"2014:E231 - Halo 3 ODST (Vidmaster Challenge Endure) Attempt 3","description":"Join Gavin, Geoff, Michael, and Jack as they attempt for a third time to achieve the Vidmaster Challenge Endure in Halo 3: ODST.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-328","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46ee5aa4-791d-430b-9664-b4c2668c81f5/sm/ep9721.jpg","duration":5920,"publication_date":"2014-09-24T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-the-missing-number","changefreq":"weekly","video":[{"title":"IA:E7 - The Missing Number","description":"Jeremy and Matt are in Pokemon Red to catch and use the 152nd Pokemon!","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-the-missing-number","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c347fc98-ea01-466f-aa19-4df8cee7c587/sm/ep9720.jpg","duration":277,"publication_date":"2014-09-24T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-50","changefreq":"weekly","video":[{"title":"2014:E38 - Achievement HUNT #48","description":"This week's HUNT brings you more of Jack vs. Gavin playing Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61bd3635-e952-4930-a57c-900f3204aa9b/sm/ep9719.jpg","duration":545,"publication_date":"2014-09-24T18:54:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-50","changefreq":"weekly","video":[{"title":"2014:E38 - Golfing Edition - GO! #48","description":"In the 48th episode of GO!, the first person to get a double bogey, bogey, par, birdie, eagle, hole in one becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8f6130a-a624-4bb8-8e2b-4a289fe54a92/sm/ep9716.jpg","duration":991,"publication_date":"2014-09-23T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-322","changefreq":"weekly","video":[{"title":"2014:E230 - Cloudberry Kingdom Part 8","description":"The AH Crew is back with the eighth installment of Let's Play Cloudberry Kingdom.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-322","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/448d7896-73d8-4b25-a67e-bc802f4c4f2e/sm/ep9715.jpg","duration":1903,"publication_date":"2014-09-23T22:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-320","changefreq":"weekly","video":[{"title":"2014:E229 - Destiny: The Queen's Wrath","description":"Geoff, Ryan, and Gavin play \"The Queen's Wrath\" in Destiny for the Xbox One.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-320","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ecdaf4d-f37f-4f74-96de-77fa998f3c84/sm/ep9714.jpg","duration":1097,"publication_date":"2014-09-23T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-318","changefreq":"weekly","video":[{"title":"2014:E228 - Let's Build in Minecraft - Legends of the Hidden Tower Part 2","description":"Join Lindsay, Kdin, Jeremy, and Matt as they continue building Legends of the Hidden Tower in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-318","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3608e473-d37d-4c71-bbfc-c50ea24dd9a8/sm/ep9713.jpg","duration":1994,"publication_date":"2014-09-23T18:24:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-49","changefreq":"weekly","video":[{"title":"2014:E37 - Destiny","description":"Jack and Geoff bring you five facts over Destiny.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/997fe7c1-f18a-46c7-aeb8-ad56caff85a6/sm/ep9712.jpg","duration":167,"publication_date":"2014-09-23T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-51","changefreq":"weekly","video":[{"title":"2014:E38 - Week #232","description":"The AH guys bring you this week's news. \r\nCommunity Video of the week: Destiny - Ghost Hunter Guide (Tower) - http://bit.ly/1rtyz0k\r\nAH Video of the week: Let's Watch - PT - http://bit.ly/1uE2QZ2","player_loc":"https://roosterteeth.com/embed/ahwu-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/114e47cf-0f9d-43f6-b0c7-0e6c636f29f0/sm/ep9711.jpg","duration":543,"publication_date":"2014-09-22T23:39:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-cheats-in-video-games","changefreq":"weekly","video":[{"title":"2014:E20 - Top 10 Cheats In Video Games","description":"Geoff, Ray, and Michael bring you the top 10 cheats in video games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-cheats-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c22790a3-3b35-4926-a01b-0510dbbae385/sm/ep9710.jpg","duration":324,"publication_date":"2014-09-22T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-309","changefreq":"weekly","video":[{"title":"2014:E227 - GTA V - The Most Dangerous Game X","description":"The AH gang is back playing \"The Most Dangerous Game X\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-309","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c33af090-97d0-42cb-a4cb-c29860355056/sm/ep9708.jpg","duration":2406,"publication_date":"2014-09-22T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-mega-gavins-house","changefreq":"weekly","video":[{"title":"2014:E6 - Mega Gavin's House","description":"Matt and Gavin check out Orex's giant recreation of Gavin's art filled home in Minecraft. If you want to check out the map first hand you can download it here http://bit.ly/1rs28j1 and if you want to submit your own creation to be featured go here and do the thing http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-mega-gavins-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c50a8a89-0bbb-402c-a459-10f2216c4b1b/sm/ep9709.jpg","duration":204,"publication_date":"2014-09-22T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-65","changefreq":"weekly","video":[{"title":"2014:E42 - GTA V - Air Race","description":"Join the AH Crew as they play \"Air Race\" in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b96ca36c-7a0e-40f2-8469-12c2437d7f10/sm/ep9705.jpg","duration":452,"publication_date":"2014-09-19T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-301","changefreq":"weekly","video":[{"title":"2014:E226 - Minecraft - Episode 121 - King Gavin Part 1","description":"Have you ever wondered what kind of king Gavin could be Get ready to have all your questions answered in the first part of Let's Play Minecraft - King Gavin!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-301","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c376ecf6-ce45-427c-bc04-da7d57225020/sm/ep9701.jpg","duration":2770,"publication_date":"2014-09-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-49","changefreq":"weekly","video":[{"title":"2014:E38 - Volume 209","description":"In Fails of the Weak #209, Jack and Geoff bring you fails in FIFA 14, Watch Dogs, FIFA 15, inFamous: Second Son, Destiny, and UFC Undisputed 3.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4886161c-73e2-4a0c-b694-1c962f168c04/sm/ep9703.jpg","duration":155,"publication_date":"2014-09-19T15:50:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lets-watch-pt","changefreq":"weekly","video":[{"title":"2014:E20 - Let's Watch - PT","description":"Geoff, Jack, and Lindsay brave the horrors of PT while the rest of AH watches in delight.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lets-watch-pt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d48d351-8d4f-4443-937d-7a3f6b781ef6/sm/ep9700.jpg","duration":2133,"publication_date":"2014-09-18T23:30:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-299","changefreq":"weekly","video":[{"title":"2014:E225 - Diablo 3 Hardcore","description":"Join Geoff, Jack, Michael, and Ryan as they play Diablo 3 Hardcore.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-299","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0587c6a-0c28-437f-bc9e-341442786cba/sm/ep9699.jpg","duration":2240,"publication_date":"2014-09-18T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-10-narcissus","changefreq":"weekly","video":[{"title":"2014:E10 - Narcissus","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of \"Narcissus.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-10-narcissus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09890b44-7dd5-4a95-92ad-052735a5f749/sm/ep9698.jpg","duration":616,"publication_date":"2014-09-18T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-destiny-the-moons-golden-chests","changefreq":"weekly","video":[{"title":"2014:E31 - Destiny - The Moon's Golden Chests","description":"Joel wouldn't stop talking, so Matt joins Adam in finding the Moon's golden chests in Destiny.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-destiny-the-moons-golden-chests","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13d09a8f-049e-4c7d-8f7c-d5190afa7429/sm/ep9697.jpg","duration":148,"publication_date":"2014-09-18T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-48","changefreq":"weekly","video":[{"title":"2014:E38 - Episode 81: Ryan vs. Jack","description":"Jack, the current holder of the beloved belt, comes face to face with \"mad king\" Ryan in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd27fc47-4401-4716-a0db-480165672845/sm/ep9696.jpg","duration":457,"publication_date":"2014-09-18T19:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-prop-hunt","changefreq":"weekly","video":[{"title":"2014:E30 - Prop Hunt","description":"Jeremy, Matt, Adam, and Joel determine what is a bottle, and what is a man disguised as a bottle, trying to look like the other bottles, without acting suspiciously like a bottle... PROP HUNT!","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-prop-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae84bd60-4117-4912-a740-995b91efb136/sm/ep9695.jpg","duration":1845,"publication_date":"2014-09-18T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-46","changefreq":"weekly","video":[{"title":"2014:E37 - Achievement HUNT #47","description":"This week's Achievement HUNT, brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6940f042-6ebf-4e52-a710-094d9694589e/sm/ep9692.jpg","duration":554,"publication_date":"2014-09-17T23:08:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-61","changefreq":"weekly","video":[{"title":"2014:E41 - Minecraft - Foosball","description":"Join Geoff, Gavin, Lindsay, Michael, Ray and Ryan play foosball in this week's Things to do in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6750a0b2-31d3-451d-9a38-6d36bdc77afa/sm/ep9691.jpg","duration":857,"publication_date":"2014-09-17T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-290","changefreq":"weekly","video":[{"title":"2014:E224 - Destiny: The Crucible","description":"Join Geoff, Gavin, Jack, Ryan, Michael, and Ray as they play with competitive multiplayer in Destiny.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-290","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4066c00e-275d-44f1-8742-5ac7456c7a1a/sm/ep9690.jpg","duration":2147,"publication_date":"2014-09-17T18:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-destiny","changefreq":"weekly","video":[{"title":"IA:E6 - Destiny","description":"Jeremy and Adam E are in Destiny this week snagging two... that's right TWO... Imaginary Achievements.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-destiny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b1331f2-1833-4f4e-8be3-ac8f4a83b707/sm/ep9689.jpg","duration":276,"publication_date":"2014-09-17T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-285","changefreq":"weekly","video":[{"title":"2014:E223 - Mario Kart 8","description":"Join Gavin, Michael, Ray, and Ryan as they compete in Mario Kart 8.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-285","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15ae3f92-b2de-421c-b5d9-5868285cf906/sm/ep9687.jpg","duration":1835,"publication_date":"2014-09-17T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-45","changefreq":"weekly","video":[{"title":"2014:E37 - Deliver a Car Edition - GO! #47","description":"In the 47th episode of GO!, the first person to deliver a car in GTA V becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7849316e-ef08-454e-b883-dc42911d95f9/sm/ep9684.jpg","duration":735,"publication_date":"2014-09-16T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-280","changefreq":"weekly","video":[{"title":"2014:E222 - Let's Build in Minecraft - Legends of the Hidden Tower Part 1","description":"Lindsay, Kdin, Jeremy, and Matt immerse themselves in Lindsay's Minecraft world and build for Legends of the Hidden Tower.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-280","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a5094c9-2f91-4780-9c85-d323a2c423ad/sm/ep9683.jpg","duration":2162,"publication_date":"2014-09-16T17:08:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-44","changefreq":"weekly","video":[{"title":"2014:E36 - Variety Pack #7","description":"Jack and Ray bring you the seventh Five Facts Variety Pack and cover Rockstar Table Tennis, Team Fortress 2, Killer Instinct, Dead Rising 3, and Minecraft.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1992f5b9-76cb-449b-aac9-4403a6bf0e56/sm/ep9682.jpg","duration":194,"publication_date":"2014-09-16T16:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-45","changefreq":"weekly","video":[{"title":"2014:E37 - Week #231","description":"The AH Crew bring you this week's news.\r\nVideo of the Week: http://bit.ly/1t0kmbA Community Video of the Week: http://bit.ly/1sc1vWL","player_loc":"https://roosterteeth.com/embed/ahwu-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/124e3029-8876-4969-9289-b3aeff69e32c/sm/ep9679.jpg","duration":473,"publication_date":"2014-09-15T19:08:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-puzzle-games","changefreq":"weekly","video":[{"title":"2014:E19 - Top 10 Puzzle Games","description":"Geoff, Ray, and Michael bring you the top 10 puzzle games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-puzzle-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb05469a-735f-4641-b661-16db7e69a36f/sm/ep9677.jpg","duration":318,"publication_date":"2014-09-15T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-271","changefreq":"weekly","video":[{"title":"2014:E221 - GTA V - Bike N' Chat","description":"The AH crew take a day off from \"accomplishing\" things and mess around with Bikes, Firetrucks and Jets in a very podcast-y Let's Play.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-271","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2775249-84b3-43d6-8fc0-bcb6b6073423/sm/ep9676.jpg","duration":3669,"publication_date":"2014-09-15T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-56","changefreq":"weekly","video":[{"title":"2014:E40 - GTA V - Land Race","description":"The Achievement Hunter Crew plays \"Land Race\" in this week's Things to do in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb44bab5-cc56-4497-8a48-ff2cd0aba819/sm/ep9670.jpg","duration":450,"publication_date":"2014-09-12T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-256","changefreq":"weekly","video":[{"title":"2014:E220 - Minecraft - Episode 120 - Monopoly Part 3","description":"Geoff, Jack, Michael, Ray, Gavin, and (hoarse voiced) Ryan are back with the third installment of Let's Play Minecraft - Monopoly.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-256","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/491a8479-7d96-4c72-9958-3f6b0aa3fe7e/sm/ep9667.jpg","duration":4194,"publication_date":"2014-09-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-41","changefreq":"weekly","video":[{"title":"2014:E37 - Volume 208","description":"In Fails of the Weak #208, Jack and Geoff bring you fails in Madden NFL 15, The Sims 4, 7 Days to Die, Minecraft, Grand Theft Auto V, and Destiny.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ee7c176-3a4d-4d7b-9aa3-21f53a71166b/sm/ep9665.jpg","duration":169,"publication_date":"2014-09-12T14:59:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-41","changefreq":"weekly","video":[{"title":"2014:E37 - Episode 80: Jack vs. Ray","description":"Ray and Jack jump back into the ring to compete in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7ee69b4-5ccc-43e6-b090-c34af7d6814b/sm/ep9661.jpg","duration":1215,"publication_date":"2014-09-11T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-251","changefreq":"weekly","video":[{"title":"2014:E219 - Destiny","description":"Join Geoff, Michael, and Ray as they finally play Destiny.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-251","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dc0439e-5dbe-4e34-bc88-7d423e665e1c/sm/ep9663.jpg","duration":2958,"publication_date":"2014-09-11T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-23","changefreq":"weekly","video":[{"title":"2014:E27 - Red Wire","description":"Michael attempts to play FTL, but with no luck gives up and plays Red Wire.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfd0e325-9a87-408e-910f-357f1d756898/sm/ep9662.jpg","duration":339,"publication_date":"2014-09-11T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-murder","changefreq":"weekly","video":[{"title":"2014:E29 - Murder","description":"Jeremy, Matt, Adam, and Joel show you how to murder each other. They also made this video. I've used that joke like nine times already... Whatever, watch with your face.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-murder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ddcbf35-13df-4e09-9e3e-933355a07c6a/sm/ep9660.jpg","duration":1617,"publication_date":"2014-09-11T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-destiny-earths-golden-chests","changefreq":"weekly","video":[{"title":"2014:E28 - Destiny - Earth's Golden Chests","description":"Joel shows you how to find the five golden chests on Earth while Adam's eye falls out.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-destiny-earths-golden-chests","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3d122a7-5b3e-4d4d-a679-844e77f092c6/sm/ep9659.jpg","duration":270,"publication_date":"2014-09-11T17:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-52","changefreq":"weekly","video":[{"title":"2014:E39 - Minecraft - Bumper Boats","description":"The AH Guys are back with more Things to do in Minecraft as they play \"Bumper Boat.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a01359b4-b19f-4c30-853e-afbbc7449e6f/sm/ep9657.jpg","duration":1158,"publication_date":"2014-09-10T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-monochrome","changefreq":"weekly","video":[{"title":"IA:E5 - Monochrome","description":"Jeremy and Lindsay go back into Yoshi's Story on the N64 to snag the Monochrome Achievement.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-monochrome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/109b817d-0e46-4fb2-822b-ef0a700f7eb7/sm/ep9655.jpg","duration":209,"publication_date":"2014-09-10T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-241","changefreq":"weekly","video":[{"title":"2014:E218 - Minecraft - Episode 119.5 - Xbox One Achievement Race","description":"Join Geoff, Gavin, Michael, Ray, Jack, and Ryan as they compete to get the most achievements in Minecraft for the Xbox One.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-241","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c7656c4-06ff-40d7-9344-9e6dcd61cb92/sm/ep9654.jpg","duration":3727,"publication_date":"2014-09-10T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-239","changefreq":"weekly","video":[{"title":"2014:E217 - UFC","description":"The AH crew try something new and have a tournament in UFC to see who's the best at punching, also hugging.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-239","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99234362-d50c-477b-a6af-8e256d9649d7/sm/ep9652.jpg","duration":1393,"publication_date":"2014-09-09T23:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-26","changefreq":"weekly","video":[{"title":"2014:E30 - Trials Files #118","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":116,"publication_date":"2014-09-09T22:30:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-236","changefreq":"weekly","video":[{"title":"2014:E216 - Let's Build in Minecraft - Top Chef Part 3","description":"Join Lindsay, Kdin, Jeremy, and Matt in the third installment of Let's Build in Minecraft - Top Chef.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-236","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/708d2c36-9580-4a79-a61c-e4eede42ddda/sm/ep9650.jpg","duration":1947,"publication_date":"2014-09-09T19:15:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-38","changefreq":"weekly","video":[{"title":"2014:E36 - Level Five Edition - GO! #46","description":"In the 46th episode of GO!, the first person to get to level five in three different video games, where one game has to be retail, becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e345f2dd-e689-427f-b79e-e18effcc9c3f/sm/ep9649.jpg","duration":665,"publication_date":"2014-09-09T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-37","changefreq":"weekly","video":[{"title":"2014:E35 - Bayonetta","description":"Jack and Geoff bring you five facts over Bayonetta.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83333cf6-7abe-4b28-a749-eb00b27612bb/sm/ep9648.jpg","duration":204,"publication_date":"2014-09-09T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-38","changefreq":"weekly","video":[{"title":"2014:E36 - Week #230","description":"The AH Crew bring you this week's news.\r\nVideo of the Week: http://bit.ly/1olhFff\r\nCommunity Video of the Week: http://bit.ly/1ugfQ99","player_loc":"https://roosterteeth.com/embed/ahwu-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3830697-59d4-46db-a732-e05a5340f320/sm/ep9647.jpg","duration":484,"publication_date":"2014-09-08T21:08:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-female-protagonists","changefreq":"weekly","video":[{"title":"2014:E18 - Top 10 Female Protagonists","description":"Geoff, Ray, and Michael go over the top 10 female protagonists in video games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-female-protagonists","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88b9feb7-6da0-4c51-b8e9-ae139d783a98/sm/ep9646.jpg","duration":336,"publication_date":"2014-09-08T21:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-229","changefreq":"weekly","video":[{"title":"2014:E215 - GTA V - Flight Missions","description":"The Achievement Hunter Crew get on their aircrafts as they play \"Flight Missions\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-229","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3adf5842-249a-43ee-bb6e-20ab807bfbd8/sm/ep9644.jpg","duration":2319,"publication_date":"2014-09-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-a-link-to-the-past","changefreq":"weekly","video":[{"title":"2014:E4 - A Link to the Past","description":"Matt and Michael are back with Megacraft! This week we check out Sealy85' recreation of A Link to the Past's Light World. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-a-link-to-the-past","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeb49174-fda9-4175-bc66-8f33da4c57b2/sm/ep9645.jpg","duration":247,"publication_date":"2014-09-08T19:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-48","changefreq":"weekly","video":[{"title":"2014:E38 - GTA V - Corpse Catch","description":"The AH Crew is back showing you how to play \"Corpse Catch\" in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80646fb4-9c42-47a8-adca-4735bcdef115/sm/ep9641.jpg","duration":1074,"publication_date":"2014-09-05T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-minecraft-achievement-city-360-vs-one-comparison","changefreq":"weekly","video":[{"title":"2014:E2449 - Achievement Hunter Presents - Minecraft - Achievement City 360 vs ONE Comparison","description":"Geoff and Gavin compare Achievement City in Xbox 360 vs Xbox ONE.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-minecraft-achievement-city-360-vs-one-comparison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5085d7c9-e3aa-4381-a9b6-30934279334e/sm/ep9640.jpg","duration":193,"publication_date":"2014-09-05T20:16:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-222","changefreq":"weekly","video":[{"title":"2014:E214 - Minecraft - Episode 119 - The Pit X","description":"Geoff, Jack, Gavin, Michael, Ryan, and Ray return to the pit in Let's Play Minecraft - The Pit X.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-222","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ac9c058-6fe7-495b-810e-d981dc2c11f0/sm/ep9638.jpg","duration":2948,"publication_date":"2014-09-05T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-36","changefreq":"weekly","video":[{"title":"2014:E36 - Volume 207","description":"In Fails of the Weak #207, Jack and Geoff bring you fails in DiRT 3, Watch Dogs, Assassin's Creed IV, Surgeon Simulator: AE, and Outlast.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f8e59ef-42d8-41dd-acbf-032509a30e8a/sm/ep9636.jpg","duration":140,"publication_date":"2014-09-05T14:11:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-9-surgeon-simulator-aande-anniversary-edition","changefreq":"weekly","video":[{"title":"2014:E9 - Surgeon Simulator A&E Anniversary Edition","description":"Dr. Jones and Dr. Free are back with more Play Pals! This week they immerse themselves in the world of \"Surgeon Simulator A&E Anniversary Edition.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-9-surgeon-simulator-aande-anniversary-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84730e56-d955-4a0e-9063-2e9a319a4c46/sm/ep9635.jpg","duration":976,"publication_date":"2014-09-04T21:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-212","changefreq":"weekly","video":[{"title":"2014:E213 - The Last of Gus","description":"Join Gus, Ryan, Michael, Gavin...and Gus has they play The Last of Us Remastered.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eb5f893-534b-4f05-b51f-8afe607d15ee/sm/ep9631.jpg","duration":3290,"publication_date":"2014-09-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-35","changefreq":"weekly","video":[{"title":"2014:E36 - Episode 79: Geoff vs. Ray","description":"Ray continues being the champion and it's Geoff's turn to challenge him in this week's VS.","player_loc":"https://roosterteeth.com/embed/vs-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/083232cb-11f0-4be6-b2e3-b2409faa6f88/sm/ep9634.jpg","duration":286,"publication_date":"2014-09-04T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-metro-2033-redux-manhattan-project-raider-dj-artyom-guides","changefreq":"weekly","video":[{"title":"2014:E2448 - Metro 2033 Redux - Manhattan Project, Raider, DJ Artyom Guides","description":"Ray shows you how to get the \"Manhattan Project\", \"Raider, & \"DJ Artyom\" achievements in Metro 2033 Redux for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-metro-2033-redux-manhattan-project-raider-dj-artyom-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6d69583-6558-40de-af4a-ce84d90b967f/sm/ep9633.jpg","duration":192,"publication_date":"2014-09-04T18:16:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-p-t","changefreq":"weekly","video":[{"title":"2014:E27 - P.T.","description":"Joel just wants to be a peaceful person. He wants to walk around, go to the grocery store, buy protein bars, maybe some orange juice, go to his car, go back to his place, watch television, and play Minecraft. Instead, they ruin Kerry's day.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-p-t","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6daa0413-6e7d-4504-9bd6-18812f06c948/sm/ep9632.jpg","duration":3223,"publication_date":"2014-09-04T17:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-42","changefreq":"weekly","video":[{"title":"2014:E37 - Minecraft - Incredible Disappearing Creeper","description":"Geoff, Michael, Ryan, Jack, and Gavin show you how to play the Incredible Disappearing Creeper in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7cddc47-0c99-4ede-8b71-d7adb2d61b0e/sm/ep9628.jpg","duration":702,"publication_date":"2014-09-03T20:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-204","changefreq":"weekly","video":[{"title":"2014:E212 - Halo 3 ODST (Vidmaster Challenge Endure) Attempt 2","description":"Gavin, Geoff, Michael, and Jack are back with their second attempt in achieving the Vidmaster Challenge Endure in Halo 3: ODST.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-204","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21f0d82a-667b-48e2-8b44-596a5fb893b2/sm/ep9627.jpg","duration":1975,"publication_date":"2014-09-03T19:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-31","changefreq":"weekly","video":[{"title":"2014:E35 - Achievement HUNT #45","description":"This week's Achievement HUNT, brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d982fa-f056-4d23-bada-f3127a7dddae/sm/ep9626.jpg","duration":514,"publication_date":"2014-09-03T19:07:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-there-are-no-brakes","changefreq":"weekly","video":[{"title":"IA:E4 - There Are No Brakes","description":"Jeremy and Ryan jump into GTA V and jump into some trains in this week's Imaginary Achievement.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-there-are-no-brakes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb8529d9-6d67-435b-8947-806863eb5551/sm/ep9625.jpg","duration":215,"publication_date":"2014-09-03T18:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-202","changefreq":"weekly","video":[{"title":"2014:E211 - Fibbage","description":"Geoff, Ray, Gavin, Ryan, Michael, and Lindsay practice lying as they play Fibbage.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-202","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e7c259-0b87-4840-84ea-6621d18747bc/sm/ep9623.jpg","duration":1856,"publication_date":"2014-09-02T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-201","changefreq":"weekly","video":[{"title":"2014:E210 - Let's Build in Minecraft - Top Chef Part 2","description":"Lindsay, Kdin, Jeremy, and Matt are back with the second part of Let's Build in Minecraft - Top Chef.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51587218-f7d3-4847-bb76-c4e2767933b4/sm/ep9622.jpg","duration":1931,"publication_date":"2014-09-02T21:01:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-32","changefreq":"weekly","video":[{"title":"2014:E34 - Titanfall","description":"Jack and Geoff bring you five facts over Titanfall.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17f4cc9c-0df6-420e-aca0-202f49df1166/sm/ep9621.jpg","duration":218,"publication_date":"2014-09-02T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-22","changefreq":"weekly","video":[{"title":"2014:E29 - Trials Files #117","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4733fdc1-b8e8-4870-b3bc-6580b218a172/sm/ep9620.jpg","duration":98,"publication_date":"2014-09-02T12:47:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-32","changefreq":"weekly","video":[{"title":"2014:E35 - Beat a Boss Edition - GO! #45","description":"In the 45th episode of GO!, the first person to beat a boss becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e308f524-1890-478f-9067-6559a48eaea6/sm/ep9619.jpg","duration":337,"publication_date":"2014-09-02T12:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-32","changefreq":"weekly","video":[{"title":"2014:E35 - Week #229","description":"Geoff and Jack bring you this week's news.\r\nVideo of the Week: Surgeon Simulator: A&E Anniversary Edition Trophy Guide - http://bit.ly/1vBygmP","player_loc":"https://roosterteeth.com/embed/ahwu-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/677bb82c-9bb9-4af2-897a-49c4be84b781/sm/ep9618.jpg","duration":385,"publication_date":"2014-09-01T15:21:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-193","changefreq":"weekly","video":[{"title":"2014:E209 - GTA V - Free Play Skyhigh Part 2","description":"Geoff, Jack, Michael, Gavin, and Ryan are back with the second part of Let's Play - Free Play Skyhigh in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-193","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38025338-af72-4967-bb03-fe5b194caf77/sm/ep9616.jpg","duration":1936,"publication_date":"2014-09-01T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-september-2014","changefreq":"weekly","video":[{"title":"2014:E19 - Coming Soon - September 2014","description":"Kdin is back with a ton of new games and other information for the month of September. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-september-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6122dc5d-2b19-4ebd-a23a-c00e24066835/sm/ep9615.jpg","duration":385,"publication_date":"2014-09-01T01:34:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-luigis-mansion","changefreq":"weekly","video":[{"title":"2014:E3 - Luigi's Mansion","description":"Matt and Kerry tour KnuckleHead's spooky recreation of Luigi's Mansion. Vacuums not included. If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-luigis-mansion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c32db41e-a6c0-44a3-9b46-a21d8b153732/sm/ep9614.jpg","duration":222,"publication_date":"2014-09-01T01:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-playstation-3-exclusives","changefreq":"weekly","video":[{"title":"2014:E17 - Top 10 PlayStation 3 Exclusives","description":"Geoff, Michael, and Ryan go over the Top 10 PlayStation 3 Exclusives.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-playstation-3-exclusives","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d696c3dc-476f-49c1-b5a9-23999d19565f/sm/ep9613.jpg","duration":364,"publication_date":"2014-09-01T00:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-181","changefreq":"weekly","video":[{"title":"2014:E208 - Minecraft - Episode 118 - Galacticraft Part 4","description":"2014:E208 - Minecraft - Episode 118 - Galacticraft Part 4","player_loc":"https://roosterteeth.com/embed/lets-play-2014-181","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97232860-d8f9-46d0-ba39-5fbc452cdb31/sm/ep9607.jpg","duration":2459,"publication_date":"2014-08-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-37","changefreq":"weekly","video":[{"title":"2014:E36 - GTA V - Downhill Slam","description":"Join the AH Crew as they show you how to play \"Downhill Slam\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ac744c4-f255-4287-b650-fc993c4fc641/sm/ep9609.jpg","duration":1045,"publication_date":"2014-08-29T02:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-30","changefreq":"weekly","video":[{"title":"2014:E35 - Volume 206","description":"In Fails of the Weak #206, Jack and Geoff bring you fails in NBA 2K14, Titanfall, Grand Theft Auto V, Last of Us Remastered, and Battlefield 4.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56f58805-2c4b-4d4f-b15f-1609c1df60a1/sm/ep9608.jpg","duration":157,"publication_date":"2014-08-29T02:54:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-175","changefreq":"weekly","video":[{"title":"2014:E207 - Payday 2 Part 2","description":"Join Jack, Ryan, Ray, and Gavin in the second installment of Let's Play - Payday 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-175","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37133bd1-59a0-453d-8c27-a99ac5ae358d/sm/ep9601.jpg","duration":2693,"publication_date":"2014-08-28T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-hohokum","changefreq":"weekly","video":[{"title":"2014:E26 - Hohokum","description":"Joel and Adam take a calm and relaxing journey through the world of Hohokum. Thank you to the PlayStation people for sponsoring this video.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-hohokum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbdc1f4d-424f-45ea-aa96-a42b4aa2cf34/sm/ep9604.jpg","duration":1570,"publication_date":"2014-08-28T17:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-29","changefreq":"weekly","video":[{"title":"2014:E35 - Episode 78: Ray vs. Lindsay","description":"This week's VS brings you Ray vs. Lindsay!","player_loc":"https://roosterteeth.com/embed/vs-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba6928f7-d4f3-498d-bdd9-7badd08dd2a9/sm/ep9603.jpg","duration":773,"publication_date":"2014-08-28T17:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-25","changefreq":"weekly","video":[{"title":"2014:E34 - Achievement HUNT #44","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df8876ce-cca3-4b18-adf3-9de2403a2ceb/sm/ep9600.jpg","duration":182,"publication_date":"2014-08-27T19:26:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-161","changefreq":"weekly","video":[{"title":"2014:E206 - 3D Ultra MiniGolf Adventures 2 Part 1","description":"Geoff, Michael, Ray, and Ryan hit the driving ranges as they play 3D Ultra MiniGolf Adventures 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b092fc3-6f01-4138-8c30-3615efbd4219/sm/ep9594.jpg","duration":4111,"publication_date":"2014-08-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-33","changefreq":"weekly","video":[{"title":"2014:E35 - Minecraft - Cat Fountain","description":"Geoff, Michael, and Lindsay show you the \"Cat Fountain\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5027def3-976d-4668-9c39-62fe684e8cdc/sm/ep9599.jpg","duration":108,"publication_date":"2014-08-27T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-what-pikachu-do","changefreq":"weekly","video":[{"title":"IA:E3 - What Pikachu Do","description":"Jeremy and Kerry take some pictures and remember simpler times in Pokemon Snap for this week's Imaginary Achievement.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-what-pikachu-do","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9823d29c-9ad3-4365-8d2a-e490e44ea9d6/sm/ep9598.jpg","duration":305,"publication_date":"2014-08-27T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hotline-miami-combo-king-trophy-guide","changefreq":"weekly","video":[{"title":"2014:E2444 - Hotline Miami - Combo King Trophy Guide","description":"Ray and Michael show you how to get the \"Combo King\" trophy in Hotline Miami for the Playstation 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hotline-miami-combo-king-trophy-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/109d7fb7-3609-4faf-9923-ed3b8235d423/sm/ep9596.jpg","duration":91,"publication_date":"2014-08-27T17:55:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-160","changefreq":"weekly","video":[{"title":"2014:E205 - Let's Build in Minecraft - Top Chef Part 1","description":"Join Kdin, Lindsay, Matt, and Jeremy as they build \"Top Chef\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/900b4196-0b60-49a9-881b-6d1baa143a1c/sm/ep9592.jpg","duration":2081,"publication_date":"2014-08-26T19:20:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-157","changefreq":"weekly","video":[{"title":"2014:E204 - Worms Battlegrounds Part 3","description":"Geoff, Jack, Michael, and Gavin return with the third installment of Let's Play - Worms Battlegrounds.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa289fcf-323a-4f0c-9f15-e3db2553cae8/sm/ep9591.jpg","duration":3233,"publication_date":"2014-08-26T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-21","changefreq":"weekly","video":[{"title":"2014:E34 - Kill a Vampire, Zombie, and Werewolf - GO! #44","description":"In the 44th episode of GO!, the first person to kill a vampire, a zombie, and a werewolf in three different games (but Castlevania) becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/598f5a06-3e4d-4208-a503-9d261a8483d5/sm/ep9590.jpg","duration":758,"publication_date":"2014-08-26T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-24","changefreq":"weekly","video":[{"title":"2014:E33 - Halo: Spartan Assault","description":"Jack and Geoff bring you five facts over Halo: Spartan Assault.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc3d1bc5-7047-465c-81d4-d140ea34373c/sm/ep9588.jpg","duration":191,"publication_date":"2014-08-26T14:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-16","changefreq":"weekly","video":[{"title":"2014:E28 - Trials Files #116","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66323cd1-e2f2-4e03-ae47-8f4921f50873/sm/ep9586.jpg","duration":95,"publication_date":"2014-08-26T14:31:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-147","changefreq":"weekly","video":[{"title":"2014:E203 - GTA V - Flight Schooled","description":"Geoff, Ryan, Jack, Ray, Michael, and Gavin have some free play fun with the flight school dlc in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76eedf23-1451-4824-a99b-21dee7df09fb/sm/ep9584.jpg","duration":3686,"publication_date":"2014-08-25T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-24","changefreq":"weekly","video":[{"title":"2014:E34 - Week #228","description":"The AH crew bring you this week's news.\r\nVideo of the Week: Imaginary Achievements - Bruticorn http://bit.ly/1qcWDm8\r\nCommunity Video of the Week: Things to do in. . . Watch Dogs - Bailout! - http://bit.ly/1mJVeji","player_loc":"https://roosterteeth.com/embed/ahwu-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8a88cf1-c47c-4da9-994b-54dc3d3c5b25/sm/ep9583.jpg","duration":584,"publication_date":"2014-08-25T20:10:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-mega-rays-house","changefreq":"weekly","video":[{"title":"2014:E2 - Mega Ray's House","description":"Matt and Ray are back for MegaCraft! This week we check out Orex's giant tribute to Ray's home away from home in Minecraft.\n\nIf you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab If you want to download this map for your own enjoyment click here: http://bit.ly/1qiDEYj","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-mega-rays-house","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60028ca9-e1e7-4822-af18-f7f586804315/sm/ep9581.jpg","duration":181,"publication_date":"2014-08-25T17:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-134","changefreq":"weekly","video":[{"title":"2014:E202 - Minecraft - Episode 117 - Halo: CTF","description":"The Achievement Hunter guys play capture the flag in the Halo mash up for this week's Let's Play Minecraft","player_loc":"https://roosterteeth.com/embed/lets-play-2014-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3262d4b0-e862-4fc5-8c08-4f106bc1de0c/sm/ep9575.jpg","duration":2386,"publication_date":"2014-08-22T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-22","changefreq":"weekly","video":[{"title":"2014:E34 - Volume 205","description":"In Fails of the Weak #205, Ryan and Geoff bring you fails in Madden NFL 25, Watch Dogs, and Last of Us Remastered.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd8a7159-8eb6-49e5-b086-878a052ff854/sm/ep9573.jpg","duration":154,"publication_date":"2014-08-22T15:48:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-128","changefreq":"weekly","video":[{"title":"2014:E201 - Mario Party 8: DK's Treetop Temple Part 2","description":"The AH Crew is back playing the second part to Let's Play - Mario Party 8: DK's Treetop Temple.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afe50cdf-de66-4354-84ae-eb582b4e96df/sm/ep9572.jpg","duration":3291,"publication_date":"2014-08-22T01:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-13","changefreq":"weekly","video":[{"title":"2014:E26 - Super Amazing Wagon Adventure Turbo","description":"Michael is back playing Super Amazing Wagon Adventure Turbo.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa3df59e-d6ff-4a81-8b5e-a6978666ec3b/sm/ep9571.jpg","duration":394,"publication_date":"2014-08-21T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-taze","changefreq":"weekly","video":[{"title":"2014:E25 - Taze","description":"In this video, Adam & Joel *TTZZZTTT* OW GET THAT THE FUCK OFF ME--","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-taze","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/931a2667-c6e8-4968-a870-a982a8315bec/sm/ep9570.jpg","duration":292,"publication_date":"2014-08-21T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-21","changefreq":"weekly","video":[{"title":"2014:E34 - Episode 77: Ray vs. Gavin","description":"Was Gavin's last week win a fluke or will he continue winning after being challenged by the VS's master Ray Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50dd8be8-07ea-4f31-9c45-4b9600514a4d/sm/ep9569.jpg","duration":451,"publication_date":"2014-08-21T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-120","changefreq":"weekly","video":[{"title":"2014:E200 - GoldenEye: Source","description":"The AH Crew is back playing Golden Eye: Source for Let's Play Wednesday.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb175b88-abcd-4b4c-8320-30b2ff133622/sm/ep9567.jpg","duration":2321,"publication_date":"2014-08-20T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-17","changefreq":"weekly","video":[{"title":"2014:E33 - Achievement HUNT #43","description":"This week's Achievement HUNT has almost all of the AH guys (but Ryan) compete playing \"golf.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaadf07f-f69f-42b8-b701-95558b587d6c/sm/ep9566.jpg","duration":555,"publication_date":"2014-08-20T20:38:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-accepts-the-ice-bucket-challenge","changefreq":"weekly","video":[{"title":"2014:E2441 - Achievement Hunter Accepts The Ice Bucket Challenge","description":"We challenge Inside Gaming, Nicolas Cage, Queen Latifah, and ProJared.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-accepts-the-ice-bucket-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce617397-48be-4d4e-99de-3d9b316c0941/sm/ep9565.jpg","duration":298,"publication_date":"2014-08-20T17:12:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-imaginary-achievements-bruticorn","changefreq":"weekly","video":[{"title":"IA:E2 - Bruticorn","description":"Jeremy and Jack relive an old Achievement Hunter tradition, and make a Bruticorn in Halo 3.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-imaginary-achievements-bruticorn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7d1d36c-7c44-4559-8569-1508e3518a49/sm/ep9562.jpg","duration":191,"publication_date":"2014-08-20T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-23","changefreq":"weekly","video":[{"title":"2014:E34 - GTA V - Roller Coaster Wars","description":"The Achievement Hunter guys use a roller coaster as a course to race their motorcycles in Things to do in Grand Theft Auto V - Roller Coaster Wars.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15bb6d63-5c28-47c3-9f9b-e4fabb008a7b/sm/ep9561.jpg","duration":301,"publication_date":"2014-08-20T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-109","changefreq":"weekly","video":[{"title":"2014:E199 - Let's Build in Minecraft - Storm the Tower","description":"Follow Gavin and Geoff and stroll down memory lane as they build \"Storm the Tower\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/530a8a7a-1882-4339-abe1-7a096be40f8f/sm/ep9560.jpg","duration":3405,"publication_date":"2014-08-20T01:52:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-17","changefreq":"weekly","video":[{"title":"2014:E32 - Halo 4 Part 2","description":"Jack and Ray are back with the second installment of Five Facts - Halo 4.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88517c7b-297b-40a6-a965-d74e0a6211e0/sm/ep9558.jpg","duration":172,"publication_date":"2014-08-19T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-17","changefreq":"weekly","video":[{"title":"2014:E33 - One Thousand Dollars - GO! #43","description":"In the 43rd episode of GO!, the first person to win a thousand dollars gambling becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e5fb144-049c-4263-a88f-22bb75e18986/sm/ep9557.jpg","duration":580,"publication_date":"2014-08-19T18:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-105","changefreq":"weekly","video":[{"title":"2014:E198 - Worms Battlegrounds Part 2","description":"Geoff, Gavin, Ray, and, Michael are back with the second installment of Let's Play - Worms Battlegrounds.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59325b86-1199-4677-ae20-257ad1015384/sm/ep9556.jpg","duration":2282,"publication_date":"2014-08-19T18:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-17","changefreq":"weekly","video":[{"title":"2014:E33 - Week #227","description":"The AH crew bring you this week's news.\r\nVideo of the Week: Play Pals: Five Nights at Freddy's - http://bit.ly/1py76JJ\r\nCommunity Video of the Week: Countdown - Top 5 Community Hunter Videos - http://ah.roosterteeth.com/archive/id=9551","player_loc":"https://roosterteeth.com/embed/ahwu-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bf400e3-dc75-4530-9f58-7ec6d9c143f8/sm/ep9555.jpg","duration":598,"publication_date":"2014-08-18T21:12:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/megacraft-megacraft-megacraft-forgetree","changefreq":"weekly","video":[{"title":"2014:E1 - ForgeTree","description":"Matt and Geoff relaunch MegaCraft by checking out DataDrainer7's incredibly large ForgeTree! If you want us to check out your map to be featured head to the group and submit your map here: http://bit.ly/1qkJXab","player_loc":"https://roosterteeth.com/embed/megacraft-megacraft-megacraft-forgetree","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ac65509-6f63-43fc-9220-4d5fad07593c/sm/ep9554.jpg","duration":212,"publication_date":"2014-08-18T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-101","changefreq":"weekly","video":[{"title":"2014:E197 - GTA V - CarDuckEn","description":"AH tries to break Geoff's mind while assembling the perfect CarDuckEn sandwich.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96401f8c-0967-4a39-94bf-6a5493330a5c/sm/ep9553.jpg","duration":2509,"publication_date":"2014-08-18T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-community-hunter-videos","changefreq":"weekly","video":[{"title":"2014:E15 - Top 5 Community Hunter Videos","description":"This week's Countdown brings you the top five Community Hunter Videos.\n\n#1. This is...Japan World Cup 3 - http://bit.ly/1md4GeR\n#2. MegaCraft- Bonus Episode - The Power House - http://bit.ly/1kkri0U\n#3. Things to do in... Assassin's Creed 3 - Bait 7 Switch - http://bit.ly/1v9fgZI\n#4. Things to do in... Grand Theft Auto V - Messin' With Cops - http://bit.ly/1v9fpwk\n#5. Things to do in... Halo 4 - Blue Rainbows - http://bit.ly/Yq2R93","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-community-hunter-videos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b94b1ef0-3a2d-432f-b59f-33f50f979bdd/sm/ep9551.jpg","duration":169,"publication_date":"2014-08-18T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-97","changefreq":"weekly","video":[{"title":"2014:E196 - Left 4 Dead 2 Podcast Crew","description":"Blaine, Burnie, Gavin and Gus attempt Hard Rain in Left 4 Dead 2 on the highest difficulty possible. Game is using the Red vs Blue character mod:\nhttp://steamcommunity.com/sharedfiles/filedetails/...","player_loc":"https://roosterteeth.com/embed/lets-play-2014-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3cbbbd2-ea73-4236-9179-0a961c48c658/sm/ep9549.jpg","duration":5143,"publication_date":"2014-08-16T19:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-94","changefreq":"weekly","video":[{"title":"2014:E195 - Titanfall Part 7","description":"The AH guys are back with the seventh installment of Let's Play - Titanfall.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7238e4eb-604f-444d-9112-127034c89550/sm/ep9548.jpg","duration":2125,"publication_date":"2014-08-16T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-let-s-play-2-62","changefreq":"weekly","video":[{"title":"2015:E1 - Minecraft - Episode 116 - Storm the Tower: Gents Attack","description":"The Achievement Hunter Gents, with all of their experience and wisdom, attempt to one up the AH Lads in Let's Play Minecraft - Storm the Tower: Gents Attack.","player_loc":"https://roosterteeth.com/embed/lets-play-let-s-play-2-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee080e8-88db-4f58-b549-718e4566a0d6/sm/ep9545.jpg","duration":3319,"publication_date":"2014-08-15T19:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-86","changefreq":"weekly","video":[{"title":"2014:E194 - Mario Party 8: DK's Treetop Temple Part 1","description":"Join Ryan, Gavin, Michael, and Ray as they play Mario Party 8: DK's Treetop Temple.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f34e25f9-84f6-4ca2-ad08-43d5b5bd8877/sm/ep9544.jpg","duration":3007,"publication_date":"2014-08-15T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-15","changefreq":"weekly","video":[{"title":"2014:E33 - Volume 204","description":"In Fails of the Weak #204, Ryan and Ray bring you fails in Battlefield 4, Titanfall, FIFA 14, Last of Us Remastered, and GTA IV.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/388393ee-5f9b-42c0-88eb-47dc92282bd9/sm/ep9543.jpg","duration":116,"publication_date":"2014-08-15T17:31:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-84","changefreq":"weekly","video":[{"title":"2014:E193 - Castle Crashers Part 2","description":"Michael and Lindsay are back with the second installment of Let's Play - Castle Crashers.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28e1fdac-bdc6-4826-b9e6-9c2162c93bd5/sm/ep9542.jpg","duration":2653,"publication_date":"2014-08-15T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-slap","changefreq":"weekly","video":[{"title":"2014:E24 - Slap","description":"Joel and Adam slap the crap out of each other.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-slap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07ee004a-8a16-4f30-91f8-a7d92f500488/sm/ep9539.jpg","duration":1240,"publication_date":"2014-08-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-14","changefreq":"weekly","video":[{"title":"2014:E33 - Episode 76: Gavin vs. Ryan","description":"Ryan has been the VS champion for two weeks in a row. Will Gavin's game pick give him an advantage and become the new champion Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c57d43f7-1c84-47bf-aeb6-b419be21b3cc/sm/ep9540.jpg","duration":551,"publication_date":"2014-08-14T16:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-8-five-nights-at-freddys","changefreq":"weekly","video":[{"title":"2014:E8 - Five Nights At Freddy's","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of \"Five Nights At Freddy's.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-8-five-nights-at-freddys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35e8f255-56a6-4f2c-831c-3796350118f4/sm/ep9536.jpg","duration":1028,"publication_date":"2014-08-14T16:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-71","changefreq":"weekly","video":[{"title":"2014:E192 - Halo 3 ODST (Vidmaster Challenge Endure)","description":"Gavin, Geoff, Michael, and Jack play Halo 3 ODST and as they attempt to achieve the Vidmaster Challenge Endure.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fc9970a-d39d-491c-b870-25c8d9129d07/sm/ep9533.jpg","duration":2289,"publication_date":"2014-08-13T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/imaginary-achievements-imaginary-achievements-title-imaginary-achievements-youve-got-a-friend-in-me","changefreq":"weekly","video":[{"title":"IA:E1 - You've Got a Friend in Me","description":"Jeremy, Matt, and Kdin snag the first ever Imaginary Achievement in Rampage World Tour.","player_loc":"https://roosterteeth.com/embed/imaginary-achievements-imaginary-achievements-title-imaginary-achievements-youve-got-a-friend-in-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/281c6014-5736-4b8b-91c9-2929205b3248/sm/ep9534.jpg","duration":175,"publication_date":"2014-08-13T15:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-10","changefreq":"weekly","video":[{"title":"2014:E32 - Achievement HUNT #42","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79daa25e-bc62-4ad0-bf56-f322be4f60e3/sm/ep9532.jpg","duration":542,"publication_date":"2014-08-13T14:12:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-14","changefreq":"weekly","video":[{"title":"2014:E33 - GTA V - Hot Potato","description":"The Achievement Hunter lads and gents play \"Hot Potato\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b6196db-54f4-42d0-b16d-ebe2dd50e848/sm/ep9531.jpg","duration":399,"publication_date":"2014-08-13T14:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-69","changefreq":"weekly","video":[{"title":"2014:E191 - Let's Build in Minecraft - Giant Creeper","description":"In this week's Let's Build in Minecraft, Griffon graciously makes Geoff and Gavin \"Creeper Fuel\" before they start building Giant Creeper.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3e7d3d8-11d8-4283-b8e9-d22e00981032/sm/ep9529.jpg","duration":3954,"publication_date":"2014-08-12T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-67","changefreq":"weekly","video":[{"title":"2014:E190 - Samurai Gunn","description":"Geoff, Ryan, Michael, and Gavin are back playing \"Samurai Gunn.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d52e144c-3398-446f-8abf-27e08f6993c5/sm/ep9528.jpg","duration":1664,"publication_date":"2014-08-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-10","changefreq":"weekly","video":[{"title":"2014:E32 - Punch-Out - GO! #42","description":"In the 42nd episode of GO!, the first person to punch-out five different people in five different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a726a702-b118-49a6-9b8e-0585b583d5c5/sm/ep9530.jpg","duration":611,"publication_date":"2014-08-12T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-10","changefreq":"weekly","video":[{"title":"2014:E31 - Halo 4 Part 1","description":"Jack and Ray bring you five facts over Halo 4.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdb41776-98b9-4a0b-8c05-7a9ec3b0db59/sm/ep9526.jpg","duration":152,"publication_date":"2014-08-12T15:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-15-kid-friendly-game-series","changefreq":"weekly","video":[{"title":"2014:E14 - Top 15 Kid-Friendly Game Series","description":"Ray, Michael, and Gavin go over the Top 15 kid-friendly game series in this week's Countdown.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-15-kid-friendly-game-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a781360-6e86-4c58-bfcf-370bc6e0abb1/sm/ep9524.jpg","duration":246,"publication_date":"2014-08-11T21:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-61","changefreq":"weekly","video":[{"title":"2014:E189 - GTA V - The Cargo Tank","description":"The Achievement Hunter guys are back playing \"The Cargo Tank\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c19f698-ed0e-4f35-ade9-fd9abbee7e1a/sm/ep9523.jpg","duration":2620,"publication_date":"2014-08-11T21:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-10","changefreq":"weekly","video":[{"title":"2014:E32 - Week #226","description":"The AH crew bring you this week's news.\r\nVideo of the Week: Things to do in GTA V: Animal Kingdom - http://bit.ly/1A0tij6 and VS Episode 75: Michael vs. Ryan - http://bit.ly/1q1iQkg\r\nCommunity Video of the Week: Best of Achievement Hunter July 2014 - http://bit.ly/1sRdlbO","player_loc":"https://roosterteeth.com/embed/ahwu-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e447f6c6-4001-44cb-82b4-7dd4d521659b/sm/ep9521.jpg","duration":723,"publication_date":"2014-08-11T17:23:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-57","changefreq":"weekly","video":[{"title":"2014:E188 - Contagion Podcast Crew","description":"Burnie tries to guide Barbara, Gavin and Gus to safety out of an overrun police station. Will they escape","player_loc":"https://roosterteeth.com/embed/lets-play-2014-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/969c0d63-e7f4-40d0-9f32-32c44e2bd67f/sm/ep9520.jpg","duration":2293,"publication_date":"2014-08-09T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-5","changefreq":"weekly","video":[{"title":"2014:E12 - Call of Duty: Ghosts - Hidden Intel Easter Egg","description":"Ray shows you how to get the Hidden Intel Easter Egg in the Nemesis DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d48267cc-210f-412e-a1c6-e0a960c89246/sm/ep9518.jpg","duration":89,"publication_date":"2014-08-08T20:04:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-9","changefreq":"weekly","video":[{"title":"2014:E32 - Volume 203","description":"In Fails of the Weak #203, Jack and Ryan bring you fails in Battlefield 4, Watch Dogs, and Need for Speed Rivals.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/646f4663-dca9-43c3-ac8e-9a9fddef2557/sm/ep9516.jpg","duration":121,"publication_date":"2014-08-08T19:01:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-41","changefreq":"weekly","video":[{"title":"2014:E187 - Minecraft - Episode 115 - Storm the Tower: Lads Attack","description":"The Achievement Hunter guys play \"Storm the Tower\" in this week's Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e86ea41-1aa1-47d1-9d77-67dfdf6962c9/sm/ep9507.jpg","duration":3929,"publication_date":"2014-08-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-riders-of-the-rustlands-devils-beak","changefreq":"weekly","video":[{"title":"2014:E2440 - Trials Fusion - Riders of the Rustlands - Devil's Beak","description":"Jack and Ray show you how to do the Riders of the Rustlands - Devil's Beak Track Challenge in Trials Fusion. In this video they tackle Moonless Night challenge, The Uncaging challenge, and Don't Do a Barrel Roll! challenge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-riders-of-the-rustlands-devils-beak","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58bac58d-5787-4534-9893-2ad4b015a758/sm/ep9515.jpg","duration":174,"publication_date":"2014-08-08T18:59:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-riders-of-the-rustlands-rags-to-riches","changefreq":"weekly","video":[{"title":"2014:E2437 - Trials Fusion - Riders of the Rustlands - Rags to Riches ","description":"Jack and Ray show you how to do the Riders of the Rustlands - Rags to Riches Track Challenge in Trials Fusion. In this video they tackle Driving Insane challenge, Infiltration challenge, and Slumdog Billionaire challenge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-riders-of-the-rustlands-rags-to-riches","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44f7f5b0-373a-43c5-b0f7-a0e561b6597f/sm/ep9512.jpg","duration":210,"publication_date":"2014-08-08T18:21:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-riders-of-the-rustlands-junkyard-funk","changefreq":"weekly","video":[{"title":"2014:E2436 - Trials Fusion - Riders of the Rustlands - Junkyard Funk","description":"Jack and Ray show you how to do theRiders of the Rustlands - Junkyard Funk Track Challenge in Trials Fusion. In this video they tackle Lethal Attraction challenge, Gas Problem challenge, and The Magnetic 10 challenge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-riders-of-the-rustlands-junkyard-funk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e87d6c8e-1702-4693-8fb6-624a23fec510/sm/ep9511.jpg","duration":231,"publication_date":"2014-08-08T18:16:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-4","changefreq":"weekly","video":[{"title":"2014:E11 - Call of Duty: Ghosts - Star Power Easter Egg","description":"Ray shows you how to get the Star Power Easter Egg in the Nemesis DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e5f647a-154a-45f4-9f4c-cc5ec12c50ad/sm/ep9508.jpg","duration":79,"publication_date":"2014-08-08T16:44:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-the-final-chapter-guide","changefreq":"weekly","video":[{"title":"2014:E2434 - Call of Duty: Ghosts - The Final Chapter Guide","description":"Ray shows you how to get the \"The Final Chapter\" achievement in the Nemesis DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-the-final-chapter-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/139a6a53-082d-4a70-8cb3-c62593634a83/sm/ep9506.jpg","duration":103,"publication_date":"2014-08-08T14:18:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-39","changefreq":"weekly","video":[{"title":"2014:E186 - The Last of Us Remastered Part 2","description":"The AH Crew is back playing The Last of Us.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e29e2682-cc0d-49c2-a6a6-da6ced53129f/sm/ep9505.jpg","duration":2900,"publication_date":"2014-08-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-7","changefreq":"weekly","video":[{"title":"2014:E32 - Episode 75: Michael vs. Ryan","description":"The Mad King is back and this week it's Michael's turn to challenge the champion in this week's VS! Be prepared for what may just be the most physically challenging episode of VS.","player_loc":"https://roosterteeth.com/embed/vs-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a54f760-c6eb-48fe-b003-21441624453a/sm/ep9501.jpg","duration":1292,"publication_date":"2014-08-07T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-divinity-original-sin","changefreq":"weekly","video":[{"title":"2014:E23 - Divinity Original Sin","description":"Finally, irrefutable definitive proof that RPG's make for terrible videos.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-divinity-original-sin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/331fd411-4ddd-47f3-890a-3bf77818c85e/sm/ep9504.jpg","duration":1880,"publication_date":"2014-08-07T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-4","changefreq":"weekly","video":[{"title":"2014:E25 - Shovel Knight","description":"Michael is back raging while playing \"Shovel Knight.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a2fc402-5372-4afb-acda-99162fa77639/sm/ep9502.jpg","duration":444,"publication_date":"2014-08-07T15:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-34","changefreq":"weekly","video":[{"title":"2014:E185 - 7 Days To Die Part 4","description":"The AH Crew is back with the fourth installment of 7 Days to Die.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68e1b728-40f8-4c3b-a651-767ee08e83e6/sm/ep9500.jpg","duration":3292,"publication_date":"2014-08-07T01:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-7","changefreq":"weekly","video":[{"title":"2014:E32 - GTA V - Animal Kingdom","description":"The AH guys play \"Animal Kingdom\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de830162-7b6f-4c07-a1eb-3d6706d875b9/sm/ep9499.jpg","duration":671,"publication_date":"2014-08-06T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-4","changefreq":"weekly","video":[{"title":"2014:E31 - Achievement HUNT #41","description":"Michael and Gavin compete in the ultimate American college sport.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/391744b4-7d90-4a8e-9368-3c34cce5c207/sm/ep9498.jpg","duration":337,"publication_date":"2014-08-06T17:48:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-hat-trick-and-you-wish-guides","changefreq":"weekly","video":[{"title":"2014:E2433 - Call of Duty: Ghosts - Hat Trick & You Wish Guides","description":"Ray shows you how to get the \"Hat Trick\" & \"You Wish\" achievements in the Nemesis DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-hat-trick-and-you-wish-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb87c439-c10e-40bb-8369-9bb44d99ce49/sm/ep9497.jpg","duration":130,"publication_date":"2014-08-06T17:13:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-eggstra-nemesis-guide","changefreq":"weekly","video":[{"title":"2014:E2432 - Call of Duty: Ghosts - Eggstra Nemesis! Guide","description":"Ray shows you how to get the \"Eggstra Nemesis!\" achievement in the Nemesis DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-eggstra-nemesis-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae95ac50-150c-4945-b234-eeeb47e69e4f/sm/ep9495.jpg","duration":136,"publication_date":"2014-08-06T14:05:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-27","changefreq":"weekly","video":[{"title":"2014:E184 - TowerFall Ascension Part 2","description":"Join Geoff, Michael, Ray, and Gavin as they continue playing TowerFall Ascension.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d0ffcdd-a9d5-4b33-84df-767ef628fb07/sm/ep9493.jpg","duration":2443,"publication_date":"2014-08-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-26","changefreq":"weekly","video":[{"title":"2014:E183 - Let's Build in Minecraft - Chicken Bucket","description":"Geoff and Ray build \"Chicken Bucket\" in this week's Let's Build Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f624d5b-4c51-4f5c-96b3-a92fa250bc07/sm/ep9492.jpg","duration":2220,"publication_date":"2014-08-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-5","changefreq":"weekly","video":[{"title":"2014:E30 - Minecraft Part 3","description":"Geoff and Jack are back with the third installment of Five Facts - Minecraft.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa288aeb-1ba8-434c-bfe6-3659eb98ea9c/sm/ep9494.jpg","duration":166,"publication_date":"2014-08-05T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-4","changefreq":"weekly","video":[{"title":"2014:E31 - Five States - GO! #41","description":"In the 41st episode of GO!, the first person who visits five US states becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c8f6a62-1ed5-47f7-ae35-9394a1ae8e94/sm/ep9491.jpg","duration":794,"publication_date":"2014-08-05T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-zombie-games","changefreq":"weekly","video":[{"title":"2014:E13 - Top 10 Zombie Games","description":"The AH crew cover the top ten zombie games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-zombie-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eacbc62-cbe9-4b27-8951-fad89e629b6c/sm/ep9490.jpg","duration":288,"publication_date":"2014-08-04T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-23","changefreq":"weekly","video":[{"title":"2014:E182 - GTA V - Free Play Skyhigh Part 1","description":"AH spends a little quality time doing whatever comes to mind in Los Santos!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90af8d8d-99cc-4f21-9515-1850875dbb3b/sm/ep9489.jpg","duration":1576,"publication_date":"2014-08-04T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-3","changefreq":"weekly","video":[{"title":"2014:E31 - Week #225","description":"The AH crew bring you this week's news.\r\nVideo of the Week: Trials Fusion - Master's Gauntlet - Rock of Rages - http://bit.ly/1o7hZCM\r\nCommunity Video of the Week: Guacamelee STCE - Who Put These Here Guide Part 4 - http://bit.ly/UXjVRg","player_loc":"https://roosterteeth.com/embed/ahwu-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c58ce4d-1462-4e7f-8cc8-f656748c7934/sm/ep9488.jpg","duration":586,"publication_date":"2014-08-04T19:42:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-17","changefreq":"weekly","video":[{"title":"2014:E181 - Diablo 3 HARDCORE Podcast Crew","description":"Ashley, Burnie, Gilby and Gus take on Diablo 3 in Hardcore mode. Who will survive the longest","player_loc":"https://roosterteeth.com/embed/lets-play-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe21266a-8196-4bbc-96de-0140d2e7d48d/sm/ep9485.jpg","duration":4773,"publication_date":"2014-08-02T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-august-2014","changefreq":"weekly","video":[{"title":"2014:E18 - Coming Soon - August 2014","description":"Kdin and Lindsay are back with a ton of new games and other information for the month of August. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-august-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffca12cd-a581-4b63-afaf-850583b74204/sm/ep9483.jpg","duration":258,"publication_date":"2014-08-01T23:07:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-masters-gauntlet-inferno-iv","changefreq":"weekly","video":[{"title":"2014:E2429 - Trials Fusion - Master's Gauntlet - Inferno IV","description":"Jack and Geoff show you how to do the Master's Gauntlet -Inferno IV Track Challenge in Trials Fusion. In this video they tackle Crank Up the Heat challenge, Disrespecting the Teacher challenge, and Be One with the Bike challenge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-masters-gauntlet-inferno-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a877f0da-f37c-4bcc-9f3b-972c59ecd63a/sm/ep9480.jpg","duration":316,"publication_date":"2014-08-01T19:38:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-2","changefreq":"weekly","video":[{"title":"2014:E31 - Volume 202","description":"In Fails of the Weak #202, Geoff and Jack bring you fails in Destiny Beta, Sniper Elite III, GTA V, and UFC.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd086a26-2c06-4606-8095-0a62f0c25ed1/sm/ep9479.jpg","duration":105,"publication_date":"2014-08-01T18:25:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-5","changefreq":"weekly","video":[{"title":"2014:E180 - Minecraft - Episode 114 - Megatower Part 2","description":"The AH Crew is back with the second installment of Let's Play \"Megatower\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3239a27-b5b6-4a0f-b91c-2544bd36b3b5/sm/ep9476.jpg","duration":2642,"publication_date":"2014-08-01T18:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-3","changefreq":"weekly","video":[{"title":"2014:E179 - Castle Crashers","description":"Join Michael and Lindsay as they play \"Castle Crashers.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53ac0799-5d54-44ea-9a0b-5018b5bf9b66/sm/ep9475.jpg","duration":2292,"publication_date":"2014-08-01T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-2","changefreq":"weekly","video":[{"title":"2014:E178 - The Last of Us Remastered","description":"Geoff, Jack, Ryan, Gavin, Michael, and Kerry play \"The Last of Us Remastered.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06a671d1-c17e-4e28-90ea-b1dceb7ac760/sm/ep9474.jpg","duration":2588,"publication_date":"2014-07-31T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-sniper-elite-3","changefreq":"weekly","video":[{"title":"2014:E22 - Sniper Elite 3","description":"It hard to talk video game same time.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-sniper-elite-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e27fda8-689e-4008-bfd6-ad01f2f7c2c9/sm/ep9472.jpg","duration":1132,"publication_date":"2014-07-31T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-52","changefreq":"weekly","video":[{"title":"2014:E31 - Episode 74: Ryan vs. Jack","description":"Jack, the current holder of all of the AH trophies, is challenged by \"Mad King\" Ryan in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7573892c-e2a1-427d-884f-6c9b657dce0f/sm/ep9470.jpg","duration":605,"publication_date":"2014-07-31T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-7-unturned","changefreq":"weekly","video":[{"title":"2014:E7 - Unturned","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of \"Unturned.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-7-unturned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be21baf4-41ca-4398-a65f-ae8b5383845c/sm/ep9471.jpg","duration":556,"publication_date":"2014-07-31T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-squirrel-scavengers-guide","changefreq":"weekly","video":[{"title":"2014:E2426 - Trials Fusion - Squirrel Scavengers Guide","description":"Jack and Geoff show you have to get the Squirrel Scavengers Achievement Guide in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-squirrel-scavengers-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f48208eb-3e3a-44ee-a7f1-742c4e5c804c/sm/ep9469.jpg","duration":143,"publication_date":"2014-07-30T20:30:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-52","changefreq":"weekly","video":[{"title":"2014:E30 - Achievement Hunt #40","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89f2f6f1-bcd7-4090-9ed8-9d3b4beac8de/sm/ep9468.jpg","duration":343,"publication_date":"2014-07-30T20:03:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-indiana-jones-and-the-temple-of-doom","changefreq":"weekly","video":[{"title":"S1:E91 - Video Game Vault - Indiana Jones and the Temple of Doom","description":"If only the game was as good as the movie is twenty years later.","player_loc":"https://roosterteeth.com/embed/video-game-vault-indiana-jones-and-the-temple-of-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7f6a1ac-c72f-40c3-b28b-62cff546041b/sm/Indiana_Jones_and_the_Temple_of_Doom_NES_ScreenShot4.gif","duration":122,"publication_date":"2011-08-15T12:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mortal-kombat-iii","changefreq":"weekly","video":[{"title":"S1:E90 - Video Game Vault - Mortal Kombat III","description":"Taking one of the coolest franchises in video games and a little change was a bit of a shock to some gamers but they eventually they realized how cool MK3 really was.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mortal-kombat-iii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f5022fe-025c-4616-a72e-ea6c1a9a16f7/sm/mortalkombat3.jpg","duration":181,"publication_date":"2011-08-15T12:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-games-of-the-2010","changefreq":"weekly","video":[{"title":"S1:E50 - Top 10 Games of the 2010","description":"S1:E50 - Top 10 Games of the 2010","player_loc":"https://roosterteeth.com/embed/top-10-games-of-the-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/645dfd62-3f3e-447a-bab4-dc5f81479050/sm/screenshot.jpg","duration":448,"publication_date":"2011-08-15T12:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-hogans-alley","changefreq":"weekly","video":[{"title":"S1:E89 - Video Game Vault - Hogan's Alley","description":"If you bought the NES when it launched, you had to have this game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-hogans-alley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc89267b-788f-471b-875d-da69a71b7c47/sm/Hogans_Alley_NES_ScreenShot1.jpg","duration":120,"publication_date":"2011-08-15T12:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-sexiest-outfits","changefreq":"weekly","video":[{"title":"S1:E49 - Top 10 Sexiest Outfits ","description":"To warm you up for the holidays Craig takes a look at the outfits that will get your blood flowing!","player_loc":"https://roosterteeth.com/embed/top-10-sexiest-outfits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80e047fe-19e4-4516-8af8-54bf85abf37a/sm/images-4.jpg","duration":377,"publication_date":"2011-08-15T12:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tmnt-tournament-fighters","changefreq":"weekly","video":[{"title":"S1:E88 - Video Game Vault - TMNT: Tournament Fighters ","description":"Destin takes a look at a Turtles game that tried to capitalize on the most popular genre at the time and somehow managed to come out looking pretty sweet.","player_loc":"https://roosterteeth.com/embed/video-game-vault-tmnt-tournament-fighters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f56bf0-7a83-4504-b1ab-14304fe3aa59/sm/Teenage_Mutant_Ninja_Turtles_Tournament_Fighters_SNES_ScreenShot1.gif","duration":106,"publication_date":"2011-08-15T12:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-gun-smoke","changefreq":"weekly","video":[{"title":"S1:E87 - Video Game Vault - Gun.Smoke","description":"The age-old lesson of how to avoid copyright infringement: Put a period in between two words. Go play Gun.Smoke!","player_loc":"https://roosterteeth.com/embed/video-game-vault-gun-smoke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e80322c9-2d12-4391-836a-0d96704c85b3/sm/1181242121251.png","duration":102,"publication_date":"2011-08-15T12:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-online-multiplayer-console-games","changefreq":"weekly","video":[{"title":"S1:E48 - Top 10 Online Multiplayer Console Games","description":"Did your favorite Internet-connected game make the list?","player_loc":"https://roosterteeth.com/embed/top-10-online-multiplayer-console-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c2adc81-bfc3-4dd1-96b5-8711970aa4d2/sm/castle_crashers.jpg","duration":454,"publication_date":"2011-08-15T12:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-local-multiplayer-console-games","changefreq":"weekly","video":[{"title":"S1:E47 - Top 10 Local Multiplayer Console Games","description":"What console games are the best to sit around and play with your buddies? What favorites of yours were left off the list? Craig and Nick fill you in.","player_loc":"https://roosterteeth.com/embed/top-10-local-multiplayer-console-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29167c03-249a-46ee-8445-717dd73fb9c3/sm/mario-party8-9-l.jpg","duration":544,"publication_date":"2011-08-15T12:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mickeys-magical-quest","changefreq":"weekly","video":[{"title":"S1:E86 - Video Game Vault - Mickey's Magical Quest","description":"A game that was originally supposed to enter the Vault a while ago, it's about damn time.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mickeys-magical-quest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a6ee5ba-c35b-4d7f-83f5-e1b324d857fd/sm/snes-magical-quest-starring-mickey-mouse-the-box-front.jpg","duration":101,"publication_date":"2011-08-15T12:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-adventures-of-dino-riki","changefreq":"weekly","video":[{"title":"S1:E85 - Video Game Vault - Adventures of Dino Riki","description":" Imagine a world where one cavemen roamed the world destroying species of dinosaurs... all with a smile on his face. What a happy guy.","player_loc":"https://roosterteeth.com/embed/video-game-vault-adventures-of-dino-riki","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9e80d26-7e11-4f05-8223-93f88ab84e24/sm/dinotitle.png","duration":104,"publication_date":"2011-08-15T12:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-mortal-kombat-fatalities","changefreq":"weekly","video":[{"title":"S1:E46 - Top 10 Worst Mortal Kombat Fatalities ","description":"Forget the amazing ones--what were the ten worst fatalities?","player_loc":"https://roosterteeth.com/embed/top-10-worst-mortal-kombat-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0884308-c543-439c-8e20-3208edc2d92a/sm/mkdc-thumb.jpg","duration":383,"publication_date":"2011-08-15T12:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dr-mario","changefreq":"weekly","video":[{"title":"S1:E84 - Video Game Vault - Dr. Mario","description":"One of the premier puzzle games on the NES, Dr. Mario has had staying power for almost twenty years.","player_loc":"https://roosterteeth.com/embed/video-game-vault-dr-mario","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ddb81c0-c90a-453e-a08b-57d52a6d3bdd/sm/ss_drm-nes_t.gif","duration":100,"publication_date":"2011-08-15T12:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-mortal-kombat-fatalities","changefreq":"weekly","video":[{"title":"S1:E45 - Top 10 Mortal Kombat Fatalities","description":"It's time to countdown the bloodiest, goriest, most creative and most creative ways to be killed off in the Mortal Kombat series.","player_loc":"https://roosterteeth.com/embed/top-10-mortal-kombat-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6552126-9bf5-435e-ac5c-736d58a7ce37/sm/196304_0.jpg","duration":354,"publication_date":"2011-08-15T11:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-dr-wilys-revenge","changefreq":"weekly","video":[{"title":"S1:E83 - Video Game Vault - Mega Man: Dr Wily's Revenge","description":"Does it get much better that being able to carry around classic Mega Man in your pocket? Not really.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-dr-wilys-revenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69330b30-423c-49e5-86fc-bf0de842f6bb/sm/megaman.jpg","duration":161,"publication_date":"2011-08-15T11:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-corpse-killer","changefreq":"weekly","video":[{"title":"S1:E82 - Video Game Vault - Corpse Killer","description":"Full Motion Video? Check. Cheesy Lines? Check. Congrats, you've got yourself a Saturn game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-corpse-killer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed2c05b2-af56-4cd0-9ed7-ec5468d40fe9/sm/306499-corpse_killer__u__super.png","duration":142,"publication_date":"2011-08-15T11:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-wins-and-\"fails\"-of-e3-2010","changefreq":"weekly","video":[{"title":"S1:E44 - Top 10 Wins and \"Fails\" of E3 2010","description":"It's time to get the REAL skinny on the best and the worst of the biggest industry event of the year.","player_loc":"https://roosterteeth.com/embed/top-10-wins-and-\"fails\"-of-e3-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7b3120b-5ce9-4c05-9db8-ca1d6e339c1b/sm/E3-logo.jpg","duration":548,"publication_date":"2011-08-15T11:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-manliest-men-10-1","changefreq":"weekly","video":[{"title":"S1:E43 - Top 20 Manliest Men 10-1 ","description":"Who are the manliest men in all of video games? Craig and Keith Apicary conclude the cock countdown.","player_loc":"https://roosterteeth.com/embed/top-20-manliest-men-10-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df3b8245-c8c7-4baf-9d7f-05be631b4161/sm/20086_low_1258483444.jpg","duration":418,"publication_date":"2011-08-15T11:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mr-bones","changefreq":"weekly","video":[{"title":"S1:E81 - Video Game Vault - Mr. Bones","description":"Haven't heard of Mr. Bones? You're not alone but that doesn't mean you shouldn't have.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mr-bones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0108878e-f3b7-4444-a3af-e0f35fc7eeda/sm/32749.png","duration":143,"publication_date":"2011-08-15T11:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-manliest-men-20-11","changefreq":"weekly","video":[{"title":"S1:E42 - Top 20 Manliest Men 20-11 ","description":"Stuttering Craig and Keith Apicary count down ten of the top 20 manliest men of video games.","player_loc":"https://roosterteeth.com/embed/top-20-manliest-men-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc3447fd-2398-4008-be58-14a10b9fdfab/sm/old-spice-man.jpg","duration":413,"publication_date":"2011-08-15T11:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ncaa-basketball","changefreq":"weekly","video":[{"title":"S1:E80 - Video Game Vault - NCAA Basketball","description":"Three hundred and sixty degrees of total unrealistic action.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ncaa-basketball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f733e8e-0e93-4ab8-a415-9a115e6998d0/sm/images-1_0.jpg","duration":45,"publication_date":"2011-08-15T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-after-burner-ii","changefreq":"weekly","video":[{"title":"S1:E79 - Video Game Vault - After Burner II","description":"Shoot EVERYTHING in site in this Saturn port of an awesome arcade game. We love it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-after-burner-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ffbf0a6-a877-4b22-befd-1d70889a72f6/sm/images_2.jpg","duration":125,"publication_date":"2011-08-15T10:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-bonk","changefreq":"weekly","video":[{"title":"S1:E78 - Video Game Vault - Super Bonk","description":"Why did Bonk fall of the face of the earth? This game might of been a good reason.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-bonk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/182c2030-34fb-4af1-828d-6dd7ec53439a/sm/super_bonk.jpg","duration":121,"publication_date":"2011-08-15T10:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-aero-fighters","changefreq":"weekly","video":[{"title":"S1:E77 - Video Game Vault - Aero Fighters","description":"A stellar arcade schmup with eight playable characters from all over the world... a world that will soon be destroyed by you.","player_loc":"https://roosterteeth.com/embed/video-game-vault-aero-fighters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":105,"publication_date":"2011-08-15T10:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mike-tysons-punch-out","changefreq":"weekly","video":[{"title":"S1:E76 - Video Game Vault - Mike Tyson's Punch-Out","description":"One of the all time greats, there is no doubt that this could go toe to toe with any boxing game from today.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mike-tysons-punch-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ee89f7e-2294-40d9-aa25-80feb0cdc6a6/sm/nintendo-punch-out-title-graphics.png","duration":103,"publication_date":"2011-08-15T10:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-black-tiger","changefreq":"weekly","video":[{"title":"S1:E75 - Video Game Vault - Black Tiger","description":"Just like the Energizer Bunny, this game just keeps going and going and going and going and going...","player_loc":"https://roosterteeth.com/embed/video-game-vault-black-tiger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51d0c11c-7388-41fb-94b8-fe60925dfb73/sm/9791.png","duration":105,"publication_date":"2011-08-15T10:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-virtua-cop-2","changefreq":"weekly","video":[{"title":"S1:E74 - Video Game Vault - Virtua Cop 2","description":"Do you like shooting the same bad guy over and over again all the while being told to \"reload\"? If so, you'll love this game!","player_loc":"https://roosterteeth.com/embed/video-game-vault-virtua-cop-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27f2d80b-b749-4281-8e10-48dfb96fb8ea/sm/vcop2_1.png","duration":111,"publication_date":"2011-08-15T10:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-power-stone","changefreq":"weekly","video":[{"title":"S1:E73 - Video Game Vault - Power Stone","description":"While you wait for Street Fighter 4 to come out, you need to check out another Capcom fighting classic.","player_loc":"https://roosterteeth.com/embed/video-game-vault-power-stone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":74,"publication_date":"2011-08-15T10:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-8-bit-boss-themes","changefreq":"weekly","video":[{"title":"S1:E41 - Top 10 8-Bit Boss Themes","description":"To count down the best old school battle tunes we had to bring in someone with expertise and brentalfloss fit the fill. Where do your favorites land on the list?","player_loc":"https://roosterteeth.com/embed/top-10-8-bit-boss-themes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/8ad03827-5d0f-40af-ae3e-860fd2f2d1ac.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":388,"publication_date":"2011-08-15T10:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-mario-land","changefreq":"weekly","video":[{"title":"S1:E72 - Video Game Vault - Super Mario Land","description":"\"Wow! You can Mario.... ANYWHERE?\" Believe it or not that's what people said about this when it came out.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-mario-land","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd5bee48-203d-458d-bae9-028a053a0baa/sm/Sml_0.jpg","duration":93,"publication_date":"2011-08-15T10:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-worst-robot-masters","changefreq":"weekly","video":[{"title":"S1:E40 - Top 10 Worst Robot Masters","description":"Mega Man's beaten them all, but which deserved it most?","player_loc":"https://roosterteeth.com/embed/top-10-worst-robot-masters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/004c03f9-0d3b-4f49-9acf-16d5f972d155/sm/megaman7_2.png","duration":366,"publication_date":"2011-08-15T10:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-angry-video-game-nerd-moments-2009","changefreq":"weekly","video":[{"title":"S1:E39 - Top 10 Angry Video Game Nerd Moments 2009","description":"The 2009 edition of the best moments from everyone's favorite Nerd. Which one's yours?","player_loc":"https://roosterteeth.com/embed/top-10-angry-video-game-nerd-moments-2009","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dac8b3f9-4502-40c3-80cb-92f9c838dd84/sm/avgn-1.jpg","duration":710,"publication_date":"2011-08-15T10:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-american-gladiators","changefreq":"weekly","video":[{"title":"S1:E71 - Video Game Vault - American Gladiators","description":"Can you believe the NES game is actually better than the real life TV show? Stuttering Craig explains how.","player_loc":"https://roosterteeth.com/embed/video-game-vault-american-gladiators","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a50f3c0-e258-4ca1-b18a-26b222cc913a/sm/_-American-Gladiators-SNES-_.gif","duration":122,"publication_date":"2011-08-15T10:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-hydro-thunder","changefreq":"weekly","video":[{"title":"S1:E70 - Video Game Vault - Hydro Thunder","description":"Maybe the only power boat racing game in history worth talking about, Hydro Thunder is straight up arcade action... and AWESOME.","player_loc":"https://roosterteeth.com/embed/video-game-vault-hydro-thunder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":89,"publication_date":"2011-08-15T10:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-crazy-taxi","changefreq":"weekly","video":[{"title":"S1:E69 - Video Game Vault - Crazy Taxi","description":"Take your cabbie and collect as much loot as possible. Just make sure you are covering your ears.","player_loc":"https://roosterteeth.com/embed/video-game-vault-crazy-taxi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b148ae7f-7a0d-4cf9-8058-a34df49d3d4c/sm/Crazy-Taxi.jpg","duration":143,"publication_date":"2011-08-15T09:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-home-alone","changefreq":"weekly","video":[{"title":"S1:E68 - Video Game Vault - Home Alone","description":"One of the most popular holiday movies ever also had an awful NES game to go with it. A bad movie to video game adaptation? Who would have thought?","player_loc":"https://roosterteeth.com/embed/video-game-vault-home-alone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b255d0a-1c12-485f-bba6-f11404c19787/sm/1576a.png","duration":109,"publication_date":"2011-08-15T09:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-zombie-games","changefreq":"weekly","video":[{"title":"S1:E38 - Top 10 Zombie Games","description":"What better way to celebrate Christmas than with a list about the undead?","player_loc":"https://roosterteeth.com/embed/top-10-zombie-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64ba3ba3-4046-44e7-b0b1-c72850d4909d/sm/zombies.jpg","duration":561,"publication_date":"2011-08-15T09:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-ps3-exclusives-2009-edition","changefreq":"weekly","video":[{"title":"S1:E37 - Top 10 PS3 Exclusives 2009 Edition","description":"Two years after pissing off PS3 fanboys everywhere, it's time to revisit our old friend.","player_loc":"https://roosterteeth.com/embed/top-10-ps3-exclusives-2009-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34909de1-b62e-40ea-8951-232219221ab0/sm/sony-playstation-31.jpg","duration":389,"publication_date":"2011-08-15T09:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-bubble-bath-babes","changefreq":"weekly","video":[{"title":"S1:E67 - Video Game Vault - Bubble Bath Babes","description":"One of the rarest games on the NES that will also make you happy in your pants.","player_loc":"https://roosterteeth.com/embed/video-game-vault-bubble-bath-babes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d377359c-cb82-497c-8034-7f27a2103bb2/sm/bbb_000.png","duration":103,"publication_date":"2011-08-15T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-c","changefreq":"weekly","video":[{"title":"S1:E66 - Video Game Vault - Super C","description":"The sequel to one of the most recognized games in history was not too shabby itself. Awesome two player action!","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b50c4e5b-d0b4-4d2b-bb30-0f2d57546012/sm/Contra_Super_C_NES_ScreenShot1.jpg","duration":102,"publication_date":"2011-08-15T09:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-quake","changefreq":"weekly","video":[{"title":"S1:E65 - Video Game Vault - Quake","description":"One of the most popular games of the 90's, Quake has it's stamp all over games of today.","player_loc":"https://roosterteeth.com/embed/video-game-vault-quake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de1cb7d5-8382-4e86-9234-dcf9419f64f8/sm/1308411901_1308353253673.jpg","duration":143,"publication_date":"2011-08-15T09:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-dreamcast-games","changefreq":"weekly","video":[{"title":"S1:E36 - Top 10 Dreamcast Games","description":"A decade after its release, we look at the best of the best from one of the best consoles ever... 'cause it's the best.","player_loc":"https://roosterteeth.com/embed/top-10-dreamcast-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6107dd3b-85cc-4709-b6b6-69600404acda/sm/dreamcast_0.jpg","duration":448,"publication_date":"2011-08-15T09:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-ugly-chicks-in-games","changefreq":"weekly","video":[{"title":"S1:E35 - Top 10 Ugly Chicks in Games","description":"Which video game chica has been hit with the largest ugly stick?","player_loc":"https://roosterteeth.com/embed/top-10-ugly-chicks-in-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05d07e0d-c18e-403b-8d4a-4681e751c343/sm/fatprincess1-thumb-640xauto-7402.jpg","duration":437,"publication_date":"2011-08-15T09:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-operation-wolf","changefreq":"weekly","video":[{"title":"S1:E64 - Video Game Vault - Operation Wolf","description":"How would we describe Operation Wolf? Two words: SHOOT EVERYTHING!","player_loc":"https://roosterteeth.com/embed/video-game-vault-operation-wolf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/570fcab4-28c6-418e-9ebb-a0d3077d379e/sm/4906160953_224fd5e36e.jpg","duration":106,"publication_date":"2011-08-15T09:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-cartoon-games","changefreq":"weekly","video":[{"title":"S1:E34 - Top 10 Cartoon Games","description":"Does your Saturday morning favorite make the list?","player_loc":"https://roosterteeth.com/embed/top-10-cartoon-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76fd2fe3-ed5b-4ab3-bbca-6f32b480a8e1/sm/600full-chip-%27n-dale-rescue-rangers-screenshot.jpg","duration":394,"publication_date":"2011-08-15T09:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mickey-mania","changefreq":"weekly","video":[{"title":"S1:E63 - Video Game Vault - Mickey Mania","description":"Sometimes it's easy to get the good and bad games mixed up. This couldn't be more true when Stuttering Craig popped in Mickey Mania.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mickey-mania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fb7a696-ba66-42e9-b2c5-fa940f14af30/sm/mickey_mania_title_us_eu.gif","duration":146,"publication_date":"2011-08-15T09:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-double-dribble","changefreq":"weekly","video":[{"title":"S1:E62 - Video Game Vault - Double Dribble","description":"Whoa it talks! With the NBA season getting underway it's time to look at one of the originals and all it's great cut scenes.","player_loc":"https://roosterteeth.com/embed/video-game-vault-double-dribble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":93,"publication_date":"2011-08-15T09:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattacks-best-and-worst-power-ups","changefreq":"weekly","video":[{"title":"S1:E33 - ScrewAttack's Best and Worst Power Ups ","description":"One of the best things about gaming, the power up has had its hits and misses.","player_loc":"https://roosterteeth.com/embed/screwattacks-best-and-worst-power-ups","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78d1c7b9-88f5-4a22-b1aa-2683266f77a1/sm/images-3.jpg","duration":444,"publication_date":"2011-08-15T09:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-off-road","changefreq":"weekly","video":[{"title":"S1:E61 - Video Game Vault - Super Off Road","description":"If there was only one off road racer whose name you knew it would be Ivan Stewart. Not for his racing, but for his game!","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-off-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf9343d3-f4e6-47ae-91a9-f46d81c41246/sm/super-off-road-screenshot.png","duration":85,"publication_date":"2011-08-15T09:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-screwattack-moments-of-2008","changefreq":"weekly","video":[{"title":"S1:E32 - Top 10 ScrewAttack Moments of 2008","description":"Have you seen all these moments? Did we miss any of your favorites?","player_loc":"https://roosterteeth.com/embed/top-10-screwattack-moments-of-2008","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bb98046-44aa-4da6-bb22-1ae27f74e808/sm/FC9.jpg","duration":553,"publication_date":"2011-08-15T09:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-street-fighter-iii-third-strike","changefreq":"weekly","video":[{"title":"S1:E60 - Video Game Vault - Street Fighter III: Third Strike","description":"With Street Fighter 4 being announced it's time to take a look at what some say is the best Street Fighter game ever.","player_loc":"https://roosterteeth.com/embed/video-game-vault-street-fighter-iii-third-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38800ab7-8299-4813-a65e-c4b379c0f004/sm/1181242173147.jpg","duration":144,"publication_date":"2011-08-15T09:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-beards","changefreq":"weekly","video":[{"title":"S1:E31 - Top 10 Beards ","description":"It's about time the beard got some credit for being so great.","player_loc":"https://roosterteeth.com/embed/top-10-beards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c66fdb7-0ec4-41c1-9f67-56f7b5fa5943/sm/CurlBeardMOS0109_468x387.jpg","duration":354,"publication_date":"2011-08-15T09:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-games-that-need-to-be-made","changefreq":"weekly","video":[{"title":"S1:E30 - Top 10: Games that Need to be Made","description":"With remakes being so popular, ScrewAttack takes a look at the games that should be on store shelves.","player_loc":"https://roosterteeth.com/embed/top-10-games-that-need-to-be-made","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/397f617d-f4ea-4e53-9825-362807663742/sm/tba-marvel-vs-capcom-3-fate-of-two-worlds-20100419071140304.jpg","duration":493,"publication_date":"2011-08-15T09:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-video-game-themes-ever","changefreq":"weekly","video":[{"title":"S1:E29 - Top 10 Video Game Themes Ever","description":"A list so controversial that none can be correct. Does your favorite land on the list?","player_loc":"https://roosterteeth.com/embed/top-10-video-game-themes-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b11eb138-b747-4e04-9f6b-4cdd6b62fc2e/sm/punch-out-20081216021342915.jpg","duration":617,"publication_date":"2011-08-15T09:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-genesis-games-10-1","changefreq":"weekly","video":[{"title":"S1:E28 - Top 20 Genesis Games (10-1)","description":"The very best from good ol' 90s #2. Where does your favorite land on the list?","player_loc":"https://roosterteeth.com/embed/top-20-genesis-games-10-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da733d3e-efa5-484f-87dc-ea1f9f82be25/sm/b7ab5406ca3ec4ce618cf92ft9.jpg","duration":474,"publication_date":"2011-08-15T09:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-genesis-games-20-11","changefreq":"weekly","video":[{"title":"S1:E27 - Top 20 Genesis Games (20-11)","description":"With over 700 games in its library narrowing it down to just 10 wouldn't cut it. Where is your favorite Genesis game on the list?","player_loc":"https://roosterteeth.com/embed/top-20-genesis-games-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74ca7060-33e5-40c6-9077-9cf29a6571d2/sm/img.jpg","duration":396,"publication_date":"2011-08-15T08:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-omgwtf-moments","changefreq":"weekly","video":[{"title":"S1:E26 - Top 10 OMGWTF Moments","description":"We've all experienced them. They're the moments that make you want to play games and keep coming back for more.","player_loc":"https://roosterteeth.com/embed/top-10-omgwtf-moments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4537d59c-c7fc-4957-8045-d182985bad20/sm/samus_at_the_end_of_metroid.png","duration":499,"publication_date":"2011-08-15T08:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-fps-games-ever","changefreq":"weekly","video":[{"title":"S1:E25 - Top 10 FPS Games Ever!","description":"The most dominant genre in gaming today, Stuttering Craig takes a glimpse at the best of the best... EVER!","player_loc":"https://roosterteeth.com/embed/top-10-fps-games-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a6ccff8-a7ed-4797-944a-40d18fd4a979/sm/images-1.jpg","duration":374,"publication_date":"2011-08-15T08:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-snes-games-10-1","changefreq":"weekly","video":[{"title":"S1:E24 - Top 20 SNES Games (10-1)","description":"Some call the SNES the best console ever made. How does it get that reputation? The games. Here are the best of the best of the 16 bit megapower.","player_loc":"https://roosterteeth.com/embed/top-20-snes-games-10-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a14bdbc-ffbc-411e-9124-e9e97b6182c4/sm/NintendoSNESBox.jpg","duration":442,"publication_date":"2011-08-15T08:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-20-snes-games-20-11","changefreq":"weekly","video":[{"title":"S1:E23 - Top 20 SNES Games (20-11)","description":"A console so great there is no way we could limit it to just ten games. Where will your favorite end up on the list?","player_loc":"https://roosterteeth.com/embed/top-20-snes-games-20-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9089f63-7aef-4460-b51d-186e79bc9904/sm/images_1.jpg","duration":343,"publication_date":"2011-08-15T08:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-screwattack-moments-of-2007","changefreq":"weekly","video":[{"title":"S1:E22 - Top 10 ScrewAttack Moments of 2007","description":"With our one year anniversary with GameTrailers you've probably seen our VGVs, Top 10s and Nerd vids - but what else does ScrewAttack do?","player_loc":"https://roosterteeth.com/embed/top-10-screwattack-moments-of-2007","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbb63c99-1e31-4b4d-bcd0-e840e00a3ed7/sm/4973_01_17_09_Top10_ScrewAttack2008FULL_low_1242077706.jpg","duration":536,"publication_date":"2011-08-15T08:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-and-worst-sonic-games","changefreq":"weekly","video":[{"title":"S1:E21 - The Best and Worst Sonic Games","description":"One of the most recognizable characters in history, Sonic has definitely had some greatness and some absolute crap.","player_loc":"https://roosterteeth.com/embed/the-best-and-worst-sonic-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4763c418-5bd2-4ea1-8877-864b3df59d49/sm/sonic_the_hedgehog_genesis.jpg","duration":414,"publication_date":"2011-08-15T08:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-avgn-moments-of-2007","changefreq":"weekly","video":[{"title":"S1:E20 - Top 10 AVGN Moments of 2007 ","description":"You've watched The Nerd's videos and have your favorites moments but where do they stack up to AVGN's personal favorites?","player_loc":"https://roosterteeth.com/embed/top-10-avgn-moments-of-2007","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72692bfd-fe85-48f9-9e18-2ecf8afa6992/sm/avgn.jpg","duration":563,"publication_date":"2011-08-15T08:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-ho-ho-hoes-in-gaming","changefreq":"weekly","video":[{"title":"S1:E19 - Top 10 Ho Ho Hoes in Gaming","description":"A very special time of the year when it's all about giving... and these characters are all about the holiday season.","player_loc":"https://roosterteeth.com/embed/top-10-ho-ho-hoes-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61aea238-901e-4dbe-b923-d724d3db1119/sm/grand-theft-auto-4-lollipop-girl.jpg","duration":436,"publication_date":"2011-08-15T08:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-ps3-exclusives-2007-edition","changefreq":"weekly","video":[{"title":"S1:E18 - Top Ten PS3 Exclusives (2007 Edition)","description":"One year after the release of the PS3 we take a look at what defines a console - it's exclusive titles.","player_loc":"https://roosterteeth.com/embed/top-ten-ps3-exclusives-2007-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69edf4b1-116c-41a0-a5e8-108c175b5a7c/sm/kratos-god-of-war-iii.jpg","duration":384,"publication_date":"2011-08-15T08:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-fighting-games","changefreq":"weekly","video":[{"title":"S1:E17 - Top Ten Fighting Games","description":"We've played every single fighting game ever* and have narrowed down the best of the best to create a list so controversial it will make your nose bleed. If you saw our Top 10 Worst Fighting Games you knew this was coming.","player_loc":"https://roosterteeth.com/embed/top-ten-fighting-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f06b7c-0ea3-4661-a164-ce778f0fb3af/sm/street-fighter-iv-ken_1440_x_900.jpg","duration":441,"publication_date":"2011-08-15T08:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-the-bfg-doom","changefreq":"weekly","video":[{"title":"S1:E45 - The Armory - The BFG (Doom)","description":"It's called the BFG for a reason. If you have it, people should run.","player_loc":"https://roosterteeth.com/embed/the-armory-the-bfg-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79884440-4aac-43b6-9617-900e5c2f29e3/sm/news-doom-gunns.jpg","duration":137,"publication_date":"2011-08-14T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-red-turtle-shell-mario-kart-series","changefreq":"weekly","video":[{"title":"S1:E46 - The Armory - Red Turtle Shell (Mario Kart Series)","description":"Didn't you just love showing everyone who's boss with the turtle shell? Yeah I did too, suck it princess!","player_loc":"https://roosterteeth.com/embed/the-armory-red-turtle-shell-mario-kart-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf0fc9b3-7ee7-4287-b37f-ac0ee66e285d/sm/RedShell_0.png","duration":82,"publication_date":"2011-08-14T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-armory-cerebral-bore-turok-2","changefreq":"weekly","video":[{"title":"S1:E47 - The Armory - Cerebral Bore (Turok 2)","description":"It burrows into your skull, replacing your brains with an explosive. What a way to go.","player_loc":"https://roosterteeth.com/embed/the-armory-cerebral-bore-turok-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/001ec1a3-d10c-4eb1-9aaa-b739a5bacbfa/sm/Turok2screen3.jpg","duration":87,"publication_date":"2011-08-14T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/best-and-worst-of-e-for-all","changefreq":"weekly","video":[{"title":"S1:E16 - Best and Worst of E for All","description":"How does the \"hottest event in gaming\" stack up to it's predecessor? We'll fill you in on both the good and the bad.","player_loc":"https://roosterteeth.com/embed/best-and-worst-of-e-for-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08e47172-94d1-4d77-96f6-665665fba323/sm/e-for-all-expo-logo-490.jpg","duration":391,"publication_date":"2011-08-13T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-nes-games","changefreq":"weekly","video":[{"title":"S1:E15 - Top Ten NES Games","description":"The Master of the 8-bit Universe had so many unbelievable classics that we almost had to make it a Top 50 list.","player_loc":"https://roosterteeth.com/embed/top-ten-nes-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d935b3c7-1507-426a-8c82-77b72bb5b44c/sm/nes-system.jpg","duration":448,"publication_date":"2011-08-13T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-games-to-buy-besides-halo-3","changefreq":"weekly","video":[{"title":"S1:E14 - Top Ten Games To Buy Besides Halo 3","description":"Yes, we know you are going to get Halo 3 but what if you could only choose one game... and it wasn't the final part of the Master Chief trilogy?","player_loc":"https://roosterteeth.com/embed/top-ten-games-to-buy-besides-halo-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e2f2aaa-5fdb-4350-aee8-3aca0367edd6/sm/master_chief_will_return1280189037.jpg","duration":425,"publication_date":"2011-08-13T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-2-d-shooters","changefreq":"weekly","video":[{"title":"S1:E13 - Top Ten 2-D Shooters","description":"One of our hardest lists yet, we've spent so much time playing 2D shooters having to narrow down our favorites was next to impossible. Do you agree? Probably not. But isn't that what makes it great? Besides, we're right anyway...","player_loc":"https://roosterteeth.com/embed/top-ten-2-d-shooters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48eb1f38-8916-439b-aa52-2a62b0ee36ed/sm/g3ac2.jpg","duration":503,"publication_date":"2011-08-13T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-ninjas","changefreq":"weekly","video":[{"title":"S1:E12 - Top Ten Ninjas","description":"The debate that has raged on for ages comes to a close right now with our list of the top stealth assassins. Where does your favorite rank?","player_loc":"https://roosterteeth.com/embed/top-ten-ninjas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a1dc5cb-9070-4d72-b8c3-cd2fdde129e2/sm/ninjagaiden2kz.jpg","duration":366,"publication_date":"2011-08-13T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-worst-mario-games","changefreq":"weekly","video":[{"title":"S1:E11 - Top Ten Worst Mario Games","description":"With the good comes the bad but chances are you won't agree with this list. Gaming's Leading Man has been in a lot of so called \"classics\"... but are they really?","player_loc":"https://roosterteeth.com/embed/top-ten-worst-mario-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8d96aab-cc90-48f4-b43a-cb995c2fe2fd/sm/SadMario.jpg","duration":510,"publication_date":"2011-08-13T20:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-mario-games","changefreq":"weekly","video":[{"title":"S1:E10 - Top 10 Mario Games","description":"The face of video games, this plumber has put together some serious classics. Do you agree with our list of the ten best?","player_loc":"https://roosterteeth.com/embed/top-10-mario-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18952ff5-dae1-4caa-8516-0689a59f8aeb/sm/free-online-games-mario.png","duration":440,"publication_date":"2011-08-13T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-e3s","changefreq":"weekly","video":[{"title":"S1:E9 - Top Ten E3's","description":"As the biggest show in gaming gets underway Stuttering Craig and Handsome Tom take a look at what made it what it is today.","player_loc":"https://roosterteeth.com/embed/top-ten-e3s","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68393268-25d1-48b4-8480-f2a7109a2261/sm/e3-logo.jpg","duration":471,"publication_date":"2011-08-13T20:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-worst-2d-to-3d-games","changefreq":"weekly","video":[{"title":"S1:E8 - Top Ten Worst 2D to 3D Games","description":"These are the best games and franchises that managed to get worse while making the jump to the third dimension.","player_loc":"https://roosterteeth.com/embed/top-ten-worst-2d-to-3d-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea551499-b177-4a35-aafc-10afa4ac2ad7/sm/ScrewAttack-Video-Game-Vault-Final-Fight-3.jpg","duration":471,"publication_date":"2011-08-13T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-worst-fighting-games","changefreq":"weekly","video":[{"title":"S1:E7 - Top Ten Worst Fighting Games","description":"In a genre of imitators and bad controls it was hard to narrow it down to just ten. But after countless hours of gameplay, somehow we did it.","player_loc":"https://roosterteeth.com/embed/top-ten-worst-fighting-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af833427-f0f0-462f-84d4-0596d9295ba4/sm/Shaq-Fu-header.jpg","duration":490,"publication_date":"2011-08-13T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-best-and-worst-gaming-peripherals","changefreq":"weekly","video":[{"title":"S1:E6 - The Best and Worst Gaming Peripherals","description":"There's been a lot of crap thrown down as far as add-ons for your consoles. We take a look at the best and worst ever, and find out why your girlfriend will be a gamer for life.","player_loc":"https://roosterteeth.com/embed/the-best-and-worst-gaming-peripherals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78ed8bce-03c3-4176-a105-0e69165f5726/sm/2009.06.16childpl.jpg","duration":450,"publication_date":"2011-08-13T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-boobies","changefreq":"weekly","video":[{"title":"S1:E5 - Top Ten Boobies","description":"Stuttering Craig and Handsome Tom take you through the top ten tatas, killer cones and best breasts in gaming. Don't get too carried away while watching...","player_loc":"https://roosterteeth.com/embed/top-ten-boobies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aee940c2-f98f-41f1-be18-698e0bb3555b/sm/breaststhatisall.jpg","duration":343,"publication_date":"2011-08-13T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-coolest-characters","changefreq":"weekly","video":[{"title":"S1:E4 - Top 10 Coolest Characters","description":"Stuttering Craig and Handsome Tom take you through the most suave, sick and straight up rad characters ever. Is your favorite on the list?","player_loc":"https://roosterteeth.com/embed/top-10-coolest-characters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33a6a1ad-cfd8-45ee-829e-d6cbc553ed0c/sm/duke_nukem_004.jpg","duration":377,"publication_date":"2011-08-13T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-metal-gear-ben-origins","changefreq":"weekly","video":[{"title":"S1:E13 - Clip of the Week - Metal Gear Ben Origins","description":"Poor HighSchool Ben. So much is asked of him. Maybe this time too much was asked of him. After watching this you might just be asking yourself how Ben and Snake aren't related.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-metal-gear-ben-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":139,"publication_date":"2011-08-13T13:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-ball-buster","changefreq":"weekly","video":[{"title":"S1:E12 - Clip of the Week - Ball Buster","description":"ScrewAttack welcomes a new member with the Quote of the Week - Nervous Nick.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-ball-buster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ec76301-91ef-4962-9816-32c42d9f1037/sm/dpcleavage.jpg","duration":161,"publication_date":"2011-08-13T13:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-pet-shop","changefreq":"weekly","video":[{"title":"S1:E11 - Clip of the Week - Pet Shop","description":"Kirby, so cute and cuddly..and a total ass kicking machine. Watch as Perfect Liz shows us what it would be like to have ScrewAttack in a pet store....If you're confused it's because you need to watch","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-pet-shop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":56,"publication_date":"2011-08-13T13:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-blaster-master","changefreq":"weekly","video":[{"title":"S1:E5 - Reboot or Retro - Blaster Master","description":"Hell yeah! Who doesn't love Blaster Master? Then why did so many people over look its reboot, Overdrive? Jared pits them head to head in Reboot or Retro.","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-blaster-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":257,"publication_date":"2011-08-13T07:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-final-fantasy-iv","changefreq":"weekly","video":[{"title":"S1:E4 - Reboot or Retro - Final Fantasy IV","description":"Nothing like ANOTHER re-release of Final Fantasy IV. With a new one on the PSP, Jared compares it to the SNES original, Final Fantasy II. Or IV. Whatever.","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-final-fantasy-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53cbb2c4-6f07-462d-b9ef-8a40ad968bbc/sm/final_fantasy_iv_gba.jpg","duration":272,"publication_date":"2011-08-13T07:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-rush-n-attack","changefreq":"weekly","video":[{"title":"S1:E3 - Reboot or Retro - Rush 'N Attack","description":"What was once known in the arcade as Green Beret came to the NES as Rush 'N Attack. Jared plays it's new sequel, Rush 'N Attack: Ex-Patriot. Should you go with the Reboot, or the Retro?","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-rush-n-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc9ab18e-bae5-460b-ad54-340372684870/sm/rush-n-attack.jpg","duration":240,"publication_date":"2011-08-13T07:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-contra-hard-corps","changefreq":"weekly","video":[{"title":"S1:E2 - Reboot or Retro - Contra Hard Corps","description":"With Hard Corps: Uprising being released on Xbox Live Arcade and PlayStation Network, Jared compares it to the Sega Genesis original, Contra: Hard Corps. If you could only have one, should it be the Reboot, or the Retro?","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-contra-hard-corps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2731947e-fb70-4ebb-8746-94525a77f32c/sm/Contra-186.jpg","duration":247,"publication_date":"2011-08-13T07:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/reboot-or-retro-rocket-knight-adventures","changefreq":"weekly","video":[{"title":"S1:E1 - Reboot or Retro - Rocket Knight Adventures","description":"If you only could choose just one game, the original or the reboot, which one should you choose? Craig tells you based off the graphics, sound, gameplay, difficulty and price tag.","player_loc":"https://roosterteeth.com/embed/reboot-or-retro-rocket-knight-adventures","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c4243c7-1cd5-483f-a896-071a856abca9/sm/rocket1.jpg","duration":178,"publication_date":"2011-08-13T07:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-batman-forever","changefreq":"weekly","video":[{"title":"S1:E59 - Video Game Vault - Batman Forever","description":"Wow, this movie sucked. You can only imagine how bad the game was. Want more Batman?","player_loc":"https://roosterteeth.com/embed/video-game-vault-batman-forever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/675ca6c8-b5c2-47ce-9da0-bb65ac575c7a/sm/Batman_Forever_Arcade.jpg","duration":92,"publication_date":"2011-08-12T14:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-gremlins-2","changefreq":"weekly","video":[{"title":"S1:E58 - Video Game Vault - Gremlins 2","description":"Don't feed Gizmo after midnight!","player_loc":"https://roosterteeth.com/embed/video-game-vault-gremlins-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":128,"publication_date":"2011-08-12T14:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-wheel-of-fortune","changefreq":"weekly","video":[{"title":"S1:E57 - Video Game Vault - Wheel of Fortune","description":"WHEEL! OF! FORTUNE! is better on TV.","player_loc":"https://roosterteeth.com/embed/video-game-vault-wheel-of-fortune","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd072a52-a418-4fc2-aa1f-7531ef1687e9/sm/wheel1.gif","duration":152,"publication_date":"2011-08-12T14:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-silkworm","changefreq":"weekly","video":[{"title":"S1:E56 - Video Game Vault - Silkworm","description":"Whoa! The choice between a helicopter AND a jeep? Make sure to have a second player available for two player simultaneous action!","player_loc":"https://roosterteeth.com/embed/video-game-vault-silkworm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31750632-1cda-42cc-9737-c2b4f8b7b075/sm/81564.png","duration":166,"publication_date":"2011-08-12T14:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ikari-warriors","changefreq":"weekly","video":[{"title":"S1:E55 - Video Game Vault - Ikari Warriors","description":"Dudes in red and blue tights shooting everything that moves? Sound familiar? It might, but it's still a cool game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ikari-warriors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8c6c7ab-bdfa-41c6-86eb-bf760c897a2a/sm/ikariwarriors_1.jpg","duration":124,"publication_date":"2011-08-12T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-california-games","changefreq":"weekly","video":[{"title":"S1:E54 - Video Game Vault - California Games","description":"The beach, babes and bodacious fun made up the greatness that is California Games. Hit the seagulls!","player_loc":"https://roosterteeth.com/embed/video-game-vault-california-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a47a560f-79b6-457f-b548-e4ce11a584ce/sm/cali_bg.gif","duration":139,"publication_date":"2011-08-12T13:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-road-rash","changefreq":"weekly","video":[{"title":"S1:E53 - Video Game Vault - Road Rash","description":"Nothing says fun like beating the crap out of people while going 100 MPH.","player_loc":"https://roosterteeth.com/embed/video-game-vault-road-rash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c147e9d8-b8f0-421e-a6ac-6913465f2d94/sm/0.jpg","duration":85,"publication_date":"2011-08-12T13:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-urban-champion","changefreq":"weekly","video":[{"title":"S1:E52 - Video Game Vault - Urban Champion","description":"In a game with next to no story line we have to presume that this game is about pimps, hoes and manholes.","player_loc":"https://roosterteeth.com/embed/video-game-vault-urban-champion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0f1a4f2-923f-4b5e-a98e-f633a119e1e0/sm/11020.png","duration":75,"publication_date":"2011-08-12T13:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-rocketeer","changefreq":"weekly","video":[{"title":"S1:E51 - Video Game Vault - The Rocketeer","description":"One of the last games on the NES, is The Rocketeer worth playing?","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-rocketeer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e787cb9-8aee-4617-9902-6a7551e7a9a9/sm/gfs_39749_1_1.jpg","duration":92,"publication_date":"2011-08-12T13:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-x-men","changefreq":"weekly","video":[{"title":"S1:E50 - Video Game Vault - X-Men","description":"The X-Men's had a pretty rough start in their gaming career.","player_loc":"https://roosterteeth.com/embed/video-game-vault-x-men","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca380fe-fe77-458e-8117-8f408ee5bc9b/sm/3654-2-x-men-mutant-apocalypse-for-snes.jpg","duration":40,"publication_date":"2011-08-12T13:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-330","changefreq":"weekly","video":[{"title":"2014:E177 - 7 Days To Die Part 3","description":"The AH Crew is back with the third installment of 7 Days to Die.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-330","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aba73b4-f086-4467-bfb9-327ff5f6f65d/sm/ep9467.jpg","duration":3250,"publication_date":"2014-07-30T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-69","changefreq":"weekly","video":[{"title":"2014:E31 - Watch Dogs - Yacht Party","description":"The AH Crew show you how to play \"Yacht Party\" in Watch Dogs.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5de050f0-ac4f-4dac-9c6c-bca988e86b12/sm/ep9465.jpg","duration":736,"publication_date":"2014-07-30T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-37","changefreq":"weekly","video":[{"title":"2014:E27 - Trials Files #115","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39e56d17-fd49-4632-b905-59c9c3489383/sm/ep9464.jpg","duration":93,"publication_date":"2014-07-29T19:33:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-327","changefreq":"weekly","video":[{"title":"2014:E176 - TowerFall Ascension","description":"Join Gavin, Michael, Ray, and Geoff as they play TowerFall Ascension.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-327","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aebaaef5-7c9f-4c35-b64a-fac3c31419b1/sm/ep9462.jpg","duration":2149,"publication_date":"2014-07-29T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-325","changefreq":"weekly","video":[{"title":"2014:E175 - Let's Build in Minecraft - Halo CTF","description":"Join Geoff and Gavin as they build Halo CTF in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-325","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8036e837-07dc-4092-9215-55910cc7879a/sm/ep9461.jpg","duration":2012,"publication_date":"2014-07-29T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-51","changefreq":"weekly","video":[{"title":"2014:E29 - Branco's B's","description":"Jack and Geoff do another five facts variety pack and cover Bully, Battlefield 3, Borderlands, Bioshcok, and Bioshock 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/741d9646-340c-4325-b151-f0d40a5ffa53/sm/ep9463.jpg","duration":247,"publication_date":"2014-07-29T17:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-51","changefreq":"weekly","video":[{"title":"2014:E30 - Trophy - GO! #40","description":"In the 40th episode of GO!, the first person who gets a trophy becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bf08cd0-46a0-414a-b9e4-557ce469f39b/sm/ep9460.jpg","duration":582,"publication_date":"2014-07-29T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-321","changefreq":"weekly","video":[{"title":"2014:E174 - Burnout Paradise","description":"For their six year anniversary, the AH Crew bring this special Let's Play.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-321","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60262fa2-2dc4-45bd-9b5c-ac6e885de52c/sm/ep9459.jpg","duration":2298,"publication_date":"2014-07-29T03:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-316","changefreq":"weekly","video":[{"title":"2014:E173 - GTA V - Easily Distracted","description":"Join Geoff, Ryan, Michael, Gavin, Ray, and Lindsay as they play \"Easily Distracted\" in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-316","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e895ff81-58b3-4b94-8dbf-91c21a2a0300/sm/ep9455.jpg","duration":2404,"publication_date":"2014-07-28T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-52","changefreq":"weekly","video":[{"title":"2014:E30 - Week #224","description":"The AH crew bring you this week's news.\r\nVideo of the Week: Fails of the Weak #201 - http://bit.ly/1tjH7Z1\r\nCommunity Video of the Week: Things to do in... Destiny Beta - Sparrow Stunts - http://bit.ly/X60gQT","player_loc":"https://roosterteeth.com/embed/ahwu-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2af8d529-d388-48a8-88da-7313f76e549c/sm/ep9458.jpg","duration":1144,"publication_date":"2014-07-28T19:48:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-rays-top-6-favorite-games","changefreq":"weekly","video":[{"title":"2014:E12 - Ray's Top 6 Favorite Games","description":"Join Geoff, Michael, and Gavin as they go over Ray's top 6 favorite games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-rays-top-6-favorite-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3fc7192-48ef-4d50-bc06-ca3bfce5928e/sm/ep9456.jpg","duration":177,"publication_date":"2014-07-28T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-307","changefreq":"weekly","video":[{"title":"2014:E172 - Last of Us Multiplayer Podcast Crew","description":"The podcast cast and crew gets together to have a rousing match of Supply Raid in Last of Us.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-307","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d29364b3-5a7d-4257-b279-bef252008ef2/sm/ep9451.jpg","duration":1988,"publication_date":"2014-07-26T17:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-303","changefreq":"weekly","video":[{"title":"2014:E171 - Minecraft - Episode 113 - Megatower","description":"The AH Crew play \"Megatower\" in this week's Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-303","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08601012-a150-48fe-8fbc-f8cdfdbd56b9/sm/ep9447.jpg","duration":2665,"publication_date":"2014-07-25T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-50","changefreq":"weekly","video":[{"title":"2014:E30 - Volume 201","description":"In Fails of the Weak #201, Geoff and Jack bring you fails in Watchdogs, Assassin's Creed IV, Call of Duty 2, Payday 2, and Sniper Elite III.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e2cdad6-8e04-4e1e-a9d7-418abd10b327/sm/ep9449.jpg","duration":116,"publication_date":"2014-07-25T20:01:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-26","changefreq":"weekly","video":[{"title":"2014:E24 - VVVVVV Part 3","description":"Michael is back with the third installment of Rage Quit - VVVVVV.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3ba2157-5f08-4915-b800-5637cbbfaaef/sm/ep9444.jpg","duration":491,"publication_date":"2014-07-24T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-49","changefreq":"weekly","video":[{"title":"2014:E30 - Episode 73: Geoff vs. Jack","description":"This week we already saw Geoff vs. Jack in HUNT #39. Will Geoff continue to be the victor in this new challenge or will Jack redeem himself Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93a4df27-e580-448f-8f42-c1ce287d00db/sm/ep9443.jpg","duration":675,"publication_date":"2014-07-24T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-297","changefreq":"weekly","video":[{"title":"2014:E170 - Wheel of Fortune Part 3","description":"Ray, Gavin, and Ryan are back playing Wheel of Fortune.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-297","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/399fc773-1cbd-4f1d-9862-b9629f8a5797/sm/ep9441.jpg","duration":2158,"publication_date":"2014-07-24T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-62","changefreq":"weekly","video":[{"title":"2014:E30 - GTA V - Water Glitch","description":"The AH Crew is back with more GTA V in Things to do in - Water Glitch.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8283ee9-9563-417a-9323-4f0f6cad236d/sm/ep9438.jpg","duration":165,"publication_date":"2014-07-23T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-294","changefreq":"weekly","video":[{"title":"2014:E169 - Destiny Competitive Multiplayer","description":"For this week's Let's Play Wednesday, the AH Crew plays Destiny Competitive Multiplayer.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-294","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e16bf01e-defa-4af8-83e6-420b7028267e/sm/ep9437.jpg","duration":2225,"publication_date":"2014-07-23T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-45","changefreq":"weekly","video":[{"title":"2014:E29 - Achievement HUNT #39","description":"This week's Achievement HUNT, brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfaf404c-96fd-449e-a945-75b9438d54a0/sm/ep9436.jpg","duration":128,"publication_date":"2014-07-23T20:24:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-289","changefreq":"weekly","video":[{"title":"2014:E168 - Let's Build in Minecraft - Monopoly Part 3","description":"Geoff and Gavin are back building in Minecraft for \"Monopoly Part 3.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-289","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3c53681-559e-4520-9dc4-45f91bb53862/sm/ep9434.jpg","duration":1861,"publication_date":"2014-07-22T19:39:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-44","changefreq":"weekly","video":[{"title":"2014:E29 - Lions, Tigers, and Bears - GO! #39","description":"In the 39th episode of GO!, the first person who kills a lion, a tiger, and a bear becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38c7b981-5ac4-4084-b1f5-b0e28de3e007/sm/ep9433.jpg","duration":1783,"publication_date":"2014-07-22T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-287","changefreq":"weekly","video":[{"title":"2014:E167 - Trine 2","description":"Join Geoff, Jack, and Gavin as they play Trine 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-287","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f75919e0-b1d0-4767-8de3-d4997476deed/sm/ep9432.jpg","duration":1779,"publication_date":"2014-07-22T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-33","changefreq":"weekly","video":[{"title":"2014:E26 - Trails Files #114","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b0fb61f-77e8-427d-a5b5-d39580e7f404/sm/ep9431.jpg","duration":67,"publication_date":"2014-07-22T18:49:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-45","changefreq":"weekly","video":[{"title":"2014:E28 - Battlefield 3","description":"Jack and Ray bring you five facts over Battlefield 3.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e720bcc-e5c3-46b3-ae31-7b91c50af5e2/sm/ep9430.jpg","duration":195,"publication_date":"2014-07-22T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-46","changefreq":"weekly","video":[{"title":"2014:E29 - Week #223","description":"The AH crew bring you this week's news.\r\nVideo of the Week: Fails of the Weak #200 - http://bit.ly/1ySJh29\r\nCommunity Video of the Week: Halo: CE Anniversary - 3 Easter Eggs - http://bit.ly/1rli6dO","player_loc":"https://roosterteeth.com/embed/ahwu-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef4575ca-1531-4dfc-b6b4-d9db957419e5/sm/ep9429.jpg","duration":477,"publication_date":"2014-07-21T21:52:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-283","changefreq":"weekly","video":[{"title":"2014:E166 - GTA V - Merica","description":"The lads and gents are back in full throttle in Let's Play - GTA V \"Merica.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-283","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bebc952-bb7b-49f9-9310-464b0b30fb89/sm/ep9428.jpg","duration":2398,"publication_date":"2014-07-21T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-11-party-games","changefreq":"weekly","video":[{"title":"2014:E11 - Top 11 Party Games","description":"Geoff, Gavin, and Ray go over the top eleven party games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-11-party-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/569c145b-47cc-4f82-a9b5-59de4dab3b53/sm/ep9427.jpg","duration":327,"publication_date":"2014-07-21T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-275","changefreq":"weekly","video":[{"title":"2014:E165 - Minecraft - Episode 112 - The Great Pig Race","description":"The AH Crew is back playing \"The Great Pig Race\" in Let's Play Minecraft!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-275","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0b551a7-028c-48c0-85d7-c3f76d20ec35/sm/ep9422.jpg","duration":2468,"publication_date":"2014-07-18T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-44","changefreq":"weekly","video":[{"title":"2014:E29 - Volume 200","description":"The AH Crew bring you the 200th episode of Fails of the Weak! The guys bring you fails in Watch Dogs, GTA V, Battlefield 4, and FIFA 14.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65ee6753-552f-47fa-9780-b719b11a0701/sm/ep9421.jpg","duration":154,"publication_date":"2014-07-18T17:12:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-270","changefreq":"weekly","video":[{"title":"2014:E164 - Halo Spartan Assault","description":"Join Geoff and Gavin as they play \"Halo Spartan Assault.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-270","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b93a2a7d-a0db-42d2-8f62-ac0dd7db21f9/sm/ep9420.jpg","duration":3961,"publication_date":"2014-07-17T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-266","changefreq":"weekly","video":[{"title":"2014:E163 - Destiny Beta","description":"Join Michael, Gavin, and Geoff as they play Destiny Beta.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-266","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c2a352f-db98-40d1-9cb9-595d75916779/sm/ep9419.jpg","duration":2450,"publication_date":"2014-07-17T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-outlast-live-at-rtx","changefreq":"weekly","video":[{"title":"2014:E20 - Outlast live at RTX","description":"Joel and Adam enlist the help of RTX 2014 attendees for navigation in the 4th part of their Outlast play through.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-outlast-live-at-rtx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b3ab7f8-a526-4398-9e92-0c81291f46d8/sm/ep9416.jpg","duration":3050,"publication_date":"2014-07-17T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-6-rainbow-six-vegas","changefreq":"weekly","video":[{"title":"2014:E6 - Rainbow Six Vegas","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of \"Rainbow Six Vegas.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-6-rainbow-six-vegas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bccd52fa-ee24-468a-9d8d-56292ea82e3f/sm/ep9418.jpg","duration":574,"publication_date":"2014-07-17T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-42","changefreq":"weekly","video":[{"title":"2014:E29 - Episode 72: Lindsay vs. Geoff","description":"It's Geoff's turn to challenge Lindsay in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d61e272-61dc-45f4-a20e-a5cac35c1381/sm/ep9415.jpg","duration":350,"publication_date":"2014-07-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-259","changefreq":"weekly","video":[{"title":"2014:E162 - 7 Days To Die Part 2","description":"Ryan, Geoff, Gavin, Ray, and Jack are back playing \"7 Days to Die.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-259","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3e2a5fe-b2c0-42c0-8044-bae9735f937d/sm/ep9414.jpg","duration":3860,"publication_date":"2014-07-16T20:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-40","changefreq":"weekly","video":[{"title":"2014:E28 - Achievement HUNT #38","description":"This week's Achievement HUNT, brings you Michael vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed9b25ed-3047-46a8-8be6-681d2be7712b/sm/ep9413.jpg","duration":413,"publication_date":"2014-07-16T20:03:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-55","changefreq":"weekly","video":[{"title":"2014:E29 - GTA V - Mario Kart","description":"Ryan shows the AH Crew how to play \"Mario Kart\" in GTA V!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4f57cc4-7435-453d-b96e-2df197de6cb1/sm/ep9411.jpg","duration":902,"publication_date":"2014-07-16T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-253","changefreq":"weekly","video":[{"title":"2014:E161 - Let's Build in Minecraft - Spring Harvest","description":"Join Geoff and Gavin as they build \"Spring Harvest\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-253","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6305574b-fcab-431b-8071-bc4e842ee6c0/sm/ep9409.jpg","duration":3048,"publication_date":"2014-07-15T21:04:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-42","changefreq":"weekly","video":[{"title":"2014:E28 - AH Character Names - GO! #38","description":"In the 38th episode of GO!, the first person who plays as three different characters in three different video games who have the same first name as an Achievement Hunter becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86da47a6-1b08-43fc-be9a-943d1b4c554e/sm/ep9408.jpg","duration":699,"publication_date":"2014-07-15T19:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-250","changefreq":"weekly","video":[{"title":"2014:E160 - New Super Mario Bros. U Wii U Part 4","description":"The AH guys are back playing the fourth installment of New Super Mario Bros. U Wii U.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-250","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ff57eaf-5df0-4a95-b5a8-2ab894ef6041/sm/ep9407.jpg","duration":2906,"publication_date":"2014-07-15T18:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-27","changefreq":"weekly","video":[{"title":"2014:E25 - Trials Files #113","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02401c1c-2792-4635-80e2-26ba57600edd/sm/ep9406.jpg","duration":91,"publication_date":"2014-07-15T17:24:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-39","changefreq":"weekly","video":[{"title":"2014:E27 - Duke Nukem Forever","description":"Jack, Geoff, Michael, and Ray bring you five facts Duke Nukem Forever.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0097015e-797b-4d6d-8f49-512373d7d5c1/sm/ep9405.jpg","duration":454,"publication_date":"2014-07-15T17:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-rtx-2014-intro","changefreq":"weekly","video":[{"title":"2014:E2425 - Achievement Hunter Presents - RTX 2014 Intro ","description":"This intro was played before the Achievement Hunter panel at RTX 2014. It was the most expensive live action production the team had undertaken, coming in at a budget of nearly $60. The music is Ennio Morricone's \"The Ecstacy of Gold,\" which is the best song ever recorded. Gavin shot the footage and Jack directed/edited it. Enjoy. BTW, come to RTX 2015.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-rtx-2014-intro","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1533a300-a54b-4058-b27b-4c0fe24eb3d4/sm/ep9404.jpg","duration":133,"publication_date":"2014-07-15T13:35:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-40","changefreq":"weekly","video":[{"title":"2014:E28 - Week #222","description":"The AH crew bring you this week's news. \r\nVideo of the Week: Let's Play - 2014 FIFA World Cup Edit - http://bit.ly/1jsvrQf\r\nCommunity Video of the Week: Things to do in.. Minecraft - Skeet Shooting X - http://bit.ly/1oB9z1B","player_loc":"https://roosterteeth.com/embed/ahwu-2014-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d383c26e-2b51-47b7-8bfc-5b762671af20/sm/ep9403.jpg","duration":533,"publication_date":"2014-07-14T20:42:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-scariest-video-game-monsters","changefreq":"weekly","video":[{"title":"2014:E10 - Top 10 Scariest Video Game Monsters","description":"Geoff, Michael, and Ray go over the top ten scariest video game monsters.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-scariest-video-game-monsters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48d77ba3-6cc0-4d9a-bda5-b486dcee7ea7/sm/ep9401.jpg","duration":297,"publication_date":"2014-07-14T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-243","changefreq":"weekly","video":[{"title":"2014:E159 - GTA V - The Grand Heist","description":"After six heists, the AH Crew join forces and create the greatest GTA V heist in the history of Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-243","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/118fec53-6cd8-4256-8ccc-ea95724d12ab/sm/ep9400.jpg","duration":2983,"publication_date":"2014-07-14T18:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-240","changefreq":"weekly","video":[{"title":"2014:E158 - 2014 FIFA World Cup","description":"Join Geoff, Ryan, Michael, and Ray as they predict the 2014 FIFA World Cup Finals.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-240","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aaf3ea7c-07e4-4fce-b89c-2bcc658bbc57/sm/ep9397.jpg","duration":1593,"publication_date":"2014-07-11T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-22","changefreq":"weekly","video":[{"title":"2014:E26 - Recap for the Week of June 30th, 2014","description":"Ray, Michael, Geoff, and the best of the worst for the week of June 30th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d215513-727b-4499-8978-3d022e04a495/sm/ep9396.jpg","duration":177,"publication_date":"2014-07-11T19:37:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-234","changefreq":"weekly","video":[{"title":"2014:E157 - Minecraft - Episode 111 - Jack's Nightmare","description":"The AH Crew is back playing more Minecraft! This week the lads and gents play \"Jack's Nightmare.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-234","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2034af06-7381-4b3e-92e5-05a7e711d9f5/sm/ep9393.jpg","duration":1873,"publication_date":"2014-07-11T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-38","changefreq":"weekly","video":[{"title":"2014:E28 - Volume 199","description":"Ray and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf186b3-5456-4dbc-b6b0-bb2c4d39b70a/sm/ep9392.jpg","duration":202,"publication_date":"2014-07-11T17:06:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-38","changefreq":"weekly","video":[{"title":"2014:E28 - Episode 71: Lindsay vs. Ray","description":"This week's VS brings you Lindsay vs. Ray! Music for this video was provided by Audio Network -\nKimi No Dance Wa: http://bit.ly/1G4a7qa and Check It Out: http://bit.ly/1G4akcN","player_loc":"https://roosterteeth.com/embed/vs-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/586efc41-748e-4681-87b4-0a8855bb3955/sm/ep9391.jpg","duration":717,"publication_date":"2014-07-10T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-231","changefreq":"weekly","video":[{"title":"2014:E156 - Watch Dogs","description":"Join the AH Crew as they play \"Watch Dogs!\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-231","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbd10829-c49d-44a5-a3a3-94f1a59eaa50/sm/ep9390.jpg","duration":2757,"publication_date":"2014-07-10T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-230","changefreq":"weekly","video":[{"title":"2014:E155 - Titanfall Part 6","description":"The AH Crew is back with the sixth installment of Let's Play - Titanfall. Go here for the latest information on Titanfall updates:\nWebiste: http://bit.ly/1qZL3NR FB: http://on.fb.me/1trGsFP Twitter: http://bit.ly/1on18XA","player_loc":"https://roosterteeth.com/embed/lets-play-2014-230","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba958b7f-d387-4e64-81fa-5bf8ed024dc5/sm/ep9389.jpg","duration":2366,"publication_date":"2014-07-10T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-titanfall-game-update-four","changefreq":"weekly","video":[{"title":"2014:E19 - Titanfall, Game Update Four","description":"Joel and Adam take you through the intricacies of the game four update by cursing and screaming at each other. They also play Titanfall.\nGo here for the latest information on Titanfall updates:\nWebiste: http://bit.ly/1qZL3NR FB: http://on.fb.me/1trGsFP Twitter: http://bit.ly/1on18XA","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-titanfall-game-update-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cbea0eb-2731-4b42-be7c-190e765d7b23/sm/ep9386.jpg","duration":1049,"publication_date":"2014-07-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-21","changefreq":"weekly","video":[{"title":"2014:E23 - Cow Catch","description":"Michael is back playing \"Cow Catch\" with another episode of Rage Quit!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07889aa8-d4a8-42d2-b08b-34ca3822b360/sm/ep9388.jpg","duration":269,"publication_date":"2014-07-10T16:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014-8","changefreq":"weekly","video":[{"title":"2014:E8 - Guacamelee! Super Turbo Championship Edition","description":"Ray and Geoff cover Guacamelee! Super Turbo Championship Edition for This Is...","player_loc":"https://roosterteeth.com/embed/this-is-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9567b320-a972-4c16-bf51-fa9e05b8228a/sm/ep9387.jpg","duration":415,"publication_date":"2014-07-10T15:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-226","changefreq":"weekly","video":[{"title":"2014:E154 - Prop Hunt Part 2","description":"The AH crew is back playing Prop Hunt!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-226","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67c805cb-ace2-468c-893d-79169a6a0ecf/sm/ep9385.jpg","duration":3870,"publication_date":"2014-07-09T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-35","changefreq":"weekly","video":[{"title":"2014:E27 - Achievement HUNT #37","description":"This week's Achievement HUNT, brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b04318e0-1d00-4e6f-880a-7828e72302b1/sm/ep9383.jpg","duration":637,"publication_date":"2014-07-09T17:00:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-46","changefreq":"weekly","video":[{"title":"2014:E28 - Watch Dogs - Bunny Hop","description":"Geoff, Ray, and Michael show you how to play \"Bunny Hop\" in Watch Dogs.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1924db60-cd84-4221-8c00-4af35604a26f/sm/ep9382.jpg","duration":91,"publication_date":"2014-07-09T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-219","changefreq":"weekly","video":[{"title":"2014:E153 - Transformers: Rise of the Dark Spark","description":"Join the AH crew as they play \"Transformers: Rise of the Dark Spark.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-219","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e76915a6-546c-49e2-a6f2-0469f248c1e5/sm/ep9380.jpg","duration":2439,"publication_date":"2014-07-08T21:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-218","changefreq":"weekly","video":[{"title":"2014:E152 - Let's Build in Minecraft - Monopoly Part 2","description":"Geoff and Gavin are back building in Minecraft for \"Monopoly Part 2.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-218","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0e7d051-5670-4021-a989-f69baf45b34c/sm/ep9379.jpg","duration":1324,"publication_date":"2014-07-08T20:33:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-36","changefreq":"weekly","video":[{"title":"2014:E27 - Three Player Kills - GO! #37","description":"In the 37th episode of GO!, the first person who gets three player kills in GTA V becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed3a2d01-97ed-4b68-acc4-1ff2127c0225/sm/ep9378.jpg","duration":508,"publication_date":"2014-07-08T20:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-transformers-rise-of-the-dark-spark-spectacularly-amazing-guide","changefreq":"weekly","video":[{"title":"2014:E2423 - Transformers: Rise of the Dark Spark - Spectacularly Amazing Guide","description":"Ray and Geoff show you how to get the \"Spectacularly Amazing\" achievement in Transformers: Rise of the Dark Spark for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-transformers-rise-of-the-dark-spark-spectacularly-amazing-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c508760-f22c-4f3f-bbbc-07fc1cc4c08b/sm/ep9376.jpg","duration":145,"publication_date":"2014-07-08T19:31:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-211","changefreq":"weekly","video":[{"title":"2014:E151 - GTA V - Path to Insanity","description":"The AH Crew is back playing \"Path of Insanity\" in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6baf7533-035e-4c19-ba59-02d1c6c451e3/sm/ep9375.jpg","duration":2638,"publication_date":"2014-07-07T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-35","changefreq":"weekly","video":[{"title":"2014:E27 - Week #221","description":"The AH crew bring you this week's news. \r\nVideo of the Week: http://bit.ly/1qCG5Go\r\nCommunity Video of the Week: http://bit.ly/1qF4ycH","player_loc":"https://roosterteeth.com/embed/ahwu-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea9e300f-fa50-4f42-ba27-fd596cbb0e64/sm/ep9374.jpg","duration":407,"publication_date":"2014-07-07T21:22:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-achievement-hunter-olympic-fails","changefreq":"weekly","video":[{"title":"2014:E9 - Top 10 Achievement Hunter Olympic Fails","description":"Watch the top 10 AH Olympic Fails for this week's Countdown!","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-achievement-hunter-olympic-fails","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3196bbc-643e-401e-b651-eee03205e672/sm/ep9373.jpg","duration":305,"publication_date":"2014-07-07T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-203","changefreq":"weekly","video":[{"title":"2014:E150 - Minecraft - Episode 110 - Monopoly Part 2","description":"The AH crew is back playing Monopoly in this week's Let's Play Minecraft!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7d16b17-4a1b-40c1-9e07-98dd33cfac05/sm/ep9368.jpg","duration":3517,"publication_date":"2014-07-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-20","changefreq":"weekly","video":[{"title":"2014:E25 - Recap for the Week of June 23rd, 2014","description":"Ray, Michael, and the best of the worst for the week of June 23rd!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8d3e469-bbee-4b88-a4a5-6ac82f9138e6/sm/ep9369.jpg","duration":152,"publication_date":"2014-07-04T13:28:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-34","changefreq":"weekly","video":[{"title":"2014:E27 - Volume 198","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeda0d9b-d550-493c-aa06-0dadf8ca8cf9/sm/ep9366.jpg","duration":179,"publication_date":"2014-07-04T12:49:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-33","changefreq":"weekly","video":[{"title":"2014:E27 - Episode 70: Gavin vs. Ryan","description":"Achievement Hunter discovered a VS that was thought to be lost to the grips of the spacetime continuum.","player_loc":"https://roosterteeth.com/embed/vs-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6630b789-bc2c-4ee4-a9f4-110f81b06088/sm/ep9365.jpg","duration":689,"publication_date":"2014-07-03T21:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-197","changefreq":"weekly","video":[{"title":"2014:E149 - Rust","description":"Join Geoff, Jack, Ryan, and Ray as they explore and watch Gavin play \"Rust.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-197","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1a84d81-9b98-4d54-a066-8afbc1ffec81/sm/ep9363.jpg","duration":2413,"publication_date":"2014-07-03T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-5-outlast","changefreq":"weekly","video":[{"title":"2014:E5 - Outlast","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of \"Outlast.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-5-outlast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5f0e5c4-098e-4b70-83f5-79c6da72244c/sm/ep9364.jpg","duration":430,"publication_date":"2014-07-03T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-among-the-sleep","changefreq":"weekly","video":[{"title":"2014:E18 - Among The Sleep","description":"Adam and Joel give parenting a try in Among The Sleep.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-among-the-sleep","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f186ce6c-cf4d-47b0-ab01-e5467cade8e5/sm/ep9362.jpg","duration":622,"publication_date":"2014-07-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-39","changefreq":"weekly","video":[{"title":"2014:E27 - GTA V - Hilltop Hijinx","description":"The AH Crew is back with another GTA V race in Things to do in \"Hilltop Hijinx.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee85d03d-fb29-43c6-9a97-74bbf389f490/sm/ep9360.jpg","duration":958,"publication_date":"2014-07-02T23:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-191","changefreq":"weekly","video":[{"title":"2014:E148 - Battlefield Hardline","description":"Join the AH Crew as they try to stay alive in \"Battlefield Hardline.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-191","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1de6e9b8-628a-4d24-b2f7-4402f7e1788c/sm/ep9359.jpg","duration":2782,"publication_date":"2014-07-02T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-guacamelee-i-swat-you-achievement-guide","changefreq":"weekly","video":[{"title":"2014:E2422 - Guacamelee! - I Swat You Achievement Guide","description":"Geoff and Millie show you how to get the \"I Swat You\" achievement in Guacamelee!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-guacamelee-i-swat-you-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18acc852-8894-4f98-9c4c-7770ebb5037d/sm/ep9358.jpg","duration":116,"publication_date":"2014-07-02T17:05:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-13","changefreq":"weekly","video":[{"title":"2014:E10 - Plants vs. Zombies: Garden Warfare - Bioware Easter Eggs","description":"Ray and Geoff show you how to find the Bioware Easter Eggs on the free DLC map Jewel Junction in Plants vs Zombies: Garden Warfare for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd44d18b-b459-4fa0-a3b1-9892a986e5ad/sm/ep9357.jpg","duration":81,"publication_date":"2014-07-02T15:31:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-29","changefreq":"weekly","video":[{"title":"2014:E26 - Achievement HUNT #36","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51d45b77-e611-4f14-a6e6-980e8942ad14/sm/ep9356.jpg","duration":432,"publication_date":"2014-07-02T14:36:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-180","changefreq":"weekly","video":[{"title":"2014:E147 - Let's Build in Minecraft - Monopoly Part 1","description":"Join Geoff and Gavin as they begin to build for Let's Play Minecraft - Monopoly. Watch Let's Play Minecraft - Monopoly: http://bit.ly/1rUBU6o","player_loc":"https://roosterteeth.com/embed/lets-play-2014-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2618a3bb-c1fa-4ce1-bc7e-3c76cfa20452/sm/ep9350.jpg","duration":1649,"publication_date":"2014-07-01T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-186","changefreq":"weekly","video":[{"title":"2014:E146 - The Incredible Adventures of Van Helsing II","description":"Join Geoff, Jack, Ryan, Gavin, and Michael as they play and immerse themselves in the world of The Incredible Adventures of Van Helsing II.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-186","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f495fb3c-4b3c-4cd4-b423-3419b1107893/sm/ep9354.jpg","duration":2844,"publication_date":"2014-07-01T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-29","changefreq":"weekly","video":[{"title":"2014:E26 - X Games - GO! #36","description":"In the 36th episode of GO! (or GO! X Games), the person who does a successful trick and landing on a skateboard, BMX bike, motorcycle, and a car jump becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cad9664-4b44-47b6-8ff0-fb4e21afa6ca/sm/ep9353.jpg","duration":561,"publication_date":"2014-07-01T18:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-july-2014","changefreq":"weekly","video":[{"title":"2014:E17 - Coming Soon - July 2014","description":"Kdin and Lindsay are back with a ton of new games and other information for the month of July. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-july-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2e91bab-151a-4b21-98be-2eb4ce20ee01/sm/ep9352.jpg","duration":256,"publication_date":"2014-07-01T17:59:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-29","changefreq":"weekly","video":[{"title":"2014:E26 - Batman: Arkham Origins","description":"Jack and Kerry bring you five facts over Batman: Arkham Origins.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddbfe8d1-5b1c-42b6-9975-d609cead06ca/sm/ep9351.jpg","duration":225,"publication_date":"2014-07-01T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-29","changefreq":"weekly","video":[{"title":"2014:E26 - Week #220","description":"The AH crew bring you this week's news. \r\nCheck out our Indiegogo Campaign: www.roosterteeth.com/lazerteam\r\nVideo of the Week: http://bit.ly/1m5cGmy and http://bit.ly/1qcpYOe\r\nCommunity Video of the Week: http://bit.ly/1mCiaPT","player_loc":"https://roosterteeth.com/embed/ahwu-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd10405d-2d7e-4fac-b406-354bb69aa86f/sm/ep9349.jpg","duration":506,"publication_date":"2014-06-30T21:47:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-174","changefreq":"weekly","video":[{"title":"2014:E145 - GTA V - Phat Stackz Part 2","description":"The AH crew is back with the second installment of Let's Play - Phat Stackz.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c51ff2e5-1e04-4f3f-baa2-cbca3610c463/sm/ep9345.jpg","duration":1813,"publication_date":"2014-06-30T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-10-animal-companions","changefreq":"weekly","video":[{"title":"2014:E8 - Top 10 Animal Companions","description":"Geoff, Ray, and Michael bring you the countdown for the top 10 animal companions in video games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-10-animal-companions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79416ce2-89f6-4ef7-ba37-787ca7c9fbc3/sm/ep9348.jpg","duration":254,"publication_date":"2014-06-30T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-169","changefreq":"weekly","video":[{"title":"2014:E144 - Minecraft - Title Update 14 Appreciation Part 2","description":"The AH crew is back in Minecraft with the second installment of Title Update 14 Appreciation.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce66ccad-9091-4858-a852-a7716aa08875/sm/ep9342.jpg","duration":3072,"publication_date":"2014-06-27T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-16","changefreq":"weekly","video":[{"title":"2014:E24 - Recap for the Week of June 16th, 2014","description":"Geoff, Gavin, Ryan, and the best of the worst for the week of June 16th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77f6bce6-ae3e-4d06-a620-43a34c719452/sm/ep9341.jpg","duration":167,"publication_date":"2014-06-27T15:03:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-27","changefreq":"weekly","video":[{"title":"2014:E26 - Volume 197","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dae62ea-a4c3-4f8f-8618-686b38f93dae/sm/ep9340.jpg","duration":180,"publication_date":"2014-06-27T14:59:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-titanfall-its-safer-here-guide","changefreq":"weekly","video":[{"title":"2014:E2420 - Titanfall - It's Safer Here Guide","description":"Geoff and Gavin show you how to get the \"It's Safer Here\" achievement in the new Expedition DLC for Titanfall.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-titanfall-its-safer-here-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/062287fc-0e93-456f-af83-9e6115443d0d/sm/ep9337.jpg","duration":132,"publication_date":"2014-06-27T14:37:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-26","changefreq":"weekly","video":[{"title":"2014:E26 - Episode 69: Ray vs. Ryan","description":"It's Ray vs. Ryan in this week's VS! Will Millie's prediction be right and will Ray win this week's game Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/079d5398-4a1a-4873-ae00-00e6a758401b/sm/ep9334.jpg","duration":535,"publication_date":"2014-06-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-159","changefreq":"weekly","video":[{"title":"2014:E143 - Dead Rising 3 Super Ultra Arcade Remix Hyper Edition EX Plus Alpha Part 2","description":"Ray, Michael, Ryan, and Gavin are back with the second installment of Dead Rising 3 Super Ultra Arcade Remix Hyper Edition EX Plus Alpha.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cad5294-5e43-42d8-86c7-26339c1d9563/sm/ep9336.jpg","duration":2314,"publication_date":"2014-06-26T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-17","changefreq":"weekly","video":[{"title":"2014:E22 - Aban Hawkins & the 1000 SPIKES","description":"Michael is back playing and raging over \"Aban Hawkins & the 1000 SPIKES.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f712afa-ed0f-4105-b960-227dac3c02d5/sm/ep9335.jpg","duration":594,"publication_date":"2014-06-26T17:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-31","changefreq":"weekly","video":[{"title":"2014:E26 - Watch Dogs - Boat Blender","description":"The AH Crew show you how to play \"Boat Blender\" in Watch Dogs.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef2257d9-85cc-4433-82c6-9bda2238bf55/sm/ep9332.jpg","duration":237,"publication_date":"2014-06-25T21:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-22","changefreq":"weekly","video":[{"title":"2014:E25 - Achievement HUNT #35","description":"This week's Achievement HUNT, brings you Michael vs. Gavin, fruits, nuts, and pain -- lots of pain.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3cd2cbf-85fb-46aa-97c9-6cd782808f1b/sm/ep9331.jpg","duration":472,"publication_date":"2014-06-25T20:53:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-150","changefreq":"weekly","video":[{"title":"2014:E142 - 7 Days To Die","description":"In this week's Let's Play Wednesday, Ryan, Geoff, Gavin, Ray, and Jack play \"7 Days to Die.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a683b21c-0eb6-414e-8116-71291bfd7a4a/sm/ep9330.jpg","duration":2999,"publication_date":"2014-06-25T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-23","changefreq":"weekly","video":[{"title":"2014:E25 - Highest Score - GO! #35","description":"In the 35th episode of GO!, the person who gets the highest score with Halo 3's campaign scoring becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/787bb18a-06f9-4ba5-9c49-f522c10008f5/sm/ep9324.jpg","duration":1139,"publication_date":"2014-06-24T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-146","changefreq":"weekly","video":[{"title":"2014:E141 - Let's Build in Minecraft - Mega Tower Part 2","description":"The AH Crew is back building in Minecraft with Let's Build - Mega Tower Part 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be46bac7-8e1b-409b-8cb1-7824776d936e/sm/ep9328.jpg","duration":1715,"publication_date":"2014-06-24T18:59:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-142","changefreq":"weekly","video":[{"title":"2014:E140 - SpeedRunners Part 2","description":"Geoff, Michael, Ray, and Jack are back playing \"SpeedRunners.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79316bc2-95a0-4192-a06d-4c7a8114a3e8/sm/ep9327.jpg","duration":2146,"publication_date":"2014-06-24T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-u-n-squadron","changefreq":"weekly","video":[{"title":"S1:E49 - Video Game Vault - U.N. Squadron","description":"A game so good it gets its own own list to tell you why you should love it.","player_loc":"https://roosterteeth.com/embed/video-game-vault-u-n-squadron","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8308da8-1c0d-466c-91a0-da48adeaa000/sm/UNSquadronIntro.jpg","duration":52,"publication_date":"2011-08-12T13:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ultraman","changefreq":"weekly","video":[{"title":"S1:E48 - Video Game Vault - Ultraman","description":"Become Ultraman and take down some of the heaviest monsters in the universe.","player_loc":"https://roosterteeth.com/embed/video-game-vault-ultraman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c947d29-1ff7-4f83-82c3-b5326a6f4e7c/sm/Ultra-Man-TowardstheFuture001.png","duration":57,"publication_date":"2011-08-12T13:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-teenage-mutant-ninja-turtles","changefreq":"weekly","video":[{"title":"S1:E47 - Video Game Vault - Teenage Mutant Ninja Turtles","description":"No matter how awesome the Turtles are, the dam level is still harder than it needs to be.","player_loc":"https://roosterteeth.com/embed/video-game-vault-teenage-mutant-ninja-turtles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e493def0-691b-48d6-be61-4fba3e90a4e3/sm/tmnt-nes-pl.jpeg","duration":50,"publication_date":"2011-08-12T13:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-starfox","changefreq":"weekly","video":[{"title":"S1:E46 - Video Game Vault - StarFox","description":"Good luck!","player_loc":"https://roosterteeth.com/embed/video-game-vault-starfox","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":48,"publication_date":"2011-08-12T13:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pilotwings","changefreq":"weekly","video":[{"title":"S1:E45 - Video Game Vault - Pilotwings","description":"This game has a rocketbelt. Throw in some stunning Mode-7 graphics and you have yourself an SNES classic.","player_loc":"https://roosterteeth.com/embed/video-game-vault-pilotwings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1484537-67ab-4c7d-91ca-cc1e0310afc1/sm/gfs_40336_1_1.jpg","duration":46,"publication_date":"2011-08-12T13:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mega-man-soccer","changefreq":"weekly","video":[{"title":"S1:E44 - Video Game Vault - Mega Man Soccer","description":"A quick cash in that's only redeeming factor is the ability to play as Robot Masters.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mega-man-soccer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1dbe909-4a2c-4f3f-a5fe-ee645dae8935/sm/gfs_40290_1_1.jpg","duration":50,"publication_date":"2011-08-12T12:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-kung-fu","changefreq":"weekly","video":[{"title":"S1:E43 - Video Game Vault - Kung Fu","description":"Climbing up stairs and one hit knock outs.","player_loc":"https://roosterteeth.com/embed/video-game-vault-kung-fu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/355887f8-dccb-4d0b-be8e-360ade8cebc9/sm/351045-7_super.jpg","duration":41,"publication_date":"2011-08-12T12:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-jordan-vs-bird","changefreq":"weekly","video":[{"title":"S1:E42 - Video Game Vault - Jordan vs Bird","description":"Two NBA legends come together for a one time challenge.","player_loc":"https://roosterteeth.com/embed/video-game-vault-jordan-vs-bird","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ed2e743-07a1-4185-bb86-e96709d9bb54/sm/412441-jordanvsbird_001_large.png","duration":98,"publication_date":"2011-08-12T12:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tc-surf-design","changefreq":"weekly","video":[{"title":"S1:E41 - Video Game Vault - T&C Surf Design","description":"Gorillas, muscle men, cats in tuxedos and the Malakalaka Board of Trust. This is so good, and so 80s.","player_loc":"https://roosterteeth.com/embed/video-game-vault-tc-surf-design","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c981110-4878-4102-a1e3-8c2b9744c2e9/sm/39172_low_1283209984.jpg","duration":141,"publication_date":"2011-08-12T12:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-shaq-fu","changefreq":"weekly","video":[{"title":"S1:E40 - Video Game Vault - Shaq Fu","description":"Do yourself a favor and never open up a can of Shaq Fu.","player_loc":"https://roosterteeth.com/embed/video-game-vault-shaq-fu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da09d4b2-4f99-4f9d-8443-a3e07a11f31d/sm/208532-shaq_fu6_super.jpg","duration":50,"publication_date":"2011-08-12T12:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-crazy-balloon","changefreq":"weekly","video":[{"title":"S1:E39 - Video Game Vault - Crazy Balloon","description":"This is quite possibly the craziest and hardest balloon based game ever made.","player_loc":"https://roosterteeth.com/embed/video-game-vault-crazy-balloon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":100,"publication_date":"2011-08-12T12:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-decap-attack","changefreq":"weekly","video":[{"title":"S1:E38 - Video Game Vault - Decap Attack","description":"Starring Chuck D. Head, this game is funky to the max.","player_loc":"https://roosterteeth.com/embed/video-game-vault-decap-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49da480f-3aec-4197-925a-2f2749c17000/sm/22498Decap-Attack-starring-Chuck-D.Head_1.jpg","duration":134,"publication_date":"2011-08-12T12:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-secret-scout","changefreq":"weekly","video":[{"title":"S1:E37 - Video Game Vault - Secret Scout","description":"Fighting Native Americans is a pretty secret adventure.","player_loc":"https://roosterteeth.com/embed/video-game-vault-secret-scout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":75,"publication_date":"2011-08-12T12:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-r-type-dx","changefreq":"weekly","video":[{"title":"S1:E36 - Video Game Vault - R-Type DX","description":"Two old games both on one portable cartridge.","player_loc":"https://roosterteeth.com/embed/video-game-vault-r-type-dx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47ae24ec-d82b-4b5c-8142-e8fe59c30624/sm/198520_50458_front.jpg","duration":93,"publication_date":"2011-08-12T11:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-legendary-wings","changefreq":"weekly","video":[{"title":"S1:E35 - Video Game Vault - Legendary Wings","description":"A Capcom classic that has almost been forgotten.","player_loc":"https://roosterteeth.com/embed/video-game-vault-legendary-wings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":133,"publication_date":"2011-08-12T11:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-cybernator","changefreq":"weekly","video":[{"title":"S1:E34 - Video Game Vault - Cybernator","description":"Beautiful promise, but an average experience.","player_loc":"https://roosterteeth.com/embed/video-game-vault-cybernator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6158e80-f6f1-469b-802a-5d7c89d4656a/sm/images_0.jpg","duration":103,"publication_date":"2011-08-12T11:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-turrican","changefreq":"weekly","video":[{"title":"S1:E33 - Video Game Vault - Super Turrican","description":"Pilot an awesome robot and take down a giant super wizard.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-turrican","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/069492ee-402a-46c4-8b1f-a6a727240c11/sm/mega_turrican.jpg","duration":92,"publication_date":"2011-08-12T11:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-sunset-riders","changefreq":"weekly","video":[{"title":"S1:E32 - Video Game Vault - Sunset Riders","description":"Hookers in closets and super slow bullets.","player_loc":"https://roosterteeth.com/embed/video-game-vault-sunset-riders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e70c21a3-edf4-42f8-bc8c-eb1cd1a05afc/sm/sun-set-riders-title-screen.jpg","duration":40,"publication_date":"2011-08-12T11:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-killer-instinct-gold","changefreq":"weekly","video":[{"title":"S1:E31 - Video Game Vault - Killer Instinct Gold","description":"What else is there to say other than C-C-C-C-Combo Breaker?","player_loc":"https://roosterteeth.com/embed/video-game-vault-killer-instinct-gold","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de70a2a6-abe1-475a-8e3e-ca2496d92cec/sm/gfs_27914_1_3.jpg","duration":55,"publication_date":"2011-08-12T11:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-intelligent-qube","changefreq":"weekly","video":[{"title":"S1:E30 - Video Game Vault - Intelligent Qube","description":"A puzzle game that really tests your I.Q.","player_loc":"https://roosterteeth.com/embed/video-game-vault-intelligent-qube","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ea67930-2d0a-4b46-acd1-8c7dbe67b2ce/sm/psx_intelligent_qube_title.jpg","duration":55,"publication_date":"2011-08-12T11:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-batman-returns","changefreq":"weekly","video":[{"title":"S1:E29 - Video Game Vault - Batman Returns","description":"This is pretty much Final Fight: Batman Edition.","player_loc":"https://roosterteeth.com/embed/video-game-vault-batman-returns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":58,"publication_date":"2011-08-12T10:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-tiger-heli","changefreq":"weekly","video":[{"title":"S1:E28 - Video Game Vault - Tiger Heli","description":"You're a helicopter with unlimited ammo ready to kick some ass.","player_loc":"https://roosterteeth.com/embed/video-game-vault-tiger-heli","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44a2c3ee-d90a-46b8-9516-180a4a6b9731/sm/TigerHeliManual.PNG","duration":89,"publication_date":"2011-08-12T10:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-bonks-adventure","changefreq":"weekly","video":[{"title":"S1:E27 - Video Game Vault - Bonk's Adventure","description":"The game that encourages you to get a concussion.","player_loc":"https://roosterteeth.com/embed/video-game-vault-bonks-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a88aecc6-a03d-413c-a24c-f62b841d4a76/sm/bonk353-610.jpg","duration":69,"publication_date":"2011-08-12T10:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-mario-bros","changefreq":"weekly","video":[{"title":"S1:E26 - Video Game Vault - Mario Bros.","description":"There used to be a time where these brothers were not very super.","player_loc":"https://roosterteeth.com/embed/video-game-vault-mario-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":64,"publication_date":"2011-08-12T10:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-primal-rage","changefreq":"weekly","video":[{"title":"S1:E25 - Video Game Vault - Primal Rage","description":"Dinosaurs are beating the crap out of each other. What more could you ask for?","player_loc":"https://roosterteeth.com/embed/video-game-vault-primal-rage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fdd8f22-f77e-4ce4-951c-f69b22f81595/sm/Primal_rage-cast.png","duration":119,"publication_date":"2011-08-12T09:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-castlevania","changefreq":"weekly","video":[{"title":"S1:E24 - Video Game Vault - Castlevania","description":"An absolute classic, did you know about the special trick at the end of this VGV?","player_loc":"https://roosterteeth.com/embed/video-game-vault-castlevania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a57ab78-5225-42d4-9f83-4fd7845b546a/sm/images.jpg","duration":146,"publication_date":"2011-08-12T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-captain-sky-hawk","changefreq":"weekly","video":[{"title":"S1:E23 - Video Game Vault - Captain Sky Hawk","description":"Before Rare made games about monkeys and bears, they made this one about a bad ass pilot who files in space.","player_loc":"https://roosterteeth.com/embed/video-game-vault-captain-sky-hawk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7790d06c-d3ee-40db-956d-2763c6367cbf/sm/Captain_skyhawk_001.jpg","duration":82,"publication_date":"2011-08-12T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-star-wars-episode-1-racer","changefreq":"weekly","video":[{"title":"S1:E22 - Video Game Vault - Star Wars Episode 1 Racer","description":"Does this game make up for the inclusion of Jar Jar Binx in the film?","player_loc":"https://roosterteeth.com/embed/video-game-vault-star-wars-episode-1-racer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee8669e-02a7-48d8-82e2-536b9377aa40/sm/scr-star-wars-episode-i-racer-for-mac.jpg","duration":51,"publication_date":"2011-08-12T09:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-nba-showtime","changefreq":"weekly","video":[{"title":"S1:E21 - Video Game Vault - NBA Showtime","description":"An inside look of NBA Jam's awesome older brother.","player_loc":"https://roosterteeth.com/embed/video-game-vault-nba-showtime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":87,"publication_date":"2011-08-12T09:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-chip-n-dales-rescue-rangers","changefreq":"weekly","video":[{"title":"S1:E20 - Video Game Vault - Chip n' Dales Rescue Rangers","description":"If you're looking for a Capcom classic, this is it!","player_loc":"https://roosterteeth.com/embed/video-game-vault-chip-n-dales-rescue-rangers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e03044c3-9411-490a-a0b5-64b27f367324/sm/chip-and-dale-rescue-rangers-cover.jpg","duration":95,"publication_date":"2011-08-11T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-\tkid-icarus","changefreq":"weekly","video":[{"title":"S1:E19 - Video Game Vault - \tKid Icarus","description":"There's nothing lighthearted about the awesomeness of Kid Icarus.","player_loc":"https://roosterteeth.com/embed/video-game-vault-\tkid-icarus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/724b01d6-1d5f-40da-9a19-0471917bddcd/sm/2514347aaa.jpg","duration":179,"publication_date":"2011-08-11T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-elevator-action","changefreq":"weekly","video":[{"title":"S1:E18 - Video Game Vault - Elevator Action","description":"Neo is trying to find out what the Matrix is behind the red door.","player_loc":"https://roosterteeth.com/embed/video-game-vault-elevator-action","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33e8a0c2-a8cb-4821-a48a-afb617bea762/sm/ElevatorAction.jpg","duration":58,"publication_date":"2011-08-11T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rc-pro-am","changefreq":"weekly","video":[{"title":"S1:E17 - Video Game Vault - RC Pro-AM","description":"Whether or not you know it, you're going to lose to the peach vehicle.","player_loc":"https://roosterteeth.com/embed/video-game-vault-rc-pro-am","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d68cef5-164c-494f-8beb-eb6d2e5130d3/sm/RC_Pro_AM_NES_ScreenShot3.jpg","duration":73,"publication_date":"2011-08-11T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-jackal","changefreq":"weekly","video":[{"title":"S1:E16 - Video Game Vault - Jackal","description":"You'll need a pocket full of miracles to beat this game.","player_loc":"https://roosterteeth.com/embed/video-game-vault-jackal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c64c4c7e-3693-4ec5-9b88-eea429a8f084/sm/gfs_45502_2_7.jpg","duration":97,"publication_date":"2011-08-11T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-\twrestle-war","changefreq":"weekly","video":[{"title":"S1:E15 - Video Game Vault - \tWrestle War","description":"Is this the most homosexual game in history?","player_loc":"https://roosterteeth.com/embed/video-game-vault-\twrestle-war","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2993bbd-d304-4576-a5f9-85abe5826381/sm/178733-wrestle-war-genesis-screenshot-bruce-blade-goes-for-the-pin.png","duration":95,"publication_date":"2011-08-11T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-pinball","changefreq":"weekly","video":[{"title":"S1:E14 - Video Game Vault - Pinball","description":"You know a game's old when the title is what you're playing.","player_loc":"https://roosterteeth.com/embed/video-game-vault-pinball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54a63843-4637-4734-8969-4161ae24b679/sm/1_463_404_90.jpg","duration":56,"publication_date":"2011-08-11T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ren-and-stimpy-stimpys-invention","changefreq":"weekly","video":[{"title":"S1:E13 - Video Game Vault - Ren and Stimpy: Stimpy's Invention","description":"Who doesn't love a little Powdered Toast Man?","player_loc":"https://roosterteeth.com/embed/video-game-vault-ren-and-stimpy-stimpys-invention","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1b16567-ff2d-4d74-b0cd-890657bf03e7/sm/gfs_45476_1_2.jpg","duration":74,"publication_date":"2011-08-11T20:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-golden-axe","changefreq":"weekly","video":[{"title":"S1:E12 - Video Game Vault - Golden Axe","description":"One of the first great arcade to home port, Golden Axe is a game that STILL escapes Craig's list of defeated games.","player_loc":"https://roosterteeth.com/embed/video-game-vault-golden-axe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67321e8d-48ac-40ea-ab4e-b879d2e0810a/sm/600full-golden-axe-screenshot.jpg","duration":119,"publication_date":"2011-08-11T20:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-street-fighter-2010","changefreq":"weekly","video":[{"title":"S1:E11 - Video Game Vault - Street Fighter 2010","description":"SWEET! A brand new Street Fighter. Wait.... this is Street Fighter.\r\n... try telling that to a 9 year old Craig.","player_loc":"https://roosterteeth.com/embed/video-game-vault-street-fighter-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc42caae-9102-4877-8127-ecad6a97ce7e/sm/street-fighter-2010-02.png","duration":75,"publication_date":"2011-08-11T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-star-soldier-vanishing-earth","changefreq":"weekly","video":[{"title":"S1:E10 - Video Game Vault - Star Soldier: Vanishing Earth","description":"Everyone loves a good schmup, right? RIGHT?!","player_loc":"https://roosterteeth.com/embed/video-game-vault-star-soldier-vanishing-earth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3587cb3-f5f3-457a-be2d-fa81fd25ee4f/sm/562857_56285_front.jpg","duration":89,"publication_date":"2011-08-11T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-the-death-and-return-of-superman","changefreq":"weekly","video":[{"title":"S1:E9 - Video Game Vault - The Death and Return of Superman","description":"Ever wanted to play the same thing over and over again? Play this.","player_loc":"https://roosterteeth.com/embed/video-game-vault-the-death-and-return-of-superman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e3eaba0-c058-4331-92ae-f68f581326d7/sm/1-3966_1.png","duration":112,"publication_date":"2011-08-11T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-alleyway","changefreq":"weekly","video":[{"title":"S1:E8 - Video Game Vault - Alleyway","description":"A black and white block breaking game featuring everyone's favorite plumber.","player_loc":"https://roosterteeth.com/embed/video-game-vault-alleyway","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/448c3806-a422-4115-af7c-fc5605fb16ed/sm/bonusstagemario_463_415_90.jpg","duration":78,"publication_date":"2011-08-11T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-super-street-fighter-2-turbo-revival","changefreq":"weekly","video":[{"title":"S1:E7 - Video Game Vault - Super Street Fighter 2 Turbo Revival ","description":"Bring the awesome action of Street Fighter 2 to your GBA with style.","player_loc":"https://roosterteeth.com/embed/video-game-vault-super-street-fighter-2-turbo-revival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f6de16b-4aa7-4413-a5c3-a4e9a61cd936/sm/super-street-fighter-2-x-revival-game-boy-advance.jpg","duration":93,"publication_date":"2011-08-11T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-strider","changefreq":"weekly","video":[{"title":"S1:E6 - Video Game Vault - Strider","description":"Is this the best game on the Genesis?  Craig sure thinks so.","player_loc":"https://roosterteeth.com/embed/video-game-vault-strider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc216450-993b-4f96-8f5d-b75ee020f934/sm/gfs_2207_1_1.jpg","duration":74,"publication_date":"2011-08-11T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-ms-pac-man-maze-madness","changefreq":"weekly","video":[{"title":"S1:E5 - Video Game Vault - Ms. Pac-Man: Maze Madness","description":"Can you screw up Ms. Pac-Man? Well, you can certainly try!","player_loc":"https://roosterteeth.com/embed/video-game-vault-ms-pac-man-maze-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abb8e176-8fb1-4a2b-adcf-660b5efc4b60/sm/02084.jpg","duration":73,"publication_date":"2011-08-11T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-rush-2049","changefreq":"weekly","video":[{"title":"S1:E4 - Video Game Vault - Rush 2049","description":"One of the coolest racing games of the era, 2049 takes Rush futuristic!","player_loc":"https://roosterteeth.com/embed/video-game-vault-rush-2049","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d817d77d-f415-41e2-967a-1f735d56323d/sm/198529_26232_front.jpg","duration":50,"publication_date":"2011-08-11T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-the-new-guy-in-charge","changefreq":"weekly","video":[{"title":"S1:E10 - Clip of the Week - The New Guy In Charge","description":"Well, our new HQ isn't quite ready for us yet... which is a bummer because Craig blew up the old one last week. In the meantime, with Craig nowhere to be found, we've been making do with what's left of it... plus one other little change...","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-the-new-guy-in-charge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":162,"publication_date":"2011-07-30T10:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/that-girl-is-poison-sidescrollers-072611","changefreq":"weekly","video":[{"title":"S1:E22 - That Girl is Poison | SideScrollers 07/26/11","description":"SideScrollers this week is a little bit shorter and a little bit different because of big things happening at the HQ. Or, what was the HQ.\r\n ","player_loc":"https://roosterteeth.com/embed/that-girl-is-poison-sidescrollers-072611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54f33cf2-763f-4f4c-b4e8-f82aaf270a61/sm/video_thumbnail_12888230-1450391913.jpg","duration":1659,"publication_date":"2011-07-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/never-sewed-a-phallus-sidescrollers-071911","changefreq":"weekly","video":[{"title":"S1:E21 - Never Sewed A Phallus | SideScrollers 07/19/11","description":"S1:E21 - Never Sewed A Phallus | SideScrollers 07/19/11","player_loc":"https://roosterteeth.com/embed/never-sewed-a-phallus-sidescrollers-071911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3311733-0271-45dd-b579-19735679c1e8/sm/video_thumbnail_12888231-1450392168.jpg","duration":2624,"publication_date":"2011-07-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-ocarina-of-torment","changefreq":"weekly","video":[{"title":"S1:E9 - Clip of the Week - Ocarina of Torment","description":"Craig was just not a fan of Ocarina of Time on 3DS, but why? What did the N64 classic do to torment Stuttering Craig so?","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-ocarina-of-torment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/467188f4-42fe-4687-ac71-35475fd61d88/sm/OcarinaOfTorment.jpg","duration":185,"publication_date":"2011-07-10T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/christmas-in-july-sidescrollers-07511","changefreq":"weekly","video":[{"title":"S1:E20 - Christmas in July | SideScrollers 07/5/11","description":"Craig is a philanthropist. He truly believes in giving onto others. Listen to his words, and you can learn how you too, can change someone's life.","player_loc":"https://roosterteeth.com/embed/christmas-in-july-sidescrollers-07511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8409fd8-1558-4204-af5d-27d71d901c1b/sm/video_thumbnail_12888232-1450392446.jpg","duration":2381,"publication_date":"2011-07-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/old-man-hole-sidescrollers-062815","changefreq":"weekly","video":[{"title":"S1:E19 - Old Man Hole | SideScrollers 06/28/15","description":"Craig's back from his vacation in Hawaii, so he'll be in a super bright, positive mood! ...right?","player_loc":"https://roosterteeth.com/embed/old-man-hole-sidescrollers-062815","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bcc07a2-53ca-4a04-9dd7-f60206fd1413/sm/video_thumbnail_12888233-1450392698.jpg","duration":3088,"publication_date":"2011-06-28T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cat-burglar-sidescrollers-062111","changefreq":"weekly","video":[{"title":"S1:E18 - Cat Burglar | SideScrollers 06/21/11","description":"Craig's gone on vacation! Nick joins the desk as they remember their favorite handhelds from the past... Tyger Electronics.\r\n ","player_loc":"https://roosterteeth.com/embed/cat-burglar-sidescrollers-062111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f7c5181-6251-4f28-acc7-aa1a6901eb27/sm/video_thumbnail_12888234-1450392886.jpg","duration":2100,"publication_date":"2011-06-21T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/e3-2011-the-possessed-mario-face","changefreq":"weekly","video":[{"title":"S1:E19 - E3 2011 - The Possessed Mario Face","description":"On one of our E3 2011 adventures, we stopped by the Santa Monica pier to get a custom-made sculpture. We're 95% sure this thing has some sort of evil spirit inside it.","player_loc":"https://roosterteeth.com/embed/e3-2011-the-possessed-mario-face","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":110,"publication_date":"2011-06-20T11:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-rape-master-sidescrollers-061411","changefreq":"weekly","video":[{"title":"S1:E17 - The Rape Master | SideScrollers 06/14/11","description":"We're back from E3! Aside from saying the word \"rape\" a copious amount, we have a very unique, first ever Middle Segment.\r\n ","player_loc":"https://roosterteeth.com/embed/the-rape-master-sidescrollers-061411","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da05eec0-0b08-46f8-8488-de3f7c7ad0d4/sm/video_thumbnail_12888235-1450393046.jpg","duration":2861,"publication_date":"2011-06-14T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/shicannery-sidescrollers-053111","changefreq":"weekly","video":[{"title":"S1:E16 - Shicannery | SideScrollers 05/31/11","description":"It's that time of year! E3 is right around the corner, and the gang shares their thoughts and predictions on the big three.","player_loc":"https://roosterteeth.com/embed/shicannery-sidescrollers-053111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d54d1e2-3ebd-43fb-9849-a6d258f4ab19/sm/video_thumbnail_12888236-1450393289.jpg","duration":2743,"publication_date":"2011-05-31T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/screwattack-wrestling-the-battle-of-the-skinny-men","changefreq":"weekly","video":[{"title":"S1:E18 - ScrewAttack Wrestling - The Battle of the Skinny Men","description":"The three smallest men in ScrewAttack step into the ring to see who is the brawniest of the scrawniest!","player_loc":"https://roosterteeth.com/embed/screwattack-wrestling-the-battle-of-the-skinny-men","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":328,"publication_date":"2011-05-29T12:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/dont-eat-yellow-ice-cream-sidescrollers-052511","changefreq":"weekly","video":[{"title":"S1:E15 - Dont' Eat Yellow Ice Cream | SideScrollers 05/25/11","description":"An exciting week as Jared talks about about a new, epic partnership, and Craig forewarns the dangers of ice cream trucks.\r\n ","player_loc":"https://roosterteeth.com/embed/dont-eat-yellow-ice-cream-sidescrollers-052511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c649b49-9e7b-470a-8ef0-d770f90f464f/sm/video_thumbnail_12888237-1450393509.jpg","duration":3154,"publication_date":"2011-05-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/good-luck-buddy-sidescrollers-051711","changefreq":"weekly","video":[{"title":"S1:E14 - Good Luck Buddy | SideScrollers 05/17/11","description":"This week's podcast is a very special one, as we take some time to say goodbye to one the longest-running ScrewAttack members, Jose.","player_loc":"https://roosterteeth.com/embed/good-luck-buddy-sidescrollers-051711","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d364da7c-dcbf-4a1d-90f2-a94e25338163/sm/video_thumbnail_12888238-1450393853.jpg","duration":2444,"publication_date":"2011-05-17T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/whisper-whisper-whisper-sidescrollers-051011","changefreq":"weekly","video":[{"title":"S1:E13 - Whisper, Whisper, Whisper | SideScrollers 05/10/11","description":"Craig and Chad are back from Too Many Games! And they're back just in time to discuss fantastic memories from fantastic video game magazines.","player_loc":"https://roosterteeth.com/embed/whisper-whisper-whisper-sidescrollers-051011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83a40f8a-e5d5-4b72-ba27-a8a6be9be139/sm/video_thumbnail_12888239-1450394037.jpg","duration":2347,"publication_date":"2011-05-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/hope-no-bullets-fall-on-me-sidescrollers-050311","changefreq":"weekly","video":[{"title":"S1:E12 - Hope No Bullets Fall On Me | SideScrollers 05/03/11","description":"This week the guys give their thoughts on the PSN hack, and then lighten up by talking about cartoons!","player_loc":"https://roosterteeth.com/embed/hope-no-bullets-fall-on-me-sidescrollers-050311","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/614e56f5-dbe4-4a60-bec2-b0826d68442b/sm/video_thumbnail_12888240-1450394249.jpg","duration":2979,"publication_date":"2011-05-03T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-dog-started-it-sidescrollers-042611","changefreq":"weekly","video":[{"title":"S1:E11 - The Dog Started It | SideScrollers 04/26/11","description":"With all the crazy Nintendo Project Cafe rumors, the boys sit down and discuss their thoughts on what's real, what's bull, and what needs to be.\r\n ","player_loc":"https://roosterteeth.com/embed/the-dog-started-it-sidescrollers-042611","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71fbbd9b-1965-480f-bdf0-7d06e7847fcb/sm/video_thumbnail_12888241-1450394390.jpg","duration":2812,"publication_date":"2011-04-26T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/totally-wheels-off-sidescrollers-041911","changefreq":"weekly","video":[{"title":"S1:E10 - Totally Wheels Off | SideScrollers 04/19/11","description":"Craig, Chad and Jared are delirious from Vegas trip. Watch them fumble through SideScrollers! We apologize in advance.","player_loc":"https://roosterteeth.com/embed/totally-wheels-off-sidescrollers-041911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1b5fa6a-2c75-46ea-a6d1-7f0223cd7f01/sm/video_thumbnail_12888242-1450394530.jpg","duration":2467,"publication_date":"2011-04-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/send-in-the-swat-bot-sidescrollers-041211","changefreq":"weekly","video":[{"title":"S1:E9 - Send in the SWAT Bot | SideScrollers 04/12/11","description":"Craig and the gang talk about some of the funniest video games, police robots, and how YOU can meet them in Las Vegas this weekend!\r\n ","player_loc":"https://roosterteeth.com/embed/send-in-the-swat-bot-sidescrollers-041211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/134ac1b2-b3cc-41ce-b48f-07e298e775eb/sm/video_thumbnail_12888243-1450394801.jpg","duration":2619,"publication_date":"2011-04-12T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/grow-up-sidescrollers-040511","changefreq":"weekly","video":[{"title":"S1:E8 - Grow Up! | SideScrollers 04/05/11","description":"S1:E8 - Grow Up! | SideScrollers 04/05/11","player_loc":"https://roosterteeth.com/embed/grow-up-sidescrollers-040511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/056a71ac-b14e-4728-8236-94689bc359fa/sm/video_thumbnail_12888244-1450394974.jpg","duration":2565,"publication_date":"2011-04-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/bens-april-fools-hard-news","changefreq":"weekly","video":[{"title":"S1:E1 - Ben's April Fools Hard News","description":"Nobody takes the news seriously on April Fools Day so we had Ben give us a dry read of one of the most confusing scripts in history.","player_loc":"https://roosterteeth.com/embed/bens-april-fools-hard-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60254a95-fd23-4b1a-a994-c58f388d12bc/sm/video_thumbnail_2644141.png","duration":327,"publication_date":"2011-04-01T10:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trigger-sold-separately-sidescrollers-032911","changefreq":"weekly","video":[{"title":"S1:E7 - Trigger Sold Separately | SideScrollers 03/29/11","description":"Craig returns to the desk! Also this week is a lot of talk of the 3DS, March Madness, and news on SGC.","player_loc":"https://roosterteeth.com/embed/trigger-sold-separately-sidescrollers-032911","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6635048-a5aa-447f-bd69-e7740869d669/sm/video_thumbnail_12888245-1450395162.jpg","duration":2471,"publication_date":"2011-03-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/leave-the-piss-sidescrollers-032211","changefreq":"weekly","video":[{"title":"S1:E6 - Leave the Piss | SideScrollers 03/22/11","description":"With Craig still recovering from surgery, Bryan sits in to throw down some DOS knowledge on your ass.\r\n ","player_loc":"https://roosterteeth.com/embed/leave-the-piss-sidescrollers-032211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7eb0149-c37b-44f1-884b-3690d85a721a/sm/video_thumbnail_12888248-1450396214.jpg","duration":2195,"publication_date":"2011-03-22T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/playing-ninja-sidescrollers-031511","changefreq":"weekly","video":[{"title":"S1:E5 - Playing Ninja | SideScrollers 03/15/11","description":"Some Newsdesk stories just can't be re-enacted. Along with one of those is Zelda talk and ninjas!\r\n ","player_loc":"https://roosterteeth.com/embed/playing-ninja-sidescrollers-031511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7211ce2a-e656-462b-bc7a-2efbc7c96176/sm/video_thumbnail_12888250-1450396354.jpg","duration":2557,"publication_date":"2011-03-15T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vote-for-the-bald-guy-sidescrollers-030811","changefreq":"weekly","video":[{"title":"S1:E4 - Vote For The Bald Guy | SideScrollers 03/08/11","description":"In this week's show, it's an all-new way to pick the Middle Segment! Come see the debut of THE WHEEL!","player_loc":"https://roosterteeth.com/embed/vote-for-the-bald-guy-sidescrollers-030811","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c13e24a-ce7c-4318-9c87-38efd8c7c096/sm/video_thumbnail_12888251-1450396514.jpg","duration":2407,"publication_date":"2011-03-08T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-bag-of-mulch-sidescrollers-030111","changefreq":"weekly","video":[{"title":"S1:E3 - A Bag of Mulch | SideScrollers 03/01/11","description":"Featuring the first ever video user questions, the gang talks about girl scout cookies, Capcom-whoring, and Destin's final show.\r\n ","player_loc":"https://roosterteeth.com/embed/a-bag-of-mulch-sidescrollers-030111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07fca027-809b-4f58-9c29-f5b58eb2cddc/sm/video_thumbnail_12888252-1450396752.jpg","duration":2356,"publication_date":"2011-03-01T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-right-cross-to-the-butt-sidescrollers-022211","changefreq":"weekly","video":[{"title":"S1:E2 - A Right Cross to the Butt | SideScrollers 02/22/11","description":"Want to have a question answered by the guys? Post it as a video response and maybe it will be answered next week.Remember, if you dig the show \"like\" us. If you don't... umm.... tell your friends how much you don't so they have to watch it to see what's so bad.As we continue to get used to this video podcast thing, the guys have to keep things brief to stay under YouTube's 2gig limit. Are you fine with lower quality and a longer show or is this length just right?","player_loc":"https://roosterteeth.com/embed/a-right-cross-to-the-butt-sidescrollers-022211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/018f8884-1dfe-4586-b636-62106fd9ede7/sm/video_thumbnail_12888253-1450396869.jpg","duration":1617,"publication_date":"2011-02-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/new-to-yt-and-the-internet-world-sidescrollers-021511","changefreq":"weekly","video":[{"title":"S1:E1 - New To YT And The Internet World | SideScrollers 02/15/11","description":"To celebrate our five year birthday this week we wanted to take ScrewAttack's first feature, SideScrollers, to the next level with a little HD video. Thanks for your support over the last five years.\r\nHave a question for the guys? Post it as a video response to this episode! Do you want to see more SideScrollers on youtube? Let us know in the comments. For those asking about \"where's the HD?!\" -\r\n\r\n1)it was shot in 720p HD. Final export was too large for youtube (over 2 gigs) and\r\n\r\n2) it still looks great.\r\n\r\n3)shut up.\r\n\r\n4)hope you enjoy the podcast presentation.\r\n\r\n5)bye.","player_loc":"https://roosterteeth.com/embed/new-to-yt-and-the-internet-world-sidescrollers-021511","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2122c51a-f5cb-49c5-986e-c87e563de390/sm/video_thumbnail_12888254-1450397052.jpg","duration":2409,"publication_date":"2011-02-15T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-dia-de-huevos-revenge-2011","changefreq":"weekly","video":[{"title":"S1:E8 - Clip of the Week - Dia De Huevos Revenge (2011)","description":"Dia De Huevos... a Holiday invented by Craig, that the staff has to suffer through every year. However, this year... they were ready!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-dia-de-huevos-revenge-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":215,"publication_date":"2011-01-21T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2010-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E17 - The 2010 ScrewAttack Royal Rumble","description":"It's the 2010 ScrewAttack Royal Rumble! Who will reign supreme?","player_loc":"https://roosterteeth.com/embed/the-2010-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":1155,"publication_date":"2010-11-08T09:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/cam_2-file-p406135","changefreq":"weekly","video":[{"title":"S1:E7 - CAM_2 FILE# P406135 ","description":"S1:E7 - CAM_2 FILE# P406135 ","player_loc":"https://roosterteeth.com/embed/cam_2-file-p406135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":390,"publication_date":"2010-10-31T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/joses-sharpie-stache","changefreq":"weekly","video":[{"title":"S1:E16 - Jose's Sharpie 'Stache","description":"Jose lost the Candy Eating Challenge and for that he's gonna lose a little bit of his dignity. He's gotta speak with an English accent for the day, and he's gotta rock that sharpie monocle and 'stache. Miiyah.","player_loc":"https://roosterteeth.com/embed/joses-sharpie-stache","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":271,"publication_date":"2010-08-19T14:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/2010-cicis-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E15 - 2010 Cici's Eating Challenge","description":"Three years later, the contestants have changed but the game remains the same: put down as much bad pizza as you can. Bryan and Jose vs Ben, Nick, and Craig. Who's getting kicked in the balls this time?","player_loc":"https://roosterteeth.com/embed/2010-cicis-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":276,"publication_date":"2010-08-18T11:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-winter-wonderland","changefreq":"weekly","video":[{"title":"S1:E14 - A Day in the Life - Winter Wonderland","description":"It doesn't snow often in Texas, but when it does we attempt to make things with it. They don't always turn out as we hope.","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-winter-wonderland","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76fa101a-542a-4302-aebd-3f3918cef489/sm/video_thumbnail_6928016.jpg","duration":205,"publication_date":"2010-02-15T08:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-biggest-busts","changefreq":"weekly","video":[{"title":"S1:E3 - Top 10 Biggest Busts","description":"Proof that some things fail in the video game industry.","player_loc":"https://roosterteeth.com/embed/top-10-biggest-busts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f65e31bf-0916-44a0-b717-62c03d5c9da9/sm/The-EWO-News-and-Commentaries-Dead-or-Alive-Paradise-Commentary-Reaction-e8987098.jpg","duration":537,"publication_date":"2009-12-23T08:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2009-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E13 - The 2009 ScrewAttack Royal Rumble","description":"It's the 2009 ScrewAttack Royal Rumble! Will we see a repeat champion or will someone else take home the title of Royal Rumble champion?","player_loc":"https://roosterteeth.com/embed/the-2009-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":1080,"publication_date":"2009-11-08T09:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-kid-icarus-fan-film","changefreq":"weekly","video":[{"title":"S1:E6 - Clip of the Week - Kid Icarus Fan Film","description":"Inspired by Eddie Lebron's fantastic Mega Man fanfilm, we created our own, with zero budget. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-kid-icarus-fan-film","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":238,"publication_date":"2009-08-18T17:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-doom-repercussions-of-evil","changefreq":"weekly","video":[{"title":"S1:E5 - Clip of the Week - Doom: Repercussions of Evil","description":"We make someone's fan-fiction into a reality after we turn his work into a movie. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-doom-repercussions-of-evil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":226,"publication_date":"2009-08-18T16:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/modern-warfare-2-trailer-analysis","changefreq":"weekly","video":[{"title":"S1:E12 - Modern Warfare 2 Trailer Analysis","description":"We saw the trailer but what is it REALLY saying? Destin, Jose and myself fill you in... as only MW fanboys can do.","player_loc":"https://roosterteeth.com/embed/modern-warfare-2-trailer-analysis","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":225,"publication_date":"2009-08-18T15:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-dia-de-huevos","changefreq":"weekly","video":[{"title":"S1:E4 - Clip of the Week - Dia De Huevos","description":"Craig creates a brand new holiday, celebrating family, friends , a cactus and ball-hitting. ","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-dia-de-huevos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":237,"publication_date":"2009-08-18T14:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-b-o-b","changefreq":"weekly","video":[{"title":"S1:E3 - Video Game Vault - B.O.B.","description":"You loved them so much, they're back--or are they?","player_loc":"https://roosterteeth.com/embed/video-game-vault-b-o-b","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da37129f-f142-4dda-8f2c-977c6a1cb5f5/sm/B.O.B..gif","duration":163,"publication_date":"2009-08-18T13:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-honest-abe","changefreq":"weekly","video":[{"title":"S1:E3 - Clip of the Week - Honest Abe","description":"Abraham Lincoln, one of the greatest American presidents and one of the most influential people in all of history, is kind of a jerk gamer.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-honest-abe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":140,"publication_date":"2009-08-18T12:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-super-mega-ultra-combo-gamer","changefreq":"weekly","video":[{"title":"S1:E2 - Clip of the Week - Super Mega Ultra Combo Gamer","description":" Video game reality shows are such bull. Which is why our version would be better in every feasible way.","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-super-mega-ultra-combo-gamer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":288,"publication_date":"2009-08-17T14:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-10-headlines-of-2010","changefreq":"weekly","video":[{"title":"S1:E2 - Top 10 Headlines of 2010","description":"Want to see the future? Craig and Nick already have and are here to give you the scoop on 2010!","player_loc":"https://roosterteeth.com/embed/top-10-headlines-of-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d63fc4d8-ad80-45c0-8667-0dc14cc48060/sm/2010.jpg","duration":505,"publication_date":"2009-08-15T10:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2008-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E10 - The 2008 ScrewAttack Royal Rumble","description":"The second ever ScrewAttack Royal Rumble! Stuttering Craig took home the title of Royal Rumble champion in 2007, will he repeat?","player_loc":"https://roosterteeth.com/embed/the-2008-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":749,"publication_date":"2008-11-08T09:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/clip-of-the-week-back-street-fighter-boys","changefreq":"weekly","video":[{"title":"S1:E1 - Clip of the Week - Back Street Fighter Boys","description":" The Back Street Fighter Boys make their glorious debut in their first music video!","player_loc":"https://roosterteeth.com/embed/clip-of-the-week-back-street-fighter-boys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":113,"publication_date":"2008-08-18T17:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-day-in-the-life-of-screwattack-twinkies","changefreq":"weekly","video":[{"title":"S1:E9 - A Day in the Life of ScrewAttack: Twinkies","description":"Gearing up for the first SGC, Jose was getting prepared for his eating challenge but we needed to verify it's plausibility and safety. Plus Destin hadn't been initiated yet...","player_loc":"https://roosterteeth.com/embed/a-day-in-the-life-of-screwattack-twinkies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":208,"publication_date":"2008-08-18T09:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/beat-that-soulja-boy-rap","changefreq":"weekly","video":[{"title":"S1:E8 - Beat That Soulja Boy Rap","description":"Soulja Boy wasn't getting back to us so we called him out in the only way we knew Soulja Boy would respond to. A battle rap.","player_loc":"https://roosterteeth.com/embed/beat-that-soulja-boy-rap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":144,"publication_date":"2008-08-18T09:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-salsa-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E7 - The Salsa Eating Challenge","description":"The Salsa Eating Challenge was a challenge for no mere mortals. Teenage titans Highschool Ben and Nervous Nick met to see who could stomach the most salsa. The results were not pretty.","player_loc":"https://roosterteeth.com/embed/the-salsa-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":424,"publication_date":"2008-08-17T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/jose-runs-in-the-snow","changefreq":"weekly","video":[{"title":"S1:E6 - Jose Runs in the Snow","description":"Part of what makes our videos is the spontaneity that produces them. It just so happened that snow fell in Texas and a deal was struck with Jose: take a run in that snow and get free lunch. But things are never really that easy.","player_loc":"https://roosterteeth.com/embed/jose-runs-in-the-snow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":215,"publication_date":"2008-08-17T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-super-smash-bros-brawl-launch-line","changefreq":"weekly","video":[{"title":"S1:E5 - The Super Smash Bros. Brawl Launch Line","description":"All we wanted to do was film the launch of Super Smash Bros. Brawl at our local GameStop, but one guy had to be a party pooper. He is why this night lives in infamy in ScrewAttack lore.","player_loc":"https://roosterteeth.com/embed/the-super-smash-bros-brawl-launch-line","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c3c0860-74d9-4153-baf6-6f69f48caf04/sm/323891.jpg","duration":227,"publication_date":"2008-08-17T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2007-screwattack-royal-rumble","changefreq":"weekly","video":[{"title":"S1:E4 - The 2007 ScrewAttack Royal Rumble","description":"The first ever ScrewAttack Royal Rumble!","player_loc":"https://roosterteeth.com/embed/the-2007-screwattack-royal-rumble","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":754,"publication_date":"2007-11-08T09:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-2007-cicis-pizza-eating-challenge","changefreq":"weekly","video":[{"title":"S1:E3 - The 2007 CiCi's Pizza Eating Challenge","description":"As you will find out eating challenges have played quite a role in ScrewAttack history, and this is one of the greatest eating challenges we've attempted. The interns Mickey and Jose take on Craig and Tom to see who can cram more bad pizza down their throat. With special guest referee Ben on hand, who's gonna get hit in the dick?","player_loc":"https://roosterteeth.com/embed/the-2007-cicis-pizza-eating-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":323,"publication_date":"2007-08-17T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-red-ring-towel-trick","changefreq":"weekly","video":[{"title":"S1:E2 - The Red Ring Towel Trick","description":"Has this ever happened to you? Has your Xbox 360 given you that red ring of death? We may have found your solution. Humping the 360 is not necessarily part of the solution, but hey if it makes you feel better then go for it.","player_loc":"https://roosterteeth.com/embed/the-red-ring-towel-trick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":131,"publication_date":"2007-08-17T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/top-ten-douchebags-of-gaming","changefreq":"weekly","video":[{"title":"S1:E1 - Top Ten Douchebags of Gaming","description":"What's the main requirement to be on this list? Simple. Whenever you see them you want to punch them in the face.","player_loc":"https://roosterteeth.com/embed/top-ten-douchebags-of-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ff2191d-993a-4c91-98d9-379c1a74f267/sm/66-A-Douchebag.jpg","duration":446,"publication_date":"2007-08-13T20:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/the-original-xbox-destruction","changefreq":"weekly","video":[{"title":"S1:E1 - The Original Xbox Destruction","description":"One of the hardest things ScrewAttack has ever had to do, but a deal's a deal.","player_loc":"https://roosterteeth.com/embed/the-original-xbox-destruction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":72,"publication_date":"2006-08-17T11:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/video-game-vault-dudes-with-attitude","changefreq":"weekly","video":[{"title":"S1:E1 - Video Game Vault - Dudes With Attitude","description":"It's a rare game for a reason.","player_loc":"https://roosterteeth.com/embed/video-game-vault-dudes-with-attitude","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/d3cc4939-e68c-4dbf-b555-a81d261eee3c.jpg/sm/ScrewAttack_thumbnail2.jpg","duration":33,"publication_date":"2006-08-12T12:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-15","changefreq":"weekly","video":[{"title":"2014:E23 - Trials Files #111","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5ab12f9-3271-4370-840a-ad4bbef5c0b0/sm/ep9326.jpg","duration":66,"publication_date":"2014-06-24T18:45:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-23","changefreq":"weekly","video":[{"title":"2014:E25 - Uncharted: Drake's Fortune","description":"Jack and Gus bring you five facts over Uncharted: Drake's Fortune.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f7a8847-e845-405c-83b1-2f9e90cd085d/sm/ep9325.jpg","duration":231,"publication_date":"2014-06-24T18:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-137","changefreq":"weekly","video":[{"title":"2014:E139 - SpeedRunners Part 2","description":"Geoff, Michael, Ray, and Jack are back playing \"SpeedRunners.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59727780-707c-4358-b08a-95ca56168fbb/sm/ep9323.jpg","duration":2145,"publication_date":"2014-06-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-15-xbla-ports","changefreq":"weekly","video":[{"title":"2014:E7 - Top 15 XBLA Ports","description":"Geoff, Ryan, and Gavin go over the Top 15 XBLA Ports.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-15-xbla-ports","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33394c7e-42b0-46cc-b06f-e3ba5d9826ef/sm/ep9322.jpg","duration":393,"publication_date":"2014-06-23T20:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-133","changefreq":"weekly","video":[{"title":"2014:E138 - GTA V - Cops N' Crooks","description":"The AH crew is back playing GTA V in Let's Play - Cops N' Crooks.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e92ce82-a1de-4c4d-bd96-bb7e01bd5ac9/sm/ep9319.jpg","duration":2439,"publication_date":"2014-06-23T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-23","changefreq":"weekly","video":[{"title":"2014:E25 - Week #219","description":"The AH crew bring you this week's news. \r\nCheck out our Indiegogo Campaign: www.roosterteeth.com/lazerteam\r\nVideo of the Week: Ray's Heist - http://bit.ly/T7IXwz\r\nCommunity Video of the Week: Things to do in... Minecraft - Predator - http://bit.ly/1jJR1u1","player_loc":"https://roosterteeth.com/embed/ahwu-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67b1e330-2f0f-4977-b472-04703f9ec686/sm/ep9321.jpg","duration":429,"publication_date":"2014-06-23T17:52:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-12","changefreq":"weekly","video":[{"title":"2014:E23 - Recap for the Week of June 9th, 2014","description":"Ray, Kerry, and the best of the worst for the week of June 9th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3175c9b7-3c7f-400c-b731-4cc809a4d989/sm/ep9314.jpg","duration":177,"publication_date":"2014-06-20T21:34:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-122","changefreq":"weekly","video":[{"title":"2014:E137 - Minecraft - Title Update 14 Appreciation","description":"The AH crew is back playing \"Title Update 14 Appreciation\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db04c326-cd38-4d44-92de-ac352ca47c8e/sm/ep9313.jpg","duration":2936,"publication_date":"2014-06-20T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-21","changefreq":"weekly","video":[{"title":"2014:E25 - Volume 196","description":"Jack and Ray bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3efa92b-5d32-4c14-8413-900f274d65f3/sm/ep9311.jpg","duration":171,"publication_date":"2014-06-20T13:47:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-115","changefreq":"weekly","video":[{"title":"2014:E136 - Shoot Many Robots","description":"Join Geoff, Michael, Jack, and Ray as they play \"Shoot Many Robots.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89bbb898-0ace-4610-beaf-62994edf8de2/sm/ep9307.jpg","duration":1655,"publication_date":"2014-06-19T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-4","changefreq":"weekly","video":[{"title":"2014:E4 - Kinect Adventures","description":"Michael and Gavin are back withe more Play Pals playing Kinect Adventures.","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84500345-edf6-4260-954c-706e59b295b1/sm/ep9310.jpg","duration":353,"publication_date":"2014-06-19T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-19","changefreq":"weekly","video":[{"title":"2014:E25 - Episode 68: Michael vs. Ryan","description":"Michael thinks outside of the box when choosing a game for this week's VS. Will it be a fruitful idea that will bring him all the belt's glory or will Ryan keep the VS throne Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b76a927-4bb9-4bcb-a07a-7b0ef26b0a20/sm/ep9306.jpg","duration":509,"publication_date":"2014-06-19T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-papers-please","changefreq":"weekly","video":[{"title":"2014:E16 - Papers Please","description":"Gus, Joel, and Adam show you how to navigate the complex politics of eastern block checkpoints/borders. Which is completely irrelevant right now. I'm not going to write anything about Ukraine here. Promise.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-papers-please","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebe01ce7-4f8e-45ad-ada9-1d64bc431e14/sm/ep9309.jpg","duration":1099,"publication_date":"2014-06-19T18:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-15","changefreq":"weekly","video":[{"title":"2014:E24 - Achievement HUNT #34","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45806e4b-08c8-4cef-bdb7-8c455b5d9d5a/sm/ep9303.jpg","duration":345,"publication_date":"2014-06-18T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-106","changefreq":"weekly","video":[{"title":"2014:E135 - The Forest Part 2","description":"Ryan, Geoff, Michael, and Ray are back with the second installment of Let's Play - The Forest.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5324cb16-f5ea-484b-afcb-128a9d82e478/sm/ep9301.jpg","duration":2114,"publication_date":"2014-06-18T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-22","changefreq":"weekly","video":[{"title":"2014:E25 - GTA V - Supercross","description":"The AH Crew plays \"Supercross\" in this week's Things to do in GTA V!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f5e3c17-1a2d-41b4-a7b0-04fb3eaa0d9f/sm/ep9299.jpg","duration":638,"publication_date":"2014-06-18T14:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-102","changefreq":"weekly","video":[{"title":"2014:E134 - Let's Build in Minecraft - Mega Tower Part 1","description":"Join the AH Crew as they build in Minecraft for Let's Play - Mega Tower.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/566857b6-ce27-46b8-99ee-d9d129f1e801/sm/ep9298.jpg","duration":1671,"publication_date":"2014-06-17T20:19:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-12","changefreq":"weekly","video":[{"title":"2014:E24 - #Selfie - GO! #34","description":"In the 34th episode of GO!, the first person to take the best selfie in GTA V becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/668d8e9c-fe2c-4d25-8bc8-497e3302eef4/sm/ep9297.jpg","duration":1444,"publication_date":"2014-06-17T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-100","changefreq":"weekly","video":[{"title":"2014:E133 - Titanfall Part 5","description":"The Achievement Hunter crew is back with the fifth installment of Let's Play - Titanfall!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c5622dd-cd62-431f-8b2a-b05f337de3b6/sm/ep9295.jpg","duration":2378,"publication_date":"2014-06-17T16:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-15","changefreq":"weekly","video":[{"title":"2014:E24 - Super Mario World","description":"Jack and Geoff bring you five facts over Super Mario World.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43ea02b8-35b0-4959-88b5-2b0f889651b3/sm/ep9294.jpg","duration":179,"publication_date":"2014-06-17T14:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-10","changefreq":"weekly","video":[{"title":"2014:E22 - Trials Files #110","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9368677f-3329-4082-9d99-836d3d9829a6/sm/ep9293.jpg","duration":113,"publication_date":"2014-06-17T14:10:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-90","changefreq":"weekly","video":[{"title":"2014:E132 - GTA V - Ray's Heist","description":"Get ready for another one of Achievement Hunter's famous heists! This week it's Ray's turn to plan out a heist in GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce117be1-424d-46b3-92a2-36a31c3b4ebf/sm/ep9290.jpg","duration":1934,"publication_date":"2014-06-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-16","changefreq":"weekly","video":[{"title":"2014:E24 - Week #218","description":"The AH crew bring you this week's news. \r\nCheck out our Indiegogo Campaign: www.roosterteeth.com/lazerteam\r\nVideo of the Week: Let's Play - The Stomping Land: http://bit.ly/1oy6tRY\r\nCommunity Video of the Week: Things to do in... Minecraft - Achievement City Halo Pack: http://bit.ly/1pFm2GR","player_loc":"https://roosterteeth.com/embed/ahwu-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15a99a92-912d-48b8-b443-5f6b17e5dfef/sm/ep9292.jpg","duration":379,"publication_date":"2014-06-16T20:37:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-hardest-10001000","changefreq":"weekly","video":[{"title":"2014:E6 - Top 5 Hardest 1000/1000","description":"Geoff and Ray bring you their top 5 hardest 1000/1000 games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-hardest-10001000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5dcf0ea-dd4b-4702-83a2-1709ec29db9d/sm/ep9291.jpg","duration":134,"publication_date":"2014-06-16T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-7","changefreq":"weekly","video":[{"title":"2014:E22 - Recap for the Week of June 2nd, 2014","description":"Ray, Kerry, and the best of the worst for the week of June 2nd!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f896b7d-254d-4684-be1d-f57267acc2fb/sm/ep9280.jpg","duration":170,"publication_date":"2014-06-13T19:02:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-76","changefreq":"weekly","video":[{"title":"2014:E131 - Minecraft - Episode 107 - Halo Mashup","description":"The AH Crew is back playing Minecraft in Let's Play Minecraft \"Halo Mashup.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d85ef3f-1c45-48dd-94db-9a60e4fe6c2a/sm/ep9279.jpg","duration":2762,"publication_date":"2014-06-13T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-spelunker-guide","changefreq":"weekly","video":[{"title":"2014:E2413 - Call of Duty: Ghosts - Spelunker Guide","description":"Ray shows you how to get the \"Spelunker\" achievement in the Invasion DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-spelunker-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55591890-70f4-42d6-887c-215eab5de9af/sm/ep9278.jpg","duration":120,"publication_date":"2014-06-13T18:04:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-13","changefreq":"weekly","video":[{"title":"2014:E24 - Volume 195","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a80fbeb-a943-4d74-9358-86aad0e82d0e/sm/ep9275.jpg","duration":180,"publication_date":"2014-06-13T16:08:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-octodad","changefreq":"weekly","video":[{"title":"2014:E15 - Octodad","description":"Joel and Adam show us the only type of tentacle video that we're allowed to upload.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-octodad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90bf605d-b355-40dc-9526-be6375130c33/sm/ep9271.jpg","duration":1136,"publication_date":"2014-06-12T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-dog-fight-guide","changefreq":"weekly","video":[{"title":"2014:E2412 - Call of Duty: Ghosts - Dog Fight Guide","description":"Ray shows you how to get the \"Dog Fight\" achievement in the Invasion DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-dog-fight-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e969088-e9f9-4d71-ae01-5a9689fce4a5/sm/ep9274.jpg","duration":78,"publication_date":"2014-06-12T19:59:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-68","changefreq":"weekly","video":[{"title":"2014:E130 - Dead Rising 3 Super Ultra Arcade Remix Hyper Edition EX Plus Alpha Part 1","description":"Ray, Michael, Ryan, and Gavin are back playing Dead Rising 3 Super Ultra Arcade Remix Hyper Edition EX Plus Alpha.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c5d01f5-c0d3-4e72-8f2a-b59ad9c1749b/sm/ep9273.jpg","duration":2173,"publication_date":"2014-06-12T18:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-10","changefreq":"weekly","video":[{"title":"2014:E24 - Episode 67: Ryan vs. Jack","description":"In this week's VS, it's Ryan's turn to challenge Jack! Will the Mad King win this week Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b974bd29-4f5a-40c4-a558-4c390406eff4/sm/ep9270.jpg","duration":551,"publication_date":"2014-06-12T14:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-6","changefreq":"weekly","video":[{"title":"2014:E21 - The Impossible Game Level Pack Level 4","description":"Michael is back playing The Impossible Game!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccebf2b5-6475-43a3-ad46-17bb884d380a/sm/ep9269.jpg","duration":522,"publication_date":"2014-06-12T13:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-egg-stra-awakening-guide","changefreq":"weekly","video":[{"title":"2014:E2411 - Call of Duty: Ghosts - Egg-stra Awakening! Guide","description":"Ray shows you how to get the \"Egg-stra Awakening!\" achievement in the Invasion DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-egg-stra-awakening-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db248d32-1394-4f4c-95c0-f824a4204d09/sm/ep9268.jpg","duration":130,"publication_date":"2014-06-12T13:31:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-8","changefreq":"weekly","video":[{"title":"2014:E23 - Achievement HUNT #33 ","description":"Today's episode of HUNT is brought to you by lack of supervision.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e94638bf-ee05-4d44-9eb6-5dc25ad2ab9f/sm/ep9267.jpg","duration":438,"publication_date":"2014-06-12T00:34:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-59","changefreq":"weekly","video":[{"title":"2014:E129 - The Stomping Land","description":"The AH Crew is back playing \"The Stomping Land.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c489fca6-0b63-45f4-9fb9-2beab0792ed2/sm/ep9265.jpg","duration":2098,"publication_date":"2014-06-11T18:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-10","changefreq":"weekly","video":[{"title":"2014:E24 - GTA V - Reverse Race","description":"The AH Crew is back playing \"Reverse Race\" in GTA V!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5da92720-89ca-40fc-9565-310d4e9a6d3c/sm/ep9263.jpg","duration":308,"publication_date":"2014-06-11T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-9","changefreq":"weekly","video":[{"title":"2014:E23 - Variety Pack #6","description":"Jack and Ray bring you the sixth Five Facts Variety Pack and cover New Super Mario Bros. U, Bulletstorm, Fallout New Vegas, Left 4 Dead, and Minecraft.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00cefbe5-fc7f-4f07-90b2-ee7e5ce971ca/sm/ep9262.jpg","duration":136,"publication_date":"2014-06-10T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-skill-showcase-expedition-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2409 - Trials Fusion - Skill Showcase - Expedition Track Challenge","description":"Jack and Ray show you how to do the Skill Showcase - Expedition Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-skill-showcase-expedition-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfaf2bac-d112-4a0c-bfce-1fec838d0a66/sm/ep9261.jpg","duration":161,"publication_date":"2014-06-10T21:26:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-skill-showcase-cold-storage-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2408 - Trials Fusion - Skill Showcase - Cold Storage Track Challenge","description":"Jack and Ray show you how to do the Skill Showcase - Cold Storage Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-skill-showcase-cold-storage-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb37c6a-c986-4ba2-97f5-1b71115b03a5/sm/ep9260.jpg","duration":207,"publication_date":"2014-06-10T21:21:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-skill-showcase-icebreaker-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2407 - Trials Fusion - Skill Showcase - Icebreaker Track Challenge","description":"Jack and Ray show you how to do the Skill Showcase - Icebreaker Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-skill-showcase-icebreaker-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68d003ef-3b36-41d9-83a3-f509ad1dd354/sm/ep9259.jpg","duration":196,"publication_date":"2014-06-10T21:10:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-48","changefreq":"weekly","video":[{"title":"2014:E128 - Let's Build in Minecraft - Nega Tower Part 2","description":"Geoff and Gavin continue building for Let's Play Minecraft - Enter the Negatower.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8426c149-4c7d-4e42-a679-5091e9011cc6/sm/ep9253.jpg","duration":1977,"publication_date":"2014-06-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-49","changefreq":"weekly","video":[{"title":"2014:E127 - Jeopardy! Part 2","description":"It's Jack, Gavin, and Ryan's turn to play Jeopardy!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6718439a-69a7-4ee9-afab-57975caf35bd/sm/ep9254.jpg","duration":2150,"publication_date":"2014-06-10T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-8","changefreq":"weekly","video":[{"title":"2014:E23 - Kill all of the Village People - GO! #33","description":"In the 33rd episode of GO!, the first person to kill all the characters of the Village People from the song YMCA in different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21d00a48-7b86-407e-8ca1-3cfd480efbfa/sm/ep9258.jpg","duration":1732,"publication_date":"2014-06-10T19:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dead-rising-3-arcade-collector-guide","changefreq":"weekly","video":[{"title":"2014:E2405 - Dead Rising 3 - Arcade Collector Guide","description":"Ray and Michael show you how to get the \"Arcade Collector\" achievement in the new DLC for Dead Rising 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dead-rising-3-arcade-collector-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b98de9c6-980b-4978-8ad1-eb7dfee1bab2/sm/ep9255.jpg","duration":200,"publication_date":"2014-06-10T18:02:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-45","changefreq":"weekly","video":[{"title":"2014:E126 - GTA V - Water Sports","description":"The AH Crew is back playing GTA V. This week they immerse themselves in the world of water sports. It's gonna be one wet of an episode!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c636da-558c-40a5-904e-b3e8546c192d/sm/ep9252.jpg","duration":3025,"publication_date":"2014-06-09T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-8","changefreq":"weekly","video":[{"title":"2014:E23 - Week #217","description":"The AH crew bring you this week's news. Check out the Controller Shop: http://bit.ly/1kf5tK7\r\nVideo of the Week: Things to do in GTA V - Bottleneck - http://bit.ly/1lj6gOs\r\nCommunity Video of the Week: Things to do in... Watch Dogs - Vehicle Destroyer - http://bit.ly/TBAUsh","player_loc":"https://roosterteeth.com/embed/ahwu-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a08adf2-8337-45c1-9ba5-868423d65bcf/sm/ep9251.jpg","duration":467,"publication_date":"2014-06-09T20:21:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-5-easiest-10001000-gs","changefreq":"weekly","video":[{"title":"2014:E5 - Top 5 Easiest 1000/1000 GS","description":"The AH crew brings you their top 5 easiest 1000/1000 GS games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-5-easiest-10001000-gs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f520d31-b554-44a0-a960-1bc274e3138e/sm/ep9250.jpg","duration":170,"publication_date":"2014-06-09T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-3","changefreq":"weekly","video":[{"title":"2014:E9 - Watch Dogs - Assassin's Creed Easter Egg","description":"Ray shows you how to find the \"Assassin's Creed Easter Egg\" in Watch Dogs for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/128f9124-e04e-4aa3-bb06-51efd7a0cb5c/sm/ep9247.jpg","duration":106,"publication_date":"2014-06-09T15:37:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-3","changefreq":"weekly","video":[{"title":"2014:E21 - Recap for the Week of May 26th, 2014","description":"Ray, Kerry, and the best of the worst for the week of May 26th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b51d398-5948-4d5f-b82a-75a6fcc146fc/sm/ep9243.jpg","duration":157,"publication_date":"2014-06-06T19:44:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-skill-showcase-eco-park-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2403 - Trials Fusion - Skill Showcase - Eco Park Track Challenge","description":"Jack and Ray show you how to do the Skill Showcase - Eco Park Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-skill-showcase-eco-park-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44fa6ce0-25d3-4d1b-a5af-b06a2e39f3ce/sm/ep9242.jpg","duration":180,"publication_date":"2014-06-06T19:23:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-skill-showcase-rocky-road-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2402 - Trials Fusion - Skill Showcase - Rocky Road Track Challenge","description":"Jack and Ray show you how to do the Skill Showcase - Rocky Road Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-skill-showcase-rocky-road-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2658913e-0dfa-4d31-b4ec-86b8075947de/sm/ep9241.jpg","duration":132,"publication_date":"2014-06-06T19:23:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-6","changefreq":"weekly","video":[{"title":"2014:E23 - Volume 194","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3f38dc0-e7e6-415e-b86e-a27eea0a4123/sm/ep9240.jpg","duration":180,"publication_date":"2014-06-06T17:46:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-28","changefreq":"weekly","video":[{"title":"2014:E125 - Minecraft - Episode 106 - Bodyguards","description":"The AH crew is back playing Let's Play Minecraft! This week they play \"Bodyguards,\" and attempt to protect villagers.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bdc6133-651b-4212-b51c-dff98b6f1a2b/sm/ep9238.jpg","duration":1836,"publication_date":"2014-06-06T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-5","changefreq":"weekly","video":[{"title":"2014:E23 - Episode 66: Jack vs. Ray","description":"This week's it's Jack vs Ray in VS Episode 66!","player_loc":"https://roosterteeth.com/embed/vs-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0955be2f-16f3-4399-a39f-db1120a9012f/sm/ep9237.jpg","duration":1083,"publication_date":"2014-06-06T00:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-25","changefreq":"weekly","video":[{"title":"2014:E124 - The Forest","description":"Join Geoff, Michael, and Ray as they explore and watch Ryan play \"The Forest.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f14f0dd8-5f2c-4c1f-a9f4-1dba0d166e3c/sm/ep9236.jpg","duration":2015,"publication_date":"2014-06-05T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-volgarr-the-viking-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E14 - Volgarr the Viking with Joel and Adam","description":"Joelgarr and Adamgarr show us how to throw spears and execute perfectly timed rolls in Volgarr the Viking.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-volgarr-the-viking-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f20526f-2076-463d-baf1-378621d078fa/sm/ep9234.jpg","duration":2072,"publication_date":"2014-06-05T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-3","changefreq":"weekly","video":[{"title":"2014:E3 - ibb & obb","description":"Michael and Gavin are back with more Play Pals! This week they play \"ibb & obb.\"","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0ed0f9b-9872-46af-9e1a-6ab6d832d170/sm/ep9235.jpg","duration":530,"publication_date":"2014-06-05T16:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014-2","changefreq":"weekly","video":[{"title":"2014:E7 - Watch_Dogs","description":"Ray and Geoff cover Watch_Dogs for This Is...","player_loc":"https://roosterteeth.com/embed/this-is-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c077f9bf-35fa-4212-8ab3-87eb4a2e0c18/sm/ep9233.jpg","duration":411,"publication_date":"2014-06-05T13:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-2","changefreq":"weekly","video":[{"title":"2014:E22 - Achievement HUNT #32","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a5c9a2c-4f0e-4d3a-bdca-9c06ccc70a23/sm/ep9232.jpg","duration":1000,"publication_date":"2014-06-04T22:06:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-18","changefreq":"weekly","video":[{"title":"2014:E123 - Worms Battlegrounds","description":"In this week's Let's Play Wednesday, Geoff, Gavin, Ray, and, Michael play Worms Battlegrounds.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfeca2fb-b893-4e41-8ddc-b7ffc3c8e156/sm/ep9230.jpg","duration":2287,"publication_date":"2014-06-04T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-3","changefreq":"weekly","video":[{"title":"2014:E23 - GTA V - Bottleneck","description":"The AH Crew is back playing GTA V. In this week's Things to do in, \nGeoff, Jack, Michael, Lindsay, Gavin, and Ryan find themselves racing bikes.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca3d98f5-6923-499d-865d-9a71a423c8fa/sm/ep9229.jpg","duration":540,"publication_date":"2014-06-04T13:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-2","changefreq":"weekly","video":[{"title":"2014:E22 - Kill 3 Chickens in 3 Games - GO! #32","description":"In the 32nd episode of GO!, the first person to kill three chickens in three different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cef48711-587e-488b-b05c-0c57f55698a7/sm/ep9226.jpg","duration":1832,"publication_date":"2014-06-03T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-2","changefreq":"weekly","video":[{"title":"2014:E21 - Trials Files #109","description":"Geoff and Michael bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f6d780c-f3a0-4b24-83cd-3d532b573b51/sm/ep9228.jpg","duration":72,"publication_date":"2014-06-03T20:00:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-15","changefreq":"weekly","video":[{"title":"2014:E122 - Let's Build in Minecraft - Nega Tower Part 1","description":"Geoff and Gavin build in Minecraft for Let's Play Minecraft - Enter the Negatower. Watch Let's Play Minecraft - Enter the Negatower Part 1: http://bit.ly/1x2OvYZ and Part 2: http://bit.ly/1iQCwnM","player_loc":"https://roosterteeth.com/embed/lets-play-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5280e5ef-02fb-4a9b-8f00-2401cbd55f72/sm/ep9227.jpg","duration":2247,"publication_date":"2014-06-03T19:01:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-10","changefreq":"weekly","video":[{"title":"2014:E121 - Wheel of Fortune Part 2","description":"The AH Crew is back with the second part of Let's Play - Wheel of Fortune!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcd0dafc-b046-43cb-84c7-6aee785f1611/sm/ep9225.jpg","duration":2027,"publication_date":"2014-06-03T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-2","changefreq":"weekly","video":[{"title":"2014:E22 - Variety Pack #5","description":"Jack and Franco bring you the fifth Five Facts Variety Pack and cover Call of Duty Modern Warfare, Bioshock Infinite, Far Cry 3 Blood Dragon, Super Meat Boy, and Dead Space 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5a7a790-135d-493b-8cf3-9c85ac3ed774/sm/ep9224.jpg","duration":180,"publication_date":"2014-06-03T13:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-15-xbla-games","changefreq":"weekly","video":[{"title":"2014:E4 - Top 15 XBLA Games","description":"Geoff, Michael, and Ray brig you their top 15 XBLA games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-15-xbla-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dc4ccca-d684-4c6a-a68a-f70bdf9203ce/sm/ep9223.jpg","duration":539,"publication_date":"2014-06-02T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-6","changefreq":"weekly","video":[{"title":"2014:E120 - GTA V - Jack's Heist","description":"In this week's Let's Play GTA V, it's Jack's turn to plan out a heist!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db8c722-a227-4548-8fc1-6580f7974961/sm/ep9222.jpg","duration":2404,"publication_date":"2014-06-02T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-2","changefreq":"weekly","video":[{"title":"2014:E22 - Week #216","description":"The AH crew bring you this week's news. \r\nVideo of the Week: Lets Play - Prop Hunt Part 1: https://www.youtube.com/watchv=urPODJzQHAw\r\nCommunity Video of the Week: http://www.youtube.com/watchv=QrWMXJGYIf8","player_loc":"https://roosterteeth.com/embed/ahwu-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/def07532-492c-44fe-8215-6dc667ef8c50/sm/ep9221.jpg","duration":382,"publication_date":"2014-06-02T18:33:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-june-2014","changefreq":"weekly","video":[{"title":"2014:E16 - Coming Soon - June 2014","description":"Kdin and Lindsay are back with a ton of new games and other information for the month of June. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-june-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db0b5e06-8b1e-4e5b-a745-27892e758d68/sm/ep9217.jpg","duration":324,"publication_date":"2014-05-30T20:02:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-329","changefreq":"weekly","video":[{"title":"2014:E119 - Minecraft - Episode 105 - Enter the Negatower Part 2","description":"The AH crew is back with the second installment of \"Enter the Negatower.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-329","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/706cd780-2c76-490a-9d51-5fdea8bb12f6/sm/ep9210.jpg","duration":2548,"publication_date":"2014-05-30T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014","changefreq":"weekly","video":[{"title":"2014:E6 - War Thunder","description":"Geoff and Ryan cover War Thunder for This Is... Try out War Thunder for free here: http://bit.ly/1hyzww8","player_loc":"https://roosterteeth.com/embed/this-is-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aad41700-7768-4129-8640-765c246c71ff/sm/ep9216.jpg","duration":292,"publication_date":"2014-05-30T19:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-28","changefreq":"weekly","video":[{"title":"2014:E20 - Recap for the Week of May 19th, 2014","description":"Ray, Michael, and the best of the worst for the week of May 19th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35c9664e-a917-4f01-83c9-f10413649cb6/sm/ep9214.jpg","duration":191,"publication_date":"2014-05-30T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-tropic-storm-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2400 - Trials Fusion - Rainforest Rumble - Tropic Storm Track Challenge","description":"Jack and Ray show you how to do the Rainforest Rumble - Tropic Storm Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-tropic-storm-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dcd7308-b21a-4002-af3e-cd090a7d8c98/sm/ep9213.jpg","duration":161,"publication_date":"2014-05-30T18:08:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-halo-skin-pack","changefreq":"weekly","video":[{"title":"2014:E15 - Minecraft - Halo Skin Pack","description":"Ray and Geoff show you all of the new skins in the Halo Mash-up pack in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-halo-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abb6b23a-3e59-44d1-b9a1-a13df87c021e/sm/ep9212.jpg","duration":144,"publication_date":"2014-05-30T17:57:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-51","changefreq":"weekly","video":[{"title":"2014:E22 - Volume 193","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/677b7445-3eeb-4f4e-bf2a-bc303cdce157/sm/ep9209.jpg","duration":173,"publication_date":"2014-05-30T15:47:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-temple-trouble-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2399 - Trials Fusion - Rainforest Rumble - Temple Trouble Track Challenge","description":"Jack and Ray show you how to do the Rainforest Rumble - Temple Trouble Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-temple-trouble-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9be14759-680d-4c05-ab7e-7f5f42f26565/sm/ep9208.jpg","duration":211,"publication_date":"2014-05-30T15:36:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-51","changefreq":"weekly","video":[{"title":"2014:E22 - Episode 65: Ray vs. Geoff","description":"This week's VS brings you Ray vs. Geoff!","player_loc":"https://roosterteeth.com/embed/vs-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70145f14-45ce-42b5-893e-b3f3d86da274/sm/ep9207.jpg","duration":757,"publication_date":"2014-05-29T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-324","changefreq":"weekly","video":[{"title":"2014:E118 - Powerstar Golf Part 2","description":"Geoff, Michael, Ray, and Ryan continue playing Powerstar Golf in Lets Play - Powerstar Golf Part 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-324","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c4858d0-2a93-4118-8b25-987fa118eda6/sm/ep9205.jpg","duration":2586,"publication_date":"2014-05-29T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-28","changefreq":"weekly","video":[{"title":"2014:E20 - VVVVVV Part 2","description":"Michael is back with the second installment of Rage Quit \"VVVVVV.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0963888c-953c-445e-af69-f10274b65ac7/sm/ep9204.jpg","duration":523,"publication_date":"2014-05-29T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-gang-beasts-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E13 - Gang Beasts with Joel and Adam","description":"Joel and Adam show us the proper way to stumble home whilst drunk.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-gang-beasts-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78ec8e0a-dddf-4147-959e-2601702b6b13/sm/ep9202.jpg","duration":1207,"publication_date":"2014-05-29T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-47","changefreq":"weekly","video":[{"title":"2014:E21 - Achievement HUNT #31","description":"This week's Achievement HUNT, brings you Ray vs. Michael.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a34ee420-762d-44cf-9c15-e833fbf47e0d/sm/ep9201.jpg","duration":1089,"publication_date":"2014-05-28T21:36:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-66","changefreq":"weekly","video":[{"title":"2014:E22 - GTA V - Juggernaut","description":"The AH crew is back doing stuff in GTA V. This week they follow up on one of Ryan's ideas and play \"Juggernaut.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90e0facb-841b-421f-829b-58b10cc01cb8/sm/ep9200.jpg","duration":702,"publication_date":"2014-05-28T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-315","changefreq":"weekly","video":[{"title":"2014:E117 - Prop Hunt Part 1","description":"Geoff, Jack, Ryan, Michael, Gavin, and Ray play Prop Hunt in this week's Let's Play Wednesday!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-315","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96f0314d-96af-40a5-bd6c-a51cf7f34d07/sm/ep9199.jpg","duration":2905,"publication_date":"2014-05-28T19:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-34","changefreq":"weekly","video":[{"title":"2014:E20 - Trials Files #108","description":"Geoff and Gavin bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ab79e87-00c9-4a52-95d0-fa90ff19fa4c/sm/ep9197.jpg","duration":87,"publication_date":"2014-05-27T20:33:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-308","changefreq":"weekly","video":[{"title":"2014:E116 - Are You Smarter Than a 5th Grader?","description":"The AH crew is back with another Let's Play and play \"Are You Smarter Than a 5th Grader\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-308","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8c6d7eb-6df5-4c1f-9921-81aa18be1edf/sm/ep9196.jpg","duration":1727,"publication_date":"2014-05-27T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-306","changefreq":"weekly","video":[{"title":"2014:E115 - Let's Build in Minecraft - Dropping List","description":"Geoff and Gavin build in Minecraft for Let's Play \"Dropping List.\" \r\nWatch Let's Play Minecraft - Dropping List: http://bit.ly/1lPmnA2","player_loc":"https://roosterteeth.com/embed/lets-play-2014-306","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd99c7ee-4b77-4056-96d8-e67b060104b8/sm/ep9194.jpg","duration":1843,"publication_date":"2014-05-27T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-47","changefreq":"weekly","video":[{"title":"2014:E21 - Kill a Hunter and a Brute (Again) - GO! #31","description":"In the 31st episode of GO!, the first person to kill a hunter and a brute in games different to the ones used in Episode 28 (http://bit.ly/1oqFvdX) becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca4f2d67-ff1f-4aea-8ec4-7d5fa50ed8f2/sm/ep9195.jpg","duration":850,"publication_date":"2014-05-27T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-46","changefreq":"weekly","video":[{"title":"2014:E21 - inFAMOUS 2","description":"Jack and Michael bring you five facts over inFAMOUS 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5244677f-4fba-4734-a549-8d17605d2e2e/sm/ep9193.jpg","duration":230,"publication_date":"2014-05-27T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-304","changefreq":"weekly","video":[{"title":"2014:E114 - GTA V - Phat Stackz Part 1","description":"The AH crew is back playing more GTA V in \"Phat Stackz.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-304","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/693b4565-0619-44f2-94a9-97c5516711b4/sm/ep9192.jpg","duration":2332,"publication_date":"2014-05-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-48","changefreq":"weekly","video":[{"title":"2014:E21 - Week #215","description":"The AH crew bring you this week's news. \r\nVideo of the Week: Let's Play Minecraft - Episode 104 - Enter the Negatower Part 1 http://bit.ly/1mhpQJa","player_loc":"https://roosterteeth.com/embed/ahwu-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e17fcb97-ddb7-4d3b-bc49-3c2a14806cb5/sm/ep9190.jpg","duration":426,"publication_date":"2014-05-24T18:32:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-top-12-most-satisfying-guns-in-video-games","changefreq":"weekly","video":[{"title":"2014:E3 - Top 12 Most Satisfying Guns in Video Games","description":"Geoff, Michael, and Ray go over their top twelve most satisfying guns in video games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-top-12-most-satisfying-guns-in-video-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78615115-8897-437a-9d41-bcf13a8d49c5/sm/ep9188.jpg","duration":334,"publication_date":"2014-05-23T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-26","changefreq":"weekly","video":[{"title":"2014:E19 - Recap for the Week of May 12th, 2014 ","description":"Ray, Michael, and the best of the worst for the week of May 12th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1718c65-9dff-46eb-a06f-f65fc246fcaf/sm/ep9187.jpg","duration":127,"publication_date":"2014-05-23T19:09:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-296","changefreq":"weekly","video":[{"title":"2014:E113 - Minecraft - Episode 104 - Enter the Negatower Part 1","description":"In Let's Play Minecraft \"Enter the Negatower,\" the AH crew will enter the killing fields of the Negatower and battle to the death as they play Let's Make a Deal Watch the video -- it makes sense.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-296","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7c8c779-fdda-409a-88ef-5c4a9bfd2ba2/sm/ep9185.jpg","duration":1967,"publication_date":"2014-05-23T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-47","changefreq":"weekly","video":[{"title":"2014:E21 - Volume 192","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bdda1fe-c034-475e-b3f3-4b6921309221/sm/ep9184.jpg","duration":180,"publication_date":"2014-05-23T14:50:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-23","changefreq":"weekly","video":[{"title":"2014:E8 - Wolfenstein: The New Order - Vault 101 Easter Egg","description":"Ray and Geoff show you how to find the \"Vault 101 Easter Egg\" in Wolfenstein: The New Order for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46a2f601-8452-415d-88d7-4695aed3e8f2/sm/ep9183.jpg","duration":73,"publication_date":"2014-05-23T14:28:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-bungalow-beach-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2397 - Trials Fusion - Rainforest Rumble - Bungalow Beach Track Challenge ","description":"Jack and Ray show you how to do the Rainforest Rumble - Bungalow Beach Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-bungalow-beach-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7969f943-7ffa-4ff5-b04d-2b867eeab2b1/sm/ep9181.jpg","duration":149,"publication_date":"2014-05-22T20:56:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-swamp-crash-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2396 - Trials Fusion - Rainforest Rumble - Swamp Crash Track Challenge ","description":"Jack and Ray show you how to do the Rainforest Rumble - Swamp Crash Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-rainforest-rumble-swamp-crash-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca0ec443-1c81-420f-a329-2c8bfb0f6550/sm/ep9180.jpg","duration":136,"publication_date":"2014-05-22T20:51:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-286","changefreq":"weekly","video":[{"title":"2014:E112 - SpeedRunners","description":"It's time to watch Michael, Ray, Geoff, and Jack play \"SpeedRunners.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-286","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d93bd306-1726-4d5f-805d-bde24b9baea3/sm/ep9176.jpg","duration":2616,"publication_date":"2014-05-22T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-baking-simulator-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E12 - Baking Simulator with Joel and Adam","description":"World renown Pastry Chef Joel Heyman and his Sous Chef Adam Ellis take us on a culinary adventure through the world of cake baking.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-baking-simulator-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17ec2584-a374-42f5-aea7-00338426bcf6/sm/ep9177.jpg","duration":985,"publication_date":"2014-05-22T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-2","changefreq":"weekly","video":[{"title":"2014:E2 - Space Farmers","description":"Michael and Gavin are back with more Play Pals! This week they immerse themselves in the world of Space Farmers.","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f95d327-da10-45f1-8155-1df29fb30199/sm/ep9175.jpg","duration":313,"publication_date":"2014-05-22T14:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-279","changefreq":"weekly","video":[{"title":"2014:E111 - Sportsfriends","description":"In this this week's Let's Play Wednesday, it's Michael and Gavin vs. Geoff and Ray in Sportsfriends!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-279","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5487eb70-3e1a-4042-aa0b-0522bcbfe0a6/sm/ep9171.jpg","duration":1605,"publication_date":"2014-05-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-42","changefreq":"weekly","video":[{"title":"2014:E20 - Achievement HUNT #30","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e1c9c6b-fcf3-4913-904e-83bd7dfaf33d/sm/ep9173.jpg","duration":827,"publication_date":"2014-05-21T19:34:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-22","changefreq":"weekly","video":[{"title":"2014:E7 - Wolfenstein: The New Order - Wolfenstein 3D Easter Egg","description":"Ray and Geoff show you how to find the \"Wolfenstein 3D Easter Egg\" in Wolfenstein: The New Order for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58a8fb86-6b71-4396-a54b-f53ba716b2fe/sm/ep9172.jpg","duration":149,"publication_date":"2014-05-21T17:44:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-58","changefreq":"weekly","video":[{"title":"2014:E21 - GTA V - Splish Splash Die","description":"Geoff, Michael, Ray, Jack, Gavin, and Ryan jump onto jet skies play Splish Splash Die in GTA V!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdd2b34e-ee7f-46ff-bf8f-a65827afb472/sm/ep9169.jpg","duration":403,"publication_date":"2014-05-21T15:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-30","changefreq":"weekly","video":[{"title":"2014:E19 - Trials Files #107","description":"Jack and Geoff bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48b967b8-f384-4232-957c-522ab623ea7b/sm/ep9168.jpg","duration":132,"publication_date":"2014-05-20T19:54:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-43","changefreq":"weekly","video":[{"title":"2014:E20 - Ground Pound - GO! #30","description":"In the 30th episode of GO!, the first person do a ground pound in a video game without using Saints Row becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e152c9e-fb49-4741-a31c-e45b16a43dc2/sm/ep9167.jpg","duration":235,"publication_date":"2014-05-20T18:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-273","changefreq":"weekly","video":[{"title":"2014:E110 - Plants vs. Zombies: Garden Warfare Part 3","description":"Geoff, Michael, Jack, and Ray are back with the third installment of Let's Play - Plants vs. Zombies: Garden Warfare!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-273","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/380384c1-dfd0-4d29-9689-18c85904a6ee/sm/ep9165.jpg","duration":1665,"publication_date":"2014-05-20T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-269","changefreq":"weekly","video":[{"title":"2014:E109 - Let's Build in Minecraft - The Credits Part 2","description":"Geoff and Gavin continue building the ending credits for the 100th episode of Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-269","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f697676-5e70-4e94-88b2-33aa90204216/sm/ep9164.jpg","duration":2007,"publication_date":"2014-05-20T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-41","changefreq":"weekly","video":[{"title":"2014:E20 - inFAMOUS","description":"Jack and Michael bring you five facts over inFAMOUS.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c152b597-0441-435b-9259-5ddb83ef90d7/sm/ep9166.jpg","duration":287,"publication_date":"2014-05-20T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-43","changefreq":"weekly","video":[{"title":"2014:E20 - Week #214","description":"The AH crew bring you this week's news. \r\nCommunity Video of the Week: Things to do in... Skate 3 - No Skating! - http://bit.ly/1k0ph8m\r\nVideo of the Week: Countdown - http://bit.ly/R1KTW1","player_loc":"https://roosterteeth.com/embed/ahwu-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a2429a1-5a7c-4fd7-85bd-9c17b2d18ce3/sm/ep9163.jpg","duration":519,"publication_date":"2014-05-19T21:19:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-264","changefreq":"weekly","video":[{"title":"2014:E108 - GTA V - Michael's Heist","description":"This week Michael becomes the mastermind/boss for the new heist in Let's Play Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-264","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb5de2a3-a855-46e7-bcde-b8b7aee581d6/sm/ep9161.jpg","duration":2728,"publication_date":"2014-05-19T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-comic-book-edition","changefreq":"weekly","video":[{"title":"2014:E2 - Comic Book Edition","description":"Geoff, Michael, and Ray go over their top ten comic book related video games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-comic-book-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8e581e0-0de3-45d6-bdb1-3f828be429ee/sm/ep9162.jpg","duration":282,"publication_date":"2014-05-19T19:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-23","changefreq":"weekly","video":[{"title":"2014:E18 - Recap for the Week of May 5th, 2014 ","description":"Ray, Michael, and the best of the worst for the week of May 5th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/862f45c8-b8a1-41c3-86af-442e0ac35a88/sm/ep9157.jpg","duration":130,"publication_date":"2014-05-16T20:15:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-octodad-dadliest-catch-stay-true-to-yourself-poor-workplace-etiquette-independent-woman","changefreq":"weekly","video":[{"title":"2014:E2395 - Octodad: Dadliest Catch - Stay True to Yourself, Poor Workplace Etiquette, Independent Woman","description":"Ray shows you how to get the \"Stay True to Yourself\", \"Poor Workplace Etiquette\", and \"Independent Woman\" trophies for Octodad: Dadliest Catch for the Playstation 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-octodad-dadliest-catch-stay-true-to-yourself-poor-workplace-etiquette-independent-woman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a4d011b-0096-49eb-9895-37af10d49254/sm/ep9156.jpg","duration":252,"publication_date":"2014-05-16T20:10:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-255","changefreq":"weekly","video":[{"title":"2014:E107 - Minecraft - Episode 103 - Dropping List","description":"The Achievement Hunter crew is back playing Minecraft in \"Dropping List.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-255","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cf2e4fb-e55c-49b7-adf2-c40876313a88/sm/ep9155.jpg","duration":2836,"publication_date":"2014-05-16T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-42","changefreq":"weekly","video":[{"title":"2014:E20 - Volume 191","description":"Jack and Ray bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/308e2272-e519-4315-bde3-10c4a0520f2a/sm/ep9154.jpg","duration":195,"publication_date":"2014-05-16T17:05:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-249","changefreq":"weekly","video":[{"title":"2014:E106 - Cloudberry Kingdom Part 7","description":"The AH guys are back playing Cloudberry Kingdom in Let's Play - Cloudberry Kingdom Part 7!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-249","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f545c64f-8dd1-43e2-a54e-faf6a22d1fdb/sm/ep9151.jpg","duration":1882,"publication_date":"2014-05-15T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-cactus-around-the-oasis-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2393 - Trials Fusion - Cactus - Around the Oasis Track Challenge ","description":"Jack and Ray show you how to do the Cactus - Around the Oasis Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-cactus-around-the-oasis-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5e741f5-bf01-46bf-bb05-5f72efe4f25c/sm/ep9150.jpg","duration":125,"publication_date":"2014-05-15T19:49:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-cactus-base-invader-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2392 - Trials Fusion - Cactus - Base Invader Track Challenge","description":"Jack and Ray show you how to do the Cactus - Base Invader Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-cactus-base-invader-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/393bac78-ece7-4532-836d-22295ad54118/sm/ep9149.jpg","duration":120,"publication_date":"2014-05-15T19:38:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-cactus-sunrise-dash-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2391 - Trials Fusion - Cactus - Sunrise Dash Track Challenge ","description":"Jack and Ray show you how to do the Cactus - Sunrise Dash Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-cactus-sunrise-dash-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be36f50c-9e56-44c7-a38d-e05b2c9b857c/sm/ep9148.jpg","duration":104,"publication_date":"2014-05-15T19:26:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-cactus-stormtrooper-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2390 - Trials Fusion - Cactus - Stormtrooper Track Challenge","description":"Jack and Ray show you how to do the Cactus - Stormtrooper Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-cactus-stormtrooper-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91e881eb-d42e-4293-b02f-7b8429b0b87b/sm/ep9147.jpg","duration":151,"publication_date":"2014-05-15T19:18:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-cactus-road-to-ruin-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2389 - Trials Fusion - Cactus - Road to Ruin Track Challenge","description":"Jack and Ray show you how to do the Cactus - Road to Ruin Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-cactus-road-to-ruin-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4426c6d5-74ef-4f07-9ed4-e8d4871d5d10/sm/ep9145.jpg","duration":145,"publication_date":"2014-05-15T18:50:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-39","changefreq":"weekly","video":[{"title":"2014:E20 - Episode 63: Ryan vs. Ray","description":"It's old man Ray's turn to challenge the Mad King Ryan in VS Episode 63!","player_loc":"https://roosterteeth.com/embed/vs-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6cf6f74-2b2b-4894-be91-abf562a338da/sm/ep9143.jpg","duration":514,"publication_date":"2014-05-15T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-22","changefreq":"weekly","video":[{"title":"2014:E19 - VVVVVV","description":"Michael is back with more Rage Quit and plays \"VVVVVV.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11604f75-a147-4f20-ba27-756217fb7d0d/sm/ep9144.jpg","duration":468,"publication_date":"2014-05-15T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-speak-french","changefreq":"weekly","video":[{"title":"2014:E11 - Speak French","description":"Le franais est une langue romane parle par environ 175 millions de personnes dans le monde. Aujourd'hui, il est utilis dans tous les pays du monde, y compris en France, Belgique, Canada, Suisse, Luxembourg, Monaco, Algrie, Cameroun, Hati, Liban, Madagascar, Martinique, Monaco, Maroc, Niger, Sngal, Tunisie, Vietnam, et est une langue officielle dans 29 pays ainsi que diverses institutions internationales telles que les Nations unies et l'Union europenne. Il est souvent considr comme l'un des plus beaux et romantiques langues dans le monde et, en tant que langue trangre, est la deuxime langue la plus enseigne dans le monde aprs l'anglais.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-speak-french","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fe93a32-a14b-4bb3-8c50-8ada0ae2cfd3/sm/ep9141.jpg","duration":1943,"publication_date":"2014-05-15T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-49","changefreq":"weekly","video":[{"title":"2014:E20 - GTA V - Cop Flop","description":"Geoff and Michael show you how to cop flop in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66436127-0918-45de-aa19-419dbd167419/sm/ep9140.jpg","duration":137,"publication_date":"2014-05-14T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-238","changefreq":"weekly","video":[{"title":"2014:E105 - STARWHAL: Just the Tip Part 2","description":"Geoff, Michael, Ray, and Gavin return playing STARWHAL: Just the Tip!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-238","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d9819c-ab18-437d-97c0-c70d1916b3fd/sm/ep9139.jpg","duration":1440,"publication_date":"2014-05-14T19:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-36","changefreq":"weekly","video":[{"title":"2014:E19 - Achievement HUNT #29","description":"This week's Achievement HUNT, brings you Geoff vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c197dd3a-6858-4ded-8e90-b609d16f7570/sm/ep9138.jpg","duration":257,"publication_date":"2014-05-14T19:17:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-octodad-dadliest-catch-dancing-in-the-dark-secrets-of-the-deep-stairs-with-attiude-trophies","changefreq":"weekly","video":[{"title":"2014:E2388 - Octodad: Dadliest Catch - Dancing in the Dark, Secrets of the Deep, Stairs with Attiude Trophies","description":"Ray shows you how to get the \"Dancing in the Dark\", \"Secrets of the Deep\", and \"Stairs with Attiude\" trophies for Octodad: Dadliest Catch for the Playstation 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-octodad-dadliest-catch-dancing-in-the-dark-secrets-of-the-deep-stairs-with-attiude-trophies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/384e8b55-fb45-4502-b8eb-46fc667823d6/sm/ep9137.jpg","duration":175,"publication_date":"2014-05-14T18:36:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-urban-sprawl-marina-mania-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2387 - Trials Fusion - Urban Sprawl - Marina Mania Track Challenge","description":"Jack and Ray show you how to do the Marina Mania Track Challenge in Trials Fusion","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-urban-sprawl-marina-mania-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8386dabf-1dde-440c-a0d9-176d11f68c44/sm/ep9135.jpg","duration":101,"publication_date":"2014-05-14T16:20:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-urban-sprawl-blimp-my-ride-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2386 - Trials Fusion - Urban Sprawl - Blimp My Ride Track Challenge","description":"Jack and Ray show you how to do the Blimp My Ride Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-urban-sprawl-blimp-my-ride-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a911d708-8c82-4efa-b181-bd5e23272f92/sm/ep9134.jpg","duration":166,"publication_date":"2014-05-14T15:30:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-urban-sprawl-park-and-ride-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2385 - Trials Fusion - Urban Sprawl - Park and Ride Track Challenge","description":"Jack and Ray show you how to do the Park and Ride Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-urban-sprawl-park-and-ride-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e7fd8eb-e4ef-4507-94ec-66d678095bfe/sm/ep9133.jpg","duration":112,"publication_date":"2014-05-14T15:26:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-urban-sprawl-skyscraper-showdown-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2384 - Trials Fusion - Urban Sprawl - Skyscraper Showdown Track Challenge","description":"Jack and Ray show you how to do the Skyscraper Showdown Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-urban-sprawl-skyscraper-showdown-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cbfb164-10f6-43ee-9c3c-b09ccaa6031b/sm/ep9132.jpg","duration":132,"publication_date":"2014-05-14T15:22:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-octodad-dadliest-catch-no-cutsies-head-otter-dunk-tank-trophies","changefreq":"weekly","video":[{"title":"2014:E2383 - Octodad: Dadliest Catch - No Cutsies, Head Otter, Dunk Tank Trophies ","description":"Ray shows you how to get the \"No Cutsies\", \"Head Otter\", and \"Dunk Tank\" trophies for Octodad: Dadliest Catch for the Playstation 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-octodad-dadliest-catch-no-cutsies-head-otter-dunk-tank-trophies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7e9e595-934c-4bee-8738-dead2bba66dc/sm/ep9130.jpg","duration":160,"publication_date":"2014-05-14T13:37:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014-7","changefreq":"weekly","video":[{"title":"2014:E5 - Windborne","description":"Jack and Ryan cover Windborne for This Is...\n\nWindborne brings social sandbox creation games to the next level. Explore a vibrant world filled with secrets to unlock and treasures to find, craft personalized furnishings and innovative artifacts, and befriend intriguing Jin to help build a new civilization. E-mail coupon@hiddenpath.com to receive a 20% off discount code. \nFor more information about Windborne click here: http://bit.ly/1nGhjUq","player_loc":"https://roosterteeth.com/embed/this-is-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7225437c-c220-424b-a62c-f890eb80baf1/sm/ep9129.jpg","duration":175,"publication_date":"2014-05-13T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-25","changefreq":"weekly","video":[{"title":"2014:E18 - Trials Files #106","description":"Jack and Geoff bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4556cf64-44d4-4aa5-b4dc-0d4b1c1b5bd5/sm/ep9127.jpg","duration":106,"publication_date":"2014-05-13T19:58:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-215","changefreq":"weekly","video":[{"title":"2014:E104 - Let's Build in Minecraft - The Credits Part 1","description":"Geoff and Gavin build the ending credits for the 100th episode of Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-215","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18b8ed7f-e26b-4056-a52b-b39188734a54/sm/ep9121.jpg","duration":1656,"publication_date":"2014-05-13T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-35","changefreq":"weekly","video":[{"title":"2014:E19 - Puzzle Games","description":"Jack and Ryan bring you five facts over puzzle games, featuring: Hexic HD, Peggle, Tetris, Fez and Bejeweled.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f071b63d-af03-4af1-813b-8cb9f1a7327a/sm/ep9125.jpg","duration":242,"publication_date":"2014-05-13T16:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-217","changefreq":"weekly","video":[{"title":"2014:E103 - The Price Is Right Decades","description":"Geoff, Ryan, Michael, and Ray play The Price is Right Decades","player_loc":"https://roosterteeth.com/embed/lets-play-2014-217","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4723915d-b3ef-4653-869c-fabcde2d0f76/sm/ep9123.jpg","duration":2040,"publication_date":"2014-05-13T16:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-35","changefreq":"weekly","video":[{"title":"2014:E19 - Fart in a Video Game - GO! #29","description":"In the 29th episode of GO!, the first person to fart in a video game becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1cad42d-ac12-4270-88f6-8246df6e57e0/sm/ep9122.jpg","duration":185,"publication_date":"2014-05-13T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-36","changefreq":"weekly","video":[{"title":"2014:E19 - Week #213","description":"The AH crew bring you this week's news. \r\nCommunity Video of the Week: https://www.youtube.com/watchv=xAkU9hs5IpA\r\nVideo of the Week: http://bit.ly/1fV36QM","player_loc":"https://roosterteeth.com/embed/ahwu-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16975af6-34a7-4005-8e29-8d53aaadfc72/sm/ep9119.jpg","duration":468,"publication_date":"2014-05-12T21:32:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/countdown-season-1-countdown-beard-edition","changefreq":"weekly","video":[{"title":"2014:E1 - Beard Edition","description":"Geoff, Ray, and Michael countdown on the Top 10 bears in video games.","player_loc":"https://roosterteeth.com/embed/countdown-season-1-countdown-beard-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/721ee47f-b00d-45d7-b792-72cc87ca034a/sm/ep9118.jpg","duration":232,"publication_date":"2014-05-12T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-208","changefreq":"weekly","video":[{"title":"2014:E102 - GTA V - Wacky Races","description":"Geoff, Gavin, Ryan, Michael, Ray, and Lindsay play \"Wacky Races\" in GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-208","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4147bac-bcc7-41fb-8a77-6956512a23e9/sm/ep9117.jpg","duration":2305,"publication_date":"2014-05-12T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-octodad-dadliest-catch-3-trophies","changefreq":"weekly","video":[{"title":"2014:E2381 - Octodad: Dadliest Catch - 3 Trophies","description":"Ray shows you how to get the \"Smokey the Dad\", \"The Secret Gardener\", and \"Trim Your Moustache\" trophies for Octodad: Dadliest Catch for the Playstation 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-octodad-dadliest-catch-3-trophies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75be0698-c173-47c0-b359-82f39d578703/sm/ep9113.jpg","duration":129,"publication_date":"2014-05-12T13:38:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-18","changefreq":"weekly","video":[{"title":"2014:E17 - Recap for the Week of April 28th, 2014","description":"Ray, Kerry, and the best of the worst for the week of April 28th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca02b63d-a83b-4040-955d-7c68deb7c073/sm/ep9109.jpg","duration":136,"publication_date":"2014-05-10T00:50:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-196","changefreq":"weekly","video":[{"title":"2014:E101 - Minecraft - Episode 102 - Grounded","description":"In this week's Let's Play Minecraft, the AH crew dig their their way underneath Achievement City.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-196","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4027452e-042b-4a95-bcc2-50f6d4d945ca/sm/ep9106.jpg","duration":2543,"publication_date":"2014-05-09T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-32","changefreq":"weekly","video":[{"title":"2014:E19 - Volume 190","description":"Geoff and Gavin bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46935dd0-a806-4f7a-bccd-b96937a43e58/sm/ep9105.jpg","duration":196,"publication_date":"2014-05-09T14:45:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-octodad-dadliest-catch-trickshot-gun-wedding-and-the-best-man","changefreq":"weekly","video":[{"title":"2014:E2380 - Octodad: Dadliest Catch - Trickshot-gun wedding & The Best Man","description":"Ray shows you how to get the \"Trickshot-gun wedding\" & \"The Best Man\" trophies for Octodad: Dadliest Catch for the Playstation 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-octodad-dadliest-catch-trickshot-gun-wedding-and-the-best-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d71ae64b-c9ad-47c3-9526-227a0b2112e7/sm/ep9104.jpg","duration":136,"publication_date":"2014-05-09T13:56:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-arctic-open-shivering-isles-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2379 - Trials Fusion - Arctic Open - Shivering Isles Track Challenge ","description":"Jack and Ray show you how to do the Shivering Isles Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-arctic-open-shivering-isles-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6401df3e-3e34-4c15-9172-ca89cb340121/sm/ep9102.jpg","duration":104,"publication_date":"2014-05-08T19:47:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-arctic-open-shear-pressure-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2378 - Trials Fusion - Arctic Open - Shear Pressure Track Challenge","description":"Jack and Ray show you how to do the Shear Pressure Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-arctic-open-shear-pressure-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cc7fb86-fd6b-491e-8ee7-52ebc3c5a61e/sm/ep9101.jpg","duration":125,"publication_date":"2014-05-08T19:47:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-arctic-open-peak-performance-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2377 - Trials Fusion - Arctic Open - Peak Performance Track Challenge","description":"Jack and Ray show you how to do the Peak Performance Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-arctic-open-peak-performance-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93c7f2ce-da97-4422-8a10-c9ed68746f5d/sm/ep9100.jpg","duration":124,"publication_date":"2014-05-08T19:47:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-arctic-open-deep-freeze-track-challenge","changefreq":"weekly","video":[{"title":"2014:E2376 - Trials Fusion - Arctic Open - Deep Freeze Track Challenge","description":"Jack and Ray show you how to do the Deep Freeze Track Challenge in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-arctic-open-deep-freeze-track-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8be216a-364a-40c0-99b3-a698b887b4ae/sm/ep9099.jpg","duration":132,"publication_date":"2014-05-08T19:47:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-30","changefreq":"weekly","video":[{"title":"2014:E19 - Episode 62: Ryan vs. Gavin","description":"This week's VS brings you Ryan vs. Gavin! Will Gavin be the one to stop the Mad King Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8884573c-f72d-4155-9d0c-8323c7f8182f/sm/ep9096.jpg","duration":384,"publication_date":"2014-05-08T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-185","changefreq":"weekly","video":[{"title":"2014:E100 - Powerstar Golf Part 1","description":"Geoff, Michael, Ray, and Ryan begin their golfing journey in Let's Play - Powerstar Golf Part 1.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-185","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d21b1de-4afd-4980-b516-50d54fce4b7f/sm/ep9098.jpg","duration":2272,"publication_date":"2014-05-08T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/play-pals-season-1-play-pals-1","changefreq":"weekly","video":[{"title":"2014:E1 - Portal 2","description":"Join Michael and Gavin in the first ever episode of Play Pals! This week they immerse themselves in the world of Portal 2.","player_loc":"https://roosterteeth.com/embed/play-pals-season-1-play-pals-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf63d731-9db2-49ee-8cae-e23c88fa51f0/sm/ep9095.jpg","duration":330,"publication_date":"2014-05-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-dreadout","changefreq":"weekly","video":[{"title":"2014:E10 - Dreadout","description":"Joel and Adam sing songs and run from a pig.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-dreadout","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fa13374-1e5a-4d07-8b55-5be6d938c338/sm/ep9094.jpg","duration":1580,"publication_date":"2014-05-08T13:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-36","changefreq":"weekly","video":[{"title":"2014:E19 - GTA V - Teen Wolf","description":"The AH guys are back doing more stuff in GTA V. This week the lads and gents play \"Teen Wolf.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42915e48-3d38-4965-9017-0cee49551554/sm/ep9093.jpg","duration":503,"publication_date":"2014-05-07T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-27","changefreq":"weekly","video":[{"title":"2014:E18 - Achievement HUNT #28","description":"This week's Achievement HUNT, brings you Jack vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2e633b4-b496-4660-b7d1-b3761e5b3ec7/sm/ep9092.jpg","duration":383,"publication_date":"2014-05-07T20:31:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-178","changefreq":"weekly","video":[{"title":"2014:E99 - Tom Clancy's Ghost Recon: Future Soldier Co-Op","description":"Geoff, Gavin, Ryan, and Ray play Tom Clancy's Ghost Recon: Future Soldier Co-Op in this week's Let's Play Wednesday.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-178","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cb501f5-3f71-4aba-8381-2c6d02f6157a/sm/ep9091.jpg","duration":3811,"publication_date":"2014-05-07T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-19","changefreq":"weekly","video":[{"title":"2014:E17 - Trials Files #105","description":"Jack and Geoff bring you this week's edition of Trials Files! This track was made during the official Trials Fusion Track Jam at PAX East 2014. Check out the other entries here: http://trials.ubi.com/trials-portal/en-US/track-jam-contest/","player_loc":"https://roosterteeth.com/embed/trials-files-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ee6ef5f-dca8-4104-963b-31e4212eda66/sm/ep9089.jpg","duration":85,"publication_date":"2014-05-06T19:28:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-171","changefreq":"weekly","video":[{"title":"2014:E98 - Family Game Night 3: The Game of Life","description":"Geoff, Ryan, Jack, and Ray are back playing more Family Game Night 3. This week they dabble in \"The Game of Life.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe714c7c-b436-4d4d-bc54-dc8978ebe2d5/sm/ep9088.jpg","duration":4987,"publication_date":"2014-05-06T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-27","changefreq":"weekly","video":[{"title":"2014:E18 - Kill a Hunter and a Brute - GO! #28","description":"In the 28th episode of GO!, the first person to kill a hunter and a brute with playing Halo only one time becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2df29a2-f771-4432-81e4-3975f2ae6ec0/sm/ep9087.jpg","duration":1499,"publication_date":"2014-05-06T18:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-168","changefreq":"weekly","video":[{"title":"2014:E97 - Let's Build in Minecraft - Episode 100","description":"Watch as Geoff and Gavin build the beloved 100th episode of Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af44efe1-91da-43b1-9db8-2b9730cfae0f/sm/ep9085.jpg","duration":2339,"publication_date":"2014-05-06T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-27","changefreq":"weekly","video":[{"title":"2014:E18 - Call of Duty: Modern Warfare 3","description":"Geoff and Jack bring you five facts over Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/571a4063-8f72-4e1f-837b-8be84035f5bc/sm/ep9086.jpg","duration":212,"publication_date":"2014-05-06T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-164","changefreq":"weekly","video":[{"title":"2014:E96 - GTA V - Ryan's Heist","description":"In this week's Let's Play GTA V, it's Ryan's turn to plan a heist. I wonder what the Mad King has in store...","player_loc":"https://roosterteeth.com/embed/lets-play-2014-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb84a46a-fe35-49f3-b4c7-54dda345cbc4/sm/ep9084.jpg","duration":3074,"publication_date":"2014-05-05T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-27","changefreq":"weekly","video":[{"title":"2014:E18 - Week #212","description":"The AH crew bring you this week's news. \r\nCommunity Video of the Week: http://www.youtube.com/watchv=O9iFGz4drUo\r\nVideo of the Week: http://www.youtube.com/watchv=1IbybHFtOd4","player_loc":"https://roosterteeth.com/embed/ahwu-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7228cf61-f0f9-42ab-801a-0af523edcd02/sm/ep9083.jpg","duration":514,"publication_date":"2014-05-05T20:47:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-14","changefreq":"weekly","video":[{"title":"2014:E16 - Recap for the Week of April 21st, 2014 ","description":"Ray, Kerry, and the best of the worst for the week of April 21st!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6329cb11-31fb-436e-8c12-fe58d0bc37f7/sm/ep9079.jpg","duration":170,"publication_date":"2014-05-02T21:10:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-155","changefreq":"weekly","video":[{"title":"2014:E95 - Minecraft - Episode 101 - Ice Cube","description":"After over a year of arduous building in Minecraft, the AH crew get to play Let's Play in Minecraft \"Ice Cube!\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c63be5b6-9eaa-495f-863c-8a60008b6202/sm/ep9078.jpg","duration":1846,"publication_date":"2014-05-02T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-25","changefreq":"weekly","video":[{"title":"2014:E18 - Volume 189","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7657b0e-dbcf-4893-a94e-2a6703826505/sm/ep9077.jpg","duration":196,"publication_date":"2014-05-02T16:41:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-152","changefreq":"weekly","video":[{"title":"2014:E94 - Motocross Madness","description":"AH crew is back playing Motocross Madness!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82b0196f-191e-4109-b8a7-0112a7a38669/sm/ep9076.jpg","duration":1447,"publication_date":"2014-05-01T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-may-2014","changefreq":"weekly","video":[{"title":"2014:E14 - Coming Soon - May 2014","description":"Kdin is back with a ton of new games and other information for the month of May. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-may-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/210b012a-e62b-47c9-916f-a95ab10d6f0d/sm/ep9075.jpg","duration":266,"publication_date":"2014-05-01T19:57:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-24","changefreq":"weekly","video":[{"title":"2014:E18 - Episode 61: Ryan vs. Michael","description":"This week's VS brings you Ryan vs. Michael! Will the Mad King use his evil skills to win this week's match Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d84e8cc-ed80-463b-95a0-51b723f94a12/sm/ep9074.jpg","duration":894,"publication_date":"2014-05-01T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-arctic-open-fusion-factory","changefreq":"weekly","video":[{"title":"2014:E2375 - Trials Fusion: Arctic Open - Fusion Factory ","description":"Jack and Ray show you how to do the Fusion Factory in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-arctic-open-fusion-factory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73f17783-b4c4-4f0e-8876-182a09102934/sm/ep9073.jpg","duration":106,"publication_date":"2014-05-01T15:20:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-child-of-light-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E9 - Child of Light with Joel and Adam","description":"Joel and Adam ultilize the turn based combat system to issue couplet-based insults at each other. They also play Child of Light. Thank you to Ubisoft for endorsing this video: http://bit.ly/1rOWg1a","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-child-of-light-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ab57522-f50d-41a0-a493-e2fd7ed4e4ac/sm/ep9072.jpg","duration":730,"publication_date":"2014-05-01T10:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-broforce-with-joel-adam-and-adam","changefreq":"weekly","video":[{"title":"2014:E8 - Broforce with Joel, Adam, and Adam","description":"Joel and the Adams spread their Democracy all over Broforce. ...Also, Brobocop","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-broforce-with-joel-adam-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00b7e4c0-de46-4933-9510-31107c6c5abc/sm/ep9071.jpg","duration":2235,"publication_date":"2014-05-01T10:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-15","changefreq":"weekly","video":[{"title":"2014:E18 - This is the Only Level","description":"Michael learns the difference between levels and stages in Rage Quit \"This is the Only Level.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a05e13b-1c16-488d-a554-b9b52514258a/sm/ep9070.jpg","duration":485,"publication_date":"2014-05-01T10:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-27","changefreq":"weekly","video":[{"title":"2014:E18 - GTA V - Car Wash","description":"Michael and Geoff show you what happens when you go through a car wash in GTA V. Music for this video was provided by Audio Network - http://us.audionetwork.com/Track/SearchKeywordkey...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f8029b2-099d-42e3-9281-1e32c3209d23/sm/ep9068.jpg","duration":182,"publication_date":"2014-04-30T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-20","changefreq":"weekly","video":[{"title":"2014:E17 - Achievement HUNT #27","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13603f5f-74c0-4418-8665-e2e7ac269554/sm/ep9067.jpg","duration":656,"publication_date":"2014-04-30T20:31:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-136","changefreq":"weekly","video":[{"title":"2014:E93 - Titanfall Part 4","description":"The Achievement Hunter crew is back with the fourth installment of Let's Play - Titanfall!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f64ecb7e-df64-45cb-9ce0-880a63e42418/sm/ep9066.jpg","duration":2897,"publication_date":"2014-04-30T20:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-13","changefreq":"weekly","video":[{"title":"2014:E16 - Trials Files #104","description":"Everyone (but Jack) bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff40a414-3342-432c-8943-b2adfdca1997/sm/ep9064.jpg","duration":76,"publication_date":"2014-04-29T20:15:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-132","changefreq":"weekly","video":[{"title":"2014:E92 - Let's Build in Minecraft - Golden Hoe Part 2","description":"Geoff and Gavin continue building the Golden Hoe in Minecraft. Watch Let's Play Minecraft - Golden Hoe - http://bit.ly/1mvHNVF","player_loc":"https://roosterteeth.com/embed/lets-play-2014-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a69821a-59d9-4752-81b0-ad69c4c97806/sm/ep9063.jpg","duration":1288,"publication_date":"2014-04-29T20:00:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-20","changefreq":"weekly","video":[{"title":"2014:E17 - Call of Duty 3","description":"Geoff and Ray bring you five facts over Call of Duty 3.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2b38ee1-c81e-46ac-8ce1-b1d789f9adf9/sm/ep9062.jpg","duration":270,"publication_date":"2014-04-29T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-18","changefreq":"weekly","video":[{"title":"2014:E17 - Come in 1st, 2nd, and 3rd Place - GO! #27","description":"In the 27th episode of GO! (new office edition), the first person to come in first, second, and third place in three different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca0d850f-f378-416a-a6db-d326850352a6/sm/ep9061.jpg","duration":853,"publication_date":"2014-04-29T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-127","changefreq":"weekly","video":[{"title":"2014:E91 - Family Game Night 3: Mouse Trap","description":"Geoff, Ryan, Jack, and Ray play \"Mouse Trap\" from Family Game Night 3. You can't handle the cheddar!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39dc6ba3-6413-4a6c-8aa8-47b50a1721ff/sm/ep9060.jpg","duration":2102,"publication_date":"2014-04-29T17:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-20","changefreq":"weekly","video":[{"title":"2014:E17 - Week #211","description":"The AH crew bring you this week's news. \r\nCommunity Video of the Week: http://bit.ly/1hLzaRM\r\nVideo of the Week: Let's Play Minecraft - Episode 100: http://bit.ly/1m3GVuA","player_loc":"https://roosterteeth.com/embed/ahwu-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08c0388e-e0f5-482a-a4d8-57eb1c5caeaa/sm/ep9059.jpg","duration":516,"publication_date":"2014-04-28T21:13:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-125","changefreq":"weekly","video":[{"title":"2014:E90 - GTA V - Pirates","description":"Jack, Ryan, Gavin, Kerry, Michael, and Ray are back with more Let's Play GTA V! This week they play \"Pirates.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7c71c4a-7478-445e-b458-4e7c2ccd4660/sm/ep9058.jpg","duration":2211,"publication_date":"2014-04-28T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-10","changefreq":"weekly","video":[{"title":"2014:E15 - Recap for the Week of April 14th, 2014 ","description":"Michael, Ray, and the best of the worst for the week of April 14th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddbd0155-f0e1-4b7d-b032-191c2fe79fbd/sm/ep9053.jpg","duration":154,"publication_date":"2014-04-25T17:41:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-113","changefreq":"weekly","video":[{"title":"2014:E89 - Minecraft - Episode 100","description":"Geoff, Gavin, Jack, Michael, Ray, and Ryan play the 100th episode of Let's Play Minecraft!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b087c5f2-bbc7-4539-8920-33054180b5f7/sm/ep9050.jpg","duration":3071,"publication_date":"2014-04-25T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-19","changefreq":"weekly","video":[{"title":"2014:E17 - Volume 188","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ebe961-8313-4cd5-bdad-9518218d11cd/sm/ep9049.jpg","duration":206,"publication_date":"2014-04-25T14:02:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-18","changefreq":"weekly","video":[{"title":"2014:E17 - Episode 60: Lindsay vs. Ryan","description":"This week's VS brings you Ryan vs. Lindsay! Will Lindsay continue to hold the belt or will Ryan end he winning streak Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92a12083-65eb-4a2b-abdb-11e7d2693ccc/sm/ep9048.jpg","duration":597,"publication_date":"2014-04-24T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-108","changefreq":"weekly","video":[{"title":"2014:E88 - Worms Revolution: Episode 6","description":"Join the AH crew and watch the sixth installment of Let's Play - Worms Revolution!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f29ea151-f3cc-44ff-aefd-7b8dbbc56438/sm/ep9047.jpg","duration":2880,"publication_date":"2014-04-24T18:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-spelunky","changefreq":"weekly","video":[{"title":"2014:E7 - Spelunky","description":"Adam is an A-hole. ...Not that Adam, the other Adam.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-spelunky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2786288-2b4c-4f01-bff9-08928ea43237/sm/ep9044.jpg","duration":1732,"publication_date":"2014-04-24T16:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-10","changefreq":"weekly","video":[{"title":"2014:E17 - Bad Bunny","description":"Michael asks the important questions like, \"Do cats hate bunnies\" in this week's Rage Quit - Bad Bunny.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f42200a5-6d3c-46a2-a1f4-c8fa1fc8425c/sm/ep9043.jpg","duration":150,"publication_date":"2014-04-24T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-13","changefreq":"weekly","video":[{"title":"2014:E16 - Achievement HUNT #26","description":"This week's Achievement HUNT, brings you Ray vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba29cda3-edac-4b6c-8d01-8017fc43b29d/sm/ep9042.jpg","duration":298,"publication_date":"2014-04-23T21:37:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-19","changefreq":"weekly","video":[{"title":"2014:E17 - GTA V - Fast Cash","description":"The AH crew is back playing GTA V. This week they play \"Fast Cash\" and do a lot of thrusting.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b921c736-0a47-477d-af82-64ea80b33ab9/sm/ep9040.jpg","duration":328,"publication_date":"2014-04-23T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-99","changefreq":"weekly","video":[{"title":"2014:E87 - FIFA 14","description":"It's Lads vs. Gents playing FIFA 14 in this week's Let's Play Wednesday.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04229d3d-3a72-4954-bacc-6926f9f250ee/sm/ep9039.jpg","duration":1694,"publication_date":"2014-04-23T19:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-13","changefreq":"weekly","video":[{"title":"2014:E16 - 5 Kills in 5 Different Ways Continued - GO! #26","description":"In the 26th episode of GO!, the first person to kill someone with a pistol, ax, tank, bow & arrow, and slingshot in five different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f64a944e-8fc7-414f-b0b3-d8afe899fa30/sm/ep9034.jpg","duration":1178,"publication_date":"2014-04-22T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-91","changefreq":"weekly","video":[{"title":"2014:E86 - Let's Build in Minecraft - Golden Hoe Part 1","description":"Geoff and Gavin build the Golden Hoe in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1919e70-8d1b-4045-962f-369cdfabf140/sm/ep9035.jpg","duration":1365,"publication_date":"2014-04-22T18:23:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-9","changefreq":"weekly","video":[{"title":"2014:E15 - Trials Files #103","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f098bcdb-ce05-4805-9ebb-c5168939cc92/sm/ep9033.jpg","duration":85,"publication_date":"2014-04-22T16:37:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-the-fifth-key-guide","changefreq":"weekly","video":[{"title":"2014:E2371 - Trials Fusion - The Fifth Key Guide","description":"Ray shows you how to get the \"The Fifth Key\" achievement in Trials Fusion for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-the-fifth-key-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9f06ca1-4da3-44af-a052-25cc4a9d975b/sm/ep9032.jpg","duration":114,"publication_date":"2014-04-22T16:28:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-83","changefreq":"weekly","video":[{"title":"2014:E85 - Cloudberry Kingdom Part 6","description":"The AH guys are back playing Cloudberry Kingdom in Let's Play - Cloudberry Kingdom Part 6!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b66de4da-9f5c-4812-8ff3-50118c4b138f/sm/ep9030.jpg","duration":1802,"publication_date":"2014-04-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-12","changefreq":"weekly","video":[{"title":"2014:E16 - Wolfenstein: The New Order","description":"Jack and Geoff bring you five facts over Wolfenstein: The New Order. You can pre-order Wolfestein: The New Order here: http://bit.ly/RJ47B7","player_loc":"https://roosterteeth.com/embed/five-facts-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff11b4c5-e29a-4e43-98f0-0af41084d97e/sm/ep9031.jpg","duration":262,"publication_date":"2014-04-22T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-6","changefreq":"weekly","video":[{"title":"2014:E6 - Plants vs Zombies: Garden Warfare - Slender Man Easter Egg","description":"Ray shows you how to find the \"Slender Man Easter Egg\" in PvZ: Garden Warfare for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b86ebd12-fefd-40ea-bd2f-5fd77dc73b1c/sm/ep9029.jpg","duration":75,"publication_date":"2014-04-22T13:35:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-79","changefreq":"weekly","video":[{"title":"2014:E84 - GTA V - Capture","description":"Geoff, Ryan, Jack, Michael, Ray, and Gavin are back playing GTA V. This week they play \"Capture,\" where they attempt to capture a bus and take it back to their base.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e019f694-586b-4704-bf01-24323fa219eb/sm/ep9027.jpg","duration":1855,"publication_date":"2014-04-21T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-13","changefreq":"weekly","video":[{"title":"2014:E16 - Week #210","description":"Geoff, Jack, Caleb, Gavin, Michael, and Ray bring you this week's news. \r\nCommunity Video of the Week: http://bit.ly/1gNZ0EU\r\nVideo of the Week: Let's Play - GTA V - Gavin's Heist - http://bit.ly/1i9eT8p","player_loc":"https://roosterteeth.com/embed/ahwu-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e1d9b0-99df-4ee0-82bc-6d42732f43d6/sm/ep9028.jpg","duration":462,"publication_date":"2014-04-21T19:47:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-the-bike-is-your-hula-hoop-guide","changefreq":"weekly","video":[{"title":"2014:E2370 - Trials Fusion - The Bike is Your Hula Hoop Guide ","description":"Ray shows you how to get the \"The Bike is Your Hula Hoop\" achievement in Trials Fusion for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-the-bike-is-your-hula-hoop-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3680d774-a8a8-4841-86ed-fa08b31add75/sm/ep9026.jpg","duration":99,"publication_date":"2014-04-21T18:03:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-73","changefreq":"weekly","video":[{"title":"2014:E83 - Minecraft - Episode 99 - Golden Hoe","description":"The AH crew is back with the 99th episode of Minecraft! This week they play \"Golden Hoe.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1448164-7129-4d9f-b336-53559aae443a/sm/ep9022.jpg","duration":3442,"publication_date":"2014-04-19T00:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-12","changefreq":"weekly","video":[{"title":"2014:E16 - Volume 187","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fd56e97-6ebf-4eb4-8f14-85d063f03d10/sm/ep9019.jpg","duration":198,"publication_date":"2014-04-17T16:08:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-12","changefreq":"weekly","video":[{"title":"2014:E16 - Episode 59: Lindsay vs. Jack","description":"This week's VS brings you Jack vs. Lindsay! Will Lindsay continue to hold the belt or will Jack become the new victor Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e73a14b0-cfb6-42a6-9554-5b5efc0d86ce/sm/ep9018.jpg","duration":407,"publication_date":"2014-04-17T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014-4","changefreq":"weekly","video":[{"title":"2014:E3 - Trials Fusion","description":"Ray and Jack cover Trials Fusion for This Is...","player_loc":"https://roosterteeth.com/embed/this-is-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7eeb76d-cc56-4ff7-bb58-432943b54723/sm/ep9017.jpg","duration":354,"publication_date":"2014-04-17T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-66","changefreq":"weekly","video":[{"title":"2014:E82 - Goat Simulator","description":"Michael and Gavin are back together to play \"Goat Simulator.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82af0091-4629-4d73-b7f0-a9028c0a74dd/sm/ep9016.jpg","duration":1824,"publication_date":"2014-04-17T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-5","changefreq":"weekly","video":[{"title":"2014:E14 - Recap for the Week of April 7th, 2014 ","description":"Michael, Ray, and the best of the worst for the week of April 7th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a71bdeff-dd21-4042-be83-25a1a26bbcd2/sm/ep9015.jpg","duration":154,"publication_date":"2014-04-17T14:54:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-5","changefreq":"weekly","video":[{"title":"2014:E16 - RFE","description":"Michael is back playing another installment of Rage Quit. This week he plays \"Rockets Fucking Everywhere\" -- sounds promising.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2069dc6e-306d-4be6-a29f-f9337e39dcdc/sm/ep9013.jpg","duration":169,"publication_date":"2014-04-17T14:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-tiny-brains-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E6 - Tiny Brains with Joel & Adam","description":"We apologize for this video.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-tiny-brains-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6785f798-ad73-4e81-9b69-2c5f6ef1cf3f/sm/ep9012.jpg","duration":1411,"publication_date":"2014-04-17T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-11","changefreq":"weekly","video":[{"title":"2014:E16 - GTA V - Cool Off","description":"The AH Crew is back in GTA V, this time playing \"Cool Off.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2c60eb8-349b-49a3-8fb4-71b10e606558/sm/ep9009.jpg","duration":211,"publication_date":"2014-04-16T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trials-fusion-greenhorns-grove-cliffhanger-track-challenges","changefreq":"weekly","video":[{"title":"2014:E2367 - Trials Fusion - Greenhorn's Grove Cliffhanger Track Challenges","description":"Jack and Geoff shows you how to do the Greenhorn's Grove Cliffhanger Track Challenges in Trials Fusion.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trials-fusion-greenhorns-grove-cliffhanger-track-challenges","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/449c2fe1-647b-4eb2-9090-b1ce2b1ca003/sm/ep9008.jpg","duration":145,"publication_date":"2014-04-16T19:32:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-geoff-and-gavin-check-out-van-helsing-ii-for-steam","changefreq":"weekly","video":[{"title":"2014:E2363 - Achievement Hunter Presents - Geoff and Gavin check out Van Helsing II for Steam","description":"Geoff and Gavin visit Neocore Games in Budapest, Hungary to check out Van Helsing II for Steam. Check out Necore Games: www.neocoregames.com","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-geoff-and-gavin-check-out-van-helsing-ii-for-steam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f58878e-3a51-4315-be46-d7dfa6ad66c9/sm/ep9004.jpg","duration":336,"publication_date":"2014-04-16T18:34:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-52","changefreq":"weekly","video":[{"title":"2014:E81 - Trials Fusion","description":"Geoff, Jack, Gavin, and Michael play Trials Fusion. \nCheck out Trials Fusion: http://goo.gl/zNWmJC and their giveaway: http://on.fb.me/1l8Brda","player_loc":"https://roosterteeth.com/embed/lets-play-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff671783-7f9c-4473-b562-6ee1c57ef94c/sm/ep9003.jpg","duration":1396,"publication_date":"2014-04-16T17:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014-3","changefreq":"weekly","video":[{"title":"2014:E2 - PvZ: Garden Warfare - Zomboss Down DLC","description":"Ray and Geoff cover the Zomboss Down DLC in PvZ: Garden Warfare for This Is...","player_loc":"https://roosterteeth.com/embed/this-is-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24974b4c-02be-42ff-baff-f10a84c00091/sm/ep9000.jpg","duration":270,"publication_date":"2014-04-16T16:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-6","changefreq":"weekly","video":[{"title":"2014:E15 - Achievement HUNT #25","description":"This week's Achievement HUNT, brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e35c269b-0fab-4cc4-a7b1-16e2e3c98205/sm/ep8999.jpg","duration":1081,"publication_date":"2014-04-16T15:28:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-7","changefreq":"weekly","video":[{"title":"2014:E15 - Pokemon Snap","description":"Michael and Ray bring you five facts on Pokemon Snap.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14145a55-1345-492e-b934-edb558229760/sm/ep8998.jpg","duration":290,"publication_date":"2014-04-16T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-47","changefreq":"weekly","video":[{"title":"2014:E80 - Family Feud","description":"Geoff, Gavin, Ray, and Michael are back with Let's Play - Family Feud.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34e9d460-af3a-4b78-b921-823cb0191323/sm/ep8997.jpg","duration":2907,"publication_date":"2014-04-15T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-44","changefreq":"weekly","video":[{"title":"2014:E79 - Let's Build in Minecraft - Ice Cube Part 5","description":"The AH crew is back with the fifth and final installment of Let's Build in Minecraft - Ice Cube","player_loc":"https://roosterteeth.com/embed/lets-play-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ed09e8b-5b30-4e32-a10e-727a5e3d4d54/sm/ep8996.jpg","duration":1631,"publication_date":"2014-04-15T19:26:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-7","changefreq":"weekly","video":[{"title":"2014:E15 - 5 Kills in 5 Different Ways - GO! #25","description":"In the 25th episode of GO!, the first person to kill someone with a fist, sword, magic, grenade, and a vehicle in five different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfcc7061-45ba-4665-867d-ea8509c5e369/sm/ep8995.jpg","duration":936,"publication_date":"2014-04-15T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-5","changefreq":"weekly","video":[{"title":"2014:E14 - Trials Files #102","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1148d06a-819e-4ffb-b657-bf709b90874c/sm/ep8994.jpg","duration":135,"publication_date":"2014-04-15T19:01:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-team-lads-action-news","changefreq":"weekly","video":[{"title":"2014:E2362 - Achievement Hunter Presents: Team Lads Action News","description":"This video was shot for Rooster Teeth's panel at PAX EAST 2014. It contains audio from the room so you can hear the audience's reaction.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-team-lads-action-news","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc0d7302-1cca-48ae-ae99-9d2b4636b70c/sm/ep8993.jpg","duration":402,"publication_date":"2014-04-15T14:11:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-37","changefreq":"weekly","video":[{"title":"2014:E78 - GTA V - Gavin's Heist","description":"The AH crew is back with another heist in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/811d85b6-a16c-4a7d-8892-c3a7354d3b13/sm/ep8992.jpg","duration":2041,"publication_date":"2014-04-14T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-7","changefreq":"weekly","video":[{"title":"2014:E15 - Week #209","description":"Geoff and Jack bring you this week's news. \r\nCommunity Video of the Week: This is... This is... This is... http://bit.ly/1eHoyms\r\nVideo of the Week: Let's Play - New Super Mario Bros. U Wii U Part 3 - http://bit.ly/1hFUiOI\r\nCheck out The Controller Shop: http://bit.ly/1eHiIBF","player_loc":"https://roosterteeth.com/embed/ahwu-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9bfa722-f337-46d7-90f3-07623a351771/sm/ep8991.jpg","duration":342,"publication_date":"2014-04-14T22:19:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-2","changefreq":"weekly","video":[{"title":"2014:E13 - Recap for the Week of March 31st, 2014 ","description":"Geoff, Jack, and the best of the worst for the week of March 31st!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3e20214-00f4-43f8-992f-70b68b955f31/sm/ep8985.jpg","duration":153,"publication_date":"2014-04-11T19:01:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-30","changefreq":"weekly","video":[{"title":"2014:E77 - Minecraft - Episode 98 - Title Update 14 Part 2","description":"The AH lads and gents have another Minecraft adventure in the second part of Let's Play \"Title Update 14.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01a11db2-9025-4063-aeba-86108e867688/sm/ep8984.jpg","duration":2740,"publication_date":"2014-04-11T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-5","changefreq":"weekly","video":[{"title":"2014:E15 - Volume 186","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23b442cb-597e-4d2a-aaff-7a4225faed0d/sm/ep8981.jpg","duration":191,"publication_date":"2014-04-11T13:14:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-4","changefreq":"weekly","video":[{"title":"2014:E15 - Episode 58: Lindsay vs. Geoff","description":"Geoff is back in the game and it's his turn to challenge Lindsay in this week's VS! Will Lindsay continue to hold the belt or will Geoff become the new victor Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/478f03b8-9573-47b1-bbc0-c5dde63df345/sm/ep8980.jpg","duration":570,"publication_date":"2014-04-10T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-22","changefreq":"weekly","video":[{"title":"2014:E76 - New Super Mario Bros. U Wii U Part 3","description":"The AH guys are back playing the third installment of New Super Mario Bros. U Wii U.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b04f6a1-de98-484c-8cd5-b03d73648592/sm/ep8977.jpg","duration":2589,"publication_date":"2014-04-10T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-2","changefreq":"weekly","video":[{"title":"2014:E15 - Dark Souls II","description":"Michael is back playing \"Dark Souls II.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09bb8574-1315-4f52-b2da-4f149af2bcd5/sm/ep8979.jpg","duration":438,"publication_date":"2014-04-10T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-dayz-with-joel-and-adam-and-adam","changefreq":"weekly","video":[{"title":"2014:E5 - DAYZ with Joel & Adam & Adam","description":"Watch as Adam tries on a hat! (Not that Adam, the other Adam)","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-dayz-with-joel-and-adam-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6fdc9db-894b-4675-a1da-8e7b7fb0ef72/sm/ep8976.jpg","duration":1393,"publication_date":"2014-04-10T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014","changefreq":"weekly","video":[{"title":"2014:E14 - Achievement HUNT #24","description":"This week's Achievement HUNT, brings you Jack vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee7a323b-9cc7-41d0-ba80-bb7349c464a5/sm/ep8975.jpg","duration":342,"publication_date":"2014-04-09T19:11:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-16","changefreq":"weekly","video":[{"title":"2014:E75 - Rainbow Six: Vegas 2 Part 4","description":"The AH crew are back with the fourth and final installment of Let's Play - Rainbow Six: Vegas 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/373ec0ab-e30b-47cb-8d97-926698114348/sm/ep8973.jpg","duration":1220,"publication_date":"2014-04-09T14:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014","changefreq":"weekly","video":[{"title":"2014:E15 - GTA V - Snipe a Mole","description":"In this week's Things to do in, the AH crew revert to their younger years of playing Whac-a-Mole and play \"Snipe a Mole\" in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ebbc258-5c14-449a-a327-08b1577dcdaf/sm/ep8972.jpg","duration":566,"publication_date":"2014-04-09T14:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014","changefreq":"weekly","video":[{"title":"2014:E13 - Trails Files #101","description":"Geoff and Jack bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9afefbf-041b-4da4-9e5b-152e9a095741/sm/ep8971.jpg","duration":103,"publication_date":"2014-04-08T19:50:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-12","changefreq":"weekly","video":[{"title":"2014:E74 - Worms Revolution: Episode 5","description":"Join the AH crew and watch the fifth installment of Let's Play - Worms Revolution!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2137335-9e4f-460e-b0db-ccccce1b2806/sm/ep8970.jpg","duration":2395,"publication_date":"2014-04-08T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-8","changefreq":"weekly","video":[{"title":"2014:E73 - Let's Build in Minecraft - Ice Cube Part 4","description":"The AH guys are back with the fourth installment of Let's Build in Minecraft - Ice Cube.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aff340a2-2225-4906-8ec0-7d840b794e4e/sm/ep8967.jpg","duration":1639,"publication_date":"2014-04-08T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-inquisitive-mind-achievement-guide","changefreq":"weekly","video":[{"title":"2014:E2361 - Call of Duty: Ghosts - Inquisitive Mind Achievement Guide","description":"Ray shows you how to get the \"Inquisitive Mind\" achievement in the Devastation DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-inquisitive-mind-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4efdcfc2-fac4-4dae-b931-4ebf640baac3/sm/ep8969.jpg","duration":138,"publication_date":"2014-04-08T16:28:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014","changefreq":"weekly","video":[{"title":"2014:E14 - Three Chests in Three Games - GO! #24","description":"In the 24th episode of GO!, the first person to open three chests in three different games becomes this week's victor and gets a sticker to add to their collection AND get's a custom controller from The Controller Shop! Visit this link for 10% off your order at The Controller Shop: http://bit.ly/1rZoeZc","player_loc":"https://roosterteeth.com/embed/go-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b14c3d44-d4ba-4a8e-abd4-8e57611df7d5/sm/ep8968.jpg","duration":600,"publication_date":"2014-04-08T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014","changefreq":"weekly","video":[{"title":"2014:E14 - Variety Pack #4","description":"Jack and Ray bring you the fourth Five Facts Variety Pack and cover Minecraft, Left 4 Dead 2, Duke Nukem Forever, Modern Warfare 3, and Poker Night 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f55acf64-f792-46ce-9e2a-3f409bc9684d/sm/ep8966.jpg","duration":152,"publication_date":"2014-04-08T14:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-big-game-trapper-achievement-guide","changefreq":"weekly","video":[{"title":"2014:E2360 - Call of Duty: Ghosts - Big Game Trapper Achievement Guide ","description":"Ray shows you how to get the \"Big Game Trapper\" achievement in the Devastation DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-big-game-trapper-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5d7b21f-a7cf-4df0-ae31-5989e7dcfdff/sm/ep8965.jpg","duration":115,"publication_date":"2014-04-08T13:50:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-4","changefreq":"weekly","video":[{"title":"2014:E72 - Octodad: Dadliest Catch Part 2","description":"Gavin and Michael are back with the second part of Let's Play - Octodad: Dadliest Catch.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb5cf1f5-bb7e-472e-92a7-69ac0564533b/sm/ep8964.jpg","duration":2887,"publication_date":"2014-04-07T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014","changefreq":"weekly","video":[{"title":"2014:E14 - Week #208","description":"Jack and Ray bring you this week's news. \r\nCommunity Video of the Week: Community FAQ Episode 2 - Captured - http://bit.ly/1qeXan0\r\nVideo of the Week: MegaCraft - Bonus Episode - The Power House - http://bit.ly/1kkri0U","player_loc":"https://roosterteeth.com/embed/ahwu-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3879598c-ebf6-4ba8-aa16-b4aeb48a47e5/sm/ep8963.jpg","duration":431,"publication_date":"2014-04-07T19:48:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014","changefreq":"weekly","video":[{"title":"2014:E71 - GTA V - The Most Dangerous Game","description":"Geoff, Jack, Ryan, Ray, Michael and Gavin play \"The Most Dangerous Game,\" in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c93c6a9-9509-43aa-a548-9cca547b3c5b/sm/ep8962.jpg","duration":2593,"publication_date":"2014-04-07T18:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-egg-stra-devastation-achievement-guide","changefreq":"weekly","video":[{"title":"2014:E2359 - Call of Duty: Ghosts - Egg-stra Devastation! Achievement Guide","description":"Ray shows you how to get the \"Egg-stra Devastation!\" achievement in the Devastation DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-egg-stra-devastation-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d666601-ad8d-47f5-ab41-72daf40ab36a/sm/ep8961.jpg","duration":108,"publication_date":"2014-04-07T17:45:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014","changefreq":"weekly","video":[{"title":"2014:E5 - Call of Duty: Ghosts - Venom X Easter Egg","description":"Ray shows you how to find the \"Venom X Easter Egg\" in the Devastation DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d38936f-0416-4cd5-886f-886f8dc97f55/sm/ep8960.jpg","duration":92,"publication_date":"2014-04-07T15:00:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-332","changefreq":"weekly","video":[{"title":"2014:E70 - Minecraft - Episode 97 - Title Update 14 Part 1","description":"The AH crew is back playing more Minecraft in \"Title Update 14.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-332","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/028e10bc-382d-4ba2-ad00-415f4628f78e/sm/ep8957.jpg","duration":2526,"publication_date":"2014-04-04T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-27","changefreq":"weekly","video":[{"title":"2014:E12 - Recap for the Week of March 24th, 2014","description":"Ray, Michael, and the best of the worst for the week of March 24th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26d1adf4-ac0e-437e-ad56-c469fc0a5c7c/sm/ep8956.jpg","duration":155,"publication_date":"2014-04-04T19:34:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-52","changefreq":"weekly","video":[{"title":"2014:E14 - Volume 185","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6535e87e-750d-4114-90bb-613f81ff3997/sm/ep8955.jpg","duration":184,"publication_date":"2014-04-04T17:47:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-goat-simulator-with-russel-the-goat","changefreq":"weekly","video":[{"title":"2014:E4 - Goat Simulator (...with Russel the goat)","description":"After extensive research, Joel and Adam discover that the idiosyncrasies between Goat/Goat Simulator are nearly indistinguishable.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-goat-simulator-with-russel-the-goat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0958d394-a21e-4009-902a-3c4218ac4d7f/sm/ep8953.jpg","duration":1665,"publication_date":"2014-04-03T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-50","changefreq":"weekly","video":[{"title":"2014:E14 - Episode 57: Michael vs. Lindsay","description":"Lindsay is back and it's her turn to challenge Michael in this week's VS! Who will be the victor from this engaged duo Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f22c5af-0658-49d9-bd71-d008521e85c6/sm/ep8951.jpg","duration":522,"publication_date":"2014-04-03T14:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-29","changefreq":"weekly","video":[{"title":"2014:E14 - Lifeguard","description":"Spring is here and Michael enjoys the sunshine, as he lathers sunscreen, drives a jeep, runs around the beach and swims, while playing \"Lifeguard.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4249337e-61ee-45ea-9c3f-63d6dac4986d/sm/ep8950.jpg","duration":449,"publication_date":"2014-04-03T13:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-49","changefreq":"weekly","video":[{"title":"2014:E13 - Achievement HUNT #23","description":"This week's Achievement HUNT, brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20d9f943-e86c-4b97-a325-8d2b3039c948/sm/ep8949.jpg","duration":245,"publication_date":"2014-04-02T19:53:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-68","changefreq":"weekly","video":[{"title":"2014:E14 - GTA V - Cinematic Race","description":"The AH crew are back in GTA V! In this week's Things to do in, they race in cinematic mode.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/597d164c-5cc4-48f9-972c-079b3ec6e732/sm/ep8948.jpg","duration":508,"publication_date":"2014-04-02T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-319","changefreq":"weekly","video":[{"title":"2014:E69 - Call of Duty: Ghosts - Sensitivity Training","description":"The AH crew is back playing Call of Duty: Ghosts! This week they play \"Sensitivity Training,\" as they attempt not to get nauseous.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-319","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48e7474e-ea0d-4599-b157-949a81615113/sm/ep8946.jpg","duration":3036,"publication_date":"2014-04-02T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-35","changefreq":"weekly","video":[{"title":"2014:E12 - Trials Files #100","description":"Geoff and Jack bring you the 100th episode of Trials Files! In celebration of our eleven years, use promo code: RT11Years and get 11% off your entire order from April 1-11. Check out http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/trials-files-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7646b4c7-661c-47c8-af11-9d0700090ff3/sm/ep8945.jpg","duration":77,"publication_date":"2014-04-01T21:56:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-48","changefreq":"weekly","video":[{"title":"2014:E13 - Mafia II","description":"Jack and Geoff go over five facts in Mafia II.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e8c7e7c-0bbf-49a6-a85a-f02592f6ff59/sm/ep8944.jpg","duration":228,"publication_date":"2014-04-01T21:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-313","changefreq":"weekly","video":[{"title":"2014:E68 - Jeopardy! Part 1","description":"In this exhilarating Let's Play, Geoff, Michael, and Ray play Jeopardy!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-313","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a387145-2735-4dee-aa08-ae8b2a2e4286/sm/ep8942.jpg","duration":2331,"publication_date":"2014-04-01T17:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-48","changefreq":"weekly","video":[{"title":"2014:E13 - Kill Five Zombies in Five Games - GO! #23","description":"In the 23rd episode of GO!, the first person to kill five different zombies in five different games becomes this week's victor and gets a sticker to add to their collection.","player_loc":"https://roosterteeth.com/embed/go-2014-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c19c1b-606d-43c6-8109-48db5c593668/sm/ep8940.jpg","duration":820,"publication_date":"2014-04-01T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-april-2014","changefreq":"weekly","video":[{"title":"2014:E13 - Coming Soon - April 2014","description":"Kdin is back with a ton of new games and other information for the month of April. Check it out! \r\nIn celebration of our eleven years, use promo code: RT11Years and get 11% off your entire order from April 1-11. Check out http://store.roosterteeth.com","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-april-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad69d0e2-c88b-4123-8aec-540573f33713/sm/ep8938.jpg","duration":410,"publication_date":"2014-04-01T16:47:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-302","changefreq":"weekly","video":[{"title":"2014:E66 - GTAV - Demolition Derby Custom","description":"AH is back to test out some custom crash tracks in GTAV.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-302","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba0ac86d-2f84-416e-8835-aef173a3d64b/sm/ep8935.jpg","duration":1862,"publication_date":"2014-04-01T06:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-47","changefreq":"weekly","video":[{"title":"2014:E13 - Week #207","description":"Geoff and Jack bring you this week's news. Community Video of the Week: Best of... Mad King Ryan - http://bit.ly/1pGziXa Video of the Week: Let's Play GTA V: Heist - http://bit.ly/1jT0rVg","player_loc":"https://roosterteeth.com/embed/ahwu-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52cad8c0-e03a-40bc-8118-13d9b96d6aa0/sm/ep8934.jpg","duration":401,"publication_date":"2014-03-31T20:13:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-298","changefreq":"weekly","video":[{"title":"2014:E65 - Minecraft - Episode 96 - Tallest Tower","description":"The Achievement Hunter team is back with \"Tallest Tower,\" in Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-298","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77b51ee1-dd4f-4448-9cdc-0d21be7cfbc9/sm/ep8931.jpg","duration":2244,"publication_date":"2014-03-28T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-25","changefreq":"weekly","video":[{"title":"2014:E11 - Recap for the Week of March 17th, 2014","description":"Michael, Ray, and the best of the worst for the week of March 17th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0966ac7-19ae-4edc-9cb1-fd48bdd82c65/sm/ep8930.jpg","duration":195,"publication_date":"2014-03-28T17:06:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-46","changefreq":"weekly","video":[{"title":"2014:E13 - Volume 184","description":"Jack and Joel bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39ed8d58-0dc2-44a6-9780-5d84a6b59aca/sm/ep8928.jpg","duration":185,"publication_date":"2014-03-28T14:42:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-25","changefreq":"weekly","video":[{"title":"2014:E13 - Nitronic Rush","description":"In this week's episode of Rage Quit, Michael plays and rages over \"Nitronic Rush.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7436fa1-3183-40eb-9e45-82a55bd5f71a/sm/ep8925.jpg","duration":476,"publication_date":"2014-03-27T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-47","changefreq":"weekly","video":[{"title":"2014:E13 - Episode 56: Michael vs. Ray","description":"Finally it's time for Ray to be the VS challenger again. Will his game pick give him an advantage over Michael Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b912e3a-2722-4cdf-91df-fc134bdc86f0/sm/ep8923.jpg","duration":663,"publication_date":"2014-03-27T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-magicka-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E3 - Magicka with Joel & Adam","description":"[ W ] + [ A ] + [ Spacebar ], [ W ] + [ A ] + [ Spacebar ], [ W ] + [ A ] + [ Spacebar ] ...Repeat.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-magicka-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bafed067-5e83-4cca-bf11-2e6ed8e8e0fc/sm/ep8922.jpg","duration":434,"publication_date":"2014-03-27T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-60","changefreq":"weekly","video":[{"title":"2014:E13 - GTA V - Glug Glug Slam","description":"The AH crew is back with more Things to do in GTA V - \"Glug Glug Slam.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0634bef8-11ab-4453-ac3b-16109737b84f/sm/ep8921.jpg","duration":882,"publication_date":"2014-03-27T01:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-44","changefreq":"weekly","video":[{"title":"2014:E12 - Achievement HUNT #22","description":"This week's Achievement HUNT, brings you Ray vs. Michael","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86b5a66b-ad31-41c0-9ad6-12113e13f475/sm/ep8920.jpg","duration":293,"publication_date":"2014-03-26T19:28:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-31","changefreq":"weekly","video":[{"title":"2014:E11 - Trials Files #99","description":"Jack and Michael bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6643d3c3-adc7-4e2d-ba5b-f61dde5d0d8f/sm/ep8917.jpg","duration":112,"publication_date":"2014-03-25T19:32:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-282","changefreq":"weekly","video":[{"title":"2014:E62 - Wheel of Fortune","description":"In what may be the funniest or dumbest Let's Play in the history of Achievement Hunter, Geoff, Ray, and Michael bring you Let's Play - Wheel of Fortune Part 1.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-282","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/121d452a-aa38-4414-9436-3ecf9fb05b04/sm/ep8916.jpg","duration":1904,"publication_date":"2014-03-25T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-278","changefreq":"weekly","video":[{"title":"2014:E61 - Let's Build in Minecraft - Team Nice Dynamite's Secret Room Part 2","description":"Team Nice Dynamite continues building in Achievement City in Let's Build in Minecraft - Team Nice Dynamite's Secret Room Part 2. Watch Part 1: http://bit.ly/1dKV86r","player_loc":"https://roosterteeth.com/embed/lets-play-2014-278","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af15a820-f474-4790-830c-8039e95b60bf/sm/ep8914.jpg","duration":1665,"publication_date":"2014-03-25T17:12:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-46","changefreq":"weekly","video":[{"title":"2014:E12 - Five Multiplayer Kills - GO! #22","description":"In the 22nd episode of GO!, the first person to get five multiplayer kills wins this week's sticker!","player_loc":"https://roosterteeth.com/embed/go-2014-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a17cc6fe-41f2-4ec1-b7f2-c662a8f3aff3/sm/ep8913.jpg","duration":320,"publication_date":"2014-03-25T14:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-43","changefreq":"weekly","video":[{"title":"2014:E12 - Pirate Punishment","description":"Jack and Michael go over five facts in Pirate Punishment","player_loc":"https://roosterteeth.com/embed/five-facts-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79acc0d8-64e7-43c8-a96d-cbfb64eafc32/sm/ep8912.jpg","duration":169,"publication_date":"2014-03-25T14:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-276","changefreq":"weekly","video":[{"title":"2014:E60 - GTA V - Heist","description":"The AH crew gear up and attempt the most intense heist in the history of GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-276","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2367f73-f4ee-451d-9a85-51e0757ee0e7/sm/ep8911.jpg","duration":2337,"publication_date":"2014-03-25T12:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-44","changefreq":"weekly","video":[{"title":"2014:E12 - Week #206","description":"Geoff, Jack, and Ray bring you this week's news.\r\n\r\nCommunity Video of the Week: Custom Creations: GTA V - Flappy Bird - http://bit.ly/1eGjVMI\r\nVideo of the Week: Let's Play - Octodad: Dadliest Catch: http://bit.ly/OSISKU","player_loc":"https://roosterteeth.com/embed/ahwu-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c303013-6d90-4621-a714-38665da14648/sm/ep8910.jpg","duration":415,"publication_date":"2014-03-24T18:50:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-24","changefreq":"weekly","video":[{"title":"2014:E10 - Recap for the Week of March 10th, 2014","description":"Michael, Ray, and the best of the worst for the week of March 10th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4dd3d0b-a1b1-4927-9c7b-019f899529b8/sm/ep8907.jpg","duration":148,"publication_date":"2014-03-21T19:00:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-43","changefreq":"weekly","video":[{"title":"2014:E12 - Volume 183","description":"Geoff and Michael bring you this week's Fails of the Weak in Halo 4, Halo 3, and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04c9f74a-e96e-48a4-a712-952b0fd5e3bc/sm/ep8906.jpg","duration":199,"publication_date":"2014-03-21T15:32:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-263","changefreq":"weekly","video":[{"title":"2014:E59 - Minecraft - Episode 95 - Monopoly","description":"After a lot of work from Geoff and Gavin's side, the lads and gents play Achievement Monopoly! Hopefully they will be able to finish the game before Ryan dies.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-263","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea884d35-b2de-4cb5-89fc-f8c91b65000f/sm/ep8905.jpg","duration":3099,"publication_date":"2014-03-21T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-43","changefreq":"weekly","video":[{"title":"2014:E12 - Episode 55: Michael vs. Gavin","description":"In the 55th episode of VS, it's a Team Nice Dynamite face-off!","player_loc":"https://roosterteeth.com/embed/vs-2014-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/359865d8-e18b-4f6b-b13c-2691a63991aa/sm/ep8904.jpg","duration":472,"publication_date":"2014-03-20T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-260","changefreq":"weekly","video":[{"title":"2014:E58 - Cloudberry Kingdom Part 5","description":"Jack, Ryan, Michael and Gavin continue playing Cloudberry Kingdom in Let's Play - Cloudberry Kingdom Part 5!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-260","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/becd67e4-044b-43fe-bff0-90c04dda41a9/sm/ep8903.jpg","duration":3014,"publication_date":"2014-03-20T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-24","changefreq":"weekly","video":[{"title":"2014:E12 - Dodge These Balls","description":"Michael is back with another installment of Rage Quit. This week he plays \"Dodge These Balls,\" as he tries to say balls as many times as he can.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b73d36e-77f3-4f62-8728-f0f1c1aafbe4/sm/ep8902.jpg","duration":295,"publication_date":"2014-03-20T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1-how-to-dark-souls-2-with-joel-and-adam","changefreq":"weekly","video":[{"title":"2014:E2 - Dark Souls 2 with Joel & Adam","description":"Apparently the answer is [ LB ], forward [ R2 ], [BR1] and not [ X ]. ... So, really, you don't even have to watch the video.","player_loc":"https://roosterteeth.com/embed/how-to-season-1-how-to-dark-souls-2-with-joel-and-adam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5a7c1e1-83be-49c8-95f2-39f36f84c7ce/sm/ep8901.jpg","duration":512,"publication_date":"2014-03-20T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-258","changefreq":"weekly","video":[{"title":"2014:E57 - Octodad: Dadliest Catch","description":"Join Michael and Gavin as they play \"Octodad: Dadliest Catch!\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-258","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dafd600e-7918-4b67-9fa0-2c6439e71453/sm/ep8900.jpg","duration":2591,"publication_date":"2014-03-20T00:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-54","changefreq":"weekly","video":[{"title":"2014:E12 - GTA V - Bowling","description":"It's time to hit the lanes in this week's Things to do in GTA V \"Bowling.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c52c3ab9-d7e1-4046-b0ea-c4e2211f3c78/sm/ep8899.jpg","duration":958,"publication_date":"2014-03-19T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-39","changefreq":"weekly","video":[{"title":"2014:E11 - Achievement HUNT #21 ","description":"This week's Achievement HUNT, brings you Ryan vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ef9d6c2-601a-40fd-96f9-f879a72764be/sm/ep8898.jpg","duration":410,"publication_date":"2014-03-19T18:56:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-252","changefreq":"weekly","video":[{"title":"2014:E56 - Wrecked: Revenge Revisited","description":"Geoff, Michael, Ray, and Jack decide to try out a new game and play Wrecked: Revenge Revisited in this week's Let's Play Wednesday!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-252","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cf89c25-aaf6-4a35-aaeb-008150cd9f16/sm/ep8896.jpg","duration":2190,"publication_date":"2014-03-19T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-28","changefreq":"weekly","video":[{"title":"2014:E10 - Trials Files #98","description":"Geoff and Michael bring you this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ac7363d-33be-42ea-9fe3-b5fe42ddef60/sm/ep8895.jpg","duration":127,"publication_date":"2014-03-18T19:26:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-247","changefreq":"weekly","video":[{"title":"2014:E55 - Let's Build in Minecraft - Team Nice Dynamite's Secret Room Part 1","description":"In this week's Let's Build in Minecraft, Team Nice Dynamite are building in Achievement City. Michael and Gavin work on making Michael's house more inviting.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-247","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2f55bf2-22e8-4b5f-8b20-7db8a71f111b/sm/ep8892.jpg","duration":1638,"publication_date":"2014-03-18T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-39","changefreq":"weekly","video":[{"title":"2014:E11 - Kill a Shark - GO! #21","description":"In the 21st episode of GO!, the first person to kill a shark wins this week's sticker.","player_loc":"https://roosterteeth.com/embed/go-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce5de087-5152-4348-a3c8-2106ff3c5ab1/sm/ep8894.jpg","duration":222,"publication_date":"2014-03-18T16:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-38","changefreq":"weekly","video":[{"title":"2014:E11 - Sonic Generations","description":"Jack and Ray go over five facts in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d185743-730e-44d9-a96a-a88306de66ba/sm/ep8893.jpg","duration":209,"publication_date":"2014-03-18T14:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-39","changefreq":"weekly","video":[{"title":"2014:E11 - Week #205","description":"Geoff, Jack, Michael, Gavin, and Ray bring you this week's news.\r\n\r\nCommunity Video of the Week: MegaCraft - Episode 5 - Vinca City - http://bit.ly/1cRGE9Z\r\nVideo of the Week: Things to do in GTA V - Dish Jump - http://bit.ly/1lDFIpw\r\nThe Know: http://bit.ly/Oq4RsK","player_loc":"https://roosterteeth.com/embed/ahwu-2014-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e03c419a-60d5-49fe-b766-b98f38c1fd1f/sm/ep8891.jpg","duration":482,"publication_date":"2014-03-17T17:32:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-244","changefreq":"weekly","video":[{"title":"2014:E54 - GTA V - Enter The Dragonface","description":"The AH guys are back with another installment of Let's Play in GTA V. This week they \"haze\" Kerry and play \"Enter the Dragonface.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-244","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfd5a4ad-97a2-4805-bcac-ca1d399c921b/sm/ep8890.jpg","duration":2493,"publication_date":"2014-03-17T17:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-233","changefreq":"weekly","video":[{"title":"2014:E53 - Minecraft - Episode 94 - UnMonuments Men","description":"The AH lads and gents are on a mission: to destroy paintings in Achievement City in Let's Play Minecraft \"UnMonuments Men\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-233","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33c2a58e-c349-4e8a-b972-bb10e2ee81dd/sm/ep8880.jpg","duration":2139,"publication_date":"2014-03-14T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-21","changefreq":"weekly","video":[{"title":"2014:E9 - Recap for the Week of March 3rd, 2014","description":"Michael, Ray, and the best of the worst for the week of March 3rd!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bd46ec9-d330-413c-a9e6-b841aa3eed89/sm/ep8879.jpg","duration":141,"publication_date":"2014-03-14T18:00:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-37","changefreq":"weekly","video":[{"title":"2014:E11 - Volume 182","description":"Geoff and Jack bring you this week's Fails of the Weak in Halo 3, Halo 4, and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d315e21-99bb-4e94-8ee5-6d111c43484c/sm/ep8875.jpg","duration":205,"publication_date":"2014-03-14T14:55:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-36","changefreq":"weekly","video":[{"title":"2014:E11 - Episode 54: Michael vs. Jack","description":"This week on VS, AH gets REAL.","player_loc":"https://roosterteeth.com/embed/vs-2014-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55efbfd9-45df-4acf-b486-c79446494374/sm/ep8874.jpg","duration":739,"publication_date":"2014-03-13T23:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-225","changefreq":"weekly","video":[{"title":"2014:E52 - Ghostbusters","description":"In homage to Harold Ramis, Geoff, Jack, Ryan, and Ray play Ghostbusters.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-225","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cc73dfa-7a47-409d-b999-e53398ec224d/sm/ep8873.jpg","duration":2118,"publication_date":"2014-03-13T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-20","changefreq":"weekly","video":[{"title":"2014:E11 - Toy Stunt Bike","description":"Michael is back with another episode of Rage Quit. This week he plays \"Toy Stunt Bike,\" as he enjoys the game's background music.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02730fed-a965-436d-b143-2d2c8c7c906e/sm/ep8872.jpg","duration":275,"publication_date":"2014-03-13T18:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-34","changefreq":"weekly","video":[{"title":"2014:E10 - Achievement HUNT #20 ","description":"This week's Achievement HUNT, brings you Geoff vs. Michael.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ac0f60-777a-4c92-a1e7-2a6d92789b80/sm/ep8868.jpg","duration":437,"publication_date":"2014-03-12T20:20:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-45","changefreq":"weekly","video":[{"title":"2014:E11 - GTA V - Dish Jump","description":"The AH guys bring you a short and sweet episode of Things to do in GTA V with \"Dish Jump.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/237f03da-7621-49e4-9e21-a31a48ac99a4/sm/ep8869.jpg","duration":171,"publication_date":"2014-03-12T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-south-park-the-stick-of-truth-gingivitis-perverted-and-too-far-guides","changefreq":"weekly","video":[{"title":"2014:E2357 - South Park: The Stick of Truth - Gingivitis, Perverted, and Too Far Guides","description":"Ray shows you how to get the \"Gingivitis\", \"Perverted\" and \"Too Far\" achievements in South Park: The Stick of Truth for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-south-park-the-stick-of-truth-gingivitis-perverted-and-too-far-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd469cdf-ac19-4e65-8dd3-1b00856b20c7/sm/ep8866.jpg","duration":129,"publication_date":"2014-03-12T14:09:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-34","changefreq":"weekly","video":[{"title":"2014:E10 - Call of Duty: Black Ops","description":"Jack and Ray go over five facts in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94b42dab-7531-49b5-a6b6-63aafce55428/sm/ep8865.jpg","duration":173,"publication_date":"2014-03-11T18:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-34","changefreq":"weekly","video":[{"title":"2014:E10 - 5 Team Kills in 5 Games - GO! #20","description":"In the 20th episode of GO!, the first person to get five team kills in five different games wins this week's sticker.","player_loc":"https://roosterteeth.com/embed/go-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f2337f2-ffc1-4d53-a755-26295ff8e726/sm/ep8864.jpg","duration":1396,"publication_date":"2014-03-11T17:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-23","changefreq":"weekly","video":[{"title":"2014:E9 - Trials Files #97","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98fdd5c4-81cb-47d8-a8ea-50e37fa9edd3/sm/ep8863.jpg","duration":112,"publication_date":"2014-03-11T15:00:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-207","changefreq":"weekly","video":[{"title":"2014:E48 - GTA V - Almost Street Legal","description":"The AH crew is back with more GTA V! This week they bring you Let's Play - Almost Street Legal.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e113186-28d5-4756-855b-1bee70539e01/sm/ep8861.jpg","duration":2945,"publication_date":"2014-03-10T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-34","changefreq":"weekly","video":[{"title":"2014:E10 - Week #204","description":"Geoff, Jack, Michael, and Ray bring you this week's news.\r\nCommunity Video of the Week: Things to do in... Grand Theft Auto V - Oceanography - http://bit.ly/PkE166\r\nVideo of the Week: Let's Play Minecraft - Episode 93 - Spring Harvest - http://bit.ly/1elrsNk","player_loc":"https://roosterteeth.com/embed/ahwu-2014-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9d95686-e94d-4067-b777-15b082818f51/sm/ep8859.jpg","duration":338,"publication_date":"2014-03-10T17:29:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2014-6","changefreq":"weekly","video":[{"title":"2014:E1 - South Park: The Stick of Truth","description":"Ray and Jack cover South Park: The Stick of Truth for This Is...\n\nBe sure to check out the South Park map! - http://maps.achievementhunter.com/","player_loc":"https://roosterteeth.com/embed/this-is-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/779d5d04-f7f2-4577-a230-1c5300a7b24c/sm/ep8858.jpg","duration":380,"publication_date":"2014-03-10T13:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-19","changefreq":"weekly","video":[{"title":"2014:E8 - Recap for the Week of February 24th, 2014","description":"Michael, Ray, and the best of the worst for the week of February 24th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2610ecb4-5cb1-45ec-b26b-ee0434a6bf5d/sm/ep8854.jpg","duration":146,"publication_date":"2014-03-07T19:45:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-200","changefreq":"weekly","video":[{"title":"2014:E47 - Minecraft - Episode 93 - Spring Harvest","description":"Geoff, Jack, Ryan, Ray, Gavin, and Michael are back with more Let's Play Minecraft! The winter is over and it's time for the spring planting in \"Spring Harvest!\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-200","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9e00d4d-3581-42a4-9ea9-a7fd3c18d428/sm/ep8853.jpg","duration":2955,"publication_date":"2014-03-07T17:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-33","changefreq":"weekly","video":[{"title":"2014:E10 - Volume 181","description":"Geoff and Jack bring you this week's Fails of the Weak in Halo 4, Halo 3, and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75317684-8b04-4ade-a9e8-458955628ec0/sm/ep8852.jpg","duration":176,"publication_date":"2014-03-07T15:50:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-32","changefreq":"weekly","video":[{"title":"2014:E10 - Episode 53: Ryan vs. Jack","description":"The AH crew is back in the office and Ryan challenges Jack to a PC game (big surprise, not). Who will be victorious in this first VS since the reset Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e24508f4-8ad1-4eea-a09d-91731fe09908/sm/ep8851.jpg","duration":608,"publication_date":"2014-03-06T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-195","changefreq":"weekly","video":[{"title":"2014:E46 - Oculus Rift: Outlast Part 3 with Joel and Adam","description":"With the help of a brand new Oculus Rift, Joel is immersed into a world where all of Adam's annoying idiosyncrasies are magnified into lifelike realness! It's like he's sitting right next to you! ... Watch the video anyway.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-195","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38e8bf3f-b91c-42f3-85f6-21aa4f03019d/sm/ep8849.jpg","duration":2878,"publication_date":"2014-03-06T19:38:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-192","changefreq":"weekly","video":[{"title":"2014:E45 - 3D Ultra MiniGolf Adventures Episode 6","description":"It's the sixth and final installment of Let's Play - 3D Ultra MiniGolf Adventures! Who will win this game and who will become the overall champion Watch to find out! \n\nWatch Part 1: http://bit.ly/YfbxHj\nWatch Part 2: http://bit.ly/12mxCXo\nWatch Part 3: http://bit.ly/14uYO9N\nWatch Part 4: http://bit.ly/1iDopau\nWatch Part 5: http://bit.ly/1cy0DL0","player_loc":"https://roosterteeth.com/embed/lets-play-2014-192","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c90232f3-355d-4955-8f4c-57bd159523d6/sm/ep8848.jpg","duration":4363,"publication_date":"2014-03-06T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-south-park-the-stick-of-truth-3-achievements","changefreq":"weekly","video":[{"title":"2014:E2355 - South Park: The Stick of Truth - 3 Achievements","description":"Ray and Jack show you how to get the \"Made This for You\", \"Heisenberg\", and \"Day Walker\" achievements in South Park: The Stick of Truth for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-south-park-the-stick-of-truth-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5398f7a-9ee7-4394-a480-aee9910755b9/sm/ep8847.jpg","duration":289,"publication_date":"2014-03-06T19:19:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-19","changefreq":"weekly","video":[{"title":"2014:E10 - The Risinger","description":"Michael is under the weather so he gets the help from the second angriest person in the office. Welcome Jon Risinger to Rage Quit!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e04335d9-460d-4dc2-80b8-ac1697a36499/sm/ep8846.jpg","duration":554,"publication_date":"2014-03-06T18:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-38","changefreq":"weekly","video":[{"title":"2014:E10 - GTA V - Achievement Knievel X","description":"The AH crew is back with another installment of Things to do in GTA V, this time they play Achievement Knievel X.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86a8c6ae-0913-47d3-81fd-f1fa1ab75bfc/sm/ep8845.jpg","duration":1287,"publication_date":"2014-03-06T02:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-28","changefreq":"weekly","video":[{"title":"2014:E9 - Achievement HUNT #19","description":"This week's Achievement HUNT, brings you Gavin vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":827,"publication_date":"2014-03-05T19:17:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-26","changefreq":"weekly","video":[{"title":"2014:E9 - Stuff in Games - GO! #19","description":"In the 19th episode of GO!, the first person to fly a plane, drive a car, drive a motorcycle, ride a skateboard, fly a spaceship, ride a bicycle, fly a helicopter, drive a tank, and pilot a boat without using the same game twice, wins this week's sticker.","player_loc":"https://roosterteeth.com/embed/go-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6030c76d-3e9f-4af1-922f-7d52f65674a8/sm/ep8837.jpg","duration":1904,"publication_date":"2014-03-04T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-20","changefreq":"weekly","video":[{"title":"2014:E8 - Trials Files #96","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fa80879-74f1-4bbb-9adf-0985cfd76342/sm/ep8836.jpg","duration":130,"publication_date":"2014-03-04T20:20:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-28","changefreq":"weekly","video":[{"title":"2014:E9 - Minecraft Part 2","description":"Jack and Geoff bring you the second part to five facts in Minecraft.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8522ae02-0f40-4185-afb5-38170f0fda43/sm/ep8835.jpg","duration":189,"publication_date":"2014-03-04T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-173","changefreq":"weekly","video":[{"title":"2014:E42 - Let's Fail? - GTA V - Rallies","description":"The AH crew fail at playing rallies in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cd4ef81-09d9-4bd6-bd28-618964791f81/sm/ep8833.jpg","duration":2244,"publication_date":"2014-03-03T23:49:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-28","changefreq":"weekly","video":[{"title":"2014:E9 - Week #203","description":"Geoff, Jack, Gavin, Michael, and Caleb () bring you this week's news.\r\n\r\nCommunity Video of the Week: Things to do in... Minecraft - Flappy Blocks - http://bit.ly/1c2uB9d\r\nVideo of the Week: VS Episode 52 - Reset - http://bit.ly/1fwYorv","player_loc":"https://roosterteeth.com/embed/ahwu-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42a8998e-36be-4a0d-b59e-b3d1e35116bd/sm/ep8832.jpg","duration":347,"publication_date":"2014-03-03T20:46:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-162","changefreq":"weekly","video":[{"title":"2014:E41 - Minecraft - Episode 92 - Iron Golem","description":"The Achievement Hunter crew is back with Let's Play in Minecraft. In this week's episode they play \"Iron Golem.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c3c9780-3851-48eb-a61e-1b96818f8cef/sm/ep8827.jpg","duration":2283,"publication_date":"2014-02-28T23:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-15","changefreq":"weekly","video":[{"title":"2014:E7 - Recap for the Week of February 17th, 2014","description":"Michael, Ray, and the best of the worst for the week of February 17th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5943e7c2-69a8-4740-b464-838014878a98/sm/ep8826.jpg","duration":139,"publication_date":"2014-02-28T20:38:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-march-2014","changefreq":"weekly","video":[{"title":"2014:E12 - Coming Soon","description":"Kdin is back with a ton of new games and other information for the month of March. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-march-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/295191e5-7a94-4432-92b3-e890fdd816e6/sm/ep8825.jpg","duration":301,"publication_date":"2014-02-28T20:05:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-26","changefreq":"weekly","video":[{"title":"2014:E9 - Volume 180","description":"Geoff and Jack bring you this week's Fails of the Weak in Halo 4, Halo 3, and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bd6712c-a57f-48a7-bc23-6a241db003d2/sm/ep8824.jpg","duration":180,"publication_date":"2014-02-28T16:25:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-153","changefreq":"weekly","video":[{"title":"2014:E40 - Plants vs Zombies: Garden Warfare Part 1","description":"Geoff, Michael, Jack, and Ray play Plants Vs. Zombies: Garden Warfare!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c64ea7fe-31bf-4432-a34b-cb2a80d90c27/sm/ep8821.jpg","duration":2375,"publication_date":"2014-02-27T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-25","changefreq":"weekly","video":[{"title":"2014:E9 - Episode 52: Reset","description":"It's time for a VS reset! The AH crew race one another as they fight to gain their place in line. Who will be number one Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c28fd5a5-4419-40e0-bcad-8c19d172a355/sm/ep8822.jpg","duration":703,"publication_date":"2014-02-27T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-16","changefreq":"weekly","video":[{"title":"2014:E9 - Kollosus Roar","description":"Fasten your seatbelt and prepare your anus for the adventure of a lifetime because this week on Rage Quit we are blasting off onto outer space to play \"Kollosus Roar!\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d14ce244-025d-4b25-9bb9-1fbde40e1573/sm/ep8819.jpg","duration":259,"publication_date":"2014-02-27T18:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-29","changefreq":"weekly","video":[{"title":"2014:E9 - GTA V - Achievement Knievel","description":"The AH crew is back with Things to do in GTA V, where the lads and gents attempt to do the \"Achievement Knievel.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1401cf93-bf98-4af1-a71f-81c229cd0127/sm/ep8817.jpg","duration":863,"publication_date":"2014-02-26T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-145","changefreq":"weekly","video":[{"title":"2014:E38 - Titanfall Beta Part 2","description":"The Achievement Hunter crew is back with the second part of Let's Play - Titanfall Beta!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f950fc77-7adf-48c5-915a-1180c9cd28ad/sm/ep8816.jpg","duration":2094,"publication_date":"2014-02-26T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-11","changefreq":"weekly","video":[{"title":"2014:E4 - Plants vs. Zombies: Garden Warfare - Achievement Hunter Easter Egg ","description":"Geoff and Jack show you where to find the Achievement Hunter Easter Egg in Plants vs. Zombies: Garden Warfare for the Xbox One and Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04635029-e328-4afb-9091-d75fbbfaaf0f/sm/ep8814.jpg","duration":87,"publication_date":"2014-02-26T19:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-24","changefreq":"weekly","video":[{"title":"2014:E8 - Ten in Ten - GO! #18","description":"GO gets a reset! To win this week's sticker the AH guys have to kill ten enemies, in ten different games.","player_loc":"https://roosterteeth.com/embed/go-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cbe292c-2e1e-48bb-82e4-89f30cbedd07/sm/ep8811.jpg","duration":1521,"publication_date":"2014-02-25T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-14","changefreq":"weekly","video":[{"title":"2014:E7 - Trials Files #95","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb1656e0-65e4-4b97-9b0a-f977dac31b3f/sm/ep8809.jpg","duration":85,"publication_date":"2014-02-25T19:04:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-22","changefreq":"weekly","video":[{"title":"2014:E8 - Variety Pack #3","description":"Jack and Geoff bring you the third Five Facts Variety Pack and cover Saints Row, Mortal Kombat vs. DC Universe, Minecraft, Doom, and Wolfenstein 3D. FREE SHIPPING ON ORDERS 50+ (Offer ends 2/28/14) - http://bit.ly/1iQe9f2","player_loc":"https://roosterteeth.com/embed/five-facts-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86ddc57f-76bd-4ee0-822e-1a8bbdbb3768/sm/ep8808.jpg","duration":194,"publication_date":"2014-02-25T16:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-131","changefreq":"weekly","video":[{"title":"2014:E37 - Lets Build in Minecraft - Geoff's Anatomy Part 2","description":"Gavin, Ryan, and Ray are back with the second part of Lets Build in Minecraft - Geoff's Anatomy.\r\nLets Build in Minecraft - Geoff's Anatomy Part 1 - http://bit.ly/1kat5S0\r\nWatch Let's Play Minecraft - Episode 87 - Geoff's Anatomy - http://bit.ly/1nKRyOi","player_loc":"https://roosterteeth.com/embed/lets-play-2014-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5510fe79-631f-4fdb-ac7c-991e800eb7fc/sm/ep8807.jpg","duration":1302,"publication_date":"2014-02-25T15:47:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-129","changefreq":"weekly","video":[{"title":"2014:E36 - GTA V - Downhill Jam","description":"The lads and gents are back with Let's Play GTA V. In this week's episode they play \"Downhill Jam.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fac91d85-9828-469b-93d0-c174b15ea820/sm/ep8805.jpg","duration":2249,"publication_date":"2014-02-24T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-22","changefreq":"weekly","video":[{"title":"2014:E8 - Week #202","description":"Geoff, Jack, Gavin, Michael, and Ray bring you this week's news.\r\n\r\nCheck out the Controller Shop at: https://thecontrollershop.com/\r\nCommunity Video of the Week: Things to do in...Grand Theft Auto V - Yoga Ball - http://bit.ly/1mDuqWI\r\nVideo of the Week: Let's Play Titanfall Beta - http://bit.ly/NsDoWP","player_loc":"https://roosterteeth.com/embed/ahwu-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/040ed528-510e-4516-afe3-3edae9eccaac/sm/ep8804.jpg","duration":438,"publication_date":"2014-02-24T21:35:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-119","changefreq":"weekly","video":[{"title":"2014:E35 - Minecraft - Episode 91 - Darwin Awards","description":"In this week's Let's Play Minecraft, the lads and gents play the \"Darwin Awards.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c884c54-cffe-4ff3-b7ff-f121b13d0133/sm/ep8799.jpg","duration":2960,"publication_date":"2014-02-22T00:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-11","changefreq":"weekly","video":[{"title":"2014:E6 - Recap for the Week of February 10th, 2014","description":"Ray, Michael, and the best of the worst for the week of February 10th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d96dd8a3-cec0-4243-b572-001c8be66ffc/sm/ep8798.jpg","duration":176,"publication_date":"2014-02-21T20:47:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-20","changefreq":"weekly","video":[{"title":"2014:E8 - Volume 179","description":"Geoff and Jack bring you this week's Fails of the Weak in Halo 4 and Halo Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0f465ab-27f4-4ec7-8815-d851c2386f0c/sm/ep8797.jpg","duration":176,"publication_date":"2014-02-21T17:31:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-112","changefreq":"weekly","video":[{"title":"2014:E34 - Titanfall Beta Part 1","description":"The lads and gents shoot their way around Titanfall Beta in the first part of Let's Play - Titanfall Beta.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59164544-b5c7-4991-a7b2-7b74726a7d2e/sm/ep8794.jpg","duration":1551,"publication_date":"2014-02-20T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-17","changefreq":"weekly","video":[{"title":"2014:E8 - Episode 51: Ryan vs. Jack","description":"In this week's episode of VS, Jack challenges Ryan to a little game of trivia. Who will know more random facts Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05843641-0065-479d-b937-374480252afa/sm/ep8789.jpg","duration":850,"publication_date":"2014-02-20T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-12","changefreq":"weekly","video":[{"title":"2014:E8 - Little Flappers","description":"Michael rages as he flaps away in \"Little Flappers.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56ddd7a1-962b-4d9a-adf5-6b0f0bf8ca20/sm/ep8791.jpg","duration":201,"publication_date":"2014-02-20T15:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-14","changefreq":"weekly","video":[{"title":"2014:E7 - Achievement HUNT #17","description":"This week's Achievement HUNT, brings you Ray vs. Ryan","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d412fbc0-c036-41db-9387-8c9d7c565cc6/sm/ep8787.jpg","duration":324,"publication_date":"2014-02-19T22:45:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-20","changefreq":"weekly","video":[{"title":"2014:E8 - GTA V - Last Man Standing","description":"The AH crew is back with Things to do in GTA V, where the lads and gents play \"Last Man Standing.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4e4299d-1ef5-4323-827e-3f1ffd346395/sm/ep8785.jpg","duration":633,"publication_date":"2014-02-19T17:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-16","changefreq":"weekly","video":[{"title":"2014:E7 - Smite","description":"Jack and Geoff bring you five facts on Smite.\nTest yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/five-facts-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0458702d-8fce-4692-b3b6-7baf553b3a7f/sm/ep8783.jpg","duration":246,"publication_date":"2014-02-19T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-89","changefreq":"weekly","video":[{"title":"2014:E31 - AC4: Guild of Rogues DLC","description":"The AH gents and lads play Assassin's Creed IV: Black Flag that features content from the Guild of Rogues DLC. Check out the Guild of Rogues DLC here: http://bit.ly/1gByPnH","player_loc":"https://roosterteeth.com/embed/lets-play-2014-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4418188c-15cc-4cd3-819a-7eb508e23c54/sm/ep8778.jpg","duration":2124,"publication_date":"2014-02-18T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-8","changefreq":"weekly","video":[{"title":"2014:E6 - Trials Files #94","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a4486a-6fa7-4821-b09d-636ba34bd818/sm/ep8777.jpg","duration":130,"publication_date":"2014-02-18T18:32:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-85","changefreq":"weekly","video":[{"title":"2014:E30 - Let's Build in Minecraft - Geoff's Anatomy","description":"Watch as Gavin, Ryan, and Ray build for Let's Play Minecraft - Geoff's Anatomy.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e68b77f9-af98-4d7a-8cc2-f29899333e90/sm/ep8775.jpg","duration":1670,"publication_date":"2014-02-18T16:44:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-16","changefreq":"weekly","video":[{"title":"2014:E7 - Deploy a Parachute - GO! #17","description":"It's down to the wire in the 17th episode of GO! This week's winner will be the first person who deploys a parachute without using Grand Theft Auto.","player_loc":"https://roosterteeth.com/embed/go-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/946a4e76-a5ab-47dd-a656-ad9029e5be6c/sm/ep8774.jpg","duration":330,"publication_date":"2014-02-18T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-81","changefreq":"weekly","video":[{"title":"2014:E29 - GTA V - Emergency Landing","description":"The AH crew is back with more Let's Play in GTA V with \"Emergency Landing.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2014-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ec3e54a-a033-4a1e-b99a-9bc04fcf63c3/sm/ep8773.jpg","duration":3001,"publication_date":"2014-02-17T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-12","changefreq":"weekly","video":[{"title":"2014:E7 - Week #201","description":"Geoff, Jack, Gavin, Michael, and Caleb bring you this week's news. Community Video of the Week: MegaCraft - Episode 1 - Achievement Hunter Office - http://bit.ly/1kPfT8l\r\nVideo of the Week: Let's Play Minecraft - Episode 90 - Mad King Ryan Part 2 - http://bit.ly/1oJTidS","player_loc":"https://roosterteeth.com/embed/ahwu-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20dd9377-f45a-47fc-9c82-bee765692aae/sm/ep8772.jpg","duration":502,"publication_date":"2014-02-17T22:01:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2014-5","changefreq":"weekly","video":[{"title":"2014:E5 - Surgeon Simulator 2013: Alien Transplant","description":"In honor of Team Nice Dynamite (whose shirt is coming out this week) we bring you the last behind the scenes video of the week with Let's Play - Surgeon SImulator 2013: Alien Transplant","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/502f6355-a921-4b23-9065-5fd601a9b971/sm/ep8771.jpg","duration":965,"publication_date":"2014-02-17T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-75","changefreq":"weekly","video":[{"title":"2014:E28 - Minecraft - Episode 90 - Mad King Ryan Part 2","description":"The AH crew is back with the second part of Let's Play Minecraft - Mad King Ryan!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3085eb0d-29c9-451a-8d01-527880035a34/sm/ep8767.jpg","duration":2944,"publication_date":"2014-02-14T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-6","changefreq":"weekly","video":[{"title":"2014:E5 - Recap for the Week of February 3rd, 2014","description":"Ray, Michael, and the best of the worst for the week of February 3rd!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2177abe-36e4-496b-818f-b108e506ea7f/sm/ep8766.jpg","duration":155,"publication_date":"2014-02-14T19:09:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-farcry-classic-3-achievements","changefreq":"weekly","video":[{"title":"2014:E2351 - FarCry Classic: 3 Achievements","description":"Ray shows you how to get \"SpecOps Training\", \"Flight Simulation\", & \"Long Distance Correspondence\" achievements in FarCry Classic for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-farcry-classic-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7608848-fa7a-403c-a223-03e985d62276/sm/ep8765.jpg","duration":196,"publication_date":"2014-02-14T17:20:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2014-4","changefreq":"weekly","video":[{"title":"2014:E4 - Geoff's House Part 3","description":"Watch as the AH crew plays Let's Play Minecraft - Geoff's House Part 3. Watch the episode here: http://bit.ly/1hjdwu3","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae1fbff7-0fe4-42b0-bad4-118056886100/sm/ep8764.jpg","duration":209,"publication_date":"2014-02-14T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo","changefreq":"weekly","video":[{"title":"2014:E11 - Game Night - Halo","description":"Ray and Caleb go over \"Halo\" on Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bf89314-563d-42bb-b294-9fdb1ccbaa35/sm/ep8763.jpg","duration":101,"publication_date":"2014-02-14T15:30:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-10","changefreq":"weekly","video":[{"title":"2014:E7 - Volume 178","description":"Geoff, Ryan, and Ray bring you this week's Fails of the Weak in Halo 1, 2, 3, 4, and Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e2726a8-a198-47d1-8448-e6fb3d14bb27/sm/ep8762.jpg","duration":178,"publication_date":"2014-02-14T15:23:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-11","changefreq":"weekly","video":[{"title":"2014:E7 - Episode 50: Gavin vs. Ryan","description":"This week's episode of VS, brings you Gavin vs. Ryan- really this time, I promise.","player_loc":"https://roosterteeth.com/embed/vs-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88187e02-a29e-4b3f-bd86-79b48d0a22a6/sm/ep8761.jpg","duration":434,"publication_date":"2014-02-13T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-64","changefreq":"weekly","video":[{"title":"2014:E27 - Adam and Joel infiltrate Jazzpunk","description":"Joel and Adam head back in time to become spies during the Cold War. Adam shows Joel the most efficient way to infiltrate the Soviet Consulate. In exchange, Joel tells Adam the proper way to spell pigeon.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/882db596-11e5-4d8d-a81d-32a5eb628f23/sm/ep8759.jpg","duration":1337,"publication_date":"2014-02-13T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-7","changefreq":"weekly","video":[{"title":"2014:E7 - Rage Runner","description":"Watch as Michael rampages as he treks through space in \"Rage Runner\".","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e12bb6c-66b7-44ab-af8f-5cc7c723e059/sm/ep8758.jpg","duration":354,"publication_date":"2014-02-13T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2014-3","changefreq":"weekly","video":[{"title":"2014:E3 - GTAV Part 1","description":"Watch as the AH lads and gents play a little GTA V.\nWatch Let's Play - GTAV Part 1: http://bit.ly/1aWpA1y","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/037ff31e-611f-447d-a33e-e2f2c37addf4/sm/ep8757.jpg","duration":271,"publication_date":"2014-02-13T00:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-9","changefreq":"weekly","video":[{"title":"2014:E6 - Achievement HUNT #16","description":"This week's Achievement HUNT, brings you Geoff vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fff585b9-f661-4c14-9cac-ab7fe4c439a4/sm/ep8756.jpg","duration":267,"publication_date":"2014-02-12T20:48:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-12","changefreq":"weekly","video":[{"title":"2014:E7 - GTA V - Bike Glitch","description":"Per viewers' requests, the AH crew play around with the Bike Glitch in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4be0abe-2018-4651-aa90-00f18a0b2684/sm/ep8755.jpg","duration":640,"publication_date":"2014-02-12T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-58","changefreq":"weekly","video":[{"title":"2014:E26 - The Achievement Hunter 2014 Winter Olympics Part 1","description":"The AH gents and lads compete in winter sports and represent their countries in The Achievement Hunter 2014 Winter Olympics games.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76e82e7e-3941-499d-a8af-de81a75e5879/sm/ep8753.jpg","duration":2289,"publication_date":"2014-02-12T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2014-2","changefreq":"weekly","video":[{"title":"2014:E2 - Hard At Work","description":"Watch behind the scenes footage of the AH guys hard at work and Michael getting his head shaved during the Extra Life Charity Stream.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2014-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e34fa63a-40f4-4b1b-b637-6dded32a274d/sm/ep8751.jpg","duration":259,"publication_date":"2014-02-11T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-8","changefreq":"weekly","video":[{"title":"2014:E6 - Batman: Arkham City","description":"Jack and Geoff go over five facts on Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19208c87-a7be-46f5-a860-e9f2ce8ed745/sm/ep8750.jpg","duration":271,"publication_date":"2014-02-11T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-9","changefreq":"weekly","video":[{"title":"2014:E6 - Exploding Barrels - GO! #16","description":"In the 16th episode of GO!, the first person to explode three different barrels in three different games wins this week's sticker.","player_loc":"https://roosterteeth.com/embed/go-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f594660-c4c9-484c-8497-581e35f142b5/sm/ep8749.jpg","duration":952,"publication_date":"2014-02-11T17:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-54","changefreq":"weekly","video":[{"title":"2014:E25 - Let's Build in Minecraft - Snowbound Part 3","description":"This week's Let's Build in Minecraft is the third part to Snowbound.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7eac401d-94b4-4356-81f2-4ab146b8c003/sm/ep8748.jpg","duration":1590,"publication_date":"2014-02-11T17:10:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-9","changefreq":"weekly","video":[{"title":"2014:E6 - Week #200","description":"It's the two hundredth episode of AHWU! Join the AH crew as they bring you gaming news for the week of February 10th.\r\n\r\nCommunity Video of the Week: Things to do in... Minecraft - Candy Hearts - http://bit.ly/1eOxlWy\r\nCheck out: http://www.achievementhunter.com/community \r\nRTX 2014 - http://rtxevent.com/home\r\nVideo of the Week: AHWU #1 - http://bit.ly/1faUsqR","player_loc":"https://roosterteeth.com/embed/ahwu-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4259aaa-0e5a-412d-802d-70bc0d42e0bb/sm/ep8746.jpg","duration":667,"publication_date":"2014-02-10T22:12:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-51","changefreq":"weekly","video":[{"title":"2014:E24 - GTA V - Rockstar Verified Part 3","description":"The AH crew is back with the third installment of Let's Play GTA V - Rockstar Verified.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a19c24d-15dc-42ff-8b4f-c7deb5a9206f/sm/ep8745.jpg","duration":2054,"publication_date":"2014-02-10T18:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2014","changefreq":"weekly","video":[{"title":"2014:E1 - Witness Protection","description":"Watch as the lads and gents play GTA IV in Let's Play - Witness Protection.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddb3b7c3-6035-4072-bc65-385538d80fb2/sm/ep8744.jpg","duration":395,"publication_date":"2014-02-10T16:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-4","changefreq":"weekly","video":[{"title":"2014:E4 - Recap for the Week of January 27th, 2014","description":"Ray, Gavin, and the best of the worst for the week of January 20th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/558572b1-6a2b-4018-b0b9-88d5e249377c/sm/ep8740.jpg","duration":161,"publication_date":"2014-02-07T21:08:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-38","changefreq":"weekly","video":[{"title":"2014:E23 - Minecraft - Episode 89 - Mad King Ryan Part 1","description":"The mad and twisted King Ryan is back in Let's Play Minecraft - nobody is safe.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e159d19c-8348-415d-aee0-95523a9e169b/sm/ep8737.jpg","duration":1957,"publication_date":"2014-02-07T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-7","changefreq":"weekly","video":[{"title":"2014:E6 - Volume 177","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff0b43d5-bf33-4871-aa5c-53acab24bca8/sm/ep8739.jpg","duration":182,"publication_date":"2014-02-07T19:16:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-artifact-run","changefreq":"weekly","video":[{"title":"2014:E10 - Game Night - Artifact Run","description":"Ray and Caleb go over \"Artifact Run\" in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-artifact-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9637b7ec-e100-42a9-b3f7-590a2a63f5f3/sm/ep8738.jpg","duration":97,"publication_date":"2014-02-07T18:53:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-35","changefreq":"weekly","video":[{"title":"2014:E22 - Joel and Adam check out The Castle Doctrine","description":"Joel and Adam explore the legal limits of the castle doctrine, also, they play The Castle Doctrine. In this hyper-realistic indie PC game, they discover how many spaces away a cat can kill you from. It's more than 7.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fe26da7-a62d-4a7b-8290-67cc123f8466/sm/ep8734.jpg","duration":1558,"publication_date":"2014-02-06T20:50:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-6","changefreq":"weekly","video":[{"title":"2014:E6 - Episode 49: Gavin vs. Ryan?","description":"This week's episode of VS, brings you Gavin vs. Rya-- wait what","player_loc":"https://roosterteeth.com/embed/vs-2014-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dc0dafe-4b21-4ed6-91e0-d148c1c9178a/sm/ep8733.jpg","duration":339,"publication_date":"2014-02-06T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-3","changefreq":"weekly","video":[{"title":"2014:E6 - Unreal Land","description":"In this extremely exciting episode of Rage Quit, Michael examines the world in \"Unreal Land.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f709007-cddd-4e3b-81ac-b502b8614862/sm/ep8732.jpg","duration":344,"publication_date":"2014-02-06T16:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-33","changefreq":"weekly","video":[{"title":"2014:E21 - Assassin's Creed IV: Wolf Pack","description":"The AH crew plays Wolf Pack in Assassin's Creed IV: Black Flag in this week's Let's Play Wednesdays.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87d53888-1093-4e9f-b5dd-1273182ee2bf/sm/ep8731.jpg","duration":1916,"publication_date":"2014-02-06T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-3","changefreq":"weekly","video":[{"title":"2014:E5 - Achievement HUNT #15 ","description":"This week's Achievement HUNT, brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9af81c62-2af1-4be6-828e-462cce94d95e/sm/ep8730.jpg","duration":338,"publication_date":"2014-02-06T01:04:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-5","changefreq":"weekly","video":[{"title":"2014:E6 - GTA V - Rabbit Jump X","description":"The AH crew decide to add an X to Rabbit Jump and do more intense bike jumps in this week's Things to do in GTA V - Rabbit Jump X!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cdc4657-cbcf-4a9e-a7fa-997c363ffdba/sm/ep8728.jpg","duration":554,"publication_date":"2014-02-05T17:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-4","changefreq":"weekly","video":[{"title":"2014:E5 - Trials Files #93","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64a337cb-277e-48bb-aa8a-fcaf7e360535/sm/ep8726.jpg","duration":134,"publication_date":"2014-02-04T20:11:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-24","changefreq":"weekly","video":[{"title":"2014:E20 - Let's Build in Minecraft - Snowbound Part 2","description":"This week's Let's Build in Minecraft is the second part to Snowbound.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90189b99-f49f-409b-a3b1-b37e96f117bc/sm/ep8724.jpg","duration":1353,"publication_date":"2014-02-04T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-3","changefreq":"weekly","video":[{"title":"2014:E5 - Resident Evil 5","description":"Ray and Michael bring you five facts over Resident Evil 5.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5645a842-4489-461e-a78f-1209f9fa420b/sm/ep8725.jpg","duration":235,"publication_date":"2014-02-04T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-3","changefreq":"weekly","video":[{"title":"2014:E5 - Capture a Toilet - GO! #15","description":"In the 15th episode of GO!, the first person to capture a toilet, without playing Duke Nukem Forever, wins this week's sticker. Will there be a pizza party after this episode Watch and find out!","player_loc":"https://roosterteeth.com/embed/go-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07ea1e49-7e80-421f-bdcf-5268db167eb4/sm/ep8723.jpg","duration":372,"publication_date":"2014-02-04T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-4","changefreq":"weekly","video":[{"title":"2014:E5 - Week #199","description":"Geoff, Jack, Ryan, Caleb, Ray and Michael bring you this week's news. Community Video of the Week: Let's Play - Surgeon Simulator 2013: Alien Surgery - http://bit.ly/1fHKAb3\r\nVideo of the Week: Grand Theft Auto V - Thelma and Louise Easter Egg - http://bit.ly/1alj83O\r\nAH Achievement City Stats Poster - http://bit.ly/1lxCpnw","player_loc":"https://roosterteeth.com/embed/ahwu-2014-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89301f39-ed03-4334-b02b-96628151436a/sm/ep8721.jpg","duration":447,"publication_date":"2014-02-03T20:55:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-20","changefreq":"weekly","video":[{"title":"2014:E19 - GTA IV - Retro Play","description":"The AH guys are back playing their favorites in GTA IV!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a87ae6cb-e2bc-46db-8879-d55b941d6694/sm/ep8720.jpg","duration":3790,"publication_date":"2014-02-03T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014","changefreq":"weekly","video":[{"title":"2014:E3 - Recap for the Week of January 20th, 2014","description":"Geoff, Ryan, and the best of the worst for the week of January 13th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d3a3989-d9fc-4b2a-bc2e-5cb03ec50854/sm/ep8717.jpg","duration":139,"publication_date":"2014-01-31T20:22:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-february-2014","changefreq":"weekly","video":[{"title":"2014:E9 - Coming Soon - February 2014","description":"Kdin is back with a ton of new games and other information for the month of February. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-february-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af54b995-5102-4ef1-9897-6185756641b7/sm/ep8716.jpg","duration":353,"publication_date":"2014-01-31T19:01:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-14","changefreq":"weekly","video":[{"title":"2014:E18 - Surgeon Simulator 2013: Alien Surgery","description":"The wait is over! Dr. Jones and Dr. Free are back with Let's Play - Surgeon Simulator 2013: Alien Surge","player_loc":"https://roosterteeth.com/embed/lets-play-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6be8d093-e208-4b71-b363-683988bdf75e/sm/ep8715.jpg","duration":3854,"publication_date":"2014-01-31T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-11","changefreq":"weekly","video":[{"title":"2014:E17 - Minecraft - Episode 88 - Snowbound","description":"It's Team Lads vs. Team Gents in this week's Let's Play Minecraft - Snowbound.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adbb90df-a22c-4099-aa7c-6eacdc88fdcf/sm/ep8714.jpg","duration":3487,"publication_date":"2014-01-31T18:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-3","changefreq":"weekly","video":[{"title":"2014:E5 - Volume 176","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8463afe6-fb13-4d58-b0fe-b5cd2a551512/sm/ep8713.jpg","duration":187,"publication_date":"2014-01-31T18:22:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-titanfall","changefreq":"weekly","video":[{"title":"2014:E8 - Game Night - Titanfall","description":"Ray and Caleb go over \"Titanfall\" in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-titanfall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f4c4d2a-8d44-49d7-8559-e757b8b92a3e/sm/ep8712.jpg","duration":89,"publication_date":"2014-01-31T18:08:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-3","changefreq":"weekly","video":[{"title":"2014:E5 - Episode 48: Michael vs. Gavin","description":"Gavin is back - yay Will he be able to beat Michael and win the beloved belt Watch and find out!","player_loc":"https://roosterteeth.com/embed/vs-2014-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/814a0bc5-98ef-4a02-9337-e8c8589e8f3b/sm/ep8710.jpg","duration":481,"publication_date":"2014-01-30T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-27","changefreq":"weekly","video":[{"title":"2014:E5 - Winnie the Pooh's Home Run Derby","description":"Michael plays Winnie the Pooh's Home Run Derby - will this be a child friendly Rage Quit Watch to find out!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d1a434b-2895-4411-87bc-cd072859049f/sm/ep8687.jpg","duration":284,"publication_date":"2014-01-30T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-44","changefreq":"weekly","video":[{"title":"2014:E5 - GTA V - Frogger","description":"The AH guys are back with more Things to do in GTA V - Frogger.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba0868f5-5769-419c-aa15-d22e66d8e1df/sm/ep8611.jpg","duration":957,"publication_date":"2014-01-30T00:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-32","changefreq":"weekly","video":[{"title":"2014:E4 - Achievement HUNT #14","description":"This week's Achievement HUNT, brings you Jack vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77f49d29-0f48-4678-997f-80b3db708972/sm/ep8607.jpg","duration":309,"publication_date":"2014-01-30T00:23:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-199","changefreq":"weekly","video":[{"title":"2014:E16 - Madden NFL 25: Super Bowl Special","description":"It's Team Lads vs Team Gents in this Super Bowl Special in Let's Play - Madden NFL 25.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-199","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d55b8d9-f155-40d8-93bf-c2e02072901a/sm/ep8597.jpg","duration":3288,"publication_date":"2014-01-29T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2014","changefreq":"weekly","video":[{"title":"2014:E7 - Loadout Launch Trailer by Rooster Teeth ","description":"Watch the Loadout Launch Trailer Created by Rooster Teeth and be sure to check out the game at http://bit.ly/1nhcj6z","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a64ab1b-1f0a-4885-8797-803e496446a1/sm/ep8595.jpg","duration":76,"publication_date":"2014-01-29T15:40:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-31","changefreq":"weekly","video":[{"title":"2014:E4 - Beat a Level in Halo - GO! #14","description":"In the 14th episode of GO!, without using Halo: Spartan Assault and Spartan Wars, the guys have be the first person to beat any level in Halo.","player_loc":"https://roosterteeth.com/embed/go-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/403a8bd0-5122-4b97-9544-c1b91374dff2/sm/ep8594.jpg","duration":943,"publication_date":"2014-01-28T22:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-194","changefreq":"weekly","video":[{"title":"2014:E15 - Let's Build in Minecraft - Snowbound Part 1","description":"Geoff, Gavin, Ryan, and Michael keep on building in Let's Build in Minecraft - Snowbound Part 1.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-194","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2603b600-ac0a-4905-a18e-21255d82e24b/sm/ep8593.jpg","duration":1709,"publication_date":"2014-01-28T22:10:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-21","changefreq":"weekly","video":[{"title":"2014:E4 - Trials Files #92","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e782f5b-32f5-4d47-a759-516990652deb/sm/ep8592.jpg","duration":107,"publication_date":"2014-01-28T20:31:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-egg-stra-xp-guide","changefreq":"weekly","video":[{"title":"2014:E2350 - Call of Duty: Ghosts - Egg-stra XP! Guide","description":"Ray and Geoff show you how to get the \"Egg-stra XP!\" achievement in the Onslaught DLC for Call of Duty: Ghosts for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-egg-stra-xp-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6307fc1-e394-4e80-a780-79814740e41d/sm/ep8591.jpg","duration":106,"publication_date":"2014-01-28T19:53:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-31","changefreq":"weekly","video":[{"title":"2014:E4 - Borderlands 2","description":"Jack and Ray bring you five facts on Borderland 2!","player_loc":"https://roosterteeth.com/embed/five-facts-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f1f82a0-d011-4f28-9e5f-9dfb4e440e09/sm/ep8590.jpg","duration":189,"publication_date":"2014-01-28T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tomb-raider-definitive-edition-chatterbox-guide","changefreq":"weekly","video":[{"title":"2014:E2349 - Tomb Raider: Definitive Edition - Chatterbox Guide","description":"Ray shows you how to get the \"Chatterbox\" achievement in Tomb Raider: Definitive Edition for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tomb-raider-definitive-edition-chatterbox-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f570c14-8aab-48fc-bd34-bf7054649a76/sm/ep8588.jpg","duration":231,"publication_date":"2014-01-28T15:06:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-31","changefreq":"weekly","video":[{"title":"2014:E4 - Week #198","description":"Geoff, Jack, Caleb, Michael, and Gavin bring you this week's news.","player_loc":"https://roosterteeth.com/embed/ahwu-2014-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6436c15-f361-4ac6-80e7-fcf65bdad908/sm/ep8587.jpg","duration":374,"publication_date":"2014-01-27T21:51:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-184","changefreq":"weekly","video":[{"title":"2014:E14 - GTA V - Rockstar Verified Part 2","description":"Geoff, Gavin, Michael, Ray, Ryan, and Jack are back with the second installment of Let's Play GTA V - Rockstar Verified.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-184","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df31f550-8c95-4d0a-a856-e746449f68b1/sm/ep8586.jpg","duration":2346,"publication_date":"2014-01-27T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tomb-raider-definitive-edition-3-achievements","changefreq":"weekly","video":[{"title":"2014:E2348 - Tomb Raider: Definitive Edition - 3 Achievements ","description":"Ray and Michael show you how to get the \"Boom Goes the Dynamite\", \"Epic Fumble\", & \"Crab Cakes\" achievements in Tomb Raider: Definitive Edition for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tomb-raider-definitive-edition-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6736a064-1cb2-4ccc-bb18-e062b796dc24/sm/ep8585.jpg","duration":109,"publication_date":"2014-01-27T17:21:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-17","changefreq":"weekly","video":[{"title":"2014:E2 - Recap for the Week of January 13th, 2014","description":"Ray, Michael, and the best of the worst for the week of January 13th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc9251e-30cd-4887-a2f6-061e976388fa/sm/ep8582.jpg","duration":152,"publication_date":"2014-01-24T20:24:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-29","changefreq":"weekly","video":[{"title":"2014:E4 - Volume 175","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5443f827-7b61-4d38-942d-1bd456aab966/sm/ep8580.jpg","duration":183,"publication_date":"2014-01-24T17:48:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-176","changefreq":"weekly","video":[{"title":"2014:E13 - Minecraft - Episode 87 - Geoff's Anatomy","description":"Geoff is sick and it's up to the AH guys to heal him to health in this week's Let's Play Minecraft - Geoff's Anatomy.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-176","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7c26db5-94ab-4776-8ee1-e5d3ad457469/sm/ep8578.jpg","duration":3351,"publication_date":"2014-01-24T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-beer-pong","changefreq":"weekly","video":[{"title":"2014:E6 - Game Night - Beer Pong","description":"Ray and Caleb go over \"Beer Pong\" in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-beer-pong","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d3b049a-4522-4cde-a307-1ca5707fc882/sm/ep8579.jpg","duration":88,"publication_date":"2014-01-24T16:44:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-28","changefreq":"weekly","video":[{"title":"2014:E4 - Episode 47: Ray vs. Michael","description":"This week's Episode of VS, brings you Ray vs. Michael!","player_loc":"https://roosterteeth.com/embed/vs-2014-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e6c375f-4a16-4637-85dd-f990548078da/sm/ep8577.jpg","duration":1093,"publication_date":"2014-01-23T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-18","changefreq":"weekly","video":[{"title":"2014:E4 - Techno Kitten Adventure","description":"Will kittens reveal the softer side of Michael Find out in Rage Quit - Techno Kitten Adventure!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48d3add3-a8fa-4887-bc21-4670c17da04b/sm/ep8576.jpg","duration":241,"publication_date":"2014-01-23T16:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-32","changefreq":"weekly","video":[{"title":"2014:E4 - GTA V - Red Rover","description":"The AH guys are back with Things to do in GTA V - Red Rover.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d2997e-93e3-4b5f-8751-2f08fffa7a3d/sm/ep8575.jpg","duration":1743,"publication_date":"2014-01-23T02:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-24","changefreq":"weekly","video":[{"title":"2014:E3 - Achievement HUNT #13 ","description":"This week's Achievement HUNT, brings you Gavin vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef9caa2f-4206-4a62-9949-50a749c3c130/sm/ep8574.jpg","duration":366,"publication_date":"2014-01-22T20:03:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-167","changefreq":"weekly","video":[{"title":"2014:E12 - Warlords","description":"Geoff, Jack, Ryan, and Ray play Warlords in this week's Let's Play Wednesday!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68c4e434-4727-4f7e-aaba-da0b2260e916/sm/ep8573.jpg","duration":1288,"publication_date":"2014-01-22T19:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-assassins-creed-4-skeleton-crew","changefreq":"weekly","video":[{"title":"2014:E5 - Assassin's Creed 4 - Skeleton Crew","description":"Jack and Geoff check out 'Skeleton Crew' in Assassin's Creed 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-assassins-creed-4-skeleton-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e27983ce-1229-49b1-9705-bdfc2964bddb/sm/ep8570.jpg","duration":129,"publication_date":"2014-01-21T21:16:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-17","changefreq":"weekly","video":[{"title":"2014:E3 - Trials Files #91","description":"Geoff and Jack are back with this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee0b7b93-52c5-4f50-acc1-a4738c72d311/sm/ep8569.jpg","duration":88,"publication_date":"2014-01-21T21:09:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-156","changefreq":"weekly","video":[{"title":"2014:E11 - Let's Build in Minecraft - The Twelve Towers","description":"Geoff and Gavin build the Twelve Towers in Minecraft. Watch Let's Play Minecraft - The Twelve Towers: http://bit.ly/KAqSn0","player_loc":"https://roosterteeth.com/embed/lets-play-2014-156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d5d1c82-ac28-44bd-9b23-382c39f5bccb/sm/ep8567.jpg","duration":1278,"publication_date":"2014-01-21T19:08:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-25","changefreq":"weekly","video":[{"title":"2014:E3 - Modern Warfare 2","description":"Geoff and Ray bring you five facts over Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/850efa7d-af1f-4030-acbf-ef5c059ff7f3/sm/ep8566.jpg","duration":237,"publication_date":"2014-01-21T17:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-22","changefreq":"weekly","video":[{"title":"2014:E3 - Three Game Over Screens - GO! #13","description":"In the 13th episode of GO!, with only using one arcade game the guys have to capture three game over screens to win a pizza sticker.","player_loc":"https://roosterteeth.com/embed/go-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8af0bee0-0164-4f6d-a513-cb423c4db26e/sm/ep8565.jpg","duration":782,"publication_date":"2014-01-21T16:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-25","changefreq":"weekly","video":[{"title":"2014:E3 - Week #197","description":"Geoff, Jack, Michael,Gavin, and Caleb bring you this week's news.","player_loc":"https://roosterteeth.com/embed/ahwu-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3201480-a6a1-4a9a-bc87-dc134cc789b5/sm/ep8563.jpg","duration":344,"publication_date":"2014-01-20T22:11:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-149","changefreq":"weekly","video":[{"title":"2014:E10 - GTA V - Plane Train","description":"Ryan, Jack, Gavin, Ray, and Kerry are back with more Let's Play in GTA V!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b73df59a-e9de-4b76-b04c-54c6a045f9c0/sm/ep8562.jpg","duration":2985,"publication_date":"2014-01-20T18:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2014-13","changefreq":"weekly","video":[{"title":"2014:E1 - Recap for the Week of January 6th, 2014","description":"Ray, Ryan, and the best of the worst for the week of January 6th!","player_loc":"https://roosterteeth.com/embed/game-fails-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe5847f2-e279-4dba-bff3-61ed8cd0b2e1/sm/ep8560.jpg","duration":149,"publication_date":"2014-01-17T21:51:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-10","changefreq":"weekly","video":[{"title":"2014:E3 - Battlefield 4 - Exploding Ship Easter Egg","description":"Ray shows you where to find the Exploding Ship Easter Egg in Battlefield 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/701a1622-3ce9-4dee-ba80-5daca7278e71/sm/ep8558.jpg","duration":109,"publication_date":"2014-01-17T18:38:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-139","changefreq":"weekly","video":[{"title":"2014:E9 - Minecraft - Episode 86 - The Twelve Towers","description":"From an idea submitted to Geoff by his daughter comes this week's Let's Play Minecraft - The Twelve Towers.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbe48ad2-17f8-4e68-bf4e-fcc40aee810e/sm/ep8556.jpg","duration":2679,"publication_date":"2014-01-17T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-9","changefreq":"weekly","video":[{"title":"2014:E2 - Grand Theft Auto V - Snowman Easter Egg","description":"Ray shows you where to find the Snowman Easter Egg in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bfbe058-e9d5-4d1a-9436-aca6aa1e10b0/sm/ep8557.jpg","duration":86,"publication_date":"2014-01-17T15:43:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-tower-falling","changefreq":"weekly","video":[{"title":"2014:E4 - Game Night - Tower Falling","description":"Caleb and Jack bring you Game Night \"Tower Falling,\" in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-tower-falling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23f2bc20-f431-4e48-ab85-5d98519f968b/sm/ep8555.jpg","duration":87,"publication_date":"2014-01-16T20:42:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-23","changefreq":"weekly","video":[{"title":"2014:E3 - Volume 174","description":"Jack and Geoff bring you this week's Fails of the Weak in Halo 4!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f828fa32-ebd0-45b7-b4bf-bb74794ee79f/sm/ep8554.jpg","duration":188,"publication_date":"2014-01-16T20:39:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-22","changefreq":"weekly","video":[{"title":"2014:E3 - Episode 46: Gavin vs. Ray","description":"It's Ray's turn to challenge Gavin for the beloved belt in this week's VS. What game will he choose","player_loc":"https://roosterteeth.com/embed/vs-2014-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9be5bd56-00c4-42d5-ab81-96c23f2bcfac/sm/ep8553.jpg","duration":881,"publication_date":"2014-01-16T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-14","changefreq":"weekly","video":[{"title":"2014:E3 - Avatar Paintball","description":"Michael plays and rages over Avatar Paintball.","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddf79eeb-1908-4392-8401-ab1c2a461ec0/sm/ep8552.jpg","duration":405,"publication_date":"2014-01-16T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-130","changefreq":"weekly","video":[{"title":"2014:E8 - Serious Sam 3: BFE","description":"Geoff, Gavin, Ray, and Michael play Serious Sam 3: BFE in this week's Let's Play Wednesday.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6ab4251-2f2a-4d81-99c2-8a9d4d5e6e9b/sm/ep8550.jpg","duration":2836,"publication_date":"2014-01-16T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-18","changefreq":"weekly","video":[{"title":"2014:E2 - Achievement HUNT #12","description":"This week's Achievement HUNT, brings you Ray vs. Ryan","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02a38ba7-04b1-4225-a3ee-e7a0755a2904/sm/ep8549.jpg","duration":218,"publication_date":"2014-01-15T20:55:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-25","changefreq":"weekly","video":[{"title":"2014:E3 - Things to do(n't) in GTA V - Blender XX","description":"The AH gents and lads show you what not to do in GTA V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4166e98-2b2f-46d9-b89d-e746138b95cd/sm/ep8547.jpg","duration":905,"publication_date":"2014-01-15T16:23:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-12","changefreq":"weekly","video":[{"title":"2014:E2 - Trials Files #90","description":"Jack and an intoxicated Gavin take on this week's edition of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfd853cf-d77f-42f3-9975-37429eb919cd/sm/ep8545.jpg","duration":116,"publication_date":"2014-01-14T21:35:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-19","changefreq":"weekly","video":[{"title":"2014:E2 - Find a Collectible - GO! #12","description":"In the 12th episode of GO!, without using the Xbox One, the guys have to find and collect a collectible that goes towards an achievement.","player_loc":"https://roosterteeth.com/embed/go-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8034b574-efed-4235-996c-4bcfea8efe4d/sm/ep8544.jpg","duration":415,"publication_date":"2014-01-14T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-19","changefreq":"weekly","video":[{"title":"2014:E2 - Variety Pack #2","description":"Jack and Ray bring you the second Five Facts Variety Pack and cover Deus Ex: Human Revolution, Portal 2, Red Dead Redemption, Batman Arkham Asylum, and Brtal Legend.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c26bffd-7b36-4572-9d26-7340efbc3f6c/sm/ep8543.jpg","duration":217,"publication_date":"2014-01-14T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-116","changefreq":"weekly","video":[{"title":"2014:E6 - GTA V - Rockstar Verified Part 1","description":"Join Geoff, Gavin, Michael, Ray, Ryan, and Jack as they bring you the first part to Let's Play GTA V - Rockstar Verified.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7b10ad8-b004-498f-a5f4-3c2f86729a46/sm/ep8541.jpg","duration":2259,"publication_date":"2014-01-13T19:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-19","changefreq":"weekly","video":[{"title":"2014:E2 - Week #196","description":"Jack, Ray, and Gavin bring you this week's news. \r\nVideo of the Week: Achievement Hunter Presents: Achievement City Tour 2014 - http://bit.ly/1dk5FZ8","player_loc":"https://roosterteeth.com/embed/ahwu-2014-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c95480e-0d59-432d-9806-75bf39a8260e/sm/ep8540.jpg","duration":302,"publication_date":"2014-01-13T18:54:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-34","changefreq":"weekly","video":[{"title":"2013:E34 - Recap for the Week of December 30th, 2013","description":"Ray, Michael, and the best of the worst for the week of December 30th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0901ffb6-5d4c-459c-ba22-c94192912874/sm/ep8536.jpg","duration":120,"publication_date":"2014-01-10T18:17:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-107","changefreq":"weekly","video":[{"title":"2014:E5 - Minecraft - Episode 85 - Geoff's House Part 3","description":"Geoff, Ryan, Michael, Ray, Gavin and Jack are back with the third installment of Let's Play Minecraft - Geoff's House. Watch Part 1: http://bit.ly/1dkEJKc\nWatch Part 2: http://bit.ly/1iYbAa0","player_loc":"https://roosterteeth.com/embed/lets-play-2014-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ca14382-95cb-4b30-acab-0ca2af9fb195/sm/ep8534.jpg","duration":2675,"publication_date":"2014-01-10T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-18","changefreq":"weekly","video":[{"title":"2014:E2 - Volume 173","description":"Gavin and Jack bring you this week's Fails of the Weak in Halo 4!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89483d31-9a44-4f5e-bb07-519f8bf88139/sm/ep8533.jpg","duration":174,"publication_date":"2014-01-10T15:18:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-tremors","changefreq":"weekly","video":[{"title":"2014:E3 - Game Night - Tremors","description":"Caleb and Ray bring you Game Night \"Tremors,\" as Gavin pitches in additional commentary.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-tremors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b76d9c99-43fc-4408-9f65-793c0f4a7157/sm/ep8532.jpg","duration":99,"publication_date":"2014-01-10T15:17:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-11","changefreq":"weekly","video":[{"title":"2014:E2 - Abduction Action! +","description":"Michael plays Abduction Action! + in this week's Rage Quit!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/437f8057-7aa5-4683-ae6a-4310f618ac9b/sm/ep8531.jpg","duration":374,"publication_date":"2014-01-09T21:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-16","changefreq":"weekly","video":[{"title":"2014:E2 - Episode 45: Gavin vs. Geoff","description":"Geoff gets creative in this week's episode of VS, enjoy!","player_loc":"https://roosterteeth.com/embed/vs-2014-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35d7d10c-215d-4e0f-a0cf-f82743819450/sm/ep8530.jpg","duration":479,"publication_date":"2014-01-09T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2014-12","changefreq":"weekly","video":[{"title":"2014:E1 - Achievement HUNT #11","description":"This week's Achievement HUNT, brings you Jack vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2014-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23660bc9-f1be-44f9-b6da-6ffc364ad1e2/sm/ep8529.jpg","duration":309,"publication_date":"2014-01-08T21:38:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-achievement-city-tour-2014","changefreq":"weekly","video":[{"title":"2014:E2345 - Achievement Hunter Presents: Achievement City Tour 2014 ","description":"Geoff and Gavin give you a tour through Achievement City, enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-achievement-city-tour-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99ad85be-233d-4c37-94dd-3996b08f204a/sm/ep8528.jpg","duration":559,"publication_date":"2014-01-08T21:29:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-18","changefreq":"weekly","video":[{"title":"2014:E2 - GTA V - Rabbit Jump","description":"The AH crew is back and this time they bike around in Things to do in GTA V - Rabbit Jump.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd64a0cd-667e-4e3d-8c94-79542e970af7/sm/ep8527.jpg","duration":1197,"publication_date":"2014-01-08T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-96","changefreq":"weekly","video":[{"title":"2014:E4 - Angry Birds Star Wars Part 2","description":"Join Geoff, Ryan, Michael, and Ray and watch the second installment of Let's Play - Angry Birds Star Wars. Watch Part 1: http://bit.ly/IVZY8u","player_loc":"https://roosterteeth.com/embed/lets-play-2014-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6092794a-61d2-4571-a724-e9ed5d8e4883/sm/ep8525.jpg","duration":2290,"publication_date":"2014-01-08T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-93","changefreq":"weekly","video":[{"title":"2014:E3 - Let's Build in Minecraft - CTTX","description":"Geoff and Gavin create the beloved Capture the Tower X in Minecraft. Watch Let's Play - CTTX: http://bit.ly/19bR16H","player_loc":"https://roosterteeth.com/embed/lets-play-2014-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18dbdf4c-6500-4ab5-b688-90c1df32d372/sm/ep8524.jpg","duration":1140,"publication_date":"2014-01-07T20:21:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2014-14","changefreq":"weekly","video":[{"title":"2014:E1 - Batman: Arkham Asylum","description":"Jack and Geoff go over five facts on Batman: Arkham Asylum.","player_loc":"https://roosterteeth.com/embed/five-facts-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbcbf64c-0939-48b3-8c43-b20ccddc8bf4/sm/ep8523.jpg","duration":265,"publication_date":"2014-01-07T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-2014-14","changefreq":"weekly","video":[{"title":"2014:E1 - Non-standard Controller - GO! #11","description":"In this week's GO!, with a recommendation from Geoff to use Xbox One, the guys fight to be the first person to get an achievement in a game without using a standard controller.","player_loc":"https://roosterteeth.com/embed/go-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d95a5bf8-3416-4aa9-8756-05b974802bb0/sm/ep8522.jpg","duration":731,"publication_date":"2014-01-07T18:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2014-7","changefreq":"weekly","video":[{"title":"2014:E1 - Trials Files #89","description":"Geoff and Jack are back with Trials Files #89, where they go over the \"K.O.N.G.\" map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82b12fd0-19b7-4166-a2cd-fda695686c25/sm/ep8521.jpg","duration":73,"publication_date":"2014-01-07T17:05:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2014-15","changefreq":"weekly","video":[{"title":"2014:E1 - Week #195","description":"The year is new and the team from AHWU is fresh. Watch and enjoy this episode with a special appearance by the Lads Action News Team! Don't forget to grab the brand new LANT shirt from the store!\r\nCommunity Video: Things to Do in... Grand Theft Auto V - Titan Delivery! - http://bit.ly/1cNCIA9\r\nVideo of the Week: Things to do in GTA V - Bad Santas - http://bit.ly/1koqtUH","player_loc":"https://roosterteeth.com/embed/ahwu-2014-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6849bbe1-d08d-4f82-ad1b-fffe1ab01a3f/sm/ep8520.jpg","duration":644,"publication_date":"2014-01-06T22:29:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2014-7","changefreq":"weekly","video":[{"title":"2014:E1 - Top 10 Easter Eggs of 2013","description":"Ray and Geoff show you their picks for the ten best Xbox 360 Easter Eggs of 2013","player_loc":"https://roosterteeth.com/embed/easter-eggs-2014-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb044e29-8e54-454c-b83d-df4390e74330/sm/ep8519.jpg","duration":414,"publication_date":"2014-01-06T20:57:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-82","changefreq":"weekly","video":[{"title":"2014:E2 - GTA V - King Geoff","description":"The AH lads and gents try to recreate the beloved \"King Geoff\" game from Let's Play in Minecraft, but this time in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/lets-play-2014-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/155b263d-6495-41ff-8b55-455fee9b9c37/sm/ep8518.jpg","duration":4112,"publication_date":"2014-01-06T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-33","changefreq":"weekly","video":[{"title":"2013:E33 - Top 10 Fails for 2013","description":"Geoff and Jack bring you the top ten fails of 2013, enjoy!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c561fe2-4403-497b-902b-ecd55c023cc1/sm/ep8515.jpg","duration":318,"publication_date":"2014-01-03T21:02:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2014-77","changefreq":"weekly","video":[{"title":"2014:E1 - Minecraft - Episode 84 - Capture the Tower X","description":"The AH gents and lads are back with a revamped version of the beloved episode of Capture the Tower!","player_loc":"https://roosterteeth.com/embed/lets-play-2014-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c33558a3-655c-4813-8f40-594d604ed369/sm/ep8512.jpg","duration":2795,"publication_date":"2014-01-03T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-dodgeball-classic","changefreq":"weekly","video":[{"title":"2014:E2 - Game Night - Dodgeball Classic","description":"Geoff and Caleb go over Dodgeball Classic in Halo 4 and talk about everyone's favorite topic: pooping.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-dodgeball-classic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78ede0f5-61bd-4b6b-89ba-da7beb18c4c4/sm/ep8511.jpg","duration":93,"publication_date":"2014-01-03T18:35:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2014-14","changefreq":"weekly","video":[{"title":"2014:E1 - Volume 172","description":"Jack and Geoff celebrate Jack's birthday by making fun of gamertags and gamers in this week's Fails of the Weak.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2014-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3161a57-137c-42ff-9060-7d3df3bc0533/sm/ep8510.jpg","duration":190,"publication_date":"2014-01-03T18:30:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-marvel-avengers-skin-pack","changefreq":"weekly","video":[{"title":"2014:E1 - Minecraft - Marvel Avengers Skin Pack","description":"Ray and Geoff show you all the downloadable skins in the \"Marvel Avengers Skin Pack\" for Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-marvel-avengers-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12f7a332-a0b3-4707-8bef-75e26267e0d0/sm/ep8509.jpg","duration":156,"publication_date":"2014-01-03T18:04:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2014-13","changefreq":"weekly","video":[{"title":"2014:E1 - Episode 44: Gavin vs. Jack","description":"The first VS of the year brings you Gavin vs. Jack!","player_loc":"https://roosterteeth.com/embed/vs-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89af6372-5a5d-4043-89b1-6a0b5ae19d84/sm/ep8507.jpg","duration":771,"publication_date":"2014-01-02T20:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2014-8","changefreq":"weekly","video":[{"title":"2014:E1 - Noyd","description":"Michael is back playing Noyd in the first Rage Quit of 2014!","player_loc":"https://roosterteeth.com/embed/rage-quit-2014-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91841453-d432-431b-871b-8ba425fb9dcc/sm/ep8506.jpg","duration":208,"publication_date":"2014-01-02T17:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2014-13","changefreq":"weekly","video":[{"title":"2014:E1 - GTA V - Bad Santas","description":"The AH crew is back with some holiday cheer in GTA V!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2014-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc5efb04-15c9-4e26-82c7-72654c43de6d/sm/ep8505.jpg","duration":1154,"publication_date":"2014-01-01T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-11","changefreq":"weekly","video":[{"title":"2013:E52 - Call of Duty","description":"Ray and Geoff talk all things Call of Duty in this week's episode of Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67f039b9-640e-4945-a0ee-1f8ef3afac53/sm/ep8504.jpg","duration":224,"publication_date":"2013-12-31T23:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-2","changefreq":"weekly","video":[{"title":"2013:E10 - Achievement HUNT #10 ","description":"This week's Achievement HUNT, brings you Michael vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8fc5394-473e-431c-a89d-b3f9185fb59b/sm/ep8503.jpg","duration":360,"publication_date":"2013-12-31T20:59:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-january-2014","changefreq":"weekly","video":[{"title":"2013:E209 - Coming Soon - January 2014","description":"Kdin is back with a ton of new games and other information for the month of January. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-january-2014","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3663cad3-1444-4ef0-8548-d027e9e214e5/sm/ep8501.jpg","duration":238,"publication_date":"2013-12-31T19:07:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-spartan-assault-foot-soldier-and-silvertip","changefreq":"weekly","video":[{"title":"2013:E2343 - Halo: Spartan Assault - Foot Soldier & Silvertip","description":"Ray shows you how to get the \"Foot Solider\" & \"Silvertip\" achievements in Halo: Spartan Assault for the Xbox One","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-spartan-assault-foot-soldier-and-silvertip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2e0807c-2c1c-43eb-958c-8aef90cf457f/sm/ep8500.jpg","duration":157,"publication_date":"2013-12-31T18:35:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-11","changefreq":"weekly","video":[{"title":"2013:E52 - Trials Files #88","description":"Check out the last Trials Files of 2013!","player_loc":"https://roosterteeth.com/embed/trials-files-2011-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9be97fc5-d3da-4c51-9234-2c3dc4a4ded7/sm/ep8499.jpg","duration":140,"publication_date":"2013-12-31T18:35:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-45","changefreq":"weekly","video":[{"title":"2013:E215 - Call of Duty: Ghosts: Extinction Part 2","description":"Start the year off right with the second installment of Let's Play Call of Duty: Ghosts -Extinction!\n\nWatch Part 1: http://bit.ly/1l4Fo4d","player_loc":"https://roosterteeth.com/embed/lets-play-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfb774be-ed7c-4b37-bf18-ad7cf5129b43/sm/ep8498.jpg","duration":2305,"publication_date":"2013-12-31T17:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-42","changefreq":"weekly","video":[{"title":"2013:E214 - Dead Space 3 (With Jack & Joel)","description":"End the year with Jack and Joel and watch the last Let's Play of 2013!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e550f747-d390-4ee5-8728-78d9d1867858/sm/ep8497.jpg","duration":1779,"publication_date":"2013-12-31T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-spartan-assault-3-achievements","changefreq":"weekly","video":[{"title":"2013:E2342 - Halo: Spartan Assault - 3 Achievements","description":"Ray shows you how to get the \"Nowhere to Hide\", \"Never Knew What Hit Them\", and \"Brute Force\" achievements in Halo: Spartan Assault for the Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-spartan-assault-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f36eeab3-5cbf-4f5e-b797-2db39b056fe7/sm/ep8495.jpg","duration":232,"publication_date":"2013-12-31T15:22:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-10","changefreq":"weekly","video":[{"title":"2013:E10 - Three Points - GO! #10","description":"In this week's GO!, Gavin, Ryan, Michael, Ray, and Jack fight to be the first person to score three points.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8796b1ac-7c83-4eae-a0a6-3d10f197e8c5/sm/ep8494.jpg","duration":216,"publication_date":"2013-12-31T15:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-38","changefreq":"weekly","video":[{"title":"2013:E213 - GTA V - Free Play - The Dump Jump","description":"Free play time again! AH terrorizes the town and then tries to pull of \"The Dump Jump\". Which if it isn't in the urban dictionary, really should be.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d620d841-8396-4636-b5c6-705affee58ca/sm/ep8493.jpg","duration":3929,"publication_date":"2013-12-30T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-9","changefreq":"weekly","video":[{"title":"2013:E50 - Week #194","description":"Geoff and Jack bring you the final AHWU of 2013!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b3ab85a-04d9-44d1-9747-37845a47b5f6/sm/ep8492.jpg","duration":248,"publication_date":"2013-12-30T20:48:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-35","changefreq":"weekly","video":[{"title":"2013:E212 - Minecraft - Episode 83 - Geoff's House Part 2","description":"The lads and gents continue their construction of the single most important structure ever built.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77a692ca-d23c-41a0-a314-81d7df1cdfb7/sm/ep8488.jpg","duration":2735,"publication_date":"2013-12-27T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-9","changefreq":"weekly","video":[{"title":"2013:E52 - Volume 171","description":"Geoff and Jack survived Christmas, and are back at making fun of the misfortune of others.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e5db268-e4bf-483e-a629-6732ba880d86/sm/ep8487.jpg","duration":181,"publication_date":"2013-12-27T15:56:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-drag-race","changefreq":"weekly","video":[{"title":"2013:E208 - Game Night - Drag Race","description":"Caleb and Geoff tear up the Halo 4 streets in this week's Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-drag-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56f855ea-4918-4bf5-9209-401724a1570f/sm/ep8486.jpg","duration":70,"publication_date":"2013-12-27T15:54:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-8","changefreq":"weekly","video":[{"title":"2013:E43 - Episode 43: Gavin vs. Ryan","description":"Gavin takes on the Mad King!","player_loc":"https://roosterteeth.com/embed/vs-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5d2c35c-a5b4-412d-9416-7cea75b25530/sm/ep8485.jpg","duration":384,"publication_date":"2013-12-26T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-9","changefreq":"weekly","video":[{"title":"2013:E52 - Uncraft Me 2","description":"Michael takes a stab at Uncraft Me 2 in this week's Rage Quit.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d923248f-5955-49a3-aeed-51f8c366ccb3/sm/ep8484.jpg","duration":443,"publication_date":"2013-12-26T17:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-9","changefreq":"weekly","video":[{"title":"2013:E189 - GTAV - Stop that Train!","description":"Merry Christmas you filthy animals. Here's a video to warm your stockings.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe93b67f-0be9-4e53-987d-d2d04e120426/sm/ep8483.jpg","duration":739,"publication_date":"2013-12-26T02:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-h-u-n-t-9-jack-vs-geoff","changefreq":"weekly","video":[{"title":"2013:E9 - HUNT #9 - Jack vs. Geoff","description":"In this week's episode of HUNT, Jack faces off against the single greatest gamer to ever pick up a controller. I wouldn't want to be him.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-h-u-n-t-9-jack-vs-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08ea4961-6ed6-4e52-a297-8dc0ce313079/sm/2013912-1449181126954-hunt9.jpg","duration":261,"publication_date":"2013-12-25T23:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-27","changefreq":"weekly","video":[{"title":"2013:E211 - Cloudberry Kingdom Part 4","description":"The idiots are back for another round of Cloudbery Kingdom. Without their fearless leader, what hope do they have","player_loc":"https://roosterteeth.com/embed/lets-play-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bd1498c-95d8-4473-b737-f9f26d63e3de/sm/ep8481.jpg","duration":1797,"publication_date":"2013-12-24T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-6","changefreq":"weekly","video":[{"title":"2013:E51 - Trials Files #87","description":"Merry Christmas Trials fans!","player_loc":"https://roosterteeth.com/embed/trials-files-2011-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9dad4c1a-9bb1-4c99-a8c6-d953be602062/sm/ep8480.jpg","duration":160,"publication_date":"2013-12-24T19:19:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-5","changefreq":"weekly","video":[{"title":"2013:E51 - Left 4 Dead","description":"Jack and Geoff talk all things Left 4 Dead in this week's episode of Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4395171b-4f46-46ae-9a1a-32fcd370da4e/sm/ep8479.jpg","duration":194,"publication_date":"2013-12-24T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-9","changefreq":"weekly","video":[{"title":"2013:E9 - Fiiiiiiish - GO! #9","description":"In this week's Go! there is only one goal: Fiiiiiiiish!","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd2bf5e5-ae80-49dc-abec-0f1c7a700732/sm/ep8478.jpg","duration":229,"publication_date":"2013-12-24T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-22","changefreq":"weekly","video":[{"title":"2013:E210 - GTA V - Splat X","description":"AH does their first ever 8-way Let's Play for Splat X!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d771016d-33e6-4b72-8877-7926ee8b5590/sm/ep8477.jpg","duration":2312,"publication_date":"2013-12-23T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-4","changefreq":"weekly","video":[{"title":"2013:E49 - Week #193","description":"It's time for the Pre-Christmas AHWU! Put on your hats!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/428656a0-49c7-4749-ad58-7d752b175051/sm/ep8475.jpg","duration":226,"publication_date":"2013-12-23T16:12:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-5","changefreq":"weekly","video":[{"title":"2013:E32 - Recap for the Week of December 9th, 2013 ","description":"Ray, Michael and your pre-holiday dose of horrible.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df9a51b-c7f4-43c2-b87e-61e0f26a969d/sm/ep8471.jpg","duration":148,"publication_date":"2013-12-20T20:38:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-16","changefreq":"weekly","video":[{"title":"2013:E209 - Minecraft - Episode 82 - Skyrim Mashup Edition","description":"AH dives into the world of the Dragonborn and explores the Skyrim Mashup in this week's Let's Play Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bf0d955-8562-43ed-8780-415798e00f9c/sm/ep8470.jpg","duration":3271,"publication_date":"2013-12-20T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-4","changefreq":"weekly","video":[{"title":"2013:E51 - Volume 170","description":"Happy Friday! Here, have an episode of Fails of the Weak on us. You earned it!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59f9095b-7d06-43c1-ad45-84cd2d2e69bb/sm/ep8469.jpg","duration":200,"publication_date":"2013-12-20T17:28:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-roulette","changefreq":"weekly","video":[{"title":"2013:E207 - Game Night - Roulette","description":"Geoff and Caleb gamble in \"Roulette\" in this week's Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-roulette","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d77f96cf-f26a-4bab-b9e9-2f172957f2dd/sm/ep8467.jpg","duration":70,"publication_date":"2013-12-20T15:05:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-3","changefreq":"weekly","video":[{"title":"2013:E42 - Episode 42: Michael vs. Gavin","description":"Michael and Gavin shoot to kill in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a029e288-e1c9-4aad-b83c-72519933c6db/sm/ep8466.jpg","duration":612,"publication_date":"2013-12-19T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-2","changefreq":"weekly","video":[{"title":"2013:E51 - Freestyle Football Trials","description":"This week on Rage Quit, Michael practices the fundamentals of Footy in the Xbox Live Indie Game, Freestyle Football Trials. These athletes are out of this world.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85132c7d-b842-4b82-958c-da9cc01ebab2/sm/ep8465.jpg","duration":249,"publication_date":"2013-12-19T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013","changefreq":"weekly","video":[{"title":"2013:E8 - Achievement HUNT #8","description":"Jack and Ray go head to head in today's episode of HUNT!","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c18d7baa-b44f-4e87-9678-a5e37bc27edb/sm/ep8464.jpg","duration":374,"publication_date":"2013-12-18T19:29:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-5","changefreq":"weekly","video":[{"title":"2013:E188 - GTAV - Blender X","description":"Geoff, Michael, Gavin and Ray show off the natural enemy of the helicopter...the windmill farm!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b46606e3-6b7a-4f0f-acc3-73f20f695854/sm/ep8462.jpg","duration":888,"publication_date":"2013-12-18T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-9","changefreq":"weekly","video":[{"title":"2013:E208 - STARWHAL: Just the Tip","description":"Watch as Geoff, Michael, Ray, and Ryan bounce off the NARWHAL in in this week's Wednesday Let's Play!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6459529e-a9e6-4111-a4b9-ad5a12bad17a/sm/ep8461.jpg","duration":1761,"publication_date":"2013-12-18T16:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-3","changefreq":"weekly","video":[{"title":"2013:E50 - Resident Evil 2","description":"Michael and Ray take a look at Five Facts about Resident Evil 2!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/343ee1b8-4aac-4d40-bf19-e2a4a2049bd1/sm/ep8460.jpg","duration":309,"publication_date":"2013-12-17T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-4","changefreq":"weekly","video":[{"title":"2013:E50 - Trials Files #86","description":"Jack and Geoff embrace the holiday spirit in today's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6eabfa0-5648-4b81-9beb-53fa7bdfa830/sm/ep8459.jpg","duration":119,"publication_date":"2013-12-17T20:29:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-8","changefreq":"weekly","video":[{"title":"2013:E8 - Kill A Cop - GO! #8","description":"In this week's episode of Go!, the guys reenact an NWA song.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75c4e3f0-6b84-4806-9bca-fbdc4554200b/sm/ep8458.jpg","duration":173,"publication_date":"2013-12-17T15:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-2","changefreq":"weekly","video":[{"title":"2013:E48 - Week #192","description":"The boys are all here to show some love during AHWU. Don't forget to grab a Achievement Hunter Holiday print at http://store.roosterteeth.com/products/achievement-hunter-2013-limited-edition-holiday-print-14-x-11","player_loc":"https://roosterteeth.com/embed/ahwu-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6cecc54-dec7-47a3-b586-49d66dba66cc/sm/ep8456.jpg","duration":314,"publication_date":"2013-12-16T19:11:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-6","changefreq":"weekly","video":[{"title":"2013:E207 - GTA V: Train Hopping","description":"Because buying a ticket is for losers.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73ae1c74-54e6-492c-b63e-00add434bf8a/sm/ep8455.jpg","duration":3334,"publication_date":"2013-12-16T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-2","changefreq":"weekly","video":[{"title":"2013:E206 - Minecraft - Episode 81 - Geoff's House Part 1","description":"The AH crew get together and build Geoff's House in this week's Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ed00b63-4212-447e-830a-c35e226e3df8/sm/ep8451.jpg","duration":2158,"publication_date":"2013-12-13T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-2","changefreq":"weekly","video":[{"title":"2013:E31 - Recap for the Week of December 2, 2013 ","description":"Ray, Michael, and the best of the worst for the week of December 2nd!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43ad217b-3b84-4bbe-bb05-911664f88b58/sm/ep8450.jpg","duration":170,"publication_date":"2013-12-13T17:12:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013","changefreq":"weekly","video":[{"title":"2013:E50 - Volume 169","description":"It's Geoff! It's Ray! It's people being shitty at Halo!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edfcddcf-170f-4af1-a726-ef0191598d83/sm/ep8448.jpg","duration":182,"publication_date":"2013-12-13T16:32:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-plinko-extreme","changefreq":"weekly","video":[{"title":"2013:E206 - Game Night - Plinko Extreme","description":"Geoff and Caleb go over \"Plinko Extreme\" in this week's Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-plinko-extreme","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/758414b2-50ae-49ba-8849-0faee842e0ac/sm/ep8446.jpg","duration":74,"publication_date":"2013-12-13T15:59:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-29","changefreq":"weekly","video":[{"title":"2013:E67 - RYSE: Son of Rome - Lady Of The Lake Easter Egg","description":"Ray and Geoff show you how to find the \"Lady Of The Lake\" Easter Egg in RYSE: Son of Rome for the Xbox One","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3928398f-f536-4b81-8715-e23a6e352916/sm/ep8443.jpg","duration":67,"publication_date":"2013-12-12T18:00:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-43","changefreq":"weekly","video":[{"title":"2013:E41 - Episode 41: Geoff vs. Michael","description":"In this week's VS, it is Geoff vs. Michael. Michael chooses to play (enter \"mysterious\" game name) with the Kinect in Xbox One ...will this help his chances of winning Watch to find out! Click here for an extended free trial of Hulu Plus: http://bit.ly/1h4lHXl","player_loc":"https://roosterteeth.com/embed/vs-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07044ba0-d4a4-4eb6-9481-b79e5404bc61/sm/ep8442.jpg","duration":1126,"publication_date":"2013-12-12T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-51","changefreq":"weekly","video":[{"title":"2013:E50 - Iron Axe","description":"This week on Rage Quit, Michael tests his might and mettle in the side scrolling dungeon adventure, Iron Axe, for the Xbox Live Indie Arcade. Beware of falling boulders.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6be236e5-6900-42a9-95f2-fab0a73b0b97/sm/ep8441.jpg","duration":232,"publication_date":"2013-12-12T15:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-210","changefreq":"weekly","video":[{"title":"2013:E205 - Peggle 2 Part 1","description":"Watch as Geoff, Gavin, Michael, and Ray enjoy playing Peggle 2 in this week's Wednesday Let's Play!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-210","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a7bcfa0-bdee-43f4-8f65-f03cf95fd826/sm/ep8440.jpg","duration":1859,"publication_date":"2013-12-11T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-22","changefreq":"weekly","video":[{"title":"2013:E53 - Peggle 2","description":"Geoff and Gavin cover Peggle 2 for This is...","player_loc":"https://roosterteeth.com/embed/this-is-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14361d41-40b1-4367-9b35-603dcfaabbb6/sm/ep8439.jpg","duration":393,"publication_date":"2013-12-11T19:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-9","changefreq":"weekly","video":[{"title":"2013:E7 - Achievement HUNT #7","description":"This week's Achievement HUNT, brings you Michael vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38ab4dfe-f8fb-4505-8e39-9b28d282724f/sm/ep8438.jpg","duration":338,"publication_date":"2013-12-11T18:27:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-28","changefreq":"weekly","video":[{"title":"2013:E66 - RYSE: Son of Rome: Ghost Legion Easter Egg","description":"Ray and Geoff show you how to find the \"Ghost Legion\" Easter Egg in RYSE: Son of Rome for the Xbox One.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d43e12d9-2341-49a3-a62e-a54849492b3d/sm/ep8436.jpg","duration":102,"publication_date":"2013-12-11T16:46:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-44","changefreq":"weekly","video":[{"title":"2013:E44 - VS - Assassin's Creed 4","description":"Gavin and Jack get their sneak on in this week's Behind the Scenes of VS Episode 38.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b237172-9105-44f3-85ac-cdd1ffc15b19/sm/ep8435.jpg","duration":232,"publication_date":"2013-12-11T16:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-48","changefreq":"weekly","video":[{"title":"2013:E187 - GTAV - Race To The Top","description":"Geoff, Michael, Gavin and Ray race to the mountain's peak in GTAV. Who will be crowned king of the in-game hill","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9623884-b122-4316-be26-d7ea8ee931ad/sm/ep8434.jpg","duration":288,"publication_date":"2013-12-11T15:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-48","changefreq":"weekly","video":[{"title":"2013:E49 - Trials Files #85","description":"Geoff and Gavin are back with Trials Files #85, where they go over the \"Who you gonna call\" map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ce2d3f0-edc8-45e7-8db0-4b3612072e23/sm/ep8433.jpg","duration":89,"publication_date":"2013-12-10T19:11:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-46","changefreq":"weekly","video":[{"title":"2013:E49 - Viva Pinata","description":"Geoff and Gavin go over five facts in Viva Pinata!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35616b1c-d216-4a35-b8b2-d7cc97b45cb7/sm/ep8432.jpg","duration":256,"publication_date":"2013-12-10T18:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-202","changefreq":"weekly","video":[{"title":"2013:E204 - Let's Build in Minecraft - Cloud Down Part 2","description":"Geoff, Gavin, and Ryan are back with the second part of Let's Build in Minecraft - Cloud Down.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-202","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55bfd970-35eb-45db-b72c-eef02e05119a/sm/ep8431.jpg","duration":1573,"publication_date":"2013-12-10T18:55:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-7","changefreq":"weekly","video":[{"title":"2013:E7 - 250,000 points - GO! #7","description":"In this week's GO!, Gavin, Ryan, Michael, and Jack fight to be the first person to score 250,000 points.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2312bd29-e8a7-42c0-b294-8c939fd7b0f4/sm/ep8430.jpg","duration":420,"publication_date":"2013-12-10T14:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-45","changefreq":"weekly","video":[{"title":"2013:E47 - Week #191","description":"Jack is gone, leaving Geoff all alone. You know what that means That's right! The Team Lads Action News Team is back with this week's low down. \r\n\r\nAH Video of the Week - http://bit.ly/18oFvSB\r\nCheck out all of this week's sales - http://bit.ly/1iQe9f2\r\nAH Community Videos: http://bit.ly/1i2o3XX","player_loc":"https://roosterteeth.com/embed/ahwu-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/834d4802-8082-4491-b932-775afe32f6a1/sm/ep8429.jpg","duration":369,"publication_date":"2013-12-09T20:26:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-199","changefreq":"weekly","video":[{"title":"2013:E203 - GTA V: Titan Fall","description":"Gavin, Ray, Ryan, Michael, and Jack are back with Let's Play in GTA V: Titan Fall.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-199","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f6244a3-7075-4804-a53e-955ac60d9f0d/sm/ep8428.jpg","duration":2329,"publication_date":"2013-12-09T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-194","changefreq":"weekly","video":[{"title":"2013:E202 - Minecraft - Episode 80 - Fishing Rodeo & Jamboree II","description":"The AH crew is back with the second annual Fish Rodeo and Jamboree!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-194","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b313214-0ed4-4d81-89e1-73a4f67e15a3/sm/ep8422.jpg","duration":2059,"publication_date":"2013-12-06T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-20","changefreq":"weekly","video":[{"title":"2013:E52 - World of Tanks","description":"Ryan and Gus cover World of Tanks for This is...\nPlay now!","player_loc":"https://roosterteeth.com/embed/this-is-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8eee4246-cc1d-4d3e-a35b-4b605eaa0421/sm/ep8424.jpg","duration":330,"publication_date":"2013-12-06T18:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-28","changefreq":"weekly","video":[{"title":"2013:E30 - Recap for the Week of November 25th, 2013 ","description":"Ray, Gavin, and the best of the worst for the week of November 25th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48ed65b8-0c8a-4fa4-b7f8-1e1e940295b3/sm/ep8423.jpg","duration":167,"publication_date":"2013-12-06T18:00:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-turkey-bowl","changefreq":"weekly","video":[{"title":"2013:E205 - Game Night - Turkey Bowl","description":"Geoff and Caleb discuss Thanksgiving food, Halo 4, and Alabama.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-turkey-bowl","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac961fff-4bbc-44a2-9c63-4f623f17871c/sm/ep8421.jpg","duration":79,"publication_date":"2013-12-06T17:25:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-46","changefreq":"weekly","video":[{"title":"2013:E49 - Volume 168","description":"Jack and Geoff continue their exploration of the lighter side of Halo 4 in this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c20c7a4-b8ae-48f2-ab68-5fc54c30e804/sm/ep8420.jpg","duration":215,"publication_date":"2013-12-06T16:54:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-40","changefreq":"weekly","video":[{"title":"2013:E43 - VS - Mile High Club in Call of Duty","description":"The lads and gents experience some emotional and physical turbulence in this Behind the Scenes of VS.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb111e83-fe6b-4baa-b7b5-4adfae88b796/sm/ep8419.jpg","duration":239,"publication_date":"2013-12-06T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-188","changefreq":"weekly","video":[{"title":"2013:E201 - 3D Ultra MiniGolf Adventures Episode 5","description":"This week's Let's Play brings you the fifth installment of Ultra MiniGolf Adventures. THe AH crew are back on the greens attempting to play more aces.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-188","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d5d60b-23fc-45ee-bd2e-8931a6e56f89/sm/ep8418.jpg","duration":3290,"publication_date":"2013-12-05T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-45","changefreq":"weekly","video":[{"title":"2013:E49 - Farm Fury!","description":"This week, Michael deals with farming and mice in this week's Rage Quit - Farm Fury!","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5330074d-ad49-4130-aceb-6857f6dcad6a/sm/ep8417.jpg","duration":276,"publication_date":"2013-12-05T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-186","changefreq":"weekly","video":[{"title":"2013:E200 - Dead Rising 3 (With Joel & Adam)","description":"Adam (Ellis) and Joel (Not Ellis) keep the dead from rising by beating them with a cone. Later, they would also play Dead Rising 3. Since Adam was unable to acquire a second xbox one, they would be forced to yell at each other while they attempting to play the game with one controller. See who comes out victorious in this epic battle for humanity, and a controller.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-186","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6afd73ba-b857-43a6-b741-9fc40aa11cea/sm/ep8416.jpg","duration":1778,"publication_date":"2013-12-05T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-36","changefreq":"weekly","video":[{"title":"2013:E40 - Episode 40: Geoff vs. Ray","description":"OMG IS PEGGLE","player_loc":"https://roosterteeth.com/embed/vs-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4c75e3a-6bcf-467c-94cf-757d9bf4bd1a/sm/ep8415.jpg","duration":619,"publication_date":"2013-12-05T21:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-8","changefreq":"weekly","video":[{"title":"2013:E6 - Achievement HUNT #6","description":"This week's Achievement HUNT, brings you Geoff vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81849f67-7072-4b70-ba32-7c20b2b8a0c0/sm/ep8413.jpg","duration":354,"publication_date":"2013-12-04T21:14:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-182","changefreq":"weekly","video":[{"title":"2013:E199 - Angry Birds Star Wars Part 1","description":"Geoff, Ryan, Michael, and Gavin play Let's Play - Angry Birds Star Wars....I've got a very bad feeling about this.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-182","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daf6ff5d-9a7b-4f42-b5d5-f485902c2318/sm/ep8411.jpg","duration":2181,"publication_date":"2013-12-04T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-41","changefreq":"weekly","video":[{"title":"2013:E186 - GTA V - Mountain Olympics","description":"Do you remember \"King of the Mountain\" in Red Dead Redemption (if you haven't seen it check out here: http://bit.ly/1gEzpQi) Well, the AH crew are back with their GTA V rendition of the game, now regarded as \"Mountain Olympics.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1955ddd-1022-4041-8c44-c81f31770a18/sm/ep8410.jpg","duration":567,"publication_date":"2013-12-04T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-179","changefreq":"weekly","video":[{"title":"2013:E198 - Let's Build in Minecraft - Cloud Down Part 1","description":"This week's Let's Build in Minecraft bring you Geoff, Ryan, and Gavin building Cloud Down in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-179","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52fc3a26-45c0-42e4-aeb2-5ab65fb3c862/sm/ep8409.jpg","duration":1381,"publication_date":"2013-12-03T20:22:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-6","changefreq":"weekly","video":[{"title":"2013:E6 - Patience - GO! #6","description":"Shot when the Xbox One came out, in this week's GO! the AH crew fight to be the first person to kill a zombie in Dead Rising.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f916ea-a4ff-4937-95a7-0edc833b44f2/sm/ep8408.jpg","duration":783,"publication_date":"2013-12-03T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-40","changefreq":"weekly","video":[{"title":"2013:E48 - Variety Pack #1","description":"Jack and Gavin bring you the first Five Facts Variety Pack and cover Halo 3 ODST, Worms, Fallout: New Vegas, BioShock 2, and Dead Rising.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0329d3c-a6e6-43dd-a21e-3db89984ae36/sm/ep8407.jpg","duration":171,"publication_date":"2013-12-03T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-41","changefreq":"weekly","video":[{"title":"2013:E48 - Trials Files #84","description":"Geoff and Jack are back with Trials Files #84, where they go over the \"The Cave\" map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b6be687-d8e3-4074-8194-9b6b16fbcd6d/sm/ep8406.jpg","duration":71,"publication_date":"2013-12-03T15:42:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-175","changefreq":"weekly","video":[{"title":"2013:E197 - GTA V Coop2 Part 2: Revenge of the Rurr Jurr","description":"The AH Crew is back with a special Let's Play GTA V, where the guys need to assassinate all of the Jurors.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-175","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8f5600c-b792-49a0-80df-0df70e765bf1/sm/ep8405.jpg","duration":2268,"publication_date":"2013-12-02T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-37","changefreq":"weekly","video":[{"title":"2013:E42 - Worms Revolution Part 4","description":"Watch the behind the scenes video of Gavin, Michael, Jack, and Ryan in Let's Play - Worms Revolution Part 4","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d189db17-6c7d-4c22-9536-61ae515ca35f/sm/ep8403.jpg","duration":362,"publication_date":"2013-12-02T21:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-40","changefreq":"weekly","video":[{"title":"2013:E46 - Week #190","description":"Geoff and Jack bring you AHWU #190!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b3c4c4e-d8a1-4a2e-a327-63ee270d8e15/sm/ep8402.jpg","duration":315,"publication_date":"2013-12-02T20:46:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-december-2013","changefreq":"weekly","video":[{"title":"2013:E204 - Coming Soon - December 2013","description":"Kdin is back with a ton of new games and other information for the month of December. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-december-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/353fef91-09b2-4c0f-b35d-a28f7fc46cf0/sm/ep8401.jpg","duration":203,"publication_date":"2013-12-02T18:30:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-musical-shields","changefreq":"weekly","video":[{"title":"2013:E203 - Game Night - Musical Shields","description":"Geoff and Caleb bring you Game Night \"Musical Shields.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-musical-shields","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c12a616-fab8-47e6-90b5-2fcfce47b345/sm/ep8396.jpg","duration":88,"publication_date":"2013-11-29T15:24:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-169","changefreq":"weekly","video":[{"title":"2013:E196 - Minecraft - Episode 79 - King Michael","description":"Will Michael be a good king The lads find out in this week's Minecraft Let's Play.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd8fb022-2cba-4049-bf64-09bf677d4f52/sm/ep8395.jpg","duration":3356,"publication_date":"2013-11-29T14:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-34","changefreq":"weekly","video":[{"title":"2013:E39 - Episode 39: Gavin vs. Geoff","description":"Take a break from all that Thanksgiving eating and watch this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ed4c534-7378-4492-96a2-9fda92373846/sm/ep8394.jpg","duration":602,"publication_date":"2013-11-28T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-167","changefreq":"weekly","video":[{"title":"2013:E195 - Outlast Part 2 (with Joel and Adam)","description":"Behold, Oh thee, as Adam (Ellis) and Joel (Not Ellis) partake of much 'look right' and 'look left', until there is much weeping, and the gnashing of teeth.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87f86ea8-76e8-4335-89d8-00a7f8a4be11/sm/ep8393.jpg","duration":1849,"publication_date":"2013-11-28T14:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-165","changefreq":"weekly","video":[{"title":"2013:E194 - Loadout Part 2","description":"Join the AH crew and enjoy your Thanksgiving with the second installment of Let's Play Loadout!\nLike the game Check out how you can play it at: http://steamcommunity.com/app/208090","player_loc":"https://roosterteeth.com/embed/lets-play-2013-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56cdcfc9-bdc3-4c5a-9a4c-ff4906330c8a/sm/ep8392.jpg","duration":2859,"publication_date":"2013-11-28T14:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-39","changefreq":"weekly","video":[{"title":"2013:E48 - Hurdle Turtle 2","description":"This week on Rage Quit, Michael and Turtes leap for the finish in Hurdle Turtle 2 for the Xbox Live Indie Arcade. Watch out for the fireballs.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/732b8122-b603-42e2-9d06-3d9371b64109/sm/ep8391.jpg","duration":273,"publication_date":"2013-11-28T13:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-161","changefreq":"weekly","video":[{"title":"2013:E193 - Assassin's Creed 4 Part 2","description":"Watch the second installment of Let's Play - Assassin's Creed 4.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d51ecb85-4b7f-45ff-a737-54d201df428b/sm/ep8388.jpg","duration":2093,"publication_date":"2013-11-27T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-37","changefreq":"weekly","video":[{"title":"2013:E185 - GTA V - Fall Guy X","description":"The AH guys bring you even more Things to do in GTA V!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db3666d2-b5f3-4883-bdd0-aa13bf5c582f/sm/ep8387.jpg","duration":610,"publication_date":"2013-11-27T22:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-7","changefreq":"weekly","video":[{"title":"2013:E5 - Achievement HUNT #5 ","description":"This week's Achievement HUNT, brings you Michael vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c149268-cf8d-4ada-b2d1-1837cc299312/sm/ep8386.jpg","duration":272,"publication_date":"2013-11-27T22:24:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-157","changefreq":"weekly","video":[{"title":"2013:E192 - Let's Build in Minecraft - Human Hit List","description":"Geoff and Gavin are back with more Let's Build in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/122c0321-abc1-4ff6-b4c0-a5c45ffa6dd0/sm/ep8384.jpg","duration":1156,"publication_date":"2013-11-26T23:39:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-17","changefreq":"weekly","video":[{"title":"2013:E51 - Novus AEterno","description":"Ryan and Gus do a special Kickstarter version of This is... for Novus AEterno. Contribute to the Kickstarter here: http://kck.st/1dKfzQa","player_loc":"https://roosterteeth.com/embed/this-is-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7869e45-887d-44c6-a2e4-12ed76357925/sm/ep8383.jpg","duration":306,"publication_date":"2013-11-26T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-5","changefreq":"weekly","video":[{"title":"2013:E5 - Collect a Coin - GO! #5","description":"In this week's GO!, the AH crew fight to be the first one to collect a coin.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4829372e-c4fb-42b6-883e-c06dbea1ade0/sm/ep8382.jpg","duration":387,"publication_date":"2013-11-26T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-36","changefreq":"weekly","video":[{"title":"2013:E47 - Tomb Raider","description":"Jack and Ryan bring you Five Facts on the original Tomb Raider developed by Core Design.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14410c80-69d4-4d15-8753-70503cbc67e5/sm/ep8381.jpg","duration":226,"publication_date":"2013-11-26T15:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-37","changefreq":"weekly","video":[{"title":"2013:E47 - Trials Files #83","description":"Geoff and Gavin are back with Trials Files #83, where they go over the \"The Batcave\" map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9274c6ce-c4fc-450a-8b0a-d247191de0a8/sm/ep8380.jpg","duration":106,"publication_date":"2013-11-26T15:12:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-153","changefreq":"weekly","video":[{"title":"2013:E191 - GTA V: Beach Bumming","description":"The AH guys are back with \"Beach Bumming\" in Let's Play GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82b38130-122f-4b54-b0cb-30ebb293cf59/sm/ep8379.jpg","duration":2591,"publication_date":"2013-11-25T21:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-35","changefreq":"weekly","video":[{"title":"2013:E45 - Week #189","description":"Jack, Michael, and Gavin bring you this week's AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7494b36b-d5d4-42e4-b553-c43dcc688fe5/sm/ep8378.jpg","duration":357,"publication_date":"2013-11-25T21:08:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-151","changefreq":"weekly","video":[{"title":"2013:E190 - Minecraft - Episode 78 - The Most Dangerous Game","description":"Inspired by either a story Geoff read as a kid or an Ice-T movie that came out in the 90's, the AH crew are back in full force with \"The Most Dangerous Game.\" \n\nWatch as Geoff and Gavin create \"The Most Dangerous Game,\" in Let's Build in Minecraft: http://bit.ly/1jtriWi","player_loc":"https://roosterteeth.com/embed/lets-play-2013-151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8641f74-1670-40d7-a951-ad3bb1c3159e/sm/ep8375.jpg","duration":2418,"publication_date":"2013-11-22T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-22","changefreq":"weekly","video":[{"title":"2013:E29 - Recap for the Week of November 11th, 2013","description":"Michael, Gavin, and the best of the worst for the week of November 11th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76fa2960-8265-46cb-8ca3-be296ef387e5/sm/ep8374.jpg","duration":155,"publication_date":"2013-11-22T19:32:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-xbox-one-unboxing","changefreq":"weekly","video":[{"title":"2013:E2340 - Achievement Hunter Presents: Xbox One Unboxing ","description":"The AH crew unbox and marvel over the new Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-xbox-one-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba524848-c20c-4819-97ae-781fe178d4ac/sm/ep8373.jpg","duration":351,"publication_date":"2013-11-22T18:54:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-hunger-games","changefreq":"weekly","video":[{"title":"2013:E202 - Game Night - Hunger Games","description":"Geoff and Caleb bring you Game Night \"Hunger Games\" and Gavin asks, \"WHAT IS GAME NIGHT!!!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-hunger-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4d8703f-5d24-4103-ae6c-43e9955b7a3e/sm/ep8372.jpg","duration":70,"publication_date":"2013-11-22T18:51:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-29","changefreq":"weekly","video":[{"title":"2013:E38 - Episode 38: Gavin vs. Jack","description":"This week's VS brings you Gavin vs. Jack.","player_loc":"https://roosterteeth.com/embed/vs-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52850eb8-41c1-4553-9e5e-b8f8ddad4aa3/sm/ep8369.jpg","duration":730,"publication_date":"2013-11-21T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-141","changefreq":"weekly","video":[{"title":"2013:E189 - Outlast","description":"Ok. So. Outlast.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2158161-ee7a-4e64-a1e0-acacfb66791c/sm/ep8367.jpg","duration":3101,"publication_date":"2013-11-21T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-34","changefreq":"weekly","video":[{"title":"2013:E47 - Killzone: Shadow Fall","description":"This week on Rage Quit, Michael shows you how to get around Sony's HDCP whilst he plays Killzone: Shadow Fall for the PS4. Next-gen is so realistic.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4379cb89-5a06-4236-917f-4aaa02943530/sm/ep8368.jpg","duration":320,"publication_date":"2013-11-21T17:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-6","changefreq":"weekly","video":[{"title":"2013:E4 - Achievement HUNT #4","description":"This week's Achievement HUNT, brings you Jack vs. Ray.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f3f8cfb-642b-4d27-ba2f-fd4cdeafee0f/sm/ep8366.jpg","duration":310,"publication_date":"2013-11-20T21:10:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-35","changefreq":"weekly","video":[{"title":"2013:E184 - GTA V - Splat","description":"Michael takes to the skies in a jet and tries to smash AH on his windshield like bugs in this week's Things to do in GTA V - \"Splat.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2433fb6d-7cc5-47ed-aae4-7f8c12077025/sm/ep8365.jpg","duration":666,"publication_date":"2013-11-20T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-139","changefreq":"weekly","video":[{"title":"2013:E188 - Rainbow Six: Vegas 2 Part 3","description":"The AH crew are back with the third installment of Let's Play - Rainbow Six: Vegas 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bbd515e-a28f-430b-af98-17378d4646b5/sm/ep8364.jpg","duration":2405,"publication_date":"2013-11-20T18:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-32","changefreq":"weekly","video":[{"title":"2013:E46 - Trials Files #82","description":"Geoff and Gavin are back with Trials Files #82, where they go over the \"Folklore\" map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ffbb8f1-d16c-4297-a4d3-0d325a5fa909/sm/ep8362.jpg","duration":76,"publication_date":"2013-11-19T18:57:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-135","changefreq":"weekly","video":[{"title":"2013:E187 - Let's Build in Minecraft - The Most Dangerous Game","description":"Geoff and Gavin are back with another episode of Let's Build in Minecraft and Geoff explains the concept behind \"The Most Dangerous Game.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2013-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aadf375-3161-40f0-a1b3-9d655c7f0ef1/sm/ep8361.jpg","duration":1260,"publication_date":"2013-11-19T18:44:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-tickets-please-guide","changefreq":"weekly","video":[{"title":"2013:E2339 - Call of Duty: Ghosts - Tickets Please Guide","description":"Ray shows you how to get the \"Tickets Please\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-tickets-please-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c10a31e-d27d-4e46-af04-397740ae9740/sm/ep8360.jpg","duration":51,"publication_date":"2013-11-19T18:04:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-4","changefreq":"weekly","video":[{"title":"2013:E4 - Shoot a Bird - GO! #4","description":"In this week's GO!, the AH crew scramble to be the first person to shoot a bird out of the air.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb262d77-7a80-4d7b-98cc-bddd513e9b8a/sm/ep8359.jpg","duration":305,"publication_date":"2013-11-19T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-30","changefreq":"weekly","video":[{"title":"2013:E46 - 'Splosion Man Series","description":"Jack and Ray bring you Five Facts on 'Splosion Man and Ms. Splosion Man games from Twisted Pixel Games for the Xbox 360's Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a434bf7-fe6c-4fa8-b382-72a58cca6280/sm/ep8358.jpg","duration":219,"publication_date":"2013-11-19T15:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-they-look-like-ants-guide","changefreq":"weekly","video":[{"title":"2013:E2338 - Call of Duty: Ghosts - They look like ants Guide","description":"Ray shows you how to get the \"They look like ants\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-they-look-like-ants-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23a81a7d-1c09-452b-bab7-0b3522140556/sm/ep8357.jpg","duration":116,"publication_date":"2013-11-19T15:19:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-131","changefreq":"weekly","video":[{"title":"2013:E186 - GTA V: Co-op Part 3","description":"The AH crew is back with the third installment of Let's Play in GTA V: Co-op. \n\nWatch Part 1: http://bit.ly/1dPtPJ8\nWatch Part 2: http://bit.ly/17GIwzw","player_loc":"https://roosterteeth.com/embed/lets-play-2013-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/823e86e7-1ed8-4204-85ef-bf319c7d460f/sm/ep8356.jpg","duration":3535,"publication_date":"2013-11-18T20:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-29","changefreq":"weekly","video":[{"title":"2013:E44 - Week #188","description":"Jack is back, but Geoff is missing, so Ray, Michael, and Caleb fill in for this week's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0e7d1ec-880b-4ef8-957d-f796b8fc824a/sm/ep8355.jpg","duration":303,"publication_date":"2013-11-18T19:55:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-fly-by-wire-guide","changefreq":"weekly","video":[{"title":"2013:E2337 - Call of Duty: Ghosts - Fly-by-wire guide","description":"Ray shows you how to get the \"Fly-by-wire\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-fly-by-wire-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b52e1dc-f210-4077-b6a5-0fce69693ba4/sm/ep8354.jpg","duration":56,"publication_date":"2013-11-18T17:59:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-end-of-your-rope-guide","changefreq":"weekly","video":[{"title":"2013:E2336 - Call of Duty: Ghosts - End of your rope Guide","description":"Ray shows you how to get the \"End of your rope\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-end-of-your-rope-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a54d98f7-58ec-4f6c-a5db-d988f09985bf/sm/ep8353.jpg","duration":69,"publication_date":"2013-11-18T15:03:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-128","changefreq":"weekly","video":[{"title":"2013:E185 - Minecraft - Episode 77 - Human Hit List","description":"No one is safe as the lads and gents play a rousing game of Human Hit List in Minecraft for the Xbox360.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50aa591d-d85c-44ce-abb4-43b082fe80fa/sm/ep8348.jpg","duration":3369,"publication_date":"2013-11-16T03:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-125","changefreq":"weekly","video":[{"title":"2013:E184 - Cry of Fear","description":"Warning ~ the following video is really annoying. Also, REALLY, dark. Literally dark ~ not metaphorically dark. Actually, it's metaphorically dark also. Oh, also, Adam couldn't get the Co-op function to work, so, we had to improvis","player_loc":"https://roosterteeth.com/embed/lets-play-2013-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec921593-f9b1-4cc0-9c46-46acc741975a/sm/ep8347.jpg","duration":3778,"publication_date":"2013-11-15T20:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-20","changefreq":"weekly","video":[{"title":"2013:E28 - Recap for the Week of November 4th, 2013","description":"Michael, Ray, and the best of the worst for the week of November 4th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10fc91f3-e749-4101-95a9-cf260da2f11d/sm/ep8346.jpg","duration":161,"publication_date":"2013-11-15T20:37:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-red-rover","changefreq":"weekly","video":[{"title":"2013:E201 - Game Night - Red Rover","description":"Geoff and Caleb bring you Game Night \"Red Rover.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-red-rover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9750c647-2a45-42f0-a433-8482a25303eb/sm/ep8344.jpg","duration":84,"publication_date":"2013-11-15T19:21:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-15","changefreq":"weekly","video":[{"title":"2013:E50 - XCOM Enemy Within","description":"Geoff and Brandon take a look at XCOM Enemy Within.","player_loc":"https://roosterteeth.com/embed/this-is-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d07460a3-35dc-40c4-a223-b01a75f145e2/sm/ep8342.jpg","duration":440,"publication_date":"2013-11-15T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-presents-ps4-unboxing","changefreq":"weekly","video":[{"title":"2013:E2335 - Achievement Hunter Presents: PS4 Unboxing","description":"Geoff, Ryan, Michael, Ray and Lindsay open Gavin's new PlayStation 4","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-presents-ps4-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65197038-889e-4ea5-9b14-b82480c83491/sm/ep8341.jpg","duration":328,"publication_date":"2013-11-15T18:14:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-24","changefreq":"weekly","video":[{"title":"2013:E37 - Episode 37: Gavin vs. Ryan","description":"This week's VS brings you Gavin vs. Ryan.","player_loc":"https://roosterteeth.com/embed/vs-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18dafc3c-952a-4bc3-a482-da6dc9f8767d/sm/ep8340.jpg","duration":891,"publication_date":"2013-11-15T00:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-jack-pot-guide","changefreq":"weekly","video":[{"title":"2013:E2334 - Call of Duty: Ghosts - Jack-pot Guide","description":"Ray and Michael show you how to get the \"Jack-pot\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-jack-pot-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66392be7-12b0-439f-9164-bec84bbe6d58/sm/ep8339.jpg","duration":61,"publication_date":"2013-11-14T20:41:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bioshock-infinite-should-auld-acquaintance-guide-1","changefreq":"weekly","video":[{"title":"2013:E2333 - BioShock Infinite - Should AULD Acquaintance... Guide","description":"Geoff and Ray bring you the \"Should AULD Acquaintance...\" Guide for BioShock Infinite.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bioshock-infinite-should-auld-acquaintance-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e175082b-a121-438c-881d-d096c02fb334/sm/ep8338.jpg","duration":364,"publication_date":"2013-11-14T19:53:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-cog-in-the-machine-guide","changefreq":"weekly","video":[{"title":"2013:E2332 - Call of Duty: Ghosts - Cog in the machine Guide","description":"Ray and Michael show you how to get the \"Cog in the machine\" achievement in Call of Duty Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-cog-in-the-machine-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2e44534-e52d-4b59-b2f7-c517fff55264/sm/ep8337.jpg","duration":89,"publication_date":"2013-11-14T19:24:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-115","changefreq":"weekly","video":[{"title":"2013:E183 - Worms Revolution: Episode 4","description":"Join the AH crew and watch the fourth installment of Let's Play - Worms Revolution!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/506013f6-bc6b-4bd1-b0e6-46f4d0a43661/sm/ep8335.jpg","duration":1381,"publication_date":"2013-11-14T17:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-16","changefreq":"weekly","video":[{"title":"2013:E65 - Assassin's Creed IV: Black Flag - Squid vs. Whale Easter Egg","description":"Michael and Geoff show you the Squid vs. Whale in Easter Egg in Assassin's Creed IV: Black Flag.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f505d463-01a5-4557-9fa4-606f8bacb7ab/sm/ep8334.jpg","duration":106,"publication_date":"2013-11-14T17:07:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-piece-of-cake-and-grindin-guides","changefreq":"weekly","video":[{"title":"2013:E2330 - Call of Duty: Ghosts - Piece of cake & Grindin' Guides","description":"Ray and Geoff show you how to get the \"Piece of cake\" & \"Grindin'\" achievements in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-piece-of-cake-and-grindin-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b1f6b44-1568-40dc-9f52-d1d0930f265e/sm/ep8333.jpg","duration":119,"publication_date":"2013-11-14T15:12:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-26","changefreq":"weekly","video":[{"title":"2013:E46 - SpongeBob: Boat-o-Cross 2","description":"This week on Rage Quit, Michael takes a tour of Bikini Bottom with everyone's favorite yellow sea creature in the Nickelodeon flash game, SpongeBob SquarePants: Boat-o-Cross 2. Are you sponge enough Try it for yourself here: http://at.nick.com/r2c3mM","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2811e13-7585-44c2-af96-b6f28f14dc9f/sm/ep8332.jpg","duration":224,"publication_date":"2013-11-14T15:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-15","changefreq":"weekly","video":[{"title":"2013:E64 - Call of Duty: Ghosts - LOL Easter Egg","description":"Ray and Geoff show you how to find the \"LOL\" Easter Egg in the Extinction Mode of Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d228095b-ba6f-4aa8-8552-f9adae8b2850/sm/ep8331.jpg","duration":128,"publication_date":"2013-11-13T20:08:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-deep-freeze-guide","changefreq":"weekly","video":[{"title":"2013:E2329 - Call of Duty: Ghosts - Deep Freeze Guide","description":"Ray and Geoff show you how to get the \"Deep Freeze\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-deep-freeze-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25899bed-2626-4411-992e-39b186dcff32/sm/ep8330.jpg","duration":62,"publication_date":"2013-11-13T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-110","changefreq":"weekly","video":[{"title":"2013:E182 - Call of Duty: Ghosts: Extinction","description":"The AH Crew bring you the first ever Let's Play in Call of Duty: Ghosts. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53b39a97-e0f3-4662-88ac-bc1aa5508ef5/sm/ep8328.jpg","duration":1494,"publication_date":"2013-11-13T16:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-audiophile-guide","changefreq":"weekly","video":[{"title":"2013:E2328 - Call of Duty: Ghosts - Audiophile Guide","description":"Ray and Geoff show you how to get the \"Audiophile\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-audiophile-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cde72dc8-9159-44c7-8747-420e4b2012b7/sm/ep8327.jpg","duration":289,"publication_date":"2013-11-13T16:10:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-5","changefreq":"weekly","video":[{"title":"2013:E3 - Achievement HUNT #3 ","description":"This week's Achievement HUNT, brings you Ray vs. Michael.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":302,"publication_date":"2013-11-13T15:48:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-27","changefreq":"weekly","video":[{"title":"2013:E183 - GTA V - Roof Boat","description":"Geoff and Michael show you how to do \"Roof Boat\" in GTA V. Music for this video was provided by Audio Network - http://us.audionetwork.com/Track/SearchKeywordkey...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97b6a77a-6e1d-4da3-b8fd-66d9922c9b88/sm/ep8325.jpg","duration":206,"publication_date":"2013-11-13T15:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-jungle-ghosts-guide","changefreq":"weekly","video":[{"title":"2013:E2327 - Call of Duty: Ghosts - Jungle Ghosts Guide","description":"Ray and Geoff show you how to get the \"Jungle Ghosts\" achievements in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-jungle-ghosts-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc287a9c-6a46-4620-bd98-f300324b78a6/sm/ep8324.jpg","duration":162,"publication_date":"2013-11-13T14:55:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-105","changefreq":"weekly","video":[{"title":"2013:E181 - Let's Build in Minecraft - Actual Petting Zoo","description":"Geoff, Gavin and Lindsay build for last week's Let's Play Minecraft \"Actual Petting Zoo.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2013-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13304cb8-1d6c-40a8-92af-8b54b9a98b9c/sm/ep8322.jpg","duration":1412,"publication_date":"2013-11-13T00:10:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-burn-baby-burn-guide","changefreq":"weekly","video":[{"title":"2013:E2326 - Call of Duty: Ghosts - Burn Baby Burn Guide","description":"Ray and Geoff show you how to get the \"Burn Baby Burn\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-burn-baby-burn-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad6b1687-7e11-4c89-abc9-56cdf5de9a5b/sm/ep8321.jpg","duration":82,"publication_date":"2013-11-12T18:44:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-3","changefreq":"weekly","video":[{"title":"2013:E3 - Halloween Edition - GO! #3","description":"In this wickedly scary Halloween edition of GO!, the AH crew need an achievement to win a sticker; yep, you would think it would be really simple.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40eee533-67db-477d-b06b-b1d37f042db6/sm/ep8320.jpg","duration":641,"publication_date":"2013-11-12T18:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-23","changefreq":"weekly","video":[{"title":"2013:E45 - Bully","description":"Michael and Ray bring you five facts on Bully.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a83353bf-81b0-47c8-8dd2-9fcdb1528456/sm/ep8319.jpg","duration":317,"publication_date":"2013-11-12T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-23","changefreq":"weekly","video":[{"title":"2013:E45 - Trials Files #81","description":"Geoff and Gavin are back with Trials Files #81, where they go over the Back to Glacier Bay map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f613f806-53f5-4526-8d5a-d7c6f8a3236d/sm/ep8318.jpg","duration":185,"publication_date":"2013-11-12T16:53:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-sleeping-beauty-and-carbon-faceprint-guides","changefreq":"weekly","video":[{"title":"2013:E2325 - Call of Duty: Ghosts - Sleeping Beauty & Carbon Faceprint Guides","description":"Ray shows you how to get the \"Sleeping Beauty\" and \"Carbon Faceprint\" achievements in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-sleeping-beauty-and-carbon-faceprint-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ce09476-165d-4346-a028-6b29170c6178/sm/ep8317.jpg","duration":90,"publication_date":"2013-11-12T15:38:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-it-came-from-below-guide","changefreq":"weekly","video":[{"title":"2013:E2324 - Call of Duty: Ghosts - It Came from Below! Guide","description":"Ray shows you how to get the \"It Came from Below!\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-it-came-from-below-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6ada40c-f2bd-404b-a3aa-9721c1fd8021/sm/ep8316.jpg","duration":114,"publication_date":"2013-11-12T15:35:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-next-gen-2013","changefreq":"weekly","video":[{"title":"2013:E200 - Coming Soon - Next Gen 2013","description":"Kdin give us a rundown of what games we can expect at launch for the PS4 and Xbox One.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-next-gen-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfc21608-08c9-4a21-a7f5-f05cd710d2c5/sm/ep8315.jpg","duration":485,"publication_date":"2013-11-11T20:45:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-101","changefreq":"weekly","video":[{"title":"2013:E180 - GTA V: Top Fun","description":"It's Lads VS Gents in a battle for air superiority! Though we'd settle for just staying IN the air.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0533dcbf-d772-4eaa-b6a6-88c1e2235658/sm/ep8314.jpg","duration":2018,"publication_date":"2013-11-11T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-24","changefreq":"weekly","video":[{"title":"2013:E43 - Week #187","description":"Jack is gone, but never fear! The Team Lads Action News Team will give you the low down on the week.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":444,"publication_date":"2013-11-11T19:05:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-15","changefreq":"weekly","video":[{"title":"2013:E27 - Recap for the Week of October 28th, 2013","description":"Michael, Ray, and the best of the worst for the week of October 28th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63eda8f5-cc01-40d7-a07a-9ff2b25ef4be/sm/ep8307.jpg","duration":126,"publication_date":"2013-11-08T20:13:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-go-ugly-early-guide","changefreq":"weekly","video":[{"title":"2013:E2323 - Call of Duty: Ghosts - Go Ugly Early Guide ","description":"Ray and Michael show you how to get the \"Go Ugly Early\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-go-ugly-early-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0abcb982-9f99-4e33-afb8-4a9f09f6b0ce/sm/ep8306.jpg","duration":65,"publication_date":"2013-11-08T19:05:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-b-ball-space-jam","changefreq":"weekly","video":[{"title":"2013:E199 - Game Night - B-Ball Space Jam","description":"Geoff and Caleb bring you Game Night \"B-Ball Space Jam.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-b-ball-space-jam","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c796858-cef5-479e-ab51-9433d70baf9f/sm/ep8304.jpg","duration":73,"publication_date":"2013-11-08T17:47:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-92","changefreq":"weekly","video":[{"title":"2013:E179 - Minecraft - Episode 76 - Actual Petting Zoo","description":"The AH crew are back with Let's Play Minecraft \"Actual Petting Zoo.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2013-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a91dd4f-9503-4a6c-91fe-76523e218a8f/sm/ep8303.jpg","duration":2874,"publication_date":"2013-11-08T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-waste-not-guide","changefreq":"weekly","video":[{"title":"2013:E2322 - Call of Duty: Ghosts - Waste Not Guide","description":"Ray and Michael show you how to get the \"Waste Not\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-waste-not-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c96d9d34-6672-4237-8489-1b20ec01b3b6/sm/ep8302.jpg","duration":167,"publication_date":"2013-11-08T16:53:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-90","changefreq":"weekly","video":[{"title":"2013:E178 - Fear 3","description":"Watch as Adam jumps and kicks while Joel attempts to smelt ore in this video about ghosts. Yes, that was a sentence. Video features Joel, Adam, sound effects, smelting, ghosts, Minecraft worlds, and some jumping.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b832d9db-3f43-4ac6-a829-65a6bd17b149/sm/ep8301.jpg","duration":1852,"publication_date":"2013-11-07T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-19","changefreq":"weekly","video":[{"title":"2013:E36 - Episode 36: Michael vs. Gavin","description":"It's Gavin's turn to challenge Michael in this week's VS. Will Gavin win the beloved belt or will his cock-iness be a deterrent in the competition Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f1a1c74-c58b-4402-8032-52503d21e370/sm/ep8298.jpg","duration":401,"publication_date":"2013-11-07T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-ghosts-liberty-wall-guide","changefreq":"weekly","video":[{"title":"2013:E2320 - Call of Duty: Ghosts - Liberty Wall Guide ","description":"Ray and Michael show you how to get the \"Liberty Wall\" achievement in Call of Duty: Ghosts for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-ghosts-liberty-wall-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cffd5377-23da-4903-87b7-d1b2520dc974/sm/ep8297.jpg","duration":82,"publication_date":"2013-11-07T15:23:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-21","changefreq":"weekly","video":[{"title":"2013:E45 - Hotline Trail","description":"This week, Michael gets frustrated and screams in space with Hotline Trail.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55148893-58fd-472f-84bc-19c84dfb34c6/sm/ep8296.jpg","duration":149,"publication_date":"2013-11-07T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-4","changefreq":"weekly","video":[{"title":"2013:E2 - Achievement HUNT #2","description":"This week's Achievement HUNT, brings you Geoff vs. Michael.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f80856e-3ff5-4475-b6b3-7955bec583d2/sm/ep8295.jpg","duration":339,"publication_date":"2013-11-06T19:34:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-85","changefreq":"weekly","video":[{"title":"2013:E177 - Assassin's Creed 4","description":"Geoff, Jack, Ray, Ryan, Michael, and Gavin play Assassin's Creed 4 in Xbox 360.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37227f94-9fcd-43f7-9ebd-d2c6b1b5d90c/sm/ep8294.jpg","duration":1994,"publication_date":"2013-11-06T17:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-22","changefreq":"weekly","video":[{"title":"2013:E41 - Worms Ultimate Mayhem Part 2","description":"Watch the behind the scenes video of Gavin, Michael, Geoff, and Jack in Let's Play - Worms: Ultimate Mayhem Part 2.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fb38f9b-6b10-474b-b948-d76f64475400/sm/ep8293.jpg","duration":299,"publication_date":"2013-11-06T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-21","changefreq":"weekly","video":[{"title":"2013:E182 - GTAV - Pool Party","description":"The AH Crew race jet skies in a pool. I guess that could be considered a party, right","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0464f2d3-3c5b-4e9d-a108-4c2f35610b08/sm/ep8291.jpg","duration":285,"publication_date":"2013-11-06T16:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-80","changefreq":"weekly","video":[{"title":"2013:E176 - Let's Build in Minecraft - Thunderdome Part 2","description":"Join Geoff and Gavin and watch the second part to Let's Build in Minecraft - Thunderdome","player_loc":"https://roosterteeth.com/embed/lets-play-2013-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a67520e-2214-4b20-90c0-807f4650793f/sm/ep8290.jpg","duration":1571,"publication_date":"2013-11-05T22:10:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-2","changefreq":"weekly","video":[{"title":"2013:E2 - Swing Set Glitch in GTA IV - GO! #2","description":"The AH crew look for the Swing Set Glitch in GTA IV for this week's episode of GO!","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/012f3222-5c65-4fd6-8f99-ff3fba80a928/sm/ep8289.jpg","duration":1018,"publication_date":"2013-11-05T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-19","changefreq":"weekly","video":[{"title":"2013:E44 - Trials Files #80","description":"Geoff and Jack are back with Trials Files #80, where they go over the Black Pearl map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/818a919c-2a68-4ee2-8143-ea858504a509/sm/ep8288.jpg","duration":108,"publication_date":"2013-11-05T17:47:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-19","changefreq":"weekly","video":[{"title":"2013:E44 - Dead Island","description":"Jack and Geoff go over five facts in Dead Island.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41ce1eb9-6bfe-4e90-8736-bbb76328cbdb/sm/ep8287.jpg","duration":191,"publication_date":"2013-11-05T14:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-19","changefreq":"weekly","video":[{"title":"2013:E42 - Week #186","description":"Geoff and Jack are back with some news and updates for this week's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4fe0ddf-24fd-4066-8de3-a15b520773e2/sm/ep8285.jpg","duration":318,"publication_date":"2013-11-04T21:21:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-75","changefreq":"weekly","video":[{"title":"2013:E175 - GTA V: Co-op Part 2","description":"Join the AH crew and watch the second part to Let's Play GTA V: Co-op.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa0bc1b2-6f2a-4557-978a-3518f903c056/sm/ep8284.jpg","duration":2679,"publication_date":"2013-11-04T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-battlefield-4-dog-tags-and-hidden-weapons-part-2","changefreq":"weekly","video":[{"title":"2013:E2319 - Battlefield 4 - Dog Tags and Hidden Weapons Part 2","description":"Ray, Geoff, and Michael show you where to find all the dog tags and hidden weapons in the final 4 missions in Battlefield 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-battlefield-4-dog-tags-and-hidden-weapons-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74932493-9a48-45d0-bd56-b2cc13bc977f/sm/ep8283.jpg","duration":361,"publication_date":"2013-11-04T18:06:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-11","changefreq":"weekly","video":[{"title":"2013:E26 - Recap for the Week of October 21st, 2013","description":"Michael, Ray, and the best of the worst for the week of October 21st!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08d37301-3575-4855-9351-8fa49d2f9ce8/sm/ep8277.jpg","duration":127,"publication_date":"2013-11-01T19:27:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-70","changefreq":"weekly","video":[{"title":"2013:E174 - Minecraft - Episode 75 - Galacticraft Part 3","description":"Join the AH Crew in the third installment of Let's Play Minecraft - Galacticraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84d0f64c-4288-459d-b2f8-acc5c509c341/sm/ep8276.jpg","duration":3192,"publication_date":"2013-11-01T18:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-18","changefreq":"weekly","video":[{"title":"2013:E40 - VS - Nicktoons MLB","description":"Watch Geoff and Ray as they fight for the beloved VS belt in this week's Behind the Scenes: VS - Episode 34 - Nicktoons MLB.\n\nWatch VS Episode 34:","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90917d87-7293-4d14-84c7-ab6dabe6da1f/sm/ep8275.jpg","duration":251,"publication_date":"2013-11-01T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-free-skate","changefreq":"weekly","video":[{"title":"2013:E198 - Game Night - Free Skate","description":"Geoff and Caleb bring you Game Night \"Mongoose Skate Park,\" while Gavin chokes when shouting \"WHAAA--T IS GAME NIGHT\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-free-skate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83e904ed-e5bd-45a7-a6b6-49554f190825/sm/ep8274.jpg","duration":135,"publication_date":"2013-11-01T17:53:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-november-2013","changefreq":"weekly","video":[{"title":"2013:E197 - Coming Soon - November 2013","description":"Kdin is back with a ton of new games and other information for the month of November. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-november-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92a35e00-7c3a-43a8-a199-7d5387bfa0ad/sm/ep8272.jpg","duration":505,"publication_date":"2013-11-01T16:06:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/how-to-season-1","changefreq":"weekly","video":[{"title":"2014:E1 - Terraria","description":"Nobody reads these. What is wrong with you Ok, fine, let's do this. Watch as Adam Ellis (who) teach Joel how to smelt ore in this four hour long documentary shot entirely (mostly) on location in Terrer... Terrererrr... in this game.","player_loc":"https://roosterteeth.com/embed/how-to-season-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82cbb0bd-94a0-42cb-8c07-9667c158db43/sm/ep8271.jpg","duration":2413,"publication_date":"2013-10-31T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-15","changefreq":"weekly","video":[{"title":"2013:E35 - Episode 35: Ray vs. Michael","description":"It's Michael's turn to challenge Ray in this week's VS. Will Michael finally choose the game everyone has been asking for Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bea70164-7469-458d-bf16-76242d3e33ca/sm/ep8270.jpg","duration":552,"publication_date":"2013-10-31T18:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-9","changefreq":"weekly","video":[{"title":"2013:E63 - Battlefield 4 - Dog Tags and Hidden Weapons Part 1","description":"Ray and Geoff show you where to find all the dog tags and hidden weapons in the first 3 missions in Battlefield 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3be6c526-18fa-4d16-b795-29512325d7e5/sm/ep8267.jpg","duration":350,"publication_date":"2013-10-31T15:39:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-14","changefreq":"weekly","video":[{"title":"2013:E44 - Probably Archery","description":"This week, Michael shows you that shooting a bow and arrow isn't as easy as it seems in Probably Archery.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8997bed-01c2-480f-959d-f64019bd43bf/sm/ep8266.jpg","duration":258,"publication_date":"2013-10-31T15:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-16","changefreq":"weekly","video":[{"title":"2013:E181 - GTAV - Wrecking Ball","description":"AH shows you how to lovingly destroy your friends like an abandoned building in GTAV.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc2faea5-7169-481d-9e56-f18563465fc6/sm/ep8264.jpg","duration":421,"publication_date":"2013-10-30T23:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-61","changefreq":"weekly","video":[{"title":"2013:E173 - Let's Fail - Grand Theft Auto V: Wrecking Ball","description":"Watch as the guys fail in GTA V with Let's Fail in Grand Theft Auto V: Wrecking Ball.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/938fab4f-3aec-4186-8754-19d1c6d66983/sm/ep8263.jpg","duration":3128,"publication_date":"2013-10-30T20:11:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunt-2013-3","changefreq":"weekly","video":[{"title":"2013:E1 - Achievement HUNT #1 ","description":"In the inaugural episode of Achievement HUNT, it is Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunt-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e600a74c-3a35-401b-a699-f978dca83d1e/sm/ep8262.jpg","duration":289,"publication_date":"2013-10-30T20:05:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-59","changefreq":"weekly","video":[{"title":"2013:E172 - WWE2K14","description":"The AH crew are back together again and bring you Let's Play WWWE2K14!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55950e2d-b83c-4728-b5bb-f5cc7daf09e7/sm/ep8261.jpg","duration":2543,"publication_date":"2013-10-30T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-57","changefreq":"weekly","video":[{"title":"2013:E171 - Let's Build in Minecraft - Thunderdome Part 1","description":"Geoff and Gavin bring you a very spooky episode of Let's Build in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d235b0b-6ceb-409a-862b-19724f9c58aa/sm/ep8259.jpg","duration":1241,"publication_date":"2013-10-29T19:17:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/go-season-1-achievement-hunter-presents-go-1","changefreq":"weekly","video":[{"title":"2013:E1 - Barrel Roll - GO! #1","description":"In the inaugural episode of GO!, the gang has to do a classic gaming staple, the Barrel Roll.","player_loc":"https://roosterteeth.com/embed/go-season-1-achievement-hunter-presents-go-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/735eda4c-8031-4e1a-8782-cadfdadbad54/sm/ep8258.jpg","duration":544,"publication_date":"2013-10-29T18:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-5","changefreq":"weekly","video":[{"title":"2013:E49 - Mighty Quest for Epic Loot","description":"Ryan and Geoff take a look at Mighty Quest, a Free-to-Play IP from Ubisoft.\nCheck out Mighty Quest here: http://bit.ly/19xOoeF","player_loc":"https://roosterteeth.com/embed/this-is-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1b0661e-5a09-4aae-9811-64b4936abfcc/sm/ep8257.jpg","duration":348,"publication_date":"2013-10-29T16:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-12","changefreq":"weekly","video":[{"title":"2013:E43 - Resident Evil","description":"Michael and Ray learn some fascinating facts about Resident Evil!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c831a7c7-bff8-4b4f-86f6-9a981341eafa/sm/ep8256.jpg","duration":309,"publication_date":"2013-10-29T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-4","changefreq":"weekly","video":[{"title":"2013:E62 - Top 10 Creepiest Xbox 360 Easter Eggs","description":"Ray and Geoff countdown the creepiest easter eggs Xbox 360 games","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bedb7279-8274-4975-ac81-fcf4f9040cad/sm/ep8255.jpg","duration":342,"publication_date":"2013-10-29T14:33:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-13","changefreq":"weekly","video":[{"title":"2013:E43 - Trials Files #79","description":"Geoff and Jack are back to the future with some more Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8eacc2e5-29c5-4e4e-a88f-fb27513adb7f/sm/ep8254.jpg","duration":89,"publication_date":"2013-10-29T14:24:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-12","changefreq":"weekly","video":[{"title":"2013:E41 - Week #185","description":"The AH guys are back with more gaming news and cool new merchandise. Don't forget to join them in Extra Life on November 2nd! Check out http://www.extra-life.org/team/roosterteeth","player_loc":"https://roosterteeth.com/embed/ahwu-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d3f9fc2-7021-4a51-891a-ce9268c3ce70/sm/ep8253.jpg","duration":426,"publication_date":"2013-10-28T19:48:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-51","changefreq":"weekly","video":[{"title":"2013:E170 - GTA V: Duneloading","description":"Geoff, Ryan, Ray, Michael, and Lindsay run after the Duneloader and attempt to stay on board in this week's Let's Play GTA V.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aafb48b3-4a86-466f-9182-304dc546794a/sm/ep8252.jpg","duration":3320,"publication_date":"2013-10-28T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-14","changefreq":"weekly","video":[{"title":"2013:E39 - VS - Golf in GTA V","description":"Installment #7 of Behind the Scenes week! Ryan and Jack swing for a win in this Behind the Scenes of VS Episode 32 - Golf in GTAV.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37084661-01d3-4658-80a8-72ddf8cc08cd/sm/ep8251.jpg","duration":223,"publication_date":"2013-10-28T16:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-13","changefreq":"weekly","video":[{"title":"2013:E38 - Demolition Derby X","description":"For the 6th video of Behind the Scenes week, AH places you in the center of the wreckage. It's Things To Do in GTAV - Demolition Derby X! FIGHT.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eefea04-f794-4a9c-bcec-01f68a94136c/sm/ep8246.jpg","duration":181,"publication_date":"2013-10-26T20:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-11","changefreq":"weekly","video":[{"title":"2013:E37 - Dog Fight","description":"Installment #5 of Behind the Scenes week! Ryan and Michael bring out their mad dog faces in this Behind the Scenes of VS Episode 31 - Dog Fight in GTAV.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72369627-239c-4460-9119-af2e0c30d136/sm/ep8245.jpg","duration":277,"publication_date":"2013-10-26T15:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-47","changefreq":"weekly","video":[{"title":"2013:E169 - Minecraft - Episode 74 - The Pit","description":"AH descends into the dark, scary recesses of The Pit in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f325f24-785f-4dba-ba8c-d15399304db3/sm/ep8244.jpg","duration":3676,"publication_date":"2013-10-26T03:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-9","changefreq":"weekly","video":[{"title":"2013:E25 - Recap for the Week of October 14th, 2013","description":"Michael, Ray, and the best of the worst for the week of October 14th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d62483dd-01c5-4290-a53a-377d744e708f/sm/ep8243.jpg","duration":176,"publication_date":"2013-10-25T19:53:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-44","changefreq":"weekly","video":[{"title":"2013:E168 - Splinter Cell Blacklist Co-op Part 4","description":"Watch the fourth installment of Let's Play - Splinter Cell Blacklist Co-op.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eff9b562-e550-42fd-b502-f767f97d0793/sm/ep8242.jpg","duration":3941,"publication_date":"2013-10-25T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-jet-ball","changefreq":"weekly","video":[{"title":"2013:E196 - Game Night - Jet Ball","description":"Geoff and Caleb bring you Game Night \"Jet Ball,\" while Gavin and Michael shout \"WHAAA--T IS GAME NIGHT\" Geoff also plays the name guessing game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-jet-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79d70e72-6e04-4f9a-aaaa-dd69884e9c8e/sm/ep8240.jpg","duration":106,"publication_date":"2013-10-25T17:35:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-10","changefreq":"weekly","video":[{"title":"2013:E36 - Chopper vs. Chopper","description":"It's the fourth installment of Behind the Scenes week, and AH is immersed in GTA IV with Chopper vs. Chopper.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c338b06-10ec-42d3-a01b-6dd5f08f9b5e/sm/ep8238.jpg","duration":328,"publication_date":"2013-10-24T19:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-10","changefreq":"weekly","video":[{"title":"2013:E34 - Episode 34: Geoff vs. Ray","description":"It's Ray's turn to challenge Geoff in this week's VS. Will his game choice lead him to victory or will he strike out Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4f4fdc8-6a8a-4f47-bec3-105e4e3a9e0b/sm/ep8236.jpg","duration":1281,"publication_date":"2013-10-24T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-11","changefreq":"weekly","video":[{"title":"2013:E43 - Snowboard 2D","description":"This week, Michael enters the world of extreme sports in the Xbox Live Indie Game, Snowboard 2D. Yup. That's it. Just playing some sports.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47ce680c-d812-4f87-a6c2-5d37d1642603/sm/ep8234.jpg","duration":378,"publication_date":"2013-10-24T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-saints-row-iv-health-inspector-guide","changefreq":"weekly","video":[{"title":"2013:E2318 - Saints Row IV - Health Inspector Guide ","description":"Ray and Michael show you how to get the \"Health Inspector\" achievement in the Enter The Dominatrix DLC for Saints Row IV for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-saints-row-iv-health-inspector-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cea64a25-c259-48a9-aace-2f575cd66372/sm/ep8237.jpg","duration":114,"publication_date":"2013-10-24T17:26:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-saints-row-iv-rigging-the-race-guide","changefreq":"weekly","video":[{"title":"2013:E2317 - Saints Row IV - Rigging the Race Guide","description":"Ray and Michael show you how to get the \"Rigging the Race\" achievement in the Enter The Dominatrix DLC for Saints Row IV for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-saints-row-iv-rigging-the-race-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2cb4341-051a-4f3c-86ef-8ea8726487e2/sm/ep8235.jpg","duration":144,"publication_date":"2013-10-24T14:10:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-8","changefreq":"weekly","video":[{"title":"2013:E43 - Halo HORSE #150","description":"This week's Halo HORSE brings you Jack vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":182,"publication_date":"2013-10-23T19:46:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-33","changefreq":"weekly","video":[{"title":"2013:E167 - Worms: Ultimate Mayhem Part 2","description":"The AH crew is back with the second installment of Let's Play Worms: Ultimate Mayhem.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/322881c8-08da-4e6b-8f68-abbcf0d0b21c/sm/ep8231.jpg","duration":1511,"publication_date":"2013-10-23T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-10","changefreq":"weekly","video":[{"title":"2013:E180 - GTA V - Fly Fishing","description":"Geoff, Ryan, Ray, and Michael are back with more Things to do in GTA V. The guys attempt to launch a boat and try to catch it in the air with a cargobob.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb84c3da-1bf1-4032-a883-3710368bd508/sm/ep8229.jpg","duration":550,"publication_date":"2013-10-23T12:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-31","changefreq":"weekly","video":[{"title":"2013:E166 - Let's Build in Minecraft - The Pit","description":"Geoff, Gavin, and Lindsay are back with more Let's Build in Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/499db49f-5839-451b-915d-eb1546739417/sm/ep8228.jpg","duration":2012,"publication_date":"2013-10-22T21:33:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-7","changefreq":"weekly","video":[{"title":"2013:E42 - Trials Files #78","description":"Geoff and Jack crash land in a frozen wasteland in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0babc85-447a-444c-a033-f8bc3eb3e232/sm/ep8227.jpg","duration":89,"publication_date":"2013-10-22T17:18:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-7","changefreq":"weekly","video":[{"title":"2013:E34 - Hole In The Wall","description":"Day 2 of \"Achievement Hunter: Behind the Scenes\" Week! Watch Michael put Ray's physical fitness to the test as they go head to head in VS.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0a34b09-1d83-4d0e-8d73-96668b2406ae/sm/ep8226.jpg","duration":326,"publication_date":"2013-10-22T15:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-26","changefreq":"weekly","video":[{"title":"2013:E165 - GTA V Coop Part 1","description":"Watch as Geoff, Ryan, Michael, and Ray play through some GTAV: Online Jobs! Drugs runs! Truck thefts! Nothing is off the table! Except for table theft... they have standards, come on.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e36a3a2c-8fe2-4af7-9834-b9634bc85a11/sm/ep8225.jpg","duration":2596,"publication_date":"2013-10-21T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-5","changefreq":"weekly","video":[{"title":"2013:E40 - Week #184","description":"The boys are back with more gaming news and wackiness. Don't forget to join them in Extra Life on November 2nd! Check out http://www.extra-life.org/team/roosterteeth","player_loc":"https://roosterteeth.com/embed/ahwu-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63669d12-7afd-4ea6-8099-7c5dc8479f9a/sm/ep8223.jpg","duration":358,"publication_date":"2013-10-21T17:19:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-6","changefreq":"weekly","video":[{"title":"2013:E33 - Amnesia: A Machine For Pigs","description":"Watch Gavin and Michael scream their way through the maCHEEN!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8780b404-4737-41a7-ba88-d61393f777b3/sm/ep8222.jpg","duration":388,"publication_date":"2013-10-21T16:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-19","changefreq":"weekly","video":[{"title":"2013:E164 - Splinter Cell Blacklist Co-op Part 3","description":"Watch the third installment of Let's Play - Splinter Cell Blacklist Co-op.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a0c84b8-ac8c-4062-9301-e1f3e57e8454/sm/ep8216.jpg","duration":3310,"publication_date":"2013-10-18T20:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-4","changefreq":"weekly","video":[{"title":"2013:E24 - Recap for the Week of October 7th, 2013","description":"Michael, Ray, and the best of the worst for the week of October 7th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4389b9e1-1004-48e6-a493-b182ce6a2686/sm/ep8215.jpg","duration":150,"publication_date":"2013-10-18T20:13:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-15","changefreq":"weekly","video":[{"title":"2013:E163 - Minecraft - Episode 73 - Galacticraft Part 2","description":"The AH crew is back with the second installment of Let's Play Minecraft - Galacticraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c567c87b-3fae-458b-bac6-afa255ea01fe/sm/ep8214.jpg","duration":2718,"publication_date":"2013-10-18T18:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-arcadium-slayer","changefreq":"weekly","video":[{"title":"2013:E195 - Game Night - Arcadium Slayer","description":"Geoff and Caleb bring you Game Night \"Tornado\" and Gavin says \"WHAAA--T IS GAME NIGHT\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-arcadium-slayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc3caee2-80fb-4d34-b5b6-aa509c59eaae/sm/ep8213.jpg","duration":87,"publication_date":"2013-10-18T14:29:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-3","changefreq":"weekly","video":[{"title":"2013:E42 - Volume 161","description":"It's Friday, which means it is time for your weekly dose of failure. Join Geoff and Jack and enjoy Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47629cad-bfd2-4d76-bb9f-a622d5440fbd/sm/ep8212.jpg","duration":194,"publication_date":"2013-10-18T14:28:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-3","changefreq":"weekly","video":[{"title":"2013:E42 - Boson X","description":"Michael quantum jumps his way through the deadly, tricky, and trippy Boson X for the PC and Mac. If you thought it would be easy without spikes, wait until you get to the color red.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83809662-461e-4ad3-8ff7-bcd17bb04717/sm/ep8211.jpg","duration":248,"publication_date":"2013-10-18T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-4","changefreq":"weekly","video":[{"title":"2013:E42 - Trials Evolution - Achievement PIG #79","description":"Kerry vs. Ray. Who will be the victor in this week's Trials PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05a6dc1a-3200-4ad9-8376-e0efb115a598/sm/ep8210.jpg","duration":229,"publication_date":"2013-10-17T19:49:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-2","changefreq":"weekly","video":[{"title":"2013:E33 - Episode 33: Jack vs. Geoff","description":"Geoff thinks really hard on what game to play in this week's VS. Will his meticulous made choice lead him to victory and win that coveted beltWatch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b145417b-49cc-497e-8141-7935cba2e330/sm/ep8209.jpg","duration":555,"publication_date":"2013-10-17T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-13","changefreq":"weekly","video":[{"title":"2013:E162 - Rainbow Six: Vegas 2 Part 2","description":"The boys are back with the second part of Let's Play - Rainbow Six: Vegas 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edeb8056-35d6-4214-9330-92e646cb5a15/sm/ep8207.jpg","duration":3716,"publication_date":"2013-10-17T02:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-3","changefreq":"weekly","video":[{"title":"2013:E42 - Halo HORSE #149","description":"This week's Halo HORSE brings you Ray vs. Jack.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a40189e-eebc-4af2-a88a-efe5fb54acce/sm/ep8205.jpg","duration":296,"publication_date":"2013-10-16T19:32:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-4","changefreq":"weekly","video":[{"title":"2013:E179 - GTA V - Air Jousting","description":"The AH crew are back with more Things to do in GTA V. To quote Ryan, \"it's like chicken with helicopters and guns and no pool.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a58cd87f-ab05-43bf-850a-d6d699ed43dd/sm/ep8203.jpg","duration":263,"publication_date":"2013-10-16T14:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-2","changefreq":"weekly","video":[{"title":"2013:E41 - Dead Rising","description":"Jack and Ray go over five facts on Dead Rising.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d02336ce-f7c6-4c6f-b727-6cb331069cca/sm/ep8201.jpg","duration":225,"publication_date":"2013-10-15T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-3","changefreq":"weekly","video":[{"title":"2013:E41 - Trials Files #77","description":"Geoff and Jack are back with more Trials Files with a medium difficulty map \"Blue Angel.\"","player_loc":"https://roosterteeth.com/embed/trials-files-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5387457-bb55-4271-8add-789e364812f3/sm/ep8200.jpg","duration":81,"publication_date":"2013-10-15T19:12:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013","changefreq":"weekly","video":[{"title":"2013:E39 - Week #183","description":"The AH crew enjoy fighting in the office as Geoff and Jack bring you some news and updates for this week's AHWU. Oh and there is a new Achieve shirt, check it out!","player_loc":"https://roosterteeth.com/embed/ahwu-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d29a1cbf-4171-40e4-be1a-5a4945bab27f/sm/ep8199.jpg","duration":375,"publication_date":"2013-10-14T20:06:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-5","changefreq":"weekly","video":[{"title":"2013:E159 - Cloudberry Kingdom Part 3","description":"AH crew continues their journey to a magical land filled with adventure and pain in Let's Play - Cloudberry Kingdom Part 3.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ad66499-7086-48f0-9d14-ed8c3b90a70d/sm/ep8198.jpg","duration":2275,"publication_date":"2013-10-14T20:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-4","changefreq":"weekly","video":[{"title":"2013:E158 - GTA V Free Play","description":"The AH crew are back with more Let's Play GTA V! In this week's Let's Play the guys want to pick up tow trucks with a Cargobob, but can't seem to find tow trucks. Their next idea Crash stuff at Michael's building and blow stuff up.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6b167d5-6f18-458f-8811-c69bdfaa768c/sm/ep8197.jpg","duration":2750,"publication_date":"2013-10-14T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013","changefreq":"weekly","video":[{"title":"2013:E157 - Minecraft - Episode 72 - Galacticraft Part 1","description":"Geoff, Ryan, Michael, Gavin, Jack, and Ray attempt to go to the moon in this week's Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16cb2a7d-a65e-4ee9-8b40-5b8c9ca66bc1/sm/ep8193.jpg","duration":1784,"publication_date":"2013-10-12T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013","changefreq":"weekly","video":[{"title":"2013:E23 - Recap for the Week of September 30th, 2013","description":"Michael, Gavin, and the best of the worst for the week of September 30th!","player_loc":"https://roosterteeth.com/embed/game-fails-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/336199d2-fb71-488d-ad82-a5004129e728/sm/ep8192.jpg","duration":140,"publication_date":"2013-10-11T19:36:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-tornado","changefreq":"weekly","video":[{"title":"2013:E194 - Game Night - Tornado","description":"Geoff and Caleb bring you Game Night \"Tornado\" and Gavin says \"WHAAA--T IS GAME NIGHT\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-tornado","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4910092c-abd5-4175-a188-8fea77ae206d/sm/ep8191.jpg","duration":96,"publication_date":"2013-10-11T18:45:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-52","changefreq":"weekly","video":[{"title":"2013:E41 - Distraction","description":"This week, Michael spreads his little wings in the online flash game, Distraction. Hide your fruit, the birds are coming...","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c458da81-8b63-4e6d-bb51-aaf534eccc40/sm/ep8189.jpg","duration":241,"publication_date":"2013-10-10T23:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-42","changefreq":"weekly","video":[{"title":"2013:E41 - Trials Evolution - Achievement PIG #78","description":"Geoff vs. Gavin. Who will be the victor in this week's Trials PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae12033d-840a-4c62-88fe-16fe10eaefa9/sm/ep8188.jpg","duration":177,"publication_date":"2013-10-10T20:32:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-42","changefreq":"weekly","video":[{"title":"2013:E32 - Episode 32: Ryan vs. Jack","description":"It's Jack's turn to challenge Ryan, will his choice bring him victory in this week's VS Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03b7045e-c95b-4adf-8800-d8b9cf85c0f3/sm/ep8186.jpg","duration":928,"publication_date":"2013-10-10T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-212","changefreq":"weekly","video":[{"title":"2013:E156 - Splinter Cell Blacklist Co-op Part 2","description":"Watch the second installment of Let's Play - Splinter Cell Blacklist Co-op.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-212","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":2971,"publication_date":"2013-10-10T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-42","changefreq":"weekly","video":[{"title":"2013:E41 - Halo HORSE #148","description":"This week's Halo HORSE brings you Jack vs. Ryan.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab1b6484-3183-45c3-a976-9f39921f0396/sm/ep8183.jpg","duration":182,"publication_date":"2013-10-09T23:45:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-208","changefreq":"weekly","video":[{"title":"2013:E155 - Skate 3","description":"Geoff, Jack, Ryan, Gavin, and Ray fall and hurt themselves in Let's Play Skate 3.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-208","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10fa9a9b-7946-45fb-9620-515961499725/sm/ep8182.jpg","duration":2145,"publication_date":"2013-10-09T18:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-49","changefreq":"weekly","video":[{"title":"2013:E178 - GTA V - Demolition Derby X","description":"The AH Crew are back with more Demolition Derby, but this time in Grand Theft Auto V.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/960e2a20-e9be-4fd8-9a92-100541d4e78b/sm/ep8180.jpg","duration":396,"publication_date":"2013-10-09T15:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-205","changefreq":"weekly","video":[{"title":"2013:E154 - Let's Build in Minecraft - Ice Cube Part 2","description":"Geoff and Gavin are back with the second part of Let's Build in Minecraft - Ice Cube.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-205","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb49223-708a-4cdb-8ba5-1761e65bfe2d/sm/ep8179.jpg","duration":1912,"publication_date":"2013-10-08T23:13:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-47","changefreq":"weekly","video":[{"title":"2013:E40 - Trials Files #76","description":"Geoff and \"special guest\" Ray Narvaez Jr., take a look at a classic game, re-imagined in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2817b9bf-3ecc-43cf-b2ba-c90b3826009a/sm/ep8176.jpg","duration":116,"publication_date":"2013-10-08T19:09:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-46","changefreq":"weekly","video":[{"title":"2013:E38 - Week #182","description":"The AH crew enjoy pushing one another in the office as Geoff and Jack bring you some news and updates for this week's AHWU. Oh and there is a new AH shirt, check it out!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eb5c7b6-71f7-4017-a797-5e49facabee0/sm/ep8175.jpg","duration":264,"publication_date":"2013-10-07T19:50:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-201","changefreq":"weekly","video":[{"title":"2013:E153 - GTA V Part 2","description":"Watch the second installment of Geoff, Jack, Michael, Gavin, Ray, Ryan and Kerry playing GTA online together for the first time.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-201","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77133c5d-1e9e-4aaf-98b1-5fe65528e1a8/sm/ep8174.jpg","duration":3112,"publication_date":"2013-10-07T19:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-29","changefreq":"weekly","video":[{"title":"2013:E22 - Recap for the Week of September 23rd, 2013 ","description":"Ray, Kerry, and the best of the worst for the week of September 23rd!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f03ae85-769f-4e8b-a76d-bba21885d2af/sm/ep8170.jpg","duration":210,"publication_date":"2013-10-04T20:21:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-196","changefreq":"weekly","video":[{"title":"2013:E152 - Minecraft - Episode 71 - Maze In Buckingham Palace","description":"AH takes a trip across the pond to visit Buckingham Palace (and to win the Tower of Pimps) in Minecraft for the Xbox 3","player_loc":"https://roosterteeth.com/embed/lets-play-2013-196","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d78d2918-ac26-4d4d-8f2c-b71f77cc7f93/sm/ep8169.jpg","duration":1637,"publication_date":"2013-10-04T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-watcher-flood","changefreq":"weekly","video":[{"title":"2013:E193 - Game Night - Watcher Flood","description":"In this week's Game Night, Geoff and Caleb discuss Watcher Flood and Michael helps Gavin out by asking the question in everyone's mind: \"WHAT IS GAME NIGHT!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-watcher-flood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40d26e6f-7dcb-486e-9010-60b8d9bd5f8c/sm/ep8168.jpg","duration":85,"publication_date":"2013-10-04T19:32:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-37","changefreq":"weekly","video":[{"title":"2013:E31 - Episode 31: Michael vs. Ryan","description":"Ryan throws this week's challenge Michael's way. Can the mad scientist be sent back to his lab again","player_loc":"https://roosterteeth.com/embed/vs-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe60bec4-9ed8-4b87-856f-763f709b8b03/sm/ep8165.jpg","duration":680,"publication_date":"2013-10-04T01:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-46","changefreq":"weekly","video":[{"title":"2013:E40 - Paper Sky","description":"This week, Michael soars through the air in the Xbox Live Indie Game, Paper Sky. You never knew living as a piece of paper was so dangerous.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6e2fb97-0e57-42e2-888c-63fbe3143417/sm/ep8164.jpg","duration":282,"publication_date":"2013-10-04T00:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-37","changefreq":"weekly","video":[{"title":"2013:E40 - Trials Evolution - Achievement PIG #77","description":"Jack and Geoff play Trials PIG and Geoff cries. (And drinks.)","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc4885b6-a52d-454e-b4f1-e464c8040370/sm/ep8163.jpg","duration":182,"publication_date":"2013-10-03T21:49:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-187","changefreq":"weekly","video":[{"title":"2013:E150 - GTA V","description":"Geoff, Jack, Michael, Gavin, Ray, Ryan and Kerry are all finally in GTA online together! Watch them as they set foot for the first time in their lovely new world.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-187","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8f51224-8e92-4456-825a-8c6a18f6a96a/sm/ep8161.jpg","duration":2094,"publication_date":"2013-10-02T23:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-44","changefreq":"weekly","video":[{"title":"2013:E177 - GTA V - Friendly Fire","description":"Michael and Geoff show you how to annoy the military in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a7530dd-3b18-4a16-9b86-4c7a73fba754/sm/ep8160.jpg","duration":269,"publication_date":"2013-10-02T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-37","changefreq":"weekly","video":[{"title":"2013:E40 - Halo HORSE #147","description":"This week's Halo HORSE brings you Ryan vs. Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/322099ff-eb74-4f3f-a65a-17d63ed8c1ad/sm/ep8159.jpg","duration":258,"publication_date":"2013-10-02T20:09:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-kifflom-guide","changefreq":"weekly","video":[{"title":"2013:E2316 - Grand Theft Auto V - Kifflom! Guide","description":"Ray and Michael show you how to get the \"Kifflom!\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-kifflom-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29d1a3f1-77bf-4e78-8b2d-4c1b5f886e7b/sm/ep8157.jpg","duration":596,"publication_date":"2013-10-02T17:34:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-43","changefreq":"weekly","video":[{"title":"2013:E39 - Trials Files #75","description":"Geoff and Jack take a look at a Prometheus themed map in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd8be1e3-1c84-4155-bf36-7a4642165e56/sm/ep8156.jpg","duration":112,"publication_date":"2013-10-01T22:52:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-35-ways-to-die-in-grand-theft-auto-v","changefreq":"weekly","video":[{"title":"2013:E192 - 35 Ways to Die in Grand Theft Auto V","description":"Let's see if you can name all the ways you can die in GTA V. AH gives you 35 different ways.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-35-ways-to-die-in-grand-theft-auto-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7a965fa-a398-4e58-a3a2-8e0d9b7c3eaf/sm/ep8155.jpg","duration":260,"publication_date":"2013-10-01T20:20:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-181","changefreq":"weekly","video":[{"title":"2013:E149 - Rainbow Six: Vegas","description":"The AH team follows a new Rainbow team that is dispatched to Las Vegas. Their task To defeat international terrorists that are repeatedly attacking key locations in the city.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-181","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8de36b1-3602-431d-adc5-e75ba9078ecf/sm/ep8154.jpg","duration":3169,"publication_date":"2013-10-01T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-178","changefreq":"weekly","video":[{"title":"2013:E148 - Let's Build in Minecraft - Ice Cube Part 1","description":"You know the drill, Geoff and Gavin build stuff in Minecraft and JJ edits it.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-178","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c680440b-42b3-4226-b6ee-b8f6c46dc93f/sm/ep8153.jpg","duration":1467,"publication_date":"2013-10-01T19:53:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-41","changefreq":"weekly","video":[{"title":"2013:E39 - BioShock Infinite Part 2","description":"Jack and Gavin go over another five more facts on Bioshock Infinite.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8049629-94f6-4e30-acd1-20f98ae6b715/sm/ep8152.jpg","duration":222,"publication_date":"2013-10-01T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-october-2013","changefreq":"weekly","video":[{"title":"2013:E191 - Coming Soon - October 2013","description":"Kdin is back with a ton of new games and other information for the month of October. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-october-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5ddfd6a-0e26-4568-89cc-c1c2a8c900d9/sm/ep8151.jpg","duration":765,"publication_date":"2013-10-01T16:45:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-38","changefreq":"weekly","video":[{"title":"2013:E37 - Week #181","description":"Geoff and Jack are back with some news and updates for this week's AHWU.\r\n\r\nThis week's AHWU is brought to you by Shadow Warrior. Watch the trailer for Shadow Warrior: http://bit.ly/16DC2Bh and save 10% by checking out this link: http://bit.ly/19cUJMc","player_loc":"https://roosterteeth.com/embed/ahwu-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da4b63ce-cfb3-4abc-96b6-6b3cf4a86e37/sm/ep8150.jpg","duration":271,"publication_date":"2013-09-30T19:56:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-174","changefreq":"weekly","video":[{"title":"2013:E147 - GTA IV: Witness Protection Part 2","description":"AH crew is back with the second installment of GTA IV: Witness Protection.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c31bfcad-67bb-4231-9c25-56d1332229a3/sm/ep8149.jpg","duration":2589,"publication_date":"2013-09-30T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grand-theft-auto-v-the-last-one-bonus-mission","changefreq":"weekly","video":[{"title":"2013:E190 - Grand Theft Auto V - The Last One Bonus Mission","description":"Ray and Michael show you how to unlock \"The Last One\" bonus mission in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grand-theft-auto-v-the-last-one-bonus-mission","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/681a59ef-0021-4381-9960-8db32d79e591/sm/ep8148.jpg","duration":147,"publication_date":"2013-09-30T18:38:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-three-man-army-guide","changefreq":"weekly","video":[{"title":"2013:E2315 - Grand Theft Auto V - Three Man Army Guide","description":"Ray and Michael show you how to get the \"Three Man Army\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-three-man-army-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/795be066-7711-473e-8371-9f689588d1ff/sm/ep8147.jpg","duration":76,"publication_date":"2013-09-30T17:25:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-171","changefreq":"weekly","video":[{"title":"2013:E146 - Minecraft - Episode 70 - Quest for Horses Part 3","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan are back with the third installment of \"Quest for Horses.\" Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c7ac887-2a0a-4ec2-9918-a6237d2cb87a/sm/ep8143.jpg","duration":1942,"publication_date":"2013-09-27T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-43","changefreq":"weekly","video":[{"title":"2013:E39 - Volume 158","description":"It's Friday, which means it is time for your weekly dose of failure. Enjoy Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f0111b1-0ab0-4c88-8e54-8b2e97c3b7ea/sm/ep8142.jpg","duration":212,"publication_date":"2013-09-27T17:21:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-mini-racers","changefreq":"weekly","video":[{"title":"2013:E189 - Game Night - Mini Racers","description":"In this week's Game Night, Geoff and Caleb discuss Mini Racers and Gavin asks the question in everyone's mind: \"WHAT IS GAME NIGHT!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-mini-racers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b392298d-1174-41d7-b93d-2ddd8eaac712/sm/ep8141.jpg","duration":90,"publication_date":"2013-09-27T16:59:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-42","changefreq":"weekly","video":[{"title":"2013:E39 - Shadow Warrior","description":"Michael embraces his inner samurai and slices his way through his enemies in Shadow Warrior for Steam.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82c1d01f-0c81-4e75-85ee-84d2b2eb9667/sm/ep8140.jpg","duration":255,"publication_date":"2013-09-26T21:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-33","changefreq":"weekly","video":[{"title":"2013:E30 - Episode 30: Michael vs. Gavin","description":"It's Gavin's turn to challenge Michael. Can Gavin beat Michael and keep the belt Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c518906e-22a7-4247-851f-de4454277a60/sm/ep8137.jpg","duration":1612,"publication_date":"2013-09-26T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-34","changefreq":"weekly","video":[{"title":"2013:E39 - Trials Evolution - Achievement PIG #76","description":"Geoff vs. Gavin. Who will be the victor in this week's Trials PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a47d06a-3c4d-4463-b7d5-ab58c6f9401d/sm/ep8139.jpg","duration":202,"publication_date":"2013-09-26T20:08:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-a-lot-of-cheddar-guide","changefreq":"weekly","video":[{"title":"2013:E2314 - Grand Theft Auto V - A Lot of Cheddar Guide","description":"Ray and Michael show you how to get the \"A Lot of Cheddar\" achievement in Grand Theft Auto for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-a-lot-of-cheddar-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/421f2273-7690-47c5-a296-fa5c6f45eff8/sm/ep8138.jpg","duration":98,"publication_date":"2013-09-26T19:27:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-24","changefreq":"weekly","video":[{"title":"2013:E61 - Grand Theft Auto V - Bigfoot Easter Egg","description":"Ray and Michael show where to possibly find Bigfoot in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b402ea82-6bfc-4620-83dd-bedd04b59fca/sm/ep8136.jpg","duration":57,"publication_date":"2013-09-26T17:46:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-39","changefreq":"weekly","video":[{"title":"2013:E176 - GTA V - Swingset X","description":"Michael and Geoff show you how to catapult your vehicle into the sky in Grand Theft Auto V for the Xbox 360. Magic gates are so wizard.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0274c3ba-e8a7-43bb-b343-4bf3086facf3/sm/ep8134.jpg","duration":268,"publication_date":"2013-09-25T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-162","changefreq":"weekly","video":[{"title":"2013:E145 - Splinter Cell: Blacklist","description":"Today's Let's Play features Geoff, Ryan, Jack, Gavin, Michael, and Ray playing some Splinter Cell Blacklist. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfaa15e1-915c-4a00-a89f-095d054cfa49/sm/ep8133.jpg","duration":3034,"publication_date":"2013-09-25T20:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-34","changefreq":"weekly","video":[{"title":"2013:E39 - Halo HORSE #146","description":"This week's Halo HORSE (really Achievement PIG), brings you Ray vs. Jack.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c517bfb-7ec8-44f9-a351-332eda7843e0/sm/ep8132.jpg","duration":206,"publication_date":"2013-09-25T19:29:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-158","changefreq":"weekly","video":[{"title":"2013:E144 - Let's Build - No Glory Hole","description":"Geoff and Gavin bring you another fascinating adventure of building stuff in Minecraft. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fbc1c35-fee7-490b-8b95-2233929c31e9/sm/ep8130.jpg","duration":2152,"publication_date":"2013-09-24T22:21:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-23","changefreq":"weekly","video":[{"title":"2013:E60 - Grand Theft Auto V - No Country For Old Men Easter Egg","description":"Ray and Geoff show you where to find the \"No Country For Old Men Easter Egg\"in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ff39d90-e5bc-4d4d-ad13-61a1cfcfd6ef/sm/ep8129.jpg","duration":83,"publication_date":"2013-09-24T19:04:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-37","changefreq":"weekly","video":[{"title":"2013:E38 - BioShock Infinite","description":"Jack and Ray go over cinco factos of BioShock Infinite.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcea0147-3ea0-4766-bc5d-2319a6828a93/sm/ep8128.jpg","duration":282,"publication_date":"2013-09-24T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-22","changefreq":"weekly","video":[{"title":"2013:E59 - Grand Theft Auto V - Ghost Easter Egg","description":"Ray and Geoff show you how to find the \"Ghost\" Easter Egg in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbfdf617-42ce-449b-aba4-1c64e2154a92/sm/ep8127.jpg","duration":96,"publication_date":"2013-09-24T17:08:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-38","changefreq":"weekly","video":[{"title":"2013:E38 - Trials Files #74","description":"Geoff and Jack are back with some more Trials Files in Trials Evolution for the Xbox 360 Arcade.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02239d06-538c-45a1-bf19-fd318b203c25/sm/ep8126.jpg","duration":111,"publication_date":"2013-09-24T16:53:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-154","changefreq":"weekly","video":[{"title":"2013:E143 - GTA IV Witness Protection","description":"AH tries to silence some witnesses (and their burning desire for GTA V Let's Plays).","player_loc":"https://roosterteeth.com/embed/lets-play-2013-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5223830d-cdc3-499b-9c57-13d1a13c588f/sm/ep8124.jpg","duration":2285,"publication_date":"2013-09-23T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-a-mystery-solved-guide","changefreq":"weekly","video":[{"title":"2013:E2313 - Grand Theft Auto V - A Mystery, Solved Guide","description":"Ray and Geoff show you how to get the \"A Mystery, Solved\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-a-mystery-solved-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12fbbcf5-95fc-40d2-896e-e46892100f78/sm/ep8123.jpg","duration":113,"publication_date":"2013-09-23T20:03:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-34","changefreq":"weekly","video":[{"title":"2013:E36 - Week #180","description":"Geoff and Jack are back with some news and updates for this week's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38b901cd-2347-4671-bc61-b55b3d3ec88a/sm/ep8122.jpg","duration":304,"publication_date":"2013-09-23T19:58:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grand-theft-auto-v-tp-industries-arms-race","changefreq":"weekly","video":[{"title":"2013:E188 - Grand Theft Auto V - TP Industries Arms Race","description":"Ray and Geoff show you how to get the \"TP Industries Arms Race\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grand-theft-auto-v-tp-industries-arms-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34644a9c-32da-4c9c-bc9f-5e80b20a92d2/sm/ep8121.jpg","duration":115,"publication_date":"2013-09-23T18:54:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-jenga-smeef","changefreq":"weekly","video":[{"title":"2013:E187 - Game Night - Jenga Smeef ","description":"In this week's Game Night, Geoff and Caleb discuss Jenga Smeef and Gavin asks the question in everyone's mind: \"WHAT IS GAME NIGHT!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-jenga-smeef","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03fd34d9-69ba-4673-8a53-450f1c8baa6b/sm/ep8118.jpg","duration":74,"publication_date":"2013-09-20T20:59:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-wanted-alive-or-alive-guide","changefreq":"weekly","video":[{"title":"2013:E2312 - Grand Theft Auto V - Wanted: Alive Or Alive Guide","description":"Ray and Geoff show you how to get the \"Wanted: Alive Or Alive\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-wanted-alive-or-alive-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/513cb849-aec3-4c62-bea8-03c6102aefa8/sm/ep8116.jpg","duration":145,"publication_date":"2013-09-20T17:25:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-147","changefreq":"weekly","video":[{"title":"2013:E142 - Fast & Furious: Showdown","description":"Geoff and Gavin play a little Fast & Furious: Showdown in this special Let's Play. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e4ba1ad-10bb-4262-af24-897b98a8513e/sm/ep8115.jpg","duration":2519,"publication_date":"2013-09-20T01:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-35","changefreq":"weekly","video":[{"title":"2013:E38 - Grand Theft Auto V","description":"This week, Michael decides to take the day off and catch some much needed R&R in Grand Theft Auto V for the Xbox 360. Isn't life grand","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/631f3d9c-5920-4fdc-8492-44fd7e4eb7af/sm/ep8114.jpg","duration":184,"publication_date":"2013-09-19T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-28","changefreq":"weekly","video":[{"title":"2013:E38 - Trials Evolution - Achievement PIG #75","description":"Ray vs. Jack. Who will win this week's Trails PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66f70dbd-a085-4844-9476-6820af1d724a/sm/ep8113.jpg","duration":190,"publication_date":"2013-09-19T18:54:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-28","changefreq":"weekly","video":[{"title":"2013:E29 - Episode 29: Ray vs. Michael","description":"Michael decides to think outside the box and challenges Ray to a game that will force him to try to get nimble.","player_loc":"https://roosterteeth.com/embed/vs-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/842e8882-9759-42c7-87ad-41338e10b89e/sm/ep8112.jpg","duration":794,"publication_date":"2013-09-19T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trading-pure-alpha-guide","changefreq":"weekly","video":[{"title":"2013:E2309 - Trading Pure Alpha Guide","description":"Ray and Michael show you how to get the \"Trading Pure Alpha\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trading-pure-alpha-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ddb1776-6df7-4212-91ff-7f917de7b914/sm/ep8108.jpg","duration":79,"publication_date":"2013-09-19T15:03:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-137","changefreq":"weekly","video":[{"title":"2013:E141 - Diablo 3","description":"Jack, Geoff, Ryan, and Michael do some dungeon crawling in the Xbox 360 version of Diablo 3. Mogar returns.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/209c8269-4c51-47c3-9854-ea34f445dde1/sm/ep8107.jpg","duration":1639,"publication_date":"2013-09-18T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-28","changefreq":"weekly","video":[{"title":"2013:E38 - Halo HORSE #145","description":"The Martinizer and Miles face off to see who will be the third place finisher of the Halo HORSE office tournament. Who do you think will pull it out Stay tuned for a thriller!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cebfcd1-c72a-4408-8ab8-9ba78a200713/sm/ep8106.jpg","duration":318,"publication_date":"2013-09-18T20:57:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-altruist-acolyte-guide","changefreq":"weekly","video":[{"title":"2013:E2308 - Grand Theft Auto V - Altruist Acolyte Guide","description":"Ray and Geoff show you how to get the \"Altruist Acolyte\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-altruist-acolyte-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd83f5d6-9766-4a16-bd72-a1e858879218/sm/ep8104.jpg","duration":118,"publication_date":"2013-09-18T18:42:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-33","changefreq":"weekly","video":[{"title":"2013:E175 - GTA V - Front Flip For Style","description":"Michael and Geoff show you how to gracefully perform a front flip in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fbf4420-347c-45c1-b481-ae59bf02f34a/sm/ep8103.jpg","duration":220,"publication_date":"2013-09-18T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-19","changefreq":"weekly","video":[{"title":"2013:E58 - Grand Theft Auto V - Alien Easter Egg","description":"Geoff and Ray show you where to find a frozen creature from beyond our solar system in GTA V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad97ed3e-5098-4ec7-9f8e-b9c9e2ea1618/sm/ep8101.jpg","duration":90,"publication_date":"2013-09-17T18:31:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-29","changefreq":"weekly","video":[{"title":"2013:E37 - Spyro the Dragon","description":"Jack and Ray go over five facts of Spyro the Dragon for PlayStation.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d97b882-4979-4820-a524-0d230c4a4bf2/sm/ep8100.jpg","duration":171,"publication_date":"2013-09-17T17:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-30","changefreq":"weekly","video":[{"title":"2013:E37 - Trials Files #73","description":"Geoff and Jack are back with some more Trials Files in Trials Evolution for the Xbox 360 Arcade.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a83b81c1-e129-4fe9-bf0b-4814772427a1/sm/ep8099.jpg","duration":88,"publication_date":"2013-09-17T16:24:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grand-theft-auto-v-out-of-your-depth-guide","changefreq":"weekly","video":[{"title":"2013:E2307 - Grand Theft Auto V - Out of Your Depth Guide","description":"Ray and Geoff show you how to get \"Out of Your Depth\" achievement in Grand Theft Auto V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grand-theft-auto-v-out-of-your-depth-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c6acead-4348-4d92-9d57-c3ee282852d8/sm/ep8098.jpg","duration":58,"publication_date":"2013-09-17T16:03:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-few-gears-loose-pogo-a-go-go-guides","changefreq":"weekly","video":[{"title":"2013:E2306 - A Few Gears Loose, Pogo A Go Go Guides","description":"Ray and Michael show you how to get the \"A Few Gears Loose\" and \"Pogo A Go Go\" achievements in DuckTales: Remastered for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-few-gears-loose-pogo-a-go-go-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6672e575-48d6-4e70-90e4-aee8569f684e/sm/ep8097.jpg","duration":140,"publication_date":"2013-09-17T14:50:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-129","changefreq":"weekly","video":[{"title":"2013:E139 - GTA V: Campaign","description":"Michael and Kerry stay up way past their bedtimes and put some bustas in their place in Grand Theft Auto V for the Xbox 360. Dreams do come true!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c59dc24a-fa1d-4696-a4e8-64eb2d7c980f/sm/ep8096.jpg","duration":4934,"publication_date":"2013-09-17T09:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-127","changefreq":"weekly","video":[{"title":"2013:E138 - GTA IV Cops 'n Crooks Part 4","description":"In this week's Let's Play GTA IV Jack, Ryan and Geoff, Gavin, Michael, and Ray are back with the fourth installment of Cops n' Crooks.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e28bbe5b-f1e7-4e77-a71c-7a0b21eb1c9e/sm/ep8092.jpg","duration":2049,"publication_date":"2013-09-16T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-118","changefreq":"weekly","video":[{"title":"2013:E137 - Payday 2 Podcast Crew Part 2","description":"Check out the second installment of the Let's Play - Payday 2 from the Podcast Crew. \n\nCheck out the second installment of the Let's Play - Payday 2 from the Podcast Crew. \n\nWatch the first part of the Let's Play - Payday 2:","player_loc":"https://roosterteeth.com/embed/lets-play-2013-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/835d10c4-2fdf-48dd-bb37-b25dff70bba6/sm/ep8084.jpg","duration":1885,"publication_date":"2013-09-14T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-19","changefreq":"weekly","video":[{"title":"2013:E21 - Recap for the Week of September 2, 2013","description":"Michael and Ray go over the game fails for the week of 9/02","player_loc":"https://roosterteeth.com/embed/game-fails-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9cf4af1-111d-444b-830d-a2b3a0969404/sm/ep8088.jpg","duration":164,"publication_date":"2013-09-13T18:56:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ducktales-remastered-bless-me-bagpipes-guide","changefreq":"weekly","video":[{"title":"2013:E2305 - DuckTales: Remastered - Bless Me Bagpipes Guide","description":"X-Ray and Vav show you how to get the \"Bless Me Bagpipes \" achievement in DuckTales: Remastered for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ducktales-remastered-bless-me-bagpipes-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40f46e51-9ac4-4094-b24c-156f0f3a6c56/sm/ep8087.jpg","duration":125,"publication_date":"2013-09-13T17:44:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-119","changefreq":"weekly","video":[{"title":"2013:E136 - Minecraft - Episode 68 - Quest for Horses","description":"This week the AH crew hop into the PC version of Minecraft to try and find horses. Watch as they fumble around in the crafting menu like idiots!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf67fea3-fa98-4f38-aabd-90826be8abc2/sm/ep8086.jpg","duration":3046,"publication_date":"2013-09-13T17:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-trench-warfare","changefreq":"weekly","video":[{"title":"2013:E186 - Game Night - Trench Warfare","description":"In this week's Game Night, Gavin and Caleb discuss Trench Warfare and Michael pitches in and asks the question in everyone's mind: \"WHAT IS GAME NIGHT!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-trench-warfare","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa06e11f-e55f-448b-a3f0-148b677bb1c1/sm/ep8083.jpg","duration":94,"publication_date":"2013-09-13T15:26:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-28","changefreq":"weekly","video":[{"title":"2013:E37 - Pocketbike Racer","description":"This week, Michael revisits an old friend in the Burger King game, Pocketbike Racer for the Xbox 360. He's almost creepier than King Ryan....almost.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffd69bbd-8533-400b-85fe-b67cebfd2201/sm/ep8082.jpg","duration":389,"publication_date":"2013-09-13T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-27","changefreq":"weekly","video":[{"title":"2013:E31 - Cloudberry Kingdom Pt. 2","description":"The AH Crew continue stressing over Cloudberry Kingdom in this week's Behind the Scenes.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3c3409c-c50d-4d10-999c-4d68055ecca4/sm/ep8081.jpg","duration":250,"publication_date":"2013-09-12T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-23","changefreq":"weekly","video":[{"title":"2013:E28 - Episode 28: Ray vs. Jack","description":"It's VS...which means Ray and Jack will play for the beloved belt. Can Jack beat Ray and keep the belt Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/794f351b-66c3-48c0-aa71-ef90f32c6f5a/sm/ep8080.jpg","duration":528,"publication_date":"2013-09-12T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-114","changefreq":"weekly","video":[{"title":"2013:E135 - Amnesia: A Machine For Pigs","description":"Michael and Gavin bravely venture into a swine filled horror. Good luck, boys.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589eaf65-0f41-4b23-8530-e3bc1a65c9b7/sm/ep8079.jpg","duration":2670,"publication_date":"2013-09-12T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-113","changefreq":"weekly","video":[{"title":"2013:E134 - Teenage Mutant Ninja Turtles OOTS","description":"Geoff, Michael, Ray, and Gavin learn to play Teenage Mutant Ninja Turtles: Out of the Shadows in another installment of Let's Play.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81952901-6904-42f9-b2ab-94e333629861/sm/ep8078.jpg","duration":1414,"publication_date":"2013-09-12T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ducktales-remastered-3-achievements","changefreq":"weekly","video":[{"title":"2013:E2304 - DuckTales: Remastered - 3 Achievements","description":"Ray and Michael show you how to get the \"It's A Duck Blur\", \"Look Ma, No Spats!\" and \"Score to Settle\" achievements in DuckTales: Remastered for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ducktales-remastered-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14fa0bfb-b3a2-46d1-ae4c-ac3f7132bd14/sm/ep8077.jpg","duration":144,"publication_date":"2013-09-12T18:09:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-22","changefreq":"weekly","video":[{"title":"2013:E37 - Trials Evolution - Achievement PIG #74","description":"Ray vs. Geoff. Who will be the victor in this week's Trials PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6d99395-6875-4166-b762-84a43e5de594/sm/ep8076.jpg","duration":248,"publication_date":"2013-09-12T15:21:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-22","changefreq":"weekly","video":[{"title":"2013:E37 - Halo HORSE #144","description":"This week's Halo HORSE, brings you Ray vs. Ryan. Just a hint, the one with the name who starts with an R wins.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2857ba10-2752-4e2c-8faf-000c6447cf62/sm/ep8073.jpg","duration":250,"publication_date":"2013-09-11T19:28:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ducktales-remastered-sink-or-swim-healthy-appetite-guides","changefreq":"weekly","video":[{"title":"2013:E2303 - DuckTales: Remastered - Sink or Swim, Healthy Appetite Guides","description":"Ray and Geoff show you how to get the \"Sink or Swim\" and \"Healthy Appetite\" achievements in DuckTales: Remastered for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ducktales-remastered-sink-or-swim-healthy-appetite-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf9817b7-a7d2-4e36-83d0-64f3b5624cc7/sm/ep8072.jpg","duration":102,"publication_date":"2013-09-11T19:03:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-26","changefreq":"weekly","video":[{"title":"2013:E174 - GTA IV - Taxi","description":"In this week's Things to do in, Geoff and Gavin attempt to hit people with taxi cab billboard signs in Grand Theft Auto IV. \n\nAlso watch as Geoff, Gavin, and Michael first attempt to create this Things to do in, but fail miserably in Let's Fail - Grand Theft Auto IV - Taxi:\nhttp://ah.roosterteeth.com/archive/id=8068","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbea1533-15f1-4ccf-92ad-6b40eceaec5c/sm/ep8069.jpg","duration":220,"publication_date":"2013-09-11T17:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-106","changefreq":"weekly","video":[{"title":"2013:E132 - Let's Build in Minecraft - Mark Nutt Training","description":"Geoff and Gavin do some archery and keep building in Minecraft in this week's Let's Build.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c6aae9b-3c2a-41c1-ae0e-9ae825eb3a0d/sm/ep8067.jpg","duration":1126,"publication_date":"2013-09-10T19:37:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-25","changefreq":"weekly","video":[{"title":"2013:E36 - Twisted Metal","description":"Geoff and Michael talk about Twisted Metal in this week's Five Facts.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03dacb5-3822-40e0-9cd8-ee1be49a04c4/sm/ep8066.jpg","duration":300,"publication_date":"2013-09-10T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-25","changefreq":"weekly","video":[{"title":"2013:E36 - Trials Files #72","description":"Geoff and Jack are back with some more Trials Files in Trials Evolution for the Xbox 360 Arcade.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d4aa7ee-7026-4911-bb36-00cd30b0e974/sm/ep8065.jpg","duration":112,"publication_date":"2013-09-10T17:51:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-13","changefreq":"weekly","video":[{"title":"2013:E48 - Total War: Rome 2","description":"Geoff and Ryan take a look at the latest in the Total War series... Rome 2!","player_loc":"https://roosterteeth.com/embed/this-is-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73c33245-9a82-4c46-9c73-4c8728c058eb/sm/ep8061.jpg","duration":310,"publication_date":"2013-09-09T19:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-102","changefreq":"weekly","video":[{"title":"2013:E131 - GTA IV - The Best Stunt Ever","description":"After a little fun with high explosives, AH attempts the BEST... STUNT.... LATELY... err ... EVER! Ever is what I meant.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfcbee30-4f38-42ad-bb57-50ae45036528/sm/ep8060.jpg","duration":2128,"publication_date":"2013-09-09T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-kung-fu-grip-guide","changefreq":"weekly","video":[{"title":"2013:E2301 - Kung Fu Grip Guide","description":"Ray and Michael show you how to get the \"Kung Fu Grip\" achievement in the Origins DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-kung-fu-grip-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c7c8552-238a-4d2e-8c7a-b93d230934c5/sm/ep8059.jpg","duration":88,"publication_date":"2013-09-09T18:30:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-25","changefreq":"weekly","video":[{"title":"2013:E34 - Week #178","description":"The lads and a gent return to give you this week's AHWU! Sweet glasses, Gav.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb68a95-dc5b-492b-80d4-4bd6464a84e0/sm/ep8058.jpg","duration":311,"publication_date":"2013-09-09T18:06:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-97","changefreq":"weekly","video":[{"title":"2013:E130 - Payday 2 Podcast Crew Part 1","description":"The podcast cast and crew gets together to have a rousing match of Payday 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c4bec22-93c3-4ac1-9519-07f07b4ecf5f/sm/ep8052.jpg","duration":1462,"publication_date":"2013-09-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-16","changefreq":"weekly","video":[{"title":"2013:E20 - Recap for the Week of August 26th, 2013","description":"Ray and Michael go over game fails for the week 8/26","player_loc":"https://roosterteeth.com/embed/game-fails-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/541b733c-b9a1-4858-9a20-dade4af6c009/sm/ep8053.jpg","duration":159,"publication_date":"2013-09-06T19:31:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-tc-bounty","changefreq":"weekly","video":[{"title":"2013:E185 - Game Night: Halo 4 - TC Bounty","description":"Ray and Michael show you how to get the \"Master of Disguise\" achievements in the Origins DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-tc-bounty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b477044-363a-49c9-9270-8d63d2d07772/sm/ep8051.jpg","duration":86,"publication_date":"2013-09-06T19:04:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-black-ops-2-master-of-disguise-guide","changefreq":"weekly","video":[{"title":"2013:E2300 - Call of Duty: Black Ops 2 - Master of Disguise Guide ","description":"Ray and Michael show you how to get the \"Master of Disguise\" achievements in the Origins DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-black-ops-2-master-of-disguise-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63a66f06-e7f2-4528-b512-ba0df498bcec/sm/ep8050.jpg","duration":96,"publication_date":"2013-09-06T18:47:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-94","changefreq":"weekly","video":[{"title":"2013:E129 - Minecraft - Episode 67 - Mass Effect Mash-Up Edition","description":"In this special edition of Let's Play Minecraft, the AH crew explore the world of the Mass Effect Mash-up!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ebb0c3f-5ae7-4834-9211-680e156b0474/sm/ep8049.jpg","duration":2913,"publication_date":"2013-09-06T18:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mine-effect-mass-effect-mash-up","changefreq":"weekly","video":[{"title":"2013:E184 - Mine Effect - Mass Effect Mash-Up","description":"Geoff and Brandon explore and compare Mass Effect and the Minecraft Mars Map on Minecraft for Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mine-effect-mass-effect-mash-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5728e0df-1c67-4abe-8c0d-9f3b96885c0f/sm/ep8048.jpg","duration":371,"publication_date":"2013-09-06T17:55:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-23","changefreq":"weekly","video":[{"title":"2013:E36 - Electronic Super Joy","description":"This week on Rage Quit, Michael ventures into the colorful, catchy, and extremely frustrating Steam Indie Game, Electronic Super Joy.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22967880-10b3-48fa-a662-7f7fb26ae134/sm/ep8046.jpg","duration":494,"publication_date":"2013-09-06T00:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-87","changefreq":"weekly","video":[{"title":"2013:E128 - Cloudberry Kingdom Part 2","description":"AH crew continues their journey to a magical land filled with adventure and pain in Let's Play - Cloudberry Kingdom Part 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dde7407-f6e0-4ed8-97be-597c3b829493/sm/ep8042.jpg","duration":2728,"publication_date":"2013-09-05T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-black-ops-2-not-a-gold-digger-all-your-base-guides","changefreq":"weekly","video":[{"title":"2013:E2299 - Call of Duty: Black Ops 2 - Not a Gold Digger, All Your Base Guides","description":"Ray and Michael show you how to get the \"Not a Gold Digger\" and All Your Base\" achievements in the Origins DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-black-ops-2-not-a-gold-digger-all-your-base-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/702b674d-fd7b-456b-8683-db068d59bdaf/sm/ep8045.jpg","duration":199,"publication_date":"2013-09-05T19:41:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-18","changefreq":"weekly","video":[{"title":"2013:E27 - Episode 27: Jack vs. Geoff","description":"Jack beat Gavin in last week's VS. Now it's his turn to try to keep the victor belt by playing against Geoff in this week's VS. Who is going to win this week's round Watch to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6589154a-4ea2-4770-a5db-d572c71f190a/sm/ep8041.jpg","duration":812,"publication_date":"2013-09-05T18:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-18","changefreq":"weekly","video":[{"title":"2013:E36 - Trials Evolution - Achievement PIG #73","description":"Jack vs. Geoff. Who will be the victor in this week's Trials PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bf146d4-0021-4fe3-a8ac-37ecc53da6b2/sm/ep8043.jpg","duration":245,"publication_date":"2013-09-05T17:20:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-23","changefreq":"weekly","video":[{"title":"2013:E173 - Saints Row IV - Fly Like An Eagle","description":"Michael and Geoff are back in Saint's Row IV to show you how you too can fly like an eagle. Seat belts not included.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e33569df-b9ea-4a56-bbfc-f3f9c1de3cf5/sm/ep8039.jpg","duration":196,"publication_date":"2013-09-04T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-19","changefreq":"weekly","video":[{"title":"2013:E36 - Halo HORSE #143","description":"Kerry (sorry, Dragonface) and Lindsay play a little Halo 4 Achievement HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/428eb92e-a7df-4edb-a497-efe5538c02da/sm/ep8038.jpg","duration":185,"publication_date":"2013-09-04T20:09:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-84","changefreq":"weekly","video":[{"title":"2013:E127 - 3D Ultra MiniGolf Adventures Episode 4","description":"This week's Let's Play brings you the fourth installment of Ultra MiniGolf Adventures. Geoff, Michael, Ray, & Ryan are back on the greens attempting to play more aces.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de4a5e6e-7a3e-4eb5-85ea-d0d5da35d4f0/sm/ep8037.jpg","duration":2620,"publication_date":"2013-09-04T19:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-21","changefreq":"weekly","video":[{"title":"2013:E30 - The Desk Strikes Back","description":"Gavin has some desk trouble in this week's Behind the Scenes.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37471594-522e-44b0-b4a3-f5ec0f630e45/sm/ep8036.jpg","duration":185,"publication_date":"2013-09-04T17:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-20","changefreq":"weekly","video":[{"title":"2013:E35 - Trials Files #71","description":"Geoff and Gavin go Kart Racing in today's Trials Files in Trials Evolution for the Xbox 360 Arcade.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0bcd70a-8cb1-44cf-8298-61db9fc7c403/sm/ep8034.jpg","duration":111,"publication_date":"2013-09-03T22:18:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-10","changefreq":"weekly","video":[{"title":"2013:E47 - Rayman Legends","description":"Geoff and Gavin take an in-depth look at the newly released Rayman legends on the Xbox 360.\r\n\r\nYou can purchase the game here: http://ubi.li/2MFJd","player_loc":"https://roosterteeth.com/embed/this-is-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45093f36-5ba5-4655-828f-b586a4ab0e23/sm/ep8033.jpg","duration":527,"publication_date":"2013-09-03T21:53:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-78","changefreq":"weekly","video":[{"title":"2013:E126 - Let's Fail - 3D Ultra Minigolf","description":"Geoff, Michael, Ray, & Ryan attempt to film the next MiniGolf Let's Play when they encounter some slight technical problems. Time for another Let's Fail.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f6c0289-187a-4abc-9451-5ced48cecfc4/sm/ep8032.jpg","duration":1132,"publication_date":"2013-09-03T20:21:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-77","changefreq":"weekly","video":[{"title":"2013:E125 - Let's Build - The Box Game","description":"Geoff and Gavin build what they like to call \"The Box Game\" for a Thing to do in: Minecraft.\r\n\r\nCheck out Things To Do In: Minecraft - Box Game - http://www.youtube.com/watchv=dRT4V0Y-wYc","player_loc":"https://roosterteeth.com/embed/lets-play-2013-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79cd3fbf-f4ed-49e0-ada0-420715992917/sm/ep8031.jpg","duration":960,"publication_date":"2013-09-03T20:17:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-18","changefreq":"weekly","video":[{"title":"2013:E35 - Bejeweled","description":"Franko from AH.com brings you Five Facts from the Bejeweled Series.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/009540b3-08a7-424f-a04e-3dae59e9d03e/sm/ep8030.jpg","duration":335,"publication_date":"2013-09-03T20:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-76","changefreq":"weekly","video":[{"title":"2013:E124 - GTA IV Wanted X","description":"It's like original Wanted... but even LESS blips. Roughly the same amount of talent though.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2fe320c-1618-4591-bc2c-82c50153edcf/sm/ep8029.jpg","duration":1876,"publication_date":"2013-09-02T20:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-18","changefreq":"weekly","video":[{"title":"2013:E33 - Week #177","description":"Most of AH is out for Labor Day, but Geoff, Michael and Lindsay don't care. They're bringing you this week's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf98e612-5e8d-4b33-9e0d-885372e14df7/sm/ep8028.jpg","duration":435,"publication_date":"2013-09-02T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-september-2013","changefreq":"weekly","video":[{"title":"2013:E183 - Coming Soon - September 2013","description":"Kdin is back with a ton of new games and other information for the month of September. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-september-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaa87811-ef49-40bc-b67e-a672c0690aab/sm/ep8027.jpg","duration":619,"publication_date":"2013-09-02T00:30:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-69","changefreq":"weekly","video":[{"title":"2013:E123 - Minecraft - Episode 66 - King Ray Pt. 2","description":"Ray continues being king in this week's Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34bc3f12-75de-412c-a778-667c7cf5bdf1/sm/ep8020.jpg","duration":2742,"publication_date":"2013-08-30T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-72","changefreq":"weekly","video":[{"title":"2013:E122 - Splinter Cell: Blacklist - Spies VS Mercs","description":"Geoff, Ryan, Gavin, and Ray bring you Let's Play Splinter Cell: Blacklist - Spies VS Mercs","player_loc":"https://roosterteeth.com/embed/lets-play-2013-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7d714c3-cba8-4cd6-8f80-cb731ee4330b/sm/ep8021.jpg","duration":2606,"publication_date":"2013-08-30T17:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-16","changefreq":"weekly","video":[{"title":"2013:E26 - Episode 26: Gavin vs. Jack","description":"Gavin is on a roll...will he be able to beat Jack or has it all been a lucky streak","player_loc":"https://roosterteeth.com/embed/vs-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/071bbc2f-6b2c-4507-b0e3-2b114dcef73a/sm/ep8015.jpg","duration":706,"publication_date":"2013-08-29T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-19","changefreq":"weekly","video":[{"title":"2013:E35 - Unicorn Makeout Mania","description":"This week on Rage Quit, Michael smooches his foes to death in the Xbox Live Indie Game, Unicorn Makeout Mania. This is not for the feint of heart.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0298eed-2233-4f24-ad30-e9a7a7ede227/sm/ep8016.jpg","duration":343,"publication_date":"2013-08-29T19:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-6","changefreq":"weekly","video":[{"title":"2013:E46 - Madden NFL 25","description":"Ray and Geoff prepare for the upcoming football season by checking out Madden NFL 25 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7497860-e5c2-4e28-b1c5-fb2615b13991/sm/ep8014.jpg","duration":286,"publication_date":"2013-08-29T15:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-14","changefreq":"weekly","video":[{"title":"2013:E35 - Trials Evolution - Achievement PIG #72","description":"Ryan vs. Michael. Who will be the victor in this week's Trails PIG","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30d28771-19a1-491b-9d51-a2915fc86303/sm/ep8012.jpg","duration":230,"publication_date":"2013-08-29T14:27:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-64","changefreq":"weekly","video":[{"title":"2013:E121 - Rayman Legends","description":"Jack, Ray, Michael, and Gavin play Rayman Legends in this week's Let's Play Wednesdays. \n\nCheck out the game here: http://rayman.ubi.com/legends/en-us/home/index.asp...\n\nYou can purchase it here: http://ubi.li/2MFJd","player_loc":"https://roosterteeth.com/embed/lets-play-2013-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77c2ea6f-e852-43ee-a666-2789f44c3aa3/sm/ep8011.jpg","duration":2660,"publication_date":"2013-08-28T18:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-18","changefreq":"weekly","video":[{"title":"2013:E172 - Saint's Row IV - Assisted Skydiving","description":"Michael and Geoff show you how to skydive in Saint's Row IV.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb5649c3-55e1-410d-af48-2943e3fe5595/sm/ep8010.jpg","duration":149,"publication_date":"2013-08-28T17:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-8","changefreq":"weekly","video":[{"title":"2013:E57 - Call of Duty: Black Ops 2 - Origins Easter Egg Song","description":"Ray and Geoff show you where to find the new Easter Egg Song in the Apocalypse DLC for Call of Duty: Black Ops 2 for the Xbox 360.\r\n\r\n(Link to full song - http://www.youtube.com/watchv=EVyS9hoQJiQ)","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/300da8ef-e172-452f-8822-ad0716b61562/sm/ep8008.jpg","duration":99,"publication_date":"2013-08-28T17:00:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-16","changefreq":"weekly","video":[{"title":"2013:E29 - Cloudberry Kingdom","description":"The AH Crew get frustrated playing Cloudberry Kingdom in this week's Behind the Scenes.\n\nWatch the episode here:","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/048e9898-8756-43cd-8735-a166ee3ad365/sm/ep8007.jpg","duration":189,"publication_date":"2013-08-28T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-13","changefreq":"weekly","video":[{"title":"2013:E35 - Halo HORSE #142","description":"Geoff and Jack play a little Halo 4 and bring Achievement HORSE (well really PIG, ahem Jack).","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/456a375a-9cc6-4952-88d6-e8bd5139769c/sm/ep8006.jpg","duration":304,"publication_date":"2013-08-28T15:16:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-58","changefreq":"weekly","video":[{"title":"2013:E120 - Let's Build - Hot Foot X","description":"In this week's Let's Build, Gavin and Geoff build Hot Foot X.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a00b1224-db0f-4ddc-a277-b9e423e0f1e7/sm/ep8005.jpg","duration":1132,"publication_date":"2013-08-27T18:29:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-music-discs-quest-4","changefreq":"weekly","video":[{"title":"2013:E182 - Minecraft - Music Discs Quest 4","description":"Ray and Geoff show you how to find all the music discs in the new update for Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-music-discs-quest-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9553bdd2-5f4b-4dd9-9291-3d1e0cc172d8/sm/ep8004.jpg","duration":348,"publication_date":"2013-08-27T18:19:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-15","changefreq":"weekly","video":[{"title":"2013:E34 - Trials Files #70","description":"Geoff and Michael bowl for strikes in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/750a6b2b-c367-4d7b-95cd-95545ab0141e/sm/ep8003.jpg","duration":93,"publication_date":"2013-08-27T16:47:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-14","changefreq":"weekly","video":[{"title":"2013:E34 - Halo Reach","description":"Jack and Geoff bring you Five Facts on Halo Reach.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b34e237-c3e2-49b3-b7bb-967fdf8970ae/sm/ep8002.jpg","duration":243,"publication_date":"2013-08-27T14:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-14","changefreq":"weekly","video":[{"title":"2013:E32 - Week #176","description":"Geoff is back and joins Jack for this week's AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1822e22-13b3-431c-9e90-f16becf999e4/sm/ep8001.jpg","duration":270,"publication_date":"2013-08-26T19:07:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-54","changefreq":"weekly","video":[{"title":"2013:E119 - Red Dead Redemption Bear Puncher","description":"In this week's Let's Play Monday, the AH crew play Red Dead Redemption \"Bear Puncher.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2013-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a777aca-05ee-42f0-8d97-cd1fe5b60a07/sm/ep8000.jpg","duration":2571,"publication_date":"2013-08-26T18:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tower-of-pimps","changefreq":"weekly","video":[{"title":"2013:E181 - TOWER OF PIMPS!!!","description":"The AH crew show you a cool little surprise in the latest title update for Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tower-of-pimps","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12687403-a7fa-462b-8e1d-a45714468adc/sm/ep7996.jpg","duration":126,"publication_date":"2013-08-23T21:13:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-take-the-idol","changefreq":"weekly","video":[{"title":"2013:E180 - Game Night: Take the Idol!","description":"Geoff and Caleb discus Halo, Indiana Jones, and child labor laws in this week's Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-take-the-idol","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6f21e8e-4ea1-4ce8-abe5-c64d06da4957/sm/ep7995.jpg","duration":80,"publication_date":"2013-08-23T18:44:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-49","changefreq":"weekly","video":[{"title":"2013:E118 - Minecraft - Episode 65 - King Ray","description":"Will Ray be a good king The lads find out in this week's Minecraft Let's Play.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fb5ca42-cf18-463c-82bb-9231ea055945/sm/ep7993.jpg","duration":2392,"publication_date":"2013-08-23T18:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-13","changefreq":"weekly","video":[{"title":"2013:E34 - Volume 153","description":"It's Friday, which means it is time for your weekly dose of failure. Enjoy Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92dab3b1-526d-447b-adb1-dfda14900e30/sm/ep7994.jpg","duration":182,"publication_date":"2013-08-23T18:37:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-4","changefreq":"weekly","video":[{"title":"2013:E45 - Payday 2","description":"Ray and Jack take a look at the hit co-op game Payday 2","player_loc":"https://roosterteeth.com/embed/this-is-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e4503eb-9f71-42ce-9715-f039fb388e52/sm/ep7992.jpg","duration":342,"publication_date":"2013-08-23T13:57:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-12","changefreq":"weekly","video":[{"title":"2013:E25 - Episode 25: Gavin vs. Ryan","description":"Gavin tries to successfully defend his belt for the first time in VS history! Will he take it home... or will Ryan crush his championship dreams","player_loc":"https://roosterteeth.com/embed/vs-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a0fc0b3-fcab-4f39-959b-8b8da14cd1be/sm/ep7991.jpg","duration":879,"publication_date":"2013-08-22T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-10","changefreq":"weekly","video":[{"title":"2013:E34 - Trials Evolution - Achievement PIG #71","description":"Geoff returns to Trials Evolution against Jack. Has his vacation put him on the path of winning","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/789e015b-573c-43d6-9f80-e1979b111b9d/sm/ep7990.jpg","duration":174,"publication_date":"2013-08-22T20:20:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-12","changefreq":"weekly","video":[{"title":"2013:E34 - League of Evil","description":"In this week's Rage Quit, Michael enters the world of the League of Evil. This'll end well.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3aafd1-de4c-4b11-a4f4-c732a0c24673/sm/ep7989.jpg","duration":192,"publication_date":"2013-08-22T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-12","changefreq":"weekly","video":[{"title":"2013:E171 - Minecraft - Chunk Error","description":"Gavin and Ryan show you how to mislead the friends you hate by cutting giant chunks out of your minecraft world.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7500a9f-82e4-41ac-8fab-ef00f3f51b9e/sm/ep7987.jpg","duration":134,"publication_date":"2013-08-21T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-10","changefreq":"weekly","video":[{"title":"2013:E34 - Halo HORSE #141","description":"Joel and Caleb square off to see who will win the Halo HORSE Tournament for the Summer of 2013! Who have you placed bets on","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ade01cfb-0740-41cb-a829-4338ac7bbae9/sm/ep7986.jpg","duration":345,"publication_date":"2013-08-21T20:41:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-41","changefreq":"weekly","video":[{"title":"2013:E117 - Payday 2","description":"Jack, Ray, Michael and Ryan finally got their hands on four copies of Payday 2 and worked their way through the first few levels. Watch and enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/637384ec-00fb-494d-bc4f-a57af35b173b/sm/ep7985.jpg","duration":2304,"publication_date":"2013-08-21T17:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-3","changefreq":"weekly","video":[{"title":"2013:E56 - Developer Easter Egg","description":"Ray shows you where to find the Developer Easter Egg and another surprise in Saints Row IV for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7e2bdfd-37e0-4c0c-88fa-34becedd0996/sm/ep7983.jpg","duration":129,"publication_date":"2013-08-21T13:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-trials-files-69","changefreq":"weekly","video":[{"title":"2013:E33 - Trials Files #69","description":"It's Trials Files 69 and it's totally sexual! This week Jack and Geoff hop into the animus wheels first.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-trials-files-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/0380052b-d1f1-4a2c-ae94-d49202dc5210.jpg/sm/ah_default.jpg","duration":87,"publication_date":"2013-08-20T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-7","changefreq":"weekly","video":[{"title":"2013:E33 - Tetris","description":"Jack and Ray kick it old school this week and learn Five Facts about everyone's favorite Nintendo Gameboy game, Tetris!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23b627e3-0773-4114-b7a8-edfb276c3099/sm/ep7982.jpg","duration":206,"publication_date":"2013-08-20T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-epic-jump-quest-guide","changefreq":"weekly","video":[{"title":"2013:E2298 - Epic Jump Quest Guide","description":"Ray and Michael show you how to get the \"Epic Jump Quest\" achievement in Saints Row IV for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-epic-jump-quest-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/085b4db6-57dd-471f-89ec-4b7d5854c85c/sm/ep7980.jpg","duration":139,"publication_date":"2013-08-20T17:23:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-2","changefreq":"weekly","video":[{"title":"2013:E44 - Saints Row IV","description":"Ray and Michael talk about the highly anticipated open world game Saints Row IV","player_loc":"https://roosterteeth.com/embed/this-is-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8906b28b-5fc2-4620-9b74-694478cb978c/sm/ep7979.jpg","duration":604,"publication_date":"2013-08-20T13:44:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-8","changefreq":"weekly","video":[{"title":"2013:E31 - Week #175","description":"Jack, Ray and Caleb bring forth this most excellent edition of AHWU! Party on dudes! Don't forget to grab all the new AH merchandise from the Rooster Teeth store! http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af6f62b1-d93a-4a42-b6fa-4f3e5821a208/sm/ep7978.jpg","duration":344,"publication_date":"2013-08-19T18:12:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-8","changefreq":"weekly","video":[{"title":"2013:E33 - Volume 152","description":"Jack and Ray are here for this week's Fails of the Weak.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8261ea95-b304-4204-92b0-f3a662185d16/sm/ep7973.jpg","duration":190,"publication_date":"2013-08-16T19:11:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-30","changefreq":"weekly","video":[{"title":"2013:E115 - Episode 64 - Dark Petting Zoo","description":"Geoff, Gavin, Ryan, Ray, Michael, and Jack play Dark Petting Zoo in this week's Let's Play Minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79a47c13-b1db-4ee0-86a4-d77389587378/sm/ep7972.jpg","duration":2788,"publication_date":"2013-08-16T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-crouch-derby","changefreq":"weekly","video":[{"title":"2013:E179 - Game Night: Halo 4 - Crouch Derby","description":"Geoff and Caleb are back with this week's new episode of Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-crouch-derby","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1c6e14-2dcd-4062-aaeb-eb4b68aac82b/sm/ep7971.jpg","duration":97,"publication_date":"2013-08-16T15:13:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-8","changefreq":"weekly","video":[{"title":"2013:E33 - The Binding of Isaac","description":"This week on Rage Quit, Michael delves into the twisted, bizarre, and deadly dungeons in The Binding of Isaac, available for Steam. From the guys that brought you Super Meat Boy, it's sure to get weird.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2a79019-a268-44b7-bac4-1caa7601abfd/sm/ep7970.jpg","duration":359,"publication_date":"2013-08-16T02:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-7","changefreq":"weekly","video":[{"title":"2013:E33 - Trials Evolution - Achievement PIG #70","description":"Jack and Ray face off in Trials Evolution. Who will win","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3197a13c-6fcb-4f2b-b611-4fc64db2444d/sm/ep7969.jpg","duration":334,"publication_date":"2013-08-15T20:56:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-7","changefreq":"weekly","video":[{"title":"2013:E24 - Episode 24: Michael vs. Gavin","description":"It is Gavin's turn to challenge Michael - will his game choice allow him to win this week's VS","player_loc":"https://roosterteeth.com/embed/vs-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a09db0e5-6ad4-42a9-8a74-56982c4a996b/sm/ep7968.jpg","duration":837,"publication_date":"2013-08-15T18:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-23","changefreq":"weekly","video":[{"title":"2013:E114 - Capsized","description":"Michael and Ryan embark on an exciting quest of exploration and discovery in Capsized for the Xbox Live Arcade. What exotic space tomfoolery will Team Crazy Mad get into next","player_loc":"https://roosterteeth.com/embed/lets-play-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8062229-6c4c-40ef-8a24-368aaa7518b0/sm/ep7966.jpg","duration":2702,"publication_date":"2013-08-15T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-8","changefreq":"weekly","video":[{"title":"2013:E170 - Minecraft - Ghast Man Standing","description":"Another new Things To Do In! This week, AH decides who will be standing tall and who will fall to their doom.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daf5026c-41e0-4f82-be71-d3ffba48afb4/sm/ep7965.jpg","duration":615,"publication_date":"2013-08-14T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-21","changefreq":"weekly","video":[{"title":"2013:E113 - Cloudberry Kingdom Part 1","description":"AH journeys to a magical land filled with adventure and pain in Let's Play - Cloudberry Kingdom Part 1","player_loc":"https://roosterteeth.com/embed/lets-play-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/551f2317-feb7-4f39-9a68-543034090a1d/sm/ep7964.jpg","duration":3187,"publication_date":"2013-08-14T22:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-6","changefreq":"weekly","video":[{"title":"2013:E33 - Halo HORSE #140","description":"Miles and Joel face off to see who will advance to the finals in this week's episode of HORSE. No, there is nothing wrong with your speakers.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12e8fc5f-49ac-4850-a534-4ca4f76c924a/sm/ep7963.jpg","duration":423,"publication_date":"2013-08-14T21:05:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-5","changefreq":"weekly","video":[{"title":"2013:E28 - Brace for Impact","description":"What will the lads and gents do when given an over-sized beach ball and a packet of lube Now you'll know.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01fffdd6-156d-4a19-a7b1-11e5bcded3a5/sm/ep7962.jpg","duration":201,"publication_date":"2013-08-14T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-18","changefreq":"weekly","video":[{"title":"2013:E112 - Let's Build - Lava Wall Part #2","description":"The AH crew bring you the second installment of Let's Build Lava Wall.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03380bdb-3e82-495a-bbf3-6b2e9118bcdf/sm/ep7960.jpg","duration":1717,"publication_date":"2013-08-13T18:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-4","changefreq":"weekly","video":[{"title":"2013:E32 - Halo 2 Part 2","description":"Jack and Gus are back with the second installment of Five Facts Halo 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10934771-e3e1-4ca6-b604-66401ee0697b/sm/ep7959.jpg","duration":192,"publication_date":"2013-08-13T17:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-5","changefreq":"weekly","video":[{"title":"2013:E32 - Trials Files #68","description":"Geoff and Michael continue their exploration of Trails Evolution in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c68db9e4-7467-4ec6-b39a-1b7486832255/sm/ep7958.jpg","duration":65,"publication_date":"2013-08-13T15:26:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-3","changefreq":"weekly","video":[{"title":"2013:E30 - Week #174","description":"The boys are here with a fresh new AHWU! Enjoy with a heavy dose of alcohol.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38625930-af2f-4045-9452-816068b1d9f5/sm/ep7957.jpg","duration":283,"publication_date":"2013-08-12T21:55:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-14","changefreq":"weekly","video":[{"title":"2013:E111 - GTA IV Wanted","description":"No blips... no radar... no mercy. AH plays a little Wanted in GTA IV!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e97c898-cae8-48cc-a954-897e484e60de/sm/ep7956.jpg","duration":2304,"publication_date":"2013-08-12T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-12","changefreq":"weekly","video":[{"title":"2013:E110 - Minecraft - Episode 63 - Lava Wall","description":"The AH crew separate into lads and gents and play Lava Wall.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b9afb9d-9518-4b78-947c-259246fa2992/sm/ep7951.jpg","duration":2098,"publication_date":"2013-08-09T20:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-3","changefreq":"weekly","video":[{"title":"2013:E19 - Best of: Early Days of Gamefails Pt. 2","description":"All good things have a second part!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cef06f57-924d-48e4-aacc-32823c23f263/sm/ep7950.jpg","duration":240,"publication_date":"2013-08-09T20:39:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-groundskeepers","changefreq":"weekly","video":[{"title":"2013:E178 - Game Night: Halo 4 - Groundskeepers","description":"Geoff and Caleb talk about the future of gardening.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-groundskeepers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ed1e1e2-53fc-446d-a6c0-2cd4ec7d5568/sm/ep7948.jpg","duration":100,"publication_date":"2013-08-09T15:09:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013","changefreq":"weekly","video":[{"title":"2013:E32 - The Impossible Game Level Pack: Level 3","description":"This week on Rage Quit, Michael takes another yearly go at the now legendary Xbox LIve Indie Game, The Impossible Game Level Pack. How will Michael fair with the unknown danger of level 3 About as well as he did on the first 2.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63c77fd4-b945-4ea4-8b2d-63dd0cd9695a/sm/ep7946.jpg","duration":474,"publication_date":"2013-08-08T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013","changefreq":"weekly","video":[{"title":"2013:E23 - Episode 23: Ray vs. Michael","description":"In this week's VS, Ray and Michael face off to see who will be this week's victor.","player_loc":"https://roosterteeth.com/embed/vs-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdb45765-69d0-4761-b40c-ce2e70bd78d5/sm/ep7942.jpg","duration":907,"publication_date":"2013-08-08T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013","changefreq":"weekly","video":[{"title":"2013:E32 - Trials Evolution - Achievement PIG #69","description":"This week's Achievement PIG brings you Jack vs. Gavin.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4495a8d3-5357-434e-a4f1-fe6a06997243/sm/ep7945.jpg","duration":229,"publication_date":"2013-08-08T20:41:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013","changefreq":"weekly","video":[{"title":"2013:E32 - Halo HORSE #139","description":"Watch Caleb vs Martinizer in this week's Halo HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6246282d-9149-464a-a16c-ac0f7d754495/sm/ep7939.jpg","duration":316,"publication_date":"2013-08-07T19:56:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013","changefreq":"weekly","video":[{"title":"2013:E169 - Minecraft - Ghasteroids","description":"The AH lads are back with another Things to do in Minecraft. In this week's episode they play Ghasteroids, a play off of the old game Asteroids.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a2fd75c-f380-453b-8ed2-5d18bb6a7acf/sm/ep7937.jpg","duration":788,"publication_date":"2013-08-07T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-214","changefreq":"weekly","video":[{"title":"2013:E108 - Let's Build - Lava Wall Part #1","description":"In this week's Let's Build, Geoff and Gavin build a team game called Lava Wall. Oh, and JJ gets creative.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-214","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4706eafe-c3b4-4aa3-ba9f-2b4627a5dff3/sm/ep7934.jpg","duration":1587,"publication_date":"2013-08-06T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-51","changefreq":"weekly","video":[{"title":"2013:E31 - Halo 2 Part 1","description":"Jack and Gus learn Five Facts about Halo 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c500536-b9cf-49b3-92cc-82d575e40da2/sm/ep7935.jpg","duration":263,"publication_date":"2013-08-06T18:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-51","changefreq":"weekly","video":[{"title":"2013:E31 - Trials Files #67","description":"Geoff and Michael are back with more Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45ddf0f9-efc3-4b18-be25-326375098564/sm/ep7933.jpg","duration":82,"publication_date":"2013-08-06T14:00:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-211","changefreq":"weekly","video":[{"title":"2013:E107 - GTA IV Bike Bat Pt. 2","description":"The AH crew is back with the second part of Let's Play GTA IV Bike Bat.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-211","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89972213-16bc-406a-811a-647b0219bfcb/sm/ep7930.jpg","duration":1782,"publication_date":"2013-08-05T20:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-49","changefreq":"weekly","video":[{"title":"2013:E29 - Week #173","description":"Jack is back for this week's AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97f8a8a7-67b1-45c8-85b7-145e5f9f7453/sm/ep7932.jpg","duration":239,"publication_date":"2013-08-05T19:56:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-skin-pack-5-dlc","changefreq":"weekly","video":[{"title":"2013:E177 - Minecraft - Skin Pack 5 DLC","description":"Ray and Michael check out all the new skins in the new Minecraft Skin Pack 5 DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-skin-pack-5-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/133205a1-00c1-4a74-8ef1-5554ce33e255/sm/ep7931.jpg","duration":140,"publication_date":"2013-08-05T19:09:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-209","changefreq":"weekly","video":[{"title":"2013:E106 - Minecraft - Episode 62 - Creeper Census","description":"The AH lads are back with Let's Play Minecraft Creeper Census edition.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-209","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73995993-127a-4c44-97a3-8987250c824c/sm/ep7927.jpg","duration":3021,"publication_date":"2013-08-02T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-32","changefreq":"weekly","video":[{"title":"2013:E18 - Best Fails of July 2013","description":"So many fails July, go home.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cde0f54b-953b-40a4-b8f6-fc5b2e37ca0b/sm/ep7925.jpg","duration":173,"publication_date":"2013-08-02T18:04:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-green-lantern","changefreq":"weekly","video":[{"title":"2013:E176 - Game Night: Halo 4 - Green Lantern","description":"Geoff and Caleb don't talk about the Green Lantern.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-green-lantern","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6317683f-94a2-4785-bf9f-397767cf18cf/sm/ep7923.jpg","duration":92,"publication_date":"2013-08-02T17:22:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-50","changefreq":"weekly","video":[{"title":"2013:E31 - Hyphen (Demo)","description":"This week on Rage Quit, Michael slowly rotates his way through the demo version of the upcoming Indie Game, Hyphen. Colors and shapes, man. It's all about colors and shapes.\n\nTry Hyphen for yourself here: http://www.farspacestudios.com/games/hyphen/","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f933d9f-6b6c-4bd4-aa96-e8c53da70ce8/sm/ep7922.jpg","duration":346,"publication_date":"2013-08-01T23:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-41","changefreq":"weekly","video":[{"title":"2013:E31 - Trials Evolution - Achievement PIG #68","description":"Lindsay gets an introduction to the world of Trials PIG courtesy of Jack!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3804092-9a54-4a03-9853-bfff11b906da/sm/ep7921.jpg","duration":230,"publication_date":"2013-08-01T21:47:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-august-2013","changefreq":"weekly","video":[{"title":"2013:E175 - Coming Soon - August 2013 ","description":"Kdin is back with a ton of new games and other information for the month of August. Check it out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-august-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b1dd8d6-f276-4495-97e6-216e88d2db83/sm/ep7920.jpg","duration":798,"publication_date":"2013-08-01T20:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-43","changefreq":"weekly","video":[{"title":"2013:E27 - Doom II","description":"In this week's Behind the Scenes the AH lads watch as Jack takes on Ryan in DooM II.\nCheck out the VS Episode 20 - Ryan Vs Jack:","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f18dfff8-3af7-482f-a70e-87d0da19a4b5/sm/ep7919.jpg","duration":145,"publication_date":"2013-08-01T19:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-41","changefreq":"weekly","video":[{"title":"2013:E22 - Episode 22: Ryan vs. Ray","description":"Ray is back in the game. This time it is his turn to challenge Ryan in this week's VS. Who will be this week's victor Tune in to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72069b5a-624e-43e8-a376-3c23c798f31a/sm/ep7918.jpg","duration":521,"publication_date":"2013-08-01T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-198","changefreq":"weekly","video":[{"title":"2013:E105 - Loadout","description":"The AH Crew brings you Let's Play Loadout, enjoy!\n\nLoadout will be a free game you can play through Steam. Get early access to the game here: http://steamcommunity.com/app/208090","player_loc":"https://roosterteeth.com/embed/lets-play-2013-198","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0595b3dc-9902-467e-abd8-e3f50f32dda6/sm/ep7916.jpg","duration":2568,"publication_date":"2013-07-31T19:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-47","changefreq":"weekly","video":[{"title":"2013:E168 - Minecraft - Box Game","description":"The AH Crew is back with Thing to do in: Minecraft. This week they play \"Box Game,\" - perhaps you remember playing this game back in the day","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29b8fc27-e5ca-4723-b54b-7752976b2e8d/sm/ep7915.jpg","duration":1115,"publication_date":"2013-07-31T19:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-41","changefreq":"weekly","video":[{"title":"2013:E31 - Halo HORSE #138","description":"Watch Caleb vs Gus in this week's Halo HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4d3cba6-b8d2-4b0f-ad64-7d09dee38ddc/sm/ep7914.jpg","duration":278,"publication_date":"2013-07-31T19:23:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-195","changefreq":"weekly","video":[{"title":"2013:E104 - Let's Build in Minecraft - Creeper Fishing","description":"Geoff and Gavin create Creeper Fishing as they talk to the rest of the AH crew in this week's Let's Build.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-195","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afee95bf-6c5a-4329-b05c-0fc2a659ec49/sm/ep7912.jpg","duration":1217,"publication_date":"2013-07-30T23:10:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-45","changefreq":"weekly","video":[{"title":"2013:E30 - Grand Theft Auto: San Andreas","description":"Michael and Ray learn Five Facts about Grand Theft Auto: San Andreas!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2870e6b2-2287-4d6f-ab54-5fd21edcff97/sm/ep7911.jpg","duration":419,"publication_date":"2013-07-30T19:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-45","changefreq":"weekly","video":[{"title":"2013:E30 - Trials Files #66","description":"Geoff and Michael bowl for strikes in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/729dbc18-50e9-4a24-acc2-9f70b4f90db3/sm/ep7910.jpg","duration":105,"publication_date":"2013-07-30T15:35:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-43","changefreq":"weekly","video":[{"title":"2013:E28 - Week #172","description":"The AH crew is back with this week's AHWU no. 172. Check it out!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed1e1066-5d95-4ee1-9764-44ce1622ec76/sm/ep7909.jpg","duration":332,"publication_date":"2013-07-29T19:13:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-189","changefreq":"weekly","video":[{"title":"2013:E103 - GTA IV Bike Bat","description":"Geoff, Michael, Jack, Gavin, Ryan, and Ray are back this week with another Let's Play Grand Theft Auto IV. This week's game is what Gavin likes to call \"Bike Bat,\" which is pretty much the guys hitting one another with bats on bikes. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-189","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5e57dd8-6a32-41ea-8822-234aac688c62/sm/ep7907.jpg","duration":2009,"publication_date":"2013-07-29T16:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-26","changefreq":"weekly","video":[{"title":"2013:E17 - Best of: Early Days of Gamefails","description":"Ch-ch-check it out!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9c5d966-e771-4682-8a4f-3207756f3bd4/sm/ep7904.jpg","duration":165,"publication_date":"2013-07-26T20:41:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-gravity-death","changefreq":"weekly","video":[{"title":"2013:E174 - Game Night: Gravity Death","description":"Who needs gravity","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-gravity-death","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aeab813b-2593-49ac-91c2-c0d885420dad/sm/ep7902.jpg","duration":82,"publication_date":"2013-07-26T19:12:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-184","changefreq":"weekly","video":[{"title":"2013:E102 - Minecraft - Episode 61 - King Ryan Part 2","description":"King Ryan continues his Machiavellian rule over Geoff, Jack, Michael, Gavin and Ray. Watch the guys squirm in this week's Let's Play Minecraft King Ryan parte due.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-184","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d699a30-29c6-4e31-8992-5b36b97f4de3/sm/ep7901.jpg","duration":2287,"publication_date":"2013-07-26T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-black-ops-2-awaken-the-gazebo-guide","changefreq":"weekly","video":[{"title":"2013:E2297 - Call of Duty: Black Ops 2 - Awaken the Gazebo Guide","description":"Ray and Geoff show you how to get the \"Awaken the Gazebo \" achievement in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-black-ops-2-awaken-the-gazebo-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/006d47ea-95b9-4c4e-8eb3-6e1914e4b4bd/sm/ep7900.jpg","duration":297,"publication_date":"2013-07-25T21:49:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-44","changefreq":"weekly","video":[{"title":"2013:E30 - Monkey Poo Flinger","description":"In this week's Rage Quit, Michael flings more than just obscenities in the Xbox Live Arcade soon-to-be classic, Monkey Poo Flinger.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61c8671e-6e30-4713-98c1-b6f00401dc29/sm/ep7899.jpg","duration":484,"publication_date":"2013-07-25T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-35","changefreq":"weekly","video":[{"title":"2013:E21 - Episode 21: Ryan vs. Geoff","description":"Ryan and Geoff face off for the first time in VS's history. Who will be this week's victor","player_loc":"https://roosterteeth.com/embed/vs-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb5ead3-5090-451f-8abb-d0f88e3a4763/sm/ep7898.jpg","duration":915,"publication_date":"2013-07-25T21:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-36","changefreq":"weekly","video":[{"title":"2013:E30 - Trials PIG #67","description":"Ray decides that he will take a shot at playing Geoff, the video game master, to a game of Trials PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32213d6f-c357-4256-836e-6f30f148a688/sm/ep7896.jpg","duration":210,"publication_date":"2013-07-25T18:33:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-black-ops-2-mazed-and-confused-guide","changefreq":"weekly","video":[{"title":"2013:E2296 - Call Of Duty: Black Ops 2 - Mazed and Confused Guide ","description":"Ray and Geoff show you how to get the \"Mazed and Confused\" achievement in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-black-ops-2-mazed-and-confused-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d07a1d87-58f2-459c-93f3-8e2b002029c7/sm/ep7895.jpg","duration":89,"publication_date":"2013-07-25T15:28:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-177","changefreq":"weekly","video":[{"title":"2013:E101 - The Ship Part 1","description":"The AH crew go back in time and board a cruise ship, where they must tactfully fend for their lives in this week's Let's Play - The Ship: Murder Party.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-177","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8e114ba-f0a2-4bb4-8f8b-3bff91c9ccf5/sm/ep7894.jpg","duration":1618,"publication_date":"2013-07-24T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-40","changefreq":"weekly","video":[{"title":"2013:E167 - Minecraft - CreePlunk","description":"It's raining creepers!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16e2ee27-3d1c-4b6b-b380-228f685b3b12/sm/ep7891.jpg","duration":734,"publication_date":"2013-07-24T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-36","changefreq":"weekly","video":[{"title":"2013:E30 - Halo HORSE #137","description":"Watch Mile vs. Michael in this week's Halo HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6feb7e1d-f408-4ada-a330-71fc288203ec/sm/ep7890.jpg","duration":367,"publication_date":"2013-07-24T17:37:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-173","changefreq":"weekly","video":[{"title":"2013:E100 - Let's Build - Wolf Spa","description":"Geoff and Gavin build an adorable little spa for their wolves, all the while pondering the mysteries of life.\r\n\r\nWatch the Wolf Spa Let's Play here:\r\n\r\nhttp://achievementhunter.com/archive/id=7853","player_loc":"https://roosterteeth.com/embed/lets-play-2013-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ccc93e7-f292-427c-8eac-be516dbcd093/sm/ep7888.jpg","duration":1650,"publication_date":"2013-07-23T17:12:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-40","changefreq":"weekly","video":[{"title":"2013:E29 - Trials Files #65","description":"Geoff and Michael do a little side-scrolling in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":95,"publication_date":"2013-07-23T16:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-39","changefreq":"weekly","video":[{"title":"2013:E29 - Deus Ex: Human Revolution","description":"Geoff and Gavin take you on an adventure of facts and knowledge. Strap in, because your brains are about to get full of words.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdc57f98-5027-49c7-8a2b-967aa1db3ad5/sm/ep7886.jpg","duration":260,"publication_date":"2013-07-23T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-18","changefreq":"weekly","video":[{"title":"2013:E43 - Loadout","description":"Geoff, Ray, and Ryan discuss Loadout, a free to play game through Steam.\r\n\r\nDownload the game here: http://steamcommunity.com/app/208090","player_loc":"https://roosterteeth.com/embed/this-is-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13afbfd6-be45-45c7-b09d-5384a2788a3f/sm/ep7884.jpg","duration":417,"publication_date":"2013-07-22T21:33:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-37","changefreq":"weekly","video":[{"title":"2013:E27 - Week #171","description":"Jack is still in Australia, so your stuck with Geoff again for this week's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee2dfac1-5ebd-4624-b6a5-ab51520c3017/sm/ep7883.jpg","duration":191,"publication_date":"2013-07-22T20:32:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-death-from-below-guide","changefreq":"weekly","video":[{"title":"2013:E2295 - Death From Below Guide","description":"Ray shows you how to get the \"Death From Below\" achievement in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-death-from-below-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cae3169e-86c8-48a4-8057-dbba5dba02a9/sm/ep7882.jpg","duration":188,"publication_date":"2013-07-22T19:19:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-164","changefreq":"weekly","video":[{"title":"2013:E99 - Red Dead Redemption: Undead Nightmare","description":"Michael, Gavin, Geoff, and Ryan bring you the first ever Let's Play Red Dead Redemption - Undead Nightmare.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9fd3502-2068-4ab8-9bc4-442c10f4b58d/sm/ep7880.jpg","duration":2609,"publication_date":"2013-07-22T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-when-the-revolution-comes-guide","changefreq":"weekly","video":[{"title":"2013:E2294 - When the Revolution Comes Guide","description":"Ray shows you how to get the \"When the Revolution Comes\" achievement in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-when-the-revolution-comes-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":119,"publication_date":"2013-07-19T17:31:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-blaze-cave","changefreq":"weekly","video":[{"title":"2013:E173 - Game Night: Blaze Cave","description":"Just Blaze... Cave.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-blaze-cave","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b59c6336-bba2-47a8-a57e-625c842f5524/sm/ep7876.jpg","duration":79,"publication_date":"2013-07-19T16:01:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-37","changefreq":"weekly","video":[{"title":"2013:E29 - Yu-Gi-Oh! 5D's Decade Duels Plus Part 2","description":"In this week's exciting conclusion, Michael and Andrew face off once again in Yu-Gi-Oh! 5D's Decade Duels Plus for the Xbox Live Arcade. Who will bask in the glow of victory and who will spend an eternity in the darkness that is the Shadow Realm FIND OUT NOW!","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/552d442b-12a4-4beb-8e69-365565b7e015/sm/ep7874.jpg","duration":812,"publication_date":"2013-07-19T01:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-31","changefreq":"weekly","video":[{"title":"2013:E29 - Trials PIG #66","description":"Jack challenges the single greatest video game player of all time, Geoff, to a game of Trials PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ab96060-f517-4312-8b0c-313b559a6345/sm/ep7871.jpg","duration":285,"publication_date":"2013-07-18T18:09:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-31","changefreq":"weekly","video":[{"title":"2013:E20 - Episode 20: Ryan vs. Jack","description":"Jack takes on Ryan in DooM II! Can Ryan defeat his pixely enemy","player_loc":"https://roosterteeth.com/embed/vs-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe143523-51ea-481f-85ff-d97546ff487b/sm/ep7870.jpg","duration":1055,"publication_date":"2013-07-18T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-minecraft-pest-problems","changefreq":"weekly","video":[{"title":"2013:E166 - Minecraft - Pest Problems","description":"Gav and Geoff show you how to piss off your friends with a house that dismantles itself.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-minecraft-pest-problems","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0654196f-846a-4956-af3b-d9d7d114cd9d/sm/2013912-1449768909951-pest.jpg","duration":130,"publication_date":"2013-07-17T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-candygram-guide","changefreq":"weekly","video":[{"title":"2013:E2292 - Candygram Guide","description":"X-Ray and Vav show you how to get the \"Candygram\" achievement in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-candygram-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9ad3617-b79b-426b-9a27-7a400c48cf6f/sm/ep7868.jpg","duration":93,"publication_date":"2013-07-17T21:43:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-32","changefreq":"weekly","video":[{"title":"2013:E29 - Halo HORSE #136","description":"Watch Ryan vs. Martinizer in this week's Halo HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e143f320-a0dc-4626-907f-9f7baa04093e/sm/ep7867.jpg","duration":473,"publication_date":"2013-07-17T19:08:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-152","changefreq":"weekly","video":[{"title":"2013:E98 - Worms Revolution: Episode 3","description":"Michael, Gavin, and Ray return for round two as the lads continue to battle it out in Worms Revolution for the Xbox Live Arcade. Geoff might need to hire a babysitter.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2b3c0d5-4d1d-42d2-9031-285b262b6cd8/sm/ep7865.jpg","duration":1519,"publication_date":"2013-07-17T15:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ectoplasmic-residue-guide","changefreq":"weekly","video":[{"title":"2013:E2291 - Ectoplasmic Residue Guide","description":"Ray and Geoff show you how to get the \"Ectoplasmic Residue\" achievement in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ectoplasmic-residue-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bfcf2af-3d8e-44c2-97f5-20d0b758a10e/sm/ep7864.jpg","duration":74,"publication_date":"2013-07-17T14:53:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-148","changefreq":"weekly","video":[{"title":"2013:E97 - Let's Build - Dark Achievement City Pt 3","description":"Geoff and Gavin are back with their adventure in the Nether, rebuilding Achievement City block for block in this week's Let's Build. Things do not go well this week. Not well at all.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81c72f3f-8d8c-4b18-8542-94377c29c45d/sm/ep7862.jpg","duration":2791,"publication_date":"2013-07-16T20:47:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-20","changefreq":"weekly","video":[{"title":"2013:E55 - Buried Teddy Bear Song","description":"Ray and Geoff show you where to find the hidden teddy bear song in the new Vengeance DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27369f89-20c4-4e4c-bb3b-52c0478cb2e0/sm/ep7861.jpg","duration":74,"publication_date":"2013-07-16T20:44:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-36","changefreq":"weekly","video":[{"title":"2013:E28 - Trials Files #64","description":"In this week's Trials Files Geoff and Gavin do a little techno platforming.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5458b48b-3922-42f3-a953-175b5f995d12/sm/ep7860.jpg","duration":191,"publication_date":"2013-07-16T18:52:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-33","changefreq":"weekly","video":[{"title":"2013:E28 - Roller Coaster Tycoon Part 2","description":"Geoff and Michael go over five additional facts for Roller Coaster Tycoon.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1eaba7f1-d225-4826-a903-458bc1490461/sm/ep7859.jpg","duration":382,"publication_date":"2013-07-16T18:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-33","changefreq":"weekly","video":[{"title":"2013:E26 - Week #170","description":"Jack is away in Aussie land, which means that the Lads Action News Team is back!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e06bc8be-61c6-4a02-a32a-4da88ed4f0a6/sm/ep7857.jpg","duration":273,"publication_date":"2013-07-15T22:13:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-143","changefreq":"weekly","video":[{"title":"2013:E96 - GTA IV - Cannon Ball Run","description":"Six Achievement Hunters... one destination. And no car insurance company will operate in Liberty City ever again...","player_loc":"https://roosterteeth.com/embed/lets-play-2013-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84fa8bbf-0cf9-4dab-bdf3-44274d58ddc8/sm/ep7856.jpg","duration":2362,"publication_date":"2013-07-15T19:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lets-a-go-youve-been-cole-slaw-tered-its-a-trap-guides","changefreq":"weekly","video":[{"title":"2013:E2290 - Let's-a-Go!, You've been Cole-slaw-tered!, It's a trap! Guides","description":"Ray shows you how to get the \" Let's-a-Go!\", \"You've been Cole-slaw-tered!\", and \"It's a trap!\" achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lets-a-go-youve-been-cole-slaw-tered-its-a-trap-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e11f03a-4268-44d7-9dd0-295f8f99f0c8/sm/ep7854.jpg","duration":230,"publication_date":"2013-07-13T20:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-140","changefreq":"weekly","video":[{"title":"2013:E95 - Minecraft - Episode 59 - Wolf Spa","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan play \"hide and run to survive\" in this little game they like to call Wolf Spa.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a3b3ee5-d2ce-4528-8682-3a8221a94323/sm/ep7853.jpg","duration":1960,"publication_date":"2013-07-12T21:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-walking-dead-400-days-two-out-of-three-reunited-guides","changefreq":"weekly","video":[{"title":"2013:E2289 - The Walking Dead: 400 Days - Two out of Three, Reunited Guides ","description":"Ray shows you how to get the \"Two out of Three\" and \"Reunited\" achievements in The Walking Dead: 400 Days for Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-walking-dead-400-days-two-out-of-three-reunited-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b250dec-4e8c-4d84-9001-be7bcf227c4a/sm/ep7852.jpg","duration":126,"publication_date":"2013-07-12T20:24:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-la-grille-instable","changefreq":"weekly","video":[{"title":"2013:E172 - Game Night: La Grille Instable","description":"Geoff and Caleb check out La Grille Instable and Gavin says \"WHAT IS GAME NIGHT!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-la-grille-instable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62b9c389-92cd-44ba-8f7d-548183bf57cb/sm/ep7849.jpg","duration":93,"publication_date":"2013-07-12T18:20:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-deadpool-spawn-more-deadpool-lords-pc-load-lead-er-i-can-open-doors-guides","changefreq":"weekly","video":[{"title":"2013:E2288 - Deadpool - Spawn more Deadpool-lords, PC LOAD LEAD-ER, I can open doors! Guides","description":"Ray shows you how to get the \"Spawn more Deadpool-lords\", \"PC LOAD LEAD-ER\", and \"I can open doors!\" achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-deadpool-spawn-more-deadpool-lords-pc-load-lead-er-i-can-open-doors-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3ce6e57-f1d3-4c00-87aa-3eca5e92a02b/sm/ep7848.jpg","duration":166,"publication_date":"2013-07-12T15:08:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-32","changefreq":"weekly","video":[{"title":"2013:E28 - Yu-Gi-Oh! 5D's Decade Duels Plus","description":"This week on Rage Quit, Michael believes in the heart of the cards as he challenges (AH Community Member) Andrew/Mister Sir to Yu-Gi-Oh! 5D's Decade Duels Plus for the Xbox Live Arcade. It's time to duel!","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4879c6f9-4817-48cd-8c35-a67642174efe/sm/ep7847.jpg","duration":744,"publication_date":"2013-07-12T03:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-26","changefreq":"weekly","video":[{"title":"2013:E28 - Trials PIG #65","description":"Ray and Gavin are back in this week's Achievement PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73f1674a-7168-4815-b2ca-cfb2e12b1ffd/sm/ep7846.jpg","duration":266,"publication_date":"2013-07-12T03:06:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-26","changefreq":"weekly","video":[{"title":"2013:E19 - Episode 19: Gavin vs. Ryan","description":"Gavin takes Ryan on in a rousing game of tennis! Will Ryan be able to return Gavin's power serves","player_loc":"https://roosterteeth.com/embed/vs-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49a4b5a3-e87d-47d5-af64-60a4f378446e/sm/ep7845.jpg","duration":1309,"publication_date":"2013-07-11T23:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-130","changefreq":"weekly","video":[{"title":"2013:E94 - Fuel","description":"In this much anticipated Let's Play, the AH crew race their way into your hearts in Let's Play Fuel.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59501da2-ed93-44e5-bc31-36a48ef9431c/sm/ep7844.jpg","duration":6859,"publication_date":"2013-07-11T14:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-27","changefreq":"weekly","video":[{"title":"2013:E28 - Halo HORSE #135","description":"Watch Ray vs. Joel in this week's Halo HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e63ce564-890a-4675-9a30-6f4b9037818c/sm/ep7843.jpg","duration":465,"publication_date":"2013-07-11T02:29:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-32","changefreq":"weekly","video":[{"title":"2013:E165 - Minecraft - Hot Foot X","description":"Remember Hot Foot Well the AH Crew is back to play Hot Foot X. It's like Hot Foot, but X amount better.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80bce7d6-0d61-426a-84ec-b049581b0abd/sm/ep7841.jpg","duration":455,"publication_date":"2013-07-10T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-16","changefreq":"weekly","video":[{"title":"2013:E42 - The Walking Dead: 400 Days","description":"Ray and Michael talk about the latest add-on for Telltale's The Walking Dead. Try and hold back your tears","player_loc":"https://roosterteeth.com/embed/this-is-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a591013-0a91-4c8b-8817-0cf6a50a538a/sm/ep7840.jpg","duration":209,"publication_date":"2013-07-10T20:03:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-diggin-in-the-crates-patience-is-not-a-virtue-officially-a-carny","changefreq":"weekly","video":[{"title":"2013:E2287 - Diggin' in the crates, Patience is not a virtue, Officially a Carny","description":"Ray shows you how to get the \" Diggin' in the crates\", \"Patience is not a virtue\", and \"Officially a Carny\" achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-diggin-in-the-crates-patience-is-not-a-virtue-officially-a-carny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35b72540-99b2-4153-9af8-231d4fa3f0a0/sm/ep7837.jpg","duration":197,"publication_date":"2013-07-10T16:23:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-124","changefreq":"weekly","video":[{"title":"2013:E93 - Let's Build in Minecraft - Dark Achievement City Pt 2","description":"Geoff and Gavin are back with their adventure in the Nether, rebuilding Achievement City block for block in this week's Let's Build.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/796ece82-e162-4729-b580-188eea2d3ad5/sm/ep7835.jpg","duration":2739,"publication_date":"2013-07-09T21:29:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-29","changefreq":"weekly","video":[{"title":"2013:E27 - Trials Files #63","description":"In this week's Trials Files Geoff and Jack BMX their way to the Cellar Door.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b933ba4-0f97-4026-acb8-2bd50e170b92/sm/ep7833.jpg","duration":109,"publication_date":"2013-07-09T20:25:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-120","changefreq":"weekly","video":[{"title":"2013:E92 - GTA IV Co-Op","description":"Geoff, Gavin, Michael and Ryan test out their teamwork in some GTA IV Co-Op missions!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02817b37-a473-40c2-956e-46dbcd8e2ed2/sm/ep7831.jpg","duration":2316,"publication_date":"2013-07-08T18:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-117","changefreq":"weekly","video":[{"title":"2013:E91 - Minecraft - Episode 58 - King Geoff Pt 2","description":"The AH Lads are back with the second installment of Let's Play \"King Geoff.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2013-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc8a9751-0737-4bdb-bf47-7a17bb3a279f/sm/ep7828.jpg","duration":1717,"publication_date":"2013-07-05T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-mini-chaos","changefreq":"weekly","video":[{"title":"2013:E171 - Game Night: Mini Chaos","description":"Geoff and Caleb check out Mini Chaos in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-mini-chaos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df465dd-05ca-4760-a009-3868615c2675/sm/ep7830.jpg","duration":78,"publication_date":"2013-07-05T15:43:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-18","changefreq":"weekly","video":[{"title":"2013:E16 - Best Fails of June 2013","description":"Can you handle so many failures","player_loc":"https://roosterteeth.com/embed/game-fails-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/445968a2-9dd7-4778-b479-ec5db5febca4/sm/ep7829.jpg","duration":177,"publication_date":"2013-07-05T13:08:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-27","changefreq":"weekly","video":[{"title":"2013:E27 - Baby Maker Extreme 2","description":"This week on Rage Quit, Michael prepares for his future of child care in the Xbox Live Indie Game, Baby Maker Extreme 2. That baby is going places.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26908105-9f84-4fb2-ad82-2f1a6af5c9a9/sm/ep7826.jpg","duration":249,"publication_date":"2013-07-04T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-26","changefreq":"weekly","video":[{"title":"2013:E23 - VS Episode 18 - Michael vs Gavin","description":"A sneak peek behind the balls!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b66c2b0e-0201-4833-990f-ea2047a4a7ba/sm/ep7825.jpg","duration":126,"publication_date":"2013-07-04T19:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-22","changefreq":"weekly","video":[{"title":"2013:E18 - Episode 18: Michael vs. Gavin","description":"Michael and Gavin knock balls in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e23754ce-e5e2-47c9-a707-8be2632f6aa6/sm/ep7824.jpg","duration":731,"publication_date":"2013-07-04T17:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-23","changefreq":"weekly","video":[{"title":"2013:E27 - Trials PIG #64","description":"Jack and Geoff do the most patriotic thing you can do, play some Trials Evolution, in this week's Achievement PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ac41774-990f-438a-9af8-4767b6c561b9/sm/ep7823.jpg","duration":251,"publication_date":"2013-07-04T15:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-28","changefreq":"weekly","video":[{"title":"2013:E164 - Red Dead Redemption - Horse Joust","description":"The AH Crew is back with more Things to do in Red Dead Redemption. In this week's episode the guys adopt some chivalry of the old west and duel it out.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdf6b3c6-8ecd-4e1a-9d72-a387ff0753a4/sm/ep7822.jpg","duration":592,"publication_date":"2013-07-03T21:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-112","changefreq":"weekly","video":[{"title":"2013:E90 - 3D Ultra MiniGolf Adventures Episode 3","description":"This week's Let's Play brings you the third installment of Ultra MiniGolf Adventures. Geoff, Michael, Ray, & Ryan are back on the greens attempting to play more aces. \n\nWatch Ultra MiniGolf Adventures Part 1: http://bit.ly/YfbxHj\nWatch Ultra MiniGolf Adventures Part 2: http://bit.ly/12mxCXo","player_loc":"https://roosterteeth.com/embed/lets-play-2013-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db3bd03-6d59-49ee-9bfe-5d732a062d78/sm/ep7821.jpg","duration":2325,"publication_date":"2013-07-03T20:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-23","changefreq":"weekly","video":[{"title":"2013:E27 - Halo HORSE #134","description":"It is Gavin vs. Caleb in this week's Halo HORSE.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f7262f8-4d7c-4b11-9b67-63dbf1ce944b/sm/ep7820.jpg","duration":353,"publication_date":"2013-07-03T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-social-butterfly-silent-and-deadly-guides","changefreq":"weekly","video":[{"title":"2013:E2286 - Social butterfly, Silent and deadly Guides","description":"Ray and Michael show you how to get the \"Social butterfly\" and \"Silent and deadly\" achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-social-butterfly-silent-and-deadly-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e054184-c814-44ee-8c35-0eddff8b5df7/sm/ep7818.jpg","duration":179,"publication_date":"2013-07-03T15:58:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-109","changefreq":"weekly","video":[{"title":"2013:E89 - Let's Build - Dark Achievement City (Part 1)","description":"This week's Let's Build brings you Geoff and Gavin begin their adventure in the Nether, rebuilding Achievement City block for block.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7feecd14-feb9-4615-8367-74f971056344/sm/ep7816.jpg","duration":2601,"publication_date":"2013-07-02T20:02:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-26","changefreq":"weekly","video":[{"title":"2013:E27 - Mass Effect 3","description":"Gavin and Michael join forces to bring you Five Facts about Mass Effect 3!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d024c94b-628d-4fa1-90d6-8672515c6334/sm/ep7815.jpg","duration":275,"publication_date":"2013-07-02T18:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-26","changefreq":"weekly","video":[{"title":"2013:E26 - Trials Files #62","description":"In this week's Trials Files Geoff and Jack rob a bank in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d11d618-c7b3-4b06-a722-b3f8ce270f17/sm/ep7814.jpg","duration":153,"publication_date":"2013-07-02T15:01:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-27","changefreq":"weekly","video":[{"title":"2013:E25 - Week #169","description":"Jack and Geoff and the AH gang are back with this week's episode of AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30d8dbc8-47c4-4761-b806-0e7e700a1239/sm/ep7813.jpg","duration":277,"publication_date":"2013-07-01T23:50:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-july-2013","changefreq":"weekly","video":[{"title":"2013:E170 - Coming Soon - July 2013","description":"Kdin is back with a ton of new games and other information for the month of July!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-july-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/799c026e-edea-4c08-b903-bc2f0cddf230/sm/ep7812.jpg","duration":429,"publication_date":"2013-07-01T22:14:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-104","changefreq":"weekly","video":[{"title":"2013:E88 - GTA IV Cops & Crooks Part 3","description":"In this week's Let's Play GTA IV Jack, Ryan and Geoff, Gavin, Michael, and Ray are back with the third installment of Cops n' Crooks.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e686d2aa-8d80-45a8-aed5-b79bed1e8676/sm/ep7809.jpg","duration":2512,"publication_date":"2013-07-01T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-26","changefreq":"weekly","video":[{"title":"2013:E26 - Volume 145","description":"Jack and Geoff laugh and laugh and laugh for your enjoyment!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d6db7d4-0577-45ac-b63a-fee1c977e465/sm/ep7808.jpg","duration":229,"publication_date":"2013-06-28T22:11:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-103","changefreq":"weekly","video":[{"title":"2013:E87 - Minecraft - Episode 57 - King Geoff","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan play a twisted game of Simon says with this week's Let's Play Minecraft \"King Geoff.\"","player_loc":"https://roosterteeth.com/embed/lets-play-2013-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/361a1a0d-032f-4ec7-b80f-b525b120dd01/sm/ep7807.jpg","duration":1793,"publication_date":"2013-06-28T20:41:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-17","changefreq":"weekly","video":[{"title":"2013:E15 - Best of: Top 5 Crushed","description":"Ray and Michael watch some crushing game fails.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21624c39-4c03-43e9-a135-85b2ff348f60/sm/ep7806.jpg","duration":156,"publication_date":"2013-06-28T20:06:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-catch-me-if-you-can-beer-goggles-heeeey-yooooo-guyyyyyssss-guide","changefreq":"weekly","video":[{"title":"2013:E2284 - Catch me if you can, Beer goggles, HEEEEY YOOOOO GUYYYYYSSSS! Guide","description":"Ray and Michael show you how to get \"Catch me if you can\", \"Beer goggles\", and HEEEEY YOOOOO GUYYYYYSSSS! achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-catch-me-if-you-can-beer-goggles-heeeey-yooooo-guyyyyyssss-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cd3e4c5-d12d-424a-aced-336f6495371c/sm/ep7805.jpg","duration":247,"publication_date":"2013-06-28T20:05:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-open-season","changefreq":"weekly","video":[{"title":"2013:E169 - Game Night: Open Season","description":"Geoff and Caleb are back with Halo 4's duck hunt map Open Season. Gavin says \"What is Game Night\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-open-season","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f0a9933-f1eb-4371-b29b-94681ac1b78b/sm/ep7804.jpg","duration":97,"publication_date":"2013-06-28T19:40:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-20","changefreq":"weekly","video":[{"title":"2013:E26 - Trials PIG #63","description":"Jack and Gavin continue assaulting each other in Trials Evolution. Watch and scream!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19c46e4b-28cc-4c20-ac86-4d14c2414daa/sm/ep7803.jpg","duration":378,"publication_date":"2013-06-28T03:19:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-25","changefreq":"weekly","video":[{"title":"2013:E26 - Uncraft Me!","description":"This week on Rage Quit, Michael uncrafts his little heart out in the Xbox Live Indie Game, Uncraft Me! I would uncraft these honies all night...","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f88dab96-6e89-4976-b4ce-5aa6a6582534/sm/ep7802.jpg","duration":397,"publication_date":"2013-06-28T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-21","changefreq":"weekly","video":[{"title":"2013:E17 - Episode 17: Geoff vs. Michael","description":"Michael blindsides Geoff with a surprise game! Will Geoff be able to handle heat or will he go home burned","player_loc":"https://roosterteeth.com/embed/vs-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0e8e5d2-c5b1-4f8b-bf74-5b30c4ac6e39/sm/ep7801.jpg","duration":830,"publication_date":"2013-06-27T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-in-the-lobby-comboin-your-dudes-and-49-in-5-guides","changefreq":"weekly","video":[{"title":"2013:E2283 - In the lobby comboin' your dudes & 49 in 5 Guides","description":"X-Ray and Vav show you how to get the \"In the lobby comboin' your dudes\" and \"49 in 5\" achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-in-the-lobby-comboin-your-dudes-and-49-in-5-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d82f3f8-d41a-4d21-aaae-6df4115b186f/sm/ep7800.jpg","duration":303,"publication_date":"2013-06-27T19:24:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-24","changefreq":"weekly","video":[{"title":"2013:E22 - Good Vibrations","description":"This week's Behind the Scenes brings you \"Good Vibrations.\" You finally get to see the infamous buzzer in the desk story and how Ryan slowly broke Gavin's mind.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbc76cb1-301c-43a3-9e14-c14e83dcb6ce/sm/ep7799.jpg","duration":331,"publication_date":"2013-06-26T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-20","changefreq":"weekly","video":[{"title":"2013:E26 - Halo HORSE #133","description":"This week's episode of Halo HORSE brings you an intense match between Burnie and Martinizer.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d04fd7b0-933f-4929-8538-95d86ae29c67/sm/ep7798.jpg","duration":450,"publication_date":"2013-06-26T23:11:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-24","changefreq":"weekly","video":[{"title":"2013:E163 - Minecraft - Dark Achievement City","description":"Gav and Geoff show you the grungy, shady version of Achievement City rebuilt block for block in the Nether. \n\nWatch the Lads' reactions to Dark Achievement City in the Hit List Let's Play:","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd9dc436-f079-486f-8854-ed4385dec8eb/sm/ep7797.jpg","duration":88,"publication_date":"2013-06-26T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-96","changefreq":"weekly","video":[{"title":"2013:E86 - Smite","description":"Geoff, Jack, Ryan, Michael, Gavin, and Ray become gods and enter the combat arena in this week's Let's Play Smite. \n\nTest yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/lets-play-2013-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a6b3b4d-2e42-4b75-9b5d-8b47dc27711e/sm/ep7796.jpg","duration":2553,"publication_date":"2013-06-26T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-12","changefreq":"weekly","video":[{"title":"2013:E41 - Deadpool","description":"Ray and Geoff talk about the highly anticipated \"Deadpool\" for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f2a8ef7-1d2b-46db-81fb-7497ef63af99/sm/ep7795.jpg","duration":290,"publication_date":"2013-06-26T19:18:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-180","changefreq":"weekly","video":[{"title":"2013:E162 - GTA IV - Look Mom No Hands","description":"D4RKeE4GLE and A Ninja 007 learn to fly using motorcycles in GTA IV","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8f1ee7b-8563-4985-9f85-ec9dcf58e5cb/sm/2013912-1449181331291-ttd_mom.jpg","duration":174,"publication_date":"2013-06-25T19:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-deadpool-3-achievement-guides","changefreq":"weekly","video":[{"title":"2013:E2282 - Deadpool - 3 Achievement Guides","description":"Ray and Geoff show you how to get the \"I'm expecting company\", \"Makin a game!\", \"Only when he stops breathing\" achievements in Deadpool for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-deadpool-3-achievement-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eca393a4-a1ba-4175-a694-3b82374b02fd/sm/ep7792.jpg","duration":211,"publication_date":"2013-06-25T19:41:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-89","changefreq":"weekly","video":[{"title":"2013:E85 - Let's Build in Minecraft - King Geoff","description":"In this week's Let's Build, Gav and Geoff give you a \"preview\" of an upcoming Let's Play. What could it be about","player_loc":"https://roosterteeth.com/embed/lets-play-2013-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c23c25dd-c201-4b5c-983a-b114b0c7e3f5/sm/ep7789.jpg","duration":2173,"publication_date":"2013-06-25T19:33:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-187","changefreq":"weekly","video":[{"title":"2013:E161 - Minecraft - Tower of Trials","description":"zap45 and bic264 bring another game type, the tower of trials. This is a multilevel competition to reach the top.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-187","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":267,"publication_date":"2013-06-25T18:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-67","changefreq":"weekly","video":[{"title":"2013:E54 - Call of Duty: Black Ops II - Atari Easter Egg","description":"Jake (originally known as D00ughboy) and SupaWiziK show you how to play retro games in black ops 2!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":295,"publication_date":"2013-06-25T18:34:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-186","changefreq":"weekly","video":[{"title":"2013:E160 - Minecraft - Champion's Arena","description":"Orcwarriors (Gt: E7eRnaL sNiPeRx) and DidactLegen777 show you an awesome arena, where you can test your strength and ability to survive.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-186","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb1e14b5-a5b7-41f6-9b3c-4bb2ebd8e1d8/sm/2013912-1449182044577-ttd_champion.jpg","duration":192,"publication_date":"2013-06-25T18:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-185","changefreq":"weekly","video":[{"title":"2013:E159 - Far Cry 3 - Raining Sharks","description":"Here you learn how to use the map editor in Far Cry 3 to make it RAIN SHARKS with SpawnSolo and Zack.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-185","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2f88d06-d381-487b-9873-6e4c5f2a3d60/sm/2013912-1449182127710-ttd_far_cry_sharks.jpg","duration":131,"publication_date":"2013-06-25T17:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-20","changefreq":"weekly","video":[{"title":"2013:E26 - Assassin's Creed Brotherhood","description":"Jack and Geoff go over five facts for Assassin's Creed Brotherhood.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca04bf98-9d8a-4f72-b391-bd200268272e/sm/ep7777.jpg","duration":232,"publication_date":"2013-06-25T16:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-blood-dragon-the-greatest-format-of-all-time","changefreq":"weekly","video":[{"title":"2013:E168 - Far Cry 3: Blood Dragon - The Greatest Format of all Time","description":"Keegan and Rico bring you The Greatest Format of all Time collection guide in Far Cry 3: Blood Dragon worth 20G.\r\n\r\n#1 - 0:09\r\n#2 - 0:29\r\n#3 - 0:47\r\n#4 - 1:08\r\n#5 - 1:31\r\n#6 - 1:46\r\n#7 - 2:11\r\n#8 - 2:28\r\n#9 - 2:43\r\n#10 - 3:03\r\n#11 - 3:23\r\n#12 - 3:37","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-blood-dragon-the-greatest-format-of-all-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5a4d4bd-3455-465f-aaf3-aa7570c20519/sm/2013912-1449182200779-ttd_blood_dragon.jpg","duration":287,"publication_date":"2013-06-25T15:38:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-184","changefreq":"weekly","video":[{"title":"2013:E158 - Minecraft - Slayer","description":"Decadence Night and levy350 bring a somewhat popular gametype into Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-184","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":288,"publication_date":"2013-06-25T15:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-66","changefreq":"weekly","video":[{"title":"2013:E53 - Borderlands 2 - Seven Dwarves Easter Egg","description":"camboliusrex and middy142 find the Seven Dwarves Easter Egg","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":125,"publication_date":"2013-06-25T14:44:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-65","changefreq":"weekly","video":[{"title":"2013:E52 - State of Decay - 4 Movie Easter Eggs","description":"Reached and Jake dive into some of the numerous movie-themed references in State of Decay.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":131,"publication_date":"2013-06-24T21:33:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-16","changefreq":"weekly","video":[{"title":"2013:E24 - Week #168","description":"Jack and Geoff and the AH gang are back with this week's episode of AHWU. Check it out!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94d69a0d-fc64-40e5-a764-fb8036d7871e/sm/ep7764.jpg","duration":222,"publication_date":"2013-06-24T19:58:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-7","changefreq":"weekly","video":[{"title":"2013:E40 - Dungeons & Dragons - Chronicles of Mystara","description":"Ray and Geoff roll their d20s as they talk about Dungeons & Dragons: Chronicles of Mystara for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":219,"publication_date":"2013-06-24T19:29:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-183","changefreq":"weekly","video":[{"title":"2013:E157 - Minecraft - Charades!","description":"Whiistler and Heather use things to guess other things!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-183","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2020a527-6e94-4d25-b21b-9dbe48eda59c/sm/2013912-1449182275966-ttd_minecraft_charades.jpg","duration":195,"publication_date":"2013-06-24T19:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-67","changefreq":"weekly","video":[{"title":"2013:E84 - GTA IV Cops & Crooks Part 2","description":"Jack, Ryan and Geoff, Gavin, Michael, and Ray are back to crashing cars and shooting one another in this continuation video of Let's Play GTA IV Cops 'n Crooks.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc01d097-1b2e-4def-9fda-f1c7ed088b69/sm/ep7760.jpg","duration":1843,"publication_date":"2013-06-24T19:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-17","changefreq":"weekly","video":[{"title":"2013:E25 - Volume 144","description":"Jack and Geoff are back it again. Enjoy this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bd6c817-6d63-41f4-bb50-824bc9c439d8/sm/ep7759.jpg","duration":213,"publication_date":"2013-06-21T22:03:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-65","changefreq":"weekly","video":[{"title":"2013:E83 - Minecraft - Episode 56 - Hit List","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan go to the Achievement City Bulletin board to discover there's an emergency Book Club Meeting! Really","player_loc":"https://roosterteeth.com/embed/lets-play-2013-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb27611b-91fc-4a85-952a-07513cd74c7e/sm/ep7758.jpg","duration":2730,"publication_date":"2013-06-21T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-speedrun-survival","changefreq":"weekly","video":[{"title":"2013:E167 - Game Night - Speedrun Survival","description":"Caleb attempts to talk about the speedrun map in Halo 4, while Geoff talks about the film Howard the Duck. And as always, Gavin says \"What is Game Night\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-speedrun-survival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85d2135d-6deb-4179-824e-675f9191ffb0/sm/ep7757.jpg","duration":89,"publication_date":"2013-06-21T17:25:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-16","changefreq":"weekly","video":[{"title":"2013:E25 - The Unfair Platformer","description":"This week on Rage Quit, Michael learns that sometimes life isn't fair in the online flash game, The Unfair Platformer. It's a kangaroo court.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f06e76f1-2b54-45b9-9d50-ef7c5f9b03bd/sm/ep7756.jpg","duration":436,"publication_date":"2013-06-21T03:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-12","changefreq":"weekly","video":[{"title":"2013:E25 - Trials PIG #62","description":"Michael and Ray are your hosts in this week's Trials Evolution PIG, enjoy!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1508c12-63c2-4f2e-afe0-bd27faa211d4/sm/ep7755.jpg","duration":241,"publication_date":"2013-06-20T21:42:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-17","changefreq":"weekly","video":[{"title":"2013:E21 - Let's Play - GTA IV Cops 'n Crooks Part 1","description":"Watch as the AH crew plays GTA IV in this week's episode of Behind the Scenes. \n\nWatch Let's Play - GTA IV Cops 'n Crooks Part 1:","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/719ee5c0-af93-4443-82c0-43792d46e3a7/sm/ep7754.jpg","duration":213,"publication_date":"2013-06-20T19:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-13","changefreq":"weekly","video":[{"title":"2013:E16 - Episode 16: Ray vs. Geoff","description":"In this week's VS, Geoff grows tired of Ray's winning streak and decides to go old school. Will Geoff be the victor Will this finally be the week that Ray is brought down from his high horse Will you, the viewer, finally receive the pleasure of seeing someone else play Tune in to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03669d9-7da6-4c76-821c-d326c8ccaba9/sm/ep7753.jpg","duration":435,"publication_date":"2013-06-20T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-joel-play-state-of-decay","changefreq":"weekly","video":[{"title":"2013:E166 - Jack & Joel 'play' State of Decay","description":"Joel puts Jack into a state of dismay in this not informative, nor entertaining video. Please watch.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-joel-play-state-of-decay","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce7b122-6df2-4e20-9df9-da96b1574a4b/sm/ep7752.jpg","duration":191,"publication_date":"2013-06-20T17:55:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-nba-finals-game-7-heat-vs-spurs","changefreq":"weekly","video":[{"title":"2013:E165 - CH Predicts: NBA Finals Game 7 (Heat vs Spurs)","description":"Ben and Chad celebrate the end of the David Stern era while simulating the pivotal Game 7 matchup between the Miami Heat and the San Antonio Spurs.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-nba-finals-game-7-heat-vs-spurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e98e9e0c-bb26-46fb-ab47-a50bd6b45943/sm/2013912-1449182434138-predict_nba.jpg","duration":186,"publication_date":"2013-06-20T16:33:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-182","changefreq":"weekly","video":[{"title":"2013:E156 - Far Cry 3: Blood Dragon - DINO-MITE","description":"Xiidon and Milodino show you a fun way to kill Blood Dragons... with explosive C4000!\n\nP.S. Get it Dino [Blood Dragon] + Dynamite [C4000] = DINO-MITE (Barbara would be proud.)","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-182","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e050495-db86-439a-8d6f-e5c5820ca390/sm/2013912-1449182512091-ttd_far_cry_dino.jpg","duration":118,"publication_date":"2013-06-20T16:22:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-181","changefreq":"weekly","video":[{"title":"2013:E155 - Minecraft - No way in. No way out.","description":"HanSoloLucas and Mitch show you a nice way to trick the people you know into thinking that you are a friend.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-181","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":123,"publication_date":"2013-06-20T16:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-53","changefreq":"weekly","video":[{"title":"2013:E39 - State of Decay","description":"Reached and Hightower talk about State of Decay. Get out your favorite swingable object and drive around with your car door open, there be zombies to slay!","player_loc":"https://roosterteeth.com/embed/this-is-2013-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f18fb9e-21f1-48ac-aa4c-8b807ffff562/sm/2013912-1449182708816-this_is_state_of_decay.jpg","duration":301,"publication_date":"2013-06-20T16:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-11","changefreq":"weekly","video":[{"title":"2013:E25 - Halo HORSE #132","description":"This week's episode of Halo HORSE brings you a gripping match between Miles and Patrick.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a11bd32a-e61a-4060-a000-4f7881a4dbee/sm/ep7745.jpg","duration":325,"publication_date":"2013-06-20T14:23:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-13","changefreq":"weekly","video":[{"title":"2013:E154 - Red Dead Redemption - King of the Mountain","description":"In this week's Things to do in, Geoff, Gavin, Ryan, and Michael play King of the Mountain in Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80e78347-0c5c-4555-8efb-d5f5040bf1ef/sm/ep7744.jpg","duration":1203,"publication_date":"2013-06-19T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-179","changefreq":"weekly","video":[{"title":"2013:E153 - Grand Theft Auto IV - Overkill","description":"camboliusrex and middy142 take GTA back to it's roots and over perform in their murders","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-179","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34f8f7c0-74e6-40f1-bced-2406dca91593/sm/2013912-1449182773338-ttd_gta_overkill.jpg","duration":224,"publication_date":"2013-06-19T19:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-52","changefreq":"weekly","video":[{"title":"2013:E38 - Call of Juarez: Gunslinger","description":"Hightower and iSayWhat take a look at the new Call of Juarez game on XBLA!","player_loc":"https://roosterteeth.com/embed/this-is-2013-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b607a641-4802-49fe-967c-674c69aa8b5b/sm/2013912-1449182861401-this_is_juarez.jpg","duration":196,"publication_date":"2013-06-19T19:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-178","changefreq":"weekly","video":[{"title":"2013:E152 - Minecraft - Helms Deep","description":"StrikingHobbit, Hobbit on the RT site, brings you a minecraft recreation of the Battle of Helms Deep from the Lord of the Rings series.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-178","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccf75684-732d-41e9-a433-fea236740231/sm/2013912-1449182920308-ttd_helms_deep.jpg","duration":99,"publication_date":"2013-06-19T19:07:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-silent-hill-hd-collection-wheres-luna","changefreq":"weekly","video":[{"title":"2013:E164 - Silent Hill HD Collection - Where's Luna?","description":"Renethyn and Technopanda show you what is, and how to unlock the Princess heart costume.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-silent-hill-hd-collection-wheres-luna","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b086a08-42de-438e-8e3a-35ad0489a337/sm/2013912-1449182974827-silent_hill.jpg","duration":133,"publication_date":"2013-06-19T18:47:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-177","changefreq":"weekly","video":[{"title":"2013:E151 - Minecraft... Rock Climbing!","description":"George (MrJorj) and Martin (Martin_27) show off the first challenge in a range of Minecraft sports.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-177","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85a52bc1-e0cb-4882-99a0-0b9e4e7f7928/sm/2013912-1449183039398-minecraft_rock_climbing.jpg","duration":243,"publication_date":"2013-06-19T18:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-176","changefreq":"weekly","video":[{"title":"2013:E150 - Minecraft - The end battle","description":"VirtualFORT and G0dzillaaa show you a \"Last person standing\" PvP map Virtual made in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-176","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12e93819-49f0-4b47-aa61-313c061c7c79/sm/2013912-1449183093890-minecraft_end_battle.jpg","duration":157,"publication_date":"2013-06-19T18:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-call-of-juarez-gunslinger-swift-justice-and-trick-shot","changefreq":"weekly","video":[{"title":"2013:E163 - Call of Juarez: Gunslinger - Swift Justice and Trick Shot","description":"DayMan Zee shows you how to get the swift justice and trick shot achievements in COJ gunslinger","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-call-of-juarez-gunslinger-swift-justice-and-trick-shot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f396baa3-0049-46df-a606-ecaef8d6d27f/sm/2013912-1449867016251-maxresdefault_(7).jpg","duration":91,"publication_date":"2013-06-19T18:03:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-63","changefreq":"weekly","video":[{"title":"2013:E50 - Halo 4 - T-Bagging Spartan Easter Egg","description":"Jake and SupaWiziK show you were to find the horniest of all spartans in Halo 4 SpOps!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":125,"publication_date":"2013-06-19T17:47:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-9","changefreq":"weekly","video":[{"title":"2013:E25 - Trials Files #61","description":"In this week's Trials Files Geoff and Jack play Legend of the West in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f15752b8-cf55-4072-b75b-830077bea8a6/sm/ep7729.jpg","duration":131,"publication_date":"2013-06-18T21:29:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-39","changefreq":"weekly","video":[{"title":"2013:E81 - Let's Build in Minecraft - Rock, Paper, Scissors","description":"This week's Let's Build brings you Geoff and Gavin creating the stage for the infamous Things to do in: Rock, Paper, Scissors.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5ce828d-8b77-42c3-bb24-f9efe2295655/sm/ep7727.jpg","duration":2233,"publication_date":"2013-06-18T20:01:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-175","changefreq":"weekly","video":[{"title":"2013:E149 - Halo 4 - Halo Ultimate","description":"Chad and Caleb bring a new Things To Do In... Halo 4! It's just like the real life version... but more deadly.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-175","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":174,"publication_date":"2013-06-17T22:08:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-10","changefreq":"weekly","video":[{"title":"2013:E23 - Week #167","description":"Jack and Geoff and the AH gang are back with this week's episode of AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/846842e9-823f-4141-bbef-e92195f9c40d/sm/ep7725.jpg","duration":333,"publication_date":"2013-06-17T21:23:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-174","changefreq":"weekly","video":[{"title":"2013:E148 - Halo 4 - Skee Goose","description":"Reached and AxialMatt show you how to play a bit of violent skee ball using your bodies.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":230,"publication_date":"2013-06-17T19:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-173","changefreq":"weekly","video":[{"title":"2013:E147 - Minecraft - Wet Bread","description":"RobotAteGrandma and Silenttiger build a giant loaf of bread and make it wet.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":122,"publication_date":"2013-06-17T18:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-172","changefreq":"weekly","video":[{"title":"2013:E146 - GTA IV - The Instigator","description":"Ashton (Lord Lethonai) and Kaisonic (Kaisonic) show you a fun way to mess with the cab drivers of Liberty City in GTA IV.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":288,"publication_date":"2013-06-17T18:07:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-168","changefreq":"weekly","video":[{"title":"2013:E145 - Halo 4 - Ghost Rider","description":"Jake and Reached bring dead mongii back to life in this fun ass Things To Do In: Halo 4!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":241,"publication_date":"2013-06-17T17:47:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-25","changefreq":"weekly","video":[{"title":"2013:E80 - GTA IV Lone Wolf Biker","description":"The AH Crew become hostile towards one another in this week's Let's Play GTA IV: Lone Wolf Biker.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c375fed-4542-4a4b-905d-05408ce92368/sm/ep7712.jpg","duration":1846,"publication_date":"2013-06-17T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-169","changefreq":"weekly","video":[{"title":"2013:E144 - Minecraft - AH Memes","description":"Chad and xBritxHybrid present the best or possibly the worst video ever created.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":146,"publication_date":"2013-06-17T16:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-20","changefreq":"weekly","video":[{"title":"2013:E79 - Minecraft - Episode 55 - Creeper Football","description":"In this week's Let's Play Minecraft, Geoff, Jack, Michael, Gavin, Ray and Ryan deal with an explosive situation in something we like to call - Creeper Football.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c05a7c6b-0cf8-47fb-834c-4493f3a0564b/sm/ep7708.jpg","duration":2382,"publication_date":"2013-06-14T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-6","changefreq":"weekly","video":[{"title":"2013:E14 - Best Of Nailed It!","description":"Some things are just too painful to watch.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80295cd9-b0d9-4013-b384-6f8603d04762/sm/ep7707.jpg","duration":133,"publication_date":"2013-06-14T20:59:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-ray-at-e3-2013-part-3","changefreq":"weekly","video":[{"title":"2013:E162 - Jack and Ray at E3 2013 Part 3","description":"Jack and Ray are back with the third installment of E3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-ray-at-e3-2013-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f6ff372-c39e-4da8-83b1-7424caa3c454/sm/ep7706.jpg","duration":177,"publication_date":"2013-06-14T20:29:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-m4rco","changefreq":"weekly","video":[{"title":"2013:E161 - Game Night - M4RCO","description":"Geoff and Caleb talk about M4RCO, the Marco Polo game in Halo 4 and Gavin says \"What is Game Night\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-m4rco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3f5d7c0-bfd0-4234-b42c-3e0a60c390fe/sm/ep7705.jpg","duration":84,"publication_date":"2013-06-14T19:19:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-5","changefreq":"weekly","video":[{"title":"2013:E24 - Volume 143","description":"Jack and Geoff are back it again. Enjoy this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4df4f952-e818-4e8c-9d9c-e7d1e6bc9d95/sm/ep7704.jpg","duration":220,"publication_date":"2013-06-14T15:11:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-4","changefreq":"weekly","video":[{"title":"2013:E24 - Hotline Miami","description":"This week on Rage Quit, Michael heads back to the 80s and hits the beach in Hotline Miami. He's looking for money, murder, and a place to wear loafers without socks.\n\nCan't get enough of Hotline Miami Get the first ever hands-on playable experience of Hotline Miami 2, only at RTX 2013! http://rtxevent.com/home.php","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c94d674c-fa54-44db-9fae-115141a3feca/sm/ep7703.jpg","duration":326,"publication_date":"2013-06-14T01:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-ray-at-e3-2013-part-2","changefreq":"weekly","video":[{"title":"2013:E160 - Jack and Ray at E3 2013 Part 2","description":"Beard and Brownman are back with more from E3 2013!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-ray-at-e3-2013-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32eccde8-ee1a-4c6e-818c-8a845adaccd5/sm/ep7702.jpg","duration":124,"publication_date":"2013-06-14T00:39:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-4","changefreq":"weekly","video":[{"title":"2013:E15 - Episode 15: Ray vs. Jack","description":"After having Ray be the victor for 4 weeks straight, the AH crew decides to think outside the box. Welcome to a very special edition of VS. Will this finally be the week, when someone steals that belt from Ray Tune in to find out!","player_loc":"https://roosterteeth.com/embed/vs-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b10501d1-6119-478a-8ee8-c4034f3697a8/sm/ep7701.jpg","duration":421,"publication_date":"2013-06-13T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-3","changefreq":"weekly","video":[{"title":"2013:E24 - Trials PIG #61","description":"Jack and Geoff face off in Trials Evolution PIG this week. Watch to see who is this week's winner!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/452899ed-3c5b-48ad-a22e-9f62e9b3284a/sm/ep7698.jpg","duration":304,"publication_date":"2013-06-13T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-stanley-cup-finals-game-2-blackhawks-bruins","changefreq":"weekly","video":[{"title":"2013:E159 - CH Predicts: Stanley Cup Finals Game 2 (Blackhawks - Bruins)","description":"Ben and Chad preview Game 2 of the Stanley Cup Finals between the Chicago Blackhawks and the Boston Bruins.\r\n\r\nIt is fair to say that Ben looks pretty stupid after he picked the Penguins to lift the cup.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-stanley-cup-finals-game-2-blackhawks-bruins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4df62311-6b8c-46b5-93d2-9eecc137be5d/sm/2013912-1449866989182-maxresdefault_(6).jpg","duration":185,"publication_date":"2013-06-13T15:38:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-ray-at-e3-2013-part-1","changefreq":"weekly","video":[{"title":"2013:E158 - Jack and Ray at E3 2013 Part 1","description":"Jack and Ray having a crazy time at this year's E3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-ray-at-e3-2013-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2b2a3ae-cb86-42b1-883a-cdab6b3dc075/sm/ep7697.jpg","duration":72,"publication_date":"2013-06-12T23:17:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-3","changefreq":"weekly","video":[{"title":"2013:E20 - Things to do in Minecraft - Rock, Paper, Scissors","description":"Watch as the AH crew plays Minecraft in this week's episode of Behind the Scenes. \n\nWatch Things to do in Minecraft - Rock, Paper, Scissors:","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1bdaa7d-8539-4382-bb76-951a250394b3/sm/ep7696.jpg","duration":185,"publication_date":"2013-06-12T22:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-11","changefreq":"weekly","video":[{"title":"2013:E78 - Gears of War: Judgment Co-op Par 1","description":"In this week's Let's Play Wednesday, the AH crew play Gears of War: Judgment.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/534535f6-32ec-4b5e-b78b-37f7173b8e23/sm/ep7695.jpg","duration":4223,"publication_date":"2013-06-12T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-2","changefreq":"weekly","video":[{"title":"2013:E24 - Halo HORSE #131","description":"This week's episode of Halo HORSE brings you an intense match between Gus and Adam.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/754c42c0-03ee-4ac5-9082-c4b3396f6cb3/sm/ep7685.jpg","duration":317,"publication_date":"2013-06-12T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-170","changefreq":"weekly","video":[{"title":"2013:E143 - Halo 4 - Man on Man Cannon Action","description":"Hightower and AxialMatt partake in some man on man cannon action for your viewing pleasure.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":140,"publication_date":"2013-06-12T19:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mass-effect-3-citadel-dlc-3-achevements","changefreq":"weekly","video":[{"title":"2013:E157 - Mass Effect 3: Citadel DLC - 3 Achevements","description":"Hector and Leo B show around the combat simulator achievements in the Citadel DLC in Mass Effect 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mass-effect-3-citadel-dlc-3-achevements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29d80a87-0146-4fa8-8ad4-bfbf7d1b1e8b/sm/2013912-1449866968657-maxresdefault_(5).jpg","duration":336,"publication_date":"2013-06-12T19:21:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-171","changefreq":"weekly","video":[{"title":"2013:E142 - Saints Row: The Third - Streak Fighter","description":"vgun47 and axialmatt ruin classic games and make genital puns.however, its really a ploy to make Axialmatt pee his pants. Will vgun47 succeed Tune in to find out!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":222,"publication_date":"2013-06-12T19:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-167","changefreq":"weekly","video":[{"title":"2013:E141 - State Of Decay \"zombie tripper\"","description":"Alex and Mat show you how to mess with zombies in:\n\"State Of Decay\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":237,"publication_date":"2013-06-12T17:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-2","changefreq":"weekly","video":[{"title":"2013:E140 - Minecraft - Frienderman Don't Dance","description":"In a very special installment created by Lindsay, the AH crew are back with this week's Things to do in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cc9fc66-e80e-46ee-9562-8466456d382f/sm/ep7684.jpg","duration":78,"publication_date":"2013-06-12T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-remember-me-fuzzy-logic-and-dropping-l-bombs","changefreq":"weekly","video":[{"title":"2013:E156 - Remember Me - Fuzzy Logic & Dropping L-Bombs","description":"MPKLoki and Reached drop some fuzzy Logic-Bombs!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-remember-me-fuzzy-logic-and-dropping-l-bombs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4403b2cd-1fb6-439b-83ec-9d259d0e067a/sm/2013912-1449866947792-maxresdefault_(4).jpg","duration":191,"publication_date":"2013-06-11T20:43:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-166","changefreq":"weekly","video":[{"title":"2013:E139 - Minecraft - Pixel Ponies","description":"Vivalajady and SweedishX show you some pixel ponies!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":201,"publication_date":"2013-06-11T20:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-165","changefreq":"weekly","video":[{"title":"2013:E138 - Minecraft - Pig Lead","description":"Robert (Skythir) & and Nick (HnE Enigma) show you how to entertain yourself with a pig.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":163,"publication_date":"2013-06-11T20:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-escape-goat","changefreq":"weekly","video":[{"title":"2013:E155 - Indie Night - Escape Goat","description":"Hightower and xbritxhybrid take a look at Xbox Indie Game Escape Goat! And Hybrid doesn't make a stupid amount of puns.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-escape-goat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1ed50cf-12e8-41c7-ae95-3128b9401521/sm/2013912-1449866925286-maxresdefault_(3).jpg","duration":174,"publication_date":"2013-06-11T19:26:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-49","changefreq":"weekly","video":[{"title":"2013:E24 - Trials Files #60","description":"In this week's Trials Files Geoff and Gavin play Evolution Mini Golf.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afab5fbc-3b6d-4660-9755-2d53cda2174b/sm/ep7669.jpg","duration":157,"publication_date":"2013-06-11T18:55:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-47","changefreq":"weekly","video":[{"title":"2013:E22 - Week #166","description":"Jack and Ray are in Los Angeles checking out E3 2013! In today's special AHWU they run through a bunch of titles that got announced today (filmed prior to the Sony Press Event) at the various events! Watch and enjoy!\r\n\r\nThis episode of AHWU is sponsored by Go Daddy! Use the offer code \"AHWU\" to get a special rate, or just click this link! http://www.godaddy.com/isc=ahwu","player_loc":"https://roosterteeth.com/embed/ahwu-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f0cab44-9ed3-4429-aa1e-c4a325fdf2fa/sm/ep7667.jpg","duration":431,"publication_date":"2013-06-11T05:26:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-21","changefreq":"weekly","video":[{"title":"2013:E37 - Smite","description":"Geoff, Jack, and Ryan do a This Is... for Hi-Rez Studio's Free To Play MOBA, Smite.\r\n\r\nTest yourself in the SMITE arena and play for free here: http://bit.ly/1yuLyiZ","player_loc":"https://roosterteeth.com/embed/this-is-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8437433a-7a6e-4122-9b0f-9040a5fa60a1/sm/ep7666.jpg","duration":404,"publication_date":"2013-06-10T21:03:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-203","changefreq":"weekly","video":[{"title":"2013:E76 - GTA IV Cops 'n Crooks","description":"Jack, Ryan and Geoff try to lay down the law as Gavin, Michael, and Ray fight the system in this week's Let's Play GTA IV Cops 'n Crooks Part 1.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-203","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00545b71-9ddc-42c5-ad97-471b33ba688b/sm/ep7665.jpg","duration":2123,"publication_date":"2013-06-10T15:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-hammerhead","changefreq":"weekly","video":[{"title":"2013:E154 - Game Night: Halo 4 - Hammerhead","description":"Geoff and Caleb talk about Hammerhead in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-hammerhead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c2dd8ad-9310-454b-8242-316586bac6b1/sm/ep7659.jpg","duration":85,"publication_date":"2013-06-07T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-30","changefreq":"weekly","video":[{"title":"2013:E13 - Best fails of May 2013","description":"Ready for the best of the worst for May","player_loc":"https://roosterteeth.com/embed/game-fails-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56863ee2-637e-47e0-bcb6-419e5ca87298/sm/ep7660.jpg","duration":205,"publication_date":"2013-06-07T15:17:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-47","changefreq":"weekly","video":[{"title":"2013:E23 - Get Your Cell Together","description":"This week on Rage Quit, Michael plays the Xbox Live Indie Game, Get Your Cell Together. Where's Osmosis Jones when you need him","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b7706f-5825-4a78-ad9c-a3c74682ddf3/sm/ep7658.jpg","duration":233,"publication_date":"2013-06-07T00:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-38","changefreq":"weekly","video":[{"title":"2013:E23 - Trials PIG #60","description":"Ray and Michael face off in Trials Evolution PIG this week. Watch to see who the winner will be this week!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60c6834a-35fd-4d44-95ee-8c39b21fd96d/sm/ep7657.jpg","duration":382,"publication_date":"2013-06-06T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-39","changefreq":"weekly","video":[{"title":"2013:E23 - Halo HORSE #130","description":"In this super special episode of Halo HORSE, we continue our journey with an epic matchup between Kara and Patrick.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b989af3f-39ac-4bd1-9d78-0ff297bba8a8/sm/ep7655.jpg","duration":301,"publication_date":"2013-06-06T16:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-38","changefreq":"weekly","video":[{"title":"2013:E14 - Episode 14: Ray vs. Ryan","description":"Ray still has the victor's belt. Will Ryan finally redeem the rest of the lads by taking away the title in a match of Worms Ultimate Mayhem Just watch and see in this week's VS!","player_loc":"https://roosterteeth.com/embed/vs-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6bd3453-2378-489b-b399-bdcbcaadea20/sm/ep7656.jpg","duration":938,"publication_date":"2013-06-06T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-39","changefreq":"weekly","video":[{"title":"2013:E19 - VS Rapala Fishing Frenzy","description":"The AH gents and lads dodge some fishy bullets in this week's Behind the Scenes: Rapala Fishing Frenzy!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4455841-2b81-4d36-a42d-2c192c1339a9/sm/ep7647.jpg","duration":253,"publication_date":"2013-06-05T23:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-43","changefreq":"weekly","video":[{"title":"2013:E137 - Minecraft - Rock, Paper, Scissors","description":"The Achievement Hunter crew are back with a very special installment of Things to do in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25a7a1d7-ec31-43d2-9558-f38fe0b0647b/sm/ep7648.jpg","duration":469,"publication_date":"2013-06-05T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-164","changefreq":"weekly","video":[{"title":"2013:E136 - Minecraft - The Sheep are out to Play","description":"Bullseye2400 and SleepyTurtle91 take a look at some naughty barnyard activity.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":149,"publication_date":"2013-06-05T20:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-163","changefreq":"weekly","video":[{"title":"2013:E135 - Call of Juarez: Gunslinger - Bird Hunting","description":"Apwilliams12 and AutoBotGirl21 show you how to go Bird hunting In:\nCall Of Juarez:Gunslinger","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":158,"publication_date":"2013-06-05T20:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-51","changefreq":"weekly","video":[{"title":"2013:E36 - Call Of Juarez: Gunslinger","description":"Apwilliams12 And Autobotgirl21 Show you The New Ubisoft Game\n\"Call Of Juarez:Gunslinger\"","player_loc":"https://roosterteeth.com/embed/this-is-2013-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":293,"publication_date":"2013-06-05T20:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-162","changefreq":"weekly","video":[{"title":"2013:E134 - Minecraft - PSY High","description":"D4RKeE4GLE and A Ninja 007 take a look at the latest creation in Minecraft and both are of them can only...PSY...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":124,"publication_date":"2013-06-05T19:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-161","changefreq":"weekly","video":[{"title":"2013:E133 - Minecraft ZOMBIES","description":"I wanted to bring two of my favorite thing together, Minecraft and Call of duty Zombies. i call this...well Minecraft zombies. i hope you like it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":266,"publication_date":"2013-06-05T19:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-160","changefreq":"weekly","video":[{"title":"2013:E132 - Minecraft - Russian Roulette","description":"Ashton (Lord Lethonai) and Kaisonic (Kaisonic) bring this most dangerous of games to the blocky world of Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":194,"publication_date":"2013-06-05T18:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lego-the-lord-of-the-rings-it-wont-be-that-easy-v3","changefreq":"weekly","video":[{"title":"2013:E153 - Lego The Lord Of The Rings - It Wont Be That Easy! v3","description":"HotDog923 Shows you how to get the \"It Wont Be That Easy!\" Achievement in LEGO The Lord Of The Rings","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lego-the-lord-of-the-rings-it-wont-be-that-easy-v3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":61,"publication_date":"2013-06-05T18:38:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-faster-than-light-two-mods","changefreq":"weekly","video":[{"title":"2013:E152 - Faster Than Light - Two Mods","description":"Masshalogear takes a look at two ship mods you can get for the game Faster Than Light","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-faster-than-light-two-mods","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ede88028-093b-4217-875d-76b0062c2535/sm/2013912-1449866881065-maxresdefault_(2).jpg","duration":189,"publication_date":"2013-06-05T18:32:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-50","changefreq":"weekly","video":[{"title":"2013:E35 - Don't Starve","description":"Masshalogear and Vgun47 take a look at Don't Starve. A wilderness survival game available on Steam.","player_loc":"https://roosterteeth.com/embed/this-is-2013-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":204,"publication_date":"2013-06-05T18:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-159","changefreq":"weekly","video":[{"title":"2013:E131 - Minecraft - Epic Troll Map","description":"Kaisonic and DominicMarqu check out Dominic's \"Epic Troll Map\" in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":329,"publication_date":"2013-06-05T18:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-158","changefreq":"weekly","video":[{"title":"2013:E130 - New Super Mario Bros.U: Block Attack","description":"In this vid Lukus01 and Semper fi 589 show you how to defeat every mini boss and take 1/3 of every boss in New Super Mario Bros. U.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":104,"publication_date":"2013-06-05T17:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-157","changefreq":"weekly","video":[{"title":"2013:E129 - Bioshock Infinite - Look at her go!","description":"MPKLoki and Whiistler uncover a not-so-well-known talent that Elizabeth has in Bioshock Infinite","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":194,"publication_date":"2013-06-05T17:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-magnetic-by-nature-awakening","changefreq":"weekly","video":[{"title":"2013:E151 - Indie Night - Magnetic by Nature: Awakening","description":"Hightower and Maineiacs check out Indie Game, Magnetic by Nature - Awakening.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-magnetic-by-nature-awakening","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d97bd30a-b215-4271-8467-2f71ef87d7bf/sm/2013912-1449866863534-maxresdefault_(1).jpg","duration":170,"publication_date":"2013-06-05T17:15:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-49","changefreq":"weekly","video":[{"title":"2013:E34 - Remember Me","description":"Chad and Mike talk about the new Capcom game 'Remember Me'.","player_loc":"https://roosterteeth.com/embed/this-is-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":368,"publication_date":"2013-06-05T01:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-166","changefreq":"weekly","video":[{"title":"2013:E73 - Let's Build - Slice of Hell","description":"In the most anticipated Let's Build ever, Geoff, Ryan, and Gavin bring Ray a little slice of hell, a la mode.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78fdb934-a7c2-40b5-ac69-2d608b24a1f6/sm/ep7625.jpg","duration":2393,"publication_date":"2013-06-04T21:41:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-39","changefreq":"weekly","video":[{"title":"2013:E23 - Trials Files #59","description":"New York is in ruins. What is the cause of the destruction Find out as Geoff and Jack search the harbor.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c04e9f7-6d99-4c60-a7ec-f01fcb3ce0c4/sm/ep7624.jpg","duration":111,"publication_date":"2013-06-04T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-38","changefreq":"weekly","video":[{"title":"2013:E23 - Plants vs. Zombies","description":"Jack and Geoff discuss five facts for Plants vs. Zombies.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51c6d678-eb58-495f-8258-29ef2021cc93/sm/ep7623.jpg","duration":211,"publication_date":"2013-06-04T19:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-36","changefreq":"weekly","video":[{"title":"2013:E21 - Week #165","description":"The boys are in the office going mental again. Next week's episode will be coming all the way from E3 in Los Angeles! Stay tuned for madness!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1f9f99d-42a6-455f-81b1-08ded87140ef/sm/ep7621.jpg","duration":370,"publication_date":"2013-06-03T23:13:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-ecf-game-7-heat-vs-pacers","changefreq":"weekly","video":[{"title":"2013:E150 - CH Predicts: ECF Game 7 (Heat vs Pacers)","description":"Ben and Chad talk flopping and the state of the big 3 while simulating the massive Game 7 matchup between the Miami Heat and the Indiana Pacers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-ecf-game-7-heat-vs-pacers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f17f82b-a889-451b-b127-1fb5da941d68/sm/2013912-1449866844399-maxresdefault.jpg","duration":160,"publication_date":"2013-06-03T22:33:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-159","changefreq":"weekly","video":[{"title":"2013:E72 - GTA IV Destruction Derby","description":"Watch Gavin, Michael, Kerry, Ryan, Jack, and Geoff as they willfully crash into each other in this week's Let's Play GTA IV.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b534216a-2d37-41f6-bf3b-de786b7eb3f7/sm/ep7619.jpg","duration":2380,"publication_date":"2013-06-03T21:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-june-2013","changefreq":"weekly","video":[{"title":"2013:E149 - Coming Soon - June 2013","description":"Kdin is back with a new look and a ton of new games and other information for the month of June!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-june-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18a187ce-62e1-437c-b707-229d7233097d/sm/ep7618.jpg","duration":524,"publication_date":"2013-06-03T15:51:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-155","changefreq":"weekly","video":[{"title":"2013:E70 - Minecraft Episode 53 - Shopping List Pt 2","description":"Watch the thrilling conclusion to the shopping list saga with Geoff, Jack, Michael, Gavin, Ray and Ryan.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28056fc7-d95f-4f1f-b8cf-bf0509b4afe7/sm/ep7614.jpg","duration":3070,"publication_date":"2013-05-31T21:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-24","changefreq":"weekly","video":[{"title":"2013:E12 - Best Bring the Pain","description":"Some things are just too painful to watch.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b8782ba-a19d-4ca8-be27-44467f87f9ed/sm/ep7612.jpg","duration":138,"publication_date":"2013-05-31T21:25:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-ruckus-flag","changefreq":"weekly","video":[{"title":"2013:E148 - Game Night: Halo 4 - Ruckus Flag","description":"Geoff and Caleb talk about the CTF map Ruckus Town in Halo 4 and Gavin says \"What is Game Night\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-ruckus-flag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41445d29-a8a9-4fbd-8e98-6ec6975384a9/sm/ep7610.jpg","duration":127,"publication_date":"2013-05-31T19:09:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-forgotten-bloodlust-guides","changefreq":"weekly","video":[{"title":"2013:E2234 - Forgotten, Bloodlust Guides","description":"Ray and Michael show you how to get the \"Forgotten\" and \"Bloodlust\" achievements in Metro: Last Light for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-forgotten-bloodlust-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8a6b4fa-2db0-4f03-afcc-3cbee82c7af2/sm/ep7609.jpg","duration":224,"publication_date":"2013-05-31T18:54:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-36","changefreq":"weekly","video":[{"title":"2013:E22 - Cat Mario","description":"This week on Rage Quit, Michael plays the highly requested and insanely frustrating online flash game, Cat Mario. Not even Gatomon would be prepared for this.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f19e91fa-640a-4c95-ad5c-e9dcec3cefd4/sm/ep7607.jpg","duration":320,"publication_date":"2013-05-31T00:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-29","changefreq":"weekly","video":[{"title":"2013:E22 - Trials PIG #59","description":"Geoff and Michael face off in Trials Evolution PIG this week. Watch to see who the winner will be this week!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92ef9fef-809d-45c3-b098-f691ae3a907a/sm/ep7606.jpg","duration":326,"publication_date":"2013-05-30T21:47:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-30","changefreq":"weekly","video":[{"title":"2013:E13 - Episode 13: Ray vs. Gavin","description":"Is this the week when someone will finally beat Ray Let's see if Gavin has what it takes in London 2012 Olympics for Xbox 360.","player_loc":"https://roosterteeth.com/embed/vs-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee6b17c9-3315-4c6e-8127-5a2bad07694c/sm/ep7605.jpg","duration":1175,"publication_date":"2013-05-30T20:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-32","changefreq":"weekly","video":[{"title":"2013:E18 - Surgeon Simulator 2013: Steam Edition - Part 2","description":"Get a behind the scenes look as Dr. Free and Dr. Jones return to perform surgery on wheels and INNNNN SPAAAAAAACCCEEEE!!!!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23812463-795c-4ebe-bac6-10ea1ad80ca7/sm/ep7604.jpg","duration":165,"publication_date":"2013-05-29T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-30","changefreq":"weekly","video":[{"title":"2013:E22 - Halo HORSE #129","description":"Today everybody's favorite lovebirds, Michael and Lindsay, face off in a round of Halo HORSE for the office HORSE Tournament! Who will win","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1814a501-cfdb-4e71-b12b-33be23158d23/sm/ep7603.jpg","duration":351,"publication_date":"2013-05-29T22:41:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-reunion-diver-and-soup","changefreq":"weekly","video":[{"title":"2013:E147 - Reunion, Diver and Soup","description":"Ray and Michael show you how to get the \"Reunion\", \"Diver\" and \"Soup\" achievements in Metro: Last Light for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-reunion-diver-and-soup","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/913f01c8-e767-4ca1-8f79-a1ed693c9e59/sm/ep7602.jpg","duration":211,"publication_date":"2013-05-29T21:44:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-145","changefreq":"weekly","video":[{"title":"2013:E69 - Worms Revolution: Episode 2","description":"Michael, Gavin, and Ray are back on the battlefield with more rope-swinging, rocket launching, team killing action in Worms Revolution for the Xbox Live Arcade. Lads Play!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43d1f19c-ca39-4809-a5c9-379dbb878fea/sm/ep7601.jpg","duration":1722,"publication_date":"2013-05-29T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-pool-is-open-guide","changefreq":"weekly","video":[{"title":"2013:E2233 - The Pool Is Open Guide ","description":"Ray and Michael show you how to get \"The Pool Is Open\" achievement in Resident Evil: Revelations for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-pool-is-open-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67859601-29d3-4999-ac9b-425bdbafb3e4/sm/ep7599.jpg","duration":107,"publication_date":"2013-05-29T18:25:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-138","changefreq":"weekly","video":[{"title":"2013:E68 - Let's Build with Gav and Geoff - Thread the Needle Pt 2","description":"The (not so) thrilling conclusion of Thread the Needle. Geoff and Gav create a diabolic ender pearl maze for the lads to navigate. Original video can be watched here - http://www.youtube.com/watchv=ofsgkdQqgQs","player_loc":"https://roosterteeth.com/embed/lets-play-2013-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0de0e898-bec5-4abe-828d-457343816a48/sm/ep7596.jpg","duration":2020,"publication_date":"2013-05-28T19:15:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-136","changefreq":"weekly","video":[{"title":"2013:E67 - Minecraft Episode 52 - Shopping List","description":"After fighting the Ender Dragon, Geoff, Jack, Michael, Gavin, Ray and Ryan head back to Achievement City and relax with a spot of shopping.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/088028cd-5200-4eb0-a6c1-306e9379f5cb/sm/ep7595.jpg","duration":3374,"publication_date":"2013-05-28T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-31","changefreq":"weekly","video":[{"title":"2013:E22 - Trials Files #58","description":"Geoff and Jack play an achievement hunter map that allows you to play HORSE in this episode of Trials Evolution: Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9daca299-e1ea-41b4-a8c7-26c63260285e/sm/ep7594.jpg","duration":124,"publication_date":"2013-05-28T17:07:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-31","changefreq":"weekly","video":[{"title":"2013:E22 - Fallout: New Vegas","description":"Jack and Geoff discuss five facts for Fallout: New Vegas.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19cbd39b-a054-4b6b-bd1f-bc7e81dec2bf/sm/ep7593.jpg","duration":201,"publication_date":"2013-05-28T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-134","changefreq":"weekly","video":[{"title":"2013:E66 - GTA IV Races","description":"After talking about it for the last two let's plays, we finally run some races!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d11b9326-3979-4f49-8660-31364c69b881/sm/ep7592.jpg","duration":2860,"publication_date":"2013-05-27T21:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-champions-league-final-dortmund-vs-bayern","changefreq":"weekly","video":[{"title":"2013:E146 - CH Predicts: Champions League Final (Dortmund vs Bayern)","description":"Ben and Stuart botch some germanic last names as they preview the highly anticipated Champions League final between Borussia Dortmund and Bayern Munich.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-champions-league-final-dortmund-vs-bayern","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2848aa19-db26-4619-8748-d0f04a85c35f/sm/2013912-1449866814356-maxresdefault_(15).jpg","duration":179,"publication_date":"2013-05-25T05:58:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-21","changefreq":"weekly","video":[{"title":"2013:E11 - Best Shots to the Head","description":"Because really some kind of head trauma induced genius is really our only shot at this point.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aac1daf-6131-4c39-a1e9-e060e3be1516/sm/ep7587.jpg","duration":138,"publication_date":"2013-05-24T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-race","changefreq":"weekly","video":[{"title":"2013:E145 - Game Night: Halo 4 - Race","description":"Geoff and Caleb talk about Race in Halo 4 and Gavin says \"What is Game Night\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6255f3f-a10a-475e-94ad-47f402a4621d/sm/ep7584.jpg","duration":95,"publication_date":"2013-05-24T16:27:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-31","changefreq":"weekly","video":[{"title":"2013:E21 - Happy Pong","description":"This week on Rage Quit, Michael plays a twist of the classic game \"Pong\", in the Xbox Live Indie Game, Happy Pong. There are no words.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a992e1a7-2005-4ad4-a7e4-d40863bb775f/sm/ep7582.jpg","duration":182,"publication_date":"2013-05-23T19:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-25","changefreq":"weekly","video":[{"title":"2013:E21 - Trials PIG #58","description":"This week's Trials PIG bring you an intense match between Ray and Geoff.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d0da0b6-98b0-4507-a762-141eb7b9f3e1/sm/ep7581.jpg","duration":354,"publication_date":"2013-05-23T19:50:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-25","changefreq":"weekly","video":[{"title":"2013:E12 - Episode 12: Michael vs. Ray","description":"Who will be this week's victor, Michael or Ray Watch as they fight for the title in Sega Soccer Slam.","player_loc":"https://roosterteeth.com/embed/vs-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/599fc237-0bd5-4c8d-b223-f6f07b7f9083/sm/ep7580.jpg","duration":1010,"publication_date":"2013-05-23T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-25","changefreq":"weekly","video":[{"title":"2013:E21 - Halo HORSE #128","description":"In this episode of Halo HORSE, we continue our journey through the Halo HORSE Tournament of 2013 with an epic matchup between Joel and Geoff to see who will face Ray. Watch and cheer on your favorite!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf45a427-c521-47e2-88b5-abe3afd11948/sm/ep7577.jpg","duration":495,"publication_date":"2013-05-22T23:54:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-30","changefreq":"weekly","video":[{"title":"2013:E128 - Minecraft - Hot Hoof","description":"This week the Achievement Hunter gang bring you Things to do in Minecraft: Hot Hoof.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92900a49-f52e-4375-b07f-2542211cabc8/sm/ep7575.jpg","duration":759,"publication_date":"2013-05-22T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-14","changefreq":"weekly","video":[{"title":"2013:E33 - Resident Evil Residency","description":"Ray and Michael talk about the new Resident Evil Revelations for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d908aa4-e36a-4683-817c-bdbe1a394ad8/sm/ep7572.jpg","duration":583,"publication_date":"2013-05-22T18:05:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-silent-hill-hd-collection-what-the-hill-just-happened","changefreq":"weekly","video":[{"title":"2013:E144 - Silent Hill HD Collection - What the Hill Just Happened?","description":"Renethyn shows the location of the gold and silver pipes in Silent Hill 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-silent-hill-hd-collection-what-the-hill-just-happened","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6a3b111-2128-45f8-be21-15f7d1a7c7d9/sm/2013912-1449866793728-maxresdefault_(14).jpg","duration":124,"publication_date":"2013-05-22T17:29:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-slender-the-arrival-prologue-collectibles-and-letters","changefreq":"weekly","video":[{"title":"2013:E143 - Slender: The Arrival - Prologue: Collectibles and Letters","description":"Joe (Lazlow514) is in Slender: The Arrival, to help you twitch, scare and jump your way to all of the collectibles and the one hidden achievement in the Prologue level.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-slender-the-arrival-prologue-collectibles-and-letters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fe8cbe6-a9cd-4a88-b949-4eef644c2c97/sm/2013912-1449866776011-maxresdefault_(13).jpg","duration":189,"publication_date":"2013-05-22T17:04:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-156","changefreq":"weekly","video":[{"title":"2013:E127 - Minecraft - Ping Pong","description":"Chad and Tegdif show you how to play Ping Pong in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":150,"publication_date":"2013-05-22T16:48:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-155","changefreq":"weekly","video":[{"title":"2013:E126 - Minecraft - Lethal Ladders","description":"AxialMatt and xBRITxHyBriD show you the proper way to use ladders in minecraft. You might wanna wear a helmet next time you're on one.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":150,"publication_date":"2013-05-22T16:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-154","changefreq":"weekly","video":[{"title":"2013:E125 - Minecraft - Hungry Hungry Humans","description":"Whiistler and Heather show you a fun game you can quickly set up with friends based on fat animals and big appetites!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":77,"publication_date":"2013-05-22T16:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-153","changefreq":"weekly","video":[{"title":"2013:E124 - Minecraft - Trouble in Citytown","description":"Whiistler and Heather show you a fun way to defend your town when there are strangers in your land!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":136,"publication_date":"2013-05-22T16:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-48","changefreq":"weekly","video":[{"title":"2013:E32 - Go Home Dinosaurs!","description":"Apwilliams12 and AutoBotGirl21 \nGive you the rundown on the new game:\n \"Go Home Dinosaurs\"","player_loc":"https://roosterteeth.com/embed/this-is-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":275,"publication_date":"2013-05-22T16:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-152","changefreq":"weekly","video":[{"title":"2013:E123 - Halo 4: Unlimited Explosions","description":"In this vid the boys (Lukus01 and Semper fi 589) show you how to create a constant stream of fire and explosions.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":86,"publication_date":"2013-05-22T15:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-47","changefreq":"weekly","video":[{"title":"2013:E31 - Deadliest Catch: Alaskan Storm","description":"Chad and friends take a look a classic game that is dear to all our hearts.","player_loc":"https://roosterteeth.com/embed/this-is-2013-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":361,"publication_date":"2013-05-22T02:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-22","changefreq":"weekly","video":[{"title":"2013:E21 - Bioshock 2","description":"Jack and Geoff discuss five (actually six!) new facts about Bioshock 2.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb7539c7-dd44-4df3-b1b5-5047269007ce/sm/ep7544.jpg","duration":261,"publication_date":"2013-05-21T21:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-99","changefreq":"weekly","video":[{"title":"2013:E64 - Let's Build in Minecraft - Thread the Needle","description":"Filmed on April 5th 2013, Geoff and Gav create a diabolic ender pearl maze for the lads to navigate.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d3d59d6-9581-4a22-833c-e431df9c7609/sm/ep7543.jpg","duration":1877,"publication_date":"2013-05-21T18:56:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-22","changefreq":"weekly","video":[{"title":"2013:E21 - Trials Files #57","description":"Geoff and Jack are immersed into a black & white world in this episode of Trials Evolution: Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3b8d117-e8bf-4fc0-b35e-11d46c997bf8/sm/ep7542.jpg","duration":139,"publication_date":"2013-05-21T17:23:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-legacy-of-kain-soulrever","changefreq":"weekly","video":[{"title":"2013:E142 - Retro Active: Legacy of Kain","description":"In this week's Retro Active, Fragger finishes the Legacy of Kain with Soul Reaver.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-legacy-of-kain-soulrever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2312eab-8b2c-40b6-a459-a93a24036804/sm/ep7541.jpg","duration":318,"publication_date":"2013-05-21T15:24:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-22","changefreq":"weekly","video":[{"title":"2013:E20 - Week #164 ","description":"Jack and Geoff and the AH gang are back with this week's episode of AHWU. Don't forget to subscribe \r\nto Let's Play: http://www.youtube.com/letsplay \r\nand Game Fails: http://www.youtube.com/gamefails and check out our store: http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93bd4511-ddf4-4124-9529-62523ea8d9e7/sm/ep7540.jpg","duration":245,"publication_date":"2013-05-20T22:38:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-91","changefreq":"weekly","video":[{"title":"2013:E62 - Left 4 Dead 2 Podcast Crew","description":"The podcast cast and crew gets together to have a rousing match of Survival in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53529713-d5ce-4ede-b36f-3c92fd507806/sm/ep7535.jpg","duration":1694,"publication_date":"2013-05-18T01:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-11","changefreq":"weekly","video":[{"title":"2013:E30 - Metro Last Light","description":"Ray and Geoff talk about the new Metro Last Light for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50d6599d-6df2-49c6-8b8b-b05369f69fb8/sm/ep7534.jpg","duration":373,"publication_date":"2013-05-17T20:29:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-88","changefreq":"weekly","video":[{"title":"2013:E61 - Minecraft Episode 51 - The End Part 3","description":"Geoff, Jack, Michael, Gavin, Ray, and Ryan finish playing The End.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4ef72ce-2ab1-41cd-9a25-dce465b386f3/sm/ep7533.jpg","duration":2376,"publication_date":"2013-05-17T18:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-14","changefreq":"weekly","video":[{"title":"2013:E10 - Best Accidental Wins","description":"Check out all these lucky wins!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b76404f0-1b51-492e-98f5-65b47e903d6d/sm/ep7532.jpg","duration":161,"publication_date":"2013-05-17T17:57:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-ctf-pirates","changefreq":"weekly","video":[{"title":"2013:E141 - Game Night: CTF Pirates","description":"Geoff and Caleb go over what CTF Pirates is and give a shout out to Crew Hunter.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-ctf-pirates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89b1d051-ff28-4fdc-9788-c6bb4fa70c86/sm/ep7531.jpg","duration":109,"publication_date":"2013-05-17T15:26:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-22","changefreq":"weekly","video":[{"title":"2013:E20 - Among the Sleep (Alpha)","description":"This week on Rage Quit, Michael cacks his pants and crawls for his life in the Indie Game, Among the Sleep (Alpha). This is why I always sleep with a night light on.\n\nDownload the Alpha here: http://www.kickstarter.com/projects/krillbite/amon...","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90886f80-5bc7-4740-a739-96f27391898f/sm/ep7529.jpg","duration":450,"publication_date":"2013-05-16T22:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-17","changefreq":"weekly","video":[{"title":"2013:E11 - Episode 11: Geoff vs. Ray","description":"Geoff defends his belt for the first time in VS history. What nefarious plan does Ray have in mind to thwart our hero and steal his coveted title","player_loc":"https://roosterteeth.com/embed/vs-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14b38a73-8a13-4f73-aa00-65e09aba9257/sm/ep7528.jpg","duration":935,"publication_date":"2013-05-16T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-17","changefreq":"weekly","video":[{"title":"2013:E20 - Trials PIG #57","description":"In this much anticipated match, Jack and Geoff go head to head towards victory in this new episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6569608d-ca17-4170-8edd-fa7d9e3acd14/sm/ep7527.jpg","duration":286,"publication_date":"2013-05-16T21:24:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-13","changefreq":"weekly","video":[{"title":"2013:E9 - Best fails of April 2013","description":"Ready for the best of the worst for April","player_loc":"https://roosterteeth.com/embed/game-fails-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f98c3ef8-7ec4-4a2e-8eeb-3be1a149c34e/sm/ep7525.jpg","duration":209,"publication_date":"2013-05-15T23:35:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-22","changefreq":"weekly","video":[{"title":"2013:E122 - Grand Theft Auto IV - AAA","description":"Gav and Geoff use their court-mandated community service hours to help out the citizens of Liberty City with car trouble in this week's Things to do in: GTA IV (for the Xbox 360).","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/237fcb7a-6068-4758-9857-e62d9e4f6882/sm/ep7524.jpg","duration":156,"publication_date":"2013-05-15T22:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-18","changefreq":"weekly","video":[{"title":"2013:E20 - Halo HORSE #127","description":"In today's special episode of Achievement PIG, Kerry (Dragonface) faces off against The Martinizer in a Play-In PIG special event for the Halo HORSE Tournament! Who will win and advance on to play Burnie Watch and learn!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb25ba4c-bf1a-446a-9fbd-88d59c7191c8/sm/ep7522.jpg","duration":280,"publication_date":"2013-05-15T22:15:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-79","changefreq":"weekly","video":[{"title":"2013:E59 - Tony Hawk","description":"Geoff, Gavin, Ray, and Jack \"hit\" the streets as they skate, do tricks, and fall and fall, and fall, and fall again in Tony Hawk's Pro Skater HD for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a70c18-3fd4-4ba7-975c-817ba9a181ab/sm/ep7521.jpg","duration":1488,"publication_date":"2013-05-15T22:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-20","changefreq":"weekly","video":[{"title":"2013:E16 - Worms Revolution","description":"AH is saved by the shell.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db4318d0-1e25-43f7-95ff-b53f27ddddfa/sm/ep7520.jpg","duration":241,"publication_date":"2013-05-15T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-18","changefreq":"weekly","video":[{"title":"2013:E20 - Trials Files #56","description":"Geoff and Jack gear up and head to space in this episode of Trials Evolution: Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fea514e-c625-431e-8662-2929944a2783/sm/ep7517.jpg","duration":87,"publication_date":"2013-05-14T21:20:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-17","changefreq":"weekly","video":[{"title":"2013:E20 - The Legend of Zelda","description":"Jack and Michael learn five new facts about The Legend of Zelda, the classic NES title!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35c9bc4f-5715-4bc6-a175-5df352b5dbe9/sm/ep7516.jpg","duration":311,"publication_date":"2013-05-14T21:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-17","changefreq":"weekly","video":[{"title":"2013:E19 - Week #163","description":"Jack and Geoff and the boys are back with this week's episode of AHWU. Don't forget to grab your \"People like grapes\" shirt tomorrow on T-Shirt Tuesday! http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ba59c83-4793-42bf-b911-cc6a8fd7c018/sm/ep7515.jpg","duration":314,"publication_date":"2013-05-13T22:52:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-9","changefreq":"weekly","video":[{"title":"2013:E29 - Doritos Crash Course 2","description":"Ray and Geoff talk about the brand new (and FREE) XBLA game Doritos Crash Course 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d378daa-806b-4e5e-a89a-b4757247b6e2/sm/ep7514.jpg","duration":226,"publication_date":"2013-05-13T22:41:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-74","changefreq":"weekly","video":[{"title":"2013:E58 - Grand Theft Auto IV Part 1","description":"The wait is over! AH shows off an impressive lack of driving skills and common sense in Liberty City.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51f33b5f-eea4-4c28-90a2-4083198a3ebf/sm/ep7513.jpg","duration":2136,"publication_date":"2013-05-13T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-battle-and-beast-skin-pack","changefreq":"weekly","video":[{"title":"2013:E140 - Battle and Beast Skin Pack","description":"X-Ray and Vav show you all the skins in the \"Battle and Beast Skin Pack\" in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-battle-and-beast-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f58f184d-2f21-4920-bb5d-795b7a46c13c/sm/ep7512.jpg","duration":160,"publication_date":"2013-05-13T18:55:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-10","changefreq":"weekly","video":[{"title":"2013:E8 - Best Of Car Problems ","description":"This week, two guys without cars (Ray & Michael) look at the evils they can cause!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b1a8f1a-ac4d-4e7a-8fea-82fd37768e7e/sm/ep7509.jpg","duration":180,"publication_date":"2013-05-10T21:42:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-68","changefreq":"weekly","video":[{"title":"2013:E57 - Minecraft Episode 50 - The End Part 2","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan continue to bicker as they prepare to punch a dragon in the face.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e75668b9-cc40-4630-a6cc-f697e30e5914/sm/ep7508.jpg","duration":2137,"publication_date":"2013-05-10T20:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-151","changefreq":"weekly","video":[{"title":"2013:E121 - Minecraft - Mob Cap","description":"AxialMatt and CombatWombat bring a wet and wild game for the whole family. Be sure to pee before watching.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":165,"publication_date":"2013-05-10T17:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-150","changefreq":"weekly","video":[{"title":"2013:E120 - Uno - Fragger","description":"Be sure to check out www.achievementhunter.com/community","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":101,"publication_date":"2013-05-10T17:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-1st-birthday-skin-pack","changefreq":"weekly","video":[{"title":"2013:E139 - 1st Birthday Skin Pack","description":"X-Ray and Vav show you all the new skins in the latest skin pack for Minecraft on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-1st-birthday-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/421d9608-b280-44ba-b8c1-0711dcf4e374/sm/ep7501.jpg","duration":108,"publication_date":"2013-05-10T16:39:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-bomberman","changefreq":"weekly","video":[{"title":"2013:E138 - Game Night: Halo 4 - Bomberman","description":"Gavin says \"What is Game Night\" \r\nGeoff and Caleb say a bunch of shit too.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-bomberman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5573d19e-e9bc-45c4-8568-6768377deb2e/sm/ep7500.jpg","duration":104,"publication_date":"2013-05-10T15:44:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-15","changefreq":"weekly","video":[{"title":"2013:E19 - Feeding Frenzy","description":"This week on Rage Quit, Michael dives into Fish Frenzy for the Xbox Live Arcade. It's a fish-eat-fish world down there.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbd1d613-dc78-4cc8-a840-95a40af7d9b4/sm/ep7499.jpg","duration":297,"publication_date":"2013-05-09T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-14","changefreq":"weekly","video":[{"title":"2013:E10 - Episode 10: Jack vs. Geoff","description":"Will Geoff be able to redeem his last fishy defeat, or will he go belly up Find out when the two go head to head in Rapala Fishing Frenzy 2009!","player_loc":"https://roosterteeth.com/embed/vs-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c3c3758-d810-4a3f-85f7-a9a6c2f2fc72/sm/ep7498.jpg","duration":824,"publication_date":"2013-05-09T22:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-11","changefreq":"weekly","video":[{"title":"2013:E19 - Trials PIG #56","description":"Ray and Gavin continue their bromance in this new episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db7bbc03-fe8a-4cae-a6cc-6fc8184e308b/sm/ep7497.jpg","duration":209,"publication_date":"2013-05-09T21:29:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-14","changefreq":"weekly","video":[{"title":"2013:E19 - Halo HORSE #126","description":"Ryan and Jordan continue the first round of our 2013 Halo HORSE tournament! Who do you think will advance to round 2","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd218122-fa97-40a3-a488-cfa8ff200137/sm/ep7496.jpg","duration":431,"publication_date":"2013-05-08T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-53","changefreq":"weekly","video":[{"title":"2013:E40 - Far Cry 3: Blood Dragon - Sea Sick Easter Egg","description":"Jake and Reached show you where you can find the FC3 reference in FC3: Blood Dragon!\r\n\r\nSloth joke incoming","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":112,"publication_date":"2013-05-08T20:57:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-14","changefreq":"weekly","video":[{"title":"2013:E119 - GTA IV - Last Action Hero","description":"Gav and the lads try and land on Geoff's boat. WITH STYLE.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58492820-9fe1-4e57-8bab-660554ddfc02/sm/ep7494.jpg","duration":259,"publication_date":"2013-05-08T20:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-149","changefreq":"weekly","video":[{"title":"2013:E118 - Minecraft - Human Minesweeper","description":"This is a fun little game called Human Minesweeper in a fun little game called Minecraft brought to you by PoolKattt and Us3rnamez.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":101,"publication_date":"2013-05-08T20:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-52","changefreq":"weekly","video":[{"title":"2013:E39 - Far Cry 3: Blood Dragon - TMNT Easter Egg","description":"LemonLance and Druyii shows you the Teenage Mutant Ninja Turtles easter egg in Far Cry 3: Blood Dragon. Watch them as they kill the turtles we all know and love (+ one shark).","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":194,"publication_date":"2013-05-08T20:46:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-53","changefreq":"weekly","video":[{"title":"2013:E56 - Monopoly Part 2","description":"Prepare yourself for the thrilling conclusion to the most action packed Let's Play OF ALL TIME!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c28849fb-8b0e-449f-b3ab-55b62d2b7c91/sm/ep7487.jpg","duration":4524,"publication_date":"2013-05-08T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-49","changefreq":"weekly","video":[{"title":"2013:E36 - Halo 4 - Double Rainbow Easter Egg v2","description":"Jake and Reached show you where you can find the Double Rainbow Easter Egg in Halo 4!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":133,"publication_date":"2013-05-08T20:10:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-super-amazing-wagon-adventure","changefreq":"weekly","video":[{"title":"2013:E137 - Indie Night - Super Amazing Wagon Adventure","description":"Hightower and iSayWhat take a right in the Super Amazing Wagon and go on an Adventure.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-super-amazing-wagon-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f2cb0da-59a2-4541-8647-cf97b08746bc/sm/2013912-1449866755858-maxresdefault_(12).jpg","duration":221,"publication_date":"2013-05-08T17:19:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-148","changefreq":"weekly","video":[{"title":"2013:E117 - Minecraft - Minecraft PIG","description":"Metlover and Digiboy1 (aka Jack and Conner) play Minecraft PIG, in a fun things to do in! Download link: http://www.planetminecraft.com/project/minecraft-p...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":297,"publication_date":"2013-05-08T16:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-12","changefreq":"weekly","video":[{"title":"2013:E15 - Hot Foot","description":"3, 2, 1...Bunce!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a785822-2506-4e81-9861-1dce845e4d64/sm/ep7478.jpg","duration":108,"publication_date":"2013-05-08T16:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-9","changefreq":"weekly","video":[{"title":"2013:E19 - Sonic CD","description":"Jack and Geoff look at the classic title Sonic CD. Known as one of the few big titles for the Sega CD, this one is a doozy.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34e8844e-3b05-4749-af18-4c1789cae737/sm/ep7477.jpg","duration":291,"publication_date":"2013-05-08T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-46","changefreq":"weekly","video":[{"title":"2013:E55 - Let's Build in Minecraft - Hop til you Drop","description":"Gav and Geoff build the \"Hop til you Drop\" map from Things to do in Minecraft found here - . \r\nThis video was filmed on March 5th 2013","player_loc":"https://roosterteeth.com/embed/lets-play-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68386667-4a53-4698-868d-41cfb24005f9/sm/ep7475.jpg","duration":2029,"publication_date":"2013-05-07T21:30:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-10","changefreq":"weekly","video":[{"title":"2013:E19 - Trials Files #55","description":"Geoff and Jack go to the carnival in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25aafe6b-d13b-4421-b378-bebe783fbb4b/sm/ep7474.jpg","duration":127,"publication_date":"2013-05-07T20:46:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-11","changefreq":"weekly","video":[{"title":"2013:E18 - Week #162","description":"Jack and Geoff and the boys (and special Australian guest Caiti) are here to bring you a little bit of news on this day. Also, all of you Kiwi and Aussie fans, keep an ear out for a cool announcement!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0490f60d-c082-4d93-bd71-a2f1861aaf56/sm/ep7473.jpg","duration":273,"publication_date":"2013-05-06T23:04:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-40","changefreq":"weekly","video":[{"title":"2013:E54 - Black Ops 2 Mob of the Dead","description":"Ray, Gavin, Michael and Ryan pit their wits against the mindless living dead. So even money in the brains department really.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77093db2-14cd-418f-bf2a-a3f2062c3a6f/sm/ep7472.jpg","duration":2335,"publication_date":"2013-05-06T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-running-man-guide","changefreq":"weekly","video":[{"title":"2013:E2206 - Running man Guide","description":"Ray and Geoff show you how to get the \"Running man\" achievement in Far Cry 3: Blood Dragon for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-running-man-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ea7b656-4d48-436a-9c4d-bfb61f7c07ed/sm/ep7465.jpg","duration":115,"publication_date":"2013-05-03T20:28:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-34","changefreq":"weekly","video":[{"title":"2013:E53 - Minecraft - Episode 49 - THE END Part 1","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan all team up on a long quest to fight the Ender Dragon. Will they make it Or will their lovely relationship buckle under the pressure","player_loc":"https://roosterteeth.com/embed/lets-play-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e09b4614-bafc-448a-b720-aa1a1fb5c31f/sm/ep7464.jpg","duration":2275,"publication_date":"2013-05-03T19:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-hover-cars","changefreq":"weekly","video":[{"title":"2013:E136 - Game Night: Halo 4 - Hover Cars","description":"Geoff and Caleb check out a map in Halo 4, called Hover Cars. Woohoo.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-hover-cars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e737a664-d55e-4a2c-b441-81d4073c6b9e/sm/ep7462.jpg","duration":115,"publication_date":"2013-05-03T18:43:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-10","changefreq":"weekly","video":[{"title":"2013:E18 - Surgeon Simulator 2013: Ambulance & Space Missions","description":"This week on Rage Quit, Dr. Jones & Dr. Free are back to finish the job in the Ambulance and secret Space Missions in Part 2 of Surgeon Simulator 2013: Steam Edition. Boldly going where no surgeons have gone before.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/834041cc-5574-4b1e-81ab-eec262f363cd/sm/ep7461.jpg","duration":1328,"publication_date":"2013-05-02T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-8","changefreq":"weekly","video":[{"title":"2013:E18 - Trials PIG #55","description":"Jack and Ray get to Trialin' in this week's episode of Trials Evolution PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de1ded12-3287-43ee-9b64-9c2896a51fcc/sm/ep7460.jpg","duration":196,"publication_date":"2013-05-02T22:20:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-derp-just-the-tip-guides","changefreq":"weekly","video":[{"title":"2013:E2205 - Derp, Just the Tip Guides","description":"Ray and Geoff show you how to get the \"Derp\" and \"Just the Tip\" achievements in Far Cry 3: Blood Dragon for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-derp-just-the-tip-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84b25a93-8336-4068-88d4-1d4dd776e15b/sm/ep7458.jpg","duration":133,"publication_date":"2013-05-02T20:34:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-6","changefreq":"weekly","video":[{"title":"2013:E9 - Episode 9: Jack vs. Ray","description":"Jack and Ray face off in an epic battle of epicness. Will Ray's reign of terror over the office continue, or will Jack stop the insanity Special thanks to Pizza Hut for sponsoring this episode. http://www.pizzahut.com/","player_loc":"https://roosterteeth.com/embed/vs-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfa1686b-be4d-4186-9a7a-2d3ab928b2b1/sm/ep7452.jpg","duration":619,"publication_date":"2013-05-02T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-147","changefreq":"weekly","video":[{"title":"2013:E116 - Minecraft - DOOM","description":"Joe (Lazlow514) and Josh (JoshthePoshx) are in Minecraft with a throwback \"things to do\" with a remake of the classic FPS DOOM!... We dedicate this one to Jack.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7c389b0-b7d4-4b9b-82b1-8c81f5a7a389/sm/2013912-1455570754335-maxresdefault.jpg","duration":273,"publication_date":"2013-05-02T15:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-45","changefreq":"weekly","video":[{"title":"2013:E27 - Star Trek","description":"Joe (Lazlow514) and Josh (JoshthePoshx) are back! This time they're taking a look at the new Star Trek game and discussing a few of the achievements.","player_loc":"https://roosterteeth.com/embed/this-is-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":242,"publication_date":"2013-05-02T15:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-may-2013","changefreq":"weekly","video":[{"title":"2013:E135 - Coming Soon - May 2013","description":"Kdin is back with a look at all of the new releases hitting for May 2013! Watch and learn what is coming out for your favorite system!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-may-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f7b63ba-d1ea-491e-9201-4b19c9c2ef82/sm/ep7445.jpg","duration":587,"publication_date":"2013-05-02T15:24:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-44","changefreq":"weekly","video":[{"title":"2013:E26 - Far Cry 3: Blood Dragon","description":"Hightower and iSayWhat go back to the 80s to face the nuclear Apocalypse of 2007 and fight future soldieristic people and dragons and stuff and have a nice time","player_loc":"https://roosterteeth.com/embed/this-is-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":232,"publication_date":"2013-05-02T15:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-blood-dragon-derp-andand-running-man","changefreq":"weekly","video":[{"title":"2013:E134 - Far Cry 3: Blood Dragon - Derp & Running Man","description":"Mike and Tina are back showing you how to unlock the \"Derp\" and \"Running Man\" achievement in Far Cry 3 Blood Dragon! Swag, yo.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-blood-dragon-derp-andand-running-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/607eb63c-3d31-4323-a9ed-3818f2af24ad/sm/2013912-1449866731171-maxresdefault_(11).jpg","duration":120,"publication_date":"2013-05-02T05:14:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-blood-dragon-just-the-tip-and-blood-dragon-down","changefreq":"weekly","video":[{"title":"2013:E133 - Far Cry 3 Blood Dragon - Just the Tip & Blood Dragon Down","description":"Mike and Tina show you an easy place where to get the \"Just the Tip\" and \"Blood Dragon Down\" achievements in Far Cry 3 Blood Dragon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-blood-dragon-just-the-tip-and-blood-dragon-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a0a0dc1-ed9c-47f8-88df-4f060e6d7903/sm/2013912-1449866711860-maxresdefault_(10).jpg","duration":72,"publication_date":"2013-05-02T02:44:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-4","changefreq":"weekly","video":[{"title":"2013:E18 - Halo HORSE #125","description":"Today kicks off the 2013 Halo 4 HORSE tournament! We begin round one with Achievement Hunter Ray and Community Manager Barbara. Place your bets now!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f67f0e04-f222-4c74-b1fd-bc990f17e375/sm/ep7438.jpg","duration":453,"publication_date":"2013-05-02T01:16:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-2","changefreq":"weekly","video":[{"title":"2013:E14 - BattleBlock Theater","description":"AH loves giving and receiving high fives.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04a81b43-25f3-4681-9a44-63d55ede1190/sm/ep7436.jpg","duration":195,"publication_date":"2013-05-01T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013","changefreq":"weekly","video":[{"title":"2013:E25 - Far Cry 3: Blood Dragon","description":"Ray and Geoff talk about one of their most anticipated games of the year!","player_loc":"https://roosterteeth.com/embed/this-is-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65bbce32-8ebd-4231-99e4-a469d473848c/sm/ep7435.jpg","duration":337,"publication_date":"2013-05-01T20:46:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-canucks-vs-sharks","changefreq":"weekly","video":[{"title":"2013:E132 - CH Predicts: Canucks vs Sharks","description":"Ben and Chad discuss goaltender drama while simulating game 1 of the Western Conference First Round matchup between the Vancouver Canucks and the San Jose Sharks.\r\n\r\nSpoiler: Chad has weird fetishes.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-canucks-vs-sharks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82cb479a-3c52-4b2b-8ec9-a54b7c0381df/sm/2013912-1449866692255-maxresdefault_(9).jpg","duration":167,"publication_date":"2013-05-01T20:46:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-knicks-vs-celtics","changefreq":"weekly","video":[{"title":"2013:E131 - CH Predicts: Knicks vs Celtics","description":"Ben and Chad contemplate the future of the Boston Celtic's big 3 while previewing game 5 of the Eastern Conference First Round series between the Knicks and the Celtics.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-knicks-vs-celtics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5d082b2-2b80-4fcd-85af-b2ad997b6fa0/sm/2013912-1449866670245-maxresdefault_(8).jpg","duration":236,"publication_date":"2013-05-01T20:40:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-3","changefreq":"weekly","video":[{"title":"2013:E115 - Mincraft - Donkey Kong","description":"Geoff and Gav show off a fully playable Donkey Kong game in Minecraft. \nCreated by AxialMatt","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56fbf5cd-5657-4542-8d00-71dfb46a6d6b/sm/ep7432.jpg","duration":150,"publication_date":"2013-05-01T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013","changefreq":"weekly","video":[{"title":"2013:E18 - Super Mario Galaxy","description":"Ray and Michael learn some new and interesting facts about Super Mario Galaxy in this week's episode of Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5b7cbf2-d7fe-4114-87b9-5be86072e845/sm/ep7429.jpg","duration":293,"publication_date":"2013-04-30T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lets-build-with-geoff-and-gav-shopping-list","changefreq":"weekly","video":[{"title":"2013:E129 - Let's Build with Geoff & Gav - Shopping List","description":"This week's lets build is a little different. Geoff and Gav show you their build of a Minecraft Let's Play that hasn't even been filmed yet! Shopping List Let's Play coming soon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lets-build-with-geoff-and-gav-shopping-list","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c92538e-ab98-469d-98a0-857442ac0043/sm/ep7428.jpg","duration":2308,"publication_date":"2013-04-30T21:30:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-twins-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E2195 - Twins Achievement Guide","description":"Ray and Michael show you how to get the \"Twins\" achievement in Dead Island: Riptide for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-twins-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a99c55a-ecc0-4e4b-aa53-365fd920b3e8/sm/ep7427.jpg","duration":153,"publication_date":"2013-04-30T20:18:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-2","changefreq":"weekly","video":[{"title":"2013:E18 - Trials Files #54","description":"Geoff and Jack take a look at an Acme-themed Trials map in Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6561cb5-b995-40f0-a3b2-5dfed0d47e20/sm/ep7426.jpg","duration":74,"publication_date":"2013-04-30T18:32:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-146","changefreq":"weekly","video":[{"title":"2013:E114 - Far Cry 3 - Tiger Coliseum","description":"Test your skills against three tigers in an enclosed space with a bow.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":249,"publication_date":"2013-04-30T00:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-50","changefreq":"weekly","video":[{"title":"2013:E17 - Week #161","description":"Things return to normal in this week's AHWU. Back at the office with news and information for you to base your week on!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce9ac89-cea0-4ade-bc18-1cd25d9d452c/sm/ep7422.jpg","duration":329,"publication_date":"2013-04-29T21:54:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mob-of-the-dead-hidden-song-2","changefreq":"weekly","video":[{"title":"2013:E128 - Mob of the Dead Hidden Song 2","description":"Ray and Geoff show you where to find the second hidden song in Mob of the Dead in the Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.\r\n\r\nSong: We All Fall Down - Kevin Sherwood","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mob-of-the-dead-hidden-song-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c2d503e-1494-4ea8-ab02-d59611c36724/sm/ep7421.jpg","duration":52,"publication_date":"2013-04-29T21:27:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-145","changefreq":"weekly","video":[{"title":"2013:E113 - Minecraft - Xray Vision","description":"Jerem6401 and COPYxKAT show you how to see through the world in minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":293,"publication_date":"2013-04-29T18:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pop-goes-the-weasel-guide","changefreq":"weekly","video":[{"title":"2013:E2194 - Pop Goes the Weasel Guide","description":"Ray and Geoff show you how to get the \"Pop Goes the Weasel\" achievement in the Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pop-goes-the-weasel-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01851674-979d-4971-81d5-a7cf2879e676/sm/ep7417.jpg","duration":389,"publication_date":"2013-04-29T18:12:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-snipe-a-mole","changefreq":"weekly","video":[{"title":"2013:E127 - Game Night: Halo 4 - Snipe-a-Mole","description":"Geoff and Caleb revisit a classic Halo Reach map, re-imagined in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-snipe-a-mole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/324c01b5-a014-4ec9-b584-fce02e76db1e/sm/ep7411.jpg","duration":96,"publication_date":"2013-04-26T20:32:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-204","changefreq":"weekly","video":[{"title":"2013:E50 - Minecraft - Episode 48 - Enchantment Level 30 - Part II","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan finish up the Enchantment Challenge. Who will have the most powerful bow","player_loc":"https://roosterteeth.com/embed/lets-play-2013-204","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baa35565-0e6e-49ae-b404-015769776ba0/sm/ep7410.jpg","duration":2066,"publication_date":"2013-04-26T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-144","changefreq":"weekly","video":[{"title":"2013:E112 - Minecraft - Everything","description":"All of it, every bit. iSayWhat and HighTower are taking you to get all the achievement in Minecraft. HOLD ONTO YOUR PANTS THE RIDE IS ABOUT TO BEGIN!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":193,"publication_date":"2013-04-26T16:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-49","changefreq":"weekly","video":[{"title":"2013:E17 - Surgeon Simulator 2013: Steam Edition","description":"This week on Rage Quit, Dr. Jones and Dr. Free are back in the OR as they attempt a heart, double kidney, and brain transplant in Surgeon Simulator 2013 available on Steam. So sit back, relax, and enjoy the longest and most outrageous episode of Rage Quit ever made. The Drs. are in and it's about to get bloody.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/663c06c0-eb4d-4b59-8fab-dc2acf419b36/sm/ep7408.jpg","duration":1650,"publication_date":"2013-04-26T01:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-40","changefreq":"weekly","video":[{"title":"2013:E17 - Trials PIG #54","description":"Gavin and Geoff have a surprisingly good match of Trials PIG today! Watch and enjoy!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ae00f45-e532-4443-a06e-d15c640e7fbf/sm/ep7407.jpg","duration":380,"publication_date":"2013-04-25T22:01:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-full-lockdown-guide","changefreq":"weekly","video":[{"title":"2013:E2192 - Full Lockdown Guide","description":"X-Ray and Vav show you how to get the \"Full Lockdown\" achievement in Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-full-lockdown-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6d28077-fe98-4baa-8c73-542805fe6258/sm/ep7406.jpg","duration":258,"publication_date":"2013-04-25T21:50:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-40","changefreq":"weekly","video":[{"title":"2013:E8 - Episode 8: Ray vs. Ryan","description":"Can Ray be stopped Will the belt finally get a new home","player_loc":"https://roosterteeth.com/embed/vs-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4d4fb13-bade-4bbb-a3ce-659ee515913e/sm/ep7405.jpg","duration":1398,"publication_date":"2013-04-25T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-27","changefreq":"weekly","video":[{"title":"2013:E34 - Jump Scare Easter Egg","description":"X-Ray and Vav show you where to find the Jump Scare Easter Egg in the Uprising DLC for Call of Duty:Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/899fcf4e-5d1e-4d08-a31e-07c0ca494eea/sm/ep7404.jpg","duration":49,"publication_date":"2013-04-25T19:11:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gg-bridge-guide","changefreq":"weekly","video":[{"title":"2013:E2191 - GG Bridge Guide","description":"X-Ray and Vav show you how to get the \"GG Bridge\" achievement in the Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gg-bridge-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e238ed15-fb89-48bf-a38c-6cfa4b5c633a/sm/ep7403.jpg","duration":109,"publication_date":"2013-04-25T16:16:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-40","changefreq":"weekly","video":[{"title":"2013:E17 - Halo PIG #124","description":"Ray and Michael go heads up in today's episode of Halo PIG!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6c50fc2-9fa4-47ca-b600-08d383c7dd17/sm/ep7401.jpg","duration":344,"publication_date":"2013-04-24T23:35:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-42","changefreq":"weekly","video":[{"title":"2013:E13 - Survivors Beta 3","description":"AH shows you their bravest faces.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f381540-7230-42e7-9526-3ea8cb7c0aca/sm/ep7400.jpg","duration":204,"publication_date":"2013-04-24T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-46","changefreq":"weekly","video":[{"title":"2013:E111 - Minecraft - Hot Foot","description":"Geoff, Gav and the lads play a new made up game called hot foot.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/691c2d32-4ad4-4a08-af2e-d1d06da94c94/sm/ep7399.jpg","duration":666,"publication_date":"2013-04-24T22:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-19","changefreq":"weekly","video":[{"title":"2013:E24 - Dead Island: Riptide","description":"Ray and Michael channel their inner Sam B. as they talk about Dead Island: Riptide for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f7d039f-5ca2-493e-8fc2-735723b4e9ea/sm/ep7396.jpg","duration":412,"publication_date":"2013-04-23T22:03:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-44","changefreq":"weekly","video":[{"title":"2013:E17 - Mass Effect 2","description":"Jack and Geoff check out the sequel to Mass Effect and learn Five Facts about this awesome game!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c79c6bb-1238-4124-bd3f-c32640b824e7/sm/ep7395.jpg","duration":277,"publication_date":"2013-04-23T21:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-42","changefreq":"weekly","video":[{"title":"2013:E16 - Week #160","description":"Jack is back with the help of some more Australians in this week's AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebc384c1-a677-4e8f-8bf5-ca177557067f/sm/ep7394.jpg","duration":173,"publication_date":"2013-04-23T21:04:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lets-build-with-geoff-and-gavin-indoor-pool","changefreq":"weekly","video":[{"title":"2013:E126 - Let's Build with Geoff & Gavin - Indoor Pool","description":"Back with more chances to mock our redstone ability! \r\nThis is the build out for the video Things to Do - Indoor Pool on Feb 20, 2013.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lets-build-with-geoff-and-gavin-indoor-pool","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c21e141f-e2e7-4c53-8b8d-b7c1514cfdef/sm/ep7393.jpg","duration":2001,"publication_date":"2013-04-23T20:42:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-one-escapes-alive-guide","changefreq":"weekly","video":[{"title":"2013:E2189 - No One Escapes Alive Guide","description":"X-Ray and Vav show you how to get the \"No One Escapes Guide\" achievement in the Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-one-escapes-alive-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82db0075-72f2-4735-bbe8-501a02cbce84/sm/ep7392.jpg","duration":451,"publication_date":"2013-04-23T19:34:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-143","changefreq":"weekly","video":[{"title":"2013:E110 - Minecraft - Capture the Record","description":"A capture the flag style map in minecraft xbox edition, where you capture record discs from the other teams base and play them to win, there's cool features on the map and it's all explained in the commentary, enjoy!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":198,"publication_date":"2013-04-22T22:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-183","changefreq":"weekly","video":[{"title":"2013:E48 - Survivors Beta 3","description":"Geoff, Gavin, Michael and Ryan went into the woods on a camping trip and were never seen again. Sometime later this footage was found.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-183","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccdf176a-0dcb-4317-9316-56e0bb0095eb/sm/ep7388.jpg","duration":2143,"publication_date":"2013-04-22T22:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-adas-campaign-p2","changefreq":"weekly","video":[{"title":"2013:E125 - Resident Evil 6 All Serpent Emblems in Ada's Campaign P2","description":"All the Serpent Emblems in Ada's campaign Part 2. Chapters 4 + 5.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-adas-campaign-p2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/467b8ebe-829d-4822-9cff-0860e1010141/sm/2013912-1449866637395-maxresdefault_(7).jpg","duration":166,"publication_date":"2013-04-22T21:34:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-adas-campaign-p1","changefreq":"weekly","video":[{"title":"2013:E124 - Resident Evil 6 All Serpent Emblems in Ada's Campaign P1","description":"All the Serpent Emblems in Ada's campaign Part 1. Chapters 1-3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-adas-campaign-p1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d57ccc19-cc67-4c6f-8b21-cba985daae8f/sm/2013912-1449866620487-maxresdefault_(6).jpg","duration":252,"publication_date":"2013-04-22T21:31:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-jakes-campaign-p2","changefreq":"weekly","video":[{"title":"2013:E123 - Resident Evil 6 All Serpent Emblems in Jake's Campaign P2","description":"All the Serpent Emblems in Jake's campaign Part 2. Chapters 4 + 5. Emblems 3 and 13 must be obtained with Sherry and emblem 9 with Jake.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-jakes-campaign-p2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c7c3531-6e28-44db-8557-c1bc6a9e574c/sm/2013912-1449866592946-maxresdefault_(5).jpg","duration":204,"publication_date":"2013-04-22T21:27:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-jakes-campaign-p1","changefreq":"weekly","video":[{"title":"2013:E122 - Resident Evil 6 All Serpent Emblems in Jake's Campaign P1","description":"All the Serpent Emblems in Jake's campaign Part 1. Chapters 1-3. Emblems 3 and 13 must be obtained with Sherry and emblem 9 with Jake.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-jakes-campaign-p1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b477035-2fb7-4d64-a4d6-7d7f3fb20811/sm/2013912-1449866575475-maxresdefault_(4).jpg","duration":313,"publication_date":"2013-04-22T21:22:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-chriss-campaign-p2","changefreq":"weekly","video":[{"title":"2013:E121 - Resident Evil 6 All Serpent Emblems in Chris's Campaign P2","description":"All the Serpent Emblems in Chris's campaign Part 2. Chapters 4+5. Emblems 6 and 16 must be obtained by Piers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-chriss-campaign-p2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0890b3c9-e2b1-48ce-b126-93a24b916330/sm/2013912-1449866555451-maxresdefault_(3).jpg","duration":270,"publication_date":"2013-04-22T21:17:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-chriss-campaign-p1","changefreq":"weekly","video":[{"title":"2013:E120 - Resident Evil 6 All Serpent Emblems in Chris's Campaign P1","description":"All the Serpent Emblems in Chris's Campaign part1. Chapters 1-3. Emblem 6 and 16 can only be obtained by Piers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-chriss-campaign-p1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f6a52c9-df5c-422f-b60b-b238ef3dd169/sm/2013912-1449866532675-maxresdefault_(2).jpg","duration":336,"publication_date":"2013-04-22T21:14:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-leons-campaign-p2","changefreq":"weekly","video":[{"title":"2013:E119 - Resident Evil 6 All Serpent Emblems in Leon's Campaign P2","description":"All the Serpent Emblems in Leon's campaign Part 2. Chapters 4+5.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-leons-campaign-p2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e36693b4-2470-4766-a8dc-b7a050b6ca54/sm/2013912-1449866508428-maxresdefault_(1).jpg","duration":217,"publication_date":"2013-04-22T21:07:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-leons-campaign-p1","changefreq":"weekly","video":[{"title":"2013:E118 - Resident Evil 6 All Serpent Emblems in Leon's Campaign P1","description":"All the Serpent Emblem locations in Leon's campaign part 1. Chapters 1-3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-6-all-serpent-emblems-in-leons-campaign-p1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e90ac6-132e-435d-b711-398adb054593/sm/2013912-1449866487994-maxresdefault.jpg","duration":318,"publication_date":"2013-04-22T21:04:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-142","changefreq":"weekly","video":[{"title":"2013:E109 - Minecraft - ClusterRun","description":"Possibly Let's Play map for the AH guys. Jerem6401 and COPYxKAT bring you ClusterRun","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":275,"publication_date":"2013-04-22T20:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-141","changefreq":"weekly","video":[{"title":"2013:E108 - Minecraft - Donkey Kong","description":"Reached (Trevor) and BioHRay take you back too many years to count and play a bit of Donkey Kong arcade in Minecraft. Biddloobeedoo!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":144,"publication_date":"2013-04-22T19:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-140","changefreq":"weekly","video":[{"title":"2013:E107 - Madden 13 - Offside?","description":"itzBoose and Jeni show you how to get the most out of your Madden experience.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":177,"publication_date":"2013-04-22T19:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-25","changefreq":"weekly","video":[{"title":"2013:E5 - Best of Free Vasectomys","description":"All new weekly show on Game Fails... the Fridays are for the Best of whatever category strikes our fancy! And then I make Ray & Michael watch it.","player_loc":"https://roosterteeth.com/embed/game-fails-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/704f455d-9257-40ab-8cdb-b8121218bac0/sm/ep7368.jpg","duration":130,"publication_date":"2013-04-19T22:14:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-163","changefreq":"weekly","video":[{"title":"2013:E47 - Minecraft Episode 47 - Enchantment level 30","description":"This week Geoff, Jack, Michael, Gavin, Ray and Ryan race to enchant a bow with a level 30 enchantment. First one to do it gets the tower of pimps for a week.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0de23112-d24f-4666-b154-f85794e7b5ff/sm/ep7367.jpg","duration":1949,"publication_date":"2013-04-19T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-39","changefreq":"weekly","video":[{"title":"2013:E16 - Volume 135","description":"Jack and Geoff make fun of how bad people are at Halo, to make themselves feel better.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5673e1a-95e1-4703-92d8-87d22e05c49a/sm/ep7366.jpg","duration":203,"publication_date":"2013-04-19T17:28:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-slenderman","changefreq":"weekly","video":[{"title":"2013:E117 - Game Night: Halo 4 - Slenderman","description":"Geoff and Caleb take a look at Slenderman: Lost Woods in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-slenderman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0778eacb-d171-4fe9-ae42-fac36c43c930/sm/ep7365.jpg","duration":96,"publication_date":"2013-04-19T16:13:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-32","changefreq":"weekly","video":[{"title":"2013:E7 - Episode 7: Ray vs. Gavin","description":"Ray is on a spree! Will Gavin stop him and gigantic gamerscore","player_loc":"https://roosterteeth.com/embed/vs-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6db92cd-a657-42c4-ac6a-aafc3d8c8fca/sm/ep7364.jpg","duration":992,"publication_date":"2013-04-19T15:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-38","changefreq":"weekly","video":[{"title":"2013:E16 - Aircraft RC","description":"This week on Rage Quit, Michael takes to the skies in the Xbox Live Indie Game, Aircraft RC. He takes to the ground a lot too.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2385d45-bdda-4e0a-b727-042218777285/sm/ep7363.jpg","duration":308,"publication_date":"2013-04-19T00:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-burst-of-flavor-guide","changefreq":"weekly","video":[{"title":"2013:E2182 - A Burst of Flavor Guide","description":"X-Ray and Vav show you how to get the \"A Burst of Flavor\" achievement in the Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-burst-of-flavor-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a5bc43a-8e3d-438f-a9f6-7d98641c8632/sm/ep7362.jpg","duration":139,"publication_date":"2013-04-18T18:40:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-kidz-with-jack-and-joel-nsfw-or-kids","changefreq":"weekly","video":[{"title":"2013:E2181 - \"Achievement Hunter KiDz!\" with Jack & Joel (NSFW... or kids)","description":"Jack & Joel explore the wonderful world of 'Happy Space' in a new segment they like to call \"Achievement Hunter KiDz!\" (NSFW)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-kidz-with-jack-and-joel-nsfw-or-kids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5589058-5ec5-4d0c-a2e1-67419312f9f8/sm/ep7361.jpg","duration":199,"publication_date":"2013-04-18T17:50:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-32","changefreq":"weekly","video":[{"title":"2013:E16 - Trials PIG #53","description":"Gavin and Geoff square off in the battle of the dudes whose name starts with G.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f357fd9-89a7-4328-b651-ffa928c20d1f/sm/ep7360.jpg","duration":397,"publication_date":"2013-04-18T14:53:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-minecraft-no-glory-hole","changefreq":"weekly","video":[{"title":"2013:E106 - Minecraft - No Glory Hole","description":"Geoff and Gav show you the world's most inefficient circuit.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-minecraft-no-glory-hole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8382583-29db-4b10-9f5c-ea2f58b4f1ca/sm/2013912-1449768868143-nogloryhole.jpg","duration":70,"publication_date":"2013-04-17T22:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mob-of-the-dead-hidden-song","changefreq":"weekly","video":[{"title":"2013:E116 - Mob of the Dead Hidden Song","description":"Ray and Geoff show you where to find the hidden song on the Mob of the Dead map in the Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360.\r\n\r\nSong: Johnny Cash: Rusty Cage","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mob-of-the-dead-hidden-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d73d93c-8103-4537-8e65-5306d2782668/sm/ep7358.jpg","duration":143,"publication_date":"2013-04-17T20:43:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-139","changefreq":"weekly","video":[{"title":"2013:E105 - Minecraft - Monsters in the Closet","description":"AxialMatt and xBRITxHyBriD bring you a new way to make your friends fear the things that go bump in the night....or the day....whatever","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":153,"publication_date":"2013-04-17T19:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-wild-vs-sharks","changefreq":"weekly","video":[{"title":"2013:E115 - CH Predicts: Wild vs Sharks","description":"Ben and Chad simulate the upcoming game between the Minnesota Wild and the San Jose Sharks.\r\n\r\nSpoiler: They are terrible at coming up with analogies.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-wild-vs-sharks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/230b510c-7e73-4449-90a9-58e9d07cdd14/sm/2013912-1449866463610-maxresdefault_(13).jpg","duration":195,"publication_date":"2013-04-17T19:43:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lets-play-wednesday","changefreq":"weekly","video":[{"title":"2013:E114 - Let's Play Wednesday!","description":"Subscribe here:http://bit.ly/10heejv \r\n\r\nThe lads (and Geoff) put together this informative and educational video to remind you that the Let's Play you've come to know and love have moved to a new channel! Be sure to subscribe so you don't miss any of the action and simultaneously keep us employed. \r\n\r\nSubscribe here: http://bit.ly/10heejv","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lets-play-wednesday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc857684-ae98-47db-bbae-6e70f9667a54/sm/ep7355.jpg","duration":64,"publication_date":"2013-04-17T18:15:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-paranormal-power-guide","changefreq":"weekly","video":[{"title":"2013:E2180 - Paranormal Power Guide","description":"Ray and Geoff show you how to get the \"Paranormal Power\" achievement in the new Uprising DLC for Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-paranormal-power-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6ee3170-c2ab-4802-97d1-309c6db7caa5/sm/ep7354.jpg","duration":80,"publication_date":"2013-04-17T16:48:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-31","changefreq":"weekly","video":[{"title":"2013:E16 - Halo PIG #123","description":"In this week's episode of Achievement PIG, Jack squares off against last year's RTX contest winner Kevin. Geoff sits in on the commentary.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13c69c8f-ba7b-486a-abea-a980487484e3/sm/ep7352.jpg","duration":277,"publication_date":"2013-04-17T15:39:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-150","changefreq":"weekly","video":[{"title":"2013:E46 - 3D Ultra MiniGolf Adventures Episode 2","description":"Geoff, Michael, Ray, & Ryan are back on the greens for more in 3D Ultra MiniGolf Adventures for the Xbox Live Arcade. Just four dudes playing MiniGolf in space, now with bonus tentacle monster.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5b139ad-aa84-4eda-96e5-4b929c6f9069/sm/ep7351.jpg","duration":2388,"publication_date":"2013-04-17T14:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lets-build-with-gav-geoff-and-ryan-raining-butts","changefreq":"weekly","video":[{"title":"2013:E113 - Let's Build with Gav, Geoff and Ryan - Raining Butts","description":"Let's Build is our new Tuesday Minecraft series which shows you how Geoff and Gav originally created the vast masterpieces of Achievement City that you've come to love. This week is Raining Butts from things to do with help from Ryan. \r\nThis video was filmed on Feb 5th 2013\r\n\r\nHere's a link to Raining Butts - http://www.youtube.com/watchv=GJPeP8-gdEo","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lets-build-with-gav-geoff-and-ryan-raining-butts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/539c1415-7ad9-4bb8-b8ab-4ac0a6f49946/sm/2013912-1449183186637-lets_build_2.jpg","duration":2146,"publication_date":"2013-04-17T00:54:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-34","changefreq":"weekly","video":[{"title":"2013:E16 - Mass Effect","description":"Geoff and Jack learn a little bit about Mass Effect, Ghostbusters, and who knows what else in this week's Five Facts.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf5f0f05-cbcb-450f-a020-b9db070e61ec/sm/ep7349.jpg","duration":272,"publication_date":"2013-04-16T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-legacy-of-kain-legacy","changefreq":"weekly","video":[{"title":"2013:E112 - Retro Active: Legacy of Kain","description":"In this week's Retro Active, Fragger tackles the dense story of Blood Omen: Legacy of Kain.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-legacy-of-kain-legacy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19095012-0be4-4169-b369-45d23441c6af/sm/ep7348.jpg","duration":260,"publication_date":"2013-04-16T18:40:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-35","changefreq":"weekly","video":[{"title":"2013:E16 - Trials Files #52","description":"Geoff and Jack celebrate the one year anniversary of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2011-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a155f84-b20b-4b00-a71c-dd59e62e2f0c/sm/ep7347.jpg","duration":162,"publication_date":"2013-04-16T15:53:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-146","changefreq":"weekly","video":[{"title":"2013:E45 - Splinter Cell: Double Agent","description":"Geoff, Gavin and Ryan take it back to 2006 and enter into the spy game with Splinter Cell: Double Agent.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5c4e10d-3611-449e-b2f1-ddbb110ae83d/sm/ep7346.jpg","duration":1609,"publication_date":"2013-04-15T21:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-32","changefreq":"weekly","video":[{"title":"2013:E15 - Week #159","description":"This week Jack is in Melbourne, Australia and decides to let some other folks deliver the information. Stay tuned towards the end for a very special announcement!! It involves Let's Plays!!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e95937d-c971-4638-a933-60e0814042f4/sm/ep7344.jpg","duration":224,"publication_date":"2013-04-15T13:56:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-shooting-stars","changefreq":"weekly","video":[{"title":"2013:E111 - Game Night: Halo 4 - Shooting Stars","description":"Geoff and Caleb shoot some stars in this week's Halo 4 Game Night. Pew Pew Pew.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-shooting-stars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0edfb63f-f1ba-4dd7-ac7a-7d7d00ba35ec/sm/ep7340.jpg","duration":102,"publication_date":"2013-04-12T19:27:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-33","changefreq":"weekly","video":[{"title":"2013:E15 - Uproar!","description":"This week on Rage Quit, Michael patrols the streets and beats ass in the the Xbox Live Indie Game, Uproar!. We've got a code 4, here!","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dea6311-8798-429e-9e5f-70197e2f00aa/sm/ep7339.jpg","duration":256,"publication_date":"2013-04-12T02:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-27","changefreq":"weekly","video":[{"title":"2013:E6 - Episode 6: Ray vs. Michael","description":"Can Michael strip Ray of the belt this week in VS.","player_loc":"https://roosterteeth.com/embed/vs-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94347e50-984f-4e07-8faf-f60d82ccf8d3/sm/ep7338.jpg","duration":1121,"publication_date":"2013-04-11T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-27","changefreq":"weekly","video":[{"title":"2013:E15 - Trials PIG #52","description":"It's the battle of the beards as Jack and Geoff go head to head in Trials Evolution, in this week's Trials PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6db98df-d661-4c51-b9f4-02f9b728b7c1/sm/ep7336.jpg","duration":207,"publication_date":"2013-04-11T20:00:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-joel-and-ray-were-on-a-boat","changefreq":"weekly","video":[{"title":"2013:E110 - Joel and Ray: We're On a Boat","description":"Joel and Ray decide to take a much needed vacation","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-joel-and-ray-were-on-a-boat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8f27660-429d-47bc-b73c-0484c4af6047/sm/ep7335.jpg","duration":145,"publication_date":"2013-04-11T17:05:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-30","changefreq":"weekly","video":[{"title":"2013:E11 - Gears of War Judgement Survival Mode","description":"The boys do what they can to protect their E-Hole.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21c381f6-6bd4-4116-a751-06591ddd2b79/sm/ep7334.jpg","duration":149,"publication_date":"2013-04-10T21:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-138","changefreq":"weekly","video":[{"title":"2013:E104 - Minecraft - Warblock","description":"zap45 and bic264 bring to you a new survival game type for Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":211,"publication_date":"2013-04-10T20:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-137","changefreq":"weekly","video":[{"title":"2013:E103 - Minecraft - The Fortress","description":"DelishScrote shows you how to LARP Minecraft style.\n\n\nFOR THE SHIRE!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":184,"publication_date":"2013-04-10T20:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-136","changefreq":"weekly","video":[{"title":"2013:E102 - Minecraft - Parkour","description":"This is a map that I (user name cdnl33t) made that was inspired by Ray's love of Parkour and the game Mirror's Edge with a little bit of challenge course mixed in there.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":315,"publication_date":"2013-04-10T20:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-135","changefreq":"weekly","video":[{"title":"2013:E101 - Minecraft - RvB Sheep","description":"Like RvB Dye sheep to make living sheep versions of your favorite RvB characters.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":157,"publication_date":"2013-04-10T20:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-134","changefreq":"weekly","video":[{"title":"2013:E100 - Minecraft - The Potty of Doom","description":"In this things to do, BHDwaffles shows you another way out of millions to piss off your friends in Minecraft for the xbox 360 but this time, we get a little more dirty","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":125,"publication_date":"2013-04-10T20:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-31","changefreq":"weekly","video":[{"title":"2013:E99 - Minecraft - Fire Extinguisher","description":"Jack is in Australia right now so Geoff and Gav make a new addition to his house to hopefully prevent some of the flame issues he's had recently.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59d47ec9-1448-45dd-89bf-f319ffbdaeb3/sm/ep7327.jpg","duration":102,"publication_date":"2013-04-10T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-26","changefreq":"weekly","video":[{"title":"2013:E15 - Halo PIG #122","description":"Jack and Geoff are at it again in this week's Achievement PIG in Halo 4!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e9ad93a-08b6-431b-9f38-2be531536557/sm/ep7322.jpg","duration":310,"publication_date":"2013-04-10T18:14:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-122","changefreq":"weekly","video":[{"title":"2013:E43 - Halo 4 - Castle DLC","description":"Geoff, Gavin, Michael, Ray, Ryan, and Kerry play free for all slayer on 3 new maps in the Castle Map Pack DLC for Halo 4 on the Xbox 360. Team Dragonface!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e6c6de1-9094-4251-9590-a4bd768ebb82/sm/ep7321.jpg","duration":1336,"publication_date":"2013-04-10T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-133","changefreq":"weekly","video":[{"title":"2013:E98 - Tomb Raider - Front Flip For Style","description":"Hirachnik (Mitch) shows you a fun little Things To Do In Tomb Raider involving your bow and some poor animals.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":91,"publication_date":"2013-04-10T17:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-132","changefreq":"weekly","video":[{"title":"2013:E97 - Minecraft - Office Hunt","description":"Alex or 123Algae from the site shows you something to do in minecraft if you have countless hours to spare, office hunt. Yes I did watch a lot of behind the scenes to make this, no there wasn't any decent shots for it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":202,"publication_date":"2013-04-10T17:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-assault-with-a-deadly-weapon-and-steel-tail","changefreq":"weekly","video":[{"title":"2013:E109 - \"Assault with a Deadly Weapon\" and \"Steel Tail\"","description":"PhilB is going to show you how timing your sword strike against 3 enemies and Metal Gear RAY earns you two achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-assault-with-a-deadly-weapon-and-steel-tail","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9928c025-bf3f-4fe7-b2b4-a3deec4ece5e/sm/2013912-1449866429156-maxresdefault_(12).jpg","duration":133,"publication_date":"2013-04-10T16:45:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-131","changefreq":"weekly","video":[{"title":"2013:E96 - Assassin's Creed 3 - Elk Extinction","description":"Community user DatFace (or just Andy) shows you a quick tip for taking down Elk and making Colonial Bank in Assassin's Creed 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":111,"publication_date":"2013-04-10T16:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-god-of-war-ascension-cant-stop-wont-stop-badboy","changefreq":"weekly","video":[{"title":"2013:E108 - God of War: Ascension - Can't Stop, Won't Stop. BadBoy!","description":"Rico from the Achievement Hunter community shows you how to get the \"Can't Stop, Won't Stop. BadBoy!\" Trophy in God of War: Ascension for the PlayStation 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-god-of-war-ascension-cant-stop-wont-stop-badboy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/526b88e9-520c-4d51-a0f2-981ca2dc6297/sm/2013912-1449866385858-maxresdefault_(10).jpg","duration":50,"publication_date":"2013-04-10T16:31:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-130","changefreq":"weekly","video":[{"title":"2013:E95 - Minecraft - Chunk Wars","description":"Tim shows you a new competitive game for you to compete against your friends!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":182,"publication_date":"2013-04-10T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-music-discs-quest-3","changefreq":"weekly","video":[{"title":"2013:E107 - Music Discs Quest 3","description":"Ray and Geoff show you how to find all the music discs in the new update for Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-music-discs-quest-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb38f341-6647-4737-9411-6829958dc03e/sm/ep7309.jpg","duration":362,"publication_date":"2013-04-09T20:24:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-129","changefreq":"weekly","video":[{"title":"2013:E94 - Minecraft - Animal Tossing","description":"AxialMatt and Hightower bring a new way to get countless hours of enjoyment with all the wildlife of minecraft....don't tell PETA","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":147,"publication_date":"2013-04-09T20:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-43","changefreq":"weekly","video":[{"title":"2013:E23 - Gears of War: Judgment","description":"Destrotor and Lettucelord bring you a look at Gears of War Judgment.","player_loc":"https://roosterteeth.com/embed/this-is-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":399,"publication_date":"2013-04-09T20:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-27","changefreq":"weekly","video":[{"title":"2013:E15 - Halo: CE (Part 2)","description":"Jack and Geoff continue their trip down memory lane with this second look at Five Facts of Halo: Combat Evolved!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cd97b2d-1936-4037-8472-cbd41c79d419/sm/ep7306.jpg","duration":187,"publication_date":"2013-04-09T19:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-27","changefreq":"weekly","video":[{"title":"2013:E15 - Trials Files #51","description":"Geoff and Jack tackle another Trials map in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6514f260-317a-4599-b45d-435fc1336109/sm/ep7304.jpg","duration":127,"publication_date":"2013-04-09T19:11:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-128","changefreq":"weekly","video":[{"title":"2013:E93 - Minecraft - Evolution","description":"Max from the AH Community shows you how to evolve through Minecraft at a much smaller scale.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":201,"publication_date":"2013-04-09T19:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-god-of-war-ascension-round-and-round-trophy","changefreq":"weekly","video":[{"title":"2013:E106 - God of War: Ascension - Round and Round Trophy","description":"How to get the \"Round and Round\" trophy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-god-of-war-ascension-round-and-round-trophy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f723ddbb-b37b-44e5-a988-969058fd3605/sm/2013912-1449866409175-maxresdefault_(11).jpg","duration":122,"publication_date":"2013-04-09T17:57:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-124","changefreq":"weekly","video":[{"title":"2013:E92 - Minecraft - Bigger on the Inside","description":"Reached (Trevor) and Jake talk about making things that are bigger on the inside like the Tardis... and Jake's mom.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":115,"publication_date":"2013-04-09T17:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-125","changefreq":"weekly","video":[{"title":"2013:E91 - Minecraft - The Monster Mash","description":"Reached (Trevor) and Jake show you what a monster orgy is using the new spawn eggs and hidden dispensers. 5 tickets and you get all the undead bones you can take!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":100,"publication_date":"2013-04-09T16:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-126","changefreq":"weekly","video":[{"title":"2013:E90 - Borderlands 2 - Dedicated Consumer","description":"Jerem6401 and COPYxKAT look at a new way to play Borderlands 2","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":368,"publication_date":"2013-04-09T16:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-god-of-war-ascension-swinger-and-lubed-up-trophy","changefreq":"weekly","video":[{"title":"2013:E105 - God of War: Ascension - Swinger and Lubed Up Trophy","description":"How to get to the trophies \"Swinger\" and \"Lubed up\" in God of War Ascension.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-god-of-war-ascension-swinger-and-lubed-up-trophy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890e6696-dfcc-4c08-b9eb-738264607734/sm/2013912-1449866363055-maxresdefault_(9).jpg","duration":109,"publication_date":"2013-04-09T16:04:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-toy-story-3-mapnipulator","changefreq":"weekly","video":[{"title":"2013:E104 - Toy Story 3 - Mapnipulator","description":"Luis helps you get a very easy and simple to miss achievement in Toy Story 3","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-toy-story-3-mapnipulator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cded58d-2791-4884-9276-71108fcb914b/sm/2013912-1449866344902-maxresdefault_(8).jpg","duration":68,"publication_date":"2013-04-09T15:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-127","changefreq":"weekly","video":[{"title":"2013:E89 - Battlefield 3: Gone Squishin'","description":"In this edition of Things to Do in Momma (ammoM) delivers a whole tub of jelly in Battlefield 3. Mind the Huey.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":161,"publication_date":"2013-04-09T15:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fallout-new-vegas-safety-deposit-box-all-gold-bars","changefreq":"weekly","video":[{"title":"2013:E103 - Fallout: New Vegas - Safety Deposit Box + All Gold Bars","description":"OfficerBaloney (Site name Baloney) shows you how to get an achievment for 40G and all gold bars in Fallout: New Vegas Dead Money DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fallout-new-vegas-safety-deposit-box-all-gold-bars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aae9a7f-c7e8-41a7-ba27-cd59a58073d6/sm/2013912-1449866312719-maxresdefault_(7).jpg","duration":129,"publication_date":"2013-04-09T15:03:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-23","changefreq":"weekly","video":[{"title":"2013:E14 - Week #158","description":"While Jack's Away, the boys will play. Enjoy a very special, news cast edition of AHWU. AH is going mobile!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51491423-02cd-4f71-a2e7-27eda3f29fe8/sm/ep7286.jpg","duration":316,"publication_date":"2013-04-09T02:59:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-98","changefreq":"weekly","video":[{"title":"2013:E42 - Tomb Raider Part 2","description":"AH is back with more Tomb Raidery goodness!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6a869f1-9389-4e8b-ac20-2785f3abf0f1/sm/ep7285.jpg","duration":1258,"publication_date":"2013-04-09T00:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-93","changefreq":"weekly","video":[{"title":"2013:E41 - Minecraft Episode 45 - Thread the Needle","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan play Thread the Needle. You may have seen this map in a previous episode of things to do. Tower of Pimps for the winner!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6e26913-0a7a-497d-8f6e-e197ff584096/sm/ep7281.jpg","duration":1218,"publication_date":"2013-04-05T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-shmeef-ball","changefreq":"weekly","video":[{"title":"2013:E102 - Game Night: Halo 4 - Shmeef Ball","description":"Geoff and special guest star Gavin show you a nifty holiday themed Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-shmeef-ball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0be1087b-d107-4f08-ab43-69a9dbe109e4/sm/ep7279.jpg","duration":95,"publication_date":"2013-04-05T19:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-24","changefreq":"weekly","video":[{"title":"2013:E14 - World's Hardest Game","description":"This week on Rage Quit, Michael attempts the online flash game, World's Hardest Game. It turns out it was pretty challenging.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d7269dc-b200-4d90-8d4d-f6a86ee7937c/sm/ep7278.jpg","duration":247,"publication_date":"2013-04-05T04:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-20","changefreq":"weekly","video":[{"title":"2013:E5 - Episode 5: Ray vs. Jack","description":"Jack has won two straight VS. matches in a row! Can he make it three after he is challenged by Ray","player_loc":"https://roosterteeth.com/embed/vs-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bcc6dde-b0bd-4b9f-9578-90dd8317c08b/sm/ep7277.jpg","duration":887,"publication_date":"2013-04-04T23:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-19","changefreq":"weekly","video":[{"title":"2013:E14 - Trials PIG #51","description":"Geoff and Ryan face off in Trials Evolution PIG this week. Will Ryan continue his streak of terribleness Watch and learn!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fd1026d-19ba-4022-a6b6-2d199c5090a3/sm/ep7276.jpg","duration":206,"publication_date":"2013-04-04T22:55:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gow-judgement-bucketheads-easteregg","changefreq":"weekly","video":[{"title":"2013:E101 - GoW: Judgement \"Bucketheads\" EasterEgg","description":"Orcwarriors ( Gt: E7eRnaL sNiPeRx) Shows you an awesome Easter Egg in the Gears of War Judgement Aftermath Campaign","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gow-judgement-bucketheads-easteregg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":268,"publication_date":"2013-04-04T20:04:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bioshock-infinite-bolt-from-the-blue-and-skeet-shot","changefreq":"weekly","video":[{"title":"2013:E100 - BioShock Infinite - Bolt from the Blue and Skeet Shot","description":"zenREAPER (Rude) shows you how to get the achievements Bolt from the Blue and Skeet Shot in BioShock GAME OF THE YEAR Infinite","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bioshock-infinite-bolt-from-the-blue-and-skeet-shot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":184,"publication_date":"2013-04-04T17:25:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-lair-of-the-evildoer","changefreq":"weekly","video":[{"title":"2013:E99 - Indie Night - Lair of the Evildoer","description":"Hightower and Reacher explore the Lair of the Evildoer","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-lair-of-the-evildoer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e82d825-4d81-4860-a706-add70aa38926/sm/2013912-1449866225109-maxresdefault_(6).jpg","duration":141,"publication_date":"2013-04-04T16:56:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lost-weekend-guide","changefreq":"weekly","video":[{"title":"2013:E2156 - Lost Weekend Guide","description":"Ray and Geoff show you how to get the \"Lost Weekend\" achievement in Bioshock Infinite for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lost-weekend-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d08aff03-85fb-44ea-b52b-dd501039d2c0/sm/ep7262.jpg","duration":85,"publication_date":"2013-04-03T22:06:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-12","changefreq":"weekly","video":[{"title":"2013:E4 - Best fails of March 2013","description":"Jack and Geoff are back with your favorites for March!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6fb0c1f-f805-47af-a5b8-bf103fd7ddcf/sm/ep7261.jpg","duration":212,"publication_date":"2013-04-03T21:58:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-16","changefreq":"weekly","video":[{"title":"2013:E14 - Halo PIG #121","description":"Jack and Geoff throw angry spurs at each other in this new episode of Halo PIG!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ef5391e-55aa-4185-b593-29f7b82c175f/sm/ep7257.jpg","duration":221,"publication_date":"2013-04-03T21:02:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-123","changefreq":"weekly","video":[{"title":"2013:E88 - Minecraft - Minelympics","description":"6 will start, 1 will prevail. This things to do is an epic test of endurance towards the single most-revered item in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":131,"publication_date":"2013-04-03T19:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-8","changefreq":"weekly","video":[{"title":"2013:E22 - BattleBlock Theater","description":"Ray and Geoff take a look at the highly anticipated game BattleBlock Theater!","player_loc":"https://roosterteeth.com/embed/this-is-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/751331d9-4f9c-459e-a017-540da612179d/sm/ep7252.jpg","duration":267,"publication_date":"2013-04-03T19:34:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-god-of-war-ghost-of-sparta-4-trophies","changefreq":"weekly","video":[{"title":"2013:E98 - God of War: Ghost of Sparta - 4 Trophies","description":"Rico from the Achievement Hunter community shows us how to unlock the \"Make Her Scream, The Midas Trick, I'd Hit That and Greatest Hits\" trophies in God of War: Ghost of Sparta for the PlayStation 3","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-god-of-war-ghost-of-sparta-4-trophies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea7a5d66-59cf-419f-bdbc-15834766f277/sm/2013912-1449866203972-maxresdefault_(5).jpg","duration":127,"publication_date":"2013-04-03T19:21:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-122","changefreq":"weekly","video":[{"title":"2013:E87 - Minecraft - Exploding Nether Beds","description":"LetsGoToWalmart and KingCPiece show you how to have fun with beds in the Nether","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":167,"publication_date":"2013-04-03T19:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-42","changefreq":"weekly","video":[{"title":"2013:E21 - Defiance","description":"Hightower and BioHRay take a look at brand new Xbox MMO Defiance!","player_loc":"https://roosterteeth.com/embed/this-is-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":215,"publication_date":"2013-04-03T19:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-19","changefreq":"weekly","video":[{"title":"2013:E86 - Minecraft - Chicken Bucket","description":"Ray, Jack and Geoff play the hottest new sport sweeping the nation, CHICKEN BUCKET!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cadd4a2-d7a1-461e-94d7-b3b6652ebc31/sm/ep7245.jpg","duration":559,"publication_date":"2013-04-03T18:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-63","changefreq":"weekly","video":[{"title":"2013:E40 - New Super Mario Bros. U Part 2","description":"The AH guys are back in New Super Mario Bros. U this time taking on the Layer-Cake Desert. Ray is not pleased","player_loc":"https://roosterteeth.com/embed/lets-play-2013-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21dcd5dd-d7f6-4ffe-a722-189f23d97781/sm/ep7243.jpg","duration":2186,"publication_date":"2013-04-03T16:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-15","changefreq":"weekly","video":[{"title":"2013:E14 - Halo: CE","description":"Jack and Geoff go back to the beginnings of Rooster Teeth with this look at Five Facts of Halo: Combat Evolved!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59154071-df54-40d3-9c2f-8a5bdcb6cca8/sm/ep7242.jpg","duration":360,"publication_date":"2013-04-02T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-more-for-your-money-guide","changefreq":"weekly","video":[{"title":"2013:E2147 - More For Your Money Guide","description":"Ray and Geoff show you how to get the \"More for Your Money\" achievement in Bioshock Infinite for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-more-for-your-money-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/928aef4c-308c-49b8-8129-239909371e4b/sm/ep7241.jpg","duration":69,"publication_date":"2013-04-02T21:37:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-alien-soldier","changefreq":"weekly","video":[{"title":"2013:E97 - Retro Active: Alien Soldier","description":"Fragger takes a look back at a Mega Drive game, Alien Soldier.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-alien-soldier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fa57324-bf63-46c1-a976-8efd95b37ea3/sm/ep7240.jpg","duration":362,"publication_date":"2013-04-02T18:40:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-skeet-shoot-guide","changefreq":"weekly","video":[{"title":"2013:E2146 - Skeet Shoot Guide","description":"Ray and Geoff show you how to get the \"Skeet Shoot\" achievement in Bioshock Infinite for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-skeet-shoot-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7660d9e8-de10-439e-92a5-76b89ada4227/sm/ep7239.jpg","duration":70,"publication_date":"2013-04-02T16:32:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-16","changefreq":"weekly","video":[{"title":"2013:E14 - Trials Files #50","description":"Geoff and Jack Wipeout in this week's Trials Files in Trials Evolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e075d772-ef9f-470c-9f6f-43c86f52e0b9/sm/ep7238.jpg","duration":186,"publication_date":"2013-04-02T16:12:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-uno","changefreq":"weekly","video":[{"title":"2013:E96 - CH Predicts - UNO","description":"Chad and Ben play an April Fools Joke They don't understand April Fools.\r\n\r\nThanks to Tina and Sam for helping out!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-uno","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da3df62a-532c-4805-bd6d-e7c95563d4e4/sm/2013912-1449866184425-maxresdefault_(4).jpg","duration":212,"publication_date":"2013-04-02T03:44:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-april-2013","changefreq":"weekly","video":[{"title":"2013:E95 - Coming Soon - April 2013","description":"Kdin is back for your brand new releases of April 2013. Watch and learn what is coming up on your favorite console or computers! You love it!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-april-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7a20daf-b759-467b-aa57-c17cca69cc8a/sm/ep7236.jpg","duration":583,"publication_date":"2013-04-01T22:02:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-15","changefreq":"weekly","video":[{"title":"2013:E13 - Week #157","description":"The boys are here celebrating the 10th anniversary of Rooster Teeth with a slew of new gaming news and information and cool new Achievement Hunter merchandise. Check out http://www.roosterteeth.com/store for new goodies!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3947a06b-adc7-48d8-bc42-724d3f9b07d5/sm/ep7235.jpg","duration":418,"publication_date":"2013-04-01T21:22:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-mvp-guide","changefreq":"weekly","video":[{"title":"2013:E2145 - The MVP Guide","description":"Ray and Jack show you how to become The MVP of the world in Black College Football Xperience: The Doug Williams Edition for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-mvp-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5efe615-dcac-4457-ac49-3775b45aca4d/sm/ep7234.jpg","duration":129,"publication_date":"2013-04-01T20:18:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-55","changefreq":"weekly","video":[{"title":"2013:E39 - Monopoly Part 1","description":"Prepare yourself for the most action packed Let's Play OF ALL TIME!!!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51e2ebd1-6691-4bd4-8cfa-728f161715ef/sm/ep7233.jpg","duration":2795,"publication_date":"2013-04-01T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-52","changefreq":"weekly","video":[{"title":"2013:E38 - Minecraft Episode 44 - Ender Pearl Race","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan race to the Tower of Pimps, but this is no foot race. It's a teleport race!\n(This isn't Thread the Needle, that's next week.)","player_loc":"https://roosterteeth.com/embed/lets-play-2013-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e594bcd8-06b5-4869-bfeb-f7bbdaaec092/sm/ep7230.jpg","duration":2198,"publication_date":"2013-03-30T00:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-darkness","changefreq":"weekly","video":[{"title":"2013:E94 - Game Night: Halo 4 - Darkness","description":"Things get a little dark in this week's Game Night in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-darkness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/945e6f22-cd82-4f9b-afab-6759504a2015/sm/ep7228.jpg","duration":120,"publication_date":"2013-03-29T19:55:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-heartbreaker-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E2144 - Heartbreaker Achievement Guide","description":"Geoff and Ray show you how to kill the HandyMan in just such a specific way that he grants you the Heartbreaker Achievement and a hefty 50 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-heartbreaker-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df71ccc1-a842-47e5-991f-beaf016d5cd3/sm/ep7226.jpg","duration":137,"publication_date":"2013-03-29T15:09:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-13","changefreq":"weekly","video":[{"title":"2013:E13 - Runner 2","description":"This week on Rage Quit, Michael runs, jumps, blocks, bounces. and slides to his demise in the Xbox Live Arcade Game, Runner 2.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7c61a0e-83ed-48b3-a8c2-98bcae14299d/sm/ep7225.jpg","duration":328,"publication_date":"2013-03-29T01:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-11","changefreq":"weekly","video":[{"title":"2013:E4 - Episode 4: Geoff vs. Jack - Sega Bass Fishing","description":"Geoff enters the VS ring for the first time, and challenges Jack to the manliest of games.","player_loc":"https://roosterteeth.com/embed/vs-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e825327-ea5c-4811-bdbd-8d81a3ea384b/sm/ep7223.jpg","duration":1178,"publication_date":"2013-03-28T20:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-3","changefreq":"weekly","video":[{"title":"2013:E20 - Bioshock Infinite","description":"Geoff and Michael check out one of the most anticipated games of the year!","player_loc":"https://roosterteeth.com/embed/this-is-2013-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50935ed6-d579-4c38-903f-3775fede15c8/sm/ep7222.jpg","duration":511,"publication_date":"2013-03-28T17:44:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-9","changefreq":"weekly","video":[{"title":"2013:E13 - Trials PIG #50","description":"Jack and Ray continue their feud on bikes. Who will be the master biker","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1a77a95-cefd-42a5-94fc-b69186a94ce1/sm/ep7221.jpg","duration":196,"publication_date":"2013-03-28T15:37:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-41","changefreq":"weekly","video":[{"title":"2013:E19 - Bioshock Infinite","description":"Hirachnik introduces you to the long awaited Bioshock Infinite","player_loc":"https://roosterteeth.com/embed/this-is-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":333,"publication_date":"2013-03-27T22:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-43","changefreq":"weekly","video":[{"title":"2013:E37 - Gears of War Judegement Survival Mode","description":"AH takes on Survival mode on insane difficulty! And four minutes later they really start the Let's Play...","player_loc":"https://roosterteeth.com/embed/lets-play-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c144c027-7bcb-4b9d-b094-5ff484cc5139/sm/ep7218.jpg","duration":3043,"publication_date":"2013-03-27T22:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-9","changefreq":"weekly","video":[{"title":"2013:E13 - Halo HORSE #120","description":"Jack and Gavin match wits and skill in this episode of Halo 4 HORSE!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2fdbf354-07b5-4465-83eb-8388bf0abebc/sm/ep7216.jpg","duration":388,"publication_date":"2013-03-27T20:59:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-121","changefreq":"weekly","video":[{"title":"2013:E85 - Walking Dead: SI - Zombi-Corn","description":"THERIGBOSS back with another Things To Do In but this time taking place in the Zombie Apocalypse","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":116,"publication_date":"2013-03-27T20:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-11","changefreq":"weekly","video":[{"title":"2013:E84 - Minecraft - Slice of Hell","description":"Gav and Geoff have been busy modifying Ray's house while he was out of town. LOOK AT WHAT THEY DID!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fec996c8-b4b4-4e55-850f-cbd3d7911f44/sm/ep7211.jpg","duration":127,"publication_date":"2013-03-27T19:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-6","changefreq":"weekly","video":[{"title":"2013:E13 - Resident Evil: Code Veronica","description":"Ray and Michael add to their knowledge in this week's episode of Five Facts in Resident Evil: Code Veronica!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86716f87-e9ce-47e3-81c9-3259527e4b50/sm/ep7209.jpg","duration":377,"publication_date":"2013-03-26T22:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-unreal-tournament","changefreq":"weekly","video":[{"title":"2013:E93 - Retro Active: Unreal Tournament","description":"Fragger takes a look at one the best shooters of all time, Unreal Tournament.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-unreal-tournament","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2690d4fe-edb8-42f8-91f2-c0866fb7c94f/sm/ep7208.jpg","duration":306,"publication_date":"2013-03-26T19:37:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-8","changefreq":"weekly","video":[{"title":"2013:E13 - Trials Files #49","description":"Geoff and Jack enjoy another user created map in Trials Evolution for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d930a04-0b07-46ee-94de-c5eaa17c10af/sm/ep7207.jpg","duration":93,"publication_date":"2013-03-26T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-6","changefreq":"weekly","video":[{"title":"2013:E12 - Week #156","description":"It's the PAX East 2013 Edition of AHWU! Join fans as they work their way through this week's news and games!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cc1e260-52b5-4abf-a523-3ca2cf5e18ea/sm/ep7206.jpg","duration":165,"publication_date":"2013-03-25T21:01:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-32","changefreq":"weekly","video":[{"title":"2013:E36 - X-Men Arcade","description":"The AH guys grab a bag of quarters and play through X-Men Arcade on the Xbox 360","player_loc":"https://roosterteeth.com/embed/lets-play-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43ebb1f7-de6b-495d-84e2-b8b25723cb71/sm/ep7205.jpg","duration":1653,"publication_date":"2013-03-25T17:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-7","changefreq":"weekly","video":[{"title":"2013:E3 - Return of the surprise commentaries","description":"This week the surprise commentaries are back! Four new ones posted this week. Can you find them all Here's one to get you started...","player_loc":"https://roosterteeth.com/embed/game-fails-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ccce1f-7a18-4c25-85b1-cf4235f70672/sm/ep7202.jpg","duration":39,"publication_date":"2013-03-23T18:18:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-24","changefreq":"weekly","video":[{"title":"2013:E35 - Minecraft Episode 43 - Thunderdome","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan all go head to head in the Thunderdome arena. Only the strongest and... luckiest will have a chance at winning the Tower of Pimps.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cadf823-7a3b-46d8-a64a-48bbfddd617b/sm/ep7199.jpg","duration":2480,"publication_date":"2013-03-22T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-paintball-v2","changefreq":"weekly","video":[{"title":"2013:E92 - Game Night: Halo 4 - Paintball V2","description":"Geoff and Caleb go on the hunt for the Holy Grail of Halo in this week's Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-paintball-v2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d90f7300-f903-4d10-acde-412a6406b143/sm/ep7198.jpg","duration":95,"publication_date":"2013-03-22T20:59:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-akane-the-kunocihi","changefreq":"weekly","video":[{"title":"2013:E91 - Indie Night - Akane the Kunocihi","description":"Hightower and AxialMatt take a look at bouncy Xbox Indie Game Akane the Kunocihi and her big pair of problems.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-akane-the-kunocihi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71abfb2a-e258-49d0-b36d-533343f4c68d/sm/2013912-1449866161237-maxresdefault_(3).jpg","duration":235,"publication_date":"2013-03-22T18:59:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-walking-dead-survival-instinct-3-achievements-guide","changefreq":"weekly","video":[{"title":"2013:E2137 - The Walking Dead: Survival Instinct - 3 Achievements Guide","description":"maineiacs shows you how to get the \"Mind if I Borrow This\",\"Porcupine\", and \"I Used to Be a Human Like You\" achievements in The Walking Dead: Survival Instinct.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-walking-dead-survival-instinct-3-achievements-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":132,"publication_date":"2013-03-22T18:21:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-6","changefreq":"weekly","video":[{"title":"2013:E12 - Shark Attack","description":"This week on Rage Quit, Michael is brutally ripped apart and eaten by sharks in the Xbox Live Indie Game, Shark Attack. At least they aren't zombies...OH GOD, NO!","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37253443-c9c8-4aeb-beab-80a2fdf95bda/sm/ep7193.jpg","duration":369,"publication_date":"2013-03-21T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/vs-2013-5","changefreq":"weekly","video":[{"title":"2013:E3 - Episode 3: Jack vs. Ryan - Geometry Wars","description":"Jack enters the ring to challenge Ryan, the current Achievement Hunter champ to a game of Geometry Wars, while Geoff, Michael, Gavin and Ray watch.\n\nTune in next week as Geoff takes on the winner!","player_loc":"https://roosterteeth.com/embed/vs-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/439937c7-70ba-40e4-b046-9c40c14efa41/sm/ep7191.jpg","duration":461,"publication_date":"2013-03-21T18:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-5","changefreq":"weekly","video":[{"title":"2013:E12 - Trials PIG #49","description":"We let Ryan play Trials this week. Whaaaa","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94ff22a6-880a-481e-a5f5-43d7ecc29ea9/sm/ep7190.jpg","duration":317,"publication_date":"2013-03-21T15:41:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-5","changefreq":"weekly","video":[{"title":"2013:E12 - Halo PIG #119","description":"Jack and Ray face off in Halo 4 PIG to decide the fate of the planet. Or not, maybe they just play the game. Be sure to check out http://www.achievementhunter.com/halohorsemaps/ and help us pick the best maps!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a2c0c1d-d11a-465c-bb30-4d6248dee108/sm/ep7188.jpg","duration":273,"publication_date":"2013-03-20T23:21:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-120","changefreq":"weekly","video":[{"title":"2013:E83 - Minecraft - Ender Darts","description":"AxialMatt and AssasinMan24 bring an all new way to play darts in minecraft. Try not to blind anyone while playing.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":136,"publication_date":"2013-03-20T22:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-6","changefreq":"weekly","video":[{"title":"2013:E82 - Minecraft - Thread The Needle","description":"Geoff and Gav make a maze that can only be run with ender pearls. Or a ton of TNT.\nKeep your eyes out for the full let's play coming soon!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/054d4356-ea28-47cd-ac53-14d3af3a39f4/sm/ep7183.jpg","duration":119,"publication_date":"2013-03-20T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dmc-devil-may-cry-level-4-collectables-guide","changefreq":"weekly","video":[{"title":"2013:E2126 - DmC: Devil May Cry - Level 4 Collectables Guide","description":"This is a guide for all of the collectables in level 4 of DMC: Devil May Cry.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dmc-devil-may-cry-level-4-collectables-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":203,"publication_date":"2013-03-20T20:17:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dmc-devil-may-cry-level-1-collectables-guide","changefreq":"weekly","video":[{"title":"2013:E2123 - DmC: Devil May Cry - Level 1 Collectables Guide","description":"This is a guide for all of the collectables in level 1 of DMC: Devil May Cry.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dmc-devil-may-cry-level-1-collectables-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":119,"publication_date":"2013-03-20T20:07:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dmc-devil-may-cry-dude-the-shows-over-guide","changefreq":"weekly","video":[{"title":"2013:E2122 - DmC: Devil May Cry - Dude, the shows over! Guide","description":"CmanXP shows you where to find all 21 keys in Devil May Cry. Don't ask him to count them though.... He can't.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dmc-devil-may-cry-dude-the-shows-over-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":486,"publication_date":"2013-03-20T19:47:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013","changefreq":"weekly","video":[{"title":"2013:E10 - Tickle Then Topple","description":"Gavin loses personal space and personal belongings.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d48b2452-ef24-4219-8dc0-ef801f41a03f/sm/ep7171.jpg","duration":130,"publication_date":"2013-03-20T19:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-nets-vs-clippers","changefreq":"weekly","video":[{"title":"2013:E90 - CH Predicts: Nets vs Clippers","description":"Ben and Chad contemplate the NBA playoff picture while predicting the final regular season matchup between the Brooklyn Nets and the Los Angeles Clippers.\r\n\r\nFYI Chad is not a fan of David Stern.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-nets-vs-clippers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c09fe1fe-f4ab-4c67-bd18-4d84aa4c359c/sm/2013912-1449866142585-maxresdefault_(2).jpg","duration":203,"publication_date":"2013-03-20T17:35:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-wild-vs-red-wings","changefreq":"weekly","video":[{"title":"2013:E89 - CH Predicts: Wild vs Red Wings","description":"Ben and Chad discuss the parity in the Western Conference as they simulate the NBC Wednesday Night Rivalry match between the Minnesota Wild and Detroit Red Wings.\r\n\r\nSpoiler: Chad needs to brush up on his Western Conference Hockey knowledge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-wild-vs-red-wings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4699e4e-3265-4dda-879d-6a331a878d12/sm/2013912-1449866108926-maxresdefault_(1).jpg","duration":139,"publication_date":"2013-03-20T17:14:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-24","changefreq":"weekly","video":[{"title":"2013:E18 - The Walking Dead: Survival Instinct","description":"Ray and Michael talk about their man crush on Norman Reedus while they checkout The Walking Dead: Survival Instinct for the Xbox 360","player_loc":"https://roosterteeth.com/embed/this-is-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6860a73f-dc56-4a92-84f2-025c0905211e/sm/ep7165.jpg","duration":289,"publication_date":"2013-03-20T15:34:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-49","changefreq":"weekly","video":[{"title":"2013:E12 - Dead Space 2","description":"Jack and Michael learn Five Facts about Dead Space 2. Just don't forget Peng!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b831982-3305-4aaa-9ec0-45cf8cdbcc9e/sm/ep7164.jpg","duration":246,"publication_date":"2013-03-20T03:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-50","changefreq":"weekly","video":[{"title":"2013:E12 - Trials Files #48","description":"Geoff and Jack take a look at another user created map in Trials Evolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab5145b7-2477-41a9-8a14-b9634f5ba978/sm/ep7163.jpg","duration":93,"publication_date":"2013-03-19T18:53:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-48","changefreq":"weekly","video":[{"title":"2013:E11 - Week #155","description":"The boys are here with today's goodies and rubber bands and toilet paper. Watch and enjoy!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffe06752-0372-4dc3-9845-9e6be8a52248/sm/ep7158.jpg","duration":315,"publication_date":"2013-03-18T22:28:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-207","changefreq":"weekly","video":[{"title":"2013:E33 - Sniper Elite v2 Nazi Zombie Army","description":"Game with zombies you say All right... we'll bite.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-207","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa5baae4-b346-4ca6-82ab-ad6619bc3bc5/sm/ep7157.jpg","duration":1916,"publication_date":"2013-03-18T20:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-bruins-vs-penguins","changefreq":"weekly","video":[{"title":"2013:E88 - CH Predicts: Bruins vs Penguins","description":"Ben and Chad discuss the possible playoff fortunes of the Boston Bruins and the Pittsburgh Penguins as they face-of in NBC's Game of the Week.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-bruins-vs-penguins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5acf585b-5dff-4ef3-9c42-451a6f496d4f/sm/2013912-1449866086327-maxresdefault.jpg","duration":135,"publication_date":"2013-03-17T00:59:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-run-for-your-life","changefreq":"weekly","video":[{"title":"2013:E87 - Game Night: Halo 4 - Run for your life","description":"Geoff and Caleb run for their lives in the latest episode of Game NIght, in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-run-for-your-life","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a7bc51b-c587-4242-9829-a55cc925be56/sm/ep7150.jpg","duration":88,"publication_date":"2013-03-15T16:26:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-29","changefreq":"weekly","video":[{"title":"2013:E32 - Minecraft Episode 42 - No Petting Zoo Part 2","description":"The achievement hunter guys complete their quest to trap the most fearsome mobs in minecraft.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28198940-a634-46b1-8686-44ccb7bc5136/sm/ep7204.jpg","duration":1770,"publication_date":"2013-03-15T14:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-48","changefreq":"weekly","video":[{"title":"2013:E11 - Super Hexagon","description":"This week on Rage Quit, Michael continues his ongoing battle with shapes in the Steam game, Super Hexagon. Failure has never been so vivid.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5543762-2142-4d47-ad1f-434de874cca3/sm/ep7149.jpg","duration":274,"publication_date":"2013-03-15T01:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-39","changefreq":"weekly","video":[{"title":"2013:E11 - Trials PIG #48","description":"Jack and Gavin continue to see who is best at motorcycles in this week's episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5373b0b-e9c2-48a0-bda0-1c49b8055b8e/sm/ep7148.jpg","duration":264,"publication_date":"2013-03-14T23:30:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-techno-kitten-adventure","changefreq":"weekly","video":[{"title":"2013:E86 - Indie Night - Techno Kitten Adventure","description":"Hightower and IHateMyToast go on a weird journey with Techno Kitten Adventure.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-techno-kitten-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3edfffae-d214-4da0-b683-907fbfef13d9/sm/2013912-1449866054656-maxresdefault_(17).jpg","duration":213,"publication_date":"2013-03-14T20:48:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vs-2013-39","changefreq":"weekly","video":[{"title":"2013:E2 - Episode 2: Michael vs. Ryan - Quake 3","description":"Ryan challenges the reigning champion Michael with all of AH commentating in Episode 2 of VS!\n\nTune in next week as Jack challenges the winner!","player_loc":"https://roosterteeth.com/embed/vs-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a73ddf5-9f0e-4b70-9cf0-57bbd5e71763/sm/ep7146.jpg","duration":810,"publication_date":"2013-03-14T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-41","changefreq":"weekly","video":[{"title":"2013:E9 - World of Warcraft - Episode 2","description":"The Panda Posse rolls out in this Behind the Scenes of World of Warcraft: Mists of Pandaria Ep. 2.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f28819dd-437f-41b7-bbaf-751397afc0f3/sm/ep7144.jpg","duration":175,"publication_date":"2013-03-14T00:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-38","changefreq":"weekly","video":[{"title":"2013:E11 - Halo PIG #118","description":"Geoff and Gavin face off in this new episode of Halo 4 PIG! We need more solid quality maps so we can do HORSE instead of PIG! We need your help to check out the maps! Go to http://www.achievementhunter.com/halohorsemaps/ and check out maps, upvote and downvote and let us know what you think!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb39bb70-e684-4271-8a67-572d122e7b6e/sm/ep7143.jpg","duration":222,"publication_date":"2013-03-13T22:39:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-45","changefreq":"weekly","video":[{"title":"2013:E81 - BF3: Endgame - Hot Doggin' & Surprise Package","description":"Jack and Geoff check out a couple of Things to do in Battlefield 3: Endgame... Watch them as they get low to the ground in jets and blow up some motorcycles!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39609e5e-6400-46af-b1fb-0d67851f2274/sm/ep7142.jpg","duration":184,"publication_date":"2013-03-13T21:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-190","changefreq":"weekly","video":[{"title":"2013:E31 - New Super Mario Bros. U Part 1","description":"Geoff, Jack, Gavin, Michael and Ray put down their Xbox 360 controllers and check out New Super Mario Bros. U!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-190","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17106ed5-75aa-441c-90c3-b339d2857830/sm/ep7141.jpg","duration":1595,"publication_date":"2013-03-13T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skin-pack-4-dlc","changefreq":"weekly","video":[{"title":"2013:E85 - Skin Pack 4 DLC","description":"Ray and Geoff check out all the new skins in the new Minecraft Skin Pack 4 DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skin-pack-4-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/164d6487-13e4-475d-ad83-cee7cef1ddf7/sm/ep7139.jpg","duration":148,"publication_date":"2013-03-13T15:54:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-awakened-dlc-contest","changefreq":"weekly","video":[{"title":"2013:E84 - Awakened DLC Contest","description":"In conjunction with the new Awakened DLC for Dead Space 3, EA has given Achievement Hunter a Dev Team version of Dead Space 3 to give away however we see fit! So, we're throwing a contest on our site to see who can represent TEAMWORK in the Dead Space universe. Upload your best TEAMWORK image by 11:59pm CST on Friday, March 15th and take home a sweet piece of loot! \r\n\r\nSubmit your entries right here: http://achievementhunter.com/members/contests/contest.phpid=10\r\n\r\nMore information on the Dev Team version here:\r\nhttp://gear.ea.com/books-dvds-other-media/collectors-editions/dead-space-3-dev-team-edition.html","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-awakened-dlc-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f85a52d1-67d1-4b75-aa6a-3f8ba50de0e2/sm/ep7138.jpg","duration":73,"publication_date":"2013-03-12T22:30:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-27","changefreq":"weekly","video":[{"title":"2013:E2 - Best fails of February 2013","description":"Better late than never with the best of February!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a7c836b-e355-428a-a5b0-da5cc575cd55/sm/ep7137.jpg","duration":145,"publication_date":"2013-03-12T21:13:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-44","changefreq":"weekly","video":[{"title":"2013:E11 - Trials Files #47","description":"Geoff and Jack take a look at a sic-fi themed map in this week's Trials Evolution: Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27b34810-87ec-4328-ae58-ebf08b6aee79/sm/ep7136.jpg","duration":131,"publication_date":"2013-03-12T21:05:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-43","changefreq":"weekly","video":[{"title":"2013:E11 - Sonic Adventure 2","description":"Jack and Geoff continue on the trend of Sonic Adventure titles by taking a look at Five Facts of Sonic Adventure 2! Watch and learn... or just watch.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5f5bf69-8950-45e6-ba3e-7a6bec0f8a95/sm/ep7135.jpg","duration":234,"publication_date":"2013-03-12T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-star-wars-galactic-battlegrounds","changefreq":"weekly","video":[{"title":"2013:E83 - Retro Active: Star Wars - Galactic Battlegrounds","description":"Fragger takes a look at the RTS game Star Wars: Galactic Battlegrounds in this week's Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-star-wars-galactic-battlegrounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8170e8f-7e11-4bd4-9546-a299d5565a86/sm/ep7134.jpg","duration":270,"publication_date":"2013-03-12T20:44:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jay-and-ray-look-at-awakened","changefreq":"weekly","video":[{"title":"2013:E82 - Jay & Ray look at Awakened!","description":"Jack and Ray flew out to San Francisco recently and got a peek at the new Awakened DLC for Dead Space 3 a few days early! Watch and learn and get a sneak and grab the Awakened DLC when it hits March 12th!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jay-and-ray-look-at-awakened","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e5de21d-694f-4508-9e1e-b8300efe6d5c/sm/ep7133.jpg","duration":101,"publication_date":"2013-03-11T23:39:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-41","changefreq":"weekly","video":[{"title":"2013:E10 - Week #154","description":"The boys are all here for some AHWU fun and shenanigans! Join in and watch the chaos! Don't forget to go to RTX! http://www.rtxevent.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f5273bb-7f05-4f6b-b21f-617b50ab6dd2/sm/ep7132.jpg","duration":402,"publication_date":"2013-03-11T23:11:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-40","changefreq":"weekly","video":[{"title":"2013:E17 - Tomb Raider","description":"Matictac and Whiistler discuss the ups and downs of the new Tomb Raider prequel. Featuring a brilliant proposal for the next Tomb Raider game.","player_loc":"https://roosterteeth.com/embed/this-is-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":417,"publication_date":"2013-03-11T22:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-180","changefreq":"weekly","video":[{"title":"2013:E30 - World Of Warcraft Ep2","description":"The Panda Posse returns and rolls out!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-180","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a2e3b3f-4e19-444e-a2bf-ad2f92d1910f/sm/ep7130.jpg","duration":2967,"publication_date":"2013-03-11T20:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-176","changefreq":"weekly","video":[{"title":"2013:E29 - Minecraft Episode 41 - No Petting Zoo","description":"Geoff has challenged Jack, Michael, Gavin, Ray and Ryan to catch Minecraft's most fearsome wildlife. Winner gets the Tower of Pimps.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-176","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47a3fbe6-e5e3-46e5-8865-8d1b8704ee9b/sm/ep7126.jpg","duration":1811,"publication_date":"2013-03-08T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-climbers","changefreq":"weekly","video":[{"title":"2013:E81 - Game Night: Halo 4 - Climbers","description":"Geoff and Caleb check out Climbers in Halo 4 for the latest episode of Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-climbers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cfa4372-8928-4459-a27d-ee755e509054/sm/ep7125.jpg","duration":87,"publication_date":"2013-03-08T16:51:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-ray-preview-endgame","changefreq":"weekly","video":[{"title":"2013:E80 - Jack & Ray preview Endgame","description":"Jack and Ray recently went out to EA's headquarters to check out Battlefield 3: Endgame, the final piece of DLC for Battlefield 3. Join them as they run amuck at EA, play some games, interview some folks and get jazzed about motorcycles. Endgame is available now for Battlefield 3 Premium users on the PS3 and available next Tuesday for Xbox fans!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-ray-preview-endgame","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d4cdd1f-e9e2-4466-b68c-5593a616bf02/sm/ep7124.jpg","duration":94,"publication_date":"2013-03-08T01:16:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-35","changefreq":"weekly","video":[{"title":"2013:E10 - Trials PIG #47","description":"Ray and Michael throw on their helmets and try to outpace each other in this week's episode of Trials Evolution PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/318559b4-f1ba-4c75-95ec-4edcf7a95dff/sm/ep7123.jpg","duration":232,"publication_date":"2013-03-08T00:19:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-43","changefreq":"weekly","video":[{"title":"2013:E10 - The Runner","description":"This week on Rage Quit, Michael runs his little heart out in the Xbox Live Inde Game, The Runner. Dem spikes.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bb1392a-ad7d-4f2e-ad64-3f3374d1e808/sm/ep7122.jpg","duration":181,"publication_date":"2013-03-07T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-7","changefreq":"weekly","video":[{"title":"2013:E79 - Dead Space 3 - All Collectibles Part 7","description":"Destrotor brings you the final video for all the collectibles in Chapter 16, 17, 18, and 19 in Dead Space 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/324c62c7-1e42-42e2-be31-4b21e02d54e5/sm/2013912-1449866004722-maxresdefault_(16).jpg","duration":487,"publication_date":"2013-03-07T19:42:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-6","changefreq":"weekly","video":[{"title":"2013:E78 - Dead Space 3 - All Collectibles Part 6","description":"Destrotor is back with more collectibles in Chapter 14 and Chapter 15 in Dead Space 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea9b566c-1424-423c-b31b-f36d1f9f31cd/sm/2013912-1449865981851-maxresdefault_(15).jpg","duration":535,"publication_date":"2013-03-07T19:32:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-5","changefreq":"weekly","video":[{"title":"2013:E77 - Dead Space 3 - All Collectibles Part 5","description":"Destrotor is back with more collectibles, this time for Chapter 10, Chapter 11 and Chapter 13 in Dead Space 3","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9286bf6b-76cf-47a9-b51f-4a4b90099802/sm/2013912-1449865959464-maxresdefault_(14).jpg","duration":510,"publication_date":"2013-03-07T19:22:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-3","changefreq":"weekly","video":[{"title":"2013:E75 - Dead Space 3 - All Collectibles Part 3","description":"Destrotor goes through the dark rooms of the CMS Terra Nova to bring you all the collectibles in Chapter 5 and Chapter 6 in Dead Space 3","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac2ff81c-3281-4b09-b5a4-36960403c5a2/sm/2013912-1449865919579-maxresdefault_(12).jpg","duration":332,"publication_date":"2013-03-07T18:59:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-2","changefreq":"weekly","video":[{"title":"2013:E74 - Dead Space 3 - All Collectibles Part 2","description":"Destrotor takes you on a journey to find all 34 collectibles in Chapter 4 in Dead Space 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c70351e-e7f5-4956-a94b-e55088aed82b/sm/2013912-1449865897849-maxresdefault_(11).jpg","duration":374,"publication_date":"2013-03-07T18:45:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-1","changefreq":"weekly","video":[{"title":"2013:E73 - Dead Space 3 - All Collectibles Part 1","description":"Destrotor takes you on a journey and helps you find all the collectibles in the Prologue, Chapter 1, Chapter 2, Chapter 3 in Dead Space 3","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-space-3-all-collectibles-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a73d55f-4cb3-45a4-a20b-cd7f3c4c6271/sm/2013912-1449865876322-maxresdefault_(10).jpg","duration":186,"publication_date":"2013-03-07T18:36:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-119","changefreq":"weekly","video":[{"title":"2013:E80 - Tomb Raider - How not to Survive.","description":"Hightower and AxialMatt show you How not to survive on a tropical island that also has murderous people living on it and are trying to kill you.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":246,"publication_date":"2013-03-07T17:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-35","changefreq":"weekly","video":[{"title":"2013:E10 - Halo HORSE #117","description":"Jack and Geoff compete in HORSE this week to celebrate Halo HORSE #117! Also, check out the new Halo HORSE Map tool over on Achievement Hunter. This will be how you will get your maps noticed and played by the boys! Http://www.achievementhunter.com/halohorsemaps","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/010ce5f1-1b8e-44b5-a76c-3e3f289c71cc/sm/ep7111.jpg","duration":397,"publication_date":"2013-03-07T01:16:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-35","changefreq":"weekly","video":[{"title":"2013:E8 - Powder Peg","description":"Gavin sets out to powder Geoff's beard, but his plan may blow up all over his face.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfd872e4-7b44-48a2-95f8-fabca447d0d9/sm/ep7110.jpg","duration":117,"publication_date":"2013-03-06T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-38","changefreq":"weekly","video":[{"title":"2013:E79 - Minecraft - Hop Til You Drop","description":"Geoff and Gav run the lads through a lily pad obstacle course.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/584b9ea2-8571-44c0-b325-3423cea40ec9/sm/ep7109.jpg","duration":751,"publication_date":"2013-03-06T22:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-160","changefreq":"weekly","video":[{"title":"2013:E28 - 3D Ultra MiniGolf Adventures","description":"Geoff, Michael, Ray, & Ryan hit the greens and whip out their putters in 3D Ultra MiniGolf Adventures for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68e5984f-171a-4352-bd40-69be71b413b8/sm/ep7108.jpg","duration":2188,"publication_date":"2013-03-06T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tomb-raider-boom-goes-the-dynamite-and-epic-fumble-guide","changefreq":"weekly","video":[{"title":"2013:E2111 - Tomb Raider - Boom Goes the Dynamite and Epic Fumble Guide","description":"Matictac shows your how to easily get the Boom Goes the Dynamite and the Epic Fumble achievements. It's EXPLOSIVE!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tomb-raider-boom-goes-the-dynamite-and-epic-fumble-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":94,"publication_date":"2013-03-06T19:06:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coming-soon-march-2013","changefreq":"weekly","video":[{"title":"2013:E72 - Coming Soon - March 2013","description":"Today is the launch of a brand new series at Achievement Hunter. Join us in welcoming Kdin to the fold along with his new show \"Coming Soon.\" You'll be seeing these at the start of every month with a quick look at what you have to look forward to. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coming-soon-march-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e264616-91ed-48f8-affa-63e4fbe6ed71/sm/ep7102.jpg","duration":245,"publication_date":"2013-03-06T00:03:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-21","changefreq":"weekly","video":[{"title":"2013:E25 - Crocodile Easter Egg ","description":"X-Ray and Vav show you how to get the Crocodile Easter Egg in Crysis 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b242c01-652d-40e5-86af-4bfda0893b82/sm/ep7101.jpg","duration":104,"publication_date":"2013-03-05T23:30:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-35","changefreq":"weekly","video":[{"title":"2013:E10 - Sonic Adventure","description":"Jack and Geoff take a cold hard look at Five Facts about Sonic Adventure! The classic!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0bda605-84ec-4434-88ad-cae5f3d71890/sm/ep7100.jpg","duration":239,"publication_date":"2013-03-05T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-gex","changefreq":"weekly","video":[{"title":"2013:E71 - Retro Active: Gex","description":"Fragger takes a look back at Gex for the 3Ds in this week's Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-gex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a009af6e-c25d-45ac-801a-b0b3c93aee18/sm/ep7099.jpg","duration":196,"publication_date":"2013-03-05T21:53:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dead-rising-2-custom-finish-guide","changefreq":"weekly","video":[{"title":"2013:E2104 - Dead Rising 2 - Custom Finish Guide","description":"Jake and Matt show you how to spray paint your sweet motorcycle for the Custom Finish achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dead-rising-2-custom-finish-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":169,"publication_date":"2013-03-05T19:47:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dead-rising-2-stick-em-up","changefreq":"weekly","video":[{"title":"2013:E70 - Dead Rising 2 - Stick 'em Up","description":"Jake and Matt show you how to dress up a zombie with paintings, a nice mask and a arrow for the Stick 'em Up achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dead-rising-2-stick-em-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0aa0215e-e584-44c0-b46c-904c3108746b/sm/2013912-1449865659639-maxresdefault_(9).jpg","duration":124,"publication_date":"2013-03-05T19:41:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-34","changefreq":"weekly","video":[{"title":"2013:E10 - Trials Files #46","description":"Geoff and Jack go down in the latest episode of Trials Evolution: Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/badd18a4-c635-4272-af07-2958b7e4a394/sm/ep7091.jpg","duration":127,"publication_date":"2013-03-05T19:36:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-118","changefreq":"weekly","video":[{"title":"2013:E78 - Halo 2 PC - The Level Skip","description":"ApocalypseT shows you how to manipulate architecture like a pro.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":120,"publication_date":"2013-03-05T19:22:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-39","changefreq":"weekly","video":[{"title":"2013:E16 - LEGO The Lord of the Rings","description":"Soothsayer57 and AxialMatt take you on a magical journey through Middle-Earth, this time in LEGO form. P.S. This video would have been uploaded the week the game came out, but I lost access to the computer it was saved on.","player_loc":"https://roosterteeth.com/embed/this-is-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":463,"publication_date":"2013-03-05T18:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-133","changefreq":"weekly","video":[{"title":"2013:E27 - Moonbase Alpha","description":"Just in case this is really a Last Starfighter sort of game, this week AH goes to the moon!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1d560b3-57e9-46ac-9779-4388c131c945/sm/ep7080.jpg","duration":2033,"publication_date":"2013-03-04T23:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-117","changefreq":"weekly","video":[{"title":"2013:E77 - Minecraft: Creeper's Playlist","description":"Jerem6401 and COPYxKAT get another fake achievement. This time in minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":347,"publication_date":"2013-03-04T23:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-31","changefreq":"weekly","video":[{"title":"2013:E9 - Week #153","description":"The boys are all back together (including Geoff) in this week's episode of AHWU! Get loads of news on Assassin's Creed 4, new releases and don't forget to grab a \"Front Flip For Style\" shirt at http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d377dbf-edd4-46a1-b78c-289bec84ef47/sm/ep7077.jpg","duration":409,"publication_date":"2013-03-04T23:00:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-116","changefreq":"weekly","video":[{"title":"2013:E76 - Minecraft - Chicken and Cow","description":"Max (aka A Lazy Max on Xbox) shows what you can do with wool on Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":141,"publication_date":"2013-03-04T22:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-18","changefreq":"weekly","video":[{"title":"2013:E24 - Mushroom Trip Easter Egg","description":"X-Ray and Vav show you where to find the Mushroom Trip Easter Egg in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a83db18-ab9e-4b10-b545-4895c91225e9/sm/ep7075.jpg","duration":83,"publication_date":"2013-03-04T22:26:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-115","changefreq":"weekly","video":[{"title":"2013:E75 - Minecraft - Don't Let The Bed Bugs Bite!","description":"In this video, Preston and iSayWhat show you how you shouldn't sleep in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":169,"publication_date":"2013-03-04T21:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-114","changefreq":"weekly","video":[{"title":"2013:E74 - Minecraft - Endercide","description":"The Endermen have decided that they need to take some friends with them to the grave.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":126,"publication_date":"2013-03-04T21:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-arcadecraft","changefreq":"weekly","video":[{"title":"2013:E69 - Indie Night - ArcadeCraft","description":"Hightower and D00ughBoy build their own Arcades and try to avoid ending up in Tron with this week's Indie Night on ArcadeCraft","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-arcadecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b48d3f09-dd85-43bc-9407-c72037a75eb3/sm/2013912-1449865642251-maxresdefault_(8).jpg","duration":209,"publication_date":"2013-03-04T20:59:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/vs-2013-9","changefreq":"weekly","video":[{"title":"2013:E1 - Episode 1: Gavin vs. Michael","description":"In the first episode of VS, Gavin challenges Michael to a game of Halo.\nTune in every week as two members of the Achievement Hunter team go head to head in a 1 vs 1 let's play.","player_loc":"https://roosterteeth.com/embed/vs-2013-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e091445d-3e60-4c80-9d07-b465e42d515f/sm/ep8491.jpg","duration":1285,"publication_date":"2013-03-01T20:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-warthog-round-up","changefreq":"weekly","video":[{"title":"2013:E68 - Game Night: Halo 4 - Warthog Round up","description":"Geoff and Caleb play a little Warhog Round up in this week's Game Night in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-warthog-round-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34b75a14-0990-4f88-95c2-bf726802b05f/sm/ep7068.jpg","duration":74,"publication_date":"2013-03-01T17:59:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-123","changefreq":"weekly","video":[{"title":"2013:E26 - Minecraft Episode 40 - Dig Down Part 2","description":"The battle rages on as Jack, Gavin, Michael, & Ray race to be the first to complete their Tower of Pimps, and more importantly, win the admiration and respect of Geoff. Who will win Find out now in the exciting conclusion!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f205a1f-f353-44d8-89f1-02600c5cfe14/sm/ep7067.jpg","duration":1763,"publication_date":"2013-03-01T17:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-post-human-warrior-guide","changefreq":"weekly","video":[{"title":"2013:E2095 - Post-Human Warrior Guide","description":"X-Ray and Vav show you how to get the \"Post-Human Warrior\" achievement in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-post-human-warrior-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09610fbd-eadd-4e09-b7db-c5290943230e/sm/ep7066.jpg","duration":89,"publication_date":"2013-03-01T16:17:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-didnt-see-it-comin-bird-of-prey-flash-of-light","changefreq":"weekly","video":[{"title":"2013:E67 - Halo 4 - Didn't See it Comin', Bird of Prey, Flash of Light","description":"Reached here to show you ONE of the ways you can go about getting these 3 Majestic DLC achievements. As always, stay classy and boost when you suck at assassinating!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-didnt-see-it-comin-bird-of-prey-flash-of-light","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f05f6c4-0ef3-4a52-8fd3-83edb32cbb98/sm/2013912-1449865623584-maxresdefault_(7).jpg","duration":114,"publication_date":"2013-02-28T22:20:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-30","changefreq":"weekly","video":[{"title":"2013:E9 - Hide the Fart","description":"This week on Rage Quit, Michael squeaks out as many as he can in the online flash game, Hide the Fart. It was someone else, I swear.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/021fdcc8-82a1-4259-aad3-cda2e11d4e71/sm/ep7062.jpg","duration":243,"publication_date":"2013-02-28T22:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-callin-in-the-big-guns","changefreq":"weekly","video":[{"title":"2013:E66 - Halo 4 - Callin' in the Big Guns","description":"Reached gives you some tips on how to get the Majestic DLC achievement Callin' in the Big Guns.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-callin-in-the-big-guns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/debe6665-bfe3-4243-a860-5f0d6c773c59/sm/2013912-1449865600680-maxresdefault_(6).jpg","duration":69,"publication_date":"2013-02-28T21:52:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-antichamber","changefreq":"weekly","video":[{"title":"2013:E65 - Indie Night - AntiChamber","description":"Hightower and AxialMatt take a look at mindbeing indie puzzler AntiChamber on Steam.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-antichamber","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e146a30f-5bf4-4190-a935-c4da99d5464f/sm/2013912-1449865579941-maxresdefault_(5).jpg","duration":232,"publication_date":"2013-02-28T21:08:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-37","changefreq":"weekly","video":[{"title":"2013:E14 - Crysis 3","description":"Join Rico from the Achievement Hunter community as he takes a look at the newest game in the Crysis series, Crysis 3.","player_loc":"https://roosterteeth.com/embed/this-is-2013-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":275,"publication_date":"2013-02-28T20:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-21","changefreq":"weekly","video":[{"title":"2013:E9 - Trials PIG #46","description":"Michael and Gavin settle a lovers' quarrel in this week's episode of Trials PIG! Fight, fight, fight, kiss.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2f37595-fc1f-4620-8343-b72420b12d5a/sm/ep7048.jpg","duration":300,"publication_date":"2013-02-28T18:14:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-108","changefreq":"weekly","video":[{"title":"2013:E25 - Halo 4 - Majestic Map Pack","description":"Geoff, Jack, Gavin, Michael, Ray, & Ryan fight it out on 3 new maps in the Majestic Map Pack DLC for Halo 4 on the Xbox 360. Killing your co-workers is fun!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d0c8652-9704-4d87-a6a1-ec6247df147c/sm/ep7047.jpg","duration":1311,"publication_date":"2013-02-27T23:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-25","changefreq":"weekly","video":[{"title":"2013:E7 - Clouds","description":"AH has its head in the sky and its ass on the ground in this Behind the Scenes of Let's Play: Minecraft - Episode 37.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec645479-e69c-4263-b87b-132cd4a03a02/sm/ep7045.jpg","duration":93,"publication_date":"2013-02-27T22:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-25","changefreq":"weekly","video":[{"title":"2013:E73 - Minecraft - Cheep Shot","description":"Gavin and Geoff channel their inner Mark Nutt in the latest Minecraft edition of Things to do in.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09f35693-e47e-4599-8ee8-40db780b3fc1/sm/ep7044.jpg","duration":195,"publication_date":"2013-02-27T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-21","changefreq":"weekly","video":[{"title":"2013:E9 - Halo HORSE #116","description":"Jack takes on Ray in this week's episode of Halo PIG! Who will bring the bacon and who will get burned","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efa3cb45-ff5e-4680-9143-0aa775a3fa7e/sm/ep7042.jpg","duration":294,"publication_date":"2013-02-27T16:31:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-24","changefreq":"weekly","video":[{"title":"2013:E9 - Kirby's Dream Land","description":"Ray and Michael take a look at the Nintendo Game Boy classic \"Kirby's Dream Land\" in this week's episode of Five Facts!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/390f4977-9a0b-4fc5-8f97-4790e7333aef/sm/ep7041.jpg","duration":290,"publication_date":"2013-02-27T00:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ping-pong-guide","changefreq":"weekly","video":[{"title":"2013:E2082 - Ping Pong! Guide","description":"X-Ray and Vav show you how to get the \"Ping Pong!\" achievement in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ping-pong-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/365df2bb-3694-4dd0-9542-daacdee8d831/sm/ep7040.jpg","duration":148,"publication_date":"2013-02-26T20:40:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-24","changefreq":"weekly","video":[{"title":"2013:E9 - Trials Files #45","description":"Geoff and Jack play a Marble Blast Ultra inspired map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d670efb5-fa6c-40a3-a55a-58b6e6a0299e/sm/ep7039.jpg","duration":125,"publication_date":"2013-02-26T20:27:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-quake","changefreq":"weekly","video":[{"title":"2013:E64 - Retro Active: Quake","description":"Fragger takes a trip down memory lane this week, and gives Quake another spin.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-quake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66da9675-244b-4a7d-8284-71a30f628e8e/sm/ep7038.jpg","duration":265,"publication_date":"2013-02-26T19:32:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-crysis-3-bang-for-the-buck-guide-v5","changefreq":"weekly","video":[{"title":"2013:E2075 - Crysis 3 - Bang for the Buck Guide v5","description":"Emaninator aka Edward shows you an easy way to get the Bang for the Buck Achievement in Crysis Three for 10 Gamer score","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-crysis-3-bang-for-the-buck-guide-v5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":50,"publication_date":"2013-02-26T02:48:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-36","changefreq":"weekly","video":[{"title":"2013:E13 - Crysis 3 Multiplayer","description":"Hey guys Andonis here showing you some multiplayer action and a quick overview in Crysis 3.","player_loc":"https://roosterteeth.com/embed/this-is-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":83,"publication_date":"2013-02-26T01:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crysis-3-clever-girl-v3","changefreq":"weekly","video":[{"title":"2013:E63 - Crysis 3 - Clever Girl! v3","description":"coolbbrah shows you how to get the clever girl achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crysis-3-clever-girl-v3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dfe54dc-87ba-4883-b680-752e39d2064a/sm/2013912-1449865553918-maxresdefault_(4).jpg","duration":56,"publication_date":"2013-02-26T00:50:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-113","changefreq":"weekly","video":[{"title":"2013:E72 - Things to see in.. Crysis 3 - Statue of Liberty","description":"hey guys Andonis here showing you something I thought was really cool and unique in Crysis 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":65,"publication_date":"2013-02-25T23:53:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-21","changefreq":"weekly","video":[{"title":"2013:E8 - Week #152","description":"Jack attempts to wrangle in the boys while Geoff is away. Enjoy this week's episode of AHWU featuring guest appearances by some of your favorites. Don't forget to grab the new Achievement Hunter long sleeve shirt at http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20e4b036-19d5-4674-bcef-c3cf1d04be0a/sm/ep7014.jpg","duration":344,"publication_date":"2013-02-25T23:00:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-83","changefreq":"weekly","video":[{"title":"2013:E24 - World Of Warcraft","description":"Honestly... we never thought we'd play it either.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cb4cbf9-51ce-4c11-9d4c-81ebede67b59/sm/ep7013.jpg","duration":2830,"publication_date":"2013-02-25T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-13","changefreq":"weekly","video":[{"title":"2013:E23 - Dancing Men Easter Egg","description":"X-Ray and Vav show you where to find the \"Dancing Men\" Easter Egg in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/764e5b89-aa90-4ee1-a2bd-721d6777d4ab/sm/ep7012.jpg","duration":60,"publication_date":"2013-02-25T22:48:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-112","changefreq":"weekly","video":[{"title":"2013:E71 - Crysis 3: Shoot Squirrels...in the butt","description":"Hey guys Andonis here...shooting squirrels...in the butt.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":67,"publication_date":"2013-02-25T22:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-roadkill-guide","changefreq":"weekly","video":[{"title":"2013:E2051 - Roadkill Guide","description":"X-Ray and Vav show you how to get the \"Roadkill\" achievement in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-roadkill-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/340a6b43-e507-4185-bdfe-b47f6d72a010/sm/ep7000.jpg","duration":185,"publication_date":"2013-02-25T18:01:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-71","changefreq":"weekly","video":[{"title":"2013:E23 - Minecraft Episode 39 - Dig Down","description":"Geoff has challenged Jack, Michael, Gavin and Ray to find the ingredients to build a Tower of Pimps inside of 4 identical cubes encased in glass. DIG!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/746c92f3-0e8d-4b8d-9153-7aac4ac0cf48/sm/ep6997.jpg","duration":1654,"publication_date":"2013-02-22T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-all-seeing-eye","changefreq":"weekly","video":[{"title":"2013:E62 - Game Night: Halo 4 - All Seeing Eye","description":"Geoff and Caleb get their mongoose on in Halo 4 for this week's Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-all-seeing-eye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17e657da-4b16-4646-99ce-35aa63abf147/sm/ep6996.jpg","duration":90,"publication_date":"2013-02-22T22:12:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-white-rider-guide","changefreq":"weekly","video":[{"title":"2013:E2047 - White Rider Guide","description":"X-Ray and Vav show you how to get the \"White Rider\" achievement in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-white-rider-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f40ac8d5-c0cc-4883-bced-aa8a1c011e55/sm/ep6994.jpg","duration":89,"publication_date":"2013-02-22T21:18:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-11","changefreq":"weekly","video":[{"title":"2013:E22 - Space Balls Easter Egg","description":"Ray and Michael show you how to find the Space Balls Easter Egg in Aliens: Colonial Marines for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7317b695-4ad1-4cde-9444-ea158f8edb77/sm/ep6993.jpg","duration":90,"publication_date":"2013-02-22T18:04:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-16","changefreq":"weekly","video":[{"title":"2013:E8 - Volume 127","description":"Join Jack and Geoff as they continue to belittle the failure that is in front of them in this week's Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa9213a1-7bc5-4a9e-82de-ab68298cf319/sm/ep6992.jpg","duration":243,"publication_date":"2013-02-22T17:15:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-15","changefreq":"weekly","video":[{"title":"2013:E8 - Trials PIG #45","description":"Ray and Jack face off in a rematch episode of Trials PIG! Will Ray make up for last week's shelacking Watch and learn!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd675556-c383-418e-af51-ce6fa618fa6c/sm/ep6991.jpg","duration":378,"publication_date":"2013-02-21T22:50:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-18","changefreq":"weekly","video":[{"title":"2013:E8 - Serious Sam Double D XXL","description":"This week on Rage Quit, Michael and Gavin double down in Serious Sam DD XXL for the Xbox Live Arcade. Divorces are always so messy.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e07c30c-a74a-48af-8c12-662888852282/sm/ep6990.jpg","duration":271,"publication_date":"2013-02-21T22:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bang-for-the-buck-arrow-to-the-knee-guides","changefreq":"weekly","video":[{"title":"2013:E2046 - Bang For The Buck, Arrow to the Knee! Guides","description":"X-Ray and Vav show you how to get the \"Bang For The Buck\" and \"Arrow to the Knee!\" achievements in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bang-for-the-buck-arrow-to-the-knee-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ce5fbc4-122f-4532-9983-16fb832c6620/sm/ep6989.jpg","duration":122,"publication_date":"2013-02-21T21:19:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-10","changefreq":"weekly","video":[{"title":"2013:E21 - Giant Donut Easter Egg","description":"Ray and Michael show you where to find the Giant Donut Easter Egg in Aliens: Colonial Marines for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecfaa235-8be0-48b0-80ea-a6189b2625aa/sm/ep6988.jpg","duration":56,"publication_date":"2013-02-21T17:28:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-62","changefreq":"weekly","video":[{"title":"2013:E22 - Nuketown Zombies","description":"Geoff, Gavin, Ray and Ryan play some Black Ops 2 Zombies in a little place called Nuketown.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc493f10-d638-4c0c-b8fd-4a4762fa66f3/sm/ep6987.jpg","duration":2542,"publication_date":"2013-02-21T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-17","changefreq":"weekly","video":[{"title":"2013:E70 - Minecraft - Indoor Pool","description":"Gav and Geoff show you how to turn a nice big dry house into an extremely wet one with the flick of a switch.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8159b86c-b7ae-4084-b227-e7521ca820ad/sm/ep6986.jpg","duration":125,"publication_date":"2013-02-21T01:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-15","changefreq":"weekly","video":[{"title":"2013:E8 - Halo HORSE #115","description":"Jack and Gavin duke it out in this week's episode of Halo PIG! Look out for your favorite Minecraft item in Halo 4!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd37ac11-fd73-4865-a266-ec4dbac3cdc4/sm/ep6985.jpg","duration":289,"publication_date":"2013-02-21T00:01:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-who-needs-rockets-guide","changefreq":"weekly","video":[{"title":"2013:E2045 - Who Needs Rockets? Guide","description":"X-Ray and Vav show you how to get the \"Who Needs Rockets\" achievement in Crysis 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-who-needs-rockets-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2c74b87-f401-4714-a959-16cd85bb4103/sm/ep6983.jpg","duration":99,"publication_date":"2013-02-20T19:34:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-7","changefreq":"weekly","video":[{"title":"2013:E20 - Sonic 3 and Knuckles Easter Egg","description":"Ray and Michael show you where to find the Sonic 3 and Knuckles Easter Egg in Aliens: Colonial Marines for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8930c28b-bb9e-47b2-ae0a-03e94e02585b/sm/ep6981.jpg","duration":63,"publication_date":"2013-02-20T17:07:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-need-for-alarm-guide","changefreq":"weekly","video":[{"title":"2013:E2044 - No Need For Alarm Guide ","description":"X-Ray and Vav show you how to get the \"No Need For Alarm\" achievement in Aliens: Colonial Marines for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-need-for-alarm-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2082ad88-186c-4b54-bf5f-05860586f30f/sm/ep6980.jpg","duration":72,"publication_date":"2013-02-20T15:10:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-steel-tail-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E2043 - Steel Tail Achievement Guide","description":"Geoff and Ray show you how to get the Steel Tail Achievement in Metal Gear Rising: Revengeance on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-steel-tail-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2213b3c-312d-4528-8498-247ef1934e5d/sm/ep6979.jpg","duration":77,"publication_date":"2013-02-19T21:58:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-13","changefreq":"weekly","video":[{"title":"2013:E8 - Call of Duty: World at War","description":"Jack and Ray (and Joel) learn Five new fascinating Facts about Call of Duty: World at War!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20245917-6145-4221-9e61-660de53e156d/sm/ep6978.jpg","duration":196,"publication_date":"2013-02-19T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-14","changefreq":"weekly","video":[{"title":"2013:E8 - Trials Files #44","description":"Geoff and Jack take a look at a Rubik's Cube game in Trials Evolution. Seriously. Didn't this game used to have motorcycles","player_loc":"https://roosterteeth.com/embed/trials-files-2011-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/208922a0-c3f6-4ce8-bbcf-09bf17ce4590/sm/ep6977.jpg","duration":108,"publication_date":"2013-02-19T21:08:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-5","changefreq":"weekly","video":[{"title":"2013:E19 - RvB Easter Egg Number 10","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5d48373-1e95-47a3-8201-eccc16945c51/sm/ep6976.jpg","duration":83,"publication_date":"2013-02-19T18:58:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mostly-come-at-night-guide","changefreq":"weekly","video":[{"title":"2013:E2042 - Mostly Come at Night... Guide","description":"Ray and Michael show you how to get the \"Mostly Come at Night...\" achievement in Aliens: Colonial Marines for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mostly-come-at-night-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d58a1e0-508e-4b2f-a890-dc114949607c/sm/ep6975.jpg","duration":77,"publication_date":"2013-02-19T16:27:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-13","changefreq":"weekly","video":[{"title":"2013:E7 - Week #151","description":"Geoff is away and the boys are playing. Join Jack, Gavin, Michael and Ray as they dive in to this week's releases and get in to general shenanigans.","player_loc":"https://roosterteeth.com/embed/ahwu-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/169a1d43-33f3-47ec-b0aa-1444a0e54812/sm/ep6974.jpg","duration":287,"publication_date":"2013-02-19T01:45:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-15","changefreq":"weekly","video":[{"title":"2013:E6 - WWE '13","description":"AH can't beat Wall Street.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb982081-5a7c-4ca0-812f-5a3f8e1d2495/sm/ep6973.jpg","duration":219,"publication_date":"2013-02-18T21:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hungry-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E2041 - Hungry Achievement Guide","description":"Michael and Jack show you how to get the \"Hungry\" achievement in Dead Space 3 for the Xbox 360. They hongry!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hungry-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a291968-1906-424b-8be7-173bc2977515/sm/ep6972.jpg","duration":138,"publication_date":"2013-02-18T20:19:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fire-alarm-guide","changefreq":"weekly","video":[{"title":"2013:E2040 - Fire Alarm Guide","description":"X-Ray and Vav show you how to get the \"Fire Alarm\" achievement in Aliens: Colonial Marines for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fire-alarm-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bb85e07-c11a-465c-a831-94387fb85378/sm/ep6971.jpg","duration":142,"publication_date":"2013-02-18T19:55:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-50","changefreq":"weekly","video":[{"title":"2013:E21 - Chivalry Medieval Warfare","description":"AH brings the pain this week in Chivalry Medieval Warfare!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4edd502-2725-4c60-a8f3-05a85dd04f60/sm/ep6970.jpg","duration":1425,"publication_date":"2013-02-18T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-48","changefreq":"weekly","video":[{"title":"2013:E20 - Minecraft Episode 38 - Pac-Man","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan play some Pac-Man in Minecraft. Who will scoff their way to the tower of pimps","player_loc":"https://roosterteeth.com/embed/lets-play-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3ab4130-108a-4d13-ab01-b044c5525d0d/sm/ep6966.jpg","duration":1578,"publication_date":"2013-02-16T00:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-12","changefreq":"weekly","video":[{"title":"2013:E7 - Volume 126","description":"Jack and Geoff continue to look for the elusive Failacabra in this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ac304a7-c064-446b-bcdc-dfaf4b407132/sm/ep6965.jpg","duration":262,"publication_date":"2013-02-15T23:25:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-spartan-stompers","changefreq":"weekly","video":[{"title":"2013:E61 - Game Night: Halo 4 - Spartan Stompers","description":"Geoff and Caleb check out the Gametype \"Spartan Stompers\" in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-spartan-stompers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7988a0b-ed2c-4a28-ad13-51430da1f2c3/sm/ep6964.jpg","duration":101,"publication_date":"2013-02-15T22:07:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-aliens-colonial-marines-legendary-weapon-locations","changefreq":"weekly","video":[{"title":"2013:E60 - Aliens: Colonial Marines - Legendary Weapon Locations","description":"Hightower fights through the alien infested corridors to show you how to find the Legendary weapons and unlock the \"Personal Friend of Mine\" and \"I Like to Keep These Handy\" achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-aliens-colonial-marines-legendary-weapon-locations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/801c9c68-7c27-419d-8aa6-63fb6090a792/sm/2013912-1449865533080-maxresdefault_(3).jpg","duration":183,"publication_date":"2013-02-15T20:51:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013","changefreq":"weekly","video":[{"title":"2013:E16 - Easter Egg Guide","description":"X-Ray and Vav show you how to get the \"Easter Egg\" achievement in Aliens: Colonial Marines for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f55775e-d432-4d57-9465-db27141a9ccb/sm/ep6949.jpg","duration":94,"publication_date":"2013-02-15T19:42:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-red-wings-vs-ducks","changefreq":"weekly","video":[{"title":"2013:E59 - CH Predicts: Red Wings vs Ducks","description":"Ben and Chad preview NHL.com's game of the week between the Detroit Red Wings and the Anaheim Ducks.\r\n\r\nChad needs to brush up on his knowledge of the Western Conference.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-red-wings-vs-ducks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86e6f65e-e432-4e8c-99d9-59bf50f6f7ee/sm/2013912-1449865511442-maxresdefault_(2).jpg","duration":166,"publication_date":"2013-02-15T16:46:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-7","changefreq":"weekly","video":[{"title":"2013:E7 - Rockstar Table Tennis","description":"This week on Rage Quit, Michael and Jesper team up in Rockstar Table Tennis for the Xbox 360 to challenge the greatest Ping Pong player of all time, Jesper.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b59be392-b548-424c-9ef1-58eb11fd9813/sm/ep6943.jpg","duration":257,"publication_date":"2013-02-15T01:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-6","changefreq":"weekly","video":[{"title":"2013:E7 - Trials PIG #44","description":"Jack and Ray go vrrrooomm vrrrooommm on their motorbikes in this week's episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d15993f1-9199-418c-be63-d30bdaa26503/sm/ep6942.jpg","duration":307,"publication_date":"2013-02-15T00:16:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-short-controlled-bursts-guide","changefreq":"weekly","video":[{"title":"2013:E2024 - Short, Controlled Bursts Guide","description":"X-Ray and Vav show you how to get the \"Short, Controlled Bursts\" achievement in Aliens: Colonial Marines for the Xbox 360\r\n\r\nBuy your X-Ray and Vav shirt now! - http://achievementhunter.com/store/product.phpid=367","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-short-controlled-bursts-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d99f7da-d5e4-49e2-9079-b61d0b3957ef/sm/ep6941.jpg","duration":138,"publication_date":"2013-02-14T19:01:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-7","changefreq":"weekly","video":[{"title":"2013:E7 - Halo HORSE #114","description":"Jack and Michael face off in this new episode of Halo PIG! Keep an eye out for the Tower of Pimps too!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96e884fa-7607-4507-8b86-36272d915e6c/sm/ep6940.jpg","duration":251,"publication_date":"2013-02-13T23:59:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-111","changefreq":"weekly","video":[{"title":"2013:E69 - Minecraft - The Town that Bombs","description":"In this Things to do in... Minecraft, BHDwaffles shows another one of his proudest reations with a little help from a friend and this town that bombs will blow you away!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":171,"publication_date":"2013-02-13T22:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-110","changefreq":"weekly","video":[{"title":"2013:E68 - Minecraft - Jump in the fire","description":"Mark is back this week with another idea in Minecraft. And it will be a big drop, like Jack's one in the ravine.\n\nHint: watch this while listening to the actual song.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":138,"publication_date":"2013-02-13T21:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-17","changefreq":"weekly","video":[{"title":"2013:E19 - Turned Mode","description":"The AH lads are back in Black Ops 2 Zombies. This time they take on the new \"Turned\" mode.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/841c974e-4daf-460a-9f8e-9e4e74d0b005/sm/ep6936.jpg","duration":1162,"publication_date":"2013-02-13T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-snapshot-in-40-seconds","changefreq":"weekly","video":[{"title":"2013:E58 - Minecraft Snapshot in 40 seconds","description":"A quick video showcasing the updates of Minecraft. This video features the PC version and the snapshot 13w01a.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-snapshot-in-40-seconds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc4e7d07-b856-4a8b-abbd-d0964ec676a5/sm/2013912-1449865483298-maxresdefault_(1).jpg","duration":49,"publication_date":"2013-02-13T21:18:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-7","changefreq":"weekly","video":[{"title":"2013:E67 - Minecraft - Housewarming Gift","description":"Gav and Geoff are doing what they do best... Showing you new and improved ways to grief your friends in Minecraft. Why not leave them a little gift","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13f47987-ba4c-47b5-84d9-49caac7c3b57/sm/ep6932.jpg","duration":149,"publication_date":"2013-02-13T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dead-space-2-going-for-distance-guide","changefreq":"weekly","video":[{"title":"2013:E2021 - Dead Space 2 - Going for Distance Guide","description":"DaltonVaughn shows you another way to get the Going for Distance achievement in Dead Space 2. You bet he's going for speed.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dead-space-2-going-for-distance-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":84,"publication_date":"2013-02-13T20:17:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-109","changefreq":"weekly","video":[{"title":"2013:E66 - Minecraft - Capture the Tower","description":"hey whats up guys this map is a map i made off of geoff and gavins idea of CTT. I made a version of it and hope you guys like it. Map Made by DMF x SNipEz x","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":167,"publication_date":"2013-02-13T18:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-t-e-c-3001","changefreq":"weekly","video":[{"title":"2013:E57 - Indie Night - T.E.C 3001","description":"Hightower and xbritxhybrid run away from a giant robot monkey thing in T.E.C 3001!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-t-e-c-3001","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":177,"publication_date":"2013-02-13T17:48:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-108","changefreq":"weekly","video":[{"title":"2013:E65 - Skyrim - Robot Friends","description":"levy350 and Soothsayer57 delve into the depths of Skyrim in search of friendship and camaraderie. Also death happens.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":228,"publication_date":"2013-02-13T17:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-reset-skill-perks","changefreq":"weekly","video":[{"title":"2013:E56 - The Elder Scrolls V: Skyrim - Reset Skill Perks","description":"CraigMac used the Dragonborn DLC to reset his skill perks.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-reset-skill-perks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3b35ce9-01b7-4fae-a284-9feb08ec5c30/sm/2013912-1449865424652-maxresdefault.jpg","duration":89,"publication_date":"2013-02-13T16:54:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-107","changefreq":"weekly","video":[{"title":"2013:E64 - Mincraft - Care Package","description":"Today, we take a new spin on Geoff and Gavs previous TTDOI, landmines.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d140e29e-f5c5-4a62-8d66-09c3cb12930e/sm/2013912-1449600250806-maxresdefault_(14).jpg","duration":58,"publication_date":"2013-02-13T15:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-whos-got-two-green-thumbs","changefreq":"weekly","video":[{"title":"2013:E55 - Who's Got Two Green Thumbs?","description":"Speez shows how to get this raid achievement in World of Warcraft. Bring some friends, you need them.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-whos-got-two-green-thumbs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b7a2a33-33c1-47f4-9c3b-0e9143a3605b/sm/2013912-1449600219712-maxresdefault_(13).jpg","duration":125,"publication_date":"2013-02-13T15:28:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-heat-vs-thunder","changefreq":"weekly","video":[{"title":"2013:E54 - CH Predicts: Heat vs Thunder","description":"Ben and Chad discuss the NBA Finals rematch between the Miami Heat and the Oklahoma City Thunder. \r\n\r\nSpoiler: Chad detests LeBron with a passion.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-heat-vs-thunder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7c34631-6fb9-4c4e-9fc0-01c9ebbd74b4/sm/2013912-1449600195593-maxresdefault_(12).jpg","duration":181,"publication_date":"2013-02-13T14:51:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-23","changefreq":"weekly","video":[{"title":"2013:E12 - Dead Space 3","description":"Jack and Michael discuss the third Dead Space game in this episode of This Is...","player_loc":"https://roosterteeth.com/embed/this-is-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/935ca71a-4407-4410-91b7-a252874cfd96/sm/ep6909.jpg","duration":539,"publication_date":"2013-02-13T01:27:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-106","changefreq":"weekly","video":[{"title":"2013:E63 - Minecraft - Uphill Waterfalls","description":"AxialMatt and CombatWombat bring a Things to do in that will teach you how to break the natural laws of physics...Don't tell Isaac Newton...seriously","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ca40932-c5ae-4954-87d3-ec5581f2f86e/sm/2013912-1449600171847-maxresdefault_(11).jpg","duration":236,"publication_date":"2013-02-13T00:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-48","changefreq":"weekly","video":[{"title":"2013:E7 - Call of Duty: Modern Warfare","description":"Jack and Ray learn Five fancy Facts about Call of Duty: Modern Warfare. Joel also makes a few points.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/093dbb9e-9b03-42cf-b6d5-a0aa2f551879/sm/ep6907.jpg","duration":256,"publication_date":"2013-02-13T00:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-darksiders-ii-like-a-noss-part-3","changefreq":"weekly","video":[{"title":"2013:E53 - Darksiders II - Like a Noss Part 3","description":"Argul The Deposed King Location","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-darksiders-ii-like-a-noss-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8f6caf3-8fbe-4bda-a5e3-11cf86980950/sm/2013912-1449600124378-maxresdefault_(10).jpg","duration":132,"publication_date":"2013-02-12T23:31:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-darksiders-ii-like-a-noss-part-2","changefreq":"weekly","video":[{"title":"2013:E52 - Darksiders II - Like A Noss Part 2","description":"Gorewood Location in Darksiders II","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-darksiders-ii-like-a-noss-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c83c26e-58fb-44ac-9819-d894516c6c5d/sm/2013912-1449600098501-maxresdefault_(9).jpg","duration":100,"publication_date":"2013-02-12T23:21:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-darksiders-ii-like-a-noss-part-1","changefreq":"weekly","video":[{"title":"2013:E51 - Darksiders II - Like a Noss Part 1","description":"Location of Bhethir in Darksiders 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-darksiders-ii-like-a-noss-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7dc40b2b-5e23-4830-8aac-d18f9c4ac485/sm/2013912-1449600067932-maxresdefault_(8).jpg","duration":72,"publication_date":"2013-02-12T23:11:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-46","changefreq":"weekly","video":[{"title":"2013:E7 - Trials Files #43","description":"Geoff and Jack take a look at another custom map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/310f6ac0-f110-459e-ab0b-c9e68bcc1c44/sm/ep6890.jpg","duration":55,"publication_date":"2013-02-12T21:03:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-26","changefreq":"weekly","video":[{"title":"2013:E15 - RvB Easter Egg Number 9","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6fe8848-1046-459e-a75f-545144ad2f7a/sm/ep6889.jpg","duration":94,"publication_date":"2013-02-12T19:38:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-44","changefreq":"weekly","video":[{"title":"2013:E6 - Week #150","description":"The boys are here with more information for you! Don't forget to grab a brand new X-Ray and Vav shirt in the Rooster Teeth Store http://www.roosterteeth.com/store and go to RTX this Summer! http://www.rtxevent.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2013-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27b317b0-ee75-4abd-8847-884f744fc699/sm/ep6888.jpg","duration":274,"publication_date":"2013-02-11T23:46:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-185","changefreq":"weekly","video":[{"title":"2013:E18 - Minecraft Zombie Apocalypse","description":"As we clearly haven't killed enough zombies yet, AH takes on the Minecraft adventure map Zombie Apocalypse by Hypixel!\n\nTry it yourself here:\nhttp://hypixel.net/threads/zombie-apocalypse-minec...","player_loc":"https://roosterteeth.com/embed/lets-play-2013-185","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79b1a6c7-93e4-4b63-a814-76444a33bce5/sm/ep6879.jpg","duration":2687,"publication_date":"2013-02-11T21:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-maintenance","changefreq":"weekly","video":[{"title":"2013:E50 - High Maintenance","description":"X-Ray and Vav show you how to get the \"High Maintenance\" achievement in the Revolution DLC for Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-maintenance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff43c353-1b01-4385-896e-67e2d026bfa1/sm/ep6866.jpg","duration":609,"publication_date":"2013-02-11T15:25:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-space-ace-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E1975 - Space Ace Achievement Guide","description":"Michael and Jack show you how to get the \"Space Ace\" Achievement in Dead Space 3 for the Xbox 360. Pew pew!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-space-ace-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/313a79bb-aa70-4d9f-9ce2-97e1e4efeab5/sm/ep6863.jpg","duration":166,"publication_date":"2013-02-08T23:48:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-42","changefreq":"weekly","video":[{"title":"2013:E6 - Volume 125","description":"Jack and Geoff laugh at the misery represented in these clips from Halo 4! Oh mah gosh!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3614a432-731c-4650-86ee-118177273611/sm/ep6862.jpg","duration":238,"publication_date":"2013-02-08T23:13:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-170","changefreq":"weekly","video":[{"title":"2013:E17 - Minecraft Episode 37 - Clouds","description":"Geoff has built an obstacle course in the sky. Watch as Jack, Michael, Gavin, Ray and Ryan attempt to win the tower of pimps in a flurry of frustration.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec0b6587-be25-453c-8185-4917c2eddcec/sm/ep6861.jpg","duration":2148,"publication_date":"2013-02-08T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-mech-madness","changefreq":"weekly","video":[{"title":"2013:E49 - Game Night: Halo 4 - Mech Madness","description":"Geoff and Caleb play a little Mech Madness in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-mech-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa61bc41-e87b-4f39-9aad-49aecf7f7091/sm/ep6860.jpg","duration":70,"publication_date":"2013-02-08T20:04:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-33","changefreq":"weekly","video":[{"title":"2013:E6 - Trials PIG #43","description":"Jack and Gavin face off yet again in Trials Evolution. Will Gavin attempt to best Jack after his humiliating defeat last week Watch and find out!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc0e6d44-db3f-44e5-9595-ae3557967326/sm/ep6859.jpg","duration":362,"publication_date":"2013-02-08T03:26:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-41","changefreq":"weekly","video":[{"title":"2013:E6 - Millipede","description":"This week on Rage Quit, Michael plays pest control in Millipede, available in Centipede & Millipede for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/214506ed-efb8-4613-bab9-a81302ddd821/sm/ep6858.jpg","duration":262,"publication_date":"2013-02-08T01:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-105","changefreq":"weekly","video":[{"title":"2013:E62 - Minecraft - Mystic Gauntlet","description":"NattieJ brings you a challenge course in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a61e1f-0285-444c-b74b-cf6a1789a0b6/sm/2013912-1449600043298-maxresdefault_(7).jpg","duration":207,"publication_date":"2013-02-07T07:12:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-104","changefreq":"weekly","video":[{"title":"2013:E61 - Things to see in.. Dead Space 3: WTF?!","description":"Hey guys Andonis here...showing you this...I dont even know how to explain it...enjoy.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed1bffea-56aa-4d8e-9539-395ef3f32f94/sm/2013912-1449600014817-maxresdefault_(6).jpg","duration":70,"publication_date":"2013-02-07T05:48:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-33","changefreq":"weekly","video":[{"title":"2013:E6 - Halo HORSE #113","description":"Jack and Gavin (aka Javin, or Gack) fight each other in the arena of Halo 4. Who will win this episode of Achievement PIG!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51ff7095-ed0b-4948-a1e0-5b7d5de8f47e/sm/ep6846.jpg","duration":299,"publication_date":"2013-02-06T23:32:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2013-23","changefreq":"weekly","video":[{"title":"2013:E1 - Best fails of January 2013","description":"New year and all new fails! It's the best of January 2013!","player_loc":"https://roosterteeth.com/embed/game-fails-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cb4dc45-4946-4b1c-9601-a4cb06f824db/sm/ep6843.jpg","duration":196,"publication_date":"2013-02-06T23:07:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shafted-guide","changefreq":"weekly","video":[{"title":"2013:E1962 - Shafted Guide","description":"X-Ray and Vav show you how to get the \"Shafted \" achievement in the Revolution DLC for Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shafted-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c3bfa65-2dab-4c4f-a52f-8cd8d76a8e96/sm/ep6841.jpg","duration":237,"publication_date":"2013-02-06T22:33:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-149","changefreq":"weekly","video":[{"title":"2013:E16 - Trials Evolution - Riders of Doom DLC","description":"Geoff, Jack, Michael, and Gavin are back and front flipping for style in the Trials Evolution DLC, Riders of Doom. Goooooooo, Blue Team!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65a36f79-4a70-4f45-864a-1c5c334c1e01/sm/ep6839.jpg","duration":1371,"publication_date":"2013-02-06T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-36","changefreq":"weekly","video":[{"title":"2013:E60 - Minecraft - It's Raining Butts","description":"Grab a coat, because thanks to Gav and Geoff it's raining Butts.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56546677-275e-4202-92bd-1bfee4b1ee88/sm/ep6838.jpg","duration":146,"publication_date":"2013-02-06T21:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-bruins-vs-canadiens","changefreq":"weekly","video":[{"title":"2013:E48 - CH Predicts: Bruins vs Canadiens","description":"Ben and Chad contemplate the political views of Tim Thomas while simulating NHL.com's game of the week between the Boston Bruins and the Montreal Canadiens.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-bruins-vs-canadiens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5458c807-62ab-41c8-baa5-1dea433df0cc/sm/2013912-1449599979505-maxresdefault_(5).jpg","duration":165,"publication_date":"2013-02-06T20:59:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-slippery-when-undead-guide","changefreq":"weekly","video":[{"title":"2013:E1958 - Slippery When Undead Guide","description":"X-Ray and Vav show you how to get the \"Slippery When Undead \" achievement in the Revolution DLC for Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-slippery-when-undead-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bc66d75-9dc4-400e-ba1b-cfd324dcf34d/sm/ep6834.jpg","duration":159,"publication_date":"2013-02-06T16:30:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-under-a-buck-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E1957 - Under a Buck Achievement Guide","description":"Jack and Michael grab the secret achievement \"Under a Buck\" in Dead Space 3. Watch your antlers.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-under-a-buck-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe372961-f23f-4df5-9739-13409079d713/sm/ep6832.jpg","duration":73,"publication_date":"2013-02-05T23:30:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-32","changefreq":"weekly","video":[{"title":"2013:E6 - Super Mario Brothers 3","description":"Michael and Ray tag team Super Mario Brothers 3 and deliver you a heaping stack of fun information!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c75cd0e2-fe1d-4f22-aa3d-26a36561f80e/sm/ep6831.jpg","duration":376,"publication_date":"2013-02-05T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-33","changefreq":"weekly","video":[{"title":"2013:E6 - Trials Files #42","description":"Geoff and Jack check out the wild, wild west in this week's Trials Files in Trials Evolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be1ef267-c646-4950-8eb8-f6d51056c825/sm/ep6830.jpg","duration":89,"publication_date":"2013-02-05T22:40:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vertigoner-guide","changefreq":"weekly","video":[{"title":"2013:E1956 - Vertigoner Guide","description":"X-Ray and Vav show you how to get the \"Vertigoner\" achievement in the Revolution DLC for Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vertigoner-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07a7942e-f4f6-4267-a74c-b4e83f253d63/sm/ep6829.jpg","duration":126,"publication_date":"2013-02-05T21:24:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-die-rise-teddy-bear-song","changefreq":"weekly","video":[{"title":"2013:E47 - Die Rise Teddy Bear Song","description":"Ray and Geoff show you how to activate the Die Rise Teddy Bear Song in Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-die-rise-teddy-bear-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0213ef7-8de4-40e2-bae0-80ca28bb2c19/sm/ep6828.jpg","duration":103,"publication_date":"2013-02-05T17:07:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-31","changefreq":"weekly","video":[{"title":"2013:E5 - Potions","description":"AH gets lost on a wild Blaze chase. Will they be doomed to search The Nether forever","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b167468-a606-4c78-a5d3-7f5222f60a39/sm/ep6827.jpg","duration":92,"publication_date":"2013-02-05T16:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mlb-12-the-show-stadium-specific-hr-trophies","changefreq":"weekly","video":[{"title":"2013:E46 - MLB 12: The Show - Stadium Specific HR Trophies","description":"Joe is back to give a few tips and guides on how, where and who to use to hit those balls where you want them for a couple stadium specific trophies in MLB 12: The Show.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mlb-12-the-show-stadium-specific-hr-trophies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07d950a2-f978-42a7-8da8-24ec47bee631/sm/2013912-1449599953799-maxresdefault_(4).jpg","duration":143,"publication_date":"2013-02-05T01:02:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-103","changefreq":"weekly","video":[{"title":"2013:E59 - Minecraft - Cactus trap","description":"xRevan116x shows the community how to make a nice lil' trap to use against looters, griefers, and friends.\nIt's tippity top!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/120054f3-ac4a-4040-96a0-a658bfcbc919/sm/2013912-1449599921905-maxresdefault_(3).jpg","duration":313,"publication_date":"2013-02-05T00:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-35","changefreq":"weekly","video":[{"title":"2013:E11 - Gemini Rue","description":"Lunkheadali shows us a old game that had a nice atmosphere, shame about the slowness.","player_loc":"https://roosterteeth.com/embed/this-is-2013-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81f8ed7b-66f2-4240-aa73-888782ebcc80/sm/2013912-1449599892379-maxresdefault_(2).jpg","duration":155,"publication_date":"2013-02-04T23:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-30","changefreq":"weekly","video":[{"title":"2013:E5 - Week #149","description":"Jack and Geoff are here with more gaming goodies and information, don't forget to grab Dead Space 3 this week and buy a new shirt from the Rooster Teeth Store at http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aed0ad9-2c36-4fc6-b119-fc46689262a3/sm/ep6821.jpg","duration":298,"publication_date":"2013-02-04T22:58:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-102","changefreq":"weekly","video":[{"title":"2013:E58 - Far Cry 3 - Childhood","description":"levy350 and xBritxHybrid bring you a TTDI in Farcry 3 where we revisit our childhood. Don't try this at home kids!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92339d6a-e2e1-4ea3-a386-2eb387020254/sm/2013912-1449599862210-maxresdefault_(1).jpg","duration":206,"publication_date":"2013-02-04T22:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-17","changefreq":"weekly","video":[{"title":"2013:E14 - RvB Easter Egg Number 8","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18ea7bb8-2529-4282-ab47-2787e7b2c075/sm/ep6818.jpg","duration":63,"publication_date":"2013-02-04T21:51:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-rock-always-wins-v3","changefreq":"weekly","video":[{"title":"2013:E45 - Far Cry 3 - Rock Always Wins v3","description":"OneAngryPandas shows us what the rock is cooking in Far Cry 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-rock-always-wins-v3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":78,"publication_date":"2013-02-04T21:48:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-games-dont-grow-on-trees","changefreq":"weekly","video":[{"title":"2013:E44 - Games Don't Grow on Trees","description":"Daniel shows you how to look at the credits, but don't tell anyone because it's a secret.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-games-dont-grow-on-trees","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df8fb057-a2d7-4a1c-a69a-5ddc2a815880/sm/2013912-1449599510806-maxresdefault.jpg","duration":37,"publication_date":"2013-02-04T21:21:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-101","changefreq":"weekly","video":[{"title":"2013:E57 - Minecraft - Escape to the surface!","description":"Find 100 blocks (without breaking them) to get back to the surface","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c57ac9a-c377-47e8-b0e4-6d6224f7b451/sm/2013912-1449599469899-maxresdefault_(17).jpg","duration":447,"publication_date":"2013-02-04T20:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-126","changefreq":"weekly","video":[{"title":"2013:E15 - WWE '13","description":"Welcome to the Achievement Hunter Battle Royale! In tonight's main event, Geoff, Jack, Gavin, Michael, Ray, and Ryan clash in an all out brawl for supremacy in WWE '13 for the Xbox 360. Let's get ready to let's play!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/628048ce-850f-41bd-84ad-93d173baf796/sm/ep6812.jpg","duration":2018,"publication_date":"2013-02-04T17:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-30","changefreq":"weekly","video":[{"title":"2013:E5 - Volume 124","description":"Jack and Geoff watch the chaos that is Halo 4 and laugh the whole way home. Enjoy this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c7a72d2-f5da-416c-84ff-1535676e2038/sm/ep6809.jpg","duration":230,"publication_date":"2013-02-01T22:11:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-007-flood","changefreq":"weekly","video":[{"title":"2013:E43 - Game Night: Halo 4 - 007 Flood","description":"Geoff and Caleb take a look at another custom game / map in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-007-flood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f36c6cf-84e5-469b-9825-0c22dc3e4742/sm/ep6807.jpg","duration":139,"publication_date":"2013-02-01T21:52:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-121","changefreq":"weekly","video":[{"title":"2013:E14 - Minecraft 36 - Potions pt 2","description":"It's Geoff, Jack, Michael, Gavin, Ray and Ryan back in the finale of the race to drink a potion. Episode 36 contains 100% more Blazes than episode 35.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/327584f2-a41e-4222-ba37-16df877af07f/sm/ep6808.jpg","duration":1915,"publication_date":"2013-02-01T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-ravens-vs-49ers-super-bowl-xlvii","changefreq":"weekly","video":[{"title":"2013:E42 - CH Predicts: Ravens vs 49ers (Super Bowl XLVII)","description":"Ben and Caleb run through the gamut of Super Bowl storylines as they simulate the World Championship clash between the Baltimore Ravens and San Francisco 49ers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-ravens-vs-49ers-super-bowl-xlvii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e6f2a2c-88fb-44ee-9b85-fa0d5c664e67/sm/2013912-1449599445336-maxresdefault_(16).jpg","duration":221,"publication_date":"2013-02-01T17:19:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-bleed","changefreq":"weekly","video":[{"title":"2013:E41 - Indie Night - Bleed","description":"Hightower and Nick take a look at 8-bit shoot-em-up Bleed!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-bleed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65cfe30d-f93e-4672-902c-aa6af0e8825e/sm/2013912-1449599420005-maxresdefault_(15).jpg","duration":186,"publication_date":"2013-02-01T17:08:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-24","changefreq":"weekly","video":[{"title":"2013:E5 - Trials PIG #42","description":"Jack and Gavin square off again in the Trials Evolution squared circle. Who will defeat their opponent","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bd7298e-2005-4c7c-b7d3-cb0ae8f6db62/sm/ep6804.jpg","duration":216,"publication_date":"2013-02-01T00:14:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-29","changefreq":"weekly","video":[{"title":"2013:E5 - Surgeon Simulator","description":"This week on Rage Quit, Dr. Jones and Dr. Free attempt to save lives in Surgeon Simulator 2013. It's going to be a busy night at the morgue.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1936b176-09a8-4dad-a9e2-04bdf5ef1e59/sm/ep6803.jpg","duration":663,"publication_date":"2013-01-31T22:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-facing-the-dragon","changefreq":"weekly","video":[{"title":"2013:E40 - Facing the Dragon","description":"X-Ray and Vav show you how to get the \"Facing the Dragon\" achievement in the Revolution DLC for Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-facing-the-dragon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0bd474d-7d9d-4376-8693-aede73bc6acd/sm/ep6802.jpg","duration":101,"publication_date":"2013-01-31T20:51:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-24","changefreq":"weekly","video":[{"title":"2013:E5 - Halo HORSE #112","description":"Gavin and Geoff play PIG in Halo 4 to decide who will get the larger piece of steak this week.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b0b7a5d-5c8b-4aa4-a1b7-fb7e8079edbf/sm/ep6800.jpg","duration":246,"publication_date":"2013-01-30T23:14:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-29","changefreq":"weekly","video":[{"title":"2013:E56 - Minecraft - #DanTheMan","description":"Geoff and Gavin shows you what happens in Achievement City when Gavin leaves town.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11e5145a-1e43-434e-91e0-7fb92f5b4a77/sm/ep6799.jpg","duration":87,"publication_date":"2013-01-30T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-100","changefreq":"weekly","video":[{"title":"2013:E55 - Farcry 3 - Base Jumping","description":"Have you liberated all the bases and are now bored like me Try some base jumping!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8925cdf-17d3-46ba-900f-1c168980bedb/sm/2013912-1449599389964-maxresdefault_(14).jpg","duration":135,"publication_date":"2013-01-30T21:52:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-111","changefreq":"weekly","video":[{"title":"2013:E13 - Madden 2013 Super Bowl Special","description":"Can't wait for the Super Bowl Now you can just skip it because AH brings you a special 6-player Let's Play version of AH Predicts!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf3fe08-83d6-4b37-aaec-fac087a297a0/sm/ep6793.jpg","duration":2659,"publication_date":"2013-01-30T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-anarchy-reigns-path-of-the-weak-inst-anarchy","changefreq":"weekly","video":[{"title":"2013:E39 - Anarchy Reigns - Path of the Weak ins't Anarchy","description":"Me(Jake) and Matt show you that the grapple move is actual the throw move. So just run up to 30 enemies and keep pressing \"B\". You should just get this by playing through the game. And by you should, you will get this achievement by playing.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-anarchy-reigns-path-of-the-weak-inst-anarchy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6290a9a6-2500-45d0-85cc-26bcbc5683a6/sm/2013912-1449599361782-maxresdefault_(13).jpg","duration":74,"publication_date":"2013-01-30T20:21:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-anarchy-reigns-backyard-barbeque-with-anarchy","changefreq":"weekly","video":[{"title":"2013:E38 - Anarchy Reigns - Backyard Barbeque (With Anarchy)","description":"Me (Jake) and my Best Buddy Matt take you into the backyard and grill up some bad guys. How many do we grill up you say We fry up 50 baddies with the flying platform, Cause we Know how to throw a Backyard Barbeque With Anarchy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-anarchy-reigns-backyard-barbeque-with-anarchy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f7088ff-be75-4ef4-bf2a-acc85ceadda0/sm/2013912-1449599338573-maxresdefault_(12).jpg","duration":96,"publication_date":"2013-01-30T19:40:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trash-em-while-theyre-out","changefreq":"weekly","video":[{"title":"2013:E37 - Trash em while they're out","description":"coolbbrah shows you how to get the Trash em While They're Out","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trash-em-while-theyre-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abf8aaa7-52e3-4f7e-b3e0-0f83a6d9e59e/sm/2013912-1449598967091-maxresdefault_(11).jpg","duration":52,"publication_date":"2013-01-30T18:16:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-dead-letters-part-2","changefreq":"weekly","video":[{"title":"2013:E36 - Far Cry 3 - Dead Letters Part 2","description":"Dead Letters achievement in Far Cry 3(2/2)\r\nCollect all of the 'Lost Letters'.\r\nUsername:DanielPoe","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-dead-letters-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b99658ab-afd3-4646-8dd7-ca434a428465/sm/2013912-1449598941904-maxresdefault_(10).jpg","duration":283,"publication_date":"2013-01-30T00:18:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-dead-letters-part-1","changefreq":"weekly","video":[{"title":"2013:E35 - Far Cry 3 - Dead Letters Part 1","description":"Dead Letters achievement in Far Cry 3(1/2)\r\nCollect all of the 'Lost Letters'.\r\nUsername:DanielPoe","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-dead-letters-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fad1ed76-cf40-4d45-9abb-d3445fb8eb36/sm/2013912-1449598907945-maxresdefault_(9).jpg","duration":269,"publication_date":"2013-01-29T23:59:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-barcelona-vs-real-madrid-copa-del-ray-leg-1","changefreq":"weekly","video":[{"title":"2013:E34 - CH Predicts: Barcelona vs Real Madrid (Copa Del Ray Leg 1)","description":"While simulating the midweek Copa Del Ray clash between Barcelona and Real Madrid, Chad complains about time mechanics and Ben says \"D\" one too many times.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-barcelona-vs-real-madrid-copa-del-ray-leg-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1670d8f5-1d35-4069-b9bc-14fd8b69a11b/sm/2013912-1449598880778-maxresdefault_(8).jpg","duration":161,"publication_date":"2013-01-29T23:46:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-99","changefreq":"weekly","video":[{"title":"2013:E54 - Just Cause 2 - Propane Rocket Rodeo","description":"Kraken shows you charming fucks how to travel to space on a budget and his awesome fairy flips of death.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6017a9de-e993-4a10-8f34-4466975d6f60/sm/2013912-1449598847808-maxresdefault_(7).jpg","duration":142,"publication_date":"2013-01-29T23:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-98","changefreq":"weekly","video":[{"title":"2013:E53 - Minecraft - Explosivo?","description":"A things to do in Minecraft in which I made a player launcher which can be used in a variety of ways ; who can go highest, different pads different scores, land in the hole first.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f6ec0aa-6b43-4583-9c95-3fd9b816db0a/sm/2013912-1449598821501-maxresdefault_(6).jpg","duration":82,"publication_date":"2013-01-29T21:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-21","changefreq":"weekly","video":[{"title":"2013:E5 - Call of Duty 2","description":"Jack and Geoff talk about one of the biggest launch titles for the Xbox 360, Call of Duty 2!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04d2e46d-e3c4-4bd2-93a7-709e4136e60e/sm/ep6761.jpg","duration":213,"publication_date":"2013-01-29T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-21","changefreq":"weekly","video":[{"title":"2013:E5 - Trials Files #41","description":"Geoff and Jack take a look at a crazy dune buggy in Trials Evolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/302fd27d-7f01-48b4-aaef-2a8decabc334/sm/ep6760.jpg","duration":136,"publication_date":"2013-01-29T19:29:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-14","changefreq":"weekly","video":[{"title":"2013:E12 - RvB Easter Egg Number 7","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/913d3b28-5e18-4f55-8941-3693b0642a83/sm/ep6759.jpg","duration":71,"publication_date":"2013-01-29T17:42:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-20","changefreq":"weekly","video":[{"title":"2013:E4 - Week #148","description":"Jack and Geoff and the boys are here with another week's worth of gaming goodness from Halo to Assassin's Creed and back. Also, don't forget to check out our deal with GameFly! Go to http://www.gamefly.com/AH for more info. And buy our Achievement Hunter shirts at http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69d0fd14-4fec-4ea3-9d2d-a177d8c0e7dc/sm/ep6754.jpg","duration":230,"publication_date":"2013-01-28T23:04:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-97","changefreq":"weekly","video":[{"title":"2013:E52 - Minecraft - Change Names","description":"HaxtonCo showing you have to give shout outs the right way. \nShout out to Ray by the way","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b97f8f46-2dee-4e30-8148-9bc72a6fc5b6/sm/2013912-1449598786099-maxresdefault_(5).jpg","duration":86,"publication_date":"2013-01-28T22:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-73","changefreq":"weekly","video":[{"title":"2013:E12 - Hawken","description":"This week AH gets some hot mech on mech action in Hawken! It's free to play so sign up now here:\n\nhttp://bit.ly/Hawken_RoosterTeeth","player_loc":"https://roosterteeth.com/embed/lets-play-2013-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b3d200e-7281-4564-829a-a50b57c84301/sm/ep6745.jpg","duration":2027,"publication_date":"2013-01-28T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-96","changefreq":"weekly","video":[{"title":"2013:E51 - Minecraft - Block Gulch","description":"In this video I (SuperWiziK) will be touring you around my Blood Gulch remake for Capture the Tower on Minecraft 360 edition, this is my first Communtiy Hunter Channel and hope you all like it!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5904f3cc-6004-4466-ae31-3dfb4a650656/sm/2013912-1449598749494-maxresdefault_(4).jpg","duration":257,"publication_date":"2013-01-28T20:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-34","changefreq":"weekly","video":[{"title":"2013:E10 - FTL: Faster Than Light","description":"XPatientZero takes a look at Faster Than Light while slowly venting the air from the ship","player_loc":"https://roosterteeth.com/embed/this-is-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07696ebd-d297-4310-867c-bd3374d29069/sm/2013912-1449598723996-maxresdefault_(3).jpg","duration":301,"publication_date":"2013-01-28T20:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-95","changefreq":"weekly","video":[{"title":"2013:E50 - Minecraft - Quest for the Tower","description":"THERIGBOSS here with a simple custom game in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bb880ca-5613-47c5-8f52-03934fbdebf8/sm/2013912-1449598693831-maxresdefault_(2).jpg","duration":166,"publication_date":"2013-01-28T20:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-build-minecraft-sticky-piston-door","changefreq":"weekly","video":[{"title":"2013:E33 - How to build.. Minecraft - Sticky Piston Door","description":"How to build a Piston door in minecraft in its simplest form.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-build-minecraft-sticky-piston-door","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51c41ae7-ce2d-40cb-bcd8-fda78d2e7031/sm/2013912-1449598665154-maxresdefault_(1).jpg","duration":134,"publication_date":"2013-01-28T19:44:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-19","changefreq":"weekly","video":[{"title":"2013:E4 - Let's Play Far Cry 3 Part 6","description":"The final chapter of the Far Cry 3 Let's Play! Gavin, just work awkwardly in the background.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ffdfb3a-28b6-47b9-b945-09a4627555cb/sm/ep6740.jpg","duration":94,"publication_date":"2013-01-28T17:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-dont-break-the-ice","changefreq":"weekly","video":[{"title":"2013:E32 - Game Night: Halo 4 - Don't Break The Ice","description":"Geoff and Caleb check out \"Don't Break The Ice\" in Halo 4 this week in Game Night!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-dont-break-the-ice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd6cfa92-27c4-4ad6-93a9-6673f1eb4929/sm/ep6736.jpg","duration":66,"publication_date":"2013-01-25T19:27:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-66","changefreq":"weekly","video":[{"title":"2013:E11 - Minecraft Episode 35 - Potions","description":"Geoff, Jack, Michael, Gavin, Ray and Ryan race to make a potion in Achievement-Ville. Sounds simple enough right WRONG.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc7430ad-79b7-4332-8d92-bf4620cbf7e2/sm/ep6735.jpg","duration":2286,"publication_date":"2013-01-25T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-15","changefreq":"weekly","video":[{"title":"2013:E4 - Volume 123","description":"Jack and Geoff continue to laugh at the misfortunes of others in this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20d9e344-9ad3-4b66-b1dc-3f266705d072/sm/ep6734.jpg","duration":256,"publication_date":"2013-01-25T16:35:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-17","changefreq":"weekly","video":[{"title":"2013:E4 - Cassie's Animal Sounds","description":"This week on Rage Quit, Michael takes a casual stroll down to the farm in the Xbox Live Indie Game, Cassie's Animal Sounds. There's cows, and spiders, and dragons, oh my!","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07017d4d-cfe8-4398-8ad9-56b4f9ae65df/sm/ep6733.jpg","duration":250,"publication_date":"2013-01-25T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-13","changefreq":"weekly","video":[{"title":"2013:E4 - Trials PIG #41","description":"Michael and Gavin has it out in Trials Evolution. Come for the motorcycles, stay for the slapping.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8155ffbc-2790-455f-a05c-a0c68bfe6515/sm/ep6732.jpg","duration":391,"publication_date":"2013-01-24T23:52:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-94","changefreq":"weekly","video":[{"title":"2013:E49 - Minecraft - Fire in the Floorboards","description":"AxialMatt and xBRITxHyBriD bring a way the help your friends heat up their homes....they may want to remodel accordingly","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b359bd71-b8c2-45e0-8698-8a393fd687f8/sm/2013912-1449598639854-maxresdefault.jpg","duration":185,"publication_date":"2013-01-24T22:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-93","changefreq":"weekly","video":[{"title":"2013:E48 - Just Cause 2 - Burnout?","description":"My first video! I found out you can replicate Burnout in Just Cause 2!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/771f8ae2-5816-4be0-a7e8-8bd99af43fa3/sm/2013912-1449598601756-maxresdefault_(20).jpg","duration":209,"publication_date":"2013-01-24T22:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-knicks-vs-celtics-nba-2013","changefreq":"weekly","video":[{"title":"2013:E31 - CH Predicts: Knicks vs Celtics","description":"Ben and Chad make one too many Honey Nut Cheerio jokes as they simulate the TNT Thursday Night showdown between the New York Knicks and the Boston Celtics.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-knicks-vs-celtics-nba-2013","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e89d2221-1bb3-414a-b2f6-1a5316c671ab/sm/2013912-1449598574725-maxresdefault_(19).jpg","duration":140,"publication_date":"2013-01-24T21:18:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-2012","changefreq":"weekly","video":[{"title":"2012:E13 - Best fails of 2012","description":"Geoff and Jack take a look at a collection of the best fails of 2012!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ac670bf-4da0-4c47-8cbf-c95e64884a59/sm/ep6728.jpg","duration":353,"publication_date":"2013-01-23T23:35:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-15","changefreq":"weekly","video":[{"title":"2013:E47 - Minecraft - Warlords","description":"Geoff and Gavin pit Jack, Michael, Ray, and Ryan against one another in a perfectly recreated version (sort of) of the Atari arcade classic, Warlords. Ready...aim...FIRE!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0e349c9-494c-4fad-b612-aff3149f878a/sm/ep6727.jpg","duration":819,"publication_date":"2013-01-23T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-12","changefreq":"weekly","video":[{"title":"2013:E4 - Halo HORSE #111","description":"In today's episode of Achievement PIG, Ray takes on Ryan in a battle of the Rs. Who will be the WINNERRRRRRRR","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78b1149e-ee26-4552-949f-cd7939903ca3/sm/ep6726.jpg","duration":239,"publication_date":"2013-01-23T23:02:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-6","changefreq":"weekly","video":[{"title":"2013:E10 - Nuketown 115 Song Easter Egg","description":"Ray and Geoff show you how to find the \"115 Song Easter Egg\" in Call of Duty: Black Ops 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1635aa67-bc81-4c7b-829c-210a5ba4a0c6/sm/ep6725.jpg","duration":113,"publication_date":"2013-01-23T19:20:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-56","changefreq":"weekly","video":[{"title":"2013:E10 - Dead Space 3 Demo","description":"Jack and Michael jump in the cooperative demo of Dead Space 3 and slay some Necromorphs. Join Isaac and Carver in a cold, cold world.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f3da6b4-105f-4591-a20c-8b6aeccd49ec/sm/ep6723.jpg","duration":1380,"publication_date":"2013-01-23T16:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-johnny-carnage","changefreq":"weekly","video":[{"title":"2013:E30 - Indie Night - Johnny Carnage","description":"Hightower and AxialMatt fight alien-skeleton things to talk about Johnny Carnage!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-johnny-carnage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/817bd58f-1f15-4f99-88bb-2fa18c00bdb4/sm/2013912-1449598460384-maxresdefault_(18).jpg","duration":170,"publication_date":"2013-01-23T00:25:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-33","changefreq":"weekly","video":[{"title":"2013:E9 - Monopoly Streets","description":"Hightower and AxialMatt take a look at an awesome video game version of Monopoly!","player_loc":"https://roosterteeth.com/embed/this-is-2013-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":381,"publication_date":"2013-01-23T00:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-89","changefreq":"weekly","video":[{"title":"2013:E46 - Kinect Adventures - Getting Adult","description":"Hide yo wife, hide yo kids, CraigMac and Moshupey are about to do terrible things to their kinect.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0218418-ab50-44de-8e85-11bea530ae6d/sm/2013912-1449598400067-maxresdefault_(17).jpg","duration":108,"publication_date":"2013-01-23T00:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-90","changefreq":"weekly","video":[{"title":"2013:E45 - Minecraft - The Duel!","description":"This will teach you the mini game in minecraft called \"The Duel!\" Can you beat the otther opponent and win the tower of pimps","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/759407da-06f7-4bae-803d-15303e6c5c77/sm/2013912-1449598225856-maxresdefault_(16).jpg","duration":153,"publication_date":"2013-01-22T23:23:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-91","changefreq":"weekly","video":[{"title":"2013:E44 - Minecraft - Annoyance Machine","description":"UndeadKieran is on the PC (other platforms are available) to show you how to annoy your friends in Minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ae94cd1-2b49-4a85-a4ed-137eb0172601/sm/2013912-1449598177309-maxresdefault_(15).jpg","duration":104,"publication_date":"2013-01-22T23:07:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-92","changefreq":"weekly","video":[{"title":"2013:E43 - Minecraft - Minefield","description":"Bradel shows you a minefield course in Minecraft xbox edition.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15f63614-54e0-4c0b-b660-a5422277f2b4/sm/2013912-1449598151934-maxresdefault_(14).jpg","duration":122,"publication_date":"2013-01-22T22:56:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-10","changefreq":"weekly","video":[{"title":"2013:E4 - Assassin's Creed","description":"Jack and Geoff go back in time...kinda... to learn Five Facts about Assassin's Creed!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/025c5b7c-c685-4b19-b796-60dc0598cfd8/sm/ep6711.jpg","duration":367,"publication_date":"2013-01-22T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hitman-absolution-first-contract-and-competitive-spirit","changefreq":"weekly","video":[{"title":"2013:E29 - Hitman Absolution - First Contract and Competitive Spirit","description":"Bradel shows you how to get the two easiest achievements in Hitman Absolution.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hitman-absolution-first-contract-and-competitive-spirit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/544d19db-7df1-4ae5-be6b-58c5332b5543/sm/2013912-1449598124659-maxresdefault_(13).jpg","duration":122,"publication_date":"2013-01-22T22:13:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-12","changefreq":"weekly","video":[{"title":"2013:E4 - Trials Files #40","description":"Geoff and Jack take a look at a South Park themed map in Trials Evolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/966cb429-9bed-4554-886a-35a51cbbeebf/sm/ep6709.jpg","duration":86,"publication_date":"2013-01-22T22:02:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-88","changefreq":"weekly","video":[{"title":"2013:E42 - Hitman Absolution - Disco Murder","description":"This is a things to do in Hitman absolution, it is called disco murder, I am sure Gavin will enjoy it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":117,"publication_date":"2013-01-22T21:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-2","changefreq":"weekly","video":[{"title":"2013:E8 - RvB Easter Egg Number 6","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51116993-6b8d-4af9-a8fa-b3a679d64129/sm/ep6699.jpg","duration":110,"publication_date":"2013-01-22T19:40:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-7","changefreq":"weekly","video":[{"title":"2013:E3 - Week #147","description":"The boys are back with more goodies this week. Don't forget to grab a Cakeless shirt or a new Ray's Achieve shirt at the Rooster Teeth store: http://www.roosterteeth.com/store and download Hawken to play with us later this week: http://bit.ly/Hawken_RoosterTeeth","player_loc":"https://roosterteeth.com/embed/ahwu-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb654773-fe57-4157-b570-f26ec55793ca/sm/ep6698.jpg","duration":278,"publication_date":"2013-01-21T22:21:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-36","changefreq":"weekly","video":[{"title":"2013:E9 - League of Legends","description":"AH takes on League of Legends... Team Lads VS Team Gents! Next stop... the pro circuit.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec70d212-791d-4a11-ae8a-a2e5d89bc294/sm/ep6697.jpg","duration":2223,"publication_date":"2013-01-21T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-8","changefreq":"weekly","video":[{"title":"2013:E3 - DeathCraft Part II","description":"With so much wet bread and busted brains, Gavin has plenty to throw up about.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c95d5092-2617-4cde-bdd3-86d488230f35/sm/ep6696.jpg","duration":134,"publication_date":"2013-01-21T16:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-man-with-guts-and-honor-guide","changefreq":"weekly","video":[{"title":"2013:E1903 - A Man With Guts And Honor Guide","description":"Ray and Michael show you how to unlock the \"A Man With Guts And Honor\" achievement in DmC: Devil May Cry for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-man-with-guts-and-honor-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9517f3c1-ba91-46b9-8c3a-d9b3c68bc843/sm/ep6694.jpg","duration":137,"publication_date":"2013-01-21T15:53:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-28","changefreq":"weekly","video":[{"title":"2013:E8 - Minecraft Episode 34 - Pig Olympics","description":"Geoff, Jack, Gavin, Michael and Ray play Ryan's amazing Pig Olympics in Minecraft on the PC! The Tower of Pimps is of course up for grabs.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ace6897-4ae1-4cd9-b017-dd7ef709e629/sm/ep6691.jpg","duration":2518,"publication_date":"2013-01-19T00:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-7","changefreq":"weekly","video":[{"title":"2013:E3 - Volume 122","description":"Jack and Geoff hit up the funny in this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e24e82b8-c7fe-4c1c-92e4-ba545a957378/sm/ep6690.jpg","duration":227,"publication_date":"2013-01-18T22:39:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-jurassic-park","changefreq":"weekly","video":[{"title":"2013:E28 - Game Night: Halo 4 - Jurassic Park","description":"Geoff and Caleb take a little trip to Dinosaur Island in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-jurassic-park","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ff09e9e-dce5-4655-bb86-de351dda1f84/sm/ep6689.jpg","duration":89,"publication_date":"2013-01-18T20:44:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-where-does-the-time-go-looks-like-its-your-lucky-day","changefreq":"weekly","video":[{"title":"2013:E27 - Where does the time go?, Looks like it's your lucky day","description":"Ray and Michael show you how to get the \"Where does the time go\" and \"Looks like it's your lucky day\" achievements in DmC: Devil May Cry for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-where-does-the-time-go-looks-like-its-your-lucky-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e05b7462-9918-4bec-af3e-64fca7f36f98/sm/ep6688.jpg","duration":113,"publication_date":"2013-01-18T17:35:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-nfc-championship-49ers-vs-falcons","changefreq":"weekly","video":[{"title":"2013:E26 - CH Predicts: NFC Championship (49ers vs Falcons)","description":"Chad and Caleb remark on the prowess of Matt Ryan while they simulate the NFC Championship match between the San Francisco 49ers and the Atlanta Falcons.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-nfc-championship-49ers-vs-falcons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e84922aa-a8b5-4387-be87-db0e41fdcc9b/sm/2013912-1449598053041-maxresdefault_(12).jpg","duration":164,"publication_date":"2013-01-18T06:09:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-afc-championship-ravens-vs-patriots","changefreq":"weekly","video":[{"title":"2013:E25 - CH Predicts: AFC Championship (Ravens vs Patriots)","description":"Ben and Chad quabble about Billy Cundiff while predicting the AFC title clash between the Baltimore Ravens and New England Patriots.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-afc-championship-ravens-vs-patriots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e114a79-b3b8-4fe5-bf5f-f89107698c8f/sm/2013912-1449598019463-maxresdefault_(11).jpg","duration":164,"publication_date":"2013-01-18T05:59:02.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-87","changefreq":"weekly","video":[{"title":"2013:E41 - Minecraft - Infestation","description":"AxialMatt and Soothsayer57 bring a way to make your friends home be their worse nightmare. They'll be wishing they had bedbugs by the time you're done...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d57304-b8d9-4d92-a658-d38e984a53ab/sm/2013912-1449597990892-maxresdefault_(10).jpg","duration":144,"publication_date":"2013-01-18T05:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-86","changefreq":"weekly","video":[{"title":"2013:E40 - Minecraft - SkyBlock","description":"SkyBlock is a variant of survival where to try to live on a floating piece of dirt","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20b35b33-f9c6-427e-922d-4e6e85283b45/sm/2013912-1449597964087-maxresdefault_(9).jpg","duration":121,"publication_date":"2013-01-18T05:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-5","changefreq":"weekly","video":[{"title":"2013:E3 - ShellShock 2: Blood Trails","description":"This week on Rage Quit, Michael learns the importance of teamwork in Shell Shock 2: Blood Trails for the Xbox 360. Apparently teamwork means not shooting your allies in the face. Who knew","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac2fce9d-6ad0-4ec7-923e-3e33733f6b45/sm/ep6681.jpg","duration":363,"publication_date":"2013-01-18T05:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-85","changefreq":"weekly","video":[{"title":"2013:E39 - Minecraft - The Snow Man Display","description":"In this things to do, BHDwaffles gets everone into the christmas spirit by playing some minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":120,"publication_date":"2013-01-18T04:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-earn-more-xp","changefreq":"weekly","video":[{"title":"2013:E24 - Halo 4 - Earn more XP","description":"An easy, fun and faster way to earn XP in Halo 4. Do not pay any attention to the british accent.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-earn-more-xp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cd37d50-b220-4762-a140-5457499cd608/sm/2013912-1449597912898-maxresdefault_(8).jpg","duration":165,"publication_date":"2013-01-18T04:26:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-84","changefreq":"weekly","video":[{"title":"2013:E38 - Halo 4 - Mantis Race","description":"Bradel shows you a things to do in Halo 4, the Mantis Race.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60750da4-b4b9-4721-bef5-433e2fdf50ee/sm/2013912-1449597884195-maxresdefault_(7).jpg","duration":75,"publication_date":"2013-01-18T03:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-crimson-dlc-pump-yer-brakes-v2","changefreq":"weekly","video":[{"title":"2013:E23 - Halo 4 - Crimson DLC Pump Yer Brakes v2","description":"Bradel shows you how to get the 'Pump Yer Brakes' achievement in the new Halo 4 Crimson DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-crimson-dlc-pump-yer-brakes-v2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6be673ee-ec94-4c69-924e-2998c9095298/sm/2013912-1449597850787-maxresdefault_(6).jpg","duration":72,"publication_date":"2013-01-18T03:39:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-2","changefreq":"weekly","video":[{"title":"2013:E3 - Trials PIG #40","description":"Jack and Geoff hadn't faced off in Trials in a while, so we put them against each other today to see if Geoff has gotten any better.","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68028fda-5583-466a-9313-dd0aec9e4d1b/sm/ep6668.jpg","duration":335,"publication_date":"2013-01-17T22:25:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-83","changefreq":"weekly","video":[{"title":"2013:E37 - Minecraft - The Game Preserve","description":"crazyshotgun brings you a Things to do in.. Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c13084bd-7c73-4fe4-ab65-3dc062087412/sm/2013912-1449597818322-maxresdefault_(5).jpg","duration":77,"publication_date":"2013-01-17T22:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-82","changefreq":"weekly","video":[{"title":"2013:E36 - Minecraft - Pixel Art","description":"A Things To Do In featuring my first form of pixel art in minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b99eaba1-c1d8-4b36-b2d0-fe58132ba9d5/sm/2013912-1449597781751-maxresdefault_(4).jpg","duration":116,"publication_date":"2013-01-17T21:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-johnny-carnage-1","changefreq":"weekly","video":[{"title":"2013:E22 - Indie Night - Johnny Carnage","description":"Hightower and Axialmatt take a look at Johnny Carnage.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-johnny-carnage-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":204,"publication_date":"2013-01-17T21:16:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-81","changefreq":"weekly","video":[{"title":"2013:E35 - Minecraft - Annoyatron","description":"A non-destructive way to grief your friends.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":114,"publication_date":"2013-01-17T20:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-80","changefreq":"weekly","video":[{"title":"2013:E34 - Minecraft - Obstacle Course","description":"Misterepicsettler (known as TheSettler on the site) shows you a nice, small obstacle course in minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":279,"publication_date":"2013-01-17T19:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-79","changefreq":"weekly","video":[{"title":"2013:E33 - Halo 4 - Halo-Fries","description":"This is a video my friend and I made where we flip a tank and soar to great heights.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":171,"publication_date":"2013-01-17T19:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-borderlands-2-sanctuary-vault-emblems","changefreq":"weekly","video":[{"title":"2013:E21 - Borderlands 2 - Sanctuary Vault Emblems","description":"Are you having trouble finding vault emblems in Sanctuary\r\nThen Abe has got you covered.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-borderlands-2-sanctuary-vault-emblems","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7176d3db-1853-413a-a8d7-6b23e24687cf/sm/2013912-1449597582867-maxresdefault_(3).jpg","duration":129,"publication_date":"2013-01-17T18:50:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-forza-horizon-barn-find-locations","changefreq":"weekly","video":[{"title":"2013:E20 - Forza Horizon - Barn Find Locations","description":"TonySki and OldTex walk you through where to find all 9 of the hidden barn locations in Forza Horizon.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-forza-horizon-barn-find-locations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b854e2d-7eed-4cfc-9553-3aad5538ed37/sm/2013912-1449597553783-maxresdefault_(2).jpg","duration":522,"publication_date":"2013-01-17T18:26:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-43","changefreq":"weekly","video":[{"title":"2013:E3 - Halo HORSE #110","description":"Michael and Ray take their bromance into Halo PIG this week. Who will come out the victor","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/450b459f-41f5-43fa-9e12-957b8df49020/sm/ep6650.jpg","duration":254,"publication_date":"2013-01-16T23:00:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-78","changefreq":"weekly","video":[{"title":"2013:E32 - Far Cry 3 - Triathlon","description":"My name is dvus and this in the Far Cry 3 triathlon. In it you must hang-glide, jet-ski, and then drive yourself to the nearest wildlife then promptly murder it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6022fbb9-72f5-42db-b50b-c47323e17a4e/sm/2013912-1449597501547-maxresdefault_(1).jpg","duration":182,"publication_date":"2013-01-16T22:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-77","changefreq":"weekly","video":[{"title":"2013:E31 - Far Cry 3 - Unconventional Hunting","description":"Killing animals with uJames in ridiculous ways in the name of Hunting","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8cf8392-15aa-4622-9307-ef4e483d2490/sm/2013912-1449597472491-maxresdefault.jpg","duration":149,"publication_date":"2013-01-16T22:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-rock-always-wins-v2","changefreq":"weekly","video":[{"title":"2013:E19 - Far Cry 3 - Rock Always Wins v2","description":"OneAngryPandas shows us what the rock is cooking.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-rock-always-wins-v2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0af69652-66d9-41d9-ac8d-7658a00f6a29/sm/2013912-1449597441529-1.jpg","duration":79,"publication_date":"2013-01-16T22:04:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-76","changefreq":"weekly","video":[{"title":"2013:E30 - Call of Duty: Black Ops II - Frisbee","description":"Today, Daniel shows you how to engage in the ever so amazing sport of Frisbee in Call of Duty Black Ops 2","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bce613c-5f37-4a0b-a32d-8a7c7105fa98/sm/2013912-1449187046635-8.jpg","duration":73,"publication_date":"2013-01-16T21:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-75","changefreq":"weekly","video":[{"title":"2013:E29 - Minecraft - Super Bowl","description":"Dean shows you how to play football. The right way!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eaa75ed-82f2-41a3-909b-2c8ea88e7c9c/sm/2013912-1449187010918-7.jpg","duration":112,"publication_date":"2013-01-16T20:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-74","changefreq":"weekly","video":[{"title":"2013:E28 - Minecraft - AH Skins","description":"This is what happens when I get bored after watching Achievement Hunter play minecraft for 6 hours.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f78d1c97-5821-4838-87a1-8ff63d5519e8/sm/2013912-1449186977426-6.jpg","duration":159,"publication_date":"2013-01-16T20:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-73","changefreq":"weekly","video":[{"title":"2013:E27 - Minecraft - Bomberman","description":"RipThanWinkle shows you the fun classic mini-game 'Bomberman' recreated in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66f21113-d72c-45e4-9d30-6d6ccabd80af/sm/2013912-1449186937223-5.jpg","duration":113,"publication_date":"2013-01-16T19:52:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-72","changefreq":"weekly","video":[{"title":"2013:E26 - Minecraft - Slendercraft","description":"A gametype and map for Minecraft; good for a medium-sized LLLLLLLLET'S PLAY. No achievement is actually attached. Credit to JesseTheEternal for the use of his capture card!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":305,"publication_date":"2013-01-16T19:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-71","changefreq":"weekly","video":[{"title":"2013:E25 - Minecraft - Mario Chase!","description":"Metlover completely rips off another game from another console! Fun! Download link:http://www.planetminecraft.com/project/mario-chase...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03dd2f38-c6d3-44c0-940c-7884dbf3c9ff/sm/2013912-1449186845306-4.jpg","duration":408,"publication_date":"2013-01-16T19:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kingdoms-of-amalur-reckoning-juggler-reckoning-rampage","changefreq":"weekly","video":[{"title":"2013:E18 - Kingdoms Of Amalur: Reckoning - Juggler, Reckoning Rampage","description":"Chad and Preston show you how to get 2 achievements in the game Kingdoms Of Amalur: The Reckoning.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kingdoms-of-amalur-reckoning-juggler-reckoning-rampage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e35084a-9b4b-4c8d-b33c-fa72866252d4/sm/2013912-1449186813795-3.jpg","duration":125,"publication_date":"2013-01-16T18:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-192","changefreq":"weekly","video":[{"title":"2013:E7 - Far Cry 3 Episode 6","description":"After their long and perilous journey, the lads finally play the 6th and final level of the Co-op campaign in Far Cry 3 for the Xbox 360. It's time to bust out the Santana DVX and celebrate! Ray will have water.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-192","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05c1738c-85b2-40ca-baed-a7ac7ed1c474/sm/ep6630.jpg","duration":2073,"publication_date":"2013-01-16T18:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dishonored-headhunter-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E1871 - Dishonored - Headhunter Achievement Guide","description":"Heyo! tap0zone showing you how to get the Headhunter achievement in the Dishonored DLC Dunwall City Trials","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dishonored-headhunter-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":158,"publication_date":"2013-01-16T18:18:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-its-only-the-rain","changefreq":"weekly","video":[{"title":"2013:E17 - DmC: Devil May Cry - It's only the rain Guide","description":"Ryan (rsix11) gets the \"It's Only the Rain\" achievement in the first level of DmC: Devil May Cry","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-its-only-the-rain","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":114,"publication_date":"2013-01-16T17:48:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-42","changefreq":"weekly","video":[{"title":"2013:E24 - Minecraft - Dig Dug","description":"Geoff teaches Gav how to play Dig Dug in the wonderful blocky world of Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c02e1cef-160c-4210-a56f-2c9c582b39fd/sm/ep6620.jpg","duration":148,"publication_date":"2013-01-16T15:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-42","changefreq":"weekly","video":[{"title":"2013:E3 - Trials Files #39","description":"Geoff and Jack fight the zombie horde in Trials Evolition.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0de7b30f-792b-459c-b7e6-d5c4d5838a84/sm/ep6619.jpg","duration":129,"publication_date":"2013-01-15T22:27:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-42","changefreq":"weekly","video":[{"title":"2013:E3 - Portal 2","description":"Jack and Geoff learn five brand spankin' new facts about Portal 2 and discuss some of Sam Raimi's best work.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecf937e0-1c7a-4e99-9dbe-5a5c07e92550/sm/ep6618.jpg","duration":326,"publication_date":"2013-01-15T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-raceway-tour-minecraft-community-map","changefreq":"weekly","video":[{"title":"2013:E1867 - Achievement Raceway Tour - Minecraft Community Map","description":"Gav and Geoff show off some awesome unseen areas of AxialMatt's Achievement Raceway map that was used in Let's Play Minecraft Episode 33.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-raceway-tour-minecraft-community-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/086aecd3-0a42-4c82-aa71-f42055a2ec64/sm/ep6617.jpg","duration":201,"publication_date":"2013-01-15T19:33:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-25","changefreq":"weekly","video":[{"title":"2013:E7 - Old Dante Easter Egg","description":"Ray and Michael show you the Old Dante Easter Egg in Devil May Cry for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d460be-874c-4bc1-be8b-ab74ceaf3174/sm/ep6616.jpg","duration":61,"publication_date":"2013-01-15T19:01:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-39","changefreq":"weekly","video":[{"title":"2013:E2 - Week #146","description":"The boys are back with some goodies! Don't forget to grab Planetside 2 to play along with us at http://bit.ly/Planetside2_RoosterTeeth and Hawken at http://bit.ly/Hawken_RoosterTeeth ANNNNDDDD buy a new \"Going Cakeless\" shirt at http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2013-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab56554c-b733-4536-8d7b-038a816553af/sm/ep6615.jpg","duration":251,"publication_date":"2013-01-14T22:19:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-70","changefreq":"weekly","video":[{"title":"2013:E23 - Halo 4: Blue Rainbows","description":"In this vid, Lukus01 and Semper fi 589 show off their own creation in Halo 4. So if you love creating things in minecraft and also love Halo 4 this creation is for you.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":179,"publication_date":"2013-01-14T21:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-69","changefreq":"weekly","video":[{"title":"2013:E22 - Halo 4 - Superman","description":"I narrate a fun thing to do in Halo 4. I believe I can fly!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23e2116f-b734-499f-856a-b7387ee6cbff/sm/2013912-1449186346969-2.jpg","duration":151,"publication_date":"2013-01-14T19:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-32","changefreq":"weekly","video":[{"title":"2013:E8 - Forza Horizon Rally","description":"TonySki and OldTex talk about the new Forza Horizon Rally expansion and give you a look back on life.\n\n(caleb, Tex in this video has a RT Account, it's OldTex.)","player_loc":"https://roosterteeth.com/embed/this-is-2013-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26d4ab3e-9884-40a4-84da-08dc70b6ed04/sm/2013912-1449186314180-1.jpg","duration":343,"publication_date":"2013-01-14T19:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-36","changefreq":"weekly","video":[{"title":"2013:E2 - Boats","description":"The AH boys get ready for a Minecraft Let's Play with boats. We're goin' nautical, bitches.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd4eb995-6e68-4a54-aefd-e2c620f1b6c0/sm/ep6611.jpg","duration":131,"publication_date":"2013-01-14T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-forza-horizon-harder-driving-guide","changefreq":"weekly","video":[{"title":"2013:E1865 - Forza Horizon - Harder Driving Guide","description":"MintyKiwiCrunch brings you an achievement guide to get the Harder Driving achievement in the new Rally expansion pack for Forza Horizon, as well as a few other goodies.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-forza-horizon-harder-driving-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":276,"publication_date":"2013-01-14T18:45:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-172","changefreq":"weekly","video":[{"title":"2013:E6 - DeathCraft II Part 2","description":"What's better than 4 Achievement Hunters playing this amazing mod How about 6 Achievement Hunters Well... 5 and a half. There were some small technical difficulties with Ray's audio for the first part. For your convenience subtitles have been added with more or less what he said.\n\nGet the mod for yourself here:\nhttp://www.l4dmaps.com/details.phpfile=14983\n\nGreat job by the Mod creators!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/729c1dca-0531-48f9-a727-aafc1a3db726/sm/ep6608.jpg","duration":2110,"publication_date":"2013-01-14T16:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-top-10-playgrounds-in-gaming","changefreq":"weekly","video":[{"title":"2013:E16 - Top 10 Playgrounds in Gaming","description":"2013:E16 - Top 10 Playgrounds in Gaming","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-top-10-playgrounds-in-gaming","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecdedc03-a489-4e7d-8472-427a4991c03c/sm/ep6607.jpg","duration":350,"publication_date":"2013-01-14T16:06:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-40","changefreq":"weekly","video":[{"title":"2013:E2 - Volume 121","description":"Jack and Geoff continue their quest into hilarity! Follow along with them as they laugh and enjoy life!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e7ef299-86d1-490a-8973-cd3bd36216e6/sm/ep6604.jpg","duration":250,"publication_date":"2013-01-11T22:05:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-swat-ctf","changefreq":"weekly","video":[{"title":"2013:E15 - Game Night: Halo 4 - SWAT CTF","description":"Geoff and Caleb show off SWAT CTF on Warlord in this week's Game Night in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-swat-ctf","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc5f24b0-4ccc-4119-aa09-9e65b92fdf43/sm/ep6603.jpg","duration":108,"publication_date":"2013-01-11T21:36:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-168","changefreq":"weekly","video":[{"title":"2013:E5 - Minecraft 33","description":"Geoff, Michael, Gavin, Jack and Ray get their boats on as the compete on Achievement Raceway. \nAxialMatt is the man and built this sweet map for us.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54654699-13ce-4b0c-a8b7-6883a793ca4f/sm/ep6602.jpg","duration":1690,"publication_date":"2013-01-11T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-ravens-vs-broncos","changefreq":"weekly","video":[{"title":"2013:E14 - CH Predicts: Ravens vs Broncos","description":"Ben and Chad talk about Peyton Manning's lack of production in the playoffs and predict the AFC Divisional round match between the Baltimore Ravens and the Denver Broncos.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-ravens-vs-broncos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f5c5765-2bf1-4a42-86b2-4322413bb9cc/sm/2013912-1449186269785-12.jpg","duration":147,"publication_date":"2013-01-11T17:46:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-40","changefreq":"weekly","video":[{"title":"2013:E2 - Dead or Alive Xtreme 2","description":"This week on Rage Quit, Michael hits the beaches in Dead or Alive Xtreme 2 for the Xbox 360. Be warned. Things get extreme.","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27512d5c-8989-4cb2-9e02-077d6f5252d7/sm/ep6600.jpg","duration":329,"publication_date":"2013-01-11T04:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-packers-vs-49ers","changefreq":"weekly","video":[{"title":"2013:E13 - CH Predicts: Packers vs 49ers","description":"Ben and Caleb discuss their ideal Super Bowl matchup while simulating the Divisional round game between the Green Bay Packers and the San Francisco 49ers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-packers-vs-49ers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64df2b9f-c1a7-4d88-9238-88431de22305/sm/2013912-1449186144912-11.jpg","duration":176,"publication_date":"2013-01-11T03:33:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-31","changefreq":"weekly","video":[{"title":"2013:E7 - DmC: Devil May Cry","description":"CmanXP takes you on a preview of the new Devil May Cry coming soon! And the abundance of footage shall be filled with the words \"awesome,\" \"exciting,\" and \"um!\"","player_loc":"https://roosterteeth.com/embed/this-is-2013-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72fd6499-c8c7-42e1-a69b-ac33ba551575/sm/2013912-1449186106588-10.jpg","duration":334,"publication_date":"2013-01-11T03:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-farcry-3-base-island-liberator-and-aftermarket-junkie-guid","changefreq":"weekly","video":[{"title":"2013:E12 - Farcry 3 - Base Island Liberator and Aftermarket Junkie guid","description":"Island Liberator and Aftermarket Junkie guide.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-farcry-3-base-island-liberator-and-aftermarket-junkie-guid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78873a04-082f-4abe-b396-5423f399f5e3/sm/2013912-1449184845736-9.jpg","duration":202,"publication_date":"2013-01-11T02:59:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-68","changefreq":"weekly","video":[{"title":"2013:E21 - Mincraft - The Gavin","description":"We channel Gavin in this Things to do in.. Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96e547d2-417e-450f-9c6d-3a95a8de7e01/sm/2013912-1449184809041-8.jpg","duration":94,"publication_date":"2013-01-11T02:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-67","changefreq":"weekly","video":[{"title":"2013:E20 - Far Cry 3 - Trifectenna","description":"Jerem6401 and COPYxKAT attempt a made up achievement in Far Cry 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f5a090c-c79a-4419-ab9e-d284721bad42/sm/2013912-1449184776870-7.jpg","duration":295,"publication_date":"2013-01-11T02:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-66","changefreq":"weekly","video":[{"title":"2013:E19 - Grand Theft Auto IV - #YOLO","description":"ChrisHammack shows everyone how to have fun in an old way but new at the same time....... Have fun!!!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fedb46a-6746-4731-b931-50400c3f3662/sm/2013912-1449184742767-6.jpg","duration":90,"publication_date":"2013-01-11T02:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-65","changefreq":"weekly","video":[{"title":"2013:E18 - Minecraft - Gladiators!","description":"Gage(Changoblanco) Shows you how to have Gladiators Without Joaquin Phoenix. O yea it's also in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e879c99-6942-4542-b8b5-0d46885d7ee6/sm/2013912-1449184706462-5.jpg","duration":114,"publication_date":"2013-01-11T02:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-50-cent-blood-on-the-sand-3-achievments","changefreq":"weekly","video":[{"title":"2013:E11 - 50 Cent: Blood on the Sand - 3 Achievments","description":"Junglecatz81 giving the people what they want.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-50-cent-blood-on-the-sand-3-achievments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fda0bb63-71fa-4f9a-b5da-61aa743fc938/sm/2013912-1449184670511-4.jpg","duration":192,"publication_date":"2013-01-11T02:13:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-30","changefreq":"weekly","video":[{"title":"2013:E6 - Pid","description":"If you ever want to know what Pid is look no further, for I talk about it for three minutes.","player_loc":"https://roosterteeth.com/embed/this-is-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0003d2eb-567d-4954-b709-e9791db14307/sm/2013912-1449184632509-3.jpg","duration":207,"publication_date":"2013-01-11T01:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-30","changefreq":"weekly","video":[{"title":"2013:E2 - Trials PIG #39","description":"Gavin and Geoff face off in Trials Evolution to see who will be the dominant male. Geoff lost to Gavin in Halo PIG yesterday, will he avenge his defeat Watch and learn!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a76dddba-6ec0-48b1-93af-ca1b3dc7dafa/sm/ep6584.jpg","duration":337,"publication_date":"2013-01-10T22:58:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dark-souls-reach-anor-londo-achievement-guide","changefreq":"weekly","video":[{"title":"2013:E1856 - Dark Souls - Reach Anor Londo Achievement Guide","description":"Ritcheyz is back to help you kill the Iron Golem on top of Sen's Fortress so you can make it to Anor Londo. Gorgeous view!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dark-souls-reach-anor-londo-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":162,"publication_date":"2013-01-10T20:39:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-29","changefreq":"weekly","video":[{"title":"2013:E5 - Guardians of Middle-Earth","description":"Showing you the ropes of Middle Earth!","player_loc":"https://roosterteeth.com/embed/this-is-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06d19ddb-8465-4fa0-9990-ea962a0e6944/sm/2013912-1449184398809-2.jpg","duration":218,"publication_date":"2013-01-10T20:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-64","changefreq":"weekly","video":[{"title":"2013:E17 - Minecraft - Obsidian Maker","description":"I am going to show you how to build an obsidian maker in the XBOX360 version of minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f0f6bd3-66a5-4c23-8163-a3da0135e232/sm/2013912-1449184360345-1.jpg","duration":169,"publication_date":"2013-01-10T19:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-142","changefreq":"weekly","video":[{"title":"2013:E4 - Far Cry 3 Episode 5","description":"The lads press on as they barrel through the 5th level of the Co-op campaign in Far Cry 3 for the Xbox 360. See the dramatic conclusion next week!","player_loc":"https://roosterteeth.com/embed/lets-play-2013-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c53ba601-fadc-4a5e-9cc8-06cf14bea763/sm/ep6576.jpg","duration":1634,"publication_date":"2013-01-10T00:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-29","changefreq":"weekly","video":[{"title":"2013:E2 - Halo HORSE #109","description":"Gavin and Geoff face off in this brand spankin' new episode of Halo PIG! Will Geoff shut down Gavin or will the Brit get lucky Watch and find out!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39e7417e-b4b5-41d1-8309-e33fe1be1ea0/sm/ep6575.jpg","duration":405,"publication_date":"2013-01-09T21:31:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-63","changefreq":"weekly","video":[{"title":"2013:E16 - Minecraft - Mining Madness","description":"AxialMatt and CombatWombat bring a game in Minecraft that makes collecting materials even more fun and addicting then it already is...Sorry we're only fueling your addiction","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efdb5f70-b936-4843-bdf5-fca77ddd6d0b/sm/2013912-1449184318924-9.jpg","duration":190,"publication_date":"2013-01-09T21:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-62","changefreq":"weekly","video":[{"title":"2013:E15 - Minecraft - Journey to the T.O.P.","description":"A Let's Play map made by Shaydin in Minecraft XBL Edition","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":117,"publication_date":"2013-01-09T21:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-34","changefreq":"weekly","video":[{"title":"2013:E14 - Minecraft - Rain of Fire","description":"Geoff, Gav and the lads show you a new game of chaos called Rain of Fire in a let's play style. Somebody get a fire extinguisher!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80b046b4-10f8-465d-ab19-b9e1511de759/sm/ep6572.jpg","duration":437,"publication_date":"2013-01-09T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-61","changefreq":"weekly","video":[{"title":"2013:E13 - Minecraft - Zombie Surprise","description":"I bring you a things to do in: Minecraft. So enjoy, then hope fully you can scare you're friends with this little bit.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":88,"publication_date":"2013-01-09T21:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-60","changefreq":"weekly","video":[{"title":"2013:E12 - Minecraft - Halls of Obsidian","description":"Navigate through the Halls of Obsidian in order to win the Tower of Pimps. But be warned, traps lurk within these halls, and players can kill each other.\n\nThe Map was made by Mickin29662. The video and commentary was made by Numbuh23.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ce0c516-01e0-462d-b2a6-be9a2a357604/sm/2013912-1449184156110-8.jpg","duration":112,"publication_date":"2013-01-09T20:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tour-of-achievement-city","changefreq":"weekly","video":[{"title":"2013:E1849 - Tour of Achievement City","description":"Gav and Geoff fly through achievement city and show you what it looks like as of the beginning on 2013. So many memories!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tour-of-achievement-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bc70a2a-bc67-4375-9afc-e966aeb5227e/sm/ep6565.jpg","duration":271,"publication_date":"2013-01-09T20:09:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-59","changefreq":"weekly","video":[{"title":"2013:E11 - Minecraft - SLENDER","description":"In this things to do, BHDwaffls brins the Slenderman experience life in minecraft so be prepared to wet your pants.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":178,"publication_date":"2013-01-09T19:50:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-58","changefreq":"weekly","video":[{"title":"2013:E10 - RollerCoaster Tycoon 3 - Skittles","description":"Hightower and xBRITxHyBriD show you a fun thing to do in RollerCoaster Tycoon 3!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aad7fac7-8127-4fc3-8291-b75d8f52e9ce/sm/2013912-1449184055074-7.jpg","duration":129,"publication_date":"2013-01-09T19:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-doppelganger-walkthrough","changefreq":"weekly","video":[{"title":"2013:E10 - Far Cry 3 - Doppelganger Walkthrough","description":"Hey guys Andonis here showing you how to get through Doppelganger in Far Cry 3, I know me and a few of my buddies had trouble with it the first time through, so heres the quickest way through.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-doppelganger-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c08accd-556d-46ab-822c-0f0418c372fa/sm/2013912-1449184015418-6.jpg","duration":182,"publication_date":"2013-01-09T18:40:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-28","changefreq":"weekly","video":[{"title":"2013:E2 - Dead Space","description":"Jack and Michael learn Five Facts about the awesome survival horror title Dead Space!","player_loc":"https://roosterteeth.com/embed/five-facts-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a76fa9b5-3f61-4a23-adb5-a79df680be61/sm/ep6551.jpg","duration":326,"publication_date":"2013-01-09T01:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-december-2012","changefreq":"weekly","video":[{"title":"2012:E12 - Best fails of December 2012","description":"Last Fails of the Month for 2012! Be sure to check back next week for Fails Of the Year!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-december-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc0948d-8b98-4477-ad01-96dd67bdc92c/sm/ep6550.jpg","duration":196,"publication_date":"2013-01-08T22:36:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-57","changefreq":"weekly","video":[{"title":"2013:E9 - Forza Motorsport 4","description":"GameHunTerFrEaK shows off his chaotic side in a one-manned destruction derby","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b6127cd-af27-45e7-bd89-e016a7ca2b35/sm/2013912-1449183980163-5.jpg","duration":49,"publication_date":"2013-01-08T21:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-28","changefreq":"weekly","video":[{"title":"2013:E4 - Devil May Cry 4","description":"vgun47 and Hightower take a swing with oversized swords and glowing demon arms. Tears are optional.","player_loc":"https://roosterteeth.com/embed/this-is-2013-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18695e09-5de4-4f63-ad75-2de987ba2ba2/sm/2013912-1449183942391-4.jpg","duration":368,"publication_date":"2013-01-08T21:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-27","changefreq":"weekly","video":[{"title":"2013:E3 - The Binding Of Isaac","description":"Alex or 123algae from the site shows off The Binding Of Isaac in preparation for the rebirth version coming out at the end of the month.","player_loc":"https://roosterteeth.com/embed/this-is-2013-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4af7974-0707-4a95-a0d9-0c861792f9f1/sm/2013912-1449183902762-3.jpg","duration":280,"publication_date":"2013-01-08T21:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-how-to-find-a-saddle-easy","changefreq":"weekly","video":[{"title":"2013:E9 - Minecraft - How To: Find A Saddle (Easy)","description":"Guide for a simple trick to help you find a saddle for the \"When Pigs Fly\" achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-how-to-find-a-saddle-easy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4197c88-b689-4107-a40e-c55e98905318/sm/2013912-1449183862757-2.jpg","duration":115,"publication_date":"2013-01-08T21:01:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-56","changefreq":"weekly","video":[{"title":"2013:E8 - Minecraft - Wait, What? Boom","description":"Jam0man shows CraigMac some good ol' fashioned achievement hunter hospitality while playing Minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8623e389-75aa-41bf-bb96-cfd45beed180/sm/2013912-1449183826939-1.jpg","duration":140,"publication_date":"2013-01-08T20:53:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-28","changefreq":"weekly","video":[{"title":"2013:E2 - Trials Files #38","description":"Geoff and Jack take a look at a dizzying Trials Evolution map.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c07e1505-dc63-4bb7-96a0-debd35346a4e/sm/ep6542.jpg","duration":76,"publication_date":"2013-01-08T20:43:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-55","changefreq":"weekly","video":[{"title":"2013:E7 - Minecraft - Mine In The Sky","description":"Tired of the same ole' underground mine. Why not go into a mine in the sky and do some sky exploring, or \"skloring\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33408e8b-c8c1-4761-b3a7-2cdc7b8bdbfb/sm/2013912-1449183779360-11.jpg","duration":68,"publication_date":"2013-01-08T20:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-54","changefreq":"weekly","video":[{"title":"2013:E6 - Minecraft - Oversized","description":"I followed the example of Gavin and Geoff building big animals and decided to build a mega-steve, a giga-steve and a surprise. Sorry about the pronunciation, but I'm Italian!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bc4e4e2-8991-4a08-bf0b-c34c70d3bfa5/sm/2013912-1449183742032-10.jpg","duration":130,"publication_date":"2013-01-08T19:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-53","changefreq":"weekly","video":[{"title":"2013:E5 - Things not to do in... Saints Row: The Third - Carjacked","description":"Attempted car jack in Saints Row: The Third goes horrible wrong when the car decides that it isn't taking my shit.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/743aa40c-df7e-445a-a422-2af20ac59e0e/sm/2013912-1449183703312-9.jpg","duration":37,"publication_date":"2013-01-08T19:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-52","changefreq":"weekly","video":[{"title":"2013:E4 - Minecraft - Battleships","description":"(NOTE - Unsure where to put this so i kept the achievement requirement as the first, but there is no achievement featured in this)\nDaniel's remake of the popular board game Battleships in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ddd34fb-a4d2-443a-b9b5-f6a07f47805c/sm/2013912-1449183584336-8.jpg","duration":106,"publication_date":"2013-01-08T19:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-8-bit-hydrant-overflow-and-dance-player-dance-guides","changefreq":"weekly","video":[{"title":"2013:E1836 - 8-bit Hydrant Overflow and Dance Player, Dance! Guides","description":"Ray and Michael show you how to get the \"8-bit Hydrant Overflow\" and \"Dance Player, Dance!\" achievements in Retro City Rampage for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-8-bit-hydrant-overflow-and-dance-player-dance-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e560392c-d8fd-4ea2-b59c-328afac2237d/sm/ep6533.jpg","duration":104,"publication_date":"2013-01-08T16:56:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-hotline-miami","changefreq":"weekly","video":[{"title":"2013:E8 - Indie Night - Hotline Miami","description":"Hightower and Rico take a look at a Indie Game that is not on Xbox, but PC. That game is Hotline Miami!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-hotline-miami","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8ca9c8f-3481-4634-93b0-8f763977bbf8/sm/2013912-1449183549331-7.jpg","duration":172,"publication_date":"2013-01-07T22:01:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-51","changefreq":"weekly","video":[{"title":"2013:E3 - Minecraft - TNT Machine gun","description":"A simple design and execution of a repeat fire automatic TNT cannon. Unfortunately, it undergoes catastrophic failure, fueled excessively by 64 or so TNT. Dual Commentary Culainn and Jonathan","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4c49373-0860-4364-b56e-c36b1dc22ca2/sm/2013912-1449183510788-6.jpg","duration":207,"publication_date":"2013-01-07T21:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2013-26","changefreq":"weekly","video":[{"title":"2013:E1 - Week #145","description":"Jack and Geoff and the boys (and girl) are here to bring you a tasty bit of gaming news and releases. Enjoy this week's AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b713758-f94e-4bcf-9298-2a1ceeab7244/sm/ep6527.jpg","duration":245,"publication_date":"2013-01-07T20:54:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-26","changefreq":"weekly","video":[{"title":"2013:E2 - Bully: Scholarship Edition","description":"This video is a this is with a brief intro to the game and a few tips on gameplay.","player_loc":"https://roosterteeth.com/embed/this-is-2013-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f03e3da-b825-47db-82de-6696cd40170a/sm/2013912-1449183470642-5.jpg","duration":326,"publication_date":"2013-01-07T20:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-100","changefreq":"weekly","video":[{"title":"2013:E3 - Left 4 Dead2 - DeathCraft II","description":"AH plays Left 4 Dead 2 ... with the BEST MOD EVER - Deathcraft II. Like Minecraft Like zombies Play this now!\n\nGet it for yourself here:\nhttp://www.l4dmaps.com/details.phpfile=14983","player_loc":"https://roosterteeth.com/embed/lets-play-2013-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1470c378-40f8-4fa0-b991-8d4f90628c20/sm/ep6521.jpg","duration":2215,"publication_date":"2013-01-07T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2013-25","changefreq":"weekly","video":[{"title":"2013:E1 - Retro City Rampage","description":"Hightower and a_cromack take a look at the 8-Bit arcade madness that is Retro City Rampage","player_loc":"https://roosterteeth.com/embed/this-is-2013-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59d426fc-a347-4d04-951d-11817ac8bab4/sm/2013912-1449183432721-4.jpg","duration":254,"publication_date":"2013-01-07T18:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-michael-check-out-dead-space-3-part-2","changefreq":"weekly","video":[{"title":"2013:E7 - Jack & Michael check out Dead Space 3 (Part 2)","description":"Jack and Michael keep looking at more Dead Space 3 and this time they briefly talk with Yara Khoury, a producer on the game!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-michael-check-out-dead-space-3-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fec9044-6ec9-48e2-8fc3-e6d42db3ea2f/sm/ep6515.jpg","duration":109,"publication_date":"2013-01-07T17:27:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2013-23","changefreq":"weekly","video":[{"title":"2013:E1 - Wool Wall","description":"How does AH deal with making a wall out of wool Like professionals, of course.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2013-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/825fcd47-fef7-41b4-8395-a7d611c82078/sm/ep6514.jpg","duration":153,"publication_date":"2013-01-07T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-and-michael-preview-dead-space-3","changefreq":"weekly","video":[{"title":"2013:E6 - Jack & Michael preview Dead Space 3","description":"Jack and Michael fly out to Venice, California to get an early sneak peek at Dead Space 3. Watch them give their opinions and also hear from Ian Milham from Electronic Arts!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-and-michael-preview-dead-space-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6a23460-cc8c-4044-80d3-843fc6187d1f/sm/ep6512.jpg","duration":129,"publication_date":"2013-01-06T01:01:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2013-22","changefreq":"weekly","video":[{"title":"2013:E1 - Volume 120","description":"Jack and Geoff keep the fun train rolling along in Fails of the Weak! This week they discuss grenades and crotchal areas.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2013-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589016b4-4350-48fa-82d1-d2a5fe62eaa2/sm/ep6510.jpg","duration":256,"publication_date":"2013-01-04T23:34:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-50","changefreq":"weekly","video":[{"title":"2013:E2 - Minecraft - Spread Christmas Cheer","description":"Nick and Preston like Christmas. In this video, they will spread the cheer of the season across the world of Minecraft!\n\nR.I.P Ricardo","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1235f15-a4ad-456c-ac38-e38a65bc45b6/sm/2013912-1449183396310-3.jpg","duration":69,"publication_date":"2013-01-04T20:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-texans-vs-bengals","changefreq":"weekly","video":[{"title":"2013:E5 - CH Predicts: Texans vs Bengals","description":"Ben and Chad (in the same room!) preview this weekend's AFC Wild Card matchup between the Houston Texans and the Cincinnati Bengals.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-texans-vs-bengals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2be90606-65fa-4b8d-803e-d987cb81d955/sm/2013912-1449183354492-2.jpg","duration":122,"publication_date":"2013-01-04T20:46:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-paint-the-flag","changefreq":"weekly","video":[{"title":"2013:E4 - Game Night: Halo 4 - Paint the Flag","description":"Geoff and Caleb play a little \"Paint the Flag\" in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-paint-the-flag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b7ffa14-3ea0-4586-a23d-18733ca95165/sm/ep6507.jpg","duration":98,"publication_date":"2013-01-04T20:13:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-86","changefreq":"weekly","video":[{"title":"2013:E2 - Minecraft - Episode 32","description":"The finale to the epic Wool Wall contest. Who will walk away with the Tower of Pimps","player_loc":"https://roosterteeth.com/embed/lets-play-2013-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75e7601c-5e14-434c-aab4-3dbbaba77b07/sm/ep6506.jpg","duration":2030,"publication_date":"2013-01-04T18:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-rocky-road-tire-crunch-guide","changefreq":"weekly","video":[{"title":"2013:E1825 - Rocky Road Tire Crunch Guide","description":"Ray and Geoff show you how to get the \"Rocky Road Tire Crunch\" achievement in Retro City Rampage for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-rocky-road-tire-crunch-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc300977-7429-4d58-b5c0-76a61f3dabd6/sm/ep6505.jpg","duration":174,"publication_date":"2013-01-04T16:58:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2013-20","changefreq":"weekly","video":[{"title":"2013:E1 - Realistic Summer Sports Simulator","description":"This week on Rage Quit, Michael goes to the games in the PC indie game, Realistic Summer Sports Simulator. It's realer than 3-D.\n\nTry the realism for yourself. \nRealistic Summer Sports Simulator: http://rsss.captain-games.com/","player_loc":"https://roosterteeth.com/embed/rage-quit-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30e8514f-ea02-45da-80cc-42b57fa004d1/sm/ep6504.jpg","duration":225,"publication_date":"2013-01-04T06:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-2013-16","changefreq":"weekly","video":[{"title":"2013:E1 - Trials PIG #38","description":"Michael and Gavin have a challenge of skill in this week's episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/622f3bc7-bba9-40c5-88cc-3538527bd083/sm/ep6503.jpg","duration":275,"publication_date":"2013-01-04T01:04:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-cosplayer-guide","changefreq":"weekly","video":[{"title":"2013:E1824 - The Cosplayer Guide","description":"Ray and Geoff show you how to get \"The Cosplayer\" achievement in Retro City Rampage for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-cosplayer-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b87a93-ec59-4df3-bfc9-b96045ea7746/sm/ep6502.jpg","duration":68,"publication_date":"2013-01-03T21:01:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-killabunga-and-8-blow-guides","changefreq":"weekly","video":[{"title":"2013:E1823 - Killabunga! and 8-Blow Guides","description":"X-Ray and Vav show you how to unlock the \"Killabunga!\" and \"8-Blow\" achievements in Retro City Rampage for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-killabunga-and-8-blow-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0174e9a0-5be0-4e78-9dda-01e61a2f7299/sm/ep6501.jpg","duration":95,"publication_date":"2013-01-03T17:09:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2013-82","changefreq":"weekly","video":[{"title":"2013:E1 - Far Cry 3 Episode 4","description":"Back from the holidays, the guys dive into the 4th level of the Co-op campaign in Far Cry 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/lets-play-2013-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55c902fc-5299-4c1f-9a50-482827d192fc/sm/ep6500.jpg","duration":2423,"publication_date":"2013-01-03T01:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-xcom-enemy-unknown-angel-of-death-guide","changefreq":"weekly","video":[{"title":"2013:E1818 - XCOM: Enemy Unknown - Angel of Death Guide","description":"Paulocalypse shows you how to control the skies and get the \"Angel of Death\" Achievement in XCOM: Enemy Unknown.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-xcom-enemy-unknown-angel-of-death-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":103,"publication_date":"2013-01-03T00:09:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2013-17","changefreq":"weekly","video":[{"title":"2013:E1 - Halo HORSE #108","description":"Jack and Geoff face off again in Halo 4 PIG and Geoff actually puts forth a fight. Who will win","player_loc":"https://roosterteeth.com/embed/achievement-horse-2013-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ae3a09e-638a-43bc-8972-eb7d4d6adcb3/sm/ep6493.jpg","duration":375,"publication_date":"2013-01-02T23:45:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kickin-the-balls","changefreq":"weekly","video":[{"title":"2013:E3 - Kickin' the Balls","description":"A quick achievement for Bully Scholarship Edition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kickin-the-balls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7a4b91c-45ce-42cb-833f-95cb61747cf5/sm/2013912-1449183316034-1.jpg","duration":64,"publication_date":"2013-01-02T23:35:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2013-12","changefreq":"weekly","video":[{"title":"2013:E1 - Top 10 Easter Eggs of 2012","description":"Ray and Geoff show you their picks for the ten best Xbox 360 Easter Eggs of 2012.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2013-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adb6adb9-8de4-40f2-8710-5e593d26430a/sm/ep6488.jpg","duration":271,"publication_date":"2013-01-02T23:14:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-hightowers-top-5-indie-games-of-2012","changefreq":"weekly","video":[{"title":"2013:E2 - Indie Night - Hightower's Top 5 Indie Games of 2012","description":"Hightower counts down his favorite 5 indie games he covered in 2012 with xBRITxHyBriD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-hightowers-top-5-indie-games-of-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":481,"publication_date":"2013-01-02T22:34:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2013-20","changefreq":"weekly","video":[{"title":"2013:E1 - Far Cry 3 - Big Game Hunter","description":"Geoff and Ray start the year off by blowing up every animal they see.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2013-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b62aab8d-d182-47d4-910f-a95f4f4e7a1f/sm/ep6484.jpg","duration":134,"publication_date":"2013-01-02T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-party-pooper","changefreq":"weekly","video":[{"title":"2013:E1 - Party Pooper","description":"Ray and Michael show you how to get the \"Party Pooper\" achievement in the new DLC for Doritos Crash Course for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-party-pooper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f3ff9d8-dfb7-4a96-887e-4a565b171c3a/sm/ep6483.jpg","duration":58,"publication_date":"2013-01-02T19:09:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2011-17","changefreq":"weekly","video":[{"title":"2013:E1 - Trials Files #37","description":"Geoff and Jack check out a dreamy new map in Trials Files #37.","player_loc":"https://roosterteeth.com/embed/trials-files-2011-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95fc183e-a26e-49ff-93aa-7215d9da1541/sm/ep6481.jpg","duration":110,"publication_date":"2013-01-02T00:17:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2013-16","changefreq":"weekly","video":[{"title":"2013:E1 - Portal","description":"Jack and Geoff shake off their New Year's hangovers and learn Five Facts about the classic game Portal.","player_loc":"https://roosterteeth.com/embed/five-facts-2013-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a424f54-e381-4b34-bd63-7d02e4a5f7c2/sm/ep6480.jpg","duration":288,"publication_date":"2013-01-01T20:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-30","changefreq":"weekly","video":[{"title":"2012:E91 - Farm Simulator 2013","description":"Yep, you read it right! AH goes agrarian in Farm Simulator 2013. In later news, citizens of Simulated Farm World all starved to death.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55aa78cd-b984-455f-9144-69c1a33ddd0f/sm/ep6479.jpg","duration":2307,"publication_date":"2012-12-31T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-13","changefreq":"weekly","video":[{"title":"2012:E109 - Skyrim: Dragonborn","description":"Fragger and Michael take a look at the new Dragonborn DLC for Skyrim on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f606083c-ca7c-4ae9-a1b6-2e18c8fc9944/sm/ep6478.jpg","duration":421,"publication_date":"2012-12-31T17:27:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-29","changefreq":"weekly","video":[{"title":"2012:E90 - Minecraft - Episode 31","description":"The gang compete in an epic challenge to dye every color of wool first. As always, dignity and the Tower of Pimps are on the line.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ded38f4-8db3-4055-a8ba-27424bd8a9d1/sm/ep6475.jpg","duration":1535,"publication_date":"2012-12-29T05:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-15","changefreq":"weekly","video":[{"title":"2012:E53 - Volume 119","description":"Jack and Geoff serve up another platter of Halo 4 related failure. Take solace that you're probably not this bad at gaming... unless you're clip is this episode.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2db07883-5d55-45af-ac12-23258da28957/sm/ep6473.jpg","duration":264,"publication_date":"2012-12-28T18:03:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-flood-on-deep-space","changefreq":"weekly","video":[{"title":"2012:E407 - Game Night: Halo 4 - Flood (on Deep Space)","description":"Geoff and Caleb take a look at another custom map and gametype in Halo 4. Meanwhile, Michael chokes the life out of Gavin.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-flood-on-deep-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56a4603d-b81e-4369-9192-a8419c36bc91/sm/ep6472.jpg","duration":143,"publication_date":"2012-12-28T17:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-13","changefreq":"weekly","video":[{"title":"2012:E52 - A.P.B.","description":"This week on Rage Quit, Michael joins the force in A.P.B. Available in Midway Arcade Origins for the Xbox 360. He is the law.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21510ec3-9817-451b-90a3-a7a56ef50620/sm/ep6471.jpg","duration":240,"publication_date":"2012-12-28T03:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-37","changefreq":"weekly","video":[{"title":"2012:E35 - Trials PIG #37","description":"Jack and Ray continue to go at it... this time in today's episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24c28b7d-e83e-421d-9d4e-aa41a1d789cf/sm/ep6470.jpg","duration":218,"publication_date":"2012-12-28T00:08:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-14","changefreq":"weekly","video":[{"title":"2012:E174 - Minecraft - Mariocraft!","description":"Gavin and Geoff recreate Super Mario Brothers level 1-1 in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffc71b9f-7157-47f2-9c31-89da75009ed3/sm/ep6468.jpg","duration":208,"publication_date":"2012-12-27T01:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-11","changefreq":"weekly","video":[{"title":"2012:E52 - Halo HORSE #107","description":"Jack and Ray have a boxing day match up in this episode of Halo PIG!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1039c19-6a81-4195-bb7e-a41e7f2b3a1e/sm/ep6467.jpg","duration":343,"publication_date":"2012-12-26T21:43:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-27","changefreq":"weekly","video":[{"title":"2012:E89 - Halo 4: Crimson Map Pack Episode 2","description":"Geoff, Jack, Gavin, Michael and Ray continue taking the new Crimson Map Pack DLC for a spin in the latest Let's Play from Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f1f3c01-9945-4794-982d-ee275a405576/sm/ep6465.jpg","duration":1530,"publication_date":"2012-12-26T13:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-11","changefreq":"weekly","video":[{"title":"2012:E36 - Trials Files #36","description":"Geoff and Jack take a look at a Mortal Kombat themed map in Trials Evolution on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74febe0b-3eb8-47cd-a854-931bf0c4b717/sm/ep6464.jpg","duration":73,"publication_date":"2012-12-26T03:39:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-6","changefreq":"weekly","video":[{"title":"2012:E16 - Pac-Man","description":"Jack and Geoff take a look at one of gaming's seminal franchises, Pac-Man.","player_loc":"https://roosterteeth.com/embed/five-facts-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56caad0b-2094-47df-83f3-b7ca0a8aa838/sm/ep6463.jpg","duration":318,"publication_date":"2012-12-26T01:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-25","changefreq":"weekly","video":[{"title":"2012:E88 - Halo 4: Crimson Map Pack Episode 1","description":"Geoff, Jack, Gavin, Michael and Ray take the new Crimson Map Pack DLC for a spin in the latest Let's Play from Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bc682e7-11d9-449c-843f-3d00bcbd16f8/sm/ep6461.jpg","duration":1701,"publication_date":"2012-12-25T02:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-149","changefreq":"weekly","video":[{"title":"2012:E173 - Assassin's Creed 3: Deck the Halls","description":"Axialmatt and xBRITxHyBriD bring a whole new way to make your Assassin's Creed experience a lot more Holly Jolly....yeah...that...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-149","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10f53535-2a9f-446e-9d8e-01c1d4a90703/sm/2013912-1449786080726-maxresdefault_(8).jpg","duration":151,"publication_date":"2012-12-24T23:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-13","changefreq":"weekly","video":[{"title":"2012:E52 - Week #144","description":"Jack and Geoff are here will good tidings for all and for all a good... AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/098aea6d-4634-4c2e-9fd6-62528ede7291/sm/ep6459.jpg","duration":371,"publication_date":"2012-12-24T18:23:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-seahawks-vs-49ers","changefreq":"weekly","video":[{"title":"2012:E406 - CH Predicts - Seahawks vs 49ers","description":"Chad and Caleb (with a cameo by Ben) banter about the San Francisco 49ers season while they predict the outcome of the NFC West title clash against the Seattle Seahawks.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-seahawks-vs-49ers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0933f52-e612-4dd6-9c33-0885f4e14426/sm/2013912-1449786062310-maxresdefault_(7).jpg","duration":150,"publication_date":"2012-12-23T07:11:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-steelers-vs-bengals","changefreq":"weekly","video":[{"title":"2012:E405 - CH Predicts - Steelers vs Bengals","description":"Ben and Chad talk about big contracts and Mike Wallace while predicting the must-win game between the Pittsburgh Steelers and the Cincinnati Bengals.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-steelers-vs-bengals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0637ddf-33dc-4ea1-ad01-cc90d2bd76a1/sm/2013912-1449786043847-maxresdefault_(6).jpg","duration":166,"publication_date":"2012-12-23T07:01:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-22","changefreq":"weekly","video":[{"title":"2012:E87 - Halo 4! (Bonus episode)","description":"In this bonus episode of Let's Play Halo 4, Geoff, Jack, Gavin, Michael, Ray, and Ryan battle it out across multiple gametypes and double up their XP thanks to Mountain Dew. Check out http://www.dewxp.com/ for more info!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa1fe869-6170-434f-8742-3af05e28098a/sm/ep6452.jpg","duration":1675,"publication_date":"2012-12-22T20:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-20","changefreq":"weekly","video":[{"title":"2012:E86 - Minecraft Episode 30","description":"Geoff, Jack, Michael, Gavin and Ray start a new world (AchievementVille) in the 1.9 update and go on a quest to find a Mooshroom!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dbc30e2-6e89-43f2-ba8c-ad435c83abf0/sm/ep6451.jpg","duration":2015,"publication_date":"2012-12-22T04:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-never-say-stop-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1812 - Never Say Stop Achievement Guide","description":"Jack and Geoff grab the Never Say Stop achievement in the new Trials Evolution DLC \"Riders of Doom.\" Don't touch the brake!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-never-say-stop-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eba4e1cf-431b-4360-9d9f-9ff8fade153d/sm/ep6450.jpg","duration":131,"publication_date":"2012-12-21T23:30:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-13","changefreq":"weekly","video":[{"title":"2012:E52 - Volume 118","description":"Jack and Geoff continue their exploration of the lighter side of Halo 4 in this week's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32b0301a-f9c3-4e82-ab30-f30b55561f4c/sm/ep6449.jpg","duration":274,"publication_date":"2012-12-21T23:18:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-duck-hunt","changefreq":"weekly","video":[{"title":"2012:E404 - Game Night: Halo 4 - Duck Hunt","description":"Geoff and Caleb take a look at the popular gametype Duck Hunt, re-imagined in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-duck-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9df9c5c5-087a-493e-87ad-636aaa036ce3/sm/ep6446.jpg","duration":112,"publication_date":"2012-12-21T16:51:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-complex-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E403 - Complex Map Walkthrough","description":"Jack and Geoff keep playing Halo 4 and checking out more maps! This time they look at Complex! Don't forget to double your XP by going to http://www.dewxp.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-complex-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df7eb5b6-e87c-489a-94a6-b45c4f0fa5eb/sm/ep6445.jpg","duration":415,"publication_date":"2012-12-21T00:17:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-36","changefreq":"weekly","video":[{"title":"2012:E34 - Trials PIG #36","description":"Jack and Ray check out the new DLC for Trials Evolution, Riders of Doom, and have a PIG match in the new levels!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/980be8f9-a955-42f1-b51c-895a03695f56/sm/ep6444.jpg","duration":263,"publication_date":"2012-12-20T22:35:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-9","changefreq":"weekly","video":[{"title":"2012:E51 - Trials Evolution: RoD","description":"This week on Rage Quit, Michael plays the new Riders of Doom DLC for Trials Evolution on the Xbox Live Arcade. Some things never change.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/395641f0-f1b5-4e6b-a27c-436dd4cab84a/sm/ep6443.jpg","duration":173,"publication_date":"2012-12-20T22:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-music-disc-quest-2","changefreq":"weekly","video":[{"title":"2012:E402 - Music Disc Quest 2","description":"Ray and Geoff show you how to find all the music discs in the new update for Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-music-disc-quest-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02b1fd49-6c58-436d-a6a8-14df5d25b4ac/sm/ep6442.jpg","duration":304,"publication_date":"2012-12-20T22:19:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-8","changefreq":"weekly","video":[{"title":"2012:E51 - Halo HORSE #106","description":"Jack and Michael keep the rivalry burning in this new episode of Halo 4 PIG!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1de87f42-a20a-4402-87db-34eb53eef9ee/sm/ep6440.jpg","duration":334,"publication_date":"2012-12-20T00:29:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-15","changefreq":"weekly","video":[{"title":"2012:E85 - Far Cry 3 Episode 3","description":"Geoff, Jack, Michael, & Ray fight their way through the third level of the Co-op campaign in Far Cry 3 for the Xbox 360. Geoff is very passionate about his work.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae926e2b-f23e-482b-8bfb-74ebf9a1fd43/sm/ep6438.jpg","duration":2062,"publication_date":"2012-12-19T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-8","changefreq":"weekly","video":[{"title":"2012:E172 - Minecraft - Door Bell to Hell","description":"Geoff and Gav show you a new way to waste people's time with this door bell trap.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6047284-2a20-4f2a-bb1c-1cf958961d2c/sm/ep6439.jpg","duration":121,"publication_date":"2012-12-19T23:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-festive-skin-pack","changefreq":"weekly","video":[{"title":"2012:E401 - Festive Skin Pack","description":"Ray and Geoff check out all the new skins in the new Minecraft Festive Skin Pack.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-festive-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8863deb1-1e35-46f5-b3a1-8e9e56ce6b40/sm/ep6437.jpg","duration":126,"publication_date":"2012-12-19T20:16:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-3","changefreq":"weekly","video":[{"title":"2012:E15 - Halo 3","description":"Jack and Geoff learn five facts about Halo 3 and then share them with you!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c6e15fc-9a30-48e6-bad5-107b03118494/sm/ep6435.jpg","duration":304,"publication_date":"2012-12-18T22:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-13","changefreq":"weekly","video":[{"title":"2012:E126 - Battlefield 1942 Easter Egg","description":"Ray and Michael show you where to find the Battlefield 1942 Easter Egg in the Aftermath DLC in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89933008-7706-4bdb-89aa-42e656917b7b/sm/ep6434.jpg","duration":80,"publication_date":"2012-12-18T20:08:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-3","changefreq":"weekly","video":[{"title":"2012:E35 - Trials Files #35","description":"Geoff and Jack get their spurs dirty in the latest Trials Files in Trials: Evolution on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a112b216-8794-4940-b092-d6ef5fe5d4c7/sm/ep6432.jpg","duration":100,"publication_date":"2012-12-18T18:19:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-5","changefreq":"weekly","video":[{"title":"2012:E51 - Week #143","description":"Jack and Geoff and the boys are here with a ton of good news and information for you and your fellow gamer friends. Enjoy the hilarity!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e789a7d3-77c2-4cf8-a578-cd2b057b8083/sm/ep6431.jpg","duration":240,"publication_date":"2012-12-17T22:48:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-18","changefreq":"weekly","video":[{"title":"S1:E18 - Episode 18","description":"This week's videos:\n\nMinecraft 29 - \nFarCry 3 part 2 - \nZombies part 2 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4aaff55a-dd2e-4054-862b-2c45b400f77c/sm/ep6430.jpg","duration":125,"publication_date":"2012-12-17T22:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-10","changefreq":"weekly","video":[{"title":"2012:E84 - Madden 2013","description":"It is a sad, sad day for Football (or American Awesome Ball for you of the non-United States persuasion), but a great day for you!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/962a6dfb-06bc-4dd0-bb56-883f9d36a21c/sm/ep6429.jpg","duration":2603,"publication_date":"2012-12-17T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mini-lets-play-haven-map","changefreq":"weekly","video":[{"title":"2012:E400 - Mini Let's Play - Haven Map","description":"Jack and Geoff continue their walkthroughs of the maps of Halo 4. This time they check out Haven! Don't forget to double your XP by going to http://www.dewxp.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mini-lets-play-haven-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/294fca9a-5f1f-4ab7-84d6-88fff031dceb/sm/ep6427.jpg","duration":434,"publication_date":"2012-12-16T21:41:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-7","changefreq":"weekly","video":[{"title":"2012:E83 - Minecraft 29","description":"Geoff, Jack, Michael, Gavin, Ray and Caleb take on THE WALLS. Will bromance prevail \nThanks to JusticeReddNeck for making the map on xbox.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e68e15b7-bfb5-4b9a-be83-b572748fdc05/sm/ep6425.jpg","duration":1592,"publication_date":"2012-12-14T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ch-predicts-patriots-vs-49ers","changefreq":"weekly","video":[{"title":"2012:E399 - CH Predicts - Patriots vs 49ers","description":"Ben and Chad discuss the similarities between the Giants and the Pats while simulating the possible Super Bowl preview between the New England Patriots and the San Francisco 49ers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ch-predicts-patriots-vs-49ers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd79cb72-270b-4de5-b2cf-fb3fa794fdc1/sm/2013912-1449786026849-maxresdefault_(5).jpg","duration":201,"publication_date":"2012-12-14T18:41:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-153","changefreq":"weekly","video":[{"title":"2012:E171 - Minecraft - Bed Wars","description":"Metlover shows us a fun game, filled with joy, happiness, and death!\nDownload link: http://www.planetminecraft.com/project/bed-wars/","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-153","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a35a5e5c-489c-479a-a94c-09a05f351109/sm/2013912-1449785996864-maxresdefault_(4).jpg","duration":247,"publication_date":"2012-12-14T18:22:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-5","changefreq":"weekly","video":[{"title":"2012:E51 - Volume 117","description":"Jack and Geoff begin a new era of Fails, in this first edition of Fails of the Weak in Halo 4!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fee7b8e-a6c3-46de-85c1-e7cf9cf1816d/sm/ep6421.jpg","duration":285,"publication_date":"2012-12-14T18:21:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-dodgeball-2-0","changefreq":"weekly","video":[{"title":"2012:E398 - Game Night: Halo 4 - Dodgeball 2.0","description":"Geoff and Caleb play a little Dodgeball in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-dodgeball-2-0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9420ef0f-97a3-4048-9ec7-57aafc772fc3/sm/ep6419.jpg","duration":118,"publication_date":"2012-12-14T18:14:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-2","changefreq":"weekly","video":[{"title":"2012:E50 - Assassin's Creed III","description":"This week on Rage Quit, Michael plays the \"Wanted\" multiplayer mode in Assassin's Creed III for the Xbox 360. Wanted...dead or aliiiiiive!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90fd7092-dbb7-4668-a71f-5cc43513ff71/sm/ep6416.jpg","duration":204,"publication_date":"2012-12-14T02:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012","changefreq":"weekly","video":[{"title":"2012:E7 - Fishing Jamboree","description":"The lads gather for Let's Play: Minecraft Ep 28. Talk about some happy campers.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c4d9d6b-89bb-4fcd-82e6-c22c410b22f1/sm/ep6415.jpg","duration":147,"publication_date":"2012-12-14T01:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-152","changefreq":"weekly","video":[{"title":"2012:E170 - Minecraft: Gotta Build 'Em All","description":"Jerem6401 and Kat go into Minecraft to make some Poke'art","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-152","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c55fc486-dddc-460f-91f8-512fc193979e/sm/2013912-1449785977536-maxresdefault_(3).jpg","duration":321,"publication_date":"2012-12-14T00:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-151","changefreq":"weekly","video":[{"title":"2012:E169 - Minecraft - Sand marks the spot","description":"StandardAce (Chad) shows you a classic ol' X marks the spot game, brought into the world of Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-151","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f02f7019-20c6-4c8b-b94a-4cb74a67b5b1/sm/2013912-1449785947158-maxresdefault_(2).jpg","duration":60,"publication_date":"2012-12-14T00:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-150","changefreq":"weekly","video":[{"title":"2012:E168 - Minecraft - Chicken Fishing","description":"Hirachnik(Mitch) and xUkitake(Josh) show you a fun mini-game you can play with your friends, family, and even with yourself... even though that would be weird.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-150","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":303,"publication_date":"2012-12-14T00:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-154","changefreq":"weekly","video":[{"title":"2012:E167 - Minecraft - The Islands","description":"Lets play map","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-154","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/042ecf07-d12e-4101-a225-5eb44f8c157f/sm/2013912-1449785901244-maxresdefault_(1).jpg","duration":48,"publication_date":"2012-12-14T00:07:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-155","changefreq":"weekly","video":[{"title":"2012:E166 - Minecraft - The Dropper","description":"ReddNeck brings you something to do in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-155","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b1ae6d1-2be1-4a89-923d-c5bfb2174ccf/sm/2013912-1449785882423-maxresdefault.jpg","duration":97,"publication_date":"2012-12-14T00:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-medal-of-honor-warfighter-peek-a-boo-and-lean-with-it","changefreq":"weekly","video":[{"title":"2012:E397 - Medal of Honor: Warfighter - Peek-a-Boo & Lean With It","description":"G'day, spqrblake from the RoosterTeeth community here again to show you how to get a pair of achievements in Medal of Honor: Warfighter.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-medal-of-honor-warfighter-peek-a-boo-and-lean-with-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b4cf3c-7a2d-468b-9650-53c18885e20b/sm/2013912-1449785843886-maxresdefault_(17).jpg","duration":88,"publication_date":"2012-12-13T23:56:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-35","changefreq":"weekly","video":[{"title":"2012:E33 - Trials PIG #35","description":"Jack and Ray face off in today's episode of Trials PIG! It's a nailbiter!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6188abe4-f273-470c-b0fb-575f32ac1fab/sm/ep6407.jpg","duration":307,"publication_date":"2012-12-13T23:53:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-102","changefreq":"weekly","video":[{"title":"2012:E108 - Zombie Driver HD","description":"levy350 and Axialmatt bring you a This is... for the brand new XBLA title Zombie Driver HD now with more Ben Affleck.","player_loc":"https://roosterteeth.com/embed/this-is-2012-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":380,"publication_date":"2012-12-13T23:52:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-103","changefreq":"weekly","video":[{"title":"2012:E107 - American Mensa Academy","description":"WolfCrotch gives you the low-down on what's up with this brain exerciser.","player_loc":"https://roosterteeth.com/embed/this-is-2012-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7466f10c-2bb5-45ff-9454-07888c983f0d/sm/2013912-1449785806527-maxresdefault_(16).jpg","duration":183,"publication_date":"2012-12-13T23:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-terraria","changefreq":"weekly","video":[{"title":"2012:E396 - Indie Night - Terraria","description":"This week Kenny brings you an amazing 2D survival game!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-terraria","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":123,"publication_date":"2012-12-13T23:09:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-156","changefreq":"weekly","video":[{"title":"2012:E165 - Minecraft - Monopoly","description":"A look at a giant monopoly board on minecraft.\nCreator of the map is: \nSYN BushWookie.\nEnjoy","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-156","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b8b3e2c-0e8c-4311-a2c4-0f7c4e5f1625/sm/2013912-1449785764717-maxresdefault_(15).jpg","duration":198,"publication_date":"2012-12-13T22:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-157","changefreq":"weekly","video":[{"title":"2012:E164 - Minecraft - Cheep Cheep Chase","description":"Dean shows you a Mario Party 3 game revamped in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-157","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1761520a-e90b-4235-bb05-ca1c39c82739/sm/2013912-1449785745306-maxresdefault_(14).jpg","duration":98,"publication_date":"2012-12-13T22:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-126","changefreq":"weekly","video":[{"title":"2012:E125 - XCOM: Enemy Unknown - Character Easter Egg","description":"taking you trough some OP characters in xcom E. U.\r\n\r\n*WARNING THIS EASTER EGG WILL CAUSE FOR THE DISABILITY FOR ACHIEVEMENTS. PREFORM AT OWN RISK*","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":304,"publication_date":"2012-12-13T22:34:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-158","changefreq":"weekly","video":[{"title":"2012:E163 - Minecraft - Plarp!","description":"It's like spleef, except the arena hates you almost as much as I do!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-158","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4580e50a-79d7-4496-975d-867fad6b0dc5/sm/2013912-1449785709481-maxresdefault_(13).jpg","duration":141,"publication_date":"2012-12-13T22:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-159","changefreq":"weekly","video":[{"title":"2012:E162 - Minecraft - Joining A Mob","description":"Chad shows you how to join a monster mob!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-159","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93539aa1-adb1-4be0-b443-ce9c74902515/sm/2013912-1449785692253-maxresdefault_(12).jpg","duration":153,"publication_date":"2012-12-13T21:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-160","changefreq":"weekly","video":[{"title":"2012:E161 - Minecraft - The Arena","description":"A Player vs Player battle in a large closed-in arena: Halo's headhunter meets capture the flag. Points based on collecting flowers from people killed and bringing them back to base.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-160","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faa9c50b-6373-49c1-9747-ba4920f2f3da/sm/2013912-1449785663938-maxresdefault_(11).jpg","duration":465,"publication_date":"2012-12-13T21:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-champ-is-here-wwe-13","changefreq":"weekly","video":[{"title":"2012:E395 - The champ is here! - WWE '13","description":"Masshalogear is back and he is bringing you the achievement the champ is here in wwe '13 for a simple 10 gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-champ-is-here-wwe-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8120dff-9711-48b7-a2b1-12767869600d/sm/2013912-1449785645128-maxresdefault_(10).jpg","duration":84,"publication_date":"2012-12-13T21:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-104","changefreq":"weekly","video":[{"title":"2012:E106 - WWE '13","description":"Hightower and GhostXXIV square off and bring you this video on WWE 13.","player_loc":"https://roosterteeth.com/embed/this-is-2012-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/899be7aa-a0ba-4a87-9d63-e1573772b0e6/sm/2013912-1449785616237-maxresdefault_(9).jpg","duration":316,"publication_date":"2012-12-13T21:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-161","changefreq":"weekly","video":[{"title":"2012:E160 - Minecraft - Tower hunt","description":"a things to do in minecraft. the objective is to find and bring back the tower of pimps. rules are simple anything goes. tower could be anywhere but buried, key word buried underground so you will not need to do a dig down","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-161","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e14cd01-7fc4-4541-af77-1f5e50c9b7bb/sm/2013912-1449785587393-maxresdefault_(8).jpg","duration":123,"publication_date":"2012-12-13T20:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-162","changefreq":"weekly","video":[{"title":"2012:E159 - Minecraft - Alternate Reality LOTR Quest","description":"In minecraft, a recreation of multiple J.R.R. Tolkien locations have been made to take you on a quest to DESTROY THE ONE RING! Made by SMOKEY MASSACRE","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-162","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb981e60-3db2-4119-9379-4c4f7021b68d/sm/2013912-1449785565058-maxresdefault_(7).jpg","duration":333,"publication_date":"2012-12-13T20:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dbz-budokai-hd-collection-bodokai-3-novice-champion","changefreq":"weekly","video":[{"title":"2012:E394 - DBZ Budokai HD Collection - Budokai 3 Novice Champion","description":"achievement guide","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dbz-budokai-hd-collection-bodokai-3-novice-champion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c7c18a4-a3ca-4c8c-9493-ad534efd5fe4/sm/2013912-1449785526298-maxresdefault_(6).jpg","duration":132,"publication_date":"2012-12-13T20:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-163","changefreq":"weekly","video":[{"title":"2012:E158 - Minecraft - VIP","description":"StandardAce (Chad) shows you an ol'Classic 'Halo 3' game-mode brought into the amazing world of Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-163","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54e9c426-5114-4fd6-9828-9d910ecc1a9d/sm/2013912-1449785490963-maxresdefault_(5).jpg","duration":168,"publication_date":"2012-12-13T19:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-164","changefreq":"weekly","video":[{"title":"2012:E157 - Minecraft - TnT cannon","description":"Tankhouse14 shows us how to build a simple tnt cannon that can be fun to shoot at villages, pigs, and freinds","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-164","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cf7edd2-e1fc-4ec6-824b-ac99de020970/sm/2013912-1449785472558-maxresdefault_(4).jpg","duration":305,"publication_date":"2012-12-13T19:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mini-lets-play-adrift-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E393 - Mini Let's Play Adrift Map Walkthrough","description":"Jack and Geoff check out Adrift in this episode of our Halo 4 Mini Let's Play map walkthroughs! To double your XP in Halo 4 check out http://www.dewxp.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mini-lets-play-adrift-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da7e2713-f8e6-4391-8603-2af800fa5540/sm/ep6375.jpg","duration":390,"publication_date":"2012-12-13T05:48:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-47","changefreq":"weekly","video":[{"title":"2012:E50 - Halo HORSE #105","description":"Ray and Michael face off in another exciting round of Halo 4 PIG!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f84842bf-175e-4386-be0c-8ccedb1807dc/sm/ep6374.jpg","duration":254,"publication_date":"2012-12-12T23:44:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-50","changefreq":"weekly","video":[{"title":"2012:E156 - Halo 4 - Growth Spurt","description":"By far the most mature guys in the Achievement Hunter office (Geoff and Gav) show you how to make some sweet additions to your Spartan in Halo 4.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bfde30c-0e78-4a1a-ab88-7b0e8243c1dc/sm/ep6373.jpg","duration":96,"publication_date":"2012-12-12T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-assassinands-creed-iii-circus-act-guide-v3","changefreq":"weekly","video":[{"title":"2012:E1791 - Assassin's Creed III - Circus Act Guide v3","description":"CapnSkechbag shows you how to unlock the Circus Act achievement in Assassin's Creed 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-assassinands-creed-iii-circus-act-guide-v3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":75,"publication_date":"2012-12-12T21:15:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-the-only-good-marine","changefreq":"weekly","video":[{"title":"2012:E392 - Halo 4 - The only GOOD Marine","description":"The AI's of Halo suck at everything they do, or so we thought. Check out this one Marine on the Gauss Hog","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-the-only-good-marine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45597cd1-58a4-4227-8e3e-a065bedcd588/sm/2013912-1449785452358-maxresdefault_(3).jpg","duration":233,"publication_date":"2012-12-12T20:27:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-166","changefreq":"weekly","video":[{"title":"2012:E155 - Halo 4 - The Hunger Games","description":"Chadpole shows you 'The Hunger Games' which is available for download now is on the file share of StandardAces","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-166","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07aacd1e-3e1f-46d5-a388-9a3d2fe04925/sm/2013912-1449785432367-maxresdefault_(2).jpg","duration":71,"publication_date":"2012-12-12T20:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-105","changefreq":"weekly","video":[{"title":"2012:E105 - Bioshock","description":"A this is... for Bioshock, the 2007 shooter.","player_loc":"https://roosterteeth.com/embed/this-is-2012-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":205,"publication_date":"2012-12-12T19:48:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-roses-vs-violets-part-2","changefreq":"weekly","video":[{"title":"2012:E391 - Halo 4 - Roses vs Violets Part 2","description":"Keegan shows you where to find the second Red vs Blue easter egg in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-roses-vs-violets-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b5e4843-6519-45a3-af13-e0181a910c9d/sm/2013912-1449785392478-maxresdefault_(1).jpg","duration":103,"publication_date":"2012-12-12T19:41:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-77","changefreq":"weekly","video":[{"title":"2012:E82 - Far Cry 3 Episode 2","description":"Geoff, Jack, Michael, & Ray continue to the second level of the co-op campaign in Far Cry 3 for the Xbox 360. Remember to look both ways before you cross the street.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12a1e89b-00f1-4b7f-a72b-c20c715f10f1/sm/ep6352.jpg","duration":1834,"publication_date":"2012-12-12T19:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-168","changefreq":"weekly","video":[{"title":"2012:E154 - Minecraft - Diamond Challenge","description":"Jerem6401 and Kat bring you their next Minecraft Challenge. What will the next one be","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-168","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4477a6a-c523-4287-ab6c-7f512b2011ee/sm/2013912-1449785211228-maxresdefault.jpg","duration":458,"publication_date":"2012-12-12T18:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-167","changefreq":"weekly","video":[{"title":"2012:E153 - Halo 4: Invis-Snipes","description":"This is a game Lukus01 and I came up with. It Involves everyone having good camo and trying to snipe one another. Sounds ridiculous, but is a lot of fun. PS: Screen peeking is encouraged =)","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-167","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":203,"publication_date":"2012-12-12T18:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-169","changefreq":"weekly","video":[{"title":"2012:E152 - Minecraft - Rail Switch","description":"A quick how-to guide to get your railroad on the right track!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-169","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7580283-4af3-4dd0-b67f-6ec189cc413b/sm/2013912-1449784995538-maxresdefault_(9).jpg","duration":93,"publication_date":"2012-12-12T17:50:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-170","changefreq":"weekly","video":[{"title":"2012:E151 - Minecraft - Elaborate Trap","description":"Metlover shows us how to create an elaborate trap, involving pickaxes, bedrock, and lava. Wouldn't hitting him with a sword be easier","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-170","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/378ba380-f593-41f4-858e-b0594f5b681d/sm/2013912-1449784976155-maxresdefault_(8).jpg","duration":125,"publication_date":"2012-12-12T17:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-12","changefreq":"weekly","video":[{"title":"2012:E14 - Super Mario Brothers","description":"Jack and Geoff go back in time to check out one of the greatest games ever made, Super Mario Brothers.","player_loc":"https://roosterteeth.com/embed/five-facts-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77d0b696-6a14-454d-92b5-c90c1ab80689/sm/ep6345.jpg","duration":300,"publication_date":"2012-12-11T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-29","changefreq":"weekly","video":[{"title":"2012:E34 - Trials Evolution: Trials Files #34","description":"Geoff and Jack check out another awesome user generated map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f9c9535-bedb-44e8-adf5-ab404f77562a/sm/ep6344.jpg","duration":72,"publication_date":"2012-12-11T22:25:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-106","changefreq":"weekly","video":[{"title":"2012:E104 - Sonic All-Stars Racing Transformed","description":"AxialMatt and AssasinMan24 bring a This is for Sonic All Stars Racing Transformed....Start your engines...yeah","player_loc":"https://roosterteeth.com/embed/this-is-2012-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76c82845-1e67-474d-9470-a8a15ff21798/sm/2013912-1449784954576-maxresdefault_(7).jpg","duration":503,"publication_date":"2012-12-11T21:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-171","changefreq":"weekly","video":[{"title":"2012:E150 - Minecraft-Don't Break the Ice","description":"Gargrantuan shows how to bring the children's game \"Don't Break the Ice\" to Minecraft and how deviously fun it can be.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-171","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":210,"publication_date":"2012-12-11T21:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-172","changefreq":"weekly","video":[{"title":"2012:E149 - Minecraft - Halo 3 The Pit","description":"the map on halo 3 the pit made on minecraft its a ctf game\ncontact palombo189 if intrested \nVoice over by SLP","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-172","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":126,"publication_date":"2012-12-11T20:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-173","changefreq":"weekly","video":[{"title":"2012:E148 - Minecraft - Zombie Farm","description":"BHDwaffles shows you a fun way to make a ZOOmbie!! HAHA. or a zombie farm.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-173","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":125,"publication_date":"2012-12-11T20:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-174","changefreq":"weekly","video":[{"title":"2012:E147 - Black Ops II - YOLO","description":"Alex or 123Algae from the site shows you how to dominate in Black Ops 2. YOLO.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-174","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dae9690b-e3e1-4852-91d1-74f3f1959ae5/sm/2013912-1449784843200-maxresdefault_(6).jpg","duration":66,"publication_date":"2012-12-11T20:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-165","changefreq":"weekly","video":[{"title":"2012:E146 - Minecraft - The Pineapple Under the Sea","description":"BHDwaffles shows you a fun and easy house to make in Minecraft from a famous cartoon.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-165","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":142,"publication_date":"2012-12-11T20:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-call-of-duty-black-ops-2-standard-equipment-may-vary","changefreq":"weekly","video":[{"title":"2012:E390 - Call of Duty: Black Ops 2 - Standard Equipment May Vary","description":"coolbbrah shows you how to get the Standard Equipment May Vary achievement in cod black ops 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-call-of-duty-black-ops-2-standard-equipment-may-vary","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f618abd-ca4a-44ba-b527-a33c531f679e/sm/2013912-1449784782774-maxresdefault_(5).jpg","duration":121,"publication_date":"2012-12-11T19:17:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-far-cry-3-base-liberation-with-a-bow","changefreq":"weekly","video":[{"title":"2012:E389 - Far Cry 3 - Base Liberation with a Bow","description":"Matt shows you how to flawlessly execute a liberation in Far Cry 3 using only the bow... and nothing else.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-far-cry-3-base-liberation-with-a-bow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc03238e-f008-41f4-89b4-a3ca7bfbdaaa/sm/2013912-1449784756353-maxresdefault_(4).jpg","duration":146,"publication_date":"2012-12-11T19:02:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-148","changefreq":"weekly","video":[{"title":"2012:E145 - Far Cry 3 - Jump the Shark(s)!","description":"When a videogame gives you sharks, jump them!\nVideo by: Lettucelord","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-148","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97febcec-ad92-47cc-845c-de3b6d22fe0e/sm/2013912-1449784735481-maxresdefault_(3).jpg","duration":78,"publication_date":"2012-12-11T18:56:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-147","changefreq":"weekly","video":[{"title":"2012:E144 - Far Cry 3 - Turtles!!!!","description":"So yeah, swimming with turtles....so AWESOME!!!!!!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-147","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5795c125-175f-45f2-93e0-d599d45d71a3/sm/2013912-1449784696129-maxresdefault_(2).jpg","duration":55,"publication_date":"2012-12-11T18:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-far-cry-3-love-the-boom-guide","changefreq":"weekly","video":[{"title":"2012:E1768 - Far Cry 3 - Love the Boom Guide","description":"coolbbrah shows you how to get the Love the Boom achievement","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-far-cry-3-love-the-boom-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":37,"publication_date":"2012-12-11T17:47:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-cassies-animal-sounds","changefreq":"weekly","video":[{"title":"2012:E388 - Indie Night - Cassie's Animal Sounds","description":"Hightower and \t\r\nxBRITxHyBriD take a look at the greatest indie game in the history of ever","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-cassies-animal-sounds","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ac0cd24-a2f4-44f4-915a-073c84110efa/sm/2013912-1449784677318-maxresdefault_(1).jpg","duration":152,"publication_date":"2012-12-11T17:26:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-36","changefreq":"weekly","video":[{"title":"2012:E50 - Week #142","description":"Jack and Geoff bring all the news that is fit to print! The Achievement Hunter Holiday Print will be available this week! http://roosterteeth.com/store/product.phpid=353 This week's episode of AHWU is brought to you by Game.Minder! Check it out at http://www.gameminder.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0920c8f0-70fc-41fc-b6a4-200a7224e1c6/sm/ep6317.jpg","duration":289,"publication_date":"2012-12-10T21:16:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-17","changefreq":"weekly","video":[{"title":"S1:E17 - Episode 17","description":"Minecraft 28 - \nFarCry 3 - \nThe Hidden -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26f1ebf1-a24d-413c-8637-c5bf669304a8/sm/ep6316.jpg","duration":126,"publication_date":"2012-12-10T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-65","changefreq":"weekly","video":[{"title":"2012:E81 - Black Ops 2 Zombies Round 2","description":"We're back in Black Ops 2 for more! This one has it all... action, drama, comedy and zombies!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a4f5665-e8ce-4674-90c9-c754ed564dfb/sm/ep6315.jpg","duration":2865,"publication_date":"2012-12-10T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-meltdown-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E387 - Meltdown Map Walkthrough","description":"Jack and Geoff continue their quest through Halo 4, this time checking out the map Meltdown! Don't forget to double up your XP with Mountain Dew at http://www.dewxp.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-meltdown-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3afc0ee2-050a-4431-860e-24af51ee89ec/sm/ep6312.jpg","duration":470,"publication_date":"2012-12-08T05:55:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-54","changefreq":"weekly","video":[{"title":"2012:E122 - Underwater Drunk Easter Egg","description":"Ray and Geoff show you where to find the \"Underwater Drunk\" Easter Egg in Far Cry 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5185801b-19a8-4317-8105-a1a4474e05dc/sm/ep6310.jpg","duration":69,"publication_date":"2012-12-07T22:59:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-37","changefreq":"weekly","video":[{"title":"2012:E50 - Volume 116","description":"In the final episode of Halo: Reach fails (Halo 4 begins next week!) Jack and Geoff reminisce and laugh about previous episodes. Har har.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2ddbb3c-1f9a-4dca-929b-09659e3d3e9c/sm/ep6309.jpg","duration":305,"publication_date":"2012-12-07T22:50:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-61","changefreq":"weekly","video":[{"title":"2012:E80 - Minecraft 28","description":"Sorry guys, but Jack, Geoff, Gavin, Michael, Ray, Caleb and Ryan have gone fishin this week.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa4219fe-c6ec-4089-a3fe-ffa8ab40d667/sm/ep6308.jpg","duration":1835,"publication_date":"2012-12-07T21:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-4-star-wars-space-battle","changefreq":"weekly","video":[{"title":"2012:E386 - Game Night: Halo 4 - Star Wars Space Battle","description":"Geoff and Caleb play a custom gametype and map in a galaxy far far away in this week's Halo 4 edition of Game Night. Live long and prosper!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-4-star-wars-space-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd13e371-f4e9-44d3-8e6c-7bdf03626ada/sm/ep6307.jpg","duration":120,"publication_date":"2012-12-07T21:29:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-53","changefreq":"weekly","video":[{"title":"2012:E121 - Sand Castle Easter Egg","description":"Ray and Michael show you where to find the Sand Castle Easter Egg in the Aftermath DLC in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e08b8202-c560-4cd9-9a6b-f674a6144652/sm/ep6306.jpg","duration":54,"publication_date":"2012-12-07T21:14:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-34","changefreq":"weekly","video":[{"title":"2012:E49 - Christmas Carnage","description":"This week on Rage Quit, Michael gets into the Christmas spirit with the Xbox Live Indie Game, Christmas Carnage. Old St. Nick is one tough son of a bitch.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5469d939-11fa-42b4-9824-501534c70e52/sm/ep6305.jpg","duration":344,"publication_date":"2012-12-07T02:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-november-2012","changefreq":"weekly","video":[{"title":"2012:E11 - Best fails of November 2012","description":"You pick em, we watch em... It's the best of November!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-november-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc7c011c-f3fc-4114-90b6-be8640bbd445/sm/ep6304.jpg","duration":239,"publication_date":"2012-12-07T00:42:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-34","changefreq":"weekly","video":[{"title":"2012:E32 - Trials PIG #34","description":"Ray and Geoff launch their bikes downhill in this new episode of Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/093d6f09-0748-499b-9c89-2427833561f0/sm/ep6302.jpg","duration":236,"publication_date":"2012-12-06T22:50:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-51","changefreq":"weekly","video":[{"title":"2012:E120 - Dead Space Easter Egg","description":"Ray and Michael show you where to find the Dead Space Easter Egg in the Aftermath DLC in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/099151ce-f27f-4790-ac90-732d6d72bbda/sm/ep6301.jpg","duration":72,"publication_date":"2012-12-06T21:40:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-146","changefreq":"weekly","video":[{"title":"2012:E143 - Minecraft - Capture the Flag!","description":"Gaige shows you a game where there are 2 teams who try to get each other's flag with a lot of excitement and screaming! This is a \"Things to do in...\" and for some reason I had to pick an achievement... Sorry didn't know what to select for this...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-146","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":63,"publication_date":"2012-12-06T21:19:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-145","changefreq":"weekly","video":[{"title":"2012:E142 - Minecraft - Death","description":"An obstacle course from heck! By AH_Josh and Dyrn","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-145","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d815263c-d4e0-4d42-a1e7-9ae94d49237a/sm/2013912-1449784633531-maxresdefault.jpg","duration":142,"publication_date":"2012-12-06T21:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-144","changefreq":"weekly","video":[{"title":"2012:E141 - Halo 4 Glitch","description":"AAXIII here. Gonna show you a glitch that a friend and I found on the map Complex during a Flood match. \nFirst Sandy, now the Flood...too soon","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-144","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/651a0ce7-c4b4-4f1c-96df-afbb7efa5f2e/sm/2013912-1449784589729-maxresdefault_(18).jpg","duration":134,"publication_date":"2012-12-06T20:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-143","changefreq":"weekly","video":[{"title":"2012:E140 - Minecraft - Gravel Grabber","description":"Styx shows you how to quickly and easily mine that pesky gravel in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-143","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38bb777f-99d1-44ef-a9e9-5fd0be7b9976/sm/2013912-1449784567760-maxresdefault_(17).jpg","duration":52,"publication_date":"2012-12-06T20:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-chief-smash-guide-v4","changefreq":"weekly","video":[{"title":"2012:E1752 - Halo 4 - Chief, Smash! Guide v4","description":"B Sp1at shows how to get the chief smash achievement just for you guys","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-chief-smash-guide-v4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":56,"publication_date":"2012-12-06T20:06:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-142","changefreq":"weekly","video":[{"title":"2012:E139 - Minecraft - Rude Awakening","description":"AxialMatt and CombatWombat bring you a devious trap to turn all your friends dreams into nightmares. Be sure to leave the night light on.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-142","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c765c5b-5500-4d78-bbbd-05b5fda5cafa/sm/2013912-1449784548634-maxresdefault_(16).jpg","duration":172,"publication_date":"2012-12-06T20:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-141","changefreq":"weekly","video":[{"title":"2012:E138 - Minecraft - The Obsidian Challenge","description":"There are many more challenges to come... here is the first","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-141","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":464,"publication_date":"2012-12-06T19:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-101","changefreq":"weekly","video":[{"title":"2012:E103 - Doom 3 BFG Edition","description":"Hightower and Vgun47 blast their way through hell and back to bring you a video on Doom 3 BFG Edition","player_loc":"https://roosterteeth.com/embed/this-is-2012-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1faecc4a-7b58-42dd-b754-c07bd22a3ff2/sm/2013912-1449784510991-maxresdefault_(15).jpg","duration":299,"publication_date":"2012-12-06T19:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-tips-and-tricks-soulsand","changefreq":"weekly","video":[{"title":"2012:E385 - Minecraft Tips and Tricks - Soulsand","description":"User DT77 Shows off some properties of soulsand and its trollish potential.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-tips-and-tricks-soulsand","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ffbd103-c2ad-4eba-a12a-eb2f59f13d65/sm/2013912-1449784480690-maxresdefault_(14).jpg","duration":103,"publication_date":"2012-12-06T19:01:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-dead-pixels","changefreq":"weekly","video":[{"title":"2012:E384 - Indie Night - Dead Pixels","description":"Hightower and vgun47 take a look at 8-bit zombie action in Dead Pixels","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-dead-pixels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c5689ed-fd58-47dd-ba08-b13c634206d7/sm/2013912-1449784460083-maxresdefault_(13).jpg","duration":129,"publication_date":"2012-12-06T18:50:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-140","changefreq":"weekly","video":[{"title":"2012:E137 - Minecraft - Bloody Gravel","description":"Mr Gingee hates Gravel.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-140","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f47db606-c810-420b-95a9-d39a14b30adc/sm/2013912-1449784440723-maxresdefault_(12).jpg","duration":161,"publication_date":"2012-12-06T18:44:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-mini-master-chief-glitch","changefreq":"weekly","video":[{"title":"2012:E383 - Halo 4 - Mini Master Chief Glitch","description":"Styx and Wolfscar show you how to make the Chief tiny in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-mini-master-chief-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5acc4868-8c0e-47cd-98c6-8216c1447263/sm/2013912-1449784421316-maxresdefault_(11).jpg","duration":168,"publication_date":"2012-12-06T18:26:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-41","changefreq":"weekly","video":[{"title":"2012:E118 - Mirror's Edge Easter Egg","description":"Ray and Michael show you where to find another Mirror's Edge Easter Egg in the Aftermath DLC in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e35ff99-6c6d-4df9-b8a3-57a0d725d59b/sm/ep6265.jpg","duration":76,"publication_date":"2012-12-06T17:59:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-44","changefreq":"weekly","video":[{"title":"2012:E79 - Far Cry 3","description":"Geoff, Jack, Michael, & Ray head to the tropics in the campaign co-op mode in Far Cry 3 for the Xbox 360. It's a jungle in there!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/279216c7-e7c9-4bda-b1d2-cd08afcb1dcd/sm/ep6264.jpg","duration":1952,"publication_date":"2012-12-06T02:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-139","changefreq":"weekly","video":[{"title":"2012:E136 - Minecraft - Pitfall","description":"zap45 and Dyrn show off a new game type in Mincraft: Pitfall.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-139","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0a8aa5a-cec9-41e0-a97c-4944985cc8ed/sm/2013912-1449784395721-maxresdefault_(10).jpg","duration":145,"publication_date":"2012-12-05T21:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-23","changefreq":"weekly","video":[{"title":"2012:E49 - Halo HORSE #104","description":"Jack and Geoff go at it in today's episode of Achievement PIG in Halo 4! Hooray platformers!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c4ffa20-01aa-406d-90ff-202882cf8fc7/sm/ep6262.jpg","duration":283,"publication_date":"2012-12-05T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-call-of-duty-black-ops-2-gun-nut-and-hey-good-looking","changefreq":"weekly","video":[{"title":"2012:E382 - Call of Duty: Black Ops 2 - Gun Nut and Hey Good Looking","description":"Andonis here showing you how to get the \"Gun Nut\" and \"Hey Good Looking\" achievements in Black Ops 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-call-of-duty-black-ops-2-gun-nut-and-hey-good-looking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd7630d3-ff4c-4d11-a447-7ef7cdb164a4/sm/2013912-1449784373385-maxresdefault_(9).jpg","duration":149,"publication_date":"2012-12-05T21:24:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-24","changefreq":"weekly","video":[{"title":"2012:E135 - Minecraft - Giant Creeper","description":"Giant Creeper! No, I'm not talking about Geoff. I'm talking about the actual giant creeper that Gavin and Geoff built in Achievement City.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70037b6e-5a33-4022-b5d5-653f74aec53b/sm/ep6258.jpg","duration":103,"publication_date":"2012-12-05T21:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-call-of-duty-modern-warfare-3-strike-and-what-goes-up","changefreq":"weekly","video":[{"title":"2012:E381 - Call of Duty: Modern Warfare 3 - Strike and What Goes Up","description":"Karl shows you how to strike on what goes up","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-call-of-duty-modern-warfare-3-strike-and-what-goes-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f5dfa1a-9146-4f07-89b6-862bbffb151b/sm/2013912-1449784348333-maxresdefault_(8).jpg","duration":143,"publication_date":"2012-12-05T21:02:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-138","changefreq":"weekly","video":[{"title":"2012:E134 - Minecraft - Castle Invasion","description":"Gargrantuan shows off a medieval style map were two team square off in a castle on Minecraft. One to defend the Tower of Pimps and the other to steal it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-138","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":264,"publication_date":"2012-12-05T20:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-137","changefreq":"weekly","video":[{"title":"2012:E133 - Minecraft - Ghetto Nether Portal","description":"skulls941 shows you how to make a nether portal.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-137","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88551045-f343-4c90-ab3e-ef679d4077ce/sm/2013912-1449784298945-maxresdefault_(7).jpg","duration":135,"publication_date":"2012-12-05T20:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-136","changefreq":"weekly","video":[{"title":"2012:E132 - Minecraft - Battle for Booty","description":"@zap45 brings to you another game type in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-136","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33a35130-9e0f-461f-a95b-ae0754f9f639/sm/2013912-1449784276419-maxresdefault_(6).jpg","duration":174,"publication_date":"2012-12-05T20:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bite-your-finger-guide","changefreq":"weekly","video":[{"title":"2012:E1740 - Bite Your Finger Guide","description":"X-Ray and Vav show you how to get the \"Bite Your Finger\" achievement in the Aftermath DLC in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bite-your-finger-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ca22d78-6dc1-4fa0-8c5d-069814a93fcd/sm/ep6253.jpg","duration":57,"publication_date":"2012-12-05T20:30:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-love-the-boom-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1739 - Love the Boom Achievement Guide","description":"Geoff and Ray show you how and where to get the Love the Boom Achievement in Far Cry 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-love-the-boom-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c8ea017-561e-42c6-b9e1-b5b5be1b8e7c/sm/ep6252.jpg","duration":118,"publication_date":"2012-12-05T19:24:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-exile-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E380 - Exile Map Walkthrough","description":"Jack and Geoff put together a mini-Let's Play to check out the Exile map in Halo 4. Don't forget to double your XP with Mountain Dew. Go to http://www.dewxp.com/ for more!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-exile-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65015d54-8bbf-42bf-9bad-9f47eb93f60d/sm/ep6249.jpg","duration":437,"publication_date":"2012-12-05T18:32:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-warp-over-exposed-part-2","changefreq":"weekly","video":[{"title":"2012:E379 - Warp - Over Exposed (Part 2)","description":"Chad and Knightmari show you how to get the Over Exposed achievement in Warp. Part 2/2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-warp-over-exposed-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55af7ea2-69c8-450b-b9a5-04bcfacb23b9/sm/2013912-1449784254535-maxresdefault_(5).jpg","duration":201,"publication_date":"2012-12-05T18:22:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-warp-over-exposed-part-1","changefreq":"weekly","video":[{"title":"2012:E378 - Warp - Over Exposed (Part 1)","description":"Chad and Knightmari show you how to get the Over Exposed achievement in Warp. Part 1/2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-warp-over-exposed-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bfad7c4-cf05-477e-8f9f-a91188d4185a/sm/2013912-1449784234345-maxresdefault_(4).jpg","duration":266,"publication_date":"2012-12-05T18:18:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-123","changefreq":"weekly","video":[{"title":"2012:E117 - Halo 4 - Jeff Steitzer Easter Egg","description":"Styx shows you a little Easter Egg featuring the smooth-voiced Jeff Steitzer.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":49,"publication_date":"2012-12-05T17:47:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-135","changefreq":"weekly","video":[{"title":"2012:E131 - Minecraft - The Labyrinth","description":"THERIGBOSS here with a Minecraft Maze and Game Type idea.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-135","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":159,"publication_date":"2012-12-05T17:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-good-stuff-guide","changefreq":"weekly","video":[{"title":"2012:E1733 - The Good Stuff Guide","description":"Ray and Geoff show you how to get the \"The Good Stuff\" achievement in Far Cry 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-good-stuff-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75d411a6-47b6-4cc5-83a2-fb46cd1826a3/sm/ep6241.jpg","duration":78,"publication_date":"2012-12-05T17:40:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-134","changefreq":"weekly","video":[{"title":"2012:E130 - Halo 4 - Thruster Arena","description":"Shamusmon shows you an awesome custom game you can play in Halo 4 called Thruster Arena. You need to download the gametype Thruster and map variant Thruster Arena both of which are on shamusmon's file-share.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-134","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4940c06b-2bb3-4c27-9a19-9342d6b4fab7/sm/2013912-1449784178747-maxresdefault_(3).jpg","duration":138,"publication_date":"2012-12-05T17:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-133","changefreq":"weekly","video":[{"title":"2012:E129 - Minecraft - Mineo Kart","description":"AxialMatt brings a \"Things to do in\" that brings some high speed kart racing to your minecraft life. You know in case all that building was starting to bore you.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-133","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7bf7495-e33b-464c-ac10-9b99638a53ba/sm/2013912-1449784143309-maxresdefault_(2).jpg","duration":201,"publication_date":"2012-12-04T23:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-never-saw-it-coming-guide","changefreq":"weekly","video":[{"title":"2012:E1729 - Never Saw it Coming Guide","description":"Ray and Geoff show you how to get the \"Never Saw it coming\" achievement in Far Cry 3 for the Xbox 360..\r\n\r\n*The skill you need to unlock is called \"Death From Above\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-never-saw-it-coming-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1df5837-a0c9-4496-b3b0-af2168b5002f/sm/ep6234.jpg","duration":95,"publication_date":"2012-12-04T22:45:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-132","changefreq":"weekly","video":[{"title":"2012:E128 - Minecraft - The Diamond Denial","description":"Fun way to kill your friends for daring to mine your diamonds.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-132","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49f2bc35-ffcd-4e2b-b509-71ac626db3e0/sm/2013912-1449784120923-maxresdefault_(1).jpg","duration":91,"publication_date":"2012-12-04T22:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-13","changefreq":"weekly","video":[{"title":"2012:E33 - Trials Evolution: Trials Files #33","description":"Geoff and Jack take on another custom map in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0cc3e71-b667-406b-9d79-e85e9abfabc0/sm/ep6228.jpg","duration":191,"publication_date":"2012-12-04T22:11:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-defeating-him","changefreq":"weekly","video":[{"title":"2012:E377 - Defeating \"him\"","description":"B Sp1at shows you how to find and destroy \"him\" in black ops 2 zombies","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-defeating-him","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":108,"publication_date":"2012-12-04T22:04:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-what-power-outage-guide","changefreq":"weekly","video":[{"title":"2012:E1723 - What Power Outage? Guide","description":"X-Ray and Vav show you how to get the \"What Power Outage\" achievement in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-what-power-outage-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a41eefab-a9a8-45a0-b4f2-cbb7de86e320/sm/ep6225.jpg","duration":96,"publication_date":"2012-12-04T21:55:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hitman-absolution-8-easy-achievements","changefreq":"weekly","video":[{"title":"2012:E1721 - Hitman Absolution - 8 Easy Achievements","description":"Brandon shows you how to get 8 Easy achievements in Hitman Absolution","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hitman-absolution-8-easy-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":107,"publication_date":"2012-12-04T21:45:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-122","changefreq":"weekly","video":[{"title":"2012:E116 - Call of Duty: Black Ops 2 - Nacht Der Untoten Easter Egg","description":"Ben Waffles Shows you the easiest way to return to World at War Zombies In Tranzit mode for Black Ops 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":190,"publication_date":"2012-12-04T21:32:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-100","changefreq":"weekly","video":[{"title":"2012:E102 - Outland","description":"Join Rico from the Achievement Hunter community as he takes a look at this XLBA and PSN game, Outland.","player_loc":"https://roosterteeth.com/embed/this-is-2012-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e778afa-c5f2-45b5-9102-0989eb71fc47/sm/2013912-1449784080856-maxresdefault.jpg","duration":319,"publication_date":"2012-12-04T21:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-131","changefreq":"weekly","video":[{"title":"2012:E127 - Minecraft - Piglix Baumgartner","description":"Titocurl shows you how even pigs can pay homage to the great Felix Baumgartner and also goes higher than any minecrafter has gone before.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-131","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/440e7360-6da9-48df-9bb9-d42465ca8528/sm/2013912-1449784052978-maxresdefault_(20).jpg","duration":222,"publication_date":"2012-12-04T20:07:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-128","changefreq":"weekly","video":[{"title":"2012:E126 - Minecraft-It's Like an Oven in Here","description":"Gargrantuan and unnamed 23 show a great way to turn up the heat on unsuspecting friends that want a good night's sleep.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-128","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8917a4e7-da88-4919-a516-fc40059d2815/sm/2013912-1449784019228-maxresdefault_(19).jpg","duration":184,"publication_date":"2012-12-04T19:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-127","changefreq":"weekly","video":[{"title":"2012:E125 - Black Ops II - Show Your Support","description":"Alex or 123Algae from the site shows you how to show your support in Black Ops II.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-127","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd43b310-045f-430d-97a7-18ba3d76b043/sm/2013912-1449784000202-maxresdefault_(18).jpg","duration":105,"publication_date":"2012-12-04T19:48:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-7","changefreq":"weekly","video":[{"title":"2012:E13 - Minecraft","description":"Jack and Ray learn five brand new facts in Minecraft! Let's all high-five Notch!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e095052b-2fc6-46f3-b8a9-ec372968536b/sm/ep6215.jpg","duration":234,"publication_date":"2012-12-04T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-129","changefreq":"weekly","video":[{"title":"2012:E124 - Minecraft: Sports Arena - Blocksketball","description":"Sports! In Minecraft! It's like basketball, but everyone is the same height, and has swords.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-129","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":207,"publication_date":"2012-12-04T19:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-easy-way-out-guide","changefreq":"weekly","video":[{"title":"2012:E1717 - No Easy Way Out Guide","description":"Ray and Geoff show you how to get the \"No Easy Way Out\" achievement in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-easy-way-out-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d33fa9e-e1f5-491f-8b86-8d054287ca8b/sm/ep6212.jpg","duration":110,"publication_date":"2012-12-04T18:13:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012-4","changefreq":"weekly","video":[{"title":"2012:E6 - Mounted Combat","description":"AH sets up for Let's Play: Minecraft Ep 27 and enjoys some quality pig jousting.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6bbcb7d-6c2d-4852-9fc3-d85c70f5a693/sm/ep6211.jpg","duration":110,"publication_date":"2012-12-03T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-28","changefreq":"weekly","video":[{"title":"2012:E78 - The Hidden","description":"This has been the most requested game in our let's play comments... so here we are completely failing to un-hide the hidden!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd8256bf-bef2-4682-915d-c4a78def065c/sm/ep6210.jpg","duration":1983,"publication_date":"2012-12-03T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-16","changefreq":"weekly","video":[{"title":"S1:E16 - Episode 16","description":"This week's videos!\nMinecraft 27 - \nKilling Floor - \nSaints Row the Third pt 5 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bc55900-a06b-48b1-b6cb-80189072a547/sm/ep6209.jpg","duration":133,"publication_date":"2012-12-03T21:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-16","changefreq":"weekly","video":[{"title":"2012:E49 - Week #141","description":"Jack and Geoff and the rest of the crew bring you some awesome goodies from the world of gaming. Don't forget to grab an Achievement Hunter backpack at http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/105f3293-76fa-4f93-a0f4-61c24f4a8c32/sm/ep6208.jpg","duration":211,"publication_date":"2012-12-03T21:29:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fearless-or-stupid-guide","changefreq":"weekly","video":[{"title":"2012:E1716 - Fearless or Stupid Guide","description":"Ray and Geoff show you how to get the \"Fearless or Stupid\" achievement in Far Cry 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fearless-or-stupid-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aadef15-59e3-46b1-8955-ac012239862e/sm/ep6207.jpg","duration":65,"publication_date":"2012-12-03T21:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-21","changefreq":"weekly","video":[{"title":"2012:E115 - RvB Easter Egg Number 5","description":"Ray and Geoff show you where to find the new Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b75117c-6898-4b12-868d-13dc89717805/sm/ep6206.jpg","duration":72,"publication_date":"2012-12-03T18:29:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-improper-use-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1715 - Improper Use Achievement Guide","description":"Ray and Geoff show you how to weld a dude to death to get the Improper Use Achievement in Far Cry 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-improper-use-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0f71540-6203-4658-a14e-4355809871b0/sm/ep6205.jpg","duration":55,"publication_date":"2012-12-02T21:02:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-24","changefreq":"weekly","video":[{"title":"2012:E77 - Minecraft 27","description":"This week we're back in Achievement City (yay!) and Geoff, Jack, Michael, Gavin, Ray and Ryan get their pig on.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a0287ca-e697-4468-9712-96236a9d3f39/sm/ep6203.jpg","duration":1798,"publication_date":"2012-11-30T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-toxophilite-guide","changefreq":"weekly","video":[{"title":"2012:E1714 - Toxophilite Guide","description":"Ray and Geoff show you \"Toxophilite\" achievement in Far Cry 3 for the Xbox 360.\r\n\r\nCheck out the Far Cry Experience here: http://far-cry.ubi.com/fc-experience/en-gb/home/index.aspx","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-toxophilite-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e68ab37-00fd-4513-a0db-33a47d195dac/sm/ep6201.jpg","duration":115,"publication_date":"2012-11-30T20:59:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-14","changefreq":"weekly","video":[{"title":"2012:E49 - Volume 115","description":"Jack and Geoff take a look at another ten failtacular moments in Halo Reach.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/339cbd03-66f3-421d-9868-9522cbe573b1/sm/ep6200.jpg","duration":283,"publication_date":"2012-11-30T20:57:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-say-hi-to-the-internet","changefreq":"weekly","video":[{"title":"2012:E376 - Say Hi To The Internet","description":"Geoff and Ray show you where to find and get the Say Hi to the Internet Achievement in Far Cry 3.\r\n\r\nCheck out the Far Cry Experience here: http://far-cry.ubi.com/fc-experience/en-gb/home/index.aspx","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-say-hi-to-the-internet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6beaf294-214c-47c5-b7a1-079ca6b00abb/sm/ep6199.jpg","duration":147,"publication_date":"2012-11-30T20:11:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-pluto-escapes","changefreq":"weekly","video":[{"title":"2012:E375 - Game Night: Halo Reach - Pluto Escapes","description":"Geoff and Caleb take a look at the custom gametype \"Pluto Escapes, on Mickey's Playpen.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-pluto-escapes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bafea08-1424-4f0f-846f-ddf2fe9c6206/sm/ep6198.jpg","duration":108,"publication_date":"2012-11-30T20:05:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-19","changefreq":"weekly","video":[{"title":"2012:E114 - Sex Dogs Easter Egg","description":"X-Ray and Vav show you where to find the \"Sex Dogs\" Easter Egg in Hitman Absolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4dc6b167-7125-4660-a72e-f80cdd41b5f6/sm/ep6197.jpg","duration":104,"publication_date":"2012-11-30T16:28:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-33","changefreq":"weekly","video":[{"title":"2012:E31 - Trials PIG #33","description":"Jack and Michael go head to head in Trials Evolution PIG! Who do you think will win Really","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/156ac814-905e-4470-8169-57d2dbbaad92/sm/ep6196.jpg","duration":262,"publication_date":"2012-11-30T00:03:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-12","changefreq":"weekly","video":[{"title":"2012:E48 - Joust","description":"This week on Rage Quit, Michael dons his armor and rides an ostrich in to battle in the classic arcade game, Joust, available in Midway Arcade Origins for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25b51245-9ee1-4fc7-8947-21d3675435b6/sm/ep6195.jpg","duration":210,"publication_date":"2012-11-29T23:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-solace-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E374 - Solace Map Walkthrough","description":"Jack and Geoff continue their exploration of the maps of Halo 4! This week they check out Solace and look at the big fiery ball in the sky! Don't forget to double up on your experience by going to http://www.dewxp.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-solace-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db2976d6-da7d-434a-bbde-8c8317f9bb52/sm/ep6194.jpg","duration":264,"publication_date":"2012-11-29T23:36:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-unheard-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1713 - Unheard Achievement Guide","description":"Geoff and Ray show you two ways to get the Unheard Achievement in Far Cry 3.\r\n\r\nCheck out the Far Cry Experience here: http://far-cry.ubi.com/fc-experience/en-gb/home/index.aspx","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-unheard-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e8fb02b-401a-4be5-98b0-c1d7b543594a/sm/ep6191.jpg","duration":212,"publication_date":"2012-11-29T22:25:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-free-fall-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1712 - Free Fall Achievement Guide","description":"Geoff and Ray show you how and where to get the Free Fall Achievement in the upcoming game Far Cry 3 for the Xbox 360.\r\n\r\nCheck out the Far Cry Experience here: http://far-cry.ubi.com/fc-experience/en-gb/home/index.aspx","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-free-fall-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed7902af-bbf6-4ee4-a043-14373fc1f37a/sm/ep6190.jpg","duration":130,"publication_date":"2012-11-29T22:22:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-16","changefreq":"weekly","video":[{"title":"2012:E113 - Double Rainbow Easter Egg","description":"Ray and Michael show you where to find the \"Double Rainbow\" Easter Egg in Hitman Absolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0122ef1-a8c5-4c3e-b808-525af8c266c8/sm/ep6189.jpg","duration":124,"publication_date":"2012-11-29T19:10:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-far-cry-experience-hygiene","changefreq":"weekly","video":[{"title":"2012:E373 - The Far Cry Experience: Hygiene","description":"Our friends at Ubisoft have given us an exclusive Far Cry Experience video starring Christopher Mintz-Plasse! Watch and learn the importance of hygiene in your daily life! For more Far Cry 3, go to http://far-cry.ubi.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-far-cry-experience-hygiene","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdfcfc20-2026-46ba-a169-c808bf40504d/sm/ep6187.jpg","duration":119,"publication_date":"2012-11-29T16:43:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-10","changefreq":"weekly","video":[{"title":"2012:E48 - Halo HORSE #103","description":"Ray and Michael face off in their first meeting of PIG in Halo 4! Will Ray make up for last week's loss to Jack Watch and learn!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1c79ef7-0ba7-467e-b41b-bfb434711ee3/sm/ep6186.jpg","duration":297,"publication_date":"2012-11-29T00:16:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-9","changefreq":"weekly","video":[{"title":"2012:E123 - Hitman Absolution - Bromance","description":"Gav and Ray show you some of the compromising positions that people find themselves in in Hitman Absolution","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/93089ccb-7454-4162-844c-0df5fcd998ac/sm/ep6185.jpg","duration":88,"publication_date":"2012-11-28T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-you-have-no-power-over-me-guide","changefreq":"weekly","video":[{"title":"2012:E1710 - You Have No Power Over Me Guide","description":"X-Ray and Vav show you how to get the \"You Have No Power Over Me\" achievement in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-you-have-no-power-over-me-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f954b930-1a5d-4665-8d87-f9afceffb5ed/sm/ep6184.jpg","duration":97,"publication_date":"2012-11-28T20:41:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-14","changefreq":"weekly","video":[{"title":"2012:E112 - Hitman Absolution - Grave Easter Egg","description":"Gav and Geoff show you more weird occurrences in the End of the Road level in Hitman Absolution.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba1e4401-ec74-45c8-a186-8e387dd562c0/sm/ep6180.jpg","duration":110,"publication_date":"2012-11-27T21:08:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-4","changefreq":"weekly","video":[{"title":"2012:E32 - Trials Evolution: Trials Files #32","description":"Geoff and Jack take a trip to galaxy far, far away in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39805e70-3d05-4b6d-99fe-e17ec4119594/sm/ep6179.jpg","duration":143,"publication_date":"2012-11-27T20:43:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-4","changefreq":"weekly","video":[{"title":"2012:E101 - Lego Lord of the Rings","description":"Fragger and Michael take a look at the newly released Lego Lord of the Rings for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c9df02d-4a79-4c68-9c1c-92eb428af77c/sm/ep6178.jpg","duration":422,"publication_date":"2012-11-27T20:25:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-2","changefreq":"weekly","video":[{"title":"2012:E12 - Left 4 Dead 2","description":"Jack and Ray (and Burnie and Joel) take a look at Five (Six) Facts in Left 4 Dead 2!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb7416b1-54a6-4679-96fa-46ace5a2ec9f/sm/ep6177.jpg","duration":309,"publication_date":"2012-11-27T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-6","changefreq":"weekly","video":[{"title":"2012:E48 - Week #140","description":"Jack and Geoff bring forth some news and game information for this post-Thanksgiving week! Don't forget to check out the Rooster Teeth store and use the code \"10year\" to get 10% until midnight on Cyber Monday! Http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5409daa-261f-4b60-82af-a4f3f33f6cf2/sm/ep6176.jpg","duration":331,"publication_date":"2012-11-26T23:36:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-11","changefreq":"weekly","video":[{"title":"2012:E76 - Killing Floor","description":"Get enough undead last week Yeah, we still had some tasty brains left... so this week it's AH vs Killing Floor!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0971f8a4-e71b-4d5a-a8bd-358d7fe342e5/sm/ep6175.jpg","duration":2755,"publication_date":"2012-11-26T23:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-15","changefreq":"weekly","video":[{"title":"S1:E15 - Episode 15","description":"This week we have\nMinecraft 26 - \nHalo 4 Regicide - \nBlack Ops 2 Zombies -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62f389fe-0bea-457a-8ef7-7d5835db9d2c/sm/ep6174.jpg","duration":133,"publication_date":"2012-11-26T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-standard-equipment-may-vary-guide","changefreq":"weekly","video":[{"title":"2012:E1707 - Standard Equipment May Vary Guide","description":"X-Ray and Vav show you how to get the \"Standard Equipment May Vary\" achievement in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-standard-equipment-may-vary-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0cac8141-1d01-4545-be1d-8a2ba937aff0/sm/ep6173.jpg","duration":286,"publication_date":"2012-11-26T22:05:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012-3","changefreq":"weekly","video":[{"title":"2012:E5 - Halo 4 - Regicide","description":"Let's Play set ups: they always go down smooth. Enjoy the Halo 4 Regicide aftertaste.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18b55031-3de6-4a93-87c9-f24db1d343ef/sm/ep6172.jpg","duration":88,"publication_date":"2012-11-26T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-12","changefreq":"weekly","video":[{"title":"2012:E111 - Hitman Absolution - Nuke Easter Egg","description":"Gavin and Ray show you a slightly abrupt way to end the Factory Compound Level in Hitman Absolution","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0199694e-c2f7-4b41-bb78-d12eb65a31f0/sm/ep6171.jpg","duration":65,"publication_date":"2012-11-26T20:58:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-10","changefreq":"weekly","video":[{"title":"2012:E110 - RvB Easter Egg Number 4","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49d40749-c780-40f5-aab1-1b56f9f6b639/sm/ep6170.jpg","duration":88,"publication_date":"2012-11-26T19:24:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-hungry-games","changefreq":"weekly","video":[{"title":"2012:E372 - Game Night: Halo Reach - Hungry Games","description":"Geoff and Caleb take The Hunger Games for a spin in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-hungry-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53c5cae7-6cef-47e0-9c22-78b6bc8cc5d0/sm/ep6168.jpg","duration":87,"publication_date":"2012-11-24T01:28:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-6","changefreq":"weekly","video":[{"title":"2012:E48 - Volume 114","description":"Jack and Geoff continue to bring the funny with today's episode of Fails of the Weak! Gobble Gobble!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4de6e6d-861a-4b6c-8892-75ff7e4ecf0d/sm/ep6167.jpg","duration":259,"publication_date":"2012-11-23T20:33:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-5","changefreq":"weekly","video":[{"title":"2012:E75 - Minecraft Episode 26","description":"In this week's gripping episode, the boys try and grow a melon underground. This is Minecraft at it's most useless. Watch Geoff, Jack, Michael, Gavin and Ray do literally nothing useful for 30 minutes!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61a94235-1d2c-4a80-b147-a6d83bb677ae/sm/ep6166.jpg","duration":1754,"publication_date":"2012-11-23T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-4","changefreq":"weekly","video":[{"title":"2012:E47 - Men in Black - Alien Crisis","description":"Michael hates the world. Men in Black exists in our world. This won't go well.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c36883e0-98ea-407a-960f-f0109b2e608e/sm/ep6164.jpg","duration":170,"publication_date":"2012-11-23T02:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-evolution-achievement-pig-32-michael-vs-geoff","changefreq":"weekly","video":[{"title":"2012:E30 - Trials Evolution - Achievement PIG #32 (Michael vs. Geoff)","description":"Michael and Geoff get all Evolutiony in Trials PIG. Who will win Thanksgiving Edition!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-evolution-achievement-pig-32-michael-vs-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d018d37-13fb-4b96-aa4f-e0d40d2ef64a/sm/ep6163.jpg","duration":233,"publication_date":"2012-11-22T18:34:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ragnarok-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E371 - Ragnarok Map Walkthrough","description":"Jack and Geoff take a close look at the Ragnarok multiplayer map in Halo 4! Watch and learn how to double up your experience in Halo 4 with Mountain Dew!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ragnarok-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0402155-3de4-4603-a8ed-4a4933589a59/sm/ep6162.jpg","duration":322,"publication_date":"2012-11-22T15:47:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-3","changefreq":"weekly","video":[{"title":"2012:E47 - Halo HORSE #102","description":"Jack and Ray face off in Halo 4 to see who is the better of the non-skill related warriors!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3d8aa18-440f-4e57-be18-b7df19552cd2/sm/ep6160.jpg","duration":285,"publication_date":"2012-11-22T00:06:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-4","changefreq":"weekly","video":[{"title":"2012:E74 - Halo 4 - Regicide Episode 3","description":"This week the guys are back in Halo 4 where they face off in three games of Regicide. Will Ray continue to win every game Will Gavin continue to think he's good Will Grif ever stop being so lazy Tune in and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8842309a-61d0-4ae6-ab11-1fa55526de25/sm/ep6159.jpg","duration":1288,"publication_date":"2012-11-21T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-3","changefreq":"weekly","video":[{"title":"2012:E122 - Hitman Absolution - Just Chillin","description":"Gav and Geoff show you how to take a break from the shooting, and just hang out with the lads in Hitman Absolution","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b7c47d8-9df7-4b6a-9541-f1018b272122/sm/ep6158.jpg","duration":83,"publication_date":"2012-11-21T22:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tower-of-babble-guide","changefreq":"weekly","video":[{"title":"2012:E1706 - Tower Of Babble Guide","description":"Ray and Geoff show you how to get the \"Tower Of Babble\" achievement in Call Of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tower-of-babble-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfe996c8-052e-456c-a04f-a8edd69c2774/sm/ep6157.jpg","duration":241,"publication_date":"2012-11-21T17:58:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-high-iq-achievement-guide-part-3","changefreq":"weekly","video":[{"title":"2012:E1705 - High IQ Achievement Guide (Part 3)","description":"Geoff and Lindsay wrap up the final three levels of hidden intel, to get the High IQ Achievement in Call of Duty: Black Ops 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-high-iq-achievement-guide-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba356913-0fb5-4a40-b511-f4f01f1f4f74/sm/ep6156.jpg","duration":150,"publication_date":"2012-11-21T16:22:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-4","changefreq":"weekly","video":[{"title":"2012:E109 - Loch Ness Monster Easter Egg","description":"Geoff and Gavin show you where to find the Loch Ness Monster Easter Egg in Hitman Absolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/144e605b-9efa-476a-b33a-eb9d0aeb1683/sm/ep6154.jpg","duration":89,"publication_date":"2012-11-20T22:55:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012","changefreq":"weekly","video":[{"title":"2012:E31 - Trials Evolution: Trials Files #31","description":"Geoff and Jack enjoy a special Thanksgiving edition of Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa0c27ed-0cf9-4668-be2d-c5739cce15bd/sm/ep6153.jpg","duration":117,"publication_date":"2012-11-20T22:24:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012","changefreq":"weekly","video":[{"title":"2012:E100 - Hitman Absolution","description":"Gavin and Ray (Vav and X-Ray) are excited because after 6 years, a brand new freaking Hitman game came out!","player_loc":"https://roosterteeth.com/embed/this-is-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b88edcb-a759-456d-adfa-0e81ed7ac478/sm/ep6152.jpg","duration":480,"publication_date":"2012-11-20T21:03:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nuketown-zombies-mannequin-song","changefreq":"weekly","video":[{"title":"2012:E370 - Nuketown Zombies Mannequin Song","description":"Ray and Geoff show you how to find another hidden song in Nuketown Zombies in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nuketown-zombies-mannequin-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72c956b8-95cb-4987-8bf9-6e20dafc351b/sm/ep6151.jpg","duration":135,"publication_date":"2012-11-20T19:25:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012","changefreq":"weekly","video":[{"title":"2012:E11 - Fallout 3","description":"Jack and Geoff take a look at Five Facts in the classic title Fallout 3. War. War never changes.","player_loc":"https://roosterteeth.com/embed/five-facts-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8117ddd0-5b44-4b1f-af6a-519d8a2091a1/sm/ep6150.jpg","duration":315,"publication_date":"2012-11-20T17:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dance-on-my-grave-guide","changefreq":"weekly","video":[{"title":"2012:E1704 - Dance On My Grave Guide","description":"X-Ray and Vav join forces to bring you the \"Dance on My Grave\" achievement guide in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dance-on-my-grave-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa143983-01b2-4cfc-9fca-96fd7bb97924/sm/ep6149.jpg","duration":96,"publication_date":"2012-11-20T16:42:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-14","changefreq":"weekly","video":[{"title":"S1:E14 - Episode 14","description":"This week's videos:\n\nMinecraft Episode 25 - \nHalo 4 Multiplayer Part 2 - \nHalo 4 Spartan Ops Episode 1 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e008d96-cac4-44ae-b3d7-8ea8b89a6185/sm/ep6148.jpg","duration":133,"publication_date":"2012-11-19T21:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012","changefreq":"weekly","video":[{"title":"2012:E108 - RvB Easter Egg Number 3","description":"Ray and Geoff show you where to find the brand new RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/179b544e-f858-4691-9ab1-12470efea5b0/sm/ep6147.jpg","duration":53,"publication_date":"2012-11-19T21:32:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012","changefreq":"weekly","video":[{"title":"2012:E47 - Week #139","description":"Jack and Geoff are here with the first AHWU that is post-WiiU launch! How will it go This episode is brought to you by ONNIT and their flagship product Alpha Brain! Use the code \"HUNTER\" at checkout to get 10% off! Http://www.onnit.com/gaming","player_loc":"https://roosterteeth.com/embed/ahwu-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6eb82b17-e8f6-4646-9749-52a99cd1effc/sm/ep6146.jpg","duration":315,"publication_date":"2012-11-19T20:57:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nuketown-2025-teddy-bear-song","changefreq":"weekly","video":[{"title":"2012:E369 - Nuketown 2025 Teddy Bear Song","description":"Ray and Geoff show you where to find the hidden song in Nuketown 2025 in Call of Duty: Black Ops 2 for the Xbox 360.\r\n\r\nThanks again to houston2345 from Twitter!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nuketown-2025-teddy-bear-song","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/435ac61b-36d7-4090-ab7c-65b6bbaab7b5/sm/ep6145.jpg","duration":85,"publication_date":"2012-11-19T17:40:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012","changefreq":"weekly","video":[{"title":"2012:E73 - Black Ops 2 Zombies","description":"The AH team takes on grief mode in Zombies to see who is more dangerous... the living or the dead!","player_loc":"https://roosterteeth.com/embed/lets-play-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b092a3fb-0448-44fc-af94-db25cc3b58de/sm/ep6144.jpg","duration":1627,"publication_date":"2012-11-19T16:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-91","changefreq":"weekly","video":[{"title":"2012:E72 - Minecraft Episode 25","description":"This week, Geoff, Jack, Gavin, Michael and Ray continue their quest to find a stronghold.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5f7346f-e30d-4a03-bf81-f4f9ec54ec5a/sm/ep6142.jpg","duration":2183,"publication_date":"2012-11-17T00:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-abandon-map-walkthrough","changefreq":"weekly","video":[{"title":"2012:E368 - Abandon Map Walkthrough","description":"Jack and Geoff take a look at the Abandon map in Halo 4! Watch and learn how to double up your experience in Halo 4 with Mountain Dew!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-abandon-map-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa506290-da63-497a-90dd-11f3bd166fd9/sm/ep6141.jpg","duration":219,"publication_date":"2012-11-16T23:45:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-high-iq-achievement-guide-part-2","changefreq":"weekly","video":[{"title":"2012:E1703 - High IQ Achievement Guide (Part 2)","description":"Geoff and Ray show you where to find the next batch of hidden intel in Call of Duty: Black Ops 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-high-iq-achievement-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5e07568-9b64-4b63-97ea-ec9b49d08683/sm/ep6140.jpg","duration":177,"publication_date":"2012-11-16T22:10:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-53","changefreq":"weekly","video":[{"title":"2012:E47 - Volume 113","description":"Jack and Geoff continue to bring the funny with today's episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eda56eda-d628-4642-9fbd-5e071a575107/sm/ep6138.jpg","duration":263,"publication_date":"2012-11-16T21:51:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fuel-efficient-guide","changefreq":"weekly","video":[{"title":"2012:E1702 - Fuel Efficient Guide","description":"X-Ray and Vav show you how to get the \"Fuel Efficient\" achievement in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fuel-efficient-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e67872a6-b88e-43a9-abcd-39b67013e11e/sm/ep6137.jpg","duration":123,"publication_date":"2012-11-16T21:30:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012-7","changefreq":"weekly","video":[{"title":"2012:E4 - Capture the Tower","description":"The AH guys set up for their Capture the Tower Let's Play in Minecraft. It goes flawlessly.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e084089-0a4f-431e-be57-b936c423b884/sm/ep6136.jpg","duration":134,"publication_date":"2012-11-16T21:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-the-walking-dead","changefreq":"weekly","video":[{"title":"2012:E367 - Game Night: Halo Reach - The Walking Dead","description":"Geoff and Caleb check out the farm from the Walking Dead, lovingly crafted in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-the-walking-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/079dd70a-0c6c-4a9a-8ba1-0f23eadcd2a2/sm/ep6135.jpg","duration":96,"publication_date":"2012-11-16T20:23:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-atari-easter-eff","changefreq":"weekly","video":[{"title":"2012:E366 - Atari Easter Eff","description":"Ray and Geoff show you how to find the Atari Easter Egg in the Nuketown 2025 map in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-atari-easter-eff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12160028-da5d-4112-9173-a6151e3f1dd8/sm/ep6134.jpg","duration":223,"publication_date":"2012-11-16T17:46:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-50","changefreq":"weekly","video":[{"title":"2012:E46 - Call of Duty: Black Ops II","description":"This week on Rage Quit, Michael tries the Strike Force game mode in Call of Duty: Black Ops II for the Xbox 360. He's so tactical.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/774b7b64-085b-4f9e-b4a4-5c476e5b50eb/sm/ep6133.jpg","duration":235,"publication_date":"2012-11-16T04:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-31","changefreq":"weekly","video":[{"title":"2012:E29 - Trials PIG #31","description":"Jack and Geoff get all Evolutiony in Trials PIG. Who will win","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8cde35c-7b36-4842-8af4-4b7f2f55a981/sm/ep6131.jpg","duration":314,"publication_date":"2012-11-15T23:22:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-121","changefreq":"weekly","video":[{"title":"2012:E106 - Halo 4 - Waypoint Easter Eggs","description":"Today iSayWhat and BioHRay show you how to unlock some armor through Waypoint. A link to the forum topic http://tinyurl.com/cgk8fgm","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":141,"publication_date":"2012-11-15T19:38:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-130","changefreq":"weekly","video":[{"title":"2012:E121 - Halo 4 - A Sticky Situation","description":"In this video, Preston and Aaron show you some sticky situations in Halo 4!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-130","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6736fe9b-9950-424c-80e9-454d51714de6/sm/2013912-1449783941032-maxresdefault_(17).jpg","duration":87,"publication_date":"2012-11-15T19:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-chief-smash-guide-v3","changefreq":"weekly","video":[{"title":"2012:E1699 - Halo 4 - Chief, Smash! Guide v3","description":"AAXIII has achievement.\r\nI iz can shows u.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-chief-smash-guide-v3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":55,"publication_date":"2012-11-15T19:22:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-120","changefreq":"weekly","video":[{"title":"2012:E105 - Halo 4 - Conan O'Brien Easter Egg","description":"Styx shows you how to find an Easter Egg in Halo 4 featuring Conan O'Brien.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":94,"publication_date":"2012-11-15T19:13:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-lights-of-their-eyes-guide","changefreq":"weekly","video":[{"title":"2012:E1688 - The Lights Of Their Eyes Guide","description":"X-Ray and Vav show you how to get the \"The Lights Of Their Eyes\" guide in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-lights-of-their-eyes-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e4eb2ec-2c01-46ba-ad0b-8cbc93c8b746/sm/ep6113.jpg","duration":129,"publication_date":"2012-11-15T16:57:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-83","changefreq":"weekly","video":[{"title":"2012:E71 - Halo 4 - Infinity Slayer Episode 2","description":"The gang is back in Halo 4 for more blood, guts, and glory! This time around they play another game of Infinity Slayer and then try their luck in a game of Regicide.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/651dfe9a-edea-4aa3-a45f-e9c4efb4529d/sm/ep6112.jpg","duration":1201,"publication_date":"2012-11-15T05:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-45","changefreq":"weekly","video":[{"title":"2012:E46 - Halo HORSE #101","description":"The guys from Achievement Hunter and Rooster Teeth check out Edo Sens' first Halo 4 map!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5bcb810-9f80-49cf-aa5b-d1d44841093e/sm/ep6111.jpg","duration":235,"publication_date":"2012-11-15T00:06:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hey-good-looking-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1687 - Hey Good Looking Achievement Guide","description":"Geoff and Ray show you how to get the Hey Good Looking Achievement in Call of Duty: Black Ops 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hey-good-looking-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7682d3e-69fc-485e-975a-1e3edd435d43/sm/ep6110.jpg","duration":63,"publication_date":"2012-11-14T21:37:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-53","changefreq":"weekly","video":[{"title":"2012:E99 - Halo 4","description":"Jack and Gavin take a look at the newest installment of the Halo series. This is Halo 4!","player_loc":"https://roosterteeth.com/embed/this-is-2012-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4670ede-3afb-4db8-8165-54dc12f91be2/sm/ep6109.jpg","duration":477,"publication_date":"2012-11-14T19:35:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-69","changefreq":"weekly","video":[{"title":"2012:E104 - TranZit Song Easter Egg","description":"Ray and Geoff show you how to activate the hidden song in TranZit in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdfc3643-a1aa-414a-8136-b7bef5827f75/sm/ep6108.jpg","duration":158,"publication_date":"2012-11-14T19:28:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-48","changefreq":"weekly","video":[{"title":"2012:E120 - Halo 4 - Mongoose Jump","description":"Geoff and Gav get some sweet air using the sticky detonator. Make sure to say hello to the moon when you're up there.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba5e46f0-c58c-4dc3-b1ca-9ca6a7435157/sm/ep6107.jpg","duration":112,"publication_date":"2012-11-14T18:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-chief-smash-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1686 - Chief, Smash! Achievement Guide","description":"Geoff and Michael show you how to get the Chief, Smash! Achievement in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-chief-smash-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1125c1be-11b6-405f-a291-f298319465b2/sm/ep6106.jpg","duration":103,"publication_date":"2012-11-14T18:10:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-happy-hour-guide","changefreq":"weekly","video":[{"title":"2012:E1685 - Happy Hour Guide","description":"Ray and Geoff show you how to get the \"Happy Hour\" achievement in Call of Duty: Black Ops 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-happy-hour-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be0c9b20-816a-4a67-8dce-0075deb1450e/sm/ep6105.jpg","duration":168,"publication_date":"2012-11-14T18:04:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-33","changefreq":"weekly","video":[{"title":"2012:E30 - Trials Evolution: Trials Files #30","description":"Geoff and Jack take a bite out of Trials in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f54bb5-0a2e-46c1-8fcc-c1c3149314be/sm/ep6103.jpg","duration":91,"publication_date":"2012-11-13T22:30:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-iq-part-1","changefreq":"weekly","video":[{"title":"2012:E365 - High IQ Part 1","description":"Geoff and Ray show you where to find the hidden intel in Call of Duty: Black Ops 2. (Part 1)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-iq-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef202f8d-a5ed-4267-9bbf-2479474e62d1/sm/ep6102.jpg","duration":189,"publication_date":"2012-11-13T22:16:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-man-of-the-people-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1684 - Man of the People Achievement Guide","description":"Geoff and Ray show you how to get the Man of the People Achievement in Call of Duty: Black Ops 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-man-of-the-people-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d1bfb62-2451-42e3-8bc3-c057fd199dcc/sm/ep6101.jpg","duration":106,"publication_date":"2012-11-13T22:01:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-13","changefreq":"weekly","video":[{"title":"2012:E10 - Alan Wake","description":"Jack and Geoff visit Bright Falls and learn Five Facts about Alan Wake!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca5e49b5-c204-4558-bfd1-f26a868544a6/sm/ep6100.jpg","duration":286,"publication_date":"2012-11-13T21:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-66","changefreq":"weekly","video":[{"title":"2012:E103 - Halo 4: Grunt Rocket Jump - Easter Egg","description":"Gav and Geoff give you an insight into what grunts get up to when they think nobody is watching...","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3381c3cf-0ce8-4ee5-b3d1-611951351636/sm/ep6099.jpg","duration":93,"publication_date":"2012-11-13T21:14:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-64","changefreq":"weekly","video":[{"title":"2012:E102 - Dancing Grunts Easter Egg","description":"Geoff and Michael show you where to find the Dancing Grunts Easter Egg in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1838271b-1093-4705-a9b9-89bcd2a6a1cc/sm/ep6096.jpg","duration":104,"publication_date":"2012-11-13T17:13:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-one-left-behind-guide","changefreq":"weekly","video":[{"title":"2012:E1682 - No One Left Behind Guide","description":"X-Ray and Vav show you how to get the No One Left Behind achievement in Halo 4 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-one-left-behind-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a262e183-6967-4cf6-a9b9-51e2e64abc2d/sm/ep6095.jpg","duration":222,"publication_date":"2012-11-13T15:41:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-78","changefreq":"weekly","video":[{"title":"2012:E70 - Spartan Ops Episode 1","description":"Jack, Ryan, Ray and Michael take on the first episode of spartan ops!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89b21787-022e-4ec1-a247-e200b507d42d/sm/ep6094.jpg","duration":2297,"publication_date":"2012-11-12T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-explore-the-floor-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1681 - Explore the Floor Achievement Guide","description":"Michael and Geoff show you how to get the \"Explore the Floor\" Achievement in Halo 4 for Xbox 360. Sometimes the hunter becomes the hunted.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-explore-the-floor-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c0d2c36-bbb1-49be-8b09-3b962bda0dc9/sm/ep6093.jpg","duration":103,"publication_date":"2012-11-12T21:31:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-boss-the-wither","changefreq":"weekly","video":[{"title":"2012:E364 - Minecraft Boss - The Wither","description":"Gavin and Ryan tackle the second mob boss in minecraft on the PC","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-boss-the-wither","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a7d6f2b-a353-4ed3-a94c-3a4cf45211f9/sm/ep6092.jpg","duration":123,"publication_date":"2012-11-12T20:07:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-13","changefreq":"weekly","video":[{"title":"S1:E13 - Episode 13","description":"This week's videos:\n\nHalo 4 - \nMann vs Machine - \nMinecraft -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98dc3c1b-5564-40c6-b30f-31816a804036/sm/ep6091.jpg","duration":136,"publication_date":"2012-11-12T20:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-44","changefreq":"weekly","video":[{"title":"2012:E46 - Week #138","description":"Jack and Geoff are here with more AHWU! Don't forget to pick up your Achievement Hunter Boy Band poster now! http://roosterteeth.com/store/product.phpid=339 And our slap bracelets are coming back in stock soon!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e1571a9-e164-4a23-ba20-80f5d7c68c52/sm/ep6090.jpg","duration":272,"publication_date":"2012-11-12T20:02:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-63","changefreq":"weekly","video":[{"title":"2012:E101 - RvB Easter Egg Number 2","description":"Ray and Geoff show you where to find another RvB Easter Egg in Spartan Ops in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf3cf9e9-1191-4a37-959e-ae0ef22cf499/sm/ep6089.jpg","duration":117,"publication_date":"2012-11-12T17:12:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-44","changefreq":"weekly","video":[{"title":"2012:E46 - Volume 112","description":"Jack and Gavin check out another batch of Halo: Reach failure! Keep an eye on http://www.achievementhunter.com/ for information about Halo 4 Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f088cff-3dc1-4760-a3d6-47b88d391f7e/sm/ep6087.jpg","duration":265,"publication_date":"2012-11-09T22:31:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-75","changefreq":"weekly","video":[{"title":"2012:E69 - Minecraft 24","description":"Geoff, Gavin, Jack, Michael, Ray and Ryan go head to head in a capture the flag match. Except due to the lack of flags in minecraft, they are capturing the TOWER OF PIMPS!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edb6b520-8e5b-4a67-94f0-a1b9ff619ed5/sm/ep6086.jpg","duration":1667,"publication_date":"2012-11-09T20:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-give-him-the-stick-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1680 - Halo 4: Give Him the Stick - Achievement Guide","description":"Geoff and Gav show you how to get the level specific achievement in mission 7 of Halo 4","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-give-him-the-stick-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/565d552b-5eb4-4ce0-a917-e1e49b8719a5/sm/ep6084.jpg","duration":94,"publication_date":"2012-11-09T20:14:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-terminus-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1679 - Terminus Achievement Guide","description":"Ray and Gavin show you how to get the Terminus achievement in Halo 4 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-terminus-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70ae1855-9023-46cc-8270-dfeb3b23e110/sm/ep6083.jpg","duration":198,"publication_date":"2012-11-09T19:49:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-60","changefreq":"weekly","video":[{"title":"2012:E99 - Assassin Turkey Easter Egg","description":"Michael and Lindsay show you the Assassin Turkey Easter Egg in Assassin's Creed III for the Xbox 360. \r\n\r\nKonami Code: Up, Up, Down, Down, Left, Right, Left, Right, B, A","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2dbc471-99c8-418a-960a-1a205fbceee5/sm/ep6082.jpg","duration":106,"publication_date":"2012-11-09T18:17:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-wonders-of-the-world-pt-3","changefreq":"weekly","video":[{"title":"2012:E363 - Game Night: Halo Reach - Wonders of the World Pt 3","description":"Geoff and Caleb take another tour around the world in this week's Game Night in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-wonders-of-the-world-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a16f834-82f0-4fcf-bfb5-7c4ff470be22/sm/ep6081.jpg","duration":100,"publication_date":"2012-11-09T17:59:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-41","changefreq":"weekly","video":[{"title":"2012:E45 - Virtua Tennis 3","description":"This week on Rage Quit, Michael plays Virtua Tennis 3, but only after creating the greatest Tennis player known to man.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2401fb32-e0c3-45d6-b95f-8d912bf9b04a/sm/ep6079.jpg","duration":270,"publication_date":"2012-11-09T00:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-30","changefreq":"weekly","video":[{"title":"2012:E28 - Trials PIG #30","description":"Ray and Geoff take a break from Halo 4 and attempt to best each other in Trials PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22259062-f32a-44ce-9d22-fd9cee866fe3/sm/ep6078.jpg","duration":249,"publication_date":"2012-11-08T23:15:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-october-2012","changefreq":"weekly","video":[{"title":"2012:E10 - Best fails of October 2012","description":"Another month, another collection of your favorite fails for the month of October!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-october-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61064e69-2bb8-45a0-b085-b1e7ee0638ad/sm/ep6077.jpg","duration":179,"publication_date":"2012-11-08T22:05:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-58","changefreq":"weekly","video":[{"title":"2012:E98 - Double Rainbow Easter Egg","description":"Ray and Geoff show you where to find the Double Rainbow Easter Egg in Halo 4 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bafc81a0-c220-4638-88fa-fc24dd4354e5/sm/ep6076.jpg","duration":57,"publication_date":"2012-11-08T21:11:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-midnight-launch-guide","changefreq":"weekly","video":[{"title":"2012:E1678 - Halo 4 - Midnight Launch Guide","description":"Chris makes you wait until midnight to do the Midnight Launch achievement in Halo 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-midnight-launch-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":83,"publication_date":"2012-11-08T06:50:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-terminal-locations-v2","changefreq":"weekly","video":[{"title":"2012:E362 - Halo 4 - Terminal Locations v2","description":"In this video, Nick and Preston from the site show you where to find the terminals in Halo 4's campaign!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-terminal-locations-v2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf2ffe06-832d-4c0d-8d99-57e1db621f26/sm/2013912-1449783921973-maxresdefault_(16).jpg","duration":132,"publication_date":"2012-11-08T06:44:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-explore-the-floor-v4","changefreq":"weekly","video":[{"title":"2012:E361 - Halo 4 - Explore the Floor v4","description":"CraigMac shows you how to trick hunters for gamerscore","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-explore-the-floor-v4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e599b396-5ba0-42ad-bdf0-4e11600f8b9c/sm/2013912-1449783897861-maxresdefault_(15).jpg","duration":87,"publication_date":"2012-11-08T06:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-67","changefreq":"weekly","video":[{"title":"2012:E68 - Halo 4 - Infinity Slayer","description":"The Achievement Hunter lads finally get to play Halo 4! Watch Geoff, Jack, Gavin, Michael, Ray and Ryan murder the crap out of each other in two Free-For-All Infinity Slayer matches!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab95d157-9b53-47ef-9bb3-1cc83c95bc8a/sm/ep6065.jpg","duration":1308,"publication_date":"2012-11-08T01:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-34","changefreq":"weekly","video":[{"title":"2012:E45 - Halo HORSE #100","description":"Jack and Geoff bid adeiu to Halo: Reach and make their first ever full blown HORSE episode in Halo 4! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1615ffc-7b8f-41b7-a0c0-6e10aa763c4e/sm/ep6064.jpg","duration":351,"publication_date":"2012-11-08T00:08:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-this-is-my-rifle-this-is-my-gun-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1670 - Halo 4: This is my Rifle, this is my Gun - Achievement Guide","description":"Geoff and Gav share a smidge of their tactics for the 3rd mission achievement in Halo 4","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-this-is-my-rifle-this-is-my-gun-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcf44de2-d546-4e49-803b-cce8697dd0b2/sm/ep6063.jpg","duration":88,"publication_date":"2012-11-07T22:12:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-38","changefreq":"weekly","video":[{"title":"2012:E119 - Minecraft - Ding Dong Dead","description":"Gavin and Ryan design a deterrent for unwanted guests","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9554ae43-de1c-4043-b96e-9e628408ba1a/sm/ep6062.jpg","duration":62,"publication_date":"2012-11-07T22:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-roses-vs-violets-guide","changefreq":"weekly","video":[{"title":"2012:E1669 - Roses vs Violets Guide","description":"Ray and Geoff show you how to get the Roses vs Violets achievement in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-roses-vs-violets-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5609145a-0b9a-4d11-bbab-bdcaf2f47f99/sm/ep6061.jpg","duration":83,"publication_date":"2012-11-07T21:17:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-knight-in-white-assassination-guide","changefreq":"weekly","video":[{"title":"2012:E1668 - Knight in White Assassination Guide","description":"Ray and Michael show you how to get the \"Knight in White Assassination\" achievement in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-knight-in-white-assassination-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9745c049-e249-4929-b494-f919a75db42d/sm/ep6060.jpg","duration":83,"publication_date":"2012-11-07T19:29:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-4-digging-up-the-past-v3","changefreq":"weekly","video":[{"title":"2012:E360 - Halo 4 - Digging Up the Past v3","description":"Get your shovels, because CraigMac is going to show you how to find 20 gamerscore in Halo 4!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-4-digging-up-the-past-v3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94d26adb-72eb-437e-bdfc-04bca1818a20/sm/2013912-1449783880261-maxresdefault_(14).jpg","duration":58,"publication_date":"2012-11-07T17:46:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-99","changefreq":"weekly","video":[{"title":"2012:E98 - Halo 4","description":"A little overview of Halo 4.\nenjoy everyone.","player_loc":"https://roosterteeth.com/embed/this-is-2012-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a09a650b-8ec7-44d7-b7d0-916861213643/sm/2013912-1449783859061-maxresdefault_(13).jpg","duration":124,"publication_date":"2012-11-07T17:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-9-achievements","changefreq":"weekly","video":[{"title":"2012:E1654 - 9 Achievements","description":"Ray and Geoff show you how to get the PWND, Badge, Game Changer, The Cartographer, Sharing is Caring, Snapshot!, The Director, Armorer, and What a Poser! achievements in Halo 4 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-9-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/605a2960-feb9-4109-a95c-ce7da2613f5a/sm/ep6042.jpg","duration":254,"publication_date":"2012-11-07T16:55:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-bros-to-the-close-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1653 - Halo 4: Bros to the Close - Achievement Guide","description":"Gav and Geoff help get the marines through a tough patch of giant teleporting bastards in Mission 4 of Halo 4. HEADCOUNT!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-bros-to-the-close-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e337c558-c8f0-4db3-a805-880cbb59238c/sm/ep6040.jpg","duration":165,"publication_date":"2012-11-07T02:08:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-midnight-launch-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1652 - Halo 4: Midnight Launch - Achievement Guide","description":"Geoff and Gavin go to Alaska and then show you how to get this sneaky Level 2 achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-midnight-launch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45d22810-6d83-4e79-8382-b69478f1a31b/sm/ep6039.jpg","duration":105,"publication_date":"2012-11-06T22:47:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-47","changefreq":"weekly","video":[{"title":"2012:E97 - Halo 4: HoloHump - Easter Egg","description":"Geoff and Gav hump out their testicular frustrations in Halo 4 multiplayer. Staple this, dick.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b04dae55-6538-4749-a539-b25131e85103/sm/ep6038.jpg","duration":59,"publication_date":"2012-11-06T22:44:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-4-digging-up-the-past-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1651 - Halo 4: Digging Up The Past - Achievement Guide","description":"Geoff and Gavin show you how to get the first achievement in the Halo 4 campaign. Xbox 360, bitches!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-4-digging-up-the-past-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fec732b-5e86-4fb8-82b9-df5a29941941/sm/ep6037.jpg","duration":75,"publication_date":"2012-11-06T22:40:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-21","changefreq":"weekly","video":[{"title":"2012:E29 - Trials Evolution: Trials Files #29","description":"Geoff and Jack check out another custom map in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84cef27e-cf65-4349-b19e-9560a10f1cae/sm/ep6036.jpg","duration":94,"publication_date":"2012-11-06T22:26:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-10","changefreq":"weekly","video":[{"title":"2012:E9 - Borderlands","description":"Jack and Geoff take a look at Five Facts in the game Borderlands. There Ain't No Rest for the Wicked!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7493be7-377c-4659-8a28-950a2b52a9df/sm/ep6035.jpg","duration":283,"publication_date":"2012-11-06T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-29","changefreq":"weekly","video":[{"title":"2012:E97 - Assassin's Creed III","description":"Jack and Michael take a look at one of the most anticipated games of the year!","player_loc":"https://roosterteeth.com/embed/this-is-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d063f9d-28c3-409d-8657-77ec8c3fc22f/sm/ep6034.jpg","duration":409,"publication_date":"2012-11-06T00:34:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-29","changefreq":"weekly","video":[{"title":"2012:E45 - Week #137","description":"Jack and Geoff experience power loss in this week's episode of AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a46ce4a-5cb6-4f94-b27b-885fbb8cb67a/sm/ep6033.jpg","duration":473,"publication_date":"2012-11-05T23:51:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-54","changefreq":"weekly","video":[{"title":"2012:E67 - Mann Vs Machine Part 2 - Wave666","description":"In honor of the surviving another terrifying night of Halloween we present part 2 of our Mann Vs Machine Let's Play! This time Geoff, Jack, Ray, Michael, Gavin and Ryan take on the hordes of the undead in Wave 666... Will the zombies be easier on them than the machines were","player_loc":"https://roosterteeth.com/embed/lets-play-2012-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38b6b3e0-cd26-43ca-9f60-d86a74a59fbb/sm/ep6032.jpg","duration":1539,"publication_date":"2012-11-05T22:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-12","changefreq":"weekly","video":[{"title":"S1:E12 - Episode 12","description":"Here are some sexy moments from:\nAssassin's Creed 3 - \nMinecraft Episode 23 - \nPayday The Heist -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/609c0b7a-58a5-4812-8ea9-907829ca609f/sm/ep6031.jpg","duration":137,"publication_date":"2012-11-05T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-28","changefreq":"weekly","video":[{"title":"2012:E96 - Need For Speed: Most Wanted","description":"Geoff and Jack take a look at the Achievements and gameplay for the newly released Need for Speed: Most Wanted, on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f3a2d51-4dcd-4042-b551-8d6018d90689/sm/ep6029.jpg","duration":324,"publication_date":"2012-11-05T19:47:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-assassins-creed-3-spit-roast","changefreq":"weekly","video":[{"title":"2012:E358 - Assassin's Creed 3 - Spit Roast","description":"UnclePete here showing you how to get the achievement \"Spit Roast\" in Assassin's Creed 3!\r\n\r\nEnjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-assassins-creed-3-spit-roast","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0bebd8d-9ad7-4d3f-bd31-215de455186c/sm/2013912-1449783813567-maxresdefault_(12).jpg","duration":56,"publication_date":"2012-11-05T18:54:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-126","changefreq":"weekly","video":[{"title":"2012:E118 - Minecraft - Checkers of Pimps!","description":"In this video, Preston and Nick show you checkers in Minecraft! It's so exciting, you won't be able sit still!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-126","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41ec2d0e-667d-47a6-81b0-a2e70ba37a5c/sm/2013912-1449783787528-maxresdefault_(11).jpg","duration":136,"publication_date":"2012-11-05T18:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-125","changefreq":"weekly","video":[{"title":"2012:E117 - Minecraft - Gem Hunt at Mad Maze Manse","description":"A fun game of puzzles, traps and treasure. Play by yourself to see how much you can find, or play against up to 5 friends to see who can build a Tower of Pimps worth 10 points first.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-125","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":210,"publication_date":"2012-11-05T18:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-tips-combination-door","changefreq":"weekly","video":[{"title":"2012:E357 - Minecraft Tips - Combination Door","description":"An easy door that you can make with levers and pistons.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-tips-combination-door","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4433c76a-0cf8-424b-8c22-0afa8a965438/sm/2013912-1449783733407-maxresdefault_(10).jpg","duration":84,"publication_date":"2012-11-05T18:29:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-124","changefreq":"weekly","video":[{"title":"2012:E116 - Dishonored - Giving Head","description":"Keegan aka Irishrocker1 shows you how to give and receive head in Dishonored.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-124","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14a8df30-964b-45c8-b0a3-dcc4ae17cb72/sm/2013912-1449783714177-maxresdefault_(9).jpg","duration":107,"publication_date":"2012-11-05T18:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-98","changefreq":"weekly","video":[{"title":"2012:E95 - Assassin's Creed 3","description":"AxialMatt and CombatWombat bring a \"This Is..\" showing off your latest time traveling adventure in the Assassin's Creed series.","player_loc":"https://roosterteeth.com/embed/this-is-2012-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30c8bee8-21f2-49ec-b610-3000ad3cb774/sm/2013912-1449783693786-maxresdefault_(8).jpg","duration":579,"publication_date":"2012-11-05T17:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-patient-zero","changefreq":"weekly","video":[{"title":"2012:E356 - Minecraft - Patient Zero","description":"Michael and Ryan experiment on the village people using the new 1.4.2 update to Minecraft PC!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-patient-zero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f10e12e-82b0-4b55-97ce-dccb80cfb452/sm/ep6012.jpg","duration":143,"publication_date":"2012-11-02T22:55:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-pretty-scary-update-witch-hunt","changefreq":"weekly","video":[{"title":"2012:E355 - Minecraft Pretty Scary Update - Witch Hunt","description":"Gavin and Lindsay show you the Witch in Minecraft minecraft update on the PC. Pour some bev in your cauldron and have a gander.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-pretty-scary-update-witch-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efab602f-146a-4063-973f-fb012be83343/sm/ep6011.jpg","duration":123,"publication_date":"2012-11-02T21:02:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-26","changefreq":"weekly","video":[{"title":"2012:E45 - Volume 111","description":"Jack and Geoff are here with an aliteration of a Fails of the Weak. One One One!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c88e51ea-e422-4785-8f60-e936f00d4739/sm/ep6010.jpg","duration":236,"publication_date":"2012-11-02T20:13:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-46","changefreq":"weekly","video":[{"title":"2012:E66 - Minecraft 23 - Hunger Games","description":"In by far the most requested minecraft let's play, Geoff, Jack, Michael, Gavin, Ray and Caleb fight to the death in the Achievement Hunter Hunger Games. \n\nMap made by StrikingHobbit","player_loc":"https://roosterteeth.com/embed/lets-play-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac654274-f41f-48ff-a39c-7fb5fca4426c/sm/ep6009.jpg","duration":1597,"publication_date":"2012-11-02T19:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dirty-laundry-guide","changefreq":"weekly","video":[{"title":"2012:E1640 - Dirty Laundry Guide","description":"Ray and Michael show you how to get the Dirty Laundry achievement in Medal of Honor:Warfighter for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dirty-laundry-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83bbca4b-cc35-4854-9856-f2fca51028e2/sm/ep6008.jpg","duration":65,"publication_date":"2012-11-02T19:28:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-cwnage","changefreq":"weekly","video":[{"title":"2012:E354 - Game Night: Halo Reach - Cwnage","description":"Geoff and Caleb shoot some cones in this week's Game Night in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-cwnage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5318f3e-5fc0-499c-ab5f-54de4d5b3931/sm/ep6007.jpg","duration":75,"publication_date":"2012-11-02T18:26:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lessons-in-love-from-a-founding-father","changefreq":"weekly","video":[{"title":"2012:E353 - Lessons in Love From a Founding Father","description":"Michael and Geoff whisk you into the past and bring you words of wisdom from one of America's founding fathers, Benjamin Franklin. America's original ladies man.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lessons-in-love-from-a-founding-father","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3a313af-0866-47fb-a22d-47a5c076d340/sm/ep6006.jpg","duration":142,"publication_date":"2012-11-02T15:58:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-23","changefreq":"weekly","video":[{"title":"2012:E44 - DOOM II","description":"This week on Rage Quit, Michael journeys to Hell in DOOM II for the Xbox Live Arcade. We all knew he would eventually end up there, right","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/774daece-0f88-44d3-9929-e428dbaa7c0d/sm/ep6005.jpg","duration":248,"publication_date":"2012-11-02T01:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-29","changefreq":"weekly","video":[{"title":"2012:E27 - Trials PIG #29","description":"Jack and Ray face off yet again in Trials Evolution in this week's episode of PIG. Vroom vroom!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ba29400-1557-4fd9-905b-4486e452aa54/sm/ep6003.jpg","duration":313,"publication_date":"2012-11-01T20:23:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-22","changefreq":"weekly","video":[{"title":"2012:E94 - Sleeping Dogs: Nightmare in North Point","description":"Geoff and Ray take a look at the creepy new DLC for Sleeping Dogs, Nightmare in North Point.","player_loc":"https://roosterteeth.com/embed/this-is-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49b89498-289f-4996-9daf-45ceb80e58bb/sm/ep6002.jpg","duration":366,"publication_date":"2012-11-01T19:52:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-storm-watch-guide","changefreq":"weekly","video":[{"title":"2012:E1639 - Storm Watch Guide","description":"Ray and Geoff show you how to get the \"Storm Watch\" achievement in Medal of Honor: Warfighter for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-storm-watch-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3f62d68-da91-40e4-b8bd-c9e2a43e57f7/sm/ep6001.jpg","duration":85,"publication_date":"2012-11-01T19:50:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-multiplayer-walkthrough","changefreq":"weekly","video":[{"title":"2012:E352 - Multiplayer Walkthrough","description":"Jack and Ray show you some of the finer points of the multiplayer experience in Need for Speed: Most Wanted!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-multiplayer-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ee5d6a5-96ac-49ba-972a-e8ff565b22c9/sm/ep6000.jpg","duration":301,"publication_date":"2012-11-01T19:06:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-target-practice-guide","changefreq":"weekly","video":[{"title":"2012:E1638 - Target Practice Guide","description":"Ray and Gavin show you how to get the Target Practice achievement in Medal of Honor Warfighter for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-target-practice-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d5dfad6-ebc1-4b5a-a776-2c8c482f166d/sm/ep5999.jpg","duration":71,"publication_date":"2012-11-01T14:45:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-system-shock-2","changefreq":"weekly","video":[{"title":"2012:E351 - Retro Active: System Shock 2","description":"Fragger wraps up a month of scary games with a look at System Shock 2!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-system-shock-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fb63828-7359-48f1-a83e-6f44d107e607/sm/ep5998.jpg","duration":309,"publication_date":"2012-10-31T22:31:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-21","changefreq":"weekly","video":[{"title":"2012:E44 - Halo HORSE #99","description":"In this very special episode of Achievement HORSE, Michael and Ray face off against each other... but this time, we go behind the scenes! Originally cut as Achievement HORSE #92, this is the live recorded version of that episode! Enjoy and let us know what you think about this behind the scenes look!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaf6d1bf-ade1-4392-af7e-47153adb03de/sm/ep5997.jpg","duration":836,"publication_date":"2012-10-31T22:22:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-22","changefreq":"weekly","video":[{"title":"2012:E115 - Minecraft - Felix Baumgartner","description":"Geoff, Gavin and the lads invent a new game in minecraft paying homage to Felix Baumgartner","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bffe0e85-5178-4d40-acb8-0558df641395/sm/ep5995.jpg","duration":221,"publication_date":"2012-10-31T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-40","changefreq":"weekly","video":[{"title":"2012:E65 - Assassin's Creed III (Volume 1)","description":"Jack, Geoff, Gavin, Michael and Ray go nuts in colonial times, murdering each other in Assassin's Creed III. Watch and laugh at their antics and tell Gavin to get off the damn roof!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/845490cf-c1f6-426c-8a7d-431c3150075d/sm/ep5993.jpg","duration":1498,"publication_date":"2012-10-31T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hell-money-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1636 - Hell Money Achievement Guide","description":"Geoff and Ray show you where to find the 10 hidden Hell Shrines in the new DLC for Sleeping Dogs \"Nightmare in Northpoint.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hell-money-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/926133cb-e74e-4632-af5f-073e49db05f1/sm/ep5992.jpg","duration":171,"publication_date":"2012-10-31T18:25:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-release-the-kraken-guide","changefreq":"weekly","video":[{"title":"2012:E1635 - Release the Kraken! Guide","description":"Ray and Geoff show you how to get the \"Release the Kraken!\" achievement in Medal of Honor: Warfighter for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-release-the-kraken-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/78c70adc-eb69-43bc-b449-4cd979528e61/sm/ep5990.jpg","duration":130,"publication_date":"2012-10-31T14:42:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-14","changefreq":"weekly","video":[{"title":"2012:E28 - Trials Evolution: Trials Files #28","description":"Geoff and Jack take motorcycle tour through the world of toys. Highlights include, the Simpsons, Santa, Yoshi, and the South Park gang.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a8c230b-c878-408e-b690-da003c61ce3d/sm/ep5988.jpg","duration":109,"publication_date":"2012-10-30T15:13:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-20","changefreq":"weekly","video":[{"title":"2012:E44 - Week #136","description":"Jack is running AHWU this week with Ray and Michael taking over for Geoff. Watch and enjoy their wacky antics. Also don't forget to check out the new Achievement Hunter merchandise on the RT Store! http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2451d06a-4e3e-497b-a9b7-b651aa0f40e7/sm/ep5987.jpg","duration":447,"publication_date":"2012-10-29T23:39:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-11","changefreq":"weekly","video":[{"title":"S1:E11 - Episode 11","description":"This week from the vault of dumb we have:\nLondon 2012 Part 1 - \nMari0 Part 3 - \nMinecraft Episode 22 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e71ccb4-b84f-4dfe-bd56-1ef72392eab6/sm/ep5986.jpg","duration":149,"publication_date":"2012-10-29T22:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-38","changefreq":"weekly","video":[{"title":"2012:E64 - Payday The Heist","description":"PC Let's Play time again! This time it's Achievement Hunter vs The Bank Heist in PAYDAY The Heist.... and it goes about like you'd expect.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3164947f-c24b-44da-b14f-9be3d5f54870/sm/ep5985.jpg","duration":1135,"publication_date":"2012-10-29T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-double-header-guide","changefreq":"weekly","video":[{"title":"2012:E1634 - Double Header Guide","description":"Ray and Michael show you how to get the Double Header achievement in Medal of Honor: Warfighter for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-double-header-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c2f361c-1a3b-4a11-bb1c-ef99e4a33cc8/sm/ep5984.jpg","duration":53,"publication_date":"2012-10-29T15:40:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vender-bender-guide","changefreq":"weekly","video":[{"title":"2012:E1633 - Vender Bender Guide","description":"Ray and Michael show you how to get the Vender Bender achievement in Medal of Honer: Warfighter for the Xbox 360.\r\n\r\nI'm naming my kid Jake The Snake From Adventure Time Roberts","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vender-bender-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6309e78a-418a-4191-a912-8ca7ce50c469/sm/ep5981.jpg","duration":84,"publication_date":"2012-10-26T20:56:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-wonders-of-the-world-part-2","changefreq":"weekly","video":[{"title":"2012:E350 - Game Night: Halo Reach - Wonders of the World Part 2","description":"Caleb and Geoff take a look at an awe-inspiring Halo: Reach map! It's Wonders of the World (Part 2) in Game Night!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-wonders-of-the-world-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e764663f-ec7c-45ec-ab3d-8f270f24267d/sm/ep5980.jpg","duration":122,"publication_date":"2012-10-26T19:51:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-36","changefreq":"weekly","video":[{"title":"2012:E63 - Minecraft Episode 22","description":"This week, Geoff, Jack, Michael, Gavin and Ray are joined by Caleb as they play community member AxialMatt's Grifball map. Will Geoff's team take another victory or will Jack have his revenge Let the games begin!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af90dde8-070b-47c1-97ab-9c145c9fefdd/sm/ep5979.jpg","duration":1488,"publication_date":"2012-10-26T18:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halloween-skin-pack","changefreq":"weekly","video":[{"title":"2012:E349 - Halloween Skin Pack","description":"Ray and Michael show you the new Halloween Skin's in Minecraft for the Xbox 360.\r\n\r\nShoutout to charity!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halloween-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acdde926-b736-4394-9b5e-dde9f0a780c2/sm/ep5978.jpg","duration":161,"publication_date":"2012-10-26T16:29:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-19","changefreq":"weekly","video":[{"title":"2012:E44 - Volume 110","description":"Jack and Geoff are here on this glorious Friday to deliver a batch of failure in Halo: Reach!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6165a79-8487-4d08-8c2a-62f4b849a1f7/sm/ep5977.jpg","duration":194,"publication_date":"2012-10-26T15:02:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-28","changefreq":"weekly","video":[{"title":"2012:E26 - Trials PIG #28","description":"Jack and Ray go at it in a swinging party in Trials PIG! Watch and learn from the non-masters.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9534a01e-3072-4c22-b317-ca6daff26057/sm/ep5971.jpg","duration":369,"publication_date":"2012-10-25T23:43:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-30","changefreq":"weekly","video":[{"title":"2012:E96 - Torchlight 2 - Skyrim & Borderlands 2 Easter Eggs","description":"Geoff, Jack and Ryan check out two more easter eggs in Torchlight 2! And they've ALMOST figured out who Ryan is.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c33145b1-52c3-49d3-8385-6c9d1bc0f742/sm/ep5970.jpg","duration":99,"publication_date":"2012-10-25T23:11:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-leftover-lead-guide","changefreq":"weekly","video":[{"title":"2012:E1627 - Leftover Lead Guide","description":"Ray and Mr. Game Night show you how to get the Leftover Lead achievement in Medal of Honor: Warfighter for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-leftover-lead-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48fa5346-4479-4378-93ca-bd3719b2322e/sm/ep5967.jpg","duration":115,"publication_date":"2012-10-25T16:20:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-29","changefreq":"weekly","video":[{"title":"2012:E95 - Torchlight 2 - Minecraft Easter Egg","description":"Jack, Geoff and Ray... errr Ryan (someone with an R name) show off the Minecraft easter egg from Torchlight 2!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b6b2688-f926-422a-b224-d021d84cedea/sm/ep5966.jpg","duration":100,"publication_date":"2012-10-24T22:48:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-17","changefreq":"weekly","video":[{"title":"2012:E43 - Halo HORSE #98","description":"Today's episode of HORSE pits Jack against Geoff in a battle of the Alpha Brain versus the Beta Brain. Sponsored by ONNIT! Learn more at http://www.onnit.com/","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97232fa7-a151-493c-9167-e56f455eaab9/sm/ep5965.jpg","duration":381,"publication_date":"2012-10-24T22:21:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-17","changefreq":"weekly","video":[{"title":"2012:E114 - Dishonored - Dance Party","description":"Michael and Ray live it up and hit the clubs in Dishonored for the Xbox 360. Warning: This is poppin' and lockin' like you've never seen before. Viewer discretion is advised.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26ee9130-d474-423a-9669-3da821849040/sm/ep5964.jpg","duration":152,"publication_date":"2012-10-24T21:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-123","changefreq":"weekly","video":[{"title":"2012:E113 - Minecraft - The Floor is Lava","description":"AxialMatt and Franco bring you a Things to do in that should help you relive some old childhood memories in a very real way. It burns...so much...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-123","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55b2c919-883e-41bd-a10a-62860f75c2f7/sm/2013912-1449783672599-maxresdefault_(7).jpg","duration":174,"publication_date":"2012-10-24T20:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-black-mesa","changefreq":"weekly","video":[{"title":"2012:E348 - Mod Spotlight - Black Mesa","description":"CFHhateph34r and Emphara show you the amazing Black Mesa mod for Source by the Black Mesa Mod Team! Download link: http://release.blackmesasource.com/Group link: http://roosterteeth.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-black-mesa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23a12e69-6f7f-4564-ad4f-a7f97dc7b00f/sm/2013912-1449783652769-maxresdefault_(6).jpg","duration":236,"publication_date":"2012-10-24T19:59:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-119","changefreq":"weekly","video":[{"title":"2012:E94 - Borderlands 2 - Return of The King Easter Egg","description":"AwesomeSneeze (dimitri1229 on the site) shows you how to recreate the climax of LOTR: Return of the King in Borderlands 2\r\n\r\nRequirements:\r\n1. Beat the Game\r\n2. Start True Vault Hunter Mode\r\n3. Finish the quest \"Where Angels Fear to Tread\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":106,"publication_date":"2012-10-24T19:45:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-122","changefreq":"weekly","video":[{"title":"2012:E112 - Minecraft - Staring Contest","description":"Enderman love it when you stare at them.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-122","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4a1e4d9-b8bd-4d04-8acf-b45cab3cd3a9/sm/2013912-1449783633535-maxresdefault_(5).jpg","duration":81,"publication_date":"2012-10-24T19:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ling-tings-herbal-journey","changefreq":"weekly","video":[{"title":"2012:E347 - Ling-Ting's Herbal Journey","description":"Speez shows you have to achieve this achievement in World of Warcraft. This is done in Stormstout Brewery and is much easier after it's cleared.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ling-tings-herbal-journey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e42ebd99-d31f-4c64-be17-75305611b4c7/sm/2013912-1449783593623-maxresdefault_(4).jpg","duration":241,"publication_date":"2012-10-24T19:24:49.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-121","changefreq":"weekly","video":[{"title":"2012:E111 - Minecraft - Boat Race","description":"Gargrantuan shows a race course in Minecraft where players use boats to race against one another and avoid deadly obstacles.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-121","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4631113f-d4f5-42d9-8e5c-4f11500866f0/sm/2013912-1449783571233-maxresdefault_(3).jpg","duration":184,"publication_date":"2012-10-24T17:48:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wheres-my-air-support","changefreq":"weekly","video":[{"title":"2012:E346 - Where's my Air Support?","description":"Speez shows how to achieve this achievement in World of Warcraft. This is done of the second boss, Commander Vo'jak on Heroic 5 man Niuzao Temple.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wheres-my-air-support","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/765a21f0-f3ba-462a-b290-d9a79186ff6b/sm/2013912-1449783552671-maxresdefault_(2).jpg","duration":110,"publication_date":"2012-10-24T17:45:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-120","changefreq":"weekly","video":[{"title":"2012:E110 - Minecraft - Battle of Pimps","description":"Halorulzzz shows you how to battle Pimps","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-120","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":264,"publication_date":"2012-10-24T17:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-on-the-clock-guide","changefreq":"weekly","video":[{"title":"2012:E1621 - On the Clock Guide","description":"Ray and Geoff show you how to get the \"On the Clock\" achievement in Medal of Honor: Warfighter for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-on-the-clock-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12493b5d-0db5-4c95-a75f-6101a091ae07/sm/ep5950.jpg","duration":137,"publication_date":"2012-10-24T17:35:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-23","changefreq":"weekly","video":[{"title":"2012:E62 - Geometry Wars 2 - With Geoff, Ray, Michael, and Gavin","description":"Geoff, Ray, Michael, and Gavin head into space to compete in the very popular Xbox Live Arcade game Geometry Wars: Retro Evolved 2.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebdbeabd-57e5-4f86-88b4-c4a0278d9115/sm/ep5946.jpg","duration":858,"publication_date":"2012-10-24T14:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-4","changefreq":"weekly","video":[{"title":"2012:E7 - Gears of War","description":"Jack and Geoff take a look at Epic's title of choice, Gears of War, in this episode of Five Facts! Watch and learn all about things you never knew you didn't know!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ea52605-0fe9-484a-b180-2f267783b518/sm/ep5945.jpg","duration":320,"publication_date":"2012-10-23T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lights-out-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1618 - Lights Out Achievement Guide","description":"Michael and Lindsay show you how to get the \"Lights Out\" achievements in Dishonored for the Xbox 360. Also, fools get cut.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lights-out-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a951ba59-504f-4778-bb19-d148b044f1e0/sm/ep5942.jpg","duration":174,"publication_date":"2012-10-23T19:38:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-119","changefreq":"weekly","video":[{"title":"2012:E109 - Minecraft - Golf","description":"AniMitch Shows off a fun sport you can make using the latest update GOLF.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-119","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13f0b735-02b8-4973-8b18-b2c01becd69d/sm/2013912-1449783514740-maxresdefault_(1).jpg","duration":79,"publication_date":"2012-10-23T19:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stranglehold-i-donandt-know-how-to-play-those-guide","changefreq":"weekly","video":[{"title":"2012:E1616 - Stranglehold - I Don't Know How to Play Those Guide","description":"vgun47 and Hightower go mariachi style.\r\nBut guitar case-less, getting the I don't know how to play those achievement worth 20G\r\n\r\nsuck it Antonio","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stranglehold-i-donandt-know-how-to-play-those-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":126,"publication_date":"2012-10-23T18:55:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-97","changefreq":"weekly","video":[{"title":"2012:E93 - Happy Wars","description":"This is Happy Wars the new free to play XBLA game!","player_loc":"https://roosterteeth.com/embed/this-is-2012-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb8f0942-779a-4e49-a3db-c7d823d3a3ba/sm/2013912-1449783495249-maxresdefault.jpg","duration":125,"publication_date":"2012-10-23T18:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-96","changefreq":"weekly","video":[{"title":"2012:E92 - Worms Revolution","description":"Hightower and Soothsayer take a look at Worms Revolution!","player_loc":"https://roosterteeth.com/embed/this-is-2012-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45a49298-e4fb-45e6-88d1-f7a78540ed68/sm/2013912-1449783461892-maxresdefault_(14).jpg","duration":348,"publication_date":"2012-10-23T18:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-6","changefreq":"weekly","video":[{"title":"2012:E27 - Trials Evolution: Trials Files #27","description":"Geoff and Jack get revenge on some pigs in the latest Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e443d23d-5f33-49df-8368-87c7755075b3/sm/ep5933.jpg","duration":128,"publication_date":"2012-10-23T18:15:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-118","changefreq":"weekly","video":[{"title":"2012:E108 - Minecraft - War of Inferno","description":"zap45 brings you a Things to do where you try to light your oppoent on fire with a flint and steal.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":144,"publication_date":"2012-10-23T18:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-117","changefreq":"weekly","video":[{"title":"2012:E107 - Skyrim - Where's your weapon bandit?","description":"Showing a new way to play the game. Instead of killing everyone this is about totally embarrass your enemy. Just pickpocket all of his armors and weapons so he is defensless, let him punch you once or twice and then cut his throat.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18473e28-d3e2-4db3-8b3c-5ed4dc20bd7e/sm/2013912-1449783420342-maxresdefault_(13).jpg","duration":307,"publication_date":"2012-10-23T17:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-more-quick-achievements","changefreq":"weekly","video":[{"title":"2012:E1612 - 3 More Quick Achievements!","description":"Ray and Michael show you how to get the Killer Jewelry, Maintenance Time, and Load of Scrap achievements for Serious Sam 3: BFE for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-more-quick-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/705a00d8-e865-4407-86a3-c31867d92855/sm/ep5930.jpg","duration":122,"publication_date":"2012-10-23T17:28:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-shadow-man","changefreq":"weekly","video":[{"title":"2012:E345 - Retro Active: Shadow Man","description":"Fragger takes a look at the PS1 classic, Shadow Man.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-shadow-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad29d774-85f3-4e8c-8491-ef91f471ea29/sm/ep5928.jpg","duration":235,"publication_date":"2012-10-23T15:16:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-10","changefreq":"weekly","video":[{"title":"S1:E10 - Episode 10","description":"This week we have shenanigans from:\nMari0 Part 2 - \nTrials Evolution DLC - \nMinecraft 21 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b45db23-e9df-4ea1-8ad5-2e75f4c50c63/sm/ep5927.jpg","duration":158,"publication_date":"2012-10-22T22:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-8","changefreq":"weekly","video":[{"title":"2012:E43 - Week #135","description":"Jack and Geoff bring you all the news that is fit to print in today's AHWU! Watch and learn about cool upcoming stuff and take a gander at the new Achievement Hunter backpacks that will be available soon in the Rooster Teeth store!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60e02271-218d-43e6-818d-1694d1ecefd2/sm/ep5926.jpg","duration":415,"publication_date":"2012-10-22T21:54:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-14","changefreq":"weekly","video":[{"title":"2012:E61 - Mari0 Part 3 - With Geoff, Michael, Gavin and Ryan","description":"Geoff, Michael, Gavin and Ryan continue playing the Portal levels in Mari0! Have they established teamwork yet \n\nWatch Part 1 - \nWatch Part 2 -","player_loc":"https://roosterteeth.com/embed/lets-play-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac8f216b-17f1-49bd-a07f-a1fc2b3e23db/sm/ep5925.jpg","duration":1001,"publication_date":"2012-10-22T20:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-quick-achievements","changefreq":"weekly","video":[{"title":"2012:E1611 - 3 Quick Achievements","description":"Ray and Michael show you how to get the Classic Outfit, Chain Explosion, and Trick Shot achievements for Serious Sam 3: BFE for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-quick-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7db78f6d-7119-4117-a61e-4cec8ae47cd1/sm/ep5924.jpg","duration":128,"publication_date":"2012-10-22T16:56:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-13","changefreq":"weekly","video":[{"title":"2012:E60 - Minecraft Episode 21","description":"Geoff, Jack, Gavin, Michael and Ray drop into a new world in the new 1.8 update. Everything is different! RUN!\n\nCheck out the new girl's Achievement Hunter shirt! - http://roosterteeth.com/store/product.phpid=330","player_loc":"https://roosterteeth.com/embed/lets-play-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a18e614-b107-4ae7-8485-5c353aed6426/sm/ep5922.jpg","duration":2040,"publication_date":"2012-10-19T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-music-discs-quest","changefreq":"weekly","video":[{"title":"2012:E344 - Music Discs Quest","description":"Ray and Geoff show you where to find all the hidden music discs in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-music-discs-quest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/299db1b0-191f-4cb3-b461-ffe25e246957/sm/ep5921.jpg","duration":324,"publication_date":"2012-10-19T22:07:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-8","changefreq":"weekly","video":[{"title":"2012:E43 - Volume 109","description":"Jack and sometimes Geoff are here to look a fantastic batch of goodies from the world of Halo!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e63daad2-b3ef-44bc-a40f-aae57bf16b82/sm/ep5919.jpg","duration":237,"publication_date":"2012-10-19T21:04:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-107","changefreq":"weekly","video":[{"title":"2012:E91 - Mine & Mercy is the Mark","description":"Michael and Gavin show you how to get the \"This is Mine\" & \"Mercy is the Mark\" achievements in Dishonored for the Xbox 360. \n\nWill Geoff's meeting ever end Tune in next time to find out!","player_loc":"https://roosterteeth.com/embed/this-is-2012-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fb5d893-828e-468c-979d-f61a78d9871b/sm/ep5918.jpg","duration":203,"publication_date":"2012-10-19T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-hall-conquest","changefreq":"weekly","video":[{"title":"2012:E343 - Game Night: Halo Reach - Hall Conquest","description":"Geoff and Caleb play a little Hall Conquest in the latest episode of Game Night in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-hall-conquest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df89a38a-4afd-4890-ab08-6f054467b071/sm/ep5916.jpg","duration":81,"publication_date":"2012-10-19T16:03:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-11","changefreq":"weekly","video":[{"title":"2012:E92 - Bioshock Easter Egg","description":"Ray and Michael show you where to find the Bioshock Easter Egg in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76f5844d-10dc-4060-93c4-fa815ffae21e/sm/ep5915.jpg","duration":115,"publication_date":"2012-10-19T15:28:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-6","changefreq":"weekly","video":[{"title":"2012:E42 - Dishonored","description":"This week on Rage Quit, Michael attempts to save a damsel in distress in Dishonored for the Xbox 360. Ladies beware.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d642778d-37bf-47c9-9d67-71cee8bc77fc/sm/ep5914.jpg","duration":233,"publication_date":"2012-10-19T03:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-27","changefreq":"weekly","video":[{"title":"2012:E25 - Trials PIG #27","description":"After going head-to-head in yesterday's Halo HORSE, will Geoff avenge his 3-0 shutout Watch and learn!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34761e56-d764-4cc7-9197-1c65f622e5b1/sm/ep5912.jpg","duration":248,"publication_date":"2012-10-18T22:39:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-two-missable-achievements","changefreq":"weekly","video":[{"title":"2012:E1609 - Two missable Achievements","description":"Geoff and Jack show you how to get two missable Achievements in Fable: The Journey, \"Wheeee! and Toasty\".","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-two-missable-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1fc4722-a77e-4247-9568-e08c03df3a62/sm/ep5911.jpg","duration":127,"publication_date":"2012-10-18T21:34:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012-2","changefreq":"weekly","video":[{"title":"2012:E3 - Messin' With Jacksquatch","description":"When Jack is away, the rest of AH will make him miserable.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f58d15c-5dfe-484c-a13a-917f0537e81a/sm/ep5910.jpg","duration":110,"publication_date":"2012-10-18T20:47:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-116","changefreq":"weekly","video":[{"title":"2012:E106 - Make Videos","description":"Chad and Knightmari show you how to Make Videos.\n.\n.\n.\n.\n.\n. Happy Halloween!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2f12940-d3cb-4f44-88ed-0b8fceb11668/sm/2013912-1449783400117-maxresdefault_(12).jpg","duration":116,"publication_date":"2012-10-18T19:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-minecraft-minez","changefreq":"weekly","video":[{"title":"2012:E342 - Mod Spotlight: Minecraft - MineZ","description":"CFHhateph34r and Emphara show off MineZ, the latest and greatest Minecraft Day Z Mod!\r\nhttp://www.minez.net/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-minecraft-minez","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e2afec5-1075-4214-8763-c5fc4ea01ceb/sm/2013912-1449783376791-maxresdefault_(11).jpg","duration":212,"publication_date":"2012-10-18T19:34:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-9","changefreq":"weekly","video":[{"title":"2012:E91 - New Nether Portal Easter Egg","description":"Ray and Gavin show you where to find the hidden Nether Portal in the tutorial of Minecraft for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88b4bfcf-076c-491d-b5a4-644547ff722e/sm/ep5905.jpg","duration":127,"publication_date":"2012-10-18T18:57:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-115","changefreq":"weekly","video":[{"title":"2012:E105 - Minecraft - Capture The Flag!","description":"In this video, Preston shows you Capture The Flag in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-115","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c9792b2-6f93-43e1-bcfd-bda3125df881/sm/2013912-1449783354719-maxresdefault_(10).jpg","duration":84,"publication_date":"2012-10-18T18:50:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lego-star-wars-the-complete-saga-2-achievements","changefreq":"weekly","video":[{"title":"2012:E1605 - Lego Star Wars: The Complete Saga - 2 Achievements","description":"Chad and HerpsMcGirps show you how to get 2 achievements in the game Lego Star Wars: The Complete Saga","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lego-star-wars-the-complete-saga-2-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":125,"publication_date":"2012-10-18T18:38:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-118","changefreq":"weekly","video":[{"title":"2012:E90 - Borderlands 2 - Bioshock Easter Egg","description":"Jeremy shows off a bioshock easter egg in the new Borderlands 2 DLC","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-118","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":216,"publication_date":"2012-10-18T18:30:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-ninjah","changefreq":"weekly","video":[{"title":"2012:E341 - Indie Night - Ninjah","description":"Hightower and iSayWhat swing in to action to bring you the latest indie night on Ninjah!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-ninjah","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2732cd8-e494-41ed-a42e-3f4741f53ceb/sm/2013912-1449783323069-maxresdefault_(9).jpg","duration":138,"publication_date":"2012-10-18T18:16:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-114","changefreq":"weekly","video":[{"title":"2012:E104 - Minecraft - Spleef","description":"A fun game to play with some friends\nMade by: ScorchRSH","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-114","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffb27b32-dd56-4ea7-b8f9-37d392010a17/sm/2013912-1449783301816-maxresdefault_(8).jpg","duration":229,"publication_date":"2012-10-18T17:49:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012","changefreq":"weekly","video":[{"title":"2012:E103 - Minecraft - Kerplunk","description":"Geoff and Gavin bring along the rest of the lads for a game of Minecraft Kerplunk. It's like the original kerplunk, but with way more people suffocating.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af13e65b-232f-4966-b550-c7a0e2d6313c/sm/ep5893.jpg","duration":308,"publication_date":"2012-10-17T23:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-113","changefreq":"weekly","video":[{"title":"2012:E102 - Minecraft - Grifball","description":"AxialMatt brings you a Things to do in showing you how to play the most popular game everyone's talking about in the most popular game everyone's talking about...That's a thinker...","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-113","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5826727-05c0-4d75-9a3f-74726d10b782/sm/2013912-1449783277000-maxresdefault_(7).jpg","duration":192,"publication_date":"2012-10-17T21:56:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012","changefreq":"weekly","video":[{"title":"2012:E42 - Halo HORSE #97","description":"Jack and Geoff continue the beat down on each other in Halo: Reach. This week they discuss Gavin's sack.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9697ad5b-304a-4218-be7a-62be2120ffef/sm/ep5889.jpg","duration":258,"publication_date":"2012-10-17T21:41:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-112","changefreq":"weekly","video":[{"title":"2012:E101 - Crackdown 2 - Flying Traffic Jam","description":"superninja56 shows you how to cause several thousand dollars in traffic accidents","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-112","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":102,"publication_date":"2012-10-17T21:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-with-friends-like-these-part-2","changefreq":"weekly","video":[{"title":"2012:E340 - The Elder Scrolls V: Skyrim - With Friends Like These Part 2","description":"KistyNocturn and Queen_Mab are in Skyrim and show you the second part of how you go about joining the Dark Brotherhood. Part 2 of 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-with-friends-like-these-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7242f3e-b26d-40a6-acfa-54ffe1f0290e/sm/2013912-1449783215325-maxresdefault_(6).jpg","duration":117,"publication_date":"2012-10-17T21:29:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-with-friends-like-these-part-1","changefreq":"weekly","video":[{"title":"2012:E339 - The Elder Scrolls V: Skyrim - With Friends Like These Part 1","description":"KistyNocturn and Queen_Mab are in Skyrim and show you the first part of how you go about joining the Dark Brotherhood. Part 1 of 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-with-friends-like-these-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0c6975d-68c5-4246-91df-fac98505a21f/sm/2013912-1449783193930-maxresdefault_(5).jpg","duration":138,"publication_date":"2012-10-17T21:25:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-111","changefreq":"weekly","video":[{"title":"2012:E100 - Minecraft - Maze Race","description":"My first community video, a map (hopefully) for a Lets Play. May be a few mistakes, I don't even know what to put here, but the map is a 4 player maze with piston traps, and a goal to locate the centrally located Tower of Pimps in the center.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-111","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":212,"publication_date":"2012-10-17T21:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-110","changefreq":"weekly","video":[{"title":"2012:E99 - Minecraft - Burning Bridges","description":"AxialMatt and Levy350 deliver a way to have fun while burning some bridges with your friends.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb2f010a-ac53-43a4-ac18-d604e503eddf/sm/2013912-1449783138743-maxresdefault_(4).jpg","duration":97,"publication_date":"2012-10-17T21:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-109","changefreq":"weekly","video":[{"title":"2012:E98 - Minecraft-Battle For Pimp City!","description":"Superchunkyduck brings a Things to do in showing off a new way to use the Tower of Pimps","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/356ccd9e-48ef-48b7-9261-6e24a86384d0/sm/2013912-1449783115236-maxresdefault_(3).jpg","duration":72,"publication_date":"2012-10-17T20:56:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-117","changefreq":"weekly","video":[{"title":"2012:E89 - The Elder Scrolls V: Skyrim - Headless Horseman Easter Egg","description":"xBRITxHyBriD and Preston run around like HEADLESS chickens to show you how to find the Headless Horseman in Skyrim (get it)","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-117","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":89,"publication_date":"2012-10-17T20:42:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-89","changefreq":"weekly","video":[{"title":"2012:E59 - Trials Evolution DLC","description":"Geoff, Jack, Michael Gavin and Ray revisit Trials Evolution to play the new multiplayer maps! BAIL!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/256f00b8-9b18-4c9d-9f2a-e007274b3412/sm/ep5876.jpg","duration":796,"publication_date":"2012-10-17T19:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-boarderlands-2-three-horns-divide-vault-symbol-guide","changefreq":"weekly","video":[{"title":"2012:E1591 - Boarderlands 2 - Three Horns Divide Vault Symbol Guide","description":"thebeast05 is back in Borderlands 2 to show you how to find all the vault symbols in Three Horns Divide.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-boarderlands-2-three-horns-divide-vault-symbol-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":129,"publication_date":"2012-10-17T18:28:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-the-line-deer-hunter-and-preventive-diplomacy","changefreq":"weekly","video":[{"title":"2012:E338 - Spec Ops: The Line - Deer Hunter and Preventive Diplomacy","description":"Lettucelord shows how to grab 2 very easy achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-the-line-deer-hunter-and-preventive-diplomacy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/934b6ff9-766f-4098-bc0a-3b97628d7a90/sm/2013912-1449783095293-maxresdefault_(2).jpg","duration":62,"publication_date":"2012-10-17T18:20:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-95","changefreq":"weekly","video":[{"title":"2012:E90 - God of War: Chains of Olympus","description":"Rico takes a look at God of War: Chains of Olympus, Now available through God of War: Origins Collection or God of War Saga.","player_loc":"https://roosterteeth.com/embed/this-is-2012-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c659b6a-96a3-428f-b255-764849e24bf9/sm/2013912-1449783075520-maxresdefault_(1).jpg","duration":280,"publication_date":"2012-10-17T17:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skin-pack-3-dlc","changefreq":"weekly","video":[{"title":"2012:E337 - Skin Pack 3 DLC","description":"Ray and Geoff check out all the new skins in the new Minecraft Skin Pack 3 DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skin-pack-3-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05362256-9d9f-489d-add2-c5d64a569e04/sm/ep5869.jpg","duration":169,"publication_date":"2012-10-17T17:16:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trollololol-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1588 - Trollololol Achievement Guide","description":"Geoff and Jack fight a troll to get the Trollololol Achievement in Fable: The Journey for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trollololol-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43fc3a3b-77b1-4a91-9cc8-2cdc98f72f09/sm/ep5868.jpg","duration":189,"publication_date":"2012-10-17T17:13:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-squirrels-have-rabies-guide","changefreq":"weekly","video":[{"title":"2012:E1587 - The Squirrels Have Rabies Guide","description":"Jack and Geoff find all of the hidden squirrels in the new DLC \"Origin of Pain\" for Trials Evolution. They also continue their lively discussion about theme parks.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-squirrels-have-rabies-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45400043-fff9-4bad-be79-8f6cbf535d50/sm/ep5867.jpg","duration":361,"publication_date":"2012-10-17T14:17:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-king-of-the-world-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1586 - King of the World Achievement Guide","description":"Michael and Geoff show you how to get the \"King of the World\" achievement in Dishonored for the Xbox 360. We're going straight to the tippy top!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-king-of-the-world-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdac9af1-670c-45e4-ae4b-157fd293e7d5/sm/ep5865.jpg","duration":87,"publication_date":"2012-10-17T00:19:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-34","changefreq":"weekly","video":[{"title":"2012:E26 - Trials Evolution: Trials Files #26","description":"Geoff and Jack get all Helen Hunt up in this bitch in the latest episode of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57297a30-2b26-4106-835b-3fda526080a8/sm/ep5864.jpg","duration":144,"publication_date":"2012-10-16T19:38:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-15","changefreq":"weekly","video":[{"title":"2012:E6 - Mortal Kombat","description":"Jack and Geoff are back with Five Facts about one of the greatest fighting series of all time, Mortal Kombat. Join them and their love of old school arcading!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d12d2caa-c05a-4847-b3b6-b18b822ea4d4/sm/ep5863.jpg","duration":362,"publication_date":"2012-10-16T19:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-56","changefreq":"weekly","video":[{"title":"2012:E89 - X-COM Enemy Unknown","description":"Fragger and BioHRay take a look at the newly released X-COM Enemy Unknown on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e98fbe02-4625-4163-be5e-ed154f0f5dcc/sm/ep5862.jpg","duration":460,"publication_date":"2012-10-16T18:41:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-46","changefreq":"weekly","video":[{"title":"2012:E42 - Week #134","description":"Jack and Geoff are here with a celebrity-filled edition of AHWU! Watch as Gavin is an idiot and Geoff gets angry at him! Today's episode of AHWU is brought to you by Fable: The Journey, available now! http://xbox.com/fable","player_loc":"https://roosterteeth.com/embed/ahwu-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36851c59-d367-4c30-bb48-a7681e89f5dd/sm/ep5857.jpg","duration":405,"publication_date":"2012-10-15T20:45:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-108","changefreq":"weekly","video":[{"title":"2012:E97 - Minecraft - Olympics","description":"Christoph 5782 and Da Jammer play 5 of the 18 events on the map created by Christoph 5782. Watch as they play Golf, Boat Racing, Dodge It, Climbing and Obstical Course. Sadly Da Jammer could not do the voice over with Christoph 5782 : ( (Flimed by BioHRay)","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":308,"publication_date":"2012-10-15T20:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-82","changefreq":"weekly","video":[{"title":"2012:E58 - Mari0 Part 2 - With Geoff, Michael, Gavin and Ryan","description":"Watch part 1 here! - \nGeoff, Michael, Gavin and Ryan take on the portal levels in Mari0. Will they be more successful than last time No!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7de3eaf8-f1a3-4d7f-ac8e-b11ba190855f/sm/ep5855.jpg","duration":1027,"publication_date":"2012-10-15T20:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-clock-tower","changefreq":"weekly","video":[{"title":"2012:E336 - Retro Active: Clock Tower","description":"Fragger continues is spooky walk down memory lane, with Clock Tower.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-clock-tower","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a8819d4-98b7-4116-bbf5-c8b783fb2ea1/sm/ep5854.jpg","duration":232,"publication_date":"2012-10-15T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bodyguard-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1581 - Bodyguard Achievement Guide","description":"Michael and Geoff show you how to get the Bodyguard achievement in DIshonored for the Xbox 360.\r\n\r\nMust.Save.Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bodyguard-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/774f7415-e116-41d4-82bb-34ed080dbd03/sm/ep5853.jpg","duration":170,"publication_date":"2012-10-15T19:30:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-9","changefreq":"weekly","video":[{"title":"S1:E9 - Episode 9","description":"This week we have some slivers of dumb in:\nBad Piggies - \nMinecraft 20 - \nMass Effect 3 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/778f18a2-ddb0-4804-ad4f-84c6a0fde550/sm/ep5852.jpg","duration":131,"publication_date":"2012-10-15T18:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-107","changefreq":"weekly","video":[{"title":"2012:E96 - Halo 3 - G-NADES","description":"THERIGBOSS here to show you a custom game type in Halo 3","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-107","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45275a28-e30d-4eab-9c1c-98bcab0d011e/sm/2013912-1449783020997-maxresdefault.jpg","duration":140,"publication_date":"2012-10-15T18:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-47","changefreq":"weekly","video":[{"title":"2012:E42 - Volume 108","description":"Jack and Geoff are here with the 108th episode of Fails of the Weak! Laugh along with the terribleness.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff00e3ff-6f09-4401-a6bb-132f2842f98c/sm/ep5843.jpg","duration":215,"publication_date":"2012-10-12T21:53:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vanished-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1575 - Vanished Achievement Guide","description":"Geoff and Michael show you how to get the Vanished Achievement in Dishonored on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vanished-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c2ecb5b-6834-48d9-aad8-8f6d98476c64/sm/ep5842.jpg","duration":426,"publication_date":"2012-10-12T21:02:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-79","changefreq":"weekly","video":[{"title":"2012:E57 - Minecraft Episode 20","description":"Geoff, Gav, Jack, Michael and Ray take on the Labyrinth. Who will be able navigate its dark and treacherous hallways\n\nShout out to SuperNinja5506 for making the map!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cca7516b-5afe-4574-b76d-4a01151df370/sm/ep5841.jpg","duration":1107,"publication_date":"2012-10-12T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-yum-yum","changefreq":"weekly","video":[{"title":"2012:E335 - Game Night: Halo Reach - Yum Yum","description":"Geoff and Caleb did some shit, and that shit turned out to be playing Halo. It was a gametype called Yum Yum in Halo Reach. \r\nGAME NIGHT!!!!!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-yum-yum","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa99d12e-f80d-4950-9f89-54b80c98434f/sm/ep5840.jpg","duration":93,"publication_date":"2012-10-12T19:20:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-49","changefreq":"weekly","video":[{"title":"2012:E88 - Dishonored","description":"Michael and Geoff take a look at Dishonored, and learn that rats are absolutely terrifying.","player_loc":"https://roosterteeth.com/embed/this-is-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ebe5680-638f-46de-ad62-2ea217b45a1d/sm/ep5838.jpg","duration":560,"publication_date":"2012-10-11T23:39:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-43","changefreq":"weekly","video":[{"title":"2012:E41 - FIFA Soccer 10","description":"This week on Rage Quit, Gavin challenges Michael to a fierce game of footy in FIFA Soccer 10 for the Xbox 360. \n\nWill Gavin come out on top or can Michael pull a victory from this strange and foreign sport","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fa5bc16-dcaf-4baa-8876-75fd87defdf1/sm/ep5837.jpg","duration":349,"publication_date":"2012-10-11T23:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-26","changefreq":"weekly","video":[{"title":"2012:E24 - Trials HORSE #26","description":"In this week's episode of Trials HORSE, Jack and Gavin check out maps in the new DLC pack \"Origin of Pain!\"","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41fd03af-1c3f-48fe-a4a9-c4625d038340/sm/ep5836.jpg","duration":345,"publication_date":"2012-10-11T21:37:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-106","changefreq":"weekly","video":[{"title":"2012:E95 - Minecraft - TrapCraft 2","description":"A Minecraft video in the style of a Let's Build, where I detail yet another Saw-inspired trap, this one involving a very movie like arrow-shooting corridor.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-106","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":209,"publication_date":"2012-10-11T18:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-105","changefreq":"weekly","video":[{"title":"2012:E94 - Minecraft - TrapCraft 1","description":"A Saw-inspired trap intended for a series of players to run through and attempt to survive as the possibly become brutally maimed. A first of many trap ideas.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-105","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":347,"publication_date":"2012-10-11T17:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-116","changefreq":"weekly","video":[{"title":"2012:E88 - Starscream's Crown Easter Egg","description":"Mikecall shows you how to find the Starscream's Crown Easter Egg.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-116","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":122,"publication_date":"2012-10-11T17:47:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-god-of-war-chains-of-olympus-2-trophies","changefreq":"weekly","video":[{"title":"2012:E334 - God of War: Chains of Olympus - 2 Trophies","description":"Rico shows us how to get the Hit Me Baby and Heavy Hitter trophies in God of War: Chains of Olympus for the PS3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-god-of-war-chains-of-olympus-2-trophies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a31fdfa-e2af-4d7f-bfc3-816a1afa1553/sm/2013912-1449782961420-maxresdefault_(20).jpg","duration":47,"publication_date":"2012-10-11T17:31:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-god-of-war-chains-of-olympus-collateral-damage-trophy","changefreq":"weekly","video":[{"title":"2012:E333 - God of War: Chains of Olympus - Collateral Damage Trophy","description":"Rico shows us how to get the Collateral Damage Trophy in God of War: Chains of Olympus.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-god-of-war-chains-of-olympus-collateral-damage-trophy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d240877-37f1-4882-b598-cfdfcf85fb0b/sm/2013912-1449782944228-maxresdefault_(19).jpg","duration":67,"publication_date":"2012-10-11T17:27:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-clap-traps-place-and-southern-shelf-vault-symbol-guide","changefreq":"weekly","video":[{"title":"2012:E1573 - Clap Trap's Place & Southern Shelf Vault Symbol Guide","description":"thebeast05 show you how to find the vault symbols in Clap Trap's place and the Southern Shelf.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-clap-traps-place-and-southern-shelf-vault-symbol-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":190,"publication_date":"2012-10-11T17:13:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-world-of-warcraft-heroic-gate-of-the-setting-sun","changefreq":"weekly","video":[{"title":"2012:E332 - World of Warcraft - Heroic: Gate of the Setting Sun","description":"Speez shows us how to achieve the achievement Heroic: Gate of the Setting Sun. This is done by completing the the dungeon in heroic mode, so grab some friends and jump right in!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-world-of-warcraft-heroic-gate-of-the-setting-sun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40cb3c9d-f135-48b1-b136-d600d554f7a6/sm/2013912-1449782904515-maxresdefault_(18).jpg","duration":198,"publication_date":"2012-10-11T17:00:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-38","changefreq":"weekly","video":[{"title":"2012:E41 - Halo HORSE #96","description":"Michael faces off against Barbara in this week's episode of Halo PIG! Will Barbara do better than her 5-2 loss to Gavin Watch and find out!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe510934-e5b9-4077-9359-9a688dbd4075/sm/ep5825.jpg","duration":322,"publication_date":"2012-10-10T22:49:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-45","changefreq":"weekly","video":[{"title":"2012:E86 - Fable: The Journey","description":"Geoff and Jack take the new Xbox 360 title \"Fable: The Journey\" for a spin.","player_loc":"https://roosterteeth.com/embed/this-is-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9c2e1ae-5b93-44b6-996a-fdff7bcb05fc/sm/ep5824.jpg","duration":490,"publication_date":"2012-10-10T21:55:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-41","changefreq":"weekly","video":[{"title":"2012:E93 - Minecraft- Reverse Shooting Gallery","description":"Geoff and Gav try to dodge a wall of arrows in minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0ccd504-284f-4203-a046-a4d76ddaa33c/sm/ep5823.jpg","duration":180,"publication_date":"2012-10-10T20:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-72","changefreq":"weekly","video":[{"title":"2012:E56 - Bad Piggies - With Geoff and Gav","description":"Geoff and Gav put their heads together to build some amazing contraptions in Bad Piggies!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95ea5c35-5382-423e-9fa8-a21b7bc8ae77/sm/ep5822.jpg","duration":1049,"publication_date":"2012-10-10T20:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-104","changefreq":"weekly","video":[{"title":"2012:E92 - Minecraft - Trap View","description":"AxialMatt and CombatWombat show you a way to make building something awesome in Minecraft even more rewarding.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-104","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c76b07b7-05d0-424b-999e-5d1324647d3c/sm/2013912-1449782870745-maxresdefault_(17).jpg","duration":123,"publication_date":"2012-10-09T21:45:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-27","changefreq":"weekly","video":[{"title":"2012:E25 - Trials Evolution: Trials Files #25","description":"Geoff and Jack grow up in the latest episode of Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/057f17ec-26e8-4ed6-bd9f-b0bbab36f808/sm/ep5814.jpg","duration":146,"publication_date":"2012-10-09T19:26:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-epic-slam-dunk-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1567 - Epic Slam Dunk Achievement Guide","description":"Jack and Geoff show you how to grab the Epic Slam Dunk achievement in the new Origin of Pain DLC pack for Trials Evolution. Space jam!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-epic-slam-dunk-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f529555-a89a-4451-aa39-889f43a11256/sm/ep5813.jpg","duration":130,"publication_date":"2012-10-09T19:23:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-worlds-best-dad","changefreq":"weekly","video":[{"title":"2012:E331 - World's Best Dad","description":"Nick and Rob tackle their toughest achievie yet in Jurassic Park: the Game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-worlds-best-dad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":123,"publication_date":"2012-10-09T18:58:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-103","changefreq":"weekly","video":[{"title":"2012:E91 - Minecraft - Minecraft Olympics!","description":"In this video, Preston shows you the Olympics in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-103","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ceebcfd8-01ce-462f-9f27-9fc7b767d0e5/sm/2013912-1449782830513-maxresdefault_(16).jpg","duration":172,"publication_date":"2012-10-09T18:09:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-102","changefreq":"weekly","video":[{"title":"2012:E90 - Halo: Reach - Brutey Goodness","description":"Colin plays a custom firefight type in Halo: Reach that involves brutes, brutes, more brutes, and a lot of explosions.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-102","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/492d82cf-9582-49d7-9d80-d7273450d3e9/sm/2013912-1449782808286-maxresdefault_(15).jpg","duration":253,"publication_date":"2012-10-09T18:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-secret-ops-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1560 - Secret Ops Achievement Guide","description":"Jack and Geoff show you how to grab the one secret achievement in Trials Evolution's new DLC Origin of Pain pack! Watch and learn how to get the Secret Ops achievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-secret-ops-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee1aaaf4-1a14-4d09-b511-3c5808c18edb/sm/ep5802.jpg","duration":105,"publication_date":"2012-10-09T17:29:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-34","changefreq":"weekly","video":[{"title":"2012:E41 - Week #133","description":"The boys are back with a brand new episode of AHWU! Don't forget to check out Halo 4: Forward Unto Dawn at http://bit.ly/H4FUD This week's episode is brought to you by Onnit! You can get 15% off your order at http://www.onnit.com/gaming by using the code \"HUNTER\"","player_loc":"https://roosterteeth.com/embed/ahwu-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18eb1d86-0078-4284-a9f4-56a5c21218dd/sm/ep5801.jpg","duration":365,"publication_date":"2012-10-08T21:49:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-eternal-darkness","changefreq":"weekly","video":[{"title":"2012:E330 - Retro Active - Eternal Darkness","description":"Fragger plays Eternal Darkness and also says things about it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-eternal-darkness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ea4bdc4-1518-4f83-a069-df7cb56b487f/sm/ep5799.jpg","duration":210,"publication_date":"2012-10-08T20:52:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-8","changefreq":"weekly","video":[{"title":"S1:E8 - Episode 8","description":"This week we have clips from \nTrouble in Terrorist Town part 2 - Minecraft 19 - Assassin's Creed Revelations part 2 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6716a3fe-6536-4f42-84b4-2b09e2bafcfb/sm/ep5798.jpg","duration":126,"publication_date":"2012-10-08T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-63","changefreq":"weekly","video":[{"title":"2012:E55 - Mann Vs Machine","description":"You asked for it so here it is! Achievement Hunter Vs Machine... And I don't want to spoil anything for you, but one of the sides doesn't win.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1f254dd-a823-4698-8628-8c3e6d514682/sm/ep5797.jpg","duration":1415,"publication_date":"2012-10-08T19:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-59","changefreq":"weekly","video":[{"title":"2012:E54 - Minecraft Episode 19","description":"Geoff, Jack, Gavin, Michael and Ray all start with a different piece of the tower of pimps. Who will combine and construct their way to victory","player_loc":"https://roosterteeth.com/embed/lets-play-2012-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c19efe34-dd18-409c-9838-9c4f2d3cd7dc/sm/ep5795.jpg","duration":1950,"publication_date":"2012-10-05T20:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-derby-bash","changefreq":"weekly","video":[{"title":"2012:E329 - Game Night: Halo Reach - Derby Bash","description":"Geoff and Caleb play Derby Bash in this week's edition of Game Night in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-derby-bash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bab155a5-c64b-4ebf-b758-2816c2abc0b8/sm/ep5794.jpg","duration":87,"publication_date":"2012-10-05T20:02:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-35","changefreq":"weekly","video":[{"title":"2012:E41 - Volume 107","description":"Jack and Geoff are here with the 107th episode of Fails of the Weak! It's much better than episode 49!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dd35ee2-9abe-430d-84d8-86d6f4bc57da/sm/ep5793.jpg","duration":238,"publication_date":"2012-10-05T19:59:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-52","changefreq":"weekly","video":[{"title":"2012:E87 - Playground Easter Egg","description":"Michael and Ray hit the slides and show you the playground easter egg in Resident Evil 6 for the Xbox 360.\r\n\r\nTeamwork makes the dream work!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85bccec5-0a34-4e0c-8c86-a924fc5424ea/sm/ep5792.jpg","duration":69,"publication_date":"2012-10-05T17:12:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-32","changefreq":"weekly","video":[{"title":"2012:E40 - Prince of Persia Classic","description":"This week on Rage Quit, Michael plays Prince of Persia Classic for the Xbox Live Arcade.\n\nJake Gyllenhaal is so dreamy!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7113b7f2-02ba-42bf-89f5-fd09786c2741/sm/ep5791.jpg","duration":184,"publication_date":"2012-10-05T00:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-september-2012","changefreq":"weekly","video":[{"title":"2012:E9 - Best fails of September 2012","description":"Geoff and Jack are back to look at your favorite Game Fails for September!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-september-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99ee4854-afad-4d20-9f33-f087d63f598f/sm/ep5790.jpg","duration":190,"publication_date":"2012-10-04T23:45:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-32","changefreq":"weekly","video":[{"title":"2012:E84 - Bad Piggies","description":"Geoff and Millie take a look at Bad Piggies, possibly the best game ever made and the prequel to Angry Birds.","player_loc":"https://roosterteeth.com/embed/this-is-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d750aaaa-bde5-45bb-b95c-04a2dfc0796f/sm/ep5788.jpg","duration":299,"publication_date":"2012-10-04T23:12:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-25","changefreq":"weekly","video":[{"title":"2012:E23 - Trials PIG #25","description":"Michael and Gavin face off in Trials Evolution for another match of awesomeness. Who would you put money on","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f57ece9e-9ebf-476f-a047-db00b8cc0b2f/sm/ep5786.jpg","duration":295,"publication_date":"2012-10-04T21:21:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-29","changefreq":"weekly","video":[{"title":"2012:E40 - Halo HORSE #95","description":"Jack and Geoff face off again in Halo: Reach and talk about an incredibly important subject. Listen for details!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7579f87-94c3-45af-ad4d-5d75ee9b61b7/sm/ep5784.jpg","duration":396,"publication_date":"2012-10-03T21:53:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-48","changefreq":"weekly","video":[{"title":"2012:E86 - Dark Souls Easter Egg","description":"Ray and Michael show you where to find the Dark Souls Easter Egg in Borderlands 2 for the Xbox 360.\r\n\r\n(Her name was Mrs. Frizzle not Mrs. Fritz. We're stupid)","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db9e8985-1ced-4eed-bef5-11d7a09e1116/sm/ep5783.jpg","duration":117,"publication_date":"2012-10-03T20:48:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-text-junkie-part-2","changefreq":"weekly","video":[{"title":"2012:E328 - Catherine - Text Junkie part 2","description":"Chad and Axialmatt show you how to get the Text Junkie achievement in Catherine. Part 2/2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-text-junkie-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e6efcff-e044-4da0-90fe-ebbf84ffd57f/sm/2013912-1449782740704-maxresdefault_(13).jpg","duration":167,"publication_date":"2012-10-03T18:09:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-text-junkie-part-1","changefreq":"weekly","video":[{"title":"2012:E327 - Catherine - Text Junkie part 1","description":"Chad and Axialmatt show you how to get the Text Junkie achievement in Catherine. Part 1/2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-text-junkie-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76a58856-b308-46f6-9c82-0d5624b166f3/sm/2013912-1449782715543-maxresdefault_(12).jpg","duration":115,"publication_date":"2012-10-03T18:03:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-for-beginners","changefreq":"weekly","video":[{"title":"2012:E326 - Minecraft for Beginners","description":"superninja56 shows you how to make water, cobble, pretty colors, and dead creepers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-for-beginners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":182,"publication_date":"2012-10-03T17:57:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-borderlands-2-challenge-accepted-part-3","changefreq":"weekly","video":[{"title":"2012:E324 - Borderlands 2 - Challenge Accepted Part 3","description":"Challenges for Challenge Accepted in Bloodshot Fortress and Bloodshot Ramparts","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-borderlands-2-challenge-accepted-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":335,"publication_date":"2012-10-03T17:45:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-borderlands-2-challenge-accepted-part-2","changefreq":"weekly","video":[{"title":"2012:E323 - Borderlands 2 - Challenge Accepted Part 2","description":"Challenges for Three Horns- Divide and Three Horns- Valley","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-borderlands-2-challenge-accepted-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":265,"publication_date":"2012-10-03T17:35:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-101","changefreq":"weekly","video":[{"title":"2012:E89 - Minecraft - Burning Effigys","description":"superninja56 shows you the proper way to show your friends you don't like them","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-101","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":73,"publication_date":"2012-10-03T17:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-92","changefreq":"weekly","video":[{"title":"2012:E82 - Red Dead Redemption","description":"Rico and JuniorDiaz team up to take a look at Red Dead Redemption (By team up, I mean JuniorDiaz captured the gameplay footage while Rico edited the video. Rico is joeldiaz1995)","player_loc":"https://roosterteeth.com/embed/this-is-2012-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6b70091-24a2-4be9-afe8-97d8c998cac0/sm/2013912-1449782572411-maxresdefault_(11).jpg","duration":321,"publication_date":"2012-10-03T17:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-100","changefreq":"weekly","video":[{"title":"2012:E88 - Starcraft II","description":"DBrown is back showing you how to defeat your friends with an insane strategy.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d46dfed0-e878-4402-8231-ef8f06fe3e53/sm/2013912-1449782543456-maxresdefault_(10).jpg","duration":295,"publication_date":"2012-10-03T15:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-28","changefreq":"weekly","video":[{"title":"2012:E87 - Sleeping Dogs - Surprise!","description":"Geoff and Gavin surprise some unsuspecting motorcyclists in Sleeping Dogs for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a435352-2df3-4108-8c7b-74da8a63c093/sm/ep5762.jpg","duration":106,"publication_date":"2012-10-03T15:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-49","changefreq":"weekly","video":[{"title":"2012:E53 - Borderlands 2 (Part 3)","description":"Jack, Geoff, Michael and Gavin continue their travels in Borderlands 2. Will Gavin figure out how to use his special ability Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88ffa197-54e9-41c2-a4fb-7ac0a39f5364/sm/ep5761.jpg","duration":1593,"publication_date":"2012-10-03T15:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-18","changefreq":"weekly","video":[{"title":"2012:E24 - Trials Evolution - Trials Files #24","description":"Geoff and Jack take a look at a retro inspired map in Trials Files #24!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c57be0aa-2e63-4836-95af-710f29302a2e/sm/ep5760.jpg","duration":93,"publication_date":"2012-10-02T20:39:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-9","changefreq":"weekly","video":[{"title":"2012:E4 - Bioshock","description":"Jack and Geoff take a look at Five Facts (maybe Six) about the classic title Bioshock. Grab your snorkel!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c723b5c-9ee6-4184-ac37-c790093f6c34/sm/ep5759.jpg","duration":301,"publication_date":"2012-10-02T15:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-26","changefreq":"weekly","video":[{"title":"2012:E40 - Week #132","description":"Jack and Geoff bring you some more news for the week of October 1st! Check out all of the entries from Mount Rushmore and learn how you can be a part of AHWU #134! Also, buy the new Best of Red vs. Blue DVD in our store! http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3325c857-5abd-4a84-9a27-852d94387f5f/sm/ep5758.jpg","duration":373,"publication_date":"2012-10-01T19:58:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quickbits-episode-7","changefreq":"weekly","video":[{"title":"S1:E7 - Episode 7","description":"Quickbits highlights hilarious moments from Achievement Hunter videos old and new. This week showcases extreme stupidity in three Let's Plays (Trouble in Terrorist Town, Minecraft, and Contra).\n\nOriginal Vids located here:\nTTT - \nMinecraft - \nContra -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quickbits-episode-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90df6f8d-703f-42e9-8c43-a2f6ea6b2130/sm/ep5756.jpg","duration":122,"publication_date":"2012-10-01T19:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-clive-barkers-undying","changefreq":"weekly","video":[{"title":"2012:E321 - Retro Active: Clive Barker's Undying","description":"Fragger takes a look back at the creepy FPS \"Clive Barker's Undying\" in this week's Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-clive-barkers-undying","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f618f2f-64a6-418a-b211-0cf00476d3ea/sm/ep5755.jpg","duration":209,"publication_date":"2012-10-01T18:23:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-47","changefreq":"weekly","video":[{"title":"2012:E52 - Trouble In Terrorist Town (Part 2)","description":"Geoff, Michael, Ray, Gavin, Kerry, Jack and Ryan are back in Trouble in Terrorist Town! And this time... we know about the special menus! And Gavin's a bog roll (whatever that is).","player_loc":"https://roosterteeth.com/embed/lets-play-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd954961-6c92-4e23-bcfe-852f8045ef11/sm/ep5754.jpg","duration":1535,"publication_date":"2012-10-01T17:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-45","changefreq":"weekly","video":[{"title":"2012:E51 - Let's Build - With Gavin and Geoff","description":"Gav and Geoff work together at home to build Connect 4 for Things to do in Minecraft.\r\nWatch them get progressively more drunk and stupid as time goes on.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cddd3cb-d1a7-49fd-ad35-c78a2ad09eda/sm/ep5753.jpg","duration":2065,"publication_date":"2012-10-01T14:30:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-battleship-blockade","changefreq":"weekly","video":[{"title":"2012:E320 - Game Night: Halo Reach - Battleship Blockade","description":"Geoff and Caleb take a look at the Battleship Blockade gametype in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-battleship-blockade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/339a5863-bcac-4b94-9870-50fb2e776d0e/sm/ep5749.jpg","duration":121,"publication_date":"2012-09-28T20:43:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-42","changefreq":"weekly","video":[{"title":"2012:E50 - Minecraft Episode 18","description":"This week, Geoff, Jack, Michael, Gavin and Ray are joined by Caleb as they play Axial Matt's Mineball map. Beware, headphone users, this 3 on 3 action gets LOUD. \n\nTo learn more about uploading Community Videos, check out the Community Hunter Group on Achievementhunter.com: http://achievementhunter.com/groups/profile.phpid=585\"","player_loc":"https://roosterteeth.com/embed/lets-play-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81a4ed1a-d14f-4318-9061-e4710a9fa877/sm/ep5748.jpg","duration":1783,"publication_date":"2012-09-28T19:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-acr-the-mentors-keeper-100-sync","changefreq":"weekly","video":[{"title":"2012:E319 - ACR: The Mentor's Keeper 100% Sync","description":"Yegues and Matt show you how to 100% Sync the mission, The Mentor's Keeper, for the Fond Memories achievement!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-acr-the-mentors-keeper-100-sync","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/1a4026e9-0b0e-4348-bc8a-25fa18dd2247.jpg/sm/ah100sync.jpg","duration":225,"publication_date":"2012-09-28T18:42:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-24","changefreq":"weekly","video":[{"title":"2012:E40 - Volume 106","description":"Jack and Geoff bring you the 106th edition of Fails of the Weak! Laugh and enjoy them!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6637425-d9d8-49a7-8195-5202e11d4998/sm/ep5745.jpg","duration":271,"publication_date":"2012-09-28T18:36:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-22","changefreq":"weekly","video":[{"title":"2012:E39 - QWOP: Michael Vs. Gavin","description":"This week on Rage Quit, Michael returns to QWOP to face off against Gavin in 2-Player mode. \n\nIt's an epic battle of guts and glory as these two champions go head to head in deadly combat.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e089b43-2623-4c37-8c17-65ca5a602562/sm/ep5741.jpg","duration":285,"publication_date":"2012-09-27T23:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-24","changefreq":"weekly","video":[{"title":"2012:E22 - Trials PIG #24","description":"After Jack's humiliating defeat to Ray in Halo HORSE, they face off in Trials Evolution. Will Jack have his revenge Watch and find out!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64dc7496-2f2b-44ff-a51a-444cc9fb9081/sm/ep5740.jpg","duration":306,"publication_date":"2012-09-27T23:19:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-99","changefreq":"weekly","video":[{"title":"2012:E86 - Minecraft - Musical Halls","description":"Jeremy and Kat make some music in Minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-99","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61a76caf-84d7-4d37-b5df-cc2241845408/sm/2013912-1449782497948-maxresdefault_(8).jpg","duration":224,"publication_date":"2012-09-27T21:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-20","changefreq":"weekly","video":[{"title":"2012:E81 - Hell Yeah","description":"Fragger and Jack take a look at the Xbox Live Arcade game \"Hell Yeah\".","player_loc":"https://roosterteeth.com/embed/this-is-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea2db158-d744-4603-a4b2-d8f30e9ad422/sm/ep5737.jpg","duration":347,"publication_date":"2012-09-27T21:22:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-98","changefreq":"weekly","video":[{"title":"2012:E85 - Read Dead Redemption - Rollercarriages!","description":"HI IM CAPS LOCK and haladar66 show you how to ride rollercoasters in Red Dead.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-98","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51e15a50-6b48-49cc-88da-2ef4fc489aae/sm/2013912-1449781969085-maxresdefault_(7).jpg","duration":168,"publication_date":"2012-09-27T21:21:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-borderlands-2-bonerfarts","changefreq":"weekly","video":[{"title":"2012:E318 - Borderlands 2 - Bonerfarts","description":"CraigMac shows you how Borderlands 2 got its M rating from the ESRB","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-borderlands-2-bonerfarts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab03cfad-1d52-4811-856c-b52fb98ab339/sm/2013912-1449781945990-maxresdefault_(6).jpg","duration":75,"publication_date":"2012-09-27T20:55:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-97","changefreq":"weekly","video":[{"title":"2012:E84 - Minecraft - Mineball","description":"AxialMatt brings a Things to do in showing off Minecraft's newest sports sensation.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-97","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75d898ec-07c6-42c0-abf6-01aba30346a4/sm/2013912-1449781921394-maxresdefault_(5).jpg","duration":170,"publication_date":"2012-09-27T19:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-32","changefreq":"weekly","video":[{"title":"2012:E80 - TMNT Easter Egg","description":"Ray and Michael show you where to find the TMNT Easter Egg in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4c5e906-95ad-451e-af29-63f63d489b66/sm/ep5723.jpg","duration":154,"publication_date":"2012-09-27T18:05:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-18","changefreq":"weekly","video":[{"title":"2012:E39 - Halo HORSE #94","description":"Ray and Jack face off in the newest edition of Halo PIG! Cheer on your favorites!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92c42cfc-6fb1-49ed-b51d-07acba8a0b65/sm/ep5722.jpg","duration":380,"publication_date":"2012-09-26T21:12:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-19","changefreq":"weekly","video":[{"title":"2012:E83 - Minecraft - Pull My Lever","description":"Geoff and Gav show you how to take childish to all new heights in this video.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/552d50cb-e232-4a08-9384-a003ff2ce3c1/sm/ep5721.jpg","duration":100,"publication_date":"2012-09-26T20:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-34","changefreq":"weekly","video":[{"title":"2012:E49 - Borderlands 2 (Part 2)","description":"Jack, Geoff, Gavin and Michael are back in Borderlands 2 continuing their quest through Pandora. Come for the Claptrap, stay for the ninja looting by Geoff.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c08823b-1458-469d-99e4-6f5db05efa45/sm/ep5719.jpg","duration":1204,"publication_date":"2012-09-26T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wait-arent-you","changefreq":"weekly","video":[{"title":"2012:E317 - Wait, aren't you...?","description":"Samuraicorndog and Ray take you on a magical quest for keys to unlock yet another achievement in Dust: An Elysian Tail!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wait-arent-you","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a5079d1-d0cf-4c8b-bc31-93e87c510616/sm/2013912-1449781717773-maxresdefault_(4).jpg","duration":145,"publication_date":"2012-09-26T18:19:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-darksiders-high-flier-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1538 - Darksiders - High Flier Achievement Guide","description":"P3nAlPineapple shows you the easiest way on how to get the High Flier Achievement for 20G in Darksiders 1.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-darksiders-high-flier-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":70,"publication_date":"2012-09-26T18:01:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-world-of-warcraft-to-all-the-squirrels-who-cared-for-me","changefreq":"weekly","video":[{"title":"2012:E316 - World of Warcraft - To All the Squirrels Who Cared for Me","description":"Speez shows were to find all those hidden critters for this achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-world-of-warcraft-to-all-the-squirrels-who-cared-for-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff8c7b60-6cb0-4b1c-af8f-f7548c1c4733/sm/2013912-1449781692245-maxresdefault_(3).jpg","duration":324,"publication_date":"2012-09-26T17:51:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nhl-13-superstar-for-a-moment","changefreq":"weekly","video":[{"title":"2012:E315 - NHL 13 - Superstar for a Moment","description":"Marc is back in NHL 13 showing you an easier way to pick up Superstar for a Moment.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nhl-13-superstar-for-a-moment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10db2c1b-f2f6-46f7-94a4-e8fa41264160/sm/2013912-1449781668797-maxresdefault_(2).jpg","duration":103,"publication_date":"2012-09-26T17:43:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nhl-13-desperate-measures-coast-to-coast-put-it-on-net","changefreq":"weekly","video":[{"title":"2012:E314 - NHL 13 - Desperate Measures, Coast to Coast, Put it on Net","description":"Marc hits the ice in NHL 13 showing you how to easily pick up Desperate Measures, Coast to Coast, and Put it on Net.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nhl-13-desperate-measures-coast-to-coast-put-it-on-net","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":197,"publication_date":"2012-09-26T17:36:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-91","changefreq":"weekly","video":[{"title":"2012:E79 - Counter Strike: Global Offensive","description":"Lettucelord shows you Counter Strike: Global Offensive.","player_loc":"https://roosterteeth.com/embed/this-is-2012-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":303,"publication_date":"2012-09-26T17:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-90","changefreq":"weekly","video":[{"title":"2012:E78 - Fire Pro Wrestling","description":"Lettucelord shows off Fire Pro Wrestling for XBLA.","player_loc":"https://roosterteeth.com/embed/this-is-2012-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47b3091e-c6a0-4e24-bd92-15e29c41e802/sm/2013912-1449781605735-maxresdefault_(1).jpg","duration":160,"publication_date":"2012-09-26T16:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-25","changefreq":"weekly","video":[{"title":"2012:E79 - Seven Easter Egg","description":"Ray and Geoff show you where to find the Seven Easter Egg in Borderlands 2 for the Xbox 360.\r\n\r\nWhat's in the boooox!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b58794f-0013-4912-8421-a9435c155747/sm/ep5702.jpg","duration":119,"publication_date":"2012-09-26T15:54:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-5","changefreq":"weekly","video":[{"title":"2012:E3 - Elder Scrolls: Skyrim","description":"Jack and Geoff deliver you a ton of information on the game Skyrim. Watch as they discuss previously unknown things and try to pronounce weird words!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ca45688-e9f0-43b6-87e0-0b82ebd0e717/sm/ep5695.jpg","duration":397,"publication_date":"2012-09-25T20:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-110","changefreq":"weekly","video":[{"title":"2012:E78 - God of War 2 - Now I Am Become Death Easter Egg","description":"Joel (joeldiaz1995 on the site) shows you how to activate the Now I Am Become Death or Red Orb Easter Egg.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-110","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":84,"publication_date":"2012-09-25T20:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-10","changefreq":"weekly","video":[{"title":"2012:E23 - Trials Evolution - Trials Files #23","description":"Grab your toboggan, it's time to hit the slopes in the latest episode of Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9401e1b2-b3c1-41db-8fe3-339f7650d63a/sm/ep5692.jpg","duration":133,"publication_date":"2012-09-25T20:05:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-asuras-wrath-view-of-the-v-sometimes-i-feel-like-a-fish","changefreq":"weekly","video":[{"title":"2012:E313 - Asura's Wrath - View Of The V, Sometimes I Feel, Like A Fish","description":"Chad and BioRay show you how to get 3 achievements in the game Asura's Wrath. View of the Valley, Sometimes I Feel Like..., and Like a Fish","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-asuras-wrath-view-of-the-v-sometimes-i-feel-like-a-fish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f2862dd-600e-4e15-8afc-16a690c60a35/sm/2013912-1449781585022-maxresdefault.jpg","duration":179,"publication_date":"2012-09-25T19:50:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jet-set-radio-hd-no-eyes-in-the-sky-and-remixes-suck","changefreq":"weekly","video":[{"title":"2012:E312 - Jet Set Radio HD - No Eyes in the sky and Remixes suck!","description":"In this vid, Lukus01 and Semper fi 589 take on the man and bring down 5 choppers to earn them the \" No eyes in the sky\"achievement. They also refuse to pick up health packs which earns them the \"Remixes suck\" achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jet-set-radio-hd-no-eyes-in-the-sky-and-remixes-suck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":96,"publication_date":"2012-09-25T19:12:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-96","changefreq":"weekly","video":[{"title":"2012:E82 - Portal","description":"DoctorDBrown shows you how to play Portal like a pro and blow your friends mind's at it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-96","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/118f1ec1-561f-4779-baca-d18d5196256d/sm/2013912-1449781538940-maxresdefault.jpg","duration":251,"publication_date":"2012-09-25T18:47:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-asuras-wrath-shut-up-wyzen-shut-up-kalrow-shut-up-augus","changefreq":"weekly","video":[{"title":"2012:E311 - Asura's Wrath - Shut Up Wyzen, Shut Up Kalrow, Shut Up Augus","description":"Chad and BioRay show you how to get 3 achievements in the game Asura's Wrath.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-asuras-wrath-shut-up-wyzen-shut-up-kalrow-shut-up-augus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/221d0e32-661e-42d0-9fcc-5dc83738a31e/sm/2013912-1449777563529-maxresdefault_(13).jpg","duration":120,"publication_date":"2012-09-25T18:31:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-18","changefreq":"weekly","video":[{"title":"2012:E48 - Trouble in Terrorist Town","description":"Geoff, Michael, Ray, Gavin and Ryan (and some random server denizens) take on Trouble in Terrorist Town for our first PC Let's Play! Mystery! Intrigue! And a lot of accidentally on purpose team kills...","player_loc":"https://roosterteeth.com/embed/lets-play-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed1654da-6401-4054-a767-ae8f162cae3e/sm/ep5681.jpg","duration":1635,"publication_date":"2012-09-24T21:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-10","changefreq":"weekly","video":[{"title":"2012:E39 - Week #131","description":"Jack and Geoff bring you another week of goodies including an intro that made Ray's head explode with excitement! Enjoy AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/944b43fd-2f34-41e8-83e6-64f9df2c1298/sm/ep5679.jpg","duration":371,"publication_date":"2012-09-24T20:01:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-17","changefreq":"weekly","video":[{"title":"2012:E76 - Rakkman Easter Egg","description":"Ray and Gavin show you where to find the Rakkman Easter Egg in Borderlands 2 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bf7edbe-c143-4615-bae5-40f8b70792f2/sm/ep5678.jpg","duration":132,"publication_date":"2012-09-24T19:49:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-definitely-an-italian-plumber","changefreq":"weekly","video":[{"title":"2012:E310 - Definitely An Italian Plumber","description":"Ray and Michael show you how to get the \"Definitely An Italian Plumber\" achievement in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-definitely-an-italian-plumber","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2501218-a99e-4357-9f90-e603f734a55c/sm/ep5663.jpg","duration":125,"publication_date":"2012-09-24T15:40:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-9","changefreq":"weekly","video":[{"title":"2012:E47 - Minecraft Episode 17","description":"This is it! The final part of the mission for Gav, Michael, Ray and Jack to take the tower of pimps from Geoff. Who will succeed FIND OUT NOW!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/646c79d6-6ca1-4f35-960e-641d559c9b17/sm/ep5660.jpg","duration":1762,"publication_date":"2012-09-21T22:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-mirror-edge","changefreq":"weekly","video":[{"title":"2012:E309 - Game Night: Halo Reach - Mirror Edge","description":"Geoff and Caleb take a look at Slayer Teams on Mirror Edge in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-mirror-edge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42dfcf24-32cd-4f81-beff-8632f9bb3079/sm/ep5659.jpg","duration":88,"publication_date":"2012-09-21T19:48:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-95","changefreq":"weekly","video":[{"title":"2012:E81 - Minecraft - Labyrinth","description":"superninja56 brings you an awesome things to do in%u2026 Minecraft, where it's easy to get lost!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-95","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":120,"publication_date":"2012-09-21T18:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-94","changefreq":"weekly","video":[{"title":"2012:E80 - Minecraft - Faster Wall Building","description":"KinkyPeach teaches you to save time while building. Instead of placing each and every block when building castle walls, use this simple lava technique to speed up your construction!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-94","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36440a00-3077-4451-9025-9002b1524b82/sm/2013912-1449777521402-maxresdefault_(12).jpg","duration":183,"publication_date":"2012-09-21T17:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-what-does-it-mean","changefreq":"weekly","video":[{"title":"2012:E308 - What does it mean?","description":"Ray and Geoff show you how to get the \"What does it mean\" achievement in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-what-does-it-mean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9127e1b5-9da5-4dc9-9137-ed150bae9a7d/sm/ep5651.jpg","duration":155,"publication_date":"2012-09-21T16:03:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-3","changefreq":"weekly","video":[{"title":"2012:E39 - Volume 105","description":"Jack and Geoff continue the long standing tradition of making fun of a series of clips in Halo: Reach, and Geoff continues his tradition of copying the description from the last episode and pasting it without editing it in any way.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d8b5814-b9b4-4e4d-a576-2cae2afd3d5d/sm/ep5650.jpg","duration":277,"publication_date":"2012-09-21T14:33:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012","changefreq":"weekly","video":[{"title":"2012:E38 - Happy Wheels Part II","description":"This week on Rage Quit, school is back in session as Michael enrolls in Happy Wheels 101. Will he pass the class or flip the flunk out for a second time \n\nAlso, dinosaurs.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07659565-59e4-49ef-b3f9-1a3dec2e6846/sm/ep5648.jpg","duration":194,"publication_date":"2012-09-20T22:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-23","changefreq":"weekly","video":[{"title":"2012:E21 - Trials PIG #23","description":"Ray and Michael go pig-to-pig in today's episode of Trials PIG! Enjoy this tense match with crazy awesome maps!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c94e700-3fe3-44c6-ae70-b1751a75b282/sm/ep5647.jpg","duration":373,"publication_date":"2012-09-20T21:35:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-eko-madness","changefreq":"weekly","video":[{"title":"2012:E307 - E'ko Madness","description":"Speez shows you how to pick up the E'ko Madness achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-eko-madness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d99cf0-46da-48ea-b3fd-04ea0cc59f01/sm/2013912-1449777498786-maxresdefault_(11).jpg","duration":285,"publication_date":"2012-09-20T20:54:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dust-an-elysian-tail-a-decent-start-and-thats-more-like-it","changefreq":"weekly","video":[{"title":"2012:E306 - Dust an Elysian Tail - A Decent Start & That's More Like it","description":"Axialmatt and Combatwombat give you a quick and easy strategy to get an over 1000 hit combo and two achievements. That's a win win indeed.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dust-an-elysian-tail-a-decent-start-and-thats-more-like-it","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ef8058b-1e7f-45ae-aaeb-f2c209407884/sm/2013912-1449777475051-maxresdefault_(10).jpg","duration":105,"publication_date":"2012-09-20T20:38:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-93","changefreq":"weekly","video":[{"title":"2012:E79 - Call of Duty 3 - Speedy Tanks!!","description":"In this installment of \"Things to do in,\" HI IM CAPS LOCK and Lord Haladar show you how to tank at high velocity.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-93","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/413341bc-16a2-4b99-b077-68e0aa04c597/sm/2013912-1449777283751-maxresdefault_(9).jpg","duration":179,"publication_date":"2012-09-20T20:02:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-goliath-meet-david","changefreq":"weekly","video":[{"title":"2012:E305 - Goliath, Meet David","description":"Ray and Gavin show you how to get the \"Goliath, Meet David\" achievement in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-goliath-meet-david","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7283ffa3-6eec-4f4c-9e87-1187d3464144/sm/ep5639.jpg","duration":154,"publication_date":"2012-09-20T19:05:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-88","changefreq":"weekly","video":[{"title":"2012:E76 - Tekken Tag Tournament 2","description":"Chenzo and Hightower suit up and throw down in this latest Tekken installment.","player_loc":"https://roosterteeth.com/embed/this-is-2012-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a5ca295-2d6a-4165-8e2c-e20b3d860363/sm/2013912-1449777256174-maxresdefault_(8).jpg","duration":498,"publication_date":"2012-09-20T18:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-persona-4-arena-meat-dimension-and-perfect","changefreq":"weekly","video":[{"title":"2012:E304 - Persona 4 Arena: Meat Dimension and Perfect!","description":"ThatPirate presents a simple guide to getting the Meat Dimension and Perfect! Achievements/Trophies","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-persona-4-arena-meat-dimension-and-perfect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f33bff2-a6e5-4669-b5ee-5153f9d847d4/sm/2013912-1449777233173-maxresdefault_(7).jpg","duration":110,"publication_date":"2012-09-20T18:39:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-50","changefreq":"weekly","video":[{"title":"2012:E38 - Halo HORSE #93","description":"Jack and Geoff face off yet again in this battle to the death... or at least to lunch.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80479988-1fdf-48e6-8cdc-7c089436a7b7/sm/ep5629.jpg","duration":429,"publication_date":"2012-09-19T22:35:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-53","changefreq":"weekly","video":[{"title":"2012:E78 - Minecraft - Connect 4","description":"Gav and Geoff play a giant game of Connect 4 in Minecraft. Who will manage to connect 4 Who cares.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af9a5127-bd28-48d1-871c-2f139ad4d76a/sm/ep5628.jpg","duration":111,"publication_date":"2012-09-19T21:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-90","changefreq":"weekly","video":[{"title":"2012:E46 - Borderlands 2 Episode 1","description":"Jack, Geoff, Michael and Gavin dive head first into Borderlands 2. Who will survive the longest Who will be the first to die Who will murder Gavin first Watch and learn!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e5f69d9-d2d0-49b2-ad9f-0fc9ccd581cf/sm/ep5627.jpg","duration":1817,"publication_date":"2012-09-19T18:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ghost-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1495 - Ghost Achievement Guide","description":"Michael and Gavin show you how to get the \"Ghost\" achievement in Mark of the Ninja for the Xbox Live Arcade.\r\n\r\nIt's as slippery as a silk glove.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ghost-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/222bdb35-e2eb-4709-bb40-8e6e0e05a70e/sm/ep5626.jpg","duration":360,"publication_date":"2012-09-19T16:14:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-up-high-down-low","changefreq":"weekly","video":[{"title":"2012:E303 - Up High, Down Low","description":"Ray and Gavin show you how to get the \"Up High, Down Low\" achievement in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-up-high-down-low","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e511ba77-c7b5-44fd-86b5-ccf9cc7d750e/sm/ep5624.jpg","duration":77,"publication_date":"2012-09-19T14:27:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-78","changefreq":"weekly","video":[{"title":"2012:E72 - Minecraft Easter Egg","description":"Ray and Geoff show you to find the Minecraft Easter Egg in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/596f6f7d-6208-4cc9-818f-827772e88cd1/sm/ep5622.jpg","duration":244,"publication_date":"2012-09-18T21:44:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-16","changefreq":"weekly","video":[{"title":"2012:E2 - Sonic the Hedgehog","description":"Franco and Mike check out some awesome gaming facts about Sonic the Hedgehog!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca3840c0-cbb4-436f-80ff-fdbd628dfd49/sm/ep5621.jpg","duration":322,"publication_date":"2012-09-18T21:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-blades-edge-bomberman","changefreq":"weekly","video":[{"title":"2012:E302 - Blade's Edge Bomberman","description":"Speez shows you how to get the achievement Blade's Edge Bomberman in World of Warcraft.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-blades-edge-bomberman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8f56d9e-d1e9-4da0-bb39-d89b18adc412/sm/2013912-1449777190425-maxresdefault_(5).jpg","duration":142,"publication_date":"2012-09-18T18:11:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-91","changefreq":"weekly","video":[{"title":"2012:E77 - Halo: Reach - Squid Riding","description":"In this video, Preston, Hayk, Nick, and Averaz show you Squid Riding in Halo Reach!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-91","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b284b701-4cc8-4ecf-a116-42d33768d8eb/sm/2013912-1449777167634-maxresdefault_(4).jpg","duration":144,"publication_date":"2012-09-18T18:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-maw-eyes-of-the-beloofer","changefreq":"weekly","video":[{"title":"2012:E301 - Maw - Eyes of the Beloofer","description":"In this vid, Lukus01 and Semper fi 589 show you how to shoot lazers out of your eyes to earn yourself the \"eyes of the Beloofer achievement\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-maw-eyes-of-the-beloofer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":122,"publication_date":"2012-09-18T17:56:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-92","changefreq":"weekly","video":[{"title":"2012:E76 - Minecraft: Bumper Boats","description":"Axialmatt and CombatWombat bring a game that makes boats being so crappy a good thing...Seems impossible right...Wrong!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-92","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0ed9aef-f59e-4f83-9a08-3db6ef2432fc/sm/2013912-1449777113699-maxresdefault_(3).jpg","duration":152,"publication_date":"2012-09-18T16:51:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-35","changefreq":"weekly","video":[{"title":"2012:E22 - Trials Evolution - Trials Files #22","description":"Geoff and Jack have a Pac Attack in Trials Evolution.\r\n\r\n\r\nWacka Wacka Wacka","player_loc":"https://roosterteeth.com/embed/trials-files-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2962a95-e6e3-4cc6-beca-6b14aee70b8f/sm/ep5610.jpg","duration":140,"publication_date":"2012-09-18T16:18:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-flying-hurler","changefreq":"weekly","video":[{"title":"2012:E300 - High-Flying Hurler","description":"Ray and Geoff show you how to get the \"High-Flying Hurler\" achievement in Borderlands 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-flying-hurler","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eea3e75c-d482-4174-87a9-dd532c02dfaa/sm/ep5609.jpg","duration":66,"publication_date":"2012-09-18T14:36:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-august-2012","changefreq":"weekly","video":[{"title":"2012:E8 - Best fails of August 2012","description":"Best of August Time! Jack went missing (probably deep in the congo somewhere) so I pulled Ray and Geoff in to look at your favorite fails (by likes) for August!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-august-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c258059-a942-4fbe-9768-5b01be43a5fb/sm/ep5608.jpg","duration":168,"publication_date":"2012-09-17T23:43:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-kingdom-hearts","changefreq":"weekly","video":[{"title":"2012:E299 - Retro Active: Kingdom Hearts","description":"Fragger takes a look at a highly requested game in Retro Active. Join him for Kingdom Hearts!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-kingdom-hearts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68592b2f-0837-44b1-ab0c-3786a3639da9/sm/ep5607.jpg","duration":236,"publication_date":"2012-09-17T22:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-48","changefreq":"weekly","video":[{"title":"2012:E38 - Week #130","description":"Jack and Geoff are here for another week of goodies! Don't forget to check out the special discount for the Rooster Teeth store! WATCH and learn!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abca9aae-bcdb-4042-ba4a-2c2bbe8d56a2/sm/ep5606.jpg","duration":410,"publication_date":"2012-09-17T21:46:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quickbits-episode-5","changefreq":"weekly","video":[{"title":"S1:E5 - Episode 5","description":"Quickbits highlights hilarious moments from Achievement Hunter videos old and new. This week showcases extreme stupidity in three Let's Plays (Minecraft, Worms 2: Armageddon, and Saints Row The Third).\n\nOriginal Vids located here:\nWorms 2: Armageddon - \nMinecraft - \nSaints Row The Third -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quickbits-episode-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b38819b3-456d-44b4-8492-e955adb1afa1/sm/ep5605.jpg","duration":121,"publication_date":"2012-09-17T21:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-84","changefreq":"weekly","video":[{"title":"2012:E45 - Minecraft Episode 16","description":"Gav, Michael, Ray and even Jack finally shows up to try and get Geoff down from his lava-leaking sky fortress.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4b5e311-2d57-429e-a4af-dce2e59d9bfa/sm/ep5602.jpg","duration":1410,"publication_date":"2012-09-14T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-48","changefreq":"weekly","video":[{"title":"2012:E38 - Volume 104","description":"Jack and Geoff continue the long standing tradition of making fun of a series of clips in Halo: Reach. Laugh along with them!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/716da7e8-6ab6-4e7c-b6ef-bb872688dddb/sm/ep5601.jpg","duration":260,"publication_date":"2012-09-14T20:28:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-troy-v2","changefreq":"weekly","video":[{"title":"2012:E298 - Game Night: Halo Reach - Troy V2","description":"Geoff and Caleb participate in the fall of Troy, Halo Spartan style.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-troy-v2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0075b2fc-c4c3-4b7d-89e9-481e5f2d8e05/sm/ep5600.jpg","duration":92,"publication_date":"2012-09-14T19:10:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-70","changefreq":"weekly","video":[{"title":"2012:E70 - T-Rex Skull Easter Egg","description":"Ray and Michael show you where to find the T-Rex Skull Easter Egg in the new Armored Kill DLC for Battlefield 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cb4927a-c707-4be7-8146-16995b51b617/sm/ep5599.jpg","duration":95,"publication_date":"2012-09-14T15:47:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-46","changefreq":"weekly","video":[{"title":"2012:E37 - Splodge","description":"This week on Rage Quit, Michael tries his luck in the Xbox Live Indie game, Splodge.\n\nSomeone should have told him there would be spikes.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/641e26ad-1a4a-45e4-9d42-43b6cc3bcf34/sm/ep5597.jpg","duration":310,"publication_date":"2012-09-14T00:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-22","changefreq":"weekly","video":[{"title":"2012:E20 - Trials PIG #22","description":"Geoff and Gavin hit up the madness that is Trials Evolution and come away with something that is a FIRST in the world of HORSE and PIG and Achievement Hunter! Watch and learn!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4d660b7-71dc-4e93-b087-4764ef0a768d/sm/ep5596.jpg","duration":344,"publication_date":"2012-09-13T22:55:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-68","changefreq":"weekly","video":[{"title":"2012:E69 - Gnome Easter Egg","description":"Ray and MIchael show you where to find the Gnome Easter Egg in the new Armored Kill DLC for Battlefield 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08d6db14-8b7c-4af7-8a35-78bf0fa419e7/sm/ep5595.jpg","duration":87,"publication_date":"2012-09-13T14:28:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-44","changefreq":"weekly","video":[{"title":"2012:E37 - Halo HORSE #92","description":"Michael and Ray go heads up in another stunning game of PIG. Who will win The fan of roses or the angry one FIGHT NOW!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8dac53b4-b314-4b4e-81ce-c0f50b719248/sm/ep5594.jpg","duration":365,"publication_date":"2012-09-12T22:29:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-47","changefreq":"weekly","video":[{"title":"2012:E75 - Minecraft - EE-I-EE-I-Whoa","description":"Honey, Geoff and Gav blew up the animals.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9740d59-4a78-4fcd-9e1c-7e2169c6a3be/sm/ep5593.jpg","duration":100,"publication_date":"2012-09-12T20:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-81","changefreq":"weekly","video":[{"title":"2012:E44 - Worms 2: Armageddon Episode 2","description":"Michael, Gavin, Geoff and Ray continue the carnage in Worms 2: Armageddon","player_loc":"https://roosterteeth.com/embed/lets-play-2012-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb81f248-f7c1-4b7d-972b-bca659befc1d/sm/ep5592.jpg","duration":2261,"publication_date":"2012-09-12T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-snare-things-better-left-unseen-and-oni-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1488 - Snare, Things Better Left Unseen, & Oni Achievement Guide","description":"Michael and Ray show you how to get the \"Snare, Things Better Left Unseen, & Oni\" achievements in Mark of the Ninja for the Xbox Live Arcade.\r\n\r\nPoor Billy.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-snare-things-better-left-unseen-and-oni-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/935f3723-b92c-4a16-8b9d-db9a7d816061/sm/ep5590.jpg","duration":144,"publication_date":"2012-09-12T15:20:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/five-facts-2012-14","changefreq":"weekly","video":[{"title":"2012:E1 - Resident Evil 4","description":"Franco and Michael drop a new series right on top of your head. Enjoy Five Facts! Let us know what you think!","player_loc":"https://roosterteeth.com/embed/five-facts-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/359e466a-db6a-4ff7-b7f8-ead9ca51c502/sm/ep5589.jpg","duration":297,"publication_date":"2012-09-11T17:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-32","changefreq":"weekly","video":[{"title":"2012:E21 - Trials Evolution - Trials Files #21","description":"Geoff and Gavin play a little Peggle... Evolved in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a23e2f8-9740-4dc8-94ae-fb96a34a876c/sm/ep5588.jpg","duration":127,"publication_date":"2012-09-11T17:01:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-45","changefreq":"weekly","video":[{"title":"2012:E37 - Week #129","description":"Jack and Geoff are back with a whole slew of releases for the week. Keep your eye on the background to see if anything dumb happens. It does.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58a072ea-0089-4ba4-8e2f-bf5452a6a8df/sm/ep5586.jpg","duration":278,"publication_date":"2012-09-10T21:10:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-earthworm-jim-2","changefreq":"weekly","video":[{"title":"2012:E297 - Retro Active: Earthworm Jim 2","description":"Fragger takes a look back at the classic SNES / Genesis game, Earthworm Jim 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-earthworm-jim-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7fe403d-c6bd-4440-a6e1-0267498e7aa3/sm/ep5585.jpg","duration":140,"publication_date":"2012-09-10T21:08:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quickbits-episode-4","changefreq":"weekly","video":[{"title":"S1:E4 - Episode 4","description":"Quickbits highlights hilarious moments from Achievement Hunter videos old and new. This week showcases extreme stupidity in three Let's Plays (Minecraft, Worms 2: Armageddon, and Trials Evolution).\n\nOriginal Vids located here:\nMinecraft - \nWorms 2: Armageddon - \nTrials Evolution -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quickbits-episode-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66a711f2-5058-4317-98bb-99d91e9161bd/sm/ep5584.jpg","duration":123,"publication_date":"2012-09-10T19:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-parish-teddy-bear","changefreq":"weekly","video":[{"title":"2012:E296 - Parish Teddy Bear","description":"Ray and Michael show you where to find the hidden teddy bear in the Parish DLC map in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-parish-teddy-bear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/267e60b1-bfac-4a01-9ab5-a338825902bd/sm/ep5583.jpg","duration":71,"publication_date":"2012-09-10T15:27:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-45","changefreq":"weekly","video":[{"title":"2012:E37 - Volume 103","description":"Jack and Geoff go for the gold this week in Fails of the Weak! Join them as they search for that elusive goal... COMEDY!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2115016f-b5a9-49e4-b7a3-853e56132ed9/sm/ep5582.jpg","duration":254,"publication_date":"2012-09-07T19:29:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-48","changefreq":"weekly","video":[{"title":"2012:E72 - Skyrim: Hearthfire","description":"Michael and Geoff are back in Skyrim to take you on a tour of the Hearthfire DLC for the Xbox 360. Don't forget to bring a housewarming gift!","player_loc":"https://roosterteeth.com/embed/this-is-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0202fdce-070a-4d60-90ba-f95478b0351c/sm/ep5581.jpg","duration":446,"publication_date":"2012-09-07T19:26:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-wonders-of-the-world","changefreq":"weekly","video":[{"title":"2012:E295 - Game Night: Halo Reach - Wonders of the World","description":"Geoff and Caleb take a tour around the world in the latest edition of Game Night in Halo Reach. Map Creator: http://halo.xbox.com/en-us/Career/haloreach/ServiceRecordgamertag=ducain23 Map: http://halo.xbox.com/en-us/haloreach/ducain23/fileshare#!/section=MapVariants&MapId=&GameMode=0&SearchDate=7&SortBy=2&view-select=Tile&tags=&startIndex=0","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-wonders-of-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37267fb6-e637-4bed-996b-5943c95c78ee/sm/ep5580.jpg","duration":112,"publication_date":"2012-09-07T19:16:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-76","changefreq":"weekly","video":[{"title":"2012:E43 - Minecraft Episode 15","description":"Geoff, Gav, Michael and Ray deal with the latest issues in Achievement City. I'm beginning to think these guys should get a better security system.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61463352-0025-483b-b354-a0f199ae39c1/sm/ep5579.jpg","duration":1430,"publication_date":"2012-09-07T15:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-42","changefreq":"weekly","video":[{"title":"2012:E36 - Nyan Cat Adventure","description":"This week on Rage Quit, Michael plays the Xbox Live Indie Game, Nyan Cat Adventure.\n\nI wish I crapped rainbows.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3a1ffed-214b-4396-ac5f-d45162cae504/sm/ep5577.jpg","duration":342,"publication_date":"2012-09-06T23:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-21","changefreq":"weekly","video":[{"title":"2012:E19 - Trials PIG #21","description":"Ray and Gavin face off in Trials Evolution. Who will win and who will smash their face into various items","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e780f0c-9ba7-4e61-9c96-339ba288ffed/sm/ep5576.jpg","duration":310,"publication_date":"2012-09-06T21:30:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gulch-teddy-bear","changefreq":"weekly","video":[{"title":"2012:E294 - Gulch Teddy Bear","description":"Ray and Geoff show you where to find the hidden teddy bear and another surprise in the Gulch DLC map in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gulch-teddy-bear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06cda2c8-e9a3-428c-84f6-5e090060a3d7/sm/ep5575.jpg","duration":89,"publication_date":"2012-09-06T14:50:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-39","changefreq":"weekly","video":[{"title":"2012:E36 - Halo HORSE #91","description":"Jack and Geoff face off in a brand new slew of maps submitted by fans. Who will win this epic match of PIG in the world of Halo","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12eec82b-d03d-419f-813c-8d0a16f016ca/sm/ep5574.jpg","duration":425,"publication_date":"2012-09-05T22:49:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-43","changefreq":"weekly","video":[{"title":"2012:E74 - Minecraft - Dart Toss","description":"Geoff and Gavin play a few rounds of Dart Toss in Things to do in: Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d6061b8-1af7-4a0f-870c-4b13f4fd92c7/sm/ep5573.jpg","duration":271,"publication_date":"2012-09-05T18:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-74","changefreq":"weekly","video":[{"title":"2012:E42 - Worms 2: Armageddon Episode 1","description":"Michael, Gavin, Geoff and Ray load up Worms 2: Armageddon and get ready for war....again.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7531bc1-4143-4637-bb9d-8c7b09efbaf6/sm/ep5571.jpg","duration":1936,"publication_date":"2012-09-05T14:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012-6","changefreq":"weekly","video":[{"title":"2012:E2 - Dick Wave","description":"Gav and Geoff give you an insight into how they keep themselves entertained while they wait for footage to render. This week they try to make a penis show up in the waveform using only their voice.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/480fa4b0-2a83-4c35-a7e1-f1971737ac2d/sm/ep5570.jpg","duration":180,"publication_date":"2012-09-04T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-28","changefreq":"weekly","video":[{"title":"2012:E20 - Trials Evolution - Trials Files #20","description":"Jack and Geoff take a look at a medieval map in Trials Evolution. Get your lances ready!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53e6ae4-d496-4557-92a4-1aa7c22c79fb/sm/ep5569.jpg","duration":80,"publication_date":"2012-09-04T18:07:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-41","changefreq":"weekly","video":[{"title":"2012:E36 - Week #128","description":"Jack is out at PAX in Seattle so he had to find some backup to help him in this week's AHWU! Join him, Gus and Barbara (with special guest Eric from Mega64) as they talk about the week in games and other stuff! This episode of AHWU is brought to you by Game.Minder, go check out their kick ass app at http://www.gameminder.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/229b2ffd-540c-41c7-9d41-af54999a984f/sm/ep5568.jpg","duration":262,"publication_date":"2012-09-04T01:09:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-3","changefreq":"weekly","video":[{"title":"S1:E3 - Episode 3","description":"Quickbits highlights hilarious moments from classic Achievement Hunter videos. This week showcases extreme stupidity in three Let's Plays (Minecraft, Left 4 Dead 2, and Worms).\n\nOriginal Vids located here:\nMinecraft - \nLeft 4 Dead 2 - h\nWorms -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2783482c-37f3-4ae7-9673-023944efd1b5/sm/ep5566.jpg","duration":123,"publication_date":"2012-09-03T18:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-42","changefreq":"weekly","video":[{"title":"2012:E36 - Halo Reach - Fails of the Weak Volume 102","description":"Jack and Geoff take a look at another ten hilarious fails in Halo Reach.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4095d0b5-5e00-439f-a5b6-eb44fc1d9c4e/sm/ep5564.jpg","duration":241,"publication_date":"2012-08-31T14:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-tornado-time","changefreq":"weekly","video":[{"title":"2012:E293 - Game Night: Halo Reach - Tornado Time!","description":"Geoff and Caleb take the map/gametype \"Let's Tornado Time on Tornado Arena\" (created by HI IM CAPS LOCK) for a spin in this week's Game Night. You can get the gametype and map here:\r\n\r\nhttp://halo.xbox.com/en-us/haloreach/filebrowser/Details/24728430\r\nhttp://halo.xbox.com/en-us/haloreach/filebrowser/Details/24714592","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-tornado-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c78a4189-4266-40a2-b503-0aa992d04103/sm/ep5563.jpg","duration":75,"publication_date":"2012-08-31T14:15:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-39","changefreq":"weekly","video":[{"title":"2012:E35 - Geometry Wars: Retro Evolved","description":"This week on Rage Quit, Michael tests his mathematical aptitude in Geometry Wars: Retro Evolved for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9049330-f779-4885-a4c1-a2aec5847053/sm/ep5561.jpg","duration":295,"publication_date":"2012-08-30T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-20","changefreq":"weekly","video":[{"title":"2012:E18 - Trials PIG #20","description":"Jack and Gavin square off in this week's Trials Evolution - Achievement PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/756bf7c0-e428-481b-881e-1d75592860eb/sm/ep5560.jpg","duration":384,"publication_date":"2012-08-30T18:53:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-68","changefreq":"weekly","video":[{"title":"2012:E40 - Left 4 Dead 2: Cold Stream - With Geoff Jack Michael and Gavin - Part 2","description":"Geoff, Jack, Michael and Gavin finish taking on the endless hordes of zombies in the new L4D2 DLC, Cold Stream. Gavin has footage this time.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97b7b172-5f8b-4d5d-8741-b8bbe37a5e8d/sm/ep5558.jpg","duration":1622,"publication_date":"2012-08-29T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-40","changefreq":"weekly","video":[{"title":"2012:E73 - Minecraft - Jousting","description":"Gav and Geoff go medieval on your assholes with some minecraft jousting!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/505e042f-702d-4ddf-bebc-2e542a93ff93/sm/ep5557.jpg","duration":95,"publication_date":"2012-08-29T20:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-37","changefreq":"weekly","video":[{"title":"2012:E35 - Halo HORSE #90","description":"Jack and Geoff are back to play a little HORSE, Halo style!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/683f25c3-8646-40bc-895d-4d0d79606252/sm/ep5556.jpg","duration":440,"publication_date":"2012-08-29T20:18:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2012-5","changefreq":"weekly","video":[{"title":"2012:E1 - Rage Quit - Slender","description":"Michael and Gavin show you exclusive behind the scenes footage of Rage Quit - Slender Part 2. There's nothing quite like the look of fear in Gavin's eyes. So satisfying.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8e3bd2f-c1ea-434f-8375-ab010d439360/sm/ep5554.jpg","duration":238,"publication_date":"2012-08-28T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-39","changefreq":"weekly","video":[{"title":"2012:E70 - Transformers: Fall of Cybertron","description":"Fragger and Geoff take a look at Transformers: Fall of Cybertron for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f56ef40-d216-49b5-8675-24d470509b2f/sm/ep5553.jpg","duration":414,"publication_date":"2012-08-28T20:49:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-25","changefreq":"weekly","video":[{"title":"2012:E19 - Trials Evolution - Trials Files #19","description":"Geoff and Jack check out a Mario themed map in this edition of Trials Evolution: Trials Files!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9ff8e35-df62-4662-bb61-ecb153071268/sm/ep5552.jpg","duration":93,"publication_date":"2012-08-28T15:57:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-37","changefreq":"weekly","video":[{"title":"2012:E35 - Week #127","description":"Jack brings Jordan and Barbara into the fold this week as AHWU travels to Toronto! Watch scenes from a sidewalk and an airport in this week's episode! Don't forget to check out Quick Bits! The newest show from Achievement Hunter!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7076ef36-f799-4252-9e99-a1ac28844e18/sm/ep5551.jpg","duration":220,"publication_date":"2012-08-28T02:34:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quick-bits-episode-2","changefreq":"weekly","video":[{"title":"S1:E2 - Episode 2","description":"Quickbits highlights hilarious moments from classic Achievement Hunter videos. This week showcases extreme stupidity in three Let's Plays (Minecraft, Left 4 Dead 2, and Mari0).\n\nOriginal Vids located here:\nMinecraft - \nLeft 4 Dead 2 - \nMari0 -","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quick-bits-episode-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ade6c88a-9cdb-45f3-8da8-5070dc23aab6/sm/ep5550.jpg","duration":119,"publication_date":"2012-08-27T21:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-the-dig","changefreq":"weekly","video":[{"title":"2012:E292 - Retro Active: The Dig","description":"Fragger takes a look at The Dig in this episode of Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-the-dig","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa9684fc-6e2e-429b-9bc0-7bf75ef9df65/sm/ep5549.jpg","duration":164,"publication_date":"2012-08-27T21:03:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-39","changefreq":"weekly","video":[{"title":"2012:E35 - Halo: Reach - Fails of the Weak Volume 101","description":"It's Jack! It's Geoff! It's people being shitty at Halo!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/734f4906-435e-4ac3-b222-02b394b70f54/sm/ep5547.jpg","duration":256,"publication_date":"2012-08-24T19:32:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-splatter-flag","changefreq":"weekly","video":[{"title":"2012:E291 - Game Night: Halo Reach - Splatter Flag","description":"Geoff and Caleb take a look at the Splatter Flag gametype and map in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-splatter-flag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3abfae72-7dad-4796-be88-c8d44ce3f7f2/sm/ep5546.jpg","duration":116,"publication_date":"2012-08-24T16:35:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skin-pack-2-dlc","changefreq":"weekly","video":[{"title":"2012:E290 - Skin Pack 2 DLC","description":"Ray and Geoff check out all the new skins in the new Minecraft Skin Pack 2 DLC.\r\n\r\nShout out to Geoff's phone.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skin-pack-2-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14b45fdd-6365-45d1-bc22-9f1e732edfe1/sm/ep5545.jpg","duration":137,"publication_date":"2012-08-24T16:35:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-36","changefreq":"weekly","video":[{"title":"2012:E34 - Slender Part 2","description":"This week on Rage Quit, Michael and Gavin are back for more terrifying action in Slender.\n\nDo they have what it takes to overcome their fears and find all 8 missing pages WIth Gavin controlling the mouse again, I seriously doubt it.\n\nEnjoyed part 2, did you Then check out the original! \n\nRage Quit - Slender: \n\nDare to try it yourself\nSlender: http://slendergame.com/","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f7a89b9-5866-4da1-a01b-9159f5bd5d73/sm/ep5542.jpg","duration":338,"publication_date":"2012-08-24T03:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-19","changefreq":"weekly","video":[{"title":"2012:E17 - Trials PIG #19","description":"Jack and Ray go at it in this week's Trials Evolution - Achievement PIG!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98bd30e8-cb2f-41db-81ad-fadbadcc71f7/sm/ep5541.jpg","duration":222,"publication_date":"2012-08-23T17:31:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-safe-driver-guide","changefreq":"weekly","video":[{"title":"2012:E1487 - Safe Driver Guide","description":"Ray and Geoff show you how to get the \"Safe Driver\" achievement in Sleeping Dogs for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-safe-driver-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feded765-88b5-48a3-8386-44b1e2a74fde/sm/ep5540.jpg","duration":76,"publication_date":"2012-08-23T14:53:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-35","changefreq":"weekly","video":[{"title":"2012:E72 - Minecraft - Shooting Gallery","description":"Geoff and Gav go head to head at the shooting gallery. Bring along three idiots that you know and you can do it too!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eabe2c99-be74-40b6-bad1-fd7a0b031c82/sm/ep5539.jpg","duration":118,"publication_date":"2012-08-22T20:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-32","changefreq":"weekly","video":[{"title":"2012:E34 - Halo HORSE #89","description":"Burnie and Kerry battle it out in the FINALS of our Office Tournament! Who will win the Silver trophy and get bragging rights until next Summer Watch and learn!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e99fab8d-6fa2-453c-8721-b524000cf2e4/sm/ep5538.jpg","duration":554,"publication_date":"2012-08-22T18:32:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-58","changefreq":"weekly","video":[{"title":"2012:E39 - Left 4 Dead 2: Cold Stream - With Geoff Jack Michael and Gavin - Part 1","description":"Geoff, Jack, Michael and Gavin take on the endless hordes of zombies in the new L4D2 DLC, Cold Stream. Gavin's footage exploded, so you can't see his screen. Instead, just imagine him shooting his gun a bunch, hitting his team mates and missing most of the zombies.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/498f6b63-0f6e-457c-9549-049cb387594d/sm/ep5537.jpg","duration":1417,"publication_date":"2012-08-22T18:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-34","changefreq":"weekly","video":[{"title":"2012:E69 - Sleeping Dogs","description":"Geoff and Ray check out the very awesome Sleeping Dogs. Watch as the two of them talk about slapping people with fish and hang out in a karaoke bar.","player_loc":"https://roosterteeth.com/embed/this-is-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b266866-f15b-45cb-9f3f-096e14fc509a/sm/ep5536.jpg","duration":537,"publication_date":"2012-08-22T17:24:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-22","changefreq":"weekly","video":[{"title":"2012:E18 - Trials Evolution - Trials Files #18","description":"Geoff and Jack do some ill-advised driving in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c17714-1b94-460e-a438-73ca75509461/sm/ep5534.jpg","duration":160,"publication_date":"2012-08-21T20:22:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sharpshooter-guide","changefreq":"weekly","video":[{"title":"2012:E1486 - Sharpshooter Guide","description":"Ray and Michael show you how to get the \"Sharpshooter\" achievement in the game Sleeping Dogs for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sharpshooter-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e589574-0ea6-4c52-b449-c76a0bb6a183/sm/ep5533.jpg","duration":107,"publication_date":"2012-08-21T15:16:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/quick-bits-season-1-quickbits-episode-1","changefreq":"weekly","video":[{"title":"S1:E1 - Episode 1","description":"Quickbits highlights hilarious moments from classic Achievement Hunter videos. This week showcases extreme stupidity in three Let's Plays (Minecraft, MLB 2K12, and London 2012).","player_loc":"https://roosterteeth.com/embed/quick-bits-season-1-quickbits-episode-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0828aecf-9ef7-429d-bd2a-308ebf80a729/sm/ep5532.jpg","duration":132,"publication_date":"2012-08-21T00:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-32","changefreq":"weekly","video":[{"title":"2012:E34 - Week #126","description":"Jack and Geoff are here to deliver you some hard hitting news in the world of gaming. Come for the STEAM news and stay for the cute girls announcing numbers. Don't forget to pick up an Achievement Hunter hoodie at the Rooster Teeth store! http://roosterteeth.com/store/product.phpid=325","player_loc":"https://roosterteeth.com/embed/ahwu-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b4fbe6c0-0678-42cd-a37c-51d544e6e358/sm/ep5530.jpg","duration":336,"publication_date":"2012-08-20T19:14:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-infowlable-guide","changefreq":"weekly","video":[{"title":"2012:E1485 - Infowlable Guide","description":"Ray and Geoff show you how to get the \"Infowlable\" achievement in Sleeping Dogs for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-infowlable-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fab3f6bd-dc5a-4024-9d8d-4030cc8e224e/sm/ep5529.jpg","duration":104,"publication_date":"2012-08-20T15:40:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-57","changefreq":"weekly","video":[{"title":"2012:E38 - Minecraft Episode 12 - With Geoff, Gav, Michael, Ray and Jack","description":"This week the Lads travel to the bottom of Achievement City for the ultimate PvP battle. Last Man Standing! Due to the dark and spooky nature of this Let's Play, some shots have been brightened up so you can see what is going on a little bit better than our players could.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96ddb14a-8ec6-4362-aea0-9f6b9f915774/sm/ep5527.jpg","duration":1313,"publication_date":"2012-08-17T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-33","changefreq":"weekly","video":[{"title":"2012:E34 - 100th Episode Special","description":"We'd like to thank all of our fans for keeping Fails of the Weak going for 100 episodes! Enjoy this special treat for you!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e38acc08-67b3-4e11-a38b-b5569a38f61f/sm/ep5526.jpg","duration":168,"publication_date":"2012-08-17T19:54:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-everyday-hero-part-3","changefreq":"weekly","video":[{"title":"2012:E289 - Catherine - Everyday Hero part 3","description":"Chad and Kisty show you how to get the Everyday Hero achievement (plus 5 others) in the game Catherine.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-everyday-hero-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d9d9b71-6843-4821-9336-a16a2b8296c5/sm/2013912-1449777090244-maxresdefault_(2).jpg","duration":332,"publication_date":"2012-08-17T17:12:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-everyday-hero-part-2","changefreq":"weekly","video":[{"title":"2012:E288 - Catherine - Everyday Hero part 2","description":"Chad and Kisty help you get the achievement Everyday Hero (plus 5 others) in the video game Catherine.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-everyday-hero-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36423094-a049-4a8a-9fb3-21c41944953d/sm/2013912-1449777067462-maxresdefault_(1).jpg","duration":254,"publication_date":"2012-08-17T17:02:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-30","changefreq":"weekly","video":[{"title":"2012:E33 - Volume 100","description":"Jack and Geoff bring you the 100th episode of Fails of the Weak! They'd like to thank you for all the support and are happy to announce that they are taking new submissions for fails at http://www.ahuploads.com/ Here's to 100 more episodes!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4391434c-59ea-41ac-b200-7323daae0f4e/sm/ep5520.jpg","duration":309,"publication_date":"2012-08-17T16:50:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-everyday-hero-part-1","changefreq":"weekly","video":[{"title":"2012:E287 - Catherine - Everyday Hero part 1","description":"Chad and Kisty are helping you get the achievement Everyday Hero (plus 5 others) in the video game Catherine.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-everyday-hero-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1946147c-ed5e-4853-80a6-bf9232f6b0ad/sm/2013912-1449777044032-maxresdefault.jpg","duration":254,"publication_date":"2012-08-17T16:49:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-hot-pursuit","changefreq":"weekly","video":[{"title":"2012:E286 - Game Night: Halo Reach - Hot Pursuit!!!!","description":"Geoff and Caleb take a look at the easily misunderstood \"Hot Pursuit!!!\" map in this week's Game Night in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-hot-pursuit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6cd700a1-28b0-4c98-9295-b6ff9bda4a6f/sm/ep5518.jpg","duration":130,"publication_date":"2012-08-17T16:23:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-slap-in-the-face-guide","changefreq":"weekly","video":[{"title":"2012:E1482 - A Slap in the Face Guide","description":"Ray and Geoff show you how to get the \"A Slap in the Face\" achievement in Sleeping Dogs for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-slap-in-the-face-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4dd7ac19-4ba5-4320-a708-63d617d8dae7/sm/ep5517.jpg","duration":98,"publication_date":"2012-08-17T15:27:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-29","changefreq":"weekly","video":[{"title":"2012:E33 - Sonic Free Riders","description":"On this episode of Rage Quit, Michael tries his very first Kinect game, Sonic Free Riders.\n\nCheck out his sick shredding, dawg. No, seriously. It's sickening to watch.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d642996-fb14-4d21-a04b-3b90b6aaf4fd/sm/ep5516.jpg","duration":198,"publication_date":"2012-08-17T03:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dust-an-elysian-tale-map","changefreq":"weekly","video":[{"title":"2012:E285 - Dust: An Elysian Tale Map","description":"Jack and Geoff check out the new Summer of Arcade Trials Evolution map. This time they check out the Dust: An Elysian Tail course! Floating squirrels!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dust-an-elysian-tale-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc496d3b-ad93-4596-9767-8039229cec67/sm/ep5514.jpg","duration":97,"publication_date":"2012-08-16T21:14:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-18","changefreq":"weekly","video":[{"title":"2012:E16 - Trials PIG #18","description":"Jack and Gus to at it in this week's episode of Trials Evolution PIG! Will the guy from across the hall show up and dominate Will Jack represent Achievement Hunter with pride Watch and find out!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f0389a6-0099-425f-8203-a14feca919fb/sm/ep5513.jpg","duration":249,"publication_date":"2012-08-16T19:28:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-28","changefreq":"weekly","video":[{"title":"2012:E33 - Halo HORSE #88","description":"Due to a scheduling issue we are running a THIRD PLACE PIG edition of our HORSE Tournament this week! Find out who will take third place between Michael and Adam! Stay tuned next week to see our overall victor between Burnie and Kerry!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb425c07-3633-4a78-afc6-e8f6eae45d71/sm/ep5512.jpg","duration":272,"publication_date":"2012-08-16T01:13:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-30","changefreq":"weekly","video":[{"title":"2012:E71 - Sleeping Dogs - The Door is Ajar","description":"Geoff and Gavin do some offensive driving in Sleeping Dogs on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcc91f4a-2bdf-42c8-8da2-9b182af3582e/sm/ep5511.jpg","duration":146,"publication_date":"2012-08-15T18:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-darksiders","changefreq":"weekly","video":[{"title":"S1:E29 - A Look Back At: Darksiders","description":"Fragger and Michael take a look back at the Xbox 360 version of Darksiders just in time for the launch of Darksiders 2.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-darksiders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd0e804c-ad3b-4017-b83e-8b3556a3e12a/sm/ep5510.jpg","duration":484,"publication_date":"2012-08-15T18:25:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-50","changefreq":"weekly","video":[{"title":"2012:E37 - London 2012 Part 3","description":"Geoff, Michael, Gavin and Ray enter London for the last time. Who will make their country proud and walk out with the Gold Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32bf6cae-4989-4fe9-9742-2f84600d2151/sm/ep5508.jpg","duration":2130,"publication_date":"2012-08-15T14:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-july-2012","changefreq":"weekly","video":[{"title":"2012:E7 - Best fails of July 2012","description":"Better late than never! The top five fails of the month of July as voted by you! Then I subject Jack and Geoff to them while wacking them with a funny stick!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-july-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56646c1e-0b90-4120-91c5-7b17468709e8/sm/ep5507.jpg","duration":254,"publication_date":"2012-08-15T05:11:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-untouchable-discriminating-buyer","changefreq":"weekly","video":[{"title":"2012:E284 - Untouchable, Discriminating Buyer","description":"Ray and Michael show you how to get the \"Untouchable\" and \"Discriminating Buyer\" achievements in the latest DLC for Call of Duty: Modern Warfare 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-untouchable-discriminating-buyer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0c2e545-6a2b-474d-84f8-da2f96740342/sm/ep5506.jpg","duration":138,"publication_date":"2012-08-14T21:11:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-19","changefreq":"weekly","video":[{"title":"2012:E17 - Trials Evolution - Trials Files #17","description":"Geoff and Jack fight a giant robot in Trials Files #17.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca88dcb-9dd3-4258-bc71-706ea013a78b/sm/ep5505.jpg","duration":111,"publication_date":"2012-08-14T21:00:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-90","changefreq":"weekly","video":[{"title":"2012:E70 - Minecraft: Noisemaker","description":"A good way to screw with your friends and drive them slowly insane!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-90","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":215,"publication_date":"2012-08-14T18:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mgs4-crop-circle","changefreq":"weekly","video":[{"title":"2012:E283 - MGS4 Crop circle","description":"Karl and bluefenix show you snake's possible sighting of alien life","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mgs4-crop-circle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e58238a1-7c18-4357-b254-d3580673c4e1/sm/2013912-1449776964130-maxresdefault_(16).jpg","duration":130,"publication_date":"2012-08-14T18:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-nuclear-wasteland-2030","changefreq":"weekly","video":[{"title":"2012:E282 - Indie Night - Nuclear Wasteland 2030","description":"Hightower and xBRITxHyBriD face off against an endless horde of mutants to bring you another Indie Night!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-nuclear-wasteland-2030","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58dbfc72-3c04-4264-a3f0-3f31d8549be4/sm/2013912-1449776922024-maxresdefault_(15).jpg","duration":137,"publication_date":"2012-08-14T17:30:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dont-be-nervous-talking-to-girlsthe-library","changefreq":"weekly","video":[{"title":"2012:E281 - Don't Be Nervous Talking To Girls:The Library","description":"rudog97 shows you how to be a creep and, still get girls numbers. This is stage one, The Library. This game is on the Xbox Live Indie market.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dont-be-nervous-talking-to-girlsthe-library","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":213,"publication_date":"2012-08-14T17:24:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-prototype-2-so-above-it-all","changefreq":"weekly","video":[{"title":"2012:E279 - Prototype 2 - So Above It All","description":"Noah and David show you how to get the 'So Above It All' achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-prototype-2-so-above-it-all","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":53,"publication_date":"2012-08-14T17:08:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-89","changefreq":"weekly","video":[{"title":"2012:E69 - Halo 3 - Clash of the Titans","description":"Jeremy and Andrew play a custom gametype","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-89","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":255,"publication_date":"2012-08-14T17:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-facecamo-addict","changefreq":"weekly","video":[{"title":"2012:E278 - FaceCamo Addict","description":"a solo com by me showing how to get acheivement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-facecamo-addict","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21a73df2-64dd-4824-8b6c-0fe9576b0fb0/sm/2013912-1449776812089-maxresdefault_(14).jpg","duration":107,"publication_date":"2012-08-14T16:47:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mgs4-hurt-me-more","changefreq":"weekly","video":[{"title":"2012:E277 - MGS4 hurt me more!","description":"Will there be a shocking start.\r\nKarl shows you how to hurt the enemy","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mgs4-hurt-me-more","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5137635b-0cd1-4cf7-ba81-ec58b65610e3/sm/2013912-1449776787255-maxresdefault_(13).jpg","duration":71,"publication_date":"2012-08-14T16:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-you-enjoy-the-killing-thats-why","changefreq":"weekly","video":[{"title":"2012:E276 - You Enjoy The Killing, That's Why","description":"A solo commentary by me showing a guide on how to get the trophy in MGS4 as part of the new 2.0 patch","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-you-enjoy-the-killing-thats-why","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f0b50c7-5414-40ae-951c-32dbee92f8bb/sm/2013912-1449776761430-maxresdefault_(12).jpg","duration":93,"publication_date":"2012-08-14T16:27:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mini-ninjas-off-the-richter-scale","changefreq":"weekly","video":[{"title":"2012:E275 - Mini Ninjas Off The Richter Scale","description":"me showing you how to defeat one of the easiest bosses ever","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mini-ninjas-off-the-richter-scale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58285faa-f3af-4361-bb9d-cd630ea9f19e/sm/2013912-1449776737511-maxresdefault_(11).jpg","duration":165,"publication_date":"2012-08-14T16:22:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-21","changefreq":"weekly","video":[{"title":"2012:E67 - Hybrid","description":"Geoff and Fragger take a look at the Summer of Arcade title, Hybrid! Hooray space death!","player_loc":"https://roosterteeth.com/embed/this-is-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc610d3b-8417-4e01-981c-d5ce5ced05b2/sm/ep5489.jpg","duration":461,"publication_date":"2012-08-14T14:57:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-24","changefreq":"weekly","video":[{"title":"2012:E33 - Week #125","description":"Jack and Geoff are back with a bit of annoyance from the rest of the boys. Ray, watch your head. Don't forget, the ACHIEVE shirts are now available in the Rooster Teeth store! http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0272fc0b-dbe2-4e24-bda0-7dabae9c37d6/sm/ep5488.jpg","duration":344,"publication_date":"2012-08-13T22:28:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-deer-in-the-headlights-guide","changefreq":"weekly","video":[{"title":"2012:E1478 - Deer in the Headlights Guide","description":"Ray and Michael show you how to get the \"Deer in the Headlights\" achievement in the latest DLC for Call of Duty: Modern Warfare 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-deer-in-the-headlights-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c90e5179-81f0-430e-b585-a76959e8590b/sm/ep5487.jpg","duration":124,"publication_date":"2012-08-13T21:37:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-psychonauts","changefreq":"weekly","video":[{"title":"2012:E274 - Retro Active: Psychonauts","description":"Fragger takes a look at the classic Double Fine game, Psychonauts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-psychonauts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1b5bf63-f8af-4e9f-87b7-e16263bfd1ca/sm/ep5486.jpg","duration":161,"publication_date":"2012-08-13T21:23:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-88","changefreq":"weekly","video":[{"title":"2012:E68 - Skyrim: Undead Suitcase","description":"Axialmatt and Combatwomabt bring you a things to do in that gives you a brand new way to carry all your treasures through the mountains of Skyrim","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e61918c2-6b13-4b18-b37d-baa4ae3509c3/sm/2013912-1449776715358-maxresdefault_(10).jpg","duration":207,"publication_date":"2012-08-10T21:47:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-21","changefreq":"weekly","video":[{"title":"2012:E32 - Volume 99","description":"Jack and Geoff are here with Fails of the Weak Volume 99! Enjoy the nines! Check out our new Achievement Hunter merchandise at the Rooster Teeth store! http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12206be2-793a-45cc-ac25-0451171bc8bb/sm/ep5480.jpg","duration":188,"publication_date":"2012-08-10T21:26:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-push-it-to-the-limit-have-an-ice-day","changefreq":"weekly","video":[{"title":"2012:E273 - Catherine - Push It To The Limit, Have An Ice Day","description":"Chad and Ray show you how to get 2 Achievements in Catherine.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-push-it-to-the-limit-have-an-ice-day","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/272658a5-627e-4d97-acd3-c63417f3103d/sm/2013912-1449776681881-maxresdefault_(9).jpg","duration":115,"publication_date":"2012-08-10T21:10:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-catherine-take-your-time-i-can-fly","changefreq":"weekly","video":[{"title":"2012:E272 - Catherine - Take Your Time, I Can Fly","description":"Chad and Ray show you how to get 2 Achievements in Catherine.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-catherine-take-your-time-i-can-fly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55a9d25a-4efb-4f0e-9d76-e92228845007/sm/2013912-1449776658591-maxresdefault_(8).jpg","duration":145,"publication_date":"2012-08-10T20:59:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-outtakes-minecraft-lets-play","changefreq":"weekly","video":[{"title":"2012:E271 - Outtakes - Minecraft Let's Play","description":"Sometimes while recording a Let's Play, things don't always go to plan. \r\nGeoff, Gav, Jack, Michael and Ray show you.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-outtakes-minecraft-lets-play","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/936f86da-4174-4091-8e45-1e1bf89e95fc/sm/ep5476.jpg","duration":157,"publication_date":"2012-08-10T20:35:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-shooting-chicken-brutalsuckers","changefreq":"weekly","video":[{"title":"2012:E270 - Indie Night - SHOOTING CHICKEN BrutalSuckers","description":"Hightower and Chad face an army of evil chickens to bring you this week's Indie Night on a game called SHOOTING CHICKEN BrutalSuckers!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-shooting-chicken-brutalsuckers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05b81949-2bf9-4ad4-b18a-89cfcd8088e7/sm/2013912-1449776638177-maxresdefault_(7).jpg","duration":129,"publication_date":"2012-08-10T20:30:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-33","changefreq":"weekly","video":[{"title":"2012:E36 - Minecraft Episode 11 - With Geoff, Gav, Michael, Ray and Jack","description":"Jack, Michael and Ray have each complete a blind run of Gav and Geoff's Wipeout course. In this episode, they try to improve their times. Watch them in the thrilling and explosive ending!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7955f682-d51b-435b-94aa-96529bce84c4/sm/ep5463.jpg","duration":1118,"publication_date":"2012-08-10T16:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-joy-riders","changefreq":"weekly","video":[{"title":"2012:E269 - Game Night: Halo Reach - Joy Riders","description":"Geoff and Caleb take the map \"Joy Riders\" for a spin in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-joy-riders","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c288e800-8d67-48da-bad5-b8ccf45dfc87/sm/ep5462.jpg","duration":116,"publication_date":"2012-08-10T15:53:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-18","changefreq":"weekly","video":[{"title":"2012:E32 - Give Up","description":"This week on Rage Quit, Michael plays the extremely frustrating flash game, Give Up.\nHe gives up folks, he gives up hard.\n\nGive Up:\nhttp://armorgames.com/play/13662/give-up","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/466e6735-b3ae-4476-b9f9-5f2887037725/sm/ep5461.jpg","duration":203,"publication_date":"2012-08-10T00:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-17","changefreq":"weekly","video":[{"title":"2012:E15 - Trials PIG #17","description":"Jack and Gavin square off in Achievement PIG in Trials Evolution. Will Jack slap the Brit Watch and find out!!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e09da780-03bc-4ed4-afc2-547c70e3ed09/sm/ep5460.jpg","duration":330,"publication_date":"2012-08-09T23:18:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hightowers-dayz-survival-tips-taking-care-of-yourself","changefreq":"weekly","video":[{"title":"2012:E268 - Hightower's DayZ Survival Tips - Taking Care of Yourself","description":"Hightower shows you how to deal with injuries and how to support yourself in DayZ!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hightowers-dayz-survival-tips-taking-care-of-yourself","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8854801-4480-4c77-ad67-d93610045f42/sm/2013912-1449776615911-maxresdefault_(6).jpg","duration":174,"publication_date":"2012-08-09T21:45:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-l4d2-deathcraft-ii","changefreq":"weekly","video":[{"title":"2012:E267 - Mod Spotlight: L4D2 - Deathcraft II","description":"CFHhateph34r and Emphara find out exactly what a Minecraft FPS would be like...\r\n\r\nGroup link: http://roosterteeth.com/groups/profile.phpid=14411\r\n\r\nMap link: http://www.l4dmaps.com/details.phpfile=14983","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-l4d2-deathcraft-ii","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":221,"publication_date":"2012-08-09T21:31:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-85","changefreq":"weekly","video":[{"title":"2012:E66 - Mars Rover Landing","description":"maineiacs shows you how to land a Rover on Mars in \"Mars Rover Landing.\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31499cae-7f91-4961-a186-681ba7b70ba3/sm/2013912-1449776576829-maxresdefault_(5).jpg","duration":221,"publication_date":"2012-08-09T21:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-4-episode-2-a-golden-wave-part-3-of-3","changefreq":"weekly","video":[{"title":"2012:E266 - Sonic 4 Episode 2 \"A Golden Wave\" Part 3 of 3","description":"Video detailing methods of obtaining \"A Golden Wave\" in Sonic 4 Episode II. Third of three.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-4-episode-2-a-golden-wave-part-3-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":408,"publication_date":"2012-08-09T21:22:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-4-episode-2-a-golden-wave-part-2-of-3","changefreq":"weekly","video":[{"title":"2012:E265 - Sonic 4 Episode 2 \"A Golden Wave\" Part 2 of 3","description":"Video detailing methods of obtaining \"A Golden Wave\" in Sonic 4 Episode 2. Second video of three.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-4-episode-2-a-golden-wave-part-2-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d62b295-9631-4452-952d-3eac8a806ea1/sm/2013912-1449776503321-maxresdefault_(4).jpg","duration":319,"publication_date":"2012-08-09T21:13:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-4-episode-2-a-golden-wave-part-1-of-3","changefreq":"weekly","video":[{"title":"2012:E264 - Sonic 4 Episode 2 \"A Golden Wave\" Part 1 of 3","description":"A series of videos detailing methods to obtain \"A Golden Wave\" in Sonic 4 Episode 2. First of three videos.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-4-episode-2-a-golden-wave-part-1-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":376,"publication_date":"2012-08-09T21:07:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-borderlands-hidden-chest-locations","changefreq":"weekly","video":[{"title":"2012:E263 - Borderlands - Hidden Chest Locations","description":"In celebration of Borderlands 2 coming soon, Jeremy and Andrew take a look at some hidden chests in Borderlands.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-borderlands-hidden-chest-locations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":485,"publication_date":"2012-08-09T20:59:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-vidiot-game","changefreq":"weekly","video":[{"title":"2012:E262 - Indie Night - Vidiot Game","description":"Hightower and GheTToCl0wN attempt to understand, then explain indie game Vidiot Game to you in this week's Indie Night!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-vidiot-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0ef86df-f43f-4155-b1d5-f94e21fcfbf6/sm/2013912-1449776437516-maxresdefault_(3).jpg","duration":146,"publication_date":"2012-08-09T20:33:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-the-final-five","changefreq":"weekly","video":[{"title":"2012:E261 - The Five: The Final Five","description":"In this episode, Franco shares his top five favorite facts from the series","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-the-final-five","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7f9f641-def7-4a46-920e-bebaa6d3ebf5/sm/2013912-1449776413061-maxresdefault_(2).jpg","duration":174,"publication_date":"2012-08-09T20:08:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stacking-ship-solver-part-2","changefreq":"weekly","video":[{"title":"2012:E260 - Stacking - Ship Solver Part 2","description":"CFHhateph34r shows you all the solutions for the Cavier Buffet, the Map Room, and the fancy lounge in the second and last video for the Ship Solver achievement!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stacking-ship-solver-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fce06b7f-7bbe-49fc-836b-ba5eba113387/sm/2013912-1449775416652-maxresdefault_(1).jpg","duration":258,"publication_date":"2012-08-09T18:50:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stacking-ship-solver-part-1","changefreq":"weekly","video":[{"title":"2012:E259 - Stacking - Ship Solver Part 1","description":"CFHhateph34r shows you all the solutions for the Safari and Museum challenges in part one of the Ship Solver guide!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stacking-ship-solver-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6dce3c6-9612-40bd-9bb3-248e9deb17c8/sm/2013912-1449775394836-maxresdefault.jpg","duration":236,"publication_date":"2012-08-09T18:40:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-summer-of-arcade-hybrid-map","changefreq":"weekly","video":[{"title":"2012:E258 - Summer of Arcade - Hybrid Map","description":"Join Jack, Geoff, Michael and Gavin in this look at the newest Summer of Arcade map to hit Trials Evolution. The Hybrid map is actually a supercross map, so they put together a four person attempt! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-summer-of-arcade-hybrid-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe22cd16-4da8-49b2-92eb-42a89283e6c0/sm/ep5446.jpg","duration":240,"publication_date":"2012-08-09T15:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-15","changefreq":"weekly","video":[{"title":"2012:E67 - Minecraft - TNT Cannon","description":"Gav shows Geoff how to ruin lovely houses without going anywhere near them. FIRE!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfdaad13-c450-4a6e-8caf-2fb415927c94/sm/ep5445.jpg","duration":111,"publication_date":"2012-08-08T21:05:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-12","changefreq":"weekly","video":[{"title":"2012:E32 - Halo HORSE #87","description":"Burnie and Adam face off in the Halo HORSE Office Tournament to see who will face Kerry in the finals! Will it be Big Bad Burnie Burns or the Dark Horse Adam who will take it all Place your bets!!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a49d1983-7772-4c4b-bb7b-ba6079b8f65e/sm/ep5444.jpg","duration":426,"publication_date":"2012-08-08T20:31:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-26","changefreq":"weekly","video":[{"title":"2012:E35 - London 2012 Part 2","description":"Geoff, Michael, Gavin and Ray enter London each representing their countries. Who will walk out with the gold Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87430086-f076-44dd-bcf6-0f9134b68ddd/sm/ep5440.jpg","duration":1830,"publication_date":"2012-08-08T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-87","changefreq":"weekly","video":[{"title":"2012:E66 - Battlefield 3 - Flying Boats","description":"In this video, Nick and Preston show you how to fly a boat in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2900646-1b33-42df-a2ef-267a60ea2a30/sm/2013912-1449775366506-maxresdefault_(1).jpg","duration":133,"publication_date":"2012-08-08T18:34:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-9","changefreq":"weekly","video":[{"title":"2012:E16 - Trials Evolution - Trials Files #16","description":"Geoff and Jack take a look look at the Steam Crank v2 map in Trials Evolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aed4c7d5-9e04-46b0-b850-69e0078c2d9e/sm/ep5434.jpg","duration":150,"publication_date":"2012-08-07T15:45:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-metal-storm","changefreq":"weekly","video":[{"title":"2012:E257 - Retro Active: Metal Storm","description":"Fragger takes a look at the NES classic, Metal Storm in this edition of Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-metal-storm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f36164f0-10c2-42d7-918f-1954e3cd0228/sm/ep5433.jpg","duration":209,"publication_date":"2012-08-07T15:30:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-summer-of-arcade-wreckateer-map","changefreq":"weekly","video":[{"title":"2012:E256 - Summer of Arcade - Wreckateer Map","description":"Jack and Geoff take a look at the Wreckateer Summer of Arcade map in Trials Evolution! Sorry for the delay!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-summer-of-arcade-wreckateer-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34da0864-0142-479f-809d-496da1da5617/sm/ep5431.jpg","duration":106,"publication_date":"2012-08-06T19:23:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-11","changefreq":"weekly","video":[{"title":"2012:E32 - Week #124","description":"Jack and Geoff have another pile of delicious gaming news and information to share with you! Keep an eye on the Rooster Teeth store later this week for some cool new merch! Http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c53f3102-d42d-47a3-adaf-43b40f123101/sm/ep5430.jpg","duration":221,"publication_date":"2012-08-06T18:45:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-19","changefreq":"weekly","video":[{"title":"2012:E34 - Minecraft Episode 10 - With Geoff, Gav, Michael, Ray and Jack","description":"Geoff and Gavin take the boys through a special Wipeout course in Minecraft. The winner gets... THE TOWER OF PIMPS.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2349f99-00d5-404f-8cba-87ec9e4deeb3/sm/ep5427.jpg","duration":1918,"publication_date":"2012-08-03T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-indiana-jones","changefreq":"weekly","video":[{"title":"2012:E255 - Game Night: Halo Reach - Indiana Jones","description":"Geoff and Caleb take a look at an Indiana Jones themed gametype in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-indiana-jones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f90b05b-d132-4db5-b25d-76d72c361efa/sm/ep5426.jpg","duration":116,"publication_date":"2012-08-03T16:47:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-12","changefreq":"weekly","video":[{"title":"2012:E31 - Volume 98","description":"Jack and Geoff are here with another selection from some of the funniest fails in Halo: Reach this week!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b1b6661-81ff-4348-9ef3-3c72a02f6320/sm/ep5425.jpg","duration":292,"publication_date":"2012-08-03T16:39:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-summer-of-arcade-deadlight-map","changefreq":"weekly","video":[{"title":"2012:E254 - Summer of Arcade - Deadlight Map","description":"Jack and Geoff take a look at the Deadlight map created for Trials Evolution! Enjoy this new Summer of Arcade exclusive with a friend, and a beer.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-summer-of-arcade-deadlight-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fd766c1-e2ce-40ff-9434-1b71d9fefdbe/sm/ep5424.jpg","duration":148,"publication_date":"2012-08-03T15:39:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-11","changefreq":"weekly","video":[{"title":"2012:E31 - Mirror's Edge","description":"This week on Rage Quit, Michael tests his athleticism in Mirror's Edge. Can he parkour with the best...or even finish the level","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70c945a0-5f75-42c1-8a59-a99675dd3c9f/sm/ep5423.jpg","duration":170,"publication_date":"2012-08-03T01:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-mods-you-spilled-your-rainbow-on-my-game","changefreq":"weekly","video":[{"title":"2012:E253 - Skyrim Mods: You spilled your rainbow on my game","description":"Michael and Ray take a look at three mods for Skyrim that make it terrible. Nigh unplayable really. Don't watch this.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-mods-you-spilled-your-rainbow-on-my-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a6f964b-8fe9-4ebd-9bfa-f23f3959aa10/sm/ep5422.jpg","duration":156,"publication_date":"2012-08-02T23:38:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-16","changefreq":"weekly","video":[{"title":"2012:E14 - Trials PIG #16","description":"Gavin faces off against Kara in today's episode of Trials Evolution PIG! Will Kara shock the world and put up a single letter against Gavin Watch and learn!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cd7aaf5-d809-41a4-8d3a-ee2df1df8461/sm/ep5421.jpg","duration":334,"publication_date":"2012-08-02T21:09:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-6","changefreq":"weekly","video":[{"title":"2012:E65 - Deadlight","description":"Ray and Michael talk about the newest Summer of Arcade title \"Deadlight\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fef9902-bb95-4474-9660-6d4afd919a78/sm/ep5420.jpg","duration":316,"publication_date":"2012-08-02T15:43:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-9","changefreq":"weekly","video":[{"title":"2012:E31 - Halo HORSE #86","description":"Who will advance to the finals in this epic rematch in the Halo HORSE office tournament Kerry or Michael!!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62f87d77-be48-4cc1-8b02-5f08720b68af/sm/ep5418.jpg","duration":511,"publication_date":"2012-08-01T23:21:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-10","changefreq":"weekly","video":[{"title":"2012:E65 - Minecraft - Crusher","description":"Always be suspicious when Gav and Geoff are around. This week, they show you how to harass your friends with a giant hidden crushing machine.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e94f510-d2ad-4d5f-affe-171bd4471178/sm/ep5417.jpg","duration":111,"publication_date":"2012-08-01T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-16","changefreq":"weekly","video":[{"title":"2012:E33 - London 2012 Part 1","description":"Geoff, Michael, Gavin and Ray enter London each representing their countries. Who will walk out with the gold Watch and find out!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/856178c7-f793-4a79-865f-353d53bd1989/sm/ep5416.jpg","duration":1789,"publication_date":"2012-08-01T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-jedi-knight","changefreq":"weekly","video":[{"title":"2012:E252 - Retro Active: Jedi Knight","description":"Fragger takes a look back at the immensely popular Jedi Knight series.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-jedi-knight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/355944b7-9220-4e6a-a936-d7e2703396d4/sm/ep5414.jpg","duration":211,"publication_date":"2012-07-31T19:59:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-5","changefreq":"weekly","video":[{"title":"2012:E15 - Trials Evolution - Trials Files #15","description":"Geoff and Jack play a little motorcycle pinball in this week's Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efcddb24-9709-4cb4-9ad3-6053137b63e2/sm/ep5413.jpg","duration":136,"publication_date":"2012-07-31T18:45:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-4","changefreq":"weekly","video":[{"title":"2012:E31 - Week #123","description":"Jack and Geoff bring you another fantastic episode of AHWU. Watch this week's episode and learn how to get yourself a free beta key for the PC version of Awesomenauts! Free stuff rules! Also, watch Nature Town! Also, buy a Achievement Hunter slap bracelet! Http://www.roosterteeth.com/store","player_loc":"https://roosterteeth.com/embed/ahwu-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/147781eb-c4f9-4426-843c-402a2e95c608/sm/ep5406.jpg","duration":357,"publication_date":"2012-07-30T22:26:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-penguin-head-horse-car","changefreq":"weekly","video":[{"title":"2012:E251 - Mod Spotlight: Skyrim - Penguin Head, Horse Car","description":"CFHhateph34r and Emphara ask the hard and daring questions such as... have YOU ever wanted to be a penguin Check out our group for download links.\r\nGroup link:http://roosterteeth.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-penguin-head-horse-car","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f03576c-a680-4e1e-9826-f4364f44367b/sm/2013912-1449774992366-maxresdefault.jpg","duration":216,"publication_date":"2012-07-28T23:22:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-6","changefreq":"weekly","video":[{"title":"2012:E32 - Minecraft Part 9","description":"This is it! The thrilling conclusion to build the tower of pimps. WHO WILL RISE TO THE TOP! Watch the video. Now.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c169ab98-2284-4c9b-bfe9-7619baa308a3/sm/ep5401.jpg","duration":1749,"publication_date":"2012-07-28T00:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-burnout-paradise","changefreq":"weekly","video":[{"title":"S1:E28 - A Look Back At: Burnout Paradise","description":"Fragger and Jack take a look back at the game that started it all, Burnout Paradise.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-burnout-paradise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26dc0cea-e382-413e-bc6e-4a22fc46e571/sm/ep5398.jpg","duration":394,"publication_date":"2012-07-27T17:48:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-4","changefreq":"weekly","video":[{"title":"2012:E30 - Volume 97","description":"Jack and Geoff bring you an Elite-heavy episode of Fails of the Weak! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/82a8def5-4b4a-47c0-91c7-a488bc52de0f/sm/ep5397.jpg","duration":231,"publication_date":"2012-07-27T16:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-castle-wars","changefreq":"weekly","video":[{"title":"2012:E250 - Game Night: Halo Reach - Castle Wars","description":"Geoff and Caleb hit up some Castle Wars in Halo Reach in the latest installment of Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-castle-wars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b067d7a-a206-4bcc-b208-dbff7488122e/sm/ep5396.jpg","duration":107,"publication_date":"2012-07-27T15:31:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-3","changefreq":"weekly","video":[{"title":"2012:E30 - Portal: The Flash Version","description":"This week on Rage Quit, Michael plays the 2D side scroller, Portal: The Flash Version. Now he's thinking with Rage.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f31b3b2-764c-45d0-aa04-4f5db6fec0e4/sm/ep5395.jpg","duration":143,"publication_date":"2012-07-26T22:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-15","changefreq":"weekly","video":[{"title":"2012:E13 - Trials HORSE #15","description":"Michael and Ray face off in a full match of Trials Evolution HORSE! Who will be the last man standing... on wheels.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16a54495-a201-44e1-ac0c-0a55c79f1bf2/sm/ep5393.jpg","duration":338,"publication_date":"2012-07-26T15:41:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-mega-man-x","changefreq":"weekly","video":[{"title":"2012:E249 - Retro Active: Mega Man X","description":"Fragger takes a look at Mega Man X in the latest installment of Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-mega-man-x","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47c38750-1cbc-407b-a495-b64947260a86/sm/ep5392.jpg","duration":188,"publication_date":"2012-07-25T20:02:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-4","changefreq":"weekly","video":[{"title":"2012:E64 - Minecraft - Surprise!","description":"Gav and Geoff show you a cheeky surprise that you can build into your friends' worlds.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7036d2d2-8791-4f6d-8947-75feee3af5be/sm/ep5391.jpg","duration":89,"publication_date":"2012-07-25T18:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-2","changefreq":"weekly","video":[{"title":"2012:E30 - Halo HORSE #85","description":"Burnie and Gavin go head to head in this week's second round matchup in the office Halo HORSE tournament! Who will win Who will get fired","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59a1d6e2-7f13-4f2f-a681-4b22a41ec85b/sm/ep5390.jpg","duration":509,"publication_date":"2012-07-25T16:56:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-dont-want-no-2-minute-man","changefreq":"weekly","video":[{"title":"2012:E248 - I don?t want no 2 minute Man","description":"Ray and Michael show you how to get the \"I dont want no 2 minute Man\" achievement in Tony Hawk's Pro Skater HD for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-dont-want-no-2-minute-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e3b2db-78a2-430a-825b-52ef9e85cfc0/sm/ep5389.jpg","duration":103,"publication_date":"2012-07-25T15:47:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-6","changefreq":"weekly","video":[{"title":"2012:E66 - Skyrim - Oblivion Bucket Easter Egg","description":"Michael and Gavin show you where to find the mystical and wondrous Bucket of Kingdoms Easter Egg in Skyrim for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7361b0c-5562-4e8a-bac3-3c58c25e7df9/sm/ep5388.jpg","duration":70,"publication_date":"2012-07-25T14:59:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quantum-conundrum-honor-student-blue-wing-part-3","changefreq":"weekly","video":[{"title":"2012:E247 - Quantum Conundrum - Honor Student Blue Wing Part 3","description":"Emessai and co are back again to wrap up the blue wing for Quantum Conundrum's Honor Student achievement. These levels include Mind the Gap through End of the Beginning.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quantum-conundrum-honor-student-blue-wing-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":387,"publication_date":"2012-07-24T21:21:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quantum-conundrum-honor-student-blue-wing-part-2","changefreq":"weekly","video":[{"title":"2012:E246 - Quantum Conundrum - Honor Student Blue Wing Part 2","description":"Emessai and co return for part 2 (of 9) of Honor Student. This include shift challenges for A Weighted Decision through Spring to New Heights in the Blue Wing.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quantum-conundrum-honor-student-blue-wing-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":418,"publication_date":"2012-07-24T21:20:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quantum-conundrum-honor-student-blue-wing-part-1","changefreq":"weekly","video":[{"title":"2012:E245 - Quantum Conundrum - Honor Student, Blue Wing Part 1","description":"Emessai and co knock out the shift level requirements for A Shift in Perspective through Stairway to Fluffy of Quantum Conundrum.\r\n\r\n(there are 9 parts total, they're too long to be in HD and under the 250MB limit, but I have them in HD)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quantum-conundrum-honor-student-blue-wing-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":469,"publication_date":"2012-07-24T21:19:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hightowers-dayz-survival-tips-part-1-the-basics","changefreq":"weekly","video":[{"title":"2012:E244 - Hightower's DayZ Survival Tips Part 1 - The Basics","description":"Hightower brings you the basic controls in the first in this series of DayZ survival guides!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hightowers-dayz-survival-tips-part-1-the-basics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd1acd6d-96e3-44c3-b3f3-0964d836d9f1/sm/2013912-1449774880259-maxresdefault_(19).jpg","duration":155,"publication_date":"2012-07-24T21:17:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-now-with-10-more-minecraft","changefreq":"weekly","video":[{"title":"2012:E243 - Skyrim - Now with 10% more Minecraft","description":"Best things ever Minecraft and Skyrim. And now you can get both fixes at one time! Geoff and Jack take a look at a couple mods for Skyrim that bring 8-bit graphics to one of the most beautiful games ever made.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-now-with-10-more-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f84d7d2-babf-4ee9-b472-7f0a473b487a/sm/ep5381.jpg","duration":237,"publication_date":"2012-07-24T20:59:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-megacity","changefreq":"weekly","video":[{"title":"2012:E242 - Indie Night - MegaCity","description":"Hightower and xBRITxHyBriD drag themselves away from playing MegaCity for a couple of minutes to tell you about MegaCity in this week's Indie Night!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-megacity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cf1f830-a8df-4198-b7d7-61b7eafb6a25/sm/2013912-1449774829243-maxresdefault_(18).jpg","duration":123,"publication_date":"2012-07-24T19:51:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-86","changefreq":"weekly","video":[{"title":"2012:E63 - Grand Theft Auto IV - King Kong","description":"A \"Things to do in\" taking place in GTA4 where Axialmatt and Combatwomabt show just how much fun being King Kong in GTA can really be","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e340aa6d-40e2-4812-8f39-5bdb79aaf6fe/sm/2013912-1449774803508-maxresdefault_(17).jpg","duration":202,"publication_date":"2012-07-24T19:47:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-85","changefreq":"weekly","video":[{"title":"2012:E62 - Halo Reach - Over the River","description":"Jeremy and Andrew go over the river and through the poorly rendered woods","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":275,"publication_date":"2012-07-24T19:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-redstone-for-beginners","changefreq":"weekly","video":[{"title":"2012:E240 - Minecraft - Redstone for Beginners","description":"superninja56 brings us a short tutorial on how to make a single piston door and a small clock in Minecraft 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-redstone-for-beginners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":160,"publication_date":"2012-07-24T19:16:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-36","changefreq":"weekly","video":[{"title":"2012:E14 - Trials Evolution - Trials Files #14","description":"Geoff and Jack take a look at a Tron themed map in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/430c41e1-92ea-409d-9b49-4683653046fd/sm/ep5370.jpg","duration":80,"publication_date":"2012-07-24T16:13:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-51","changefreq":"weekly","video":[{"title":"2012:E30 - Week #122","description":"Jack and Geoff bring you a week's worth of new games and information. Don't forget that this Friday is Achievement Hunter's 4th Anniversary! We'll be celebrating with a live stream on Friday afternoon. Also, don't forget to watch Nature Town! http://www.youtube.com/watchv=hgiM9tUqMLc","player_loc":"https://roosterteeth.com/embed/ahwu-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d152e3b4-5565-4de4-8996-ed2a9a21b4af/sm/ep5369.jpg","duration":288,"publication_date":"2012-07-23T20:55:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gap-skiing","changefreq":"weekly","video":[{"title":"2012:E239 - Gap Skiing","description":"Ray and Miles show you how to get the \"Gap Skiing\" achievement in Tony Hawk's Pro Skater HD for the Xbox 360.\r\n\r\nGeoff got lotion on my screen. It looks like splooge :(","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gap-skiing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/144b42ed-f045-488e-b035-6a1ea32c77f6/sm/ep5368.jpg","duration":68,"publication_date":"2012-07-23T20:30:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-terminal-teddy-bear","changefreq":"weekly","video":[{"title":"2012:E238 - Terminal Teddy Bear","description":"Ray and Geoff show you where to find the hidden teddy bear in the Terminal DLC map in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-terminal-teddy-bear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe17df7a-5b66-4ad4-b61c-42faa33a6c0d/sm/ep5367.jpg","duration":100,"publication_date":"2012-07-23T18:44:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-around","changefreq":"weekly","video":[{"title":"2012:E237 - The Best, Around","description":"Ray and Michael show you how to get the \"The Best, Around\" achievement in Tony Hawk's Pro Skater HD for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-around","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5361f5b1-1a52-4729-b65f-8e77d019ded9/sm/ep5366.jpg","duration":90,"publication_date":"2012-07-23T16:51:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-88","changefreq":"weekly","video":[{"title":"2012:E31 - Minecraft Part 8","description":"Geoff, Gavin, Michael, Ray and Jack race to build the infamous Tower of Pimps!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-88","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b8b6356-0cc3-4bcf-af86-ae9a3f150f86/sm/ep5363.jpg","duration":1513,"publication_date":"2012-07-20T23:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-race-to-the-finish-lines","changefreq":"weekly","video":[{"title":"2012:E236 - Race to the finish lines","description":"Ray and Dragonface (AKA Kerry) show you how to get the \"Race to the finish lines\" achievement in Tony Hawk's Pro Skater HD for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-race-to-the-finish-lines","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44b09e6e-73da-499b-b350-7a40a5845859/sm/ep5362.jpg","duration":175,"publication_date":"2012-07-20T21:44:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-76","changefreq":"weekly","video":[{"title":"2012:E64 - Hidden Diamond Easter Egg","description":"Ray and Gavin go back into the tutorial and find some hidden diamond gear to use in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67ede061-2cfe-42b5-b705-7c0f96cdef68/sm/ep5361.jpg","duration":145,"publication_date":"2012-07-20T19:06:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-summer-of-arcade-skin-pack","changefreq":"weekly","video":[{"title":"2012:E235 - Summer of Arcade Skin Pack","description":"Jack and Ray take a look at the new free skin pack for Minecraft! Check out these Summer of Arcade themed skins!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-summer-of-arcade-skin-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53620752-f346-46bf-bca5-add1a26d4454/sm/ep5360.jpg","duration":104,"publication_date":"2012-07-20T18:45:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-52","changefreq":"weekly","video":[{"title":"2012:E29 - Volume 96","description":"Jack and special guest Joel take a look at a week's worth of failure within the planet of Reach. Watch out for flying grunts and rockets!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b0d50ca-84b4-4cb8-a119-35ac03ef34e2/sm/ep5359.jpg","duration":228,"publication_date":"2012-07-20T17:54:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-aint-fraid-of-no-ghosts","changefreq":"weekly","video":[{"title":"2012:E234 - Ain't 'fraid of no ghosts","description":"Ray and Michael show you how to get the \"Ain't 'fraid of no ghosts\" achievement in Tony Haw's Pro Skater HD for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-aint-fraid-of-no-ghosts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd936526-22f6-4258-88a7-047160e726c7/sm/ep5358.jpg","duration":95,"publication_date":"2012-07-20T15:41:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-mario-kart-battle","changefreq":"weekly","video":[{"title":"2012:E233 - Game Night: Halo Reach - Mario Kart Battle","description":"Geoff and Caleb take a look at the Mario Kart Battle map in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-mario-kart-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc6cfa84-346f-423c-8e19-b6996d7ce04e/sm/ep5357.jpg","duration":123,"publication_date":"2012-07-20T15:12:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-49","changefreq":"weekly","video":[{"title":"2012:E29 - Slender","description":"This week on Rage Quit, Michael and Gavin play their creepiest game yet, Slender.\n\nWith Michael controlling the keyboard and Gavin controlling the mouse, what could possibly go wrong","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b77257b9-65d2-4550-a39c-52cad5a8140b/sm/ep5355.jpg","duration":414,"publication_date":"2012-07-20T03:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-manual-master","changefreq":"weekly","video":[{"title":"2012:E232 - Manual Master","description":"Ray and Kerry (AKA Dragonface) show you how to get the Manual Master achievement in Tony Hawk's Pro Skater HD for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-manual-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25646c67-bc4f-4bf2-8eb4-4ef693190820/sm/ep5354.jpg","duration":87,"publication_date":"2012-07-19T21:10:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-summer-of-arcade-tony-hawk-pshd-map","changefreq":"weekly","video":[{"title":"2012:E231 - Summer of Arcade - Tony Hawk PSHD Map!","description":"RedLynx is releasing a brand new map every week to celebrate the Summer of Arcade. This week Gavin and Jack take a look at the Tony Hawk Pro Skater HD map!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-summer-of-arcade-tony-hawk-pshd-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bf179f6-0b51-485a-aced-f0c6e9ea9414/sm/ep5353.jpg","duration":201,"publication_date":"2012-07-19T20:53:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-74","changefreq":"weekly","video":[{"title":"2012:E63 - Nether Portal Easter Egg","description":"Ray and Gavin show you how to find the hidden Nether Portal in the tutorial for Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcefddbc-71b0-4846-846d-1d94ac0e96bd/sm/ep5352.jpg","duration":121,"publication_date":"2012-07-19T20:07:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-14","changefreq":"weekly","video":[{"title":"2012:E12 - Trials PIG #14","description":"Jack and Geoff go heads up against each other in a fresh new episode of Achievement PIG! Stay tuned for the final map because it is awesome!","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af944804-cfd3-4298-8623-2420b1839a36/sm/ep5351.jpg","duration":377,"publication_date":"2012-07-19T19:04:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-82","changefreq":"weekly","video":[{"title":"2012:E62 - Slender","description":"Hightower shows your free indie-horror game Slender and tries to not mess himself in the process.","player_loc":"https://roosterteeth.com/embed/this-is-2012-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/217bebe7-c5fb-4149-9cbd-31f58d70e667/sm/2013912-1449774653491-maxresdefault_(14).jpg","duration":114,"publication_date":"2012-07-19T17:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bully-scholarship-edition-soda-licious","changefreq":"weekly","video":[{"title":"2012:E230 - Bully Scholarship Edition: Soda 'Licious","description":"I show you how to get the 20 Gamer score Achievement Soda 'Licious, in Bully Scholarship Edition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bully-scholarship-edition-soda-licious","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70aa5737-f710-4c41-8ea9-6e1bea9818e7/sm/2013912-1449774630348-maxresdefault_(13).jpg","duration":44,"publication_date":"2012-07-19T17:02:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-old-school","changefreq":"weekly","video":[{"title":"2012:E229 - Old School","description":"Ray and Michael show you how to get the \"Old School\" achievement in Tony Hawk's Pro Skater HD for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-old-school","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97b8dff1-8fd1-49c2-888b-2853f01e9c7e/sm/ep5344.jpg","duration":93,"publication_date":"2012-07-19T17:02:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-84","changefreq":"weekly","video":[{"title":"2012:E61 - Minecraft - The Trap","description":"Lettucelord makes his friend burn.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-84","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1063a8b6-7971-4012-82d2-1e61893f3631/sm/2013912-1449774579557-maxresdefault_(12).jpg","duration":152,"publication_date":"2012-07-19T16:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dark-souls-taurus-demon-tips","changefreq":"weekly","video":[{"title":"2012:E228 - Dark Souls - Taurus Demon Tips","description":"TOAR shares a technique for easily beating the Taurus Demon boss.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dark-souls-taurus-demon-tips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":143,"publication_date":"2012-07-19T16:30:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dark-souls-soul-farming-tips","changefreq":"weekly","video":[{"title":"2012:E227 - Dark Souls - Soul Farming Tips","description":"TOAR shows an easy way to farm for souls.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dark-souls-soul-farming-tips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":124,"publication_date":"2012-07-19T16:27:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dark-souls-asylum-demon-tips","changefreq":"weekly","video":[{"title":"2012:E226 - Dark Souls - Asylum Demon Tips","description":"TOAR shares tips on beating the Asylum Demon, the first boss in Dark Souls.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dark-souls-asylum-demon-tips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":168,"publication_date":"2012-07-19T16:23:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-43","changefreq":"weekly","video":[{"title":"2012:E29 - Halo HORSE #84","description":"The battle for office dominance continues as Brian and Kerry face off in their Round 2 matchup. Who will win Place your bets now!!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba4960b1-5fd0-4504-a834-91fb582aa994/sm/ep5334.jpg","duration":464,"publication_date":"2012-07-18T23:35:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-80","changefreq":"weekly","video":[{"title":"2012:E59 - God of War 3","description":"Joel (joeldiaz1995 on the site) takes a look at probably one of the best PS3 games ever made, God of War 3 or III.","player_loc":"https://roosterteeth.com/embed/this-is-2012-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c46177b-9a11-4a40-a33f-da0d575a1292/sm/2013912-1449774469889-maxresdefault_(11).jpg","duration":294,"publication_date":"2012-07-18T20:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-cute-things-dying-violently","changefreq":"weekly","video":[{"title":"2012:E225 - Indie Night - Cute Things Dying Violently","description":"xBRITxHyBriD and GheTToCl0wN steal Indie Night from Hightower this week. They show you what you can get for 80MSP from the indie market place, Cute Things Dying Violently.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-cute-things-dying-violently","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":137,"publication_date":"2012-07-18T19:45:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-44","changefreq":"weekly","video":[{"title":"2012:E60 - Skyrim - Olympics","description":"Gavin, Michael and Ray represent their native countries in this year's Skyrim Olympics. \nWho will stand victorious","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67fc0a48-34dc-489f-9b7b-a6489656a583/sm/ep5323.jpg","duration":232,"publication_date":"2012-07-18T19:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-to-jugger-or-to-jugger-naut","changefreq":"weekly","video":[{"title":"2012:E224 - To Jugger or to Jugger-Naut","description":"Ray and Geoff show you how to get the \"To Jugger or to Jugger-Naut\" achievement in the new DLC for Call of Duty: Modern Warfare 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-to-jugger-or-to-jugger-naut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8902915-e213-46ee-9e35-3511143b53b6/sm/ep5321.jpg","duration":132,"publication_date":"2012-07-18T17:20:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-62","changefreq":"weekly","video":[{"title":"2012:E62 - Off Shore Easter Egg","description":"Geoff and Ray show you where to find the hidden teddy bear in the new Off Shore DLC map in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c014d370-a9e9-4eb6-9f96-1bc78646208b/sm/ep5320.jpg","duration":74,"publication_date":"2012-07-18T16:54:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-83","changefreq":"weekly","video":[{"title":"2012:E59 - Minecraft - Spawning Surprise!","description":"A \"Things to do in\" taking place in Minecraft demonstrating a new way to annoy your friends from the time they log into your server to the time they rage quit out of it.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-83","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f01a6bd-df7d-4d60-8e75-b581e49f502f/sm/2013912-1449774417773-maxresdefault_(10).jpg","duration":241,"publication_date":"2012-07-17T21:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-zumas-revenge-frozen-frog-and-frog-statue-guides","changefreq":"weekly","video":[{"title":"2012:E1438 - Zuma's Revenge - Frozen Frog & Frog Statue Guides","description":"Franco here, showing you how to unlock 2 achievements in Zuma's Revenge!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-zumas-revenge-frozen-frog-and-frog-statue-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":178,"publication_date":"2012-07-17T21:45:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-79","changefreq":"weekly","video":[{"title":"2012:E58 - The Witcher 2: Assassins of Kings","description":"Joel (joeldiaz1995 on the site) and Chad take a look at The Witcher 2: Assassins of Kings Enhanced Edition.","player_loc":"https://roosterteeth.com/embed/this-is-2012-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f7449cb-9c4c-485d-a289-5e97a93eaf30/sm/2013912-1449774396099-maxresdefault_(9).jpg","duration":306,"publication_date":"2012-07-17T21:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-82","changefreq":"weekly","video":[{"title":"2012:E58 - Minecraft - Super Collapse","description":"Lettucelord and Happy Keanu get sand in their britches.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-82","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3fc4f08-699a-42b5-842b-122e0a28f6f2/sm/2013912-1449774374007-maxresdefault_(8).jpg","duration":108,"publication_date":"2012-07-17T21:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-darkness-ii-skeet-shoot-karmas-a-bitch","changefreq":"weekly","video":[{"title":"2012:E223 - The Darkness II - Skeet Shoot, Karma's A Bitch","description":"Chad shows you how to get 2 Achievements in the game The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-darkness-ii-skeet-shoot-karmas-a-bitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd97654b-0d43-415b-8066-e45db8176973/sm/2013912-1449774341519-maxresdefault_(7).jpg","duration":74,"publication_date":"2012-07-17T20:34:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-81","changefreq":"weekly","video":[{"title":"2012:E57 - Halo Reach - Made You Look","description":"Jeremy and Andrew make you look twice in Halo Reach","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-81","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":166,"publication_date":"2012-07-17T20:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quantum-conundrum-collectables-yellow-wing","changefreq":"weekly","video":[{"title":"2012:E222 - Quantum Conundrum - Collectables Yellow Wing","description":"Dylan and Joey show you how to get all the collectables in the yellow wing of Quantum Conundrum.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quantum-conundrum-collectables-yellow-wing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/155fadb1-287e-4006-8a74-093e78c7d04f/sm/2013912-1449774302052-maxresdefault_(6).jpg","duration":196,"publication_date":"2012-07-17T20:22:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quantum-conundrum-collectables-blue-wing","changefreq":"weekly","video":[{"title":"2012:E221 - Quantum Conundrum - Collectables Blue Wing","description":"Dylan and Joey show you how to get all the collectables in the blue wing of Quantum Conundrum.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quantum-conundrum-collectables-blue-wing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7f7904c-461a-4710-906a-5d65bc0d19e6/sm/2013912-1449774262045-maxresdefault_(5).jpg","duration":172,"publication_date":"2012-07-17T20:18:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-team-fortress-2-dodgeball","changefreq":"weekly","video":[{"title":"2012:E220 - Mod Spotlight: Team Fortress 2 - Dodgeball","description":"CFHhateph34r and Emphara (Anouki on the site) show you the Dodgeball gametype in TF2!\r\nGroup link:http://roosterteeth.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-team-fortress-2-dodgeball","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd5003cc-f360-4fe8-803d-5725f0557e40/sm/2013912-1449774238662-maxresdefault_(4).jpg","duration":159,"publication_date":"2012-07-17T19:54:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-flyswatter","changefreq":"weekly","video":[{"title":"2012:E219 - Flyswatter","description":"Ray and Geoff show you how to get the \"Flyswatter\" achievement in the new DLC for Call of Duty: Modern Warfare 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-flyswatter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94c5060b-a1a9-4fcc-aee6-ca3ca8cce6a6/sm/ep5303.jpg","duration":213,"publication_date":"2012-07-17T18:20:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-26","changefreq":"weekly","video":[{"title":"2012:E13 - Trials Evolution - Trials Files #13","description":"Geoff and Jack take a look at at a Trials Evolution map based off of the Impossible Game.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec32f21b-80fa-4f9e-aea3-aa01382d1c41/sm/ep5302.jpg","duration":96,"publication_date":"2012-07-17T14:35:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-56","changefreq":"weekly","video":[{"title":"2012:E61 - Castlevania II Easter Egg","description":"Michael and Ray show you a Castlevania II Easter Egg in the Skyrim: Dawnguard DLC for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e34f4260-45b8-4508-9d91-ab72fd7224b4/sm/ep5300.jpg","duration":75,"publication_date":"2012-07-16T20:36:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-38","changefreq":"weekly","video":[{"title":"2012:E29 - Week #121","description":"Jack and Geoff are back and bringing you news from around the world of gaming! Watch and learn about this week's new releases on XBLA and DLC! Also, Halo 4 information and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa27b560-ccad-4c17-8c1f-d678dbf9efdd/sm/ep5299.jpg","duration":335,"publication_date":"2012-07-16T19:25:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skin-pack-1-dlc","changefreq":"weekly","video":[{"title":"2012:E218 - Skin Pack 1 DLC","description":"Ray and Geoff check out all the new skins in the new Minecraft Skin Pack DLC.\r\n\r\n$2 for 40+ skins Sold!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skin-pack-1-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31609bbf-0a8c-40cb-b72a-54f3b4458d7a/sm/ep5298.jpg","duration":136,"publication_date":"2012-07-16T17:38:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-sim-city-2000","changefreq":"weekly","video":[{"title":"2012:E217 - Retro Active: Sim City 2000","description":"Fragger takes a look at the classic \"Sim City 2000\", and its companion games, Sim Copter and Streets of Sim City.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-sim-city-2000","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e13f3c13-cdde-45b8-acc2-977ae1172b12/sm/ep5297.jpg","duration":206,"publication_date":"2012-07-16T15:33:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-66","changefreq":"weekly","video":[{"title":"2012:E30 - Minecraft Part 7","description":"Geoff, Jack, Michael, and Ray return for the dramatic conclusion of the quest to see who can enter The Nether first.\n\nOh yeah, Geoff found all of his stuff too.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a6ab077-f8c2-456d-8acf-3c8b6165ed51/sm/ep5295.jpg","duration":1315,"publication_date":"2012-07-14T00:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-july-update","changefreq":"weekly","video":[{"title":"2012:E216 - July Update","description":"Geoff and Ray show you some of the cool stuff added to Minecraft in today's update","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-july-update","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2cbcdac-ae88-4b13-aef5-f49c9d6798e5/sm/ep5294.jpg","duration":324,"publication_date":"2012-07-13T23:01:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-40","changefreq":"weekly","video":[{"title":"2012:E28 - Volume 95","description":"Jack and Geoff serve up another platter of Halo Failure. Now with more vitamin C!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29a8b3e8-53e2-4994-8c3e-943c5701e50b/sm/ep5293.jpg","duration":285,"publication_date":"2012-07-13T19:38:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-snipe-a-mole","changefreq":"weekly","video":[{"title":"2012:E215 - Game Night: Halo Reach - Snipe a Mole","description":"Geoff and Caleb check out the \"Snipe a Mole\" gametype in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-snipe-a-mole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a75cdf50-f73d-4342-92ce-beb725e9441f/sm/ep5292.jpg","duration":86,"publication_date":"2012-07-13T17:01:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-37","changefreq":"weekly","video":[{"title":"2012:E28 - Spec Ops: The Line","description":"This week on Rage Quit, Michael shits a brick while playing Spec Ops: The Line for the Xbox 360. He also gets shot a lot.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f9c8c35-9b23-4326-9b22-d3d3e94f0184/sm/ep5291.jpg","duration":221,"publication_date":"2012-07-13T01:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-13","changefreq":"weekly","video":[{"title":"2012:E11 - Trials PIG #13","description":"Jack and Geoff square off in the latest edition of Trials Evolution: Achievement PIG.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1eeee71-1cca-4d5a-a4ff-8a9a8626d8de/sm/ep5288.jpg","duration":277,"publication_date":"2012-07-12T19:39:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-35","changefreq":"weekly","video":[{"title":"2012:E56 - Quantum Conundrum","description":"Fragger and Geoff take a look at the newly released Xbox Live Arcade puzzler \"Quantum Conundrum.\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4defdc29-0983-4907-ba0d-57fcc0e8bf4d/sm/ep5287.jpg","duration":395,"publication_date":"2012-07-12T16:27:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-37","changefreq":"weekly","video":[{"title":"2012:E56 - Ghost Recon - Say Cheese","description":"Geoff and Ray show you how to surpass the life out of people in Ghost Recon: Future Soldier. Say Cheese!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40b9962d-423b-4f44-ac3a-1a6d1456124e/sm/ep5286.jpg","duration":163,"publication_date":"2012-07-11T20:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-62","changefreq":"weekly","video":[{"title":"2012:E29 - Joel and Jack play Minecraft with Chandler Riggs from Walking Dead!","description":"Joel and Jack meet up with Chandler Riggs who plays Carl on Walking Dead and play some Minecraft together. Join them as they talk about the show and gaming! Don't forget to visit Chandler's YouTube channel at http://www.youtube.com/TheOrangeTrampoline","player_loc":"https://roosterteeth.com/embed/lets-play-2012-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/542f47b9-2563-4de9-aec1-4b7ce6b7bad4/sm/ep5285.jpg","duration":281,"publication_date":"2012-07-11T18:41:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-33","changefreq":"weekly","video":[{"title":"2012:E28 - Halo HORSE #83","description":"Ray and Adam kick off the second round of the office HORSE tournament! Who will win Place your bets now!!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95caaed5-1dbb-4faf-9d94-2bb0fdffa03a/sm/ep5283.jpg","duration":483,"publication_date":"2012-07-11T17:55:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-24","changefreq":"weekly","video":[{"title":"2012:E12 - Trials Evolution - Trials Files #12","description":"Geoff and Jack take a look at an Aliens inspired map in the latest edition of Trials Files in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/911d051b-aaec-462c-b62e-29220ceaa898/sm/ep5282.jpg","duration":169,"publication_date":"2012-07-10T16:19:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-june-2012","changefreq":"weekly","video":[{"title":"2012:E6 - Best fails of June 2012","description":"Top 5 fails of the month as voted on by you! Jack and Geoff take a look at the fails you thought were the best of the best for the month of June 2012!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-june-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/719f94b1-fba5-4a41-be01-c5aeb56a3a62/sm/ep5281.jpg","duration":236,"publication_date":"2012-07-10T04:03:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-33","changefreq":"weekly","video":[{"title":"2012:E28 - Week #120","description":"Jack and Geoff survived RTX and bring you news from around the world of gaming and releases from around the world of other stuff.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a3a3ad4-6889-493b-89fc-a388ce959c79/sm/ep5280.jpg","duration":286,"publication_date":"2012-07-09T23:12:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-56","changefreq":"weekly","video":[{"title":"2012:E28 - Minecraft Part 6","description":"Geoff, Jack, Michael, and Ray compete to see who can build and enter a Nether portal first. Michael also shows you how to unlock every achievement in Minecraft in 10 seconds flat.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7d9123e-df85-4cbe-b8e6-937956eb582a/sm/ep5271.jpg","duration":867,"publication_date":"2012-07-06T17:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-cod-black-ops-explosive-puppies","changefreq":"weekly","video":[{"title":"2012:E214 - Game Night: CoD Black Ops - Explosive Puppies","description":"Geoff and Caleb show off the custom Call of Duty Black Ops gametype \"Explosive Puppies.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-cod-black-ops-explosive-puppies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e57024be-0d08-478e-845d-4a4563f3d8b4/sm/ep5269.jpg","duration":134,"publication_date":"2012-07-06T14:57:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-32","changefreq":"weekly","video":[{"title":"2012:E27 - Volume 94","description":"Jack and Geoff bring you the funny in this week's episode of Fails of the Weak! It's a laugh riot!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13382a01-fc14-4dcc-985f-c8dec8708f01/sm/ep5268.jpg","duration":235,"publication_date":"2012-07-06T14:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-the-bejeweled-series","changefreq":"weekly","video":[{"title":"2012:E213 - The Five: The Bejeweled Series","description":"Join Franco and special guest host Soothsayer57 as they talk about the family jewels in this episode of \"The Five\"!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-the-bejeweled-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab9d17a7-d4a3-400d-b082-781e9af67e48/sm/2013912-1449774186753-maxresdefault_(2).jpg","duration":254,"publication_date":"2012-07-06T14:29:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-30","changefreq":"weekly","video":[{"title":"2012:E27 - Sonic Spinball","description":"This week on Rage Quit, Michael springs into action once again in Sonic Spinball, part of Sonic's Ultimate Genesis Collection for the Xbox 360. \n\nCan he collect enough emeralds to stop Dr. Robotnik or will he be left with his head spinning","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84c40513-042f-40c9-8a6f-0d1e14a89383/sm/ep5265.jpg","duration":177,"publication_date":"2012-07-06T03:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-12","changefreq":"weekly","video":[{"title":"2012:E10 - Trials PIG #12","description":"Jack and Ray face off in Achievement PIG in Trials: Evolution. Will Ray get over his slump","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee5de7b3-e057-4410-9188-9df48b5033f0/sm/ep5264.jpg","duration":319,"publication_date":"2012-07-05T19:45:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-80","changefreq":"weekly","video":[{"title":"2012:E55 - GTA IV - Pirates","description":"In this video, Preston shows you how to be a pirate in GTA IV! ARRRRGGGG!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/668f6fe2-742f-4677-83ff-b6318ee9ffac/sm/2013912-1449774163879-maxresdefault_(1).jpg","duration":174,"publication_date":"2012-07-05T16:12:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-source-nightmare-house-2","changefreq":"weekly","video":[{"title":"2012:E212 - Mod Spotlight - Source: Nightmare House 2","description":"CFHhateph34r and Emphara (Anouki on the site) play Nightmare House 2... in the dark.\r\nDownload link:http://nh2.wecreatestuff.com/\r\n Group link: http://roosterteeth.com/groups/profile.phpid=14411&nc=1","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-source-nightmare-house-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cacf76b-760e-4eac-a10b-9d1a66a5a565/sm/2013912-1449774139861-maxresdefault.jpg","duration":188,"publication_date":"2012-07-04T20:51:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-apple-jack-2","changefreq":"weekly","video":[{"title":"2012:E211 - Indie Night - Apple Jack 2","description":"Hightower and Nick play one of your five-a-day in this charming little indie game, Apple Jack 2!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-apple-jack-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22a6810a-9a49-49e8-aca5-7521452520f6/sm/2013912-1449774103082-maxresdefault_(20).jpg","duration":135,"publication_date":"2012-07-04T20:44:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-79","changefreq":"weekly","video":[{"title":"2012:E54 - Minecraft - Lava/Water Walls!","description":"Join Franco as he makes dangerous decisions and builds walls out of lava in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e00fd51-50ce-4562-9f03-17c418ec607a/sm/2013912-1449774080077-maxresdefault_(19).jpg","duration":214,"publication_date":"2012-07-04T20:36:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-78","changefreq":"weekly","video":[{"title":"2012:E53 - GTA4 - Journey to Cybertron","description":"A \"Things to do in\" taking place in Grand Theft Auto IV. Shows a fun and interesting thing to do in GTA4 multiplayer.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-78","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f82eaf06-9ae6-435b-b7fb-197a4ae6bc47/sm/2013912-1449774057137-maxresdefault_(18).jpg","duration":185,"publication_date":"2012-07-04T19:56:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-77","changefreq":"weekly","video":[{"title":"2012:E54 - Burger Time: World Tour","description":"BioHRay shows you how they made burgers in the 1980's, now in 3D!!!","player_loc":"https://roosterteeth.com/embed/this-is-2012-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54cb9422-f5e9-4be0-aff8-0eac413f0543/sm/2013912-1449774029354-maxresdefault_(17).jpg","duration":177,"publication_date":"2012-07-04T19:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wmv-640x480-test-video","changefreq":"weekly","video":[{"title":"2012:E210 - WMV 640x480 Test Video","description":"Test Video for build 04T","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wmv-640x480-test-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":40,"publication_date":"2012-07-04T18:40:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-m2ts-1280x720-test-video","changefreq":"weekly","video":[{"title":"2012:E209 - M2TS 1280X720 Test Video","description":"Test Video build 04T","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-m2ts-1280x720-test-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":40,"publication_date":"2012-07-04T18:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-soul-tear","changefreq":"weekly","video":[{"title":"2012:E208 - The Elder Scrolls V: Skyrim - Soul Tear","description":"Steevinator has a guide on how to get the \"Soul Tear\" Achievement 20g's, in Skyrim's Dawnguard DLC","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-soul-tear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9450051-d418-4495-9a3a-7073ebdc7f28/sm/2013912-1449773808685-maxresdefault_(16).jpg","duration":239,"publication_date":"2012-07-04T18:20:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-24","changefreq":"weekly","video":[{"title":"2012:E27 - Halo HORSE #82","description":"Michael and Gus kick off the second round of the office HORSE tournament! Who will win Place your bets now!!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfcebc18-38b2-426a-a405-3818589255af/sm/ep5240.jpg","duration":492,"publication_date":"2012-07-04T17:19:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-intel-operative-part-3","changefreq":"weekly","video":[{"title":"2012:E207 - Intel Operative Part 3","description":"Ray and Gavin show you where to find all the intel in Chapters 13 - 15 in Spec Ops: The Line for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-intel-operative-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c2d2177-4304-4b0c-8ef5-b5b29a47a090/sm/ep5237.jpg","duration":107,"publication_date":"2012-07-03T23:00:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-17","changefreq":"weekly","video":[{"title":"2012:E11 - Trials Evolution - Trials Files #11","description":"Geoff and Jack take a look at a knight themed map in this week's Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56c0c3ba-aaeb-4881-84ed-d87f943be23c/sm/ep5235.jpg","duration":66,"publication_date":"2012-07-03T15:58:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-timesplitters","changefreq":"weekly","video":[{"title":"2012:E206 - Retro: Active - Timesplitters","description":"Fragger dives back in to the past and checks out the classic title \"Timesplitters\" for the newest episode of Retro: Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-timesplitters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6bdba67-ef70-4667-826d-f12e6cf1fff8/sm/ep5234.jpg","duration":162,"publication_date":"2012-07-03T00:15:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-intel-operative-part-2","changefreq":"weekly","video":[{"title":"2012:E205 - Intel Operative Part 2","description":"Ray and Michael show you where to find all the intel in Chapters 6 - 12 in Spec Ops: The Line for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-intel-operative-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe0aa7f3-2962-41e7-9385-883e6a96938c/sm/ep5233.jpg","duration":152,"publication_date":"2012-07-02T21:22:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-23","changefreq":"weekly","video":[{"title":"2012:E27 - Week #119","description":"Jack and Geoff talk about all kinds of news and games in this week's AHWU. Find out more about RTX, Halo 4, Grifballs and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/194f3947-5dc1-479c-834b-e200f40b45b2/sm/ep5231.jpg","duration":238,"publication_date":"2012-07-02T19:28:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-36","changefreq":"weekly","video":[{"title":"2012:E58 - Vortex Easter Egg Easter Egg","description":"Geoff and Ray show you where to find a colorful easter egg in the Vortex DLC map for Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0a77e63-3936-442c-81ac-a1264ea7f420/sm/ep5230.jpg","duration":49,"publication_date":"2012-07-02T16:52:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-23","changefreq":"weekly","video":[{"title":"2012:E26 - Volume 93","description":"Jack and Geoff continue to look at another large pile of failure in this week's Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41aa8752-84f8-43b5-94ea-80c42f464c6d/sm/ep5229.jpg","duration":216,"publication_date":"2012-06-29T21:19:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-dawnguard-auriels-bow","changefreq":"weekly","video":[{"title":"2012:E204 - Skyrim: Dawnguard: Auriel's Bow","description":"This is how to earn the \"Auriel's Bow\" achievement in the new Dawnguard DLC for Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-dawnguard-auriels-bow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a96fff9e-8fb7-4cdb-bedc-06c45f6d79f0/sm/2013912-1449773783417-maxresdefault_(15).jpg","duration":102,"publication_date":"2012-06-29T19:52:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-77","changefreq":"weekly","video":[{"title":"2012:E51 - Just Cause 2 - Attaching Stuff To Planes!","description":"Leo(Spengles) and Jaime(Loser-who-doesn't-have-a-profile-on-Rooster-Teeth) make cars fly! What fun!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-77","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aa5d6e1-29b0-4686-bee5-9c007374136f/sm/2013912-1449773757491-maxresdefault_(14).jpg","duration":170,"publication_date":"2012-06-29T19:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-76","changefreq":"weekly","video":[{"title":"2012:E53 - Haunt","description":"maineiacs takes a look at the free kinect game, Haunt. Did i mention that it is free and that it has achievements","player_loc":"https://roosterteeth.com/embed/this-is-2012-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28245a2c-ce99-4625-bd2d-894aa2e743ae/sm/2013912-1449773730360-maxresdefault_(13).jpg","duration":235,"publication_date":"2012-06-29T19:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-dlc-quest","changefreq":"weekly","video":[{"title":"2012:E203 - Indie Night - DLC Quest","description":"Hightower and xBRITxHyBriD take a look at..... You must purchase the video description DLC to see the rest of the video description!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-dlc-quest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cd4aeac-f5d1-4a11-b81c-cc8328584009/sm/2013912-1449773681639-maxresdefault_(12).jpg","duration":118,"publication_date":"2012-06-29T19:26:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-intel-operative-part-1","changefreq":"weekly","video":[{"title":"2012:E202 - Intel Operative Part 1","description":"Ray and Geoff show you where to find all the intel in Chapters 1 - 5 in Spec Ops: The Line for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-intel-operative-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1ca8cf2-ffc0-44a2-ba1e-fb59f49e0ff0/sm/ep5220.jpg","duration":151,"publication_date":"2012-06-29T19:20:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-double-rainbow","changefreq":"weekly","video":[{"title":"2012:E201 - Game Night: Halo Reach - Double Rainbow","description":"Caleb and Geoff take a look at the Game Night Map \"Double Rainbow\" in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-double-rainbow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0514a1be-15f0-4c39-b7c0-a81eafe1597b/sm/ep5219.jpg","duration":88,"publication_date":"2012-06-29T18:25:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-39","changefreq":"weekly","video":[{"title":"2012:E27 - Worms Part 2","description":"Michael, Gavin, and Ray return for another explosive round of Worms. Can Ray continue his winning streak or will Michael and Gav double team him Got 'em!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c445c61d-ed2e-48d4-84be-e2a11161cb54/sm/ep5218.jpg","duration":1610,"publication_date":"2012-06-29T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-20","changefreq":"weekly","video":[{"title":"2012:E26 - Mega Man 10","description":"This week on Rage Quit, Michael teams up with the Blue Bomber for a robot wrecking adventure in Mega Man 10 for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebbbb2fd-a93d-4b4a-b8e0-eb28c099e1c2/sm/ep5215.jpg","duration":247,"publication_date":"2012-06-29T00:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-16","changefreq":"weekly","video":[{"title":"2012:E52 - Skyrim: Dawnguard","description":"Geoff and Michael take a look at the newly released vampire-themed DLC for Skyrim, \"Dawnguard.\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02ab1634-0fcd-4bae-8447-eae0b6a41dcb/sm/ep5209.jpg","duration":509,"publication_date":"2012-06-28T18:48:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-amazing-spider-man-the-sky-is-the-limit-guide","changefreq":"weekly","video":[{"title":"2012:E1402 - The Amazing Spider-Man - The Sky Is the Limit Guide","description":"Dylan and Alex show you how to get The Sky Is the Limit Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-amazing-spider-man-the-sky-is-the-limit-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":231,"publication_date":"2012-06-28T18:23:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-achievements-1","changefreq":"weekly","video":[{"title":"2012:E1397 - 3 Achievements","description":"Ray and Geoff show you how to get the Damn Close, The Human Factor, and In Your Face achievements in Spec Ops: The Line for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-achievements-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cdc3cf24-d32d-4dd1-bfa9-011a704326cd/sm/ep5201.jpg","duration":106,"publication_date":"2012-06-28T16:44:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-11","changefreq":"weekly","video":[{"title":"2012:E9 - Trials PIG #11","description":"Jack and Geoff go heads up in yet another game of Trials Evolution PIG! Will Geoff survive","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/652d8637-5ef2-48da-8446-1bca4deea8ed/sm/ep5200.jpg","duration":268,"publication_date":"2012-06-28T16:34:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dawnguard-how-to-start","changefreq":"weekly","video":[{"title":"2012:E200 - Dawnguard - How To Start","description":"Michael and Geoff show you how to start the first quest of the Dawnguard DLC in Skyrim for the Xbox 360.\r\n\r\nWhy would I talk to a guard!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dawnguard-how-to-start","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3741bcfd-74bf-4925-9233-77a4c70eb85f/sm/ep5199.jpg","duration":105,"publication_date":"2012-06-27T21:39:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-18","changefreq":"weekly","video":[{"title":"2012:E50 - Minecraft - Minesweeper","description":"Geoff and Jack and Fragger show you how to play Minesweeper in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75fe44c4-bc45-46a5-a669-ec8787803c49/sm/ep5198.jpg","duration":255,"publication_date":"2012-06-27T21:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-28","changefreq":"weekly","video":[{"title":"2012:E57 - Normandy SR-2 Easter Egg","description":"Ray and Geoff show where to find the Normandy SR-2 Easter Egg in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfda0c71-1fa0-4a17-b94f-8e008e5b3545/sm/ep5197.jpg","duration":56,"publication_date":"2012-06-27T20:21:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-16","changefreq":"weekly","video":[{"title":"2012:E26 - Halo HORSE #81","description":"Michael and Kathleen have been lined up to play the final match of our office Halo HORSE tournament. What will happen Will there be a twist","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59fd24ab-8fed-4ee2-b70a-514582947f8a/sm/ep5196.jpg","duration":531,"publication_date":"2012-06-27T16:58:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-76","changefreq":"weekly","video":[{"title":"2012:E49 - Minecraft - Tree Top Survival","description":"In this video VictorZanta shows us another things to do in the Xbox 360 addition of Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-76","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9df77b11-ed0f-4cf9-94b7-12abca38d6f4/sm/2013912-1449773654159-maxresdefault_(11).jpg","duration":131,"publication_date":"2012-06-27T16:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-75","changefreq":"weekly","video":[{"title":"2012:E48 - Minecraft - Ice House","description":"hotley brings you a things to do in Minecraft where he shows you how to make a house out of ice!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e536dcd9-b532-40d0-8e9f-27accd1bf5cb/sm/2013912-1449773629604-maxresdefault_(10).jpg","duration":83,"publication_date":"2012-06-27T16:24:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-74","changefreq":"weekly","video":[{"title":"2012:E47 - Red Dead Redemption - Cowpoke Jousting","description":"A \"Things to do in\" taking place in Red Dead Redemption. Shows yet another way to enjoy the Red Dead multiplayer experience.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-74","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/337bb382-80fe-4d55-990c-474cb7b15fab/sm/2013912-1449773602428-maxresdefault_(9).jpg","duration":197,"publication_date":"2012-06-26T21:25:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-deer-hunter-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1393 - Deer Hunter Achievement Guide","description":"Ray and Geoff show you how to get the Deer Hunter achievement in Spec Ops: The Line for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-deer-hunter-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13b7aea2-866c-498f-bbca-e2449fe7118c/sm/ep5188.jpg","duration":51,"publication_date":"2012-06-26T19:58:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-12","changefreq":"weekly","video":[{"title":"2012:E10 - Trials Evolution - Trials Files #10","description":"Geoff and Jack take a look at the map \"Mild Insanity\" in latest edition of Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/764416a7-f230-47d1-9562-dad339e6a1ee/sm/ep5187.jpg","duration":124,"publication_date":"2012-06-26T19:05:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-22","changefreq":"weekly","video":[{"title":"2012:E56 - Wine Easter Egg","description":"Ray and Geoff show you where to find a cool little easter egg on the Ziba Tower map in the Battlefield 3 Close Quarters DLC","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6c5b9a4-df25-4328-8afb-47238567ee55/sm/ep5186.jpg","duration":71,"publication_date":"2012-06-26T16:52:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-10","changefreq":"weekly","video":[{"title":"2012:E50 - Spec Ops: The Line","description":"Jack and Geoff take a look at the newest desert-based shooter \"Spec Ops: The Line.\" Will Geoff manage to blow himself up Watch and learn!","player_loc":"https://roosterteeth.com/embed/this-is-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b62a85c-511f-4cd6-8683-8a33e07df332/sm/ep5183.jpg","duration":366,"publication_date":"2012-06-26T15:11:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-the-simpsons-game","changefreq":"weekly","video":[{"title":"S1:E27 - A Look Back At: The Simpsons Game","description":"Fragger and Ray take a look back at The Simpsons Game for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-the-simpsons-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/931437eb-6416-4d37-93c2-6d637b5187c8/sm/ep5182.jpg","duration":297,"publication_date":"2012-06-26T15:08:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-14","changefreq":"weekly","video":[{"title":"2012:E26 - Week #118","description":"Jack and Geoff are back with more news and information from the world of vidjagames. Find out this week about Criterion, Spec Ops: The Line, Skyrim and more! Also, WET BEARD.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d2b4c84-ba04-4f71-93e8-d2552a9fa8ef/sm/ep5181.jpg","duration":276,"publication_date":"2012-06-25T21:59:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-73","changefreq":"weekly","video":[{"title":"2012:E46 - DayZ - Server Hopping","description":"Rob (RobinoFree) shows everyone how to server hop in the DayZ mod for the PC game, ArmA II.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":154,"publication_date":"2012-06-25T20:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-avatar-ninja-2","changefreq":"weekly","video":[{"title":"2012:E199 - Indie Night - Avatar Ninja 2","description":"Hightower and Styx bring you Avatar Ninja 2 from the Indie Marketplace! This time it's personal.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-avatar-ninja-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e62e96c5-fbd5-467f-a84e-0ef10e7525fb/sm/2013912-1449773552733-maxresdefault_(8).jpg","duration":132,"publication_date":"2012-06-25T20:31:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alan-wakes-american-nightmare-skill-beats-gun","changefreq":"weekly","video":[{"title":"2012:E198 - Alan Wake's American Nightmare - Skill Beats Gun","description":"Keenan shows you how to get the Skill Beats Gun Achievement for Alan Wake's American Nightmare.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alan-wakes-american-nightmare-skill-beats-gun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd3e841b-f05c-4a06-a3ae-eddbaeec668d/sm/2013912-1449773530898-maxresdefault_(7).jpg","duration":135,"publication_date":"2012-06-25T20:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-109","changefreq":"weekly","video":[{"title":"2012:E49 - Dragon's Dogma","description":"GheTToCl0wN and xBRITxHyBriD show you Capcom's fantasy RPG Dragon's Dogma","player_loc":"https://roosterteeth.com/embed/this-is-2012-109","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ec47bf6-06b5-45e7-9086-0f33933eabb6/sm/2013912-1449773495008-maxresdefault_(6).jpg","duration":343,"publication_date":"2012-06-25T20:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-vectorman","changefreq":"weekly","video":[{"title":"2012:E197 - Retro Active - Vectorman","description":"Fragger takes a look at the retro classic, Vectorman.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-vectorman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d29517ed-06c3-4b77-baf1-96783e21491a/sm/ep5168.jpg","duration":144,"publication_date":"2012-06-25T19:45:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-15","changefreq":"weekly","video":[{"title":"2012:E55 - Vortex / Intersection Easter Eggs","description":"Geoff and Ray show you where to find a few easter eggs in the new Call of Duty: Modern Warfare 3 DLC maps, Vortex and Intersection.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6fea628f-4d95-4caf-8524-1002abfaaea4/sm/ep5165.jpg","duration":104,"publication_date":"2012-06-25T18:56:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-aced-auto-shop-class-fingered","changefreq":"weekly","video":[{"title":"2012:E196 - Aced Auto-shop Class, Fingered","description":"Ray and Michael show you how to get the Aced Auto-shop Class and Fingered achievements in Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-aced-auto-shop-class-fingered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7b8095e-4721-4efc-899a-ad33ebb28223/sm/ep5164.jpg","duration":188,"publication_date":"2012-06-25T17:23:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-72","changefreq":"weekly","video":[{"title":"2012:E45 - Minecraft - Super Trees","description":"Styx shows you how to make your very own super trees. They're just like super heroes, but more tree-like.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6c5a872-d7e2-42a5-80c5-2269819316c7/sm/2013912-1449773465305-maxresdefault_(5).jpg","duration":76,"publication_date":"2012-06-23T01:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-gears-of-war-series","changefreq":"weekly","video":[{"title":"2012:E195 - The Five: Gears of War (Series)","description":"Franco here, with another episode of \"The Five\"! Join me as I discover facts about Marcus and friends!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-gears-of-war-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc6211ca-dd6b-405e-8fe1-ec463f56e22d/sm/2013912-1449773444754-maxresdefault_(4).jpg","duration":200,"publication_date":"2012-06-23T01:29:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-windfall-island","changefreq":"weekly","video":[{"title":"2012:E194 - Mod Spotlight.. Skyrim - Windfall Island","description":"CFHhateph34r and Emphara (Anouki) show you a cool Zelda themed Skyrim mod!\r\nDownload link:http://steamcommunity.com/sharedfiles/filedetails/id=77120146\r\n Group Link:http://roosterteeth.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-windfall-island","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/beb5b546-603a-4c46-8b73-d97e65575f60/sm/2013912-1449773416371-maxresdefault_(3).jpg","duration":143,"publication_date":"2012-06-23T01:14:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-71","changefreq":"weekly","video":[{"title":"2012:E44 - Minecraft - Water Elevator","description":"Styx teaches you how to make your own Water Elevator in Minecraft 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1c90999-7b2a-4d7f-a82a-af2c79068241/sm/2013912-1449773396396-maxresdefault_(2).jpg","duration":93,"publication_date":"2012-06-23T00:34:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-8","changefreq":"weekly","video":[{"title":"2012:E26 - Minecraft Part 5","description":"Geoff, Gavin, Michael, and Ray return to Minecraft once again to race to see who can build a Diamond Pickaxe first. Tensions are high and friendships might be broken.\n\nJoe Pesci not included.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f7e799f-ef02-4c92-bf47-fcd1998ec03c/sm/ep5148.jpg","duration":1397,"publication_date":"2012-06-22T22:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-7","changefreq":"weekly","video":[{"title":"2012:E25 - Volume 92","description":"Jack and Geoff look at another awesome group of hilarious fails in Halo: Reach. Watch out for flying karma!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33927790-cea7-4a8f-823d-21063ad33a5a/sm/ep5147.jpg","duration":270,"publication_date":"2012-06-22T17:17:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-left-4-dead-hope","changefreq":"weekly","video":[{"title":"2012:E193 - Game Night: Halo Reach - Left 4 Dead Hope","description":"Caleb and Geoff take a look at the Halo Reach gametype \"Left 4 Dead Hope\" in the latest episode of Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-left-4-dead-hope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37f41be3-2463-4d8c-87f3-cec366ee24d2/sm/ep5146.jpg","duration":149,"publication_date":"2012-06-22T16:23:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-5","changefreq":"weekly","video":[{"title":"2012:E25 - Chromehounds","description":"This week on Rage Quit, Michael and his giant mech wander around in Chromehounds.\n\nI thought there were metal dogs. There weren't.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5efcc08-b769-486d-91ef-21f4c18fea17/sm/ep5145.jpg","duration":196,"publication_date":"2012-06-21T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-10","changefreq":"weekly","video":[{"title":"2012:E8 - Trials HORSE #10","description":"Geoff and Ray head to the battlefield of Trials Evolution in this game of Achievement HORSE! Who will win","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa1f79fe-92a6-400a-baf0-6ddbc0455813/sm/ep5144.jpg","duration":481,"publication_date":"2012-06-21T21:14:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-little-sisters-are-the-worst-elephant-tamer","changefreq":"weekly","video":[{"title":"2012:E192 - Little Sisters Are The Worst!, Elephant Tamer","description":"Ray and Michael show you how to get the Little Sisters Are The Worst! and Elephant Tamer achievements in Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-little-sisters-are-the-worst-elephant-tamer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60977582-40e7-4d7e-8a4a-63c5be08d090/sm/ep5143.jpg","duration":165,"publication_date":"2012-06-21T16:15:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-6","changefreq":"weekly","video":[{"title":"2012:E43 - Max Payne 3 - Maxin' Relaxin'","description":"Michael and Geoff show you how Max Payne likes to kick back and relax in his spare time.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cd7659a-8723-444a-9317-c865b0ed6784/sm/ep5142.jpg","duration":194,"publication_date":"2012-06-20T21:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-no-fear-of-heights-critical-ufo-finish","changefreq":"weekly","video":[{"title":"2012:E191 - No Fear Of Heights, Critical UFO Finish","description":"Ray and Michael show you how to get the No Fear Of Heights and Critical UFO Finish Elephant Tamer achievements in Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-no-fear-of-heights-critical-ufo-finish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efecaba4-2c68-4731-bfb7-8041da2d4049/sm/ep5141.jpg","duration":207,"publication_date":"2012-06-20T21:27:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-5","changefreq":"weekly","video":[{"title":"2012:E25 - Halo HORSE #80","description":"In the next match of the first round of our Rooster Teeth Office Tournament, Ray from Achievement Hunter goes head to head with Joe from the animation team. Who will win","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a42283b9-a972-4eb4-aa17-3e3e028581a0/sm/ep5140.jpg","duration":437,"publication_date":"2012-06-20T18:26:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-2","changefreq":"weekly","video":[{"title":"2012:E9 - Trials Evolution - Trials Files #9","description":"Geoff and Jack take a look at a Wipeout inspired track in Trials: Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c99d64d3-3afb-49c8-a6e7-2450d902c657/sm/ep5138.jpg","duration":268,"publication_date":"2012-06-19T21:09:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dr0n3d-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1374 - dr0n3d Achievement Guide","description":"Ray and Geoff show you how to get the dr0n3d achievement in the new DLC for Call of Duty: Modern Warfare 3 for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dr0n3d-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91c78b4e-7f05-4e99-907d-acbd5e4b818a/sm/ep5137.jpg","duration":221,"publication_date":"2012-06-19T20:03:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-baby-maker-extreme-2","changefreq":"weekly","video":[{"title":"2012:E190 - Indie Night - Baby Maker Extreme 2","description":"Hightower and cfhhateph34r explore the more bizarre side of the Xbox Indie marketplace with Baby Maker Extreme 2!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-baby-maker-extreme-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc66b6ab-4ed3-406a-b029-4679c8778b05/sm/2013912-1449773375754-maxresdefault_(1).jpg","duration":123,"publication_date":"2012-06-19T17:51:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-devils-advocate-beat-hazard","changefreq":"weekly","video":[{"title":"2012:E189 - Devil's Advocate - Beat Hazard","description":"CFHhateph34r shows off Beat Hazard in this week's episode of Devil's Advocate!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-devils-advocate-beat-hazard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb52265c-c787-4448-94eb-0fced7896cde/sm/2013912-1449773351774-maxresdefault.jpg","duration":194,"publication_date":"2012-06-19T17:47:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-70","changefreq":"weekly","video":[{"title":"2012:E42 - Just Cause 2 - Island Hopping!","description":"Jaime and Leo take part in some extreme boating in Just Cause 2! Hilarity ensues!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bf6bbd0-dd37-48c2-9f60-f3727a56abcb/sm/2013912-1449773323382-maxresdefault_(20).jpg","duration":154,"publication_date":"2012-06-19T17:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-8","changefreq":"weekly","video":[{"title":"2012:E188 - Ghost Recon: Future Soldier - Master Tactician Part 8","description":"FailScintsts and Alex show you how to get the tactical challenges in mission 12 for the Master Tactician achievement. In this one you actually unlock the achievement!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0af2a75f-3a95-4384-9e95-2ec79641698d/sm/2013912-1449773292492-maxresdefault_(19).jpg","duration":286,"publication_date":"2012-06-19T17:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-7","changefreq":"weekly","video":[{"title":"2012:E187 - Ghost Recon: Future Soldier - Master Tactician Part 7","description":"FailScintists and Alex show you how to get the tactical challenges in missions 10 and 11 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbe94fd9-acde-4472-9f6c-43501e3e62e4/sm/2013912-1449773265213-maxresdefault_(18).jpg","duration":236,"publication_date":"2012-06-19T17:15:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-6","changefreq":"weekly","video":[{"title":"2012:E186 - Ghost Recon: Future Soldier - Master Tactician Part 6","description":"FailScintsts and Alex show you how to get the tactical challenges in mission 9 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":226,"publication_date":"2012-06-19T17:13:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-5","changefreq":"weekly","video":[{"title":"2012:E185 - Ghost Recon: Future Soldier - Master Tactician Part 5","description":"FailScintsts and Alex show you how to get the tactical challenges in mission 8 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":335,"publication_date":"2012-06-19T17:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-4","changefreq":"weekly","video":[{"title":"2012:E184 - Ghost Recon: Future Soldier - Master Tactician Part 4","description":"Failscintsts and Alex show you how to get the tactical challenges in mission 7 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cf7cbf2-f41f-4bb9-9f1e-9a974ce34a5e/sm/2013912-1449773213747-maxresdefault_(17).jpg","duration":168,"publication_date":"2012-06-19T17:08:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-3","changefreq":"weekly","video":[{"title":"2012:E183 - Ghost Recon: Future Soldier - Master Tactician Part 3","description":"FailScintsts and Alex show you how to get the tactical challenges in missions 5 and 6 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f93323a5-66e7-4c76-81ca-fdd817a3fa46/sm/2013912-1449773176267-maxresdefault_(16).jpg","duration":282,"publication_date":"2012-06-19T17:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-2","changefreq":"weekly","video":[{"title":"2012:E182 - Ghost Recon: Future Soldier - Master Tactician Part 2","description":"FailScintsts and Alex show you how to get the tactical challenges in missions 3 and 4 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f88e1448-52d5-4122-aecb-62c5ff25f21d/sm/2013912-1449773139055-maxresdefault_(15).jpg","duration":235,"publication_date":"2012-06-19T17:04:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-1","changefreq":"weekly","video":[{"title":"2012:E181 - Ghost Recon: Future Soldier - Master Tactician Part 1","description":"FailScintsts and Alex show you how to complete the tactical challenges in missions 1 and 2 for the Master Tactician achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-master-tactician-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6b937cf-0f8b-46ce-8da2-b95ce179ed58/sm/2013912-1449773104326-maxresdefault_(14).jpg","duration":192,"publication_date":"2012-06-19T17:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-legendary-harvester-third-eye-guides","changefreq":"weekly","video":[{"title":"2012:E1369 - Legendary Harvester, Third Eye Guides","description":"Ray and Michael show you hot to get the Legendary Harvester and Third Eye achievements in Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-legendary-harvester-third-eye-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0101226d-f06f-4180-8fd6-9394c05d7149/sm/ep5120.jpg","duration":162,"publication_date":"2012-06-19T16:34:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-rise-of-the-triad","changefreq":"weekly","video":[{"title":"2012:E180 - Retro Active - Rise of the Triad","description":"Fragger takes a look at Rise of the Triad in this week's Retro Active.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-rise-of-the-triad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/155a2983-9576-4ea8-9301-c8d18996b77b/sm/ep5118.jpg","duration":148,"publication_date":"2012-06-18T21:14:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-52","changefreq":"weekly","video":[{"title":"2012:E25 - Week #117","description":"Jack and Geoff bring you a Halo-riffic episode of AHWU. Watch and learn about everything coming up this week! Also, don't forget to check out http://www.rtxevent.com/ all this week for big announcements!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/414cf8d0-ddff-4741-a9ac-ed8e578556d4/sm/ep5117.jpg","duration":305,"publication_date":"2012-06-18T20:21:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gunn-struck-cheerleader-overboard-sparkle-hunting-master","changefreq":"weekly","video":[{"title":"2012:E179 - Gunn Struck, Cheerleader Overboard!, Sparkle Hunting Master","description":"Ray and Michael show you how to get the Gunn Struck, Cheerleader Overboard!, Sparkle Hunting Master achievements in Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gunn-struck-cheerleader-overboard-sparkle-hunting-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e9c9967-cf8b-445a-b017-25a868c48080/sm/ep5116.jpg","duration":179,"publication_date":"2012-06-18T17:40:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-69","changefreq":"weekly","video":[{"title":"2012:E41 - Minecraft - Hide and Seek","description":"In this video, Preston shows you a bunch of fun ways to play Hide and Seek in Minecraft!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc4d18f5-d891-44c6-833d-da3a1a619aca/sm/2013912-1449772724818-maxresdefault_(13).jpg","duration":157,"publication_date":"2012-06-17T18:48:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-xbox-booth-walkthrough","changefreq":"weekly","video":[{"title":"2012:E178 - Xbox Booth Walkthrough","description":"Jack and Ali check out what Microsoft has to offer at E3 2012! Enjoy their look at various things around the Xbox booth!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-xbox-booth-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58aae546-42b2-4e81-8341-ab0109d9de5c/sm/ep5106.jpg","duration":208,"publication_date":"2012-06-16T00:15:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-58","changefreq":"weekly","video":[{"title":"2012:E48 - Lollipop Chainsaw","description":"Ray and Michael put on their cheerleading outfits and check out Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/this-is-2012-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6c1e55e-e045-4be6-9769-37d0994002d0/sm/ep5105.jpg","duration":473,"publication_date":"2012-06-15T22:35:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-bioshock","changefreq":"weekly","video":[{"title":"2012:E177 - The Five: Bioshock","description":"Would you kindly join Franco as he discovers five fun facts in this episode of \"The Five\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-bioshock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d718e73-ab72-4f75-a993-7f1474432f24/sm/2013912-1449772662802-maxresdefault_(12).jpg","duration":240,"publication_date":"2012-06-15T20:27:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-51","changefreq":"weekly","video":[{"title":"2012:E24 - Volume 91","description":"Jack and Joel look at a bunch of new fails in Halo: Reach! Join them and laugh along with their nuttiness!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8e7e17f-7f6b-46e4-97a5-b48c07fa30d8/sm/ep5103.jpg","duration":237,"publication_date":"2012-06-15T20:24:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-zombies-ate-my-neighbors","changefreq":"weekly","video":[{"title":"2012:E176 - Retro Active - Zombies Ate My Neighbors!","description":"Fragger takes a look at the classic title \"Zombies Ate My Neighbors!\" in this brand new edition of Retro Active!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-zombies-ate-my-neighbors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5c6ee7e-59c0-4adb-aa24-906921322fe1/sm/ep5101.jpg","duration":130,"publication_date":"2012-06-15T19:10:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-go-medal-racer-go","changefreq":"weekly","video":[{"title":"2012:E175 - Go, Medal Racer, Go!","description":"Michael and Ray show you how to get the \"Go, Medal Go!\" achievement in Lollipop Chainsaw for the Xbox 360.\r\n\r\nI like it when she jumps.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-go-medal-racer-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bff2772-e587-4f6e-b214-643cc50ddcd4/sm/ep5096.jpg","duration":185,"publication_date":"2012-06-15T16:30:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-86","changefreq":"weekly","video":[{"title":"2012:E25 - Minecraft Part 4","description":"Geoff, Gavin, Michael, and Ray return to Minecraft once more as they race for first in an epic contest created by Geoff. Who will win Who will fail Who will Michael berate and insult the entire time Ok, that's an easy one.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-86","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a41d1b4-ce02-4bee-870f-1bfd437c1cb1/sm/ep5095.jpg","duration":1394,"publication_date":"2012-06-15T16:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-47","changefreq":"weekly","video":[{"title":"2012:E24 - Sneak King","description":"This week on Rage Quit, Michael gets sneaky in the classic promotional Burger King game, Sneak King. \n\nHe hated this game 6 years ago. He still hates it today.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32a7153b-6fda-4ee5-b249-eee42b43a99f/sm/ep5093.jpg","duration":213,"publication_date":"2012-06-15T00:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-pig-9","changefreq":"weekly","video":[{"title":"2012:E7 - Trials PIG #9","description":"In today's episode of Achievement PIG, Jack and Ray face off to decide who is the best. The best is also awarded a big steak dinner. Yum.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-pig-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0fce9264-94b4-4c41-bcbc-e9b1133374b2/sm/ep5092.jpg","duration":273,"publication_date":"2012-06-14T20:52:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-source-engine-goldeneye-source","changefreq":"weekly","video":[{"title":"2012:E174 - Mod Spotlight.. Source Engine - Goldeneye Source","description":"CFHhateph34r shows you the really awesome port of everyone's favorite '90s game, Goldeneye! Download link:http://www.goldeneyesource.net/\r\nGroup link:http://achievementhunter.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-source-engine-goldeneye-source","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de579b71-853e-4ad4-92ae-371101e7351a/sm/2013912-1449772627725-maxresdefault_(11).jpg","duration":149,"publication_date":"2012-06-14T18:36:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-68","changefreq":"weekly","video":[{"title":"2012:E40 - Minecraft - Hidden Door","description":"Jonny shows you how to make a hidden door in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/406ac901-02aa-4bd0-9bfa-41c7d457a5a7/sm/2013912-1449772596152-maxresdefault_(10).jpg","duration":90,"publication_date":"2012-06-14T18:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-leapfrog-girl-watch-out-for-the-balls","changefreq":"weekly","video":[{"title":"2012:E173 - Leapfrog Girl, Watch Out For The Balls","description":"Ray and Michael show you how to get the Leapfrog Girl and Watch Out For The Balls achievements in Lollipop Chainsaw for the Xbox 360","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-leapfrog-girl-watch-out-for-the-balls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29d7c0e0-6665-4f76-9b8c-d22a46e076c2/sm/ep5081.jpg","duration":112,"publication_date":"2012-06-14T17:57:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-67","changefreq":"weekly","video":[{"title":"2012:E39 - Minecraft - Obsidian Encasing","description":"In this video, Preston and ISayWhat show you how to troll your friends by encasing them or their stuff with obsidian!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/076d3801-c4fe-409f-99c4-0860c30508d5/sm/2013912-1449772574217-maxresdefault_(9).jpg","duration":146,"publication_date":"2012-06-14T17:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-sneak-king","changefreq":"weekly","video":[{"title":"S1:E26 - A Look Back At: Sneak King","description":"Fragger and Ray take a look at this classic Burger King-themed title that you could pick up when you grabbed a Whopper. Enjoy with a side of fries and a soda.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-sneak-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efde3597-f577-4e1d-8a39-588ec5c89209/sm/ep5077.jpg","duration":342,"publication_date":"2012-06-14T17:01:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grossest-toilets-in-gaming-best-of-the-rest","changefreq":"weekly","video":[{"title":"2012:E172 - Grossest Toilets in Gaming: Best Of The Rest","description":"Ray and Michael show you the runners up for the most disgusting toilets in Xbox 360 games","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grossest-toilets-in-gaming-best-of-the-rest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7006f48f-7d5f-4946-b52a-b3cdb539b6d7/sm/ep5076.jpg","duration":312,"publication_date":"2012-06-14T14:35:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-42","changefreq":"weekly","video":[{"title":"2012:E24 - Halo HORSE #79","description":"Kerry and Gray face off in the first round of the office HORSE tournament. Who will win in this battle of the animation team","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb1c82bd-01ce-4cd6-82de-417492e9b2eb/sm/ep5075.jpg","duration":422,"publication_date":"2012-06-13T20:19:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-46","changefreq":"weekly","video":[{"title":"2012:E38 - Minecraft - Demining","description":"Gavin and Geoff dig for adventure...but only one survives. Isn't friendship grand","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41f5ed3c-da91-4e95-837c-3cf441ee3fc2/sm/ep5074.jpg","duration":166,"publication_date":"2012-06-13T20:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-51","changefreq":"weekly","video":[{"title":"2012:E47 - DayZ (Arma2 Mod)","description":"Gavin, Burnie and Gus take a look at a mod for Arma 2 called \"DayZ.\" Join them as they look at this sweet Zombie themed hardcore shooter.","player_loc":"https://roosterteeth.com/embed/this-is-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f29d10f5-2dce-43d0-b3d5-1d5179f07e32/sm/ep5073.jpg","duration":948,"publication_date":"2012-06-13T19:37:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-devils-advocate-poker-night-at-the-inventory","changefreq":"weekly","video":[{"title":"2012:E171 - Devil's Advocate: Poker Night At The Inventory","description":"CFHhateph34r brings you a new series where he plays Devil's Advocate to the Metacritic rating of a game, giving you good reasons to spend your hard earned cash! This week, it's Poker Night at the Inventory by Telltale Games for PC!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-devils-advocate-poker-night-at-the-inventory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75fbdde1-a50f-4959-b79c-fb7896934353/sm/2013912-1449772550846-maxresdefault_(8).jpg","duration":196,"publication_date":"2012-06-13T16:53:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kicking-weightless-ass","changefreq":"weekly","video":[{"title":"2012:E170 - Kicking Weightless Ass","description":"Ray and Michael show you how to get the Kicking Weightless Ass achievement in the Xbox 360 game \"Inversion\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kicking-weightless-ass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/114e91cb-b2dc-4e31-8019-0e39a4b39258/sm/ep5068.jpg","duration":78,"publication_date":"2012-06-13T14:32:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-swear-i-did-it-by-mistake","changefreq":"weekly","video":[{"title":"2012:E169 - I Swear! I Did It By Mistake!","description":"Michael and Lindsay show you how to get the very boring and not at all hot \"I Swear! I Did It By Mistake!\" achievement in Lollipop Chainsaw for the Xbox 360.\r\n\r\nWho needs couples counseling when you have couples commentary","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-swear-i-did-it-by-mistake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a447bd37-adfc-4c42-9e5b-965717281e55/sm/ep5066.jpg","duration":85,"publication_date":"2012-06-12T21:27:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-30","changefreq":"weekly","video":[{"title":"2012:E8 - Trials Evolution - Trials Files #8","description":"Gav confuses jack with Missle Command in Trials Evolution. Gameception!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57a08a57-c8f3-45f8-ba97-9d9c74a660e3/sm/ep5065.jpg","duration":122,"publication_date":"2012-06-12T19:50:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fivesome","changefreq":"weekly","video":[{"title":"2012:E168 - Fivesome","description":"Ray and Gavin show you how to get the Fivesome achievement in the Xbox 360 game \"Inversion\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fivesome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1110f98b-34c0-4bb7-bec2-181f00ee5a26/sm/ep5059.jpg","duration":79,"publication_date":"2012-06-12T14:54:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-syndicate-cover-lover-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1336 - Syndicate - Cover Lover Achievement Guide","description":"Joel (joeldiaz1995 on the site) shows you how to get the Cover Lover Achievement in Syndicate!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-syndicate-cover-lover-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":200,"publication_date":"2012-06-11T22:36:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-source-engine-flipside","changefreq":"weekly","video":[{"title":"2012:E167 - Mod Spotlight.. Source Engine - Flipside","description":"CFHhateph34r and Emphara show you the Flipside Half Life 2 mod by Team 3!\r\nDownload Link:http://www.playflipside.com\r\nGroup link:\r\nhttp://roosterteeth.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-source-engine-flipside","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54e02fbb-5307-40e4-8783-37578f78f416/sm/2013912-1449772530347-maxresdefault_(7).jpg","duration":143,"publication_date":"2012-06-11T22:33:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-indie-night-i-maed-a-gam3-w1th-z0mbies-1n-it1","changefreq":"weekly","video":[{"title":"2012:E166 - Indie Night - I MAED A GAM3 W1TH Z0MBIES 1N IT!!!1","description":"In the first episode of this new series, Hightower shows you I MAED A GAM3 W1TH Z0MBIES 1N IT!!!1","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-indie-night-i-maed-a-gam3-w1th-z0mbies-1n-it1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ac33233-a54a-4b74-b21b-73505d008723/sm/2013912-1449772509945-maxresdefault_(6).jpg","duration":99,"publication_date":"2012-06-11T22:27:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-40","changefreq":"weekly","video":[{"title":"2012:E24 - Week #116","description":"Jack and Gavin take over AHWU this week to talk about Lollipops, Chainsaws, Stupid Sunglasses and more! Enjoy!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed429214-390a-4953-a2a7-34aeb632fb04/sm/ep5055.jpg","duration":311,"publication_date":"2012-06-11T22:26:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-40","changefreq":"weekly","video":[{"title":"2012:E46 - Inversion","description":"Ray and Michael check out the gravity themed shooter \"Inversion\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9a986fe-e4f3-4327-a784-8ec4936db726/sm/ep5046.jpg","duration":275,"publication_date":"2012-06-11T15:00:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-66","changefreq":"weekly","video":[{"title":"2012:E37 - Minecraft - Underground Garden","description":"Styx shows you how can make your very own underground garden in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed3158fc-ab9f-4da4-8191-5988e0f3f0fa/sm/2013912-1449772486556-maxresdefault_(5).jpg","duration":161,"publication_date":"2012-06-10T19:03:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-65","changefreq":"weekly","video":[{"title":"2012:E36 - Minecraft - The Explosive House","description":"Your friends can't have nice things, so you build them a house and guess what Its full of TNT and your friend just need to press that pressure plate to witness some fireworks.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":133,"publication_date":"2012-06-10T18:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-may-2012","changefreq":"weekly","video":[{"title":"2012:E5 - Best fails of May 2012","description":"More of your favorite fails! Jack is taking his time coming back from E3 so here's Geoff and Gavin with your favorite Game Fails for May.","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-may-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30d3f623-da21-486f-97f1-4df7fc07894a/sm/ep5031.jpg","duration":293,"publication_date":"2012-06-09T02:07:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-meets-epicmealtime","changefreq":"weekly","video":[{"title":"2012:E165 - Jack meets EpicMealTime","description":"In this video, Jack bumps in to Harley (aka the Sauce Boss) from Epic Meal Time. They discuss beards, beards, games, beards, chicken, waffles and beards. Beware, this video might cause some women to become pregnant.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-meets-epicmealtime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da180bd6-1fbb-4410-9661-78591fe2ef87/sm/ep5030.jpg","duration":135,"publication_date":"2012-06-08T22:30:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-meets-mega64","changefreq":"weekly","video":[{"title":"2012:E164 - Jack meets Mega64","description":"Wandering around the show floor at E3 2012 you bump in to some interesting people. This time Jack bumps in to the Mega64 crew and talks to them about Kiss.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-meets-mega64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/457f0190-12d0-40ff-87a3-fe23643975df/sm/ep5029.jpg","duration":173,"publication_date":"2012-06-08T22:11:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-60","changefreq":"weekly","video":[{"title":"2012:E24 - Worms","description":"Geoff, Gavin, Ray, and Michael go to war in Worms for the Xbox Live Arcade. Naughty names are forbidden.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d300ed0-3743-4540-9449-b0341f5f9a02/sm/ep5028.jpg","duration":2337,"publication_date":"2012-06-08T18:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-max-payne-3-tips-for-surviving-hardcore-and-old-school-mode","changefreq":"weekly","video":[{"title":"2012:E163 - Max Payne 3: Tips for surviving Hardcore and Old School mode","description":"***Spoiler Alert*** maineiacs gives you some tips and tricks on how to get the \" Payne In The Ass\" and \"Maximum Payne\" achievement in Max Payne 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-max-payne-3-tips-for-surviving-hardcore-and-old-school-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7166361e-2607-4e01-94d0-2813f1180137/sm/2013912-1449772419750-maxresdefault_(4).jpg","duration":186,"publication_date":"2012-06-08T17:44:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-75","changefreq":"weekly","video":[{"title":"2012:E45 - Dragon's Lair","description":"CFHhateph34r shows you the newly released Xbox Live Arcade game with Kinect support, Dragon's Lair!","player_loc":"https://roosterteeth.com/embed/this-is-2012-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b52c6fe-5524-462c-a5e5-3ea6c68402aa/sm/2013912-1449772392054-maxresdefault_(3).jpg","duration":328,"publication_date":"2012-06-08T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-tree-tip","changefreq":"weekly","video":[{"title":"2012:E162 - Game Night: Halo Reach - Tree Tip","description":"Caleb and Geoff show you the Halo Reach map, Tree Tip in the latest Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-tree-tip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f0a68da-b795-4de2-841d-637ef22da86f/sm/ep5020.jpg","duration":109,"publication_date":"2012-06-08T17:05:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-isilmeriels-lotr-weapon-collection","changefreq":"weekly","video":[{"title":"2012:E161 - Mod Spotlight: Skyrim - Isilmeriel's LOTR Weapon Collection","description":"This week on Mod Spotlight, CFHhateph34r and Emphara show you Isilmeriel's LOTR Weapon Collection for Skyrim.\r\nDownload link: http://skyrim.nexusmods.com/downloads/file.phpid=5727\r\nGroup link:http://achievementhunter.com/groups/profile.phpid=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-isilmeriels-lotr-weapon-collection","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63327ba8-f817-4f00-b3dd-3c2acbb55ada/sm/2013912-1449772369766-maxresdefault_(2).jpg","duration":172,"publication_date":"2012-06-08T17:00:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-alan-wake-series","changefreq":"weekly","video":[{"title":"2012:E160 - The Five: Alan Wake (Series)","description":"Watch as Franco takes you deep into the dark world of Alan Wake in this week's \"The Five\"!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-alan-wake-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02c6206e-b1ef-47aa-9787-9cdf5633a185/sm/2013912-1449772348988-maxresdefault_(1).jpg","duration":212,"publication_date":"2012-06-08T16:49:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-34","changefreq":"weekly","video":[{"title":"2012:E23 - Volume 90","description":"Jack and Gavin bring you a week's worth of awesome failure in Halo: Reach. Enjoy this batch of awesome.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c54163c-3ab1-4256-85c0-301e46100791/sm/ep5015.jpg","duration":206,"publication_date":"2012-06-08T16:32:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-31","changefreq":"weekly","video":[{"title":"2012:E23 - Minecraft Part II","description":"On this week's Rage Quit, Michael returns along with Geoff, Gavin, and Ray as the shenanigans continue in Minecraft. Let's just say Michael has some issues with Gavin.\n\nBe sure to tune in next Friday for the full Let's Play Minecraft Part 4!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f05df616-89fa-42a1-89ab-2286f6f1ad94/sm/ep5014.jpg","duration":207,"publication_date":"2012-06-08T02:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-fly-zone-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1304 - No Fly Zone Achievement Guide","description":"P3nAlPineapple shows you some tips and tricks on how to get the no fly zone achievement in Halo: CE Anniversary","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-fly-zone-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":123,"publication_date":"2012-06-07T16:08:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-8","changefreq":"weekly","video":[{"title":"2012:E6 - Trials HORSE #8","description":"Gav and Ray go head to head in Trials Evolution in the latest episode of HORSE.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3d00972-7cbe-4049-b372-d4126ac4f208/sm/ep5002.jpg","duration":271,"publication_date":"2012-06-07T15:52:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-32","changefreq":"weekly","video":[{"title":"2012:E35 - Minecraft - Gardening Grief","description":"Gav and Geoff put on their gardening gloves and cause some irritation.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a551673-3beb-4a0f-8d23-8240383da95b/sm/ep5001.jpg","duration":90,"publication_date":"2012-06-06T18:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-27","changefreq":"weekly","video":[{"title":"2012:E23 - Halo HORSE #78","description":"This week Burnie and Miles step up to the plate in round 1 of the office Horse Tournament.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7ebc55b-194d-4ada-bc87-9637d9b1ef57/sm/ep5000.jpg","duration":547,"publication_date":"2012-06-06T18:27:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grossest-toilets","changefreq":"weekly","video":[{"title":"2012:E159 - Grossest Toilets","description":"Ray and Geoff countdown the most disgusting toilets in Xbox 360 games","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grossest-toilets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e302789c-5de1-468a-8640-158122a8ea3e/sm/ep4998.jpg","duration":239,"publication_date":"2012-06-06T15:51:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-wolverine","changefreq":"weekly","video":[{"title":"S1:E25 - A Look Back At: Wolverine","description":"Fragger and Ray take a look back at the excellent movie-based game X-Men Origins: Wolverine.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-wolverine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd6d27ea-1aa4-4e8f-b5ac-13bae9a63f5c/sm/ep4997.jpg","duration":374,"publication_date":"2012-06-06T15:13:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ubisoft-booth-walkthrough","changefreq":"weekly","video":[{"title":"2012:E158 - Ubisoft Booth Walkthrough","description":"Jack and Ali continue their domination of E3 2012 with a look at the Ubisoft booth. Beware of Assassins!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ubisoft-booth-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c3ae951-7f13-4280-8918-27330b35e0b5/sm/ep4996.jpg","duration":186,"publication_date":"2012-06-06T08:02:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ea-booth-walkthrough","changefreq":"weekly","video":[{"title":"2012:E157 - EA Booth Walkthrough","description":"Jack and Ali check out what the Electronic Arts booth has to offer at E3 2012! Join them and then get pumped for Dead Space 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ea-booth-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/367f03c2-116b-47ad-b089-3e8bbb2b2899/sm/ep4995.jpg","duration":145,"publication_date":"2012-06-06T07:18:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-20","changefreq":"weekly","video":[{"title":"2012:E7 - Trials Files #7","description":"Geoff and special guest Millie take a look at the map Trials SD #2 in the latest episode of Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ed03a2a-39bb-4267-9b47-26093bcaa1fa/sm/ep4994.jpg","duration":133,"publication_date":"2012-06-05T14:27:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-27","changefreq":"weekly","video":[{"title":"2012:E23 - Week #115","description":"Jack and Achievement Hunter's newest face, Ali, talk about this week's releases and get psyched for a week of E3 in Los Angeles!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8700233-d321-490d-98cf-1035ec83ee8e/sm/ep4993.jpg","duration":319,"publication_date":"2012-06-05T05:54:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-26","changefreq":"weekly","video":[{"title":"2012:E44 - Batman: Arkham City - Harley Quinn's Revenge DLC","description":"Geoff and Millie check out the Harley Quinn's Revenge DLC Batman: Arkham City. Acheev-me-ents have never been cuter.","player_loc":"https://roosterteeth.com/embed/this-is-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2494b92d-4105-414b-946f-865b85509153/sm/ep4992.jpg","duration":595,"publication_date":"2012-06-04T22:09:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-48","changefreq":"weekly","video":[{"title":"2012:E23 - Minecraft Part 3 - PLAN G","description":"Geoff, Gavin, Michael, Jack and Ray explore the newly completed achievement city.\nDon't press the button.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3172af7-c848-4213-90d3-a5815e8933d9/sm/ep4989.jpg","duration":1426,"publication_date":"2012-06-01T18:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mounted-combat","changefreq":"weekly","video":[{"title":"2012:E156 - Mounted Combat","description":"Geoff and Gavin take a look at the newly released 1.6 patch for Skyrim, which adds mounted combat.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mounted-combat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/796866dd-ecc4-419b-bb3f-2b4c799696cc/sm/ep4988.jpg","duration":110,"publication_date":"2012-06-01T16:19:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-27","changefreq":"weekly","video":[{"title":"2012:E22 - Volume 89","description":"Jack and Geoff are back with another batch of fails for you to enjoy! Let's all laugh together at the misfortune of others!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76052fd5-3fa4-46c9-ab90-667f2461812e/sm/ep4987.jpg","duration":200,"publication_date":"2012-06-01T15:25:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-stepping-stones","changefreq":"weekly","video":[{"title":"2012:E155 - Game Night: Halo Reach - Stepping Stones","description":"Caleb and Geoff show you the Halo Reach map, Stepping Stones in the latest Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-stepping-stones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b76b290-d25e-43e8-8907-b89162f02d4d/sm/ep4986.jpg","duration":104,"publication_date":"2012-06-01T14:54:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-40","changefreq":"weekly","video":[{"title":"2012:E49 - Demon Spawn Easter Egg Part 2","description":"Michael and Geoff show you where to find the second part of Demon Spawn Easter Egg in the Harley's Revenge DLC for Batman Arkham City.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11040040-40bd-416e-8be1-2667c45cb536/sm/ep4984.jpg","duration":65,"publication_date":"2012-05-31T23:19:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-7","changefreq":"weekly","video":[{"title":"2012:E5 - Trials HORSE #7","description":"In today's episode of Trials Evolution HORSE, Geoff and Ray face off in a series of maps that will warp your mind. Or they won't. Whatever.","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/993a62e9-1d08-4bd0-8da9-e47d1d33f6c5/sm/ep4983.jpg","duration":582,"publication_date":"2012-05-31T22:40:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-25","changefreq":"weekly","video":[{"title":"2012:E22 - Sonic the Hedgehog","description":"This week on Rage Quit, Michael feels the need for speed in Sonic the Hedgehog for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e55d06f-2928-46dc-adc1-1392374608bb/sm/ep4982.jpg","duration":202,"publication_date":"2012-05-31T22:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-22","changefreq":"weekly","video":[{"title":"2012:E22 - Halo HORSE #77","description":"In today's episode we have Gus and Lindsay face off in Round 1 of the Rooster Teeth office tournament. Will Gus finally break his streak of 0 wins Watch and find out!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a6f79d5-63f0-4783-a3e3-f56af5a0b2cf/sm/ep4981.jpg","duration":429,"publication_date":"2012-05-30T23:01:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-38","changefreq":"weekly","video":[{"title":"2012:E48 - Head Coach Obama Easter Egg","description":"Ray and Geoff show you how to get president Barack Obama as a head coach in NBA 2K12 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/316244a1-cea2-4c20-bc01-593f18c83f83/sm/ep4979.jpg","duration":94,"publication_date":"2012-05-30T19:38:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-retro-active-blood","changefreq":"weekly","video":[{"title":"2012:E154 - Retro Active: Blood","description":"Fragger takes a look a little further back than the typical ALBA, and remembers Blood, the gory FPS from yesteryear.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-retro-active-blood","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69cc954a-f7a5-46ee-a9ed-5f05caf1584b/sm/ep4977.jpg","duration":159,"publication_date":"2012-05-30T19:13:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-23","changefreq":"weekly","video":[{"title":"2012:E34 - Minecraft - Leaky Ceiling","description":"Geoff and Gav scheme once again. This time they test the \"Leaky Ceiling\" trick on Jack during a let's play! Be sure to watch this week's Let's Play when it comes out on Friday!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64d327dd-e816-4f15-98f0-ef06f84e5c13/sm/ep4976.jpg","duration":140,"publication_date":"2012-05-30T18:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-tips-for-surviving-elite-mode","changefreq":"weekly","video":[{"title":"2012:E153 - Ghost Recon: Future Soldier - Tips for Surviving Elite Mode","description":"maineiacs gives you some tips and tricks on how to survive Elite difficulty in order to unlock the \"Advanced Warfighter\" and \"Future Soldier\" achievements in TC's Ghost Recon Future Soldier.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghost-recon-future-soldier-tips-for-surviving-elite-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77d655a6-aa90-4780-a682-8fd456c97461/sm/2013912-1449772326516-maxresdefault.jpg","duration":176,"publication_date":"2012-05-30T18:33:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mortal-kombat-arcade-kollection-cant-we-all-just-get-along","changefreq":"weekly","video":[{"title":"2012:E152 - Mortal Kombat Arcade Kollection CAN'T WE ALL JUST GET ALONG?","description":"Joel (joeldiaz1995 on the site) shows you how to get the \"CAN'T WE ALL JUST GET ALONG\" Achievement in Mortal Kombat Arcade Kollection!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mortal-kombat-arcade-kollection-cant-we-all-just-get-along","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6241dd9d-5ec6-4795-8a05-e37866710e77/sm/2013912-1449772290418-maxresdefault_(19).jpg","duration":85,"publication_date":"2012-05-30T18:18:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-34","changefreq":"weekly","video":[{"title":"2012:E46 - Getaway Easter Egg","description":"Geoff and Ray show you where to find the hidden Teddy Bear on the Getaway DLC map in Call of Duty: Modern Warfare 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c2ed43f-bbbc-4ff1-84df-c19a007f0ab8/sm/ep4968.jpg","duration":62,"publication_date":"2012-05-30T16:15:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-the-hedgehog-4-episode-ii-red-rings-final-two-zones","changefreq":"weekly","video":[{"title":"2012:E151 - Sonic the Hedgehog 4: Episode II - Red Rings Final Two Zones","description":"Mike and Michael show you where to find the last of the red rings in Sonic the Hedgehog 4: Episode II!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-the-hedgehog-4-episode-ii-red-rings-final-two-zones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16053c70-c12c-44fa-bcf6-0bb3f57bad50/sm/2013912-1449772258885-maxresdefault_(18).jpg","duration":156,"publication_date":"2012-05-29T20:05:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-15","changefreq":"weekly","video":[{"title":"2012:E6 - Trials Files #6","description":"Geoff and Jack take a look at another innovative and awesome community-made map in Trials Evolution.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7601da3-0b8e-4943-9831-43a2388dd25b/sm/ep4965.jpg","duration":200,"publication_date":"2012-05-29T16:21:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-leader-of-the-pack-tips","changefreq":"weekly","video":[{"title":"2012:E150 - Minecraft - Leader of the Pack Tips","description":"Steevinator shares a few tips to help gamers find the uncommon wolves in Minecraft and gain the Leader of the Pack achievement in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-leader-of-the-pack-tips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b323ed9c-8efd-4fcc-bbd7-67ef60bc1143/sm/2013912-1449772235227-maxresdefault_(17).jpg","duration":112,"publication_date":"2012-05-28T19:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-19","changefreq":"weekly","video":[{"title":"2012:E22 - Week #114","description":"Jack and Geoff bring you a Memorial Day's worth of gaming news and information! Don't forget to catch Red vs. Blue premiering tonight at http://www.roosterteeth.com/ and buy your tickets for RTX at http://www.rtxevent.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46e625d2-44d0-49c1-95a5-109f7e8b01ee/sm/ep4961.jpg","duration":291,"publication_date":"2012-05-28T17:37:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-16","changefreq":"weekly","video":[{"title":"2012:E1297 - Three Achievements","description":"Geoff and Michael show you how to get the \"So Much For Being Subtle\" \"The Only Choice Given\", and \"Along For The Ride\" Achievements in Max Payne 3. And yes, Geoff totally misspelled \"being\".","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/371f2d37-c525-45cb-8343-bd7423da0446/sm/ep4960.jpg","duration":137,"publication_date":"2012-05-28T15:30:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-37","changefreq":"weekly","video":[{"title":"2012:E22 - Max Payne 3","description":"Put on your slow-mo shoes, because you are about to watch Geoff, Michael, Ray and Gavin play some Max Payne 3 multiplayer. May contain confusion and yelling.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c3447c0-4053-4ad3-a502-4540bd78f21e/sm/ep4959.jpg","duration":945,"publication_date":"2012-05-26T23:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-3-ice-cream-man","changefreq":"weekly","video":[{"title":"2012:E149 - Game Night: Halo 3 - Ice Cream Man","description":"Caleb and Geoff take a look at the old favorite gametype in Halo 3, Ice Cream Man.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-3-ice-cream-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34672322-de05-42fb-ba8a-b5bb8e37edf4/sm/ep4958.jpg","duration":152,"publication_date":"2012-05-25T19:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-18","changefreq":"weekly","video":[{"title":"2012:E21 - Volume 88","description":"Jack and Geoff are back with the 88th episode of Fails of the Weak. Where they are going, they don't need roads...or success.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b41c5ea2-4ef8-4c7a-892c-7934e8a16087/sm/ep4947.jpg","duration":203,"publication_date":"2012-05-25T14:42:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-6","changefreq":"weekly","video":[{"title":"2012:E4 - Trials HORSE #6","description":"Jack and Gavin face off in this week's episode of Trials PIG. Who will take their bike to victory and fame","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/471a759b-7c78-4f8f-89dd-6e4c4e67362a/sm/ep4946.jpg","duration":339,"publication_date":"2012-05-24T22:12:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-16","changefreq":"weekly","video":[{"title":"2012:E21 - Alex Kidd in Miracle World","description":"This week on Rage Quit, Michael plays the Sega classic Alex Kidd in Miracle World available in the Sega Vintage Collection: Alex Kidd & Co. for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0625a12b-44a7-4f6f-959c-00e7decea2b0/sm/ep4945.jpg","duration":212,"publication_date":"2012-05-24T22:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-64","changefreq":"weekly","video":[{"title":"2012:E33 - Oblivion - Paintbrush Staircase Glitch","description":"CFHhateph34r shows you the really cool paintbrush glitch, which you can use to set the record for fastest playthrough!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5c192ed-f45c-4015-b785-eaede463221c/sm/2013912-1449772213318-maxresdefault_(16).jpg","duration":135,"publication_date":"2012-05-24T16:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-27","changefreq":"weekly","video":[{"title":"2012:E45 - LOST Easter Egg","description":"Geoff and Jack show you the LOST easter egg on the multiplayer map, Pipeline, in Ghost Recon: Future Soldier.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55ce0be6-5169-4d9b-a96e-736d5fb08a84/sm/ep4941.jpg","duration":48,"publication_date":"2012-05-24T15:49:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-item-duplication-glitch-for-xbox-360","changefreq":"weekly","video":[{"title":"2012:E148 - Minecraft - Item Duplication Glitch for Xbox 360","description":"BioHRay shows you a way to duplicate items in the Xbox 360 version of Minecraft. Makes for a good quasi creative mode and a 60 Foot Golden Penis.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-item-duplication-glitch-for-xbox-360","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ab547a3-8194-4c27-a203-5ca4dd323a4a/sm/2013912-1449772176374-maxresdefault_(15).jpg","duration":179,"publication_date":"2012-05-24T15:46:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ben-10-galactic-racing-omni-trickster","changefreq":"weekly","video":[{"title":"2012:E147 - Ben 10: Galactic Racing - Omni-Trickster","description":"In this video Chad shows you how to get the Omni-Trickster Achievement in Ben 10: Galactic Racing.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ben-10-galactic-racing-omni-trickster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdb3f7e9-b251-464f-b2ff-14517d156456/sm/2013912-1449772153354-maxresdefault_(14).jpg","duration":87,"publication_date":"2012-05-24T15:35:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ben-10-galactic-racing-kineceleration","changefreq":"weekly","video":[{"title":"2012:E146 - Ben 10: Galactic Racing - Kineceleration","description":"In this video Chad shows you how to get the Kineceleration Achievement in Ben 10: Galactic Racing.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ben-10-galactic-racing-kineceleration","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d4f5668-fa74-4dd6-a0ab-aa4a5ccccb24/sm/2013912-1449772120998-maxresdefault_(13).jpg","duration":69,"publication_date":"2012-05-24T15:32:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-portal-2-colours","changefreq":"weekly","video":[{"title":"2012:E145 - Mod Spotlight... Portal 2 - Colours","description":"CFHhateph34r and Emphara show you the Colours mod for Portal 2 by ianboswell. Download link:\r\nhttp://www.moddb.com/mods/colours","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-portal-2-colours","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f302f068-5681-4543-b0ad-279f4bfc62ed/sm/2013912-1449772087475-maxresdefault_(12).jpg","duration":144,"publication_date":"2012-05-24T15:25:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-the-hedgehog-4-episode-ii-red-rings-oil-desert-zone","changefreq":"weekly","video":[{"title":"2012:E144 - Sonic the Hedgehog 4: Episode II - Red Rings Oil Desert Zone","description":"Mike and Michael show you where to find all the red rings in Oil Desert Zone!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-the-hedgehog-4-episode-ii-red-rings-oil-desert-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31a4e3bd-e980-4b7c-9568-56556f2dca71/sm/2013912-1449772065706-maxresdefault_(11).jpg","duration":119,"publication_date":"2012-05-24T06:36:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-13","changefreq":"weekly","video":[{"title":"2012:E21 - Halo HORSE #76","description":"The HORSE 2012 Tournament continues with Geoff from the Achievement Hunter crew versus Brian from the art team! Who will win PLACE YOUR BETS NOW!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80a77de8-da7b-43a7-b202-38a5c5dc63c5/sm/ep4933.jpg","duration":580,"publication_date":"2012-05-23T22:38:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-23","changefreq":"weekly","video":[{"title":"2012:E43 - Piano Easter Egg","description":"Michael and Ray show you how to find the Piano Easter Egg in Max Payne 3 for the Xbox 360. \r\n\r\nAhh, those were the good old days!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4394d41-2ccb-4cd3-8e19-d70f1ae81f95/sm/ep4932.jpg","duration":160,"publication_date":"2012-05-23T22:30:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-13-14-collectibles","changefreq":"weekly","video":[{"title":"2012:E143 - Chapter 13 - 14 Collectibles","description":"Ray and Michael show you where to find all the collectibles in Chapter 13 & 14 in Max Payne 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-13-14-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5385548c-aaf5-4f39-9589-e5eea23691fe/sm/ep4930.jpg","duration":310,"publication_date":"2012-05-23T22:03:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-max-payne-3-its-fear-that-gives-men-wings","changefreq":"weekly","video":[{"title":"2012:E142 - Max Payne 3: It's Fear That Gives Men Wings","description":"maineiacs shows you how to easily obtain the \"It's Fear That Gives Men Wings\" achievement in Max Payne 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-max-payne-3-its-fear-that-gives-men-wings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e44cc71-6e60-498e-afef-5b5f607d0ddb/sm/2013912-1449772030575-maxresdefault_(10).jpg","duration":129,"publication_date":"2012-05-23T18:04:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-colder-than-the-devils-heart-and-trouble-had-come-to-me","changefreq":"weekly","video":[{"title":"2012:E141 - Colder Than The Devil's Heart & Trouble Had Come To Me","description":"Backadd (Backadded on the site) shows you how to get the Colder Than The Devil's Heart & Trouble Had Come To Me achievements in Max Payne 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-colder-than-the-devils-heart-and-trouble-had-come-to-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/346ee920-6cb9-470c-902f-af89c38ee24f/sm/2013912-1449772007211-maxresdefault_(9).jpg","duration":159,"publication_date":"2012-05-23T18:00:49.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-diablo-3-last-stand-of-the-ancients-guide","changefreq":"weekly","video":[{"title":"2012:E1278 - Diablo 3 - Last Stand of the Ancients Guide","description":"Money and Partee show you how to get the Last Stand of the Ancients achievement in Diablo 3 while remembering bad nightmares.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-diablo-3-last-stand-of-the-ancients-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":86,"publication_date":"2012-05-23T16:18:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-63","changefreq":"weekly","video":[{"title":"2012:E32 - Borderlands: It's like Christmas, forever!","description":"CFHhateph34r and Emphara show you how to loot the armory an infinite amount of times!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7aa92e12-c5b1-40db-a7d9-2e26877fbc76/sm/2013912-1449771960304-maxresdefault_(8).jpg","duration":163,"publication_date":"2012-05-23T16:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-diamond-glitch","changefreq":"weekly","video":[{"title":"2012:E140 - Minecraft - Diamond Glitch","description":"Jonny shows you an easy way to get gold and diamonds in minecraft","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-diamond-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":71,"publication_date":"2012-05-23T16:09:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-62","changefreq":"weekly","video":[{"title":"2012:E31 - Battlefield 3 - Blow Things into The Sky!","description":"Jayzmcd, with the editing help of TheBlarger, shows you a fun way to kill time in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbde5472-9853-4024-bd46-817cd3b80141/sm/2013912-1449771918259-maxresdefault_(7).jpg","duration":81,"publication_date":"2012-05-23T15:59:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-8","changefreq":"weekly","video":[{"title":"2012:E5 - Trials Files #4","description":"Geoff and Jack take a ride on Rainbow Road. Watch out for the blue shell!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d6ea312-069e-4cfc-b652-d8f2e489678a/sm/ep4916.jpg","duration":94,"publication_date":"2012-05-23T15:45:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-11","changefreq":"weekly","video":[{"title":"2012:E30 - Minecraft - Homewrecker","description":"Gavin shows Geoff how to be an insufferable prick in Minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/749e88e9-fc0b-4ba2-893b-27d042ae21a0/sm/ep4915.jpg","duration":123,"publication_date":"2012-05-23T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-9-12-collectibles","changefreq":"weekly","video":[{"title":"2012:E139 - Chapter 9 - 12 Collectibles","description":"Ray, Michael, and Gavin show you where to find all the collectibles in Chapter 9 through 12 in Max Payne 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-9-12-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e291e84-a245-42cd-98ce-85b2e0fdab40/sm/ep4913.jpg","duration":475,"publication_date":"2012-05-22T23:30:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-7","changefreq":"weekly","video":[{"title":"2012:E43 - Ghost Recon: Future Soldier","description":"Geoff and Ray check out the newest addition to Ghost Recon. Watch them as they check out some achievements in Future Soldier!","player_loc":"https://roosterteeth.com/embed/this-is-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/695121e6-94be-43ae-9560-fea1c44e4e78/sm/ep4912.jpg","duration":368,"publication_date":"2012-05-22T21:42:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-ghost-recon-advanced-warfighter-2","changefreq":"weekly","video":[{"title":"S1:E24 - A Look Back At: Ghost Recon Advanced Warfighter 2","description":"Fragger and Geoff take a stroll down memory lane, and dig up the excellent Ubisoft shooter, Ghost Recon Advanced Warfighter 2.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-ghost-recon-advanced-warfighter-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d9141ff-9521-4206-82e8-6b65debfd311/sm/ep4911.jpg","duration":379,"publication_date":"2012-05-22T20:18:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-7","changefreq":"weekly","video":[{"title":"2012:E4 - Trials Files #5","description":"Geoff and Jack take a look at the Dragon Rider map in episode 5 of Trials Files.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fa80409-7205-4cb5-a13a-3ee85b79eecd/sm/ep4910.jpg","duration":172,"publication_date":"2012-05-22T16:29:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-9","changefreq":"weekly","video":[{"title":"2012:E21 - Week #113","description":"Jack and Gavin delivers you a heaping helping of delicious gaming news this week. While Geoff is out, the kids will play! Don't forget to buy your RTX tickets at http://www.rtxevent.com","player_loc":"https://roosterteeth.com/embed/ahwu-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5015b51-f918-48ca-b233-205f986d810d/sm/ep4909.jpg","duration":234,"publication_date":"2012-05-21T18:17:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-red-star-rings-found-white-park-zone","changefreq":"weekly","video":[{"title":"2012:E138 - All Red Star Rings Found! - White Park Zone","description":"Mike and Michael show you where to find all the red rings in White Park Zone!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-red-star-rings-found-white-park-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a01a9243-805d-41d2-9f4c-5f30f5117511/sm/2013912-1449771895320-maxresdefault_(6).jpg","duration":121,"publication_date":"2012-05-21T18:00:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-5-8-collectibles","changefreq":"weekly","video":[{"title":"2012:E137 - Chapter 5 - 8 Collectibles","description":"Ray and Michael show you where to find all the collectibles in Chapter 5 through 8 in Max Payne 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-5-8-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c429bc5-bb16-4848-abe8-cfa88f1ab4e1/sm/ep4907.jpg","duration":505,"publication_date":"2012-05-21T16:39:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-red-star-rings-found-sylvania-castle-zone","changefreq":"weekly","video":[{"title":"2012:E136 - All Red Star Rings Found! - Sylvania Castle Zone","description":"Mike and Michael take a gander into the the latest Sonic game and find all the red rings in Sylvania Castle Zone!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-red-star-rings-found-sylvania-castle-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1178b6d8-ed17-40dc-b023-4a7f092fe31d/sm/2013912-1449771863078-maxresdefault_(5).jpg","duration":156,"publication_date":"2012-05-19T09:01:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-17","changefreq":"weekly","video":[{"title":"2012:E21 - Minecraft Part 2","description":"Join the Achievement Hunter lads (Geoff, Jack, Michael, Gav, Ray and Joel) as they team up to try and get the On a Rail achievement. Watch your ears... shit gets loud.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9863866a-ea17-40ad-834b-0bf8f85bceea/sm/ep4905.jpg","duration":1751,"publication_date":"2012-05-18T23:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-3-garbage-man","changefreq":"weekly","video":[{"title":"2012:E135 - Game Night: Halo 3 - Garbage Man","description":"Caleb and Geoff play Garbage Man from Halo 3 in the latest edition of Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-3-garbage-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71df5d4d-1483-4043-b054-4a4d6160835a/sm/ep4904.jpg","duration":119,"publication_date":"2012-05-18T21:17:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-10","changefreq":"weekly","video":[{"title":"2012:E20 - Volume 87","description":"Jack and Geoff look at a compiled list of incredible fails and bloopers from Halo: Reach. Enjoy their laughter!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef722651-e6da-462d-858d-cd5cc87c56fb/sm/ep4902.jpg","duration":210,"publication_date":"2012-05-18T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-1-4-collectibles","changefreq":"weekly","video":[{"title":"2012:E134 - Chapter 1 - 4 Collectibles","description":"Ray and Geoff show you where to find all the collectibles in Chapter 1 through 4 in Max Payne 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-1-4-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9dd0aff-3042-450a-8f36-7745317eac63/sm/ep4900.jpg","duration":592,"publication_date":"2012-05-18T17:06:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-8","changefreq":"weekly","video":[{"title":"2012:E20 - No Luca No","description":"This week on Rage Quit, Michael attempts to thwart off an evil feline who's hell bent on stealing his treasured bowl of cereal. \n\nLuca should know that breakfast is the most important meal of the day. Silly Luca!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f53d75bd-441f-4af6-97f5-fbcb06df2272/sm/ep4896.jpg","duration":150,"publication_date":"2012-05-18T01:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-5","changefreq":"weekly","video":[{"title":"2012:E3 - Trials HORSE #5","description":"Ray and Michael go bike-to-bike in Trials Evolution. Who will be the dominator and who will be the dominatee","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/919863b3-c3ba-4368-8be0-c8cca9f5e601/sm/ep4895.jpg","duration":298,"publication_date":"2012-05-17T21:50:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-unlock-the-minecraft-xbox-360-dashboard-theme","changefreq":"weekly","video":[{"title":"2012:E133 - How to Unlock the Minecraft Xbox 360 Dashboard Theme","description":"Gav and Geoff show you how to unlock a neat Minecraft dashboard theme.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-unlock-the-minecraft-xbox-360-dashboard-theme","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ddf95031-5302-4a77-8928-8736f513c617/sm/ep4894.jpg","duration":66,"publication_date":"2012-05-17T20:06:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sniper-elite-v2-hide-and-hope-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1272 - Sniper Elite V2 - Hide and Hope Achievement Guide","description":"Pherby teams up with a friend to show you how to get the \"Hide and Hope\" Achievement in Sniper Elite V2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sniper-elite-v2-hide-and-hope-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":63,"publication_date":"2012-05-17T16:17:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-not-a-scratch-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1271 - Not A Scratch Achievement Guide","description":"Ray and Geoff show you to get the \"Not A Scratch\" achievement in the new DLC for Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-not-a-scratch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1634bee1-8183-467c-9949-d05df0c94c48/sm/ep4892.jpg","duration":260,"publication_date":"2012-05-17T16:17:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-max-payne-3-the-only-choice-given-and-trouble-had-come-to-me","changefreq":"weekly","video":[{"title":"2012:E132 - Max Payne 3 - The Only Choice Given & Trouble Had Come To Me","description":"maineiacs shows you how to get two achievements in Max Payne 3. \"The Only Choice Given\" and \"Trouble Had Come To Me.\"\r\nSorry about the narration, I woke up this morning and ever since I have been losing my voice.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-max-payne-3-the-only-choice-given-and-trouble-had-come-to-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c20f226c-d766-41b8-a113-ac130105eb37/sm/2013912-1449771838415-maxresdefault_(4).jpg","duration":161,"publication_date":"2012-05-17T14:30:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-max-payne-3-you-push-a-man-too-far-and-the-road-kill-behind","changefreq":"weekly","video":[{"title":"2012:E131 - Max Payne 3 - You Push A Man Too Far & The Road-Kill Behind","description":"***Ending Spoiler Alert*** maineiacs shows you how to get two achievements in Max Payne 3. \"You Push A Man Too Far\" (one of the two secret achievements and \"The Road-Kill Behind Me.\"\r\nSorry about the narration, I woke up this morning and ever since","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-max-payne-3-you-push-a-man-too-far-and-the-road-kill-behind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/898f578c-b8f0-4f13-9668-29e4c106f12f/sm/2013912-1449771817633-maxresdefault_(3).jpg","duration":132,"publication_date":"2012-05-17T14:26:49.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-max-payne-3-along-for-the-ride-and-it-was-chaos-and-luck","changefreq":"weekly","video":[{"title":"2012:E130 - Max Payne 3 - Along For The Ride & It Was Chaos And Luck","description":"***Somewhat Spoiler Alert*** maineiacs shows you how to get two achievements in Max Payne 3. \"Along For The Ride\" and \"It Was Chaos And Luck.\"\r\nSorry about the narration, I woke up this morning and ever since I have been losing my voice.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-max-payne-3-along-for-the-ride-and-it-was-chaos-and-luck","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0928b84-4d36-412c-a0a0-6393c14ba892/sm/2013912-1449771795531-maxresdefault_(2).jpg","duration":124,"publication_date":"2012-05-17T14:21:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-max-payne-3-amidst-the-wreckage-and-sometimes-you-get-lucky","changefreq":"weekly","video":[{"title":"2012:E129 - Max Payne 3 - Amidst The Wreckage & Sometimes You Get Lucky","description":"***Somewhat Spoiler Aler*** maineiacs shows you how to get two achievements in Max Payne 3. \"Amidst The Wreckage\" and \"Sometimes You Get Lucky\"\r\nSorry about the narration, I woke up this morning and ever since I have been losing my voice.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-max-payne-3-amidst-the-wreckage-and-sometimes-you-get-lucky","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3f0ad49-8a38-4cf9-91d0-258138c5ba0f/sm/2013912-1449771774441-maxresdefault_(1).jpg","duration":125,"publication_date":"2012-05-17T14:16:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-4","changefreq":"weekly","video":[{"title":"2012:E20 - Halo HORSE #75","description":"Adam and Joel take their turn at the first round of the Halo HORSE Tournament of 2012! Who will win in this battle between Caboose and Technology","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0100816a-6ff8-443c-bc9d-a6bff11172df/sm/ep4884.jpg","duration":480,"publication_date":"2012-05-16T20:58:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-joel-and-jac-kara-play-dead-space","changefreq":"weekly","video":[{"title":"2012:E128 - Joel and Jac...KARA play Dead Space","description":"Jack refused to play any more games with Joel, so he brings in Kara to help kill some Necromorphs in Dead Space!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-joel-and-jac-kara-play-dead-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42534faf-90e9-4b28-bb43-295bf486956d/sm/ep4883.jpg","duration":354,"publication_date":"2012-05-16T20:32:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-5","changefreq":"weekly","video":[{"title":"2012:E29 - Minecraft - Landmines","description":"Gav shows geoff how to be a prick with pressure plates in minecraft.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06f52196-1476-4cfd-abf8-d36cb3de12a4/sm/ep4882.jpg","duration":789,"publication_date":"2012-05-16T19:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-8","changefreq":"weekly","video":[{"title":"2012:E42 - Penguin Easter Egg","description":"Ray and Michael show us where to find the Penguin Easter Egg in the multiplayer map \"Aground\" in the new DLC for Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e673271-84f3-4b11-bd37-036b6e930dbb/sm/ep4881.jpg","duration":72,"publication_date":"2012-05-16T16:46:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-sonic-the-hedgehog-series","changefreq":"weekly","video":[{"title":"2012:E127 - The Five: Sonic The Hedgehog Series","description":"SpecOps614 here, with 5 fun facts about Sonic the Hedgehog!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-sonic-the-hedgehog-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89d909a6-6213-44be-8ee9-b7ce87b43930/sm/2013912-1449771753857-maxresdefault.jpg","duration":217,"publication_date":"2012-05-16T14:36:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fifa-street-ultimate-humiliation-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1265 - Fifa Street - Ultimate Humiliation Achievement Guide","description":"An easy, painless way to get the Ultimate Humiliation achievement in Fifa Street. Unless you're brazilian.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fifa-street-ultimate-humiliation-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":75,"publication_date":"2012-05-16T14:30:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-61","changefreq":"weekly","video":[{"title":"2012:E28 - Minecraft... Community Building","description":"apocolyptictodd shows you community building in Minecraft","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":146,"publication_date":"2012-05-16T01:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-60","changefreq":"weekly","video":[{"title":"2012:E42 - Max Payne 3","description":"Michael and Gavin check out the newest game from Rockstar, Max Payne 3. Will Gavin be a payne in Michael's ass Watch and find out!","player_loc":"https://roosterteeth.com/embed/this-is-2012-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d1e2115-d722-4a66-82f7-63ee88fe28a8/sm/ep4855.jpg","duration":511,"publication_date":"2012-05-16T00:17:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-tower-defense-mod","changefreq":"weekly","video":[{"title":"2012:E126 - Skyrim Tower Defense Mod!","description":"Geoff, Gavin and Ryan take a look at the new tower defense mod for Skyrim! You can download the mod here: http://steamcommunity.com/sharedfiles/filedetails/id=66815996","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-tower-defense-mod","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc79ffbc-088f-45b3-a837-bac717301c98/sm/ep4854.jpg","duration":196,"publication_date":"2012-05-15T22:39:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-out-the-window-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1247 - Out The Window Achievement Guide","description":"Michael and Gavin show you how to get the \"Out The Window\" achievement in Max Payne 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-out-the-window-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2499084-0484-4b34-806b-0aefd22bd406/sm/ep4853.jpg","duration":84,"publication_date":"2012-05-15T20:00:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-helipocalypse-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1246 - Helipocalypse Achievement Guide","description":"Ray and Geoff show you to get the \"Helipocalypse\" achievement in the new DLC for Call of Duty: Modern Warfare 3","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-helipocalypse-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e568f54-85fa-469f-a941-dc8248cd073a/sm/ep4852.jpg","duration":93,"publication_date":"2012-05-15T19:48:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-condemned-2-bloodshot","changefreq":"weekly","video":[{"title":"S1:E23 - A Look Back At: Condemned 2 - Bloodshot","description":"Fragger and Ray take a look back at Condemned 2: Bloodshot.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-condemned-2-bloodshot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b29dbce-01e1-49b5-9fb8-e5f6495e09be/sm/ep4851.jpg","duration":461,"publication_date":"2012-05-15T18:34:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-when-pigs-fly-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1245 - When Pigs Fly Achievement Guide","description":"Geoff and Ray show you how to get the When Pigs Fly Achievement in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-when-pigs-fly-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc5aa818-fe5d-4e49-b528-6cd377bfdcb1/sm/ep4850.jpg","duration":181,"publication_date":"2012-05-15T15:20:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-marshalls-tips","changefreq":"weekly","video":[{"title":"2012:E125 - Marshall's Tips","description":"Video gamer extraordinaire Marshall shows you how to complete the first stage of Donkey Kong with precision. Watch and learn from a master.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-marshalls-tips","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25015f73-7dfe-47c9-8496-79313257f1af/sm/ep4849.jpg","duration":52,"publication_date":"2012-05-14T21:15:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-50","changefreq":"weekly","video":[{"title":"2012:E20 - Week #112","description":"Jack and Geoff are here to deliver you wonderful news in the gaming world! Did you know Diablo III is coming out I did too! Woo!!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53499e0f-340b-4560-a589-301e73ad8628/sm/ep4848.jpg","duration":321,"publication_date":"2012-05-14T18:50:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-leader-of-the-pack-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1244 - Leader of the Pack Achievement Guide","description":"Geoff and Ray show you how to get the Leader of the Pack Achievement in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-leader-of-the-pack-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4be2b1e-06b9-4ef8-b926-77d74bec7c30/sm/ep4847.jpg","duration":81,"publication_date":"2012-05-14T16:56:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-87","changefreq":"weekly","video":[{"title":"2012:E20 - Minecraft","description":"The achievement hunter lads hop into Minecraft Xbox 360 edition for the first time. Everyone except Gav was playing this for the first time ever. \nBe sure to stay until the end for the thrilling conclusion to their first adventure!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-87","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e3c036e-0944-4044-b2c5-534cd8fe8158/sm/ep4846.jpg","duration":1384,"publication_date":"2012-05-12T03:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-50","changefreq":"weekly","video":[{"title":"2012:E19 - Volume 86","description":"Jack and Geoff make it all the way to 86! Enjoy this week's awesome Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c8d0d5a-d84e-4977-958a-7d7b57f9dac7/sm/ep4845.jpg","duration":256,"publication_date":"2012-05-11T17:21:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-75","changefreq":"weekly","video":[{"title":"2012:E40 - Suicide Dude Easter Egg","description":"Michael and Geoff show you the Suicide Dude Easter Egg in Prototype 2 for the Xbox 360. \r\n\r\nIt's to DIE for! Get it!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-75","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66f8c739-bf70-45f6-81b2-f0fc77f43339/sm/ep4844.jpg","duration":91,"publication_date":"2012-05-11T16:41:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-3-baddies-sneak-up","changefreq":"weekly","video":[{"title":"2012:E124 - Game Night: Halo 3 - Baddies Sneak Up","description":"Caleb and Geoff go back in time a bit and take Halo 3's \"Baddies Sneak Up\" for a spin the latest Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-3-baddies-sneak-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e901cd-0ceb-4779-82c7-87012993c350/sm/ep4843.jpg","duration":118,"publication_date":"2012-05-11T14:33:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-4","changefreq":"weekly","video":[{"title":"2012:E2 - Trials HORSE #4","description":"Gavin and Geoff face off in a game of HORSE in Trials Evolution. Who can make it over those pipes","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96ab79db-e9cf-463e-8193-3e80f1eae05a/sm/ep4842.jpg","duration":289,"publication_date":"2012-05-10T21:43:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-73","changefreq":"weekly","video":[{"title":"2012:E39 - 10 of the Best Portal Easter Eggs","description":"Geoff and Gav show you some of the best Xbox 360 games that have paid homage to the brilliant Portal Games.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d9dc73a-a03f-48ad-b8f1-2ae1dc536067/sm/ep4840.jpg","duration":184,"publication_date":"2012-05-10T21:32:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-48","changefreq":"weekly","video":[{"title":"2012:E19 - Minecraft","description":"This week on Rage Quit, Michael is joined by the always vivacious Gavin as they attempt to build a home (and life) together in Minecraft for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea7f442b-4d53-4960-9726-1ee647f15ecc/sm/ep4839.jpg","duration":219,"publication_date":"2012-05-10T20:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-60","changefreq":"weekly","video":[{"title":"2012:E27 - Skyrim - That's some nice stuff....","description":"CFHhateph34r tells you how to show your favorite NPCs you care about the tidiness of their houses/shops/castles!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61dfe6fb-7b6e-4127-a692-43251dd8d00b/sm/2013912-1449771647954-maxresdefault_(20).jpg","duration":107,"publication_date":"2012-05-10T17:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-into-the-nether","changefreq":"weekly","video":[{"title":"2012:E123 - Into The Nether","description":"Ray and Geoff show you how to get \"Into The Nether\" achievement in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-into-the-nether","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c47dde9b-eb6b-4757-94fa-aa9589f11650/sm/ep4836.jpg","duration":208,"publication_date":"2012-05-10T16:10:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-46","changefreq":"weekly","video":[{"title":"2012:E19 - Halo HORSE #74","description":"Round 1 of the Halo: Reach HORSE Tournament 2012 begins with Gavin and Barbara squaring off in Halo: Reach! Who will win The Canadian or the Idiot","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b5e8001-9e00-4850-8071-4b7367541b47/sm/ep4835.jpg","duration":511,"publication_date":"2012-05-09T22:41:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-55","changefreq":"weekly","video":[{"title":"2012:E41 - Spec Ops: The Line","description":"Gav and Geoff play Spec Ops: The Line. You can fire guns in it.","player_loc":"https://roosterteeth.com/embed/this-is-2012-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e4637a5-b0a1-4bc5-8f5c-c3ec02784d36/sm/ep4834.jpg","duration":131,"publication_date":"2012-05-09T20:35:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-54","changefreq":"weekly","video":[{"title":"2012:E40 - Minecraft","description":"Ray and Gavin take a look at the newly released version of Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56a92fdf-c0ff-4644-a0a9-082170c06bab/sm/ep4833.jpg","duration":401,"publication_date":"2012-05-09T19:45:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-gta-iv-carmageddon","changefreq":"weekly","video":[{"title":"2012:E122 - Mod Spotlight... GTA IV - Carmageddon!","description":"CFHhateph34r show you the carmageddon mod for GTA IV. Come for the fun, stay for the flying cars!\r\nHere's the guide for how to do this, please join our group too: http://achievementhunter.com/groups/forum/viewTopic.phpid=26536","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-gta-iv-carmageddon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccfdc9ba-a3e1-4943-ace6-e58ec50983e1/sm/2013912-1449771624324-maxresdefault_(19).jpg","duration":148,"publication_date":"2012-05-09T17:35:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-49","changefreq":"weekly","video":[{"title":"2012:E26 - Skyrim - Pissing off the Preacher","description":"Gav and Geoff show you multiples ways to get own back on the annoying preacher dude in Skyrim.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee0fb690-eb4d-488f-9fae-c0531fa927c0/sm/ep4829.jpg","duration":102,"publication_date":"2012-05-09T15:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-lie","changefreq":"weekly","video":[{"title":"2012:E121 - The Lie","description":"Ray and Gavin show you how to get \"The Lie\" achievement in Minecraft for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-lie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f3fb2ad-7b7f-4289-a589-4528b1b09d79/sm/ep4827.jpg","duration":310,"publication_date":"2012-05-09T14:55:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-follow-your-nose-part-three-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1236 - Follow Your Nose Part Three Achievement Guide","description":"Michael and Ray show you where to find the third and final set of collectibles for the \"Follow Your Nose\" achievement in Prototype 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-follow-your-nose-part-three-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37a013e4-457c-4a5f-8786-087ded0543c0/sm/ep4822.jpg","duration":223,"publication_date":"2012-05-08T21:28:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rt-noire","changefreq":"weekly","video":[{"title":"2012:E120 - RT Noire","description":"Joel uncovers a dark conspiracy of lies revealing a chain of deception that leads to the high levels of our government. Also, Jack smells.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rt-noire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aac0bfd1-45d4-4219-ade0-352f7ea69879/sm/ep4821.jpg","duration":142,"publication_date":"2012-05-08T20:44:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dinosaurs","changefreq":"weekly","video":[{"title":"2012:E119 - Dinosaurs!","description":"Geoff and Gavin take a look at the incredible Velociraptors PC mod (by Splinks) for Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dinosaurs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53b46d17-dde3-4e90-9dab-17d6afd93359/sm/ep4820.jpg","duration":115,"publication_date":"2012-05-08T20:33:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-31","changefreq":"weekly","video":[{"title":"2012:E3 - Trials Evolution - Trials Files #3","description":"Geoff and Jack take a ride through Pandora. Just like that blue dude did in Avatar.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d11933a-b6b8-4992-94f4-4d96b130038c/sm/ep4819.jpg","duration":106,"publication_date":"2012-05-08T19:48:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-dark-sector","changefreq":"weekly","video":[{"title":"S1:E22 - A Look Back At: Dark Sector","description":"Fragger and Ray take a look back at Dark Sector for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-dark-sector","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ce00c9a-a6d2-44cf-b1bc-d75f2c91bbcd/sm/ep4818.jpg","duration":484,"publication_date":"2012-05-08T18:57:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-lone-warrior","changefreq":"weekly","video":[{"title":"2012:E118 - Dragon Ball Raging Blast 2 - Lone Warrior","description":"In this video kpchadr08 shows you how to get the \"Lone Warrior\" achievement in Dragon Ball Raging Blast 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-lone-warrior","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10899586-f500-48ba-9ab9-deb3b44057de/sm/2013912-1449771601199-maxresdefault_(18).jpg","duration":137,"publication_date":"2012-05-08T05:03:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-end-of-everything","changefreq":"weekly","video":[{"title":"2012:E117 - Dragon Ball Raging Blast 2 - End of Everything","description":"In this video kpchadr08 shows you how to get the \"End Of Everything\" achievement in Dragon Ball Raging Blast 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-end-of-everything","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/962f8784-9698-4838-9e10-aeaa6c244ccb/sm/2013912-1449771578151-maxresdefault_(17).jpg","duration":117,"publication_date":"2012-05-08T04:58:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-3-odst-siege-of-madrigaldancing-martin-odonnell-spot","changefreq":"weekly","video":[{"title":"2012:E116 - Halo 3: ODST Siege of Madrigal/Dancing Martin O'Donnell Spot","description":"Nick and his buddies show you how to find the Halo 3: ODST Siege of Madrigal location","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-3-odst-siege-of-madrigaldancing-martin-odonnell-spot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b052400d-b031-41c0-af73-d9eb28fd5e61/sm/2013912-1449771545785-maxresdefault_(16).jpg","duration":116,"publication_date":"2012-05-08T04:54:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-47","changefreq":"weekly","video":[{"title":"2012:E38 - Fable Heroes","description":"Geoff and Ray take a look at Fable Heroes for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/this-is-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbd2a3a4-3985-41ba-8c63-976112ebf8f8/sm/ep4809.jpg","duration":367,"publication_date":"2012-05-07T20:03:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-43","changefreq":"weekly","video":[{"title":"2012:E19 - Week #111","description":"Jack and Geoff (and Gavin) bring you some new news in the world of gaming and other places. Come for the information about The Elder Scrolls Online, stay for the Gavin punching.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57eea430-07b5-421f-824a-17fc0ac5ba1c/sm/ep4808.jpg","duration":260,"publication_date":"2012-05-07T19:45:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-animal-extravagnaza","changefreq":"weekly","video":[{"title":"2012:E115 - Mod Spotlight - Skyrim Animal Extravagnaza","description":"CFHhateph34r and Emphara show you some really cool animal reskins for Skyrim. Download link are in the news post: http://roosterteeth.com/groups/news/id=14411","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-skyrim-animal-extravagnaza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/729f9862-be2c-495f-85af-7c293e497ccb/sm/2013912-1449771500182-maxresdefault_(14).jpg","duration":156,"publication_date":"2012-05-07T06:53:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-the-pac-man-franchise","changefreq":"weekly","video":[{"title":"2012:E114 - The Five: The Pac-Man Franchise","description":"Watch as SpecOps614 and BioHRay bombard you with facts about everyone's favorite Pellet-Muncher, Pac-Man!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-the-pac-man-franchise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90a64f36-57c8-41bc-8ad5-6ab083021cbd/sm/2013912-1449771462295-maxresdefault.jpg","duration":325,"publication_date":"2012-05-07T06:49:49.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-two-for-the-price-of-one","changefreq":"weekly","video":[{"title":"2012:E113 - Two for the Price of One","description":"Michael and Ray show you how to get the \"Two for the Price of One\" achievement in Prototype 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-two-for-the-price-of-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e769a72b-6487-4992-9ba7-fb3c4d795440/sm/ep4803.jpg","duration":102,"publication_date":"2012-05-04T22:34:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-73","changefreq":"weekly","video":[{"title":"2012:E37 - GoldenEye 007: Reloaded","description":"Styx and BSed teach you everything you need need to know about a new twist on an old classic with GoldenEye 007: Reloaded.","player_loc":"https://roosterteeth.com/embed/this-is-2012-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56aef0c5-7bbe-4da7-b00e-6783a3f125ec/sm/2013912-1449771436645-maxresdefault_(12).jpg","duration":255,"publication_date":"2012-05-04T21:24:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-puppet-beat-chickens-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1228 - Puppet Beat Chickens Achievement Guide","description":"Ray and Geoff show you how to get the \"Puppet Beats Chickens\" achievement in the Xbox Live Arcade game Fable Heroes.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-puppet-beat-chickens-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7afa2001-0da0-45bb-9196-df5e9cf5cdd7/sm/ep4798.jpg","duration":95,"publication_date":"2012-05-04T17:30:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-shark-reef-evolved","changefreq":"weekly","video":[{"title":"2012:E112 - Game Night: Halo Reach - Shark Reef Evolved","description":"Caleb and Geoff take a look at the Halo Reach map \"Shark Reef Evolved\" in the latest installment of Game Night.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-shark-reef-evolved","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d5b983d-e123-427d-92de-98d8797cb7b4/sm/ep4797.jpg","duration":151,"publication_date":"2012-05-04T16:44:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-41","changefreq":"weekly","video":[{"title":"2012:E18 - Volume 85","description":"Jack and Geoff are back with even more hilarious fails in the world of Halo: Reach. Laugh along with them, but don't spit out your drink!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1f36a19-54ed-434c-9a3c-814e3037d596/sm/ep4796.jpg","duration":224,"publication_date":"2012-05-04T15:04:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-40","changefreq":"weekly","video":[{"title":"2012:E18 - Turok","description":"This week on Rage Quit, Michael faces off against the final boss in Turok for the Xbox 360.\n\nSpoiler Alert: It's a dinosaur","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/567cea97-f50e-4404-9580-debacd2f6ee1/sm/ep4795.jpg","duration":249,"publication_date":"2012-05-04T01:23:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-57","changefreq":"weekly","video":[{"title":"2012:E37 - Falling Down Easter Egg","description":"Jack and Geoff show off another hidden Easter Egg in Trials Evolution. Join them as they take a look at the egg in Falling Down.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad6d97c4-4d4e-42b6-9907-bd18ac3f0be0/sm/ep4793.jpg","duration":82,"publication_date":"2012-05-03T19:54:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-43","changefreq":"weekly","video":[{"title":"2012:E36 - Awesomenauts","description":"Fragger and Geoff take a look at the newly released Xbox Live Arcade game Awesomenauts.","player_loc":"https://roosterteeth.com/embed/this-is-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94a4c080-8fad-41b4-be7c-d65b6149a51e/sm/ep4792.jpg","duration":398,"publication_date":"2012-05-03T19:08:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-35","changefreq":"weekly","video":[{"title":"2012:E18 - Halo HORSE #73","description":"In today's episode of Halo HORSE, Michael and Ray face off in a bloody battle of the ages. Or something like that. Don't forget to watch Trials HORSE too!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ba1109f-9361-4938-9910-5323c043717d/sm/ep4785.jpg","duration":444,"publication_date":"2012-05-03T01:41:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-april-2012","changefreq":"weekly","video":[{"title":"2012:E4 - Best fails of April 2012","description":"Top five time again! Jack and Geoff take a look at the videos you selected this month. And things get awkward. Be sure to like your favorites this month on the Game Fails channel!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-april-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd5d77ff-95c8-4d28-8726-ff3605fa130c/sm/ep4784.jpg","duration":224,"publication_date":"2012-05-03T01:37:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gettin-super","changefreq":"weekly","video":[{"title":"2012:E111 - Gettin' Super","description":"kyle042 shows us how to collect all seven chaos emeralds in Sonic & Knuckles.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gettin-super","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91893112-9811-45ac-b284-d5232fb1788f/sm/2013912-1449771406207-maxresdefault_(11).jpg","duration":359,"publication_date":"2012-05-02T21:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-pig-season-1-trials-horse-3","changefreq":"weekly","video":[{"title":"2012:E1 - Trials HORSE #3","description":"Jack and Gavin kick off another episode of Achievement HORSE in Trials Evolution! Who will win (Go Team America!)","player_loc":"https://roosterteeth.com/embed/trials-pig-season-1-trials-horse-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18034e0d-b8c7-4694-ab34-ea555818faf1/sm/ep4781.jpg","duration":443,"publication_date":"2012-05-02T21:24:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-37","changefreq":"weekly","video":[{"title":"2012:E35 - The Walking Dead Episode 1","description":"Geoff and Ray take a look at the newly released episodic Xbox Live Arcade game \"The Walking Dead.\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8169c86-b667-4901-8e62-cb9719455769/sm/ep4780.jpg","duration":364,"publication_date":"2012-05-02T21:17:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-follow-your-nose-part-ii-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1219 - Follow Your Nose Part II Achievement Guide","description":"Michael and Ray show you where to find the second set of collectibles for the \"Follow Your Nose\" achievement in Prototype 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-follow-your-nose-part-ii-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0eaac601-43d6-4c80-b429-2b34fd56296a/sm/ep4778.jpg","duration":170,"publication_date":"2012-05-02T21:07:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-kinect","changefreq":"weekly","video":[{"title":"2012:E110 - Skyrim Kinect","description":"Michael and Gavin show you how to murder defenseless townsfolk as they try out the brand new Kinect functionality in Skyrim for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-kinect","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb7e1678-9c7c-4e27-9eff-f1450d6ce26f/sm/ep4775.jpg","duration":229,"publication_date":"2012-05-02T20:49:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-36","changefreq":"weekly","video":[{"title":"2012:E25 - MW3 - Call of Doodie","description":"Gav and Geoff keep you up to date on the best methods to irritate your fellow gamers in Call of Duty: MW3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d6fd39e-12fc-4dd6-b1ca-53138b26a204/sm/ep4774.jpg","duration":117,"publication_date":"2012-05-02T18:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-23","changefreq":"weekly","video":[{"title":"2012:E2 - Trials Evolution - Trials Files #2","description":"On this week's Trials Files, Jack and Geoff show you a stunning Terminator 2 track.","player_loc":"https://roosterteeth.com/embed/trials-files-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/618c44db-15fc-493f-8d83-0c4ff9c06e07/sm/ep4767.jpg","duration":121,"publication_date":"2012-05-01T21:13:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-too-human","changefreq":"weekly","video":[{"title":"S1:E21 - A Look Back At: Too Human","description":"Fragger and Ray take a look back at the action RPG Too Human for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-too-human","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9e5eb91-0129-4728-8b9a-455664040957/sm/ep4766.jpg","duration":381,"publication_date":"2012-05-01T20:08:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-farewell-to-the-proud-warrior","changefreq":"weekly","video":[{"title":"2012:E109 - Dragon Ball: Raging Blast 2 - Farewell to the Proud Warrior","description":"In this video kpchadr08 shows you how to get the \"Farewell To The Proud Warrior\" achievement in Dragon Ball Raging Blast 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-farewell-to-the-proud-warrior","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcee2cc4-0a92-4c59-ab28-568b84b0abaf/sm/2013912-1449771369957-maxresdefault_(10).jpg","duration":105,"publication_date":"2012-05-01T17:08:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-minecraft-ghibli-world","changefreq":"weekly","video":[{"title":"2012:E108 - Mod Spotlight... Minecraft - Ghibli World","description":"CFHhateph34r and Emphara take you on a tour of the Ghibli World Minecraft map by ozworkshop. Download link: http://www.planetminecraft.com/project/-minecraft-ghibli-world-/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-minecraft-ghibli-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f5e0afa-813e-4b56-8b84-1999c5fbd9fa/sm/2013912-1449771346991-maxresdefault_(9).jpg","duration":147,"publication_date":"2012-05-01T16:55:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-31","changefreq":"weekly","video":[{"title":"2012:E18 - Week #110","description":"Jack and Geoff bring you another week's worth of news and gaming! Be amazed at how Gavin has yet to be murdered! Enjoy! Also, buy tickets for RTX! http://rtxevent.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/996664c6-bff9-4678-aba1-b5f6ab8d2021/sm/ep4760.jpg","duration":291,"publication_date":"2012-04-30T23:24:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-45","changefreq":"weekly","video":[{"title":"2012:E33 - Roller Coaster Easter Egg","description":"Ray and Geoff show you where to find an Easter Egg on the Roller Coaster Map in Trials Evolution. As a bonus, they also draw a map to Geoff's house.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12f4c686-782b-4125-9771-4855c34ba324/sm/ep4757.jpg","duration":79,"publication_date":"2012-04-30T18:16:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-portal-series","changefreq":"weekly","video":[{"title":"2012:E107 - The Five: Portal Series","description":"SpecOps614 here with another episode of \"The Five\". In this episode, we take a closer look at Portal!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-portal-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/356a6f84-1c3a-4b81-9a99-8459f2003e6b/sm/2013912-1449771322384-maxresdefault_(8).jpg","duration":213,"publication_date":"2012-04-30T17:40:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-52","changefreq":"weekly","video":[{"title":"2012:E18 - Assassin's Creed Revelations Part III","description":"The Achievement Hunter crew takes a stab at the highly addictive \"Wanted\" multiplayer gametype in Assassin's Creed Revelations.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06059ba0-3970-4c52-85c6-ca21f59f92d8/sm/ep4749.jpg","duration":609,"publication_date":"2012-04-28T00:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-29","changefreq":"weekly","video":[{"title":"2012:E17 - Volume 84","description":"Jack and Geoff bring forth the 84th week of Fails of the Weak! Watch and enjoy this pile of hilarious screw-ups!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db2cc652-4133-4f62-ab37-4060a7510402/sm/ep4747.jpg","duration":181,"publication_date":"2012-04-27T21:03:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-armoured-walkers","changefreq":"weekly","video":[{"title":"2012:E106 - Game Night: Halo Reach - Armoured Walkers","description":"Caleb and Geoff show you the Halo Reach game type \"Armoured Walkers\".","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-armoured-walkers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2dcaeb29-dfc7-4dc4-b530-d4102d9ae509/sm/ep4746.jpg","duration":148,"publication_date":"2012-04-27T19:29:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-43","changefreq":"weekly","video":[{"title":"2012:E32 - Zerg Rush Easter Egg","description":"Geoff and Gus show you a clever Starcraft inspired Easter Egg in Google.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd7f5311-0801-41d1-a0d0-1fc243a47c95/sm/ep4745.jpg","duration":99,"publication_date":"2012-04-27T18:38:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-31","changefreq":"weekly","video":[{"title":"2012:E24 - Skyrim - Psst Psst FUUUUCK","description":"Geoff and Gav show you the benefits of taking a stealthy approach.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50942baa-576c-4b00-b3d7-177d2e6788c2/sm/ep4744.jpg","duration":179,"publication_date":"2012-04-27T18:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-27","changefreq":"weekly","video":[{"title":"2012:E17 - The Impossible Game Level Pack","description":"On this week's Rage Quit, Michael takes a crack at the Xbox Live Indie Game, The Impossible Game Level Pack. \n\nOops, he did it again.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb90fff4-27d8-40ca-a2cd-06396cc357cb/sm/ep4739.jpg","duration":234,"publication_date":"2012-04-26T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-42","changefreq":"weekly","video":[{"title":"2012:E30 - Cliff Jumper Easter Egg","description":"Geoff and Jack show you where to find an easter egg in the Cliff Jumper map of Trials Evolution.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a1cca0-137b-4d17-8361-fdd682f284ff/sm/ep4737.jpg","duration":60,"publication_date":"2012-04-26T17:56:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-reach-mini-falcon-glitch","changefreq":"weekly","video":[{"title":"2012:E105 - Halo: Reach - Mini Falcon Glitch","description":"apocolyptictodd shows you the mini falcon glitch in Halo: Reach!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-reach-mini-falcon-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":345,"publication_date":"2012-04-26T17:53:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-25","changefreq":"weekly","video":[{"title":"2012:E34 - Prototype 2","description":"Geoff and Michael take a look at the fresh and new title \"Prototype 2.\" Watch and enjoy their take on this game where you fly around and murderize people.","player_loc":"https://roosterteeth.com/embed/this-is-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a7ec860-8020-493c-84e4-d32114fc429c/sm/ep4733.jpg","duration":511,"publication_date":"2012-04-26T15:06:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-yamchas-premonition","changefreq":"weekly","video":[{"title":"2012:E104 - Dragon Ball Raging Blast 2 - Yamcha's Premonition","description":"In this video kpchadr08 shows you how to get the Yamcha's Premonition achievement in Dragon Ball Raging Blast 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dragon-ball-raging-blast-2-yamchas-premonition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e368c5f-179f-4e60-8ed7-ee26d6ac57cb/sm/2013912-1449771279760-maxresdefault_(7).jpg","duration":123,"publication_date":"2012-04-25T22:46:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mod-spotlight-left-4-dead-2-helms-deep-reborn","changefreq":"weekly","video":[{"title":"2012:E103 - Mod Spotlight: Left 4 Dead 2 - Helm's Deep Reborn","description":"CFHhateph34r and Emphara show off the Helm's Deep Reborn map for Left for Dead 2 by SeriouS_Samurai. Download link: http://www.l4dmaps.com/details.phpfile=7302","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mod-spotlight-left-4-dead-2-helms-deep-reborn","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":153,"publication_date":"2012-04-25T22:42:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-23","changefreq":"weekly","video":[{"title":"2012:E33 - Bloodforge","description":"Fragger and Geoff take a look at the newly released Xbox Live Arcade game Bloodforge.","player_loc":"https://roosterteeth.com/embed/this-is-2012-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba2f16aa-9c15-4780-a837-43028dc22d29/sm/ep4729.jpg","duration":415,"publication_date":"2012-04-25T20:35:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-floor-is-lava-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1196 - The Floor is Lava Achievement Guide","description":"Michael and Geoff show you how to get the \"The FLoor is Lava\" achievement in Prototype 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-floor-is-lava-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f996623b-e22b-4c8f-a7ac-7ae774e12a88/sm/ep4728.jpg","duration":106,"publication_date":"2012-04-25T17:18:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-52","changefreq":"weekly","video":[{"title":"2012:E17 - Achievement HORSE #72","description":"Jack and Geoff are back for another edition of Achievement HORSE in Trials Evolution. Don't worry though, Halo HORSE comes back next week! Who will win in this battle of the bikes","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f99916b7-00ca-4237-810c-95b1cd50091a/sm/ep4727.jpg","duration":438,"publication_date":"2012-04-25T17:15:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-follow-your-nose-part-i-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1195 - Follow Your Nose Part I Achievement Guide","description":"Michael and Geoff show you where to find the first set of collectibles for the \"Follow Your Nose\" achievement in Prototype 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-follow-your-nose-part-i-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55f75647-ffcb-4e15-9ca7-c1937519bcd3/sm/ep4726.jpg","duration":193,"publication_date":"2012-04-25T16:40:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-two-dlc-achievements","changefreq":"weekly","video":[{"title":"2012:E1194 - Two DLC Achievements","description":"Ray and Michael show you how to get the \"Leave No Dead Man Behind\" and \"Ticket to the Gun Show\" Achievements in the new DLC for Resident Evil: Operation Raccoon City.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-two-dlc-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d8c5652-e87f-43fa-9f05-05870448b8d4/sm/ep4725.jpg","duration":193,"publication_date":"2012-04-25T16:25:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-39","changefreq":"weekly","video":[{"title":"2012:E29 - Suspense Easter Egg","description":"Geoff and Jack show you where to find an easter egg on the Trials Evolution map \"Suspense.\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab8cd9e9-f712-4721-8fe2-247f59a75263/sm/ep4724.jpg","duration":73,"publication_date":"2012-04-25T14:54:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-a-look-back-at-my-horse-and-me-2","changefreq":"weekly","video":[{"title":"2012:E102 - A Look Back At: My Horse & Me 2","description":"Mike and Ray take a look back at one of the best games of 2008.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-a-look-back-at-my-horse-and-me-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b37e6619-3bfb-450a-915e-12b91743b523/sm/2013912-1449769129482-maxresdefault_(2).jpg","duration":274,"publication_date":"2012-04-25T07:47:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/trials-files-2012-16","changefreq":"weekly","video":[{"title":"2012:E1 - Trials Files #1","description":"Today Jack and Geoff launch a new series of videos, this time they are showing off cool maps in Trials Evolution that you can download and play yourself! Watch and enjoy this look at some sweet user-generated content!","player_loc":"https://roosterteeth.com/embed/trials-files-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4caf47fc-73ac-4ee3-9945-43342ef3ce24/sm/ep4720.jpg","duration":238,"publication_date":"2012-04-24T19:21:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-prototype","changefreq":"weekly","video":[{"title":"S1:E20 - A Look Back At: Prototype","description":"Fragger and Ray take a look back at the open-world game Prototype for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-prototype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f383f02a-825e-4a32-8ce5-5f8bf0e3a7d9/sm/ep4719.jpg","duration":474,"publication_date":"2012-04-24T19:19:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hard-the-hard-way-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1193 - Hard the Hard Way Achievement Guide","description":"Jack and Geoff walk you through a technique for grabbing the \"Hard the Hard Way\" achievement in Trials Evolution. Be gentle.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hard-the-hard-way-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1de3f74f-bbdd-4039-8135-b10efdfef7b7/sm/ep4718.jpg","duration":143,"publication_date":"2012-04-24T16:53:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-let-lounging-lickers-lie-ladies-night","changefreq":"weekly","video":[{"title":"2012:E101 - Let Lounging Lickers Lie, Ladies Night","description":"Ray and Michael show you how to get the Let Lounging Lickers Lie and Ladies Night Achievements in the new DLC for Resident Evil: Operation Raccoon City for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-let-lounging-lickers-lie-ladies-night","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9996e4a-94b8-4f98-97ef-965f0edd23e6/sm/ep4717.jpg","duration":134,"publication_date":"2012-04-24T16:52:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-35","changefreq":"weekly","video":[{"title":"2012:E28 - Way of the Ninja Easter Egg","description":"Jack and Geoff show you a hidden easter egg in the Way of the Ninja level in Trials Evolution. D'awww, look at the squirrels!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/edfb6f73-91f8-4e57-9551-3f473aee72d3/sm/ep4716.jpg","duration":81,"publication_date":"2012-04-24T16:43:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-21","changefreq":"weekly","video":[{"title":"2012:E17 - Week #109","description":"Jack and Gavin deliver you only the most important of news bites and blips in today's episode of AHWU. Enjoy!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f16b658c-f979-4dcc-aaef-68aee2ef8794/sm/ep4715.jpg","duration":316,"publication_date":"2012-04-23T23:23:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-loonie-lander-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1192 - Loonie Lander Achievement Guide","description":"Jack and Michael show you how to pick up the Loonie Lander achievement in Trials Evolution. Where's my flag","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-loonie-lander-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d342b8fd-dc5f-4205-a37f-0d855467e550/sm/ep4714.jpg","duration":125,"publication_date":"2012-04-23T23:12:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cartoon-network-punch-time-explosion-xl-s-e-c-t-o-r-v","changefreq":"weekly","video":[{"title":"2012:E100 - Cartoon Network Punch Time Explosion XL - S.E.C.T.O.R. V","description":"In this video kpchadr08 shows you how to get the S.E.C.T.O.R. V. achievement in Cartoon Network Punch Time Explosion XL.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cartoon-network-punch-time-explosion-xl-s-e-c-t-o-r-v","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bc4f249-1306-40f6-bd38-653ce6c66d77/sm/2013912-1449771225765-maxresdefault_(6).jpg","duration":269,"publication_date":"2012-04-23T18:09:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-59","changefreq":"weekly","video":[{"title":"2012:E23 - Halo: Reach - Flying Buildings","description":"Zach (IDstudios) and Tyler (Veggieninja) show you how to make a flying building in Halo: Reach Forge Mode.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17f3956f-5447-475a-86de-39c2f272b7bf/sm/2013912-1449771197813-maxresdefault_(5).jpg","duration":200,"publication_date":"2012-04-23T17:52:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mw2-hidden-out-of-the-map-glitch-cod-4-all-ghillied-up","changefreq":"weekly","video":[{"title":"2012:E99 - MW2 \"Hidden\" Out of the Map Glitch: CoD 4 \"All Ghillied Up\"","description":"Nick shows you how to get out of the map on the Spec Ops mission \"Hidden.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mw2-hidden-out-of-the-map-glitch-cod-4-all-ghillied-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28ff8402-cf92-4ce0-a2ae-9cc50e8b1d7f/sm/2013912-1449771175128-maxresdefault_(4).jpg","duration":71,"publication_date":"2012-04-23T17:44:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-evolution-the-squirrels-have-eyes-part-two","changefreq":"weekly","video":[{"title":"2012:E98 - Trials Evolution: The Squirrels Have Eyes Part Two","description":"Geoff and Gavin show you where to find the first ten of twenty hidden squirrels in Trials Evolution for Xbox Live Arcade. Locating all twenty gets you the \"Squirrels Have Eyes\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-evolution-the-squirrels-have-eyes-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/640197e9-fdbb-4645-82f3-16f083204230/sm/ep4705.jpg","duration":254,"publication_date":"2012-04-23T17:39:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-evolution-editors-apprentice-and-nervous-twitch","changefreq":"weekly","video":[{"title":"2012:E97 - Trials Evolution: Editor's Apprentice and Nervous Twitch","description":"In this video Lukus01 and Semper fi 589 tear it up in trials evolution. In this video they earn Editor's Apprentice (20G) and Nervous Twitch (20G)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-evolution-editors-apprentice-and-nervous-twitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3842cb20-4706-4cf4-ba68-0ff0943dbccc/sm/2013912-1449771150340-maxresdefault_(3).jpg","duration":129,"publication_date":"2012-04-23T17:33:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-32","changefreq":"weekly","video":[{"title":"2012:E17 - Trials Evolution","description":"The gang from Achievement Hunter tries the insanely fun and extremely addictive multiplayer in Trials Evolution for the Xbox Live Arcade. \n\nSlap on some kneepads, don your Mjolnir helmet, and prepare yourself for the ride of your life.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbef64dc-975f-47a4-88e4-5ab81a990501/sm/ep4690.jpg","duration":1321,"publication_date":"2012-04-20T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-17","changefreq":"weekly","video":[{"title":"2012:E16 - Volume 83","description":"Jack and Geoff bring forth only the finest in Halo hilarity and fails. Enjoy this brand new episode of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5537d1b0-f63a-4d2c-b6d2-81d4b7e5c662/sm/ep4689.jpg","duration":259,"publication_date":"2012-04-20T20:31:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-squirrels-have-eyes-part-one","changefreq":"weekly","video":[{"title":"2012:E96 - The Squirrels Have Eyes Part One","description":"Geoff and Gavin show you where to find the first ten of twenty hidden squirrels in Trials Evolution for Xbox Live Arcade. Locating all twenty gets you the \"Squirrels Have Eyes\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-squirrels-have-eyes-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89bafc8d-c693-4804-9541-9577535327c3/sm/ep4688.jpg","duration":291,"publication_date":"2012-04-20T19:35:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-flushing-toilet","changefreq":"weekly","video":[{"title":"2012:E95 - Game Night: Halo Reach - Flushing Toilet","description":"Caleb and Geoff show you the game type Flushing Toilet in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-flushing-toilet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79046650-ff9f-4deb-b7f6-4feed006536f/sm/ep4687.jpg","duration":127,"publication_date":"2012-04-20T18:09:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-doom","changefreq":"weekly","video":[{"title":"2012:E94 - The Five: DOOM","description":"SpecOps614 here, with another episode of \"The Five\"! Join me as I take a closer look at DOOM...IN HD!!!!!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de66901a-ba55-4b02-9103-10a1959cd0f7/sm/2013912-1449771112021-maxresdefault_(2).jpg","duration":174,"publication_date":"2012-04-20T16:49:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-14","changefreq":"weekly","video":[{"title":"2012:E16 - Trials Evolution","description":"In this very special episode Rage Quit Michael returns to face a familiar foe, Trials Evolution for the Xbox Live Arcade.\n\nHas he brushed up on his skills since the very first episode of Rage Quit Tune it and find out!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/039d42aa-e39e-4b42-8797-8e7926a6247f/sm/ep4683.jpg","duration":210,"publication_date":"2012-04-20T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-full-throttle-ii-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1173 - Full Throttle II Achievement Guide","description":"Jack and Geoff go barging through Trials Evolution and grab the Full Throttle II achievement. Don't touch that brake!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-full-throttle-ii-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a33a8de-adea-4a4f-9012-f444bde47237/sm/ep4681.jpg","duration":120,"publication_date":"2012-04-19T18:57:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-nervous-twitch-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1172 - Nervous Twitch Achievement Guide","description":"Jack and Michael check out this secret achievement in Trials Evolution. Watch as they play some baseball and grab the nervous Twitch achievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-nervous-twitch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/048750e1-75cb-4b8c-a70f-2e38752dc44a/sm/ep4679.jpg","duration":107,"publication_date":"2012-04-19T18:55:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-unyielding-ii-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1171 - Unyielding II Achievement Guide","description":"Jack and Gavin work together to show you how to pick up the Unyielding II achievement in Trials Evolution! Don't touch that rider!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-unyielding-ii-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49ea5e9f-68c9-4a22-919f-584122864bd0/sm/ep4678.jpg","duration":106,"publication_date":"2012-04-19T18:54:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-51","changefreq":"weekly","video":[{"title":"2012:E16 - Achievement HORSE #71","description":"In today's special episode of Achievement HORSE, Jack and Geoff head over to Trials: Evolution to play! You can submit maps for them as well, watch the video to learn how!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98ae6302-991d-4331-a372-c37b5c3d1692/sm/ep4676.jpg","duration":466,"publication_date":"2012-04-18T22:08:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-geoff-gets-ridiculously-lucky-in-assassins-creed-revelations","changefreq":"weekly","video":[{"title":"2012:E93 - Geoff gets ridiculously lucky in Assassin's Creed: Revelations","description":"Geoff pulls off a ridiculous chain of events while filming Things To Do In: Assassin's Creed Revelations - Bale of Hate.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-geoff-gets-ridiculously-lucky-in-assassins-creed-revelations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9b6e178-50b3-4d37-80ce-0ad1b2a93adf/sm/ep4675.jpg","duration":72,"publication_date":"2012-04-18T21:32:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-12","changefreq":"weekly","video":[{"title":"2012:E22 - Assassin's Creed Revelations - Bale of Hate","description":"Geoff and Gavin show you how accomplish the Bale of Hate in Assassin's Creed Revelations on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f5f17c2-c69d-4c41-89d4-b76ad796d185/sm/ep4674.jpg","duration":270,"publication_date":"2012-04-18T20:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grim-reaper-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1169 - Grim Reaper Achievement Guide","description":"Ray and Mike show you how to get the Grim Reaper Achievement in World Gone Sour for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grim-reaper-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d7b8b49-0255-48ca-814b-086e373677f9/sm/ep4673.jpg","duration":87,"publication_date":"2012-04-18T17:33:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-9","changefreq":"weekly","video":[{"title":"2012:E32 - Trials Evolution","description":"Jack and Gavin check out the newest edition of Trials! In Trials Evolution, everything is bigger and better. You should absolutely pick it up when it hits on XBLA! Also, practice with the map editor to make some HORSE maps for Jack and Geoff to play.","player_loc":"https://roosterteeth.com/embed/this-is-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4afd4c54-bdf4-4dfe-a600-ad8acb6fa7d0/sm/ep4668.jpg","duration":423,"publication_date":"2012-04-17T23:11:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-clive-barkers-jericho","changefreq":"weekly","video":[{"title":"S1:E19 - A Look Back At: Clive Barker's Jericho","description":"Fragger and Ray take a look back at the Xbox 360 game, Clive Barker's Jericho.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-clive-barkers-jericho","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85435df2-0d8c-4eeb-aba7-11eefe0d1685/sm/ep4666.jpg","duration":285,"publication_date":"2012-04-17T19:32:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-fez-cypher","changefreq":"weekly","video":[{"title":"2012:E92 - The Fez Cypher","description":"Fragger takes a look at Fez and decodes the secret language for us. Cypher city!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-fez-cypher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11a119c3-5e77-44ea-8fcc-b1d3bd3fc13f/sm/ep4665.jpg","duration":102,"publication_date":"2012-04-17T18:21:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-halo-ce-part-2","changefreq":"weekly","video":[{"title":"2012:E91 - The Five: Halo CE (Part 2)","description":"SpecOps614 and BioHRay take a look at even more Halo facts in this week's \"The Five\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-halo-ce-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":186,"publication_date":"2012-04-17T16:49:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cartoon-network-punch-time-explosion-xl-adventure","changefreq":"weekly","video":[{"title":"2012:E90 - Cartoon Network Punch Time Explosion XL - Adventure!","description":"In this video, kpchadr08 shows you how to get the Adventure! achievement in Cartoon Network Punch Time Explosion XL.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cartoon-network-punch-time-explosion-xl-adventure","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5eb04e55-93c0-4b7a-884f-06168f81c218/sm/2013912-1449771048649-maxresdefault_(1).jpg","duration":106,"publication_date":"2012-04-17T06:17:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-choose-your-own-adventure-east","changefreq":"weekly","video":[{"title":"2012:E89 - The Elder Scrolls V: Skyrim - Choose Your Own Adventure East","description":"Styx shows you how acquire the choose-your-own-adventure-style book, \"Kolb & the Dragon,\" in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-elder-scrolls-v-skyrim-choose-your-own-adventure-east","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6e00067-5635-4ffd-9e12-31f3247b2c6d/sm/2013912-1449771025825-maxresdefault.jpg","duration":62,"publication_date":"2012-04-17T06:04:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-against-the-odds-in-wwe-12","changefreq":"weekly","video":[{"title":"2012:E88 - Against the Odds in WWE '12","description":"Masshalogear shows you how to get the achievement Against the Odds in WWE '12","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-against-the-odds-in-wwe-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b112cb1-9700-40af-9b23-311942091724/sm/2013912-1449770986036-maxresdefault_(21).jpg","duration":150,"publication_date":"2012-04-17T05:58:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-thats-gotta-hurt-wwe12","changefreq":"weekly","video":[{"title":"2012:E87 - That's gotta hurt! - WWE'12","description":"Masshalogear shows you how to get the achievement That's gotta hurt! in WWE '12.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-thats-gotta-hurt-wwe12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e62a65ba-fbe0-48ad-b57b-99af980562c0/sm/2013912-1449770956046-maxresdefault_(20).jpg","duration":121,"publication_date":"2012-04-17T05:55:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holla-wwe-12","changefreq":"weekly","video":[{"title":"2012:E86 - Holla! - WWE '12","description":"Masshalogear shows you how to get the achievement Holla! in WWE '12","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holla-wwe-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2571f8f3-913c-4d72-a60b-ac8335f73b3e/sm/2013912-1449770926108-maxresdefault_(19).jpg","duration":88,"publication_date":"2012-04-17T05:53:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-school-musical-3-senior-year-dance-4th-quarter-come","changefreq":"weekly","video":[{"title":"2012:E85 - High School Musical 3: Senior Year DANCE! - 4th Quarter Come","description":"Hello internet, watch as sbatkk shows you how to get an easy achievement in a High School Musical game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-school-musical-3-senior-year-dance-4th-quarter-come","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":48,"publication_date":"2012-04-17T05:47:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-57","changefreq":"weekly","video":[{"title":"2012:E21 - Red Dead Redemption - Bridge Bulldog","description":"Hightower93 shows you how to play Bridge Bulldog in Red Dead Redemption. Don't look down!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61d7cbe2-9d18-4da4-af19-d739f872713c/sm/2013912-1449770873165-maxresdefault_(18).jpg","duration":137,"publication_date":"2012-04-17T05:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-56","changefreq":"weekly","video":[{"title":"2012:E20 - Red Dead Redemption - The Ragdoll Rooftop","description":"Hightower93 dusts off his cowboy hat and shows you the Ragdoll Rooftop in Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c73ad04-3e5f-4e50-824d-8780f17bd3ae/sm/2013912-1449770839259-maxresdefault_(17).jpg","duration":183,"publication_date":"2012-04-17T05:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-south-park-tenormans-revenge-mpph-mpprhhh","changefreq":"weekly","video":[{"title":"2012:E84 - South Park: Tenorman's Revenge - Mpph Mpprhhh!","description":"In this video sbatkk shows us how to get the Mpph Mpprhhh! achievement in the XBLA game \"South Park: Tenorman's Revenge\". Also sbatkk would like to apologize for the audio he's a little under the weather :(","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-south-park-tenormans-revenge-mpph-mpprhhh","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":89,"publication_date":"2012-04-17T05:26:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-55","changefreq":"weekly","video":[{"title":"2012:E19 - Battlefield Bad Company 2 - Explosivo","description":"CFHhateph34r shows you how to do a little stunt he likes to call explosivo. Watch to find out how to make Bad Company 2 look like a Micheal Bay movie!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":142,"publication_date":"2012-04-17T05:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-7","changefreq":"weekly","video":[{"title":"2012:E16 - Week #108","description":"Jack and Geoff talk about this week's upcoming titles including Trials Evolution and The Witcher 2! Less Gavin punching this week. Sorry.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8459bf12-f385-4554-90ef-e61605352359/sm/ep4645.jpg","duration":345,"publication_date":"2012-04-17T00:02:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-5","changefreq":"weekly","video":[{"title":"2012:E31 - Fez","description":"Jack and Geoff check out one of the coolest games to hit XBLA, FEZ! (Not Rez)","player_loc":"https://roosterteeth.com/embed/this-is-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf7f132f-2c47-49d0-bf1d-1ede177b4d9c/sm/ep4644.jpg","duration":344,"publication_date":"2012-04-13T22:20:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-9","changefreq":"weekly","video":[{"title":"2012:E15 - Volume 82","description":"Jack and Geoff treat you to a delicious pile of failure in the form of Halo: Reach. Enjoy with a fine wine.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4bd4a95-e9be-4b5e-8b08-7a4480148037/sm/ep4643.jpg","duration":232,"publication_date":"2012-04-13T21:12:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-12","changefreq":"weekly","video":[{"title":"2012:E16 - Assassin's Creed Revelations With Geoff, Gavin, Michael, & Jack Part II","description":"The Achievement Hunter crew takes a stab at the highly addictive \"Wanted\" multiplayer gametype in Assassin's Creed Revelations.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bc446bd-5abf-41ff-9402-85a7a53af994/sm/ep4642.jpg","duration":739,"publication_date":"2012-04-13T16:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-modern-warfare-3-explode","changefreq":"weekly","video":[{"title":"2012:E83 - Game Night: Modern Warfare 3 - Explode!!!","description":"Caleb and Geoff show you a little gametype in Call of Duty: Modern Warfare 3, they like to call EXPLODE!!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-modern-warfare-3-explode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50eb2521-09e0-418f-aef8-aef27f038f56/sm/ep4641.jpg","duration":161,"publication_date":"2012-04-13T14:43:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-7","changefreq":"weekly","video":[{"title":"2012:E15 - Medal of Honor","description":"In this week's Rage Quit, Michael rejoins the front lines in Medal of Honor for the Xbox 360. He should have brought some backup.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61f454e4-fe95-4c06-ba82-ad1ab24a053c/sm/ep4639.jpg","duration":227,"publication_date":"2012-04-12T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-3","changefreq":"weekly","video":[{"title":"2012:E30 - Mass Effect 3: Resurgence Map Pack","description":"Fragger and Geoff show off the new Resurgence Map Pack in Mass Effect 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81d76b40-2d4d-4ae1-8631-3214e58242b8/sm/ep4637.jpg","duration":371,"publication_date":"2012-04-12T19:42:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-6","changefreq":"weekly","video":[{"title":"2012:E15 - Achievement HORSE #70","description":"Jack and Geoff are back in another game of HORSE! Watch them as they face off in their faciness. If you want to play along, grab the maps from the AchHntrDotCom fileshare! Info on how to is right here: http://bit.ly/AHFileShare","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/941b82ce-8a99-41ea-9db1-a321a741db70/sm/ep4636.jpg","duration":406,"publication_date":"2012-04-11T22:47:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-creative-with-the-moves-wwe-12","changefreq":"weekly","video":[{"title":"2012:E82 - Creative with the Moves - WWE '12","description":"Masshalogear shows you how to be creative and get the Creative with the Moves achievement in WWE '12.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-creative-with-the-moves-wwe-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bd82821-7a48-4fff-864b-9fb74d65a479/sm/2013912-1449769079803-maxresdefault_(1).jpg","duration":118,"publication_date":"2012-04-11T21:19:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-arena-designer-wwe-12","changefreq":"weekly","video":[{"title":"2012:E81 - Arena Designer - WWE '12","description":"Masshalogear shows you how to get Arena Designer and also Custom Logo Wizard in WWE '12","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-arena-designer-wwe-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2978215-ede7-4073-b6e1-37ac60d235a5/sm/2013912-1449770734531-maxresdefault_(16).jpg","duration":119,"publication_date":"2012-04-11T21:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-this-combo-is-lethal-wwe-12","changefreq":"weekly","video":[{"title":"2012:E80 - This Combo is Lethal! - WWE '12","description":"Masshalogear shows you how to get the achievement This Combo is Lethal! in WWE'12.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-this-combo-is-lethal-wwe-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e55cef0-b9f6-4eae-903a-6127a337d5f7/sm/2013912-1449770700851-maxresdefault_(15).jpg","duration":80,"publication_date":"2012-04-11T21:14:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cartoon-network-punch-time-explosion-xl-its-hero-time","changefreq":"weekly","video":[{"title":"2012:E79 - Cartoon Network Punch Time Explosion XL - It's Hero Time!","description":"kpchadr08 shows us how to win the Bellwood fight in under 1 minute.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cartoon-network-punch-time-explosion-xl-its-hero-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e89a8f82-7cd8-449b-9886-931b1cf0892d/sm/2013912-1449770664907-maxresdefault_(14).jpg","duration":77,"publication_date":"2012-04-11T20:48:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-halo-ce-part-1","changefreq":"weekly","video":[{"title":"2012:E78 - The Five: Halo CE (Part 1)","description":"Watch as BioHRay and SpecOps614 deliver 5 Fun Facts about \"Halo: Combat Evolved\"... Enjoy! *Part 2 will be coming very soon*","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-halo-ce-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":174,"publication_date":"2012-04-11T20:36:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-58","changefreq":"weekly","video":[{"title":"2012:E18 - Saint's Row 2 - Motojousting","description":"CFHhateph34r shows you how to motojoust, the sport that's sweeping the nation!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":143,"publication_date":"2012-04-11T20:11:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-54","changefreq":"weekly","video":[{"title":"2012:E17 - GTA IV: The Swingset Glitch","description":"CFHhateph34r shows you the infamous swingset glitch in Grand Theft Auto IV","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":181,"publication_date":"2012-04-11T19:57:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-5","changefreq":"weekly","video":[{"title":"2012:E21 - Sanctuary Teddy Bear Easter Egg","description":"Ray and Geoff show you where to find the hidden teddy bear easter egg in the Sanctuary DLC map for call of duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e763151-c8c0-4375-945d-879ba5ed93a6/sm/ep4619.jpg","duration":80,"publication_date":"2012-04-11T18:31:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-2","changefreq":"weekly","video":[{"title":"2012:E16 - GTA IV - Boarding Pass","description":"Gavin and Geoff take you on a plane ride in Grand Theft Auto IV. Be sure to bring your helmet.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89195106-c4f1-45fd-a65b-d0ee68ed7ecb/sm/ep4617.jpg","duration":136,"publication_date":"2012-04-11T15:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-2","changefreq":"weekly","video":[{"title":"2012:E20 - Cove Easter Egg","description":"Ray and Michael show you how to get the easter egg on the cove map from the Forces of Nature DLC for Gears of War 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08a7d06e-87cc-4e95-b2d5-77eb62f9baa2/sm/ep4616.jpg","duration":161,"publication_date":"2012-04-10T21:08:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-viva-pinata","changefreq":"weekly","video":[{"title":"S1:E18 - A Look Back At: Viva Pinata","description":"Fragger and Geoff take a look back at the destined to be classic, Viva Piata for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-viva-pinata","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b876730c-0cb2-4491-bead-4466b805d7e3/sm/ep4615.jpg","duration":421,"publication_date":"2012-04-10T17:55:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-march-2012","changefreq":"weekly","video":[{"title":"2012:E3 - Best fails of March 2012","description":"Yet again, I subject Jack and Geoff to your most liked videos on the Game Fails channel for March 2012!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-march-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d026d977-71b9-4711-beb5-1103ef7ac5af/sm/1601067-1510081952578-ah_default.jpg","duration":262,"publication_date":"2012-04-10T03:53:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-2","changefreq":"weekly","video":[{"title":"2012:E15 - Week #107","description":"Jack and Geoff are back with some game releases and news from the gaming world. Watch as Jack slowly falls asleep and hurts Gavin again.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f47680b-532b-4f31-979d-6de91f5124fb/sm/ep4613.jpg","duration":316,"publication_date":"2012-04-09T17:51:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-syndicate","changefreq":"weekly","video":[{"title":"2012:E77 - Syndicate","description":"Geoff and Jack show you how to get the Revival Meeting Achievement, as well as how to beat the final boss in Syndicate.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-syndicate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/570bb737-0701-44c1-b96a-eb296a04e2d9/sm/ep4612.jpg","duration":287,"publication_date":"2012-04-09T16:35:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012","changefreq":"weekly","video":[{"title":"2012:E14 - Volume 81","description":"Jack and Geoff have worked their hardest to compile only the best of the Halo: Reach fails available. Enjoy them at their finest. They are delicious, and high in fiber!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4fb76ce-d258-4cc4-a8b8-f43d823a0386/sm/ep4611.jpg","duration":244,"publication_date":"2012-04-06T17:54:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-2","changefreq":"weekly","video":[{"title":"2012:E15 - Assassin's Creed Revelations With Geoff, Gavin, Michael, & Jack","description":"The Achievement Hunter crew takes a stab at the highly addictive \"Wanted\" multiplayer gametype in Assassin's Creed Revelations.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e2b941b-19e8-4575-bd06-8009988c7b2e/sm/ep4610.jpg","duration":678,"publication_date":"2012-04-06T16:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-modern-warfare-3-shotguns-and-shields","changefreq":"weekly","video":[{"title":"2012:E76 - Game Night: Modern Warfare 3 - Shotguns and Shields","description":"Caleb and Geoff show you highlights from our latest Game Night, which took place in Call of Duty: Modern Warfare 3. The next Game Night is at 7pm CST, and is in Halo: Reach. Sign up here: http://achievementhunter.com/forum/viewTopic.phpid=2239178","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-modern-warfare-3-shotguns-and-shields","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7f2e942-e3d1-48fd-b6a2-86810b13ce75/sm/ep4609.jpg","duration":143,"publication_date":"2012-04-06T16:22:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-eggsteroids-e1-e5","changefreq":"weekly","video":[{"title":"2012:E75 - Eggsteroids E1-E5","description":"Geoff and Gavin show you where to find the hidden easter eggs on levels 1-9, 1-20, 2-13, 2-25 and 2-28.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-eggsteroids-e1-e5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba272fbf-019f-45f4-a00a-3755ece4da35/sm/ep4608.jpg","duration":262,"publication_date":"2012-04-06T15:32:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-52","changefreq":"weekly","video":[{"title":"2012:E14 - Scene It? Lights, Camera, Action","description":"Michael puts on his thinking cap in this episode of Rage Quit as he tests his wits with the party trivia game Scene It Lights, Camera, Action.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7d0ef23-b3c0-4e07-a80b-7c75019c3c2d/sm/ep4607.jpg","duration":195,"publication_date":"2012-04-05T22:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cold-cuts-3-star-guide-levels-2-21-to-2-30","changefreq":"weekly","video":[{"title":"2012:E1151 - Cold Cuts 3 Star Guide levels 2-21 to 2-30","description":"Geoff and Gavin show you how to 3 Star the Cold Cuts levels 2-21, 2-22, 2-23, 2-24, 2-25, 2-26, 2-27, 2-28, 2-29 and 2-30 in Angry Birds Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cold-cuts-3-star-guide-levels-2-21-to-2-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cca2f38-2054-4e69-bf0f-f093313c0377/sm/ep4606.jpg","duration":404,"publication_date":"2012-04-05T20:04:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-79","changefreq":"weekly","video":[{"title":"2012:E19 - Aftermath Water Cleaver Easter Egg","description":"Michael and Ray show you how to get the hidden water Cleaver on the Aftermath level of the Forces of Nature DLC for Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-79","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7048993-d3cd-4165-a082-cbcc6189b20c/sm/ep4605.jpg","duration":183,"publication_date":"2012-04-05T16:48:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fileshare-access","changefreq":"weekly","video":[{"title":"2012:E74 - Fileshare Access","description":"Jack and Geoff show you how to access the AchHntrDotCom fileshare in Halo: Reach now that Bungie.net is down!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fileshare-access","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46558a75-64da-41ff-b8e7-4f352ad146d4/sm/ep4603.jpg","duration":49,"publication_date":"2012-04-05T00:31:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-49","changefreq":"weekly","video":[{"title":"2012:E14 - Achievement HORSE #69","description":"Watch and Caleb and Gavin, two undefeated HORSE players go head to head in today's episode. We know it is only a PIG, but trust us, the last map is a nightmare and totally worth it.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a296696a-30a5-419a-83b9-63a52abe67f4/sm/ep4602.jpg","duration":422,"publication_date":"2012-04-04T23:58:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-52","changefreq":"weekly","video":[{"title":"2012:E15 - GTA IV - The Blender","description":"Gav and Geoff show you a slightly different way to travel the city. Make sure to fire that gun!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c46fe84-2e67-4db4-b121-8e43cddbbca5/sm/ep4601.jpg","duration":233,"publication_date":"2012-04-04T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-modern-warfare-3","changefreq":"weekly","video":[{"title":"2012:E73 - The Five: Modern Warfare 3","description":"SpecOps614 here with another episode of \"The Five\"! This week, I dig up a few facts about Call of Duty: Modern Warfare 3. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-modern-warfare-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":136,"publication_date":"2012-04-04T15:29:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-pong","changefreq":"weekly","video":[{"title":"S1:E17 - A Look Back At: Pong","description":"Fragger and Ray take a look back at the game that started it all, PONG.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-pong","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2619e143-af26-4387-9100-98dbcb6c24ec/sm/ep4587.jpg","duration":182,"publication_date":"2012-04-04T14:25:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-orc-raccoon-city-cleanser-strategy","changefreq":"weekly","video":[{"title":"2012:E72 - Resident Evil: ORC - Raccoon City Cleanser Strategy","description":"Watch as maineiacs gives you some tips and strategies on how to survive Racoon City on Professional difficulty.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-orc-raccoon-city-cleanser-strategy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3c60dce-4c5b-49d4-a91a-3d1f37da1138/sm/2013912-1449770521469-maxresdefault_(13).jpg","duration":213,"publication_date":"2012-04-04T14:17:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cold-cuts-3-star-guide-levels-2-11-to-2-20","changefreq":"weekly","video":[{"title":"2012:E1139 - Cold Cuts 3 Star Guide levels 2-11 to 2-20","description":"Geoff and Jack show you how to 3 Star the Cold Cuts levels 2-11, 2-12, 2-13, 2-14, 2-15, 2-16, 2-17, 2-18, 2-19 and 2-20 in Angry Birds Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cold-cuts-3-star-guide-levels-2-11-to-2-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8b42b57-7b4e-4ff6-a562-7381e71ff403/sm/ep4584.jpg","duration":340,"publication_date":"2012-04-04T13:51:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-raccoon-city-mascot","changefreq":"weekly","video":[{"title":"2012:E71 - Raccoon City Mascot","description":"Ray and Michael show you where to find the hidden collectibles to get the Raccoon City Mascot Achievement in Resident Evil: Operation Raccoon City.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-raccoon-city-mascot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65f51cf7-b197-41ec-b8a5-9d9ed50550fb/sm/ep4583.jpg","duration":236,"publication_date":"2012-04-03T14:33:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-47","changefreq":"weekly","video":[{"title":"2012:E14 - Week #106","description":"Jack and Geoff are back with more AHWU and gaming news. Also watch as Jack slowly whittles away at Gavin's will to live!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/516034be-44b5-4a32-b9cf-d06d6d6c8f3d/sm/ep4582.jpg","duration":305,"publication_date":"2012-04-02T22:49:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-85","changefreq":"weekly","video":[{"title":"2012:E14 - Contra With Michael & Gavin","description":"Michael and Gavin go old school as they Let's Play Contra for the Xbox Live Arcade. \n\nWill they need the 30 extra lives to complete it or are they skilled enough to go it without....of course they need the Contra code.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-85","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1041245e-d80c-4879-b105-11848c808d69/sm/ep4580.jpg","duration":1305,"publication_date":"2012-03-31T02:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-49","changefreq":"weekly","video":[{"title":"2012:E13 - Volume 80","description":"Jack and Geoff have worked their hardest to compile only the best of the Halo: Reach fails available. Enjoy them at their finest. They are delicious.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7574c3e-123d-43e4-a61d-043cc9c5b6fb/sm/ep4578.jpg","duration":275,"publication_date":"2012-03-30T23:08:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-duck-hunt","changefreq":"weekly","video":[{"title":"2012:E70 - Game Night: Duck Hunt","description":"Caleb and Geoff play another round of Game Night. This time it's a game called \"Duck Hunt\" in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-duck-hunt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba083de5-3955-4c30-a72d-6ecb86c783ea/sm/ep4577.jpg","duration":160,"publication_date":"2012-03-30T19:54:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-71","changefreq":"weekly","video":[{"title":"2012:E18 - Artillery Lightning Cleaver Easter Egg","description":"Michael and Ray show you how to get the hidden Lightning Cleaver on the Artillery level of the Forces of Nature DLC for Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0e18f5a-8c29-43c6-9609-f371852cce7d/sm/ep4576.jpg","duration":160,"publication_date":"2012-03-30T19:11:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-45","changefreq":"weekly","video":[{"title":"2012:E13 - SWOS (Sensible World Of Soccer)","description":"In a very special episode of Rage Quit, Michael does the unthinkable and plays SWOS (Sensible World Of Soccer) for the Xbox Live Arcade. Yes, that is a sports game. THE MADDNESS!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/707b2ad0-5eeb-405a-95cb-ffa46220838f/sm/ep4567.jpg","duration":268,"publication_date":"2012-03-30T02:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-resident-evil-operation-raccoon-city-tongue-tied-and-down-boy","changefreq":"weekly","video":[{"title":"2012:E69 - Resident Evil: Operation Raccoon City - Tongue Tied and Down Boy","description":"Ray and Michael show you how to get the Tongue Tied and Down Boy Achievements in Resident Evil: Operation Raccoon City for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-resident-evil-operation-raccoon-city-tongue-tied-and-down-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8450a3a-5a1c-4431-988c-686c308451a7/sm/ep4566.jpg","duration":182,"publication_date":"2012-03-29T21:44:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-angry-birds-space-cold-cuts-3-star-guide-levels-2-1-to-2-10","changefreq":"weekly","video":[{"title":"2012:E1130 - Angry Birds Space: Cold Cuts 3 Star Guide levels 2-1 to 2-10","description":"Geoff and Gavin show you how to 3 Star the Cold Cuts levels 2-1, 2-2, 2-3, 2-4, 2-5, 2-6, 2-7, 2-8, 2-9 and 2-10 in Angry Birds Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-angry-birds-space-cold-cuts-3-star-guide-levels-2-1-to-2-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0fa2032-3b30-453c-9f3d-7f59603fe387/sm/ep4564.jpg","duration":349,"publication_date":"2012-03-29T16:47:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-65","changefreq":"weekly","video":[{"title":"2012:E17 - Raven Down Frost Cleaver Easter Egg","description":"Michael and Ray show you how to get the hidden Frost Cleaver on the Raven Down level of the Forces of Nature DLC for Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ed47a80-edd8-475f-83b8-c8ac5972bdfb/sm/ep4563.jpg","duration":201,"publication_date":"2012-03-29T16:11:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-45","changefreq":"weekly","video":[{"title":"2012:E14 - Skyrim - Bowling","description":"Geoff and Gav put on their bowling shoes and go head to head... or cabbage to cabbage.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b09f6603-c6dc-4d39-96ff-20845bb4805c/sm/ep4562.jpg","duration":243,"publication_date":"2012-03-29T01:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-41","changefreq":"weekly","video":[{"title":"2012:E13 - Achievement HORSE #68","description":"Jack and Geoff go at it in another stunning episode of HORSE! Play along with them! Maps are available at http://bit.ly/AHHORSE068","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79ba4d60-20f2-46d3-b654-2668876a7090/sm/ep4561.jpg","duration":465,"publication_date":"2012-03-28T23:05:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-mass-effect-series","changefreq":"weekly","video":[{"title":"2012:E68 - The Five: Mass Effect (Series)","description":"SpecOps614 here with another episode of \"The Five\"! This time, I explore the wonderful world of Mass Effect...Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-mass-effect-series","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":189,"publication_date":"2012-03-28T23:03:02.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-l-a-noire-the-hunch","changefreq":"weekly","video":[{"title":"2012:E67 - L.A Noire - The Hunch","description":"Hightower93 uses his intuition (Thank god for spell check) to unlock 'The Hunch' in L.A Noire.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-l-a-noire-the-hunch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a938bafc-d534-4c7c-8723-b0117b0ce470/sm/2013912-1449770479024-maxresdefault_(12).jpg","duration":241,"publication_date":"2012-03-28T22:22:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-supaa-excellent-send-in-the-clones-the-johnnyguard","changefreq":"weekly","video":[{"title":"2012:E66 - Supaa-Excellent, Send in the Clones, The Johnnyguard","description":"AnEnemyAI and ArrstedAngl show you how to get the Supaa-Excellent!, Send in the Clones, and the Johnnyguard Achievements in the new Saints Row the Third DLC, The Trouble with Clones.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-supaa-excellent-send-in-the-clones-the-johnnyguard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":87,"publication_date":"2012-03-28T22:08:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-59","changefreq":"weekly","video":[{"title":"2012:E16 - Jacinto Imulsion Cleaver Easter Egg","description":"Ray and Michael show you how to get the hidden Imulsion Cleaver on the Jacinto level of the Forces of Nature DLC for Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb53d45e-d54f-430e-9999-1b7ffec47746/sm/ep4544.jpg","duration":268,"publication_date":"2012-03-28T16:01:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-organic-shield-chaos-averted","changefreq":"weekly","video":[{"title":"2012:E65 - Organic Shield, Chaos Averted","description":"Ray and Michael show you how to get the Organic Shield and Chaos Averted Achievements in Resident Evil: Operation Raccoon City for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-organic-shield-chaos-averted","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ffad773-077e-4447-bf6e-12bdd44ac8b8/sm/ep4542.jpg","duration":112,"publication_date":"2012-03-28T14:41:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-44","changefreq":"weekly","video":[{"title":"2012:E28 - Sine Mora","description":"Fragger and Ray take a look at the Xbox Live Arcade game Sine Mora.","player_loc":"https://roosterteeth.com/embed/this-is-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95120654-262f-46d4-a0ed-49082dbff432/sm/ep4541.jpg","duration":327,"publication_date":"2012-03-27T17:17:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-eat-lead-the-return-of-matt-hazard","changefreq":"weekly","video":[{"title":"S1:E16 - A Look Back At: Eat Lead - The Return of Matt Hazard","description":"Fragger and Ray take a look back at Eat Lead: The Return of Matt Hazard on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-eat-lead-the-return-of-matt-hazard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6927f2a3-49da-4fc0-ac6e-4486faa2e1be/sm/ep4540.jpg","duration":358,"publication_date":"2012-03-27T16:43:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pig-bang-3-star-guide-levels-1-21-to-1-30","changefreq":"weekly","video":[{"title":"2012:E1117 - Pig Bang 3 Star Guide levels 1-21 to 1-30","description":"Geoff and Gavin show you how to 3 Star the Pig Bang levels 1-21, 1-22, 1-23, 1-24, 1-25, 1-26, 1-27, 1-28, 1-29, and 1-30 in Angry Birds Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pig-bang-3-star-guide-levels-1-21-to-1-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ca4f88d-073e-4a32-8be1-258a8fdbd13a/sm/ep4539.jpg","duration":351,"publication_date":"2012-03-27T16:01:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-39","changefreq":"weekly","video":[{"title":"2012:E13 - Week #105","description":"Jack and Geoff are back with a weekly dose of goodies and fun funs. Watch this week as Jack murders Gavin!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2dd723e-2344-4b10-851f-0206fde34bd9/sm/ep4538.jpg","duration":308,"publication_date":"2012-03-26T21:23:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-johnnyguard","changefreq":"weekly","video":[{"title":"2012:E64 - The JohnnyGuard","description":"Ray and Michael show how to get The JohnnyGuard Achievement in the new DLC \"The Trouble with Clones\" for Saints Row the Third on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-johnnyguard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf80e080-a506-49d5-b0b6-8d92fec3b199/sm/ep4537.jpg","duration":252,"publication_date":"2012-03-26T18:17:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-69","changefreq":"weekly","video":[{"title":"2012:E13 - Mari0 With Geoff, Gavin, Michael, & Ryan","description":"Join Geoff, Gavin, Michael, & Ryan as they play Mari0 for the first time. Alliances will be made, friendships will be broken, but in the end, only one thing is certain. Gavin sucks.\n\nMari0 combines the original side scrolling 8-bit adventure with the futuristic portal technology developed by Aperture science. Mario with portals.\n\nMari0: http://stabyourself.net/mari0/","player_loc":"https://roosterteeth.com/embed/lets-play-2012-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f900151-ee8c-47f7-999b-e4078cb4b684/sm/ep4536.jpg","duration":1236,"publication_date":"2012-03-26T16:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-super-mario-bros-level-1-1","changefreq":"weekly","video":[{"title":"2012:E63 - Super Mario Bros: Level 1-1","description":"Marshall shows us how to clear level 1-1 in Super Mario Brothers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-super-mario-bros-level-1-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/065ed23e-6532-4318-abf8-2538c592e924/sm/ep4535.jpg","duration":62,"publication_date":"2012-03-26T14:00:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pig-bang-3-star-guide-levels-1-11-to-1-20","changefreq":"weekly","video":[{"title":"2012:E1116 - Pig Bang 3 Star Guide levels 1-11 to 1-20","description":"Geoff and Gavin show you how to 3 Star the Pig Bang levels 1-11, 1-12, 1-13, 1-14, 1-15, 1-16, 1-17, 1-18, 1-19, and 1-20 in Angry Birds Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pig-bang-3-star-guide-levels-1-11-to-1-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/238456fe-8e32-4ed0-935e-68281e03ed55/sm/ep4532.jpg","duration":332,"publication_date":"2012-03-23T20:40:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-assassins-creed","changefreq":"weekly","video":[{"title":"2012:E62 - The Five: Assassin's Creed","description":"SpecOps614 here, with another episode of \"The Five\"!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-assassins-creed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":143,"publication_date":"2012-03-23T18:59:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-36","changefreq":"weekly","video":[{"title":"2012:E12 - Volume 79","description":"Jack and Geoff are at it again, raising their self-worth by making fun of the Halo related missteps of others.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90fab566-7b34-4325-b01f-7f17ff64ca30/sm/ep4515.jpg","duration":220,"publication_date":"2012-03-23T16:39:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-theme-b","changefreq":"weekly","video":[{"title":"2012:E61 - Game Night: Theme B","description":"Caleb and Geoff play another round of Game Night. This time it's a game called \"Theme B\" in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-theme-b","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01207f09-45b7-4cce-b4f1-26ac1054436c/sm/ep4514.jpg","duration":147,"publication_date":"2012-03-23T15:56:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-supa-excellent-send-in-the-clones","changefreq":"weekly","video":[{"title":"2012:E60 - Supa-Excellent!, Send in the Clones","description":"Ray and Michael show how to get the Supa-Excellent! and Send in the Clones Achievements in the new DLC \"The Trouble with Clones\" for Saints Row the Third.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-supa-excellent-send-in-the-clones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51989086-2ef4-4c48-b078-ba2f9f9dbdd7/sm/ep4513.jpg","duration":113,"publication_date":"2012-03-23T15:36:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-33","changefreq":"weekly","video":[{"title":"2012:E12 - Ninja Gaiden 3","description":"In this week's explosive episode of Rage Quit, Michael trains in Ninja Gaiden 3 as he once again attempts to master his technique and fully realize the way of the ninja.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd8ce58d-9da9-4ed5-92f0-3e459b3d0cff/sm/ep4512.jpg","duration":203,"publication_date":"2012-03-22T23:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pig-bang-3-star-guide-levels-1-1-to-1-10","changefreq":"weekly","video":[{"title":"2012:E1100 - Pig Bang 3 Star Guide levels 1-1 to 1-10","description":"Geoff and Gavin show you how to 3 Star the Pig Bang levels 1-1 to 1-10 in Angry Birds Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pig-bang-3-star-guide-levels-1-1-to-1-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecd82c31-58c8-4d1b-a7ba-996eb38ed30c/sm/ep4511.jpg","duration":301,"publication_date":"2012-03-22T20:03:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-33","changefreq":"weekly","video":[{"title":"2012:E27 - Resident Evil: Operation Raccoon City","description":"Ray and Michael take a look at Resident Evil: Operation Raccoon City for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87c4f46d-de1b-4542-aafc-0e730118ad88/sm/ep4510.jpg","duration":462,"publication_date":"2012-03-22T17:55:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-34","changefreq":"weekly","video":[{"title":"2012:E13 - Skyrim - Trick Shot","description":"Geoff and Gav perform some ground-shattering trick shots using a bucket, a cabbage, a small amount of magic and a large amount of skill. Bonus behind the scenes clip included!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3eeb4cf9-9a33-4ed9-9d0e-ff9adb295c48/sm/ep4509.jpg","duration":242,"publication_date":"2012-03-21T20:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-31","changefreq":"weekly","video":[{"title":"2012:E12 - Achievement HORSE #67","description":"Jack and Gus go head to head in the newest episode of Achievement HORSE. Who will win in this epic battle All maps will be available on the AchHntrDotCom gamertag's fileshare.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bed19c70-dea3-4cbc-9f0c-43ff4d7bb8fd/sm/ep4507.jpg","duration":326,"publication_date":"2012-03-21T18:43:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-eye-of-the-bee-holder-sting-operation","changefreq":"weekly","video":[{"title":"2012:E59 - Eye of the Bee-Holder, Sting Operation","description":"Ray and Michael show you how to get the Eye of the Bee-Holder and Sting Operation Achievements in the new The Trouble With Clones DLC for Saints Row the Third.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-eye-of-the-bee-holder-sting-operation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9cdac58-1338-49a1-b47f-aad9aac8fe59/sm/ep4506.jpg","duration":158,"publication_date":"2012-03-21T17:07:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-30","changefreq":"weekly","video":[{"title":"2012:E26 - Silent Hill: Downpour","description":"Michael and Gavin confront their fears and take a look at Silent Hill: Downpour for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc9e15b3-f5b6-4cdf-8618-44f0d1574a58/sm/ep4505.jpg","duration":413,"publication_date":"2012-03-20T22:12:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-b-a-m-f-public-enemy-1","changefreq":"weekly","video":[{"title":"2012:E58 - B.A.M.F., Public Enemy #1","description":"Ray and Geoff show you how to get the B.A.M.F. and Public Enemy #1 Achievements in the new DLC for Saints Row the Third, The Trouble With Clones.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-b-a-m-f-public-enemy-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ae2486e-1d13-4bb1-9d26-6cee7c5ddeb0/sm/ep4504.jpg","duration":199,"publication_date":"2012-03-20T18:57:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ice-in-your-veins","changefreq":"weekly","video":[{"title":"2012:E57 - Ice in Your Veins","description":"Ray and Mike show you how to get the Ice in Your Veins Achievement in the new DLC for Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ice-in-your-veins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f50f0f8a-ca39-457e-a909-d7e985d6cc8c/sm/ep4503.jpg","duration":369,"publication_date":"2012-03-20T14:32:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-30","changefreq":"weekly","video":[{"title":"2012:E12 - Week #104","description":"Jack and Geoff are back with more gaming news. Don't forget to send in your entry for the Soul Calibur 5 contest with prizes from InsertCoinClothing.com ! Hooray! Pay attention to when Jack forgets what he was saying in the news!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca00f987-8fb9-47ad-8d54-1e74418c3dfa/sm/ep4501.jpg","duration":269,"publication_date":"2012-03-19T22:41:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-skilled-negotiator-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1099 - Skilled Negotiator Achievement Guide","description":"Ray and Mike show you how to get the Skilled Negotiator Achievement in the new DLC for Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-skilled-negotiator-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b4e0b6a-1b0d-48e7-84c4-3ac7a3c59c2b/sm/ep4500.jpg","duration":283,"publication_date":"2012-03-19T15:30:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-55","changefreq":"weekly","video":[{"title":"2012:E12 - Mass Effect 3 With Geoff, Gav, & Michael","description":"Geoff, Gav, & Michael play the Mass Effect 3 cooperative multiplayer mode for the first time and fail miserably at it over and over again.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc37a766-037f-4000-8430-6d26645db3b8/sm/ep4499.jpg","duration":1795,"publication_date":"2012-03-16T21:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-31","changefreq":"weekly","video":[{"title":"2012:E11 - Volume 78","description":"Jack and Geoff are back with the best in Halo failure for the week. Watch and enjoy with pleasure.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/344db219-1d43-4bf4-989e-bb1ad9732fc5/sm/ep4498.jpg","duration":240,"publication_date":"2012-03-16T21:00:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-53","changefreq":"weekly","video":[{"title":"2012:E11 - TrialsHD with Jack, Joel & Burnie","description":"Jack recently tried playing the Diabolic level in TrialsHD, one of the hardest in the game. This is his experience along the way as Burnie and Joel \"help\" him out in the background. Enjoy!","player_loc":"https://roosterteeth.com/embed/lets-play-2012-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92cb89bf-0662-431e-8b07-d95043edec75/sm/ep4496.jpg","duration":953,"publication_date":"2012-03-16T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sunday-driver","changefreq":"weekly","video":[{"title":"2012:E56 - Sunday Driver","description":"Caleb and Geoff have themselves another game night. This time they check out \"Sunday Driver\" in Halo: Reach! Play along, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sunday-driver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c6b0329-c5ee-4726-81fb-b6015924bd2a/sm/ep4493.jpg","duration":140,"publication_date":"2012-03-16T18:49:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-sonic-cd","changefreq":"weekly","video":[{"title":"2012:E55 - The Five: Sonic CD","description":"SpecOps614 and BioHRay speed through (not really) an episode of \"The Five\" on Sonic CD! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-sonic-cd","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":250,"publication_date":"2012-03-16T17:58:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-26","changefreq":"weekly","video":[{"title":"2012:E11 - Serious Sam HD: TFE","description":"Michael gets serious on this week's Rage Quit as he plays Serious Sam HD: The First Encounter.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3fbba2e-9b41-4a72-be9e-1045e48e6fc8/sm/ep4483.jpg","duration":275,"publication_date":"2012-03-15T22:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rocky-road","changefreq":"weekly","video":[{"title":"2012:E54 - Rocky Road","description":"Geoff and Michael grab the \"Rocky Road\" achievement in SSX. Sloth would be happy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rocky-road","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28bd8b3f-f46a-42a3-8808-bbbb5dd69e1d/sm/ep4481.jpg","duration":187,"publication_date":"2012-03-15T18:26:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-a-bakers-dozen","changefreq":"weekly","video":[{"title":"2012:E53 - A Baker's Dozen","description":"Ray and Mike from Achievement Hunter pick up the \"A Baker's Dozen\" achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-a-bakers-dozen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d89851b-8119-4758-9d93-f6af884fcda8/sm/ep4480.jpg","duration":158,"publication_date":"2012-03-15T17:51:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-25","changefreq":"weekly","video":[{"title":"2012:E11 - Achievement HORSE #66","description":"Jack and Geoff go head to head in another rousing match. This week they take a stab at the maps that Gavin and Michael had last week. Will they do better or worse","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ca0d48a-751f-4ac9-b589-91be7ba8114e/sm/ep4479.jpg","duration":343,"publication_date":"2012-03-14T19:49:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-27","changefreq":"weekly","video":[{"title":"2012:E12 - Skyrim - Unicorn","description":"Gav and Michael dramatically increase the Unicorn population in the land of Skyrim.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0619b96d-1134-47bc-b19d-d8f678e6440e/sm/ep4478.jpg","duration":149,"publication_date":"2012-03-14T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-not-on-my-watch","changefreq":"weekly","video":[{"title":"2012:E52 - Not On My Watch","description":"Ray and Mike show how to get the Not On My Watch Achievement in the new DLC for Call of Duty: Modern Warfare 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-not-on-my-watch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2b7af5d-4c1c-4e6a-bbba-89dcc3bae6da/sm/ep4477.jpg","duration":243,"publication_date":"2012-03-14T18:08:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-24","changefreq":"weekly","video":[{"title":"2012:E25 - Fifa Street","description":"Jack and Geoff check out Fifa Street. After a long break in the street games, will this new soccer title be awesome","player_loc":"https://roosterteeth.com/embed/this-is-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57ec9b30-830f-45a0-bea5-09d1c8c7947f/sm/ep4474.jpg","duration":351,"publication_date":"2012-03-13T21:21:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-speeds-my-game","changefreq":"weekly","video":[{"title":"2012:E51 - Speed's My Game","description":"Kaisonic speeds through the first level in less than 60 seconds to get the \"Speed's My Game\" achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-speeds-my-game","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/840ef615-c583-442e-b22c-3346a2828b67/sm/2013912-1449769813488-maxresdefault_(11).jpg","duration":165,"publication_date":"2012-03-13T20:48:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-its-cold-out-here","changefreq":"weekly","video":[{"title":"2012:E50 - It's Cold Out Here","description":"poultergeist show us how to Survive Cold Deadly Decent Without equipping Solar Panels in pursuit of the achievement, It's Cold Out Here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-its-cold-out-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":196,"publication_date":"2012-03-13T20:29:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-its-cold-out-here-ssx","changefreq":"weekly","video":[{"title":"2012:E49 - It's Cold Out Here - SSX","description":"Masshalogear hits the Antarctic slopes to bring you the Achievement 'It's Cold Out Here' for 25g.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-its-cold-out-here-ssx","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":205,"publication_date":"2012-03-13T20:24:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-37","changefreq":"weekly","video":[{"title":"2012:E15 - Black Box Easter Eggs","description":"Ray and Geoff show you where to find a few easter eggs in Call of Duty: Modern Warfare 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f343cd2-c2eb-4ca6-9c94-e0a6453c319e/sm/ep4463.jpg","duration":106,"publication_date":"2012-03-13T19:30:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-elevator-repair-service","changefreq":"weekly","video":[{"title":"2012:E48 - Elevator Repair Service","description":"Ray and Mike show you how to get the pseudo-missable Achievement \"Elevator Repair Service\" for I Am Alive on Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-elevator-repair-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3611b626-9bad-40af-975a-3312c355be05/sm/ep4462.jpg","duration":160,"publication_date":"2012-03-13T17:59:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-22","changefreq":"weekly","video":[{"title":"2012:E11 - Week #103","description":"Jack and Geoff (and sometimes Gavin) deliver you some of the freshest news and gaming coverage available. Stay tuned all the way to the end to learn how you can win some cool prizes from http://insertcoinclothing.com/ and Achievement Hunter! Don't forget to like us on Facebook at http://facebook.com/AchievementHunter","player_loc":"https://roosterteeth.com/embed/ahwu-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de9d5ad1-3fe6-445d-8a54-3949bc28c8d8/sm/ep4461.jpg","duration":342,"publication_date":"2012-03-12T22:06:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-some-tomatoes-for-her","changefreq":"weekly","video":[{"title":"2012:E47 - Some Tomatoes For Her","description":"Ray and Mike show you where to find the tomatoes needed to get the \"Some Tomatoes For Her\" Achievement in I Am Alive for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-some-tomatoes-for-her","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3ff7611-3de4-47da-ba19-ce9b70d5ca23/sm/ep4460.jpg","duration":189,"publication_date":"2012-03-12T15:00:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-41","changefreq":"weekly","video":[{"title":"2012:E10 - MLB2k12 with Geoff and Gav","description":"Geoff teaches Gavin the rules of baseball in MLB 2K12. Things seemed to be going smoothly until Geoff shit his pants while recording this commentary.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39814267-228a-48f4-97d0-e2fe0082e448/sm/ep4459.jpg","duration":1799,"publication_date":"2012-03-12T14:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-run","changefreq":"weekly","video":[{"title":"2012:E46 - Game Night: Halo Reach - Run!","description":"Every few weeks, Geoff and Caleb get together with the Achievement Hunter community to play some of the coolest and most original custom maps and gametypes, in console gaming. This week, they give \"Run!\" a try in Halo Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d95bb7ee-35e6-417c-8daf-b1ce6226a471/sm/ep4458.jpg","duration":159,"publication_date":"2012-03-09T18:51:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-22","changefreq":"weekly","video":[{"title":"2012:E10 - Volume 77","description":"Jack and Geoff present you with ten moments in Halo gaming you can use to feel better about yourself.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/948c3cf8-27ba-4c1d-8b99-a12bdf9c5725/sm/ep4457.jpg","duration":260,"publication_date":"2012-03-09T14:41:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-21","changefreq":"weekly","video":[{"title":"2012:E10 - Balloon Guard","description":"This week on Rage Quit, Michael decides to take it easy with Balloon Guard, the colorful and fun loving Xbox Live Indie Game.\n\nSurely he won't POP, over this one...get it","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/100a65d8-8931-42ed-b84a-8da7de2349a7/sm/ep4456.jpg","duration":192,"publication_date":"2012-03-09T00:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-19","changefreq":"weekly","video":[{"title":"2012:E24 - Street Fighter X Tekken","description":"Geoff and Gavin take a look at Street Fighter X Tekken. Fight!","player_loc":"https://roosterteeth.com/embed/this-is-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/744d6290-fa0e-44b7-b0b8-c5a4632eaaee/sm/ep4455.jpg","duration":487,"publication_date":"2012-03-08T22:09:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-18","changefreq":"weekly","video":[{"title":"2012:E23 - I Am Alive","description":"Ray and Mike take a look at the Xbox Live Arcade game I Am Alive.","player_loc":"https://roosterteeth.com/embed/this-is-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4752ff9-4752-4de4-8db1-232859754218/sm/ep4454.jpg","duration":364,"publication_date":"2012-03-08T20:25:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-shepard-is-kind-of-a-jerk","changefreq":"weekly","video":[{"title":"2012:E45 - Shepard is kind of a jerk","description":"Fragger shows us a few of Commander Shepard's... not-so-nice moments across the Mass Effect trilogy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-shepard-is-kind-of-a-jerk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ceb0e9a-74f1-49e4-9069-a79db5cd612c/sm/ep4453.jpg","duration":96,"publication_date":"2012-03-08T20:17:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-21","changefreq":"weekly","video":[{"title":"2012:E11 - Halo Reach - Best of Bum Bait","description":"Geoff and Gav follow up last week's Bum Bait video with the best of your submissions.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71b11f9d-4030-45fb-a4a6-26b4fbffea74/sm/ep4451.jpg","duration":90,"publication_date":"2012-03-07T22:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-33","changefreq":"weekly","video":[{"title":"2012:E14 - Space Hamster Easter Egg","description":"Geoff and Gavin take a trip through Mass Effect 2 and 3 to show you the Space Hamster. What's he been doing since Mass Effect 2 Watch to find out.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c66c41de-5427-43f6-905e-3bf399dd7c6a/sm/ep4450.jpg","duration":179,"publication_date":"2012-03-07T21:23:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-17","changefreq":"weekly","video":[{"title":"2012:E22 - Mass Effect 3","description":"Geoff and Jack take a look at Mass Effect 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/this-is-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9b207c0-0b9f-4871-a610-50bca8174b89/sm/ep4449.jpg","duration":449,"publication_date":"2012-03-07T20:35:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-19","changefreq":"weekly","video":[{"title":"2012:E10 - Achievement HORSE #65","description":"Gavin and Michael face off in HORSE. Can anyone beat this British prick All maps are available at http://bit.ly/AHHORSE064","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5133ece5-c279-4c7f-9e91-910ab1269661/sm/ep4446.jpg","duration":539,"publication_date":"2012-03-07T15:55:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-10-best-video-game-dick-punches","changefreq":"weekly","video":[{"title":"2012:E44 - 10 Best Video Game Dick Punches","description":"Geoff and Gavin show ten of their favorite dick punching moments in Xbox 360 video games.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-10-best-video-game-dick-punches","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf573cb6-526f-466c-8716-fd0cc55b9c94/sm/ep4443.jpg","duration":184,"publication_date":"2012-03-06T19:15:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-mass-effect-2","changefreq":"weekly","video":[{"title":"S1:E14 - A Look Back At: Mass Effect 2","description":"Fragger and Ray take a look back at the already classic, Mass Effect 2 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-mass-effect-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db4f918a-acde-49ed-b225-c363842fc91f/sm/ep4440.jpg","duration":486,"publication_date":"2012-03-06T16:38:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-february-2012","changefreq":"weekly","video":[{"title":"2012:E2 - Best fails of February 2012","description":"The 2nd installment of the best fails of the month voted on by you! Be sure to Like your favorite Game Fails videos this month.","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-february-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e086f144-0420-48b3-9451-7c0503e2688c/sm/ep4439.jpg","duration":217,"publication_date":"2012-03-06T15:47:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-17","changefreq":"weekly","video":[{"title":"2012:E10 - Week #102","description":"Jack and Geoff are back with another week of gaming news and information. Watch and learn more about Assassin's Creed III, Mass Effect 3 and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e39bdee-c97d-493d-82ec-3fb6fbfb72f4/sm/ep4436.jpg","duration":258,"publication_date":"2012-03-05T19:51:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-14","changefreq":"weekly","video":[{"title":"2012:E21 - Nexuiz","description":"Fragger and Caleb take a look at the arena shooter for Xbox Live Arcade, Nexuiz.","player_loc":"https://roosterteeth.com/embed/this-is-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f37b2387-4954-47ec-9ca7-e01dfc100590/sm/ep4433.jpg","duration":500,"publication_date":"2012-03-02T17:56:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-31","changefreq":"weekly","video":[{"title":"2012:E9 - Call of Duty: MW3 - Spec Ops With Geoff & Gavin - Part 1","description":"Gavin and Geoff play the \"Hostage Taker\" Spec Ops mission in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49540cb8-69a8-487e-91da-c8b4b92ef69a/sm/ep4432.jpg","duration":769,"publication_date":"2012-03-02T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-16","changefreq":"weekly","video":[{"title":"2012:E9 - Volume 76","description":"Geoff and Jack are back with another group of ten of the funniest fails in Halo: Reach for the week!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f61b597-15eb-4ba9-b8f2-57ee9fef47e5/sm/ep4431.jpg","duration":214,"publication_date":"2012-03-02T16:12:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-night-halo-reach-jump-rope","changefreq":"weekly","video":[{"title":"2012:E43 - Game Night: Halo Reach - Jump Rope","description":"Every few weeks, Geoff and Caleb get together with the Achievement Hunter community to play some of the coolest and most original custom maps and gametypes, in console gaming. This week, they give \"jump rope\" a try in Halo Reach. You can get the game type here: http://www.bungie.net/Stats/Reach/FileDetails.aspxfid=18944563&player=Darth%20Human","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-night-halo-reach-jump-rope","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe00393d-0b63-4fa0-8698-d0dac914dd0b/sm/ep4430.jpg","duration":178,"publication_date":"2012-03-02T16:05:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-15","changefreq":"weekly","video":[{"title":"2012:E9 - Joe Danger: Special Edition","description":"Bones get broken and battered on this week's Rage Quit as Michael channels his inner Evel Knievel and plays Joe Danger: Special Edition for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f271f2b8-25d2-4ece-8e25-c6fbaf599c4c/sm/ep4429.jpg","duration":194,"publication_date":"2012-03-02T05:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-fallout-new-vegas","changefreq":"weekly","video":[{"title":"2012:E42 - The Five - Fallout: New Vegas","description":"SpecOps614 visits the wasteland to give you 5 fun facts about Fallout: New Vegas! Want me to cover your favorite game Leave comments on what I should do next!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-fallout-new-vegas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":148,"publication_date":"2012-03-02T02:01:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-apple-theory-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1073 - The Apple Theory Achievement Guide","description":"Geoff and Gavin show you how to get \"The Apple Theory\" Achievement in SSX for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-apple-theory-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/552c5b2f-b53c-4e33-bfcf-824115d3f11f/sm/ep4424.jpg","duration":166,"publication_date":"2012-03-01T15:49:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ice-to-see-you-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1072 - Ice to see you Achievement Guide","description":"Geoff and Gavin show how to get the Ice To See You Achievement in SSX for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ice-to-see-you-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43e7dfb0-6e80-49b6-9e47-5b5400ae3250/sm/ep4423.jpg","duration":153,"publication_date":"2012-02-29T21:55:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-14","changefreq":"weekly","video":[{"title":"2012:E9 - Achievement HORSE #64","description":"Jack and Gavin face off to see if anyone can beat this Brit kid down. Will Jack be the victor All maps are available at http://bit.ly/AHHORSE064","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06c53872-8398-4087-90c0-1f1e18518a28/sm/ep4422.jpg","duration":392,"publication_date":"2012-02-29T21:28:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-13","changefreq":"weekly","video":[{"title":"2012:E10 - Halo Reach - Bum Bait","description":"Gavin and Geoff show you the latest craze in Halo Reach. It's called \"Bum Bait\".","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c74f0aa-d416-47dd-859e-af7da269e8ba/sm/ep4420.jpg","duration":143,"publication_date":"2012-02-29T14:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-tomb-raider-legend","changefreq":"weekly","video":[{"title":"S1:E12 - A Look Back At: Tomb Raider Legend","description":"Fragger and Ray take a look back at the Xbox 360 game, Tomb Raider Legend.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-tomb-raider-legend","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98594069-a2b6-45d5-bcfa-6ed347b4aa0e/sm/ep4418.jpg","duration":382,"publication_date":"2012-02-28T20:33:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tree-hugger-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1071 - Tree Hugger Achievement Guide","description":"Geoff and Gavin show you an easy way to get the Tree Hugger Achievement in SSX for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tree-hugger-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a42266b-b272-49db-9d34-41ded8ca719d/sm/ep4417.jpg","duration":131,"publication_date":"2012-02-28T19:11:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-missile-command-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1070 - Missile Command Achievement Guide","description":"Jack and Geoff grab the \"Missile Command\" achievement in Syndicate. For those of you who don't know, Missile Command is an older video game. The more you know.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-missile-command-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fe5cbd4-2483-4e08-a966-fb858b0fab54/sm/ep4415.jpg","duration":121,"publication_date":"2012-02-27T23:10:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-15","changefreq":"weekly","video":[{"title":"2012:E9 - Week #101","description":"Jack and Geoff are back with AHWU #101! Check out the news and information they provide and also check out RTX 2012 at http://www.rtxevent.com/","player_loc":"https://roosterteeth.com/embed/ahwu-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e1cd91a-c3ad-44e9-b831-ba50e32ddc21/sm/ep4414.jpg","duration":305,"publication_date":"2012-02-27T22:42:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-zombies-must-die-cant-touch-this","changefreq":"weekly","video":[{"title":"2012:E41 - All Zombies Must Die - Can't touch this","description":"BigzZ nX walking you through how to get the \"Can't touch this\" achievement All Zombies Must Die!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-zombies-must-die-cant-touch-this","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a33ec3c3-3d6a-47e4-b4ea-31edb6adcb43/sm/2013912-1449769729440-maxresdefault_(10).jpg","duration":209,"publication_date":"2012-02-27T03:12:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-harry-potter-and-the-deathly-hallows-pt-1-collectibles-part-3","changefreq":"weekly","video":[{"title":"2012:E40 - Harry Potter & the Deathly Hallows, Pt 1-Collectibles Part 3","description":"PouringRayn and BioHRay break out their wands to show you where to find all the Potterwatch Passwords, Quibblers, and Daily Prophets in Harry Potter and the Deathly Hallows, Part 1","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-harry-potter-and-the-deathly-hallows-pt-1-collectibles-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d98d9f4b-140a-4ab6-b832-d05bf6ca5fa8/sm/2013912-1449769706437-maxresdefault_(9).jpg","duration":306,"publication_date":"2012-02-27T02:40:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-harry-potter-and-the-deathly-hallows-pt-1-collectibles-part-2","changefreq":"weekly","video":[{"title":"2012:E39 - Harry Potter & the Deathly Hallows, Pt 1-Collectibles Part 2","description":"PouringRayn and BioHRay break out their wands to show you where to find all the Potterwatch Passwords, Quibblers, and Daily Prophets in Harry Potter and the Deathly Hallows, Part 1","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-harry-potter-and-the-deathly-hallows-pt-1-collectibles-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/741e7d91-65c2-4ad5-aac8-e3275409d5ac/sm/2013912-1449769673230-maxresdefault_(8).jpg","duration":333,"publication_date":"2012-02-27T02:31:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-harry-potter-and-the-deathly-hallows-part-1-collectibles-pa","changefreq":"weekly","video":[{"title":"2012:E38 - Harry Potter & the Deathly Hallows, Part 1 - Collectibles Pa","description":"PouringRayn and BioHRay break out their wands to show you where to find all the Potterwatch Passwords, Quibblers, and Daily Prophets in Harry Potter and the Deathly Hallows, Part 1","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-harry-potter-and-the-deathly-hallows-part-1-collectibles-pa","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0a72aaa-2fb6-45dd-8d23-dfcbf449ff66/sm/2013912-1449769645971-maxresdefault_(7).jpg","duration":329,"publication_date":"2012-02-27T02:23:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-21","changefreq":"weekly","video":[{"title":"2012:E8 - Saints Row The Third With Geoff & Michael - Part 12","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. If you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40ae7d01-b481-436b-abcc-ec6d597d6b8d/sm/ep4404.jpg","duration":1546,"publication_date":"2012-02-24T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-70","changefreq":"weekly","video":[{"title":"2012:E17 - Alan Wake's American Nightmare","description":"Hightower93 faces his fear of the darkness to show you Alan Wake's American Nightmare.","player_loc":"https://roosterteeth.com/embed/this-is-2012-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e2e6758-3ec7-4cc7-9496-a8ed584dced4/sm/2013912-1449769590390-maxresdefault_(5).jpg","duration":335,"publication_date":"2012-02-24T17:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-11","changefreq":"weekly","video":[{"title":"2012:E8 - Volume 75","description":"Jack and Geoff watch people playing Halo: Reach make oopsies and uhohs!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc6f7d28-65c5-42ba-8fa9-059db27ed7ad/sm/ep4399.jpg","duration":310,"publication_date":"2012-02-24T14:36:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-10","changefreq":"weekly","video":[{"title":"2012:E8 - Left 4 Dead 2","description":"This week on Rage Quit, Michael is forced to play Left 4 Dead 2 with Achievement Hunter intern, Mike. Side note: Mike has never played Left 4 Dead before.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb775e20-7eaf-4d7e-9b82-ea2f6c2ea4d7/sm/ep4398.jpg","duration":230,"publication_date":"2012-02-24T03:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-split-splat-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1064 - Split Splat! Achievement Guide","description":"Michael and Geoff show you how to get the \"Split Splat!\" achievement in Alan Wake's American Nightmare for the Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-split-splat-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcb9d0f8-a435-4f37-9ca9-ae03d85e73a4/sm/ep4397.jpg","duration":108,"publication_date":"2012-02-23T22:39:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-first-contact-lights-camera-action","changefreq":"weekly","video":[{"title":"2012:E37 - First Contact, Lights! Camera! Action!","description":"Ray and Michael show you how to get the First Contact and Lights! Camera! Action! Achievements in the Gangstas in Space DLC for Saints Row: The Third on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-first-contact-lights-camera-action","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/760c9177-7f33-4ad0-adc2-f622f6733148/sm/ep4396.jpg","duration":256,"publication_date":"2012-02-23T22:22:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-every-bullet-counts-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1059 - Every Bullet Counts Achievement Guide","description":"Jack and Geoff show you how to get the Every Bullet Counts Achievement in Syndicate for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-every-bullet-counts-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efc04399-ff33-4156-b828-6c214c1ca36e/sm/ep4390.jpg","duration":172,"publication_date":"2012-02-23T15:27:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-warpath-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1058 - Warpath Achievement Guide","description":"Geoff and Gavin show you where and how to get the Warpath Achievement in Syndicate for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-warpath-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50943a80-a793-4c89-b40a-0d795e513c89/sm/ep4389.jpg","duration":71,"publication_date":"2012-02-23T14:35:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-7","changefreq":"weekly","video":[{"title":"2012:E8 - Achievement HORSE #63","description":"This week's edition of HORSE will be HORSE proper. We promise. Geoff takes on Gavin in a battle of cultures.","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3280c50-c62b-48a2-b4eb-055c547d2740/sm/ep4387.jpg","duration":301,"publication_date":"2012-02-22T23:41:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-7","changefreq":"weekly","video":[{"title":"2012:E9 - Saint's Row 3 - Bumper Cars","description":"Geoff and Michael play a friendly game of Bumper Cars (of death!) in Saints Row: The Third for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b99d9ea-d5f2-430a-8f77-4c1b88de1939/sm/ep4386.jpg","duration":198,"publication_date":"2012-02-22T23:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-do-my-own-stunts-union-buster","changefreq":"weekly","video":[{"title":"2012:E36 - I Do My Own Stunts, Union Buster","description":"Ray and Michael show you how to get the I Dow My Own Stunts and Union Buster Achievements in the Gangstas in Space DLC for Saints Row the Third on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-do-my-own-stunts-union-buster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a65b817-3891-4857-acd1-b7e0c354478c/sm/ep4385.jpg","duration":159,"publication_date":"2012-02-22T18:59:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-top-marks-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1057 - Top Marks Achievement Guide","description":"Geoff and Gavin show how to get a perfect score on the three training levels in Syndicate, to get the Top Marks Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-top-marks-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a7b2e92-c43b-4821-9409-4c121f637012/sm/ep4384.jpg","duration":151,"publication_date":"2012-02-22T15:21:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-brink-they-never-knew-what-hit-them","changefreq":"weekly","video":[{"title":"2012:E35 - Brink - They Never Knew What Hit Them","description":"In this video, Preston will show you how to get They Never Knew What Hit Them in Brink for 20 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-brink-they-never-knew-what-hit-them","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d27e8e62-ce9a-447a-88e6-edb6818c7c77/sm/2013912-1449769559970-maxresdefault_(4).jpg","duration":96,"publication_date":"2012-02-21T23:45:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scrap-metal-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1051 - Scrap Metal Achievement Guide","description":"Jries shows you how to get the Battlefield 3 achievement 'The Profesional.'","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scrap-metal-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":80,"publication_date":"2012-02-21T23:24:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-professional-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1050 - The Professional Achievement Guide","description":"Jries shows you how to get the Battlefield 3 achievement 'The Profesional.'","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-professional-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":225,"publication_date":"2012-02-21T23:22:02.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-top-shot-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1049 - Top Shot Achievement Guide","description":"Kpoissant and NAGPxCreator show you how to get the achievement, Top Shot, in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-top-shot-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":82,"publication_date":"2012-02-21T23:17:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dive-bomber-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1048 - Dive Bomber Achievement Guide","description":"Kpoissant and NAGPxCreator made a short video showing you how to get the achievement, Dive Bomber, in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dive-bomber-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":34,"publication_date":"2012-02-21T23:13:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wanted-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1047 - Wanted Achievement Guide","description":"In this video, Preston and BioHRay will show you how to get Wanted in Skyrim for 10 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wanted-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":109,"publication_date":"2012-02-21T22:50:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-artificer-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1046 - Artificer Achievement Guide","description":"Styx and BSed show you how to get the \"Artificer\" achievement in Skyrim without leaving Whiterun","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-artificer-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":135,"publication_date":"2012-02-21T22:43:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-moose-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1045 - The Moose Achievement Guide","description":"Hide and Seek champion Hightower93 shows you how to tail Candy Edwards without using cover or going incognito to earn 'The Moose' achievement in Vice case 'The Set-Up' in L.A Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-moose-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":345,"publication_date":"2012-02-21T22:36:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-third-degree-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1044 - The Third Degree Achievement Guide","description":"Hightower93 shows you how to be a super detective and find the truth, the whole truth, nothing but the truth to earn the 3rd degree achievement in Vice case 'The Set-Up' in L.A Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-third-degree-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":224,"publication_date":"2012-02-21T22:29:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-7","changefreq":"weekly","video":[{"title":"2012:E10 - Call of Duty: Modern Warfare 3 - Overwatch Easter Eggs","description":"Ray and Geoff show you where to find a hidden chicken and another surprise in the newly release Overwatch map for Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2952f82e-5c41-45b0-af61-42924015ee10/sm/ep4368.jpg","duration":127,"publication_date":"2012-02-21T22:18:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-prey","changefreq":"weekly","video":[{"title":"S1:E11 - A Look Back At: Prey","description":"Fragger and Ray take a look back at the 3D Realms title \"Prey\" for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-prey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/176aa1cd-0a8d-4116-9890-4e8727b8cc96/sm/ep4367.jpg","duration":427,"publication_date":"2012-02-21T19:45:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-l-a-noire","changefreq":"weekly","video":[{"title":"2012:E34 - The Five: L.A. Noire","description":"Here's episode 2 of \"The Five\". In this episode, SpecOps614 does some detective work and discovers 5 Fun Facts about L.A. Noire!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-l-a-noire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":136,"publication_date":"2012-02-21T19:12:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-3","changefreq":"weekly","video":[{"title":"2012:E8 - Week #100","description":"Jack and Geoff team up for the 100th episode of Achievement Hunter Weekly Update! Watch them as they talk about all kinds of news and gaming. But sure to buy tickets to RTX at http://rtxevent.com/ and watch for more!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2198af9e-ae87-4af4-9478-4196d770748a/sm/ep4365.jpg","duration":310,"publication_date":"2012-02-21T00:06:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-2","changefreq":"weekly","video":[{"title":"2012:E16 - Syndicate","description":"Jack and Geoff take a look at this rebooted FPS and go all futuristic on it. Enjoy their peek at Syndicate.","player_loc":"https://roosterteeth.com/embed/this-is-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e3825fd-7318-4c23-91fb-48e6f89fa3d0/sm/ep4363.jpg","duration":360,"publication_date":"2012-02-20T22:19:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-3","changefreq":"weekly","video":[{"title":"2012:E9 - Singing Fish Easter Egg","description":"Michael and Geoff show you how to find the Singing Fish Easter Egg in the Fenix Rising DLC for Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce860897-ae1d-4ee2-833c-6179c83e0967/sm/ep4362.jpg","duration":211,"publication_date":"2012-02-20T22:04:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-3","changefreq":"weekly","video":[{"title":"2012:E7 - Saints Row The Third With Geoff & Michael - Part 11","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5b34815-7fe4-4995-80e9-01aa4ba2b296/sm/ep4360.jpg","duration":1621,"publication_date":"2012-02-18T01:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-romantic-decisions-decisions-and-the-bird-is-the-word","changefreq":"weekly","video":[{"title":"2012:E33 - Romantic, Decisions Decisions, & The Bird is the Word","description":"Michael and Geoff show you how to get the \"Romantic\", \"Decisions, Decisions\" & \"The Bird is the Word\" achievements in The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-romantic-decisions-decisions-and-the-bird-is-the-word","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/011e0ad2-72f4-4e43-89d7-d24721133a6b/sm/ep4359.jpg","duration":127,"publication_date":"2012-02-18T00:27:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-2","changefreq":"weekly","video":[{"title":"2012:E7 - Volume 74","description":"Jack and Geoff bring forth upon this world a batch of nothing but Halo hilarity and other various goodies. Laugh with them, won't you","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a44229e9-c99f-47b7-883f-d60084d81685/sm/ep4358.jpg","duration":243,"publication_date":"2012-02-17T22:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shards-and-artifacts-guide-part-7","changefreq":"weekly","video":[{"title":"2012:E1043 - Shards & Artifacts Guide Part 7","description":"JasonMB and BioRay finish the long trek into Darksiders to pick up all the shards and artifacts for the achievements World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shards-and-artifacts-guide-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":172,"publication_date":"2012-02-17T17:49:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shards-and-artifacts-guide-part-6","changefreq":"weekly","video":[{"title":"2012:E1042 - Shards & Artifacts Guide Part 6","description":"JasonMB and BioRay are closing in on the finish line of World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shards-and-artifacts-guide-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":234,"publication_date":"2012-02-17T17:43:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shards-and-artifacts-guide-part-5","changefreq":"weekly","video":[{"title":"2012:E1041 - Shards & Artifacts Guide Part 5","description":"The hunt continues for more of the parts to make the whole of World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shards-and-artifacts-guide-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":233,"publication_date":"2012-02-17T17:40:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shards-and-artifacts-guide-part-4","changefreq":"weekly","video":[{"title":"2012:E1040 - Shards & Artifacts Guide Part 4","description":"JasonMB and BioRay continue on their quest for World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shards-and-artifacts-guide-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":155,"publication_date":"2012-02-17T17:35:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-darksiders-shards-and-artifacts-guide-part-3","changefreq":"weekly","video":[{"title":"2012:E1039 - Darksiders Shards & Artifacts guide part 3","description":"JasonMB and BioRay cant stop collecting in Darksiders for World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-darksiders-shards-and-artifacts-guide-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":248,"publication_date":"2012-02-17T17:32:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shards-and-artifacts-guide-part-2","changefreq":"weekly","video":[{"title":"2012:E1038 - Shards & Artifacts Guide Part 2","description":"JasonMB and BioRay keep on showing all the shard and artifact locations for World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shards-and-artifacts-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":191,"publication_date":"2012-02-17T17:26:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-darksiders-shards-and-artifacts-guide-part-1","changefreq":"weekly","video":[{"title":"2012:E1037 - Darksiders Shards & Artifacts Guide Part 1","description":"JasonMB and BioRay start a long trek into Darksiders to pick up all the shards and artifacts for the achievements World Raider, Full Power, Wrath of War, and Legendary Form.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-darksiders-shards-and-artifacts-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":231,"publication_date":"2012-02-17T01:02:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-unbelievable-size-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1036 - Unbelievable Size Achievement Guide","description":"Lukus01 and Semper fi 589, go fishing and catch the king of the pond, earning themselves the Unbelievable size achievement in Sega Bass fishing from Xbox Live Arcade","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-unbelievable-size-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":153,"publication_date":"2012-02-17T00:43:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-five-mortal-kombat","changefreq":"weekly","video":[{"title":"2012:E32 - The Five: Mortal Kombat","description":"SpecOps614 here, with a new series of video! In each video, I'll present you with 5 Fun Facts about a particular game and/or series!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-five-mortal-kombat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":154,"publication_date":"2012-02-17T00:38:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-51","changefreq":"weekly","video":[{"title":"2012:E7 - Rainbow Six Vegas","description":"In this week's explosive and action packed episode of Rage Quit, Michael plays Rainbow Six Vegas as he attempts to attain one of the most difficult achievements ever created.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a1a31db-0543-4afa-8464-130758476403/sm/ep4348.jpg","duration":276,"publication_date":"2012-02-17T00:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-superb-driver-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1035 - Superb Driver Achievement Guide","description":"Semper fi 589 and Lukus01 have worked hard into the night to show you how to get the superb driver achievement from Crazy taxi, from Xbox Live Arcade","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-superb-driver-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":215,"publication_date":"2012-02-17T00:32:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pinata-value-master-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1034 - Pi?ata Value Master Achievement Guide","description":"kpchadr08 shows you the easiest, at least, the laziest way to get a pinata worth 10,000 Chocolate Coins for the achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pinata-value-master-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":288,"publication_date":"2012-02-17T00:27:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-garden-value-master-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1033 - Garden Value Master Achievement Guide","description":"kpchadr08 shows an easy way to get your Garden worth 100,000 chocolate coins for the achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-garden-value-master-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":85,"publication_date":"2012-02-17T00:21:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gatekeeper-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1032 - Gatekeeper Achievement Guide","description":"Styx and Meh805 show you how to get the \"Gatekeeper\" achievement in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gatekeeper-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":157,"publication_date":"2012-02-17T00:12:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-take-up-arms-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1031 - Take Up Arms Achievement Guide","description":"Styx and Meh805 show you how to get the \"Take Up arms\" achievement in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-take-up-arms-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":285,"publication_date":"2012-02-17T00:06:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cool-file-bro-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1030 - Cool File, Bro Achievement Guide","description":"Styx shows you to get the nearly-impossible \"Cool File, Bro\" achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cool-file-bro-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":44,"publication_date":"2012-02-17T00:00:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tank-beats-everything-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1029 - Tank Beats Everything Achievement Guide","description":"Styx and Bsed take you on an adventure to get the \"Tank beats Everything\" achievement in Halo: Reach","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tank-beats-everything-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":117,"publication_date":"2012-02-16T23:56:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-theyve-always-been-faster-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1028 - They've Always Been Faster Achievement Guide","description":"Styx and LankyDog show you how to get the \"They've Always Been Faster\" achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-theyve-always-been-faster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":99,"publication_date":"2012-02-16T23:50:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-69","changefreq":"weekly","video":[{"title":"2012:E15 - Gotham City Impostors","description":"The_Ward presents This is... Gotham City Impostors","player_loc":"https://roosterteeth.com/embed/this-is-2012-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":299,"publication_date":"2012-02-16T23:46:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-59","changefreq":"weekly","video":[{"title":"2012:E14 - Super Mario Bros. Crossover","description":"Fragger and Ray take a look at the extremely unique flash game \"Super Mario Bros. Crossover.\"","player_loc":"https://roosterteeth.com/embed/this-is-2012-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74c14aaa-c42b-48b5-90d8-c24680114090/sm/ep4338.jpg","duration":331,"publication_date":"2012-02-16T15:07:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-48","changefreq":"weekly","video":[{"title":"2012:E7 - Achievement HORSE #62","description":"In today's episode of Achievement HORSE Geoff faces off against a special guest and they go for the record shortest episode ever! All maps are available at http://bit.ly/AHHORSE062","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a14dc43-1d6b-4b6f-92f6-fc74c320fcf2/sm/ep4337.jpg","duration":428,"publication_date":"2012-02-15T23:25:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-thats-why-im-the-boss-and-carnie-kid","changefreq":"weekly","video":[{"title":"2012:E31 - That's Why I'm the Boss and Carnie Kid","description":"Michael and Mike show you how to get the \"That's Why I'm the Boss\" & \"Carnie Kid\" achievements in The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-thats-why-im-the-boss-and-carnie-kid","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8fee3fc-a3df-4f74-97cd-eb3da25e1f11/sm/ep4336.jpg","duration":257,"publication_date":"2012-02-15T23:02:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-51","changefreq":"weekly","video":[{"title":"2012:E8 - Saint's Row 3 - Super Jump Part 2","description":"Geoff and Michael are back at it, trying to beat their Super Jump record in Saints Row: The Third for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1eb83b0-a948-45dd-a3da-7adf5811b5b9/sm/ep4334.jpg","duration":240,"publication_date":"2012-02-15T17:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-legend-of-the-dovahcore","changefreq":"weekly","video":[{"title":"2012:E30 - Legend of the Dovahcore","description":"Tired of the space core from Valve's Skyrim Mod yet Geoff and Gavin show you how to hollow him out and turn it into fashionable headwear. Followed by something to make the geographers of the world weep.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-legend-of-the-dovahcore","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9cf9580-c7f4-4929-a082-1139b41d2062/sm/ep4332.jpg","duration":174,"publication_date":"2012-02-15T16:13:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-red-faction-guerrilla","changefreq":"weekly","video":[{"title":"S1:E10 - A Look Back At: Red Faction Guerrilla","description":"Fragger and Ray take a look back at the Xbox 360 game, Red Faction Guerrilla.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-red-faction-guerrilla","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/820c7387-742d-4410-9733-0480d3cc2422/sm/ep4331.jpg","duration":430,"publication_date":"2012-02-14T22:20:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-relic-hunter-part-2","changefreq":"weekly","video":[{"title":"2012:E29 - Relic Hunter Part 2","description":"Michael and Geoff show you the locations of the second half of collectibles for the \"Relic Hunter\" achievement in The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-relic-hunter-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c60e4df1-1055-485e-9a74-be9e8bca8cf5/sm/ep4330.jpg","duration":190,"publication_date":"2012-02-14T18:25:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-57","changefreq":"weekly","video":[{"title":"2012:E13 - Gotham City Impostors","description":"Ray and Geoff take a look at the gameplay and Achievements for Gotham City Imposters for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/this-is-2012-57","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9b78f21-10fb-479d-bdbd-9ab08ad743cf/sm/ep4329.jpg","duration":228,"publication_date":"2012-02-14T18:22:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-49","changefreq":"weekly","video":[{"title":"2012:E7 - Week #99","description":"Geoff is back in this week's AHWU with loads of goodies including brand new RTX info and a chance for you to get early access to the Mass Effect 3 Beta! Watch and learn how!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b10b8659-76df-4c79-b396-14bfaadc6cac/sm/ep4328.jpg","duration":381,"publication_date":"2012-02-13T22:32:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-relic-hunter-part-1","changefreq":"weekly","video":[{"title":"2012:E28 - Relic Hunter Part 1","description":"Michael and Geoff show you the locations of the first half of collectibles for the \"Relic Hunter\" achievement in The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-relic-hunter-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51dfea90-32d6-4b1d-a154-e90e4e3858f4/sm/ep4327.jpg","duration":195,"publication_date":"2012-02-13T22:27:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-boulder-dodge-you-and-whose-army","changefreq":"weekly","video":[{"title":"2012:E27 - Boulder Dodge, You and Whose Army","description":"Ray and Mike show you how to get the Boulder Dodge and You and WHose Army Achievements in NeverDead. Much like the game's protagonist, this series of video guides will never die. Just kidding, it's the last one. Or is it","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-boulder-dodge-you-and-whose-army","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a91119c-e713-492d-8747-1498f30f7fa6/sm/ep4324.jpg","duration":234,"publication_date":"2012-02-13T16:11:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-68","changefreq":"weekly","video":[{"title":"2012:E12 - Shank 2","description":"AngryBirds presents This is...Shank 2","player_loc":"https://roosterteeth.com/embed/this-is-2012-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":378,"publication_date":"2012-02-11T05:05:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-final-fantasy-xiii-2-3-achievements","changefreq":"weekly","video":[{"title":"2012:E1027 - Final Fantasy XIII-2: 3 Achievements","description":"Kevin takes a crack at fighting and staggering feral creatures in Final Fantasy XIII-2. Achievements covered are Scarlet Medal, Budding Hunter, and Staggering.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-final-fantasy-xiii-2-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":256,"publication_date":"2012-02-11T04:48:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-island-caretaker-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1026 - Island Caretaker Achievement Guide","description":"I take a break from poker to piss off the island's caretaker. (With intro and ourto this time.)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-island-caretaker-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":91,"publication_date":"2012-02-11T04:11:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-do-not-shoot-the-water-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1025 - Do not shoot the water! Achievement Guide","description":"Hightower93 shows us why shooting the water is worth 50g.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-do-not-shoot-the-water-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":50,"publication_date":"2012-02-11T04:04:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-storm-the-yarn-and-c-c-c-combo-breaker-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1024 - Storm the Yarn and C-C-C-Combo Breaker Achievement Guide","description":"ZTedward shows you how to get the achievements Storm the Yarn and C-C-C-Combo breaker in the Genki Bowl 7 DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-storm-the-yarn-and-c-c-c-combo-breaker-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":72,"publication_date":"2012-02-11T03:58:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-clean-slate-and-scout-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1023 - Clean Slate and Scout Achievement Guide","description":"SpecOps614 here, showing you the quickest and easiest way to get the SCOUT and CLEAN SLATE achievements in DOOM for XBLA!....... CAPITAL LETTERS!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-clean-slate-and-scout-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":103,"publication_date":"2012-02-11T03:52:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-battle-master-and-warrior-exemplar-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1022 - Battle-Master and Warrior Exemplar Achievement Guide","description":"Soothsayer57 and Deathreau journey through middle-earth, saving hobbits and speaking to wizards, and along the way pick up the Battle-Master and Warrior Exemplar achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-battle-master-and-warrior-exemplar-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":170,"publication_date":"2012-02-11T03:43:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-67","changefreq":"weekly","video":[{"title":"2012:E11 - Leedmees","description":"SpecOps614 here, bringing you a \"This Is...\" for the Kinect Arcade title, Leedmees! Enjoy!","player_loc":"https://roosterteeth.com/embed/this-is-2012-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":229,"publication_date":"2012-02-11T03:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bow-chicka-bow-wow-and-blue-base-rave-machine-guide","changefreq":"weekly","video":[{"title":"2012:E1021 - Bow Chicka Bow Wow and Blue Base Rave Machine! Guide","description":"Let iSayWhat hit on your gamerscore and get two achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bow-chicka-bow-wow-and-blue-base-rave-machine-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":255,"publication_date":"2012-02-11T03:19:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trading-down-stunning-and-both-tubes-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1020 - Trading Down, Stunning! and Both Tubes Achievement Guide","description":"In this video, Preston will show you how to get Trading Down, Stunning!, and Both Tubes.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trading-down-stunning-and-both-tubes-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":84,"publication_date":"2012-02-11T03:08:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-skilful-driver-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1019 - Skilful Driver Achievement Guide","description":"In this video Lukus and I go retro and obtain the achievement Skilful Driver from the all time classic, crazy taxi.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-skilful-driver-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":156,"publication_date":"2012-02-11T03:01:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-door-prize-and-ship-overboard-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1018 - Door Prize and Ship Overboard Achievement Guide","description":"ZTedward takes you through the Door Prize and Ship Overboard achievements in Portal 2","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-door-prize-and-ship-overboard-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":148,"publication_date":"2012-02-11T02:54:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fully-charged-return-to-sender-valet-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1017 - Fully Charged, Return To Sender, Valet Achievement Guide","description":"Cfhhateph34r shows you how to get the Fully Charged, Return to Sender, Valet achievements in Star Wars: The Force Unleashed 2!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fully-charged-return-to-sender-valet-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":92,"publication_date":"2012-02-11T02:47:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-80","changefreq":"weekly","video":[{"title":"2012:E6 - Saints Row The Third With Geoff & Michael - Part 10","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. If you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f9ac54f-066d-4ed6-af2e-2c0c2daf1148/sm/ep4309.jpg","duration":1949,"publication_date":"2012-02-11T02:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-it-came-from-outer-space","changefreq":"weekly","video":[{"title":"2012:E26 - Skyrim: It Came From Outer Space","description":"A quick look at Valve's recently released Skyrim Mod. And Geoff says hi.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-it-came-from-outer-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f9fff58-d55b-48d5-864c-fa3f5de6d39f/sm/ep4308.jpg","duration":122,"publication_date":"2012-02-11T00:05:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-46","changefreq":"weekly","video":[{"title":"2012:E6 - Volume 73","description":"Geoff and Gus look at another hilarious batch of fails from Halo: Reach. Join them in their hilarious ways. Hilarity. Hilarious.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2734d65f-42e0-4f9a-bdb8-969babd59574/sm/ep4307.jpg","duration":297,"publication_date":"2012-02-10T20:25:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-2-guys-1-pole","changefreq":"weekly","video":[{"title":"2012:E25 - 2 Guys 1 Pole","description":"Michael and Geoff show you how to get the \"2 Guys 1 Pole\" achievement in The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-2-guys-1-pole","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca837581-ab90-4dcd-a06c-1d3415e99162/sm/ep4306.jpg","duration":82,"publication_date":"2012-02-10T15:31:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mass-effect-3-shepard-armor","changefreq":"weekly","video":[{"title":"2012:E24 - Mass Effect 3 Shepard Armor","description":"Geoff and MIchael show of the Commander Shepard Armor from Mass Effect 3 in Kingdoms of Amalur: Reckoning on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mass-effect-3-shepard-armor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f42e09ac-5b3d-4350-a9d8-31a47c16999f/sm/ep4305.jpg","duration":108,"publication_date":"2012-02-10T14:55:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-50","changefreq":"weekly","video":[{"title":"2012:E10 - Kingdoms of Amalur: Reckoning","description":"Geoff and Michael check out this new Fable-like RGP from former Major Leaguer Curt Shilling's studio, Kingdoms of Amalur: Reckoning.","player_loc":"https://roosterteeth.com/embed/this-is-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95885c53-d12d-4cfb-aa43-d138c7c26259/sm/ep4303.jpg","duration":484,"publication_date":"2012-02-09T23:30:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-44","changefreq":"weekly","video":[{"title":"2012:E6 - Assassin's Creed: Revelations","description":"On this week's Rage Quit, Michael dons his cloak in Assassin's Creed: Revelations. Will he unravel a web of mysteries that could alter life as we know it No, he just dies a lot.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc94a040-2142-4846-ae67-6560accb33ce/sm/ep4302.jpg","duration":211,"publication_date":"2012-02-09T23:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-versatile-killer","changefreq":"weekly","video":[{"title":"2012:E23 - Versatile Killer","description":"Michael and Geoff show you how to get the \"Versatile Killer\" achievement in The Darkness II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-versatile-killer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4931ffff-ab14-474f-a44e-f8fbbb84708b/sm/ep4301.jpg","duration":83,"publication_date":"2012-02-09T17:51:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-easier-than-arm-wrestling","changefreq":"weekly","video":[{"title":"2012:E22 - Easier Than Arm Wrestling","description":"Michael and Ray show you how to get the \"Easier Than Arm Wrestling\" achievement in The Simpsons Arcade Game Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-easier-than-arm-wrestling","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b481139-6153-4bcc-a3ab-f2bae3c46165/sm/ep4300.jpg","duration":171,"publication_date":"2012-02-09T17:41:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-40","changefreq":"weekly","video":[{"title":"2012:E6 - Achievement HORSE #61","description":"Geoff and Michael face off in yet another round of Achievement HORSE. Who will dominate over the other Take a wild guess. All maps are available at http://bit.ly/AHHORSE061","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aca5966b-733f-4251-9f53-c19a50cce843/sm/ep4296.jpg","duration":229,"publication_date":"2012-02-08T18:25:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-one-man-army","changefreq":"weekly","video":[{"title":"2012:E21 - One Man Army","description":"Michael and Mike show you how to get the \"One Man Army\" achievement in The Darkness II for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-one-man-army","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61d86efe-b840-436a-ada1-0bff376a377f/sm/ep4294.jpg","duration":167,"publication_date":"2012-02-08T15:33:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-42","changefreq":"weekly","video":[{"title":"2012:E7 - Saint's Row 3 - Super Jump","description":"Geoff and Michael attempt the Super Jump in Saints Row: The Third for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa48722e-12ef-402f-a77b-5ca20c42d23c/sm/ep4293.jpg","duration":190,"publication_date":"2012-02-08T15:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mind-the-gap-out-of-the-frying-pan","changefreq":"weekly","video":[{"title":"2012:E20 - Mind the Gap, Out of the Frying Pan","description":"Ray and Mike show you how to get the Mind the Gap and Out of the Frying Pan Achievements in NeverDead for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mind-the-gap-out-of-the-frying-pan","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25d2159f-cd8c-44d5-91da-49058b46d8b6/sm/ep4292.jpg","duration":166,"publication_date":"2012-02-08T14:50:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-46","changefreq":"weekly","video":[{"title":"2012:E9 - The Simpsons Arcade","description":"Geoff and Gus turn back the time machine to 1991 and take a look at the new XBLA release of The Simpsons Arcade Game! Which Simpsons episode is your favorite","player_loc":"https://roosterteeth.com/embed/this-is-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84f80ade-e5fe-46fb-8284-06519b14b9d4/sm/ep4291.jpg","duration":455,"publication_date":"2012-02-07T21:08:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-stranglehold","changefreq":"weekly","video":[{"title":"S1:E9 - A Look Back At: Stranglehold","description":"Fragger and Ray take a look back at the John Woo shooter, Stranglehold for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-stranglehold","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e36594ad-1244-4f77-b6a8-cb4a32ef2097/sm/ep4290.jpg","duration":490,"publication_date":"2012-02-07T19:06:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-42","changefreq":"weekly","video":[{"title":"2012:E6 - Week #98","description":"Geoff is flying solo for this week's AHWU. In it he talks about the newly released Darkness 2, some news about the Playstation Network and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04ab1272-53b1-424d-8ec3-ed031f8319f4/sm/ep4289.jpg","duration":231,"publication_date":"2012-02-06T21:06:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bongos-angst-it-tastes-like-burning","changefreq":"weekly","video":[{"title":"2012:E19 - Bongo's Angst, It Tastes Like Burning","description":"Ray and Mike show you how to get the Bongo's Angst, and It Tastes Like Burning Achievements in The Simpsons Arcade Game Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bongos-angst-it-tastes-like-burning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9876abe-7ccd-4247-9b70-8191eeccf594/sm/ep4288.jpg","duration":137,"publication_date":"2012-02-06T18:43:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dont-stop-look-or-listen-group-hug","changefreq":"weekly","video":[{"title":"2012:E18 - Don't Stop, Look or Listen - Group Hug","description":"Ray and Mike show you how to get the \"Don't Stop, Look or Listen\" and \"Group Hug\" Achievements in NeverDead for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dont-stop-look-or-listen-group-hug","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b43ff2d-d5e1-479e-ae16-298d42f83f40/sm/ep4287.jpg","duration":146,"publication_date":"2012-02-06T18:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scarlet-medal-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1016 - Scarlet Medal Achievement Guide","description":"Fragger and Geoff show you how to five-star Atlus to get the Scarlet Medal Achievement in Final Fantasy XIII-2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scarlet-medal-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0434f853-2a19-47a2-a0fb-177746e588bb/sm/ep4286.jpg","duration":264,"publication_date":"2012-02-06T14:49:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-43","changefreq":"weekly","video":[{"title":"2012:E5 - Volume 72","description":"Your weekly serving of fails with Geoff and special guest Gus!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f00d0a93-7089-47c9-9b93-cc78b537fbb0/sm/ep4285.jpg","duration":279,"publication_date":"2012-02-03T23:17:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-70","changefreq":"weekly","video":[{"title":"2012:E5 - Saints Row The Third With Geoff & Michael - Part 9","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33fba3bb-fb4c-40f0-8cec-6ae7f3d41cb0/sm/ep4283.jpg","duration":2491,"publication_date":"2012-02-03T21:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-season-1-best-fails-of-january-2012","changefreq":"weekly","video":[{"title":"2012:E1 - Best fails of January 2012","description":"You asked for it, so here it is... the best fails of the month in one commentated package! These fails received the most thumbs up (thumbs down not counted) during the month of January. Be sure to vote for your favorite videos in February!","player_loc":"https://roosterteeth.com/embed/game-fails-season-1-best-fails-of-january-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c740db8e-c702-4880-8f94-17b6d2cfa61b/sm/ep4282.jpg","duration":221,"publication_date":"2012-02-03T15:43:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hop-skip-and-jump-shock-and-awe","changefreq":"weekly","video":[{"title":"2012:E17 - Hop Skip and Jump, Shock and Awe","description":"Ray and Mike show how to get the Hop, Skip and Jump, and Shock and Awe Achievements in NeverDead for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hop-skip-and-jump-shock-and-awe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42072cca-604f-4f78-92f6-d43fddb6906a/sm/ep4281.jpg","duration":156,"publication_date":"2012-02-03T15:27:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-38","changefreq":"weekly","video":[{"title":"2012:E5 - Earth Defense Force 2017","description":"This week Michael fights off an alien invasion in everyone's favorite classic, Earth Defense Force 2017. Giant ants and robots don't get much better than this.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1769e50d-6c92-4887-9489-f85b4d40453f/sm/ep4279.jpg","duration":232,"publication_date":"2012-02-03T05:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoth-hidden-datacrons","changefreq":"weekly","video":[{"title":"2012:E16 - Hoth Hidden Datacrons","description":"Jack and Adam head to the cold lands of Hoth to find more hidden Datacrons in Star Wars: The Old Republic. Brrrr! It's cold in here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoth-hidden-datacrons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbc8f4fb-7db0-4d0f-b2b8-d5b0dc47172d/sm/ep4278.jpg","duration":282,"publication_date":"2012-02-02T20:03:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-explosive-personality-brycebq","changefreq":"weekly","video":[{"title":"2012:E15 - Explosive Personality, BryceBQ","description":"Ray and Mike show you how to get the Explosive Personality and BryceBQ Achievements in NeverDead for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-explosive-personality-brycebq","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef5832ae-9092-4524-bb4f-744fabf958ed/sm/ep4277.jpg","duration":151,"publication_date":"2012-02-02T19:06:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-war-veteran-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1015 - War Veteran Achievement Guide","description":"Geoff and Jack show you how to get the War Veteran Achievement in Soul Calibur V for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-war-veteran-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe4523ad-368a-4fc2-bc1b-4c6bf9894135/sm/ep4276.jpg","duration":184,"publication_date":"2012-02-02T15:28:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-36","changefreq":"weekly","video":[{"title":"2012:E5 - Achievement HORSE #60","description":"Jack and Geoff face off in a epic battle across the world of Halo: Reach. Enjoy this very special episode of Achievement HORSE! All maps are available at http://bit.ly/AHHORSE60","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/374bb4a7-aea2-4c44-b1df-04c4778f0014/sm/ep4275.jpg","duration":324,"publication_date":"2012-02-01T23:44:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-39","changefreq":"weekly","video":[{"title":"2012:E6 - Saint's Row 3 - Skee Ball","description":"Geoff and Michael \"attempt\" to play Skee Ball in Saints Row: The Third.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4618a6e-12c9-425b-880f-540a1a2c108b/sm/ep4274.jpg","duration":94,"publication_date":"2012-02-01T21:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-quantum-of-solace","changefreq":"weekly","video":[{"title":"S1:E8 - A Look Back At: Quantum of Solace","description":"Fragger and Ray take a look back at the 007 game, Quantum of Solace for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-quantum-of-solace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9615c51c-5055-42fa-97ee-7dbba96baada/sm/ep4272.jpg","duration":543,"publication_date":"2012-02-01T16:06:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-38","changefreq":"weekly","video":[{"title":"2012:E7 - Soul Calibur V","description":"Jack and Geoff take a fresh look at the brand new fighting game Soul Calibur V. Dust off your fighting sticks and kick some butt!","player_loc":"https://roosterteeth.com/embed/this-is-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cbf58f3-5a29-4556-8a41-cff14897f0bf/sm/ep4271.jpg","duration":310,"publication_date":"2012-01-31T23:03:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sightseeing-even-heroes-need-a-day-off","changefreq":"weekly","video":[{"title":"2012:E14 - Sightseeing - Even Heroes Need a Day Off","description":"Adventuring doesn't always have to be blood and guts... sometimes you gotta strip down and relax.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sightseeing-even-heroes-need-a-day-off","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6317e6fb-017e-4bba-a937-0e7ea585dc51/sm/ep4270.jpg","duration":92,"publication_date":"2012-01-31T22:36:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bug-in-a-jar-conspiracy-continued","changefreq":"weekly","video":[{"title":"2012:E13 - Bug in a Jar Conspiracy... continued","description":"So uh... Fragger took it to another level. I'm not sure what else to say here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bug-in-a-jar-conspiracy-continued","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45db4104-1b4a-4f52-b5e4-d787e45188c8/sm/ep4269.jpg","duration":258,"publication_date":"2012-01-31T21:24:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-35","changefreq":"weekly","video":[{"title":"2012:E5 - Week #97","description":"Jack and Geoff deliver you some freshest news including a heads up about some brand new RTX information! Stay tuned for news and updates from the world of Rooster Teeth and Achievement Hunter!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61bcb4cf-cbda-4b57-8797-45647c6540a0/sm/ep4268.jpg","duration":360,"publication_date":"2012-01-30T22:31:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-64","changefreq":"weekly","video":[{"title":"2012:E4 - Saints Row The Third With Geoff & Michael - Part 8","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65d46384-2ef0-4eec-9476-3f26e1fd5898/sm/ep4267.jpg","duration":2344,"publication_date":"2012-01-28T05:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-38","changefreq":"weekly","video":[{"title":"2012:E4 - Volume 71","description":"Jack and Geoff bring forth a wonderful bounty of failure in Halo: Reach. Hold hands with them as they giggle their way through this new batch.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e057236-e135-4971-abec-941c4746d0ff/sm/ep4265.jpg","duration":236,"publication_date":"2012-01-27T21:08:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-terminator-liberty-city","changefreq":"weekly","video":[{"title":"2012:E12 - Terminator: Liberty City","description":"Geoff and Jack ponder what a day in the life of a Terminator is like.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-terminator-liberty-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e9442f7-78be-47b5-a972-65e51d810e4f/sm/ep4264.jpg","duration":147,"publication_date":"2012-01-27T19:37:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-55","changefreq":"weekly","video":[{"title":"2012:E8 - U Mad Bro? Easter Egg","description":"Ray and MIchael check out the U Mad Bro easter egg in the Liberation DLC map from Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9da1bca0-3a62-4659-9a60-7191ed34e923/sm/ep4263.jpg","duration":112,"publication_date":"2012-01-27T16:02:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-35","changefreq":"weekly","video":[{"title":"2012:E4 - Happy Wheels","description":"This week on Rage Quit, Michael plays one of the most requested game yet, Happy Wheels. I bet it goes wonderfully.\n\nDid I mention it has Pokemon in it!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5fac7724-cc82-437d-822b-e6beb5b115da/sm/ep4262.jpg","duration":327,"publication_date":"2012-01-27T06:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bringin-home-the-bacon","changefreq":"weekly","video":[{"title":"2012:E11 - Bringin' Home the Bacon","description":"Curtis aka. AngryBirds shows you how to pick up the Bringin' Home the Bacon achievement in Rage. Mmmm Bacon.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bringin-home-the-bacon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":199,"publication_date":"2012-01-27T02:04:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-rayman-origin-4-achievements","changefreq":"weekly","video":[{"title":"2012:E1014 - Rayman Origin - 4 Achievements","description":"In this video Lukus01 and I (Smeper fi 589) show how you unlock 4 achievements. They are: Pop Pop Boom, Hyperspeed, Feed the Fairy and Vacuum Snack.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-rayman-origin-4-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":99,"publication_date":"2012-01-27T01:54:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-last-stand-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1013 - Last Stand Achievement Guide","description":"ZTedward shows you how to get through the Last Stand achievement for the Arrival DLC in Mass Effect 2","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-last-stand-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":262,"publication_date":"2012-01-27T01:48:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-laser-blaster-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1012 - Laser Blaster Achievement Guide","description":"In this video, Preston will show you how to get Laser Blaster in Halo 3: ODST on the mission Oni Alpha Site.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-laser-blaster-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":62,"publication_date":"2012-01-27T01:41:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-keep-it-clean-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1011 - KEEP IT CLEAN Achievement Guide","description":"In this video, Preston will show you how to get KEEP IT CLEAN in Halo: Reach on the mission Winter Contingency.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-keep-it-clean-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":106,"publication_date":"2012-01-27T01:33:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-master-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1010 - Master Achievement Guide","description":"PouringRayn and BioHRay stoop to a new low to show you how to get the Master achievement in Skyrim. You'll need to put your moral compass away for this one.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-master-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":187,"publication_date":"2012-01-27T01:29:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-amy-bodyguard-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1009 - AMY: Bodyguard Achievement Guide","description":"BioHRay and JuanTon hold hands and skip through the infection outbreak in AMY to get the Bodyguard achievement and 20G","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-amy-bodyguard-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":184,"publication_date":"2012-01-27T01:23:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-find-me-where-are-you-high-volyage-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1008 - Find me, Where are you, High Volyage Achievement Guide","description":"BioHRay and Kevin are babysitting for 50G They also pick up the Find me, Where are you, and High Voltage achievements in AMY","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-find-me-where-are-you-high-volyage-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":205,"publication_date":"2012-01-27T01:18:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-saints-row-the-third-3-achievements","changefreq":"weekly","video":[{"title":"2012:E1007 - Saint's Row: The Third - 3 Achievements","description":"ZTedward shows you how to get the SkyBlazing achievements for GenkiBowl 7 for Saints Row: The Third. Flame on, stick the landing and cat on a hot tin roof.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-saints-row-the-third-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":236,"publication_date":"2012-01-27T01:06:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-66","changefreq":"weekly","video":[{"title":"2012:E6 - Dark Souls","description":"Nand and BioHRay cover the previously uncovered Dark Souls, where there are dragons, gargoyles, and dry-humping stone giants aplenty. Fact: BioHRay was referred to SA and a shrink immediately following this commentary.","player_loc":"https://roosterteeth.com/embed/this-is-2012-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/750dce29-7f8f-4f4e-a3da-380ed97ffa95/sm/2013912-1449769350976-maxresdefault_(3).jpg","duration":344,"publication_date":"2012-01-27T00:54:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mediterranean-travelers-map-pack-dlc","changefreq":"weekly","video":[{"title":"2012:E10 - Mediterranean Traveler's Map Pack DLC","description":"Jack and Geoff check out the newest addition to Assassin's Creed: Revelations in the form of the Mediterranean Traveler's Map Pack DLC! Watch as Jack marvels at the new wonders and gets stabbed a lot.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mediterranean-travelers-map-pack-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/329ae31f-e279-4b3d-b82c-eed22d0a3ad4/sm/ep4251.jpg","duration":193,"publication_date":"2012-01-26T21:02:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-50","changefreq":"weekly","video":[{"title":"2012:E7 - Pacman Easter Egg","description":"Geoff and Jack show you where to find the Pacman easter egg in The Elder Scrolls V: Skyrim. Wacka Wacka.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02e7b514-6463-4084-9406-274e8550f0c3/sm/ep4250.jpg","duration":129,"publication_date":"2012-01-26T16:41:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-30","changefreq":"weekly","video":[{"title":"2012:E4 - Achievement HORSE #59","description":"While Ray is in town doing some work in Austin, we put him up against Michael, one of the office best. Will Ray win his first ever official HORSE battle Or will Michael punish him like he should","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d831ce1e-d947-4987-9f24-817b3ea9155b/sm/ep4249.jpg","duration":300,"publication_date":"2012-01-26T03:59:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-49","changefreq":"weekly","video":[{"title":"2012:E6 - 300 Easter Egg","description":"Geoff and Jack show you where to find the \"300\" Easter Egg in Skyrim.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0202ef7-3f74-489f-b11c-1bb52c162dab/sm/ep4248.jpg","duration":114,"publication_date":"2012-01-25T21:47:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-33","changefreq":"weekly","video":[{"title":"2012:E5 - Halo Reach - RBI Halo","description":"Geoff, Jack, Michael and Ray hit the mound to test out a little baseball in Blood Gulch. \n\nHey Batta Batta Batta... BLAM.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc0ea150-5080-41e2-9e8d-f3b1efa38602/sm/ep4247.jpg","duration":127,"publication_date":"2012-01-25T20:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-46","changefreq":"weekly","video":[{"title":"2012:E5 - Piazza Teddy Bear Easter Egg","description":"Geoff and Jack show you where to find a cuddly little teddy bear, who's also a 300 hitter and a hell of a catcher on the new DLC map \"Piazza\" in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e898e1f0-8050-480c-a736-a7eae8474936/sm/ep4246.jpg","duration":96,"publication_date":"2012-01-25T17:25:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2012-5","changefreq":"weekly","video":[{"title":"2012:E5 - Super Bowl XLVI (Giants vs. Patriots)","description":"Geoff and Jack use Madden NFL 12 to determine the winner of Super Bowl XLVI.","player_loc":"https://roosterteeth.com/embed/ah-predicts-2012-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1664e1d8-c582-431d-a887-cf782c79c5f7/sm/ep4243.jpg","duration":296,"publication_date":"2012-01-24T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-dead-rising","changefreq":"weekly","video":[{"title":"S1:E7 - A Look Back At: Dead Rising","description":"Fragger and Ray take a look back at Dead Rising for the Xbox 360. It's zombie-licious.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-dead-rising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c58a1cd-7ee1-4d36-85b2-f9798c7f2c63/sm/ep4242.jpg","duration":547,"publication_date":"2012-01-24T16:58:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-28","changefreq":"weekly","video":[{"title":"2012:E4 - Week #96","description":"Jack and Geoff deliver another delicious batch of gaming news and info in this week's AHWU. Also, a giant creepy rooster thing.","player_loc":"https://roosterteeth.com/embed/ahwu-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf9df600-6395-499c-97ce-7e1d34001a03/sm/ep4240.jpg","duration":306,"publication_date":"2012-01-23T21:32:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-flame-on-stick-the-landing-cat-on-a-hot-tin-roof","changefreq":"weekly","video":[{"title":"2012:E9 - Flame On, Stick the Landing, Cat on a Hot Tin Roof","description":"Ray and Michael check out how to grab the Flame On, Stick the Landing, and Cat on a Hot Tin Roof achievements in the newly released DLC for Saints Row The Third!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-flame-on-stick-the-landing-cat-on-a-hot-tin-roof","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff8c6d08-70a3-432d-b958-8dd8d37557e6/sm/ep4238.jpg","duration":215,"publication_date":"2012-01-23T14:31:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-storm-the-yarn-and-c-c-c-combo-breaker","changefreq":"weekly","video":[{"title":"2012:E8 - Storm the Yarn & C-C-C-Combo Breaker","description":"Ray and Michael check out how to grab the \"Storm the Yarn\" and \"C-C-C-Combo Breaker\" achievements in the newly released DLC for Saints Row The Third!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-storm-the-yarn-and-c-c-c-combo-breaker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c510e14d-6337-40f1-9f9d-b0216a6332dd/sm/ep4236.jpg","duration":105,"publication_date":"2012-01-20T23:16:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-level-comparisons","changefreq":"weekly","video":[{"title":"2012:E7 - Level Comparisons","description":"Fragger and Jack take a look at the differences in levels in a few Sonic games as they compare to Sonic Generations. Look at that hedgehog run!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-level-comparisons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6ed41d0-11df-4a8f-8ba7-5088e3b7885a/sm/ep4235.jpg","duration":142,"publication_date":"2012-01-20T22:12:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-51","changefreq":"weekly","video":[{"title":"2012:E3 - Saints Row The Third With Geoff & Michael - Part 7","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ccb757f-0ca7-4387-b636-ac9a87701f78/sm/ep4234.jpg","duration":2298,"publication_date":"2012-01-20T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-28","changefreq":"weekly","video":[{"title":"2012:E3 - Volume 70","description":"Jack and Geoff deliver you a pile of goodies in the form of Halo: Reach fails. Join them in their laughter!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09cc6d41-3920-42f5-8532-f32e94a43344/sm/ep4232.jpg","duration":229,"publication_date":"2012-01-20T18:50:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-28","changefreq":"weekly","video":[{"title":"2012:E3 - Space Chimps","description":"On this week's Rage Quit Michael ventures to outer space in Space Chimps.\n\n[insert monkey joke here]","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56357485-6bd5-48ec-93bb-160d14bf70d4/sm/ep4231.jpg","duration":259,"publication_date":"2012-01-20T05:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-27","changefreq":"weekly","video":[{"title":"2012:E5 - Choplifter HD","description":"Fragger and Ray check out the new XBLA title \"Choplifter HD\" and go on about it. You know you want to hear their helicopter insights!","player_loc":"https://roosterteeth.com/embed/this-is-2012-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30845eda-f16a-4fdb-9053-098723e80249/sm/ep4230.jpg","duration":505,"publication_date":"2012-01-19T21:03:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-26","changefreq":"weekly","video":[{"title":"2012:E3 - Achievement HORSE #58","description":"Jack and Geoff are back in an epic battle across time and space. Well, not really time... or space for that matter. But they do battle, and it is kind of epic Maybe Check out the maps they used at http://bit.ly/AHHORSE58","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74792fc4-6c2f-457d-8300-07144a38059f/sm/ep4229.jpg","duration":381,"publication_date":"2012-01-18T20:26:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-29","changefreq":"weekly","video":[{"title":"2012:E4 - CoD Modern Warfare 3 - Hot Potato","description":"Geoff and Michael show you the Hot Potato (and more!) in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e84cd44f-575c-430a-b6d6-5b4731470157/sm/ep4228.jpg","duration":162,"publication_date":"2012-01-18T18:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-saints-row-the-third-genkibowl-vii-dlc-three-achievements-guide","changefreq":"weekly","video":[{"title":"2012:E1006 - Saints Row: The Third: Genkibowl VII DLC - Three Achievements Guide","description":"Ray and Michael show you how to get the \"Feeding Time\", \"Get off My Back\", and \"Cooked To Perfection\" achievements in the Genkibowl VII DLC for Saints Row The Third.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-saints-row-the-third-genkibowl-vii-dlc-three-achievements-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/907e0877-0591-4dd3-b252-fc84769edfcc/sm/ep4227.jpg","duration":252,"publication_date":"2012-01-18T18:04:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2012-4","changefreq":"weekly","video":[{"title":"2012:E4 - NFL Playoffs - Giants vs. 49ers","description":"Geoff and Jack use Madden NFL 12 to predict the winner of this weekend's NFC Conference Playoff Game pitting the Giants vs. the 49ers.","player_loc":"https://roosterteeth.com/embed/ah-predicts-2012-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c3ddbfa-319d-45af-86f3-5635c890a1c3/sm/ep4225.jpg","duration":336,"publication_date":"2012-01-17T21:03:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-false-emperor-flashpoint","changefreq":"weekly","video":[{"title":"2012:E6 - False Emperor Flashpoint","description":"MAJOR SPOILERS AHEAD! Do not watch this unless you are ready to have the higher levels of Star Wars: The Old Republic shown to you!! Jack and Adam walk you through the False Emperor flashpoint in SWTOR! Old friends abound!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-false-emperor-flashpoint","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27799bca-7866-4fb4-a96f-8465539e0953/sm/ep4224.jpg","duration":362,"publication_date":"2012-01-17T18:54:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-bioshock","changefreq":"weekly","video":[{"title":"S1:E6 - A Look Back At: Bioshock","description":"Fragger and Ray take a look back at one of the most highly regarded Xbox 360 releases, Bioshock.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-bioshock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53e24971-9115-4381-b01f-966fb489c86c/sm/ep4222.jpg","duration":474,"publication_date":"2012-01-17T18:25:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2012-3","changefreq":"weekly","video":[{"title":"2012:E3 - NFL Playoffs - Ravens vs. Patriots","description":"Geoff and Jack use Madden NFL 12 to predict the winner of this weekend's AFC Conference Playoff Game pitting the Ravens vs. the Patriots.","player_loc":"https://roosterteeth.com/embed/ah-predicts-2012-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c14e8cfc-c0ec-4508-9223-859fef87648f/sm/ep4221.jpg","duration":278,"publication_date":"2012-01-17T18:02:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-taris-hidden-datacrons","changefreq":"weekly","video":[{"title":"2012:E5 - Taris Hidden Datacrons","description":"Jack and Adam head in to Taris and pick up the hidden Datacrons in Star Wars: The Old Republic. Everything is broken!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-taris-hidden-datacrons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91d2d319-7b39-41e9-86b2-617a170dd5db/sm/ep4220.jpg","duration":352,"publication_date":"2012-01-17T17:36:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-25","changefreq":"weekly","video":[{"title":"2012:E3 - Week #95","description":"Jack and Geoff (with a hint of Joel) deliver you the greatest news known to man! You know you want it. Oh, and buy a new Achievement Hunter shirt at http://roosterteeth.com/store and then follow us on Twitter at @roosterteeth, @achievementhunt, @geoffrvb, @jack_p, @ah_michael","player_loc":"https://roosterteeth.com/embed/ahwu-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8dff34b-8fff-4a2e-9b9b-7f71c8a478e3/sm/ep4219.jpg","duration":297,"publication_date":"2012-01-17T00:31:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-en-fuego-safety-dance-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1005 - En Fuego, Safety Dance Achievement Guide","description":"Ray and Mike show you how to get the En Fuego and Safety Dance Achievements in NFL Blitz for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-en-fuego-safety-dance-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a7f9257-9a35-407b-b723-8c59da7aec98/sm/ep4218.jpg","duration":140,"publication_date":"2012-01-16T15:04:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-25","changefreq":"weekly","video":[{"title":"2012:E2 - Volume 69","description":"Jack and Geoff deliver the 69th batch of Fails for you on this lovely day. Join them as they celebrate all that is terrible!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9a2049b-21c6-4e66-a66f-996b6578ba16/sm/ep4216.jpg","duration":264,"publication_date":"2012-01-13T17:37:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-43","changefreq":"weekly","video":[{"title":"2012:E2 - Saints Row The Third With Geoff & Michael - Part 6","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cdbbec8-15c5-4dbc-ada1-57ce9348ec23/sm/ep4215.jpg","duration":2105,"publication_date":"2012-01-13T17:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-24","changefreq":"weekly","video":[{"title":"2012:E2 - Cabela's North American Adventures","description":"Michael tests his wit as a big game hunter in this week's Rage Quit, Cabela's North American Adventure. I think his duck call might need some work.","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40ab0acd-3026-40c0-8aca-d961ff11c2de/sm/ep4214.jpg","duration":354,"publication_date":"2012-01-13T05:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alderaan-hidden-datacrons","changefreq":"weekly","video":[{"title":"2012:E4 - Alderaan Hidden Datacrons","description":"Jack and Adam return to Star Wars: The Old Republic and pick up all of the hidden datacrons and holocrons in Alderaan, everyone's favorite planet that explodes in the movies. Join us before it gets too hot.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alderaan-hidden-datacrons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15ce2e90-1609-41a0-860e-74200b889239/sm/ep4213.jpg","duration":202,"publication_date":"2012-01-12T20:25:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-the-bug-in-a-jar-conspiracy","changefreq":"weekly","video":[{"title":"2012:E3 - Skyrim: The Bug in a Jar conspiracy","description":"skyrim bug in a jar conspiracy secret easter egg achievement hunter video game commentary play through gameplay","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-the-bug-in-a-jar-conspiracy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49c087dd-72cb-4f74-9f1a-2d407ad9148f/sm/ep4212.jpg","duration":190,"publication_date":"2012-01-12T16:28:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-25","changefreq":"weekly","video":[{"title":"2012:E3 - Assassin's Creed: Revelations - Bowling","description":"Jack and Geoff take to Assassin's Creed: Revelations in the newest \"Things to do in...\" This time they go bowling with Ezio! Strrrrrrriiikkeee!","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9390f7d4-d9d3-4706-b421-4d5415b0bfc6/sm/ep4211.jpg","duration":115,"publication_date":"2012-01-12T15:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-108","changefreq":"weekly","video":[{"title":"2012:E4 - Beach Paddle","description":"Ray and Mike take the Xbox Live Arcade indie hit \"Beach Paddle\" for a spin.","player_loc":"https://roosterteeth.com/embed/this-is-2012-108","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/399139a0-6828-4b57-9f5c-7635c269f73d/sm/ep4210.jpg","duration":268,"publication_date":"2012-01-12T15:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-librarian-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1004 - The Librarian Achievement Guide","description":"creepycondo shows you \r\nhow to get the librarian achievement\r\nin minecraft","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-librarian-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":64,"publication_date":"2012-01-12T05:25:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sonic-cd-king-of-the-rings-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E1003 - Sonic CD- King of the Rings Achievement Guide","description":"SpecOps614 here, showing you \r\nan easy way to get the \"king of \r\nthe rings\" achievement in Sonic \r\nCD. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sonic-cd-king-of-the-rings-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":156,"publication_date":"2012-01-12T05:11:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-65","changefreq":"weekly","video":[{"title":"2012:E3 - Kinect Sports Season Two","description":"SpecOps614 here, showing you a \nquick overview of Kinect Sports \nSeason Two...YOU MADDEN\n\n...haha...Sports...","player_loc":"https://roosterteeth.com/embed/this-is-2012-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":211,"publication_date":"2012-01-12T05:01:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-firefight-achievements-guide","changefreq":"weekly","video":[{"title":"2012:E1002 - Firefight Achievements Guide","description":"In this video, Husky will show \r\nyou how to get multiple \r\nachievements through playing \r\nFirefight on Legendary. \r\nAchievements are: Lucky Me, \r\nFirestarter, Blaze of Glory, Crowd \r\nControl, Heat in The Pipe and \r\nGame, Set, Match.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-firefight-achievements-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":451,"publication_date":"2012-01-12T04:53:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-balls-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E1001 - Balls Achievement Guide","description":"In this video Husky will show \r\nyou, eventually, how to get the \r\n\"Balls\" achievement on Deus Ex: \r\nHuman Revolution!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-balls-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":109,"publication_date":"2012-01-12T04:45:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-5-achievements-in-star-trek-d-a-c","changefreq":"weekly","video":[{"title":"2012:E1000 - 5 Achievements in Star Trek D-A-C","description":"A quick video showing you \r\nhow to get 5 simply \r\nachievements/trophies in Star \r\nTrek D-A-C: Red Shirt, \r\nVulcan wisdom, Starfleet \r\nMedal of Honor, Academy \r\nGraduate and Mirror, Mirror.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-5-achievements-in-star-trek-d-a-c","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":238,"publication_date":"2012-01-12T04:38:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-in-the-nick-of-time-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E999 - In the nick of time Achievement Guide","description":"In this video, sgtstimpy shows you through the underground to disarm a bomb in under 20 seconds for a 20G achievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-in-the-nick-of-time-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":183,"publication_date":"2012-01-12T04:31:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-untouchable-achievement-guide-bf3","changefreq":"weekly","video":[{"title":"2012:E998 - Untouchable Achievement Guide","description":"In this video, Husky will guide \r\nyou along the way to a 20G \r\nachievement called \r\n\"Untouchable\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-untouchable-achievement-guide-bf3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":652,"publication_date":"2012-01-12T04:29:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-push-on-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E997 - Push On Achievement Guide","description":"In this video guide Husky will \r\nurge you to \"Push On\" to earn \r\nyour co op achievement in the \r\nmission \"Hit and Run\".","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-push-on-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":694,"publication_date":"2012-01-12T04:26:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-car-lover-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E995 - Car Lover Achievement Guide","description":"In this video, sgtstimpy shows you to earn the Car Lover achievement in Co-op.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-car-lover-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":585,"publication_date":"2012-01-12T04:16:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-20","changefreq":"weekly","video":[{"title":"2012:E2 - Achievement HORSE #57","description":"Geoff returns to the HORSE battlefield to take on Jack in a full on game of Achievement HORSE. Will Geoff bounce back from injury Will Jack crush his spirit Watch and learn! All maps are available at http://bit.ly/AHHORSE57","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02719676-be33-4927-a2a0-3b81fcddc53e/sm/ep4197.jpg","duration":519,"publication_date":"2012-01-11T23:28:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-monsters-dance-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E994 - Monster's Dance Achievement Guide","description":"Jack and Geoff head back into Assassin's Creed: Revelations and pick up the most awesome \"Monster's Dance\" achievement. Money and pain equals achievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-monsters-dance-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9004ff0f-ce2b-4d49-911a-21acaed95d65/sm/ep4195.jpg","duration":78,"publication_date":"2012-01-11T15:21:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-20","changefreq":"weekly","video":[{"title":"2012:E2 - CoD Modern Warfare 3 - The Duel","description":"Geoff and Michael show you how to duel in Call of Duty: Modern Warfare 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61e3f05e-4521-4e53-9035-966523b76be3/sm/ep4194.jpg","duration":247,"publication_date":"2012-01-11T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-prince-of-persia","changefreq":"weekly","video":[{"title":"S1:E5 - A Look Back At: Prince of Persia","description":"Fragger and Ray take a lengthy look at the Xbox 360 game, Prince of Persia.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-prince-of-persia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e159281-4157-4017-a9d2-09e024585a08/sm/ep4193.jpg","duration":556,"publication_date":"2012-01-10T21:20:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-joel-and-jack-play-portal-2","changefreq":"weekly","video":[{"title":"2012:E2 - Joel & Jack Play Portal 2","description":"Jack and Joel provide a comprehensive guide to Portal 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-joel-and-jack-play-portal-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/808b0d14-8a53-4bbe-b18e-b8a81e6ddc2d/sm/ep4192.jpg","duration":185,"publication_date":"2012-01-10T20:09:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-18","changefreq":"weekly","video":[{"title":"2012:E2 - Week #94","description":"Jack and Geoff are back for a brand new year's worth of gaming goodness and news! Okay, this week might start slowly, but I swear, 2012 will be awesome!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f302ece-b86f-43ca-bf51-8582d1185a5d/sm/ep4191.jpg","duration":214,"publication_date":"2012-01-09T23:06:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2012-2","changefreq":"weekly","video":[{"title":"2012:E2 - NFL Playoffs - Saints vs. 49ers","description":"Geoff and Jack use Madden NFL 12 to predict the winner of this weekend's NFC Divisional Playoff Game pitting the Saints vs. the 49ers.","player_loc":"https://roosterteeth.com/embed/ah-predicts-2012-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9889ea2-fbe2-4294-b9cd-c8892b8b53c7/sm/ep4190.jpg","duration":225,"publication_date":"2012-01-09T18:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2012-35","changefreq":"weekly","video":[{"title":"2012:E1 - Saints Row The Third With Geoff & Michael - Part 5","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. If you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2012-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea87ced8-812d-4fc1-9446-0fe97930084d/sm/ep4187.jpg","duration":2110,"publication_date":"2012-01-07T00:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2012-20","changefreq":"weekly","video":[{"title":"2012:E1 - Volume 68","description":"Jack and Geoff kick off 2012 with a bang and a crash in Fails of the Weak Volume 68. This week's worth of failure includes AI fails, human fails and stupid pet tricks. Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2012-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5a1f4fd-5464-4676-afb9-e20b0593ced2/sm/ep4186.jpg","duration":271,"publication_date":"2012-01-06T18:07:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/game-fails-2011","changefreq":"weekly","video":[{"title":"2011:E3 - Fails of the Year 2011","description":"Jack and Geoff look over the most liked videos on our GameFails channel ( http://youtube.com/gamefails ) and grab the 10 most YouTube liked. Enjoy!","player_loc":"https://roosterteeth.com/embed/game-fails-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e943b80b-0111-466a-9213-13c9d42e6032/sm/ep4185.jpg","duration":433,"publication_date":"2012-01-06T16:03:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2012-19","changefreq":"weekly","video":[{"title":"2012:E1 - FLOCK!","description":"This week Michael faces his greatest foe yet, sheep. Will he be able wrangle them critters or will they get the best of him Tune in to find out!","player_loc":"https://roosterteeth.com/embed/rage-quit-2012-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22804d18-76ec-418c-8848-4f451db3d9b9/sm/ep4184.jpg","duration":318,"publication_date":"2012-01-06T07:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dialing-long-distance","changefreq":"weekly","video":[{"title":"2012:E1 - Dialing Long Distance","description":"Jack and Ray check out Black College Football: The Experience so Jack can pick up his secret Santa achievement that Ray gave him, \"Dialing Long Distance.\" Enjoy. Or, at least try to.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dialing-long-distance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cbf0904-62a5-4a9c-9e98-ecd82468955e/sm/ep4183.jpg","duration":138,"publication_date":"2012-01-06T00:01:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-glork-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E993 - Glork Achievement Guide","description":"Nom nom nom, \r\ngamerscore. iSayWhat \r\nshows you how to \r\nfind a game of 'All \r\nyou can Quaff\" and \r\nhow to XY your way \r\nto Glork.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-glork-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":129,"publication_date":"2012-01-05T20:52:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-treasure-fanatic-achievement-guide-part-2","changefreq":"weekly","video":[{"title":"2012:E992 - Treasure Fanatic Achievement Guide Part 2","description":"JasonMB shows us where all the Umbra locations through chapters 9 through 15 in Bayonetta in pursuit of the Treasure Fanatic Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-treasure-fanatic-achievement-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":204,"publication_date":"2012-01-05T18:52:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-treasure-fanatic-achievement-guide-part-1-1","changefreq":"weekly","video":[{"title":"2012:E991 - Treasure Fanatic Achievement Guide Part 1","description":"JasonMB shows us all the Umbra resting places in chapters 1 through 6 of Bayonetta in pursuit of the Treasure Fanatic Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-treasure-fanatic-achievement-guide-part-1-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":208,"publication_date":"2012-01-05T18:47:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-army-of-darkness-and-twofor-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E990 - Army of Darkness and Twofor Achievement Guide","description":"In this video, Husky will show \r\nyou how to earn 2 achievements \r\nin the mission \"Nightshift\" \r\n\r\nFollow Husky on Twitter: \r\nwww.twitter.com/AH_Husky","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-army-of-darkness-and-twofor-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":150,"publication_date":"2012-01-05T18:42:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-roadkill-and-involuntary-euthanasia-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E989 - Roadkill and Involuntary Euthanasia Achievement Guide","description":"In this video Husky will be \r\nshowing you how to earn the \r\n\"Roadkill\" achievement along \r\nwith \"Involuntary Euthanasia\" on \r\nthe mission Uprising!\r\n\r\nFollow Husky on Twitter \r\n@AH_Husky","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-roadkill-and-involuntary-euthanasia-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":107,"publication_date":"2012-01-05T18:33:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-you-can-be-my-wingman-anytime-achievement-guide-1","changefreq":"weekly","video":[{"title":"2012:E988 - You can be my wingman anytime Achievement Guide","description":"In this video, @AH_Husky will \r\ntake you up to the skies and \r\nguide you on your way to \r\nearning the \"You can be my \r\nwingman anytime\" achievement \r\nworth 30G\r\n\r\nHusky's YouTube: \r\nwww.youtube.com/user/sgtstim\r\npy\r\n\r\nHusky's Twitter: \r\nwww.twitter.com/AH_Husky","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-you-can-be-my-wingman-anytime-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":437,"publication_date":"2012-01-05T18:23:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-what-the-hell-*are*-you-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E987 - What the hell *are* you? Achievement Guide","description":"In this video @AH_Husky will \r\nshow you how to earn yourself a \r\ndog tag and an achievement \r\nworth 20G in the mission \"Rock \r\nAnd A Hard Place\"\r\n\r\nHusky's YouTube: \r\nwww.youtube.com.com/user/sgt\r\nstimpy\r\n\r\nTwitter: \r\nwww.twitter.com/AH_Husky","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-what-the-hell-*are*-you-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":78,"publication_date":"2012-01-05T18:13:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-64","changefreq":"weekly","video":[{"title":"2012:E2 - Sonic CD","description":"Kermit the Fr-err....I mean, \nSpecOps614 here, with a \"This \nIs...\" for Sonic CD! Enjoy! P.S. \nThere's an easter egg in here, \nFIND IT!","player_loc":"https://roosterteeth.com/embed/this-is-2012-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":193,"publication_date":"2012-01-05T17:35:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-double-down-squibittyboo-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E986 - Double Down, Squibittyboo! Achievement Guide","description":"Ray and Mike show how to get the Double Down and Squibittyboo! Achievements in NFL Blitz for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-double-down-squibittyboo-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48ca69dc-f47e-4427-a057-4179b1da9658/sm/ep4174.jpg","duration":151,"publication_date":"2012-01-05T17:23:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-26","changefreq":"weekly","video":[{"title":"2012:E2 - Night at the Roxbury Easter Egg","description":"Jack and Geoff check out an Easter egg you can spot in Nim'Ro's palace on Hutta early on in Star Wars: The Old Republic. Get your favorite sparkly shirt on and grab a fizzy drink to enjoy this one to it's full potential.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa2e52d6-e50b-4856-9a2f-11a1d4da39a4/sm/ep4173.jpg","duration":70,"publication_date":"2012-01-05T15:27:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2012-15","changefreq":"weekly","video":[{"title":"2012:E1 - Achievement HORSE #56","description":"Jack squares off against a fresh new opponent (Caleb) in this week's episode of HORSE. Who will win The crusty old vet or the young hot shot Watch to find out! All maps are available at http://bit.ly/AHHORSE56","player_loc":"https://roosterteeth.com/embed/achievement-horse-2012-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4bfaba3-babe-4d5a-91aa-d497f64cfbb6/sm/ep4172.jpg","duration":391,"publication_date":"2012-01-05T00:54:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2012-16","changefreq":"weekly","video":[{"title":"2012:E1 - Saint's Row 3 - Duck Hunt","description":"Looking for something new to do in Saint's Row after beating the story Geoff and Michael have you covered with \"Duck Hunt.\"","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2012-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87c1c387-1312-430a-b686-7ca84d8d540b/sm/ep4171.jpg","duration":159,"publication_date":"2012-01-04T21:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-red-reaper-flashpoint-guide","changefreq":"weekly","video":[{"title":"2012:E985 - The Red Reaper Flashpoint Guide","description":"Adam and Jack guide is delicately through the Red Reaper flashpoint in Star Wars: The Old Republic.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-red-reaper-flashpoint-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2f2c9ba-42b3-4714-832f-1dfd25d55686/sm/ep4169.jpg","duration":356,"publication_date":"2012-01-04T18:27:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-macaroon-gift-and-pigxie-prize-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E984 - Macaroon Gift and Pigxie Prize Achievement Guide","description":"Remember Viva \r\nPiata No, well the \r\nPiatas remember \r\nyou, so why not \r\nspend your garden a \r\nvisit and pick up \r\nthese achievements. \r\nIf you don't know \r\nhow don't worry \r\niSayWhat is about to \r\nshow you.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-macaroon-gift-and-pigxie-prize-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":300,"publication_date":"2012-01-04T16:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-enchanter-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E983 - Enchanter Achievement Guide","description":"CreepyCondo shows you how to get the Enchanter achievement in minecraft","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-enchanter-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":96,"publication_date":"2012-01-04T16:02:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ghost-achievement-guide-2","changefreq":"weekly","video":[{"title":"2012:E982 - Ghost Achievement Guide","description":"In this video @AH_Husky will be \r\nshowing you how to sneak your \r\nway to the \"Ghost\" achievement \r\non Deus Ex: Human Revolution","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ghost-achievement-guide-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":139,"publication_date":"2012-01-04T15:48:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2012-24","changefreq":"weekly","video":[{"title":"2012:E1 - Top Easter Eggs of 2011: Best Of The Rest","description":"Geoff and Jack show you the runners up for the best Xbox 360 Easter Eggs of 2011.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2012-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24ce2577-067d-40c4-8a93-68f63b4e1553/sm/ep4165.jpg","duration":365,"publication_date":"2012-01-03T20:07:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2012","changefreq":"weekly","video":[{"title":"2012:E1 - Alabama vs. LSU","description":"Geoff and Jack use NCAA Football 12 to simulate and determine the winner of the BCS National Championship matchup between #1 LSU and #2 Alabama.","player_loc":"https://roosterteeth.com/embed/ah-predicts-2012","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcd92171-e4ae-4acc-bb36-141401c76e9c/sm/ep4164.jpg","duration":365,"publication_date":"2012-01-03T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-treasure-fanatic-achievement-guide-part-1","changefreq":"weekly","video":[{"title":"2012:E981 - Treasure Fanatic Achievement Guide Part 1","description":"JasonMB shows us where to find all the Umbra resting places in chapters 1 - 6 of Bayonetta","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-treasure-fanatic-achievement-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":208,"publication_date":"2012-01-03T17:42:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-butterfly-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E980 - Butterfly Achievement Guide","description":"In this video, Lt I Husky will be \r\nshowing you how to get that \r\nnaughty but nice \"Butterfly\" \r\nachievement!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-butterfly-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":163,"publication_date":"2012-01-03T17:31:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-jaws-gulf-of-oman-map-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E979 - Jaws (Gulf of Oman Map) Achievement Guide","description":"In this video Lt I Husky will be \r\nshowing you how to locate the \r\nhotel in the map Gulf Of Oman \r\nthat has a swimming pool for \r\nyou to swim in that gives you a \r\n20G achievement by the name of \r\n\"Jaws\"!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-jaws-gulf-of-oman-map-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":142,"publication_date":"2012-01-03T17:25:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-lego-indiana-jones","changefreq":"weekly","video":[{"title":"S1:E4 - A Look Back At: Lego Indiana Jones","description":"Fragger and Ray take a look back at the easiest of the Lego games, Lego Indiana Jones.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-lego-indiana-jones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37582858-83e2-412e-98ed-fe4c1eb364dc/sm/ep4160.jpg","duration":466,"publication_date":"2012-01-03T17:20:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fists-of-fury-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E978 - Fists of Fury Achievement Guide","description":"SpecOps614 here, showing you \r\nthe quickest way to get the \"Fists \r\nof Fury\" achievement in All \r\nZombies Must Die!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fists-of-fury-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":111,"publication_date":"2012-01-03T16:58:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-married-achievement-guide","changefreq":"weekly","video":[{"title":"2012:E977 - Married Achievement Guide","description":"xXDewey16Xx shows you how to get married in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-married-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":264,"publication_date":"2012-01-03T16:50:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-gunstringer-lucky-prize-winner-and-sellout-guides","changefreq":"weekly","video":[{"title":"2012:E976 - The Gunstringer: \"Lucky Prize Winner\" & \"Sellout\" Guides","description":"SpecOps614 here, showing you \r\nhow to buy....errr... I mean, get, \r\ntwo achievements in \"The \r\nGunstringer\"! Enjoy","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-gunstringer-lucky-prize-winner-and-sellout-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":96,"publication_date":"2012-01-03T16:07:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-eye-of-the-storm-veteran-guide","changefreq":"weekly","video":[{"title":"2012:E975 - Eye of the Storm Veteran Guide","description":"RBIG shows you how to \r\ncomplete the level Eye \r\nof the Storm on \r\nVeteran difficulty.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-eye-of-the-storm-veteran-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":173,"publication_date":"2012-01-03T15:46:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-goalpost-veteran-guide","changefreq":"weekly","video":[{"title":"2012:E974 - Goalpost Veteran Guide","description":"RBIG show you a guide \r\non how to complete the \r\nlevel Goalpost on \r\nVeteran.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-goalpost-veteran-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/5ae1d493-ec36-4f61-a5c2-c27182164301.jpg/sm/ah_default.jpg","duration":300,"publication_date":"2012-01-03T15:40:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/this-is-2012-63","changefreq":"weekly","video":[{"title":"2012:E1 - All Zombies Must Die!","description":"Version2* SpecOps614 here, \npresenting a \"This Is...\" for the \nXBLA game \"All Zombies Must \nDie!\" Enjoy!","player_loc":"https://roosterteeth.com/embed/this-is-2012-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":191,"publication_date":"2012-01-03T15:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2012-12","changefreq":"weekly","video":[{"title":"2012:E1 - New Year Edition","description":"Jack and Geoff weren't in the office today, but they left us this nice little video. Enjoy and check back soon for fresh new AHWU content!","player_loc":"https://roosterteeth.com/embed/ahwu-2012-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e4a94974-e97a-42f2-b251-f034f1d649b3/sm/ep4153.jpg","duration":27,"publication_date":"2012-01-02T22:14:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-11","changefreq":"weekly","video":[{"title":"2011:E52 - Volume 67","description":"Jack and Geoff are back with the final batch of Fails of the Weak for 2011. Will they go out with a bang or with a whimper (It's a whimper and a laugh.)","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6961c36b-4cc8-4ebb-94e6-3be6227df96c/sm/ep4150.jpg","duration":243,"publication_date":"2011-12-30T23:18:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-the-incredible-hulk","changefreq":"weekly","video":[{"title":"S1:E3 - A Look Back At: The Incredible Hulk","description":"Fragger and Ray take a look back at the open-world movie game, The Hulk.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-the-incredible-hulk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08f1919c-4959-4d00-9aca-fe0e6dc7265c/sm/ep4149.jpg","duration":493,"publication_date":"2011-12-30T18:48:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2011-2","changefreq":"weekly","video":[{"title":"2011:E4 - Saints Row The Third With Geoff & Michael - Part 4","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/store/60f8989b-3e8f-411c-be78-e3989937d3fa.jpg/sm/maxresdefault.jpg","duration":2135,"publication_date":"2011-12-30T18:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-9","changefreq":"weekly","video":[{"title":"2011:E51 - Dodge 'Em","description":"This week on Rage Quit Michael plays the Atari classic, Dodge 'Em.\n\nCan he in fact, dodge them all No, he can't.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a12ef39a-e35b-4307-839e-213376c357c4/sm/ep4147.jpg","duration":341,"publication_date":"2011-12-30T03:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tatooine-holocrons-empire-side","changefreq":"weekly","video":[{"title":"2011:E409 - Tatooine Holocrons (Empire Side)","description":"Jack and Adam hit the dunes and grab the hidden holocrons and datacrons in Tatooine on the Empire side. Just make sure not to fall off of that balloon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tatooine-holocrons-empire-side","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d94b653f-d648-46d1-8f2a-94e7bdcd386f/sm/ep4146.jpg","duration":239,"publication_date":"2011-12-29T20:17:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-colicoid-war-games-flashpoint","changefreq":"weekly","video":[{"title":"2011:E408 - Colicoid War Games Flashpoint","description":"Jack and Adam put on their shooting' boots and head in to the Colicoid War Games flashpoint in Star Wars: The Old Republic. Join them as they shoot and pew pew pew lots of things.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-colicoid-war-games-flashpoint","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/694b13f9-1acf-4aad-b43c-9b79d839caa7/sm/ep4145.jpg","duration":292,"publication_date":"2011-12-29T17:24:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-you-can-be-my-wingman-anytime","changefreq":"weekly","video":[{"title":"2011:E407 - You can be my wingman anytime","description":"Achievement Hunter Secret Santa continues today with this \"gift\" from Michael to Fragger. It's the obnoxiously difficult \"You can be my wingman anytime\" Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-you-can-be-my-wingman-anytime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89ea2d31-329c-4c01-9b6c-f5677a0b671d/sm/ep4144.jpg","duration":204,"publication_date":"2011-12-29T15:22:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-17","changefreq":"weekly","video":[{"title":"2011:E73 - Top 10 Easter Eggs of 2011","description":"Geoff and Jack show you their picks for the ten best Easter Eggs of 2011.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2ba6915-18d9-43a2-8c98-331a5445d22d/sm/ep4143.jpg","duration":330,"publication_date":"2011-12-29T15:17:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-9","changefreq":"weekly","video":[{"title":"2011:E51 - Achievement HORSE #55","description":"Jack and Marshall go head to head in this matchup of what would have been the third place game in the office tournament. Who will you root for All maps are available at http://bit.ly/AHHORSE55","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43e196dd-7cd7-46a7-93fc-741b19dcc932/sm/ep4142.jpg","duration":327,"publication_date":"2011-12-28T23:44:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2011-2","changefreq":"weekly","video":[{"title":"2011:E5 - Saint's Row 3 - The Roxbury","description":"Geoff and Michael show you how to do \"The Roxbury\" in the latest Things To Do, set in Saints Row: The Third.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a700d1fa-9004-4100-aedf-ad67cbeadaf1/sm/ep4140.jpg","duration":123,"publication_date":"2011-12-28T17:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-15","changefreq":"weekly","video":[{"title":"2011:E72 - Raam's Gift Easter Egg","description":"Ray and Michael show you how to get the Vulcan gun Easter Egg in the Raam's Shadow DLC for Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/801277ff-bf68-420c-95dd-7326b3b861eb/sm/ep4139.jpg","duration":204,"publication_date":"2011-12-28T17:11:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stay-classy-steelport","changefreq":"weekly","video":[{"title":"2011:E406 - Stay Classy Steelport","description":"Achievement Hunter Secret Santa continues with Ray's gift from Geoff, the Stay Classy Steelport Achievement in Saints Row: The Third.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stay-classy-steelport","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f685b74-b7d0-431e-81c6-f4b10b98f424/sm/ep4138.jpg","duration":168,"publication_date":"2011-12-28T16:57:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nar-shaddaa-hidden-holocrons","changefreq":"weekly","video":[{"title":"2011:E405 - Nar Shaddaa Hidden Holocrons","description":"Jack and Adam check out all of the hidden Holocron and Datacrons scattered throughout Nar Shaddaa! Who's ready for some platforming","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nar-shaddaa-hidden-holocrons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/130f09f1-d500-486e-92b8-bc24290ce369/sm/ep4137.jpg","duration":342,"publication_date":"2011-12-27T22:34:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-cowboys-vs-giants","changefreq":"weekly","video":[{"title":"2011:E18 - Cowboys vs. Giants","description":"Geoff and Jack use Madden NFL 12 to simulate and determine the winner of this weekend's Cowboys vs. Giants game. The winner will go on to fill the fourth slot in the NFC playoffs, the loser will cry.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-cowboys-vs-giants","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9353bde6-9a27-4041-a971-ec5c9c32fa81/sm/ep4136.jpg","duration":261,"publication_date":"2011-12-27T20:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gotham-base-jumper","changefreq":"weekly","video":[{"title":"2011:E404 - Gotham Base Jumper","description":"Geoff and Jack start of this year's Achievement Hunter Secret Santa program with the Gotham Base Jumper Achievement in Batman: Arkham City. Look for new Secret Santa videos every day this week.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gotham-base-jumper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1066ca1d-1cf9-492c-836e-a648cc6d39f2/sm/ep4135.jpg","duration":178,"publication_date":"2011-12-27T18:03:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-14","changefreq":"weekly","video":[{"title":"2011:E71 - Battlefield 2143 Easter Egg","description":"Fragger and Ray show you where to find a nifty little 2143 Wake Island map, from the Back to Karkand DLC for Battlefield 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21aeb7d2-b923-47d2-b5fd-c1cd18c708fe/sm/ep4134.jpg","duration":100,"publication_date":"2011-12-27T15:05:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-8","changefreq":"weekly","video":[{"title":"2011:E52 - Holiday Special!","description":"Jack and Geoff are on vacation, so enjoy this collection of submissions to our AH Holidays contest! See you next year!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ad868d2-897c-4b3b-8931-acc3e5c9f804/sm/ep4133.jpg","duration":151,"publication_date":"2011-12-26T22:32:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-planet-wisp-zone","changefreq":"weekly","video":[{"title":"2011:E403 - Sonic Generations - Red Ring Collector - Planet Wisp Zone","description":"Mike and Ray show you where to find all of the red rings on Planet Wisp Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-planet-wisp-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90a4202b-b5ba-44e2-aba5-b0f3103cb44b/sm/2013912-1451425065300-maxresdefault_(1).jpg","duration":393,"publication_date":"2011-12-25T23:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-condemned-criminal-origins","changefreq":"weekly","video":[{"title":"S1:E2 - A Look Back At: Condemned - Criminal Origins","description":"Fragger and Ray take a look at the launch title, Condemned - Criminal Origins for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-condemned-criminal-origins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b68010e6-ce34-49dd-9991-4a7a2515e5c7/sm/ep4129.jpg","duration":436,"publication_date":"2011-12-24T01:49:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-7","changefreq":"weekly","video":[{"title":"2011:E51 - Volume 66","description":"Jack and Geoff are here with your pre-Christmas edition of Fails of the Weak! Laugh along with them as they retell stories of old with a glass of egg nog and gingerbread cookies.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d245d037-29f3-42de-a8fb-10ac9e5e94ad/sm/ep4128.jpg","duration":234,"publication_date":"2011-12-23T22:52:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bag-and-drag-veteran-guide","changefreq":"weekly","video":[{"title":"2011:E970 - Bag and Drag Veteran Guide","description":"RBIG shows you how to complete the level Bag and Drag on veteran.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bag-and-drag-veteran-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":263,"publication_date":"2011-12-23T21:06:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/lets-play-2011","changefreq":"weekly","video":[{"title":"2011:E3 - Saints Row The Third With Geoff & Michael - Part 3","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6bb6cc5-6792-4ac6-9926-4397f1a68b43/sm/ep4114.jpg","duration":2080,"publication_date":"2011-12-23T11:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-4","changefreq":"weekly","video":[{"title":"2011:E50 - Halo: Reach - LASO","description":"This week Michael tries his luck with the LASO (Legendary All Skulls On) challenge in Halo: Reach. I hope he doesn't mind adding one more skull to the collection, his.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed4a8b2f-505e-409e-88a1-30e4f0e3bc0e/sm/ep4113.jpg","duration":314,"publication_date":"2011-12-22T22:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-raams-shadow-finger-of-doom-im-rubber-youre-glue","changefreq":"weekly","video":[{"title":"2011:E402 - Raam's Shadow - Finger of Doom, I'm Rubber, You're Glue","description":"Ray and Mike show us how to get the Finger of Doom and I'm Rubber, You're Glue Achievements in the Raam's Shadow DLC for Gears of War 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-raams-shadow-finger-of-doom-im-rubber-youre-glue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb19fa85-bbc1-449e-8034-1ef65453eadb/sm/ep4112.jpg","duration":163,"publication_date":"2011-12-22T17:53:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-8","changefreq":"weekly","video":[{"title":"2011:E70 - Titanic Easter Egg","description":"Geoff and Jack show you where to find a Titanic Easter Egg in Saint's Row: The Third.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dc76d5e-0c64-4af5-a2f9-bc2e877dc0a0/sm/ep4111.jpg","duration":101,"publication_date":"2011-12-22T15:31:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-7","changefreq":"weekly","video":[{"title":"2011:E69 - All Dinosaurs Easter Egg","description":"Fragger and Ray show you where to find all of the hidden dinosaurs in the Wake Island map, from the Back to Karkand DLC for Battlefield 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e007d42d-fa6c-41a2-bbd6-87776cda2761/sm/ep4110.jpg","duration":180,"publication_date":"2011-12-22T15:11:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-2","changefreq":"weekly","video":[{"title":"2011:E50 - Achievement HORSE #54","description":"In this very special behind the scenes edition of Achievement HORSE, you get to see what really happened last week in the one-handed HORSE event. Who will get the maddest (Hint: It's Dragonface.)","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bd8ba22-2908-4e69-97b6-b227a3fcfd73/sm/ep4108.jpg","duration":222,"publication_date":"2011-12-21T18:21:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-raams-shadow-death-from-above-unarmed-and-dangerous","changefreq":"weekly","video":[{"title":"2011:E401 - Raam's Shadow - Death from Above, Unarmed and Dangerous","description":"Ray and Mike show us how to get the Death From Above and Unarmed and Dangerous Achievements in the Raam's Shadow DLC for Gears of War 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-raams-shadow-death-from-above-unarmed-and-dangerous","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff8e6e13-8f80-48d9-ab5f-4eba823fe6c6/sm/ep4107.jpg","duration":238,"publication_date":"2011-12-21T15:47:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2011","changefreq":"weekly","video":[{"title":"2011:E4 - Saint's Row 3 - The Fall Guy","description":"Geoff and Michael show you how to do the Fall Guy in Saint's Row 3. Submit your own Fall Guy at http://www.ahuploads.com","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a6a6a77-bda2-4b7f-9daf-ae7532f3ff74/sm/ep4106.jpg","duration":136,"publication_date":"2011-12-21T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-empire-holocrons-first-four-planets","changefreq":"weekly","video":[{"title":"2011:E400 - Empire Holocrons (First four planets)","description":"Jack and Geoff show you the locations of all of the hidden holocrons and datacrons in Star Wars: The Old Republic on the Empire side of things. Join them as they visit Korriban, Hutta, Dromund Kaas and Balmorra. Check back soon for more!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-empire-holocrons-first-four-planets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5be75a5d-da58-4a69-b78b-609e48149de6/sm/ep4103.jpg","duration":451,"publication_date":"2011-12-20T22:49:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-kill-the-meme","changefreq":"weekly","video":[{"title":"2011:E399 - Skyrim: Kill the Meme","description":"Ryan takes a stand against a disturbing new trend in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-kill-the-meme","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/58e04511-bdd7-4383-b8a6-09fe501184ef/sm/ep4102.jpg","duration":88,"publication_date":"2011-12-20T22:42:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-arizona-state-vs-boise-state","changefreq":"weekly","video":[{"title":"2011:E17 - Arizona State vs. Boise State","description":"Geoff and Jack use NCAA Football 12 to simulate and determine the winner of the the Maaco Bowl, featuring Arizona State and Boise State.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-arizona-state-vs-boise-state","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6a8582e-35d2-4731-b166-62906dbf0971/sm/ep4101.jpg","duration":414,"publication_date":"2011-12-20T18:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-am-all-that-is-man-again","changefreq":"weekly","video":[{"title":"2011:E398 - I Am All That Is Man - Again!","description":"Ray and Mike walk you through the last bit of Duke Nukem Forever's newest DLC and grab the \"I Am All That Is Man - Again!\" achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-am-all-that-is-man-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c74decac-667a-4e9f-9063-fbab41918ef6/sm/ep4100.jpg","duration":447,"publication_date":"2011-12-20T17:15:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011","changefreq":"weekly","video":[{"title":"2011:E51 - Week #93","description":"Jack and Geoff deliver you the pre-Christmas news and game info from their home offices on the North Pole. Just kidding, they are really in Austin. Don't forget to submit your Achievement Hunter Holiday themed image to info@achievementhunter.com with the subject \"AH Holidays!\" Also, the Rage Quit shirt is available now right here: http://bit.ly/RageQuitShirt","player_loc":"https://roosterteeth.com/embed/ahwu-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1140eb2b-cf04-4f51-8bcd-5fe6390cf66a/sm/ep4099.jpg","duration":237,"publication_date":"2011-12-19T23:39:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2011-4","changefreq":"weekly","video":[{"title":"2011:E2 - Saints Row The Third with Geoff & Michael - Part 2","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third.","player_loc":"https://roosterteeth.com/embed/lets-play-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e938eed-be57-4dc2-87cc-62135ed023e6/sm/ep4095.jpg","duration":2121,"publication_date":"2011-12-19T17:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-star-wars-the-old-republic-unboxing","changefreq":"weekly","video":[{"title":"2011:E397 - Star Wars: The Old Republic - Unboxing","description":"Geoff and Gus do an unboxing of the Collector's Edition of Star Wars: The Old Republic","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-star-wars-the-old-republic-unboxing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/81f27678-5a97-4fec-9cd8-eba5282556a9/sm/ep4094.jpg","duration":280,"publication_date":"2011-12-16T23:20:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tin-marksman-gunstringer-rides-again-and-once-upon-a-time","changefreq":"weekly","video":[{"title":"2011:E396 - Tin Marksman, Gunstringer Rides Again and Once Upon a Time","description":"A guide for picking up the \"Tin Marksman\", \"The Gunstringer Rides Again\" and \"Once Upon a Time in the West\" achievements in Kinect title The Gunstringer.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tin-marksman-gunstringer-rides-again-and-once-upon-a-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":124,"publication_date":"2011-12-16T22:31:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-meta-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E950 - The Meta Achievement Guide","description":"Having difficulty trying to collect those A.I fragments, I was as well until I had some help from Annihil8or and ppmg44","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-meta-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":586,"publication_date":"2011-12-16T22:07:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-46","changefreq":"weekly","video":[{"title":"2011:E50 - Volume 65","description":"Jack and Geoff make fun of people for being even worse at Halo than them.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/070c133a-89f4-4abf-b9e2-abcb1272e0c6/sm/ep4080.jpg","duration":294,"publication_date":"2011-12-16T21:29:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/a-look-back-at-season-1-a-look-back-at-the-darkness","changefreq":"weekly","video":[{"title":"S1:E1 - A Look Back At: The Darkness","description":"Fragger and Ray dust of their copies of The Darkness and take it for a spin, which is video game jargon for \"play\".","player_loc":"https://roosterteeth.com/embed/a-look-back-at-season-1-a-look-back-at-the-darkness","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/671f4f9c-69c3-4e17-8847-a2680e579da7/sm/ep4079.jpg","duration":460,"publication_date":"2011-12-16T20:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-doctor-who-cloned-me-bubble-buster-bloody-red-rover","changefreq":"weekly","video":[{"title":"2011:E395 - The Doctor Who Cloned Me - Bubble Buster, Bloody Red Rover","description":"Ray and Micheal show you how to get the Bubble Buster and Bloody Red Rover Achievements in the new DLC for Duke Nukem Forever, \"The Doctor Who Cloned Me.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-doctor-who-cloned-me-bubble-buster-bloody-red-rover","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/708538f8-26d0-4c63-8126-682393eafb87/sm/ep4078.jpg","duration":198,"publication_date":"2011-12-16T18:27:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-60","changefreq":"weekly","video":[{"title":"2011:E68 - Commemorative Plaque Easter Egg","description":"Fragger and Geoff show you where to find the hidden commemorative plaque easter egg in the Back to Karkand DLC for Battlefield 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c796a6e-bbec-480b-b0d5-8f9bec09ee52/sm/ep4077.jpg","duration":88,"publication_date":"2011-12-16T16:48:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-54","changefreq":"weekly","video":[{"title":"2011:E61 - Defense Grid: You Monster DLC","description":"Fragger and Geoff take a look at the Portal themed DLC \"You Monster,\" for the Xbox Live Arcade game, Defense Grid.","player_loc":"https://roosterteeth.com/embed/this-is-2011-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf1d352a-3e15-48bc-aa6f-9b8faa269df7/sm/ep4076.jpg","duration":304,"publication_date":"2011-12-16T16:18:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-48","changefreq":"weekly","video":[{"title":"2011:E49 - Tetris Splash","description":"In this week's Rage Quit Michael dives into an underwater adventure as he plays Tetris Splash. I hope he brought enough oxygen.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f03ec16b-9652-4681-a107-18cc1f6b258b/sm/ep4075.jpg","duration":176,"publication_date":"2011-12-16T05:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-53","changefreq":"weekly","video":[{"title":"2011:E60 - Gears of War 3: Raam's Shadow DLC","description":"Fragger and Geoff take the new Raam's Shadow DLC for a spin in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/this-is-2011-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72902491-0d29-40c6-b613-507ae8f0c197/sm/ep4074.jpg","duration":341,"publication_date":"2011-12-15T17:55:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-59","changefreq":"weekly","video":[{"title":"2011:E67 - 343 Guilty Spark Easter Egg","description":"Geoff and Jack show you where to find 343 Guilty Spark, hidden away in the Installation 04 Firefight Map in Halo CE Anniversary Edition for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03df38c2-a268-4c9f-a5e4-5890331e0637/sm/ep4073.jpg","duration":105,"publication_date":"2011-12-15T16:13:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-58","changefreq":"weekly","video":[{"title":"2011:E66 - Dinosaur Easter Egg","description":"Fragger and Geoff show you where to find a hidden dinosaur in the Wake Island map, from the Back to Karkand DLC for Battlefield 3 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-58","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbae5c51-de58-4850-b1f5-968ba0e3de4f/sm/ep4072.jpg","duration":48,"publication_date":"2011-12-15T15:20:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-16-fire-mission","changefreq":"weekly","video":[{"title":"2011:E394 - Spec Ops 16 - Fire Mission","description":"Ray and Mike show us how to get 3 stars on the Fire Mission Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-16-fire-mission","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1a2e98b-beeb-4af8-be88-554d9b4e588c/sm/ep4071.jpg","duration":225,"publication_date":"2011-12-15T14:34:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-45","changefreq":"weekly","video":[{"title":"2011:E49 - Achievement HORSE #53","description":"To celebrate Geoff getting his cast removed, this week's edition of HORSE is a ONE-HAND event! We make everyone play the Halo Fest map from Edo Sens with only one hand! Will anyone actually complete it Watch and learn!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a0d4fdc-b5f3-45d6-a08c-81700b25ab7b/sm/ep4070.jpg","duration":365,"publication_date":"2011-12-15T01:36:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-joel-and-jack-play-country-dance-2","changefreq":"weekly","video":[{"title":"2011:E393 - Joel and Jack play... Country Dance 2","description":"Joel shows Jack some exciting moves in \"Country Dance 2.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-joel-and-jack-play-country-dance-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7877f1c-5309-4b35-ae87-ecd09579f039/sm/ep4069.jpg","duration":92,"publication_date":"2011-12-14T23:35:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2011-5","changefreq":"weekly","video":[{"title":"2011:E3 - Saint's Row 3 - Bozo's Bucket Bonanza","description":"Geoff and Michael show you how to do Bozo's Bucket Bonanza in Saint's Row 3. Submit your own Bucket Drop at http://www.ahuploads.com","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acf88191-b5a4-4b52-8fe2-cb09509f90d2/sm/ep4067.jpg","duration":173,"publication_date":"2011-12-14T16:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-doctor-who-cloned-me-threesome-scientits","changefreq":"weekly","video":[{"title":"2011:E392 - The Doctor Who Cloned Me - Threesome, Scientits","description":"Ray and Mike/al show you how to get the Threesome and Scientits Achievements in the new DLC for Duke Nukem Forever, \"The Doctor Who Cloned Me.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-doctor-who-cloned-me-threesome-scientits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebfd3593-3d05-439a-8d3d-ce03495db576/sm/ep4065.jpg","duration":179,"publication_date":"2011-12-14T16:12:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-52","changefreq":"weekly","video":[{"title":"2011:E59 - Apples to Apples","description":"Fragger and Ray take the Xbox Live Arcade game \"Apples to Apples\" for a spin.","player_loc":"https://roosterteeth.com/embed/this-is-2011-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f337c893-8e42-4d24-8d4b-3076d41494e8/sm/ep4064.jpg","duration":541,"publication_date":"2011-12-14T15:32:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-spider-assassin-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E945 - Spider-Assassin Achievement Guide","description":"Jack and Geoff show you a quick way to earn some gamerscore in Assassin's Creed: Revelations by climbing up a tower and then jumping off! Watch and learn!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-spider-assassin-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f730037-bbf7-4cdc-87cc-04f05e39c6b4/sm/ep4063.jpg","duration":78,"publication_date":"2011-12-13T22:48:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-steelers-vs-49ers","changefreq":"weekly","video":[{"title":"2011:E16 - Steelers vs. 49ers","description":"Geoff and Jack use Madden NFL 12 to simulate and determine the winner of this weekend's Steelers vs. 49ers game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-steelers-vs-49ers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59328300-debe-4b35-8e69-389d033b0050/sm/ep4062.jpg","duration":217,"publication_date":"2011-12-13T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-15-flood-the-market","changefreq":"weekly","video":[{"title":"2011:E391 - Spec Ops 15 - Flood the Market","description":"Ray and Mike show us how to get 3 stars on the Flood the Market Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-15-flood-the-market","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbf0aa64-a673-4d3e-8657-508899ae69a3/sm/ep4061.jpg","duration":761,"publication_date":"2011-12-13T19:22:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-45","changefreq":"weekly","video":[{"title":"2011:E50 - Week #92","description":"Geoff is out on vacation so Joel steps in to screw up things with Jack. Watch as they talk about this week in DLC and announce a new contest to win free shirts from http://insertcoinclothing.com !!\r\n\r\nAlso, you can now pick up your own Rage Quit shirt! Click here: http://bit.ly/RageQuitShirt","player_loc":"https://roosterteeth.com/embed/ahwu-2011-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1b57ea7-d3bb-417b-893c-ebf8bffdc63f/sm/ep4060.jpg","duration":379,"publication_date":"2011-12-12T23:39:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-city-escape-zone","changefreq":"weekly","video":[{"title":"2011:E390 - Sonic Generations - Red Ring Collector - City Escape Zone","description":"Mike and Ray show you where to find all of the red rings on City Escape Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-city-escape-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc4d92a1-367c-4bc7-b719-f1047a00a3be/sm/2013912-1451425020892-maxresdefault.jpg","duration":209,"publication_date":"2011-12-10T01:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-speed-highway-zone","changefreq":"weekly","video":[{"title":"2011:E389 - Sonic Generations - Red Ring Collector - Speed Highway Zone","description":"Mike and Ray show you where to find all of the red rings on Speed Highway Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-speed-highway-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39e97408-e842-42c1-a9c8-33e7e94c6223/sm/2013912-1451424983645-maxresdefault_(16).jpg","duration":214,"publication_date":"2011-12-10T01:27:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-rooftop-run-zone","changefreq":"weekly","video":[{"title":"2011:E388 - Sonic Generations - Red Ring Collector - Rooftop Run Zone","description":"Mike and Ray show you where to find all of the red rings on Rooftop Run Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-rooftop-run-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cf00718-bbe6-4b41-ad9a-bb86dda82c7c/sm/2013912-1451424960036-maxresdefault_(15).jpg","duration":198,"publication_date":"2011-12-10T00:42:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-crisis-city-zone","changefreq":"weekly","video":[{"title":"2011:E387 - Sonic Generations - Red Ring Collector - Crisis City Zone","description":"Mike and Ray show you where to find all of the red rings on Crisis City Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-crisis-city-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae76f997-4a83-4520-a7e0-dc543460febe/sm/2013912-1451424935070-maxresdefault_(14).jpg","duration":203,"publication_date":"2011-12-10T00:20:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-seaside-hill-zone","changefreq":"weekly","video":[{"title":"2011:E386 - Sonic Generations - Red Ring Collector - Seaside Hill Zone","description":"Mike and Ray show you where to find all of the red rings on Seaside Hill Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-seaside-hill-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3593b421-4b6b-4a56-987c-a06e125f5170/sm/2013912-1451424902099-maxresdefault_(13).jpg","duration":311,"publication_date":"2011-12-10T00:18:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-41","changefreq":"weekly","video":[{"title":"2011:E49 - Volume 64","description":"Jack and Geoff are back with a fresh steaming pile of failure. Remember to wash your hands after the show, kids.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9464e737-47fb-4050-90c1-47c01b35df2f/sm/ep4044.jpg","duration":218,"publication_date":"2011-12-09T19:13:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-14-smack-town","changefreq":"weekly","video":[{"title":"2011:E385 - Spec Ops 14 - Smack Town","description":"Ray and Mike show us how to get 3 stars on the Smack Town Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-14-smack-town","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79436c67-e14d-41d1-8daf-0762dee0dab6/sm/ep4043.jpg","duration":661,"publication_date":"2011-12-09T18:18:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-professional-hero","changefreq":"weekly","video":[{"title":"2011:E384 - Professional Hero","description":"Ray and Mike show you how to get the Professional Hero Achievement in Punch Time Explosion XL for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-professional-hero","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbb4305f-30e6-44f4-926b-155a87b82f8e/sm/ep4042.jpg","duration":208,"publication_date":"2011-12-09T17:00:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-43","changefreq":"weekly","video":[{"title":"2011:E48 - Monopoly Streets","description":"Michael returns to a simpler time on this week's Rage Quit with a gold old fashioned game of Monopoly Streets. Can he win it all or is bankruptcy in his future","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8aa4ca02-6b1d-49d0-b45d-0f246cbf62c5/sm/ep4041.jpg","duration":296,"publication_date":"2011-12-09T05:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-55","changefreq":"weekly","video":[{"title":"2011:E65 - Invisible Treasure Chest Easter Egg","description":"Fragger and Geoff show you where to find a re-fillable, invisible treasure chest in Skyrim.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-55","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3ee578b-8b86-4d7b-b325-68be1caad434/sm/ep4039.jpg","duration":231,"publication_date":"2011-12-08T20:01:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-13-server-crash","changefreq":"weekly","video":[{"title":"2011:E383 - Spec Ops 13 - Server Crash","description":"Ray and Mike show us how to get 3 stars on the Server Crash Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-13-server-crash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dabed364-4563-45c3-9b8e-16a407c81fd9/sm/ep4038.jpg","duration":623,"publication_date":"2011-12-08T17:23:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-meet-the-kinectimals-directors-cut","changefreq":"weekly","video":[{"title":"2011:E382 - Meet the Kinectimals: Director's Cut","description":"Joel turns in a very special version of his very special \"Meet the Kinectimals\" video.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-meet-the-kinectimals-directors-cut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eeec8535-5369-48ff-9804-7b69a8b935e6/sm/ep4037.jpg","duration":66,"publication_date":"2011-12-08T17:14:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-samurais-journey","changefreq":"weekly","video":[{"title":"2011:E381 - Samurais Journey","description":"Ray and Mike show you how to get the Samurai's Journey Achievement in Punch Time Explosion XL for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-samurais-journey","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0d7c9a56-5bec-43b0-a70b-e0469362b5a4/sm/ep4036.jpg","duration":238,"publication_date":"2011-12-08T16:27:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-39","changefreq":"weekly","video":[{"title":"2011:E48 - Achievement HORSE #52","description":"Michael and Kerry face off in the Achievement HORSE Office Tournament Finals! Who will win Will Dragonface pull out a victory Will Michael save face for Achievement Hunter Watch and find out! All maps are available at http://bit.ly/AHFINAL","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c0e45fe-04b6-4bb7-9893-58091042bc01/sm/ep4035.jpg","duration":561,"publication_date":"2011-12-07T21:52:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2011-4","changefreq":"weekly","video":[{"title":"2011:E2 - Saint's Row 3 - The Penny Drop","description":"Geoff and Michael show you how to do The Penny Drop in Saint's Row 3. Submit your own Penny Drop at http://www.ahuploads.com","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f66b1540-2a0d-43db-a003-4e87dc3b386e/sm/ep4034.jpg","duration":175,"publication_date":"2011-12-07T20:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-12-invisible-threat","changefreq":"weekly","video":[{"title":"2011:E380 - Spec Ops 12 - Invisible Threat","description":"Ray and Mike show us how to get 3 stars on the Invisible Threat Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-12-invisible-threat","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b26eb7c-8030-42ea-b4de-fd61b0be2f4d/sm/ep4033.jpg","duration":249,"publication_date":"2011-12-07T20:05:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-frenemies-guide","changefreq":"weekly","video":[{"title":"2011:E934 - Frenemies Guide","description":"Ray and Mike show you how to get the Frenemies Achievement in Punch Time Explosion XL for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-frenemies-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc47eb05-12a2-42e7-ab81-67d4cf942945/sm/ep4032.jpg","duration":207,"publication_date":"2011-12-07T14:46:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/lets-play-2011-3","changefreq":"weekly","video":[{"title":"2011:E1 - Saints Row The Third with Geoff & Michael - Part 1","description":"Watch Geoff and Michael demonstrate the value of teamwork, friendship, and a good punch in the dick as they Let's Play Saints Row The Third. \n\nIf you liked this video, leave a comment and let us know.","player_loc":"https://roosterteeth.com/embed/lets-play-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/375a277f-8971-4135-95d4-05e28ea83120/sm/ep4030.jpg","duration":2268,"publication_date":"2011-12-06T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hunter-killer-veteran-guide","changefreq":"weekly","video":[{"title":"2011:E928 - Hunter Killer Veteran Guide","description":"RBIG shows you how to complete the level Hunter Killer on veteran. NOTE: COULD SOMEONE EDIT THE FIRST ONE'S TITLE AND ADD \"(Pt. 1)\" after the hyphen","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hunter-killer-veteran-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":203,"publication_date":"2011-12-06T22:21:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-bears-vs-broncos","changefreq":"weekly","video":[{"title":"2011:E15 - Bears vs. Broncos","description":"Geoff and Jack use Madden NFL 12 to simulate and determine the winner of this weekend's Bears vs. Broncos game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-bears-vs-broncos","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c90798d7-8a41-48dd-be45-86b5405ea1c7/sm/ep4021.jpg","duration":328,"publication_date":"2011-12-06T21:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-11-little-bros","changefreq":"weekly","video":[{"title":"2011:E379 - Spec Ops 11 - Little Bros","description":"Ray and Mike show us how to get 3 stars on the Little Bros Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-11-little-bros","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df4fca4c-6fb7-4bde-afbd-0dc140642db0/sm/ep4017.jpg","duration":383,"publication_date":"2011-12-06T14:56:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-50","changefreq":"weekly","video":[{"title":"2011:E64 - 11th Terminal Easter Egg","description":"Fragger and Geoff show you how to get the hidden 11th terminal in Halo CE Anniversary for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e003d635-a4db-4f9f-a820-c4e49ad845c4/sm/ep4016.jpg","duration":158,"publication_date":"2011-12-06T14:37:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-35","changefreq":"weekly","video":[{"title":"2011:E49 - Week #91","description":"Jack and Geoff deliver your weekly dose of gaming knowledge and information in a simple bite-sized nugget. SWALLOW THE NUGGET OF INFORMATION. Also, pick up a \"Cinnamon, NO!\" shirt from the Rooster Teeth store right here: http://bit.ly/ssAKcM","player_loc":"https://roosterteeth.com/embed/ahwu-2011-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a0bf793-503b-445e-9806-dc0be879e78a/sm/ep4015.jpg","duration":338,"publication_date":"2011-12-06T00:38:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-10-resistance-movement","changefreq":"weekly","video":[{"title":"2011:E378 - Spec Ops 10 - Resistance Movement","description":"Ray and Mike show us how to get 3 stars on the Resistance Movement Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-10-resistance-movement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15dce419-6f60-40be-9e8d-6cff0ef61a1f/sm/ep4013.jpg","duration":313,"publication_date":"2011-12-05T18:06:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-athiss-flashpoint-walkthrough","changefreq":"weekly","video":[{"title":"2011:E377 - Athiss Flashpoint Walkthrough","description":"Jack and Adam make their way through the third Flashpoint in Star Wars: The Old Republic, \"Athiss.\" Watch them fight their way through bad guys and murderize all kinds of folks.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-athiss-flashpoint-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60e10917-828c-40ef-a594-e1278a06cb6c/sm/ep4012.jpg","duration":412,"publication_date":"2011-12-05T15:26:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-33","changefreq":"weekly","video":[{"title":"2011:E48 - Volume 63","description":"Jack and Geoff hand picked these hilarious fails for you and your loved ones. Join together and laugh as a family.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24eade06-eb69-4574-9d41-1600ca36d6c5/sm/ep4011.jpg","duration":244,"publication_date":"2011-12-02T23:46:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-48","changefreq":"weekly","video":[{"title":"2011:E63 - Grunt Barrel Easter Egg","description":"Geoff and Jack show you how to find the grunt barrel easter egg in the Penance level of Halo CE Anniversary for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed454996-52e5-4f7c-ba71-1f3997745107/sm/ep4010.jpg","duration":100,"publication_date":"2011-12-02T22:59:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-34","changefreq":"weekly","video":[{"title":"2011:E47 - Homefront","description":"This week on Rage Quit, Michael plays Homefront. Will he be able to lead the resistance to victory and reclaim America from North Korean occupation No, he won't.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48ed53aa-d3c4-4940-a530-07984050ef23/sm/ep4009.jpg","duration":299,"publication_date":"2011-12-02T06:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-joel-and-jack-meet-the-kinectimals","changefreq":"weekly","video":[{"title":"2011:E376 - Joel and Jack meet the Kinectimals","description":"Joel takes Jack on a wonderful journey where they meet the Kinectimals and some of their other playful friends! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-joel-and-jack-meet-the-kinectimals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06098292-931e-44b3-9707-e0d72ede5340/sm/ep4007.jpg","duration":150,"publication_date":"2011-12-01T22:52:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-thuum-master-pt-3","changefreq":"weekly","video":[{"title":"2011:E375 - Thu'um Master Pt 3","description":"Fragger and Ray show you how to get the Thu'um Master Achievement in Skyrim. This video is Part Three, showing how to get Elemental Fury, Marked for Death, and Dismay.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-thuum-master-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf806ad3-198e-4b46-87bc-12a6c72d6e7e/sm/ep4005.jpg","duration":314,"publication_date":"2011-12-01T15:36:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-9-charges-set","changefreq":"weekly","video":[{"title":"2011:E374 - Spec Ops 9 - Charges Set","description":"Ray shows us how to get 3 stars on the Charges Set Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-9-charges-set","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de9f55e3-cd43-401a-9d9d-a8709989bc32/sm/ep4004.jpg","duration":105,"publication_date":"2011-12-01T14:47:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-32","changefreq":"weekly","video":[{"title":"2011:E47 - Achievement HORSE #51","description":"Michael and Marshall face off in the last match of the second round. The winner will move on to face Dragonface in the finals. Who have you got your money on Achievement Hunter's last hope, or the dark horse Marshall","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c795e11b-bc6c-45c1-996d-4c8617c17bd6/sm/ep4003.jpg","duration":595,"publication_date":"2011-12-01T03:02:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-breaking-quarantine-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E922 - Breaking Quarantine Achievement Guide","description":"Michael and Geoff show you how to get the \"Breaking Quarantine\" achievement in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-breaking-quarantine-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ede34b5-32b5-4aa6-856e-af3ccf5c4b03/sm/ep4002.jpg","duration":195,"publication_date":"2011-11-30T17:44:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/things-to-do-in-2011-3","changefreq":"weekly","video":[{"title":"2011:E1 - Saint's Row 3 - The Cop Stop","description":"Geoff and Jack show you how to do the Cop Stop in Saint's Row 3.","player_loc":"https://roosterteeth.com/embed/things-to-do-in-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34a4306b-6826-459b-a341-5ffc45573f8e/sm/ep4001.jpg","duration":154,"publication_date":"2011-11-30T17:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-thuum-master-pt-2","changefreq":"weekly","video":[{"title":"2011:E373 - Thu'um Master Pt 2","description":"Fragger and Ray show you how to get the Thu'um Master Achievement in Skyrim. This video is Part Two, showing how to get Ice Form, Disarm, and Throw Voice.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-thuum-master-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c8677dc-4edd-463b-9114-c55c5b8ea9e7/sm/ep3999.jpg","duration":305,"publication_date":"2011-11-30T15:20:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-8-hostage-taker","changefreq":"weekly","video":[{"title":"2011:E372 - Spec Ops 8 - Hostage Taker","description":"Ray shows us how to get 3 stars on the Hostage Taker Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-8-hostage-taker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9dbe98f-4df2-4eda-a4a5-ddc7b25e7aac/sm/ep3998.jpg","duration":160,"publication_date":"2011-11-30T14:16:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hammer-station-walkthrough","changefreq":"weekly","video":[{"title":"2011:E371 - Hammer Station Walkthrough","description":"Jack and Adam are back in Star Wars: The Old Republic, this time looking through the Empire Flashpoint \"Hammer Station.\" Join them as they dodge flying rocks and kill a bunch of droids.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hammer-station-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e11afcb-440e-4e41-adcf-ee8c412087fa/sm/ep3997.jpg","duration":325,"publication_date":"2011-11-30T01:55:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-black-talon-walkthrough","changefreq":"weekly","video":[{"title":"2011:E370 - Black Talon Walkthrough","description":"Jack and Adam take a first glimpse into the Flashpoint \"Black Talon\" on the Empire side of Star Wars: The Old Republic. Follow along to check out all of the bosses and the branches in the first Empire Flashpoint you'll be playing! Stay tuned for more Star Wars: The Old Republic videos in the coming weeks!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-black-talon-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f19ad22-2241-493e-ae09-0bf7f6c6d8e7/sm/ep3996.jpg","duration":462,"publication_date":"2011-11-30T00:50:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-get-buttons-in-your-clan-tag","changefreq":"weekly","video":[{"title":"2011:E369 - Call of Duty: Modern Warfare 3 - How to get Buttons in your Clan Tag","description":"BioHRay shows us how you can get buttons from the Xbox 360 controller in your Clan Tag in Call of Duty: Modern Warfare 3","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-get-buttons-in-your-clan-tag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d36ba72-4c3e-46d0-8a98-685273a777a0/sm/2013912-1451424872343-maxresdefault_(12).jpg","duration":148,"publication_date":"2011-11-29T22:53:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-lions-vs-saints","changefreq":"weekly","video":[{"title":"2011:E14 - Lions vs. Saints","description":"Geoff and Jack use Madden NFL 12 to simulate and determine the winner of this weekend's Lions vs. Saints game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-lions-vs-saints","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3703162e-588f-4114-b7b9-c1225114053b/sm/ep3991.jpg","duration":312,"publication_date":"2011-11-29T22:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-7-fatal-extraction","changefreq":"weekly","video":[{"title":"2011:E368 - Spec Ops 7 - Fatal Extraction","description":"Ray shows us how to get 3 stars on the Fatal Extraction Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-7-fatal-extraction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76e8afe8-9fd8-42e3-8a20-593d17f6c37a/sm/ep3990.jpg","duration":501,"publication_date":"2011-11-29T22:14:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-sky-sanctuary-zone","changefreq":"weekly","video":[{"title":"2011:E367 - Sonic Generations - Red Ring Collector - Sky Sanctuary Zone","description":"Mike and Ray show you where to find all of the red rings on Sky Sanctuary Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-sky-sanctuary-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9ba9b94-b944-40f7-9c21-3ca340fb68fb/sm/2013912-1451424844902-maxresdefault_(11).jpg","duration":288,"publication_date":"2011-11-29T21:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-chemical-plant-zone","changefreq":"weekly","video":[{"title":"2011:E366 - Sonic Generations - Red Ring Collector - Chemical Plant Zone","description":"Mike and Ray show you where to find all of the red rings on Chemical Plant Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-chemical-plant-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/125c48dd-ddb2-4f41-9420-7d4cb465d566/sm/2013912-1451424808445-maxresdefault_(10).jpg","duration":297,"publication_date":"2011-11-29T21:30:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-ring-collector-green-hill-zone","changefreq":"weekly","video":[{"title":"2011:E365 - Sonic Generations - Red Ring Collector - Green Hill Zone","description":"Mike and Ray show you where to find all of the red rings on Green Hill Zone in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-ring-collector-green-hill-zone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f71058ab-80ae-4672-8624-7d902523e3ec/sm/2013912-1451424779782-maxresdefault_(9).jpg","duration":220,"publication_date":"2011-11-29T21:29:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-28","changefreq":"weekly","video":[{"title":"2011:E48 - Week #90","description":"Jack and Geoff fight off the Thanksgiving hangover with a fresh new AHWU! Enjoy our Cyber Monday discount by typing in \"cyberfunday\" at the Rooster Teeth Store! http://bit.ly/sZIKQe","player_loc":"https://roosterteeth.com/embed/ahwu-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ed894a1-695c-4f24-9004-63b456897394/sm/ep3985.jpg","duration":200,"publication_date":"2011-11-28T22:26:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-6-firewall","changefreq":"weekly","video":[{"title":"2011:E364 - Spec Ops 6 - Firewall","description":"Ray and Mike show us how to get 3 stars on the Firewall Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-6-firewall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d50aea2b-88a4-497f-b3ae-8d0ba15bff21/sm/ep3984.jpg","duration":227,"publication_date":"2011-11-28T14:42:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-skill-master-guide","changefreq":"weekly","video":[{"title":"2011:E917 - Skill Master Guide","description":"Fragger and Ray show an easy way to get the Skill Master Achievement in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-skill-master-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e08ea68-a3d6-4aeb-bee9-e259cd2f60c4/sm/ep3983.jpg","duration":120,"publication_date":"2011-11-28T14:34:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-28","changefreq":"weekly","video":[{"title":"2011:E47 - Volume 62","description":"Jack and Geoff are back with a Thanksgiving Hangover's worth of Fails of the Weak! Eat up folks! Gobble Gobble!!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d64b3450-7742-4e62-bc79-339d8e81589e/sm/ep3982.jpg","duration":300,"publication_date":"2011-11-25T22:41:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-joing-the-ranks-and-a-30-second-test-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E915 - Joing the Ranks & A 30-Second Test Achievement Guide","description":"Mike and Ray show us how to get the \"Joing the Ranks\" and \"A 30-Second Test\" achievements in Sonic Generations.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-joing-the-ranks-and-a-30-second-test-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":118,"publication_date":"2011-11-25T22:29:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-5-toxic-paradise","changefreq":"weekly","video":[{"title":"2011:E363 - Spec Ops 5 - Toxic Paradise","description":"Ray shows us how to get 3 stars on the Toxic Paradise Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-5-toxic-paradise","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc1cc46a-bb0f-4c94-89a0-85f605df2191/sm/ep3979.jpg","duration":595,"publication_date":"2011-11-25T22:23:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-25","changefreq":"weekly","video":[{"title":"2011:E46 - Iron Man 2","description":"Michael suits up in this week's Rage Quit as he plays Iron Man 2. Do you think he has what it takes to be the man of steel No not that other guy, the one in the metal suit.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f13a4d5a-351d-4c1e-8b58-013271bf798f/sm/ep3975.jpg","duration":289,"publication_date":"2011-11-24T12:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-4-hit-and-run","changefreq":"weekly","video":[{"title":"2011:E362 - Spec Ops 4 - Hit and Run","description":"Ray shows us how to get 3 stars on the Hit and Run Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-4-hit-and-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f51f0614-6862-4976-af2e-5dd8498d2651/sm/ep3973.jpg","duration":337,"publication_date":"2011-11-23T17:52:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-45","changefreq":"weekly","video":[{"title":"2011:E62 - Arthurian Easter Eggs","description":"Fragger and Geoff show you where to find the Lady in the Lake and Sword in the Stone Easter Eggs in Skyrim.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf1e31cc-e848-42f5-8038-b259bab9e576/sm/ep3972.jpg","duration":166,"publication_date":"2011-11-23T17:20:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-3-over-reactor","changefreq":"weekly","video":[{"title":"2011:E361 - Spec Ops 3 - Over Reactor","description":"Ray shows us how to get 3 stars on the Over Reactor Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-3-over-reactor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0712ee2f-5070-42cb-af23-bf07d665e3df/sm/ep3971.jpg","duration":305,"publication_date":"2011-11-23T16:28:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-believe-it-or-not","changefreq":"weekly","video":[{"title":"2011:E360 - Believe It Or Not","description":"Fragger and MIchael show you how to get the Believe It Or Not Achievement in Metal Gear Solid 3: Snake Eater for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-believe-it-or-not","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6488692b-243e-4b83-8ead-8b14a6709b68/sm/ep3970.jpg","duration":164,"publication_date":"2011-11-23T16:03:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-23","changefreq":"weekly","video":[{"title":"2011:E46 - Achievement HORSE #50","description":"Jack and Kerry battle it out in the first match of the second round of the office HORSE tournament. Who will win in this battle between the 4 seed and 1 seed FIND OUT NOW!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b239b81b-58d5-49e5-9829-a4b1bc592a20/sm/ep3969.jpg","duration":574,"publication_date":"2011-11-23T00:32:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-43","changefreq":"weekly","video":[{"title":"2011:E61 - Empire Strikes Back - Star Wars Easter Egg","description":"Fragger and Geoff show you where to find the Empire Strikes Back, Star Wars Easter Egg in Skyrim.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0512898a-c60a-48ac-ba79-11516c254b9a/sm/ep3968.jpg","duration":101,"publication_date":"2011-11-22T20:14:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-1-mile-high-jack","changefreq":"weekly","video":[{"title":"2011:E359 - Spec Ops 1 - Mile High Jack","description":"Ray shows us how to get 3 stars on the Mile High Jack Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-1-mile-high-jack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc8f2a24-7d23-4b35-910b-dbe68c742379/sm/ep3967.jpg","duration":152,"publication_date":"2011-11-22T16:46:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-arkansas-vs-lsu","changefreq":"weekly","video":[{"title":"2011:E13 - Arkansas vs. LSU","description":"Geoff and Jack use NCAA Football 12 to simulate and determine the winner of this weekend's Arkansas vs. LSU game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-arkansas-vs-lsu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d40b91e-a4dd-4c3e-9428-a50360237d00/sm/ep3966.jpg","duration":394,"publication_date":"2011-11-22T15:07:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-weirdest-video-ever","changefreq":"weekly","video":[{"title":"2011:E358 - Weirdest Video Ever","description":"Joel and Jack check out Need for Speed: The Run...or maybe they don't I'm not sure exactly what the hell is going on in this video. Enjoy","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-weirdest-video-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7944bc85-c6c3-47fe-b0b6-8758c5922086/sm/ep3964.jpg","duration":167,"publication_date":"2011-11-22T00:41:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-22","changefreq":"weekly","video":[{"title":"2011:E47 - Week #89","description":"Jack and Geoff have a pre-Thanksgiving AHWU where they discuss games. Yup. Games... lots of them.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7e4eee7-6f06-4f5b-bd68-204bda9caac5/sm/ep3963.jpg","duration":265,"publication_date":"2011-11-21T23:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-all-according-to-plan-achievement-guide-haloce","changefreq":"weekly","video":[{"title":"2011:E913 - All According to Plan... Achievement Guide","description":"Michael and Gus show you how to get the \"All According to Plan...\" achievement in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-all-according-to-plan-achievement-guide-haloce","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/183f04a4-bc5c-4da7-a8b4-374978277ded/sm/ep3962.jpg","duration":126,"publication_date":"2011-11-21T23:04:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-1-stay-sharp","changefreq":"weekly","video":[{"title":"2011:E357 - Spec Ops 1 - Stay Sharp","description":"Ray shows us how to get 3 stars on the Stay Sharp Spec Ops level in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-1-stay-sharp","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/278e3bbc-e3f9-4156-9676-bbeafc1b4797/sm/ep3955.jpg","duration":68,"publication_date":"2011-11-21T15:56:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-like-a-sturgeon-marco-solo","changefreq":"weekly","video":[{"title":"2011:E356 - Like a Sturgeon, Marco Solo","description":"AKA Dragonface and Miles show how to get the Like a Sturgeon and Marco Solo trophies in the PS3 exclusive, Uncharted 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-like-a-sturgeon-marco-solo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/857cbe76-f3a2-4bff-8f67-01989e97e9ac/sm/ep3954.jpg","duration":126,"publication_date":"2011-11-21T14:40:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-ate-a-pencil-chupathingy-and-bleep-bloop","changefreq":"weekly","video":[{"title":"2011:E355 - Red vs. Blue - I Ate A Pencil, Chupathingy and Bleep Bloop.","description":"Today I revisit Red Vs. Blue and try and clean up the achievements I missed on my first play-through.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-ate-a-pencil-chupathingy-and-bleep-bloop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a824bf6a-4258-4d72-8e14-4966bcd30e2e/sm/2013912-1451424752225-maxresdefault_(8).jpg","duration":90,"publication_date":"2011-11-18T23:17:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-20","changefreq":"weekly","video":[{"title":"2011:E46 - Volume 61","description":"Jack and Geoff bring the 61st volume of Fails of the Weak to you and everyone around you. Enjoy this bounty of fails.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02e7f4ef-d5a3-492a-b83c-ad178885ccc9/sm/ep3950.jpg","duration":271,"publication_date":"2011-11-18T23:14:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-how-pedestrian-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E901 - How Pedestrian Achievement Guide","description":"Michael and Geoff show you how to get the \"How Pedestrian\" achievement in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-how-pedestrian-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfcd25f8-d8c2-4543-a81e-a8f383d48755/sm/ep3945.jpg","duration":83,"publication_date":"2011-11-18T19:43:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-fly-zone-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E900 - No-Fly Zone Achievement Guide","description":"Michael and Geoff show you how to get the \"No-Fly Zone\" achievement in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-fly-zone-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/062bf506-0811-440d-8d94-263b7047e820/sm/ep3944.jpg","duration":112,"publication_date":"2011-11-18T19:22:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-serrated-edge","changefreq":"weekly","video":[{"title":"2011:E354 - Serrated Edge","description":"Ray and Michael show you how to get the Serrated Edge achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-serrated-edge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5b558fa-215a-4476-8752-86532b6a0a8d/sm/ep3943.jpg","duration":223,"publication_date":"2011-11-18T18:55:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skyrim-thuum-master-pt-1","changefreq":"weekly","video":[{"title":"2011:E353 - Skyrim: Thu'um Master Pt 1","description":"Fragger and Geoff show you how to get the Thu'um Master Achievement in Skyrim. This video is Part One, showing how to get Unrelenting Force, Whirlwind Sprint, and Become Ethereal.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skyrim-thuum-master-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/023d514c-bfa3-49eb-817b-9e666dca1180/sm/ep3942.jpg","duration":343,"publication_date":"2011-11-18T16:57:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-leap-of-faith","changefreq":"weekly","video":[{"title":"2011:E352 - Leap of Faith","description":"Fragger and Jack show you how to get the Leap of Faith achievement in Metal Gear Solid: Peace Walker for the Xbox 360. Can you say Assassin's Creed","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-leap-of-faith","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b3660d1-c95d-419d-bd4a-28c221006cf1/sm/ep3941.jpg","duration":118,"publication_date":"2011-11-18T16:35:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-hunter-part-4","changefreq":"weekly","video":[{"title":"2011:E351 - Master Treasure Hunter Part 4","description":"Jack and Gus show you where to find the final batch of hidden treasures in Uncharted 3. Collecting all of the treasures will get you the Master Treasure Hunter trophy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-hunter-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4402eff7-7a76-4ab8-a025-916d75f1c31f/sm/ep3940.jpg","duration":357,"publication_date":"2011-11-18T16:11:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-16","changefreq":"weekly","video":[{"title":"2011:E45 - EA Sports MMA","description":"This time anything goes when Michael and special guest Patrick Stewart throw down in EA Sports MMA. Age is just a number, right","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a729f928-a90e-44db-9e57-165de24fe326/sm/ep3939.jpg","duration":257,"publication_date":"2011-11-18T05:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hideo-kojima","changefreq":"weekly","video":[{"title":"2011:E350 - Hideo Kojima","description":"Fragger and Jack show you how to recruit Hideo Kojima in Metal Gear Solid: Peace Walker for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hideo-kojima","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac070233-ce32-4c56-92fa-34f7cadcd36e/sm/ep3938.jpg","duration":89,"publication_date":"2011-11-17T21:03:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gamefails-car-fail-contest-winners","changefreq":"weekly","video":[{"title":"2011:E349 - GameFails: Car Fail Contest Winners","description":"Geoff and Jack show you the six best Car Fail Contest submissions for the GameFails Car Fail Challenge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gamefails-car-fail-contest-winners","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15a2fd0b-d5b4-45ce-b1f2-482a805c1e2b/sm/ep3937.jpg","duration":182,"publication_date":"2011-11-17T20:25:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-hunter-part-3","changefreq":"weekly","video":[{"title":"2011:E348 - Master Treasure Hunter Part 3","description":"Jack and Gus show you where to find the next round of hidden treasures in Uncharted 3. Collecting all of the treasures will get you the Master Treasure Hunter trophy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-hunter-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/677906de-6daf-4c87-b008-73d0bfa20217/sm/ep3936.jpg","duration":495,"publication_date":"2011-11-17T19:54:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-almost-flying","changefreq":"weekly","video":[{"title":"2011:E347 - Almost Flying","description":"Jack and Geoff show how to get the Almost Flying achievement in Assassin's Creed: Revelations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-almost-flying","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c105797-3c28-40e1-b051-94fd2272b4c9/sm/ep3934.jpg","duration":143,"publication_date":"2011-11-17T17:43:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-birdie","changefreq":"weekly","video":[{"title":"2011:E346 - Birdie","description":"Ray and Michael show you how to get the Birdie achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-birdie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d52baa9-f3c1-48be-a733-6a4da7b2fe68/sm/ep3933.jpg","duration":116,"publication_date":"2011-11-17T17:25:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-36","changefreq":"weekly","video":[{"title":"2011:E60 - Linda 058 Easter Egg","description":"Ray shows us where to find the Linda 058 Easter Egg in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2db0116-e3c4-4f61-892d-70ebc1b73b59/sm/ep3932.jpg","duration":104,"publication_date":"2011-11-17T16:55:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-standing-stones-guide","changefreq":"weekly","video":[{"title":"2011:E899 - Standing Stones Guide","description":"Fragger and Geoff show you how to find the Standing Stones in Skyrim.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-standing-stones-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7149883-2405-4612-94d3-ee1df548834c/sm/ep3931.jpg","duration":328,"publication_date":"2011-11-17T16:18:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-19","changefreq":"weekly","video":[{"title":"2011:E56 - Assassin's Creed: Revelations","description":"Jack and Geoff check out the newest Assassin's Creed title, Revelations in today's This is... Check out some gameplay from the newest title from Ubisoft and hear Jack go on and on about how awesome it is.","player_loc":"https://roosterteeth.com/embed/this-is-2011-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69ca732f-5136-4019-98dd-91ec9631c7c7/sm/ep3929.jpg","duration":553,"publication_date":"2011-11-17T00:23:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skulls-and-terminals-part-5","changefreq":"weekly","video":[{"title":"2011:E345 - Skulls & Terminals Part 5","description":"Joel and Jack wrap up the terminals and skulls in Halo CE: Anniversary. This time they go through Keyes and The Maw. Be careful with that last skull though.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skulls-and-terminals-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/161bfadc-869b-4446-989d-d94e9e586230/sm/ep3928.jpg","duration":121,"publication_date":"2011-11-17T00:17:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scout-leader-act-iii-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E898 - Scout Leader Act III Achievement Guide","description":"Michael and Geoff show you where to find all of the intel items in Act III for the \"Scout Leader\" achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scout-leader-act-iii-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfb3b569-1fde-4619-94cc-a6474c69b21a/sm/ep3927.jpg","duration":212,"publication_date":"2011-11-17T00:03:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-33","changefreq":"weekly","video":[{"title":"2011:E59 - Troll Face Easter Egg","description":"Ray shows us where to find the Trollface Easter Egg in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ad37b53-8fb4-4c7b-bfc9-fcb8f1fa080f/sm/ep3924.jpg","duration":87,"publication_date":"2011-11-16T20:48:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skulls-and-terminals-part-4","changefreq":"weekly","video":[{"title":"2011:E344 - Skulls & Terminals Part 4","description":"Jack and Joel are back in Halo CE: Anniversary grabbing all of the skulls and terminals in The Library and Two Betrayals. Look for the bonus scene in the middle of the video!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skulls-and-terminals-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a874d55-a78e-4657-adb6-dea08731d97d/sm/ep3923.jpg","duration":160,"publication_date":"2011-11-16T18:59:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-menage-a-trois","changefreq":"weekly","video":[{"title":"2011:E343 - M?nage ? Trois","description":"Ray and Michael show how to get the Mnage Trois Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-menage-a-trois","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bca065e0-6895-4552-9362-64926dfc492a/sm/ep3922.jpg","duration":76,"publication_date":"2011-11-16T18:48:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-early-end","changefreq":"weekly","video":[{"title":"2011:E342 - The Early End","description":"Fragger and Ray snag The Early End achievement in Metal Gear Solid 3 HD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-early-end","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0cf57be-f051-43c7-b3d0-a27fd8ff0fd7/sm/ep3921.jpg","duration":162,"publication_date":"2011-11-16T17:44:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-32","changefreq":"weekly","video":[{"title":"2011:E58 - GRD Dolls Easter Egg","description":"Ray shows us where to find the hidden GRD Doll easter eggs on the multiplayer maps in Halo CE: Anniversary.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44a1f802-b2c0-405f-bac3-765c3dae3fc7/sm/ep3920.jpg","duration":281,"publication_date":"2011-11-16T15:45:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nein","changefreq":"weekly","video":[{"title":"2011:E341 - Nein","description":"Ray and Michael show how to get the Nein Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nein","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6224ffa5-de10-4b28-94df-e0b76cc5e47a/sm/ep3919.jpg","duration":108,"publication_date":"2011-11-16T15:33:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skulls-and-terminals-part-3","changefreq":"weekly","video":[{"title":"2011:E340 - Skulls & Terminals Part 3","description":"Joel and Jack are back in Halo CE: Anniversary showing you the locations of the skulls and terminals in the levels Assault on the Control Room and 343 Guilty Spark. Join the madness, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skulls-and-terminals-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ff7086-ea6b-4056-ae8f-1532d8fa5e44/sm/ep3918.jpg","duration":176,"publication_date":"2011-11-16T00:43:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-show-off-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E896 - Show Off Achievement Guide","description":"Jack and Geoff put their skills to the test and grab the \"Show Off\" achievement in Assassin's Creed: Revelations.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-show-off-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6be7b283-08ff-48c3-84f0-ba6fe691cb1d/sm/ep3917.jpg","duration":85,"publication_date":"2011-11-16T00:07:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bully-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E895 - Bully Achievement Guide","description":"Jack and Geoff find a Duccio and beat the crap out of him in Assassin's Creed: Revelations. Don't be a Duccio.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bully-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54dd5719-6537-4382-8785-31995f390847/sm/ep3916.jpg","duration":156,"publication_date":"2011-11-15T23:03:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-29","changefreq":"weekly","video":[{"title":"2011:E57 - Big Head Mode Easter Egg","description":"Fragger and Geoff show you how to activate Big Head Mode in Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5cf394c7-3cde-45fe-890b-c289cee29c38/sm/ep3915.jpg","duration":184,"publication_date":"2011-11-15T22:14:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-bengals-vs-ravens","changefreq":"weekly","video":[{"title":"2011:E12 - Bengals vs. Ravens","description":"Geoff and Jack use Madden NFL 12 to simulate and determine the winner of this weekend's Bengals vs. Ravens game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-bengals-vs-ravens","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7956303-ad88-4638-b2b3-c788db86e94c/sm/ep3914.jpg","duration":296,"publication_date":"2011-11-15T22:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skulls-and-terminals-part-2","changefreq":"weekly","video":[{"title":"2011:E339 - Skulls & Terminals Part 2","description":"Joel and Jack walk you through the locations of all of the terminals and skulls in the next two levels of Halo CE: Anniversary. Join the two of them as they go through Truth and Reconciliation and Silent Cartographer to find skulls and terminals. Oh boy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skulls-and-terminals-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0219936d-84c3-4764-b407-54149050ff09/sm/ep3913.jpg","duration":206,"publication_date":"2011-11-15T20:51:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-27","changefreq":"weekly","video":[{"title":"2011:E56 - Teddy Bear Easter Eggs","description":"Call of Duty Modern Warfare teddy bear easter egg achievement hunter guide walkthrough \"Call Of Duty: Modern Warfare 3\" Cod gameplay playthrough commentary video game ps3 xbox 360 \"PlayStation 3\" \"Video Game\" \"Easter Egg\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca9be02f-b19c-479c-8664-f215e5908ca0/sm/ep3911.jpg","duration":234,"publication_date":"2011-11-15T14:44:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skulls-and-terminals-part-1","changefreq":"weekly","video":[{"title":"2011:E338 - Skulls & Terminals Part 1","description":"Joel and Jack walk you through the locations of all of the terminals and skulls in the first two levels of Halo CE: Anniversary. Join the two of them as they go through Pillar of Autumn and Halo and find skulls that look like rocks!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skulls-and-terminals-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a829d5a6-ba1f-4907-9827-4230d8be4f87/sm/ep3910.jpg","duration":158,"publication_date":"2011-11-15T08:19:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-13","changefreq":"weekly","video":[{"title":"2011:E46 - Week #88","description":"Jack and Geoff put together a brand new AHWU amidst the busiest week of the gaming year. Holy crap there are a lot of games coming out this week.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07fd9857-c905-4794-ac7e-510b9eefe325/sm/ep3909.jpg","duration":282,"publication_date":"2011-11-14T23:32:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-26","changefreq":"weekly","video":[{"title":"2011:E55 - Minecraft Easter Egg","description":"Fragger and Jack show you how to find the Notched Pickaxe in Skyrim, a nifty little Minecraft Easter Egg.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45a7734d-b51f-452c-a4e7-fa7a019e3da9/sm/ep3908.jpg","duration":102,"publication_date":"2011-11-14T23:32:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-breakneck-overview","changefreq":"weekly","video":[{"title":"2011:E337 - Breakneck Overview","description":"Jack and Joel check out the new version of Breakneck, soon to be available in Halo CE: Anniversary for the Xbox 360!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-breakneck-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc4225c0-c481-483d-a2e7-593d4b2c45c9/sm/ep3906.jpg","duration":210,"publication_date":"2011-11-14T22:56:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-noon-overview","changefreq":"weekly","video":[{"title":"2011:E336 - High Noon Overview","description":"Jack and Joel check out the new version of High Noon, soon to be available in Halo CE: Anniversary for the Xbox 360!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-noon-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c573605-52b3-485f-a841-c3cf6ad10788/sm/ep3905.jpg","duration":211,"publication_date":"2011-11-14T22:51:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-cure-vampirism","changefreq":"weekly","video":[{"title":"2011:E335 - How to cure Vampirism","description":"Fragger and Jack teach you how to get rid of that pesky need for blood and teenage girls in Skyrim. Watch and learn and stay the hell away from Bella.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-cure-vampirism","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f70e080-d22c-4895-b265-e0e65901cbf8/sm/ep3904.jpg","duration":219,"publication_date":"2011-11-14T18:26:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-24","changefreq":"weekly","video":[{"title":"2011:E54 - Samantha Easter Egg","description":"Ray shows us where to find the Samantha Easter Egg in the Bag and Drag level of Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0bd0419-4a31-41fc-8726-312747fd9f5d/sm/ep3903.jpg","duration":73,"publication_date":"2011-11-14T18:02:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scout-leader-act-ii-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E894 - Scout Leader Act II Achievement Guide","description":"Michael and Ray show you where to find all of the intel items in Act II for the \"Scout Leader\" achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scout-leader-act-ii-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25086287-a2c1-4bbd-8a10-fcc92019c42e/sm/ep3902.jpg","duration":231,"publication_date":"2011-11-14T17:17:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-danger-close","changefreq":"weekly","video":[{"title":"2011:E334 - Danger Close","description":"Ray and Michael show how to get the Danger Close Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-danger-close","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d633d9d3-d46c-452f-b100-26cb97c52c30/sm/ep3901.jpg","duration":87,"publication_date":"2011-11-14T15:55:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ralph-called-problem-solved-series-over","changefreq":"weekly","video":[{"title":"2011:E333 - Ralph Called, Problem Solved, Series Over","description":"Fragger and Ray snag three achievements in Metal Gear Solid 2 HD: Ralph Called, Problem Solved, and Series Over.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ralph-called-problem-solved-series-over","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72d71576-9ac5-4890-a339-cf88122918ca/sm/ep3900.jpg","duration":147,"publication_date":"2011-11-14T15:11:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-20","changefreq":"weekly","video":[{"title":"2011:E53 - Teddy Bear Easter Egg","description":"Ray shows us where to find a desert eagle toting teddy bear in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1ade187-58d7-43c0-b0ac-b69ce9e7d801/sm/ep3899.jpg","duration":125,"publication_date":"2011-11-14T14:43:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-17","changefreq":"weekly","video":[{"title":"2011:E54 - The Elder Scrolls V: Skyrim","description":"Fragger and Jack take a look at the huge new release \"Skyrim\" and wander about. Will they discuss Lethal Weapon Of course they will.","player_loc":"https://roosterteeth.com/embed/this-is-2011-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64358a4e-ca96-433b-b896-9706ad9c3b3b/sm/ep3898.jpg","duration":482,"publication_date":"2011-11-13T20:06:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ridgeline-overview","changefreq":"weekly","video":[{"title":"2011:E332 - Ridgeline Overview","description":"Gus and Geoff check out the new version of Ridgeline, soon to be available in Halo CE: Anniversary for the Xbox 360!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ridgeline-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02cd8c54-29a2-4ceb-817e-71973c58ff4a/sm/ep3874.jpg","duration":224,"publication_date":"2011-11-12T23:29:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-hunter-part-2","changefreq":"weekly","video":[{"title":"2011:E331 - Master Treasure Hunter Part 2","description":"Geoff and Michael show you where to find the next round of hidden treasures in Uncharted 3. Collecting all of the treasures will get you the Master Treasure Hunter trophy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-hunter-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/405e32ad-819a-45d5-b9bf-08196348f04e/sm/ep3872.jpg","duration":389,"publication_date":"2011-11-11T20:54:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-installation-04-overview","changefreq":"weekly","video":[{"title":"2011:E330 - Installation 04 Overview","description":"Jack and Gus take the Installation 04 map for a spin in the upcoming Xbox 360 game, Halo CE: Anniversary Edition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-installation-04-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd3daab4-2ec1-47e4-96fe-56188a0a932e/sm/ep3871.jpg","duration":192,"publication_date":"2011-11-11T20:31:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-solitary-overview","changefreq":"weekly","video":[{"title":"2011:E329 - Solitary Overview","description":"Jack and Geoff take the Solitary map for a spin in the upcoming Xbox 360 game, Halo CE: Anniversary Edition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-solitary-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4a5c904-11c2-426c-a27e-3717761b7f07/sm/ep3870.jpg","duration":237,"publication_date":"2011-11-11T20:03:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kill-box","changefreq":"weekly","video":[{"title":"2011:E328 - Kill Box","description":"Ray and Michael show how to get the Kill Box Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kill-box","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b728cec8-32e0-4da7-baab-7ac533c7bdbe/sm/ep3869.jpg","duration":66,"publication_date":"2011-11-11T16:37:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-who-ya-gonna-call-sexting","changefreq":"weekly","video":[{"title":"2011:E327 - Who Ya Gonna Call, Sexting","description":"Fragger and Geoff snag two achievements in Metal Gear Solid 2 HD: Who Ya Gonna Call, and Sexting.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-who-ya-gonna-call-sexting","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8037f2a-2662-4bcd-b863-c32bd59d7254/sm/ep3868.jpg","duration":242,"publication_date":"2011-11-11T16:24:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-strike","changefreq":"weekly","video":[{"title":"2011:E326 - Strike!","description":"Ray and Michael show how to get the Strike! Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bb90477-7e76-4623-b4e2-33321126b5fe/sm/ep3867.jpg","duration":70,"publication_date":"2011-11-11T16:01:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-6","changefreq":"weekly","video":[{"title":"2011:E45 - Volume 60","description":"Jack and Geoff bring you another helping of incredible fails from the world of Halo! Join them as they laugh and cackle and laugh at this big pile of failage in this week's Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/304a4f96-aa5c-48d5-938b-e0ddc52b06fb/sm/ep3866.jpg","duration":217,"publication_date":"2011-11-11T08:15:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-5","changefreq":"weekly","video":[{"title":"2011:E44 - Modern Warfare 3","description":"Michael brings along Ray to complete this Rage Quit in Call of Duty: Modern Warfare 3. More like Modern WarFAIL 3, right Right","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12a729ef-84d1-4cc3-8829-629bb864547d/sm/ep3865.jpg","duration":285,"publication_date":"2011-11-10T23:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-penance-overview","changefreq":"weekly","video":[{"title":"2011:E325 - Penance Overview","description":"Geoff and Gus take the Penance map for a spin in the upcoming Xbox 360 game, Halo CE: Anniversary Edition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-penance-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab84cf39-4217-4d92-8e50-1373ebbd2d4b/sm/ep3864.jpg","duration":204,"publication_date":"2011-11-10T20:41:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-battle-canyon-overview","changefreq":"weekly","video":[{"title":"2011:E324 - Battle Canyon Overview","description":"Jack and Gus take the Battle Canyon map for a spin in the upcoming Xbox 360 game, Halo CE: Anniversary Edition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-battle-canyon-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6faed880-3794-4438-8f41-0aa2a9ce9e3e/sm/ep3863.jpg","duration":180,"publication_date":"2011-11-10T20:26:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kissing-booth-snake-beater","changefreq":"weekly","video":[{"title":"2011:E323 - Kissing Booth, Snake Beater","description":"ragger and Geoff snag three achievements that come early in Metal Gear Solid 2 HD. They \"grab\" Kissing Booth, Down in Smoke and Snake Beater. I hope they aren't jerks about. Penis.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kissing-booth-snake-beater","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fd89337-0390-4b0c-9ecf-b1c4a508d540/sm/ep3862.jpg","duration":121,"publication_date":"2011-11-10T20:02:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-for-whom-the-shell-tolls","changefreq":"weekly","video":[{"title":"2011:E322 - For Whom the Shell Tolls","description":"Ray and Michael show how to get the For Whom the Shell Tolls Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-for-whom-the-shell-tolls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b08ec7c5-d0a3-4b73-b39c-f4ddd311a025/sm/ep3861.jpg","duration":80,"publication_date":"2011-11-10T17:08:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-flight-attendant","changefreq":"weekly","video":[{"title":"2011:E321 - Flight Attendant","description":"Ray and Michael show how to get the Flight Attendant Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-flight-attendant","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb231e67-9957-4d71-b7be-94eb2d2e37fc/sm/ep3860.jpg","duration":109,"publication_date":"2011-11-10T16:58:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-5","changefreq":"weekly","video":[{"title":"2011:E45 - Achievement HORSE #49","description":"Gus and Michael finish up the first round of the Rooster Teeth Office HORSE Tournament. Will Michael eek out a win over Gus Will Gus crumble under the pressure Watch and find out who advances on to Round 2!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/651534ad-c870-498f-a8ba-2b2c6158f477/sm/ep3858.jpg","duration":354,"publication_date":"2011-11-09T22:09:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-what-goes-up","changefreq":"weekly","video":[{"title":"2011:E320 - What Goes Up...","description":"Ray and Michael show how to get the What Goes Up... Achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-what-goes-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c246a4a-8752-446d-bb65-422e9b56c3e1/sm/ep3857.jpg","duration":101,"publication_date":"2011-11-09T20:18:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jack-the-ripper-this-is-my-boomstick","changefreq":"weekly","video":[{"title":"2011:E319 - Jack the Ripper, This is my Boomstick","description":"Ray and Michael show how to get the Jack the Ripper and This is my Boomstick Achievements in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jack-the-ripper-this-is-my-boomstick","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab97c9b8-c62a-4c9b-9078-dfec304b6dbd/sm/ep3856.jpg","duration":126,"publication_date":"2011-11-09T19:38:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-6","changefreq":"weekly","video":[{"title":"2011:E52 - The Dom Beard Easter Egg","description":"Michael and Geoff show you how to get The Dom Beard Easter Egg in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94cb0617-820d-420b-9ab0-6524225584be/sm/ep3853.jpg","duration":128,"publication_date":"2011-11-09T18:37:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-secret-servers-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E870 - Secret Servers Achievement Guide","description":"Ray and Mike show you how to get the Secret Servers Achievement in Goldeneye 007: Reloaded for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-secret-servers-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38811f1b-16c8-4569-90d5-ca50143fbc91/sm/ep3852.jpg","duration":149,"publication_date":"2011-11-09T18:27:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scout-leader-act-i-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E869 - Scout Leader Act I Achievement Guide","description":"Michael and Geoff show you where to find all of the intel items in Act I for the \"Scout Leader\" achievement in Call of Duty: Modern Warfare 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scout-leader-act-i-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cd895c3-28ad-4bcd-889b-7c4d35d27e2a/sm/ep3851.jpg","duration":320,"publication_date":"2011-11-09T03:41:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-5","changefreq":"weekly","video":[{"title":"2011:E51 - Call of Duty: Modern Warfare 3","description":"Jack and Geoff finally get their hands on the newest Call of Duty title from Activision, Infinity Ward and Sledgehammer Games. Follow along with Price and Soap and check out some multiplayer action and other stuff as the guys from Achievement Hunter take a peek at this highly anticipated release.","player_loc":"https://roosterteeth.com/embed/this-is-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76475e42-9c77-4d84-b153-b51bc63a646c/sm/ep3850.jpg","duration":408,"publication_date":"2011-11-08T22:14:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-giants-vs-49ers","changefreq":"weekly","video":[{"title":"2011:E11 - Giants vs. 49ers","description":"Geoff and Jack use Madden NFL 12 to simulate and determine the winner of this weekend's Giants vs. 49ers game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-giants-vs-49ers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7263b7b8-b29b-4931-b558-502377313022/sm/ep3849.jpg","duration":366,"publication_date":"2011-11-08T18:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-invisible-descent-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E868 - Invisible Descent Achievement Guide","description":"Ray and Mike show you how to get the Invisible Descent Achievement in Goldeneye 007: Reloaded for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-invisible-descent-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30041846-213e-4a85-b4fa-79b594ca79d3/sm/ep3848.jpg","duration":464,"publication_date":"2011-11-08T15:59:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-2","changefreq":"weekly","video":[{"title":"2011:E51 - Photobooth Easter Egg","description":"Ray shows us how to find the photobooth easter egg in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c76d921-c5c5-47a3-bdf8-4a14e07ccf69/sm/ep3847.jpg","duration":115,"publication_date":"2011-11-08T15:13:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-3","changefreq":"weekly","video":[{"title":"2011:E45 - Week #87","description":"Jack and Geoff bring you a heaping helping of AHWU! This week Geoff pours through a huge list of games including Modern Warfare 3 and Jack announces a brand new GAMEFAILS CONTEST where you can win free games! Watch and learn more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5904f3c-6d84-41e8-996a-f519c096b90f/sm/ep3845.jpg","duration":396,"publication_date":"2011-11-07T23:01:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-finals-70-71-bucks-vs-85-86-celtics","changefreq":"weekly","video":[{"title":"2011:E318 - The Best NBA Team of All Time: Finals - 70-71 Bucks vs. 85-86 Celtics","description":"Who is THE best NBA team of all time It's been a long contest but it comes down to this: the 1970-71 Bucks vs. the 1985-86 Celtics. The winner gets the crown and all the digital bragging rights.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-finals-70-71-bucks-vs-85-86-celtics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f40d890f-ec83-43d8-85c7-5f8552ae0945/sm/ep3844.jpg","duration":465,"publication_date":"2011-11-07T17:36:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bullet-dance-dance-commander","changefreq":"weekly","video":[{"title":"2011:E317 - Bullet Dance, Dance Commander","description":"Ray and Mike show you how to get the Bullet Dance and Dance Commander Achievements in Goldeneye 007: Reloaded for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bullet-dance-dance-commander","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/422dfaf0-00b9-4e27-9666-c3532236f19c/sm/ep3843.jpg","duration":210,"publication_date":"2011-11-07T15:17:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-2","changefreq":"weekly","video":[{"title":"2011:E44 - Volume 59","description":"Jack and Geoff deliver up a steaming pile of fail in another Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39b4b1b4-19da-4c20-91c5-2681724198f0/sm/ep3842.jpg","duration":240,"publication_date":"2011-11-04T17:45:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011","changefreq":"weekly","video":[{"title":"2011:E50 - Rat Easter Egg","description":"Ray shows us how to find the rat easter egg in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9493b5f-07b4-40c1-bf8c-96ef70eda46c/sm/ep3840.jpg","duration":86,"publication_date":"2011-11-04T17:04:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ninjas","changefreq":"weekly","video":[{"title":"2011:E316 - Ninjas","description":"Michael and Ray show you how to get the Ninjas Achievement in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ninjas","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b757f899-eaa9-40e8-9a1e-b86bddd621aa/sm/ep3839.jpg","duration":190,"publication_date":"2011-11-04T16:30:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-hunter-part-1","changefreq":"weekly","video":[{"title":"2011:E315 - Master Treasure Hunter Part 1","description":"Geoff and aka Dragonface show you where to find the first 20 hidden treasures in Uncharted 3. Collecting all of the treasures will get you the Master Treasure Hunter trophy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-hunter-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f856d8ce-d45b-4180-9dbf-e41ae62e2525/sm/ep3838.jpg","duration":402,"publication_date":"2011-11-04T15:21:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-do-a-barrel-roll","changefreq":"weekly","video":[{"title":"2011:E314 - Do a Barrel Roll","description":"Geoff and Fragger show you how to do a barrel roll in Google, of all places.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-do-a-barrel-roll","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a93ed440-4125-4a27-81fb-be33bb040adb/sm/ep3837.jpg","duration":78,"publication_date":"2011-11-03T21:10:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-51","changefreq":"weekly","video":[{"title":"2011:E43 - Greg Hastings Paintball 2","description":"In this very special episode of Rage Quit, Michael tries his hand at Greg Hastings Paintball 2. Does he have what it takes to survive the mean streets of fake combat","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49c2bff7-a8d4-4f73-8c1e-b53f07812a6b/sm/ep3835.jpg","duration":316,"publication_date":"2011-11-03T17:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-2-84-85-sixers-vs-85-86-celtics","changefreq":"weekly","video":[{"title":"2011:E313 - The Best NBA Team of All Time: Rd 2 - 84-85 Sixers vs. 85-86 Celtics","description":"Geoff and Jack use NBA 2K12 to determine who the best NBA Team of all time is. This first game of Round Two pits the 1984-1985 Philadelphia 76ers against the 1985-1986 Boston Celtics. The winner will advance to the finals!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-2-84-85-sixers-vs-85-86-celtics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e3781a-974b-45cc-a331-86d0ffc15b5e/sm/ep3834.jpg","duration":324,"publication_date":"2011-11-03T15:01:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-untouchable","changefreq":"weekly","video":[{"title":"2011:E312 - Untouchable","description":"Michael and Ray show you how to get the Untouchable Achievement in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-untouchable","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69810757-4b89-4512-9dec-105f170479ab/sm/ep3833.jpg","duration":309,"publication_date":"2011-11-03T14:32:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-royal-flush-going-dark","changefreq":"weekly","video":[{"title":"2011:E311 - Royal Flush, Going Dark","description":"Ray and Mike show you how to get the Royal Flush and Going Dark Achievements in Goldeneye 007: Reloaded for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-royal-flush-going-dark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec5cfd4-213e-4fb9-8f8e-49f3272ea6bd/sm/ep3832.jpg","duration":539,"publication_date":"2011-11-03T13:24:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ninjas-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E849 - Ninjas Achievement Guide","description":"BioHRay and PouringRayn show us how to be ninjas in Battlefield 3 Co-op for 20G.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ninjas-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":163,"publication_date":"2011-11-02T21:56:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-car-lover-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E846 - Car Lover Achievement Guide","description":"Michael and Ray show you how to get the Car Lover Achievement in Battlefield 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-car-lover-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76fe81e6-ee02-4779-8fbf-559ece4ee75c/sm/ep3809.jpg","duration":261,"publication_date":"2011-11-02T17:22:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-44","changefreq":"weekly","video":[{"title":"2011:E44 - Achievement HORSE #48","description":"Jack and Chris go head to head in the inter-office HORSE tournament. Will Chris, as the 8 seed, give Jack a fight Watch and find out!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef86c3c4-34ec-48af-97c9-bae5edc9ab83/sm/ep3808.jpg","duration":360,"publication_date":"2011-11-02T16:15:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-rocket-man-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E845 - Rocket Man Achievement Guide","description":"Ray and Mike show you how to get the Rocket Man Achievement in Goldeneye 007: Reloaded for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-rocket-man-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff25a88b-24b9-488e-8131-b1cf732adc48/sm/ep3806.jpg","duration":102,"publication_date":"2011-11-02T15:13:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-between-a-rock-and-a-hard-place-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E844 - Between A Rock And A Hard Place Achievement Guide","description":"Ray and Michael show you how to get the Between A Rock And A Hard Place Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-between-a-rock-and-a-hard-place-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/067c3282-75e4-45e4-b389-928a56fd1dc5/sm/ep3805.jpg","duration":185,"publication_date":"2011-11-02T14:00:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-lsu-vs-alabama","changefreq":"weekly","video":[{"title":"2011:E10 - LSU vs. Alabama","description":"Geoff and Jack use NCAA Football 12 to simulate and determine the winner to this weekend's LSU vs. Alabama game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-lsu-vs-alabama","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7968e50f-7a69-4323-ad66-ee85293c4d27/sm/ep3804.jpg","duration":529,"publication_date":"2011-11-01T22:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-practice-makes-perfect-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E843 - Practice Makes Perfect Achievement Guide","description":"Ray and Michael show you how to get the Practice Makes Perfect Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-practice-makes-perfect-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3aeea0a5-935c-4869-ad6e-249262b1e08d/sm/ep3803.jpg","duration":254,"publication_date":"2011-11-01T16:08:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-2-70-71-bucks-vs-95-96-bulls","changefreq":"weekly","video":[{"title":"2011:E310 - The Best NBA Team of All Time: Rd 2 - 70-71 Bucks vs. 95-96 Bulls","description":"Geoff and Jack use NBA 2K12 to determine who the best NBA Team of all time is. This first game of Round Two pits the 1970-1971 Milwaukee Bucks against the 1995-1996 Chicago Bulls. The winner will advance to the finals!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-2-70-71-bucks-vs-95-96-bulls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbc36731-a9b7-4ef3-ab26-1a4497bd92ae/sm/ep3802.jpg","duration":450,"publication_date":"2011-11-01T15:59:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-butterfly-achievement-guide-2","changefreq":"weekly","video":[{"title":"2011:E842 - Butterfly Achievement Guide","description":"Ray and Michael show you how to get the Butterfly Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-butterfly-achievement-guide-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a81e038-d794-4275-b984-bd99176eb9bd/sm/ep3801.jpg","duration":192,"publication_date":"2011-11-01T15:35:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-43","changefreq":"weekly","video":[{"title":"2011:E44 - Week #86","description":"Jack and Geoff have a very SPOOOKY AHWU for you today. By \"spooky\" I mean there is literally nothing different. At all. HOW SPOOKY! Enjoy today's news about Uncharted 3, Apples to Apples and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b32b5139-0812-42d6-89e2-e55ff733f233/sm/ep3800.jpg","duration":265,"publication_date":"2011-10-31T22:41:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-twofor-achievement-guide-1","changefreq":"weekly","video":[{"title":"2011:E840 - Twofor Achievement Guide","description":"Ray and Michael show you how to get the Twofor Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-twofor-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/440f4c88-5630-44ac-a2bb-f3a62a139333/sm/ep3796.jpg","duration":61,"publication_date":"2011-10-31T14:37:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-43","changefreq":"weekly","video":[{"title":"2011:E43 - Volume 58","description":"Jack and Geoff deliver up a steaming pile of fail in another Fails of the Weak! Watch out for the dancing Grunts!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0abbc2a3-ead7-4068-bcd8-f63c74bced93/sm/ep3793.jpg","duration":217,"publication_date":"2011-10-28T21:03:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-86-87-lakers-vs-85-86-celtics","changefreq":"weekly","video":[{"title":"2011:E308 - The Best NBA Team of All Time: Rd 1 - 86-87 Lakers vs. 85-86 Celtics","description":"Geoff and Jack use NBA 2K12 to determine who the best NBA Team of all time is. This fourth game of Round One pits the 1986-1987 Los Angeles Lakers against the 1985-1986 Boston Celtics. The winner will advance to the second round to play the 1984-85 Philadelphia 76ers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-86-87-lakers-vs-85-86-celtics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/196b4d2b-f05b-48cf-8efa-f891cf6bb665/sm/ep3792.jpg","duration":355,"publication_date":"2011-10-28T19:56:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-army-of-darkness-achievement-guide-battlefield3","changefreq":"weekly","video":[{"title":"2011:E839 - Army of Darkness Achievement Guide","description":"Ray and Michael show you how to get the Army of Darkness Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-army-of-darkness-achievement-guide-battlefield3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db5023b7-be3a-44cd-8ae5-d592f1ae3975/sm/ep3791.jpg","duration":87,"publication_date":"2011-10-28T19:32:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-not-on-my-watch-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E838 - Not On My Watch Achievement Guide","description":"Ray and Michael show you how to get the Not On My Watch Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-not-on-my-watch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6319d270-03e8-478d-9cd3-23f1e89f0f57/sm/ep3790.jpg","duration":147,"publication_date":"2011-10-28T15:58:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-missing-link-dlc-apex-predator-that-old-adage","changefreq":"weekly","video":[{"title":"2011:E307 - The Missing Link DLC - Apex Predator, That Old Adage","description":"Fragger and Ray show you how to get the Apex Predator and That Old Adage Achievements in the Deus Ex: The Missing Link DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-missing-link-dlc-apex-predator-that-old-adage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d4f6076-c1b9-405b-b808-67aa4ccee797/sm/ep3789.jpg","duration":271,"publication_date":"2011-10-28T15:32:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-44","changefreq":"weekly","video":[{"title":"2011:E42 - Battlefield 3","description":"In this very special episode of Rage Quit (by that I mean an episode with no game audio due to technical problems), Michael tries his hand at multiplayer in Battlefield 3. Will he carry his team to victory","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9921e138-aae2-4fbd-ad2a-d8bfd1d04f06/sm/ep3788.jpg","duration":187,"publication_date":"2011-10-28T01:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-you-can-be-my-wingman-anytime-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E837 - You can be my wingman anytime Achievement Guide","description":"Michael, Ray and Miles show you how to get the \"You can be my wingman anytime\" achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-you-can-be-my-wingman-anytime-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14d81183-327d-4277-b1eb-0cb7b8cdc07a/sm/ep3786.jpg","duration":357,"publication_date":"2011-10-27T16:41:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scrap-metal-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E836 - Scrap Metal Achievement Guide","description":"Ray and Michael show you how to get the Scrap Metal Achievement in Battlefield 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scrap-metal-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf909f12-f463-44fe-aa2c-7b36020618d3/sm/ep3785.jpg","duration":113,"publication_date":"2011-10-27T14:54:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-40","changefreq":"weekly","video":[{"title":"2011:E43 - Achievement HORSE #47","description":"Kara and Chris duke it out for the play-in spot in the Rooster Teeth Productions office tournament. Who will win and go on to face Jack in the first round Watch and learn!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04708a64-0775-433b-a953-3049d5add1db/sm/ep3784.jpg","duration":410,"publication_date":"2011-10-26T23:32:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-roadkill-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E835 - Roadkill Achievement Guide","description":"Ray and Michael show you the easy way to pick up the Roadkill achievement in Battlefield 3. Beware falling cars!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-roadkill-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/538a466c-86ba-4055-9793-9656a7edb840/sm/ep3783.jpg","duration":99,"publication_date":"2011-10-26T16:45:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-involuntary-euthanasia-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E834 - Involuntary Euthanasia Achievement Guide","description":"Ray and Michael help some people along their final journey in Battlefield 3 and grab the \"Involuntary Euthanasia\" achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-involuntary-euthanasia-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a671d47-9699-4ea7-8761-c2699d76ae2e/sm/ep3782.jpg","duration":111,"publication_date":"2011-10-26T16:27:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-missing-link-dlc-backstage-pass-all-of-the-above","changefreq":"weekly","video":[{"title":"2011:E305 - The Missing Link DLC - Backstage Pass, All of the Above","description":"Fragger and Ray show you how to get the Backstage Pass and All of the Above Achievements in the Deus Ex: The Missing Link DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-missing-link-dlc-backstage-pass-all-of-the-above","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8eae3a8c-6136-4004-a61c-12a35dae3561/sm/ep3780.jpg","duration":233,"publication_date":"2011-10-26T14:03:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-44","changefreq":"weekly","video":[{"title":"2011:E47 - Battlefield 3","description":"Jack and Michael check out the newest installment of the Battlefield series, Battlefield 3. Learn how much Jack loves being a Medic and learn how much Michael doesn't care!","player_loc":"https://roosterteeth.com/embed/this-is-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a308ccb2-dad1-4402-89b7-0a3a1d6b47e8/sm/ep3779.jpg","duration":418,"publication_date":"2011-10-25T23:17:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-54","changefreq":"weekly","video":[{"title":"2011:E48 - Scarecrow Easter Egg","description":"Michael and Geoff show you the Scarecrow Easter Egg in Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-54","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53dc6b23-a847-46f4-97fc-3c6ac099f66b/sm/ep3769.jpg","duration":118,"publication_date":"2011-10-25T18:35:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-patriots-vs-steelers","changefreq":"weekly","video":[{"title":"2011:E9 - Patriots vs. Steelers","description":"Geoff and Jack use Madden 12 to simulate and determine the winner to this weekend's Patriots vs. Steelers game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-patriots-vs-steelers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d76268d-b594-4489-a790-cf316d6a62bc/sm/ep3768.jpg","duration":403,"publication_date":"2011-10-25T15:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-52","changefreq":"weekly","video":[{"title":"2011:E47 - Killer Croc Easter Egg","description":"Michael and Ray show you the Killer Croc Easter Egg in Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d38bd7ec-e6f0-4dfd-81f5-23053271e870/sm/ep3767.jpg","duration":143,"publication_date":"2011-10-24T21:00:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-38","changefreq":"weekly","video":[{"title":"2011:E43 - Week #85","description":"Jack and Geoff bring you another week's worth of games including Battlefield 3 and World of Warcraft News! Pet Battles FTW!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23a0f35b-5ea6-4e29-a376-c2a4da2cb902/sm/ep3765.jpg","duration":264,"publication_date":"2011-10-24T16:36:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-blackjack-subtle","changefreq":"weekly","video":[{"title":"2011:E304 - Blackjack Subtle","description":"Fragger and Ray show you how to get the Blackjack Subtle Achievement in the new DLC \"Mark of the Assassin\" for Dragon Age II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-blackjack-subtle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4d63295-f716-4628-b6b0-25dd74b1d6b8/sm/ep3764.jpg","duration":330,"publication_date":"2011-10-24T15:26:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-51","changefreq":"weekly","video":[{"title":"2011:E46 - Demon Spawn Easter Egg","description":"Jack and Geoff show you something very spoileriffic in Batman Arkham City. Have you found this Easter Egg that relates to the end of the game yet Notice how I'm not spoiling anything in the description That's totally intentional.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f39ee7f-3db7-4294-8d60-3cd34d354d05/sm/ep3762.jpg","duration":74,"publication_date":"2011-10-21T21:56:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-36","changefreq":"weekly","video":[{"title":"2011:E42 - Volume 57","description":"Jack and Geoff are back with yet another delicious bag of fails from the world of Halo. Watch out for those flying Mongii!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70b5f772-e820-4be6-a701-1eb2035e9924/sm/ep3761.jpg","duration":227,"publication_date":"2011-10-21T21:17:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-story-teller-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E824 - Story Teller Achievement Guide","description":"Michael and Geoff show you how to get the \"Story Teller\" achievement in Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-story-teller-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80efa48b-8fe9-4043-8cba-ddde2c876c0f/sm/ep3760.jpg","duration":192,"publication_date":"2011-10-21T20:45:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-50x-combo-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E823 - 50x Combo Achievement Guide","description":"Michael and Geoff show you how to get the \"50x Combo\" achievement in Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-50x-combo-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72c8a4d5-cb52-4b9c-a1ce-8b0e232655be/sm/ep3759.jpg","duration":108,"publication_date":"2011-10-21T16:18:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hide-and-seek-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E822 - Hide and Seek Achievement Guide","description":"Jack and Geoff take a look at one of the more difficult villains to kill in Batman Arkham City, Mr. Freeze! Watch and learn how to take this big boy down.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hide-and-seek-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f323963-6183-4ba9-8e0f-e6a800cd1cb4/sm/ep3758.jpg","duration":161,"publication_date":"2011-10-21T15:54:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cramped-quarters-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E821 - Cramped Quarters Achievement Guide","description":"Ray and Michael show you where to find the eight survivors needed to get the Cramped Quarters Achievement in Dead Rising 2: Off The Record for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cramped-quarters-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/600d6e86-9b50-4b25-9e47-221efa8087bf/sm/ep3757.jpg","duration":379,"publication_date":"2011-10-21T14:06:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-35","changefreq":"weekly","video":[{"title":"2011:E41 - Behind the Rage Quit: QWOP","description":"Today's special episode of Rage Quit is another look at one of the classics. Today you actually get to see Michael RAGE at QWOP. Enjoy this peek behind the scenes!","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd761cd9-32d1-4111-8f30-7c985ae403c8/sm/ep3756.jpg","duration":290,"publication_date":"2011-10-20T17:53:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-49","changefreq":"weekly","video":[{"title":"2011:E45 - Radio Easter Egg","description":"Jack and Geoff check out an easter egg in Batman Arkham City that was sent in by like three hundred fans. WHO WILL RETURN","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3b81ec0-3982-46ee-9b7d-bded08be4673/sm/ep3755.jpg","duration":53,"publication_date":"2011-10-20T16:06:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-84-85-sixers-vs-88-89-pistons","changefreq":"weekly","video":[{"title":"2011:E303 - The Best NBA Team of All Time: Rd 1 - 84-85 Sixers vs. 88-89 Pistons","description":"Geoff and Jack use NBA 2K12 to determine who the best NBA Team of all time is. This third game of Round One pits the 1984-1985 Philadelphia 76ers against the 1988-1989 Detroit Pistons. The winner will advance to the second round to play the winner between the 1986-87 Lakers vs. the 1985-86 Celtics.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-84-85-sixers-vs-88-89-pistons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d1c98c0-03c8-49cf-83ad-862d1ae9c0a9/sm/ep3754.jpg","duration":367,"publication_date":"2011-10-20T14:59:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-watchful-parent-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E814 - Watchful Parent Achievement Guide","description":"Try not to die in this guide, showing how to complete the tribal stage without losing a single tribe member","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-watchful-parent-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":492,"publication_date":"2011-10-19T22:40:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-31","changefreq":"weekly","video":[{"title":"2011:E42 - Achievement HORSE #46","description":"It is the second week of the Achievement HORSE office tournament and today we pit the 2nd seed Geoff versus Marshall who is ranked 7th. Who will win in this bloody battle in the first round The maps will all be linked after the first round is over!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad9cd58d-5f74-47da-be1f-0a9a2d965bb1/sm/ep3743.jpg","duration":486,"publication_date":"2011-10-19T21:47:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pay-your-respects-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E810 - Pay Your Respects Achievement Guide","description":"Michael and Geoff show you how to get the \"Pay Your Respects\" achievement in Batman: Arkham City.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pay-your-respects-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7508dbd-21cb-4ccd-86f2-7f6f314db865/sm/ep3742.jpg","duration":99,"publication_date":"2011-10-19T19:27:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spider-snagger-supreme-pt-3","changefreq":"weekly","video":[{"title":"2011:E302 - Spider Snagger Supreme Pt 3","description":"Fragger and Ray show you where to find the hidden collectibles needed to get the Spider Snagger Supreme Achievement in Spiderman: Edge of Time.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spider-snagger-supreme-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22938a18-bcaa-40f3-b5fe-cf6227d8a43c/sm/ep3740.jpg","duration":320,"publication_date":"2011-10-19T16:16:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-prestigious-pp-powered-up-no-zombies-in-the-vents","changefreq":"weekly","video":[{"title":"2011:E301 - Prestigious PP, Powered Up, No Zombies in the Vents","description":"Ray and Michael show you how to get the following three Achievements in Dead Rising 2: Off The Record - Prestigious PP, Powered Up, and No Zombies in the Vents.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-prestigious-pp-powered-up-no-zombies-in-the-vents","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8262b05d-7f2b-4cb4-9d46-c89a491d4ebe/sm/ep3739.jpg","duration":296,"publication_date":"2011-10-19T14:57:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-auburn-vs-lsu","changefreq":"weekly","video":[{"title":"2011:E8 - Auburn vs. LSU","description":"Geoff and Jack use NCAA Football 12 to simulate and determine the winner to this weekend's Auburn vs. LSU game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-auburn-vs-lsu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/373a339e-8a54-40be-8b11-84ed992de34b/sm/ep3737.jpg","duration":446,"publication_date":"2011-10-18T17:26:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-47","changefreq":"weekly","video":[{"title":"2011:E44 - Protoman Easter Egg","description":"Ray shows you how to get the Protoman suit in Dead Rising 2: Off The Record.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/370847a2-6932-482a-b3c1-b3a20f0763fa/sm/ep3736.jpg","duration":214,"publication_date":"2011-10-18T15:58:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-adult-content-raw-emotion-mixed-messages","changefreq":"weekly","video":[{"title":"2011:E300 - Adult Content, Raw Emotion, Mixed Messages","description":"Ray and Mike show you how to get the following three Achievements in Dead Rising 2: Off The Record - Adult Content, Raw Emotion, and Mixed Messages.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-adult-content-raw-emotion-mixed-messages","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a85ea1c5-4072-4bcb-a5d1-b4463a71a755/sm/ep3735.jpg","duration":154,"publication_date":"2011-10-18T14:05:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-30","changefreq":"weekly","video":[{"title":"2011:E42 - Week #84","description":"Jack and Geoff wade through another week full of releases to bring you the best of the best, talk gaming, NBA, Need for Speed and more! You love it because they love you.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abb7ec44-cbe5-4967-84f3-0712d0745806/sm/ep3734.jpg","duration":332,"publication_date":"2011-10-17T22:43:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-71-72-lakers-vs-95-96-bulls","changefreq":"weekly","video":[{"title":"2011:E299 - The Best NBA Team of All Time: Rd 1 - 71-72 Lakers vs. 95-96 Bulls","description":"Geoff and Jack use NBA 2K12 to determine who the best NBA Team of all time is. This second game of Round One pits the 1971-1972 L.A. Lakers against the 1995-1996 Chicago Bulls. The winner will advance to the second round to play the 1970-1971 Milwaukee Bucks.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-71-72-lakers-vs-95-96-bulls","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12c77cc1-1cd1-4b9f-b908-f52262b723f3/sm/ep3732.jpg","duration":339,"publication_date":"2011-10-17T17:45:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-more-achievements","changefreq":"weekly","video":[{"title":"2011:E809 - More Achievements!","description":"Ray and Mike show you how to get the \"We Have A Winner\", \"Safety Check Failed\", and \"Team Player\" Achievements in Dead Rising 2: Off The Record.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-more-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6c36f4c-a374-4339-9df5-916ad6508e32/sm/ep3730.jpg","duration":253,"publication_date":"2011-10-17T14:29:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spider-snagger-supreme-pt-2","changefreq":"weekly","video":[{"title":"2011:E298 - Spider Snagger Supreme Pt 2","description":"Fragger and Ray show you where to find the hidden collectibles needed to get the Spider Snagger Supreme Achievement in Spiderman: Edge of Time.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spider-snagger-supreme-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c031e188-ad49-4a6e-a008-4ac4951ae6c7/sm/ep3729.jpg","duration":345,"publication_date":"2011-10-17T13:31:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-25","changefreq":"weekly","video":[{"title":"2011:E41 - Volume 56","description":"Jack and Geoff show you another round of hilarious fails in Halo Reach.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5506d2f5-2279-4350-9e36-75d1579394bb/sm/ep3724.jpg","duration":267,"publication_date":"2011-10-14T14:22:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mark-of-the-assassin-dlc-chasing-the-game-the-take","changefreq":"weekly","video":[{"title":"2011:E297 - Mark of the Assassin DLC - Chasing the Game, The Take","description":"Fragger and Ray show you how to get the Chasing the Game and The Take Achievements in the new DLC \"Mark of the Assassin\" for Dragon Age II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mark-of-the-assassin-dlc-chasing-the-game-the-take","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03346305-5111-48c0-9ef3-51d2211cc291/sm/ep3723.jpg","duration":301,"publication_date":"2011-10-13T19:36:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-camera-crazy-out-with-the-old-tiger-tamer","changefreq":"weekly","video":[{"title":"2011:E296 - Camera Crazy, Out with the Old, Tiger Tamer","description":"Ray and Michael show you how to get the following Achievements in Dead Rising 2 - Off the Record: Camera Crazy, Out with the Old, Tiger Tamer.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-camera-crazy-out-with-the-old-tiger-tamer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73e777da-a286-493f-81db-0e5976131a60/sm/ep3722.jpg","duration":144,"publication_date":"2011-10-13T18:40:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lombardi-streak-ramped-up-show-off-blast-from-the-past","changefreq":"weekly","video":[{"title":"2011:E295 - Lombardi Streak, Ramped Up!, Show Off, Blast from the Past","description":"Tonyski and Ray show you how to get four Achievements in Driver - San Francisco: Lombardi Streak, Ramped Up!, Show Off, and Blast from the Past.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lombardi-streak-ramped-up-show-off-blast-from-the-past","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dee8eb36-91a7-406c-86a1-26d896e2b0bc/sm/ep3721.jpg","duration":357,"publication_date":"2011-10-13T18:33:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-9","changefreq":"weekly","video":[{"title":"2011:E807 - Collectible Guide Part 9","description":"TonySki and Ray show where to find the hidden collectibles in level nine of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb9f09f8-b7aa-40d1-8feb-b0f674f99b7b/sm/ep3720.jpg","duration":338,"publication_date":"2011-10-13T16:12:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-8","changefreq":"weekly","video":[{"title":"2011:E806 - Collectible Guide Part 8","description":"TonySki and Ray show where to find the hidden collectibles in level eight of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38324a83-eb02-4efd-b73e-d92fe8f26ee4/sm/ep3719.jpg","duration":288,"publication_date":"2011-10-13T16:11:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-24","changefreq":"weekly","video":[{"title":"2011:E40 - Dark Souls","description":"Michael takes a stab at one of the most anticipatedly difficult games this year: Dark Souls.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0046f92f-b013-4c45-ad7a-de5110ec5294/sm/ep3718.jpg","duration":273,"publication_date":"2011-10-13T14:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-unlock-the-halo-warthog","changefreq":"weekly","video":[{"title":"2011:E294 - How to unlock the Halo Warthog","description":"Fragger and Geoff show you how to unlock Halo's Warthog in Forza 4's autovista mode.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-unlock-the-halo-warthog","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14ee3be3-021c-4259-aa1a-6fa015a65220/sm/ep3717.jpg","duration":216,"publication_date":"2011-10-12T20:01:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-24","changefreq":"weekly","video":[{"title":"2011:E41 - Achievement HORSE #45","description":"The first ever Rooster Teeth / Achievement Hunter HORSE tournament begins today, as Kerry and Joel are pitted against each other in the first round. Who will win","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/532407f9-c76a-4d8f-9c50-fcc9d2bbe133/sm/ep3716.jpg","duration":472,"publication_date":"2011-10-12T15:54:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-photo-school-puking-rally-party-time","changefreq":"weekly","video":[{"title":"2011:E293 - Photo School, Puking Rally, Party Time","description":"Ray and Michael show you how to get the Photo School, Puking Rally, and Party Time Achievements in Dead Rising 2: Off The Record for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-photo-school-puking-rally-party-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eef271f7-73c8-4733-9a4c-ec6abd87c7ef/sm/ep3715.jpg","duration":206,"publication_date":"2011-10-12T15:50:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-long-distance-relationship-this-is-my-rifle-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E805 - Long Distance Relationship, This Is My Rifle Achievement Guide","description":"Ray and Michael show you how to get the Long Distance Relationship and This Is My Rifle Achievements in Crysis for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-long-distance-relationship-this-is-my-rifle-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a236434-a239-4265-8d83-03e5a791797a/sm/ep3714.jpg","duration":154,"publication_date":"2011-10-12T14:18:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-u-mad-bro-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E804 - U Mad Bro?!?! Achievement Guide","description":"Fragger and Ray show you how to get the U Mad Bro!! Achievement in X-Men: Destiny for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-u-mad-bro-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cf986a1-90df-441e-a2d2-e5f234847f57/sm/ep3713.jpg","duration":185,"publication_date":"2011-10-12T14:01:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-42","changefreq":"weekly","video":[{"title":"2011:E43 - DOOM Easter Egg","description":"Michael and Geoff show you the DOOM Easter Egg in Rage.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17990057-b03b-4470-8b11-e4e4fdaf8291/sm/ep3711.jpg","duration":208,"publication_date":"2011-10-11T20:20:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spiderman-edge-of-time-spider-snagger-supreme-pt-1","changefreq":"weekly","video":[{"title":"2011:E292 - Spiderman: Edge of Time - Spider Snagger Supreme Pt 1","description":"Fragger and Michael show you where to find the hidden collectibles needed to get the Spider Snagger Supreme Achievement in Spiderman: Edge of Time.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spiderman-edge-of-time-spider-snagger-supreme-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8de35bf-f38c-4ddc-a0bd-9db2ae339c43/sm/ep3710.jpg","duration":362,"publication_date":"2011-10-11T19:39:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-21","changefreq":"weekly","video":[{"title":"2011:E41 - Week #83","description":"Jack and Geoff deliver a dose of goodness in this week's AHWU. Check out a ton of releases hitting this week including Red Dead Redemption, Kinectimals: Bears, Crimson Alliance DLC and more! Also, special guest appearance from Griffon!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b36c3c8-2256-479e-9b12-9f8343a64c4b/sm/ep3707.jpg","duration":378,"publication_date":"2011-10-10T22:02:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mighty-marvel-booster-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E802 - Mighty Marvel Booster Achievement Guide","description":"Fragger and Michael show you how to get the Mighty Marvel Booster Achievement in Spiderman: Edge of Time for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mighty-marvel-booster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c5c8025-10b7-4a99-8c11-ffe6bceba086/sm/ep3693.jpg","duration":156,"publication_date":"2011-10-10T17:19:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-97-98-bulls-vs-70-71-bucks","changefreq":"weekly","video":[{"title":"2011:E291 - The Best NBA Team of All Time: Rd 1 - 97-98 Bulls vs. 70-71 Bucks","description":"Geoff and Jack use NBA2K12 to determine who the best NBA Team of all time is. Round one pits the 1997-98 Chicago Bulls vs. the 1970-71 Milwaukee Bucks. It's Jordan and Pippen vs. Robertson and Abdul Jabbar in an epic showdown. The winner of this game plays the winner of the 71-72 Lakers vs. 95-96 Bulls in Round Two.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-best-nba-team-of-all-time-rd-1-97-98-bulls-vs-70-71-bucks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f91be148-9330-4a31-add0-6343db0dae3c/sm/ep3692.jpg","duration":382,"publication_date":"2011-10-10T16:48:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-zoology-choke-hold-catch-this","changefreq":"weekly","video":[{"title":"2011:E290 - Zoology, Choke Hold, Catch This!","description":"Ray and MIchael show you how to get Zoology, Choke Hold, and Catch This! in Crysis on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-zoology-choke-hold-catch-this","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c2204b1-7c7a-439c-a0d8-1dce78c4958f/sm/ep3691.jpg","duration":220,"publication_date":"2011-10-10T15:50:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-17","changefreq":"weekly","video":[{"title":"2011:E40 - Volume 55","description":"Jack and Geoff wade through another soapy batch of Halo: Reach fails! Who will be the failiest of the fail I don't know, do you FAIL!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16e26728-844a-4289-9e63-3e61b12ff308/sm/ep3690.jpg","duration":271,"publication_date":"2011-10-07T19:00:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-39","changefreq":"weekly","video":[{"title":"2011:E42 - Sawed Off Chicken Easter Egg","description":"Michael and Jack show you how to find the Sawed Off Chicken Easter Egg in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8350df38-4f3d-4359-ac26-d57b7c3db3c5/sm/ep3689.jpg","duration":103,"publication_date":"2011-10-07T17:21:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-17","changefreq":"weekly","video":[{"title":"2011:E39 - Rage","description":"Michael takes on Rage in Rage Quit. Will he rage Better yet, how much will he Rage Will he Rage a lot Will he Rage a little Can he Rage while he Rages","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af736fb4-0197-452d-909c-788358307393/sm/ep3688.jpg","duration":207,"publication_date":"2011-10-06T22:33:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-musicium-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E801 - Musicium Achievement Guide","description":"Mike and Michael show you how to get the \"Musicium\" achievement in Mercury Hg.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-musicium-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/025d689c-5534-4eac-8943-1a10b6e050f1/sm/ep3687.jpg","duration":93,"publication_date":"2011-10-06T15:24:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cleaned-up-the-city-archivist-completionist-pt-2","changefreq":"weekly","video":[{"title":"2011:E289 - Cleaned up the City, Archivist, Completionist Pt 2","description":"Fragger and Geoff show you where to find all of the propaganda, dossiers, and unique challenge missions to get the Cleaned up the City, Archivist, and Completionist Achievements in X-Men: Destiny for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cleaned-up-the-city-archivist-completionist-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00969c88-cb7b-4cb2-a0ca-91f4e983b6e8/sm/ep3686.jpg","duration":396,"publication_date":"2011-10-06T14:17:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-15","changefreq":"weekly","video":[{"title":"2011:E40 - Achievement HORSE #44","description":"Jack and Geoff beat each other down yet again. Watch as Geoff is a raging dick to Jack and learn about a brand new event kicking off next week! All maps are available here: http://bit.ly/AHHORSE44","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0888c39d-e3ef-4691-97e0-03d24c27b865/sm/ep3677.jpg","duration":463,"publication_date":"2011-10-05T21:31:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-7-part-1","changefreq":"weekly","video":[{"title":"2011:E285 - Saw II Collectibles-Chapter 7, Part 1","description":"This video is the first of two to show you how to get all the collectibles in Chapter 7 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-7-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecad68ce-9a08-4bd1-ac25-9f59e6437432/sm/2013912-1451424637375-maxresdefault_(2).jpg","duration":240,"publication_date":"2011-10-05T19:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-7-part-2","changefreq":"weekly","video":[{"title":"2011:E286 - Saw II Collectibles-Chapter 7, Part 2","description":"This video is the second of two to show you how to get all the collectibles in Chapter 7 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-7-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3809df6d-7aa9-487a-8cd4-815fd2440e6e/sm/2013912-1451424668060-maxresdefault_(6).jpg","duration":251,"publication_date":"2011-10-05T19:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-8-part-1","changefreq":"weekly","video":[{"title":"2011:E287 - Saw II Collectibles-Chapter 8, Part 1","description":"This video is the first of two to show you how to get all the collectibles in Chapter 8 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-8-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61f57206-daa1-4f04-8620-968d5db642d9/sm/2013912-1451424691637-maxresdefault_(7).jpg","duration":215,"publication_date":"2011-10-05T19:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-8-part-2","changefreq":"weekly","video":[{"title":"2011:E288 - Saw II Collectibles-Chapter 8, Part 2","description":"This video is the second of two to show you how to get all the collectibles in Chapter 8 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-8-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10c3a460-c97d-4daf-9f71-157620bfd516/sm/2013912-1451424716839-maxresdefault_(2).jpg","duration":209,"publication_date":"2011-10-05T19:40:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-5-part-2","changefreq":"weekly","video":[{"title":"2011:E282 - Saw II Collectibles-Chapter 5, Part 2","description":"This video is the second of two to show you how to get all the collectibles in Chapter 5 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-5-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce3febeb-4d07-44cb-a29e-03aad0cec922/sm/2013912-1451424559302-maxresdefault_(4).jpg","duration":214,"publication_date":"2011-10-05T19:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-6-part-1","changefreq":"weekly","video":[{"title":"2011:E283 - Saw II Collectibles-Chapter 6, Part 1","description":"This video is the first of two to show you how to get all the collectibles in Chapter 6 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-6-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97a24ed6-e0a7-45bd-b2da-8dcd80a9d3bf/sm/2013912-1451424585083-maxresdefault_(2).jpg","duration":247,"publication_date":"2011-10-05T19:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-6-part-2","changefreq":"weekly","video":[{"title":"2011:E284 - Saw II Collectibles-Chapter 6, Part 2","description":"This video is the second of two to show you how to get all the collectibles in Chapter 6 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-6-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d1036f7-2c24-4dfe-9883-a009b4bbc628/sm/2013912-1451424607083-maxresdefault_(5).jpg","duration":240,"publication_date":"2011-10-05T19:39:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-5-part-1","changefreq":"weekly","video":[{"title":"2011:E281 - Saw II Collectibles-Chapter 5, Part 1","description":"This video is the first of two to show you how to get all the collectibles in Chapter 5 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-5-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c523fe6-d3ab-4c01-aca0-8f03dfae6d3e/sm/2013912-1451424535137-maxresdefault_(3).jpg","duration":184,"publication_date":"2011-10-05T19:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-3-part-2","changefreq":"weekly","video":[{"title":"2011:E278 - Saw II Collectibles-Chapter 3, Part 2","description":"This video is the second of two to show you how to get all the collectibles in Chapter 3 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-3-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0579fa51-7ddf-4c43-af5a-af7764fdfd49/sm/2013912-1451424452836-maxresdefault_(2).jpg","duration":241,"publication_date":"2011-10-05T19:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-4-part-1","changefreq":"weekly","video":[{"title":"2011:E279 - Saw II Collectibles-Chapter 4, Part 1","description":"This video is the first of two to show you how to get all the collectibles in Chapter 4 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-4-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/877bfba4-c629-4fb4-9990-9b9fd2c1c3e1/sm/2013912-1451424478565-maxresdefault_(2).jpg","duration":258,"publication_date":"2011-10-05T19:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-4-part-2","changefreq":"weekly","video":[{"title":"2011:E280 - Saw II Collectibles-Chapter 4, Part 2","description":"This video is the second of two to show you how to get all the collectibles in Chapter 4 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-4-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d9476bd-aad4-4bcf-88c9-5450305acaa3/sm/2013912-1451424509486-maxresdefault_(2).jpg","duration":220,"publication_date":"2011-10-05T19:38:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-1","changefreq":"weekly","video":[{"title":"2011:E276 - Saw II Collectibles-Chapter 1","description":"This video shows you how to get all the collectibles in Chapter 1 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9194de2d-79f3-4a18-bbf8-d5d156010f29/sm/2013912-1451424397396-maxresdefault.jpg","duration":117,"publication_date":"2011-10-05T19:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-3-part-1","changefreq":"weekly","video":[{"title":"2011:E277 - Saw II Collectibles-Chapter 3, Part 1","description":"This video is the first of two to show you how to get all the collectibles in Chapter 3 of Saw II: Flesh & Blood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-saw-ii-collectibles-chapter-3-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/deb2aef5-2f80-4048-88cc-39dea3097ea4/sm/2013912-1451424425252-maxresdefault_(1).jpg","duration":187,"publication_date":"2011-10-05T19:37:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-31","changefreq":"weekly","video":[{"title":"2011:E41 - Quake Easter Egg","description":"Michael and Geoff show you a Quake Easter Egg in Rage.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b6f2fae9-cfef-400e-b630-4496ed61bb79/sm/ep3663.jpg","duration":197,"publication_date":"2011-10-05T18:24:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-ou-vs-ut","changefreq":"weekly","video":[{"title":"2011:E7 - OU vs. UT","description":"Geoff and Jack run the simulation on this weekend's OU vs UT game, to determine, without a doubt, the correct winner. Vegas baby. Vegas.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-ou-vs-ut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e88baf09-b771-498a-861a-3a40902349a0/sm/ep3662.jpg","duration":376,"publication_date":"2011-10-05T17:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-59","changefreq":"weekly","video":[{"title":"2011:E42 - NBA 2K12","description":"Geoff and Michael show you all about NBA2K12 and it's awesome basketball stuff.","player_loc":"https://roosterteeth.com/embed/this-is-2011-59","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a2570b6-98de-4618-a905-bd9c87213f91/sm/ep3659.jpg","duration":430,"publication_date":"2011-10-04T22:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-28","changefreq":"weekly","video":[{"title":"2011:E40 - Wolfenstein 3D Easter Egg","description":"Michael and Geoff show you a Wolfenstein 3D Easter Egg in Rage.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b14e451b-5454-45bc-be5e-b8976547812d/sm/ep3658.jpg","duration":83,"publication_date":"2011-10-04T19:23:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hungry-for-fame-paparazzi","changefreq":"weekly","video":[{"title":"2011:E275 - Hungry For Fame, Paparazzi","description":"Ray and Michael show you how to get the following two Achievements in Cabela's Big Game Hunter 2012: Hungry For Fame and Paparazzi.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hungry-for-fame-paparazzi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d0960d5d-ef4f-41ea-bf29-cd15e21ebb1d/sm/ep3657.jpg","duration":172,"publication_date":"2011-10-04T16:18:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cleaned-up-the-city-archivist-completionist-pt-1","changefreq":"weekly","video":[{"title":"2011:E274 - Cleaned up the City, Archivist, Completionist Pt 1","description":"Fragger and Geoff show you where to find all of the propaganda, dossiers, and unique challenge missions to get the Cleaned up the City, Archivist, and Completionist Achievements in X-Men: Destiny for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cleaned-up-the-city-archivist-completionist-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf8830c-23d5-4b4b-90e7-795a0b98b1d5/sm/ep3656.jpg","duration":431,"publication_date":"2011-10-04T16:13:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-14","changefreq":"weekly","video":[{"title":"2011:E40 - Week #82","description":"Jack flies solo in this Universal Studios-themed AHWU. Join him on his journey across a theme park dispersing information on this week's releases. Also, keep an eye out for a room full of Full Sail students!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03c07985-5a78-460c-acfc-835995dca2cd/sm/ep3655.jpg","duration":197,"publication_date":"2011-10-04T04:42:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-12","changefreq":"weekly","video":[{"title":"2011:E39 - Volume 54","description":"Jack and Geoff enjoy another batch of delicious fails in Halo: Reach. This week they seem to watch a whole lot of betrayals.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4154947c-c9d2-4722-9e8f-adc1c1d0d4f4/sm/ep3651.jpg","duration":224,"publication_date":"2011-09-30T20:45:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-10","changefreq":"weekly","video":[{"title":"2011:E38 - Super Street Fighter 4","description":"Michael picks the oldest character in the world and takes on Super Street Fighter 4. How do you think he'll do","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/618cbf68-8285-4855-8d29-bba1ff2f0c1c/sm/ep3650.jpg","duration":182,"publication_date":"2011-09-29T21:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-25","changefreq":"weekly","video":[{"title":"2011:E39 - Cluckshot Easter Egg","description":"Michael and Geoff show you how to find the Cluckshot Easter Egg in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be4555b5-f382-4376-9df1-f752a99a97e3/sm/ep3649.jpg","duration":142,"publication_date":"2011-09-29T16:41:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-warhead-hunter-achievement-guide-pt-2","changefreq":"weekly","video":[{"title":"2011:E791 - Warhead Hunter Achievement Guide (pt 2)","description":"Mike and Michael show you where to find the Nuclear Warheads needed to get the Warhead Hunter Achievement in Fallout: New Vegas - Lonesome Road.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-warhead-hunter-achievement-guide-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70ae7e65-200e-4e1d-a151-9109011318df/sm/ep3648.jpg","duration":255,"publication_date":"2011-09-29T13:20:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-11","changefreq":"weekly","video":[{"title":"2011:E39 - Achievement HORSE #43","description":"Jack and Geoff butt heads yet again in another episode of Achievement HORSE. Will they ever end their grievances and just be friends Spoiler: NEVER. All maps are available right here: http://bit.ly/AHHORSE043","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb68585c-d6b8-432c-97b3-d230cdf03d29/sm/ep3647.jpg","duration":473,"publication_date":"2011-09-28T21:58:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-five","changefreq":"weekly","video":[{"title":"2011:E273 - Hoarder & Remember the Fallen - Act Five","description":"Geoff and Jack show you where to find the hidden cog tags and collectibles in Act Five of Gears of War 3, to get the Hoarder and Remember the Fallen Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-five","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33df93c3-5065-44ec-9ea7-b326f4d8c0ba/sm/ep3638.jpg","duration":253,"publication_date":"2011-09-28T18:42:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-nebraska-vs-wisconsin","changefreq":"weekly","video":[{"title":"2011:E6 - Nebraska vs. Wisconsin","description":"Geoff and Jack predict the outcome of this weekend's NCAA matchup between #8 Nebraska and #7 Wisconsin.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-nebraska-vs-wisconsin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c41b623-fee5-4f73-b09a-42c16d7fd0a0/sm/ep3637.jpg","duration":310,"publication_date":"2011-09-28T18:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-warhead-hunter-achievement-guide-pt-1","changefreq":"weekly","video":[{"title":"2011:E782 - Warhead Hunter Achievement Guide (pt 1)","description":"Mike and Michael show you where to find the Nuclear Warheads needed to get the Warhead Hunter Achievement in Fallout: New Vegas - Lonesome Road.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-warhead-hunter-achievement-guide-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/900983a5-c8f6-4c66-bc69-bd60037d2407/sm/ep3635.jpg","duration":271,"publication_date":"2011-09-27T15:51:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievements-ahoy","changefreq":"weekly","video":[{"title":"2011:E781 - Achievements Ahoy!","description":"Ray and Michael show you how to get the following Achievements in Nicktoons MLB: I Make This Look Good, Life Is Grand, and Walk This Way.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievements-ahoy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91ee84d9-6291-4004-8547-b3c9ea75e1f9/sm/ep3634.jpg","duration":156,"publication_date":"2011-09-27T15:16:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-18","changefreq":"weekly","video":[{"title":"2011:E38 - Lambent Chicken Easter Egg","description":"Michael and Ray show you how to find the Lambent Chicken Easter Egg in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a49794e1-a74d-4ef8-89df-4f60991a525a/sm/ep3632.jpg","duration":176,"publication_date":"2011-09-26T21:04:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-9","changefreq":"weekly","video":[{"title":"2011:E39 - Week #81","description":"Jack and Geoff deliver the goods in this week's AHWU. They'll go over this week's releases as well as some news in Mortal Kombat, Star Wars: The Old Republic and more! Stay tuned to see the winner of our Gears of War 3 fail contest!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8c6ae0d-0e6a-40ea-a08f-314bb37e57f8/sm/ep3631.jpg","duration":299,"publication_date":"2011-09-26T20:42:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-16","changefreq":"weekly","video":[{"title":"2011:E37 - Easter Egg Grab Bag","description":"Michael and Geoff show you where to find a few Easter Eggs in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26fa4994-4192-482c-aaf5-a8f555996358/sm/ep3629.jpg","duration":144,"publication_date":"2011-09-26T16:02:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-four","changefreq":"weekly","video":[{"title":"2011:E272 - Hoarder & Remember the Fallen - Act Four","description":"Geoff and Jack show you where to find the hidden cog tags and collectibles in Act Four of Gears of War 3, to get the Hoarder and Remember the Fallen Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9778fd5-c985-4dcb-a717-025242b23558/sm/ep3628.jpg","duration":150,"publication_date":"2011-09-26T14:06:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-respect-for-the-dead","changefreq":"weekly","video":[{"title":"2011:E271 - Respect for the Dead","description":"Fragger and Michael jump in to Gears of War 3 and pick up the only secret achievement in the game \"Respect for the Dead.\" Watch your step!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-respect-for-the-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88a3934a-400d-4cf2-8b43-071656f5ec5d/sm/ep3625.jpg","duration":150,"publication_date":"2011-09-23T22:17:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-8","changefreq":"weekly","video":[{"title":"2011:E38 - Volume 53","description":"Jack and Geoff check out another week's worth of insanity and wackiness in the world of Halo: Reach. Join them and giggle. So much giggling.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57996abd-91cb-442b-b964-f439c1a4f089/sm/ep3624.jpg","duration":272,"publication_date":"2011-09-23T18:47:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-three","changefreq":"weekly","video":[{"title":"2011:E270 - Hoarder & Remember the Fallen - Act Three","description":"Geoff and Jack show you where to find the hidden cog tags and collectibles in Act Three of Gears of War 3, to get the Hoarder and Remember the Fallen Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d3848cb-9aa1-4df9-b5c7-a97ac092a976/sm/ep3623.jpg","duration":172,"publication_date":"2011-09-23T17:08:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-librarian-of-macragge-part-2","changefreq":"weekly","video":[{"title":"2011:E269 - Librarian of Macragge (Part 2)","description":"Fragger heads in to Warhammer 40,000: Space Marine on his own to start hunting for the \"Librarian of Macragge\" achievement. It's okay though, he has a Chainsword!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-librarian-of-macragge-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/693d6cb2-5a26-49cf-8e3d-5a4214bd281a/sm/ep3622.jpg","duration":272,"publication_date":"2011-09-23T16:46:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-12","changefreq":"weekly","video":[{"title":"2011:E36 - Fighting Tickers Easter Egg","description":"Geoff and Jack show you where to find a cool cutscene of tickers fighting to the death arena style in Act 2, Chapter 4 of Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23126956-a56e-4c02-8260-5cc43c7fef9c/sm/ep3621.jpg","duration":123,"publication_date":"2011-09-23T14:17:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-6","changefreq":"weekly","video":[{"title":"2011:E37 - Gears of War 3 (HORDE Mode)","description":"Michael takes a stab at the last wave of HORDE mode in Gears of War 3. It goes about as well as you'd imagine.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e959a0c-394e-45be-a4d5-4e844a68adfb/sm/ep3620.jpg","duration":232,"publication_date":"2011-09-22T20:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-two","changefreq":"weekly","video":[{"title":"2011:E268 - Hoarder & Remember the Fallen - Act Two","description":"Geoff and Jack show you where to find the hidden cog tags and collectibles in Act Two of Gears of War 3, to get the Hoarder and Remember the Fallen Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e93427a-d31b-4e1b-876c-c485a0897e5d/sm/ep3619.jpg","duration":253,"publication_date":"2011-09-22T18:05:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-11","changefreq":"weekly","video":[{"title":"2011:E35 - Cole Train Baseball Cap Easter Egg","description":"Michael and Geoff show you where to grab the Cole Train Baseball Cap Easter Egg in Gears of War 3.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2cbbf7f-6e71-4a28-a1d9-d7656bfadf85/sm/ep3618.jpg","duration":116,"publication_date":"2011-09-22T16:34:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ed-ecated","changefreq":"weekly","video":[{"title":"2011:E267 - ED-Ecated","description":"Mike and Michael show you how to get the \"ED-Ecated\" achievement in the Lonesome Road DLC for Fallout New: Vegas.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ed-ecated","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7068f5d-1b59-40b5-8fac-4d82df162d49/sm/ep3617.jpg","duration":147,"publication_date":"2011-09-22T16:12:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-6","changefreq":"weekly","video":[{"title":"2011:E38 - Achievement HORSE #42","description":"Jack and Geoff face off yet again in the realm of HORSE. With Gears 3 hitting yesterday, we had to shorten it a bit, but that doesn't reduce the amount of hard-hitting HORSE excitement! All maps are available at http://bit.ly/AHHORSE042","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baf29106-4b3d-4289-9438-bff296c34c95/sm/ep3616.jpg","duration":472,"publication_date":"2011-09-21T21:45:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-three-up-three-down-squeezed-in-there-throwing-smoke","changefreq":"weekly","video":[{"title":"2011:E266 - Three Up Three Down, Squeezed In There, Throwing Smoke","description":"Ray and Michael show you how to get Three Up Three Down, Squeezed In There, and Throwing Smoke in Nicktoons MLB for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-three-up-three-down-squeezed-in-there-throwing-smoke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b5c4110-234b-4135-8fb5-7b870992cb72/sm/ep3615.jpg","duration":116,"publication_date":"2011-09-21T21:09:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-one","changefreq":"weekly","video":[{"title":"2011:E265 - Hoarder & Remember the Fallen - Act One","description":"Geoff and Jack show you where to find the hidden cog tags and collectibles in Act One of Gears of War 3, to get the Hoarder and Remember the Fallen Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoarder-and-remember-the-fallen-act-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19d8ca4b-2275-4055-bec0-188536f8a2d1/sm/ep3614.jpg","duration":293,"publication_date":"2011-09-21T17:05:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-xbox-360-vs-other-versions","changefreq":"weekly","video":[{"title":"2011:E264 - Xbox 360 vs other versions","description":"Fragger does a direct comparison between the new Xbox 360 version of Resident Evil 4 HD, and it's Gamecube, PS2, and Wii counterparts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-xbox-360-vs-other-versions","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecee1801-52e4-4fca-9aa0-06df271f8b4a/sm/ep3613.jpg","duration":246,"publication_date":"2011-09-20T21:49:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-9","changefreq":"weekly","video":[{"title":"2011:E34 - Dancing Wretch Easter Egg","description":"Geoff and Jack show you how to unlock the dancing wretch easter egg on the \"checkout\" level in Gears of War 3 for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f08084e-ae2a-4f7f-9c12-a50f04a866b0/sm/ep3611.jpg","duration":319,"publication_date":"2011-09-20T18:32:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-osu-vs-atm","changefreq":"weekly","video":[{"title":"2011:E5 - OSU vs. aTm","description":"Geoff and Jack predict the winner of week four's Matchup between Oklahoma State and Texas A&M.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-osu-vs-atm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69b3feed-4de9-46dd-a449-e9dbeb892776/sm/ep3610.jpg","duration":345,"publication_date":"2011-09-20T14:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-5","changefreq":"weekly","video":[{"title":"2011:E38 - Week #80","description":"Jack and Geoff are back with another week of awesomeness. This week they look at F1 something and Gears of War 3. Also stay tuned until the end of the episode for a way to earn 1600 just for playing Gears 3!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87ef6350-82b2-400e-a172-707c3b04966b/sm/ep3609.jpg","duration":291,"publication_date":"2011-09-19T23:40:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-four-achievements","changefreq":"weekly","video":[{"title":"2011:E778 - Four Achievements","description":"Fragger and Michael get the following Achievements in Deus Ex: Human Revolution - Kevorkian Complex, Ladies Man, Lucky Guess, and Hangar 18.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-four-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41235ff2-5e39-4125-8b9f-3b6494483dfe/sm/ep3606.jpg","duration":188,"publication_date":"2011-09-16T18:48:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-master-of-foal-herding-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E777 - Master of Foal Herding Achievement Guide","description":"Mike, Michael, and BrownMan pick up the \"Master of Foal Herding\" achievement in My Horse & Me 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-master-of-foal-herding-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3429f762-6c96-40be-a42d-12d61e0dc3b9/sm/ep3605.jpg","duration":135,"publication_date":"2011-09-16T16:22:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bouncer-trophy-guide","changefreq":"weekly","video":[{"title":"2011:E776 - Bouncer Trophy Guide","description":"Michael and Ray show you how to get the Bouncer Trophy in Resistance 3 for the Sony Playstation 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bouncer-trophy-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9735d52-46fd-487e-b4c2-bdf1d9605c31/sm/ep3604.jpg","duration":236,"publication_date":"2011-09-16T14:49:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-5","changefreq":"weekly","video":[{"title":"2011:E37 - Fails of the Weak Volume 52 (Funny Halo Bloopers and Glitches!)","description":"Jack and Geoff celebrate Fails of the Weak turning one year old in this week's edition of silly space marines flailing about.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4aac6a7-8710-4215-963b-8e4767a0d9c7/sm/ep3603.jpg","duration":309,"publication_date":"2011-09-16T13:59:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-ou-vs-fsu","changefreq":"weekly","video":[{"title":"2011:E4 - OU vs. FSU","description":"Geoff and Jack predict the most scientifically accurate outcome possible for this weekend's matchup between OU and FSU.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-ou-vs-fsu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b777e4bf-4405-4c40-92c8-f42bb470c2c4/sm/ep3602.jpg","duration":416,"publication_date":"2011-09-15T19:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-3","changefreq":"weekly","video":[{"title":"2011:E36 - Mutant Storm: Reloaded","description":"Michael takes his rage out on levels 64 and 65. Will he survive any level in Mutant Storm: Reloaded (Spoiler: Probably not.)","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c44713c-d7f1-4c46-b3cf-f547e37a4f2e/sm/ep3601.jpg","duration":209,"publication_date":"2011-09-15T18:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-brute-and-watcher","changefreq":"weekly","video":[{"title":"2011:E263 - Rise of Nightmares - Brute & Watcher","description":"2tired2care shows us how to get a couple of achievements in \"Rise of Nightmares.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-brute-and-watcher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72417fe3-db09-427f-a47b-192fd3fbf914/sm/2013912-1451424361566-maxresdefault_(16).jpg","duration":78,"publication_date":"2011-09-15T02:10:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-3","changefreq":"weekly","video":[{"title":"2011:E37 - Achievement HORSE #41","description":"Jack and Michael go head to head again in a rousing game of PIG to see who will come out on top Warning, it gets bloody. All maps are available at http://bit.ly/AHHORSE41","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cef9558-9e91-4831-9efc-e244fee014b9/sm/ep3597.jpg","duration":490,"publication_date":"2011-09-14T23:28:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gesundheit-light-my-fire-oh-no-you-dont","changefreq":"weekly","video":[{"title":"2011:E262 - Gesundheit!, Light My Fire, Oh, No You Don't","description":"Ray and Michael show you how to get the Gesundheit!, Light My Fire, and Oh, No You Don't Achievements in Dead Island for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gesundheit-light-my-fire-oh-no-you-dont","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfb075fa-8620-41e0-99b6-aa8d1987894a/sm/ep3596.jpg","duration":349,"publication_date":"2011-09-14T15:17:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-librarian-of-macragge-part-1","changefreq":"weekly","video":[{"title":"2011:E261 - Librarian of Macragge (Part 1)","description":"Fragger heads in to Warhammer 40,000: Space Marine on his own to start hunting for the \"Librarian of Macragge\" achievement. It's okay though, he has a Chainsword!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-librarian-of-macragge-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64c62025-fc2b-4f12-ab16-c0c3c18c98ec/sm/ep3592.jpg","duration":161,"publication_date":"2011-09-13T19:30:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-1-8-walkthrough","changefreq":"weekly","video":[{"title":"2011:E260 - 1.8 Walkthrough","description":"Burnie and J.D. (Burnie's 9 year old son) walk you through the new additions to Minecraft 1.8! Link for download - http://assets.minecraft.net/1_8-pre2/minecraft.jar","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-1-8-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa72e1fb-d5bc-4431-a6a8-559ae7f96a77/sm/ep3591.jpg","duration":568,"publication_date":"2011-09-13T16:35:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-2","changefreq":"weekly","video":[{"title":"2011:E37 - Week #79","description":"Jack and Geoff take you through another week of fun times in today's AHWU. Join them on an epic journey through sights, sounds and release dates.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c73baf05-8f03-4c97-94cf-82e0ea6d0cd7/sm/ep3589.jpg","duration":267,"publication_date":"2011-09-12T21:33:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-doctorate-part-3","changefreq":"weekly","video":[{"title":"2011:E259 - Doctorate (Part 3)","description":"Fragger and Ray earn their degree in Deus Ex: Human Revolution. From now on call them Dr. Fragger and Dr. Ray. Watch them get their Doctorate!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-doctorate-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e58669a-51e9-418a-94cf-645042d5d777/sm/ep3588.jpg","duration":207,"publication_date":"2011-09-12T20:48:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-first-and-catch","changefreq":"weekly","video":[{"title":"2011:E258 - First! & Catch!","description":"Ray and Michael go to an island paradise with zombies and pick up the \"First!\" and \"Catch!\" achievements in Dead Island. Enjoy your mai tai!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-first-and-catch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e068c6cc-c94c-4283-9a49-3b48955ff2b7/sm/ep3587.jpg","duration":134,"publication_date":"2011-09-12T20:17:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-good-soul-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E773 - Good Soul Achievement Guide","description":"Fragger and Ray are kind individuals and pick up the \"Good Soul\" achievement in Deus Ex: Human Revolution.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-good-soul-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56c7a551-4298-4ba7-8f3b-3f48647df626/sm/ep3586.jpg","duration":214,"publication_date":"2011-09-12T19:46:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-zookeeper-and-slaybells","changefreq":"weekly","video":[{"title":"2011:E257 - Zookeeper & Slaybells","description":"Michael and Ray play some Resistance 3 and grab the trophies \"Zookeeper\" and \"Slaybells.\" Christmas in the Summer!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-zookeeper-and-slaybells","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eed17f00-7246-4f82-94d7-abfcd73af9c9/sm/ep3584.jpg","duration":187,"publication_date":"2011-09-09T21:30:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-47","changefreq":"weekly","video":[{"title":"2011:E36 - Volume 51","description":"Jack and Geoff have another week's worth of delicious Fails for you. Remember, when stepping on a spinning blade, don't get your foot caught.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2482a292-2b72-4a59-9844-9d00fffc3009/sm/ep3583.jpg","duration":258,"publication_date":"2011-09-09T19:33:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-everybody-lies-ah-spoiled-meat-one-is-all-i-need","changefreq":"weekly","video":[{"title":"2011:E256 - Everybody Lies, Ah! Spoiled Meat! One is all I need","description":"Ray and Michael put on their leis and head back to Dead Island to grab the three achievements \"Everybody Lies\" \"Ah! Spoiled Meat!\" and \"One is all I need.\" All while drinking Mai Tais.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-everybody-lies-ah-spoiled-meat-one-is-all-i-need","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bceb65bb-3165-4c7d-8569-c696c7c6d5e9/sm/ep3579.jpg","duration":203,"publication_date":"2011-09-09T16:15:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-horny-devil-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E768 - Horny Devil Achievement Guide","description":"Jack and Geoff head back to Crimson Alliance and murder the evil Gashadokuro to pick up the \"Horny Devil\" achievement. Thank goodness for that!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-horny-devil-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a2006a1-fc8f-4cab-b860-d1943c9a4fe6/sm/ep3578.jpg","duration":163,"publication_date":"2011-09-08T22:25:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-of-ball-slalom","changefreq":"weekly","video":[{"title":"2011:E255 - Master of Ball Slalom","description":"Mike and Michael pick up the \"Master of Ball Slalom\" achievement in My Horse & Me 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-of-ball-slalom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8a627e3-2d27-44f1-b95b-c2f2ba6a16be/sm/ep3576.jpg","duration":132,"publication_date":"2011-09-08T21:55:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-49","changefreq":"weekly","video":[{"title":"2011:E35 - Resistance 3","description":"Michael does his best to play Resistance 3. Well, he tries to at least.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c401ac9b-d580-41cf-90b0-95c4bc73fb01/sm/ep3575.jpg","duration":223,"publication_date":"2011-09-08T19:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-saints-vs-packers","changefreq":"weekly","video":[{"title":"2011:E3 - Saints vs. Packers","description":"Geoff and Jack predict the winner to the Saints vs. Packers opening week game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-saints-vs-packers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7acc8fe1-0e8e-4b6b-96d7-9e3e420c2298/sm/ep3574.jpg","duration":437,"publication_date":"2011-09-08T19:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grenadier-access-denied-cheap-shots","changefreq":"weekly","video":[{"title":"2011:E254 - Grenadier, Access Denied, Cheap Shots","description":"Michael and Ray dive back in to Resistance 3 and pick up the trophies for \"Grenadier\" \"Access Denied\" and \"Cheap Shots.\" Woo, pretty trophies!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grenadier-access-denied-cheap-shots","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6720f95c-2981-445d-8ca4-3ed72250017a/sm/ep3573.jpg","duration":184,"publication_date":"2011-09-08T18:03:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-knock-knock-warranty-void-if-used-swing-them-sticks","changefreq":"weekly","video":[{"title":"2011:E253 - Knock, Knock, Warranty Void if Used, Swing Them Sticks","description":"Ray and Michael show you how to get the following three Achievements in Dead Island: Knock, Knock, Warranty Void if Used, and Swing Them Sticks.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-knock-knock-warranty-void-if-used-swing-them-sticks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":159,"publication_date":"2011-09-08T15:03:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-46","changefreq":"weekly","video":[{"title":"2011:E36 - Achievement HORSE #40","description":"Jack and Michael face off in a battle to the death. Who will survive this round of Achievement HORSE Maps are available at http://bit.ly/AHHORSE40","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f0694365-3803-48c4-bacd-44f1692fcab1/sm/ep3570.jpg","duration":539,"publication_date":"2011-09-08T02:22:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-feeling-lucky-punk-chamber-full-of-death-short-out","changefreq":"weekly","video":[{"title":"2011:E252 - Feeling Lucky, Punk, Chamber Full of Death, Short Out","description":"Michael and Ray take to the PS3 and grab the trophies \"Feeling Lucky, Punk\" \"Chamber Full of Death\" and \"Short Out\" in the brand spankin' new Resistance 3! Diversification!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-feeling-lucky-punk-chamber-full-of-death-short-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7596bb64-d93f-42e0-8630-0f3a6ecd1dfc/sm/ep3569.jpg","duration":170,"publication_date":"2011-09-07T23:21:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-flight-of-the-bumblebee-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E758 - Flight of the Bumblebee Achievement Guide","description":"How to fly 200 yards without touching the ground.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-flight-of-the-bumblebee-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":128,"publication_date":"2011-09-07T20:33:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dance-tinker-dance-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E756 - Dance Tinker, Dance Achievement Guide","description":"A very short guide on how to get the achievement Dance Tinker Dance!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dance-tinker-dance-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":35,"publication_date":"2011-09-07T20:18:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-champions-online-pc-vanquished-black-talon-achievement-g","changefreq":"weekly","video":[{"title":"2011:E753 - Champions Online (PC) - Vanquished Black Talon Achievement G","description":"This video shows you how to get the Vanquished Black Talon Achievement in Champions online (PC)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-champions-online-pc-vanquished-black-talon-achievement-g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":195,"publication_date":"2011-09-07T19:43:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-have-the-power","changefreq":"weekly","video":[{"title":"2011:E251 - I Have The Power","description":"Jack and Michael go back to Crimson Alliance and pick up the \"I Have The Power\" achievement. Do you have the power","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-have-the-power","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9f3c7d0-830f-4b12-9472-07c7f4d2d89f/sm/ep3553.jpg","duration":146,"publication_date":"2011-09-06T22:00:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-doctorate-part-2","changefreq":"weekly","video":[{"title":"2011:E250 - Doctorate (Part 2)","description":"Fragger and Ray are still looking around for hidden stuff in Deus Ex: Human Revolution, going for the \"Doctorate\" achievement. Will you help them look for their lost keys","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-doctorate-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66e45249-0895-4fc5-9fe1-50a0ae75ad99/sm/ep3551.jpg","duration":278,"publication_date":"2011-09-06T18:41:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-guardian-angel-the-fall-super-sleuth","changefreq":"weekly","video":[{"title":"2011:E249 - Guardian Angel, The Fall, Super Sleuth","description":"Fragger and Ray tag team Deus Ex: Human Revolution and pick up the side-quest achievements \"Guardian Angel\" \"The Fall\" and \"Super Sleuth.\" Elementary my dear Fragger!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-guardian-angel-the-fall-super-sleuth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09fad7e2-5b61-4c8c-8fbf-65c9460cbbbf/sm/ep3550.jpg","duration":253,"publication_date":"2011-09-06T17:53:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sploded-kick-it-and-you-are-all-mighty","changefreq":"weekly","video":[{"title":"2011:E248 - Sploded! Kick It! & You Are all-Mighty!","description":"Michael and Ray check out the new Miss 'Splosion Man DLC for Pinball FX 2 and grab the \"Sploded!\" \"Kick It!\" and \"You Are all-Mighty!\" achievements in the process!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sploded-kick-it-and-you-are-all-mighty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08c7ec95-d306-4f33-8280-1f7c7a85d280/sm/ep3549.jpg","duration":231,"publication_date":"2011-09-06T17:42:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-44","changefreq":"weekly","video":[{"title":"2011:E36 - Week #78","description":"Jack and Michael take you on a wondrous journey through the land of AHWU. Will they find the candy mountain full of this week's releases Will they stumble across Crimson Alliance, Resistance 3, Driver: San Franciso, Tiger Woods 12 and more Watch and find out!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":251,"publication_date":"2011-09-05T20:35:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-doctorate-part-1","changefreq":"weekly","video":[{"title":"2011:E247 - Doctorate (Part 1)","description":"Fragger and Jack start the long process of collecting all the collectibles in Deus Ex: Human Revolution. Join them!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-doctorate-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":304,"publication_date":"2011-09-05T19:25:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sentimental-value-and-the-take","changefreq":"weekly","video":[{"title":"2011:E246 - Sentimental Value & The Take","description":"Fragger and Jack wander the world of Deus Ex and pick up a couple of side quest achievements. They'll grab \"Sentimental Value\" and \"The Take.\" Be warned, there be spoilers ahead.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sentimental-value-and-the-take","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b238053-ea7a-4714-ac1d-b0c007e7c00c/sm/ep3545.jpg","duration":157,"publication_date":"2011-09-05T19:15:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-big-bang-theory-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E751 - Big Bang Theory Achievement Guide","description":"Jack and Michael head back in to Crimson Alliance and pick up the \"Big Bang Theory\" achievement. No Sheldon Cooper here!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-big-bang-theory-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e901e560-1922-4bfc-94cd-0d8ffe7606d1/sm/ep3543.jpg","duration":101,"publication_date":"2011-09-02T22:58:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-king-of-the-scarab-sputnik-skull-method-2","changefreq":"weekly","video":[{"title":"2011:E244 - Halo 2 - King of the Scarab (Sputnik skull method)","description":"aussie_nick shows us how to get the King of the Scarab achievement using the Sputnik skull and a rocket launcher","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-king-of-the-scarab-sputnik-skull-method-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6f58e7ec-f2ec-403e-a581-5c2487e1a9bb/sm/2013912-1451424289189-maxresdefault_(15).jpg","duration":207,"publication_date":"2011-09-02T21:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alice-madness-returns-calm-in-the-face-of-death-trophy","changefreq":"weekly","video":[{"title":"2011:E243 - Alice : Madness Returns \"Calm in the Face of Death\" Trophy","description":"\"Calm in the Face of Death\" Trophy/Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alice-madness-returns-calm-in-the-face-of-death-trophy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71ad8e05-a713-42dd-b045-a55a20ea12c0/sm/2013912-1451424262579-maxresdefault_(14).jpg","duration":39,"publication_date":"2011-09-02T21:03:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-robert-ford-multiboom-doom-the-professional","changefreq":"weekly","video":[{"title":"2011:E242 - Robert Ford, Multiboom-doom, The Professional","description":"Michael and Brownman start counting bodies in Bodycount and also grab the \"Robert Ford\" \"Multiboom-doom\" and \"The Professional\" achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-robert-ford-multiboom-doom-the-professional","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":141,"publication_date":"2011-09-02T20:09:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-leon-washington-tim-tebow-michael-vick-awards","changefreq":"weekly","video":[{"title":"2011:E241 - Leon Washington, Tim Tebow, Michael Vick Awards","description":"Brownman and Michael are back in Madden NFL 12 showing you some easy ways to pick up the Leon Washington Award, Tim Tebow Award and Michael Vick Award achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-leon-washington-tim-tebow-michael-vick-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":205,"publication_date":"2011-09-02T16:33:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-42","changefreq":"weekly","video":[{"title":"2011:E35 - Volume 50","description":"Jack and Geoff reach 50 weeks worth of weakness! Join them as they celebrate 50 weeks worth of failure in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":232,"publication_date":"2011-09-02T16:16:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pdtomb-desean-jackson-adrian-peterson","changefreq":"weekly","video":[{"title":"2011:E240 - PDTOMB, DeSean Jackson, Adrian Peterson","description":"Brownman and Michael head back to the gridiron in Madden NFL 12 and pick up the \"Put Da Team On My Back\" \"DeSean Jackson Award\" and \"Adrian Peterson Award\" achievements. Turducken.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pdtomb-desean-jackson-adrian-peterson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":190,"publication_date":"2011-09-02T15:48:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-45","changefreq":"weekly","video":[{"title":"2011:E34 - I Wanna Be The Guy","description":"Michael takes on a popular request, \"I Wanna Be The Guy.\" Will he become the guy Spoiler: NO.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e8695a1-cf8d-4fdf-a181-32df22ef2295/sm/ep3534.jpg","duration":280,"publication_date":"2011-09-02T00:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-achievement-hunter-predicts-oregon-vs-lsu","changefreq":"weekly","video":[{"title":"2011:E2 - Oregon vs. LSU","description":"Geoff and Jack run some scientific projections using NCAA Football 12 to determine the winner of the upcoming Oregon vs. LSU game.","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-achievement-hunter-predicts-oregon-vs-lsu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95462b1f-fe0a-415a-b312-608353f5e4dc/sm/ep3532.jpg","duration":244,"publication_date":"2011-09-01T16:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-41","changefreq":"weekly","video":[{"title":"2011:E35 - Halo: Reach - Achievement HORSE #39 (Halo Fest Special Edition!)","description":"This week's edition of HORSE is a bit different. The entire office jumped in and checked out the special HALO FEST edition of HORSE that was available in Seattle, WA. Our first ever 9 person episode checking out this incredible map. If you'd like to play the map, check it out at http://tinyurl.com/HaloFestHORSE","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/048311df-57d0-49a7-972d-2eae262ccf40/sm/ep3531.jpg","duration":330,"publication_date":"2011-08-31T23:31:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-up-close-and-personal-hot-potato-hitman","changefreq":"weekly","video":[{"title":"2011:E239 - Up Close and Personal, Hot potato, Hitman","description":"Michael and Brownman check out Bodycount and grab the three achievements \"Up Close and Personal\" \"Hot potato\" and \"Hitman.\" Suffer fools.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-up-close-and-personal-hot-potato-hitman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aa1e973-2480-4cdb-afc5-f2b3db0430e6/sm/ep3530.jpg","duration":180,"publication_date":"2011-08-31T17:18:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-one-giant-leap-ground-control-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E749 - One Giant Leap, Ground Control Achievement Guide","description":"Brownman and Michael show you how to get the Ground Control and One Giant Leap Achievements in the Call of Duty: Black Ops Rezurrection DLC map pack.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-one-giant-leap-ground-control-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e97f7314-dd0e-43ad-8d30-b95d779c75ec/sm/ep3529.jpg","duration":317,"publication_date":"2011-08-31T16:06:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fully-armed-and-operational-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E748 - Fully Armed and Operational Achievement Guide","description":"Brownman and Michael show you how to get the cleverly titled \"Fully Armed and Operational\" Achievement in the Rezurrection DLC for Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fully-armed-and-operational-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6c056bd-64fd-4491-821a-8c344e60cac1/sm/ep3527.jpg","duration":135,"publication_date":"2011-08-30T18:06:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-im-not-afraid-of-watcher-3-and-4","changefreq":"weekly","video":[{"title":"2011:E238 - I'm Not Afraid of Watcher 3 & 4","description":"Michael and Brownman ascend towards the Metatron and grab the \"I'm Not Afraid of Watcher\" 3 and 4 achievements. Who watches the Watcher","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-im-not-afraid-of-watcher-3-and-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2debfece-5d91-4f25-8e73-360598d55a5d/sm/ep3526.jpg","duration":322,"publication_date":"2011-08-30T16:31:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-40","changefreq":"weekly","video":[{"title":"2011:E35 - Week #77","description":"Jack and Geoff deliver the goods in this week's brand new AHWU. Join them as they run through the list of games that'll be hitting this week. Finally! More games!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3be511a2-ba39-41da-998e-dd2f86f5af3f/sm/ep3524.jpg","duration":288,"publication_date":"2011-08-29T21:13:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-unforeseen-consequence-the-desk-job","changefreq":"weekly","video":[{"title":"2011:E237 - Unforeseen Consequence, The Desk Job","description":"Fragger and Jack show you how to get the Unforeseen Consequence, and The Desk Job Achievements in Deus Ex: Human Revolution for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-unforeseen-consequence-the-desk-job","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70f60979-4a70-40c8-8f8d-79bb7e0a5c32/sm/ep3523.jpg","duration":105,"publication_date":"2011-08-29T15:52:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-38","changefreq":"weekly","video":[{"title":"2011:E34 - Volume 49","description":"Jack and Geoff bring another batch of some awesome fails for you in this week's Fails of the Weak. Enjoy with a friend. Serving size: 10oz.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":255,"publication_date":"2011-08-27T01:14:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-42","changefreq":"weekly","video":[{"title":"2011:E33 - Rezurrection","description":"Michael flies himself to the Moon and takes on some zombies in another light-hearted family-friendly episode of Rage Quit. Call of Duty: Black Ops will never be the same after this Rezurrection DLC.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2788a13-e118-47b8-b7d0-471b4ce151cf/sm/ep3520.jpg","duration":257,"publication_date":"2011-08-25T19:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-big-bang-theory","changefreq":"weekly","video":[{"title":"2011:E236 - Big Bang Theory","description":"Brownman and Michael work their way through the multi-step achievement \"Big Bang Theory\" in the Rezurrection DLC for Call of Duty: Black Ops. Hold on to your butts, this is going to be a long one.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-big-bang-theory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62761377-230b-4bc4-978c-304312ea03d4/sm/ep3519.jpg","duration":797,"publication_date":"2011-08-25T13:45:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-perks-in-spaaaaaace","changefreq":"weekly","video":[{"title":"2011:E235 - Perks in Spaaaaaace!","description":"Brownman and Michael guzzle down some perks in Call of Duty: Black Ops' new Rezurrection DLC. Keep drinking!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-perks-in-spaaaaaace","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e7d06cc-3a2b-4b28-b7c5-d695a6e8ebf8/sm/ep3518.jpg","duration":313,"publication_date":"2011-08-24T22:05:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-37","changefreq":"weekly","video":[{"title":"2011:E34 - Achievement HORSE #38","description":"Jack and Geoff are back and better than ever in this week's HORSE. Who will win in this final battle for supreme supremacy All maps are available at http://tinyurl.com/AHHORSE38","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/27987409-eb73-42c0-91f5-dc66b7d35052/sm/ep3517.jpg","duration":507,"publication_date":"2011-08-24T18:50:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-one-small-hack-for-a-man","changefreq":"weekly","video":[{"title":"2011:E234 - One Small Hack for a Man","description":"Brownman and Michael take a giant leap for achievement-kind and grab the \"One Small Hack for a Man\" achievement in the new Rezurrection DLC for Call of Duty: Black Ops. HACK THE PLANET.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-one-small-hack-for-a-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":105,"publication_date":"2011-08-24T16:38:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-53","changefreq":"weekly","video":[{"title":"2011:E32 - Hidden Song Easter Egg (Moon)","description":"Brownman and Michael take you to another world and track down the hidden music track in the new Rezurrection DLC for Call of Duty: Black Ops. Wander with them on MOON and find it yourself.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-53","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e2fd03e-11af-4daa-84f8-7d27e5907289/sm/ep3513.jpg","duration":156,"publication_date":"2011-08-23T18:26:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-counterstrike-artist-time-in-the-spotlight","changefreq":"weekly","video":[{"title":"2011:E232 - Counterstrike Artist, Time in the Spotlight","description":"Michael and Brownman put their dancing shoes on and pick up the \"Counterstrike Artist\" and \"Time in the Spotlight\" achievements in El Shaddai: Ascension of the Metatron. Protect your fourth wall!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-counterstrike-artist-time-in-the-spotlight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":166,"publication_date":"2011-08-22T22:07:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectibles-guide-part-7","changefreq":"weekly","video":[{"title":"2011:E746 - Collectibles Guide Part 7","description":"TonySki and Brownman show where to find the hidden collectibles in level seven of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectibles-guide-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":282,"publication_date":"2011-08-22T20:30:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-38","changefreq":"weekly","video":[{"title":"2011:E32 - Behind the Rage","description":"The cameras roll as Rage Quit records a new video.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":42,"publication_date":"2011-08-19T23:31:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-35","changefreq":"weekly","video":[{"title":"2011:E33 - Volume 48","description":"Jack and Geoff tackle another fantastic week of failure! Watch out for the flying fails!!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ee8e4dd-ca09-4eb4-b95e-9834b55b7012/sm/ep3503.jpg","duration":255,"publication_date":"2011-08-19T19:26:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-of-labyrinth","changefreq":"weekly","video":[{"title":"2011:E231 - Master of Labyrinth","description":"Mike and Michael get pony-licious again in My Horse & Me 2 and grab the \"Master of Labyrinth\" achievement. Yup.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-of-labyrinth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3cb269c-11dd-42ae-a12e-4b28c9fe401e/sm/ep3502.jpg","duration":226,"publication_date":"2011-08-19T15:25:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-36","changefreq":"weekly","video":[{"title":"2011:E31 - Catherine","description":"Michael takes a big step in his growing process as he tackles Catherine. Will he fall in love (Spoiler: No.)","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":219,"publication_date":"2011-08-18T20:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-relic-bearer-part-2","changefreq":"weekly","video":[{"title":"2011:E230 - Relic Bearer (Part 2)","description":"Brownman and Michael finish off Warhammer 40,000: Kill Team's hidden items in this second part of the Relic Bearer guide. You know!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-relic-bearer-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3103704b-df8e-44dd-84cb-dcfa618b4412/sm/ep3499.jpg","duration":294,"publication_date":"2011-08-18T18:06:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-34","changefreq":"weekly","video":[{"title":"2011:E33 - Achievement HORSE #37","description":"In today's special episode of HORSE we were honored that Make-a-Wish introduced us to our new pal Ian who we paired up in a match of PIG versus our very own Michael. Who will win FIND OUT NOW! All maps are available at http://tinyurl.com/achhorse37","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0313e84-4a17-420b-8bb5-e8c380b1d07c/sm/ep3498.jpg","duration":338,"publication_date":"2011-08-18T00:18:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-relic-bearer-part-1","changefreq":"weekly","video":[{"title":"2011:E228 - Relic Bearer (Part 1)","description":"Brownman and Michael take you through the first three levels of Warhammer 40,000: Kill Team and grab the Collec-tables. Join them, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-relic-bearer-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb41bec1-8b6d-4f3c-958b-e20a8e0f07a9/sm/ep3494.jpg","duration":494,"publication_date":"2011-08-16T18:42:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-33","changefreq":"weekly","video":[{"title":"2011:E33 - Week #75","description":"Jack, Michael and Joel bring you a delicious batch of gaming news, information and more. Who will survive in this week's AHWU","player_loc":"https://roosterteeth.com/embed/ahwu-2011-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd2777a9-fdae-4bb5-aed0-615ebadb21ae/sm/ep3492.jpg","duration":261,"publication_date":"2011-08-15T23:31:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-close-call-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E742 - Close call! Achievement Guide","description":"Michael and Jack show you how to throw your body off a cliff in Spider-Man Shattered Dimensions and grab an achievement \"Close call!\" in the process.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-close-call-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a84767c3-7b07-4cfc-b94d-8c138e576617/sm/ep3491.jpg","duration":57,"publication_date":"2011-08-15T22:21:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-of-break-in-the-bull","changefreq":"weekly","video":[{"title":"2011:E227 - Master of Break in the Bull","description":"Michael and Mike are once again heading in to My Horse & Me 2 to grab the \"Master of Break in the Bull\" achievement. Wow.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-of-break-in-the-bull","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1daf6a5-5e22-4a6c-888f-a65485f00da2/sm/ep3490.jpg","duration":134,"publication_date":"2011-08-15T20:59:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-your-craft-chapter-brother-bloodbath","changefreq":"weekly","video":[{"title":"2011:E226 - Master Your Craft, Chapter Brother, Bloodbath","description":"Brownman and Michael join forces in Warhammer 40,000 Kill Team and pick up the three achievements \"Master Your Craft\" \"Chapter Brother\" and \"Bloodbath.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-your-craft-chapter-brother-bloodbath","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8670bdc6-c99c-4224-aa9d-fc0185e1b5c6/sm/ep3489.jpg","duration":169,"publication_date":"2011-08-15T15:56:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-31","changefreq":"weekly","video":[{"title":"2011:E32 - Volume 47","description":"Jack and Joel take another delicious bite of the Fail Pie in this week's Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba1cf19d-0f3b-48b9-aaa5-c8b825587f47/sm/ep3488.jpg","duration":254,"publication_date":"2011-08-12T20:49:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-little-bighorn-been-there-done-that-high-noon","changefreq":"weekly","video":[{"title":"2011:E225 - Little Bighorn, Been there, done that, High Noon","description":"Brownman and Michael polish off Call of Juarez: The Cartel by grabbing the achievements \"Little Bighorn\" \"Been there, done that\" and \"High Noon.\" Stay gold Ponyboy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-little-bighorn-been-there-done-that-high-noon","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8ec425ee-4666-45e6-a239-ee37c9bebd67/sm/ep3487.jpg","duration":262,"publication_date":"2011-08-12T19:01:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tomb-raider-protect-and-serve-achievement-guides","changefreq":"weekly","video":[{"title":"2011:E741 - Tomb Raider, Protect and serve Achievement Guides","description":"Michael and Brownman can't get enough of Call of Juarez: The Cartel. This time they go grave digging to grab the Tomb Raider and Protect and serve achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tomb-raider-protect-and-serve-achievement-guides","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc7ddc0c-b696-4e4c-bfdb-7c1c750ad2a3/sm/ep3485.jpg","duration":194,"publication_date":"2011-08-09T23:20:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-raining-bullets-ladder-goat-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E740 - Raining Bullets, Ladder Goat Achievement Guide","description":"Brownman and Michael keep working their way through Call of Juarez, this time picking up the \"Raining Bullets\" and \"Ladder Goat\" achievements. Dios Mio!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-raining-bullets-ladder-goat-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f315c349-91f6-4e1f-8f06-2d14ef0af916/sm/ep3484.jpg","duration":178,"publication_date":"2011-08-09T23:19:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-29","changefreq":"weekly","video":[{"title":"2011:E32 - Achievement HORSE #36","description":"In a special edition of HORSE, Kara (the Rooster Teeth receptionist) and Kathleen (the talented voice of Tex from Red vs. Blue) face off in an epic battle to end all epicness. Will they be able to overcome incredibly difficult obstacles on their journey FIND OUT NOW!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/febf866b-ba63-4dce-a36b-0a03f617eff6/sm/ep3483.jpg","duration":474,"publication_date":"2011-08-09T23:18:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-30","changefreq":"weekly","video":[{"title":"2011:E30 - Brave, A Warrior's Tale","description":"Michael does his best impression of Gollum in this week's edition of Rage Quit. Watch him face his worst enemy, laval, in Brave, A Warrior's Tale.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e0309c2-350b-446e-acaa-9954f82af349/sm/ep3482.jpg","duration":164,"publication_date":"2011-08-09T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-local-and-national-competitions-unlocked","changefreq":"weekly","video":[{"title":"2011:E224 - Local & National Competitions Unlocked","description":"Mike and Michael from Achievement Hunter show you how to grab the \"National Competitions Unlocked\" and \"Local Competitions Unlocked\" achievements in the fantastic game, My Horse & Me 2. Wow.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-local-and-national-competitions-unlocked","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7b8856e-e5fa-4cf5-9fe0-6bfc24862f59/sm/ep3481.jpg","duration":262,"publication_date":"2011-08-09T22:32:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-slomo-peeper-and-bullet-dodger","changefreq":"weekly","video":[{"title":"2011:E223 - SloMo, Peeper & Bullet dodger","description":"Brownman and Michael are back in Call of Juarez: The Cartel picking up untold amount of riches and achievements. This time they go after SloMo, Peeper and Bullet dodger. Brace yourselves for sexy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-slomo-peeper-and-bullet-dodger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":298,"publication_date":"2011-08-09T19:10:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-freddy-krueger-fatalities","changefreq":"weekly","video":[{"title":"2011:E222 - Freddy Krueger Fatalities","description":"Jack and Gus check out the freshest and prettiest face in Mortal Kombat, Freddy Krueger! This new DLC character is full of fun and joy for all! Why don't you watch as they walk you through his fatalities and more!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-freddy-krueger-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3f510e4-f07f-4204-9ebb-873c1f12ec2b/sm/ep3479.jpg","duration":107,"publication_date":"2011-08-09T16:50:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectibles-guide-part-6","changefreq":"weekly","video":[{"title":"2011:E739 - Collectibles Guide Part 6","description":"TonySki and Brownman show where to find the hidden collectibles in level six of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectibles-guide-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":281,"publication_date":"2011-08-09T15:55:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-29","changefreq":"weekly","video":[{"title":"2011:E32 - Week #74","description":"Jack and Joel attempt to take you through a very very slow week in AHWU. With only one XBLA title hitting, this may be the slowest week ever. Also, don't forget the Freddy Krueger DLC hitting on Tuesday for Mortal Kombat!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bd5359f-02bb-4ec5-b6e8-c85fbe6b0fa8/sm/ep3476.jpg","duration":261,"publication_date":"2011-08-08T21:46:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-berserker-and-did-you-see-that","changefreq":"weekly","video":[{"title":"2011:E220 - Berserker & Did you see that?","description":"Brownman and Michael tag team it up in Call of Juarez: The Cartel and grab two achievements, \"Berserker\" and \"Did you see that\"\r\n\r\nStay tuned as they show you a special trick at the end of the video!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-berserker-and-did-you-see-that","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d87674e-412b-4c16-a999-58cb46750b85/sm/ep3474.jpg","duration":228,"publication_date":"2011-08-08T15:19:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-29","changefreq":"weekly","video":[{"title":"2011:E31 - Volume 46","description":"Jack and Joel take a look at some of the funniest Halo: Reach clips in this week's brand new Fails of the Weak! It's your weekly dose of duh!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6486d61f-a0eb-4467-8a54-7be236259238/sm/ep3471.jpg","duration":278,"publication_date":"2011-08-05T19:01:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-agents-of-change-achievements","changefreq":"weekly","video":[{"title":"2011:E738 - Agents of Change Achievements","description":"Brownman and Michael climb into the window of the new Brink DLC \"Agents of Change\" and pick up the \"A burning Thing\" \"Remote Control\" \"Pyromancer\" and \"Mutual Support\" achievements. Scandalous!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-agents-of-change-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":326,"publication_date":"2011-08-05T18:57:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-28","changefreq":"weekly","video":[{"title":"2011:E29 - Perfect Dark","description":"Michael heads in to the world of Perfect Dark and hunts some AI. Or maybe it is the other way around.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f828284d-4fab-4c2b-b712-2f94cca1d161/sm/ep3468.jpg","duration":256,"publication_date":"2011-08-04T15:56:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-27","changefreq":"weekly","video":[{"title":"2011:E31 - Achievement HORSE #35","description":"Jack defends his non-Geoff crown and takes on Dragonface this week in another riveting game of HORSE (or PIG). Who will win","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/558b4b97-08ad-46f7-ac3e-274e27163f55/sm/ep3467.jpg","duration":326,"publication_date":"2011-08-03T22:08:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-28","changefreq":"weekly","video":[{"title":"2011:E25 - Speed Halo","description":"Geoff and Jack take a custom gametype in Halo: Reach called \"Speed Halo\" for a spin. You can get the map and gametype here: http://www.tinyurl.com/speedhalo","player_loc":"https://roosterteeth.com/embed/this-is-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9624a41d-0dd8-48b7-87ee-12b0e58024eb/sm/ep3466.jpg","duration":176,"publication_date":"2011-08-02T17:11:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-26","changefreq":"weekly","video":[{"title":"2011:E31 - Week #73","description":"Jack and Geoff bring you the freshest game news in this week's AHWU. Join them as they talk about upcoming gaming events, new DLC, XBLA titles, Minecraft, iam8bit and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4843d1a0-629d-42ed-8b6f-70d464f82070/sm/ep3464.jpg","duration":334,"publication_date":"2011-08-01T21:16:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-46","changefreq":"weekly","video":[{"title":"2011:E31 - Old World Blues - Wild Wasteland Easter Eggs!","description":"TonySki and Geoff show you a myriad of Easter Eggs in the new Fallout New Vegas DLC, Old World Blues. In this one short video, you'll see nods to Dr. Who, Snow White, Gremlins, Venture Brothers, and more!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dce7aa33-4041-48ea-96bd-8031c9a91089/sm/ep3463.jpg","duration":262,"publication_date":"2011-08-01T14:21:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-24","changefreq":"weekly","video":[{"title":"2011:E30 - Volume 45","description":"Jack and Geoff fill their bellies full of delicious fails and then regurgitate them up for you in this pretty package. Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":277,"publication_date":"2011-07-29T15:30:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-23","changefreq":"weekly","video":[{"title":"2011:E28 - X-Men Origins: Wolverine","description":"In this week's Rage Quit, Michael takes on Deadpool in the infamous final fight in X-Men Origins: Wolverine.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3cbb81c-6c5d-4bb9-b5e0-946756166909/sm/ep3459.jpg","duration":250,"publication_date":"2011-07-28T18:27:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-5","changefreq":"weekly","video":[{"title":"2011:E737 - Collectible Guide Part 5","description":"TonySki and Brownman show where to find the hidden collectibles in level five of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/719bb0e4-f21d-4171-b1ff-92e5d77e7c39/sm/ep3458.jpg","duration":292,"publication_date":"2011-07-28T14:12:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-22","changefreq":"weekly","video":[{"title":"2011:E30 - Achievement HORSE #34","description":"Jack and Geoff continue their heated rivalry in another legendary bout of Achievement HORSE! All maps are available at http://tinyurl.com/achhorse034","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e2ee818-7330-4f56-a155-d977ac76b164/sm/ep3457.jpg","duration":558,"publication_date":"2011-07-27T23:45:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-23","changefreq":"weekly","video":[{"title":"2011:E30 - Week #72","description":"Jack and Geoff tackle some important issues in this week's AHWU. Namely, what kind of cake (or pie) to eat during our Three Year Anniversary on Thursday. While they fight about it, why don't you come and join us in a community playdate! We're checking out different games every day this week.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f844410-dbbc-491a-80cc-db65ae4c749f/sm/ep3453.jpg","duration":345,"publication_date":"2011-07-25T21:40:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-6-achievements-in-alice","changefreq":"weekly","video":[{"title":"2011:E736 - 6 Achievements in Alice","description":"DanielDoss shows us how to get 6 achievements/trophies in Alice: Madness Returns.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-6-achievements-in-alice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":121,"publication_date":"2011-07-25T18:39:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-orbit-double-frontflip-double-backflip","changefreq":"weekly","video":[{"title":"2011:E217 - Orbit, Double Frontflip, Double Backflip","description":"TonySki and Brownman show you how to get the Orbit, Double Frontflip, and Double Backflip Achievements in Ski Doo Challenge for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-orbit-double-frontflip-double-backflip","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":115,"publication_date":"2011-07-25T14:52:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-there-goes-the-neighborhood-guide","changefreq":"weekly","video":[{"title":"2011:E735 - There Goes the Neighborhood Guide","description":"Brownman and Michael show you how to get the \"There Goes the Neighborhood\" Achievement in Captain America: Super Soldier for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-there-goes-the-neighborhood-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01331893-2d74-49c7-af1b-7b5010327b04/sm/ep3449.jpg","duration":400,"publication_date":"2011-07-22T18:00:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-21","changefreq":"weekly","video":[{"title":"2011:E29 - Volume 44","description":"Jack and Geoff gather up another pile of fail and deliver it to you in a fancy video format. Enjoy the chaos that is Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f0be10a-117f-4fe5-9998-9ead49781949/sm/ep3448.jpg","duration":236,"publication_date":"2011-07-22T17:02:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-41","changefreq":"weekly","video":[{"title":"2011:E30 - Dog Poker Easter Egg","description":"Gus and Geoff take a look at a pretty funny Easter Egg in the new DLC \"Old World Blues\" for Fallout New Vegas. Don't bluff!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":132,"publication_date":"2011-07-21T22:01:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-19","changefreq":"weekly","video":[{"title":"2011:E27 - Ms. 'Splosion Man","description":"If you've ever wondered if it's possible for LtMkilla to yell himself to death, this video might answer some questions, as he attempts Ms. 'Splosion Man.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa947802-b346-46fd-b5c3-353bdf22e2d9/sm/ep3446.jpg","duration":303,"publication_date":"2011-07-21T19:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-8","changefreq":"weekly","video":[{"title":"2011:E734 - Three Achievements","description":"Brownman and Geoff show you how to get the following three Achievements in Captain America: Super Soldier for the Xbox 360: Grace Under Pressure, And They All Fall Down, and Friendly Fire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/399e61ad-c004-4975-8d43-b05cc3619040/sm/ep3445.jpg","duration":182,"publication_date":"2011-07-21T14:11:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-19","changefreq":"weekly","video":[{"title":"2011:E29 - Achievement HORSE #33","description":"Jack and Geoff go head to head again in yet another week's worth of HORSE action! Who else loves HORSE action All maps are available right here: http://tinyurl.com/AHHORSE33","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ae3c244-6392-4a6a-a656-9eed75b4e03e/sm/ep3444.jpg","duration":484,"publication_date":"2011-07-20T20:30:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rain-fatalities","changefreq":"weekly","video":[{"title":"2011:E216 - Rain Fatalities","description":"Jack and Geoff head back to the Outworld and check out the brand new character Rain. Watch as he makes everyone some delicious Italian sodas.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rain-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23512f03-dd19-4ba6-84bd-9340d56dead1/sm/ep3441.jpg","duration":101,"publication_date":"2011-07-19T16:16:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-complete-collection-guide-part-three","changefreq":"weekly","video":[{"title":"2011:E732 - Complete Collection Guide (Part three)","description":"Geoff and Jack show you where to find all of the hidden collectibles in Harry Potter and the Deathly Hallows Part Two for the Xbox 360. Finding them all will get you the Complete Collection Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-complete-collection-guide-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/642e0abf-fb06-45a1-ad13-a0dfbf2fbfa0/sm/ep3440.jpg","duration":162,"publication_date":"2011-07-19T15:24:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-18","changefreq":"weekly","video":[{"title":"2011:E29 - Week #71","description":"Jack and Geoff deliver a fresh pile of gaming news and releases as well as announce the next Game Fails contest! This week we are looking for the best Left 4 Dead (1 or 2) fail to celebrate the new DLC! Submit your fail to http://tinyurl.com/gamefails and the best fail will receive 1600 MS points. (USA only!)","player_loc":"https://roosterteeth.com/embed/ahwu-2011-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/514b5451-f6da-4979-97e1-b65c24c69323/sm/ep3436.jpg","duration":303,"publication_date":"2011-07-18T21:09:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-4","changefreq":"weekly","video":[{"title":"2011:E731 - Collectible Guide Part 4","description":"TonySki and Brownman show where to find the hidden collectibles in level four of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd652ac5-db4b-4cf3-b58e-321cad44369b/sm/ep3435.jpg","duration":311,"publication_date":"2011-07-18T20:43:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-complete-collection-guide-part-two","changefreq":"weekly","video":[{"title":"2011:E730 - Complete Collection Guide (Part two)","description":"Geoff and Jack show you where to find all of the hidden collectibles in Harry Potter and the Deathly Hallows Part Two for the Xbox 360. Finding them all will get you the Complete Collection Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-complete-collection-guide-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e2c58f9-451b-4d29-9160-41782ae7cb2d/sm/ep3434.jpg","duration":238,"publication_date":"2011-07-18T18:50:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-yo-adrian-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E729 - Yo, Adrian! Achievement guide","description":"Geoff and Jack show you how to get the Yo, Adrian! Achievement in Fear 3 for the Xbox 360 and PS3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-yo-adrian-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99822904-f3da-4e94-a2ff-352c3ff85b31/sm/ep3433.jpg","duration":61,"publication_date":"2011-07-18T15:47:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-care-of-the-castle","changefreq":"weekly","video":[{"title":"2011:E213 - Care of the Castle","description":"Jack and Geoff hit up Harry Potter & The Deathly Hallows Part 2 and grab the achievement \"Care of the Castle.\" Poor Filch!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-care-of-the-castle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a41a48bc-e8de-45d9-afbc-729ed054b1f8/sm/ep3431.jpg","duration":99,"publication_date":"2011-07-15T20:11:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-complete-collection-guide-part-one","changefreq":"weekly","video":[{"title":"2011:E728 - Complete Collection Guide (Part one)","description":"Geoff and Jack show you where to find all of the hidden collectibles in Harry Potter and the Deathly Hallows Part Two for the Xbox 360. Finding them all will get you the Complete Collection Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-complete-collection-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecaff2a8-05a5-4680-951a-f38fb35fb7bd/sm/ep3430.jpg","duration":231,"publication_date":"2011-07-15T19:28:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-16","changefreq":"weekly","video":[{"title":"2011:E28 - Volume 43","description":"Jack and Geoff have another batch of delicious fails for you to enjoy! Don't forget to check out our newest channel Game Fails at http://youtube.com/gamefails","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/686e16a6-2ad2-49f3-9cf5-70b16f4f9e03/sm/ep3429.jpg","duration":303,"publication_date":"2011-07-15T18:39:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-15","changefreq":"weekly","video":[{"title":"2011:E26 - Duke Nukem Forever","description":"Michael takes on the mini games in Duke Nukem Forever. Forget saving the Earth from an alien invasion, we've got Air Hockey and Pinball to play!","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6141a0c0-235d-4624-a2e4-80dc7ba6370f/sm/ep3427.jpg","duration":216,"publication_date":"2011-07-14T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-16","changefreq":"weekly","video":[{"title":"2011:E28 - Achievement HORSE #32","description":"Jack and Geoff take another stab at each other in this week's HORSE! Watch and enjoy as they throw controllers and swear words at each other. All maps are available at http://tinyurl.com/ACHHORSE32","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9281f060-41e7-4e4d-a6ce-bea455dc4d01/sm/ep3425.jpg","duration":326,"publication_date":"2011-07-13T22:03:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-reefer-madness-dlc-achievements","changefreq":"weekly","video":[{"title":"2011:E727 - Reefer Madness DLC Achievements","description":"SPOILER ALERT: Geoff and Jack show you how to get the five Achievements in the Reefer Madness DLC for L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-reefer-madness-dlc-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a537a215-8ac2-48a7-8c76-1976cfcea391/sm/ep3421.jpg","duration":350,"publication_date":"2011-07-12T19:47:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-17","changefreq":"weekly","video":[{"title":"2011:E28 - Week #70","description":"Jack and Geoff are back after vacation with a fresh new AHWU. Today's AHWU brings forth news on upcoming games like NCAA Football 12, Harry Potter and the Deathly Hallows Part 2 and much more! Also, stay tuned to the very end for an announcement about our new Game Fails channel (http://www.youtube.com/gamefails) and how you can win 1600 MS points!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":295,"publication_date":"2011-07-11T21:52:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-time-travel-will-tell-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E726 - Time Travel Will Tell Achievement Guide","description":"Brownman and Geoff show you how to get the incredibly complicated \"Time Travel Will Tell\" Achievement in the Call of Duty: Black Ops DLC Annihilation Map Pack's Shangri-la Zombie map.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-time-travel-will-tell-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c40bf3a-9285-49d0-8da9-b140930dd5cf/sm/ep3418.jpg","duration":685,"publication_date":"2011-07-11T19:26:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-footy-foul-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E725 - Footy Foul Achievement Guide","description":"Geoff and Jack show you how to get the Footy Foul Achievement in Fear 3 for the Xbox 360 and PS3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-footy-foul-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15365a12-df07-4e61-b908-2a8f9142be38/sm/ep3416.jpg","duration":69,"publication_date":"2011-07-11T14:00:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-fails","changefreq":"weekly","video":[{"title":"2011:E209 - Game Fails","description":"Jack and Geoff kick off a brand spanking new channel over here on YouTube, Game Fails! That's right, right now go and subscribe to the newest Achievement Hunter \"thing.\" Go to http://youtube.com/gamefails/ and watch every clip ever! You can submit your own clips at http://tinyurl.com/gamefails Go ahead! Do it! You will!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-fails","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b47b056-98fc-460a-a88a-d4c4565bb802/sm/ep3415.jpg","duration":215,"publication_date":"2011-07-08T22:35:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-15","changefreq":"weekly","video":[{"title":"2011:E27 - Volume 42","description":"Jack and Geoff are back with yet another week's worth of hilarious fails from the world of Halo: Reach. Join them in laughing at all of the screw-ups. Also, stay tuned to the very end for a super special announcement!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/308f3df8-f17b-4725-aa6e-0cab4a8bcbbf/sm/ep3414.jpg","duration":390,"publication_date":"2011-07-08T19:50:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kenshi-fatalities","changefreq":"weekly","video":[{"title":"2011:E208 - Kenshi Fatalities","description":"Kenshi, the newest DLC character for Mortal Kombat has a bunch of fatalities, so we're going to show you them. WATCH.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kenshi-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d7ab5fe-6182-45e6-b332-934902d7b264/sm/ep3410.jpg","duration":107,"publication_date":"2011-07-07T19:01:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-13","changefreq":"weekly","video":[{"title":"2011:E25 - Rainbow Runner","description":"This week, Michael takes on the indie darling \"Rainbow Runner.\"","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a4368a03-a30a-41c3-880f-a6c222e37059/sm/ep3409.jpg","duration":159,"publication_date":"2011-07-07T14:31:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-companion-barrel-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E723 - Companion Barrel Achievement Guide","description":"Geoff and Jack show you where and how to get the Companion Barrel Achievement in Duke Nukem Forever.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-companion-barrel-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d2dbf2e-ba8a-436d-bcdf-fa879d6ce932/sm/ep3408.jpg","duration":111,"publication_date":"2011-07-07T13:45:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-30","changefreq":"weekly","video":[{"title":"2011:E28 - Strip Club Easter Eggs","description":"Geoff and Jack show you where to find a few easter eggs Duke Nukem Forever's strip club.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b154c909-de8c-4744-baf2-f914a6596226/sm/ep3407.jpg","duration":72,"publication_date":"2011-07-06T19:46:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-13","changefreq":"weekly","video":[{"title":"2011:E27 - Achievement HORSE #31","description":"Jack is away so Burnie jumps in and faces off against Geoff in a riveting game of Achievement PIG! All maps are available at http://tinyurl.com/AHHORSE031","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/134baf19-8792-4761-9e4f-47405bf6416a/sm/ep3406.jpg","duration":471,"publication_date":"2011-07-05T21:48:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-doll-collector-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E722 - Doll Collector Achievement Guide","description":"Geoff and Jack show you where to find the eight hidden Alma dolls in Fear 3, to get the Doll Collector Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-doll-collector-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5aa36212-e5cf-4e45-add5-d97b6c08be07/sm/ep3405.jpg","duration":175,"publication_date":"2011-07-05T21:37:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-assistance-is-futile-crash-proof","changefreq":"weekly","video":[{"title":"2011:E206 - Assistance is Futile, Crash Proof","description":"TonySki and Geoff show you how to get the Assistance is Futile and Crash Proof Achievements in Dirt 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-assistance-is-futile-crash-proof","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71f07cb0-02cd-4487-b43d-582b05a0088f/sm/ep3403.jpg","duration":191,"publication_date":"2011-07-05T14:50:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pescaphobe-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E721 - Pescaphobe Achievement Guide","description":"Geoff and Jack show you how to get the Pescaphobe Achievement in Duke Nukem Forever.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pescaphobe-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/138ff51a-cfd3-484e-a898-5e1dee311496/sm/ep3402.jpg","duration":183,"publication_date":"2011-07-05T14:04:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-13","changefreq":"weekly","video":[{"title":"2011:E26 - Volume 41","description":"Jack and Geoff present the 41st episode of Fails of the Weak.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb4801a6-6d00-40fb-b1ad-49781628154a/sm/ep3399.jpg","duration":254,"publication_date":"2011-07-01T19:05:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-small-consolation-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E720 - Small Consolation Achievement Guide","description":"Brownm and and Geoff show you how to get the Small Consolation Achievement on the Shangri-la zombie map in the Annihilation DLC pack for Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-small-consolation-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ad53a8e3-b9e5-4908-af9c-2a9ea93856ab/sm/ep3398.jpg","duration":99,"publication_date":"2011-07-01T15:24:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-11","changefreq":"weekly","video":[{"title":"2011:E24 - God of War 3","description":"In this week's Rage Quit, Michael enters uncharted (no pun intended) territory with God of War 3 and the PS3.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12eac606-7d83-42cf-9b3a-97d40ac7bba6/sm/ep3395.jpg","duration":251,"publication_date":"2011-06-30T21:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shangri-la-achievements","changefreq":"weekly","video":[{"title":"2011:E719 - Shangri-la Achievements","description":"Brownman and Geoff get the following three Achievements in the Call of Duty Annihilation DLC map, Shangri-la: Zomb Disposal, Monkey See, Monkey Don't, and Blinded by the Fright.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shangri-la-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/baf07120-e6e4-41dc-931d-158b5b803aea/sm/ep3394.jpg","duration":159,"publication_date":"2011-06-30T18:32:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spore-fear-of-flying-rolling-thunder-missionary-and-spic","changefreq":"weekly","video":[{"title":"2011:E204 - Spore - Fear of Flying, Rolling Thunder, Missionary and Spic","description":"Guide for Civilization Stage, collecting Fear of Flying, Rolling Thunder, Missionary, and Spice Hoarder all in a nearly perfect play through.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spore-fear-of-flying-rolling-thunder-missionary-and-spic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0b744d8-3f30-4a2c-86c5-898162471ac4/sm/2013912-1451424240951-maxresdefault_(13).jpg","duration":856,"publication_date":"2011-06-30T03:47:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nobody-likes-a-whiner","changefreq":"weekly","video":[{"title":"2011:E203 - Nobody Likes a Whiner","description":"Geoff and Jack show you where to check out the \"Christian Bale\" Easter Egg, and the \"Nobody Likes a Whiner\" Achievement in Duke Nukem Forever.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nobody-likes-a-whiner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6003a439-55d7-49dc-9350-1362291d69a7/sm/ep3391.jpg","duration":89,"publication_date":"2011-06-29T15:21:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-10","changefreq":"weekly","video":[{"title":"2011:E26 - Achievement HORSE #30","description":"Jack and Geoff are still torturing themselves with HORSE. Check it out and watch their pain. All maps are available at http://tinyurl.com/AHHORSE030","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2df8dac-62a2-412f-adf0-4be90eee5038/sm/ep3390.jpg","duration":525,"publication_date":"2011-06-29T14:53:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-21","changefreq":"weekly","video":[{"title":"2011:E27 - Shangri-la Easter Egg Song","description":"Brownman and Geoff show you how to unlock the hidden easter egg song in the Annihilation DLC map \"Shangri-la\" in Call of Duty: Black Ops. The song is Elena Siegman's \"Pareidolia.\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bd9331f-ef71-4323-895d-e51faaf59937/sm/ep3388.jpg","duration":151,"publication_date":"2011-06-28T19:25:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-in-las-vegas-pt-2","changefreq":"weekly","video":[{"title":"2011:E202 - High in Las Vegas (Pt 2)","description":"Brownman shows where to find the hidden red gems required to get the High in Las Vegas Achievement in Shadows of the Damned.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-in-las-vegas-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe67bb94-761f-47d6-b51d-6552568f9c96/sm/ep3387.jpg","duration":547,"publication_date":"2011-06-28T18:30:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-party-animal-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E717 - Party Animal Achievement Guide","description":"Geoff and Jack show you where to find all of the required beer in the strip club of Duke Nukem Forever, required to get the Party Animal Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-party-animal-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8e1375f-2a71-47a3-bce5-3adbe62712e2/sm/ep3385.jpg","duration":143,"publication_date":"2011-06-28T14:05:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-10","changefreq":"weekly","video":[{"title":"2011:E26 - Week #69","description":"Jack and Geoff take on the elusive AHWU #69. This week they look at Microsoft's Summer of Games, the newest Call of Duty: Black Ops DLC and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7145c67-5309-4c4e-af16-feed64c1dd9b/sm/ep3383.jpg","duration":357,"publication_date":"2011-06-27T23:00:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-shadows-of-the-damned-high-in-las-vegas-pt-1","changefreq":"weekly","video":[{"title":"2011:E200 - Shadows of the Damned: High in Las Vegas (Pt 1)","description":"Brownman shows where to find the hidden red gems required to get the High in Las Vegas Achievement in Shadows of the Damned.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-shadows-of-the-damned-high-in-las-vegas-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac67fc34-9055-48ea-a536-57630bce71de/sm/ep3381.jpg","duration":391,"publication_date":"2011-06-27T14:14:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-puppeteer-now-thats-a-big-f-gun","changefreq":"weekly","video":[{"title":"2011:E199 - The Puppeteer, Now That's a Big F*****' Gun","description":"Brownman and Jack head back to Hell in Shadows of the Damned and grab The Puppeteer and Now That's a Big F*****' Gun achievements. How did that sneak past approvals","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-puppeteer-now-thats-a-big-f-gun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05042f12-b8c1-41eb-8b23-3849b018d9ca/sm/ep3379.jpg","duration":138,"publication_date":"2011-06-24T22:24:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-boner-riffic","changefreq":"weekly","video":[{"title":"2011:E198 - Boner-riffic","description":"Brownman and Geoff go through every juvenile and boner-related Achievement in Shadows of the Damned for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-boner-riffic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4f34518-4fc9-4982-840b-cf03333630e1/sm/ep3378.jpg","duration":322,"publication_date":"2011-06-24T21:25:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-9","changefreq":"weekly","video":[{"title":"2011:E25 - Volume 40","description":"Jack and Geoff welcome Fails of the Weak into it's 40th episode. Will FotW start eyeballing younger fails Will it grab a Corvette Will FotW stop combing over it's hair Watch and find out!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe3d3aed-fc8d-4fb9-949f-5437a60d14d6/sm/ep3376.jpg","duration":268,"publication_date":"2011-06-24T19:42:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bucket-head-achievement","changefreq":"weekly","video":[{"title":"2011:E715 - Bucket Head Achievement","description":"Geoff and Jack show you where to find the three helmets needed for the Bucket Head Achievement in Duke Nukem Forever. Fans of Halo, Dead Space, and Borderlands might recognize them.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bucket-head-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7cb5306-f0de-4540-80ff-90eee8ca46b8/sm/ep3373.jpg","duration":110,"publication_date":"2011-06-23T20:33:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-4-early-achievements","changefreq":"weekly","video":[{"title":"2011:E714 - 4 Early Achievements","description":"Brownman and Jack head in to EA's new game, Shadows of the Damned and pick up four quick achievements! Join them as they grab \"You Go To Hell\" \"Drunk in Public\" \"Fire in the Hole!\" and \"Trash'em while they're out!\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-4-early-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc8c881d-058c-48c6-bc05-85e963ac9a94/sm/ep3372.jpg","duration":184,"publication_date":"2011-06-23T19:47:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-7","changefreq":"weekly","video":[{"title":"2011:E23 - Scramble","description":"LtMkilla takes on the arcade classic, Scramble, in this week's Rage Quit.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07685caf-1f31-4c83-a550-d08657ad0cb7/sm/ep3371.jpg","duration":288,"publication_date":"2011-06-23T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-klassic-fatalities","changefreq":"weekly","video":[{"title":"2011:E197 - Klassic Fatalities","description":"Jack and Geoff just can't get away from Mortal Kombat. This time they look at the newly released DLC fatalities for Scorpion, Sub-Zero and Reptile. Awfully familiar!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-klassic-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09b663c6-4493-4c19-930d-09fe78785eae/sm/ep3370.jpg","duration":78,"publication_date":"2011-06-23T16:33:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skarlet-fatalities","changefreq":"weekly","video":[{"title":"2011:E196 - Skarlet Fatalities","description":"Jack and Geoff take a look at Skarlet, the newest member of the Mortal Kombat line up. Join them as they look at her X-ray, Fatalities, Babality and Stage Fatality. So bloody!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skarlet-fatalities","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a328b4f-a2fe-4d3b-8319-b5c7ea134235/sm/ep3369.jpg","duration":108,"publication_date":"2011-06-23T16:20:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-7","changefreq":"weekly","video":[{"title":"2011:E25 - Achievement HORSE #29","description":"Jack and Geoff are back are back playing another round of HORSE...well, technically PIG due to time constraints. If you'd like to revel in their misery with them, download the maps at http://tinyurl.com/AHHORSE029","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b0dc56b-8c25-47de-8536-b27a55712680/sm/ep3368.jpg","duration":372,"publication_date":"2011-06-22T21:52:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bulletproof-windshield-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E713 - Bulletproof Windshield Achievement Guide","description":"Geoff and Jack show you how to get the Bulletproof Windshield Achievement in the Nicholson Electroplating DLC for L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bulletproof-windshield-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd532d01-e316-4c40-9eca-5dadeccf1da2/sm/ep3367.jpg","duration":138,"publication_date":"2011-06-22T20:26:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-out-of-the-frying-pan-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E712 - Out of the Frying Pan Achievement Guide","description":"Geoff and Jack show you how to get the Out of the Frying Pan Achievement in the Nicholson Electroplating DLC for L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-out-of-the-frying-pan-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2e1441b-e534-4d5f-9041-b6dea7a76a61/sm/ep3366.jpg","duration":185,"publication_date":"2011-06-22T20:12:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sex-and-the-shantys","changefreq":"weekly","video":[{"title":"2011:E193 - Sex and the Shantys","description":"Jack and Ryan are back in The Witcher 2 and stumble across a pair of familiar ladies.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sex-and-the-shantys","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6c6e2c1-0cff-4e10-be5f-453d986c52ac/sm/ep3360.jpg","duration":66,"publication_date":"2011-06-21T16:43:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-eagle-eye","changefreq":"weekly","video":[{"title":"2011:E192 - Eagle Eye","description":"Geoff and Ryan peer through the looking glass and grab the Eagle Eye achievement in The Witcher 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-eagle-eye","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b15f8512-8b25-4472-a3e7-44cb970d7252/sm/ep3359.jpg","duration":79,"publication_date":"2011-06-21T16:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-juiced-flagon-of-chuckles-substance-abuser","changefreq":"weekly","video":[{"title":"2011:E191 - Juiced, Flagon of Chuckles, Substance Abuser","description":"Jack and Geoff are still partying with Duke Nukem, this time they grab three achievements, Juiced, Flagon of Chuckles and Substance Abuser in such rapid succession, you won't know what hit you.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-juiced-flagon-of-chuckles-substance-abuser","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a9c1587-c092-4805-9864-6be87a136b5e/sm/ep3358.jpg","duration":50,"publication_date":"2011-06-21T16:11:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-completionist-part-2","changefreq":"weekly","video":[{"title":"2011:E190 - Completionist (Part 2)","description":"Brownman is back in Transformers: Dark of the Moon finishing off the Completionist achievement. My favorite transformer is the one that powers my house.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-completionist-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a1122ca-3c73-43b9-b88d-00d51391dc40/sm/ep3357.jpg","duration":317,"publication_date":"2011-06-20T21:48:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-6","changefreq":"weekly","video":[{"title":"2011:E25 - Week #68","description":"While Geoff is away, the Joel will play. This week Jack does his best to wrangle Joel in to doing AHWU with him. It goes about as well as you could expect. Stay tuned for Shadows of the Damned, Halo CE Anniversary, Kinect and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49c42f75-9b33-45b6-b225-363ed3c63d54/sm/ep3356.jpg","duration":279,"publication_date":"2011-06-20T21:08:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-three-duke-chievements","changefreq":"weekly","video":[{"title":"2011:E189 - Three Duke-chievements","description":"Jack and Geoff jump back in to Duke Nukem Forever and grab the Baron Von Duke, Big Guns Big Ships and Natural Disaster 3x achievements! Hail to the King!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-three-duke-chievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90c79697-fbd4-4ed3-ac97-6ad322a7855b/sm/ep3354.jpg","duration":90,"publication_date":"2011-06-20T20:39:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-man-of-the-shadows","changefreq":"weekly","video":[{"title":"2011:E188 - Man Of The Shadows","description":"Geoff and Ryan delve back in to the world of The Witcher 2 and grab the Man of the Shadows achievement. Very sneaky!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-man-of-the-shadows","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9afda64-c8c6-45c1-b4e2-b605e759cef1/sm/ep3353.jpg","duration":194,"publication_date":"2011-06-20T20:23:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-fancy-pants-adventures-the-juggler-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E711 - The Fancy Pants Adventures - The Juggler Achievement Guide","description":"xngine here giving you a quick guide on how to get the achievement 'The Juggler' in The Fancy Pants Adventures","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-fancy-pants-adventures-the-juggler-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":90,"publication_date":"2011-06-19T19:32:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ranger-part-2","changefreq":"weekly","video":[{"title":"2011:E187 - Metro 2033 - Ranger Part 2","description":"Part 2 of the ranger guide in Metro 2033","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ranger-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":235,"publication_date":"2011-06-19T19:16:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-4","changefreq":"weekly","video":[{"title":"2011:E24 - Volume 39","description":"Jack and Geoff take a gander at some of the most hilarious fails to hit the internet! Whoa boy, funny fun times are all up in here!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02c4e259-8815-4601-bf9f-bb90319516c9/sm/ep3347.jpg","duration":244,"publication_date":"2011-06-17T20:08:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-completionist-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E709 - Completionist Achievement Guide","description":"Brownman shows where to find the hidden Transformer symbols required for the Completionist Achievement in Transformers: Dark of the Moon.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-completionist-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c1b6339-da3f-40b4-bd5f-4d28c9d21c8b/sm/ep3346.jpg","duration":351,"publication_date":"2011-06-17T18:52:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-then-and-now","changefreq":"weekly","video":[{"title":"2011:E186 - Then and Now","description":"Jack and Geoff take you on a special tour of Hollywood through the power of real video and L.A. Noire. Follow them to see what decades of change have done to a city and how things have changed using L.A. Noire as a basis of history! Please let us know if you like this video as we may do more!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-then-and-now","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8db05be8-41ae-4bad-8ca4-b28b1dc7ef7f/sm/ep3344.jpg","duration":327,"publication_date":"2011-06-16T22:45:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-librarian-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E707 - Librarian Achievement Guide","description":"Ryan and Jack show you how to get the Librarian Achievement in The Witcher 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-librarian-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":93,"publication_date":"2011-06-16T19:43:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011","changefreq":"weekly","video":[{"title":"2011:E22 - Dead Rising 2","description":"This week's Rage Quit is all that, and a bag of trash.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e7cdf15-ceef-4107-a3c9-4b812d3d73e1/sm/ep3342.jpg","duration":184,"publication_date":"2011-06-16T15:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011","changefreq":"weekly","video":[{"title":"2011:E24 - Achievement HORSE #28","description":"Jack is back from E3 and ready to get his HORSE on versus a quite possibly STILL intoxicated Geoff. Enjoy! All maps are available at http://tinyurl.com/AHHORSE28","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/404b742b-511f-407a-91ae-754572e70f71/sm/ep3340.jpg","duration":487,"publication_date":"2011-06-15T22:35:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-give-my-regards-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E705 - Give My Regards Achievement Guide","description":"Geoff and Griffon show you where and how to get the Give My Regards Achievement in the Naked City DLC for L.A. Noire on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-give-my-regards-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4bf809f-0aeb-4fea-9033-b70431483e19/sm/ep3339.jpg","duration":77,"publication_date":"2011-06-15T20:46:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-5","changefreq":"weekly","video":[{"title":"2011:E25 - Assassin's Creed Easter Egg","description":"Ryan and Jack show you a cool little Assassin's Creed Easter Egg in The Witcher 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ab5488e-8986-49a4-a300-cc8999c80f90/sm/ep3338.jpg","duration":31,"publication_date":"2011-06-15T19:56:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-thunder-flop-and-nothing-can-bring-me-down","changefreq":"weekly","video":[{"title":"2011:E185 - Thunder Flop & Nothing Can Bring Me Down","description":"Geoff and Jack show you how to get the Thunder Flop and Nothing Can Bring Me Down Trophies in inFamous 2 for the Ps3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-thunder-flop-and-nothing-can-bring-me-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26d78f1b-5a12-4c37-ad7c-403e1eb54230/sm/ep3337.jpg","duration":216,"publication_date":"2011-06-15T19:18:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-3","changefreq":"weekly","video":[{"title":"2011:E16 - Duke Nukem Forever","description":"Jack and Geoff finally get their mitts on Duke Nukem Forever, the newest release from 2K and Gearbox. Join them as they dig in and look for babes.","player_loc":"https://roosterteeth.com/embed/this-is-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb82ca99-f683-4ff8-ae89-ffcb9a1a3866/sm/ep3335.jpg","duration":411,"publication_date":"2011-06-14T21:05:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mountaineer-trophy-guide","changefreq":"weekly","video":[{"title":"2011:E704 - Mountaineer Trophy Guide","description":"Geoff and boy-Jack show you how to get the Mountaineer Trophy in inFamous 2 for the PS3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mountaineer-trophy-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e08b7e7-b5a7-4203-909e-69fb4417ef90/sm/ep3334.jpg","duration":166,"publication_date":"2011-06-14T19:04:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-turd-burglar-drawrings-sunday-black-sunday","changefreq":"weekly","video":[{"title":"2011:E184 - Turd Burglar, Drawrings, Sunday, Black Sunday","description":"Jack and Geoff finally dive in to Duke Nukem Forever after years and years of waiting. Follow them as they grab the Turd Burglar, Drawrings and Sunday, Black Sunday achievements!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-turd-burglar-drawrings-sunday-black-sunday","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d65f2001-090b-4462-b554-3552eb36fe01/sm/ep3333.jpg","duration":95,"publication_date":"2011-06-14T18:51:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-chauffeur-service-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E703 - Chauffeur Service Achievement Guide","description":"Geoff and Griffon show you how to get the Chauffeur Service Achievement in the Naked City DLC for L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-chauffeur-service-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea3edd45-a42d-46dd-b623-bf44bf9d8562/sm/ep3332.jpg","duration":176,"publication_date":"2011-06-14T17:50:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chronicler-part-1","changefreq":"weekly","video":[{"title":"2011:E183 - Chronicler Part 1","description":"Fragger and Geoff show you where to find the hidden audio logs in Red Faction: Armageddon. (Part One)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chronicler-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a653255-19e7-48f3-861a-8abc44f13392/sm/ep3331.jpg","duration":311,"publication_date":"2011-06-14T17:49:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bell-end-and-heart-attack","changefreq":"weekly","video":[{"title":"2011:E179 - Bulletstorm - \"Bell End\" and \"Heart Attack\"","description":"2tired2care and PacDan show you how to pick up a few achievements in Bulletstorm's latest DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bell-end-and-heart-attack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c5299b9-83fc-4548-92f8-515713c88919/sm/2013912-1451424098953-maxresdefault_(12).jpg","duration":150,"publication_date":"2011-06-14T01:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-master-of-disaster-achievement-guide-1","changefreq":"weekly","video":[{"title":"2011:E696 - Master of Disaster - Achievement Guide","description":"Albin0_Rhino shows us all an easy way to get the Master of Disaster achievement for Bulletstorm.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-master-of-disaster-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":43,"publication_date":"2011-06-14T00:48:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mirrors-edge-may-i-have-this-dance-achievement","changefreq":"weekly","video":[{"title":"2011:E693 - Mirrors Edge - 'May I Have This Dance' Achievement","description":"Curtis Fitzgerald Getting the achievement 'May I Have This Dance\" on Mirrors Edge for 30 Gamerscore","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mirrors-edge-may-i-have-this-dance-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":98,"publication_date":"2011-06-13T22:30:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-super-meat-boy-chapter-5-a","changefreq":"weekly","video":[{"title":"2011:E177 - Super Meat Boy - Chapter 5 A+","description":"Soothsayer, BioHRay, and FlapNasty take you through part four of the \"I'm a Golden God\" guide. This one contains all of the levels of chapter 5 and how to A+ them.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-super-meat-boy-chapter-5-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4de0114f-cac6-473d-8783-9c2b0ef0cd28/sm/2013912-1451424058056-maxresdefault_(11).jpg","duration":594,"publication_date":"2011-06-13T22:26:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crysis-2-collectables-part-4","changefreq":"weekly","video":[{"title":"2011:E176 - Crysis 2 Collectables Part 4","description":"Joschi trudges through and helps viewers get over the addiction to kleptomaniacy by finishing up collectables on Crysis 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crysis-2-collectables-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":555,"publication_date":"2011-06-13T22:26:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-super-meat-boy-chapter-4-a","changefreq":"weekly","video":[{"title":"2011:E175 - Super Meat Boy - Chapter 4 A+","description":"Soothsayer57 and BioHRay take you through part three of the \"I'm a Golden God\" guide. This one contains all of the A+ in chapter 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-super-meat-boy-chapter-4-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5f698f9-dece-42e9-a197-ef9bc6879fb4/sm/2013912-1451424017696-maxresdefault_(10).jpg","duration":510,"publication_date":"2011-06-13T22:25:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-super-meat-boy-chapter-3-a","changefreq":"weekly","video":[{"title":"2011:E174 - Super Meat Boy - Chapter 3 A+","description":"Soothsayer and BioHRay go through part two of the guide for \"I'm A Golden God\". This is for all of the A+ on chapter 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-super-meat-boy-chapter-3-a","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e5d8398-9d93-41a5-a0d8-f3f165b8f338/sm/2013912-1451423998947-maxresdefault_(9).jpg","duration":487,"publication_date":"2011-06-13T22:23:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-super-meat-boy-chapter-2-a-walkthrough","changefreq":"weekly","video":[{"title":"2011:E173 - Super Meat Boy - Chapter 2 A+ Walkthrough","description":"The start of a guide to getting 100% in Super Meat Boy netting you the \"I'm a Golden God\" achievement. This is the first video for getting A+ on all levels in Chapter 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-super-meat-boy-chapter-2-a-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5553323-9a5f-4a18-924e-2ca0447202b9/sm/2013912-1451423977680-maxresdefault_(8).jpg","duration":514,"publication_date":"2011-06-13T22:21:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-loot-to-boot-part-7-of-11","changefreq":"weekly","video":[{"title":"2011:E172 - Blade Kitten - Loot to Boot part 7 of 11","description":"Guide for the level Darque Nights in the game Blade Kitten for the achievement Loot to Boot","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-loot-to-boot-part-7-of-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":161,"publication_date":"2011-06-13T22:06:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-46","changefreq":"weekly","video":[{"title":"2011:E24 - Week #67","description":"Jack and Geoff are back in action, with Geoff being cold and Jack being happy. This week's releases include the long-awaited Duke Nukem Forever!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7bd06431-e4b7-4d70-8ff5-d8e1bc8de680/sm/ep3303.jpg","duration":295,"publication_date":"2011-06-13T21:59:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-dishwasher-vs-all-ghost-beads-part-1","changefreq":"weekly","video":[{"title":"2011:E170 - The Dishwasher: VS: All Ghost Beads Part 1","description":"BioHRay and Cunning Rook show you the location of the first 15 Ghost Beads in The Dishwasher Vampire Smile for the \"I Did Not Use A FAQ For This\" Achievement and 10 Gamer Score","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-dishwasher-vs-all-ghost-beads-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":368,"publication_date":"2011-06-13T21:58:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-red-faction-armageddon-catch-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E690 - Red Faction: Armageddon - Catch! Achievement Guide","description":"NightHawk673 shows us how to easily obtain the Catch! achievement in Red Faction: Armageddon","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-red-faction-armageddon-catch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":118,"publication_date":"2011-06-13T21:53:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bulletstorm-barber-and-envoirmentalist-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E688 - Bulletstorm - Barber & Envoirmentalist Achievement Guide","description":"NightHawk673 shows us how to get 2 new achievements in the newest bulletstorm DLC pack","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bulletstorm-barber-and-envoirmentalist-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":188,"publication_date":"2011-06-13T21:04:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fakeloo-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E687 - Fakeloo Achievement Guide","description":"Geoff and Griffon show you how to get the Fakeloo Achievement in the DLC \"The Naked City\" for L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fakeloo-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b63e72e2-8720-4e5a-99ce-17b58fc1ed2c/sm/ep3298.jpg","duration":216,"publication_date":"2011-06-13T20:00:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-take-them-for-a-spin-trophy-guide","changefreq":"weekly","video":[{"title":"2011:E686 - Take them for a Spin Trophy Guide","description":"Geoff and Griffon show you how to get the \"Take the for a Spin\" Trophy in inFamous 2 for the PS3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-take-them-for-a-spin-trophy-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07dc73e1-f437-4168-98cb-449f686ceed1/sm/ep3297.jpg","duration":81,"publication_date":"2011-06-13T18:43:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collectibles","changefreq":"weekly","video":[{"title":"2011:E169 - Collectibles","description":"Brownman shows where to find the hidden collectibles required to get the Mogo is Proud and There is Hope Achievements in Green Lantern: Rise of the Manhunters for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ca3f25c-a7e6-4930-920a-d894ff770194/sm/ep3296.jpg","duration":506,"publication_date":"2011-06-13T18:35:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-45","changefreq":"weekly","video":[{"title":"2011:E23 - Volume 38","description":"Jack and Geoff look at another wealth of fails and hilarious bloopers in Halo: Reach. My favorite is the one with the guy when things happen badly for him! Hah!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e6f7704-93ef-447b-b872-32311de0175d/sm/ep3292.jpg","duration":259,"publication_date":"2011-06-10T21:14:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-a-video-game-tour-of-nyc","changefreq":"weekly","video":[{"title":"2011:E168 - A video game tour of NYC","description":"Geoff and Jack take you on a tour of Times Square in NYC, across a multitude of video games.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-a-video-game-tour-of-nyc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b60c90d-07c2-4ded-b99f-9ccd861f0055/sm/ep3291.jpg","duration":198,"publication_date":"2011-06-10T21:12:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-good-looking-corpse-guide","changefreq":"weekly","video":[{"title":"2011:E684 - A Good-Looking Corpse Guide","description":"Geoff and Girl-Jack give as a spoiler-free guide to getting the \"A Good-Looking Corpse\" Achievement in the \"The Naked City\" DLC for L.A. Noire for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-good-looking-corpse-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/929f45c3-f9d0-40b3-b057-31b637e3f645/sm/ep3290.jpg","duration":105,"publication_date":"2011-06-10T14:48:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-most-shameful-video-ever","changefreq":"weekly","video":[{"title":"2011:E167 - The most shameful video ever!","description":"Geoff told Jack to make a video while at E3 that would offset the cost of his trip out there. Here is the result. You are welcome, internet.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-most-shameful-video-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39984886-b359-45f6-9548-349c3613a4d1/sm/ep3289.jpg","duration":83,"publication_date":"2011-06-10T03:53:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-two-achievements","changefreq":"weekly","video":[{"title":"2011:E683 - Two Achievements","description":"Brownman and Geoff show you how to get two Achievements in Green Lantern: Rise of the Manhunters - for the Xbox 360: Get Dizzy Y'all, and Shut Your Mouth.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-two-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21fc73e6-66cd-4149-b548-28475b70cf53/sm/ep3288.jpg","duration":124,"publication_date":"2011-06-09T21:01:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-return-to-sender-trophy-guide","changefreq":"weekly","video":[{"title":"2011:E682 - Return to Sender Trophy Guide","description":"Geoff and Griffon show you how to get the \"Return to Sender\" Trophy in inFamous 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-return-to-sender-trophy-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dceeb734-3d2c-4f79-833b-b0bdefcb140a/sm/ep3286.jpg","duration":80,"publication_date":"2011-06-09T15:45:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-47","changefreq":"weekly","video":[{"title":"2011:E21 - Call of Duty 4: Modern Warfare","description":"Michael takes a trip down memory lane to attempt one of the hardest Achievements ever made in this week's Rage Quit.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59c92a34-ec0c-48cf-92d2-f857c6b4dc04/sm/ep3285.jpg","duration":210,"publication_date":"2011-06-09T15:32:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shock-and-awe-trophy-guide","changefreq":"weekly","video":[{"title":"2011:E681 - Shock and Awe Trophy Guide","description":"Geoff and Griffon show how to get the Shock and Awe Trophy in inFamous 2 for the PS3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shock-and-awe-trophy-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/389b4f0e-3c91-494c-850d-3d2f55b77cd4/sm/ep3284.jpg","duration":121,"publication_date":"2011-06-09T14:38:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mining-achievements","changefreq":"weekly","video":[{"title":"2011:E679 - Mining Achievements","description":"TonySki and Geoff show you how to get the mining related Achievements in Minecraft.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mining-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37a452e5-f39a-41e6-8d5a-71ef179509a9/sm/ep3282.jpg","duration":353,"publication_date":"2011-06-08T18:37:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-42","changefreq":"weekly","video":[{"title":"2011:E23 - Achievement HORSE #27","description":"Joel and Geoff fumble through Halo in the 27th edition of HORSE. It's a contest to see who sucks the least! Maps are all available at http://tinyurl.com/AHHORSE027","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00ce2c26-c4f5-4db0-9801-e528fbb17015/sm/ep3280.jpg","duration":389,"publication_date":"2011-06-08T15:55:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-discerning-taste-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E677 - Discerning Taste Achievement Guide","description":"Geoff and Griffon show you a quick way to get the Discerning Taste Trophy in inFamous 2 for the PS3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-discerning-taste-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6c5e359-aa3b-41c7-8a48-630e51d46d14/sm/ep3279.jpg","duration":98,"publication_date":"2011-06-08T14:00:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-56","changefreq":"weekly","video":[{"title":"2011:E23 - Theatre Marquee Easter Egg","description":"Geoff and Griffon show you a dandy of an Easter Egg in the PS3 exclusive inFamous 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-56","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3756601-b962-4042-a934-3ec3dcaa1b97/sm/ep3277.jpg","duration":102,"publication_date":"2011-06-07T20:30:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-racing-for-pinks-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E676 - Racing for Pinks Achievement Guide","description":"Geoff and Griffon show you where to find the pink slips required to get the \"Racing for Pinks\" Achievement in the A Slip of the Tongue DLC in L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-racing-for-pinks-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c75256fe-a42b-4726-9079-ea6d6248fda3/sm/ep3276.jpg","duration":123,"publication_date":"2011-06-07T20:01:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-42","changefreq":"weekly","video":[{"title":"2011:E23 - Week #66","description":"Jack is flying solo out in Los Angeles for E3, but that won't stop him from putting out a brand new AHWU! He takes a look at this week's games and all of the happenings from the Microsoft E3 Press Conference!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b530550-e1c5-47f9-8784-5f744a7eb47c/sm/ep3273.jpg","duration":198,"publication_date":"2011-06-06T23:02:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-nowhere-in-a-hurry-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E674 - Nowhere in a Hurry Achievement Guide","description":"Geoff and Griffon show you how to get the \"Nowhere in a Hurry\" Achievement in the \"A Slip of the Tongue\" DLC for L.A. Noire on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-nowhere-in-a-hurry-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1f3d131-79bd-41f4-beeb-ef35f5f1fcf0/sm/ep3272.jpg","duration":94,"publication_date":"2011-06-06T19:51:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-moose-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E673 - The Moose Achievement Guide","description":"Geoff and Jack show you how to get \"The Moose\" Achievement in L.A. Noire for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-moose-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56f96eea-0dcb-43da-a1c0-9958d45ecf27/sm/ep3270.jpg","duration":274,"publication_date":"2011-06-03T20:56:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-39","changefreq":"weekly","video":[{"title":"2011:E22 - Volume 37","description":"Jack and Geoff are back for this Pre-E3 edition of Fails of the Weak! For those who made it to RTX, this is the small-screen version of what you lucky folks got to see in Austin! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f68ab89-3da1-4ca8-9d08-a84973979c87/sm/ep3267.jpg","duration":281,"publication_date":"2011-06-03T15:08:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-41","changefreq":"weekly","video":[{"title":"2011:E20 - Bangai-O HD: Missile Fury","description":"LtMkilla plays a game with \"fury\" in the title. This'll end well.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a51544dd-23e1-4530-9f7f-ad3977611fe3/sm/ep3264.jpg","duration":143,"publication_date":"2011-06-02T15:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-38","changefreq":"weekly","video":[{"title":"2011:E22 - Achievement HORSE #26","description":"Jack and Geoff take a look at the Achievement HORSE maps used at this past weekend's RTX down in Austin. Fly around with them as they take a look at Edo Sens and Blind Man 219's maps! Maps are available at http://tinyurl.com/ACHHORSE026","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e78bc91-9d34-43f3-a530-76f21b877246/sm/ep3263.jpg","duration":458,"publication_date":"2011-06-01T21:35:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lead-foot-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E670 - Lead Foot Achievement Guide","description":"Geoff and Jack show you how to get the Lead Foot Achievement in L.A. Noire for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lead-foot-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9d2fb00-530d-4eb3-9bb1-7db131b4e6fc/sm/ep3262.jpg","duration":197,"publication_date":"2011-06-01T14:12:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-43","changefreq":"weekly","video":[{"title":"2011:E12 - Hunted: Demon's Forge","description":"Jack and Geoff take a look at the brand new Action-RPG Hunted: Demon's Forge. Join with them as they discuss the finer points of medieval baking and sword-making.","player_loc":"https://roosterteeth.com/embed/this-is-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ac5228b-0091-412c-b0c4-54f796ad11f6/sm/ep3261.jpg","duration":351,"publication_date":"2011-05-31T21:49:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-untouchable-two-birds-overkill-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E669 - Untouchable, Two Birds, Overkill Achievement Guide","description":"Brownman shows us how to get three Achievements in Outland for Xbox Live Arcade: Untouchable, Overkill, and Two Birds.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-untouchable-two-birds-overkill-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c5263ac-79aa-41fa-950e-894aed2c5a0d/sm/ep3260.jpg","duration":246,"publication_date":"2011-05-31T20:05:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-39","changefreq":"weekly","video":[{"title":"2011:E22 - Week #65","description":"Jack and Geoff fight off post-RTX hangovers with a fresh batch of gaming news in this week's AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da777fef-a39e-4dd1-ab0c-4608869737bb/sm/ep3258.jpg","duration":269,"publication_date":"2011-05-30T21:55:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-public-menace-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E668 - Public Menace Achievement Guide","description":"Geoff and Jack smash up some classic cars to get the Public Menace Achievement in L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-public-menace-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faeccf6d-eb6c-4eb0-9c99-3d8fc7bc53fa/sm/ep3257.jpg","duration":203,"publication_date":"2011-05-30T20:48:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-5-hidden-film-canisters","changefreq":"weekly","video":[{"title":"2011:E667 - Hollywoodland Achievement Guide Pt 5 (hidden film canisters)","description":"Geoff and Jack show you where to find the final 10 hidden film reels in L.A. Noire for the Xbox 360. Finding all 50, will get you the Hollywoodland Achievement, and 30 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-5-hidden-film-canisters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c8abfcc-8e69-4056-8c95-3e05771d7670/sm/ep3256.jpg","duration":319,"publication_date":"2011-05-29T20:33:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-37","changefreq":"weekly","video":[{"title":"2011:E21 - Volume 36","description":"Jack and Geoff are back with another batch of goodies for all of the good little boys and girls. Enjoy another week of FAILS!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0febf564-422b-4a5c-9c36-c81b22246e42/sm/ep3255.jpg","duration":287,"publication_date":"2011-05-27T16:32:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-40","changefreq":"weekly","video":[{"title":"2011:E11 - Dungeons and Dragons: Daggerdale","description":"Fragger and Jack check out the new dungeon crawling Arcade title: Dungeons and Dragons: Daggerdale.","player_loc":"https://roosterteeth.com/embed/this-is-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f462348f-8196-41ee-bb42-fe88651b496a/sm/ep3254.jpg","duration":247,"publication_date":"2011-05-27T03:11:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-39","changefreq":"weekly","video":[{"title":"2011:E19 - Mortal Kombat","description":"Michael throws down against Shao Kahn in Mortal Kombat for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e054d35-8f5a-4e27-bedf-683938204038/sm/ep3252.jpg","duration":325,"publication_date":"2011-05-26T17:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-4-hidden-film-canisters","changefreq":"weekly","video":[{"title":"2011:E666 - Hollywoodland Achievement Guide Pt 4 (hidden film canisters)","description":"Geoff and Jack show you where to find the next 10 hidden film reels in L.A. Noire for the Xbox 360. Finding all 50, will get you the Hollywoodland Achievement, and 30 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-4-hidden-film-canisters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8c489f6-053e-4276-bdca-a626c1b401d0/sm/ep3251.jpg","duration":346,"publication_date":"2011-05-26T15:50:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-3-hidden-film-canisters","changefreq":"weekly","video":[{"title":"2011:E665 - Hollywoodland Achievement Guide Pt 3 (hidden film canisters)","description":"Geoff and Jack show you where to find the next 10 hidden film reels in L.A. Noire for the Xbox 360. Finding all 50, will get you the Hollywoodland Achievement, and 30 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-3-hidden-film-canisters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56a4a713-3e0a-45e7-ade7-bf99303e0401/sm/ep3250.jpg","duration":254,"publication_date":"2011-05-25T20:27:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-35","changefreq":"weekly","video":[{"title":"2011:E21 - Achievement HORSE #25","description":"Jack and Geoff are super busy prepping for RTX, so this week's is a bit shorter version of Achievement PIG! It's still hilarious though! Promise! Maps are available at http://tinyurl.com/ACHHORSE025","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ae019e5-a9b2-475d-9aa9-71c3bd0cf9c4/sm/ep3249.jpg","duration":334,"publication_date":"2011-05-25T19:13:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-2-hidden-film-canisters","changefreq":"weekly","video":[{"title":"2011:E664 - Hollywoodland Achievement Guide Pt 2 (hidden film canisters)","description":"Geoff and Jack show you where to find the second 10 hidden film reels in L.A. Noire for the Xbox 360. Finding all 50, will get you the Hollywoodland Achievement, and 30 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-2-hidden-film-canisters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bfa86df9-42b0-4919-9dee-b9e15eef99f9/sm/ep3246.jpg","duration":283,"publication_date":"2011-05-24T19:43:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-traffic-stop-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E663 - Traffic Stop Achievement Guide","description":"Geoff and Griffon show you how to get the \"Traffic Stop\" Achievement in L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-traffic-stop-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/371aa0ef-9600-4995-902c-d86c3e91a127/sm/ep3244.jpg","duration":55,"publication_date":"2011-05-23T15:13:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-1-hidden-film-canisters","changefreq":"weekly","video":[{"title":"2011:E662 - Hollywoodland Achievement Guide Pt 1 (hidden film canisters)","description":"Geoff and Jack show you where to find the first 10 hidden film reels in L.A. Noire for the Xbox 360. Finding all 50, will get you the Hollywoodland Achievement, and 30 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hollywoodland-achievement-guide-pt-1-hidden-film-canisters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcf7714c-d6a5-4ead-9028-eedf76caa863/sm/ep3243.jpg","duration":234,"publication_date":"2011-05-23T14:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-keep-a-lid-on-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E661 - Keep a Lid On Achievement Guide","description":"Geoff and Griffon show you how to win a fight with style, and obtain the \"Keep a Lid On\" Achievement in L.A. Noire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-keep-a-lid-on-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c92c8d6-f699-4a9d-ad34-02f78ee7cb02/sm/ep3242.jpg","duration":91,"publication_date":"2011-05-23T14:23:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-32","changefreq":"weekly","video":[{"title":"2011:E20 - Volume 35","description":"Jack and Geoff continue to boost their own self-worth and ego by making fun of other Halo gamers.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/732529af-a9c1-4fb9-b113-57f7636e5b9a/sm/ep3239.jpg","duration":276,"publication_date":"2011-05-20T20:17:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-7","changefreq":"weekly","video":[{"title":"2011:E660 - Three Achievements","description":"Brownman and Geoff show you how to get the Achievements in History Channel: Great Battles - Medieval: Invincible, Power in Numbers, All Around the World.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f41e191c-dcf2-4566-801a-44f7e5ce806c/sm/ep3238.jpg","duration":395,"publication_date":"2011-05-20T18:02:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-shadow-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E659 - The Shadow Achievement Guide","description":"Geoff and Griffon show you how to get \"The Shadow\" Achievement in L.A. Noire for the Xbox 360. There might be slight spoilers in this video, but probably not.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-shadow-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9356edf3-eaff-4b74-8450-8d55e6bdbaa1/sm/ep3237.jpg","duration":131,"publication_date":"2011-05-20T15:24:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stab-rite-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E658 - Stab-Rite Achievement Guide","description":"Geoff and Griffon show you how to get the secret Achievement \"Stab-rite\" in L.A. Noire for the Xbox 360. Warning, there might be light spoilers in this video.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stab-rite-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e12ce72d-055f-4b4c-ad8e-8f447526748a/sm/ep3236.jpg","duration":100,"publication_date":"2011-05-20T14:42:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sea-turtles-mate-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E657 - Sea Turtles, Mate Achievement Guide","description":"Geoff and Jack show you where to find the rideable animals throughout Lego Pirates of the Caribbean, to nab the Sea Turtles, Mate Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sea-turtles-mate-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a5d9cbd-9edd-4097-b69e-77144fb7686f/sm/ep3234.jpg","duration":160,"publication_date":"2011-05-19T19:50:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-32","changefreq":"weekly","video":[{"title":"2011:E18 - Brink","description":"In this week's episode of Rage Quit, Michael takes a stab at playing Brink with bots. I think it might be time he take a stab at getting some friends to play online with.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cf6dd03-55cd-46b5-a3a6-41552036ebed/sm/ep3233.jpg","duration":212,"publication_date":"2011-05-19T14:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-not-so-hasty-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E656 - Not So Hasty Achievement Guide","description":"Geoff and Jack show you how and where to get the Not So Hasty Achievement in L.A. Noire for the Xbox 360. This video contains no spoilers. Additionally, no kittens were harmed in its making.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-not-so-hasty-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c7e55c5-7638-4714-80cf-089974df4bef/sm/ep3231.jpg","duration":67,"publication_date":"2011-05-18T20:24:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-30","changefreq":"weekly","video":[{"title":"2011:E20 - Achievement HORSE #24","description":"Jack and Geoff take on the 24th edition of HORSE with flying colors. And Mongooses, and Warthogs. Who will win Maps are available at http://tinyurl.com/AHHORSE24","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2b15d249-5b5b-40f8-8474-c62b52ff0a01/sm/ep3230.jpg","duration":466,"publication_date":"2011-05-18T19:09:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-seven-achievements","changefreq":"weekly","video":[{"title":"2011:E655 - Seven Achievements","description":"Tonyski and Brownman show you how to get seven Achievements in Crash Time - Autubahn Pursuit for the Xbox 360: Acknowledgements, !esreveR, Far Ahead, Nitro Burner, Builder, Clear the Drains!, and Flyover!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-seven-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da46110f-e1e2-457a-b54e-eb72c47546a0/sm/ep3229.jpg","duration":212,"publication_date":"2011-05-18T15:54:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wind-in-your-sails-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E654 - Wind in your Sails Achievement Guide","description":"Geoff and Jack show you how to get the \"Wind in your Sails\" Achievement in Lego Pirates of the Caribbean for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wind-in-your-sails-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/856383bd-c480-4fd8-8808-c85336404739/sm/ep3228.jpg","duration":71,"publication_date":"2011-05-18T14:15:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-did-everybody-see-that-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E653 - Did everybody see that? Achievement guide","description":"Geoff and Jack show you how to get the \"Did everybody see that\" Achievement in Lego Pirates of the Caribbean for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-did-everybody-see-that-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b544a64c-9860-47fb-b429-5eb4d1dce7a0/sm/ep3227.jpg","duration":104,"publication_date":"2011-05-17T19:56:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-everglades-collectibles","changefreq":"weekly","video":[{"title":"2011:E163 - Everglades Collectibles","description":"Fragger shows where to find the collectibles in the Everglades level of Man vs Wild for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-everglades-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/329fbcbf-c671-413c-9e88-4e7562103af7/sm/ep3225.jpg","duration":354,"publication_date":"2011-05-17T16:33:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-31","changefreq":"weekly","video":[{"title":"2011:E20 - Week #63","description":"Jack and Geoff deliver you the freshest news in this week's AHWU. Join them as they talk about Modern Warfare 3, Chrono Trigger and have a few laughs in the process.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00ea277e-a157-461f-8905-c3dc05ee18ce/sm/ep3224.jpg","duration":272,"publication_date":"2011-05-16T21:50:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-what-do-you-want-most-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E652 - What do you want most? Achievement Guide","description":"Geoff and Jack show you how to get the \"What do you want most\" Achievement in Lego Pirates of the Caribbean for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-what-do-you-want-most-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":261,"publication_date":"2011-05-16T18:19:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-here-there-be-monsters-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E651 - Here There Be Monsters Achievement Guide","description":"Geoff and Jack show you how to get the \"Here there be monsters\" Achievement in Lego Pirates of the Caribbean. Yarr!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-here-there-be-monsters-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f17c9e4-f219-43d7-afb5-858e9ecb94a5/sm/ep3222.jpg","duration":58,"publication_date":"2011-05-16T17:53:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-great-shot-kid-one-in-a-million","changefreq":"weekly","video":[{"title":"2011:E162 - Great shot kid! One in a million","description":"Jack and Geoff slip in to Brink and pick up the Great shot kid! One in a million achievement. Someone smells like a scruffy nerfherder in here!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-great-shot-kid-one-in-a-million","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4427f9b7-5147-42e9-94ee-7c29ef42e486/sm/ep3220.jpg","duration":75,"publication_date":"2011-05-13T22:27:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E646 - Achievement Guide","description":"Tonyski and Geoff show you how to get a multitude of Achievements in the 1.5 version of Minecraft.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7cb2ce99-4ed0-4c8a-b8ec-0c11b9f2aca8/sm/ep3215.jpg","duration":304,"publication_date":"2011-05-13T19:04:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-27","changefreq":"weekly","video":[{"title":"2011:E19 - Volume 34","description":"Jack and Geoff continue their long-running tradition of talking while some of the funniest Halo moments ever happen in front of them. Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04555c51-f888-430b-8701-37f4e3b7030d/sm/ep3214.jpg","duration":282,"publication_date":"2011-05-13T17:33:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-when-pigs-fly-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E645 - When Pigs Fly Achievement Guide","description":"KistyNocturn shows us what to do, and not to do when trying to make a pig go flying.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-when-pigs-fly-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":86,"publication_date":"2011-05-12T18:32:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crysis-2-collectables-part-3","changefreq":"weekly","video":[{"title":"2011:E161 - Crysis 2 Collectables Part 3","description":"Joschi assists in the acquiring of more collectables in Crysis 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crysis-2-collectables-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":474,"publication_date":"2011-05-12T18:31:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-27","changefreq":"weekly","video":[{"title":"2011:E17 - Yie Ar Kung-Fu","description":"LtMkilla takes a trip down memory lane to fight his way through the arcade classic Yie Ar Kung-Fu. I hope he brought enough quarters.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8e04ade-317e-4ebd-ae50-0864e8bc4873/sm/ep3210.jpg","duration":257,"publication_date":"2011-05-12T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-3","changefreq":"weekly","video":[{"title":"2011:E644 - Collectible Guide Part 3","description":"TonySki and Fragger show where to find the hidden collectibles in level thee (Percival's Fall) of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c535d94b-8d97-4fa7-843b-cb0d61e40227/sm/ep3208.jpg","duration":327,"publication_date":"2011-05-12T14:37:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-25","changefreq":"weekly","video":[{"title":"2011:E19 - Achievement HORSE #23","description":"Jack and Geoff head back to a \"normal\" game of HORSE. Will Geoff keep his streak going after winning PIG last week Watch and find out! All the maps you see here are available at http://tinyurl.com/AHHORSE023","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96f94311-ffec-421c-93c5-2cdb2d5e472e/sm/ep3207.jpg","duration":436,"publication_date":"2011-05-11T22:49:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-try-wearing-a-corset-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E643 - Try Wearing a Corset Achievement Guide","description":"Geoff and Jack show you how to get the \"Try Wearing a Corset\" Achievement in Lego Pirates of the Caribbean for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-try-wearing-a-corset-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51f3c91d-8dd9-4138-a2cb-beec36b283d9/sm/ep3206.jpg","duration":67,"publication_date":"2011-05-11T22:10:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ensemble-cast-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E641 - Ensemble Cast Achievement Guide","description":"Geoff, Brownman, and Fragger show you how to get the Ensemble Cast and Stand-In Achievements in the new DLC \"Escalation Pack\" for Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ensemble-cast-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8590fc4-7494-4198-a51e-8a5111b74ee0/sm/ep3203.jpg","duration":596,"publication_date":"2011-05-10T19:31:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-24","changefreq":"weekly","video":[{"title":"2011:E19 - Week #62","description":"Geoff and a sickly Jack take on this week's new releases and news. Come for the game information, stay for the crazy amount of awesome intros!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d78800d7-74d4-466b-9f14-cd711b6ffbb3/sm/ep3202.jpg","duration":311,"publication_date":"2011-05-09T21:18:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-6","changefreq":"weekly","video":[{"title":"2011:E639 - Three Achievements","description":"Brownman and Fragger show you how to get the following three Achievements in the Xbox Live Arcade game, Section 8: I'm The Juggernaut, Knife to Meet You, and Use More Gun.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7da25584-6af9-4a0e-8924-b8c614b8beaf/sm/ep3199.jpg","duration":154,"publication_date":"2011-05-06T17:35:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stuntman-shooting-on-location-guide","changefreq":"weekly","video":[{"title":"2011:E638 - Stuntman, Shooting on Location Guide","description":"Brownman and Geoff show you how to get the Stuntman and Shooting on Location Achievements in Call of Duty: Black Ops - Escalation DLC - Call of the Dead for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stuntman-shooting-on-location-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e796588-ef22-4fcc-8510-651a42aa74ad/sm/ep3198.jpg","duration":131,"publication_date":"2011-05-06T16:41:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-23","changefreq":"weekly","video":[{"title":"2011:E18 - Volume 33","description":"Jack and Geoff rock out another round of Fails this week! Come for the comedy, stay for the delicious tacos.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/493befa8-3aed-458e-bb8e-8f85d043fd80/sm/ep3197.jpg","duration":242,"publication_date":"2011-05-06T16:03:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quiet-on-the-set","changefreq":"weekly","video":[{"title":"2011:E158 - Quiet on the Set","description":"Brownman and Geoff show you how to pick up the \"Quiet on the Set\" achievement in Call of Duty: Black Op's newest DLC, Escalation. Learn how to kill George Romero in Call of the Dead!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quiet-on-the-set","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b751ea91-905d-437c-8eaa-38099ff8c4cf/sm/ep3196.jpg","duration":250,"publication_date":"2011-05-05T23:50:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stand-in-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E637 - Stand-In Achievement Guide","description":"Brownman and Geoff show you how to get the elusive \"Stand-In\" Achievement in the Call of the Dead map for the new Call of Duty: Black Ops DLC, Escalation.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stand-in-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f17ede3f-9bc8-4944-aeff-95f207bb2f49/sm/ep3195.jpg","duration":600,"publication_date":"2011-05-05T22:27:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-2","changefreq":"weekly","video":[{"title":"2011:E636 - Collectible Guide Part 2","description":"TonySki and Fragger show where to find the hidden collectibles in level two (Apollon's Chariot) of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c26edb5f-a9d6-4b0b-b135-5f057bc6cfb2/sm/ep3193.jpg","duration":307,"publication_date":"2011-05-05T18:49:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-20","changefreq":"weekly","video":[{"title":"2011:E16 - Call of Duty: Black Ops - Call of the Dead","description":"Michael fights off the hordes of undead in the new \"Call of the Dead\" DLC for Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/377c3ba1-b08d-4a94-b62b-0d6153c3a7bb/sm/ep3192.jpg","duration":194,"publication_date":"2011-05-05T15:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-20","changefreq":"weekly","video":[{"title":"2011:E18 - Achievement HORSE #22","description":"Jack and Geoff were a little rushed this week, but the hilarity is always there. Map is available at http://tinyurl.com/AHHORSE22","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d3aae18-27b6-410a-a1ea-ca6324b1c2f7/sm/ep3191.jpg","duration":301,"publication_date":"2011-05-04T22:50:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-3","changefreq":"weekly","video":[{"title":"2011:E635 - Three Achievements","description":"Brownman shows how to get the following thee Achievements in Outland for Xbox Live Arcade: Environmental Exterminator, Survivor, and That's Teamwork.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98df1499-f125-4bdb-a039-0fe061b667eb/sm/ep3190.jpg","duration":235,"publication_date":"2011-05-04T22:24:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-24","changefreq":"weekly","video":[{"title":"2011:E6 - Call of the Dead","description":"Jack and Geoff take a look at this star-studded DLC for Call of Duty: Black Ops! They go over all of the achievements and more!","player_loc":"https://roosterteeth.com/embed/this-is-2011-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4bf7cf8-001f-42c8-a207-c106e380a49b/sm/ep3189.jpg","duration":317,"publication_date":"2011-05-04T18:58:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-40","changefreq":"weekly","video":[{"title":"2011:E22 - Call of the Dead: Avenged Sevenfold Easter Egg Song","description":"Geoff and Gus show you how to activate the Avenged Sevenfold easter egg song \"I'm Not Ready to Die\" in the Call of the Dead map from the new Escalation DLC pack for Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19748497-ec5d-43b4-8907-af9b210ad414/sm/ep3188.jpg","duration":187,"publication_date":"2011-05-03T16:44:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-speeding-ticket-the-tourist-part-two","changefreq":"weekly","video":[{"title":"2011:E156 - Speeding Ticket, The Tourist Part Two","description":"Fragger shows us how to get Speeding Ticket and The Tourist Achievements in Crysis 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-speeding-ticket-the-tourist-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/885c9459-aa37-4236-aca8-79bc81149d52/sm/ep3187.jpg","duration":343,"publication_date":"2011-05-03T16:15:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-20","changefreq":"weekly","video":[{"title":"2011:E18 - Week #61","description":"Jack and Geoff kick start the month of May with yet another fantastic AHWU. Enjoy!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b049659a-d2d1-4953-a7e0-53601be5dc5b/sm/ep3185.jpg","duration":294,"publication_date":"2011-05-02T21:41:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-art-of-portal-2","changefreq":"weekly","video":[{"title":"2011:E154 - The Art of Portal 2","description":"Geoff and Jack take you on a tour through the hidden rooms and areas of Portal 2, to discover some pretty cool graffiti and wall-art.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-art-of-portal-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea7fc3a6-02d0-45cc-ba78-560aac6b494b/sm/ep3184.jpg","duration":275,"publication_date":"2011-05-02T19:32:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectible-guide-part-1","changefreq":"weekly","video":[{"title":"2011:E634 - Collectible Guide Part 1","description":"TonySki shows where to find the hidden collectibles in level one (Battle for New York) of Front Mission Evolved. Getting these collectibles will help you work toward the following Achievements, Looking Great, Great Shot and Looking Well.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectible-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec596435-01e1-41a9-bdb0-3e4fa3eb2287/sm/ep3183.jpg","duration":409,"publication_date":"2011-05-02T19:27:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-19","changefreq":"weekly","video":[{"title":"2011:E17 - Volume 32","description":"Jack and Geoff make a special new Fails of the Weak! Just in time for the Royal Wedding! Say \"Hello\" to Princess Kate for us!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60363f19-8da8-4ec3-8150-f8adfd732622/sm/ep3181.jpg","duration":211,"publication_date":"2011-04-29T21:20:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-homefront-pistol-whipped-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E633 - Homefront: Pistol Whipped Achievement Guide","description":"Xngine showing you how to get the achievement Pistol Whipped in Homefront.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-homefront-pistol-whipped-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":167,"publication_date":"2011-04-29T19:32:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dynasty-warriors-7-speedy-warrior-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E632 - Dynasty Warriors 7 - Speedy Warrior Achievement Guide","description":"NightHawk673 shows us how to quickly obtain the speedy warrior achievement guide.. Also watch him fail with the audio,","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dynasty-warriors-7-speedy-warrior-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":147,"publication_date":"2011-04-29T19:32:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-super-meat-boy-tin-boy-and-iron-boy","changefreq":"weekly","video":[{"title":"2011:E153 - Super Meat Boy - Tin Boy and Iron Boy","description":"Soothsayer 57 and BioHRay flawlessly go through Chapter 1 of Super Meat Boy, picking up Tin Boy and Iron Boy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-super-meat-boy-tin-boy-and-iron-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49176934-add2-43f2-b2aa-289d0b797c0e/sm/2013912-1451423810756-maxresdefault_(7).jpg","duration":265,"publication_date":"2011-04-29T19:30:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-38","changefreq":"weekly","video":[{"title":"2011:E21 - No Hard Feelings Achievement Guide and Easter Eggs","description":"Geoff and Jack show how and where to find the \"No Hard Feelings\" Achievement, as well as a pretty cool (and SPOILERISH) easter egg.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3d7d9a2-ca52-4a90-ab8e-6f780b6b8a2f/sm/ep3171.jpg","duration":124,"publication_date":"2011-04-29T15:22:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-37","changefreq":"weekly","video":[{"title":"2011:E20 - Singing Turrets Easter Egg","description":"Geoff and Jack show you where to find a cool singing turret easter egg in Portal 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d08fbd01-c035-4105-ba80-f39ef648d00e/sm/ep3170.jpg","duration":143,"publication_date":"2011-04-29T15:11:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stage-fatalities-part-3","changefreq":"weekly","video":[{"title":"2011:E152 - Stage Fatalities Part 3","description":"Jack and Geoff finish off the Mortal Kombat 9 Stage Fatalities with Kano, Stryker, Shang Tsung, Baraka, Kabal, Raiden, Cyber Sub-Zero, Sheeva, Quan Chi and Kratos. Whew!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stage-fatalities-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2b94b67-a095-4537-8fa3-09319a777c70/sm/ep3162.jpg","duration":181,"publication_date":"2011-04-28T21:18:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stage-fatalities-part-2","changefreq":"weekly","video":[{"title":"2011:E151 - Stage Fatalities Part 2","description":"Jack and Geoff continue the stage brutality and pick up the Stage Fatalities for Jade, Mileena, Nighwolf, Cyrax, Noob Saitbot, Smoke, Sektor, Sonya and Jax. Don't touch the acid!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stage-fatalities-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ca527a7-ec51-47d5-a82e-e4415e2bbd58/sm/ep3161.jpg","duration":163,"publication_date":"2011-04-28T19:06:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-35","changefreq":"weekly","video":[{"title":"2011:E19 - P-Body Easter Egg","description":"Geoff and Jack show you where to find a slightly hidden P-Body in Chapter 8 of the single player campaign of Portal 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a386108f-a2ab-495b-a511-2a0f0a0b3c13/sm/ep3160.jpg","duration":124,"publication_date":"2011-04-28T18:16:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stage-fatalities-part-1","changefreq":"weekly","video":[{"title":"2011:E150 - Stage Fatalities Part 1","description":"Jack and Geoff start finishing off the Stage Fatalities beginning with Scorpion, Liu Kang, Kung Lao, Sub-Zero, Sindel, Ermac, Reptile, Kitana and Johnny Cage. Watch out for moving vehicles!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stage-fatalities-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3a18280f-24d9-4449-ae9d-9c989b6c4364/sm/ep3159.jpg","duration":168,"publication_date":"2011-04-28T16:35:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-14","changefreq":"weekly","video":[{"title":"2011:E15 - Scott Pilgrim Vs. The World","description":"This week, Michael takes on Scott Pilgrim... wait, or does he take on the World Great. Now I'm confused.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e2826cb-c42c-4106-941f-7d90b5b2a8a4/sm/ep3158.jpg","duration":234,"publication_date":"2011-04-28T15:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-missable-achievements-spoilers","changefreq":"weekly","video":[{"title":"2011:E625 - Three Missable Achievements (SPOILERS)","description":"SPOILER ALERT: Geoff and Jack show you how and where to get the following missable Achievements in Portal 2: Good Listener, You Made Your Point, and Pit Boss.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-missable-achievements-spoilers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43896bbc-369b-41c9-9416-a9060d92c8ea/sm/ep3157.jpg","duration":188,"publication_date":"2011-04-28T13:53:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-14","changefreq":"weekly","video":[{"title":"2011:E17 - Achievement HORSE #21","description":"Jack and Geoff continue their grueling battle against each other in this week's Achievement HORSE! All maps are available at http://tinyurl.com/ACHHORSE21","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/607059eb-a905-45e0-b561-6657884ad436/sm/ep3156.jpg","duration":512,"publication_date":"2011-04-28T00:09:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-portrait-of-a-lady-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E624 - Portrait of a Lady Achievement Guide","description":"SPOILER ALERT: Geoff and Jack show you how to get the Portrait of a Lady Achievement in Portal 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-portrait-of-a-lady-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0fcc8bb-ff2d-4260-90f8-63c89cbc7fab/sm/ep3150.jpg","duration":64,"publication_date":"2011-04-27T23:16:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-portal-2-ship-overboard-achievm","changefreq":"weekly","video":[{"title":"2011:E149 - Portal 2 - Ship Overboard Achievement","description":"Ollie shows us how to get the ship overboard achievment in portal 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-portal-2-ship-overboard-achievm","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":43,"publication_date":"2011-04-27T17:00:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-portal-2-portal-conservation-society","changefreq":"weekly","video":[{"title":"2011:E148 - Portal 2 - Portal Conservation Society","description":"Nand and BioHRay show you how to budget your Portals en route to the Portal Conservation Society achievement in Portal 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-portal-2-portal-conservation-society","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":158,"publication_date":"2011-04-27T16:38:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-smash-tv-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E619 - Smash TV Achievement Guide","description":"Geoff and Jack show you how to smash the 11 monitors in Portal 2, to get the Smash TV Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-smash-tv-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12866dfe-5f29-4db5-be0f-4466049221b8/sm/ep3143.jpg","duration":549,"publication_date":"2011-04-26T21:39:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-babalities-part-3","changefreq":"weekly","video":[{"title":"2011:E147 - Babalities Part 3","description":"Jack and Geoff finish off the Babalities in Mortal Kombat 9. This video shows you how to do the Babalities for Kano, Stryker, Shang Tsung, Baraka, Kabal, Raiden, Cyber Sub-Zero, Sheeva, Quan Chi and Kratos! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-babalities-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f8f37a7-d2f2-497a-a800-c75a21a8bae9/sm/ep3142.jpg","duration":210,"publication_date":"2011-04-26T20:50:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-babalities-part-2","changefreq":"weekly","video":[{"title":"2011:E146 - Babalities Part 2","description":"Jack and Geoff keep rattling through the Babalities in Mortal Kombat 9. This time they grab the finishers for Jade, Mileena, Nighwolf, Cyrax, Noob Saibot, Smoke, Sektor, Sonya Blade and Jax! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-babalities-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c8a65e3-406c-486b-af18-64e4ccbac238/sm/ep3141.jpg","duration":168,"publication_date":"2011-04-26T19:54:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-babalities-part-1","changefreq":"weekly","video":[{"title":"2011:E145 - Babalities Part 1","description":"Jack and Geoff continue their run of Mortal Kombat -ality videos. This time they show you how to pick up the Babalities for Scorpion, Liu Kang, Kung Lao, Sub-Zero, Sindel, Ermac, Reptile, Kitana, and Johnny Cage. So cute!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-babalities-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85322084-3b7e-4ce6-b2d2-afc46bda9b24/sm/ep3140.jpg","duration":170,"publication_date":"2011-04-26T19:23:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ship-overboard","changefreq":"weekly","video":[{"title":"2011:E143 - Ship Overboard","description":"Jack and Geoff team up and find a pretty cool achievement / Easter Egg in \"Ship Overboard.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ship-overboard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/003e42c1-9298-4506-aa43-bf5b4bc2d236/sm/ep3136.jpg","duration":83,"publication_date":"2011-04-25T22:05:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-23","changefreq":"weekly","video":[{"title":"2011:E18 - Top 10 Easter Eggs for the 360!","description":"Geoff, Gavin and Burnie go through the top 10 Easter Eggs of all time in this lovely video from Achievement Hunter. Come for the comedy, stay for the British kid.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e098fde7-c1f5-4a04-80d6-2eb9edbc114a/sm/ep3135.jpg","duration":609,"publication_date":"2011-04-22T23:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievements-in-minecraft","changefreq":"weekly","video":[{"title":"2011:E617 - Achievements in Minecraft!","description":"Kerry (Dragonface the Great) and Jack (the Jack) show off the new Achievement system added to Minecraft in the 1.5 update.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievements-in-minecraft","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db229f9d-a00e-4df6-be1b-2d18ee2e7ca1/sm/ep3133.jpg","duration":96,"publication_date":"2011-04-22T22:12:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-6","changefreq":"weekly","video":[{"title":"2011:E142 - Fatalities Part 6","description":"Jack and special guest Joel finish off the rest of the fatalities in Mortal Kombat, including the fatalities for Kratos, the PS3 exclusive character! Learn how to do it like the pros! Covered in this video are Cyber Sub-Zero, Quan Chi and Kratos!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a0753f5-529b-450a-9f45-746c55610378/sm/ep3132.jpg","duration":152,"publication_date":"2011-04-22T22:04:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-1-4-and-1-5-update","changefreq":"weekly","video":[{"title":"2011:E141 - 1.4 and 1.5 Update","description":"Kerry and Jack show you some of the new features added to Minecraft in the 1.4 and 1.5 update.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-1-4-and-1-5-update","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5bb5e94-9894-4b1c-bd93-695697961e16/sm/ep3131.jpg","duration":117,"publication_date":"2011-04-22T21:53:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-secret-koins","changefreq":"weekly","video":[{"title":"2011:E140 - Secret Koins!","description":"Jakk and Gus head to the Krypt in Mortal Kombat and find some sekret hidden koin boxes! Why don't you watkh and figure out how they did it! Kool!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-secret-koins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5c1d3c6-2d9a-4b46-8ff1-5a3e85b6c72c/sm/ep3129.jpg","duration":142,"publication_date":"2011-04-22T21:46:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-5","changefreq":"weekly","video":[{"title":"2011:E139 - Fatalities Part 5","description":"Jack and Geoff are almost finished with the new fatalities in Mortal Kombat 9. In this video they show you how to do all the fatalities for Shang Tsung, Baraka, Kabal, Raiden and Sheeva. I heart Sheeva.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72f38ce9-cf22-4e50-bb80-7c2bf0ff359b/sm/ep3128.jpg","duration":239,"publication_date":"2011-04-22T20:52:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-overclocker","changefreq":"weekly","video":[{"title":"2011:E138 - Overclocker","description":"Geoff and Jack haul butt to grab the \"Overclocker\" achievement in Portal 2. Get your running shoes on.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-overclocker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95f4f21c-9597-4237-bb61-1a535bd11894/sm/ep3127.jpg","duration":109,"publication_date":"2011-04-22T18:53:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-preservation-of-mass","changefreq":"weekly","video":[{"title":"2011:E137 - Preservation of Mass","description":"Jack and Geoff show you a way to sneak a companion cube past GlaDOS and grab the Preservation of Mass achievement in the process!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-preservation-of-mass","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5fa12dd-72b3-44d9-b8e3-be843297fe2b/sm/ep3126.jpg","duration":74,"publication_date":"2011-04-22T18:52:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-10","changefreq":"weekly","video":[{"title":"2011:E16 - Volume 31","description":"Jack and Geoff took a lovely stroll down a wooded meadow and stumbled across a poor weeping woman. When asked about what the problem was, the woman replied \"It's Friday, and I have yet to see a fail video!\" Jack and Geoff laughed heartily and then provided her with this video. Enjoy.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0258b71b-189d-4090-b2e8-69356ba11619/sm/ep3125.jpg","duration":229,"publication_date":"2011-04-22T17:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-4","changefreq":"weekly","video":[{"title":"2011:E136 - Fatalities Part 4","description":"Jack and Geoff not only you the fatalities for Sektor, Sonya, Jax, Kano and Stryker in Mortal Kombat 9, but they show you HOW TO DO THEM! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41c1f55b-4088-46c9-aaeb-b2c4e1d8dd63/sm/ep3124.jpg","duration":232,"publication_date":"2011-04-22T00:05:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-3","changefreq":"weekly","video":[{"title":"2011:E135 - Fatalities Part 3","description":"Jack and Geoff show you the insane fatalities in Mortal Kombat 9 for Mileena, Nightwolf, Cyrax, Noob and Smoke. Yup. Noob.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43eefa7e-63d7-4667-8e85-1c59af0e5d0b/sm/ep3123.jpg","duration":234,"publication_date":"2011-04-21T23:45:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-portal-still-alive-chambers-11-14-and-a13","changefreq":"weekly","video":[{"title":"2011:E134 - Portal: Still Alive: Chambers 11-14 and A13","description":"BioHRay and Nand Walk you through the Still Alive Chambers 11-14 and Advanced Chamber 13 in Portal: Still Alive on the road to the Vanilla Crazy Cake Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-portal-still-alive-chambers-11-14-and-a13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1590a16-d59e-4337-b603-02566475e22f/sm/2013912-1451423745838-maxresdefault_(2).jpg","duration":531,"publication_date":"2011-04-21T15:09:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-portal-still-alive-advanced-chambers-14-18","changefreq":"weekly","video":[{"title":"2011:E133 - Portal: Still Alive: Advanced Chambers 14-18","description":"BioHRay and Nand Walk you through the Advanced Chambers 14-18 in Portal: Still Alive to finish off the Vanilla Crazy Cake Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-portal-still-alive-advanced-chambers-14-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e746716d-7252-4ac6-81d8-9d92900129c4/sm/2013912-1451423734051-maxresdefault_(2).jpg","duration":627,"publication_date":"2011-04-21T15:09:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-splosion-man-not-a-portal-reference-part-1","changefreq":"weekly","video":[{"title":"2011:E132 - Splosion Man - Not A Portal Reference Part 1","description":"Soothsayer57 and a secret special guest walk you through the first chapter of Splosion Man, eating cakes along the way.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-splosion-man-not-a-portal-reference-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45d649ff-f7e9-44d2-b9d6-bf34019c88fa/sm/2013912-1451423699165-maxresdefault_(6).jpg","duration":324,"publication_date":"2011-04-21T15:08:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-splosion-man-not-a-portal-reference-part-2","changefreq":"weekly","video":[{"title":"2011:E131 - Splosion Man - Not a Portal Reference Part 2","description":"Soothsayer 57 and special guest Nand guide you through collecting the cakes in Chapter 2 of Splosion Man.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-splosion-man-not-a-portal-reference-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3c5546e5-a486-4973-8d31-760caecaec15/sm/2013912-1451423660230-maxresdefault_(5).jpg","duration":399,"publication_date":"2011-04-21T15:08:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-splosion-man-not-a-portal-reference-part-3","changefreq":"weekly","video":[{"title":"2011:E130 - Splosion Man - Not a Portal Reference Part 3","description":"Soothsayer57 and special guest Nand finish up Splosion Man getting the last cakes in chapter 3 of Splosion Man.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-splosion-man-not-a-portal-reference-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d2974ad-2b45-4fbc-916e-79dd3db628a7/sm/2013912-1451423631051-maxresdefault_(4).jpg","duration":464,"publication_date":"2011-04-21T15:08:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-preservation-of-mass-portal2","changefreq":"weekly","video":[{"title":"2011:E129 - Preservation of Mass","description":"A guide to getting the Preservation of Mass Achievement in Portal 2. Show how much you love the cube!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-preservation-of-mass-portal2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b7ba060-fc3b-4371-9e04-bcb92432ae4d/sm/2013912-1451423609367-maxresdefault_(3).jpg","duration":57,"publication_date":"2011-04-21T15:07:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-8","changefreq":"weekly","video":[{"title":"2011:E14 - Crysis 2","description":"Michael takes a trip through Crysis 2's airport security in this latest edition of Rage Quit.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3180bdd-1106-4089-9f9a-206dfd5ce77e/sm/ep3116.jpg","duration":164,"publication_date":"2011-04-21T14:45:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mega-multiplier-achievmeent-guide","changefreq":"weekly","video":[{"title":"2011:E616 - Mega Multiplier Achievmeent Guide","description":"Brownman shows us how to get the Mega Multiplier Achievement in Rio for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mega-multiplier-achievmeent-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82ad325-517c-4b6a-aa51-50bcc0c0a063/sm/ep3115.jpg","duration":84,"publication_date":"2011-04-21T14:15:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-8","changefreq":"weekly","video":[{"title":"2011:E16 - Achievement HORSE #20","description":"Jack and Geoff go head to head yet again in a crazy round of HORSE. Who will be victorious and who will weep on their pillow tonight All maps are available at http://tinyurl.com/AHHORSE20","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c763c0e-a497-4219-a4b4-3cbc0e4719ef/sm/ep3114.jpg","duration":467,"publication_date":"2011-04-20T23:32:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-final-transmission-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E615 - Final Transmission Achievement Guide","description":"Geoff and Gus show you how to get the Final Transmission Achievement in Advanced Test Chamber #6 of Portal 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-final-transmission-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/488eb676-9174-46ef-bc6f-df62c3f1a746/sm/ep3113.jpg","duration":75,"publication_date":"2011-04-20T20:04:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pturretdactyl-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E614 - Pturretdactyl Achievement Guide","description":"Geoff and Gus show you how to get the Pturretdactyl Achievement in Advanced Test Chamber #6 of Portal 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pturretdactyl-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6037aaa1-8f67-45e8-b235-4dae07d04586/sm/ep3112.jpg","duration":75,"publication_date":"2011-04-20T20:03:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-drop-box-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E613 - Drop Box Achievement Guide","description":"Geoff and Gus show you how to get the Drop Box Achievement in Portal 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-drop-box-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f0ffda4-eb8d-4310-9eb6-72069cfcf284/sm/ep3111.jpg","duration":69,"publication_date":"2011-04-20T20:02:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-2","changefreq":"weekly","video":[{"title":"2011:E128 - Fatalities Part 2","description":"Jack and Geoff are still in Mortal Kombat, maiming and murdering. This time they pick up the fatalities with Ermac, Reptile, Kitana, Johnny Cage and Jade. Who wants hugs","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cda453c-3190-41dd-80a7-9e1722884a50/sm/ep3109.jpg","duration":238,"publication_date":"2011-04-19T23:01:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-1","changefreq":"weekly","video":[{"title":"2011:E127 - Fatalities Part 1","description":"Jack and Geoff show you how to do Fatalities with Scorpion, Liu Kang, Kung Lao, Sub-Zero and Sindel in the brand new Mortal Kombat title available for the Xbox 360 and PS3. Finish Him!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/881100c1-aeed-44d4-8226-24e6d6aac351/sm/ep3108.jpg","duration":237,"publication_date":"2011-04-19T21:37:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-13","changefreq":"weekly","video":[{"title":"2011:E4 - Mortal Kombat","description":"Jack and Geoff check out the newest Mortal Kombat and pull out some torsos while they go over some of the cooler achievements. FINISH HIM!","player_loc":"https://roosterteeth.com/embed/this-is-2011-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7af9ad07-c811-4d71-a873-2a9a3ee653eb/sm/ep3106.jpg","duration":272,"publication_date":"2011-04-19T16:46:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-10","changefreq":"weekly","video":[{"title":"2011:E16 - Top 10 Halo Easter Eggs (of all time)","description":"Geoff and Gavin play through all of the Halo games, to capture their favorite 10 Easter Eggs from the franchise. Enjoy!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/538a474d-75de-411b-9e80-f416cbe9ad1e/sm/ep3103.jpg","duration":552,"publication_date":"2011-04-18T20:22:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-king-of-the-hill-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E609 - King of the Hill Achievement Guide","description":"Coil_36 shows you how to get the King of the Hill achievement in the Severed DLC in Dead Space 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-king-of-the-hill-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":115,"publication_date":"2011-04-15T19:29:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grind-house-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E608 - Grind House Achievement Guide","description":"Coil_36 is back in Dead Space 2 showing us one way to get the Grind House achievement in the Severed DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grind-house-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":96,"publication_date":"2011-04-15T19:28:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-early-release","changefreq":"weekly","video":[{"title":"2011:E126 - Early Release?!","description":"Jack shows you a way that you can help get Portal 2 released in STEAM before the actual ship date of next week! Holy pre-release!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-early-release","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c393310f-8577-43e3-8dc4-b8df66e73dcf/sm/ep3092.jpg","duration":74,"publication_date":"2011-04-15T16:38:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-3","changefreq":"weekly","video":[{"title":"2011:E15 - Volume 30","description":"Jack and Geoff polish off an awesome week with another awesome Fails of the Weak! Enjoy it and don't piss off Kat.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/200a466c-5789-4a32-b4b6-811a19352cbc/sm/ep3091.jpg","duration":227,"publication_date":"2011-04-15T16:02:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-2","changefreq":"weekly","video":[{"title":"2011:E13 - Ikaruga","description":"Michael attempts to play Ikaruga in this very special edition of Ikaruga.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5be919c-27e5-4f90-b0b4-ce34e51602f3/sm/ep3089.jpg","duration":293,"publication_date":"2011-04-14T19:43:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-4","changefreq":"weekly","video":[{"title":"2011:E15 - Achievement HORSE #19","description":"Jack and Geoff are back in HORSE, throwing everything they've got in to the competition. They begin this week at 7-7...who will break the tie Stay tuned to find out! All maps are available at http://tinyurl.com/AHHORSE019","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/565637d8-d9da-42a3-b583-abaa6264336c/sm/ep3088.jpg","duration":513,"publication_date":"2011-04-13T23:12:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-multiplicator-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E607 - Multiplicator Achievement Guide","description":"Brownman shows us how to get the Multiplicator Achievement in the Xbox Live Arcade game Swarm.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-multiplicator-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e8c3631-e49b-4c02-b1a3-fdb9a3af1884/sm/ep3087.jpg","duration":372,"publication_date":"2011-04-13T16:47:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/this-is-2011-7","changefreq":"weekly","video":[{"title":"2011:E3 - Magicka: Vietnam","description":"Jack and Geoff try out a Steam title in this week's This Is... They go and look at Magicka's new Vietnam DLC and do a terrible job of playing it. Enjoy!","player_loc":"https://roosterteeth.com/embed/this-is-2011-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9f2b919-ff11-49b9-986e-dc795930deca/sm/ep3086.jpg","duration":266,"publication_date":"2011-04-12T22:00:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stairway-to-heaven-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E606 - Stairway to Heaven Achievement Guide","description":"Geoff and Jack show you how to traverse the church to get the Stairway to Heaven Achievement in Homefront.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stairway-to-heaven-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c8f6e544-a562-4c2a-88ac-6798e25dc770/sm/ep3085.jpg","duration":123,"publication_date":"2011-04-12T21:56:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-5","changefreq":"weekly","video":[{"title":"2011:E124 - Gears of War: COG Tag Locations Act 5","description":"Nand shows you the location of each COG tag located in Act 5 of Gears of War","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":101,"publication_date":"2011-04-12T21:42:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-4","changefreq":"weekly","video":[{"title":"2011:E123 - Gears of War COG Tag Locations Act 4","description":"Nand shows you the location of each COG tag located in Act 4 of Gears of War","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":84,"publication_date":"2011-04-12T21:42:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-3","changefreq":"weekly","video":[{"title":"2011:E122 - Gears of War: COG Tag Locations Act 3","description":"Nand shows you the location of each COG tag located in Act 3 of Gears of War","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":184,"publication_date":"2011-04-12T21:42:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-2","changefreq":"weekly","video":[{"title":"2011:E121 - Gears of War: COG Tag Locations Act 2","description":"Nand shows you the location of each COG tag located in Act 2 of Gears of War","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gears-of-war-cog-tag-locations-act-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":159,"publication_date":"2011-04-12T21:41:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-achievements-in-torchlight","changefreq":"weekly","video":[{"title":"2011:E605 - 3 Achievements in Torchlight","description":"BrownMan shows you how to pick up 30 gamerscore in 30 minutes in the new XBLA Torchlight","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-achievements-in-torchlight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":145,"publication_date":"2011-04-12T21:30:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bleep-bloop","changefreq":"weekly","video":[{"title":"2011:E120 - Bleep bloop!","description":"Jack and Geoff walk you through the most surreal achievement they've ever had the pleasure of making a guide for. BLEEP BLOOP!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bleep-bloop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d624ae9b-1d76-44bd-bbc2-e379aecfcf30/sm/ep3077.jpg","duration":181,"publication_date":"2011-04-11T17:00:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-3-9-to-3-15","changefreq":"weekly","video":[{"title":"2011:E119 - 3 Star Walkthrough Levels 3-9 to 3-15","description":"Geoff and Jack show you how to three star eight levels of Angry Birds Rio (levels 3-9, 3-10, 3-11, 3-12, 3-13, 3-14, 3-15).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-3-9-to-3-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41582245-9b2f-4cbb-90b0-c15b05ea11e6/sm/ep3076.jpg","duration":288,"publication_date":"2011-04-11T16:18:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-time-burnie-vs-geoff","changefreq":"weekly","video":[{"title":"2011:E118 - Game Time: Burnie vs Geoff","description":"Burnie shows Geoff how to play the classic game: Utopia, in the Xbox 360 Arcade Room.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-time-burnie-vs-geoff","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90e2b1d0-1d33-4f2c-b3c6-cbb45bf0c38f/sm/ep3074.jpg","duration":2385,"publication_date":"2011-04-08T21:31:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011","changefreq":"weekly","video":[{"title":"2011:E14 - Volume 29","description":"Jack and Geoff are back looking at some of the funniest fails in the world of Halo: Reach. You know you love it!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a84d2fb6-f4ff-4789-bc0a-ebcba46dcea1/sm/ep3073.jpg","duration":235,"publication_date":"2011-04-08T21:00:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-5","changefreq":"weekly","video":[{"title":"2011:E601 - Three Achievements","description":"Brownman shows how to get the following three Achievements in the Xbox Live Arcade game \"Ghostbusters - Sanctum of Slime\": Rockstar, Speed Demon, and Colorblind.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05fe1c04-5318-47f8-a1b1-2a7976cc3a29/sm/ep3070.jpg","duration":137,"publication_date":"2011-04-08T15:44:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-1-9-to-1-15","changefreq":"weekly","video":[{"title":"2011:E117 - 3 Star Walkthrough Levels 1-9 to 1-15","description":"Geoff and Griffon show you how to three star the following levels in Angry Birds Rio: 1-9, 1-10, 1-11, 1-12, 1-13, 1-14, 1-15.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-1-9-to-1-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f63589b3-ea79-485b-b96b-ab74c1e76569/sm/ep3069.jpg","duration":247,"publication_date":"2011-04-07T20:48:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-4","changefreq":"weekly","video":[{"title":"2011:E116 - Hidden Wrecks (Hawaii Pt 4)","description":"TonySki and Brownman show where to find the 10 hidden wrecks in Hawaii (Part Four) for Test Drive Unlimited 2, and get the Tyrannosaurus Wrecks Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2910cfc0-59e5-4684-ad16-60a595b810a7/sm/ep3067.jpg","duration":357,"publication_date":"2011-04-07T18:43:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-50","changefreq":"weekly","video":[{"title":"2011:E12 - Apache Air Assault","description":"Michael takes a stab at Apache Air Assault in this week's Rage Quit.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b86c8bc8-8d31-498d-a960-24c2df806a52/sm/ep3065.jpg","duration":197,"publication_date":"2011-04-07T16:06:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-3-1-to-3-8","changefreq":"weekly","video":[{"title":"2011:E115 - 3 Star Walkthrough Levels 3-1 to 3-8","description":"Geoff and Jack show you how to three star eight levels of Angry Birds Rio (levels 3-1, 3-2, 3-3, 3-4, 3-5, 3-6, 3-7, 3-8).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-3-1-to-3-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b9dc460-455d-4e4e-9a86-d00d7b1da196/sm/ep3064.jpg","duration":331,"publication_date":"2011-04-07T14:01:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-game-reviewers-will-be-pleased","changefreq":"weekly","video":[{"title":"2011:E114 - Game Reviewers Will Be Pleased","description":"Jack and Geoff show you how to unlock the \"Pretty Princess\" difficulty in The Dishwasher: Vampire Smile, now available for XBLA. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-game-reviewers-will-be-pleased","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5bb2e201-f66d-4bab-a83a-b8ca954ec2ca/sm/ep3063.jpg","duration":161,"publication_date":"2011-04-06T22:21:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-47","changefreq":"weekly","video":[{"title":"2011:E14 - Achievement HORSE #18","description":"Jack and Geoff are back in HORSE. Will Jack tie up the score 7-7 Or will Geoff increase his lead Only one way to find out!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-47","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/947d7fc1-4ea6-4a31-af80-b399a3e73f93/sm/ep3062.jpg","duration":440,"publication_date":"2011-04-06T20:50:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-3","changefreq":"weekly","video":[{"title":"2011:E113 - Hidden Wrecks (Hawaii Pt 3)","description":"TonySki and Brownman show where to find the 10 hidden wrecks in Hawaii (Part Three) for Test Drive Unlimited 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9920090-0912-4300-8fec-012922ed4a0c/sm/ep3061.jpg","duration":356,"publication_date":"2011-04-06T20:25:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-portal-still-alive-advanced-chambers-6-10","changefreq":"weekly","video":[{"title":"2011:E112 - Portal: Still Alive: Advanced Chambers 6-10","description":"BioHRay and Nand Walk you through the advanced chambers 6-10 in Portal: Still Alive on the road to the Vanilla Crazy Cake (Cupcake, and Fruitcake) Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-portal-still-alive-advanced-chambers-6-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f22fc0a-74ed-4fc9-9b78-9ec405b9ccf3/sm/2013912-1451423438921-maxresdefault_(2).jpg","duration":449,"publication_date":"2011-04-06T20:12:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-historian-achievement-guide-part-four","changefreq":"weekly","video":[{"title":"2011:E599 - Historian Achievement Guide Part Four","description":"Geoff and Jack show you where to find the hidden newspapers in \"The Wall\", the fourth level of Homefront. There are 61 hidden collectibles required to get the Achievement \"Historian.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-historian-achievement-guide-part-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0add4fb-9f3f-4dcf-bc61-93578ec06329/sm/ep3059.jpg","duration":131,"publication_date":"2011-04-06T18:25:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-portal-still-alive-advanced-chambers-1-5","changefreq":"weekly","video":[{"title":"2011:E111 - Portal: Still Alive: Advanced Chambers 1-5","description":"BioHRay and Nand walk you through the first 5 advanced chambers in Portal: Still Alive on the road to the Vanilla Crazy Cake (Cupcake, and Fruitcake) Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-portal-still-alive-advanced-chambers-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c659c6cd-d471-4975-8daa-667831ba51db/sm/2013912-1451423419982-maxresdefault_(2).jpg","duration":283,"publication_date":"2011-04-06T17:42:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-answer-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E597 - The Answer Achievement Guide","description":"Brownman shows us how to get the Achievement \"The Answer\" in the XBLA game Swarm.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-answer-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e7a368b-5020-4f92-8c4e-c1ee2695fd90/sm/ep3055.jpg","duration":214,"publication_date":"2011-04-05T15:07:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-david-rejected-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E596 - David Rejected Achievement Guide","description":"Geoff and Jack show you how to get the \"David Rejected\" Achievement in Homefront's fourth level: The Wall.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-david-rejected-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f17f1dd2-e028-4003-a630-fd39d97efb2a/sm/ep3054.jpg","duration":130,"publication_date":"2011-04-05T14:04:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wwe-all-stars-winner-by-default","changefreq":"weekly","video":[{"title":"2011:E110 - WWE All Stars - Winner By Default","description":"The two sweetest words in the english language, and SuperGrover5 is gonna show you how to get it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wwe-all-stars-winner-by-default","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":103,"publication_date":"2011-04-04T21:22:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crysis-2-collectables-part-2","changefreq":"weekly","video":[{"title":"2011:E109 - Crysis 2 Collectables Part 2","description":"Joschi helps the achievement hunters yet again sift through more collectables in Crysis 2 now tackling another part.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crysis-2-collectables-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":463,"publication_date":"2011-04-04T21:19:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crysis-2-collectables-part-1","changefreq":"weekly","video":[{"title":"2011:E108 - Crysis 2 Collectables Part 1","description":"Joschi (Yes, it is pronounced 'Yoshi'.) is here, and helping all of you hunters out there where to get various collectables in Crysis 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crysis-2-collectables-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":570,"publication_date":"2011-04-04T21:06:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-shut-star-up","changefreq":"weekly","video":[{"title":"2011:E107 - Shut Star Up","description":"Butters 39 teaches you how to get the vaugly discripted achievement \"Shut Star Up\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-shut-star-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e9bfe06-1abb-4818-aab5-ce53c597dad3/sm/2013912-1451423345531-maxresdefault_(1).jpg","duration":68,"publication_date":"2011-04-04T20:45:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-2","changefreq":"weekly","video":[{"title":"2011:E106 - Hidden Wrecks (Hawaii Pt 2)","description":"TonySki and Brownman show where to find the 10 hidden wrecks in Hawaii (Part Two) for Test Drive Unlimited 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c9a8f3e5-f18c-42e5-b559-788afe849af0/sm/ep3046.jpg","duration":368,"publication_date":"2011-04-04T18:16:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-chess","changefreq":"weekly","video":[{"title":"2011:E105 - Halo Chess!","description":"Jack and Geoff show off this new gametype that Bungie was nice enough to let them launch! No April Fools here!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-chess","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84112cad-a837-4d27-98ca-4cfe586766ef/sm/ep3045.jpg","duration":175,"publication_date":"2011-04-04T16:54:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-historian-achievement-guide-part-three","changefreq":"weekly","video":[{"title":"2011:E595 - Historian Achievement Guide Part Three","description":"Geoff and Jack show you where to find the hidden newspapers in \"Fire Sale\", the third level of Homefront. There are 61 hidden collectibles required to get the Achievement \"Historian.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-historian-achievement-guide-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f728b9e-181a-4bc2-917c-8e6c31f69b32/sm/ep3044.jpg","duration":155,"publication_date":"2011-04-04T15:25:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-44","changefreq":"weekly","video":[{"title":"2011:E13 - Volume 28","description":"Achievement Hunter Fails of the Weak Week Volume 28 Twenty Eight Does Anyone Really Pay Attention To These Tags","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37dd2581-67b0-47d9-943e-dafd76280f4c/sm/ep3036.jpg","duration":294,"publication_date":"2011-04-01T18:46:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-2-9-to-2-15","changefreq":"weekly","video":[{"title":"2011:E103 - 3 Star Walkthrough Levels 2-9 to 2-15","description":"Geoff and Jack show you how to three star eight levels of Angry Birds Rio (levels 2-9, 2-10, 2-11, 2-12, 2-13, 2-14, and 2-15).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-2-9-to-2-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/534614a0-9012-474e-b04c-e998e918c0dd/sm/ep3035.jpg","duration":301,"publication_date":"2011-04-01T15:59:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-2-1-to-2-8","changefreq":"weekly","video":[{"title":"2011:E102 - 3 Star Walkthrough Levels 2-1 to 2-8","description":"Geoff and Jack show you how to three star eight levels of Angry Birds Rio (levels 2-1, 2-2, 2-3, 2-4, 2-5, 2-6, 2-7, 2-8).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-2-1-to-2-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c8f7781-fc90-48a1-84e4-9baac7d5a766/sm/ep3034.jpg","duration":289,"publication_date":"2011-04-01T15:56:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-1","changefreq":"weekly","video":[{"title":"2011:E101 - Hidden Wrecks (Hawaii Pt 1)","description":"TonySki and Brownman show where to find the 10 hidden wrecks in Hawaii (Part One) for Test Drive Unlimited 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-wrecks-hawaii-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc3aba4e-2421-440c-9a41-e581760a882c/sm/ep3029.jpg","duration":342,"publication_date":"2011-03-31T18:47:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-46","changefreq":"weekly","video":[{"title":"2011:E11 - N+","description":"LtMkilla takes on another 360 arcade game. This time it's N+.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-46","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4686c520-63fa-4cbb-b452-e62084327a63/sm/ep3028.jpg","duration":251,"publication_date":"2011-03-31T17:17:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ok-you-can-pursue-lu-bu","changefreq":"weekly","video":[{"title":"2011:E100 - OK, you can pursue Lu Bu","description":"Jack and Geoff head back to ancient China and pursue the \"OK, you can pursue Lu Bu\" achievement in Dynasty Warriors 7.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ok-you-can-pursue-lu-bu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bfba634-a97e-4383-8aed-783473fc8318/sm/ep3027.jpg","duration":191,"publication_date":"2011-03-31T17:17:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-43","changefreq":"weekly","video":[{"title":"2011:E13 - Achievement HORSE #17","description":"Jack and Geoff are back in Achievement HORSE. Will Jack start his attack on Geoff and break the 5-7 record Watch and find out! All the maps are available at http://tinyurl.com/AHHORSE017","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a0a7f71-068c-45e7-a5dc-a93cc4c2bc33/sm/ep3025.jpg","duration":492,"publication_date":"2011-03-30T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-food-for-thought-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E594 - Food for Thought Achievement Guide","description":"Jack and Geoff show you how to get the Food for Thought Achievement in Crysis 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-food-for-thought-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d80e1ad-4a85-4083-a813-69d7e452d2fe/sm/ep3024.jpg","duration":91,"publication_date":"2011-03-30T17:51:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-king-of-the-hill","changefreq":"weekly","video":[{"title":"2011:E98 - King of the Hill","description":"Brownman is back in Swarm showing you how to pick up the \"King of the Hill\" achievement. How is the weather up there","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-king-of-the-hill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa5f7dad-898d-49fd-895b-fa2008eb02fe/sm/ep3018.jpg","duration":199,"publication_date":"2011-03-29T16:20:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-41","changefreq":"weekly","video":[{"title":"2011:E13 - Week #56","description":"Geoff pretty much doesn't work at the office any more, so Jack is back yet again, flying solo on AHWU. This week he goes over Need for Speed: Shift 2, WWE All-Stars, Dynasty Warriors 7 and more! Look for super special cameos.","player_loc":"https://roosterteeth.com/embed/ahwu-2011-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/432852c9-fe2b-4d70-a441-4ef66f43ee6c/sm/ep3017.jpg","duration":214,"publication_date":"2011-03-28T22:57:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-master-of-disaster-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E591 - Master of Disaster Achievement Guide","description":"NightHawk673 shows us 2 ways to achieve Master of Disaster in Bulletstorm.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-master-of-disaster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":135,"publication_date":"2011-03-25T18:32:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-40","changefreq":"weekly","video":[{"title":"2011:E12 - Volume 27","description":"Jack and Geoff bring you even more super awesome fails in Halo: Reach. Today we are divisible by 9!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a8bd791-ccc1-46cb-a26f-d50f6a18ec15/sm/ep3013.jpg","duration":264,"publication_date":"2011-03-25T18:31:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-72","changefreq":"weekly","video":[{"title":"2011:E15 - Dragon Age: Origins Easter Egg","description":"There's a nice little easter egg in the Kasumi: Stolen Memories DLC. Bioware decided to be awesome and add in an iconic creature from their other RPG inside Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-72","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":49,"publication_date":"2011-03-25T18:30:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pineapples-in-smugglers-den-part-2","changefreq":"weekly","video":[{"title":"2011:E97 - Pineapples in Smuggler's Den (Part 2)","description":"Jack and Geoff are back, finding more hidden pineapples in Angry Birds: Rio. This time they get the second half of the hidden pineapples in Smuggler's Den. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pineapples-in-smugglers-den-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42cbd3a8-c382-4bbf-a444-bf4cd3a80e09/sm/ep3009.jpg","duration":158,"publication_date":"2011-03-25T16:52:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-easy-come-easy-go","changefreq":"weekly","video":[{"title":"2011:E96 - Easy Come, Easy Go","description":"Jack and Geoff show you the finer skill of giving someone money and then immediately stealing it back. Grab the \"Easy Come, Easy Go\" achievement in Assassin's Creed: Brotherhood. This is a DaVinci Disappearance DLC achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-easy-come-easy-go","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a97780d1-3a54-44db-8a2f-1e72f798feeb/sm/ep3008.jpg","duration":66,"publication_date":"2011-03-25T16:22:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sacrificial-lamb-you-are-on-fire-in-a-hurry","changefreq":"weekly","video":[{"title":"2011:E95 - Sacrificial Lamb, You Are On Fire, In a Hurry","description":"Brownman takes on the SWARM and picks up three achievements in this brand new XBLA title. He grabs \"Sacrificial Lamb\" \"You Are On Fire,\" and \"In A Hurry.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sacrificial-lamb-you-are-on-fire-in-a-hurry","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30d0fdd1-149e-412b-b043-0fa8025efde5/sm/ep3007.jpg","duration":155,"publication_date":"2011-03-24T21:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-40","changefreq":"weekly","video":[{"title":"2011:E10 - QWOP","description":"Michael is back and bringing his RAGE to the most requested Rage Quit game ever, QWOP. Will he survive","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3912398-421b-4716-ba7c-7b2944c7693a/sm/ep3006.jpg","duration":231,"publication_date":"2011-03-24T19:57:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-uh-oh-and-it-aint-like-dusting-crops-boy","changefreq":"weekly","video":[{"title":"2011:E94 - Uh Oh! & It ain't like dusting crops boy","description":"Michael and Geoff get bricky in Lego Star Wars III: The Clone Wars and pick up two space-related achievements. \"UH OH!\" and \"It ain't like dusting crops boy.\" Whew doggy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-uh-oh-and-it-aint-like-dusting-crops-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b4e508e-2ccd-4f31-865b-9b47738339a5/sm/ep3005.jpg","duration":114,"publication_date":"2011-03-24T19:24:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pineapples-in-smugglers-den-part-1","changefreq":"weekly","video":[{"title":"2011:E93 - Pineapples in Smuggler's Den (Part 1)","description":"Jack and Geoff head back to Rio and grab the first half of the hidden pineapples in Angry Birds Rio! (I hear she dances on the sand.)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pineapples-in-smugglers-den-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89b3ecbf-6cbe-46f7-b8db-90d1bdd34e83/sm/ep3004.jpg","duration":199,"publication_date":"2011-03-24T16:24:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-36","changefreq":"weekly","video":[{"title":"2011:E12 - Achievement HORSE #16","description":"Geoff and Michael from Rage Quit butt heads together and go at it in Achievement Horse. WHO WILL WIN THIS EPIC BATTLE All maps available at http://tinyurl.com/AHHORSE16","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1edcedb1-a5fb-4e06-8916-23c30a780f6a/sm/ep3003.jpg","duration":439,"publication_date":"2011-03-23T22:13:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-another-look-at-horse","changefreq":"weekly","video":[{"title":"2011:E92 - Another Look at HORSE","description":"Take a look at some more raw footage of the HORSE episode featuring Rage Quit's Michael. He's a sport about losing stuff.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-another-look-at-horse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/478f64cb-b9e8-40a8-bf0c-542444efc8c1/sm/ep3002.jpg","duration":250,"publication_date":"2011-03-22T21:31:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-1-1-to-1-8","changefreq":"weekly","video":[{"title":"2011:E91 - 3 Star Walkthrough Levels 1-1 to 1-8","description":"Geoff and Griffon show you how to three star the first eight levels of Angry Birds Rio (levels 1-1, 1-2, 1-3, 1-4, 1-5, 1-6, 1-7, 1-8).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-3-star-walkthrough-levels-1-1-to-1-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b17c9ed-2ed8-4b10-ac04-4f8bff6f5060/sm/ep3001.jpg","duration":187,"publication_date":"2011-03-22T18:57:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rocketman","changefreq":"weekly","video":[{"title":"2011:E90 - Rocketman","description":"Michael and Geoff pretend to be Elton John and grab the Rocketman achievement in Battle: Los Angeles for XBLA. Fly away with me!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rocketman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe9785a9-ee3a-45b8-81bd-5d350175f124/sm/ep3000.jpg","duration":63,"publication_date":"2011-03-22T17:26:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grand-theft-dressage","changefreq":"weekly","video":[{"title":"2011:E89 - Grand Theft Dressage","description":"Jack and Geoff go horse-dancing in Assassin's Creed: Brotherhood and pick up the new DaVinci Disappearance DLC achievement \"Grand Theft Dressage.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grand-theft-dressage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/243e85ae-a76f-4a93-81a6-8fa125b45689/sm/ep2999.jpg","duration":98,"publication_date":"2011-03-22T17:02:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-roller","changefreq":"weekly","video":[{"title":"2011:E88 - High Roller","description":"Jack and Michael show you how to pick up the High Roller achievement in Assassin's Creed: Brotherhood. This is a new DLC achievement from the DaVinci Disappearance.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-roller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff19e2bb-fdf6-44ba-a374-37222e12664e/sm/ep2997.jpg","duration":163,"publication_date":"2011-03-22T16:21:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-36","changefreq":"weekly","video":[{"title":"2011:E12 - Week #55","description":"Jack, Geoff and special guest Michael (star of Rage Quit) provide you with some fascinating news and new release dates for your favorite titles! OMG! Holy crap! It's Monday, Monday, gotta get AHWU on Monday!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f6be6af-b009-4e8f-9bfd-f8074a54d91e/sm/ep2996.jpg","duration":254,"publication_date":"2011-03-21T22:48:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-wrecks-ibiza-pt-2","changefreq":"weekly","video":[{"title":"2011:E87 - Hidden Wrecks (Ibiza Pt 2)","description":"TonySki and Brownman show where to find 10 hidden wrecks in Ibiza (Part Two) for Test Drive Unlimited 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-wrecks-ibiza-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de1e81a4-845b-4aff-a8be-109d6d42553d/sm/ep2993.jpg","duration":480,"publication_date":"2011-03-21T16:15:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-historian-achievement-guide-part-two","changefreq":"weekly","video":[{"title":"2011:E586 - Historian Achievement Guide Part Two","description":"Geoff and Jack show you where to find the hidden newspapers in \"Freedom\", the second level of Homefront. There are 61 hidden collectibles required to get the Achievement \"Historian.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-historian-achievement-guide-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41fa9fb4-5622-4bf6-bd7a-565c63c63b05/sm/ep2992.jpg","duration":278,"publication_date":"2011-03-21T14:38:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-wrecks-ibiza-pt-1","changefreq":"weekly","video":[{"title":"2011:E86 - Hidden Wrecks (Ibiza Pt 1)","description":"TonySki and Brownman show where to find the 10 hidden wrecks in Ibiza (Part One) for Test Drive Unlimited 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-wrecks-ibiza-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c541a02c-17ea-4ace-aeb4-92fc1001a6e6/sm/ep2990.jpg","duration":635,"publication_date":"2011-03-18T20:31:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-good-use-of-cover-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E585 - Good Use of Cover Achievement Guide","description":"Jack and Geoff are back for Fails of the Weak Number 26! Come for the fails, stay for the hilarity!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-good-use-of-cover-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/444223d4-3534-4e0a-b883-670ba0b79b09/sm/ep2989.jpg","duration":148,"publication_date":"2011-03-18T19:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-34","changefreq":"weekly","video":[{"title":"2011:E11 - Volume 26","description":"Jack and Geoff are back for Fails of the Weak Number 26! Come for the fails, stay for the hilarity!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-34","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2c6df64-bd12-4c27-af27-19fe338bc26f/sm/ep2988.jpg","duration":238,"publication_date":"2011-03-18T18:53:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-33","changefreq":"weekly","video":[{"title":"2011:E9 - Bulletstorm","description":"LtMkilla attempts to Kill With Skill in the newly released game Bulletstorm.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1adc5714-2500-4e07-965b-59d55b968680/sm/ep2985.jpg","duration":174,"publication_date":"2011-03-17T18:13:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-xbox-live-labs-achievements-and-avatar-awards","changefreq":"weekly","video":[{"title":"2011:E582 - Xbox Live Labs: Achievements and Avatar Awards","description":"Geoff and Jack show you how to get three \"0\" point achievements, and three avatar awards for Xbox Live.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-xbox-live-labs-achievements-and-avatar-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d88e8309-838f-4f2b-b5b9-dd3997f3f6c6/sm/ep2984.jpg","duration":143,"publication_date":"2011-03-17T16:08:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-33","changefreq":"weekly","video":[{"title":"2011:E11 - Achievement HORSE #15","description":"Jack and Geoff are back together again, rocking out to the golden oldies. Or playing HORSE, whichever makes more sense. All maps are available at http://tinyurl.com/ACHHORSE15","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-33","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5879ff2e-d8bc-476c-80c1-f48093e54474/sm/ep2983.jpg","duration":449,"publication_date":"2011-03-16T23:35:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-historian-achievement-guide-part-one","changefreq":"weekly","video":[{"title":"2011:E581 - Historian Achievement Guide Part One","description":"Geoff and Jack show you where to find the hidden newspapers in l\"Why We Fight\", the first level of Homefront. There are 61 hidden collectibles required to get the Achievement \"Historian.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-historian-achievement-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71523980-b9ff-47c3-9629-e7f5c7be4d25/sm/ep2982.jpg","duration":166,"publication_date":"2011-03-16T20:08:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-give-him-the-stick-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E580 - Give Him the Stick Achievement Guide","description":"Geoff and Jack show you how to get the \"Give Him the Stick\" Achievement in the first level of Homefront, Why We Fight.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-give-him-the-stick-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/081b2e39-e3a4-428c-b404-db95b114878b/sm/ep2981.jpg","duration":183,"publication_date":"2011-03-15T21:08:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-at-pax-east","changefreq":"weekly","video":[{"title":"2011:E579 - Achievement Hunter at PAX East","description":"Jack takes you on the wild ride that is PAX East in this quick overview video showing what a day in the life of Achievement Hunter is like. Enjoy! (Get your free drink tickets at the door.)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-at-pax-east","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5009929a-4c6c-4b61-bbdc-1962e459719c/sm/ep2980.jpg","duration":150,"publication_date":"2011-03-15T19:10:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-clowning-around-dlc-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E578 - Clowning Around DLC Achievement Guide","description":"Fragger and Jack show you how to get the Clowning Around Achievement in the DaVinci Disappearance DLC for the Xbox 360 version of Assassin's Creed Brotherhood.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-clowning-around-dlc-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47ddeeb1-22c2-4337-ab18-161e574f137e/sm/ep2979.jpg","duration":260,"publication_date":"2011-03-15T18:47:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-32","changefreq":"weekly","video":[{"title":"2011:E11 - Week #54","description":"Jack is back (still solo) to bring you news for Pi week! Listen to his PAX-torn voice as he talks about this week's games and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-32","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3ecc1c0-46d6-4e0b-bcc8-8a912d6d99dc/sm/ep2978.jpg","duration":188,"publication_date":"2011-03-14T21:32:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-30","changefreq":"weekly","video":[{"title":"2011:E10 - Volume 25","description":"Geoff and Jack are a quarter of the way to their 100th episode of Fails of the Weak! Holy crapballs!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4edd0f29-4c0a-402a-8376-32940a9dc4ba/sm/ep2976.jpg","duration":211,"publication_date":"2011-03-11T08:03:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-darkness-falls-and-explorer","changefreq":"weekly","video":[{"title":"2011:E83 - Darkness Falls & Explorer","description":"Jack and Geoff waste your time with a super easy achievement guide for Dragon Age 2! You know you love hearing them complain about things!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-darkness-falls-and-explorer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/892609d0-2815-4887-b42f-436f8302bc85/sm/ep2974.jpg","duration":124,"publication_date":"2011-03-10T21:40:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-enchantment-overload-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E577 - Enchantment Overload Achievement Guide","description":"Geoff and Jack show you how to get the tricky \"Enchantment Overload\" Achievement in the Xbox Live Arcade version of Torchlight.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-enchantment-overload-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/946c251f-742b-461a-944f-982b7716e3dd/sm/ep2973.jpg","duration":114,"publication_date":"2011-03-10T19:53:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lamborghini-untamed","changefreq":"weekly","video":[{"title":"2011:E82 - Lamborghini Untamed","description":"Tonyski and Jack walk you through the new Lamborghini DLC for Need for Speed: Hot Pursuit and pick up a few achievements in the process!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lamborghini-untamed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce191a3e-b3a8-4174-9354-29490fef20e6/sm/ep2972.jpg","duration":206,"publication_date":"2011-03-10T17:05:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-31","changefreq":"weekly","video":[{"title":"2011:E8 - Guitar Hero Metallica","description":"LtMkilla tries his luck at online multiplayer in Guitar Hero: Metallica. Does he have what it takes","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-31","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7a4d10b-f3c8-4572-9eb8-a0aa298a71d0/sm/ep2971.jpg","duration":141,"publication_date":"2011-03-10T15:40:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-28","changefreq":"weekly","video":[{"title":"2011:E10 - Achievement HORSE #14","description":"Jack had to replace Geoff yet again, so this week he brings in Rage Quit's very own Michael. Prepare to be blown away! All maps are available at http://tinyurl.com/AHHORSE14","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b50df0e-083b-433e-b7e3-a5325b77f204/sm/ep2970.jpg","duration":382,"publication_date":"2011-03-09T19:42:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-floating-games","changefreq":"weekly","video":[{"title":"2011:E81 - Floating Games","description":"Jack shows you once again a secret part of Achievement Hunter! Find out how the floating games work and why Griffon is a Warlock.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-floating-games","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97d05372-81e4-44b4-9ff6-45718ed19d18/sm/ep2968.jpg","duration":86,"publication_date":"2011-03-08T21:20:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-expansion-pack-1-dlc-achievements","changefreq":"weekly","video":[{"title":"2011:E576 - Expansion Pack 1 DLC Achievements","description":"BrownMan is back in Deadliest Warrior picking up the new Expansion Pack 1 DLC achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-expansion-pack-1-dlc-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":277,"publication_date":"2011-03-08T16:08:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-71","changefreq":"weekly","video":[{"title":"2011:E14 - Talking Dolls Easter Egg","description":"Nand shows you the strange voices to be found in the Ascension Zombie map from the First Strike DLC of Call of Duty: Black Ops","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-71","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":84,"publication_date":"2011-03-08T15:45:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-70","changefreq":"weekly","video":[{"title":"2011:E13 - First Strike DLC Zombie Music Easter Egg","description":"Nand shows you how to unlock the music in \"Ascension\" from the First Strike DLC in Call of Duty: Black Ops","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-70","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":117,"publication_date":"2011-03-08T15:43:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-27","changefreq":"weekly","video":[{"title":"2011:E10 - Week #53","description":"Jack is still solo this week for AHWU but he has a request for help! Watch and learn how you can be a part of AHWU in the future!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17541645-5338-49e4-af01-bc9ea7e4d0af/sm/ep2961.jpg","duration":278,"publication_date":"2011-03-07T21:03:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ship-shape","changefreq":"weekly","video":[{"title":"2011:E80 - Ship Shape","description":"Jack and Dragonface continue their exploration of the Severed DLC for Dead Space 2. This time they grab the \"Ship Shape\" achievement! Ka-boom!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ship-shape","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e03ddc2-d95d-4a5c-b63c-856d1687c5f4/sm/ep2960.jpg","duration":58,"publication_date":"2011-03-07T18:36:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-peng-me-again","changefreq":"weekly","video":[{"title":"2011:E79 - Peng Me Again","description":"Jack and Dragonface grab the elusive Peng trophy yet again and nab the \"Peng Me Again\" achievement in the DLC \"Severed\" for Dead Space 2! LEXXINNEEE!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-peng-me-again","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f90c1c0a-8b8d-4413-9445-c40a4cffce75/sm/ep2959.jpg","duration":103,"publication_date":"2011-03-07T18:35:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-26","changefreq":"weekly","video":[{"title":"2011:E9 - Volume 24","description":"Jack and Geoff are back with more Fails of the Weak. This week watch as comedic things happen in the popular video game \"Halo.\" I hear the kids like it.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d3cfb1b-62a9-46d9-8fc3-f22fffbcae61/sm/ep2957.jpg","duration":232,"publication_date":"2011-03-04T20:16:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-champion-emerges-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E572 - A Champion Emerges Achievement Guide","description":"NOTE: There are probably spoilers in this video.\r\nGeoff and Jack show you how to get the tricky \"A Champion Emerges\" Achievement in Fight Night Champion for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-champion-emerges-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0bf2c64-1542-4d9f-a2fa-04e6f9ebd5d9/sm/ep2956.jpg","duration":230,"publication_date":"2011-03-04T16:43:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-awakening-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E571 - The Awakening Achievement Guide","description":"Geoff and Jack show you how to dick punch your way to the Achievement in Fight Night Champion \"The Awakening.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-awakening-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd7e6595-9718-4675-abd5-6f2902e19bc6/sm/ep2955.jpg","duration":116,"publication_date":"2011-03-03T21:37:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-26","changefreq":"weekly","video":[{"title":"2011:E7 - The Impossible Game","description":"LtMkilla takes a stab at the popular indie title \"The Impossible Game\" on Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04425c95-9651-470f-83fb-2bda35299770/sm/ep2954.jpg","duration":227,"publication_date":"2011-03-03T17:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-26","changefreq":"weekly","video":[{"title":"2011:E9 - Achievement HORSE #13","description":"Jack and Geoff square off in this battle to see who will re-take the lead in overall HORSE score. Who will win Find out now! All maps are available at http://tinyurl.com/AHHORSE13","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbbe1afd-dda9-4ef6-9adf-218761dd8813/sm/ep2953.jpg","duration":519,"publication_date":"2011-03-03T01:26:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-turnabout-if-fair-play-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E570 - Turnabout If Fair Play Achievement Guide","description":"Geoff and Jack show you how to knockout Keyshawn Hayes to get the Turnabout If Fair Play Achievement in Fight Night Champion for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-turnabout-if-fair-play-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24249090-82e6-498e-a987-d3e99910d285/sm/ep2951.jpg","duration":119,"publication_date":"2011-03-01T22:17:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-geoff-moves-a-lot","changefreq":"weekly","video":[{"title":"2011:E78 - Geoff Moves a Lot","description":"Jack shows you a peek at Geoff's mad skills at video gaming. By \"mad skills\" I mean \"he moves a lot while playing.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-geoff-moves-a-lot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4af47531-c629-4b59-8f03-953fac5f6818/sm/ep2950.jpg","duration":102,"publication_date":"2011-03-01T20:57:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-space-pirate-and-straight-edge","changefreq":"weekly","video":[{"title":"2011:E77 - Space Pirate & Straight Edge","description":"Jack and Geoff get two alcohol (well...bottle) related achievements in Bulletstorm. Join them as they grab Space Pirate and Straight Edge!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-space-pirate-and-straight-edge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/96452db5-42c7-4290-ada5-5b5f01b62011/sm/ep2949.jpg","duration":102,"publication_date":"2011-03-01T20:19:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-44","changefreq":"weekly","video":[{"title":"2011:E12 - Red Ring of Doom Easter Egg","description":"Jack and Geoff combine together to bring you this wacky Easter Egg from Bulletstorm. I think we've all experienced this at some point.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-44","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4b7be8f-9f8c-43d7-aa44-b67b192b435c/sm/ep2948.jpg","duration":59,"publication_date":"2011-03-01T20:16:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-25","changefreq":"weekly","video":[{"title":"2011:E9 - Week #52","description":"Celebrate with us as we ring in our first year of AHWU. Join Jack as he goes through this week's releases and news and shares some community-submitted clips! We love you all!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db00763e-bd06-49d0-9bf8-4b79fa5a75d4/sm/ep2947.jpg","duration":320,"publication_date":"2011-02-28T21:54:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-7-hidden-items","changefreq":"weekly","video":[{"title":"2011:E75 - Act 7 Hidden Items","description":"Jack and Dragonface polish off the hidden Electroflies and Newsbots in Act 7 of Bulletstorm.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-7-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b31196e9-f6ba-4774-bc7c-ff469e64c3cd/sm/ep2945.jpg","duration":115,"publication_date":"2011-02-28T17:09:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-6-hidden-items","changefreq":"weekly","video":[{"title":"2011:E74 - Act 6 Hidden Items","description":"Jack and Dragonface are almost finished finding the hidden items in Bulletstorm. Today they go for everything in Act 6!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-6-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/694fb577-d31a-42b1-b181-599f7b368b32/sm/ep2944.jpg","duration":78,"publication_date":"2011-02-28T17:08:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-5-hidden-items","changefreq":"weekly","video":[{"title":"2011:E73 - Act 5 Hidden Items","description":"Jack and Dragonface look for those elusive hidden Newsbots and Electroflies in the 5th act of Bulletstorm. Won't someone think of the robots!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-5-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc234c17-bec8-4f4d-baae-a842b85acd0e/sm/ep2942.jpg","duration":113,"publication_date":"2011-02-26T00:10:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-22","changefreq":"weekly","video":[{"title":"2011:E8 - Volume 23","description":"Jack and Geoff are back for the Michael Jordan of Fails of the Weak. Does anyone even understand what I mean by that Man, I'm getting old.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fc80ff21-b11a-4b59-9c0b-4546cab70dc6/sm/ep2941.jpg","duration":244,"publication_date":"2011-02-25T19:37:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-1-3-update-overview","changefreq":"weekly","video":[{"title":"2011:E72 - 1.3 Update Overview","description":"Dragonface (The Destroyer) and Jack show you some of the new stuff added in the 1.3 update of Minecraft.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-1-3-update-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/91343a35-f13e-420d-8eea-cff94e7ef265/sm/ep2940.jpg","duration":78,"publication_date":"2011-02-25T04:48:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-4-hidden-items","changefreq":"weekly","video":[{"title":"2011:E71 - Act 4 Hidden Items","description":"Jack and Dragonface wander around in Bulletstorm and pick up all of the hidden Electroflies and Newsbots. They also snag two achievements in the process! Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-4-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/625f0ad1-e745-4115-b3ad-738f997bc636/sm/ep2939.jpg","duration":229,"publication_date":"2011-02-24T23:49:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-21","changefreq":"weekly","video":[{"title":"2011:E6 - Fable 3","description":"Rage Quit is back and it is ragier than ever! This time we follow LtMkilla and his pal as they play through Fable 3 and have a merry time. Enjoy!","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f2c3160-9d32-4826-8573-4c84740c75d7/sm/ep2938.jpg","duration":211,"publication_date":"2011-02-24T21:15:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-21","changefreq":"weekly","video":[{"title":"2011:E8 - Achievement HORSE #12","description":"Jack takes on Burnie in a rousing game of HORSE and puts this Halo legend to the test! Who will win Who will get fired! Find out! All maps are available at http://tinyurl.com/AHHORSE12","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f621783a-b09e-4de6-98e9-a9509cce4f6f/sm/ep2937.jpg","duration":310,"publication_date":"2011-02-24T00:10:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2011-3","changefreq":"weekly","video":[{"title":"2011:E3 - Behind the Scenes - Bulletstorm","description":"Jack takes you behind the scenes of Achievement Hunter to show off the process that goes in to producing the videos you see every single day. Become knowledged!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2011-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/584e0e00-58e9-4d03-af3d-5911cde77a7e/sm/ep2933.jpg","duration":245,"publication_date":"2011-02-22T20:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-3-hidden-items","changefreq":"weekly","video":[{"title":"2011:E70 - Act 3 Hidden Items","description":"Jack and Burnie continue their way through Bulletstorm finding all of the hidden Newsbots and Electroflies. Bzzz bzz!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-3-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1455924a-38f2-47a0-9c64-0cc3aa1eeff5/sm/ep2932.jpg","duration":180,"publication_date":"2011-02-22T19:45:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-2-hidden-items","changefreq":"weekly","video":[{"title":"2011:E69 - Act 2 Hidden Items","description":"Jack and Burnie walk you through all of the hidden items in Act 2 of Bulletstorm. Follow them as they kill some flies and kick some newsbots. Freedom of the press! Hah!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-2-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc8245d8-8480-4764-ac7f-d46465e41183/sm/ep2931.jpg","duration":159,"publication_date":"2011-02-22T16:49:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-disco-inferno","changefreq":"weekly","video":[{"title":"2011:E68 - Disco Inferno","description":"Jack and guest star Burnie show you how to grab the Disco Inferno achievement in the brand new game Bulletstorm. Make sure you bring an umbrella to the bulletstorm.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-disco-inferno","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90dfb160-2980-4c4b-943a-2ac50b2147b6/sm/ep2930.jpg","duration":87,"publication_date":"2011-02-22T16:46:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-19","changefreq":"weekly","video":[{"title":"2011:E8 - Week #51","description":"Jack is flying solo this week for AHWU. Spread some love and gaming news by watching...won't you","player_loc":"https://roosterteeth.com/embed/ahwu-2011-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9da2e71-8132-4fa2-bcd5-1347d9e03bd9/sm/ep2929.jpg","duration":244,"publication_date":"2011-02-21T21:39:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-level-3-hyper-combos-pt-2","changefreq":"weekly","video":[{"title":"2011:E67 - Level 3 Hyper Combos (Pt 2)","description":"Jack and Geoff team up and show you the rest of all of the level 3 hyper combos in Marvel vs. Capcom 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-level-3-hyper-combos-pt-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5586c48-52ca-4cb9-a115-2dc81b4feadf/sm/ep2928.jpg","duration":200,"publication_date":"2011-02-18T20:35:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-level-3-hyper-combos-pt-1","changefreq":"weekly","video":[{"title":"2011:E66 - Level 3 Hyper Combos (Pt 1)","description":"Geoff and Jack show you how to do the level three hyper combos for all of the characters in Marvel vs Capcom 3 (Part one of two).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-level-3-hyper-combos-pt-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a38de06f-5d1b-42c5-8a99-73dcd8a0481f/sm/ep2926.jpg","duration":251,"publication_date":"2011-02-18T19:21:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-female-flyers-weapon-x-darkstalkers","changefreq":"weekly","video":[{"title":"2011:E65 - Female Flyers, Weapon X, Darkstalkers","description":"Jack and Geoff walk you through a few more special group achievements in MvC3. This time they go for Female Flyers, Weapon X and Darkstalkers. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-female-flyers-weapon-x-darkstalkers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f09727e-860f-4645-8e6f-604334324748/sm/ep2925.jpg","duration":135,"publication_date":"2011-02-18T17:49:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-avengers-assemble-badds-to-the-bone","changefreq":"weekly","video":[{"title":"2011:E64 - Avengers Assemble, Badds to the Bone","description":"Jack and Geoff show you how to pick up two achievements based around on which characters you select. Excelsior!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-avengers-assemble-badds-to-the-bone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c7ad9d4-0ecc-419a-a932-b1ed6c0aaa74/sm/ep2924.jpg","duration":115,"publication_date":"2011-02-18T17:31:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-18","changefreq":"weekly","video":[{"title":"2011:E7 - Volume 22","description":"Jack and Geoff cap off another week with Fails of the Weak. If you plan on failing at something, fail hard. Fail really hard.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/982382b5-4527-46f8-9607-43e6ad52273c/sm/ep2923.jpg","duration":237,"publication_date":"2011-02-18T16:50:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-geoff-watches-the-dead-island-trailer","changefreq":"weekly","video":[{"title":"2011:E63 - Geoff watches the Dead Island Trailer","description":"Geoff, a loving husband and father of a young girl, decides he should watch the Dead Island announcement trailer. See how long he'll last.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-geoff-watches-the-dead-island-trailer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e731260a-67c6-4350-9af4-a722e11a2cd6/sm/ep2922.jpg","duration":196,"publication_date":"2011-02-17T20:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-18","changefreq":"weekly","video":[{"title":"2011:E5 - World at War","description":"Mkill tries to win the war, by dodging one grenade at a time.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dea14b03-abbf-41f3-bea0-1bc1587d9d79/sm/ep2921.jpg","duration":289,"publication_date":"2011-02-17T18:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-blackmoore-stack-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E569 - Blackmoore Stack Achievement Guide","description":"Geoff and Jack show you how to get the \"Blackmoore Stack\" Achievement in the Xbox Live Arcade Game: Stacking.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-blackmoore-stack-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5738092-c012-4d8e-9eba-2263229bb7e5/sm/ep2920.jpg","duration":126,"publication_date":"2011-02-17T15:53:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-18","changefreq":"weekly","video":[{"title":"2011:E7 - Achievement HORSE #11","description":"Jack and Geoff go at it head to head again. This could be the week where Jack ties it up 5-5 or Geoff could take a step forward again. Watch and find out! All maps are available at http://tinyurl.com/AHHORSE11","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1605dc2a-cfbc-4006-85e3-d25f4ee60907/sm/ep2919.jpg","duration":470,"publication_date":"2011-02-16T23:38:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shadow-takedown-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E568 - Shadow Takedown Achievement Guide","description":"DragonKerry and Geoff show you an easy way to grab the \"Shadow Takedown\" achievement in TNT Racers.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shadow-takedown-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5661633b-1dc3-450c-82d6-3218ae0c1c30/sm/ep2917.jpg","duration":49,"publication_date":"2011-02-15T23:41:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-doll-antiquarian-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E567 - Doll Antiquarian Achievement Guide","description":"Geoff and Jack show you where to find the 26 unique dolls on the Triple Tanker level of the Xbox Live Arcade game: Stacking.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-doll-antiquarian-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e243aee1-0d07-4818-94a2-40013d798d0a/sm/ep2916.jpg","duration":216,"publication_date":"2011-02-15T22:28:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-average-joe-brusin-bruce-charles-in-charge","changefreq":"weekly","video":[{"title":"2011:E62 - Average Joe, Brusin' Bruce, Charles in Charge","description":"Jack and Geoff jump kick their way in to Marvel Vs. Capcom 3 with a bevy of multi-hit combo achievements. Watch and learn how to grab Average Joe, Brusin' Bruce and Charles in Charge!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-average-joe-brusin-bruce-charles-in-charge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/197f786a-5dae-4e3d-8b64-2d0cf9bea688/sm/ep2915.jpg","duration":174,"publication_date":"2011-02-15T22:21:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2011-2","changefreq":"weekly","video":[{"title":"2011:E2 - BTS - Achievement HORSE #10","description":"Take a peek behind the scenes as Jack and Geoff try to work their way through the first round of Achievement HORSE #10.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2011-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4e674fb9-5c03-4d2a-a836-0273276bc605/sm/ep2914.jpg","duration":198,"publication_date":"2011-02-15T18:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-hd-demon-on-wheels","changefreq":"weekly","video":[{"title":"2011:E61 - Trials HD: \"Demon on Wheels\"","description":"Kaisonic plays through all Extreme tracks on Trials HD to get the \"Demon on Wheels\" achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-hd-demon-on-wheels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":846,"publication_date":"2011-02-15T13:12:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-hd-detour","changefreq":"weekly","video":[{"title":"2011:E60 - Trials HD: \"Detour\"","description":"Kaisonic shows us how to get the \"Detour\" achievement from the Big Thrills DLC in Trials HD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-hd-detour","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":156,"publication_date":"2011-02-15T13:11:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-hd-donkey-challenge","changefreq":"weekly","video":[{"title":"2011:E59 - Trials HD: \"Donkey Challenge\"","description":"Kaisonic shows us how to get the \"Donkey Challenge\" achievement from the Big Thrills DLC in Trials HD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-hd-donkey-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f76184aa-d805-4277-9b5c-293c53912428/sm/2013912-1451423319364-maxresdefault.jpg","duration":88,"publication_date":"2011-02-15T13:10:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crowning-glory-part-2","changefreq":"weekly","video":[{"title":"2011:E58 - Crowning Glory - Part 2","description":"Nand shows you the \"Way of the Assassin,\" \"Quickly Does It,\" \"Bow to the Audience,\" \"Rapid Radar Shut Down,\" \"Master of Disguise,\" \"Easy Rider,\" and \"I Wanna Be Sedated\" crowns, which are needed for the Crowning Glory Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crowning-glory-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":463,"publication_date":"2011-02-15T13:04:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bearly-legal-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E561 - Bearly Legal Achievement Guide","description":"CaesarsDeath shows you how to get the Bearly Legal achievement for bearly any gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bearly-legal-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":157,"publication_date":"2011-02-15T12:53:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-minecraft-surviving-the-night","changefreq":"weekly","video":[{"title":"2011:E57 - Minecraft: Surviving the Night","description":"cactuscomics shows us how to survive your first night in Minecraft.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-minecraft-surviving-the-night","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":259,"publication_date":"2011-02-15T12:40:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-16","changefreq":"weekly","video":[{"title":"2011:E7 - Week #50","description":"Jack and Geoff wish you a special Valentines Day on this rosy new AHWU. Learn about Marvel Vs. Capcom 3, Bowling, Balls, Halo: Reach Map Packs and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ad455e8-84c0-4e84-b2c1-dbcf265c3ac0/sm/ep2899.jpg","duration":264,"publication_date":"2011-02-14T22:21:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-doll-connoisseur-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E557 - Doll Connoisseur Achievement Guide","description":"Geoff and Jack show you where to find the 24 unique dolls in the Zeppelin level of Stacking for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-doll-connoisseur-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0268950f-7d3e-416a-b16b-18fa19b9c2c8/sm/ep2898.jpg","duration":204,"publication_date":"2011-02-14T21:10:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-doll-fancier-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E556 - Doll Fancier Achievement Guide","description":"Geoff and Jack show you where to find the 27 unique dolls on the Cruise Ship level of Stacking, to get the Doll Fancier Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-doll-fancier-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/263e04e7-4bfc-4f91-ac71-f0fce97f5864/sm/ep2896.jpg","duration":258,"publication_date":"2011-02-11T21:57:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-he-aint-even-married-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E555 - He Ain't Even Married Achievement Guide","description":"Brownman shows us how to get the \"He Ain't Even Married\" Achievement in the Xbox Live Arcade game: Comic Jumper.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-he-aint-even-married-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdd50dd7-ed18-4774-ad1d-4810048a2b26/sm/ep2895.jpg","duration":289,"publication_date":"2011-02-11T17:17:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-5","changefreq":"weekly","video":[{"title":"2011:E56 - 007 Blood Stone - Full Debrief Part 5","description":"TudorVII finishes up the Full Debrief achievement in Blood Stone by looking through all of the Burma missions.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":236,"publication_date":"2011-02-11T17:17:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-4","changefreq":"weekly","video":[{"title":"2011:E55 - 007 Blood Stone - Full Debrief Part 4","description":"TudorVII is back to do the Bangkok missions of Blood Stone on the hunt for the Full Debrief achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":158,"publication_date":"2011-02-11T17:16:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-3","changefreq":"weekly","video":[{"title":"2011:E54 - 007 Blood Stone - Full Debrief Part 3","description":"TudorVII gets cold under the collar as he covers the collectibles in the Siberia missions of Blood Stone.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":156,"publication_date":"2011-02-11T17:16:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-2","changefreq":"weekly","video":[{"title":"2011:E53 - 007 Blood Stone - Full Debrief Part 2","description":"TudorVII continues through James Bond's most difficult mission, finding the collectibles in Blood Stone.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-007-blood-stone-full-debrief-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":238,"publication_date":"2011-02-11T17:16:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-full-debrief-part-1","changefreq":"weekly","video":[{"title":"2011:E52 - Full Debrief: Part 1","description":"Tudor shows you the first part of the \"Full Debrief\" achievement in Blood Stone: 007. You know he knows his stuff because he is British.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-full-debrief-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c03fcd1-b949-4450-a0d6-5c5a5c670da9/sm/ep2890.jpg","duration":332,"publication_date":"2011-02-11T16:51:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-14","changefreq":"weekly","video":[{"title":"2011:E6 - Volume 21","description":"Fails of the Weak is old enough to drink now! Just in time because Jack and Geoff could really use a glass of alcohol or two at this point.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73b2d549-d3ac-43d7-b5b7-0a8920b21663/sm/ep2889.jpg","duration":232,"publication_date":"2011-02-11T15:59:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-12","changefreq":"weekly","video":[{"title":"2011:E4 - Ninja Gaiden 2","description":"Mkilla plays Ninja Gaiden 2, and we laugh at his misery. It's the American way.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ce5eb0a-4e46-4fdd-bdd3-716a933729e5/sm/ep2888.jpg","duration":200,"publication_date":"2011-02-10T20:08:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-doll-hobbyist-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E554 - Doll Hobbyist Achievement Guide","description":"Geoff and Jack show you where to find the 18 unique dolls on the Train Station level of Stacking, to get the Doll Hobbyist Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-doll-hobbyist-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1782bcd-dff7-4958-a6c2-c4d7b53968c3/sm/ep2887.jpg","duration":243,"publication_date":"2011-02-10T19:41:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-12","changefreq":"weekly","video":[{"title":"2011:E6 - Achievement HORSE #10","description":"Jack celebrates the return of Geoff in style and pain. Enjoy this brand new Achievement Horse. All the maps (and gametypes) are available at http://tinyurl.com/AHHORSE010","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9f184b0-d23c-4cbb-b41a-40ab1804e333/sm/ep2886.jpg","duration":469,"publication_date":"2011-02-10T01:26:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-11-15-hidden-items","changefreq":"weekly","video":[{"title":"2011:E51 - Chapter 11 - 15 Hidden Items","description":"Jack and Geoff polish off Dead Space 2 with the last remaining logs and schematics. It's been a terrifying journey, hasn't it","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-11-15-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd359b21-8f83-4209-accc-81530ec056c2/sm/ep2885.jpg","duration":237,"publication_date":"2011-02-09T20:15:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-knives-chau-dlc-achievements","changefreq":"weekly","video":[{"title":"2011:E552 - Knives Chau DLC Achievements","description":"BrownMan shows you how to get: It's All In The Reflexes, Speed Run, and Ninja Somersault in the Knives Chau DLC for the Xbox Live Arcade game: Scott Pilgrim.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-knives-chau-dlc-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ad62044-da35-4183-8c8b-06a4c1c8fd09/sm/ep2882.jpg","duration":299,"publication_date":"2011-02-08T19:13:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vehicular-slaughter-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E551 - Vehicular Slaughter Achievement Guide","description":"Geoff and Jack show you how to get the Vehicular Slaughter Achievement in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vehicular-slaughter-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a35ebd9-21bd-4ffd-946d-d5f2e427e954/sm/ep2881.jpg","duration":86,"publication_date":"2011-02-08T15:56:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-11","changefreq":"weekly","video":[{"title":"2011:E6 - Week #49","description":"Jack and Geoff are back with some fresh new AHWU for you and your loved ones. Today they go over \"You Don't Know Jack,\" a Superbowl surprise and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7a90a25-179b-4b01-aea3-5c18e62bede2/sm/ep2880.jpg","duration":242,"publication_date":"2011-02-07T23:10:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-22","changefreq":"weekly","video":[{"title":"2011:E11 - In Loving Memory Easter Egg","description":"Geoff and Jack show you the In Loving Memory Easter Egg in World of Warcraft, which is definitely not an Iron Man Easter Egg.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb7afe93-1e52-461a-871b-2a57f2c23c9e/sm/ep2879.jpg","duration":82,"publication_date":"2011-02-07T22:13:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-52","changefreq":"weekly","video":[{"title":"2011:E5 - Volume 20","description":"Jack and Geoff rock out to Fails of the Weak Volume 20. This week there are spills, chills, thrills, grills and more! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/be2c9674-1fb0-404a-b405-d4b553707b3a/sm/ep2326.jpg","duration":233,"publication_date":"2011-02-04T19:27:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-37","changefreq":"weekly","video":[{"title":"2011:E3 - Super Meat Boy","description":"LtMkilla takes a stab at Super Meat Boy, with hilarious and predictable results.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bfcc3bc-5362-481e-8a92-75fe06e07b49/sm/ep1968.jpg","duration":225,"publication_date":"2011-02-03T19:05:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2011","changefreq":"weekly","video":[{"title":"2011:E1 - BTS - Achievement HORSE #9","description":"We take a look behind the curtain of Achievement Hunter and catch Joel and Jack while they are filming Achievement HORSE #9. Enjoy!","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2011","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e01302c5-f849-454f-bd8e-3b1cbfd0b996/sm/ep1966.jpg","duration":226,"publication_date":"2011-02-03T17:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-52","changefreq":"weekly","video":[{"title":"2011:E5 - Achievement HORSE #9","description":"Jack and a special guest take on HORSE! All the maps are available at http://tinyurl.com/ACHHORSE09 Watch until the very end for a special tease!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b9c45e8-a940-47cb-b0d1-efa4deedf8cd/sm/ep1965.jpg","duration":299,"publication_date":"2011-02-02T23:13:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-first-strike-overview","changefreq":"weekly","video":[{"title":"2011:E50 - First Strike Overview","description":"Fragger and Brownman team up to take a look at all the new maps in the Call of Duty: Black Ops map pack \"First Strike.\" Take a look around, put your feet up, have a beer.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-first-strike-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c460133b-3a7b-4b0d-ba85-ccfca788b747/sm/ep1964.jpg","duration":529,"publication_date":"2011-02-02T22:22:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-9-and-10-hidden-items","changefreq":"weekly","video":[{"title":"2011:E49 - Chapter 9 & 10 Hidden Items","description":"Jack and Geoff can't get enough of Dead Space 2. This time they find all the hidden logs and schematics in the 9th and 10th levels. I heart the tenth level.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-9-and-10-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7897112d-a1f2-448b-bae9-f5e5e8abe7ec/sm/ep1963.jpg","duration":238,"publication_date":"2011-02-02T16:46:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-packages-8","changefreq":"weekly","video":[{"title":"2011:E48 - Hidden Packages 8","description":"Knuckles Dawson and Jack finally finish up the last of the Hydro Thunder Hurricane special delivery packages!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-packages-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9b0d9d54-f043-4b23-9de5-c1e81d0bd913/sm/ep1962.jpg","duration":161,"publication_date":"2011-02-02T16:26:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-season-1-superbowl-prediction","changefreq":"weekly","video":[{"title":"2011:E1 - Superbowl Prediction","description":"Geoff and Jack use the power of video games to figure out who will win Superbowl XLV this Sunday. Will it be Big Ben and his power of Beard that will propel the Steelers to the Lombardi trophy Or will young Aaron Rodgers use the power of Self Respect to win Find out now!","player_loc":"https://roosterteeth.com/embed/ah-predicts-season-1-superbowl-prediction","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49b1735a-a056-4642-ade3-7f92ac6c9365/sm/ep1961.jpg","duration":386,"publication_date":"2011-02-01T22:29:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crowning-glory-part-1","changefreq":"weekly","video":[{"title":"2011:E47 - Crowning Glory - Part 1","description":"Nand shows you the \"No Help Needed,\" \"Close Proximity,\" and \"Good Enough For Clint\" crowns, which are needed for the Crowning Glory Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crowning-glory-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":196,"publication_date":"2011-02-01T22:04:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hit-the-trail-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E548 - Hit the Trail Achievement Guide","description":"CaesarsDeath's longest Red Dead ride ends in 10 gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hit-the-trail-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":112,"publication_date":"2011-02-01T22:04:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-7-and-8-hidden-items","changefreq":"weekly","video":[{"title":"2011:E46 - Chapter 7 & 8 Hidden Items","description":"Jack and Geoff head back to the Sprawl and look for all of the hidden logs and schematics scattered around Dead Space 2, chapters 7 & 8!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-7-and-8-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5ab3a53-ce95-4807-8fd6-e41428c537e1/sm/ep1957.jpg","duration":184,"publication_date":"2011-02-01T21:54:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-73","changefreq":"weekly","video":[{"title":"2011:E10 - Skate 3000 Easter Egg","description":"Jack and Geoff show you a neat Easter Egg in Dead Space 2. Keep an eye out for this upcoming sequel to Skate! IN THE FUTURE!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-73","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da7ef65c-48ee-4ec6-bc1e-c36b91f3db2e/sm/ep1956.jpg","duration":43,"publication_date":"2011-02-01T17:34:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-48","changefreq":"weekly","video":[{"title":"2011:E5 - Week #48","description":"Jack and Geoff bring you some fresh new AHWU and gaming news for the last week of January 2011. It's like we hardly knew ye. Watch for this week's new releases and news on Sony's new PSP2, the next Angry Birds and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca52eab6-2b46-4e50-8bae-0e41982e6217/sm/ep1955.jpg","duration":216,"publication_date":"2011-01-31T21:01:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-5-and-6-hidden-items","changefreq":"weekly","video":[{"title":"2011:E45 - Chapter 5 & 6 Hidden Items","description":"Jack and Joel dive back in to Dead Space 2 and grab all the schematics and logs from chapters 5 and 6.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-5-and-6-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7614d559-ff35-4274-9629-9afed656077d/sm/ep1954.jpg","duration":231,"publication_date":"2011-01-31T16:24:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-3-and-4-hidden-items","changefreq":"weekly","video":[{"title":"2011:E44 - Chapter 3 & 4 Hidden Items","description":"Jack and Joel walk you through the 3rd and 4th levels of Dead Space 2 and grab all of the hidden Text and Audio logs as well as the schematics scattered throughout. Don't be scared!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-3-and-4-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c227c83-c0c2-49b3-8e98-4958bfe1e427/sm/ep1953.jpg","duration":186,"publication_date":"2011-01-29T19:39:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-packages-7","changefreq":"weekly","video":[{"title":"2011:E43 - Hidden Packages 7","description":"Knuckles Dawson and Jack are floating around picking up hidden packages. Enjoy their packages.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-packages-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21b978d6-b3a8-462a-b46d-ca6309b07536/sm/ep1950.jpg","duration":135,"publication_date":"2011-01-28T23:10:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-1-and-2-hidden-items","changefreq":"weekly","video":[{"title":"2011:E42 - Chapter 1 & 2 Hidden Items","description":"Jack and Gus walk you through the first two chapters of Dead Space 2 and point out all of the hidden Audio Logs, Text Logs and Schematics. Join them, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-1-and-2-hidden-items","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e903bb6-acf5-4a76-bef0-717e34fc5680/sm/ep1949.jpg","duration":211,"publication_date":"2011-01-28T22:39:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-shuffler","changefreq":"weekly","video":[{"title":"2011:E41 - The Shuffler","description":"Kerry and Jack give you some tips on how to get \"The Shuffler\" achievement in ilomilo.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-shuffler","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c225c1-207f-4ad2-812e-cdca1f762057/sm/ep1948.jpg","duration":133,"publication_date":"2011-01-28T22:37:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-brute-juke","changefreq":"weekly","video":[{"title":"2011:E40 - Brute Juke","description":"Jack and Dragonface show you how to pick up the Brute Juke achievement in Dead Space 2. Don't tell Geoff how much easier it was in this game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-brute-juke","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/093c97bf-f635-40b7-8323-0a42a001da53/sm/ep1947.jpg","duration":62,"publication_date":"2011-01-28T21:15:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-51","changefreq":"weekly","video":[{"title":"2011:E4 - Volume 19","description":"Jack and Geoff are back with another fresh look at moldy bloopers and fails. Happy Friday everyone!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3da9a10-e8c5-4fe3-929f-61f711604628/sm/ep1946.jpg","duration":215,"publication_date":"2011-01-28T17:51:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collect-peng","changefreq":"weekly","video":[{"title":"2011:E39 - Collect Peng","description":"Jack and Joel tag team to show you how to pick up the Peng trophy in Dead Space 2 and grab the \"Collect Peng\" achievement. Everybody loves Peng! I know I do!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collect-peng","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67dc4f4a-97b3-4cdf-83d5-8404af69bf5a/sm/ep1944.jpg","duration":171,"publication_date":"2011-01-27T23:54:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bouncing-betty","changefreq":"weekly","video":[{"title":"2011:E38 - Bouncing Betty","description":"Jack and Burnie take you to a super creepy area in Dead Space 2 to pick up a super creepy achievement. Did I mention it is super creepy","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bouncing-betty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6126a54-48df-4b8c-82c3-191406b485b3/sm/ep1943.jpg","duration":120,"publication_date":"2011-01-27T19:58:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-29","changefreq":"weekly","video":[{"title":"2011:E2 - Superman Returns","description":"LtMkilla is back and this time he takes on Superman Returns. What would you do if your car went missing","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-29","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfb62344-bed3-4f78-8d60-7e8eac88d185/sm/ep1942.jpg","duration":93,"publication_date":"2011-01-27T16:21:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-51","changefreq":"weekly","video":[{"title":"2011:E4 - Achievement HORSE #8","description":"Jack and Geoff are back for another HORSE! Will Jack even up the score at 4-4 or will Geoff finally break the streak Stay tuned to find out!","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07eb35a3-eae4-4255-b424-4c1f6748c71f/sm/ep1941.jpg","duration":534,"publication_date":"2011-01-26T22:16:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fails-of-the-weak-tutorial","changefreq":"weekly","video":[{"title":"2011:E37 - Fails of the Weak Tutorial","description":"Due to popular demand, we've created this guide showing exactly how to film and submit a clip to Halo: Reach - Fails of the Weak.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fails-of-the-weak-tutorial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de210a25-f1f9-40f3-8e0b-7e4b6dc92361/sm/ep1940.jpg","duration":260,"publication_date":"2011-01-25T22:31:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-frag-master-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E547 - Frag Master Achievement Guide","description":"Kerry and Geoff show you how to get the Frag Master Achievement in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-frag-master-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1bea013a-2c6b-4a09-9b39-847f88185b68/sm/ep1939.jpg","duration":59,"publication_date":"2011-01-25T21:01:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-visceral-logo-egg","changefreq":"weekly","video":[{"title":"2011:E36 - Visceral Logo Egg","description":"Jack and Geoff show off a new Easter Egg hidden in Dead Space 2. You should go look at it too!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-visceral-logo-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1d09a35a-e6c4-4b0d-ba27-848d019c03b3/sm/ep1938.jpg","duration":55,"publication_date":"2011-01-25T18:30:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-double-whammy-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E546 - Double Whammy Achievement Guide","description":"Geoff and Jack show you how to get the Double Whammy Achievement in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-double-whammy-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff980dcf-4053-493c-9a33-45ecc57a60ee/sm/ep1935.jpg","duration":156,"publication_date":"2011-01-24T16:50:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-50","changefreq":"weekly","video":[{"title":"2011:E3 - Volume 18","description":"Jack and Geoff cap off an excellent week with another excellent Fails of the Weak! Get your Weak on!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccb14b27-ccbb-40c3-9dc6-dd327a26534a/sm/ep1932.jpg","duration":216,"publication_date":"2011-01-21T22:26:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lightspeed-de-milo","changefreq":"weekly","video":[{"title":"2011:E35 - Lightspeed de Milo","description":"Jack and Geoff attempt to make some modern art and pick up an achievement in Dead Space 2. Follow along as they create \"Lightspeed de Milo!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lightspeed-de-milo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2f4f3d7a-65ac-4270-98f2-947ffd48040d/sm/ep1931.jpg","duration":71,"publication_date":"2011-01-21T19:30:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skewered-in-space","changefreq":"weekly","video":[{"title":"2011:E34 - Skewered in Space","description":"Jack and Geoff go for the impale in this achievement guide for \"Skewered in Space\" in Dead Space 2. Sharpen those sticks!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skewered-in-space","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03acb147-59c7-4d90-af90-630bc6d5f5f3/sm/ep1930.jpg","duration":97,"publication_date":"2011-01-21T19:29:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cityville","changefreq":"weekly","video":[{"title":"2011:E33 - Cityville","description":"Geoff and Jack take Cityville for a spin.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cityville","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e48d75c-e802-45ec-93e2-457fc9e971bd/sm/ep1929.jpg","duration":86,"publication_date":"2011-01-21T17:41:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-camera-shy-both-barrels-and-hows-that-for-starters","changefreq":"weekly","video":[{"title":"2011:E32 - Camera Shy, Both Barrels, & How's That For Starters?","description":"Nand shows you how to quickly get the Camera Shy, Both Barrels, and How's That For Starters Achievements in the first level of Perfect Dark.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-camera-shy-both-barrels-and-hows-that-for-starters","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":103,"publication_date":"2011-01-20T23:47:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-golden-days-and-versatile","changefreq":"weekly","video":[{"title":"2011:E31 - Golden Days & Versatile","description":"Nand shows you how to get the Golden Days and Versatile Achievements in Perfect Dark's multiplayer mode.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-golden-days-and-versatile","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":182,"publication_date":"2011-01-20T23:47:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-taste-of-your-own-medicine","changefreq":"weekly","video":[{"title":"2011:E30 - Taste of your own Medicine","description":"Jack and Geoff go and chill with Isaac Clarke and pick up the \"Taste of your own Medicine\" achievement in the process. CONSERVE AMMO!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-taste-of-your-own-medicine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f59f9cc4-6249-4ae5-b90b-fb6dacef583d/sm/ep1925.jpg","duration":81,"publication_date":"2011-01-20T21:06:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-currant-affairs-puzzle-walkthrough","changefreq":"weekly","video":[{"title":"2011:E29 - Currant Affairs Puzzle Walkthrough","description":"Gus and Geoff walk you through a puzzle on the Current Affair level of Little Big Planet 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-currant-affairs-puzzle-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c03f99-d390-4b4e-8b9f-cc8e8f7b5933/sm/ep1924.jpg","duration":167,"publication_date":"2011-01-20T20:12:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/rage-quit-2011-22","changefreq":"weekly","video":[{"title":"2011:E1 - Trials HD","description":"LtMkilla presents a new series for Achievement Hunter: Rage Quit. Each Thursday, let's journey through the trials and tribulations of his gaming highs and lows, mostly lows.","player_loc":"https://roosterteeth.com/embed/rage-quit-2011-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/92e4bd32-3e2c-49a9-9e06-f0dd83556a88/sm/ep1923.jpg","duration":375,"publication_date":"2011-01-20T18:39:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-one-small-step","changefreq":"weekly","video":[{"title":"2011:E28 - One Small Step","description":"Jack and Geoff take to the Zero-G air and pick up the \"One Small Step\" achievement in Dead Space 2. Fly with me, won't you fly...fly away.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-one-small-step","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dd6c46c-70b4-4585-b8fa-7a4027d71b65/sm/ep1921.jpg","duration":142,"publication_date":"2011-01-20T17:25:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-50","changefreq":"weekly","video":[{"title":"2011:E3 - Achievement HORSE #7","description":"Jack and Geoff are back for yet another fantastic round of Achievement HORSE! Will Jack continue his streak Will Geoff shut Jack out again WATCH AND LEARN! All maps are available at http://tinyurl.com/AHHORSE07","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-50","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ef0e47c-8ee8-4e68-a0e5-59a19be953bc/sm/ep1919.jpg","duration":467,"publication_date":"2011-01-20T00:09:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-romper-stomper","changefreq":"weekly","video":[{"title":"2011:E27 - Romper Stomper","description":"Jack and Geoff head back out to the Sprawl and smash a lot of boxes to pick up the \"Romper Stomper\" achievement in Dead Space 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-romper-stomper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79c647b3-1682-4a11-adbe-6e213caa506d/sm/ep1918.jpg","duration":55,"publication_date":"2011-01-19T19:27:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-going-for-distance","changefreq":"weekly","video":[{"title":"2011:E26 - Going for Distance","description":"Jack and Geoff hit up the Sprawl and pick up the \"Going for Distance\" achievement in Dead Space 2. Stay tuned for more Dead Space 2 before the game is even on shelves!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-going-for-distance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5ad90179-7806-4c5f-93e1-554280ff565a/sm/ep1917.jpg","duration":61,"publication_date":"2011-01-19T16:20:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-custom-campaign-one-4-nine","changefreq":"weekly","video":[{"title":"2011:E25 - Custom Campaign - One 4 Nine","description":"Geoff and Jack show you \"One 4 Nine,\" a custom campaign for Left 4 Dead 2 for the Mac or PC. Sorry Xboxers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-custom-campaign-one-4-nine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af1fa35e-5e27-46f7-88fb-4ed5fd801fb2/sm/ep1916.jpg","duration":289,"publication_date":"2011-01-19T15:34:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-1-2-update-overview","changefreq":"weekly","video":[{"title":"2011:E24 - 1.2 Update Overview","description":"Kerry and Geoff show you some of the new updates added to Minecraft, like some new crafting recipes and blocks.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-1-2-update-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e63c0310-04d3-4e57-be2e-63d8365d8383/sm/ep1915.jpg","duration":90,"publication_date":"2011-01-19T04:23:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-69","changefreq":"weekly","video":[{"title":"2011:E9 - Creepy Troll Easter Egg","description":"Jack and Geoff stumble across a really creepy troll in the Outlands. Something just doesn't seem right here...","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-69","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a509c212-9708-4f25-aee7-d05385970478/sm/ep1913.jpg","duration":157,"publication_date":"2011-01-18T21:02:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-plot-in-5-minutes","changefreq":"weekly","video":[{"title":"2011:E22 - Plot in 5 Minutes","description":"Jack and Kerry do something unprecedented on Achievement Hunter. They play a Wii game! Not only that, but it's the entire game of Dead Space: Extraction, the prequel to Dead Space told in 5 minutes. That being said, MAJOR PLOT SPOILERS HERE! If you are prepping for Dead Space 2, check this out! Also, stay tuned to the end for a BIG ANNOUNCEMENT!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-plot-in-5-minutes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1dcbb8f5-2cc4-4dd1-91fc-864aad73783d/sm/ep1912.jpg","duration":338,"publication_date":"2011-01-18T18:57:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-51","changefreq":"weekly","video":[{"title":"2011:E3 - Week #46","description":"Jack and Geoff are back, fresh-faced and ready to face the world! Hooray AHWU!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-51","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/755ca0b7-3e6a-4839-95a7-4910401045c8/sm/ep1910.jpg","duration":225,"publication_date":"2011-01-17T22:13:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-68","changefreq":"weekly","video":[{"title":"2011:E8 - Statue of Liberty Easter Egg","description":"Jack and Geoff are still busy spotting Easter Eggs in World of Warcraft. This time they find a half-buried Statue of Liberty out in the Eastern Kingdoms! Damn you!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-68","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c21115aa-2b63-4683-a766-c2f1a44a1862/sm/ep1909.jpg","duration":68,"publication_date":"2011-01-17T20:27:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-67","changefreq":"weekly","video":[{"title":"2011:E7 - Beach Ball Easter Egg","description":"Geoff and Jack show you where to find a cool little easter egg in Need for Speed: Hot Pursuit.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-67","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1baddd1-6c3e-4867-82bb-f81ad7973ce7/sm/ep1908.jpg","duration":132,"publication_date":"2011-01-17T19:27:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-making-portals","changefreq":"weekly","video":[{"title":"2011:E21 - Making Portals","description":"Kerry (aka Dragonface) and Geoff show you how to make a Portal in Minecraft. It's perfect for all of your inter-dimensional traveling needs.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-making-portals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52c4578b-b88e-4804-8230-f1e354e1d2e7/sm/ep1907.jpg","duration":179,"publication_date":"2011-01-15T00:16:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-49","changefreq":"weekly","video":[{"title":"2011:E2 - Volume 17","description":"Achievement Hunter Halo Bungie Master Chief Fails of the Weak Week Microsoft Xbox Funny Screw Ups Bloopers Mistakes","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e409437b-0abe-4f7d-aed7-2d5a77dd6d53/sm/ep1898.jpg","duration":214,"publication_date":"2011-01-14T21:51:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-hot-rod-location","changefreq":"weekly","video":[{"title":"2011:E19 - Hidden Hot Rod Location","description":"Geoff and Jack show you when and where to find a hidden hot rod in Mafia 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-hot-rod-location","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94800126-134e-46eb-b99a-54495199f0e0/sm/ep1896.jpg","duration":170,"publication_date":"2011-01-14T16:31:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery-paris-sewers-crates","changefreq":"weekly","video":[{"title":"2011:E18 - Special Delivery - Paris Sewers Crates","description":"Knuckles and Rippe are back for more Race Week, and give you the locations of the hidden packages in the especially septic Paris Sewers track.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery-paris-sewers-crates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0e39905-14ee-44ad-8ac2-4c9bcd4ccad7/sm/ep1895.jpg","duration":95,"publication_date":"2011-01-14T16:12:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-66","changefreq":"weekly","video":[{"title":"2011:E6 - TMNT Easter Egg","description":"Jack and Geoff jump down in to the sewers of Dalaran in Northrend and spot some familiar looking creatures talking. Enjoy!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-66","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/488fd4e1-d68e-4c29-bf22-8c8eaa669f8c/sm/ep1893.jpg","duration":74,"publication_date":"2011-01-13T20:17:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wheel-bustin-secrets","changefreq":"weekly","video":[{"title":"2011:E16 - Wheel Bustin Secrets","description":"TonySki and Tex show you how to get a variety of Achievements in Monster Jam: Path of Destruction.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wheel-bustin-secrets","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e96380d-24fb-4315-9772-d85880994222/sm/ep1892.jpg","duration":421,"publication_date":"2011-01-13T19:05:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-crazy-driver-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E540 - Crazy Driver Achievement Guide","description":"Knuckles and Churchs Wife finish off the Crazy Box and nab the Crazy Driver Achievement, and to top it off unlock a bitchin' bicycle.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-crazy-driver-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/514e55f8-e19e-440c-9cc2-39cf5b91dbc0/sm/ep1891.jpg","duration":281,"publication_date":"2011-01-13T17:45:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-slip-and-slide-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E539 - Slip and Slide Achievement Guide","description":"Geoff and Jack show you another way to get the Slip and Slide Achievement in the new DLC for Need for Speed: Hot Pursuit.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-slip-and-slide-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3941f4d6-be07-401a-b931-5be3595d2798/sm/ep1890.jpg","duration":148,"publication_date":"2011-01-13T16:26:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-amazing-driver-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E538 - Amazing Driver Achievement Guide","description":"Knuckles and Churchs Wife continue the Race Week fun grabbing the Amazing Driver Achievement in Crazy Taxi.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-amazing-driver-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5756891-6ae8-4025-ba59-53b88b666b31/sm/ep1888.jpg","duration":193,"publication_date":"2011-01-12T20:18:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-65","changefreq":"weekly","video":[{"title":"2011:E5 - LOST Hatch Easter Egg","description":"Jack and Geoff jump back in to the World of Warcraft and spot a very familiar looking hatch hidden out in the Sholazar Basin in Northrend.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-65","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14c9f70e-35fa-4bea-aaa1-d62c5e473551/sm/ep1887.jpg","duration":59,"publication_date":"2011-01-12T18:55:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-49","changefreq":"weekly","video":[{"title":"2011:E2 - Achievement HORSE #6","description":"Jack and Geoff take to the digital battlegrounds again to hash out who is the king of Halo Horse. WHO WILL YOU ROOT FOR Maps are available here: http://tinyurl.com/5sjvm9e","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08cbb8bb-4cb9-4dbb-998e-cbec62d9fa20/sm/ep1886.jpg","duration":479,"publication_date":"2011-01-12T17:42:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery-lost-babylon-crates","changefreq":"weekly","video":[{"title":"2011:E15 - Special Delivery - Lost Babylon Crates","description":"Knuckles and Mr. Rippe get their feet wet and show off how to grab the 10 hidden packages in Lost Babylon.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery-lost-babylon-crates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b74583ee-6d5f-494d-bd23-cbb4bf55449f/sm/ep1885.jpg","duration":127,"publication_date":"2011-01-12T14:35:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dlc-achievements","changefreq":"weekly","video":[{"title":"2011:E536 - DLC Achievements","description":"TonySki and Jack show you how to get the following Achievements from the new NFS Hot Pursuit DLC \"Super Sports Pack\": Slip and Slide, Land Speed Record, and Show Off.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dlc-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/407846f6-6082-4bf3-90a1-8047276b95a1/sm/ep1883.jpg","duration":258,"publication_date":"2011-01-11T18:40:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery","changefreq":"weekly","video":[{"title":"2011:E14 - Special Delivery","description":"Geoff and Gus up at Achievement Hunter received a special package this morning and upon closer inspection they found something very very cool. Check out this unboxing with a link to the special early release trailer!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63bf1dd5-6b3d-4938-a484-822f3836c32f/sm/ep1882.jpg","duration":226,"publication_date":"2011-01-11T17:02:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sneaky-gardener-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E535 - Sneaky Gardener Achievement Guide","description":"TudorVII shows you the best path to take in the Monaco gardens to pick up this sneaky achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sneaky-gardener-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54c90738-5648-49e3-89d0-ec611925217c/sm/ep1881.jpg","duration":380,"publication_date":"2011-01-10T23:16:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pedal-to-the-metal-bond007","changefreq":"weekly","video":[{"title":"2011:E13 - Pedal to the Metal","description":"TudorVII races through one of 007: Blood Stone's racing mission to give you some tips towards picking up an achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pedal-to-the-metal-bond007","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee4af11d-ee14-4719-97e8-71ba72f57fd0/sm/ep1880.jpg","duration":208,"publication_date":"2011-01-10T23:16:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-five-a-day-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E534 - Five a Day Achievement Guide","description":"TudorVII returns to his duties in MI6 by showing you the locations of the five fruit bowls you need to shoot for this achievement in 007: Blood Stone.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-five-a-day-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56f92f26-b123-45c0-a55c-f2249e1b98d6/sm/ep1879.jpg","duration":141,"publication_date":"2011-01-10T23:14:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-loot-to-boot-part-6","changefreq":"weekly","video":[{"title":"2011:E12 - Loot to Boot Part 6","description":"Tonyski continues his guide for the Loot to Boot Achievement in Blade Kitten.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-loot-to-boot-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8aadc0f-bab0-459a-98d8-f9ecef552b80/sm/ep1878.jpg","duration":109,"publication_date":"2011-01-10T23:12:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-loot-to-boot-part-5","changefreq":"weekly","video":[{"title":"2011:E11 - Loot to Boot Part 5","description":"Tonyski continues his guide for the Loot to Boot Achievement in Blade Kitten.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-loot-to-boot-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d2062e6-989e-46c3-b3a6-1e50c784556e/sm/ep1877.jpg","duration":317,"publication_date":"2011-01-10T23:12:28.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-see-me-stab-me-heal-me-and-sacrificial-lamb-achievements","changefreq":"weekly","video":[{"title":"2011:E533 - See Me, Stab Me, Heal Me and Sacrificial Lamb Achievements","description":"ioHRay shows you how to get the \"See Me, Stab Me, Heal Me\" and \"Sacrificial Lamb\" Achievements in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-see-me-stab-me-heal-me-and-sacrificial-lamb-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a719314f-5c32-4c17-b476-22530b8442f0/sm/ep1876.jpg","duration":222,"publication_date":"2011-01-10T23:10:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-64","changefreq":"weekly","video":[{"title":"2011:E4 - Zombie Music Easter Egg","description":"This community video shows you how to unlock the music in \"Kino der Toten\" and \"Five\" in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-64","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e700a47e-b2ab-4054-9ef0-1842a831f0fb/sm/ep1875.jpg","duration":205,"publication_date":"2011-01-10T23:07:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-52","changefreq":"weekly","video":[{"title":"2011:E2 - Week #45","description":"Jack and Geoff take you through another spiffy AHWU for the early weeks of 2011! Trivia question: how many \"Binary Days\" are left in 2011 Go!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-52","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a139d675-67e2-4a3d-81ec-423dc506fda6/sm/ep1874.jpg","duration":280,"publication_date":"2011-01-10T21:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-electrically-charged-achievement-guide","changefreq":"weekly","video":[{"title":"2011:E532 - Electrically Charged Achievement Guide","description":"Geoff and Jack show you how to get the Electrically Charged Achievement in Need For Speed: Hot Pursuit.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-electrically-charged-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8277092e-39b2-4804-80b5-4b8e55d91915/sm/ep1873.jpg","duration":164,"publication_date":"2011-01-10T17:13:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-uncomfortably-energetic","changefreq":"weekly","video":[{"title":"2011:E10 - Uncomfortably Energetic","description":"Kerry and Geoff show you an easy way to grab the \"Uncomfortably Energetic\" achievement in Raskulls.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-uncomfortably-energetic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cac6e5db-0a3b-4a35-a323-e2b1a9badc14/sm/ep1870.jpg","duration":53,"publication_date":"2011-01-07T22:21:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2011-48","changefreq":"weekly","video":[{"title":"2011:E1 - Volume 16","description":"Jack and Geoff are back in yet another hilarious volume of Fails of the Weak! This week is campaign heavy and also laugh heavy. You know, gravity is the reason why we feel weight, so therefore there is a lot of gravity in this video. Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2011-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feefe6d4-5389-469c-b8c2-412b5552ca60/sm/ep1869.jpg","duration":242,"publication_date":"2011-01-07T20:53:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-2010-the-year-in-gaming-chicken-edition","changefreq":"weekly","video":[{"title":"2011:E9 - 2010: The Year in Gaming \"Chicken\" Edition","description":"Geoff and Jack show us ten video games in 2010 that prominently feature chickens! This video shows our fowl-weathered friends being displayed in: Fable 3, Red Dead Redemption, Heavy Rain, Minecraft, World of Warcraft: Cataclysm, Borderlands, Crash Course, Deathspank, BFBC2: Vietnam, and CoD: Black Ops. Yep, chickens.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-2010-the-year-in-gaming-chicken-edition","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/48da8d3e-320b-4e79-9506-664648d399f0/sm/ep1868.jpg","duration":196,"publication_date":"2011-01-07T19:31:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crossover-extravaganza","changefreq":"weekly","video":[{"title":"2011:E8 - Crossover Extravaganza!","description":"Kerry and Geoff walk you through one of the coolest crossover experiments ever. Raskulls, Ilomilo and World of Keflings all contain content that is dependent on each other, pretty sick!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crossover-extravaganza","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc9536b4-5810-42c1-b26c-7974896a1d9b/sm/ep1867.jpg","duration":117,"publication_date":"2011-01-07T00:48:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-superb-driver","changefreq":"weekly","video":[{"title":"2011:E7 - Superb Driver","description":"Knuckles Dawson and ChurchsWife are back with yet another achievement guide in Crazy Taxi for XBLA. Watch and learn how to pick up the \"Superb Driver\" achievement!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-superb-driver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7395dac8-dabf-4e0d-9d80-c3ec9e3c2fc7/sm/ep1866.jpg","duration":184,"publication_date":"2011-01-07T00:08:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery-part-4","changefreq":"weekly","video":[{"title":"2011:E6 - Special Delivery Part 4","description":"Knuckles Dawson and Mr. Rippe drop Hydro Thunder's Special Delivery Part 4 guide and you get to watch. Consider yourself lucky.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8717d16b-7308-4b72-a5bc-8af78b18b3d0/sm/ep1865.jpg","duration":123,"publication_date":"2011-01-06T18:52:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-63","changefreq":"weekly","video":[{"title":"2011:E3 - Thunder Gun Easter Egg","description":"Jack and Geoff are almost done with Egg Weak and why not start wrapping things up with a fancy Call of Duty: Black Ops Easter Egg! Check out this sweet hidden gun!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-63","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afb45f58-ce04-40cf-aafe-e21c7e68fda3/sm/ep1864.jpg","duration":186,"publication_date":"2011-01-06T18:13:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fighting-animals-egg","changefreq":"weekly","video":[{"title":"2011:E5 - Fighting Animals Egg!","description":"Jack and Gus fly around the World of Warcraft and notice a disturbing fact. The animals just north of Thunder Bluff are ARMED WITH WEAPONS! Enjoy this egg!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fighting-animals-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c927c2eb-0531-4956-9865-bcd5334fa97e/sm/ep1862.jpg","duration":101,"publication_date":"2011-01-05T23:18:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-2011-48","changefreq":"weekly","video":[{"title":"2011:E1 - Achievement HORSE #5","description":"Jack and Geoff are back for yet another competition of wits and skill. Join them for Achievement Horse #5! All the maps from this episode are available at http://tinyurl.com/AHHORSE05 (Week 3 maps will be removed before the next episode, so grab them now!)","player_loc":"https://roosterteeth.com/embed/achievement-horse-2011-48","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0bda9d5e-fd25-47da-b6b3-20ddd3d04097/sm/ep1861.jpg","duration":418,"publication_date":"2011-01-05T21:30:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bloodgulch-egg","changefreq":"weekly","video":[{"title":"2011:E4 - Bloodgulch Egg","description":"Jack and Geoff fly around a familiar place in World of Warcraft: Cataclysm...Bloodgulch! Join us while the real Grif meets the Orc Griff! Pretty sweet egg!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bloodgulch-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8032bf0-b4e6-4516-982a-ad8ae1a1ec8f/sm/ep1860.jpg","duration":81,"publication_date":"2011-01-05T20:29:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skillful-driver","changefreq":"weekly","video":[{"title":"2011:E3 - Skillful Driver","description":"Knuckles Dawson and ChurchsWife combine their forces together to bring you this Crazy Taxi achievement guide for \"Skillful Driver.\" Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skillful-driver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890177db-68d5-416e-94b4-2aa95663e0ce/sm/ep1859.jpg","duration":208,"publication_date":"2011-01-05T20:25:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-62","changefreq":"weekly","video":[{"title":"2011:E2 - Witch Easter Egg","description":"Jack and Geoff spot a pretty cool easter egg in Dead Rising 2: Case West that might be familiar to you Left 4 Dead fans. Remember, lights off.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-62","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e15fb87e-7b7a-492e-a3c6-e801f26d9c47/sm/ep1858.jpg","duration":98,"publication_date":"2011-01-04T16:56:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery-monster-island-crates","changefreq":"weekly","video":[{"title":"2011:E2 - Special Delivery - Monster Island Crates","description":"Knuckles and Mr. Rippe return to this collectible guide, covering the hidden packages in Monster Island.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery-monster-island-crates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c9d70d3-284b-489e-afe3-eb62523306d0/sm/ep1857.jpg","duration":124,"publication_date":"2011-01-04T15:56:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2011-49","changefreq":"weekly","video":[{"title":"2011:E1 - Week #44","description":"Jack and Geoff kick off the brand new year with a fresh new AHWU. Stay tuned for news on the Nintendo 3DS, Mass Effect 2, Dead space 2, a hint of future AH videos and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2011-49","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/686b0137-fde6-4ed8-9b0a-2358a031d287/sm/ep1856.jpg","duration":238,"publication_date":"2011-01-03T21:38:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2011-61","changefreq":"weekly","video":[{"title":"2011:E1 - Bar of Soap Easter Egg","description":"Geoff and Jack show you how to find a hidden bar of soap in the prison level of Marvel Ultimate Alliance 2, to kick of Achievement Hunter's \"Egg Week\".","player_loc":"https://roosterteeth.com/embed/easter-eggs-2011-61","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/23b3358e-72ca-4368-9a85-8b3c5ddeaac4/sm/ep1855.jpg","duration":202,"publication_date":"2011-01-03T20:03:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-test-test","changefreq":"weekly","video":[{"title":"2011:E1 - Test","description":"Test","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-test-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d0c1d18-b257-4bb8-af0b-bddea5d3be7f/sm/ep1854.jpg","duration":215,"publication_date":"2011-01-03T19:24:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-16","changefreq":"weekly","video":[{"title":"2010:E16 - Volume 15","description":"Jack and Geoff cast 2010 away with a final Fails of the Weak. Stay tuned at the very end for a special request as well! Happy New Year!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1aecd75d-be09-47fd-9d24-4f0db3913376/sm/ep1851.jpg","duration":304,"publication_date":"2010-12-31T20:04:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-season-1-achievement-horse-4","changefreq":"weekly","video":[{"title":"2010:E4 - Achievement HORSE #4","description":"Jack and Geoff are back again playing HORSE. Will Jack get his first victory over Geoff Stay tuned to find out. All maps used in this video are available at http://tinyurl.com/AHHORSE04","player_loc":"https://roosterteeth.com/embed/achievement-horse-season-1-achievement-horse-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e15f4d2c-e110-4a2a-9fb2-03ce7c62a9e8/sm/ep1845.jpg","duration":505,"publication_date":"2010-12-30T01:07:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-where-credit-is-due","changefreq":"weekly","video":[{"title":"2010:E369 - Where Credit is Due","description":"Brownman takes on his \"Secret Santa\" achievement today with Limbo's \"Where Credit is Due\" achievement. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-where-credit-is-due","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/249497a8-0890-4f3f-b30a-a73fd05a3404/sm/ep1843.jpg","duration":271,"publication_date":"2010-12-29T17:45:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-failure-breeds-success","changefreq":"weekly","video":[{"title":"2010:E368 - Failure Breeds Success","description":"Jack and Geoff run you through Vanquish to pick up Jack's Secret Santa Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-failure-breeds-success","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c02679a-95a3-4b3a-950d-9086491a4447/sm/ep1842.jpg","duration":133,"publication_date":"2010-12-28T17:01:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-37","changefreq":"weekly","video":[{"title":"2010:E43 - Week #43","description":"Geoff and Jack are back in action after a weekend of holiday madness. Enjoy the last AHWU of 2010 with a special guest appearance by Griffon and a special delivery!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-37","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d00760c4-79fc-43d5-97ce-28641b60b706/sm/ep1840.jpg","duration":180,"publication_date":"2010-12-27T21:47:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-15","changefreq":"weekly","video":[{"title":"2010:E15 - Fails of the Year 2010","description":"Hey folks. It's been such a good year for us at Achievement Hunter, we figured we should give you guys something nice for Christmas. Enjoy Fails of the Year 2010, a compilation of fails from weeks 1-12. Happy Holidays!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50c2bebc-c9b1-4792-b3c4-fc350f005e6f/sm/ep1839.jpg","duration":156,"publication_date":"2010-12-25T16:21:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-14","changefreq":"weekly","video":[{"title":"2010:E14 - Volume 14","description":"Jack and Geoff return yet again, even on Christmas Eve to bring you the best in fails in Halo: Reach. Happy Halodays everyone!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63d87724-2ef1-4e3b-a0d9-007c5e9e7373/sm/ep1838.jpg","duration":330,"publication_date":"2010-12-24T17:26:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-go-ahead-and-jump","changefreq":"weekly","video":[{"title":"2010:E367 - Go Ahead And Jump","description":"Jack and Kerry once again enter A World of Keflings and find out that Kerry has a surprising lack of music knowledge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-go-ahead-and-jump","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a73e1a36-9722-4f90-952f-1c26efd3a998/sm/ep1836.jpg","duration":69,"publication_date":"2010-12-23T16:52:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-help","changefreq":"weekly","video":[{"title":"2010:E366 - Help!","description":"Jack and Kerry wander around the magical World of Keflings and pick up the \"Help!\" achievement. (I need somebody to...)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-help","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45376345-eccb-4bae-b902-e4d30f57d931/sm/ep1834.jpg","duration":76,"publication_date":"2010-12-22T23:36:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-season-1-achievement-horse-3","changefreq":"weekly","video":[{"title":"2010:E3 - Achievement HORSE #3","description":"Jack and Geoff (with the occasional Burnie) are back playing another round of HORSE in Halo: Reach. Things get crazy as they burn through a bunch of user-created maps in a race to become the best Halo HORSE player ever! If you'd like to try the maps used in this video, go to http://tinyurl.com/ahhorse03","player_loc":"https://roosterteeth.com/embed/achievement-horse-season-1-achievement-horse-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdbbd76a-6198-44f1-9615-d60c46483c0f/sm/ep1833.jpg","duration":576,"publication_date":"2010-12-22T16:27:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-would-you-kindly-stfu","changefreq":"weekly","video":[{"title":"2010:E365 - Would You Kindly STFU?","description":"Jack and Kerry check out the new Vietnam DLC for Battlefield: Bad Company 2 and pick up the achievement \"Would You Kindly STFU\" in the process! Who would have ever guessed destruction could be this fun!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-would-you-kindly-stfu","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/212ad539-e4d8-44fe-9679-ec90c514a318/sm/ep1832.jpg","duration":68,"publication_date":"2010-12-21T19:57:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-36","changefreq":"weekly","video":[{"title":"2010:E42 - Week #42","description":"Jack is flying solo this week as Geoff is out. He'll go over Battlefield: Bad Company 2 - Vietnam, Need for Speed: Hot Pursuit, the newest MMO from Blizzard and more! He might hug you if you are lucky.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-36","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e63498c7-f82a-467f-8f7d-1bb8feabdafa/sm/ep1830.jpg","duration":248,"publication_date":"2010-12-20T21:57:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-13","changefreq":"weekly","video":[{"title":"2010:E13 - Volume 13","description":"Jack and Geoff are back for Fails of the Weak Lucky Number 13! You'll laugh, you'll cry, you'll want your money back! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29968f3b-18f3-4e65-8cc9-b9fb8db322c5/sm/ep1826.jpg","duration":340,"publication_date":"2010-12-17T16:36:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-returning-the-favor-sith-kicker","changefreq":"weekly","video":[{"title":"2010:E362 - Returning the Favor, Sith Kicker","description":"Jack and Geoff attempt to pet some Ewoks with their boots. Oh snap! They actually punt them in the face. They also chuck grenades at some dudes too. A pretty good day's work.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-returning-the-favor-sith-kicker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2aa34b80-7042-4a5c-badb-ee6339878806/sm/ep1825.jpg","duration":119,"publication_date":"2010-12-16T16:32:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-endor-holocrons","changefreq":"weekly","video":[{"title":"2010:E361 - Endor Holocrons","description":"Jack and Geoff are back in another Holocron gathering guide for a Star Wars: Force Unleashed title. This time they find the three hidden holocrons in the Endor DLC that just hit. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-endor-holocrons","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ba1e121-8a9b-4882-8e22-5518e13fcbe3/sm/ep1823.jpg","duration":110,"publication_date":"2010-12-16T16:22:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-season-1-achievement-horse-2","changefreq":"weekly","video":[{"title":"2010:E2 - Achievement HORSE #2","description":"Jack and Geoff kick off (officially) their new Halo: Reach HORSE series. This week they battle back and forth for supreme supremacy.","player_loc":"https://roosterteeth.com/embed/achievement-horse-season-1-achievement-horse-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8257b142-6c51-4198-a9d6-e7782565d7dc/sm/ep1821.jpg","duration":625,"publication_date":"2010-12-15T19:10:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-imprezive-flight-of-the-bumblebee","changefreq":"weekly","video":[{"title":"2010:E358 - Imprezive, Flight of the Bumblebee","description":"Jack and Geoff return to Need for Speed: Hot Pursuit to pick up a couple more achievements. This time they go for \"Imprezive\" and \"Flight of the Bumblebee.\" Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-imprezive-flight-of-the-bumblebee","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa4d468e-ac58-443f-b66e-4796513c606f/sm/ep1818.jpg","duration":126,"publication_date":"2010-12-14T17:02:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-share-the-joy-wet-in-the-vette","changefreq":"weekly","video":[{"title":"2010:E357 - Share the Joy, Wet in the Vette","description":"Jack and Geoff burn some rubber and show you how to pick up the \"Share the Joy\" and \"Wet in the Vette\" achievements in Need for Speed: Hot Pursuit.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-share-the-joy-wet-in-the-vette","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fe843df-6cb6-4a39-bdf1-130feca83b35/sm/ep1817.jpg","duration":118,"publication_date":"2010-12-14T16:49:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-43","changefreq":"weekly","video":[{"title":"2010:E41 - Week #41","description":"It's another fun time in the world of AHWU! This week Geoff and Jack go over all of the incredible retail releases! There are SO MANY! Also, Cataclysm, VGAs and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-43","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c771d7c-aa2b-4428-8c14-ec8de8cfceb3/sm/ep1814.jpg","duration":267,"publication_date":"2010-12-13T23:10:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-athens-prologue","changefreq":"weekly","video":[{"title":"2010:E356 - Athens Prologue","description":"TudorVII leads this British invasion of 5 achievements in the first mission of Blood Stone. Picking up Fireworks at the Party, Professional Killer, Sharp Instrument, No Valet Required and Greek Tragedy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-athens-prologue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":201,"publication_date":"2010-12-12T01:34:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-maze-ing-and-miniature-replica-soldier-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E521 - A-maze-ing & Miniature Replica Soldier! Achievement Guide","description":"Achievement guide for the \"A-maze-ing\" and \"Miniature Replica Soldier!\" DLC achievements in F.E.A.R. 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-maze-ing-and-miniature-replica-soldier-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":187,"publication_date":"2010-12-11T03:28:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hopscotch-roadrunner-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E520 - Hopscotch, Roadrunner Achievement Guide","description":"Geoff and Jack show you how to get the Hopscotch and Roadrunner Achievements in the Xbox Live Arcade game, Crash Course.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hopscotch-roadrunner-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/327d2b7f-2dbe-401c-ba72-2e629c2bdc0a/sm/ep1807.jpg","duration":74,"publication_date":"2010-12-10T19:18:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-12","changefreq":"weekly","video":[{"title":"2010:E12 - Volume 12","description":"Jack and Geoff are back with another weeks' worth of funny Halo: Reach clips! Enjoy Fails of the Weak! (Or is it \"Week\")","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8552ddf1-6b9f-45a2-af41-73f38f840e7f/sm/ep1806.jpg","duration":259,"publication_date":"2010-12-10T18:03:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tarzan-frequent-flyer-thats-gotta-hurt","changefreq":"weekly","video":[{"title":"2010:E354 - Tarzan, Frequent Flyer, That's Gotta Hurt","description":"Geoff and Jack show you how to get the following Achievements in the Xbox Live Arcade game, Crash Course: Tarzan, Frequent Flyer, and That's Gotta Hurt.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tarzan-frequent-flyer-thats-gotta-hurt","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97c870c5-492a-47c0-a350-61e144218645/sm/ep1805.jpg","duration":155,"publication_date":"2010-12-09T22:00:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-archaeology","changefreq":"weekly","video":[{"title":"2010:E353 - How To: Archaeology","description":"Jack and Geoff are back in the World of Warcraft: Cataclysm showing you how to use the new secondary profession, Archaeology. Jones would be proud.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-archaeology","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a277191e-133d-422c-acdc-ceecce5c92ab/sm/ep1804.jpg","duration":197,"publication_date":"2010-12-09T17:57:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-first-flights-in-orgrimmar","changefreq":"weekly","video":[{"title":"2010:E350 - First Flights in Orgrimmar","description":"Jack and Geoff discuss the finer points of PvE servers vs. PvP servers in World of Warcraft while a piece of WoW history takes place on the screen. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-first-flights-in-orgrimmar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c61f0174-9302-45bd-b750-3e1f51440479/sm/ep1799.jpg","duration":123,"publication_date":"2010-12-07T22:27:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-unstoppable-program-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E518 - Unstoppable Program Achievement Guide","description":"Geoff and Jack show you an easy place to get the Unstoppable Program Achievement in the Xbox 360 version of Tron Evolution.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-unstoppable-program-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17370bc0-b64a-4612-8890-77da6d7d02c6/sm/ep1797.jpg","duration":104,"publication_date":"2010-12-07T21:41:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-horse-season-1-achievement-horse","changefreq":"weekly","video":[{"title":"2010:E1 - Achievement HORSE","description":"Jack and Geoff try something a bit different in Halo: Reach. Today they played a game of HORSE. Things get a bit wacky. Let us know if you enjoy this stuff, we'll keep making it if so!","player_loc":"https://roosterteeth.com/embed/achievement-horse-season-1-achievement-horse","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05551a5b-537e-49ea-9b94-394c5576cbdb/sm/ep1796.jpg","duration":586,"publication_date":"2010-12-07T01:17:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-42","changefreq":"weekly","video":[{"title":"2010:E40 - Week #40","description":"Jack and Geoff start off December with a Cataclysmic AHWU! Watch as they go over Blizzard's new expansion, some XBLA titles and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-42","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f78c915-8a3e-4f0c-a3d2-7f5457c06724/sm/ep1795.jpg","duration":209,"publication_date":"2010-12-06T23:15:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-knight-jumps-chesty-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E517 - Knight Jumps Chesty Achievement Guide","description":"Geoff and Griffon show you how to get the Knight Jumps Chesty Achievement in Fable 3, and as a bonus, the legendary weapon in Sunset House.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-knight-jumps-chesty-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b6fbeae-7878-4742-9c43-9a394bfd00b4/sm/ep1793.jpg","duration":290,"publication_date":"2010-12-03T18:45:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-11","changefreq":"weekly","video":[{"title":"2010:E11 - Volume 11","description":"Jack and Geoff are back with another installment of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64b696b6-cbf6-46a5-b107-2f6c109d70d7/sm/ep1792.jpg","duration":307,"publication_date":"2010-12-03T18:40:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rest-in-pieces-and-go-ahead-against-the-wall","changefreq":"weekly","video":[{"title":"2010:E347 - Rest in Pieces and Go ahead against the wall","description":"Geoff and Gus show you how to get the Rest in Pieces and Go ahead against the wall Achievements in SBK X.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rest-in-pieces-and-go-ahead-against-the-wall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2d1cc709-8e4a-407f-970c-5b89f2f141f2/sm/ep1783.jpg","duration":164,"publication_date":"2010-12-01T20:59:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gnome-invasion-part-four","changefreq":"weekly","video":[{"title":"2010:E346 - Gnome Invasion Part Four","description":"Geoff and Griffon show you where to find the 50 gnomes hidden around Albion to get the Gnome Invasion Achievement in Fable 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gnome-invasion-part-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a638a9f0-b7c5-4e03-9e4c-008ca1bf2e93/sm/ep1782.jpg","duration":206,"publication_date":"2010-12-01T20:52:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gnome-invasion-part-three","changefreq":"weekly","video":[{"title":"2010:E345 - Gnome Invasion Part Three","description":"Geoff and Griffon show you where to find the 50 gnomes hidden around Albion to get the Gnome Invasion Achievement in Fable 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gnome-invasion-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faa9482a-768e-4005-882e-b974e50b5103/sm/ep1780.jpg","duration":244,"publication_date":"2010-12-01T15:32:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gnome-invasion-part-two","changefreq":"weekly","video":[{"title":"2010:E344 - Gnome Invasion Part Two","description":"Geoff and Jack show you where to find the 50 gnomes hidden around Albion to get the Gnome Invasion Achievement in Fable 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gnome-invasion-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c57208f-414f-415d-9582-29fd46ae773a/sm/ep1779.jpg","duration":253,"publication_date":"2010-12-01T15:30:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-borderlands-claptrap-new-robot-revolution-5-achievement","changefreq":"weekly","video":[{"title":"2010:E511 - Borderlands Claptrap New Robot Revolution- 5 achievement","description":"Showing how to unlock 5 achievements in the newest Borderlands DLC","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-borderlands-claptrap-new-robot-revolution-5-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":381,"publication_date":"2010-11-30T22:51:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fishing-in-halo-reach","changefreq":"weekly","video":[{"title":"2010:E343 - Fishing in Halo: Reach","description":"Geoff and Jack show you how to kill some time between games on the new Noble Map-pack map, Tempest.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fishing-in-halo-reach","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/639907dd-87ad-471b-b12a-061c6150531a/sm/ep1777.jpg","duration":176,"publication_date":"2010-11-30T15:37:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-41","changefreq":"weekly","video":[{"title":"2010:E39 - Week #39","description":"Jack and Geoff are back with a post-Turkey Day AHWU. Check it out as they go through this week's releases including Epic Mickey and more! Do you AHWU I AHWU.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-41","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e9297d1-6ff1-4a56-a2e4-0fffe34871de/sm/ep1775.jpg","duration":245,"publication_date":"2010-11-29T22:44:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-nba-jam-game-ending-achievements","changefreq":"weekly","video":[{"title":"2010:E510 - NBA Jam Game Ending Achievements","description":"BrownMan back again, this time showing us how to get the 3 game ending achievements in NBA Jam.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-nba-jam-game-ending-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":306,"publication_date":"2010-11-27T00:49:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-bloody-achievements","changefreq":"weekly","video":[{"title":"2010:E507 - 3 Bloody Achievements","description":"Fragger shows you how to pick up three quick achievements in Splatterhouse, the bloody fun time. He goes for The Business of Killing, Morbid Dismemberment and Army of Dead Evil. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-bloody-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cae3e8e-341d-4ec2-a014-0836d96b9758/sm/ep1761.jpg","duration":130,"publication_date":"2010-11-26T22:00:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-10","changefreq":"weekly","video":[{"title":"2010:E10 - Volume 10","description":"Jack and Geoff shake off the turkey hangover for this Black Friday edition of Fails of the Weak!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87b64132-19de-47a6-9deb-b4db14d843d5/sm/ep1760.jpg","duration":237,"publication_date":"2010-11-26T17:03:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-10","changefreq":"weekly","video":[{"title":"2010:E341 - Rift Solution 10","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4ae88d2c-114a-4346-a88f-55dad64bd523/sm/ep1759.jpg","duration":158,"publication_date":"2010-11-25T05:10:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-9","changefreq":"weekly","video":[{"title":"2010:E340 - Rift Solution 9","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/272a3eef-3e04-4f19-8421-498889815122/sm/ep1758.jpg","duration":123,"publication_date":"2010-11-25T05:10:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-8","changefreq":"weekly","video":[{"title":"2010:E339 - Rift Solution 8","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d049b9d0-3b80-41c4-b1d5-9901fa4fbbd5/sm/ep1757.jpg","duration":127,"publication_date":"2010-11-25T05:10:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-7","changefreq":"weekly","video":[{"title":"2010:E338 - Rift Solution 7","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/760f86fe-2cc2-4228-93d9-1d6853662849/sm/ep1756.jpg","duration":153,"publication_date":"2010-11-25T05:10:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-6","changefreq":"weekly","video":[{"title":"2010:E337 - Rift Solution 6","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c574f47f-ea50-4eb5-be6d-3373c798f252/sm/ep1755.jpg","duration":151,"publication_date":"2010-11-25T05:09:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-5","changefreq":"weekly","video":[{"title":"2010:E336 - Rift Solution 5","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46983f0f-5248-4447-885f-023a94d78f9c/sm/ep1754.jpg","duration":129,"publication_date":"2010-11-25T05:09:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-4","changefreq":"weekly","video":[{"title":"2010:E335 - Rift Solution 4","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79097582-c773-48b5-ab3a-da3cf24c9999/sm/ep1753.jpg","duration":164,"publication_date":"2010-11-25T05:09:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-3","changefreq":"weekly","video":[{"title":"2010:E334 - Rift Solution 3","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/374801f7-8ab9-4859-9622-65260a028196/sm/ep1752.jpg","duration":128,"publication_date":"2010-11-25T05:09:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-2","changefreq":"weekly","video":[{"title":"2010:E333 - Rift Solution 2","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b492da47-b2cf-4309-8f5a-ed6981ddd8ff/sm/ep1751.jpg","duration":118,"publication_date":"2010-11-25T05:08:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rift-solution-1","changefreq":"weekly","video":[{"title":"2010:E332 - Rift Solution 1","description":"Jack and Geoff go through a rift in Assassin's Creed Brotherhood and show you how to come out on the other side in one piece.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rift-solution-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26010308-ed44-46f1-8f9e-903d3db377d4/sm/ep1750.jpg","duration":115,"publication_date":"2010-11-25T05:08:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-demolish-part-2-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E504 - Demolish Part 2 Achievement Guide","description":"kyledrj1995 shows us how to blow stuff up in Battlefield: Bad Company 2 and get some Gamerscore!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-demolish-part-2-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":104,"publication_date":"2010-11-24T23:31:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-golden-boy","changefreq":"weekly","video":[{"title":"2010:E331 - Golden Boy","description":"Jack and Geoff go back to the very first Romulus cave and find the three flags buried within. That does it for all of the Borgia flags not on the normal map! Hooray!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-golden-boy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6e8b41d7-d8df-496b-a4ba-153609177c27/sm/ep1744.jpg","duration":159,"publication_date":"2010-11-24T18:42:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-28","changefreq":"weekly","video":[{"title":"2010:E28 - Tombstone Easter Eggs","description":"Geoff and Jack show you some of the lighter sides of death by checking out the creative and hilarious tombstones around Red Dead Redemption","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-28","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/145288e5-61fd-4bc9-bb46-1258e11bcb7e/sm/ep1743.jpg","duration":113,"publication_date":"2010-11-24T16:09:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-worlds-worst-street-performer","changefreq":"weekly","video":[{"title":"2010:E330 - World's Worst Street Performer","description":"It's not really an easter egg per say, but Geoff and Jack show you the worst street performer in the world, and what they do in Renaissance era Rome to hecklers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-worlds-worst-street-performer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e01fd77e-18bb-4a52-87d7-949d832f2d46/sm/ep1742.jpg","duration":88,"publication_date":"2010-11-24T15:14:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-undertaker-2-0","changefreq":"weekly","video":[{"title":"2010:E329 - Undertaker 2.0","description":"Jack and Geoff do their best to immitate the wrestler of the same name. Naw, just kidding. They just go hit up another Romulus thing in Assassin's Creed Brotherhood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-undertaker-2-0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8c62c98-b71a-4088-8cd5-ada3721308f3/sm/ep1741.jpg","duration":183,"publication_date":"2010-11-23T22:31:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-one-man-wrecking-crew","changefreq":"weekly","video":[{"title":"2010:E328 - One-Man Wrecking Crew","description":"Jack and Geoff just love them some Romulus cave thingys. Follow along with them as they pick up the three Borgia flags in this one.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-one-man-wrecking-crew","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b57775fb-d2ec-4d9c-9d4d-d72422a13e45/sm/ep1740.jpg","duration":185,"publication_date":"2010-11-23T22:30:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fly-like-an-eagle-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E503 - Fly Like an Eagle Achievement Guide","description":"Geoff and Jack show you how to get the Fly Like an Eagle Achievement in Sequence 8 of Assassin's Creed: Brotherhood.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fly-like-an-eagle-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61719c27-ec51-4d6e-9bfd-4c7f23e1bb1c/sm/ep1739.jpg","duration":172,"publication_date":"2010-11-23T18:25:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-plumber","changefreq":"weekly","video":[{"title":"2010:E327 - Plumber","description":"Jack and Geoff put on their plumbing belts and grab the Plumber achievement in Assassin's Creed Brotherhood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-plumber","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d41650e8-4b8d-4599-bed4-32e76de9ede8/sm/ep1738.jpg","duration":185,"publication_date":"2010-11-23T17:38:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-amen","changefreq":"weekly","video":[{"title":"2010:E326 - Amen","description":"Jack and Geoff get all religious and pick up the \"Amen\" achievement in Assassin's Creed Brotherhood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-amen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4d22af4-eff0-46b9-92f0-a87bf189fea1/sm/ep1737.jpg","duration":160,"publication_date":"2010-11-23T17:38:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gladiator","changefreq":"weekly","video":[{"title":"2010:E325 - Gladiator","description":"Jack and Geoff walk you through a Romulus Den in Assassin's Creed Brotherhood and pick up the \"Gladiator\" achievement. Geoff REALLY likes Gladiators. Not sure why.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gladiator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c7905a78-72bf-427b-ad37-2d359953d08d/sm/ep1736.jpg","duration":173,"publication_date":"2010-11-23T00:05:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nba-jam-burning-finger-roll-clean-sheet","changefreq":"weekly","video":[{"title":"2010:E320 - NBA Jam Burning Finger Roll Clean Sheet","description":"BrownMan is here to show you how to pick up 3 achievements in NBA Jam","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nba-jam-burning-finger-roll-clean-sheet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":269,"publication_date":"2010-11-20T03:47:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nba-jam-triple-up","changefreq":"weekly","video":[{"title":"2010:E319 - NBA Jam Triple Up","description":"BrownMan is back in NBA Jam showing you how to pick up both the Doube Up and Triple Up achievements","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nba-jam-triple-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":223,"publication_date":"2010-11-20T03:47:03.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spring-cleaning","changefreq":"weekly","video":[{"title":"2010:E318 - Spring Cleaning","description":"Geoff and Jack stumble their way through getting the Spring Cleaning Achievement in Assassin's Creed: Brotherhood.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spring-cleaning","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2b2cdfe-c8b2-452c-9f14-06d55124011f/sm/ep1725.jpg","duration":164,"publication_date":"2010-11-19T23:28:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-9","changefreq":"weekly","video":[{"title":"2010:E9 - Volume 9","description":"Jack and Geoff are back, bright and early for Fails of the Weak, Volume 9. Enjoy the chaos!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d225b2a-aad5-4de8-b55e-ace5507e2841/sm/ep1723.jpg","duration":259,"publication_date":"2010-11-19T18:18:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-carters-helmet-avatar-award-guide","changefreq":"weekly","video":[{"title":"2010:E498 - Carter's Helmet Avatar Award Guide","description":"Geoff and Kerry show you an easyish way to beat Winter Contingency on Legendary without dying, to unlock the Carter's Helmet Avatar Award in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-carters-helmet-avatar-award-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6860e643-3593-4b08-9f67-d74da72ab2f3/sm/ep1720.jpg","duration":229,"publication_date":"2010-11-17T18:21:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gnome-invasion-part-one","changefreq":"weekly","video":[{"title":"2010:E316 - Gnome Invasion Part One","description":"Geoff and Jack show you where to find the 50 gnomes hidden around Albion to get the Gnome Invasion Achievement in Fable 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gnome-invasion-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9839ef0d-2fa7-4f8d-930f-aa090019ea79/sm/ep1718.jpg","duration":242,"publication_date":"2010-11-16T15:17:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-criterion-visit","changefreq":"weekly","video":[{"title":"2010:E315 - Criterion Visit","description":"Jack makes his way to London to check out Criterion games and get his dirty paws on Need for Speed: Hot Pursuit. Check out this early look and interviews with developers!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-criterion-visit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/273e8c25-cd97-4d85-a436-13b8654ac61a/sm/ep1717.jpg","duration":276,"publication_date":"2010-11-15T23:57:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-8","changefreq":"weekly","video":[{"title":"2010:E8 - Volume 8","description":"Jack and Geoff polish off another week with yet another volume of Fails of the Weak! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ec3fd24-5b37-452c-a7e6-2c085399b68e/sm/ep1715.jpg","duration":219,"publication_date":"2010-11-12T23:26:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-i-am-the-key-master-achievement-guide-pt-5","changefreq":"weekly","video":[{"title":"2010:E495 - I Am the Key Master Achievement Guide (pt 5)","description":"Geoff and Griffon show you where to find 11 more hidden keys in Fable 3 to inch closer to the I Am the Key Master Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-i-am-the-key-master-achievement-guide-pt-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ef9738e-0500-44bd-a996-cd1614c14fdd/sm/ep1709.jpg","duration":386,"publication_date":"2010-11-10T14:53:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tough-economy-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E494 - Tough Economy Achievement Guide","description":"Kerry and Geoff show you how to get the Tough Economy Achievement in Call of Duty: Black Ops.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tough-economy-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6480d909-6047-401f-9846-4200cfe4e375/sm/ep1708.jpg","duration":87,"publication_date":"2010-11-09T18:55:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-revelations-and-redemption-hidden-intel-levels-14-and-15","changefreq":"weekly","video":[{"title":"2010:E312 - Revelations & Redemption Hidden Intel (Levels 14 & 15)","description":"Jack and Geoff finish off the rest of the hidden intel in Call of Duty: Black Ops. Follow along as they spot the final hidden items in Revelations and Redemption. Keep in mind, there be spoilers ahead!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-revelations-and-redemption-hidden-intel-levels-14-and-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/675c7e67-7668-432c-ab48-75e60427a6a6/sm/ep1703.jpg","duration":164,"publication_date":"2010-11-09T02:12:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-payback-and-rebirth-hidden-intel-levels-12-and-13","changefreq":"weekly","video":[{"title":"2010:E311 - Payback & Rebirth Hidden Intel (Levels 12 & 13)","description":"Geoff and Jack are so close to finding all of the hidden intel in Call of Duty: Black Ops. This time they go through the levels Payback and Rebirth while keeping a keen eye out for more hidden intel.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-payback-and-rebirth-hidden-intel-levels-12-and-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b708572e-74a0-4a46-b39c-f57cb9471d6d/sm/ep1702.jpg","duration":134,"publication_date":"2010-11-09T02:12:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crash-site-and-wmd-hidden-intel-levels-10-and-11","changefreq":"weekly","video":[{"title":"2010:E310 - Crash Site & WMD Hidden Intel (Levels 10 & 11)","description":"Jack and Geoff are almost finished with the hidden intel in Call of Duty: Black Ops. This time they find the hidden tape decks in the levels Crash Site and WMD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crash-site-and-wmd-hidden-intel-levels-10-and-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1906834-2e0b-4968-bb2b-ddd51c0a8d57/sm/ep1701.jpg","duration":128,"publication_date":"2010-11-09T02:11:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-project-nova-and-victor-charlie-hidden-intel-levels-8-and-9","changefreq":"weekly","video":[{"title":"2010:E309 - Project Nova & Victor Charlie Hidden Intel (Levels 8 & 9)","description":"Jack and Geoff can't get enough intel and keep searching for the hidden kind in Call of Duty: Black Ops. This time they dig in to Project Nova and Victor Charlie.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-project-nova-and-victor-charlie-hidden-intel-levels-8-and-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30328e64-dc24-434b-8b3a-8a741cf48ac6/sm/ep1700.jpg","duration":158,"publication_date":"2010-11-09T02:10:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-defector-and-numbers-hidden-intel-levels-6-and-7","changefreq":"weekly","video":[{"title":"2010:E308 - The Defector & Numbers Hidden Intel (Levels 6 & 7)","description":"Geoff and Jack are back, looking for more of the elusive intel in Call of Duty: Black Ops. This time they check out the levels The Defector and Numbers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-defector-and-numbers-hidden-intel-levels-6-and-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab258c78-2830-4edb-9c5d-3a20807ed72f/sm/ep1699.jpg","duration":154,"publication_date":"2010-11-09T02:09:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-executive-order-and-s-o-g-hidden-intel-levels-4-and-5","changefreq":"weekly","video":[{"title":"2010:E307 - Executive Order & S.O.G. Hidden Intel (Levels 4 & 5)","description":"Jack and Geoff dive back in to Call of Duty: Black Ops and wander through the Executive Order and S.O.G. Levels finding all of the hidden intel.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-executive-order-and-s-o-g-hidden-intel-levels-4-and-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3de107b-b383-49e1-aff2-19ea77abcbeb/sm/ep1698.jpg","duration":136,"publication_date":"2010-11-09T02:08:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-operation-40-and-vorkuta-hidden-intel-levels-1-and-2","changefreq":"weekly","video":[{"title":"2010:E306 - Operation 40 & Vorkuta Hidden Intel (Levels 1 & 2)","description":"Jack and Geoff walk you through the first couple of levels in Call of Duty: Black Ops and find the hidden intel. Included in this video are the levels Operation 40 and Vorkuta.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-operation-40-and-vorkuta-hidden-intel-levels-1-and-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe1fe703-6e46-4356-b981-3fb742ae674a/sm/ep1697.jpg","duration":145,"publication_date":"2010-11-09T01:42:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-undead-treasure-hunter-challenge","changefreq":"weekly","video":[{"title":"2010:E305 - Undead Treasure Hunter Challenge","description":"Kerry and Jack show you where to find the five hidden treasures in the Undead NIghtmare DLC for Red Dead Redemption, to help you complete the Undead Treasure Hunter Challenge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-undead-treasure-hunter-challenge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd410e72-2217-4f73-854a-eb7f74b7369d/sm/ep1696.jpg","duration":225,"publication_date":"2010-11-08T22:42:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-35","changefreq":"weekly","video":[{"title":"2010:E36 - Week #36","description":"Geoff and Jack are back for a super-quick AHWU this week because they have to go wait in line at Best Buy to pick up Call of Duty: Black Ops when it hits at midnight. AHHHHWWUUU!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-35","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce23bf4c-0747-4c55-a0d2-d9e4a67919d2/sm/ep1695.jpg","duration":122,"publication_date":"2010-11-08T19:40:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-sims-3-5-beginning-achievements","changefreq":"weekly","video":[{"title":"2010:E489 - The Sims 3 - 5 Beginning Achievements","description":"BrownMan shows you how to pick up 5 simple achievements in The Sims 3","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-sims-3-5-beginning-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":450,"publication_date":"2010-11-08T16:04:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-coronation-chicken-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E487 - Coronation Chicken Achievement Guide","description":"SPOILER ALERT: In this video, Geoff and Griffon show you how to get the missable \"Coronation Chicken\" Achievement in Fable 3. There are story spoilers in the video. Watcher be ware.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-coronation-chicken-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/902808b6-a79d-46a9-af9c-ee6cd07035de/sm/ep1692.jpg","duration":96,"publication_date":"2010-11-08T15:03:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-7","changefreq":"weekly","video":[{"title":"2010:E7 - Volume 7","description":"Jack and Geoff jump back in to Halo: Reach for another weeks' worth of FAILS! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77e7d4ab-68a3-4839-9fe4-c4a8ff00d713/sm/ep1691.jpg","duration":242,"publication_date":"2010-11-05T21:12:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chupathingy-and-fan-service","changefreq":"weekly","video":[{"title":"2010:E304 - Chupathingy & Fan Service","description":"Geoff and Kerry show you how to find the rest of the mythical creatures in Red Dead Redemption Undead Nightmare including the Four Horses of the Apocalypse, the Chupacabra and the Unicorn. Bonus at the end!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chupathingy-and-fan-service","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0bce828-75cd-43b6-b9b7-ec8d12e24e82/sm/ep1690.jpg","duration":204,"publication_date":"2010-11-05T18:35:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-weathered-10-mm-pistol-glitch","changefreq":"weekly","video":[{"title":"2010:E303 - Weathered 10 MM Pistol Glitch","description":"Gus and Geoff show you a really weird and interesting glitch involving the Weathered 10 MM Pistol and a lazer site in Fallout: New Vegas.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-weathered-10-mm-pistol-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/273464b2-52f7-4a0d-8dae-1625a4f6b878/sm/ep1689.jpg","duration":100,"publication_date":"2010-11-05T18:30:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jump-the-shark","changefreq":"weekly","video":[{"title":"2010:E302 - Jump the Shark!","description":"Jack and Geoff do the unthinkable. They have made their first ever Kinect achievement guide. Check out how to pick up the \"Jump the Shark!\" achievement in Kinect Adventures.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jump-the-shark","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/645538cb-6d20-4197-8628-f3b880ab444d/sm/ep1688.jpg","duration":211,"publication_date":"2010-11-05T16:47:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kyo-benimaru-daimon-iori-mature-vice","changefreq":"weekly","video":[{"title":"2010:E301 - Kyo, Benimaru, Daimon, Iori, Mature, Vice","description":"Jack and Kerry walk you through the first batch of King of Fighters 2002 Unlimited Match and show off their Max and Max2 moves. In this video we have Kyo, Benimaru, Daimon, Iori, Mature & Vice. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kyo-benimaru-daimon-iori-mature-vice","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/730fb169-fed2-42dc-b49f-c00525bb2540/sm/ep1683.jpg","duration":179,"publication_date":"2010-11-04T19:21:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mighty-blow","changefreq":"weekly","video":[{"title":"2010:E300 - Mighty Blow","description":"Jack and Kerry show you how to pick up the \"Mighty Blow\" achievement with Ralf in King of Fighters 2002 Ulnlimited Match, now available on Xbox Live. What a mouthful.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mighty-blow","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2cba8848-0386-4c24-8010-36c8be91735c/sm/ep1682.jpg","duration":78,"publication_date":"2010-11-04T18:50:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-40","changefreq":"weekly","video":[{"title":"2010:E35 - Week #35","description":"AHWU kicks off November with a look at the giant list of games coming out this week along with the Xbox Kinect. Then the guys take a look at a Supreme Court case, a WoW fan and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fa4b202-db0b-4f6e-b0a9-be68e0dfe040/sm/ep1681.jpg","duration":270,"publication_date":"2010-11-01T21:51:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pelican-and-phantom","changefreq":"weekly","video":[{"title":"2010:E299 - Pelican & Phantom","description":"Jack and Kerry show you how to get on board of the Pelican and Covenant Phantom flying machines! Holy balls awesomeness!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pelican-and-phantom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ad6503-28bf-4c3b-bf6d-067dc60ee7f1/sm/ep1680.jpg","duration":207,"publication_date":"2010-11-01T21:23:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-east-hare-egg","changefreq":"weekly","video":[{"title":"2010:E298 - East Hare Egg","description":"Geoff and Griffon show you how to find a very cool little easter egg in Fable 3, the \"East Hare Egg.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-east-hare-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b3ab77c-0de8-4e05-a10a-beffbbe63128/sm/ep1679.jpg","duration":160,"publication_date":"2010-11-01T21:04:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-27","changefreq":"weekly","video":[{"title":"2010:E27 - Portal Easter Egg","description":"Geoff and Jack show you where to find a Hobbes worshipping a companion cube, next to a cake. Portal FTW.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56173710-a675-416c-80ee-45559d3aed08/sm/ep1676.jpg","duration":80,"publication_date":"2010-10-29T19:47:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-6","changefreq":"weekly","video":[{"title":"2010:E6 - Volume 6","description":"Jack and Geoff cap off the week with another action packed video of goofiness in Halo: Reach. Enjoy Fails of the Weak Volume 6!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/60cc3916-ac33-446e-a15c-879b6373a24b/sm/ep1675.jpg","duration":264,"publication_date":"2010-10-29T19:39:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-globe-trotter","changefreq":"weekly","video":[{"title":"2010:E297 - Globe Trotter","description":"Jack and Geoff travel around the Mohave in Fallout: New Vegas and pick up the \"Globe Trotter\" achievement. Don't break them!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-globe-trotter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d53081d-58e4-4966-8c97-73dbbbf42892/sm/ep1674.jpg","duration":269,"publication_date":"2010-10-28T21:35:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-7-holocron-guide","changefreq":"weekly","video":[{"title":"2010:E482 - Level 7 Holocron Guide","description":"Jack and Geoff are still hunting for those Holocrons scattered throughout Star Wars: The Force Unleashed 2. They head back in to the Salvation this time. Almost time to hit Kamino!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-7-holocron-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73e7581d-6bd2-46c6-a454-00ad274df814/sm/ep1672.jpg","duration":203,"publication_date":"2010-10-28T20:40:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-am-the-key-master-part-two","changefreq":"weekly","video":[{"title":"2010:E296 - I Am the Key Master Part Two","description":"Geoff and Griffon show you where to find 10 more hidden keys in Fable 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-am-the-key-master-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1705c741-1971-452a-aee2-32591f873952/sm/ep1669.jpg","duration":319,"publication_date":"2010-10-28T18:03:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-strike-and-break-the-bank","changefreq":"weekly","video":[{"title":"2010:E295 - Strike! & Break the Bank","description":"Jack and Geoff smash up some Stormtroopers and Slot Machines to pick up a couple of achievements in the second level of Star Wars: The Force Unleashed. Smashy smashy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-strike-and-break-the-bank","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e4e2c15-c347-42e0-9c2f-216e51b9903f/sm/ep1668.jpg","duration":96,"publication_date":"2010-10-28T15:46:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-valet-and-return-to-sender","changefreq":"weekly","video":[{"title":"2010:E294 - Valet & Return to Sender","description":"Jack and Geoff toss some stuff at AT-MPs and pick up a couple of achievements in Star Wars: The Force Unleashed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-valet-and-return-to-sender","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8fcbd32-a650-4a32-a6de-67787afb0110/sm/ep1667.jpg","duration":89,"publication_date":"2010-10-28T15:46:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-2-holocron-guide","changefreq":"weekly","video":[{"title":"2010:E478 - Level 2 Holocron Guide","description":"Jack and Geoff are back in Star Wars: The Force Unleashed 2 finding the hidden holocrons in level 2, Cato Neimoidia, The Eastern Arch. Sounds menacing!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-2-holocron-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40c38f91-38ea-4f6d-821b-ec0da34bc37f/sm/ep1665.jpg","duration":155,"publication_date":"2010-10-27T23:26:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-1-holocron-guide","changefreq":"weekly","video":[{"title":"2010:E477 - Level 1 Holocron Guide","description":"Jack and Geoff are picking up Holocrons like old times in Star Wars: The Force Unleashed II. Join them as they run through the first level, Kamino, The Escape!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-1-holocron-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8a82ccb-6bc6-4498-aa95-6f5ef3357210/sm/ep1664.jpg","duration":107,"publication_date":"2010-10-27T22:54:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-guybrush-threepkiller","changefreq":"weekly","video":[{"title":"2010:E293 - Guybrush Threepkiller","description":"Jack and Geoff show you how to pick up the \"Guybrush Threepkiller\" costume in Star Wars: The Force Unleashed 2. Play as your favorite Monkey Island character in a Galaxy Far Far Away.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-guybrush-threepkiller","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1077b64-c050-44f5-a62b-e89a7dfe199f/sm/ep1663.jpg","duration":84,"publication_date":"2010-10-27T22:53:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-am-the-key-master-part-one","changefreq":"weekly","video":[{"title":"2010:E292 - I Am the Key Master Part One","description":"Geoff and Griffon show you where to find the first 8 of 54 hidden keys in Fable 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-am-the-key-master-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/311a58e2-6d58-4879-bbe3-043d6ed34974/sm/ep1662.jpg","duration":267,"publication_date":"2010-10-27T21:28:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-six-years-in-the-making-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E476 - Six Years in the Making Achievement Guide","description":"Kerry and Geoff show you how to find the first hidden Sasquatch (aka Bigfoot) hidden in the new Undead Nightmare DLC for Red Dead Redemption, nabbing the Six Years in the Making Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-six-years-in-the-making-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/964ab93e-0d3d-4d1e-9ccc-6614a11693e9/sm/ep1661.jpg","duration":101,"publication_date":"2010-10-26T22:04:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kamfetti-and-it-burns","changefreq":"weekly","video":[{"title":"2010:E291 - Kamfetti & It Burns!","description":"Jack and Geoff do some more terrible deeds in Star Wars: Force Unleashed 2. ;This time they pick up the level 1 achievements \"Kamfetti\" and \"It Burns!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kamfetti-and-it-burns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ccd4723-4747-4b68-a797-e145e8d35c53/sm/ep1660.jpg","duration":75,"publication_date":"2010-10-26T21:19:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stakross-medal-of-excellence","changefreq":"weekly","video":[{"title":"2010:E289 - Stakross Medal of Excellence","description":"Jack and Geoff dive in to Star Wars: Force Unleashed 2 and pick up the Stakross Medal of Excellence achievement. Be excellent to each other.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stakross-medal-of-excellence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4be6b212-b80a-4959-ac5f-5f174c174329/sm/ep1658.jpg","duration":73,"publication_date":"2010-10-26T20:00:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-beer-poker-and-fallout-3","changefreq":"weekly","video":[{"title":"2010:E288 - Beer, Poker and Fallout 3","description":"Jack and Geoff find some more Easter Eggs in Fallout: New Vegas. This time they pick up some cool Fallout 3 eggs, a strange game of poker and more!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-beer-poker-and-fallout-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bae9318-8705-402f-8d72-402442bb0254/sm/ep1657.jpg","duration":150,"publication_date":"2010-10-26T15:29:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-26","changefreq":"weekly","video":[{"title":"2010:E26 - Monty Python Easter Eggs","description":"Geoff and Jack are back in New Vegas, hunting around for elusive Easter Eggs. This time they come across two Monty Python themed eggs and Geoff is a dick!","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/18c936eb-15ef-4c15-8d51-248fe4288ad6/sm/ep1656.jpg","duration":99,"publication_date":"2010-10-25T23:24:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-39","changefreq":"weekly","video":[{"title":"2010:E34 - Week #34","description":"Jack and Geoff go futuristic this week with a green screen AHWU! Come on folks, join us as we talk about this weeks' releases such as Fable 3, Force Unleashed 2 and much much more. Also, Nikki Cox.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-39","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbb6d520-8b7c-47a9-a2e3-6cc627e61a27/sm/ep1655.jpg","duration":292,"publication_date":"2010-10-25T21:53:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-electric-slammeroo-achievement-guide-part-1","changefreq":"weekly","video":[{"title":"2010:E475 - Electric Slammeroo! Achievement Guide (Part 1)","description":"Geoff and Griffon show you where to find the first 12 hidden Sumo Slammer cards, needed to get the Achievement \"Electric Slammeroo!\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-electric-slammeroo-achievement-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/666bd5a6-2e41-40c3-8ebc-3e66e876bb21/sm/ep1653.jpg","duration":269,"publication_date":"2010-10-25T20:31:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-commander-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E474 - The Commander Achievement Guide","description":"Fragger shows you how to get \"The Commander\" Achievement in Super Meat Boy.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-commander-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f046a24a-f966-4fb8-a5f4-7d7b2949897a/sm/ep1652.jpg","duration":85,"publication_date":"2010-10-25T20:24:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-pangloss-statues-act-two","changefreq":"weekly","video":[{"title":"2010:E287 - Hidden Pangloss Statues Act Two","description":"Fragger shows you where to find the 24 hidden Pangloss statues hidden in Act Two of Vanquish (in addition to a few missed in Act One). Grabbing them all will get you the The Best of All Possible Worlds Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-pangloss-statues-act-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b0656b1-d8be-4952-a50a-bd16a01cbe25/sm/ep1651.jpg","duration":400,"publication_date":"2010-10-25T20:23:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-5","changefreq":"weekly","video":[{"title":"2010:E5 - Volume 5","description":"Jack and Geoff are back on a FRIDAY to bring forth Fails of the Weak Volume 5. After today all new FotW will be on Friday instead of Monday! Enjoy the hilarity and stupidity!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bbd457d-8670-4997-874d-fe054d5e102f/sm/ep1649.jpg","duration":213,"publication_date":"2010-10-22T21:30:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-madden-moments-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E473 - Madden Moments Achievement Guide","description":"Brownman shows us how to get the Madden Moments Achievement in Madden NFL 11.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-madden-moments-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e24755fb-ccaf-467f-b843-e9743dd9c075/sm/ep1648.jpg","duration":253,"publication_date":"2010-10-22T16:10:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-know-when-to-fold-them-caravan-explanation","changefreq":"weekly","video":[{"title":"2010:E286 - Know When To Fold Them (Caravan Explanation)","description":"Jack and Geoff do their best to explain the game Caravan in Fallout: New Vegas. Seriously, they do their best. If you still don't understand, hopefully someone in the comments can help.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-know-when-to-fold-them-caravan-explanation","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c6f1390-3d34-4813-951f-7ded23288428/sm/ep1645.jpg","duration":196,"publication_date":"2010-10-22T15:58:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-valpariso-veteran-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E471 - Valpariso Veteran Achievement Guide","description":"Tonyski and Brownman walk you through getting the Valpariso Veteran Achievement in Battlefield: Bad Company 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-valpariso-veteran-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d46f42cf-9e65-42a5-8928-52fcc3c311f1/sm/ep1644.jpg","duration":553,"publication_date":"2010-10-22T14:48:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-pangloss-statues-act-one","changefreq":"weekly","video":[{"title":"2010:E285 - Hidden Pangloss Statues Act One","description":"Fragger shows you where to find the 18 hidden Pangloss statues hidden in Acto One of Vanquish. Grabbing them all will get you the The Best of All Possible Worlds Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-pangloss-statues-act-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6dda82fd-3135-4b6c-901c-a634ecde4309/sm/ep1643.jpg","duration":244,"publication_date":"2010-10-21T19:42:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-home-run-home-run-god","changefreq":"weekly","video":[{"title":"2010:E284 - Home Run / Home Run God","description":"Geoff and Jack show you an easy place to knock out the Home Run and Home Run God Achievements iN Vanquish.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-home-run-home-run-god","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1430cf5f-e281-49d6-ab64-2672a71dc47e/sm/ep1642.jpg","duration":66,"publication_date":"2010-10-21T19:41:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-25","changefreq":"weekly","video":[{"title":"2010:E25 - Easter Eggs (George Lucas Version)","description":"Jack, Geoff and surprise guest Griffon find some George Lucas-themed Easter Eggs in Fallout: New Vegas. Check out the Indiana Jones and Star Wars eggs. If you know of an egg we've missed, email it to us at info at achievementhunter.com","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5cd0083-002d-4c55-9329-110562ea78c0/sm/ep1641.jpg","duration":130,"publication_date":"2010-10-21T17:31:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-come-fly-with-me","changefreq":"weekly","video":[{"title":"2010:E283 - Come Fly With Me","description":"Jack and Geoff head to New Vegas and pick up the \"Come Fly With Me\" achievement by sending some Ghouls in to space. SPAAACCEEE GHHHOUUUULLS!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-come-fly-with-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8cd6cdf6-f294-4a50-ba83-125b5a0d8a32/sm/ep1640.jpg","duration":421,"publication_date":"2010-10-20T23:21:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-robots-tend-to-blow-up-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E470 - Robots Tend to Blow Up Achievement Guide","description":"Geoff and Jack show you a good place to get the Robots Tend to Blow Up Achievement in Vanquish.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-robots-tend-to-blow-up-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a317b12-9753-4aa6-b041-f925bdc7e223/sm/ep1639.jpg","duration":117,"publication_date":"2010-10-20T23:14:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-impossible-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E469 - The Impossible Achievement Guide","description":"Geoff and Jack show you an extremely easy way to get the following Achievements in EA Sports MMA: The Impossible, Hands of Stone, and Rock Out With Your Knockout.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-impossible-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c2f8556b-cd7f-4b4a-8d63-2f60e1daf22b/sm/ep1638.jpg","duration":115,"publication_date":"2010-10-20T00:12:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-4","changefreq":"weekly","video":[{"title":"2010:E4 - Volume 4","description":"Jack and Geoff are back with the fourth volume of Halo: Reach faaaails! Enjoy the mayhem and screw ups.","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce4fea3d-f800-42cb-97f6-fbcdd5125f81/sm/ep1636.jpg","duration":240,"publication_date":"2010-10-18T22:23:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-38","changefreq":"weekly","video":[{"title":"2010:E33 - Week #33","description":"Jack and Geoff are a bit tired from the weekend, but none-the-less, AHWU rests for no man. This week they go over Fallout: New Vegas, Naruto, MMA, Ben 10 and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-38","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ee154af-20e6-48b5-a662-d80432dbd3cc/sm/ep1635.jpg","duration":248,"publication_date":"2010-10-18T22:19:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collectibles-act-3","changefreq":"weekly","video":[{"title":"2010:E282 - Collectibles Act 3","description":"Geoff and Kerry show you where to find the collectibles in Act 3 of Hydrophobia.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collectibles-act-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f82c7e3-ba97-45ef-b0e4-94ebe1059678/sm/ep1634.jpg","duration":124,"publication_date":"2010-10-18T20:40:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collectibles-act-2-part-2","changefreq":"weekly","video":[{"title":"2010:E281 - Collectibles Act 2 Part 2","description":"Geoff and Kerry knock out the remaining collectibles in Act 2 of Hydrophobia.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collectibles-act-2-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab1cc8c8-9ab6-48e3-8a9d-f52e8180a5f1/sm/ep1633.jpg","duration":227,"publication_date":"2010-10-18T20:39:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-branches-c-and-d","changefreq":"weekly","video":[{"title":"2010:E279 - Branches C & D","description":"Jack and Geoff are back in the Sprawl taking on the C and D branches of Dead Space: Ignition. Check it out yo. It's in space!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-branches-c-and-d","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7529bd46-2f46-4d76-aa90-733e37f9387a/sm/ep1629.jpg","duration":115,"publication_date":"2010-10-15T16:12:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-branches-a-and-b","changefreq":"weekly","video":[{"title":"2010:E278 - Branches A & B","description":"Jack and Geoff take you through two of the four branches of Dead Space Ignition. This is a prequel to Dead Space 2 available now on XBox Live and PSN. If you are in to Dead Space, you should check it out.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-branches-a-and-b","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bc0f4cb-964f-4a69-a3b1-88995a28039a/sm/ep1628.jpg","duration":123,"publication_date":"2010-10-14T22:04:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-timber-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E467 - Timber! Achievement Guide","description":"Geoff and Jack show you how and where to get the Timber! Achievement in Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-timber-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/783da81d-20ce-49b1-8176-0f6e7b629e1b/sm/ep1626.jpg","duration":57,"publication_date":"2010-10-14T19:58:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-quiet-professional-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E466 - The Quiet Professional Achievement Guide","description":"Geoff and Jack show you how to get the \"The Quiet Professional\" Achievement in Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-quiet-professional-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dde964da-252f-4cec-a421-af3a6bad94fb/sm/ep1625.jpg","duration":200,"publication_date":"2010-10-14T19:57:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-right-in-the-grape-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E465 - Right in the Grape... Achievement Guide","description":"Geoff and Jack show you where and how to get the Right in the Grape... Achievement in Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-right-in-the-grape-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d12a60b1-3518-473b-991e-9bbee9f53fc6/sm/ep1624.jpg","duration":114,"publication_date":"2010-10-14T19:55:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collectibles-act-2-part-1","changefreq":"weekly","video":[{"title":"2010:E277 - Collectibles Act 2 Part 1","description":"Jack and Kerry go swimming through Hydrophobia to pick up the first half of the collectibles in the second act! Woo hoo! Glub glub.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collectibles-act-2-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2654b58f-b8f0-4877-a4f3-4a8b8e01b95f/sm/ep1623.jpg","duration":234,"publication_date":"2010-10-13T21:52:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-feeding-the-pig-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E464 - Feeding the Pig Achievement Guide","description":"Geoff and Jack show you how to get the Feeding the Pig Achievement in the Medal of Honor level \"Compromised.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-feeding-the-pig-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f491d8e8-a36c-41b8-bcc8-4ccb8a083612/sm/ep1622.jpg","duration":114,"publication_date":"2010-10-13T15:20:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-like-a-surgeon-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E463 - Like a Surgeon Achievement Guide","description":"Geoff and Jack show you how to get the Like a Surgeon Achievement in the seventh mission of Medal of Honor \"Friends From Afar.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-like-a-surgeon-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/664cfd64-c46c-478e-97ab-76124a8e5b0a/sm/ep1621.jpg","duration":143,"publication_date":"2010-10-13T15:18:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-it-takes-a-village-out-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E462 - It takes a village...out Achievement Guide","description":"Geoff and Jack show you how to get the It Takes A Village...Out Achievement in the Gunfighters level of Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-it-takes-a-village-out-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/766e3fd2-bf72-49f8-9bc6-57d1739c97c2/sm/ep1620.jpg","duration":184,"publication_date":"2010-10-13T15:17:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tastes-like-chicken-psychopath-guide","changefreq":"weekly","video":[{"title":"2010:E461 - Tastes Like Chicken Psychopath Guide","description":"Jack and Geoff grab a bite to eat and MURDER THE CHEF in Dead Rising 2. Bon Apetit!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tastes-like-chicken-psychopath-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a956718-6f21-43bb-b6b2-6d8cb687d600/sm/ep1619.jpg","duration":170,"publication_date":"2010-10-12T21:56:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-twins-psychopath-guide","changefreq":"weekly","video":[{"title":"2010:E460 - The Twins Psychopath Guide","description":"Jack and Geoff meet up with two nice ladies in Fortune City and have a really great time with them. Yeah. Totally.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-twins-psychopath-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/395f5ca4-b4b7-448b-b02a-01a3aa7339c9/sm/ep1618.jpg","duration":242,"publication_date":"2010-10-12T18:58:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-smooth-operator-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E459 - Smooth Operator Achievement Guide","description":"Jack and Geoff pick up the \"Smooth Operator\" achievement early on in Medal of Honor. My medal is shiny!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-smooth-operator-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51012871-31e0-4c91-a671-7328d9fe7267/sm/ep1617.jpg","duration":64,"publication_date":"2010-10-12T14:40:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-manic-suppression-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E458 - Manic Suppression Achievement Guide","description":"Geoff and Jack show you how to defeat the DShK in under two minutes to get the Manic Suppression Achievement in Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-manic-suppression-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6200d1f-633c-49ed-b8b3-5a7d97ea936b/sm/ep1616.jpg","duration":164,"publication_date":"2010-10-12T14:30:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fear-the-reaper-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E457 - Fear the Reaper Achievement Guide","description":"Geoff and Jack show you how to get the Fear the Reaper Achievement in the level \"Dorothy's a Bitch\" of Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fear-the-reaper-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/690fd2f2-0f55-49d5-8d64-1b4336a5d668/sm/ep1615.jpg","duration":114,"publication_date":"2010-10-12T14:29:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dropping-deuce-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E456 - Dropping Deuce Achievement Guide","description":"Geoff and Jack show you how to get the Dropping Deuce Achievement in the \"Running with the Wolves...\" level of Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dropping-deuce-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae20addb-312c-4ba3-8842-769ad0867cdc/sm/ep1614.jpg","duration":88,"publication_date":"2010-10-12T14:28:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-sledgehammer-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E455 - The Sledgehammer Achievement Guide","description":"Geoff and Jack show you how to get the Sledgehammer Achievement on the level \"Breaking Bagram\" in Medal of Honor.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-sledgehammer-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97672292-8b27-4e56-b2e2-ab34455f61c7/sm/ep1613.jpg","duration":135,"publication_date":"2010-10-12T14:20:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-no-mercy-comparison","changefreq":"weekly","video":[{"title":"2010:E276 - No Mercy Comparison","description":"The new L4D DLC \"The Sacrifice\" came with a remake of No Mercy for Left 4 Dead 2 owners. Geoff and Jack do a side by side comparison of the new/old version.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-no-mercy-comparison","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6fb1506-f6fe-422a-9a80-37033d09a0ae/sm/ep1611.jpg","duration":152,"publication_date":"2010-10-11T19:33:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chuck-the-role-model","changefreq":"weekly","video":[{"title":"2010:E275 - Chuck the Role Model","description":"Jack and Geoff do a bit of hippie-hunting in Dead Rising 2 and pick off the crazy hippie in the bathroom. Nice dreads, jerkface.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chuck-the-role-model","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0124b120-3cb6-43a2-8537-b97af32b7bd4/sm/ep1610.jpg","duration":102,"publication_date":"2010-10-11T15:54:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-custom-finish","changefreq":"weekly","video":[{"title":"2010:E274 - Custom Finish","description":"Jack and Geoff get some spray paint and go crazy and pick up the \"Custom Finish\" achievement in Dead Rising 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-custom-finish","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bdc0ffd2-d754-425d-a868-56e81e9b0f9c/sm/ep1607.jpg","duration":79,"publication_date":"2010-10-08T18:02:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-barrel-rolled-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E454 - Barrel Rolled Achievement Guide","description":"Geoff and Jack show you how and where to get the Barrel Rolled Achievement in the new DLC \"The Sacrifice\" for Left 4 Dead and Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-barrel-rolled-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/570b38cf-0ad3-4f53-b4bd-145fc6a1d9ec/sm/ep1606.jpg","duration":97,"publication_date":"2010-10-08T17:58:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kill-bill","changefreq":"weekly","video":[{"title":"2010:E273 - Kill Bill","description":"Geoff and Jack show you how to get the Kill Bill and Supreme Sacrifice Achievements in \"The Sacrifice\" DLC for Left 4 Dead 2 and Left 4 Dead.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kill-bill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2e011ef5-b143-4476-9200-551f1182b475/sm/ep1605.jpg","duration":91,"publication_date":"2010-10-08T17:56:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-meet-the-contestants","changefreq":"weekly","video":[{"title":"2010:E272 - Meet the Contestants","description":"Jack and Geoff do a bit of slaughterin' in Dead Rising 2 and kill the psychopath that shows up in the Meet the Contestants mission! Vrrooom!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-meet-the-contestants","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a0c9614-cdfb-4090-9e42-742a0a206c58/sm/ep1604.jpg","duration":147,"publication_date":"2010-10-08T17:52:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-chaos-generator-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E453 - Chaos Generator Achievement Guide","description":"Geoff and Jack show you how to get the Chaos Generator Achievement in Left 4 Dead 2's DLC \"The Sacrifice.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-chaos-generator-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c75ddb10-1caf-49d4-bcab-d52fbe9c61cd/sm/ep1603.jpg","duration":100,"publication_date":"2010-10-07T16:54:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mail-order-zombrex","changefreq":"weekly","video":[{"title":"2010:E271 - Mail Order Zombrex","description":"Jack and Geoff deliver a package in Dead Rising 2. Ka-boom!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mail-order-zombrex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f5c2178-12ab-4474-9f06-1374d2eb9938/sm/ep1602.jpg","duration":129,"publication_date":"2010-10-07T14:58:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-here-comes-the-groom","changefreq":"weekly","video":[{"title":"2010:E270 - Here Comes the Groom","description":"Jack and Geoff go to the wedding chapel and beat the hell out of a weird dude in a rubber suit. Just another Thursday!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-here-comes-the-groom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa0c62f0-40bd-48fa-a466-e092df4d4b5d/sm/ep1601.jpg","duration":197,"publication_date":"2010-10-07T14:58:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sullivan-boss-battle","changefreq":"weekly","video":[{"title":"2010:E269 - Sullivan Boss Battle","description":"Jack and Geoff show you how to fight off Sullivan in Dead Rising 2. This guy is a major jerkwad. Beware his FALCON PUNCH.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sullivan-boss-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a95db5a-0b7e-4d99-b8da-8a89d216597f/sm/ep1599.jpg","duration":184,"publication_date":"2010-10-06T23:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-24","changefreq":"weekly","video":[{"title":"2010:E24 - \"The Sacrifice\" DLC Easter Eggs","description":"Geoff and Jack show you where to find a few easter eggs in the new DLC for Left 4 Dead and Left 4 Dead 2, \"The Sacrifice.\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5c517c7-7e36-4a03-a63c-25414701d447/sm/ep1598.jpg","duration":136,"publication_date":"2010-10-06T23:15:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-come-on-follow-me","changefreq":"weekly","video":[{"title":"2010:E268 - Come on! Follow me!","description":"Jack and Geoff walk you through the \"Come on! Follow me!\" achievement in Dead Rising 2. Pick up a bunch of stragglers and go crazy folks. Go crazy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-come-on-follow-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/24f5702a-6858-436b-a220-0f9f6b587db2/sm/ep1597.jpg","duration":282,"publication_date":"2010-10-06T23:09:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-visiting-obama","changefreq":"weekly","video":[{"title":"2010:E267 - Visiting Obama","description":"Jack and Geoff show you a neat little bonus you get for beating Franchise mode. Say hi to \"Bo\" for me!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-visiting-obama","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/281c7379-89d4-4638-a2b8-b9bce26f7384/sm/ep1596.jpg","duration":88,"publication_date":"2010-10-06T23:07:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-look-at-all-that-juice-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E452 - Look at all that juice! Achievement Guide","description":"Geoff and Griffon show you where to find, and how to combine all the food items in the game required for the \"Look at all that juice!\" Achievement in Dead Rising 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-look-at-all-that-juice-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f5cd961-3e02-471c-9223-1699263827a3/sm/ep1595.jpg","duration":313,"publication_date":"2010-10-05T18:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spree-medals","changefreq":"weekly","video":[{"title":"2010:E266 - Spree Medals","description":"Gavin compiles and shows you what each spree medal announcement sounds like in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spree-medals","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04d72f20-1784-477e-9fb2-a8eea0995233/sm/ep1594.jpg","duration":267,"publication_date":"2010-10-05T17:42:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-act-one-collectibles","changefreq":"weekly","video":[{"title":"2010:E265 - Act One Collectibles","description":"Kerry and Geoff show you where to find the all of the objects and documents hidden away in Act One of Hydrophobia. This gets you that much closer to nabbing the \"Private Eye\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-act-one-collectibles","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29ff559e-14c1-4e80-9514-8a082da48e70/sm/ep1592.jpg","duration":219,"publication_date":"2010-10-04T21:12:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010-2","changefreq":"weekly","video":[{"title":"2010:E2 - Volume 2","description":"Jack and Geoff continue the new AH series of Halo: Reach videos. The FAILS OF THE WEAK! Each week we post 10 or so fails and you get to sit there in your comfy chair and laugh and laugh. Oh boy the fun times we'll have! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/069ef09c-b9e7-4a9f-9f18-426254f387f8/sm/ep1591.jpg","duration":206,"publication_date":"2010-10-04T16:46:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-father-of-the-year-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E451 - Father of the Year Achievement Guide","description":"Geoff and Jack show you where to find the 11 gifts for Katey that are scattered about Dead Rising 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-father-of-the-year-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a5b691a2-aaab-4ff7-9c53-e842f8a16781/sm/ep1590.jpg","duration":297,"publication_date":"2010-10-04T16:35:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-everyone-knows-slappy-psychopath-guide","changefreq":"weekly","video":[{"title":"2010:E450 - Everyone Knows Slappy Psychopath Guide","description":"Jack and Geoff show you some techniques to take down Slappy in the awesome game Dead Rising 2. Oh yes. Slappy. You will go down.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-everyone-knows-slappy-psychopath-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea7727ac-b451-4a0d-b806-bced835d2482/sm/ep1588.jpg","duration":97,"publication_date":"2010-10-02T00:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-helicopter-boss-battle","changefreq":"weekly","video":[{"title":"2010:E264 - Helicopter Boss Battle","description":"Jack and Geoff show you some simple tricks to beat the Helicopter Battle in Dead Rising 2. Yeah, Jack couldn't do it on his own. Dummy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-helicopter-boss-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4cc42868-06c5-4b00-a231-9df4d6c4917a/sm/ep1587.jpg","duration":102,"publication_date":"2010-10-02T00:07:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-drowned","changefreq":"weekly","video":[{"title":"2010:E263 - Drowned","description":"Jack and Kerry teach you how to drown someone in Hydrophobia. Okay, calm down, it's just a game. They wouldn't drown anyone in real life...or WOULD THEY","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-drowned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c4ef893-356e-4c14-952f-3057bc342925/sm/ep1586.jpg","duration":56,"publication_date":"2010-09-29T23:37:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-23","changefreq":"weekly","video":[{"title":"2010:E23 - How to get four banshees on \"The Package\" (Easter Egg)","description":"Geoff and Jack show you how to get four Banshees on the Halo: Reach level \"The Package.\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-23","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e0ecc68-d6a7-4bf3-b047-747f77f57f4b/sm/ep1585.jpg","duration":190,"publication_date":"2010-09-29T20:10:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tape-it-or-die","changefreq":"weekly","video":[{"title":"2010:E262 - Tape it or DIE!","description":"Jack and Geoff show you how to pick up the secret achievement \"Tape it or DIE!\" in Dead Rising 2. Keep an eye out for those Queens!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tape-it-or-die","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6585c286-ca0a-4c0e-b37c-c50350131adf/sm/ep1584.jpg","duration":156,"publication_date":"2010-09-29T18:47:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-father-of-the-month","changefreq":"weekly","video":[{"title":"2010:E261 - Father of the Month","description":"Jack and Geoff find a badass gift and give it to Katey in Dead Rising 2. They do it for achievements, but really, who wouldn't want to give their video game daughter a gift","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-father-of-the-month","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e78dac6-3260-450a-a6fc-7dd18e3ef471/sm/ep1583.jpg","duration":85,"publication_date":"2010-09-29T18:46:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-zombrex-stashes","changefreq":"weekly","video":[{"title":"2010:E260 - All Zombrex Stashes!","description":"Jack and Geoff point out the four hidden Zombrex locations in Dead Rising 2. Because, why do any tough work when you can just sneak some more Zombrex Booyah!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-zombrex-stashes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f114317c-e86e-406e-ac91-9109b6ad2f55/sm/ep1582.jpg","duration":130,"publication_date":"2010-09-28T21:17:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stick-em-up","changefreq":"weekly","video":[{"title":"2010:E259 - Stick 'em up","description":"Jack and Geoff make a zombie look silly! Oh man, he's got a painting on his head and a barrel around him! Hoo-dilly!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stick-em-up","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d41658c5-b6ec-4fb5-956f-0c6fe473853c/sm/ep1581.jpg","duration":111,"publication_date":"2010-09-28T21:03:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-skill-to-survive","changefreq":"weekly","video":[{"title":"2010:E258 - The Skill To Survive","description":"Jack and Geoff make a new friend in a GIANT TIGER named Snowflake. Awwww, wittle kitty!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-skill-to-survive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22f66b86-28c0-4d91-805b-68367191c932/sm/ep1580.jpg","duration":181,"publication_date":"2010-09-28T16:11:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-22","changefreq":"weekly","video":[{"title":"2010:E22 - Hidden Ammo Cache Easter Egg","description":"Geoff and Jack show you where to find a very cool and hidden ammo cache on the level \"Pillar of Autumn\" in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-22","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/969bcbe5-9e29-42ce-9dc1-a0dbede286db/sm/ep1579.jpg","duration":91,"publication_date":"2010-09-28T14:32:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-21","changefreq":"weekly","video":[{"title":"2010:E21 - Master Chief Statue Easter Egg","description":"Geoff and Jack show where to find a cool little Master Chief statue hidden away in the Lone Wolves level of Halo: Reach.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80a3c016-9d4e-4fbc-ab22-d51670c22683/sm/ep1577.jpg","duration":131,"publication_date":"2010-09-27T17:03:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/fails-of-the-weak-2010","changefreq":"weekly","video":[{"title":"2010:E1 - Volume 1","description":"Jack and Geoff kick off a new series of Halo: Reach videos. The FAILS OF THE WEAK! Each week we'll post 10 or so fails and you get to sit there in your comfy chair and laugh and laugh. Oh boy the fun times we'll have! Enjoy!","player_loc":"https://roosterteeth.com/embed/fails-of-the-weak-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf2427ac-a493-4513-964f-0d3ea961613b/sm/ep1576.jpg","duration":272,"publication_date":"2010-09-27T16:04:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-20","changefreq":"weekly","video":[{"title":"2010:E20 - Suicidal Marine Easter Egg","description":"2010:E20 - Suicidal Marine Easter Egg","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-20","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8250513-5789-4691-9746-cef80eb3ecc4/sm/ep1574.jpg","duration":126,"publication_date":"2010-09-24T16:12:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-comic-fan-achievement-guide-part-2","changefreq":"weekly","video":[{"title":"2010:E449 - Comic Fan Achievement Guide Part 2","description":"Community member tonyski shows you where to find the remaining hidden comic pages (36-70) to get the Comic Fan Achievement in Planet 51.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-comic-fan-achievement-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1012de39-fa6f-40c9-89c4-f7a0c1122301/sm/ep1573.jpg","duration":444,"publication_date":"2010-09-24T16:12:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-comic-fan-achievement-guide-part-1","changefreq":"weekly","video":[{"title":"2010:E448 - Comic Fan Achievement Guide Part 1","description":"Community member tonyski shows you where to find the first 35 (of 70) hidden comic pages to get the Comic Fan Achievement in Planet 51.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-comic-fan-achievement-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4512ad59-0bf7-4720-abb1-32dfbe74d9e2/sm/ep1572.jpg","duration":499,"publication_date":"2010-09-24T16:10:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-6-fails","changefreq":"weekly","video":[{"title":"2010:E257 - 6 Fails!","description":"Jack and Geoff walk you through some community submitted FAILS in Halo: Reach. If you have a fail you'd like to see us do commentary on, send it in to info@achievementhunter.com and we'll put it in the next weekly batch of fails.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-6-fails","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98e722f2-eb76-4fc6-93f0-d3e28555f929/sm/ep1571.jpg","duration":143,"publication_date":"2010-09-22T17:01:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-19","changefreq":"weekly","video":[{"title":"2010:E19 - Reach Racer Easter Egg","description":"Geoff, Jack, and Kerry show you how to activate a very cool new Easter Egg in Oni: Sword Base in the Halo Reach campaign. Hitting two invisible switches at the same time will activate a very cool racing game called \"Reach Racer.\"","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e785158-fe94-43b9-a6c0-6424885fbe3c/sm/ep1567.jpg","duration":160,"publication_date":"2010-09-21T13:47:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-crowd-control-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E446 - Crowd Control Achievement Guide","description":"Geoff and Jack show you an easy way to get the Crowd Control Achievement (Killionaire) in Firefight.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-crowd-control-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34fbae88-3318-48b7-9faa-c5f01281dd56/sm/ep1565.jpg","duration":71,"publication_date":"2010-09-20T19:18:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-datapads-10-19","changefreq":"weekly","video":[{"title":"2010:E254 - Hidden DataPads 10-19","description":"Geoff, Jack and Kerry find the last Legendary DataPads in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-datapads-10-19","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1538920a-0048-4085-b293-5bb9c552fd11/sm/ep1563.jpg","duration":398,"publication_date":"2010-09-17T23:56:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-18","changefreq":"weekly","video":[{"title":"2010:E18 - Master Chief is in Reach \"Easter Egg\"","description":"Geoff and Kerry show you a very short, but unmistakable shot of Master Chief at the end of Halo Reach. This video contains SPOILERS. Be warned.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-18","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b38f4c1-f16c-4ddd-bf1e-8099a5d3537f/sm/ep1562.jpg","duration":90,"publication_date":"2010-09-16T22:55:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-17","changefreq":"weekly","video":[{"title":"2010:E17 - Tribute Room Easter Egg","description":"Geoff and Burnie check out the secret \"Tribute Room\" Easter Egg in the \"Package\" level of Halo: Reach.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-17","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6df23ef-f83f-4a13-8e3b-d419ee60f088/sm/ep1560.jpg","duration":400,"publication_date":"2010-09-16T21:35:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-datapads-1-9","changefreq":"weekly","video":[{"title":"2010:E253 - Hidden DataPads 1-9","description":"Kerry and Geoff show you where to find the first nine (of 19) hidden DataPads in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-datapads-1-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/574173de-d705-486d-a5de-328aadb812fd/sm/ep1559.jpg","duration":208,"publication_date":"2010-09-15T19:08:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-world-record-f-bombs","changefreq":"weekly","video":[{"title":"2010:E252 - World Record F-Bombs","description":"Jack and Geoff noticed something while playing Mafia 2; there a whole lot of naughty words in it. Like, a World-Record number of naughty words. Check out a selection of f-bombs and judge for yourself. Then let Guiness judge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-world-record-f-bombs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39edc00f-96c5-46f2-97b0-2ad02473e57a/sm/ep1558.jpg","duration":166,"publication_date":"2010-09-15T17:37:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-keep-it-clean","changefreq":"weekly","video":[{"title":"2010:E251 - Keep it Clean","description":"Jack and Geoff wander around Reach and kill some poor defenseless animals all in the name of an achievement. PETA is going to be pissed.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-keep-it-clean","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc67e154-64e9-424d-a298-422d1a3e9d89/sm/ep1557.jpg","duration":86,"publication_date":"2010-09-15T01:55:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-16","changefreq":"weekly","video":[{"title":"2010:E16 - Never Surrender, Siege of Madrigal Easter Egg","description":"Geoff and Jack show you an awesome Easter Egg in Halo: Reach. It's located on the seventh level of the game, inside of Club Errera. Watch the video to see how to play Never Surrender and Siege of Madrigal.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-16","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f421459-611e-458e-8cab-38ae5de5e9b5/sm/ep1556.jpg","duration":305,"publication_date":"2010-09-14T21:16:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wake-up-buttercup-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E445 - Wake up, Buttercup Achievement Guide","description":"Geoff and Gus show you how to get the Wake up, Buttercup Achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wake-up-buttercup-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da83097-4401-4d3f-8048-8c620635eb7f/sm/ep1555.jpg","duration":153,"publication_date":"2010-09-14T02:32:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-if-they-came-to-hear-me-beg-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E444 - If They Came to Hear Me Beg Achievement Guide","description":"Geoff and Gus show you how to get the If They Came to Hear me Beg Achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-if-they-came-to-hear-me-beg-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75b2985d-ce42-4339-8e87-c2c9a2721fb4/sm/ep1554.jpg","duration":133,"publication_date":"2010-09-14T01:57:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-your-heresy-will-stay-your-feet","changefreq":"weekly","video":[{"title":"2010:E250 - Your Heresy Will Stay Your Feet","description":"Geoff and Gus show you how to get the Your Heresy Will Stay Your Feet Achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-your-heresy-will-stay-your-feet","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e7485fc-9d51-4405-b70a-599973417039/sm/ep1553.jpg","duration":169,"publication_date":"2010-09-14T01:29:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-banshees-fast-and-low","changefreq":"weekly","video":[{"title":"2010:E249 - Banshees, Fast and Low","description":"Geoff and Gus show you how to get the Banshees, Fast and Low Achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-banshees-fast-and-low","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4629c76-757f-4dc1-99ea-68d7db980c3a/sm/ep1548.jpg","duration":207,"publication_date":"2010-09-14T01:28:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lucky-me-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E442 - Lucky Me Achievement Guide","description":"Geoff and Gus show you how to get the Lucky Me Achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lucky-me-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fed80ee9-3bf5-426b-8c13-f5fb4dacb95d/sm/ep1546.jpg","duration":112,"publication_date":"2010-09-14T01:26:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-two-corpses-in-one-grave-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E441 - Two Corpses in One Grave Achievement Guide","description":"Geoff and Gus show you how to get the Two Corpses in One Grave Achievement in Halo: Reach.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-two-corpses-in-one-grave-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/322f7e85-6337-409d-af4a-0aafc59692ee/sm/ep1545.jpg","duration":81,"publication_date":"2010-09-14T01:25:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-most-dangerous-game-guide","changefreq":"weekly","video":[{"title":"2010:E439 - Most Dangerous Game Guide","description":"Geoff and Gus show you how to defeat the Shadow Broker's assassin Tela Vasir to get the Most Dangerous Game Achievement in Mass Effect 2's Lair of the Shadow Broker DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-most-dangerous-game-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2965372-fd65-4655-a395-4b37979191b4/sm/ep1542.jpg","duration":194,"publication_date":"2010-09-13T17:06:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-high-score-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E438 - High Score Achievement Guide","description":"Geoff and Geoff show you where to find, and how to get the High Score Achievement in Bioshock 2's Minerva's Den DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-high-score-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de7fc966-2ce8-44c8-a24a-8c11dbb85711/sm/ep1539.jpg","duration":113,"publication_date":"2010-09-10T14:23:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-nom-nom-nom-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E437 - Nom Nom Nom Achievement Guide","description":"Geoff and Kerry show you how to get the Nom Nom Nom Achievement in Plants vs Zombies.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-nom-nom-nom-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7788752c-57f0-4e59-a910-55a2e4eca090/sm/ep1538.jpg","duration":144,"publication_date":"2010-09-08T21:24:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-close-shave-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E436 - Close Shave Achievement Guide","description":"Geoff and Kerry show you how to get the Close Shave Achievement in Plants vs Zombies.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-close-shave-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73ef036b-0a33-426e-9232-9295618e4fcf/sm/ep1537.jpg","duration":85,"publication_date":"2010-09-08T21:21:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-garbage-collection-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E435 - Garbage Collection Achievement Guide","description":"Geoff and Griffon show you where to find the 10 hidden vacuum bots in Minerva's Den, the new single player DLC for Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-garbage-collection-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dffeed1a-1d75-4a99-9cfc-724ee6e74ca1/sm/ep1535.jpg","duration":233,"publication_date":"2010-09-08T15:20:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-bigger-taste-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E434 - A Bigger Taste... Achievement Guide","description":"Geoff and Griffon show you where to find all of the items needed to get the \"A Bigger Taste...\" Achievement in Dead Rising: Case Zero for Xbox Live Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-bigger-taste-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/865cf384-c3ef-4c10-9217-343e53b133a9/sm/ep1533.jpg","duration":328,"publication_date":"2010-09-07T19:51:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-zombie-exterminator","changefreq":"weekly","video":[{"title":"2010:E244 - Zombie Exterminator","description":"Geoff and Jack give some zombie killing tips for getting the Zombie Exterminator Achievement in Dead Rising 2: Case Zero.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-zombie-exterminator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a55cfddd-f410-4d9d-8b30-4036e28e8a6e/sm/ep1525.jpg","duration":156,"publication_date":"2010-09-01T21:07:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-still-creek-savior-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E432 - Still Creek Savior Achievement Guide","description":"Geoff and Jack show you where to find all of the survivors in Dead Rising 2: Case Zero for Xbox Live Arcade. Rescuing them all we nab you the Still Creek Savior Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-still-creek-savior-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94f3c960-d8dc-4334-bf9d-cecd1156e0ee/sm/ep1524.jpg","duration":284,"publication_date":"2010-09-01T18:10:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-old-spice-swagger-pick-6-old-spice-swagger-return-very-special-teams","changefreq":"weekly","video":[{"title":"2010:E243 - Old Spice Swagger Pick 6, Old Spice Swagger Return, Very Special Teams","description":"Brownman shows us how to get the following Achievements in Madden NFL 2011: Very Special Teams, Old Spice Swagger Pick 6, and Old Spice Swagger Return.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-old-spice-swagger-pick-6-old-spice-swagger-return-very-special-teams","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2765588-0396-4b84-8bfa-907f2d250a78/sm/ep1523.jpg","duration":342,"publication_date":"2010-09-01T15:11:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-comeback-kids-winning-isnt-everything-hes-got-all-day-deadly-accurate","changefreq":"weekly","video":[{"title":"2010:E242 - Comeback Kids, Winning Isn't Everything, He's Got All Day, Deadly Accurate","description":"Brownman is back with four more Achievements in Madden NFL 2011. This time she shows how to get: Comeback Kids, Winning Isn't Everything, He's Got All Day, and Deadly Accurate.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-comeback-kids-winning-isnt-everything-hes-got-all-day-deadly-accurate","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00bbcf91-f047-4d1d-870f-5c66595ee050/sm/ep1522.jpg","duration":484,"publication_date":"2010-09-01T15:06:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cut-me-some-flak-and-foot-soldier-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E431 - Cut Me Some Flak & Foot Soldier Achievement Guide","description":"Achievement guide for the \"Cut Me Some Flak\" and \"Foot Soldier\" DLC achievements in F.E.A.R. 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cut-me-some-flak-and-foot-soldier-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":185,"publication_date":"2010-09-01T00:55:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-portraiture-achievement","changefreq":"weekly","video":[{"title":"2010:E429 - portraiture achievement","description":"a east way to get the portraiture achievement worth 20G","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-portraiture-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":115,"publication_date":"2010-09-01T00:18:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-chop-shop-achievement-guide-1","changefreq":"weekly","video":[{"title":"2010:E428 - Chop Shop Achievement Guide","description":"Geoff and Jack show you how to defeat Jed the Mechanic to get the Chop Shop Achievement in Dead Rising 2: Case Zero","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-chop-shop-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fb17c48-7ab8-48c2-9692-059c564dcdef/sm/ep1517.jpg","duration":204,"publication_date":"2010-08-31T23:15:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-locksmith-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E427 - Locksmith Achievement Guide","description":"Geoff and Jack show you how to find and open the four locked doors to get the Locksmith Achievement in Dead Rising 2: Case Zero.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-locksmith-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a50bb92-633c-45ba-8a21-4b6a1f263a9c/sm/ep1516.jpg","duration":128,"publication_date":"2010-08-31T23:11:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ready-to-ride-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E426 - Ready to Ride Achievement Guide","description":"Geoff and Jack show you where to find the missing bike parts needed to complete your motorcycle and take Katie the hell out of Still Creek, in Dead Rising 2: Case Zero.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ready-to-ride-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72f99bd2-2a43-4d3e-bc70-e4b8e57e5aa6/sm/ep1515.jpg","duration":316,"publication_date":"2010-08-31T21:05:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-27","changefreq":"weekly","video":[{"title":"2010:E27 - Week #27","description":"Jack and Geoff talk about everything gaming in this week's edition of AHWU. You get info on Dead Rising 2, PAX, Telltale Games and more!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-27","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d990d66-aefd-47f3-88ba-dcf6d3fe5d29/sm/ep1514.jpg","duration":240,"publication_date":"2010-08-30T22:01:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapters-14-and-15","changefreq":"weekly","video":[{"title":"2010:E240 - Playboy Locations Chapters 14 & 15","description":"Jack and Geoff finish off the rest of the Playboys in Mafia 2. Fifty collectibles and 100 nipples later, we gain some gamerscore for the Ladies Man achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapters-14-and-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffd1f757-2402-4390-abaa-7f15984b203f/sm/ep1511.jpg","duration":127,"publication_date":"2010-08-27T20:12:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapters-12-and-13","changefreq":"weekly","video":[{"title":"2010:E239 - Playboy Locations Chapters 12 & 13","description":"Jack and Geoff continue the search for naughty magazines in Mafia 2. This time they dig through chapters 12 and 13 and gawk at naked breasts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapters-12-and-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5e2860b-73d1-4629-99cf-1ce0f33d2e8f/sm/ep1510.jpg","duration":121,"publication_date":"2010-08-27T19:12:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-geometry-wars-retro-evolved-2-surf-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E425 - Geometry Wars: Retro Evolved 2 - Surf Achievement Guide","description":"3 tips I made to help get one of the hardest achievements in Geometry Wars 2","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-geometry-wars-retro-evolved-2-surf-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":37,"publication_date":"2010-08-27T15:40:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-secret-cheat-codes","changefreq":"weekly","video":[{"title":"2010:E238 - Secret Cheat Codes","description":"Kerry and Geoff show you the secret cheat codes to enable zombie mode, boss rush mode, and two others in the Xbox Live Arcade game, Scott Pilgrim vs the World.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-secret-cheat-codes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a945d6de-407d-4f31-a5aa-f5e5891c6b86/sm/ep1507.jpg","duration":118,"publication_date":"2010-08-26T21:32:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-4-passing-achievements","changefreq":"weekly","video":[{"title":"2010:E423 - 4 Passing Achievements","description":"Brownman shows us how to get the following passing achievements in Madden NFL 11: Did I Break it, Defensive Dominance, Perfect Game, and YACtastic.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-4-passing-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a71d7eb-502f-41b3-a627-62cae0a12a67/sm/ep1506.jpg","duration":275,"publication_date":"2010-08-26T17:53:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapters-10-and-11","changefreq":"weekly","video":[{"title":"2010:E237 - Playboy Locations Chapters 10 & 11","description":"Jack and Geoff just can't keep their hands off the Playboys in Mafia 2. This time they go through chapters 10 and 11 looking for the centerfolds. Hotness abounds.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapters-10-and-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6a51cc8-05a0-40f6-abb3-b0bd3373bd50/sm/ep1505.jpg","duration":143,"publication_date":"2010-08-26T16:27:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wake-up-call","changefreq":"weekly","video":[{"title":"2010:E236 - Wake Up Call","description":"Jack and Geoff rudely awaken Leo and pick up the \"Wake Up Call\" achievement in Mafia 2. GOOD MORNING!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wake-up-call","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b05dac3-249a-4887-b543-e3fb56a2d54e/sm/ep1504.jpg","duration":95,"publication_date":"2010-08-26T16:25:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-easy-money-guide","changefreq":"weekly","video":[{"title":"2010:E422 - Easy Money Guide","description":"Geoff and Jack show you how to earn some quick and easy money in Mafia 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-easy-money-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d26af6c4-2d02-4e53-b7b0-45dd6350853f/sm/ep1503.jpg","duration":191,"publication_date":"2010-08-25T20:53:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rooftop-wanted-poster-marek-horvath","changefreq":"weekly","video":[{"title":"2010:E235 - Rooftop Wanted Poster (Marek Horvath)","description":"Geoff and Jack show you how to get on the roof of the Authorized Repair Shop, so that you can grab the Marek Horvath poster, and get one step closer to the Card Sharp Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rooftop-wanted-poster-marek-horvath","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75c360e3-4430-4e6b-974d-69b89dc036ea/sm/ep1502.jpg","duration":137,"publication_date":"2010-08-25T20:52:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-naughty-bear-party-thrasher","changefreq":"weekly","video":[{"title":"2010:E234 - Naughty Bear: Party Thrasher","description":"I will show you how to get the first ironic kill in Naughty Bear","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-naughty-bear-party-thrasher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":102,"publication_date":"2010-08-25T19:17:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapters-8-and-9","changefreq":"weekly","video":[{"title":"2010:E233 - Playboy Locations Chapters 8 & 9","description":"Jack and Geoff peep around for more centerfolds and find a bunch of Playboys in Mafia 2. Nothing better than a game full of super hot naked women. Boobies!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapters-8-and-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb3ac3ab-bf40-477c-90cb-a162f020bed6/sm/ep1499.jpg","duration":128,"publication_date":"2010-08-25T18:58:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-get-rich-or-die-flyin","changefreq":"weekly","video":[{"title":"2010:E232 - Get Rich or Die Flyin'","description":"Jack and Geoff take to the digital skies in Mafia 2 in order to pick up the \"Get Rich or Die Flyin'\" achievement. Fly like a bird, far far away.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-get-rich-or-die-flyin","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed61f23e-f58f-4714-a0ee-8b71ba4c84db/sm/ep1498.jpg","duration":54,"publication_date":"2010-08-25T18:57:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapters-6-and-7","changefreq":"weekly","video":[{"title":"2010:E231 - Playboy Locations Chapters 6 & 7","description":"Jack and Geoff keep looking at the pretty ladies in Mafia 2. Follow along as we pick up some more Playboys in chapters 6 and 7.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapters-6-and-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7f09a04-0efc-4ca0-8749-76328ea6d4e7/sm/ep1497.jpg","duration":120,"publication_date":"2010-08-24T21:30:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapters-4-and-5","changefreq":"weekly","video":[{"title":"2010:E230 - Playboy Locations Chapters 4 & 5","description":"Jack and Geoff are picking through the pages of Playboy yet again in Mafia 2. This time they go through chapters 4 and 5 and grab a few more back issues. Hot ladies everywhere! Enjoy your Ladies Man achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapters-4-and-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed4e343b-bbb6-4659-b88f-a6c60c65caa7/sm/ep1491.jpg","duration":117,"publication_date":"2010-08-24T19:27:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-playboy-locations-chapter-2-and-3","changefreq":"weekly","video":[{"title":"2010:E229 - Playboy Locations Chapter 2 & 3","description":"Jack and Geoff start picking up some naughty magazines in Mafia 2 in order to get an achievement. Sure...we read it for the achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-playboy-locations-chapter-2-and-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/651f1028-5b34-4c0f-89bb-a5963964e95b/sm/ep1490.jpg","duration":158,"publication_date":"2010-08-24T17:15:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-a-real-gentleman-guide","changefreq":"weekly","video":[{"title":"2010:E419 - A Real Gentleman Guide","description":"Geoff and Jack show you how to get the easily missable \"A Real Gentleman\" Achievement in Mafia 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-a-real-gentleman-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/192eb058-3791-40a3-9019-0927e0a98541/sm/ep1489.jpg","duration":138,"publication_date":"2010-08-23T21:55:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-professional-mafia2","changefreq":"weekly","video":[{"title":"2010:E228 - The Professional","description":"Jack and Geoff sneak around and pick up the Professional achievement in Mafia 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-professional-mafia2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b3556198-10c2-42f9-8e64-165ea7796025/sm/ep1488.jpg","duration":300,"publication_date":"2010-08-23T21:45:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-26","changefreq":"weekly","video":[{"title":"2010:E26 - Week #26","description":"Jack and Geoff celebrate half a year's worth of AHWU with DeathSpank, Mafia 2, Snoopy, Scott Pilgrim, Shank and more! You know you love it! Achievement Hunter's Weekly Update FTW!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-26","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f69c4711-e6fe-4c42-a084-fd54aa4fa2a2/sm/ep1487.jpg","duration":224,"publication_date":"2010-08-23T20:59:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ahcommunityvids","changefreq":"weekly","video":[{"title":"2010:E226 - AHCommunityVids","description":"Jack and Geoff show off a new YouTube channel where you can be a part of Achievement Hunter!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ahcommunityvids","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/07e69db6-e12b-40e5-bc64-91082b9621aa/sm/ep1481.jpg","duration":61,"publication_date":"2010-08-20T20:32:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bioshock-2-master-protector-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E415 - Bioshock 2 - Master Protector Achievement Guide","description":"An easy way to get the Master Protector Achievement in Bioshock 2!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bioshock-2-master-protector-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":171,"publication_date":"2010-08-20T20:24:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-portal-still-alive-out-of-the-blue-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E413 - Portal: Still Alive - Out of the Blue Achievement Guide","description":"Exiled, or whatever his name is, helps players get past a tricky section during the Out of the Blue Achievement in the Xbox Live Arcade game, Portal: Still Alive.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-portal-still-alive-out-of-the-blue-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":99,"publication_date":"2010-08-20T15:00:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-level-2-red-skulls-and-cars","changefreq":"weekly","video":[{"title":"2010:E223 - Level 2 Red Skulls & Cars","description":"Jack and Geoff walk you through level 2 of Lara Croft and the Guardian of Light to find all of the hidden red skulls and vehicles you must destroy. Have fun!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-level-2-red-skulls-and-cars","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76c03430-aa51-47ca-b127-f0f2106da409/sm/ep1473.jpg","duration":209,"publication_date":"2010-08-19T21:28:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-first-3-achievements","changefreq":"weekly","video":[{"title":"2010:E411 - First 3 Achievements","description":"Brownman shows you how to pick up the first three achievements in Madden NFL 11. Turrrrducken!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-first-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c195e0f-0d8e-4168-a94d-558498b0c648/sm/ep1472.jpg","duration":388,"publication_date":"2010-08-19T15:54:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-4-more-madden-achievements","changefreq":"weekly","video":[{"title":"2010:E410 - 4 More Madden Achievements","description":"Brownman is back with another group of achievements for Madden NFL 11!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-4-more-madden-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c43e1126-247c-4626-ac4e-e61c13169ef1/sm/ep1471.jpg","duration":270,"publication_date":"2010-08-19T15:52:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-seeing-red","changefreq":"weekly","video":[{"title":"2010:E222 - Seeing Red","description":"Jack and Geoff go headhunting and pick up the \"Seeing Red\" achievement in Lara Croft and the Guardian of Light, the new XBLA title.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-seeing-red","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6c88086-2d70-4159-8397-c7f5e8afd574/sm/ep1470.jpg","duration":154,"publication_date":"2010-08-18T22:12:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pick-up-6-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E409 - Pick up 6 Achievement Guide","description":"Geoff and Griffon from Achievement Hunter show you an easier way to get the Pick up 6 Achievement in Madden NFL 11. This technique will also work toward getting the Butterfingers Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pick-up-6-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/67b2e93e-b797-4c81-b20e-75a597fcb339/sm/ep1469.jpg","duration":155,"publication_date":"2010-08-18T19:13:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fear-2-project-origin-intel-and-reflex-items-part-3","changefreq":"weekly","video":[{"title":"2010:E218 - Fear 2 Project Origin - Intel and Reflex Items Part 3","description":"Location and collection of intel items and reflex boosters for levels 6 through 8, grabbing you the All Juiced Up and Oracle achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fear-2-project-origin-intel-and-reflex-items-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":167,"publication_date":"2010-08-18T17:48:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-deadliest-warrior-5-more-achievements","changefreq":"weekly","video":[{"title":"2010:E405 - Deadliest Warrior - 5 More Achievements","description":"BrownMan is back showing you how to pick up another 5 achievements in Deadliest Warrior","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-deadliest-warrior-5-more-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":433,"publication_date":"2010-08-18T17:42:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-deadliest-warrior-4-achievements","changefreq":"weekly","video":[{"title":"2010:E404 - Deadliest Warrior - 4 Achievements","description":"Deadly Warrior BrownMan is back to show you how to pick up 4 quick achievements in \"Deadliest Warrior\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-deadliest-warrior-4-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":324,"publication_date":"2010-08-18T17:41:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cash-reward-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E397 - Cash Reward Achievement Guide","description":"Geoff and Jack show you how to get the Cash Reward Achievement in Starcraft 2: Wings of Liberty.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cash-reward-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7a7a149-fb2e-4a42-8437-8981e4b9145f/sm/ep1449.jpg","duration":169,"publication_date":"2010-08-17T21:25:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-25","changefreq":"weekly","video":[{"title":"2010:E25 - Week #25","description":"Jack and Geoff are talkin' games yet again! This week's AHWU includes Fable 3, PAX, Kane & Lynch 2 and more. The more is the best part!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-25","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d155188e-a1bd-4b0e-b287-383e86d00f43/sm/ep1448.jpg","duration":302,"publication_date":"2010-08-16T21:21:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mutant-overlord-and-gnome-avatar","changefreq":"weekly","video":[{"title":"2010:E213 - Mutant Overlord and Gnome Avatar","description":"Geoff and Jack remind you that it's totally easy to get the Mutant Overlord Achievement and Gnome Chomsky Avatar in this handy Left 4 Dead 2 video.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mutant-overlord-and-gnome-avatar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fc90496-5cbb-4431-820a-06848ef6601a/sm/ep1446.jpg","duration":117,"publication_date":"2010-08-16T19:40:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-playboy-playmates-in-the-demo","changefreq":"weekly","video":[{"title":"2010:E212 - Hidden Playboy Playmates in the Demo","description":"Geoff and Jack show you where to find the five hidden playmates in the demo of Mafia 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-playboy-playmates-in-the-demo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe24b8b-1ddd-4193-a900-9a65d8c9a124/sm/ep1445.jpg","duration":84,"publication_date":"2010-08-12T20:03:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-seasoned-veteran","changefreq":"weekly","video":[{"title":"2010:E211 - Seasoned Veteran","description":"Jack and Geoff hit up Monday Night Combat and pick up the Seasoned Veteran achievement. Jackbots FTW!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-seasoned-veteran","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f26a129a-befe-48db-9c7c-4475556d2dcb/sm/ep1444.jpg","duration":256,"publication_date":"2010-08-12T19:30:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-15","changefreq":"weekly","video":[{"title":"2010:E15 - Unicorn Easter Egg","description":"Geoff and Jack are going to hell for this video. In it, they show how to find the elusive Red Dead Redemption \"Unicorn\", as well as another, even rarer majestic creature.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-15","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8447e49-4282-491a-a08f-8e1a2604270e/sm/ep1443.jpg","duration":105,"publication_date":"2010-08-11T15:12:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-avatar-awards","changefreq":"weekly","video":[{"title":"2010:E210 - Monday Night Combat - Avatar Awards","description":"Geoff and Jack walk you through the Avatar Awards in the new XBLA title Monday Night Combat.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-avatar-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0159c04f-ea82-4bf0-af44-d90e068db706/sm/ep1442.jpg","duration":101,"publication_date":"2010-08-10T21:21:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-arkham-city-teaser","changefreq":"weekly","video":[{"title":"2010:E209 - Arkham City Teaser","description":"Jack and Geoff head back to Arkham Asylum and find a super secret hidden room in the Warden's Office that shows some cool stuff for Arkham City, the sequel. Pretty sweet. I'm the God Damn Batman.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-arkham-city-teaser","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a8c8119e-0b5a-437c-a563-bb091da3f079/sm/ep1441.jpg","duration":186,"publication_date":"2010-08-10T19:56:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hail-mary-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E396 - Hail Mary Achievement Guide","description":"Geoff and Jack have some fun with tomahawks in the new DLC for Red Dead Redemption, Legends and Killers. In the process, they manage to grab the Hail Mary Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hail-mary-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da164dc5-7ec6-435f-9296-87908b658a75/sm/ep1440.jpg","duration":184,"publication_date":"2010-08-10T18:59:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-humans-gooood-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E395 - Humans Gooood Achievement Guide","description":"Knuckles, ChurchesWife (Casey), Count3D (Dom), and Adam play some Hydro Thunder Hurricane, and against all odds, unlock the Humans Gooood Achievement. See how they did it.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-humans-gooood-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/abd15b49-c3d0-4600-b259-72eb053a423e/sm/ep1439.jpg","duration":236,"publication_date":"2010-08-10T17:54:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-whispers-of-doom","changefreq":"weekly","video":[{"title":"2010:E208 - Whispers of Doom","description":"Jack and Geoff jump into the skin of a Protoss and find all the hatcheries in the \"Whispers of Doom.\" Rock and roll indeed. Starcraft 2 ftw.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-whispers-of-doom","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df3edca0-04f1-443f-9b3e-0b52d32847d1/sm/ep1438.jpg","duration":246,"publication_date":"2010-08-09T23:55:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dannys-demo-machine","changefreq":"weekly","video":[{"title":"2010:E207 - Danny's Demo Machine","description":"Iceman from Achievement Hunter walks us through the first achievement you can pick up in the new DLC for Skate 3, Danny Way's Hawaiian Dream.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dannys-demo-machine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/29b34bbc-f212-4552-acae-5c6e4b01b267/sm/ep1437.jpg","duration":231,"publication_date":"2010-08-09T22:15:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-24","changefreq":"weekly","video":[{"title":"2010:E24 - Week #24","description":"Jack and Geoff return for another AHWU-licious presentation of goodness. Discussed in this one are Madden, Monday Night Combat, Call of Duty: Black Ops and SO MUCH MORE!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b18005e7-1777-45b8-ad6c-45f16200c672/sm/ep1436.jpg","duration":245,"publication_date":"2010-08-09T20:54:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-reaper-dialogue","changefreq":"weekly","video":[{"title":"2010:E206 - All Reaper Dialogue","description":"Don't fear him, he's just the Reaper. Let's dance! Starcraft 2 dance!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-reaper-dialogue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f0e80cb-6398-4bc5-ab40-28f63fc2d59e/sm/ep1433.jpg","duration":98,"publication_date":"2010-08-09T16:28:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-raven-dialogue","changefreq":"weekly","video":[{"title":"2010:E205 - All Raven Dialogue","description":"You can use this video to quoth the Raven from Starcraft 2. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-raven-dialogue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22803830-8a17-4c01-ad47-5e2f700b250b/sm/ep1432.jpg","duration":102,"publication_date":"2010-08-09T16:23:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-siege-tank-dialogue","changefreq":"weekly","video":[{"title":"2010:E204 - All Siege Tank Dialogue","description":"All of the dialogue from the Siege Tank in Starcraft 2. Let's get bombin'.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-siege-tank-dialogue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8af24285-2ff6-4a2f-a3a9-5410fae8d4b2/sm/ep1430.jpg","duration":73,"publication_date":"2010-08-09T16:23:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-words-will-never-harm-you-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E393 - Words Will Never Harm You Achievement Guide","description":"Geoff, Jack and Gus give you some handy tips for getting the Words Will Never Harm You Achievement in Alan Wake: The Signal.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-words-will-never-harm-you-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59c3c2c7-bd74-4eeb-8317-5eb67bf2dbb7/sm/ep1429.jpg","duration":197,"publication_date":"2010-08-09T16:01:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery-storming-asgard-crates","changefreq":"weekly","video":[{"title":"2010:E203 - Special Delivery - Storming Asgard Crates","description":"Knuckles and Geoff show off all the crates in Storming Asgard while aggravating the American Power Boat Association.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery-storming-asgard-crates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7666cc79-4526-448c-8e84-884caf9d6145/sm/ep1427.jpg","duration":120,"publication_date":"2010-08-06T20:28:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-viking-dialogue","changefreq":"weekly","video":[{"title":"2010:E202 - All Viking Dialogue","description":"The Viking in Starcraft 2 is a totally radical ship. It flies and shoots! Pew pew! Here is all the hilarious dialogue it spouts in game! It's almost like an Easter egg.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-viking-dialogue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94a27f4c-459b-4fbd-835b-7134b7370d35/sm/ep1426.jpg","duration":89,"publication_date":"2010-08-06T18:26:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cardboard-companions-guide","changefreq":"weekly","video":[{"title":"2010:E392 - Cardboard Companions Guide","description":"Geoff and Jack show you how to get the Cardboard Companions Achievement in Alan Wake.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cardboard-companions-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d80d7a70-1eda-4e8f-9226-3e4e5d264490/sm/ep1425.jpg","duration":180,"publication_date":"2010-08-06T17:48:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-battlecruiser-dialogue","changefreq":"weekly","video":[{"title":"2010:E201 - All Battlecruiser Dialogue","description":"A collection of all of the dialogue from the Battlecruiser in Starcraft 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-battlecruiser-dialogue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cec1efb3-574d-4df4-b469-21055aa25498/sm/ep1424.jpg","duration":109,"publication_date":"2010-08-06T16:18:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-squad-city-glider","changefreq":"weekly","video":[{"title":"2010:E200 - Squad City Glider","description":"Jack, Geoff, Gus and Kerry all take the skies simultaneously to pick up the \"Squad City Glider\" achievement in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-squad-city-glider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f08b2f00-e887-4c21-988d-3b7682ebff63/sm/ep1423.jpg","duration":154,"publication_date":"2010-08-05T22:39:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-splish-splash-and-ding-dong-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E391 - Splish Splash and Ding Dong Achievement Guide","description":"Knuckles and Geoff bash some buoys in Hydro Thunder to get the Ding Dong Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-splish-splash-and-ding-dong-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/474a096b-1634-42ff-aca6-66a07c407ba2/sm/ep1422.jpg","duration":124,"publication_date":"2010-08-04T19:46:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-delivery-lake-powell-crates","changefreq":"weekly","video":[{"title":"2010:E199 - Special Delivery - Lake Powell Crates","description":"Knuckles, Geoff & Gus collect all 10 crates in Lake Powell for the Special Delivery Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-delivery-lake-powell-crates","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d861b130-1bbf-4bab-9e6d-52a876cb1123/sm/ep1421.jpg","duration":159,"publication_date":"2010-08-04T19:44:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-unlocking-the-secret-mission","changefreq":"weekly","video":[{"title":"2010:E198 - Starcraft 2 - Unlocking the Secret Mission","description":"Gus and Jack show you how to find a secret campaign mission in Starcraft 2: Wings of Liberty.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-unlocking-the-secret-mission","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c4902625-68d4-48b2-b74c-5c4b46c6e5f7/sm/ep1420.jpg","duration":99,"publication_date":"2010-08-03T21:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-14","changefreq":"weekly","video":[{"title":"2010:E14 - Tauren Space Marine Easter Egg","description":"Geoff and Jack show you where to find a Tauren Space Marine on the level \"Zero Hour\" in Starcraft 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-14","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/926fc02d-f562-49ce-ad65-2cdd87e1fca4/sm/ep1419.jpg","duration":149,"publication_date":"2010-08-03T21:47:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hold-the-line","changefreq":"weekly","video":[{"title":"2010:E197 - Hold the Line","description":"Jack and Geoff dive back in to Starcraft 2 to pick up the Hold the Line achievement from the mission Zero Hour. ZERRRRG Rush!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hold-the-line","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90811db3-761a-4fce-9667-8641c297bdc1/sm/ep1418.jpg","duration":216,"publication_date":"2010-08-03T21:00:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-after-dark-dlc","changefreq":"weekly","video":[{"title":"2010:E196 - After Dark DLC","description":"Jack and Geoff skate through the new DLC for Skate 3 and show you all the spookiness inside. From the new DIY park to the Asylum, it's all in here. Boooooo!!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-after-dark-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8a1c8111-259f-4173-bbae-313404d29212/sm/ep1417.jpg","duration":177,"publication_date":"2010-08-03T18:46:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lost-planet-2-frank-west-and-albert-wesker-eater-egg","changefreq":"weekly","video":[{"title":"2010:E195 - Lost Planet 2: Frank West and Albert Wesker Eater Egg","description":"Geoff and Jack show you an easier way to unlock Wesker and Frank West in Lost Planet 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lost-planet-2-frank-west-and-albert-wesker-eater-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d489cd-70b1-47ce-b892-90a35b494fa9/sm/ep1415.jpg","duration":108,"publication_date":"2010-08-02T18:41:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-liberation-day-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E390 - Liberation Day Achievement Guide","description":"Jack and Geoff step in to unfamiliar territory to bring you an achievement guide on the PC/Mac game STARCRAFT 2! Holy Zerg rush!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-liberation-day-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13b07d74-1058-4564-889d-f8dfe970d695/sm/ep1413.jpg","duration":195,"publication_date":"2010-07-31T04:24:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tick-tock-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E389 - Tick Tock Achievement Guide","description":"Geoff and Jack show you where to find the 10 alarm clocks in The Signal, to nab the Tick Tock Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tick-tock-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ee35a569-f37e-4b23-8b28-32267a22cf78/sm/ep1412.jpg","duration":220,"publication_date":"2010-07-30T20:29:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fast-and-furious-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E388 - Fast and Furious Achievement Guide","description":"Geoff and Jack show you how to beat the final boss in The Signal, in less than 30 seconds to get the Fast and Furious Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fast-and-furious-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a997763-0102-4bc5-ad30-99b230eca9a2/sm/ep1411.jpg","duration":83,"publication_date":"2010-07-29T17:45:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-13","changefreq":"weekly","video":[{"title":"2010:E13 - Hitman Easter Egg","description":"Geoff and Jack show you where to find a Hitman and Mini Ninjas Easter Egg in K&L2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-13","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d46eb3a-c179-485c-a930-b8aeb4ddd1db/sm/ep1410.jpg","duration":88,"publication_date":"2010-07-28T20:56:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-soldier-insanity-guide-part-one","changefreq":"weekly","video":[{"title":"2010:E387 - Soldier Insanity Guide Part One","description":"Fragger shows how to tackle the Insanity Achievement in Mass Effect 2 with a soldier.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-soldier-insanity-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b4e1f58-4811-4a7c-a902-4c225f9d4871/sm/ep1408.jpg","duration":499,"publication_date":"2010-07-28T19:36:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-real-life-achievements-2-driving-on-the-left","changefreq":"weekly","video":[{"title":"2010:E386 - Real Life Achievements #2 Driving on the Left","description":"real life achievement driving on the left hunter guide walkthrough geoff gavin rooster teeth xbox 360 video game immersion car","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-real-life-achievements-2-driving-on-the-left","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/756b2c9f-8077-4936-9d40-b9a882a74c61/sm/ep1407.jpg","duration":226,"publication_date":"2010-07-27T22:42:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-secret-eggs-6-10","changefreq":"weekly","video":[{"title":"2010:E194 - Secret Eggs 6-10","description":"Jack and Geoff show you the last five secret hidden eggs in Limbo. Again, these are not for achievements, but they will make your completion level above 100%. Woo!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-secret-eggs-6-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b83e48e-8b0e-4dfa-9d0d-1c9a335d8706/sm/ep1406.jpg","duration":281,"publication_date":"2010-07-27T20:01:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-secret-eggs-1-5","changefreq":"weekly","video":[{"title":"2010:E193 - Secret Eggs 1-5","description":"Jack and Geoff show you the location of the first five secret hidden eggs in Limbo. These don't give you achievements, but they push your completion level above 100%!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-secret-eggs-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9bb1d83c-2d73-4b65-bf55-aa726a40a68c/sm/ep1405.jpg","duration":173,"publication_date":"2010-07-27T19:58:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-eggs-8-10","changefreq":"weekly","video":[{"title":"2010:E192 - Hidden Eggs 8-10","description":"Jack and Joel are back, wandering through Limbo and stepping on eggs. Poor, poor eggs.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-eggs-8-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95f83277-7f16-4a7a-820a-1b738287e4b4/sm/ep1401.jpg","duration":130,"publication_date":"2010-07-23T16:20:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-eggs-5-7","changefreq":"weekly","video":[{"title":"2010:E191 - Hidden Eggs 5-7","description":"Jack and special-guest Burnie wander through the darkness that is Limbo to pick up some more hidden eggs.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-eggs-5-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/292b96b0-3d71-4af1-b8be-dda2fe3ae2ff/sm/ep1400.jpg","duration":111,"publication_date":"2010-07-23T16:16:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-first-four-hidden-eggs","changefreq":"weekly","video":[{"title":"2010:E190 - First Four Hidden Eggs","description":"Jack and Joel walk you through the first four hidden eggs in the new XBLA game Limbo. Join them as they pick up four achievements and hug.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-first-four-hidden-eggs","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e6cb3dd1-2e08-48b0-94c1-753385f25eb8/sm/ep1399.jpg","duration":189,"publication_date":"2010-07-22T21:05:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-more-cube-achievements","changefreq":"weekly","video":[{"title":"2010:E385 - 3 More Cube Achievements","description":"Knuckles Dawson and ChurchsWife pick up a few more achievements in Death by Cube. Cubalism FTW!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-more-cube-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4efbd951-eb75-43d4-b192-f508783b19ab/sm/ep1398.jpg","duration":152,"publication_date":"2010-07-21T02:47:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mother-my-brain-hurts-and-that-wheel","changefreq":"weekly","video":[{"title":"2010:E189 - Mother my Brain Hurts & That Wheel?","description":"Fragger picks up a couple more achievements in Singularity.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mother-my-brain-hurts-and-that-wheel","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/051193cb-a2f7-40e9-8c7b-f21d4d575317/sm/ep1397.jpg","duration":125,"publication_date":"2010-07-20T14:58:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-real-life-achievements-start-the-day-with-a-beer","changefreq":"weekly","video":[{"title":"2010:E384 - Real Life Achievements: Start the Day with a Beer","description":"Gav challenges Geoff to start his day with a beer. Will he succeed","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-real-life-achievements-start-the-day-with-a-beer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04ae9e01-36b9-4ae3-8f79-0e28e1998678/sm/ep1395.jpg","duration":171,"publication_date":"2010-07-19T06:28:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mel-gibson-calls-niko-bellic","changefreq":"weekly","video":[{"title":"2010:E188 - Mel Gibson calls Niko Bellic","description":"Who knew these two were so close","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mel-gibson-calls-niko-bellic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1476b8b-eed7-48a3-9e61-39815cc9ec9c/sm/ep1394.jpg","duration":76,"publication_date":"2010-07-18T00:33:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-take-back-the-knight-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E383 - Take Back The Knight Achievement Guide","description":"Geoff and Jack show you how to get the Take Back The Knight Achievement in Deathspank.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-take-back-the-knight-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4955bbc4-cbd9-4821-9fb4-92058379e291/sm/ep1393.jpg","duration":120,"publication_date":"2010-07-17T15:12:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-party-bus","changefreq":"weekly","video":[{"title":"2010:E187 - Party Bus","description":"Jack and Geoff catch the PARTY BUS in Crackdown 2 and pick up some gamerscore for the effort.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-party-bus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bea46f5-cd05-4b45-9e08-66d4888e9565/sm/ep1392.jpg","duration":78,"publication_date":"2010-07-16T23:08:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-five-achievements","changefreq":"weekly","video":[{"title":"2010:E382 - Five Achievements","description":"Knuckles and Casey crack open Death by Cube, and unlock 5 Achievements, ranging from the brainlessly easy to more tricky endeavors, all of which are ridiculously named.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-five-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3118763-8071-47aa-a017-37f88c8cf287/sm/ep1390.jpg","duration":273,"publication_date":"2010-07-16T19:54:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-day-the-music-died-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E381 - The Day the Music Died Achievement Guide","description":"Geoff and Jack give you some tips to get the \"The Day the Music Died\" Achievement in Deathspank.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-day-the-music-died-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8539af62-20dc-4fd8-9229-62bef4045b49/sm/ep1389.jpg","duration":147,"publication_date":"2010-07-15T22:39:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-menu-hero-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E380 - Menu Hero Achievement Guide","description":"Knuckles and Adam show you how to get an easy, but missable Achievement in Deathspank.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-menu-hero-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b631b143-3a44-468c-9537-a511bfb871d5/sm/ep1388.jpg","duration":58,"publication_date":"2010-07-15T15:42:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-4-achievements-sinularity","changefreq":"weekly","video":[{"title":"2010:E379 - 4 Achievements","description":"Fragger takes us back in to Singularity to pick up four achievements, \"Up Close and Personal,\" \"Put the Dead in Deadlock,\" \"Night of the Living Revert\" and \"Revert Bomber.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-4-achievements-sinularity","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f296543-36ec-4d7b-9899-156b3d06c412/sm/ep1387.jpg","duration":211,"publication_date":"2010-07-14T01:03:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grimlock-smash","changefreq":"weekly","video":[{"title":"2010:E186 - Grimlock, Smash!","description":"TudorVII is back with more Transformers: War for Cybertron. This time he is picking up all the hidden Autobot collectibles to pick up the Grimlock, Smash! achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grimlock-smash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e76e244c-7f16-4ba1-a668-852615c5ce9c/sm/ep1386.jpg","duration":465,"publication_date":"2010-07-13T22:40:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010","changefreq":"weekly","video":[{"title":"2010:E20 - Week #20","description":"Jack is back bringing you all the updates you need to worry about for this week. Joel and Burnie also appear at one point. Incredible.","player_loc":"https://roosterteeth.com/embed/ahwu-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9321668f-f343-41ff-90a9-5b59a40c39d8/sm/ep1385.jpg","duration":186,"publication_date":"2010-07-12T19:38:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2010-6","changefreq":"weekly","video":[{"title":"2010:E6 - Netherlands vs Spain","description":"Jack and vuvuzella-blowing Gus are checking out what MIGHT happen during the Netherlands vs. Spain FIFA World Cup match. Simulated using Fifa 2010 South Africa World Cup!","player_loc":"https://roosterteeth.com/embed/ah-predicts-2010-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e17676d-12b0-48cc-a324-0813d3dba371/sm/ep1382.jpg","duration":546,"publication_date":"2010-07-09T21:49:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-city-glider","changefreq":"weekly","video":[{"title":"2010:E185 - City Glider","description":"Jack and Gus fly their way across Pacific City and pick up the City Glider achievement. ; Join them, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-city-glider","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e373698-6ca5-4b88-b45c-75440abf2b85/sm/ep1381.jpg","duration":97,"publication_date":"2010-07-09T21:29:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2010-5","changefreq":"weekly","video":[{"title":"2010:E5 - Uruguay vs Germany","description":"Jack and vuvuzella-blowing Gus are checking out what MIGHT happen during the Uruguay vs. Germany FIFA World Cup match. Simulated using Fifa 2010 South Africa World Cup!","player_loc":"https://roosterteeth.com/embed/ah-predicts-2010-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/34d7121e-2aad-4403-abd7-77fd5d64eee0/sm/ep1380.jpg","duration":371,"publication_date":"2010-07-08T23:58:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fire-and-ice-drive-by","changefreq":"weekly","video":[{"title":"2010:E184 - Fire and Ice, Drive By","description":"Fragger from Achievement Hunter drops a couple of cool achievements in Singularity and you get to watch!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fire-and-ice-drive-by","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90a369fb-a50a-4977-97a5-989f307b84fa/sm/ep1379.jpg","duration":160,"publication_date":"2010-07-08T16:45:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-scavenger-would-be-proud","changefreq":"weekly","video":[{"title":"2010:E183 - Scavenger Would be Proud","description":"TudorVII from Achievement Hunter shows you the locations of all the hidden Decepticon Collectibles in Transformers: War for Cybertron. ROLL OUT!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-scavenger-would-be-proud","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/19e5fdc9-8045-4a4c-88fa-1c7de2841984/sm/ep1378.jpg","duration":546,"publication_date":"2010-07-07T21:10:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pebble-dash","changefreq":"weekly","video":[{"title":"2010:E182 - Pebble Dash","description":"Jack and Gus jump from a really tall building to pick up the Pebble Dash achievement in Crackdown 2. Look out belowwwwwwww!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pebble-dash","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa16c72e-8e80-4eea-b467-77c4d89c38ac/sm/ep1377.jpg","duration":65,"publication_date":"2010-07-07T19:02:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2010-4","changefreq":"weekly","video":[{"title":"2010:E4 - Germany vs Spain","description":"Jack and vuvuzella-blowing Gus are checking out what MIGHT happen during the Germany vs. Spain FIFA World Cup match. Simulated using Fifa 2010 South Africa World Cup!","player_loc":"https://roosterteeth.com/embed/ah-predicts-2010-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0c0d168-4d88-432a-87a4-4b61e8b9ca40/sm/ep1375.jpg","duration":415,"publication_date":"2010-07-06T22:32:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-orb-tricks-and-helicopter","changefreq":"weekly","video":[{"title":"2010:E181 - Orb Tricks & Helicopter","description":"Jack and Gus show you a couple of tricks in Crackdown 2 to help you locate those pesky hidden orbs and also how to get the helicopter!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-orb-tricks-and-helicopter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac5c2eaf-72ca-4419-895d-fb79afa2dae9/sm/ep1374.jpg","duration":141,"publication_date":"2010-07-06T22:30:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2010-3","changefreq":"weekly","video":[{"title":"2010:E3 - Uruguay vs. Netherlands","description":"Jack and vuvuzella-blowing Gus are checking out what MIGHT happen during the Uruguay vs. Netherlands Fifa World Cup match. Simulated using Fifa 2010 South Africa World Cup!","player_loc":"https://roosterteeth.com/embed/ah-predicts-2010-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/631a8986-a138-44f2-ab98-85fb89109a01/sm/ep1373.jpg","duration":502,"publication_date":"2010-07-06T06:22:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2010-2","changefreq":"weekly","video":[{"title":"2010:E2 - Argentina vs. Germany","description":"Jack and vuvuzella-blowing Gus are checking out what MIGHT happen during the Argentina vs. Germany Fifa World Cup match. Simulated using Fifa 2010 South Africa World Cup!","player_loc":"https://roosterteeth.com/embed/ah-predicts-2010-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec5db9c1-5955-4ab0-bcc6-dc381b7d9ed8/sm/ep1370.jpg","duration":432,"publication_date":"2010-06-30T20:50:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-invincible","changefreq":"weekly","video":[{"title":"2010:E180 - Invincible","description":"Fragger is back, kicking some more butt in Prince of Persia: The Forgotten Sands. This one is for the Invincible achievement. Kick some Ratash.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-invincible","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/feec3a41-a55a-48f6-8ed7-1f56e087a0b0/sm/ep1369.jpg","duration":248,"publication_date":"2010-06-29T15:39:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ah-predicts-2010","changefreq":"weekly","video":[{"title":"2010:E1 - USA vs. Ghana","description":"Jack and Geoff are trying something new. Instead of waiting until the match between Ghana and the USA, they went ahead and simulated it using super Xbox technology to get an idea of how the match might go. Come for the soccer/fbol and stay for the exciting outcome!","player_loc":"https://roosterteeth.com/embed/ah-predicts-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eab266df-3fd2-49f4-84d0-e453af2a9f21/sm/ep1365.jpg","duration":383,"publication_date":"2010-06-25T22:47:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pin-cushion-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E378 - Pin Cushion Achievement Guide","description":"Geoff and Jack show you an easy way to get the Pin Cushion Achievement in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pin-cushion-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94adf2d5-69b5-4155-87d1-c827da3c3fde/sm/ep1364.jpg","duration":97,"publication_date":"2010-06-25T16:59:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-instinto-asesino","changefreq":"weekly","video":[{"title":"2010:E179 - Instinto Asesino","description":"Jack and Geoff are back, clearing out more gang hideouts in Red Dead Redemption. This time they mop up Fort Mercer and Nosalida and pick up the Instinto Asesino achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-instinto-asesino","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bb7e4959-e0ad-4c6a-9120-4fdba931ee4d/sm/ep1363.jpg","duration":128,"publication_date":"2010-06-24T18:26:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-evil-spirits","changefreq":"weekly","video":[{"title":"2010:E178 - Evil Spirits","description":"Geoff and Jack go looking for ghosts and pick up the Evil Spirits achievement in Red Dead Redemption. To get this one you must beat the Tumbleweed and Tesoro Azul hideouts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-evil-spirits","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c39488fb-aae7-4c5f-bf5c-5679d1f4e5fb/sm/ep1362.jpg","duration":134,"publication_date":"2010-06-24T18:25:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-austin-overpowered","changefreq":"weekly","video":[{"title":"2010:E177 - Austin Overpowered","description":"Jack and Geoff go huntin' for some bandits and pick up the \"Austin Overpowered\" achievement. To get it you must beat the Twin Rocks, Pike's Basin and Gaptooth Breach hideouts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-austin-overpowered","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac85288a-1d24-4ea5-a60f-db0e8431e4c7/sm/ep1361.jpg","duration":178,"publication_date":"2010-06-24T18:23:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-car-jump-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E377 - Car Jump Achievement Guide","description":"Geoff and Jack show you how to get the Car Jump Achievement in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-car-jump-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d92eac0f-a6ab-4658-9d45-cbcc5322e59d/sm/ep1360.jpg","duration":77,"publication_date":"2010-06-24T18:12:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-got-walkthrough-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E375 - Got Walkthrough? Achievement Guide","description":"Fragger is back in PoP, showing how to find the 21 hidden sarcophagi needed to get the Got Walkthrough Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-got-walkthrough-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbb8561a-b25b-4122-a6dc-396f84671352/sm/ep1358.jpg","duration":608,"publication_date":"2010-06-24T14:34:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-co-op-keepy-up-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E374 - Co-op Keepy Up Achievement Guide","description":"Geoff and Jack show you an easy way to get the Co-op Keepy Up Achievement in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-co-op-keepy-up-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0c9989c-e1b4-47eb-9aa9-6f6172f0456e/sm/ep1357.jpg","duration":84,"publication_date":"2010-06-23T21:46:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-your-lucky-day-achievement-guide-plus-4-others","changefreq":"weekly","video":[{"title":"2010:E373 - Your Lucky Day Achievement Guide, plus 4 others","description":"Fragger shows how to get the following Achievements: Your Lucky Day, Action Master, There are Parts Everywhere, Targetmaster! and Fire in the Sky all in Level One of Transformers: War for Cybertron.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-your-lucky-day-achievement-guide-plus-4-others","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a3bd448-9f62-4dbb-9dcc-88e561720e13/sm/ep1356.jpg","duration":231,"publication_date":"2010-06-23T21:05:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mosh-pit","changefreq":"weekly","video":[{"title":"2010:E176 - Mosh Pit","description":"Jack and Geoff get in to the middle of a Mosh Pit and pick up that achievement in Crackdown 2. Rock on!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mosh-pit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d065e8ec-60f1-446e-b455-ea0cfdee36a2/sm/ep1355.jpg","duration":87,"publication_date":"2010-06-23T19:42:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-victory-roll","changefreq":"weekly","video":[{"title":"2010:E175 - Victory Roll","description":"Jack and Geoff head back in to Crackdown 2 to pick up the Victory Roll achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-victory-roll","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4f6b770-b921-46fb-af30-e19e9c326de3/sm/ep1354.jpg","duration":123,"publication_date":"2010-06-23T19:42:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-strike-and-pile-driver-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E371 - Strike and Pile Driver Achievement Guide","description":"Geoff and Jack show you how to get the Strike and Pile Driver Achievements in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-strike-and-pile-driver-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/589fc5c3-ade6-40f4-a3be-1423e03ef79d/sm/ep1352.jpg","duration":157,"publication_date":"2010-06-22T22:16:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-open-up-a-can-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E370 - Open up a Can Achievement Guide","description":"Geoff and Jack show you how to get the \"Open up a Can\" Achievement in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-open-up-a-can-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32acba78-f679-4d3e-947e-c629daade62e/sm/ep1351.jpg","duration":78,"publication_date":"2010-06-22T22:07:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bomberman","changefreq":"weekly","video":[{"title":"2010:E174 - Bomberman","description":"Jack and Geoff blow some stuff up in Crackdown 2 to pick up the \"Bomberman\" achievement. Ka-boom!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bomberman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a0a911a-3ee8-4548-8467-eda9e69d3c23/sm/ep1348.jpg","duration":137,"publication_date":"2010-06-22T19:37:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-street-sweeper-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E369 - Street Sweeper Achievement Guide","description":"Geoff and Jack show you how to get the \"Street Sweeper\" Achievement in Crackdown 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-street-sweeper-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4981a6c2-4752-4c96-b353-ea4b148dee04/sm/ep1347.jpg","duration":97,"publication_date":"2010-06-22T14:36:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-12","changefreq":"weekly","video":[{"title":"2010:E12 - Rubber Ducky Easter Egg","description":"In preparation for Crackdown 2, Geoff and Jack take a walk down memory lane in Crackdown, showing where to find a hidden rubber duck.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f704b8d1-f40b-4e55-95b2-b528aa4dde81/sm/ep1345.jpg","duration":192,"publication_date":"2010-06-21T19:24:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-buckin-awesome","changefreq":"weekly","video":[{"title":"2010:E173 - Buckin' Awesome","description":"Jack and Geoff go horse-breakin' and pick up the \"Buckin' Awesome\" achievement in Red Dead Redemption. That is buckin' sweet!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-buckin-awesome","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1ff1f2c-a3cc-4304-a4c2-d82ca53631d5/sm/ep1343.jpg","duration":141,"publication_date":"2010-06-18T21:14:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-more-avatar-awards","changefreq":"weekly","video":[{"title":"2010:E172 - More Avatar Awards","description":"Jack and Geoff walk you through some more avatar awards located in Red Dead Redemption. Who wants a yellow shirt I know I do!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-more-avatar-awards","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6c86202-1038-4bcb-b1c3-3d80137d4f9a/sm/ep1342.jpg","duration":159,"publication_date":"2010-06-18T19:00:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sunrise-red-dead","changefreq":"weekly","video":[{"title":"2010:E171 - Sunrise Red Dead","description":"Jack and Geoff take a look at some of the more scenic elements to Red Dead Redemption. Join us, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sunrise-red-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef39e569-58ff-40fd-bb63-c79aaed5c86d/sm/ep1339.jpg","duration":131,"publication_date":"2010-06-11T23:03:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-4","changefreq":"weekly","video":[{"title":"2010:E170 - Last Man on Earth - Dead Center (Part 4)","description":"Geoff and Jack show you the incredibly cool new mutation in Left 4 Dead 2 \"Last Man on Earth.\" (Part Four of Four)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf6f6b4b-9fc4-4ff2-a338-f09985bf50d1/sm/ep1337.jpg","duration":248,"publication_date":"2010-06-10T20:41:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-heading-south-on-a-white-bronco","changefreq":"weekly","video":[{"title":"2010:E169 - Heading South on a White Bronco","description":"Jack and Geoff jump on the back of a Hungarian Half-Bred and run from the law to pick up the \"Heading South on a White Bronco\" achievement in Red Dead Redemption. Yee-haw!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-heading-south-on-a-white-bronco","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a5d77fd-fbfa-411f-a631-d17b6a70f6a9/sm/ep1336.jpg","duration":229,"publication_date":"2010-06-09T22:15:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-11","changefreq":"weekly","video":[{"title":"2010:E11 - Sandcastle Easter Egg","description":"Geoff and Jack show you where to find a cool little easter egg in Battlefield: Bad Company 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/40d7fc64-46b5-4d86-ad6a-31f391755e10/sm/ep1335.jpg","duration":96,"publication_date":"2010-06-09T21:57:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-manifest-destiny","changefreq":"weekly","video":[{"title":"2010:E168 - Manifest Destiny","description":"Geoff and Jack go buffalo hunting and pick up the \"Manifest Destiny\" achievement in Red Dead Redemption. Poor buffalo. They weren't hurting anyone!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-manifest-destiny","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d61388b1-a248-4e5d-977d-9d1f28b64e58/sm/ep1333.jpg","duration":137,"publication_date":"2010-06-08T19:44:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-3","changefreq":"weekly","video":[{"title":"2010:E167 - Last Man on Earth - Dead Center (Part 3)","description":"Geoff and Jack show you the incredibly cool new mutation in Left 4 Dead 2 \"Last Man on Earth.\" (Part Three of Four)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e3ffead-de86-41b7-bf41-7d8206238ce7/sm/ep1332.jpg","duration":215,"publication_date":"2010-06-08T14:11:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-2","changefreq":"weekly","video":[{"title":"2010:E166 - Last Man on Earth - Dead Center (Part 2)","description":"Geoff and Jack show you the incredibly cool new mutation in Left 4 Dead 2 \"Last Man on Earth.\" (Part Two of Four)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b04dedcb-34d4-4f4a-a7b5-79d164084ae9/sm/ep1329.jpg","duration":285,"publication_date":"2010-06-07T16:47:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spot-monopolist-industrial","changefreq":"weekly","video":[{"title":"2010:E165 - Spot Monopolist (Industrial)","description":"Jack and Geoff take one more stroll through Skate 3 and find the rest of the Own The Spot locations in Skate 3. Hooray achievements! Hooray skating!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spot-monopolist-industrial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac82b825-2fe0-439b-a308-cf7b77ef3608/sm/ep1325.jpg","duration":231,"publication_date":"2010-06-03T21:46:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-8-ways-to-kill-yourself","changefreq":"weekly","video":[{"title":"2010:E164 - 8 Ways to Kill Yourself","description":"Check out these 8 entertaining ways to kill yourself in Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-8-ways-to-kill-yourself","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf3537ed-25c4-4dc0-b369-b1a5f6d4f588/sm/ep1324.jpg","duration":148,"publication_date":"2010-06-03T15:21:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spot-monopolist-university","changefreq":"weekly","video":[{"title":"2010:E163 - Spot Monopolist (University)","description":"Jack and Geoff go back to school and show you the locations of all of the \"Own the Spot\" challenges in the University area of Skate 3. Get to learnin'!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spot-monopolist-university","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d1c60f56-ba73-4a45-b1c7-172b877a2c4b/sm/ep1323.jpg","duration":190,"publication_date":"2010-06-03T15:18:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-scrotality-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E364 - Scrotality Achievement Guide","description":"Geoff and Jack show you how ton get the aptly named \"Scrotality\" Achievement in Fragger's latest Dead To Rights: Retribution video.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-scrotality-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ab59c56-f26b-4801-a384-3f35995d9705/sm/ep1321.jpg","duration":165,"publication_date":"2010-06-01T22:08:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lady-corkscrew-glitch","changefreq":"weekly","video":[{"title":"2010:E162 - Lady Corkscrew Glitch","description":"Jack and Geoff need to call an exorcist to figure out how to fix this poor girl in Skate 3. WTF","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lady-corkscrew-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a7ee8be-1517-4b3f-bdd6-c577cacade8e/sm/ep1320.jpg","duration":65,"publication_date":"2010-06-01T19:49:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-1","changefreq":"weekly","video":[{"title":"2010:E161 - Last Man on Earth - Dead Center (Part 1)","description":"Geoff and Jack show you the incredibly cool new mutation in Left 4 Dead 2 \"Last Man on Earth.\" (Part One of Four)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-last-man-on-earth-dead-center-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd556422-3bf9-4119-97e1-2a9e92559568/sm/ep1319.jpg","duration":159,"publication_date":"2010-06-01T19:34:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spot-monopolist-downtown","changefreq":"weekly","video":[{"title":"2010:E160 - Spot Monopolist (Downtown)","description":"Jack and Geoff are cruising around Port Carverton finding all of the \"Own The Spot\" locations so that you can pick up the fancy Spot Monopolist achievement in Skate 3. Thank goodness for that!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spot-monopolist-downtown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/506b1f81-47bb-4c49-8d18-04aa946f1d34/sm/ep1317.jpg","duration":210,"publication_date":"2010-05-31T22:11:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-of-st-lucia","changefreq":"weekly","video":[{"title":"2010:E159 - Trials of St. Lucia","description":"Brownman is back and he is showing you how to pick up a quick four achievements in the Trials of St. Lucia DLC for Dante's Inferno.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-of-st-lucia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/879f0fe0-5e69-4269-a5d5-2e7552341ce2/sm/ep1315.jpg","duration":387,"publication_date":"2010-05-31T15:53:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sneaky-little-buggers","changefreq":"weekly","video":[{"title":"2010:E158 - Sneaky Little Buggers","description":"Brownman takes a stab at picking up the \"Sneaky Little Buggers\" achievement in Borderlands!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sneaky-little-buggers","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7f1a8c9-7e26-417d-ae4d-742b55ecc9ef/sm/ep1312.jpg","duration":595,"publication_date":"2010-05-28T21:09:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-characters-and-cheats","changefreq":"weekly","video":[{"title":"2010:E157 - Characters & Cheats","description":"Jack and Geoff take a look at a few extra characters you might not know about in Skate 3. They also break the rules and input a couple of cheat codes! Carazy!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-characters-and-cheats","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94ae948d-a98c-4af7-8ce3-b018d0350a4c/sm/ep1310.jpg","duration":174,"publication_date":"2010-05-28T18:10:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-thinking-inside-the-box-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E361 - Thinking Inside the Box Achievement Guide","description":"Geoff and Jack show you how and where to get the \"Thinking Inside the Box\" Achievement in the Deniable Ops: Insurgency DLC for Tom Clancy's Splinter Cell: Conviction.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-thinking-inside-the-box-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/46a65478-f2d6-46b2-8d27-42107ba983e4/sm/ep1309.jpg","duration":157,"publication_date":"2010-05-28T14:00:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stay-dry-plus-4-others-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E360 - Stay Dry (plus 4 others) Achievement Guide","description":"Fragger shows how to get the following Achievements in Prince of Persia: The Forgotten Sands:\r\nOur Little Secret,\r\nLike Dominoes,\r\nAcrobat,\r\nSand Nemesis,\r\nStay Dry","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stay-dry-plus-4-others-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f9289c0a-e5f7-4425-9800-7fafd48bfe0c/sm/ep1308.jpg","duration":302,"publication_date":"2010-05-27T22:02:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-9","changefreq":"weekly","video":[{"title":"2010:E156 - Frontiersman - Part 9","description":"Jack and Geoff head to Nekoti Rock in Red Dead Redemption to pick up the final hidden treasure.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2214457d-8a1c-4b6b-b59f-9461e527c7f4/sm/ep1306.jpg","duration":81,"publication_date":"2010-05-27T16:32:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-8","changefreq":"weekly","video":[{"title":"2010:E155 - Frontiersman - Part 8","description":"Geoff and Jack visit the Broken Tree and look for some gold! Hooray treasure and hooray Red Dead Redemption!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30e2a597-8cb8-4ad9-a98c-89b4c6e74eca/sm/ep1305.jpg","duration":59,"publication_date":"2010-05-27T16:31:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-7","changefreq":"weekly","video":[{"title":"2010:E154 - Frontiersman - Part 7","description":"Geoff and Jack head over to Roca De Madera in Red Dead Redemption and pick up another hidden treasure! Did you know Roca De Madera means \"Pretty Horse\" in Spanish","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/731c71b8-2eeb-49b3-b952-2ae1bda12c57/sm/ep1304.jpg","duration":93,"publication_date":"2010-05-27T16:19:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-6","changefreq":"weekly","video":[{"title":"2010:E153 - Frontiersman - Part 6","description":"Jack and Geoff wander into Ojo Del Diablo and pick up another hidden treasure in Red Dead Redemption! Hooray devil!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b649df0-3f6f-4be4-ba51-b1d6f1ff0de4/sm/ep1303.jpg","duration":68,"publication_date":"2010-05-27T16:18:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-5","changefreq":"weekly","video":[{"title":"2010:E152 - Frontiersman - Part 5","description":"Jack and Geoff keep wandering into places they shouldn't be...yet they find even more gold in Red Dead Redemption!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20c6c3c6-6b51-4e08-9798-e191d1618cc4/sm/ep1302.jpg","duration":70,"publication_date":"2010-05-26T19:20:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-4","changefreq":"weekly","video":[{"title":"2010:E151 - Frontiersman - Part 4","description":"Jack and Geoff are back, diggin' up rocks and other sundries in Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ae740baa-25c9-4040-a5ad-a10515281cc9/sm/ep1301.jpg","duration":73,"publication_date":"2010-05-26T19:19:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-3","changefreq":"weekly","video":[{"title":"2010:E150 - Frontiersman - Part 3","description":"Geoff and Jack find even more gold in Red Dead Redemption!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec50c3df-e137-4ed8-af68-52f0a67d2a1a/sm/ep1300.jpg","duration":77,"publication_date":"2010-05-26T19:19:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-2","changefreq":"weekly","video":[{"title":"2010:E149 - Frontiersman - Part 2","description":"Jack and Geoff keep on diggin' for treasure in Red Dead Redemption.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a384c6af-3cc6-40af-88fd-da0081c80fc4/sm/ep1299.jpg","duration":112,"publication_date":"2010-05-26T19:18:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-avatar-awards-red-dead","changefreq":"weekly","video":[{"title":"2010:E148 - Avatar Awards","description":"Jack and Geoff show you the location of a couple of Avatar Awards you can pick up in Red Dead Redemption. There are bound to be more, so check back soon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-avatar-awards-red-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2d1c7c1-3a05-44df-affb-7a96541d613f/sm/ep1298.jpg","duration":81,"publication_date":"2010-05-26T18:56:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-come-one-come-all-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E358 - Come One, Come All Achievement Guide","description":"Geoff and Jack show you an easy way to get the Come One, Come All Achievement in Episode 3 of Alan Wake.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-come-one-come-all-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/695f699b-9db5-4f8b-b783-a4bacd5f9228/sm/ep1297.jpg","duration":70,"publication_date":"2010-05-26T14:14:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frontiersman-part-1","changefreq":"weekly","video":[{"title":"2010:E147 - Frontiersman - Part 1","description":"Jack and Geoff go treasure huntin' and start picking up hidden treasure in Red Dead Redemption. Here is Part 1.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frontiersman-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c26595ca-ba1c-4b6f-97bd-bd9b2343930c/sm/ep1296.jpg","duration":112,"publication_date":"2010-05-25T22:23:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sound-and-fury-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E357 - Sound and Fury Achievement Guide","description":"Geoff and Jack show you a nice spot to get the Sound and Fury Achievement in Episode 3 of Alan Wake.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sound-and-fury-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89e239fc-1813-4101-9368-e9e5048da891/sm/ep1295.jpg","duration":84,"publication_date":"2010-05-25T15:01:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-convoy-fearless-zero-to-hero-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E356 - Convoy, Fearless, Zero to Hero Achievement Guide","description":"Knuckles shows us how to unlock three secret Achievements in Split/Second, Convoy, Fearless and Zero to Hero.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-convoy-fearless-zero-to-hero-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab990158-7504-46c1-87de-14fa2312a4c3/sm/ep1294.jpg","duration":226,"publication_date":"2010-05-25T14:47:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-zombie-mode","changefreq":"weekly","video":[{"title":"2010:E146 - Zombie Mode","description":"Geoff and Jack show you how to infest your Skate 3 world with Zombies. They won't eat your brains, but they will knock you off your 50/50 grind.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-zombie-mode","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c0843276-9eb5-4ff2-9644-7e53c5df6a9e/sm/ep1291.jpg","duration":104,"publication_date":"2010-05-24T18:37:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-splashdown-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E354 - Splashdown Achievement Guide","description":"Knuckles barrels through the Splashdown Episode in Split/Second, and amongst the epic win manages to unlock 5 Achievements, 4 being secret. Vroom!\r\nAchievements unlocked in this video are:\r\nBetter Luck Next Time (Secret)\r\nOnce, twice, three times evasive (Secret)\r\nOn The Run\r\nRope a Dope (Secret)\r\nCheapskate (Secret)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-splashdown-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cd47caf7-86ca-44d3-917d-51c083fa471e/sm/ep1288.jpg","duration":384,"publication_date":"2010-05-21T21:38:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-gunslinger","changefreq":"weekly","video":[{"title":"2010:E145 - The Gunslinger","description":"Jack and Geoff do some expert shootin' in this Red Dead Redemption achievement. The Gunslinger!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-gunslinger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70b8f432-f3b5-4f3d-9b94-dc571ca6e4e9/sm/ep1287.jpg","duration":74,"publication_date":"2010-05-21T19:21:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-darkspawn-chronicles-dlc","changefreq":"weekly","video":[{"title":"2010:E144 - Dragon Age: Origins - Darkspawn Chronicles DLC","description":"Gus and Geoff show you how to get the Ogre's Keeper and Bane of Thedas achievements in Dragon Age: Origins (Darkspawn Chronicles DLC)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-darkspawn-chronicles-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f824bf70-7763-4f77-b87c-946c0882b1ed/sm/ep1286.jpg","duration":196,"publication_date":"2010-05-21T01:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dastardly","changefreq":"weekly","video":[{"title":"2010:E143 - Dastardly","description":"Jack and Geoff complete one of the sickest achievements ever in Red Dead Redemption. Dastardly is an evil evil achievement and I will never forgive myself for what happens to the horse in this video.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dastardly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6a2de0a-5470-444c-9aa6-7abe3bc8752c/sm/ep1285.jpg","duration":172,"publication_date":"2010-05-20T22:48:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-beat-the-team-ii-the-revenge-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E352 - Beat The Team II: The Revenge Achievement Guide","description":"Back with a Vengeance, Knuckles shows us how the hell he managed to unlock Beat The Team II: The Revenge in Split/Second, which requires you to complete Power Plant in Detonator in under 1:18. Vroom.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-beat-the-team-ii-the-revenge-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70bc97c9-b30e-49cb-9dbd-95f9afddff86/sm/ep1283.jpg","duration":129,"publication_date":"2010-05-20T21:37:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-beat-the-team-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E351 - Beat the Team Achievement Guide","description":"Knuckles shows us how to get the elusive Beat The Team Achievement in Split/Second, which requires you to beat a 1:07 lap time in Construction Site in Detonator. Yowza!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-beat-the-team-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/38b4353b-13ac-434a-8e0d-49656a34a162/sm/ep1282.jpg","duration":117,"publication_date":"2010-05-20T21:35:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-strange-things-are-afoot","changefreq":"weekly","video":[{"title":"2010:E142 - Strange Things are Afoot","description":"Jack and Geoff talk to strangers and pick up the \"Strange Things are Afoot\" achievement in Rockstar's Red Dead Redemption. Remember kids, ALWAYS talk to strangers.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-strange-things-are-afoot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e2188fc-8681-4599-be36-06390a6f694c/sm/ep1281.jpg","duration":155,"publication_date":"2010-05-20T18:49:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hypercaffeinated-achievement-guide-part-one","changefreq":"weekly","video":[{"title":"2010:E349 - Hypercaffeinated Achievement Guide Part One","description":"Fragger gives an in-depth guide to finding the hidden thermoses in Episodes One and Two of Alan Wake, getting the \"Damn Good Cup of Coffee\" Achievement in the process.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hypercaffeinated-achievement-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea8e7e4d-80d0-4292-8431-46fe0d4831c0/sm/ep1279.jpg","duration":450,"publication_date":"2010-05-20T15:08:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-rigged-to-blow-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E348 - Rigged to Blow Achievement Guide","description":"Knuckles covers the rest of \"Episode 1\" of Split/Second, nabbing 7 Achievements along the way, with two of them being secret. The Achievements are:\r\nSplit/Second (Secret)\r\nQualifier\r\nEliminator\r\nWinner\r\nBully (Secret)\r\nRight On Track\r\nThe Time Is Right","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-rigged-to-blow-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/00f2b219-0199-44ed-9275-f6fa57659e56/sm/ep1278.jpg","duration":366,"publication_date":"2010-05-20T15:02:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-what-about-hand-grenades","changefreq":"weekly","video":[{"title":"2010:E141 - What About Hand Grenades?","description":"Jack and Geoff take a swing at horseshoes in Rockstar's new Red Dead Redemption and pick up the \"What About Hand Grenades\" achievement. Ka-boom!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-what-about-hand-grenades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1e47dde2-5755-441f-8261-4370dc35376a/sm/ep1277.jpg","duration":108,"publication_date":"2010-05-19T23:15:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-airport-terminal-5-achievements","changefreq":"weekly","video":[{"title":"2010:E347 - Airport Terminal - 5 Achievements","description":"Knuckles show us 5 Achievements (including 2 Secret ones) you can get on the first race in Split/Second.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-airport-terminal-5-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd6d43bf-d56a-497c-b143-569c82d1643c/sm/ep1276.jpg","duration":209,"publication_date":"2010-05-19T19:20:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-two-for-the-price-of-one-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E346 - Two for the Price of One Achievement Guide","description":"Fragger shows an easy way to get the Two for the Price of One Achievement in Episode One of Alan Wake.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-two-for-the-price-of-one-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ea78504-3bd4-4465-a6b6-bd37b49dee28/sm/ep1274.jpg","duration":141,"publication_date":"2010-05-18T19:27:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dont-be-so-mayo","changefreq":"weekly","video":[{"title":"2010:E139 - Don't be so Mayo","description":"Jack and Geoff give you a few tips on how to pull off the \"Miracle Whip\" in Skate 3 and in the process pick up the \"Don't be so Mayo\" achievement. Git git yeah!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dont-be-so-mayo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/36d1fcb6-a5c4-4000-97c9-fd2a8ea181d4/sm/ep1271.jpg","duration":89,"publication_date":"2010-05-14T21:49:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-did-somebody-get-a-boo-boo","changefreq":"weekly","video":[{"title":"2010:E138 - Did Somebody Get a Boo Boo?","description":"Jack and Geoff are back, wrecking their bodies in Skate 3 and picking up the achievement \"Did Somebody Get a Boo Boo\" (The answer is yes.)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-did-somebody-get-a-boo-boo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d11a36a-fa49-4c00-a549-a5de82125d06/sm/ep1270.jpg","duration":47,"publication_date":"2010-05-14T21:43:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-10","changefreq":"weekly","video":[{"title":"2010:E10 - Mr. Snowman Easter Egg","description":"Geoff and Griffon show you where to find (and converse) with a snowman in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/582a2393-ed70-437c-a665-f150a49a7ec4/sm/ep1269.jpg","duration":77,"publication_date":"2010-05-14T19:23:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-9","changefreq":"weekly","video":[{"title":"2010:E9 - Pie Island Easter Egg","description":"Geoff and Gus take you on a magical journey to an island made of warm flaky crust.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f38e361-02cb-42e4-8b67-2343875a8edd/sm/ep1268.jpg","duration":121,"publication_date":"2010-05-13T20:55:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-in-stereo","changefreq":"weekly","video":[{"title":"2010:E137 - In Stereo","description":"Jack and Geoff do a bit of training to pick up the \"In Stereo\" achievement in Skate 3. Git git yeah!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-in-stereo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f678053-9685-44f3-a66c-6cb2cbf92cb2/sm/ep1266.jpg","duration":67,"publication_date":"2010-05-12T23:50:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-objectifier","changefreq":"weekly","video":[{"title":"2010:E136 - Objectifier","description":"Jack and Geoff hit the rails to pick up the Objectifier achievement in Skate 3!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-objectifier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a56984b-6daf-49ae-9818-e2e10d9f8026/sm/ep1265.jpg","duration":80,"publication_date":"2010-05-12T23:49:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-8","changefreq":"weekly","video":[{"title":"2010:E8 - Mysterious Lights Easter Egg","description":"Geoff and Jack plunge into the darkness of the Panay oceans to discover alienesque floating lights. Is it alien made, a government conspiracy, or a developer screwup You decide.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44cf16f7-bd58-4dd7-bca2-1e8e90d8d3b1/sm/ep1264.jpg","duration":127,"publication_date":"2010-05-12T20:32:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-extreme-grindage","changefreq":"weekly","video":[{"title":"2010:E135 - Extreme Grindage","description":"Geoff and Jack get EXTREME and do some GRINDS that are so EXTREME that they pick up an EXTREME achievement!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-extreme-grindage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f37708f1-bcc6-456b-ba0e-a8408b509878/sm/ep1262.jpg","duration":80,"publication_date":"2010-05-10T22:50:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bubble-blaster-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E345 - Bubble Blaster Achievement Guide","description":"Geoff and Jack continue their Easter Egg hunt, this time showing where to find the deadly bubble blaster hidden away in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bubble-blaster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f4fecb51-af4c-4067-a46b-ecd4605b596c/sm/ep1259.jpg","duration":94,"publication_date":"2010-05-10T17:51:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-invasion-gametype","changefreq":"weekly","video":[{"title":"2010:E133 - Invasion Gametype","description":"Jack and Geoff check out the brand-spankin' new Invasion gametype in the Halo: Reach beta. Come with us, won't you as we gather up cores and take them to our drop ships. Also, VEHICLES!!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-invasion-gametype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/469bf809-6d75-40db-b26d-e1a4a587d291/sm/ep1258.jpg","duration":122,"publication_date":"2010-05-08T00:51:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-7","changefreq":"weekly","video":[{"title":"2010:E7 - I Am Legend Easter Egg","description":"Geoff and Jack show you where to find the \"I Am Legend\" Easter Egg in Just Cause 2. Also, they do a totally sweet belly flop.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f8a519b-5ad5-4b0f-ba4b-24fc557b16e2/sm/ep1257.jpg","duration":133,"publication_date":"2010-05-07T21:25:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-denied","changefreq":"weekly","video":[{"title":"2010:E132 - Denied","description":"Geoff and Jack show you how to deny a sword lunge with a well-timed melee attack.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-denied","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16eb1bc2-78f0-45cc-ba41-0bb1f09c0205/sm/ep1256.jpg","duration":50,"publication_date":"2010-05-07T18:09:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ea-canada-tour-and-preview","changefreq":"weekly","video":[{"title":"2010:E131 - EA Canada Tour & Preview","description":"Jack flies up to Canada to get a final peek at Skate 3 before it hits shelves. Check out this visual tour of the EA Canada studio in Burnaby (near Vancouver) and yet ANOTHER talk with Producer Chris \"Cuz\" Parry!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ea-canada-tour-and-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/95826ee0-3c60-4a26-913a-6eef273307c1/sm/ep1255.jpg","duration":229,"publication_date":"2010-05-06T22:49:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-not-in-my-house-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E344 - Not in My House Achievement Guide","description":"Geoff and Jack show you how to get the easy to miss \"Not in My House\" Achievement in Iron Man 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-not-in-my-house-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c6c7b20-a361-4bae-b354-a2c0a45a29df/sm/ep1254.jpg","duration":75,"publication_date":"2010-05-06T15:28:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/behind-the-scenes-2010","changefreq":"weekly","video":[{"title":"2010:E1 - BTS - Iron Man 2","description":"Check out a special sneak peek behind the scenes of what it is really like when Achievement Hunter records audio. Hint: They don't know what they are doing.","player_loc":"https://roosterteeth.com/embed/behind-the-scenes-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/917caacf-a8dd-4d50-adf0-84182fe3c35b/sm/ep1252.jpg","duration":108,"publication_date":"2010-05-05T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-6","changefreq":"weekly","video":[{"title":"2010:E6 - Beached Whale Easter Egg","description":"Geoff and Gus show you where to find a huge beached whale. Then, they show you how to blow it the hell up.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/018ffa75-5dda-43d1-90f0-18f463dcbf93/sm/ep1251.jpg","duration":129,"publication_date":"2010-05-04T15:49:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-5","changefreq":"weekly","video":[{"title":"2010:E5 - Mechanical Shark Easter Egg","description":"Geoff and Gus show you where to find a Jawsie little easter egg in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/45e2cc31-ebd3-4f00-ac76-197d3d1afcdf/sm/ep1249.jpg","duration":129,"publication_date":"2010-05-03T20:36:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-4","changefreq":"weekly","video":[{"title":"2010:E4 - \"Baby\" Panay Moustache Easter Egg","description":"Geoff and Gus show you how to do some juvenile tagging in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/398e027d-81fa-42ae-a31f-1c69901e4b0b/sm/ep1248.jpg","duration":109,"publication_date":"2010-05-03T20:34:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-3","changefreq":"weekly","video":[{"title":"2010:E3 - Lost Easter Eggs - The Hatch, Plane, Smoke Monster","description":"Geoff and Jack show you a mysterious island in Just Cause 2, that has some... interesting landmarks","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4a9b3b22-9778-4443-93b5-719c451b167e/sm/ep1247.jpg","duration":247,"publication_date":"2010-05-03T15:47:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-11","changefreq":"weekly","video":[{"title":"2010:E10 - Week #10","description":"Jack and Geoff talk this week in games. Also, if you were at our PAX East panel, keep an eye out for yourself!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-11","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66350d3f-d06a-4ed6-a3f5-6f1950f4c83c/sm/ep1246.jpg","duration":369,"publication_date":"2010-05-03T06:55:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-black-market-aerial-pack-dlc","changefreq":"weekly","video":[{"title":"2010:E130 - Black Market Aerial Pack DLC","description":"Geoff and Jack lose it while trying to show off the new Black Market Aerial Pack DLC for Just Cause 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-black-market-aerial-pack-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f18ca7a9-64ef-4054-85ff-bd7a631c3259/sm/ep1245.jpg","duration":230,"publication_date":"2010-04-30T20:11:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stockpile-and-headhunter-gametypes","changefreq":"weekly","video":[{"title":"2010:E129 - Stockpile & Headhunter Gametypes","description":"Jack and Geoff show you the two new gametypes you'll experience in the Halo: Reach Beta. Aren't you excited Fresh new gametypes!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stockpile-and-headhunter-gametypes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff5a2b82-51ce-4411-82aa-df33f49d87f6/sm/ep1244.jpg","duration":153,"publication_date":"2010-04-30T19:13:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sword-base-walkthrough","changefreq":"weekly","video":[{"title":"2010:E128 - Sword Base Walkthrough","description":"Jack and Geoff take a gander at the new map \"Sword Base\" in the Halo: Reach beta. Come with us, won't you It is a magical land of fancy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sword-base-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0e0c27d-81aa-43f1-a8bd-c0c6fc459bdc/sm/ep1243.jpg","duration":164,"publication_date":"2010-04-29T22:03:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-powerhouse-walkthrough","changefreq":"weekly","video":[{"title":"2010:E127 - Powerhouse Walkthrough","description":"Geoff and Jack take a tour through the new Halo: Reach map \"Powerhouse.\" Come and explore with us this fancy new map and the wondrous sites it beholds.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-powerhouse-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cedbdf0d-f832-4d8e-b663-d96166a2b0e2/sm/ep1242.jpg","duration":166,"publication_date":"2010-04-29T22:02:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-jump-the-shark-skate3","changefreq":"weekly","video":[{"title":"2010:E126 - Jump the Shark","description":"Jack and Geoff finally did it. They jumped the shark. In the Skate 3 Demo.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-jump-the-shark-skate3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eecc7ddb-1a1f-4924-84d5-1a2a8aeedbda/sm/ep1241.jpg","duration":115,"publication_date":"2010-04-29T20:07:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-return-to-sender-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E343 - Return to Sender Achievement Guide","description":"Geoff and Jack take a trip down memory lane to get the Return to Sender Achievement in the newly released XBL game, Tecmo Bowl Throwback.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-return-to-sender-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cbfce574-8232-48d0-9101-a6726bf3447b/sm/ep1240.jpg","duration":141,"publication_date":"2010-04-28T21:11:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-good-start-and-it-begins","changefreq":"weekly","video":[{"title":"2010:E125 - Good Start & It Begins","description":"Jack and Geoff walk you through two quick achievements you can pick up in Super Street Fighter 4. Don't blame me. I just work here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-good-start-and-it-begins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/683e9a86-5b11-422c-96dd-0d8fab0a7949/sm/ep1239.jpg","duration":107,"publication_date":"2010-04-28T19:23:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cache-grab-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E342 - Cache Grab Achievement Guide","description":"Geoff and Andrew show you how to get the Cache Grab Achievement in Left 4 Dead 2's The Passing DLC. Special useless commentary by Jack!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cache-grab-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ad1fda6-bc58-4f7c-a3b7-920d832313b3/sm/ep1238.jpg","duration":181,"publication_date":"2010-04-27T21:06:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ranger-achievement-guide-part-one","changefreq":"weekly","video":[{"title":"2010:E341 - Ranger Achievement Guide Part One","description":"Fragger is back with another Metro 2033 video. This one is part one of a two part series showing how to get the Ranger Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ranger-achievement-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbbebf49-f0bb-4666-87c1-d43cc961e777/sm/ep1237.jpg","duration":499,"publication_date":"2010-04-27T20:21:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-get-out-of-the-map","changefreq":"weekly","video":[{"title":"2010:E124 - Get out of the Map!","description":"Jack and Geoff show you how to get beyond the magical walls of the Skate 3 demo to check out all new areas! Jump a shark! Fall through the floor! Wild times! Good luck!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-get-out-of-the-map","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75923b9b-4def-4db6-b349-343bb4f49ca2/sm/ep1236.jpg","duration":147,"publication_date":"2010-04-27T16:46:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-10","changefreq":"weekly","video":[{"title":"2010:E9 - Week #9","description":"Jack and Geoff are up on the roof to tell you about a whole crapload of games hitting this week. Also, SOMEONE GETS SLAPPED! And Ninja-chopped. See you next week!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20c218a7-66ac-4cea-9843-d01c243883b8/sm/ep1234.jpg","duration":348,"publication_date":"2010-04-26T21:56:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-siege-dlc","changefreq":"weekly","video":[{"title":"2010:E123 - Uncharted 2 - The Siege DLC","description":"Geoff and Gus walk you through the new maps and gametype for the Uncharted 2: The Siege DLC.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-siege-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/41b98b38-9fd0-4885-9dc5-d29dfa2e667a/sm/ep1232.jpg","duration":159,"publication_date":"2010-04-23T23:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-til-it-goes-click-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E340 - Til It Goes Click Achievement Guide","description":"Knuckles shows us an easy way to get \"Till it Goes Click\" in the new L4D2 DLC \"The Passing.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-til-it-goes-click-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d76b5e93-08e0-4123-9da0-46ce11f20700/sm/ep1231.jpg","duration":53,"publication_date":"2010-04-23T20:47:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-kite-like-a-man-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E339 - Kite Like a Man Achievement Guide","description":"Knuckles shows you how to get the Kite Like a Man achievement in the Left 4 Dead 2 DLC \"The Passing.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-kite-like-a-man-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/326f1c47-a983-44b1-8bcf-d70bae41998a/sm/ep1230.jpg","duration":58,"publication_date":"2010-04-23T19:25:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fore-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E337 - Fore! Achievement Guide","description":"\"Knuckles gives us his best Happy Gilmore impersonation by showing us how to nab the FORE! Achievement in Left 4 Dead 2.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fore-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cb96fdb4-a9f3-44b4-a1d5-7cb407d6e0c6/sm/ep1228.jpg","duration":80,"publication_date":"2010-04-23T16:40:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dr-pepper-dlc-walkthrough","changefreq":"weekly","video":[{"title":"2010:E122 - Dr. Pepper DLC Walkthrough","description":"Jack and Geoff walk you through how to pick up your Battlefield Bad Company 2 DLC using codes found on Dr. Pepper bottles. It's a bit confusing, so listen closely.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dr-pepper-dlc-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2503b5d3-7237-4469-881f-e9bb29327c16/sm/ep1227.jpg","duration":366,"publication_date":"2010-04-22T22:27:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010-2","changefreq":"weekly","video":[{"title":"2010:E2 - Midnight Riders Tour Bus Easter Egg","description":"Geoff and Jack show you an awesome easter egg in Left 4 Dead 2's new DLC, The Passing.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ac9caec-9107-4061-92ef-bb705bef4d4b/sm/ep1226.jpg","duration":78,"publication_date":"2010-04-22T21:25:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-russian-embassy-rooftop","changefreq":"weekly","video":[{"title":"2010:E121 - Russian Embassy - Rooftop","description":"Jack and Geoff get tired of the Russian Embassy and decide to hop a chopper outta there! Join them on the Rooftop section of the second coop mission in Splinter Cell: Conviction.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-russian-embassy-rooftop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/faadc62d-774d-4c2e-becf-2eecd54802da/sm/ep1225.jpg","duration":326,"publication_date":"2010-04-22T19:59:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2010","changefreq":"weekly","video":[{"title":"2010:E1 - Frank West \"Dead Rising\" Easter Egg","description":"Geoff and Jack show you where to find a nifty little easter egg in Left 4 Dead 2's new DLC \"The Passing\".","player_loc":"https://roosterteeth.com/embed/easter-eggs-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/418b0406-50ae-4aab-8329-ae02b5da77b1/sm/ep1224.jpg","duration":120,"publication_date":"2010-04-22T17:23:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-russian-embassy-public-building","changefreq":"weekly","video":[{"title":"2010:E120 - Russian Embassy - Public Building","description":"Jack and Geoff continue with Mission 2, Russian Embassy. This time they tackle the second chapter of mission 2, Public Building.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-russian-embassy-public-building","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/172a0ed0-dd0f-4359-bd4d-ef2f6c698d91/sm/ep1223.jpg","duration":419,"publication_date":"2010-04-21T19:28:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-russian-embassy-consular-offices","changefreq":"weekly","video":[{"title":"2010:E119 - Russian Embassy - Consular Offices","description":"Jack and Geoff move on to Mission 2, Russian Embassy. This time they dive in head first into the first part, Consular Offices. Where is my secretary","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-russian-embassy-consular-offices","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c2a7f7c-7457-4f12-807e-e861ef77054e/sm/ep1222.jpg","duration":401,"publication_date":"2010-04-20T23:12:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-9","changefreq":"weekly","video":[{"title":"2010:E8 - Week #8","description":"Jack and Geoff are back with more gaming goodness from the world of magic and miracles. This week we get some info on Sherlock Holmes, THE PASSING DLC for Left 4 Dead 2, Uncharted 2 and more! Special appearance by The Maw!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-9","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df7f97f7-70e4-489f-ac9e-7805b4d83263/sm/ep1220.jpg","duration":297,"publication_date":"2010-04-19T21:12:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-st-petersburg-garage","changefreq":"weekly","video":[{"title":"2010:E118 - St. Petersburg - Garage","description":"Geoff and Jack show you how to get through the Garage to complete the St. Petersburg level.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-st-petersburg-garage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b886fd21-ae22-408a-9de5-c637b576a032/sm/ep1219.jpg","duration":451,"publication_date":"2010-04-16T13:56:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-3-pax-east-preview","changefreq":"weekly","video":[{"title":"2010:E117 - Skate 3 PAX East Preview","description":"Jack talks with @Bobbybobbydigi and Cuz Parry from the Skate series and finds out a bit more about the Hall of Meat changes in Skate 3. He also learns a bit about life.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-3-pax-east-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da587064-919a-4a1d-be03-5223aa5d7f04/sm/ep1218.jpg","duration":247,"publication_date":"2010-04-15T22:45:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-st-petersburg-vice-den","changefreq":"weekly","video":[{"title":"2010:E116 - St. Petersburg - Vice Den","description":"Jack and Geoff keep plowing through St. Petersburg Banya...this time through the scary sounding Vice Den. Stay tuned for part 4!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-st-petersburg-vice-den","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e22f8cbf-c376-4097-9825-3f09bcd577ee/sm/ep1217.jpg","duration":397,"publication_date":"2010-04-15T21:44:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-st-petersburg-steam-baths","changefreq":"weekly","video":[{"title":"2010:E115 - St. Petersburg - Steam Baths","description":"Jack and Geoff keep plowing through St. Petersburg Banya...this time through the steam baths. Woo hoo! Stay tuned for parts 3 and 4!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-st-petersburg-steam-baths","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f5ebe64e-aa4d-4f6e-86d3-89b3c5cda6ce/sm/ep1216.jpg","duration":371,"publication_date":"2010-04-15T03:16:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-st-petersburg-canal-entrance","changefreq":"weekly","video":[{"title":"2010:E114 - St. Petersburg - Canal Entrance","description":"Geoff and Jack are back in action, running around killing people in Splinter Cell: Conviction for the 360. Follow along as they walk you through all of the Co-op story missions on Realistic Mode to pick up the Co-op Realistic Difficulty achievement. This is the Canal Entrance chapter of St. Petersburg Banya. Check back for more!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-st-petersburg-canal-entrance","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c087b6ff-6094-47c1-99c3-2c0bb4b767cf/sm/ep1215.jpg","duration":326,"publication_date":"2010-04-13T23:31:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-exorcist-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E336 - Exorcist Achievement Guide","description":"Fragger shows how to get the Exorcist Achievement in Metro 2033.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-exorcist-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c67b15e9-c431-46e8-9c8b-1ca48e6a48dd/sm/ep1214.jpg","duration":191,"publication_date":"2010-04-13T22:40:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ubisoft-at-pax","changefreq":"weekly","video":[{"title":"2010:E113 - Ubisoft at PAX","description":"Jack talks to some folks from Ubisoft about the upcoming titles Splinter Cell: Conviction and Prince of Persia: Forgotten Sands.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ubisoft-at-pax","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/599cee86-7cb5-4dd3-8e48-0942eacba55b/sm/ep1213.jpg","duration":392,"publication_date":"2010-04-12T21:53:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-8","changefreq":"weekly","video":[{"title":"2010:E7 - Week #7","description":"Jack and Geoff bring you all the latest in the week of gaming yet again. Tons of games and news, hooray.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e404c8a8-3000-47bc-8102-ee4d5e150add/sm/ep1212.jpg","duration":315,"publication_date":"2010-04-12T21:52:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-parachute-climber-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E335 - Parachute Climber Achievement Guide","description":"Geoff and Jack show you, in a rambling way, how to get the Parachute Climber Achievement in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-parachute-climber-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab792e01-1367-4e24-875f-ddef9e3cd58f/sm/ep1211.jpg","duration":75,"publication_date":"2010-04-12T21:05:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sherlock-part-4-armory-station","changefreq":"weekly","video":[{"title":"2010:E112 - Sherlock Part 4 - Armory Station","description":"Fragger shows us where to find the hidden ammo in Armory Station.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sherlock-part-4-armory-station","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5e2d099-b6e0-4250-8a26-2dee0e41b6fe/sm/ep1209.jpg","duration":136,"publication_date":"2010-04-12T14:29:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-2010","changefreq":"weekly","video":[{"title":"2010:E111 - Crysis 2 - Preview Part 2","description":"Jack interviews Cevat Yerli in Times Square about his game Crysis 2. Also included is the brand new trailer that just became public! Hooray!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8bb39b9-b68b-4b13-a8cf-50b07760c2ad/sm/ep1208.jpg","duration":308,"publication_date":"2010-04-09T23:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stunt-flyer-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E334 - Stunt Flyer Achievement Guide","description":"Geoff and Jack show you how to get the Stunt Flyer Achievement in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stunt-flyer-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/463029e5-06f1-4378-b196-6828407a0761/sm/ep1207.jpg","duration":149,"publication_date":"2010-04-09T22:18:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-preview-part-1","changefreq":"weekly","video":[{"title":"2010:E110 - Crysis 2 - Preview Part 1","description":"Jack flies out to New York City to check out the premier of Crysis 2. In this first half he interviews Frank Kitson, the art director and another special guest for this upcoming game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-preview-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d5f8508-cf09-4e90-8e2b-cbfb069dc7d5/sm/ep1206.jpg","duration":270,"publication_date":"2010-04-09T20:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-usb-flash-drive-test","changefreq":"weekly","video":[{"title":"2010:E109 - USB Flash Drive Test","description":"Geoff and Burnie's hand test a series of USB storage devices with the newly updated Xbox dash.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-usb-flash-drive-test","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3380987e-e4ce-4389-af07-55efbce5e619/sm/ep1205.jpg","duration":471,"publication_date":"2010-04-08T22:44:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wrecking-ball-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E333 - Wrecking Ball Achievement Guide","description":"Geoff and Jack show you how to get the Wrecking Ball Achievement in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wrecking-ball-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a8f603a-53d2-466c-a8a8-c6cc7e91923e/sm/ep1204.jpg","duration":160,"publication_date":"2010-04-08T21:10:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sherlock-part-3-market-station","changefreq":"weekly","video":[{"title":"2010:E108 - Sherlock Part 3 - Market Station","description":"Fragger shows us where to find the hidden ammo in Market Station.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sherlock-part-3-market-station","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6237200b-4a2c-4de3-a615-6125a1e0a444/sm/ep1203.jpg","duration":126,"publication_date":"2010-04-08T18:21:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kasumi-stolen-memories","changefreq":"weekly","video":[{"title":"2010:E107 - Kasumi -Stolen Memories","description":"Geoff and Gus show you the new DLC from Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kasumi-stolen-memories","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99421e55-01bb-4b36-aeb1-f81f7519180c/sm/ep1202.jpg","duration":269,"publication_date":"2010-04-08T03:41:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-metro-2033-sherlock-part-2-riga","changefreq":"weekly","video":[{"title":"2010:E106 - Metro 2033: Sherlock Part 2 - Riga","description":"Fragger shows us where to find the hidden ammo in Riga.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-metro-2033-sherlock-part-2-riga","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20358f8b-a368-4e40-92f8-558d5d31ccff/sm/ep1201.jpg","duration":219,"publication_date":"2010-04-07T22:03:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-top-of-the-world-guide","changefreq":"weekly","video":[{"title":"2010:E332 - Top of the World Guide","description":"Geoff and Gus show you where to nab the Top of the World Achievement in Just Cause 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-top-of-the-world-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6e80486-52cb-4c8c-aa3f-1b5b6b6fc65a/sm/ep1200.jpg","duration":164,"publication_date":"2010-04-06T22:11:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hecatoncheir-eidolith-fight","changefreq":"weekly","video":[{"title":"2010:E105 - Hecatoncheir Eidolith Fight","description":"Geoff and Jack show you how to defeat Hecatoncheir in Final Fantasy XIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hecatoncheir-eidolith-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f900b9e-148c-4a25-9b29-62c37d2b51bc/sm/ep1198.jpg","duration":208,"publication_date":"2010-04-05T21:32:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sherlock-part-1-exhibition-station","changefreq":"weekly","video":[{"title":"2010:E104 - Sherlock Part 1 - Exhibition Station","description":"Fragger shows us where to find the hidden ammo in Exhibition Station.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sherlock-part-1-exhibition-station","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5a9f9b5-d68b-476c-a812-93bc89db3c48/sm/ep1197.jpg","duration":89,"publication_date":"2010-04-05T20:50:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-7","changefreq":"weekly","video":[{"title":"2010:E6 - Week #6","description":"Jack and Geoff are back in Austin, talkin' bout games. Not a very busy week, but the video is full of fun, laughs and slaps.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ecb5d54-66c5-47c0-a41d-d5421ee33085/sm/ep1196.jpg","duration":302,"publication_date":"2010-04-05T20:36:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mega64-pax-interview","changefreq":"weekly","video":[{"title":"2010:E103 - Mega64 PAX Interview","description":"Jack meets up with the guys from Mega64 at PAX East 2010. They gave out free hugs and kisses. Visit them on the web at http://www.mega64.com/","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mega64-pax-interview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b557ccae-527c-4b0d-9b4f-178b68b08b2d/sm/ep1195.jpg","duration":268,"publication_date":"2010-04-02T23:47:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-stimulus-package-overview","changefreq":"weekly","video":[{"title":"2010:E102 - Stimulus Package Overview","description":"Jack and Geoff jump back in to Call of Duty: Modern Warfare 2 and check out the new Stimulus Package DLC maps. Come with us, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-stimulus-package-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0dbb19ee-9342-41f3-b503-dbdccb3ab519/sm/ep1194.jpg","duration":343,"publication_date":"2010-04-02T19:31:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-weekend-hunt-for-april-10th-2010","changefreq":"weekly","video":[{"title":"2010:E101 - Weekend Hunt for April 10th 2010","description":"Knuckles talks about a new feature hitting Achievement Hunter.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-weekend-hunt-for-april-10th-2010","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97a285cf-f3c1-43b9-bd3c-35077944377e/sm/ep1193.jpg","duration":140,"publication_date":"2010-04-02T19:21:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cid-raines-boss-fight","changefreq":"weekly","video":[{"title":"2010:E100 - Cid Raines Boss Fight","description":"Geoff and Jack show you how to defeat Cid Raines in FFXIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cid-raines-boss-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd572dde-574d-4d49-873e-97d8f4aec6db/sm/ep1192.jpg","duration":299,"publication_date":"2010-04-02T18:40:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-defeat-bahamut","changefreq":"weekly","video":[{"title":"2010:E99 - How to defeat Bahamut","description":"Geoff and Jack show you how to defeat Bahamut in Chapter 10 of Final Fantasy XIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-defeat-bahamut","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7cad596-1802-4a94-b32a-4d6833644370/sm/ep1186.jpg","duration":174,"publication_date":"2010-04-01T18:35:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-nine-boss-fight-barthandelus","changefreq":"weekly","video":[{"title":"2010:E98 - Chapter Nine Boss Fight - Barthandelus","description":"Geoff and Gus show you how to five-star the Chapter Nine boss Barthandelus in FFXIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-nine-boss-fight-barthandelus","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0549cdda-d18a-43e3-9eb1-236182ef0b4d/sm/ep1185.jpg","duration":264,"publication_date":"2010-03-31T21:57:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-i-believe-i-can-fly","changefreq":"weekly","video":[{"title":"2010:E97 - I Believe I Can Fly","description":"Jack and Geoff go base jumping in Just Cause 2 and pick up the R. Kelly inspired achievement \"I Believe I Can Fly.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-i-believe-i-can-fly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15b75bb4-1bee-4775-b4a4-3992cb951313/sm/ep1184.jpg","duration":102,"publication_date":"2010-03-30T20:21:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-6","changefreq":"weekly","video":[{"title":"2010:E5 - Week #5","description":"Geoff and Jack head to PAX, but they don't miss out on the weekly AHWU. Check out the new releases this week, some gaming news and special guest Knuckles Dawson in this week's installment. Also, SOMEONE GETS SLAPPED!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-6","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37b4e7e6-58d1-4683-9b66-0fecb64d7f05/sm/ep1183.jpg","duration":278,"publication_date":"2010-03-30T01:52:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-special-preview","changefreq":"weekly","video":[{"title":"2010:E96 - PAX East - Special Preview","description":"Check out this brief preview of the goodies we have heading your way from PAX East! Also, Jack gets punched by Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-special-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ce752938-1db0-47dd-998e-6fecd9955a95/sm/ep1182.jpg","duration":49,"publication_date":"2010-03-27T05:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-follow-me","changefreq":"weekly","video":[{"title":"2010:E95 - Just Cause 2 - Follow Me!","description":"Jack and Joel do a bit of draggin' and pick up the Follow Me! achievement in Just Cause 2. Don't try this at home.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-follow-me","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a80d6ab7-a9aa-4205-b95f-b633a67e21cc/sm/ep1181.jpg","duration":103,"publication_date":"2010-03-25T19:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-piãƒâ±ata-party","changefreq":"weekly","video":[{"title":"2010:E94 - Just Cause 2 - Pinata Party","description":"Jack and special guest Joel go crazy with the grappling hook in Just Cause 2 and have a tea party. I mean Piata Party. They get an achievement. Leave me alone.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-piãƒâ±ata-party","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec084761-680d-4345-8b68-e78ad3b2f345/sm/ep1180.jpg","duration":75,"publication_date":"2010-03-25T19:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-firewalker-dlc-overview","changefreq":"weekly","video":[{"title":"2010:E93 - Firewalker DLC Overview","description":"Geoff and Jack how you around the new Firewalker DLC in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-firewalker-dlc-overview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a11a2ed-bbdb-48ee-973d-844fada694c5/sm/ep1179.jpg","duration":244,"publication_date":"2010-03-24T23:24:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-5","changefreq":"weekly","video":[{"title":"2010:E4 - Week #4","description":"Jack and Geoff are back with another look at the week in gaming for March 22nd, 2010. This week Geoff takes a glance at Mass Effect 2 DLC, Just Cause 2, Microsoft's Game Room and more. Jack gets toilet paper thrown at him.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b28bb92-2099-4c8b-aaad-13709b3c9d5b/sm/ep1178.jpg","duration":335,"publication_date":"2010-03-22T22:35:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-enki-enlil-boss-fight","changefreq":"weekly","video":[{"title":"2010:E92 - Final Fantasy XIII - Enki / Enlil Boss Fight","description":"Geoff and Jack show you hot to five-star the Chapter Six bosses Enki and Enlil in FFXIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-enki-enlil-boss-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51aa2817-eda2-400a-943b-566ce7cea1af/sm/ep1177.jpg","duration":253,"publication_date":"2010-03-22T20:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gardens-to-labyrinth-item-walkthrough","changefreq":"weekly","video":[{"title":"2010:E90 - God of War 3 - Gardens to Labyrinth Item Walkthrough","description":"Jack and Geoff say hello to Hera and hit up the Labyrinth. No creepy British dude with tights this time.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gardens-to-labyrinth-item-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/144840aa-ff55-47d8-b4e6-6f94177643ed/sm/ep1175.jpg","duration":126,"publication_date":"2010-03-21T00:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-souled-out","changefreq":"weekly","video":[{"title":"2010:E91 - God of War 3 - Souled Out","description":"Jack and Geoff steal Hades' Claws and go to town. Then back home.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-souled-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ab49e8e-aa97-4385-a672-08be6321974f/sm/ep1176.jpg","duration":75,"publication_date":"2010-03-21T00:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mount-olympus-item-guide-part-3","changefreq":"weekly","video":[{"title":"2010:E331 - Mount Olympus Item Guide Part 3","description":"Jack and Geoff continue their trek through Mount Olympus in God of War 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mount-olympus-item-guide-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bcaba3b8-8e00-4730-8457-b9070e1521a9/sm/ep1174.jpg","duration":152,"publication_date":"2010-03-21T00:12:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-obedience-school","changefreq":"weekly","video":[{"title":"2010:E89 - God of War 3 - Obedience School","description":"Jack and Geoff kick some dogs and pick up the \"Obedience School\" trophy in God of War 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-obedience-school","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3fdb72f1-da34-478b-9749-c9f95aec19e3/sm/ep1173.jpg","duration":70,"publication_date":"2010-03-21T00:10:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-priceless","changefreq":"weekly","video":[{"title":"2010:E88 - God of War 3 - Priceless","description":"Jack and Geoff show you the locations of every single one of the Godly Possessions scattered throughout God of War 3. From coins to pimp cups, we've got them all.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-priceless","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fdb43a86-222d-475a-9600-85bb3b51c9fa/sm/ep1172.jpg","duration":177,"publication_date":"2010-03-21T00:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mount-olympus-item-guide-part-2","changefreq":"weekly","video":[{"title":"2010:E330 - Mount Olympus Item Guide Part 2","description":"Jack and Geoff keep killin' fools and taking names in God of War 3. This time they keep heading through Mount Olympus pickin' up Feathers, Eyes and Horns. Oh buddy!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mount-olympus-item-guide-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16ed9ef5-e984-4565-b435-c6184d5d74da/sm/ep1171.jpg","duration":103,"publication_date":"2010-03-21T00:05:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mount-olympus-item-guide-part-1","changefreq":"weekly","video":[{"title":"2010:E329 - Mount Olympus Item Guide Part 1","description":"Jack and Geoff climb Mount Olympus and grab some Horns, Feathers and Eyes in the process. Sounds like the worst strip club ever. Kratos loves his strip clubs.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mount-olympus-item-guide-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/236313fe-9d25-4524-853d-5df7134d310b/sm/ep1170.jpg","duration":135,"publication_date":"2010-03-20T23:55:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-five-starring-the-chapter-5-boss-aster-protoflorian","changefreq":"weekly","video":[{"title":"2010:E87 - Final Fantasy XIII - Five Starring the Chapter 5 Boss (Aster Protoflorian)","description":"Geoff and Jack show you how to five-star the Chapter 5 boss \"Aster Protoflorian\" in Final Fantasy XIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-five-starring-the-chapter-5-boss-aster-protoflorian","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bbec779e-baeb-46cf-ba70-af5df4342b1a/sm/ep1169.jpg","duration":206,"publication_date":"2010-03-19T22:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-olympia-item-walkthrough","changefreq":"weekly","video":[{"title":"2010:E86 - God of War 3 - Olympia Item Walkthrough","description":"Jack and Gus keep moving through God of War 3 and pick up some more scattered Gorgon Eyes, Phoenix Feathers and Minotaur Horns that were cast aside. Also they pick up a couple more items that contribute to the Godly Possessions trophy. Huzzah!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-olympia-item-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0a28d9cc-22e0-47f7-bc2c-13da71335fee/sm/ep1168.jpg","duration":153,"publication_date":"2010-03-18T22:30:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hades-walkthrough","changefreq":"weekly","video":[{"title":"2010:E85 - God of War 3 - Hades Walkthrough","description":"Jack and Gus walk you through the first level of God of War 3 picking up special items, Gorgon Eyes, Phoenix Feathers and Minotaur Horns. Enjoy the insane visuals and the inane voices!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hades-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8653a698-2d85-4c72-87a6-58d5bf62579e/sm/ep1167.jpg","duration":233,"publication_date":"2010-03-17T23:47:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-both-barrels","changefreq":"weekly","video":[{"title":"2010:E84 - Perfect Dark - Both Barrels","description":"Knuckles shows you how to get the Both Barrels Achievement in the first level of Perfect Dark","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-both-barrels","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca9bf1f8-e2c5-4c73-94e1-d4fe05895e61/sm/ep1166.jpg","duration":55,"publication_date":"2010-03-17T21:55:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-4","changefreq":"weekly","video":[{"title":"2010:E3 - Week #3","description":"Geoff and Jack run through another mass of games for the week including God of War 3, Metro 2033, the Playstation Move, Need for Speed: Shift and more!\r\n\r\nCome for the games, stay for the 360 fight!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cd05b02-242b-4322-a967-1c8427f887cd/sm/ep1165.jpg","duration":264,"publication_date":"2010-03-15T22:10:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-odin-battle","changefreq":"weekly","video":[{"title":"2010:E83 - Final Fantasy XIII - Odin Battle","description":"Geoff and Jack show you an easy way to defeat Odin in Chapter Four of FFXIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-odin-battle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/261033e6-abe6-4658-bf15-b5dca7fc591a/sm/ep1164.jpg","duration":189,"publication_date":"2010-03-11T22:48:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gaining-ground-and-wheels-of-fire","changefreq":"weekly","video":[{"title":"2010:E82 - Sonic & Sega All-Stars - Gaining Ground & Wheels of Fire","description":"Jack and Geoff burn some digital rubber in this guide for Sonic & Sega All-Stars. Learn exactly when to push the accelerator to get the boost off the start and pick up two achievements in the process. Tally-ho!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gaining-ground-and-wheels-of-fire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1755e4c8-85eb-451c-8d99-88d56123add6/sm/ep1163.jpg","duration":47,"publication_date":"2010-03-10T23:37:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rolling-start","changefreq":"weekly","video":[{"title":"2010:E81 - Sonic & Sega All-Stars - Rolling Start","description":"Jack and Geoff take a tutorial lap in Sonic & Sega All-Stars and pick up this easy-to-miss achievement. Don't forget your running shoes!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rolling-start","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6ff24d8d-d39a-4667-8df9-cb80b71fd44b/sm/ep1162.jpg","duration":60,"publication_date":"2010-03-10T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-shiva-sisters-fight","changefreq":"weekly","video":[{"title":"2010:E80 - Final Fantasy XIII - Shiva Sisters Fight","description":"Geoff and Jack show you a tactic for beating the Shiva sisters at the end of Chapter Three of Final Fantasy XIII.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-shiva-sisters-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/687a0e67-fb00-4fde-bf9b-19d87398e218/sm/ep1161.jpg","duration":207,"publication_date":"2010-03-10T21:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-power-drift","changefreq":"weekly","video":[{"title":"2010:E79 - Sonic & Sega All-Stars - Power Drift","description":"Geoff and Jack go kartin' in Sonic & Sega All-Stars and pick up the \"Power Drift\" achievement while doing so. Aiai rules.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-power-drift","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f382dd24-d1d0-4cca-bd1b-4cdbf6a76627/sm/ep1160.jpg","duration":60,"publication_date":"2010-03-09T22:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-beat-mass-effect-2-on-insanity-part-two","changefreq":"weekly","video":[{"title":"2010:E78 - \"How To Beat Mass Effect 2 On Insanity\": Part Two","description":"Fragger continues his tips for beating ME2 on Insanity.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-beat-mass-effect-2-on-insanity-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02fcb709-a392-4e3b-a93e-6b162e0c32bf/sm/ep1159.jpg","duration":551,"publication_date":"2010-03-09T21:02:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-3","changefreq":"weekly","video":[{"title":"2010:E2 - Week #2","description":"Jack and Geoff run you through the upcoming releases for the week including Final Fantasty XIII, Bioshock 2 DLC, Yakuza 3 and more! Hilarity most definitely will ensue.","player_loc":"https://roosterteeth.com/embed/ahwu-2010-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28b76369-6d66-44f1-ac55-5aacc8ffa6e3/sm/ep1158.jpg","duration":266,"publication_date":"2010-03-09T01:48:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-how-to-beat-mass-effect-2-on-insanity-part-one","changefreq":"weekly","video":[{"title":"2010:E77 - \"How To Beat Mass Effect 2 On Insanity\": Part One","description":"Fragger gives us some tips on beating ME2 on Insanity.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-how-to-beat-mass-effect-2-on-insanity-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8214603-8ced-4f92-b809-7987443af368/sm/ep1157.jpg","duration":588,"publication_date":"2010-03-08T19:13:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-desperate-escape-shoot-the-messenger-guide","changefreq":"weekly","video":[{"title":"2010:E327 - Desperate Escape - Shoot the Messenger Guide","description":"Geoff and Jack show you how to get the very tricky \"Shoot the Messenger\" Achievement in Resident Evil 5's DLC \"Desperate Escape.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-desperate-escape-shoot-the-messenger-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7def5bb-46ed-42dc-b3ef-d88dcfa38440/sm/ep1155.jpg","duration":286,"publication_date":"2010-03-04T21:24:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/ahwu-2010-2","changefreq":"weekly","video":[{"title":"2010:E1 - Week #1","description":"Jack and Geoff try out a new thing this week. Starting now, every single week they'll be uploading an overview video of what games are releasing during the week as well as any kind of funny or lame achievements.\r\n\r\nA hint of news will be thrown in as well as a hint of slapping. Let us know what you think and if we should continue this series!","player_loc":"https://roosterteeth.com/embed/ahwu-2010-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7c4fc5d1-5f7d-4795-8d88-33afe856f348/sm/ep1154.jpg","duration":227,"publication_date":"2010-03-04T18:45:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-desperate-escape-dlc-way-of-the-warrior-guide","changefreq":"weekly","video":[{"title":"2010:E326 - Desperate Escape DLC - Way of the Warrior Guide","description":"Geoff and Jack show you a few places to grind out the Way of the Warrior Achievement in RE5: Desperate Escape.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-desperate-escape-dlc-way-of-the-warrior-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3df1735e-8cb2-45ac-a7df-22c9c26d131a/sm/ep1153.jpg","duration":221,"publication_date":"2010-03-03T23:20:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gold-finger","changefreq":"weekly","video":[{"title":"2010:E76 - Heavy Rain - Gold Finger","description":"Gus and Geoff show you how to get the Gold Finger bronze trophy in Heavy Rain.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gold-finger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2e291db-4dfb-4bd3-b6a2-013ada23616a/sm/ep1152.jpg","duration":207,"publication_date":"2010-03-03T22:52:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-good-driver","changefreq":"weekly","video":[{"title":"2010:E75 - Heavy Rain - Good Driver","description":"Gus and Geoff show you how to get the Good Driver bronze trophy in Heavy Rain and talk about the Kamikaze trophy","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-good-driver","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ccdf3bc-0ec0-4f05-98f5-73cb20e18772/sm/ep1151.jpg","duration":172,"publication_date":"2010-03-03T22:51:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-m-com-stations-01-12","changefreq":"weekly","video":[{"title":"2010:E73 - Battlefield: Bad Company 2 - M-Com Stations 01-12","description":"Jack and Geoff get Bad in this Battlefield Bad Company 2 guide. Included in this wonderful video are the locations of the first 12 M-Com stations that you must explode for great glory. Stay tuned for part two where we show you where the last twelve are and also, the location of the Holy Grail.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-m-com-stations-01-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc554872-4a37-4f76-b6bd-dd8f253b8eaa/sm/ep1148.jpg","duration":279,"publication_date":"2010-03-02T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-m-com-stations-13-24","changefreq":"weekly","video":[{"title":"2010:E74 - Battlefield: Bad Company 2 - M-Com Stations 13-24","description":"Jack and Geoff finish off the Satellite Uplinks in Battlefield Bad Company 2. They also finally break that barrier and hug each other.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-m-com-stations-13-24","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8587a68a-5f10-417a-83d7-d20e468a4d39/sm/ep1149.jpg","duration":282,"publication_date":"2010-03-02T20:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-self-control","changefreq":"weekly","video":[{"title":"2010:E72 - Heavy Rain - Self Control","description":"Gus and Geoff show you how to get the Self Control bronze trophy in Heavy Rain","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-self-control","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b00e1d1-346b-44c5-aa40-698919be47db/sm/ep1147.jpg","duration":151,"publication_date":"2010-03-01T23:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-baby-master","changefreq":"weekly","video":[{"title":"2010:E71 - Heavy Rain - Baby Master","description":"Gus and Geoff show you how to get the Baby Master bronze trophy in Heavy Rain","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-baby-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9ee87ca-7f26-4e26-a954-4e4efc4c7c1e/sm/ep1146.jpg","duration":236,"publication_date":"2010-03-01T23:20:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-vip-agoraphobia-and-lucky-locker","changefreq":"weekly","video":[{"title":"2010:E70 - Heavy Rain - VIP, Agoraphobia and Lucky Locker","description":"Gus and Geoff give you a three pack of bronze trophies with VIP, Agoraphobia and Lucky Locker","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-vip-agoraphobia-and-lucky-locker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0f52b0f-e2f6-4927-a4ed-a14748691a96/sm/ep1145.jpg","duration":208,"publication_date":"2010-03-01T23:18:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-negotiator","changefreq":"weekly","video":[{"title":"2010:E69 - Heavy Rain - Negotiator","description":"Gus and Geoff show you how to get the Negotiator bronze trophy in Heavy Rain","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-negotiator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d3b44a84-0aaf-4955-9b11-1bb79cceec0a/sm/ep1144.jpg","duration":183,"publication_date":"2010-03-01T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-got-to-remember","changefreq":"weekly","video":[{"title":"2010:E68 - Heavy Rain - Got to Remember!","description":"Gus and Geoff show you how to get the Got to Remember! bronze trophy in Heavy Rain","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-got-to-remember","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/daa73ee2-d794-47de-b93e-3366e22fcd29/sm/ep1142.jpg","duration":70,"publication_date":"2010-02-26T20:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-good-friends","changefreq":"weekly","video":[{"title":"2010:E67 - Heavy Rain - Good Friends","description":"Gus and Geoff show you how to get the Good Friends bronze trophy in Heavy Rain and talk about puking","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-good-friends","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6757014a-0547-4270-8faa-73d1d1705900/sm/ep1140.jpg","duration":246,"publication_date":"2010-02-26T17:38:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fbi-investigator","changefreq":"weekly","video":[{"title":"2010:E66 - Heavy Rain - FBI Investigator","description":"Gus and Geoff show you how to get the FBI Investigator bronze trophy in Heavy Rain.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fbi-investigator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/14fcc37b-0647-443d-8eeb-bdff83ad017f/sm/ep1139.jpg","duration":326,"publication_date":"2010-02-25T23:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-you-have-my-sympathies-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E321 - You Have My Sympathies Achievement Guide","description":"Geoff and Jack show you how and where to get the \"You Have My Sympathies\" Achievement in AvP.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-you-have-my-sympathies-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66b87eb3-d19c-48aa-bec9-63222faf0c41/sm/ep1137.jpg","duration":49,"publication_date":"2010-02-25T19:53:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lazy-bastard","changefreq":"weekly","video":[{"title":"2010:E64 - Fairytale Fights - Lazy Bastard","description":"Alex (death2271) shows how to get the Lazy Bastard achivement, just like most Americans, like me.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lazy-bastard","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":137,"publication_date":"2010-02-25T17:41:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-marine-audio-diaries-part-2","changefreq":"weekly","video":[{"title":"2010:E63 - Aliens vs. Predator - Marine Audio Diaries Part 2","description":"TudorVII continues his alien ass-kicking adventures in the Refinary level of Aliens vs Predator's Marine campaign.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-marine-audio-diaries-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":251,"publication_date":"2010-02-25T17:34:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-robbed-zombie","changefreq":"weekly","video":[{"title":"2010:E61 - Left 4 Dead 2 - Robbed Zombie","description":"Death2271 or Alex helps get the Robbed Zombie Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-robbed-zombie","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":374,"publication_date":"2010-02-25T17:13:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-combo-achievements","changefreq":"weekly","video":[{"title":"2010:E319 - Combo Achievements","description":"BrownMan is back showing you how to pick up 2 achievements in Dante's Inferno. The 200 combo achievement and the 666 combo achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-combo-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":248,"publication_date":"2010-02-25T00:18:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-harsh-language-part-two-refinery","changefreq":"weekly","video":[{"title":"2010:E59 - Aliens Vs Predator - Harsh Language Part Two: Refinery","description":"Geoff and Jack sooth you through finding the 12 hidden Audio Diaries in Chapter Two of AvP.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-harsh-language-part-two-refinery","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd205954-e964-4130-97f2-0b05d0d6fbdf/sm/ep1128.jpg","duration":188,"publication_date":"2010-02-24T23:25:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-private-eye-and-white-knight","changefreq":"weekly","video":[{"title":"2010:E58 - Heavy Rain - Private Eye and White Knight","description":"Gus and Geoff show you how to get the Private Eye and White Knight bronze trophies in Heavy Rain","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-private-eye-and-white-knight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d01b34e0-4859-4973-87da-517ebc036aec/sm/ep1127.jpg","duration":294,"publication_date":"2010-02-24T22:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-good-father","changefreq":"weekly","video":[{"title":"2010:E57 - Heavy Rain - Good Father","description":"Gus and Geoff show you how to get the Good Father bronze trophy in Heavy Rain.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-good-father","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f635cfb-a833-46cd-8a83-3407fdca6442/sm/ep1126.jpg","duration":355,"publication_date":"2010-02-24T22:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-happy-birthday-and-interactive-drama","changefreq":"weekly","video":[{"title":"2010:E56 - Heavy Rain - Happy Birthday and Interactive Drama","description":"Gus and Geoff show you how to get the Happy Birthday and Interactive Drama trophies in Heavy Rain","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-happy-birthday-and-interactive-drama","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3740af4c-c28c-4781-8b7f-77218fc5c29d/sm/ep1125.jpg","duration":207,"publication_date":"2010-02-24T03:14:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hoth-mission-pack-dlc","changefreq":"weekly","video":[{"title":"2010:E55 - Star Wars: The Force Unleashed - Hoth Mission Pack DLC","description":"Jack and Geoff cut open some wampas and get cozy for this guide of the new DLC for Star Wars: The Force Unleashed. Journey in to Hoth with us, won't you","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hoth-mission-pack-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b8a72e6-84fe-45d8-8ad6-1d43b80bf1c2/sm/ep1124.jpg","duration":445,"publication_date":"2010-02-24T00:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-harsh-language-part-one-the-colony","changefreq":"weekly","video":[{"title":"2010:E54 - Aliens Vs Predator - Harsh Language Part One: The Colony","description":"Geoff and Jack sooth you through finding the 15 hidden Audio Diaries in Chapter One of AvP.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-harsh-language-part-one-the-colony","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c960bdd5-32f2-4870-9bed-4fd5634c5809/sm/ep1123.jpg","duration":231,"publication_date":"2010-02-23T21:50:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-all-weapon-upgrades","changefreq":"weekly","video":[{"title":"2010:E53 - Bioshock 2 - All Weapon Upgrades","description":"Jack and Geoff stroll through Rapture and pick up every single weapon upgrade. They also get two fancy achievements while they are at it. Aren't you excited","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-all-weapon-upgrades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/178ae727-0fe1-4645-b228-8e121c46e2b8/sm/ep1122.jpg","duration":247,"publication_date":"2010-02-22T23:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bonfire-of-the-vanities-dlc","changefreq":"weekly","video":[{"title":"2010:E52 - Assassin's Creed 2 - Bonfire of the Vanities DLC","description":"Jack and Geoff go back to Florence for the \"Bonfire of the Vanities\" DLC for Assassin's Creed 2. No achievements, but lots of death.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bonfire-of-the-vanities-dlc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b476450-4813-42cc-8a2c-a2f5aef7690e/sm/ep1121.jpg","duration":334,"publication_date":"2010-02-22T17:57:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-night-terrors-achievement","changefreq":"weekly","video":[{"title":"2010:E318 - Night Terrors Achievement","description":"Geoff and Jack show you how to beat Lost in Nightmares on Professional, earning you the Night Terrors Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-night-terrors-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77af7095-c0f1-47ea-bb4a-d1cdded6cb7a/sm/ep1120.jpg","duration":262,"publication_date":"2010-02-19T23:11:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-kung-fu-fighting-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E317 - Kung Fu Fighting Achievement Guide","description":"Geoff and Jack show you how to get the elusive Kung Fu Fighting Achievement in Resident Evil 5's new DLC, Lost in Nightmares.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-kung-fu-fighting-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a3f18acf-4112-46c0-830c-03ff962235df/sm/ep1119.jpg","duration":148,"publication_date":"2010-02-18T20:30:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ferrari-dlc-walkthrough","changefreq":"weekly","video":[{"title":"2010:E51 - Need for Speed: Shift - Ferrari DLC Walkthrough","description":"Jack and Geoff walk you through the most recent DLC for Need for Speed: Shift. PIck up a whole litter of Ferrari's and go vrroooom! This new DLC also adds a few more achievements, so check out that info here!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ferrari-dlc-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccfbfe14-6392-4194-a5c8-983e416ee708/sm/ep1118.jpg","duration":97,"publication_date":"2010-02-18T00:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-on-site-preview","changefreq":"weekly","video":[{"title":"2010:E50 - Battlefield: Bad Company 2 - On Site Preview","description":"Jack flies out to San Francisco to check out Battlefield Bad Company 2 and talk with producer Gordon Van Dyke about the multiplayer aspects of the game. Shamu is also involved in this video.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-on-site-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99add79c-cdcd-478a-9cbf-089e79f2c642/sm/ep1117.jpg","duration":220,"publication_date":"2010-02-17T23:42:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lost-in-nightmares-wish-upon-a-star-guide","changefreq":"weekly","video":[{"title":"2010:E316 - Lost in Nightmares - Wish Upon A Star Guide","description":"Geoff and Jack show you where to find the 18 hidden coins in Lost in Nightmares to nab the Wish Upon A Star Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lost-in-nightmares-wish-upon-a-star-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89533f11-deb7-4397-a241-32dcb6d08693/sm/ep1116.jpg","duration":269,"publication_date":"2010-02-17T22:04:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-8-persephone","changefreq":"weekly","video":[{"title":"2010:E49 - Rapture Historian Part 8 - Persephone","description":"Geoff and to a lesser extent, Jack, show you how to get the remaining Audio Logs scattered about Persephone in Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-8-persephone","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/889f6a3e-35f8-45dc-a093-12c489b44749/sm/ep1115.jpg","duration":310,"publication_date":"2010-02-16T21:56:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-counterattack-guide","changefreq":"weekly","video":[{"title":"2010:E315 - Counterattack Guide","description":"Geoff and Jack show you one way to get the Counterattack Achievement in Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-counterattack-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ed921bd-6bac-482d-9e1a-931fd1114af2/sm/ep1114.jpg","duration":91,"publication_date":"2010-02-16T20:45:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-goes-to-x10","changefreq":"weekly","video":[{"title":"2010:E314 - Achievement Hunter goes to X10","description":"Jack makes his way out to San Francisco to attend Microsoft's X10 event. Included in this video are:\r\n\r\nInterviews with Chet Faliszek, writer of Left 4 Dead 2, Brian Jarrard, Community Manager (Ske7ch) for Bungie, Peter Connelly, Executive Producer of Crackdown 2 and Shin Ohara, Co-Producer of Dead Rising 2.\r\n\r\nFree alcohol!\r\n\r\nA Peter Molineux sighting!\r\n\r\nFree alcohol!\r\n\r\nPaddle chainsaws!\r\n\r\nAnd we get an EXCLUSIVE tidbit from the upcoming Halo: Reach. Enjoy!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-goes-to-x10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b54cdce1-3933-46e0-a6fd-807c15eafbc2/sm/ep1113.jpg","duration":549,"publication_date":"2010-02-15T22:24:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bioshock-2-all-weapon-upgrades","changefreq":"weekly","video":[{"title":"2010:E48 - Bioshock 2: All Weapon Upgrades","description":"Knuckles shows us where to find all 14 Power to the People weapon upgrades throughout Rapture","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bioshock-2-all-weapon-upgrades","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ef78391-2ddc-4b42-8a45-25b1bfcf7a9b/sm/ep1112.jpg","duration":215,"publication_date":"2010-02-14T03:49:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-7-fontaine-futuristics","changefreq":"weekly","video":[{"title":"2010:E47 - Rapture Historian Part 7 - Fontaine Futuristics","description":"Geoff shows you where to find all of the hidden audio logs in Level Seven of Bioshock 2: Fontaine Futuristics.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-7-fontaine-futuristics","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/063132f8-287a-426a-9e62-7bf8773d055a/sm/ep1111.jpg","duration":290,"publication_date":"2010-02-13T00:40:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-6-dionysus-park","changefreq":"weekly","video":[{"title":"2010:E46 - Rapture Historian Part 6 - Dionysus Park","description":"Geoff and Jack show you where to find the hidden Audio Logs in the Dionysus Park level of Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-6-dionysus-park","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/32798178-2e38-4d48-a14b-cca86e4893b2/sm/ep1109.jpg","duration":260,"publication_date":"2010-02-11T22:46:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-no-one-left-behind","changefreq":"weekly","video":[{"title":"2010:E45 - Mass Effect 2 - No One Left Behind","description":"Gus and Geoff talk you through the No One Left Behind achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-no-one-left-behind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c6e13a66-7f67-408f-a476-894a252f1996/sm/ep1108.jpg","duration":237,"publication_date":"2010-02-11T21:22:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-5-siren-alley","changefreq":"weekly","video":[{"title":"2010:E44 - Rapture Historian Part 5 - Siren Alley","description":"Jack and Geoff continue wandering through Rapture picking up audio logs. This is the walkthrough for the fifth chapter, Siren Alley. Siren alleys are the loudest kind of alleys.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-5-siren-alley","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/acfd70d3-6302-4fa6-b4b9-935347d03876/sm/ep1107.jpg","duration":339,"publication_date":"2010-02-11T15:35:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-3-ryan-amusements","changefreq":"weekly","video":[{"title":"2010:E43 - Rapture Historian Part 3 - Ryan Amusements","description":"Geoff and Jack show you where to find the 19 hidden Audio Logs in the Ryan Amusements level of Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-3-ryan-amusements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc0620c5-a586-4a5f-91b9-0789ad926477/sm/ep1106.jpg","duration":287,"publication_date":"2010-02-11T01:43:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-4-paupers-drop","changefreq":"weekly","video":[{"title":"2010:E42 - Rapture Historian Part 4 - Pauper's Drop","description":"Geoff and Jack show you where to find the 20 hidden Audio Logs in the Pauper's Drop level of Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-4-paupers-drop","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d019acde-4473-4d27-8201-ea429859da7c/sm/ep1105.jpg","duration":339,"publication_date":"2010-02-10T23:44:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bioshock-2-rapture-historian-16-34-ryan-amusements","changefreq":"weekly","video":[{"title":"2010:E41 - Bioshock 2: Rapture Historian: 16-34 Ryan Amusements","description":"Knuckles goes through all 19 Audio logs found in Ryan Amusements","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bioshock-2-rapture-historian-16-34-ryan-amusements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e415d823-357a-4042-963c-7183f5c9ed99/sm/ep1104.jpg","duration":207,"publication_date":"2010-02-10T17:09:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bioshock-2-5-achievements","changefreq":"weekly","video":[{"title":"2010:E313 - Bioshock 2: 5 Achievements","description":"Knuckles brings the plasmid pain with not one, not two, but 5 Achievements covered in a single, bite-sized video. Featured bleep bloops include Prolific Hacker, Master Protector, 9-Irony, Unbreakable, and Bought a Slot. Which is NOT Bought a Slut.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bioshock-2-5-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b956abaf-7d59-4d61-a5bd-fab6e830dc6f/sm/ep1103.jpg","duration":253,"publication_date":"2010-02-10T07:54:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bioshock-2-rapture-historian-8-15-atlantic-express-depot","changefreq":"weekly","video":[{"title":"2010:E40 - Bioshock 2: Rapture Historian: 8-15 Atlantic Express Depot","description":"Knuckles shows us where to find all EIGHT(!) audio logs in Atlantic Express Depot. Don't be fooled by cheap imititators trying to shortchange you on your logs. Go with the sure thing and don't miss a single entry.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bioshock-2-rapture-historian-8-15-atlantic-express-depot","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1b34cc4-3709-403f-92f8-31f654f367a2/sm/ep1102.jpg","duration":108,"publication_date":"2010-02-10T03:54:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-2-the-atlantic-express","changefreq":"weekly","video":[{"title":"2010:E39 - Rapture Historian Part 2 - The Atlantic Express","description":"Geoff and Jack show you where to find the seven hidden Audio Logs in the Atlantic Express level of Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-2-the-atlantic-express","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/56807f08-b611-47a5-9623-1760f8a48005/sm/ep1101.jpg","duration":120,"publication_date":"2010-02-10T01:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rapture-historian-part-1-adonis-luxury-resort","changefreq":"weekly","video":[{"title":"2010:E38 - Rapture Historian Part 1 - Adonis Luxury Resort","description":"Geoff and Jack show you where to find the six hidden Audio Logs in the Adonis Luxury Resort level of Bioshock 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rapture-historian-part-1-adonis-luxury-resort","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/43c79a2c-4d8b-4847-adb6-91c7a36f6888/sm/ep1100.jpg","duration":100,"publication_date":"2010-02-10T01:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bioshock-2-rapture-historian-1-7-adonis-luxury-resort","changefreq":"weekly","video":[{"title":"2010:E37 - Bioshock 2: Rapture Historian: 1-7 Adonis Luxury Resort","description":"Knuckles shows us where to find the all 7 audio logs in the first area, Adonis Luxury Resort.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bioshock-2-rapture-historian-1-7-adonis-luxury-resort","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e760abf7-d3d1-4e98-9a52-a12306c3480a/sm/ep1099.jpg","duration":123,"publication_date":"2010-02-09T22:54:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bioshock-2-distance-hacker-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E312 - Bioshock 2: Distance Hacker Achievement Guide","description":"Knuckles returns from the depths of Rapture to show you the quick and easy Distance Hacker Achievement while giving some useful tips on the related Master Hacker Achievement","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bioshock-2-distance-hacker-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b9e8adf-6804-470a-a283-604a2e7a5d91/sm/ep1098.jpg","duration":56,"publication_date":"2010-02-09T20:34:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-scannable-anomaly-planets-part-two","changefreq":"weekly","video":[{"title":"2010:E36 - Mass Effect 2 - \"Scannable Anomaly\" planets Part Two","description":"Geoff and Gus show you the remaining eight scannable planets in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-scannable-anomaly-planets-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d15822-8cea-4448-8c61-6aef46a4f9be/sm/ep1097.jpg","duration":214,"publication_date":"2010-02-08T21:19:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-limbo-item-walkthrough","changefreq":"weekly","video":[{"title":"2010:E35 - Dante's Inferno - Limbo Item Walkthrough","description":"Jack, Geoff and Griffon walk you through the first level of Hell in Dante's Inferno. This guide includes all of the collectible items in Limbo: Relics, Damned, Beatrice Stones and Judas coins. Hope you are hungry!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-limbo-item-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b39be2d4-e160-4f1a-9da4-09c1a5baf1d8/sm/ep1096.jpg","duration":249,"publication_date":"2010-02-08T17:46:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-beatrice-stones","changefreq":"weekly","video":[{"title":"2010:E34 - Dante's Inferno - Beatrice Stones","description":"Jack and Geoff go stone grabbing in Dante's Inferno and pick up two achievements along the way.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-beatrice-stones","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c96cfa77-c35a-4b1c-be03-2625d5af71ab/sm/ep1095.jpg","duration":91,"publication_date":"2010-02-06T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-judas-coins-6-10","changefreq":"weekly","video":[{"title":"2010:E33 - Dante's Inferno - Judas Coins 6-10","description":"Jack and Geoff continue their gathering ways and pick up the 6th through 10th Judas coins in Dante's Inferno.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-judas-coins-6-10","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4d7fafa7-b166-4ea5-8e52-d5b0068016b0/sm/ep1094.jpg","duration":129,"publication_date":"2010-02-06T00:17:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-scannable-anomaly-planets-part-one","changefreq":"weekly","video":[{"title":"2010:E32 - Mass Effect 2 - \"Scannable Anomaly\" Planets Part One","description":"Geoff and Gus show you the first nine scannable planets in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-scannable-anomaly-planets-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59c919ca-c86f-44ff-8266-1421606ab085/sm/ep1093.jpg","duration":266,"publication_date":"2010-02-05T17:49:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-judas-coins-1-5","changefreq":"weekly","video":[{"title":"2010:E31 - Dante's Inferno - Judas Coins 1-5","description":"Jack and Geoff stumble their way through Hell and pick up the first 5 Judas coins (out of 30) in Dante's Inferno. Stay tuned for the other 25, coming soon!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-judas-coins-1-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/413fa3c1-c171-4ad0-b13f-12673892c3c4/sm/ep1092.jpg","duration":133,"publication_date":"2010-02-05T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sentence-the-judge","changefreq":"weekly","video":[{"title":"2010:E30 - Dante's Inferno - Sentence the Judge","description":"Jack and Geoff do a bit of judicial work and pick up the \"Sentence the Judge\" achievement in Dante's Inferno. With this guide, you too can learn how to fight King Minos, also, how to knit!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sentence-the-judge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d863010c-bb76-4217-abf6-551f429572b4/sm/ep1091.jpg","duration":222,"publication_date":"2010-02-04T16:28:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-brawler-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E311 - Brawler Achievement Guide","description":"Geoff and Gus show you an easy place to get the Brawler Achievement in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-brawler-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e452a78c-1006-4417-accf-748d06c3b7ce/sm/ep1090.jpg","duration":91,"publication_date":"2010-02-03T21:49:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-burning-eyes","changefreq":"weekly","video":[{"title":"2010:E29 - Dante's Inferno - Burning Eyes","description":"Jack and Geoff go to Hell! Check out how to pick up the \"Burning Eyes\" achievement in the upcoming Dante's Inferno. Pick up your copy on February 9th.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-burning-eyes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1470ad7b-a7ed-4d9e-ad70-8717f6ba0d2e/sm/ep1088.jpg","duration":81,"publication_date":"2010-02-03T19:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-titan-nebula-guide-and-agent-walkthrough","changefreq":"weekly","video":[{"title":"2010:E310 - Titan Nebula Guide and Agent Walkthrough","description":"Geoff and Gus show you where to find the Titan Nebula and nab the Agent Achievement in the process.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-titan-nebula-guide-and-agent-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9420b4b-d8e8-4462-958a-07ba3690d6c1/sm/ep1087.jpg","duration":199,"publication_date":"2010-02-02T23:13:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sigurds-cradle-and-agent-walkthrough","changefreq":"weekly","video":[{"title":"2010:E28 - Mass Effect 2 - Sigurd's Cradle and Agent Walkthrough","description":"Gus and Geoff show you how to get to Sigurd's Cradle and pick up the Agent achievement on the way","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sigurds-cradle-and-agent-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fbd389c3-c207-48a6-b1fd-aae488e88074/sm/ep1086.jpg","duration":328,"publication_date":"2010-02-02T23:06:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-big-game-hunter-battlemaster-guide","changefreq":"weekly","video":[{"title":"2010:E309 - Big Game Hunter / Battlemaster Guide","description":"Geoff and Gus show you how to get the Big Game Hunter and Battlemaster Achievements in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-big-game-hunter-battlemaster-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7f2af4de-73e3-453d-b27e-253d107d7bf0/sm/ep1085.jpg","duration":197,"publication_date":"2010-02-01T22:26:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-battle-of-forli-dlc-walkthrough","changefreq":"weekly","video":[{"title":"2010:E27 - Assassin's Creed 2 - Battle of Forli DLC Walkthrough","description":"Jack and Geoff take you through the new \"Battle of Forl\" downloadable content for Assassin's Creed 2. Take a look before you pick it up! Italian women are beautiful!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-battle-of-forli-dlc-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/995e864e-1a71-4557-a19d-4ffa5602f5d1/sm/ep1084.jpg","duration":338,"publication_date":"2010-02-01T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-explorer-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E308 - Explorer Achievement Guide","description":"Geoff and Jack explain how to get the confusing \"Explorer\" Achievement in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-explorer-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf49b789-3837-401b-b473-4df4490037fe/sm/ep1083.jpg","duration":105,"publication_date":"2010-01-28T20:29:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-prospector-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E307 - Prospector Achievement Guide","description":"Geoff shows you how to get an easy Achievement in Mass Effect 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-prospector-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37edca44-b504-405d-b35f-c3c087156155/sm/ep1082.jpg","duration":65,"publication_date":"2010-01-28T20:28:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-normandy-crash-site-dog-tag-guide","changefreq":"weekly","video":[{"title":"2010:E306 - Normandy Crash Site Dog Tag Guide","description":"Gus shows you where all 20 dog tags are at the Normandy crash site","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-normandy-crash-site-dog-tag-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cfeaab2b-effc-43f8-bb72-328f2133370f/sm/ep1081.jpg","duration":473,"publication_date":"2010-01-27T22:35:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-downed-but-not-out","changefreq":"weekly","video":[{"title":"2010:E26 - CoD: Modern Warfare 2 - Downed But Not Out","description":"Jack allows Geoff to stab him in the back so he can pick up a quick achievement in Modern Warfare 2!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-downed-but-not-out","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dbbbf9f3-9503-4d4c-bbcd-0970f8ed5980/sm/ep1080.jpg","duration":144,"publication_date":"2010-01-26T16:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-echo-armor-piercing","changefreq":"weekly","video":[{"title":"2010:E25 - Spec Ops - Echo - Armor Piercing","description":"Jack and Geoff finally finish their last Spec Op in Modern Warfare 2. Join them in holding hands while they complete \"Armor Piercing\" and then cry in each other's arms.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-echo-armor-piercing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa4484af-108b-4910-8c30-8a256995c118/sm/ep1079.jpg","duration":199,"publication_date":"2010-01-26T16:35:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-echo-high-explosive","changefreq":"weekly","video":[{"title":"2010:E24 - Spec Ops - Echo - High Explosive","description":"Geoff plays dead while Jack murders some Juggernauts on top of him. Come for the team killing, stay for the dead bad guys. Oh, also enjoy the Spec Op \"High Explosive\" in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-echo-high-explosive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3962e92-dd8e-4d0b-a661-1637d3b311c7/sm/ep1078.jpg","duration":116,"publication_date":"2010-01-26T16:34:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-echo-wetwork","changefreq":"weekly","video":[{"title":"2010:E23 - Spec Ops - Echo - Wetwork","description":"Jack and Geoff can almost see the finishing line in the Spec Ops in Modern Warfare 2. Today they hit up Wetwork and do some slow-mo cappin' of asses.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-echo-wetwork","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd83d242-3129-404e-9623-b955c24f8f58/sm/ep1077.jpg","duration":305,"publication_date":"2010-01-26T16:33:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bookworm-achievement-guide-part-one","changefreq":"weekly","video":[{"title":"2010:E305 - Bookworm Achievement Guide Part One","description":"Geoff and Jack show you where to find the hidden Journals in part one of Dark Void, nabbing the Dear Diary Achievement along the way.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bookworm-achievement-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd116fad-cf54-4674-a882-22da33697c7b/sm/ep1076.jpg","duration":144,"publication_date":"2010-01-25T19:57:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-blue-light-special-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E304 - Blue Light Special Achievement Guide","description":"Geoff and Jack show how to get the Blue Light Special Achievement in Dark Void.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-blue-light-special-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef3d28da-fbcf-49cd-b1cd-14d46ceea58a/sm/ep1075.jpg","duration":76,"publication_date":"2010-01-25T19:56:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-killing-spree-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E303 - Killing Spree Achievement Guide","description":"Geoff and Jack show you the first place to get Killing Spree in Dark Void.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-killing-spree-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/51935fc7-a5e5-481a-a177-b9259ff42bef/sm/ep1074.jpg","duration":96,"publication_date":"2010-01-25T19:55:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-delta-estate-takedown","changefreq":"weekly","video":[{"title":"2010:E22 - Spec Ops - Delta - Estate Takedown","description":"Jack and Geoff totally wreck their Uncle's nice cabin in the woods while rocking out in this Spec Op for Call of Duty: Modern Warfare 2. CHAOS REIGNS!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-delta-estate-takedown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1c0b4a0c-a54e-4be6-8bfc-20c6faa0528a/sm/ep1073.jpg","duration":161,"publication_date":"2010-01-22T23:28:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-delta-acceptable-losses","changefreq":"weekly","video":[{"title":"2010:E21 - Spec Ops - Delta - Acceptable Losses","description":"Geoff and Jack actually do pretty good in the Acceptable Losses Spec Op in Call of Duty: Modern Warfare 2. Even a blind squirrel finds a nut every now and then.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-delta-acceptable-losses","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b97be2b3-b5dd-4263-8845-47de24c5f721/sm/ep1072.jpg","duration":192,"publication_date":"2010-01-22T23:27:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-delta-terminal","changefreq":"weekly","video":[{"title":"2010:E20 - Spec Ops - Delta - Terminal","description":"Geoff and Jack relieve this modern classic starring Tom Hanks while playing Call of Duty: Modern Warfare 2. Follow them as they have a wondrous journey through a terminal in Russia.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-delta-terminal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf6696b5-e741-40cd-b239-6fc26fc9a35f/sm/ep1071.jpg","duration":251,"publication_date":"2010-01-22T17:06:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-delta-wreckage","changefreq":"weekly","video":[{"title":"2010:E19 - Spec Ops - Delta - Wreckage","description":"Jack and Geoff take to the bridge and smash the hell out of some cars in the Wreckage Spec Op in Call of Duty: Modern Warfare 2. Take that Mini-Van!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-delta-wreckage","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/836c3e73-6fa8-468d-9766-135832bd286e/sm/ep1070.jpg","duration":294,"publication_date":"2010-01-22T17:05:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-delta-wardriving","changefreq":"weekly","video":[{"title":"2010:E18 - Spec Ops - Delta - Wardriving","description":"Geoff and Jack met a couple of guys who were up to no good. They started making trouble in their neighborhood. They got in one little fight and then their mamma got scared so she said \"You're moving with your Auntie and Uncle to Bel-Aire!\" Whistled for a cab and when it came near the license plate said \"Fresh\" and there were dice in the mirror. If anything we thought that this cab was rare, but we though \"nah\" forget it, \"Yo Holmes to Bel-Aire.\" Then we got an achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-delta-wardriving","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7087a8a-552b-432f-a1be-159909df1373/sm/ep1069.jpg","duration":394,"publication_date":"2010-01-22T17:05:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-bravo-body-count-v2","changefreq":"weekly","video":[{"title":"2010:E17 - Spec Ops - Bravo - Body Count v2","description":"Jack and Geoff take another shot at Body Count, the Bravo Spec Op from Call of Duty: Modern Warfare 2. The first time took them 16 minutes, they breeze through it here at just under 2. Hooray progress!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-bravo-body-count-v2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6df487d4-d1b6-473f-9a15-8a436547fec6/sm/ep1068.jpg","duration":145,"publication_date":"2010-01-20T21:46:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-alfeim-2-guide","changefreq":"weekly","video":[{"title":"2010:E302 - Alfeim #2 Guide","description":"Finchlynch shows how to beat the second Alfeim in Bayonetta.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-alfeim-2-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85c77369-0616-457b-8ed0-3d5604f5fdd9/sm/ep1067.jpg","duration":252,"publication_date":"2010-01-20T16:02:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-charlie-snatch-and-grab","changefreq":"weekly","video":[{"title":"2010:E16 - Spec Ops - Charlie - Snatch & Grab","description":"Jack and Geoff finally get around to running the Spec Op \"Snatch & Grab\" in Call of Duty: Modern Warfare 2. Brace yourself, this one is a doozy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-charlie-snatch-and-grab","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/71c48666-cf95-4260-8248-14f8ee15abd4/sm/ep1066.jpg","duration":248,"publication_date":"2010-01-18T20:23:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-full-arsenal","changefreq":"weekly","video":[{"title":"2010:E15 - Army of Two: The 40th Day - Full Arsenal","description":"Jack and Geoff poke around Army of Two: The 40th Day and pick up all of the hidden weapon add-ons scattered throughout. It's like the Willy Wonka of ammunition.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-full-arsenal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9567bad9-e994-4836-b4a6-5b2e3a9bc35f/sm/ep1065.jpg","duration":276,"publication_date":"2010-01-15T21:53:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pumpkin-patch-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E301 - Pumpkin Patch Achievement Guide","description":"Geoff and Jack show you an easy and immoral way to get the Pumpkin Patch Achievement in Army of Two: 40th Day.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pumpkin-patch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63f3478b-b236-4531-8d18-b9afa42e1578/sm/ep1064.jpg","duration":72,"publication_date":"2010-01-15T16:47:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-touch-not-a-cat-but-a-glove","changefreq":"weekly","video":[{"title":"2010:E14 - Army of Two: The 40th Day - Touch Not a Cat but a Glove","description":"Jack and Geoff wander around Shanghai shooting at poor defenseless kittens in Army of Two: The 40th Day to pick up the \"Touch Not a Cat, But a Glove\" achievement. What does that even mean","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-touch-not-a-cat-but-a-glove","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/77b794c6-ba28-4ada-9333-a513935a0a3c/sm/ep1063.jpg","duration":165,"publication_date":"2010-01-14T16:59:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-grenadier","changefreq":"weekly","video":[{"title":"2010:E13 - Army of Two: The 40th Day - Grenadier","description":"Jack and Geoff commit a horrible horrible act in order to pick up a measly 10 gamerscore. Watch this guide for \"Grenadier\" in Army of Two: The 40th Day, then weep.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-grenadier","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ea9b05c-6c9d-4f45-b4a8-79a67b544e4e/sm/ep1062.jpg","duration":70,"publication_date":"2010-01-14T16:58:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alfeim-1-walkthrough","changefreq":"weekly","video":[{"title":"2010:E12 - Bayonetta - Alfeim #1 walkthrough","description":"Finchlynch shows us how to beat the first Alfeim in Bayonetta. Only a billion to go!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alfeim-1-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7975d565-7df6-4b5a-a30f-c965e6e4fa0b/sm/ep1061.jpg","duration":290,"publication_date":"2010-01-14T16:01:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hate-monger-scavenger-guide","changefreq":"weekly","video":[{"title":"2010:E300 - Hate Monger, Scavenger Guide","description":"Geoff and Jack stumble their way through an Achievement guide for Hate Monger and Scavenger.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hate-monger-scavenger-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e6ea08d-42a6-4c6a-8817-98b7910468c7/sm/ep1060.jpg","duration":147,"publication_date":"2010-01-13T21:27:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-truth-is-right-here","changefreq":"weekly","video":[{"title":"2010:E11 - Army of Two: The 40th Day - The Truth Is Right Here","description":"Jack and Geoff show you the location of every single freaking radio in Army of Two: The 40th Day and pick up \"The Truth Is Right Here\" achievement in the process. So many radios, so little time.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-truth-is-right-here","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df4b87a8-d374-40da-9785-4fd4caea16de/sm/ep1059.jpg","duration":276,"publication_date":"2010-01-13T00:44:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-rock-paper-scissors-guide","changefreq":"weekly","video":[{"title":"2010:E299 - Rock, Paper, Scissors Guide","description":"Geoff and Jack show you how to get a silly little Achievement in Ao2: 40th Day.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-rock-paper-scissors-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccb11bf5-cd82-4046-bbbe-ddd507129b83/sm/ep1058.jpg","duration":73,"publication_date":"2010-01-12T23:23:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mask-creator-help","changefreq":"weekly","video":[{"title":"2010:E10 - Army of Two: The 40th Day - Mask Creator Help","description":"Jack shows you how to get your custom-created mask from the Army of Two website on to your character in the game itself. Fascinating! Also, if you want to get the official Achievement Hunter mask for yourself, follow this link: http://tinyurl.com/ahmask","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mask-creator-help","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7d39f3e-c164-4c82-ac6e-66083c672a8b/sm/ep1057.jpg","duration":120,"publication_date":"2010-01-12T19:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lustitia-giver-of-life-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E298 - Lustitia, Giver of Life Achievement Guide","description":"Geoff and Jack show how to beat Lustitia, and get the Lustitia, Giver of Life Achievement in Bayonetta.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lustitia-giver-of-life-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f78f2ebe-25da-4fc7-a35a-25de75b52234/sm/ep1056.jpg","duration":281,"publication_date":"2010-01-11T16:02:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-temperantia-manipulator-of-wind-guide","changefreq":"weekly","video":[{"title":"2010:E297 - Temperantia, Manipulator Of Wind Guide","description":"Geoff and Jack show how to beat Temerantia, to get the Temperantia, Manipulator Of Wind Guide Achievement in Bayonetta","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-temperantia-manipulator-of-wind-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44129905-66cf-450d-a37b-854659e665d0/sm/ep1055.jpg","duration":330,"publication_date":"2010-01-11T16:00:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-naughty-tentacles-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E296 - Naughty Tentacles Achievement Guide","description":"Geoff and Jack show how to get the \"Naughty Tentacles\" Achievement in Bayonetta.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-naughty-tentacles-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/72d46741-4493-48bc-8656-72f3231493f7/sm/ep1054.jpg","duration":164,"publication_date":"2010-01-11T15:58:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sapientia-controller-of-seas-guide","changefreq":"weekly","video":[{"title":"2010:E295 - Sapientia, Controller Of Seas Guide","description":"Geoff and Jack show how to beat Sapientia, to get the Sapientia, Controller Of Seas Achievement in Bayonetta.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sapientia-controller-of-seas-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88b290fd-937b-4b96-8cfb-ee2e4728c52f/sm/ep1053.jpg","duration":267,"publication_date":"2010-01-11T15:50:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-record-fanatic-guide","changefreq":"weekly","video":[{"title":"2010:E294 - Record Fanatic Guide","description":"Geoff shows where to get records 4-7 (and explains the two extras) to get the Record Fanatic Guide.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-record-fanatic-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/da96c1e1-3c7a-4abd-8edb-903ca694d0f3/sm/ep1052.jpg","duration":290,"publication_date":"2010-01-11T15:09:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alfheim-locations-13-21","changefreq":"weekly","video":[{"title":"2010:E9 - Bayonetta - Alfheim Locations 13 - 21","description":"Jack and Geoff show you the locations of Alfheim's #13 thru #21 in Bayonetta. You must complete the levels after you find them, and once you get all 21 you should get \"The Path To The Heavens\" achievement. Good luck!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alfheim-locations-13-21","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/54da8a1d-46fb-481b-aaa2-f6a1441db0b4/sm/ep1051.jpg","duration":236,"publication_date":"2010-01-08T19:34:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-open-air-parking","changefreq":"weekly","video":[{"title":"2010:E8 - Darksiders - Open Air Parking","description":"Gus shows you how to get the Open Air Parking achievement in Darksiders","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-open-air-parking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/10bfad9a-ebe8-413e-8448-590d2e431f52/sm/ep1050.jpg","duration":114,"publication_date":"2010-01-07T18:29:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-touch-and-it-will-really-hurt-nice-and-relaxed","changefreq":"weekly","video":[{"title":"2010:E7 - Bayonetta - Touch And It Will (Really) Hurt, Nice And Relaxed","description":"Jack and Geoff try to touch Bayonetta and get really hurt in this achievement guide. Included are \"Touch And It Will Hurt,\" \"Touch And It Will Really Hurt,\" and \"Nice And Relaxed.\" So many achieveables!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-touch-and-it-will-really-hurt-nice-and-relaxed","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a1969c35-b45a-43e7-9740-349d4e698dc3/sm/ep1049.jpg","duration":95,"publication_date":"2010-01-06T23:12:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tread-not-so-softly-higher-and-higher","changefreq":"weekly","video":[{"title":"2010:E6 - Bayonetta - Tread Not So Softly, Higher & Higher","description":"Jack and Geoff show you how to pick up the \"Tread Not So Softly\" and \"Higher And Higher\" achievements in the game Bayonetta. Did you know the masculine version of \"Bayonetta\" is actually \"Bayonetto\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tread-not-so-softly-higher-and-higher","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/12fece2a-2dba-4cbe-b84f-5f6f58e5636f/sm/ep1048.jpg","duration":86,"publication_date":"2010-01-06T23:11:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alfheim-locations-1-12","changefreq":"weekly","video":[{"title":"2010:E5 - Bayonetta - Alfheim Locations 1 - 12","description":"Geoff and Jack guide you through Bayonetta picking up the first twelve Alfheims. Is Alfheim the German version of the alien from Melmac","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alfheim-locations-1-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2d9a90b-4db0-45b6-a52e-ee68ba848316/sm/ep1047.jpg","duration":266,"publication_date":"2010-01-06T23:09:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-record-collector-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E293 - Record Collector Achievement Guide","description":"Geoff and Jack show you where to find the first three records in Bayonetta, to get the Record Collector Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-record-collector-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b1181fa-4c2f-4e82-981c-b02f8620d62f/sm/ep1046.jpg","duration":183,"publication_date":"2010-01-05T23:01:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fortitudo-bringer-of-flame-achievement-guide","changefreq":"weekly","video":[{"title":"2010:E292 - Fortitudo, Bringer of Flame Achievement Guide","description":"Geoff and Jack show you how to beat Fortitudo, and nab the Fortitudo, Bringer of Flame Achievement oin Bayonetta.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fortitudo-bringer-of-flame-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/030f511c-c832-46d3-b464-6caeae729313/sm/ep1045.jpg","duration":266,"publication_date":"2010-01-05T22:34:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-just-in-the-nick-of-time","changefreq":"weekly","video":[{"title":"2010:E3 - Bayonetta - Just In The Nick of Time","description":"Jack and Geoff grab the \"Just in the Nick of Time\" achievement in Bayonetta. Geoff also tries to fashion his hair into a t-shirt.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-just-in-the-nick-of-time","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/909d9436-cfcd-47f1-88f2-cd9a210898fe/sm/ep1043.jpg","duration":69,"publication_date":"2010-01-05T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-you-want-to-touch-me-and-nice-try","changefreq":"weekly","video":[{"title":"2010:E4 - Bayonetta - You Want to Touch Me? & Nice Try","description":"Jack and Geoff do their best to touch Bayonetta and pick up these witch-time related achievements. Included are \"You Want to Touch Me\" and \"Nice Try.\" Nice try indeed.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-you-want-to-touch-me-and-nice-try","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63f1189f-076d-47ad-bb43-fd1919110e70/sm/ep1044.jpg","duration":60,"publication_date":"2010-01-05T17:04:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-charlie-hidden","changefreq":"weekly","video":[{"title":"2010:E2 - Spec Ops - Charlie - Hidden","description":"Jack and Geoff make another run through Spec Ops in Call of Duty: Modern Warfare 2. This time they hit up the Charlie Op \"Hidden.\" Enjoy watching them stumble their way through the mission.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-charlie-hidden","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7ecc837e-7d24-4e40-85d6-ec49576975dd/sm/ep1042.jpg","duration":227,"publication_date":"2010-01-04T23:17:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-bravo-big-brother","changefreq":"weekly","video":[{"title":"2010:E1 - Spec Ops - Bravo - Big Brother","description":"Geoff pretends to be Jack's savior in this round of Spec Ops in Call of Duty: Modern Warfare 2. Together they hit up the Bravo Op, \"Big Brother.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-bravo-big-brother","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8e65a111-fca0-4bbc-bfa4-ebe841411942/sm/ep1041.jpg","duration":335,"publication_date":"2010-01-01T20:55:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mad-moxxi-underdome-riot-walkthrough","changefreq":"weekly","video":[{"title":"2009:E224 - Mad Moxxi Underdome Riot Walkthrough","description":"Gus shows you what's new with Borderlands' latest DLC","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mad-moxxi-underdome-riot-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1494f3d3-0e10-4d61-a02d-ede8a3ad495e/sm/ep1040.jpg","duration":404,"publication_date":"2009-12-31T23:24:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-serious-complex-guide","changefreq":"weekly","video":[{"title":"2009:E291 - Serious Complex Guide","description":"Geoff and Jack show you how to get the Serious Complex Achievement in Shadow Complex.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-serious-complex-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2edf37be-f32c-40ae-b6f9-3e0cdbee08ad/sm/ep1036.jpg","duration":126,"publication_date":"2009-12-30T19:27:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-bravo-body-count","changefreq":"weekly","video":[{"title":"2009:E223 - Spec Ops - Bravo - Body Count","description":"Jack and Geoff head for a Taco Taco in the \"Body Count\" Spec Op in Call of Duty: Modern Warfare 2. Geoff goes for the nachos while Jack downs a burrito.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-bravo-body-count","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc497e76-b06c-4381-8e86-4ccc28fd5240/sm/ep1035.jpg","duration":141,"publication_date":"2009-12-29T23:57:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-piggyback","changefreq":"weekly","video":[{"title":"2009:E222 - Piggyback","description":"Geoff and Jack relive a simpler time while picking up the \"Piggyback\" achievement in TrialsHD. Oh youth.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-piggyback","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/39024e6a-0a80-484e-8fad-5ac4fbcb38a0/sm/ep1033.jpg","duration":91,"publication_date":"2009-12-28T23:59:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-no-deal","changefreq":"weekly","video":[{"title":"2009:E221 - No Deal","description":"Jack and Geoff (with cameos by Gus and Burnie) pick up the \"No Deal\" achievement in TrialsHD. Howie Mandel would be proud.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-no-deal","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3384c3e-0b2d-4abb-a349-09ab437d6fba/sm/ep1032.jpg","duration":112,"publication_date":"2009-12-28T23:59:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-look-ma-i-can-fly","changefreq":"weekly","video":[{"title":"2009:E220 - Look Ma, I Can Fly!","description":"Jack and Geoff learn to fly and pick up the \"Look Ma, I can fly!\" achievement in TrialsHD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-look-ma-i-can-fly","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4257dae9-421e-4066-b1d6-99112a7b0def/sm/ep1031.jpg","duration":74,"publication_date":"2009-12-28T23:57:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-army-of-two-the-40th-day-preview","changefreq":"weekly","video":[{"title":"2009:E219 - Army of Two: The 40th Day Preview","description":"Jack flies around the world to talk with some of the folks behind EA's upcoming Army of Two: The 40th Day. Starting in Seattle and ending in Montreal, Jack talks with some producers and gets some hands on time. Awesome!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-army-of-two-the-40th-day-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b652701-10fb-4afd-98f2-8b21f88d5a89/sm/ep1030.jpg","duration":338,"publication_date":"2009-12-24T03:03:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-charlie-time-trial","changefreq":"weekly","video":[{"title":"2009:E218 - Spec Ops - Charlie - Time Trial","description":"Geoff and Jack hit the slopes again and put the pedal to the metal in Time Trial, a Charlie Spec Op in Modern Warfare 2. Spoiler alert: Jack wins.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-charlie-time-trial","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c64c2f5-ac02-452d-b211-c8901ed3a1ce/sm/ep1029.jpg","duration":102,"publication_date":"2009-12-23T23:07:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-bravo-race","changefreq":"weekly","video":[{"title":"2009:E217 - Spec Ops - Bravo - Race","description":"Jack and Geoff hit the slopes for some funtime adventures on snowmobiles! Enjoy this video from the Bravo Spec Op \"Race\" in Call of Duty: Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-bravo-race","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/28f755dd-9623-4923-b283-6fce6f36ccf1/sm/ep1028.jpg","duration":95,"publication_date":"2009-12-23T23:05:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-charlie-breach-and-clear","changefreq":"weekly","video":[{"title":"2009:E216 - Spec Ops - Charlie - Breach & Clear","description":"Jack and Geoff stumble their way through the Breach and Clear stage of Call of Duty: Modern Warfare 2 Spec Ops. You will probably do better than them.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-charlie-breach-and-clear","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1088668c-27c6-4037-8082-b6a153481d9d/sm/ep1027.jpg","duration":153,"publication_date":"2009-12-22T16:35:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-bravo-bomb-squad","changefreq":"weekly","video":[{"title":"2009:E215 - Spec Ops - Bravo - Bomb Squad","description":"Jack and Geoff drop some knowledge and defuse some bombs in the Spec Ops level, Bomb Squad in Call of Duty: Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-bravo-bomb-squad","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/092e2cec-1e38-4e8c-bac6-98fa015481be/sm/ep1026.jpg","duration":246,"publication_date":"2009-12-21T22:46:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-treasure-81-100","changefreq":"weekly","video":[{"title":"2009:E214 - Treasure 81-100","description":"Gus' final video in Uncharted 2 showing you the remaining treasure locations.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-treasure-81-100","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98db01d5-247a-4268-afcc-825a53aa2848/sm/ep1025.jpg","duration":507,"publication_date":"2009-12-21T16:44:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-treasure-61-80","changefreq":"weekly","video":[{"title":"2009:E213 - Treasure 61-80","description":"Gus shows you where treasures 61 through 80 are in Uncharted 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-treasure-61-80","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf0621df-04ff-4cae-b25c-30d84eeeef98/sm/ep1024.jpg","duration":471,"publication_date":"2009-12-21T16:40:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-treasure-41-60","changefreq":"weekly","video":[{"title":"2009:E212 - Treasure 41-60","description":"Gus continues his quest for treasure, this time highlighting the locations of treasures 41-60","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-treasure-41-60","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7771d2a4-6229-4c56-8dbd-560f3c7856fd/sm/ep1023.jpg","duration":483,"publication_date":"2009-12-21T16:35:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-burning-sensation-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E290 - Burning Sensation Achievement Guide","description":"Geoff shows a quick and easy way to get the Burning Sensation Achievement in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-burning-sensation-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8a25a0e-cadd-45c9-9ad7-7f7d3879981d/sm/ep1022.jpg","duration":165,"publication_date":"2009-12-18T20:55:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-club-dead-chain-of-command","changefreq":"weekly","video":[{"title":"2009:E211 - Club Dead, Chain of Command","description":"Geoff explains the requirements for getting the Club Dead Achievement, and throws in Chain of Command for the hell of it.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-club-dead-chain-of-command","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef158868-c4c3-47cf-8357-299a4f79de4c/sm/ep1021.jpg","duration":209,"publication_date":"2009-12-18T15:10:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-iknimaya-clean-sweep-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E289 - Iknimaya Clean Sweep Achievement Guide","description":"Geoff give some tips for getting the Iknimaya Clean Sweep Achievement in Avatar.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-iknimaya-clean-sweep-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/866926cf-71d0-4b67-baad-5355ea68ac12/sm/ep1020.jpg","duration":124,"publication_date":"2009-12-16T21:16:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-quick-contraband-guide","changefreq":"weekly","video":[{"title":"2009:E288 - Quick Contraband Guide","description":"Geoff shows a quick way to earn some extra contraband in The Saboteur.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-quick-contraband-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3751660d-cd95-4ac8-bfd2-1e9732f33764/sm/ep1019.jpg","duration":178,"publication_date":"2009-12-14T20:04:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-eiffel-tower-achievements","changefreq":"weekly","video":[{"title":"2009:E287 - Eiffel Tower Achievements","description":"Geoff and Jack pick up a couple of achievements around the Eiffel Tower in Saboteur. They grab Top o' The World and then High Diver. Magnifique!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-eiffel-tower-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3d8b5b74-95c3-4c3e-b40e-7c2f992f531a/sm/ep1018.jpg","duration":254,"publication_date":"2009-12-11T22:53:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chain-smoker","changefreq":"weekly","video":[{"title":"2009:E210 - Chain Smoker","description":"Jack and Geoff show you how to get black lung and the Chain Smoker achievement in Saboteur.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chain-smoker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2032192-5a50-42f7-b57b-961cf661cf36/sm/ep1017.jpg","duration":75,"publication_date":"2009-12-11T22:52:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-master-of-disguise-no-witness-guide","changefreq":"weekly","video":[{"title":"2009:E286 - Master of Disguise, No Witness Guide","description":"Geoff and Jack show to get the No Witnesses and Master of Disguise Achievements in The Saboteur.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-master-of-disguise-no-witness-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66d36935-184c-4fdc-98ed-d3b1c569ff5b/sm/ep1016.jpg","duration":227,"publication_date":"2009-12-09T23:20:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pigeon-parfait","changefreq":"weekly","video":[{"title":"2009:E209 - Pigeon Parfait","description":"Geoff and Jack go pigeon huntin' to pick up the Pigeon Parfait achievement in Saboteur.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pigeon-parfait","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea667bfb-3ebb-4d94-b0ae-fa8bb56b338c/sm/ep1015.jpg","duration":68,"publication_date":"2009-12-09T23:13:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-white-dots-map-help","changefreq":"weekly","video":[{"title":"2009:E208 - White Dots Map Help","description":"Jack and Geoff show you a painless way to find all of the hidden items in the world of Saboteur.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-white-dots-map-help","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/11a1eb3d-05dd-42b5-8e2d-e0431142c8be/sm/ep1014.jpg","duration":63,"publication_date":"2009-12-09T19:55:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-you-choose-the-wrong-friends-guide","changefreq":"weekly","video":[{"title":"2009:E284 - You Choose the Wrong Friends Guide","description":"Burnie and special guest JD (Burnie's 7 year old son) show you how to pick up the \"You Choose the Wrong Friends.\" achievement in Lego Indiana Jones 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-you-choose-the-wrong-friends-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05e7f5bb-5d51-42dc-82a9-0adff779a337/sm/ep1012.jpg","duration":172,"publication_date":"2009-12-08T19:45:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-quick-and-the-dead-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E283 - The Quick and the Dead Achievement Guide","description":"Geoff and Jack show you an easy way to get the \"Quick and the Dead\" Achievement in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-quick-and-the-dead-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e12d1775-7dfd-4f63-9bea-b66102b2bb73/sm/ep1011.jpg","duration":111,"publication_date":"2009-12-07T23:11:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gunslinger-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E282 - Gunslinger Achievement Guide","description":"Geoff and Jack show you how to get the Gunslinger Achievement on the Pathfinder map in the Xbox Live Arcade game, Call of Duty Classic.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gunslinger-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ff2a252-105f-4dd5-8122-be413d40862b/sm/ep1010.jpg","duration":110,"publication_date":"2009-12-07T23:08:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-shock-jock-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E281 - Shock Jock Achievement Guide","description":"Geoff and Jeff and Andrew show how to get the Shock Jock Achievement quickly in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-shock-jock-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8228323d-c329-45af-89b0-859274235f1e/sm/ep1009.jpg","duration":121,"publication_date":"2009-12-04T20:27:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-beat-the-rush-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E280 - Beat the Rush Achievement Guide","description":"Geoff, Jeff, and Andrew show and easy way to get the \"Beat the Rush\" Achievement in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-beat-the-rush-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ac57b1ec-9bf0-4d19-bc59-d9ef3c7d0d69/sm/ep1008.jpg","duration":216,"publication_date":"2009-12-04T17:26:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pea-shooter-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E279 - Pea Shooter Achievement Guide","description":"Geoff shows how to get the Pea Shooter Achievement in Call of Duty: Classic, for XBL Arcade.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pea-shooter-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c62bf538-8ba0-4d22-a969-504decd2254b/sm/ep1007.jpg","duration":168,"publication_date":"2009-12-03T23:16:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-room-in-dark-carnival","changefreq":"weekly","video":[{"title":"2009:E207 - Hidden Room in Dark Carnival","description":"Geoff and Andrew show you how to access a hidden room in Dark Carnival, similar to the Jesus Room in the original Left 4 Dead.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-room-in-dark-carnival","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d86b4536-3d02-4289-80d3-49715287f694/sm/ep1006.jpg","duration":186,"publication_date":"2009-12-02T22:08:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sob-story-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E278 - Sob Story Achievement Guide","description":"Geoff shows how to get the Sob Story Achievement in L4D2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sob-story-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cd75394-a828-4ed3-ae42-a057279af1ed/sm/ep1005.jpg","duration":225,"publication_date":"2009-12-02T20:33:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-violence-in-silence-guide","changefreq":"weekly","video":[{"title":"2009:E277 - Violence in Silence Guide","description":"Geoff shows how to get the Violence in Silence Achievement in L4D2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-violence-in-silence-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/582f8c02-e1ec-425c-8c7f-0edcb1174d20/sm/ep1004.jpg","duration":123,"publication_date":"2009-12-02T16:07:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-bravo-overwatch","changefreq":"weekly","video":[{"title":"2009:E206 - Spec Ops - Bravo - Overwatch","description":"Geoff shoots ants from the sky while Jack cowers in a farm house in this spec ops mission from Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-bravo-overwatch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/544204fe-f467-417c-b390-c214f51f4951/sm/ep1003.jpg","duration":235,"publication_date":"2009-12-01T21:56:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-alpha-suspension","changefreq":"weekly","video":[{"title":"2009:E205 - Spec Ops - Alpha - Suspension","description":"Geoff and Jack relive the 1989 World Series by crawling on a bridge while it collapses around them. Where is Mark McGuire when you need him","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-alpha-suspension","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/76f2c01b-a627-4afc-8d7f-7f904c5b4b90/sm/ep1002.jpg","duration":195,"publication_date":"2009-12-01T21:55:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-alpha-evasion","changefreq":"weekly","video":[{"title":"2009:E204 - Spec Ops - Alpha - Evasion","description":"Jack and Geoff put on the snow gear and do a bit of evading in this Spec Ops mission from Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-alpha-evasion","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff4f22b8-31f3-4020-93a0-ad9d2057350d/sm/ep1001.jpg","duration":285,"publication_date":"2009-12-01T21:53:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tank-burger-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E276 - Tank Burger Achievement Guide","description":"Geoff shows the quickest way to get the Tank Burger Achievement in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tank-burger-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e834a2d7-634d-4aff-8d6f-1d5fb1c478f8/sm/ep1000.jpg","duration":71,"publication_date":"2009-11-30T22:27:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sweeper","changefreq":"weekly","video":[{"title":"2009:E203 - Sweeper","description":"Geoff and Jack whip around their large pole to pick up the Sweeper achievement in Assassin's Creed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sweeper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c74cc0ef-6c76-441b-9b7d-5c2e7a1b8d34/sm/ep999.jpg","duration":143,"publication_date":"2009-11-30T21:01:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-octopus-egg","changefreq":"weekly","video":[{"title":"2009:E202 - Octopus Egg","description":"Jack and Geoff show you the location of the hidden octopus in Assassin's Creed 2. If you act nicely you might get to pet him!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-octopus-egg","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f880565-2bd1-4790-9c7f-14e76bc6059b/sm/ep998.jpg","duration":171,"publication_date":"2009-11-30T21:01:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-show-your-colors","changefreq":"weekly","video":[{"title":"2009:E201 - Show Your Colors","description":"Jack and Geoff walk around throwin' colors all over Italy to pick up the Show Your Colors achievement in Assassin's Creed 2. Aight.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-show-your-colors","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5173012d-c63c-4b2c-a86a-7f7bffd81f0c/sm/ep997.jpg","duration":152,"publication_date":"2009-11-30T21:00:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-street-cleaner","changefreq":"weekly","video":[{"title":"2009:E200 - Street Cleaner","description":"Jack and Geoff pick up some trash in Venice to pick up the Street Cleaner achievement in Assassin's Creed 2. Enjoy the magical bales of hay.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-street-cleaner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0356a63-8dae-416d-898e-09e982b2c4d0/sm/ep996.jpg","duration":107,"publication_date":"2009-11-30T20:59:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-messer-sandman","changefreq":"weekly","video":[{"title":"2009:E199 - Messer Sandman","description":"Jack and Burnie talk about all things sand in this awesome video that also includes Assassin's Creed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-messer-sandman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/111403cf-17ee-42f8-8162-6b8428ab876f/sm/ep995.jpg","duration":101,"publication_date":"2009-11-25T22:46:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-doctor","changefreq":"weekly","video":[{"title":"2009:E198 - Doctor","description":"Jack and Burnie talk about playing doctor together while picking up achievements in Assassin's Creed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-doctor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ec2276a-c235-4cdb-9b5a-9584b52f4b88/sm/ep994.jpg","duration":51,"publication_date":"2009-11-25T22:46:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-drowning-doom-units","changefreq":"weekly","video":[{"title":"2009:E197 - Drowning Doom Units","description":"Jack and Geoff slap on some eyeliner and walk through the Drowning Doom units in Brutal Legend. They then talk about Tim Burton and the genius that was Nightmare Before Christmas.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-drowning-doom-units","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c82f16e1-6a10-491d-ae76-ba617ae0fd53/sm/ep993.jpg","duration":293,"publication_date":"2009-11-25T22:45:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ironheade-units","changefreq":"weekly","video":[{"title":"2009:E196 - Ironheade Units","description":"Geoff and Jack tackle the \"good\" guys in Brutal Legend, the Ironheade units. They walk through all of the different folks that Eddie Riggs controls and learn a bit about life on the road.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ironheade-units","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f25845c7-e3d9-41b4-ad9c-d6d05e99f3a5/sm/ep992.jpg","duration":332,"publication_date":"2009-11-25T22:44:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-tainted-coil-units","changefreq":"weekly","video":[{"title":"2009:E195 - Tainted Coil Units","description":"Jack and Geoff run through the Tainted Coil units in Brutal Legend multiplayer. Learn more about the evilness that is the Tainted Coil, and Geoff talks about his taint.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-tainted-coil-units","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73573d95-9440-4ba8-a392-3fb5ae202ec9/sm/ep991.jpg","duration":267,"publication_date":"2009-11-25T22:44:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-brutal-legend-multiplayer-contest","changefreq":"weekly","video":[{"title":"2009:E194 - Brutal Legend Multiplayer Contest!!","description":"Jack and Geoff make a rare in-front-of-camera appearance to give a few details about a Brutal Legend contest that you can take part in!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-brutal-legend-multiplayer-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5629dbaf-f1e4-44e5-9e96-5b5db34dd30d/sm/ep990.jpg","duration":115,"publication_date":"2009-11-25T22:42:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fly-swatter","changefreq":"weekly","video":[{"title":"2009:E193 - Fly Swatter","description":"Jack and Geoff show you how to get the Fly Swatter Achievement in Assassin's Creed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fly-swatter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5807c282-ed2e-4c95-9913-91152e62b321/sm/ep989.jpg","duration":50,"publication_date":"2009-11-20T23:11:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-man-of-the-people","changefreq":"weekly","video":[{"title":"2009:E192 - Man of the People","description":"Jack and Geoff make it rain all over Venice to pick up the \"Man of the People\" achievement in Assassin's Creed 2. Dolla dolla bills y'all.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-man-of-the-people","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/293d9f51-7d77-4abe-9f18-5582de66c88c/sm/ep988.jpg","duration":60,"publication_date":"2009-11-20T23:11:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-perfect-harmony","changefreq":"weekly","video":[{"title":"2009:E191 - Perfect Harmony","description":"Jack and Geoff are like two peas in a pod picking up the \"Perfect Harmony\" achievement in Assassin's Creed 2. Achievement guides never sounded so good.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-perfect-harmony","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/184cdd7b-aa1c-4b69-81f0-6be7541fe3e3/sm/ep987.jpg","duration":54,"publication_date":"2009-11-20T23:10:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-red-light-addict","changefreq":"weekly","video":[{"title":"2009:E190 - Red Light Addict","description":"Jack and Geoff show you how to get the Red Light Addict Achievement in Assassin's Creed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-red-light-addict","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3c7e4da-926c-4a99-9198-ae26d2847cbb/sm/ep986.jpg","duration":77,"publication_date":"2009-11-20T23:07:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wing-and-a-prayer-guide","changefreq":"weekly","video":[{"title":"2009:E275 - Wing and a Prayer Guide","description":"Geoff shows you how to get the Wing and a Prayer Achievement in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wing-and-a-prayer-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84dc6b5e-1c2d-405b-acb4-a33118184d0b/sm/ep985.jpg","duration":214,"publication_date":"2009-11-20T20:58:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bridge-over-trebled-slaughter-guide","changefreq":"weekly","video":[{"title":"2009:E274 - Bridge Over Trebled Slaughter Guide","description":"Geoff shows you how to get the Bridge Over Trebled Slaughter Achievement in L4D2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bridge-over-trebled-slaughter-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c17b603-0b82-49e6-88c0-e9b389e8850d/sm/ep984.jpg","duration":247,"publication_date":"2009-11-20T20:47:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-septic-tank-head-honcho-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E272 - Septic Tank, Head Honcho Achievement Guide","description":"Geoff shows how to get two quick and easy Achievements in Left 4 Dead 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-septic-tank-head-honcho-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/883e11b0-f3d3-4315-8be6-924cf81db511/sm/ep982.jpg","duration":84,"publication_date":"2009-11-18T22:44:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gong-show-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E271 - Gong Show Achievement Guide","description":"Geoff shows you how to get the Gong Show Achievement in Left 4 Dead 2's Dark Carnival.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gong-show-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eaba9f5c-1eb5-4204-a46e-3ed63a7f53ee/sm/ep981.jpg","duration":47,"publication_date":"2009-11-18T22:42:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stache-whacker-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E270 - Stache Whacker Achievement Guide","description":"Geoff and Andrew show you how and where to get the Stache Whacker Achievement in L4D2's Dark Carnival level.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stache-whacker-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/379b9174-461d-493c-9fdd-e2677a8c4905/sm/ep980.jpg","duration":121,"publication_date":"2009-11-18T22:40:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-high-dive","changefreq":"weekly","video":[{"title":"2009:E189 - High Dive","description":"Jack and Geoff jump off a really tall building for Gamerscore in Assassin's Creed 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-high-dive","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6815bf1b-536b-49b3-9e41-24f3d89174b8/sm/ep979.jpg","duration":161,"publication_date":"2009-11-18T21:57:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-alpha-o-cristo-redentor","changefreq":"weekly","video":[{"title":"2009:E188 - Spec Ops - Alpha - O Cristo Redentor","description":"Jack and Geoff show you how to get three stars in the Alpha \"O Cristo Redentor\" level in Spec Ops.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-alpha-o-cristo-redentor","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/607a7e97-933a-48f2-addf-8a470ec1eee7/sm/ep978.jpg","duration":185,"publication_date":"2009-11-17T17:32:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-alpha-sniper-fi","changefreq":"weekly","video":[{"title":"2009:E187 - Spec Ops - Alpha - Sniper Fi","description":"Jack and Geoff show you how to get three stars in the Alpha \"Sniper Fi\" level in Spec Ops.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-alpha-sniper-fi","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/518ea8cf-a7e7-4aed-a127-365cc1658681/sm/ep977.jpg","duration":276,"publication_date":"2009-11-17T17:31:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-spec-ops-alpha-the-pit","changefreq":"weekly","video":[{"title":"2009:E186 - Spec Ops - Alpha - The Pit","description":"Jack and Geoff show you how to get three gold stars in the Spec Ops Alpha mission The Pit.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-spec-ops-alpha-the-pit","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/156a2780-b20b-49ba-bf83-9de70a647ed9/sm/ep976.jpg","duration":55,"publication_date":"2009-11-17T17:30:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sight-seeing-in-mw2","changefreq":"weekly","video":[{"title":"2009:E185 - Sight Seeing in MW2","description":"Jack and Geoff (and occasionally Gus) find some easter eggs in Modern Warfare 2. Sometime things are more than they seem.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sight-seeing-in-mw2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f64e955a-8184-418f-b495-3fc238736b45/sm/ep975.jpg","duration":473,"publication_date":"2009-11-13T19:37:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-look-ma-two-hands-guide","changefreq":"weekly","video":[{"title":"2009:E269 - Look Ma Two Hands Guide","description":"Jack and Geoff show you how to get the \"Look Ma Two Hands\" Achievement in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-look-ma-two-hands-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e77d5ece-7dd2-4cf7-8bac-b59e3165f779/sm/ep974.jpg","duration":81,"publication_date":"2009-11-13T19:37:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-drive-by-guide","changefreq":"weekly","video":[{"title":"2009:E268 - Drive-By Guide","description":"Jack and Geoff show you how to get the Drive By Achievement on the level \"endgame\" in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-drive-by-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7beff29c-8b25-4115-9a1d-72490c2dd785/sm/ep973.jpg","duration":145,"publication_date":"2009-11-13T19:36:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dragon-age-origins-dragonslayer","changefreq":"weekly","video":[{"title":"2009:E184 - Dragon Age Origins: Dragonslayer","description":"Gus shows you an easy strategy to get the Dragonslayer achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dragon-age-origins-dragonslayer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8828bbde-8240-4de4-8990-bac8896a6500/sm/ep972.jpg","duration":259,"publication_date":"2009-11-13T15:51:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dragon-age-origins-pilgrim-and-tinkerer-achievements","changefreq":"weekly","video":[{"title":"2009:E267 - Dragon Age Origins: Pilgrim and Tinkerer Achievements","description":"Gus shows you how to get the Pilgrim and Tinkerer achievements in Dragon Age Origins. Honestly, if you needed a guide for these maybe gaming isn't for you.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dragon-age-origins-pilgrim-and-tinkerer-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8b1221f2-86c8-451b-ba15-50e868ba37ef/sm/ep971.jpg","duration":123,"publication_date":"2009-11-13T15:47:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-knock-knock-guide","changefreq":"weekly","video":[{"title":"2009:E266 - Knock-knock Guide","description":"Geoff shows an easy place to get the Knock-knock Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-knock-knock-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e9c0dbd6-d27c-464f-80b6-2e1f0f174de4/sm/ep970.jpg","duration":46,"publication_date":"2009-11-13T15:21:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-unnecessary-roughness-guide","changefreq":"weekly","video":[{"title":"2009:E265 - Unnecessary Roughness Guide","description":"Geoff shows how to get an easy Achievement in an easy way.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-unnecessary-roughness-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09c46d72-e70c-45e3-ba45-a06c46946164/sm/ep969.jpg","duration":86,"publication_date":"2009-11-13T15:18:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-some-like-it-hot-guide","changefreq":"weekly","video":[{"title":"2009:E264 - Some Like it Hot Guide","description":"Geoff and Jack show you how to fail your way to the Some Like it Hot Achievement in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-some-like-it-hot-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8760b1d5-8597-45c8-80ec-584f93853c88/sm/ep968.jpg","duration":103,"publication_date":"2009-11-13T15:15:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-no-rest-for-the-wary-guide","changefreq":"weekly","video":[{"title":"2009:E263 - No Rest for the Wary Guide","description":"Geoff shows you how to get the \"No Rest for the Wary\" Achievement in the Cliffhanger level of Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-no-rest-for-the-wary-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5a3a3cd7-778d-48fc-8843-92f0150ef79c/sm/ep967.jpg","duration":56,"publication_date":"2009-11-13T15:14:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-harder-they-fall-guide","changefreq":"weekly","video":[{"title":"2009:E262 - The Harder They Fall Guide","description":"Geoff and Jack show you two places to get the \"The Harder They Fall\" Achievement in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-harder-they-fall-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37362eb5-021c-4edf-b6e7-4ba38d1da282/sm/ep966.jpg","duration":56,"publication_date":"2009-11-13T15:13:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-enemy-intel-act-3-part-2","changefreq":"weekly","video":[{"title":"2009:E183 - Enemy Intel - Act 3, Part 2","description":"Finally, we wrap up our intel hunting with the second half of Act 3. Find the final bits of intel in The Enemy of My Enemy, Just Like Old Times and Endgame. Then you can relax.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-enemy-intel-act-3-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3dfe5ce1-eaa0-4ee8-a4ef-70b2e46e6c5b/sm/ep965.jpg","duration":163,"publication_date":"2009-11-11T23:58:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-enemy-intel-act-3-part-1","changefreq":"weekly","video":[{"title":"2009:E182 - Enemy Intel - Act 3, Part 1","description":"Jack and special guest Joel show you the locations of the enemy intel in the first half of Act 3 of Modern Warfare 2. Levels searched include Contingency, Whisky Hotel and Loose Ends!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-enemy-intel-act-3-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65236d7d-0322-4904-b2b7-df0b00c3b5dc/sm/ep964.jpg","duration":234,"publication_date":"2009-11-11T23:56:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ten-plus-foot-mobiles-guide","changefreq":"weekly","video":[{"title":"2009:E261 - Ten Plus Foot-Mobiles Guide","description":"Geoff shows how to get the \"Ten Plus Foot-Mobiles\" Achievement in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ten-plus-foot-mobiles-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d299692-d960-497f-808c-7cf37cd5cef7/sm/ep963.jpg","duration":66,"publication_date":"2009-11-11T19:22:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-some-guide","changefreq":"weekly","video":[{"title":"2009:E260 - Three-some Guide","description":"Geoff and Jack show how to get the Three-some Achievement in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-some-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f32e664-2adb-41d5-b4a8-c33b679b630d/sm/ep962.jpg","duration":81,"publication_date":"2009-11-11T19:18:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-enemy-intel-act-2-part-2","changefreq":"weekly","video":[{"title":"2009:E181 - Enemy Intel - Act 2, Part 2","description":"Jack and Geoff show you how to get those pesky enemy intel items in the second half of the second act in Modern Warfare 2. Covered here are levels The Only Easy Day...Was Yesterday, The Gulag and Of Their Own Accord.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-enemy-intel-act-2-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59c41b2d-f6a7-4774-b4aa-6b211e4085c4/sm/ep961.jpg","duration":286,"publication_date":"2009-11-10T23:41:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-enemy-intel-act-2-part-1","changefreq":"weekly","video":[{"title":"2009:E180 - Enemy Intel - Act 2, Part 1","description":"Jack and Geoff show you the locations of all the hidden enemy intel in the first three chapters of Act 2 in Modern Warfare 2. Wolverines! The Hornet's Nest and Exodus are all covered here.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-enemy-intel-act-2-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/425f32fc-30fe-4e0a-a0bf-efd3e9c3d6a3/sm/ep960.jpg","duration":373,"publication_date":"2009-11-10T21:34:50.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-colonel-sanderson","changefreq":"weekly","video":[{"title":"2009:E179 - Colonel Sanderson","description":"Jack and Geoff go chicken huntin' and pick up the Colonel Sanderson achievement in Modern Warfare 2. Many chickens were hurt in the making of this video.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-colonel-sanderson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/86b3b0ec-3518-43f9-82e3-a0fa942d873b/sm/ep959.jpg","duration":45,"publication_date":"2009-11-10T21:33:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ghost-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E259 - Ghost Achievement Guide","description":"Geoff shows how to get the \"Ghost\" Achievement in the second level of Modern Warfare 2 - Cliffhanger.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ghost-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6da993cf-7302-494a-8908-e6c6e1bd6146/sm/ep958.jpg","duration":255,"publication_date":"2009-11-10T18:24:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pit-boss","changefreq":"weekly","video":[{"title":"2009:E178 - Pit Boss","description":"Geoff gives some tips for getting the Pit Boss Achievement Guide in Modern Warfare 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pit-boss","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/02507ef1-91db-40d1-b5af-efdce4d42480/sm/ep957.jpg","duration":69,"publication_date":"2009-11-10T17:50:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-enemy-intel-act-1","changefreq":"weekly","video":[{"title":"2009:E177 - Enemy Intel - Act 1","description":"Jack holds you hand as we take a happy journey to find all of the enemy intel in Call of Duty: Modern Warfare 2!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-enemy-intel-act-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8750953b-766f-4cec-874d-b746f44e4423/sm/ep955.jpg","duration":304,"publication_date":"2009-11-10T09:30:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-photographer-camera-man","changefreq":"weekly","video":[{"title":"2009:E176 - Photographer, Camera Man","description":"Jack and Geoff go for the paparazzi-styled achievements in Fifa 10, \"Camera Man\" and \"Photographer.\" Up next \"Digging Through Trash\" and \"Bribe a Former Lover.\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-photographer-camera-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e3d6bdf7-44cb-416a-a70f-c4684e0430e0/sm/ep953.jpg","duration":104,"publication_date":"2009-11-09T20:05:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-shooting-boots-still-practicing","changefreq":"weekly","video":[{"title":"2009:E175 - Shooting Boots, Still Practicing","description":"Jack and Geoff grab the practice-mode achievements \"Shooting Boots\" and \"Still Practicing\" in Fifa 10. Neither of the two have touched a soccer ball. Or any balls.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-shooting-boots-still-practicing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c935acf5-b237-41a0-8dde-4d078f230ccf/sm/ep952.jpg","duration":109,"publication_date":"2009-11-09T20:03:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-a-star-is-born-window-shopping","changefreq":"weekly","video":[{"title":"2009:E174 - A Star is Born, Window Shopping","description":"Jack creates life from which there was none and earns a couple of achievements in the process.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-a-star-is-born-window-shopping","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2bb55334-2ba5-4e05-a10c-e7e500932075/sm/ep951.jpg","duration":83,"publication_date":"2009-11-09T20:01:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-12-days-of-pandora-youre-on-a-boat-speedy-mcspeederson","changefreq":"weekly","video":[{"title":"2009:E173 - 12 Days of Pandora, You're on a Boat, Speedy McSpeederson","description":"Wildrile shows how to get 12 Days of Pandora, You're on a Boat, and Speedy McSpeederson in Borderlands.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-12-days-of-pandora-youre-on-a-boat-speedy-mcspeederson","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ae92e1d-f66d-41e2-b6bd-a71d6d53d2ae/sm/ep948.jpg","duration":256,"publication_date":"2009-11-06T20:26:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-driving-high-guide","changefreq":"weekly","video":[{"title":"2009:E254 - Driving High Guide","description":"Milesprower shows us how to get the \"driving high\" achievement in Crackdown.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-driving-high-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16280c18-3326-4701-96dd-e2b1a15eaed0/sm/ep947.jpg","duration":170,"publication_date":"2009-11-06T20:20:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-demon-and-lapper-guide","changefreq":"weekly","video":[{"title":"2009:E253 - Demon and Lapper Guide","description":"Community member Darthmeow shows how to get the Demon and Lapper Achievements in Forza Motorsport 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-demon-and-lapper-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af963d63-f1d0-42d5-bf33-c4faff96ab70/sm/ep946.jpg","duration":158,"publication_date":"2009-11-06T20:15:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-3-preview","changefreq":"weekly","video":[{"title":"2009:E172 - Skate 3 Preview","description":"Jack takes a trip out to San Francisco to check out Skate 3 way before it is released to the public!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-3-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3057c2d8-6101-49d0-ac5a-a68d22a99dab/sm/ep945.jpg","duration":401,"publication_date":"2009-11-06T16:24:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-power-level-guide","changefreq":"weekly","video":[{"title":"2009:E252 - Power Level Guide","description":"Gus shows you how to power level your character so you can hit level 20 very early in the game.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-power-level-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d03139aa-8405-43da-bd5f-98d9566b88ac/sm/ep944.jpg","duration":143,"publication_date":"2009-11-05T22:52:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-basket-case","changefreq":"weekly","video":[{"title":"2009:E171 - Basket Case","description":"Jack beats the crap out of more bunnies while Geoff weeps in Fairytale Fights. Join us for secret achievement gathering and floppy-eared death.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-basket-case","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fff3748-599f-4311-a48f-bdade7e959ee/sm/ep943.jpg","duration":123,"publication_date":"2009-11-05T20:48:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2009-2","changefreq":"weekly","video":[{"title":"2009:E2 - Easter Eggs (Still Alive)","description":"Geoff shows how to access two awesome little Easter Eggs in Left 4 Dead 2's Demo. Hint, they're Jonathan Coulton songs.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2009-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a2f00799-2f8e-4d44-aa64-ef4249b88d90/sm/ep942.jpg","duration":166,"publication_date":"2009-11-05T16:01:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-good-for-your-eyes","changefreq":"weekly","video":[{"title":"2009:E170 - Good for Your Eyes!","description":"Jack picks up a secret achievement in Fairytale Fights while Geoff swoons over a cute bear.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-good-for-your-eyes","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f787c8-7979-43dc-83e6-ddcfe6017b7f/sm/ep941.jpg","duration":72,"publication_date":"2009-11-04T22:03:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bloody-achievements","changefreq":"weekly","video":[{"title":"2009:E251 - Bloody Achievements","description":"Jack shows you how to pick up three blood-related achievements in Fairytale Fights while Geoff complains about the font.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bloody-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/de5eb72b-e80c-4cb5-86a4-732798208a69/sm/ep940.jpg","duration":64,"publication_date":"2009-11-04T22:02:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-adrenaline-junkie-guide-gtaiv","changefreq":"weekly","video":[{"title":"2009:E250 - Adrenaline Junkie Guide","description":"Geoff shows how to get the Adrenaline Junkie Achievement in The Ballad of Gay Tony.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-adrenaline-junkie-guide-gtaiv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c19fc4fc-b2f7-4b4d-ab09-576202e9fc2d/sm/ep939.jpg","duration":236,"publication_date":"2009-11-03T18:24:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-halo-waypoint-walkthrough","changefreq":"weekly","video":[{"title":"2009:E169 - Halo Waypoint Walkthrough","description":"Gus and Geoff show you the ways of Halo Waypoint and get some cool avatar awards. Halo Waypoint becomes publicly available November 5th.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-halo-waypoint-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ab61e3d4-3d17-4856-9d4f-b4971b74c85e/sm/ep938.jpg","duration":500,"publication_date":"2009-11-02T17:00:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bear-fight-guide","changefreq":"weekly","video":[{"title":"2009:E249 - Bear Fight Guide","description":"Geoff shows how to get the Bear Fight Achievement in The Ballad of Gay Tony.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bear-fight-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8403053-b6ca-430f-83a9-06cbba2a3017/sm/ep937.jpg","duration":347,"publication_date":"2009-11-02T16:47:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-all-achievements","changefreq":"weekly","video":[{"title":"2009:E248 - All Achievements","description":"BrownMan shows us how to get all 1000 gamerscore in Backyard Football 10.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-all-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3cacac97-3b36-4fd5-b5b3-9f02e3f58b8e/sm/ep936.jpg","duration":360,"publication_date":"2009-11-02T15:27:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-four-play-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E247 - Four Play Achievement Guide","description":"Geoff show show to get the Four Play Achievement in The Ballad of Gay Tony.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-four-play-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/566f433a-fa94-4288-8dc1-4f7daafe00df/sm/ep935.jpg","duration":177,"publication_date":"2009-10-30T18:49:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-ballad-of-gay-tony-catch-the-bus-guide","changefreq":"weekly","video":[{"title":"2009:E246 - The Ballad of Gay Tony - Catch the Bus Guide","description":"Geoff shows how to get the very confusing \"Catch the Bus\" Achievement in GTAIV The Ballad of Gay Tony.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-ballad-of-gay-tony-catch-the-bus-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80699263-85b2-4793-840c-296fb210b67e/sm/ep934.jpg","duration":177,"publication_date":"2009-10-30T14:43:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-azazel-guide-night-at-the-movies","changefreq":"weekly","video":[{"title":"2009:E245 - Azazel Guide / Night at the Movies","description":"Geoff shows you how to beat the final boss in arena mode with basically just one button, thus nabbing the \"Night at the Movies\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-azazel-guide-night-at-the-movies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5edb260-5ade-43aa-9690-bce9e598ec3b/sm/ep933.jpg","duration":217,"publication_date":"2009-10-30T14:40:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-king-of-the-hill-guide","changefreq":"weekly","video":[{"title":"2009:E244 - King of the Hill Guide","description":"Geoff shows how to get 35 gamerscore in about 5 minutes via the King of the Hill and Give Yer Hands a Rest Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-king-of-the-hill-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a14d637b-08a8-4d33-b872-dc394cbe1bdb/sm/ep932.jpg","duration":132,"publication_date":"2009-10-30T14:38:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sight-seeing","changefreq":"weekly","video":[{"title":"2009:E168 - Sight Seeing","description":"Geoff and Jack take a casual stroll around Brutal Legend, looking at all of the fantastic lookables.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sight-seeing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d13fbabd-c244-4a7f-a023-5504c4010c49/sm/ep930.jpg","duration":213,"publication_date":"2009-10-23T21:49:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-metal-god","changefreq":"weekly","video":[{"title":"2009:E167 - Metal God","description":"Jack and Geoff show you how to finish off your Brutal Legend game and hit 100%. They also talk about a horny map.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-metal-god","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a62b6cab-d010-4ac2-a406-75be404e370c/sm/ep929.jpg","duration":167,"publication_date":"2009-10-22T20:59:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-beast-master","changefreq":"weekly","video":[{"title":"2009:E166 - Beast Master","description":"Geoffrey and Jack talk about movies from the early 80s and also pick up an achievement where you mount things in Brutal Legend. Mount.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-beast-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/26820b8a-fa50-40f8-9abb-d49d327ee34c/sm/ep928.jpg","duration":135,"publication_date":"2009-10-21T16:44:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-overkill","changefreq":"weekly","video":[{"title":"2009:E165 - Overkill","description":"Geoff and Jack and Brian Posehn show you which animals you have to slaughter to pick up the Overkill achievement in Brutal Legend.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-overkill","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c4f486c-fcea-4db4-8df2-763fe31b5269/sm/ep926.jpg","duration":210,"publication_date":"2009-10-19T22:57:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-treasure-21-40","changefreq":"weekly","video":[{"title":"2009:E164 - Treasure 21-40","description":"Gus is back with his second Uncharted 2 video, this time showing you where treasures 21-40 are (and the bonus strange relic!)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-treasure-21-40","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cc7ffbc3-fa4c-4592-a1fa-d74e8febcfc8/sm/ep925.jpg","duration":441,"publication_date":"2009-10-17T05:44:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-first-twenty-treasure-locations","changefreq":"weekly","video":[{"title":"2009:E163 - First Twenty Treasure Locations","description":"Gus shows you the first twenty treasure locations in Uncharted 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-first-twenty-treasure-locations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/944e9cf9-bcb2-450e-8a5f-0644382cc681/sm/ep923.jpg","duration":509,"publication_date":"2009-10-15T20:36:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-weapon-achievements","changefreq":"weekly","video":[{"title":"2009:E243 - Weapon Achievements","description":"A compilation of the achievements in Saw related to killing people with various weapons","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-weapon-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d38b403b-d31a-4b31-8523-2688c914429c/sm/ep922.jpg","duration":379,"publication_date":"2009-10-15T16:08:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-anonymous-red-shirt-award","changefreq":"weekly","video":[{"title":"2009:E162 - Anonymous Red-Shirt Award","description":"Be the first player to be eliminated in a multiplayer game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-anonymous-red-shirt-award","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":233,"publication_date":"2009-10-15T05:00:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-heart-stopper","changefreq":"weekly","video":[{"title":"2009:E161 - Heart Stopper","description":"Getting Heart Stopper in RE5","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-heart-stopper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":51,"publication_date":"2009-10-15T04:52:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pyrotechnician-left-4-dead","changefreq":"weekly","video":[{"title":"2009:E160 - Pyrotechnician - Left 4 Dead","description":"Pyrotechnician Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pyrotechnician-left-4-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":108,"publication_date":"2009-10-15T04:38:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-metal-queen-fight","changefreq":"weekly","video":[{"title":"2009:E159 - Metal Queen Fight","description":"Jack and Geoff step in to the lair of the Metal Queen and will hopefully show you how to come out alive. Or at least come out with a fancy new flesh wound.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-metal-queen-fight","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/097fdd65-cbc0-4f2b-9266-7be4ae301dd8/sm/ep917.jpg","duration":296,"publication_date":"2009-10-15T00:05:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mount-rockmore","changefreq":"weekly","video":[{"title":"2009:E158 - Mount Rockmore","description":"Jack and Geoff work together in harmony to show you how to chance the faces on Mount Rockmore. No achievement, but lots of love. And hugs.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mount-rockmore","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/94ef802a-cfc7-45d2-8cab-4fe6a218a1d1/sm/ep916.jpg","duration":71,"publication_date":"2009-10-15T00:03:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-quill-tosser","changefreq":"weekly","video":[{"title":"2009:E157 - Quill Tosser","description":"Jack and Geoff reminisce about the good old days, while getting the Quill Tosser Achievement in Brutal Legend.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-quill-tosser","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5e564e3-3af5-4606-b26e-3fe6bd785734/sm/ep915.jpg","duration":112,"publication_date":"2009-10-13T00:19:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-never-truly-free-and-cost-of-the-truth","changefreq":"weekly","video":[{"title":"2009:E156 - Never Truly Free and Cost of the Truth","description":"Gus shows you how to watch both endings of the Saw game without having to replay much of the game!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-never-truly-free-and-cost-of-the-truth","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73a80d7a-bb6b-4899-9362-f94c50b57b95/sm/ep913.jpg","duration":134,"publication_date":"2009-10-12T21:27:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-violence-begets-violence","changefreq":"weekly","video":[{"title":"2009:E155 - Violence Begets Violence","description":"A walkthrough to show you how to easily defeat pighead in Saw.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-violence-begets-violence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c35d3f5c-5def-43b5-af0d-e372d9a54bbd/sm/ep912.jpg","duration":120,"publication_date":"2009-10-12T21:22:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-now-you-must-tell-the-tale","changefreq":"weekly","video":[{"title":"2009:E154 - Now You Must Tell the Tale","description":"Jack and his sexy cohort \"Geoff\" show where to find all of those pesky Legends hidden throughout Brutal Legend.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-now-you-must-tell-the-tale","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/85da0ba6-eb38-431a-b3bb-f11c46b27dff/sm/ep911.jpg","duration":383,"publication_date":"2009-10-12T19:54:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-flowerslave-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E241 - Flowerslave Achievement Guide","description":"Jack and Geoff show how to get the Flowerslave Achievement in Brutal Legend.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-flowerslave-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/191357c2-9ac8-49cb-b0b1-687b4a4095f2/sm/ep910.jpg","duration":310,"publication_date":"2009-10-11T18:53:27.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-boar-bather","changefreq":"weekly","video":[{"title":"2009:E153 - Boar Bather","description":"Geoff and Jack show you how to get the \"Boar Bather\" Achievement. Rock.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-boar-bather","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b970982b-0e64-4f5e-ae8d-f171a97ed2f5/sm/ep909.jpg","duration":373,"publication_date":"2009-10-10T22:27:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-silence-ground-walker","changefreq":"weekly","video":[{"title":"2009:E152 - Silence, Ground Walker!","description":"Jack and Geoff show you how to get the \"Silence, Ground Walker\" Achievement, as well as some cool gameplay footage from the upcoming EA game, Brutal Legend.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-silence-ground-walker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9aa7451-3eb9-4c71-969e-dc2845eee0c8/sm/ep908.jpg","duration":63,"publication_date":"2009-10-09T21:16:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-coolest-thing-ever","changefreq":"weekly","video":[{"title":"2009:E151 - Coolest Thing Ever","description":"Jack and Geoff show you how to jump the mighty Hextadon, to nab the \"Coolest Thing Ever\" Achievement in the upcoming game, Brutal Legend.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-coolest-thing-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b9b30fbe-0c67-4bf9-b305-10fa26f04e86/sm/ep907.jpg","duration":118,"publication_date":"2009-10-08T19:24:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dlc-achievements-2","changefreq":"weekly","video":[{"title":"2009:E240 - DLC Achievements","description":"BrownMan is back, this time with the DLC achievements for Madden NFL 10.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dlc-achievements-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0e5b256f-1df9-4930-b7f8-933e07f9b3bd/sm/ep906.jpg","duration":477,"publication_date":"2009-10-08T16:39:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-darkest-of-days-achievements","changefreq":"weekly","video":[{"title":"2009:E239 - Darkest Of Days Achievements","description":"BrownMan shows you how to get a bunch of achievements in \"Darkest Of Days.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-darkest-of-days-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3691af8d-f3ec-4e80-95b1-3ee292a32ee4/sm/ep905.jpg","duration":468,"publication_date":"2009-10-08T16:37:42.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-wraith-firefight-glitch","changefreq":"weekly","video":[{"title":"2009:E150 - Wraith Firefight Glitch","description":"Geoff and Gavin show how to get into a Wraith in Firefight.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-wraith-firefight-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9891664d-b1d7-4b46-8651-003453dd916e/sm/ep903.jpg","duration":149,"publication_date":"2009-10-07T14:23:05.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-riddler-trophy-guide-part-three","changefreq":"weekly","video":[{"title":"2009:E237 - Riddler Trophy Guide Part Three","description":"ChurchsWife is back with Part Three of her Riddler Trophy Guide. This gripping episode also shows how to get Just What the Doctors Ordered, Daydreamer, and Baneful Payback.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-riddler-trophy-guide-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/262817db-edc8-4dbb-8f98-c1e764db6c4e/sm/ep902.jpg","duration":307,"publication_date":"2009-10-07T14:15:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-exclusive-one-hit-wonder","changefreq":"weekly","video":[{"title":"2009:E149 - EXCLUSIVE: One Hit Wonder","description":"2009:E149 - EXCLUSIVE: One Hit Wonder","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-exclusive-one-hit-wonder","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f2d94168-cc22-41e6-a9f8-335ecc6ab3ee/sm/ep901.jpg","duration":66,"publication_date":"2009-10-06T17:34:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crash-course-sight-seeing-part-2","changefreq":"weekly","video":[{"title":"2009:E148 - Crash Course: Sight Seeing Part 2","description":"So in our last video, Geoff forgot a few things, which was pointed out to him over and over. Here's hoping this one fills in the gaps.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crash-course-sight-seeing-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e5f55252-7b1e-4159-9a0e-3b649b08aba1/sm/ep900.jpg","duration":94,"publication_date":"2009-10-06T15:21:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crash-course-sight-seeing","changefreq":"weekly","video":[{"title":"2009:E147 - Crash Course: Sight Seeing","description":"Geoff takes a little tour of Crash Course, and shows off some of the less visible elements of the game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crash-course-sight-seeing","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42ac143f-2114-43a5-b5b2-8beb98e7c664/sm/ep899.jpg","duration":226,"publication_date":"2009-10-05T22:21:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-audio-files-16-30-guide","changefreq":"weekly","video":[{"title":"2009:E236 - Audio Files 16-30 Guide","description":"Jack and Gavin show you how to get the remaining 15 Audio Files in ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-audio-files-16-30-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1279a048-dd61-43af-a580-24d07c7a9762/sm/ep896.jpg","duration":595,"publication_date":"2009-09-30T20:22:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-audio-files-1-15-guide","changefreq":"weekly","video":[{"title":"2009:E235 - Audio Files 1-15 Guide","description":"Jack and Gavin show you how to get the first 15 Audio Files in ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-audio-files-1-15-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/263c83fc-a51f-4e49-8f74-e29c0f57787e/sm/ep895.jpg","duration":510,"publication_date":"2009-09-30T20:21:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-stunning-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E234 - Stunning! Achievement Guide","description":"Gavin shows how to not \"get\", and then later \"get\" the Stunning! Achievement in Halo 3: ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-stunning-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0b61932a-9b42-4f02-b794-86fa077c3b69/sm/ep894.jpg","duration":65,"publication_date":"2009-09-30T17:59:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-crash-course-dlc-quick-power-guide","changefreq":"weekly","video":[{"title":"2009:E233 - Crash Course DLC: Quick Power Guide","description":"Geoff and Andrew show you how to get Quick Power and Crash Course in the new L4D dlc, nabbing you 40 Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-crash-course-dlc-quick-power-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87a88bfd-c605-4923-adf9-6f00b68675b5/sm/ep893.jpg","duration":118,"publication_date":"2009-09-30T14:18:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-crash-course-dlc-tank-stumble-guide","changefreq":"weekly","video":[{"title":"2009:E232 - Crash Course DLC: Tank Stumble Guide","description":"Geoff and Andrew show you a quick and easy way to get the \"Tank Stumble\" Achievement in Crash Course","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-crash-course-dlc-tank-stumble-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db244382-8630-4d87-b523-1e84dc2ab3e9/sm/ep892.jpg","duration":101,"publication_date":"2009-09-30T14:16:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vidmaster-challenge-deja-vu-guide","changefreq":"weekly","video":[{"title":"2009:E231 - Vidmaster Challenge: Deja Vu Guide","description":"Geoff, Andrew, Caleb and Jack show you an easy (and dare I say awesome) way to get the Vidmaster Challenge: Deja Vu Achievement in ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vidmaster-challenge-deja-vu-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4f4f87b7-37c8-4060-80c3-6b3671a0061f/sm/ep891.jpg","duration":467,"publication_date":"2009-09-29T22:09:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-monkeys-31-45","changefreq":"weekly","video":[{"title":"2009:E146 - Monkeys 31-45","description":"Gus shows you where the final monkeys are in Wet (31-45)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-monkeys-31-45","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35ad52de-bbe6-47de-b3ac-d4e0f86e94fd/sm/ep889.jpg","duration":266,"publication_date":"2009-09-27T19:58:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-monkeys-21-30","changefreq":"weekly","video":[{"title":"2009:E145 - Monkeys 21-30","description":"Gus shows you where monkeys 21-30 are in Wet","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-monkeys-21-30","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/69801198-04ba-42f2-aeb8-8d0ab2af5f28/sm/ep888.jpg","duration":227,"publication_date":"2009-09-27T19:56:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-graphic-violence","changefreq":"weekly","video":[{"title":"2009:E144 - Graphic Violence","description":"Gus shows you how to get the Graphic Violence achievement in Wet.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-graphic-violence","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2c4c6559-8557-4b79-aafc-d0e20d614a50/sm/ep887.jpg","duration":128,"publication_date":"2009-09-27T19:52:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pajamachievements-season-1-pajamachievements-ufc","changefreq":"weekly","video":[{"title":"S1:E23 - UFC","description":"Part one of the season finale of PJA, edited by the talented finchlynch. The girls do their best to fight if they could only keep their characters from cuddling.","player_loc":"https://roosterteeth.com/embed/pajamachievements-season-1-pajamachievements-ufc","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6e3b2b7-836f-4762-b1e4-cf1ac0b5bed6/sm/ep886.jpg","duration":341,"publication_date":"2009-09-25T18:40:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vidmaster-challenge-classic-guide","changefreq":"weekly","video":[{"title":"2009:E230 - Vidmaster Challenge: Classic Guide","description":"Geoff shows one way to get the seemingly difficult \"Vidmaster Challenge: Classic\" Achievement in ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vidmaster-challenge-classic-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cba82c93-af2d-467e-becb-cc3528ed5cae/sm/ep885.jpg","duration":292,"publication_date":"2009-09-25T14:39:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pink-and-deadly-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E229 - Pink and Deadly Achievement Guide","description":"Geoff, being both pink and deadly himself, shows us how to get the Pink and Deadly Achievement in Halo 3: ODST","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pink-and-deadly-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7978f60-dbe0-400a-83bf-5d1f78979f7a/sm/ep884.jpg","duration":89,"publication_date":"2009-09-23T21:02:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-i-like-fire-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E228 - I Like Fire Achievement Guide","description":"I Like Fire and so does Gavin, at least that's what he told me when he was getting this Achievement in ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-i-like-fire-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1567dfbe-3109-4dce-a52b-8ed8766bed48/sm/ep883.jpg","duration":103,"publication_date":"2009-09-23T20:23:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dome-inspector-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E227 - Dome Inspector Achievement Guide","description":"Gavin shows us how to get the Dome Inspector Achievement in Halo 3: ODST. Very useful additional help provided by Burnie","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dome-inspector-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1135b5f-5d16-47fd-998f-ccdf79e612d5/sm/ep881.jpg","duration":105,"publication_date":"2009-09-23T20:19:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-laser-blaster-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E226 - Laser Blaster Achievement Guide","description":"Gavin shows the easiest way to get 10 Spartan Laser kills on ONI Alpha Site.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-laser-blaster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d608814-9d3a-4985-8a10-22eaea63b442/sm/ep880.jpg","duration":77,"publication_date":"2009-09-23T19:29:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-both-tubes-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E225 - Both Tubes Achievement Guide","description":"Geoff is clever. He knows how to get the Both Tubes Achievement in ODST. Be clever like Geoff.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-both-tubes-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22fcea9c-1a4f-47e4-a45f-c49d58894cbf/sm/ep879.jpg","duration":98,"publication_date":"2009-09-23T17:37:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wraith-killer-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E224 - Wraith Killer Achievement Guide","description":"Geoff shows a few tips and tricks for getting the \"Wraith Killer\" Achievement in the Uplift Reserve level of Halo 3: ODST.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wraith-killer-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b33bb604-1eb6-4363-9518-0959737b9376/sm/ep878.jpg","duration":295,"publication_date":"2009-09-23T17:36:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-act-1-day-1-collectible-guide","changefreq":"weekly","video":[{"title":"2009:E222 - Act 1, Day 1 Collectible Guide","description":"Geoff shows where to find the hidden collectibles in Act One, Day One in Marvel Ultimate Alliance 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-act-1-day-1-collectible-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1742c988-dbf9-4d21-9bd0-a16dd00fb0d6/sm/ep876.jpg","duration":337,"publication_date":"2009-09-22T21:15:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tactical-training-guide","changefreq":"weekly","video":[{"title":"2009:E221 - Tactical Training Guide","description":"Geoff shows how to get the easy-to-miss \"Tactical Training\" Achievement in Marvel Ultimate Alliance 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tactical-training-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90e7ae89-0df8-4ec4-9b2b-ea00714c638d/sm/ep874.jpg","duration":131,"publication_date":"2009-09-21T22:18:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-collectibles-guide-part-one-prologue","changefreq":"weekly","video":[{"title":"2009:E220 - Collectibles Guide Part One: Prologue","description":"Geoff shows us where to find the hidden collectibles in the prologue level of MUA2. This video works toward getting: Above and Beyond, Listening In, and Superior Intel.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-collectibles-guide-part-one-prologue","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9ef8189c-f078-49f4-a07a-a8767e9190cd/sm/ep872.jpg","duration":310,"publication_date":"2009-09-18T21:57:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-dlthreevements","changefreq":"weekly","video":[{"title":"2009:E143 - DLThreevements","description":"Adam continues making bad puns and grabbing new DLC achievements in Star Wars: The Force Unleashed, covering the Skywalker Style, Hot Bot, and Jawa Juicer achievements for 15 G each.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-dlthreevements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6cfbaf2-fdcb-47ff-a82f-542ceb2c9e2f/sm/ep869.jpg","duration":210,"publication_date":"2009-09-17T15:58:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mission-accomplished-guide","changefreq":"weekly","video":[{"title":"2009:E218 - Mission Accomplished Guide","description":"Geoff shows how to get a very easy, and very easy to miss Achievement in MUA2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mission-accomplished-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53d28987-a6e7-4e47-acad-5f88debf261c/sm/ep868.jpg","duration":57,"publication_date":"2009-09-17T14:55:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-monitor-tan-gold-digger-part-four","changefreq":"weekly","video":[{"title":"2009:E142 - Monitor Tan, Gold Digger Part Four","description":"Geoff shows how to get the Conservationist Achievement, as well as where the hidden gold and intel is on \"Farm\". (Part Four)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-monitor-tan-gold-digger-part-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/adab9b60-3066-4089-88ca-61be5327c9eb/sm/ep867.jpg","duration":410,"publication_date":"2009-09-16T22:26:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-two-boss-fight-dlc-achievements","changefreq":"weekly","video":[{"title":"2009:E217 - Two Boss Fight DLC Achievements","description":"Adam shows us the two boss fight achievements (And the Quarterback is Toast and No More Lies, Old Man) from the new Tatooine Star Wars: The Force Unleashed DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-two-boss-fight-dlc-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd9d7626-1849-4575-bf37-749bed343613/sm/ep865.jpg","duration":326,"publication_date":"2009-09-14T19:28:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-monitor-tan-gold-digger-part-three","changefreq":"weekly","video":[{"title":"2009:E141 - Monitor Tan, Gold Digger Part Three","description":"Geoff and Burnie provide one of the least helpful walkthroughs in the history of video games. (Part Three)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-monitor-tan-gold-digger-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4acbb51c-ad74-4e41-a2dd-0ef5430919c7/sm/ep863.jpg","duration":361,"publication_date":"2009-09-11T20:17:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-life-is-harsh-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E216 - Life is Harsh Achievement Guide","description":"Knuckles shows us how to get the \"Life is Harsh\" Achievement in Trials: HD for the XBox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-life-is-harsh-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b691a534-9e51-4fb9-802c-dd1f0a3a47bb/sm/ep862.jpg","duration":628,"publication_date":"2009-09-11T19:43:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-monitor-tan-gold-digger-part-two","changefreq":"weekly","video":[{"title":"2009:E140 - Monitor Tan, Gold Digger Part Two","description":"Geoff shows how to get the Conservationist Achievement, as well as where the hidden gold and intel is on \"Dig Site\". (Part Two)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-monitor-tan-gold-digger-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e0315bed-3d90-4bfc-b6c1-b06ac44a49b4/sm/ep860.jpg","duration":270,"publication_date":"2009-09-10T00:58:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-6-killing-achievements","changefreq":"weekly","video":[{"title":"2009:E215 - 6 \"Killing\" Achievements","description":"Grab 6 achievements and 45G for killing some Half-Life 2 enemies in certain ways.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-6-killing-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":127,"publication_date":"2009-09-08T16:03:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-vorticough-and-two-points","changefreq":"weekly","video":[{"title":"2009:E139 - \"Vorticough\" and \"Two Points\"","description":"The two awkward achievements of Half-Life 2 even out to a nice 15G.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-vorticough-and-two-points","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":135,"publication_date":"2009-09-08T16:01:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-16-progress-achievements","changefreq":"weekly","video":[{"title":"2009:E214 - 16 \"Progress\" Achievements","description":"Grab 16 achievements worth 110G just by playing through Half-Life 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-16-progress-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":343,"publication_date":"2009-09-08T15:58:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-one-man-army-orange","changefreq":"weekly","video":[{"title":"2009:E138 - One Man Army","description":"Destroy 6 gunships in Half-Life 2 to get a mere 5G.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-one-man-army-orange","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":266,"publication_date":"2009-09-08T15:51:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-5-tricksy-killing-achievements","changefreq":"weekly","video":[{"title":"2009:E213 - 5 \"Tricksy Killing\" Achievements","description":"Use some tricksy tactics in Half-Life 2 to kill some people and grab 5 achievements worth 30G.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-5-tricksy-killing-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":166,"publication_date":"2009-09-08T15:51:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trialshd-full-throttle","changefreq":"weekly","video":[{"title":"2009:E137 - TrialsHD: Full Throttle","description":"Jack grabs live by the horns and picks up the Full Throttle achievement in TrialsHD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trialshd-full-throttle","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e71eb63f-c69d-48bf-becb-d48e086e3cff/sm/ep850.jpg","duration":90,"publication_date":"2009-09-04T04:10:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lambda-locator","changefreq":"weekly","video":[{"title":"2009:E136 - Lambda Locator","description":"Find all 45 Lambda caches in Half-Life 2 to get 15G.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lambda-locator","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":599,"publication_date":"2009-09-01T16:58:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-conservationist-gold-digger-part-one","changefreq":"weekly","video":[{"title":"2009:E134 - Conservationist, Gold Digger Part One","description":"Geoff shows how to get the Conservationist Achievement, as well as where the hidden gold and intel is on \"Train Station\". (Part One","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-conservationist-gold-digger-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1038d741-044b-4421-9290-96ec689ef91c/sm/ep844.jpg","duration":488,"publication_date":"2009-08-31T18:25:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-3-achievements-for-55g","changefreq":"weekly","video":[{"title":"2009:E211 - 3 Achievements for 55G","description":"Chickenbranches shows you an easy way to get 3 skirmish-related achievements for a total of 55G.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-3-achievements-for-55g","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":332,"publication_date":"2009-08-31T17:10:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-nine-achievements","changefreq":"weekly","video":[{"title":"2009:E210 - Nine Achievements","description":"BrownMan is back showing you how to get 9 more achievements in Madden NFL 10, including: Why Can't We Be Friends, Super Bowl MVP-like, Fight For the Fumble, Look What I Found, Nano, From Me to You, Frozen Tundra, and Sprint 2 Minute Drill.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-nine-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/817b4fe7-9385-4d37-91e3-919f1e35d118/sm/ep843.jpg","duration":353,"publication_date":"2009-08-31T17:09:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trials-hd-unyielding","changefreq":"weekly","video":[{"title":"2009:E131 - Trials HD: Unyielding","description":"Knuckles gives another look at how to unlock the Unyielding Achievement in Trials HD","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trials-hd-unyielding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/204f587d-121d-4f28-8439-8f19581fd62d/sm/ep838.jpg","duration":77,"publication_date":"2009-08-31T11:50:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trialshd-unyielding","changefreq":"weekly","video":[{"title":"2009:E130 - TrialsHD: Unyielding","description":"Jack can't stop, won't stop in this video for the Unyielding achievement in TrialsHD","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trialshd-unyielding","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d064e2a0-6740-452a-92db-4c46f6789d82/sm/ep837.jpg","duration":113,"publication_date":"2009-08-31T05:46:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trialshd-market-meltdown","changefreq":"weekly","video":[{"title":"2009:E129 - TrialsHD: Market Meltdown","description":"Jack hits the stock market and picks up the Market Meltdown achievement in TrialsHD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trialshd-market-meltdown","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/79b28705-e966-448e-be2a-2fd67b2dca09/sm/ep835.jpg","duration":134,"publication_date":"2009-08-29T01:37:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-riddler-trophy-guide-part-two","changefreq":"weekly","video":[{"title":"2009:E209 - Riddler Trophy Guide Part Two","description":"Church'sWife is back with Part Two of her Riddler Trophy Guide. This gripping episode also shows how to get Arkham Analyst, Born Free, and Cryptic Investigator.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-riddler-trophy-guide-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/30e13ed8-a63a-4ad9-9dad-30fe15560a0b/sm/ep834.jpg","duration":316,"publication_date":"2009-08-27T14:53:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-trialshd-strike","changefreq":"weekly","video":[{"title":"2009:E127 - TrialsHD: Strike!","description":"Jack picks up the Strike! achievement in TrialsHD.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-trialshd-strike","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/84a74041-1e47-42ad-8de9-ff391939c1f4/sm/ep832.jpg","duration":90,"publication_date":"2009-08-27T11:20:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-necromantic-dlc-pack","changefreq":"weekly","video":[{"title":"2009:E126 - Necromantic DLC Pack","description":"Geoff and Jack and Burnie show off the new Castle Crashers DLC Pack \"Necromantic\".","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-necromantic-dlc-pack","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/03defe8c-c5ad-4af4-950a-cb4563e3f0ec/sm/ep831.jpg","duration":119,"publication_date":"2009-08-26T21:11:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-shadow-complex-walkin-on-water","changefreq":"weekly","video":[{"title":"2009:E125 - Shadow Complex - Walkin' on Water","description":"Jack shows us how to get the achievement \"Walkin on Water\" in Shadow Complex.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-shadow-complex-walkin-on-water","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fe6db32c-2f18-443c-adbd-a21d73339698/sm/ep829.jpg","duration":47,"publication_date":"2009-08-26T06:27:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-riddler-trophy-guide-part-one","changefreq":"weekly","video":[{"title":"2009:E207 - Riddler Trophy Guide Part One","description":"\"ChurchesWife brings you part one of her Riddler Trophy guide. And a few achievements to appease you rabid fanboys.)\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-riddler-trophy-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d4ae851-9d98-431d-8436-51503b32bbd7/sm/ep827.jpg","duration":273,"publication_date":"2009-08-25T17:04:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-no-fear-and-feared-part-3","changefreq":"weekly","video":[{"title":"2009:E124 - No Fear & Feared Part 3","description":"Map 3 - Construction.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-no-fear-and-feared-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":481,"publication_date":"2009-08-21T15:51:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-omaha-steaks-delicious-get-over-yourselves-lay-off-the-caffeine","changefreq":"weekly","video":[{"title":"2009:E123 - Omaha Steaks, Delicious!, Get Over Yourselves, Lay Off the Caffeine","description":"Geoff shows us how to get the following three Achievements in Splosion Man: Omaha Steaks, Delicious!, Get Over Yourselves, Lay Off the Caffeine. As a bonus, Gav makes him look and sound stupid.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-omaha-steaks-delicious-get-over-yourselves-lay-off-the-caffeine","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6c9b2c3b-44ba-4eb1-907d-f074222935fa/sm/ep822.jpg","duration":153,"publication_date":"2009-08-18T21:42:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-5-acheivments-splosion-man-1","changefreq":"weekly","video":[{"title":"2009:E121 - 5 Acheivments: Splosion Man","description":"% acheivments in Splosion Man","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-5-acheivments-splosion-man-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":186,"publication_date":"2009-08-17T18:00:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-f-e-a-r-no-fear-and-feared-part-2","changefreq":"weekly","video":[{"title":"2009:E120 - F.E.A.R. - No Fear & Feared Part 2","description":"Map 2 - Rooftop.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-f-e-a-r-no-fear-and-feared-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":567,"publication_date":"2009-08-14T19:21:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-alien-archivist-part-one","changefreq":"weekly","video":[{"title":"2009:E119 - Alien Archivist Part One","description":"Community members \"Kite Shugo\" and \"Critical\" show us where to find the first 13 of 25 Archives in Mothership Zeta.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-alien-archivist-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0c533c3-6850-4e90-94fd-75bf8351f2ac/sm/ep815.jpg","duration":306,"publication_date":"2009-08-11T16:55:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-get-cracking-act-4","changefreq":"weekly","video":[{"title":"2009:E118 - Get Cracking, Act 4","description":"Fragger shows us how to get through Act Four of Wallace and Gromit for the Xbox Live Arcade, and get the \"Get Cracking\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-get-cracking-act-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/681c3384-6008-4895-b56b-cad611e67cc0/sm/ep813.jpg","duration":382,"publication_date":"2009-08-10T19:02:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crack-shot-no-go-gorgonzolla-act-3","changefreq":"weekly","video":[{"title":"2009:E117 - Crack shot, No go Gorgonzolla, Act 3","description":"Fragger shows us how to get through Act Three of Wallace and Gromit for the Xbox Live Arcade, and get the \"Crack Shot\" and No go Gorgonzolla\" Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crack-shot-no-go-gorgonzolla-act-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f54e4bf-648c-490b-ac4c-abf9be413cbb/sm/ep812.jpg","duration":571,"publication_date":"2009-08-10T18:14:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-yee-oww-get-cracking","changefreq":"weekly","video":[{"title":"2009:E116 - Yee-Oww!, Get Cracking","description":"Fragger shows us how to get the \"Yee-Oww!\" and \"Get Cracking\" Achievements in the Xbox LIve Arcade Game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-yee-oww-get-cracking","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a9bf4bea-44c0-490e-8288-9c1ff8e89aa1/sm/ep811.jpg","duration":426,"publication_date":"2009-08-10T17:05:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-memory-lane-yee-oww-get-cracking-bee-pleaser-mmm-cheese","changefreq":"weekly","video":[{"title":"2009:E115 - Memory Lane, Yee-Oww!, Get Cracking, Bee Pleaser, Mmm... Cheese","description":"Fragger shows us how to get \"Memory Lane,\" \"Yee-Oww,\" \"Get Cracking,\" \"Bee Pleaser\" and the \"Mmm... Cheese\" Achievements in the XBL game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-memory-lane-yee-oww-get-cracking-bee-pleaser-mmm-cheese","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3a8dea9-4f04-4e75-b5d3-3a68e02f5dc2/sm/ep810.jpg","duration":692,"publication_date":"2009-08-10T17:03:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bee-pleaser-act-2","changefreq":"weekly","video":[{"title":"2009:E114 - Bee Pleaser, Act 2","description":"Fragger shows us how to get through Act Two of Wallace and Gromit for Xbox Live Arcade, and get the \"Bee Pleaser\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bee-pleaser-act-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44ddaea9-1a07-40ad-873e-3fd1203f5ba3/sm/ep809.jpg","duration":711,"publication_date":"2009-08-10T16:58:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-snail-whisperer","changefreq":"weekly","video":[{"title":"2009:E113 - Snail Whisperer","description":"Fragger shows us how to get the \"Snail Whisperer\" Achievement in the Wallace & Gromit XBL game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-snail-whisperer","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/75cf622a-e876-43a6-a0cd-7cfa0d982762/sm/ep808.jpg","duration":428,"publication_date":"2009-08-10T16:56:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ye-oww-get-cracking-act-1","changefreq":"weekly","video":[{"title":"2009:E112 - Ye-oww!, Get Cracking, Act 1","description":"Fragger shows us how to get through Act One of Wallace and Gromit for Xbox Live Arcade, and get the \"Get Cracking\" and \"Ye-Oww!\" Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ye-oww-get-cracking-act-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a7aaf612-4339-4f62-99f0-c139681d989c/sm/ep807.jpg","duration":490,"publication_date":"2009-08-10T16:52:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trail-of-corpses-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E204 - Trail of Corpses Achievement Guide","description":"Achievement guide for the \"Trail of Corpses\" achievement in Prototype.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trail-of-corpses-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":88,"publication_date":"2009-08-04T17:05:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-f-e-a-r-no-fear-and-feared-part-1","changefreq":"weekly","video":[{"title":"2009:E111 - F.E.A.R. - No Fear & Feared Part 1","description":"Map 1 - Distribution.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-f-e-a-r-no-fear-and-feared-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":670,"publication_date":"2009-08-03T21:26:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-wars-dlc-2-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E202 - Halo Wars DLC 2 Achievement Guide","description":"Achievement guide for all of the newer DLC achievements in Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-wars-dlc-2-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":288,"publication_date":"2009-07-27T15:48:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-achievements-4","changefreq":"weekly","video":[{"title":"2009:E199 - Three Achievements","description":"Geoff shows how to get Old School, Sharp Tongue, and Ten Minutes Later... in Secret of Monkey Island on Xbox Live.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-achievements-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dd5cae45-490f-4a79-93c9-7664f9f7a62f/sm/ep787.jpg","duration":765,"publication_date":"2009-07-16T21:24:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/easter-eggs-2009","changefreq":"weekly","video":[{"title":"2009:E1 - Easter Eggs","description":"Geoff shows where to find some of the Easter Eggs hidden around Battlefield: 1943.","player_loc":"https://roosterteeth.com/embed/easter-eggs-2009","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a47e0390-5b10-4a33-a908-e658a50a9b35/sm/ep785.jpg","duration":161,"publication_date":"2009-07-14T18:07:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-overview-battlefield1942","changefreq":"weekly","video":[{"title":"2009:E195 - Achievement Overview","description":"Geoff gives a poorly thought out and rambling overview of the 12 Achievements in Battlefield: 1943.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-overview-battlefield1942","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63a6ba55-d238-430f-a3a7-61f85db4f0dc/sm/ep777.jpg","duration":281,"publication_date":"2009-07-10T21:22:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-seven-guide-w-artifacts-scans","changefreq":"weekly","video":[{"title":"2009:E194 - Level Seven Guide w/ artifacts, scans","description":"Geoff shows where to find the hidden artifacts and ghost scans for level seven of Ghostbusters: The Video Game.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-seven-guide-w-artifacts-scans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a52080a8-51f5-43e0-a300-eebc08b55ba4/sm/ep776.jpg","duration":244,"publication_date":"2009-07-09T18:52:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-one-down-on-the-ground-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E193 - One down, on the Ground! Achievement Guide","description":"Geoff shows how to get the One Down, On the Ground! Achievement in the Central Park Cemetery Level of Ghostbusters.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-one-down-on-the-ground-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b64974ab-aaab-46bb-b48e-f9d444d8b423/sm/ep771.jpg","duration":37,"publication_date":"2009-07-08T19:13:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hedgebuster-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E192 - Hedgebuster Achievement Guide","description":"Geoff shows how to get the Hedgebuster Achievement on Level Six of Ghostbusters.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hedgebuster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b7a34f36-3179-43e2-8d85-4e2a4d7ffad6/sm/ep769.jpg","duration":103,"publication_date":"2009-07-07T19:07:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-six-guide-w-artifacts-scans","changefreq":"weekly","video":[{"title":"2009:E191 - Level Six Guide w/ artifacts, scans","description":"Geoff shows where to find the hidden artifacts and ghost scans for level six of Ghostbusters: The Video Game.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-six-guide-w-artifacts-scans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ccfc7ed7-2b9a-4824-a3d6-47f8529b0438/sm/ep768.jpg","duration":183,"publication_date":"2009-07-07T19:03:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-f-e-a-r-explorer-part-4","changefreq":"weekly","video":[{"title":"2009:E100 - F.E.A.R. - Explorer Part 4","description":"Part 4 for the \"Explorer\" achievement in F.E.A.R.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-f-e-a-r-explorer-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":180,"publication_date":"2009-07-06T14:17:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ive-quit-better-jobs-than-this","changefreq":"weekly","video":[{"title":"2009:E99 - I've quit better jobs than this","description":"Geoff shows how to get the \"I've Quit Better Jobs Than This\" Achievement in Level Five of Ghostbusters.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ive-quit-better-jobs-than-this","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9de7cc35-80b4-4345-b382-f1ef48438fa9/sm/ep762.jpg","duration":81,"publication_date":"2009-07-03T20:47:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-5-guide-w-artifacts-fountains-scans","changefreq":"weekly","video":[{"title":"2009:E188 - Level 5 Guide w/ artifacts, fountains, scans","description":"Geoff shows you how to get all of the hidden artifacts, water fountains and scans for: Back off Man. I'm a Scientist, Ghostbusters Drinking Game, and Spores, Molds, and Fungus on level five.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-5-guide-w-artifacts-fountains-scans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ffa163d-f143-4fe7-b44e-ed804152aeb4/sm/ep761.jpg","duration":203,"publication_date":"2009-07-03T20:42:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-you-never-studied","changefreq":"weekly","video":[{"title":"2009:E98 - You Never Studied","description":"Geoff shows how to get the \"You Never Studied\" Achievement in level four of Ghostbusters: The Game, for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-you-never-studied","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5b5a4fa4-2c43-4145-b908-f0ed455508c4/sm/ep760.jpg","duration":92,"publication_date":"2009-06-30T20:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pajamachievements-season-1-pajamachievements-prototype","changefreq":"weekly","video":[{"title":"S1:E21 - Prototype","description":"The pajama kids tear up Manhattan with god-like powers.","player_loc":"https://roosterteeth.com/embed/pajamachievements-season-1-pajamachievements-prototype","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/20617d17-a73c-46dd-aea3-677c639ccf34/sm/ep758.jpg","duration":344,"publication_date":"2009-06-29T16:54:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-four-guide-w-artifacts-fountains-scans","changefreq":"weekly","video":[{"title":"2009:E187 - Level Four Guide w/ artifacts, fountains, scans","description":"Geoff shows you how to get all of the hidden artifacts, water fountains and scans for: Back off Man. I'm a Scientist, Ghostbusters Drinking Game, and Spores, Molds, and Fungus on level four: History Museum. As a bonus, he also shows us how to get the Slam Dunk Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-four-guide-w-artifacts-fountains-scans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a830bf46-05e9-4f19-8eea-0172bca958d5/sm/ep757.jpg","duration":170,"publication_date":"2009-06-29T16:50:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collectibles-part-3-dust-2","changefreq":"weekly","video":[{"title":"2009:E97 - Collectibles part 3 \"Dust #2\"","description":"Fragger continues to show us how to get all of the collectibles needed in Dust for: Lost Memories, Working the Land, and Free Your Mind.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collectibles-part-3-dust-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7c96f9e-a654-459e-97e5-79c009496548/sm/ep755.jpg","duration":525,"publication_date":"2009-06-26T14:29:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-but-the-kids-love-us-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E186 - But the Kids Love Us! Achievement Guide","description":"Geoff shows how to get the \"But the Kids Love Us!\" Achievement Guide in Ghostbusters: The Video Game.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-but-the-kids-love-us-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7be213d-9990-49e9-b442-4242b1b0fdfe/sm/ep754.jpg","duration":113,"publication_date":"2009-06-24T19:29:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-three-guide-w-artifacts-fountains-scans","changefreq":"weekly","video":[{"title":"2009:E185 - Level Three Guide w/ artifacts, fountains, scans","description":"Geoff shows you how to get all of the hidden artifacts, water fountains and scans for: Back off Man. I'm a Scientist, Ghostbusters Drinking Game, and Spores, Molds, and Fungus on level three: Public Library. As a bonus, he also shows us how to get the Slam Dunk Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-three-guide-w-artifacts-fountains-scans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd3bbee1-902b-479d-81a4-e003303513ca/sm/ep753.jpg","duration":232,"publication_date":"2009-06-24T19:28:53.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ghostbusters-level-2","changefreq":"weekly","video":[{"title":"2009:E96 - Ghostbusters: level 2","description":"Geoff shows you how to get all of the hidden artifacts, water fountains and scans for: Back off Man. I'm a Scientist, Ghostbusters Drinking Game, and Spores, Molds, and Fungus on level two: Times Square. As a bonus, he also shows us how to get I Love You When You Rough-House!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ghostbusters-level-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a0f9ebd4-f093-4040-8c32-3f3e4576f9a3/sm/ep751.jpg","duration":250,"publication_date":"2009-06-22T19:03:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-killer-in-pink-music-video-2-0","changefreq":"weekly","video":[{"title":"2009:E95 - \"Killer In Pink\" music video, 2.0","description":"A new \"Killer In Pink\" video cut by finchlynch! Written by Martha Marin, performed by Trocadero.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-killer-in-pink-music-video-2-0","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/50a0d4be-d181-437c-b320-584fe5bce884/sm/ep750.jpg","duration":130,"publication_date":"2009-06-22T17:35:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/pajamachievements-season-1-pajamachievements-preview-06","changefreq":"weekly","video":[{"title":"S1:E20 - Preview: 06","description":"Griffon prepares \"knuckle sandwiches\" for the next PJA party in honor of UFC.","player_loc":"https://roosterteeth.com/embed/pajamachievements-season-1-pajamachievements-preview-06","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2488014-7c20-4cb7-b0bb-55abc3a7235b/sm/ep749.jpg","duration":173,"publication_date":"2009-06-19T22:39:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-level-one-guide-w-artifacts-fountains-scans","changefreq":"weekly","video":[{"title":"2009:E184 - Level One Guide w/ artifacts, fountains, scans","description":"Geoff shows you how to get \"You gotta try that pole\" \"And you want me to keep it\", \"Total Protonic Reversal\", \"Kosher\", and all of the hidden artifacts, water fountains and scans for: Back off Man. I'm a Scientist, Ghostbusters Drinking Game, and Spores, Molds, and Fungus.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-level-one-guide-w-artifacts-fountains-scans","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6416caf6-83a5-44ce-abcb-7b8d81967ce3/sm/ep748.jpg","duration":355,"publication_date":"2009-06-19T14:58:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-prototype-polymath-achievement-guide-part-three","changefreq":"weekly","video":[{"title":"2009:E183 - Prototype: Polymath Achievement Guide Part Three","description":"Geoff shows us where to get the final 23 Hint Orbs in Prototype.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-prototype-polymath-achievement-guide-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d264a9c-7d1f-4039-a774-1a8d1192fbbf/sm/ep747.jpg","duration":450,"publication_date":"2009-06-19T14:47:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wolfenstein-3d-5-achievements","changefreq":"weekly","video":[{"title":"2009:E182 - Wolfenstein 3D (5 Achievements)","description":"Similiar to the DOOm achievement guide from a while back, I show you how to get 5 achievements on the very first level of the new XBLA game \"Wolfenstein 3D\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wolfenstein-3d-5-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":377,"publication_date":"2009-06-16T15:37:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-they-belong-in-a-museum-part-2","changefreq":"weekly","video":[{"title":"2009:E91 - They Belong in a Museum Part 2","description":"We find all the Treasures in Chapters 3 and 4 this time","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-they-belong-in-a-museum-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":449,"publication_date":"2009-06-16T15:18:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-polymath-achievement-guide-part-two","changefreq":"weekly","video":[{"title":"2009:E181 - Polymath Achievement Guide Part Two","description":"Geoff shows us how to find hidden \"hint\" collectibles 15-27 in Prototype.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-polymath-achievement-guide-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f839cbcb-0740-4e00-9253-cc641aef8673/sm/ep737.jpg","duration":266,"publication_date":"2009-06-15T18:09:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pajamachievements-season-1-pajamachievements-community-video-street-fighter-iv","changefreq":"weekly","video":[{"title":"S1:E19 - Community Video: Street Fighter IV","description":"In our first PJA community video ever, Barbara (aka BlawnDee), Keturah, Britannie (aka blawnder), Kristen, Farah, and Shaun show us Street Fighter 4 all the way from Canada!","player_loc":"https://roosterteeth.com/embed/pajamachievements-season-1-pajamachievements-community-video-street-fighter-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8150b0b3-ed32-4a45-93e8-d3f2450b8b4b/sm/ep735.jpg","duration":294,"publication_date":"2009-06-12T17:28:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-polymath-achievement-guide-part-one","changefreq":"weekly","video":[{"title":"2009:E180 - Polymath Achievement Guide Part One","description":"Geoff shows us how to find the first 14 hidden \"hint\" collectibles in Prototype. And yes, he realizes he calls it the wrong Achievement in the video and is an idiot.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-polymath-achievement-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55707e91-56d0-4032-985a-90a21eb8e087/sm/ep734.jpg","duration":288,"publication_date":"2009-06-11T21:33:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-collectibles-part-2-dust","changefreq":"weekly","video":[{"title":"2009:E90 - Collectibles part 2 \"Dust\"","description":"Fragger shows us how to get all of the collectibles needed in Dust for: Lost Memories, Working the Land, and Free Your Mind.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-collectibles-part-2-dust","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ef610ef-d310-4a04-aa21-cee712429726/sm/ep733.jpg","duration":754,"publication_date":"2009-06-11T20:53:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-speed-bumps-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E179 - Speed Bumps Achievement Guide","description":"Geoff shows the fastest and easiest way to get the Speed Bumps Achievement in Prototype on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-speed-bumps-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b8b181bf-052a-45ba-99a8-d948f5592bbd/sm/ep732.jpg","duration":145,"publication_date":"2009-06-10T21:26:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-first-thread-evolutionary-step-and-crossing-the-t-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E178 - The First Thread, Evolutionary Step, and Crossing the T Achievement Guide","description":"Geoff shows us how to get: The First Thread, Evolutionary Step, and Crossing the T in Prototype on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-first-thread-evolutionary-step-and-crossing-the-t-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b4c297c-ecfd-4d06-a0ec-631aa854e699/sm/ep731.jpg","duration":253,"publication_date":"2009-06-10T21:24:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-prototype-opening-cinematic","changefreq":"weekly","video":[{"title":"2009:E89 - Prototype: Opening Cinematic","description":"Take a look at the very cool opening cinematic for Prototype.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-prototype-opening-cinematic","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d171073-7d58-42cb-8e68-b66a0e101cac/sm/ep730.jpg","duration":222,"publication_date":"2009-06-10T21:21:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pajamachievements-season-1-pajamachievements-uno","changefreq":"weekly","video":[{"title":"S1:E18 - Uno","description":"The pj team forms an international pajama alliance via online Uno, and squeezes in some \"Truth or Dare\" and \"Never Have I Ever\".","player_loc":"https://roosterteeth.com/embed/pajamachievements-season-1-pajamachievements-uno","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d077462a-eb4e-4cae-9f2d-ffe2e1081868/sm/ep726.jpg","duration":335,"publication_date":"2009-06-05T15:08:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hello-world-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E177 - Hello World! Achievement Guide","description":"Geoff shows us how to get the Hello World!, Tis But a Scratch, Born Under a Lucky Star, Oil Strike, and Open Your Eyes Achievements in Fuel for the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hello-world-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/70fd9845-969d-4cde-8809-541687cb9bd0/sm/ep725.jpg","duration":363,"publication_date":"2009-06-05T14:10:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lost-memories-working-the-land-free-your-mind-part-one","changefreq":"weekly","video":[{"title":"2009:E88 - Lost Memories, Working the Land, Free Your Mind Part One","description":"Fragger shows us how to get all of the collectibles needed in Parker for: Lost Memories, Working the Land, and Free Your Mind.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lost-memories-working-the-land-free-your-mind-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/af602dfd-785f-4e4e-b766-c2940fbdee8b/sm/ep724.jpg","duration":849,"publication_date":"2009-06-03T15:06:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-they-belong-in-a-museum-part-1","changefreq":"weekly","video":[{"title":"2009:E87 - They Belong in a Museum Part 1","description":"WildRile shows us how to get the Treasures in RE5. (Part One)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-they-belong-in-a-museum-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":324,"publication_date":"2009-06-03T14:52:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-anonymous-red-shirt-award-1","changefreq":"weekly","video":[{"title":"2009:E85 - Anonymous Red-Shirt Award","description":"Be the first player eliminated in a multiplayer game.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-anonymous-red-shirt-award-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":230,"publication_date":"2009-05-29T15:13:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-and-relic-collector-level-2-part-2","changefreq":"weekly","video":[{"title":"2009:E84 - Master Treasure And Relic Collector Level 2 Part 2","description":"The rest of the treasures and he relic in chapter 2!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-and-relic-collector-level-2-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":748,"publication_date":"2009-05-29T03:16:25.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ssfiithdr-throwing-is-cheap","changefreq":"weekly","video":[{"title":"2009:E83 - SSFIITHDR Throwing is Cheap","description":"Achievement video explaining \"Throwing Is Cheap\" for Super street Fighter II Turbo HD Remix","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ssfiithdr-throwing-is-cheap","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":100,"publication_date":"2009-05-27T23:56:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-and-relic-collector-level-2-part-1","changefreq":"weekly","video":[{"title":"2009:E82 - Master Treasure And Relic Collector Level 2 Part 1","description":"The first 11 treasures in the second level in Tomb Raider Underworld","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-and-relic-collector-level-2-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":456,"publication_date":"2009-05-26T23:19:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-master-treasure-and-relic-collector-level-1","changefreq":"weekly","video":[{"title":"2009:E81 - Master Treasure And Relic Collector Level 1","description":"The first 26 treasures and first relic in Tomb Raider Underworld","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-master-treasure-and-relic-collector-level-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":744,"publication_date":"2009-05-26T03:45:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mine-sweeper","changefreq":"weekly","video":[{"title":"2009:E80 - Mine Sweeper","description":"Getting \"Mine Sweeper\" in WoW","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mine-sweeper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":62,"publication_date":"2009-05-21T14:48:58.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hannah-montana-the-movie-achievements","changefreq":"weekly","video":[{"title":"2009:E176 - Hannah Montana: The Movie Achievements","description":"I show you how to get a bunch of achievements in the future 2009 Game Of The Year !","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hannah-montana-the-movie-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":512,"publication_date":"2009-05-21T14:46:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-wars-dlc-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E175 - Halo Wars DLC Achievement Guide","description":"Achievement guide for all the new DLC achievements in Halo Wars","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-wars-dlc-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":323,"publication_date":"2009-05-21T14:46:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-x-men-origins-wolverine-clean-up-on-all-aisles-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E174 - X-Men Origins: Wolverine - Clean up on all aisles Achievement Guide","description":"Geoff shows us how to get the \"Clean up on all aisles\" Achievement in X-Men Origins: Wolverine.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-x-men-origins-wolverine-clean-up-on-all-aisles-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e54f148d-3f64-49d0-9dc3-0c90720f635b/sm/ep703.jpg","duration":177,"publication_date":"2009-05-18T18:00:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-x-men-origins-wolverine-ultimate-wolverine-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E173 - X-Men Origins: Wolverine - Ultimate Wolverine Achievement Guide","description":"Geoff shows us an easy way to get the Ultimate Wolverine Achievement, which requires you to fight four Wendigos at once... fight and win no less.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-x-men-origins-wolverine-ultimate-wolverine-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c3c2f353-2238-4a41-b5af-08e71b09db61/sm/ep701.jpg","duration":171,"publication_date":"2009-05-15T14:57:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-x-men-origins-wolverine-stick-around-threading-the-needle-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E172 - X-Men Origins: Wolverine - Stick Around, Threading the Needle Achievement Guide","description":"Geoff shows us how to get the \"Sticking Around\" and \"Threading the Needle\" Achievements in X-Men Origins: Wolverine.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-x-men-origins-wolverine-stick-around-threading-the-needle-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4bb32f78-1a47-4674-a892-6db94469b81d/sm/ep700.jpg","duration":182,"publication_date":"2009-05-14T19:20:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-found-wow-the-cake-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E171 - Found!, WoW!, The Cake Achievement Guide","description":"Geoff shows us how to get: Found!, WoW!, and The Cake in Wolverine.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-found-wow-the-cake-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59ae62ce-739e-4637-90c7-d2c717b5a37f/sm/ep699.jpg","duration":129,"publication_date":"2009-05-13T15:36:18.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-devils-brigade-part-four","changefreq":"weekly","video":[{"title":"2009:E79 - Devil's Brigade Part Four","description":"Geoff shows us where to get the final Dog Tags hidden in Chapters Four and Five of Wolverine. (Part 4 of 4)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-devils-brigade-part-four","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed4f0dd3-bafc-4b99-a0f5-3221a1c6a743/sm/ep698.jpg","duration":347,"publication_date":"2009-05-12T18:31:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-devils-brigade-part-three","changefreq":"weekly","video":[{"title":"2009:E78 - Devil's Brigade Part Three","description":"Geoff shows us where to get the Dog Tags hidden in Chapter Three of Wolverine. (Part 3)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-devils-brigade-part-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d80b36e0-e55e-4ac4-90ca-cbe0bd00c073/sm/ep697.jpg","duration":450,"publication_date":"2009-05-11T15:39:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-devils-brigade-part-two","changefreq":"weekly","video":[{"title":"2009:E77 - Devil's Brigade Part Two","description":"Geoff shows us where to get the 22 Dog Tags hidden in Chapter Two of Wolverine. (Part 2)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-devils-brigade-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4589117a-4f8c-4351-a141-a9a1496e0ba5/sm/ep695.jpg","duration":275,"publication_date":"2009-05-06T21:41:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-devils-brigade-part-one","changefreq":"weekly","video":[{"title":"2009:E76 - Devil's Brigade Part One","description":"Geoff shows us where to get the 22 Dog Tags hidden in Chapter One of Wolverine. (Part 1)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-devils-brigade-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/043d2a5c-e7aa-4d5a-9eb3-ad0e10f64e03/sm/ep692.jpg","duration":419,"publication_date":"2009-05-05T19:40:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chaos-master-part-3-of-3","changefreq":"weekly","video":[{"title":"2009:E75 - Chaos Master - Part 3 of 3","description":"Last part of 3, showing how to get the Chaos Master Achievement in Sonic 2, as well as Super Sonic and Extended Super immediate afterward.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chaos-master-part-3-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d18b204-8fa2-4d80-a3f2-1e275948b095/sm/ep691.jpg","duration":289,"publication_date":"2009-05-04T23:02:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hannah-montana-5-achievements","changefreq":"weekly","video":[{"title":"2009:E170 - Hannah Montana: 5 Achievements","description":"Knuckles shows us the first 300 Gamerscore in a game so bad, no wonder 95% of the video is in fast forward.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hannah-montana-5-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dcd641a7-ca9d-4982-9908-8ac703ca806f/sm/ep690.jpg","duration":362,"publication_date":"2009-04-30T14:22:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bad-blood-heart-stopper-masters-of-removal-guide","changefreq":"weekly","video":[{"title":"2009:E169 - Bad Blood, Heart Stopper, Masters of Removal Guide","description":"Geoff shows us how to get Bad Blood, Heart Stopper, and Masters of Removal in Resident Evil 5.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bad-blood-heart-stopper-masters-of-removal-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/59efd51e-1540-42ee-ac17-0abca64777ce/sm/ep688.jpg","duration":240,"publication_date":"2009-04-29T15:48:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-2-chaos-master-part-1-of-3","changefreq":"weekly","video":[{"title":"2009:E73 - Sonic 2 - Chaos Master Part 1 of 3","description":"Community video guide detailing 4 achievements in Sonic 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-2-chaos-master-part-1-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":317,"publication_date":"2009-04-24T14:58:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fear-explorer-part-3","changefreq":"weekly","video":[{"title":"2009:E72 - FEAR - Explorer Part 3","description":"Part 3 for the \"Explorer\" achievement in F.E.A.R.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fear-explorer-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":263,"publication_date":"2009-04-24T14:58:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-f-e-a-r-explorer-part-2","changefreq":"weekly","video":[{"title":"2009:E71 - F.E.A.R. - Explorer Part 2","description":"Part 2 of the F.E.A.R. Explorer achievement guide.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-f-e-a-r-explorer-part-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/656787bf-ff37-40d2-9faa-786c4d961986/sm/1601067-1508344886865-ah_default.jpg","duration":277,"publication_date":"2009-04-24T14:48:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-head-cheese-meat-your-maker-feeling-punchy-draw-guide","changefreq":"weekly","video":[{"title":"2009:E168 - Head Cheese, Meat Your Maker, Feeling Punchy, Draw Guide","description":"WildRile shows us how to get: Head Cheese, Meat Your Maker, Feeling Punchy, and Draw in Eat Lead: The Return of Matt Hazard.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-head-cheese-meat-your-maker-feeling-punchy-draw-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e7d436ab-5cfa-4049-86bb-22f8167314d9/sm/ep681.jpg","duration":284,"publication_date":"2009-04-24T14:34:17.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lead-aspirin-go-into-the-light-drive-by-egg-on-your-face-guide","changefreq":"weekly","video":[{"title":"2009:E167 - Lead Aspirin, Go Into the Light, Drive By, Egg On Your Face Guide","description":"Geoff shows us how to get: Lead Aspirin (level 3-2), Go Into the Light (level 4-1), Drive By (level 2-3), and Egg On Your Face (1-2) in Resident Evil 5.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lead-aspirin-go-into-the-light-drive-by-egg-on-your-face-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b70f15a1-165d-4a85-be3a-2b189622f204/sm/ep680.jpg","duration":192,"publication_date":"2009-04-23T17:11:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-level-specific-achievements","changefreq":"weekly","video":[{"title":"2009:E166 - Three level specific Achievements","description":"Gingerlink with another Banjo Kazooie achievement guide for three of the level specific achievements. Masive Damage, Test your Strength and Great Balls of Fire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-level-specific-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fcef290b-d88f-4bb1-9e62-103b189a563e/sm/ep678.jpg","duration":290,"publication_date":"2009-04-22T20:36:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-codwaw-raygun","changefreq":"weekly","video":[{"title":"2009:E69 - Cod:WaW Raygun","description":"How to find the Raygun in the Campaign stage of Little Resistance","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-codwaw-raygun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47e32aae-60b7-4910-a06e-499fd12cc4d6/sm/ep677.jpg","duration":121,"publication_date":"2009-04-20T20:54:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-sonic-2-fast-emerald-and-chemical","changefreq":"weekly","video":[{"title":"2009:E68 - Sonic 2: Fast Emerald and Chemical","description":"Community Video covering the two time based Achievements in Sonic 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-sonic-2-fast-emerald-and-chemical","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2559c8c1-8a28-46f1-890e-94524f776883/sm/ep676.jpg","duration":132,"publication_date":"2009-04-20T20:52:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-be-the-knife-fireworks-baptism-by-fire-guide","changefreq":"weekly","video":[{"title":"2009:E164 - Be the Knife, Fireworks, Baptism by Fire Guide","description":"Geoff shows us how to get: Be the Knife, Fireworks, and Baptism by Fire in Resident Evil 5.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-be-the-knife-fireworks-baptism-by-fire-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/83b7135d-c0a9-452d-90bf-4b546b2108a2/sm/ep671.jpg","duration":121,"publication_date":"2009-04-14T20:08:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-wars-2-achievements","changefreq":"weekly","video":[{"title":"2009:E163 - Halo Wars - 2 Achievements","description":"Achievement guide for \"Penny Pincher\" & \"Big Al's Scooter \".","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-wars-2-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/61c20809-485b-4ffd-b9d5-63bbd3ceb289/sm/ep670.jpg","duration":150,"publication_date":"2009-04-13T17:49:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ruined-citadel-runner-prince-of-persia","changefreq":"weekly","video":[{"title":"2009:E67 - Ruined Citadel Runner - Prince of Persia","description":"Gingerlink with a run-and-jumpthrough of the first of the runner achievements in Prince of Persia","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ruined-citadel-runner-prince-of-persia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8f4a792f-0938-47fa-9a19-fcef203e4f70/sm/ep669.jpg","duration":327,"publication_date":"2009-04-13T17:46:50.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-frank-the-pimp-guide","changefreq":"weekly","video":[{"title":"2009:E162 - Frank The Pimp Guide","description":"Dizzavy shows us how to get the Frank The Pimp and Tour Guide Achievements in Dead Rising.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-frank-the-pimp-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d7465f2-ec23-414b-b0fd-c6d04debc600/sm/ep668.jpg","duration":361,"publication_date":"2009-04-10T20:07:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-superstar-part-twosies","changefreq":"weekly","video":[{"title":"2009:E66 - SuperStar: Part Twosies","description":"Kibs shows us how to get 12 more stars in MIrror's Egde on the new DLC maps","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-superstar-part-twosies","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8c611a99-d95a-485f-a2ee-4fca179b1fb6/sm/ep667.jpg","duration":301,"publication_date":"2009-04-10T14:13:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-doctor-of-the-peggle-arts","changefreq":"weekly","video":[{"title":"2009:E65 - Doctor of the Peggle Arts","description":"Knuckles shows off the final stage of Peggle to nab this rare Achievement","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-doctor-of-the-peggle-arts","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/863d8e9d-0d42-4bc3-894a-faf0289b5b21/sm/ep664.jpg","duration":147,"publication_date":"2009-04-08T14:27:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-executions-walkthrough","changefreq":"weekly","video":[{"title":"2009:E64 - Executions Walkthrough","description":"In this video Gus shows you all the different executions available to you in the game. There is an achievement associated with this (Enforcer) but I don't show the achievement unlocking.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-executions-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d1f975b-93af-45ab-b98d-7cc786439510/sm/ep663.jpg","duration":180,"publication_date":"2009-04-07T19:00:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-11-achievements","changefreq":"weekly","video":[{"title":"2009:E160 - 11 Achievements","description":"Geoff shows us how to rake in the Gamerscore by getting 11 Ninja Blade Achievements in about 15 minutes.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-11-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c712c09f-002a-43d4-a670-265b212a5cdf/sm/ep662.jpg","duration":250,"publication_date":"2009-04-07T16:55:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-halo-3-5-more-mythic-achievements","changefreq":"weekly","video":[{"title":"2009:E159 - Halo 3: 5 more Mythic Achievements","description":"Knuckles nabs a slew of Mythic Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-halo-3-5-more-mythic-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c371aff0-d797-4110-8153-55c250cb93a3/sm/ep661.jpg","duration":157,"publication_date":"2009-04-06T18:47:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-badge-of-honor-bonus-fireworks","changefreq":"weekly","video":[{"title":"2009:E63 - Badge of Honor + Bonus: Fireworks","description":"Final Part of Badge of Honor, plus a bonus achievement, fireworks!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-badge-of-honor-bonus-fireworks","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6daf8290-8f48-49b2-b739-4bc5e360a6ca/sm/ep659.jpg","duration":271,"publication_date":"2009-04-06T16:22:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-badge-of-honor-part-4","changefreq":"weekly","video":[{"title":"2009:E62 - Badge of Honor Part 4","description":"Part 4/5 of the awesome videos by Kibs.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-badge-of-honor-part-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/739dddab-e3fd-400a-9206-02fa0bcf6f32/sm/ep658.jpg","duration":204,"publication_date":"2009-04-06T16:17:53.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-badge-of-honor-part-3","changefreq":"weekly","video":[{"title":"2009:E61 - Badge of Honor Part 3","description":"Poor planning on my part cause this video to be short, hooray.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-badge-of-honor-part-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3f7653bc-e6c4-4d2d-b040-e82833a59afc/sm/ep657.jpg","duration":113,"publication_date":"2009-04-06T16:11:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-badge-of-honorpart-2","changefreq":"weekly","video":[{"title":"2009:E60 - Badge of Honor:Part 2","description":"Pretty dishonorable if you ask me","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-badge-of-honorpart-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a67ac8cf-60ef-4ad1-847b-3ab352e606f5/sm/ep656.jpg","duration":199,"publication_date":"2009-04-06T16:11:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-badge-of-honor-part-1","changefreq":"weekly","video":[{"title":"2009:E59 - Badge of Honor: Part 1","description":"Part one of a 5-part video guide, montage style, sorry, mic broke.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-badge-of-honor-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f965f7d7-1ec0-444a-ae49-a69ac9d6ed3d/sm/ep655.jpg","duration":214,"publication_date":"2009-04-06T16:11:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-superstar-part-1","changefreq":"weekly","video":[{"title":"2009:E58 - Superstar Part 1","description":"Kibs is going to be walking you through getting a Time Trial rating of 90.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-superstar-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a75142e-fbf8-43c1-8951-6d1764f3a733/sm/ep654.jpg","duration":351,"publication_date":"2009-04-06T15:51:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crime-rings","changefreq":"weekly","video":[{"title":"2009:E57 - Crime Rings","description":"Walkthrough showing the following achievements from Godfather II: First Crime Ring Three Crime Rings Five Crime Rings Organized Crime","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crime-rings","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6bcbad48-b313-487b-9c0a-639f58bf8834/sm/ep652.jpg","duration":293,"publication_date":"2009-04-03T23:12:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fallout-3-mill-worker-80-100-achievement-walkthrough","changefreq":"weekly","video":[{"title":"2009:E158 - Fallout 3 Mill Worker (80-100) Achievement Walkthrough","description":"Adam obtains the final 20 Steel Ingots and finishes off Fallout 3's Mill Worker Achievement from The Pitt DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fallout-3-mill-worker-80-100-achievement-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd467c47-e4b5-4a7e-911e-61889f9d8084/sm/ep651.jpg","duration":266,"publication_date":"2009-04-03T14:49:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fallout-3-mill-worker-68-80-achievement-walkthrough","changefreq":"weekly","video":[{"title":"2009:E157 - Fallout 3 Mill Worker (68-80) Achievement Walkthrough","description":"Adam rambles incoherently about some more Steel Ingots in the 4th of 5 guides for the Fallout 3 achievement Mill Worker.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fallout-3-mill-worker-68-80-achievement-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ca8cde5a-65f0-460f-a470-29c2904ee122/sm/ep650.jpg","duration":189,"publication_date":"2009-04-02T20:32:06.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-family-tree-achievements","changefreq":"weekly","video":[{"title":"2009:E156 - Family Tree Achievements","description":"A walkthrough of the achievements in Godfather 2 related to the family tree. Included in this video are Right Hand Man, Second in Command and This Thing of Ours","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-family-tree-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b49c2c7b-5a3a-453e-9b9f-7be817772673/sm/ep649.jpg","duration":192,"publication_date":"2009-04-02T18:47:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mill-worker-43-68-achievement-walkthrough","changefreq":"weekly","video":[{"title":"2009:E155 - Mill Worker (43-68) Achievement Walkthrough","description":"Adam hits the motherlode and delivers another 24 Steel Ingots in Fallout 3's Mill Worker achievement from The Pitt DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mill-worker-43-68-achievement-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49863f44-53ef-4982-a5c8-5667eefc9c9e/sm/ep648.jpg","duration":239,"publication_date":"2009-04-01T23:32:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-killer-achievements","changefreq":"weekly","video":[{"title":"2009:E154 - Killer Achievements","description":"A gruesome compilation of some of the achievements involving offing mobsters. The achievements are: 25 Massacred, 100 Whacked, Contract Killer, Full of Lead, and 250 Iced","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-killer-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5488f8c5-4840-453e-bbe2-24955b7a0822/sm/ep646.jpg","duration":216,"publication_date":"2009-04-01T21:32:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mill-worker-21-43-achievement-walkthrough","changefreq":"weekly","video":[{"title":"2009:E153 - Mill Worker (21-43) Achievement Walkthrough","description":"Adam continues the search for 100 Steel Ingots in Fallout 3's Mill Worker Achievement from The Pitt DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mill-worker-21-43-achievement-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2a372d13-7bc1-4f5b-8632-65bb26d8337a/sm/ep645.jpg","duration":306,"publication_date":"2009-03-31T23:02:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-three-for-thirty-five","changefreq":"weekly","video":[{"title":"2009:E56 - Three for Thirty Five","description":"Walkthrough for:\r\nGun Smuggler\r\nLockpicker\r\nIt's Not Personal","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-three-for-thirty-five","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d6baf53a-e56a-496b-ac75-3044b389231c/sm/ep644.jpg","duration":189,"publication_date":"2009-03-31T21:28:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-three-for-fifteen","changefreq":"weekly","video":[{"title":"2009:E55 - Three for Fifteen","description":"Walkthrough for the following Achievements:\r\nMobFace\r\nGetting Made\r\nLet Me Upgrade You","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-three-for-fifteen","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e8e92fa-838b-4483-b094-fab923e5459c/sm/ep643.jpg","duration":180,"publication_date":"2009-03-31T01:04:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-four-for-twenty","changefreq":"weekly","video":[{"title":"2009:E54 - Four for Twenty","description":"Walkthrough for the following Achievements:\r\nBank Job\r\nFortified Venue\r\nTorch the Joint\r\nPulling the Strings","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-four-for-twenty","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eabff217-e5e4-487d-953a-bdd2a1bffe71/sm/ep642.jpg","duration":222,"publication_date":"2009-03-31T00:59:43.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mill-worker-0-21-achievement-walkthrough","changefreq":"weekly","video":[{"title":"2009:E152 - Mill Worker (0-21) Achievement Walkthrough","description":"Adam locates, activates, and verbiates the first 21 Ingots of Fallout 3's The Pitt achievement Mill Worker.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mill-worker-0-21-achievement-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/01d2527a-683a-4232-aaa2-fa1606b7fb06/sm/ep641.jpg","duration":266,"publication_date":"2009-03-30T22:36:54.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ssfiithdr-sagats-scar","changefreq":"weekly","video":[{"title":"2009:E53 - SSFIITHDR Sagats Scar","description":"Video explaining how to get the \"Sagat's Scar\" achievement in Super Street Fighter 2 Turbo HD Remix","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ssfiithdr-sagats-scar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5c5a9f04-0b5a-4a25-a22d-29d0e28b6e53/sm/ep640.jpg","duration":77,"publication_date":"2009-03-27T23:31:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-zombie-chopper","changefreq":"weekly","video":[{"title":"2009:E52 - Zombie Chopper","description":"Fight your way through Ravenholm with only the gravity gun to grab 3 achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-zombie-chopper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9a4530e3-133b-4375-b42d-a423663aa847/sm/ep639.jpg","duration":329,"publication_date":"2009-03-26T21:46:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-a-cut-above","changefreq":"weekly","video":[{"title":"2009:E51 - A Cut Above","description":"Girls don't need pajamas to get Gamerscore.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-a-cut-above","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1022896d-77b4-4758-a06c-d845edfe40f0/sm/ep635.jpg","duration":86,"publication_date":"2009-03-25T05:01:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-the-works","changefreq":"weekly","video":[{"title":"2009:E50 - The Works","description":"Kibs shows that it doesn't take all that much work.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-the-works","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/68fa3b12-3a72-43f1-bc5a-1f7ca59b7e03/sm/ep633.jpg","duration":165,"publication_date":"2009-03-23T20:42:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-awww-too-bad-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E150 - Awww, Too Bad Achievement Guide","description":"Knuckles shows how to suck and still get Achievements in Halo 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-awww-too-bad-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d63fc28-0d32-434b-b197-808509ace686/sm/ep631.jpg","duration":86,"publication_date":"2009-03-19T16:21:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-left-4-dead-witch-hunter-pyrotechnician-hunter-punter","changefreq":"weekly","video":[{"title":"2009:E49 - Left 4 Dead - Witch Hunter. Pyrotechnician, Hunter Punter.","description":"3 achievements for a total of 50'Gs","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-left-4-dead-witch-hunter-pyrotechnician-hunter-punter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d99887a-16b4-4c8e-a337-afd171a7d78d/sm/ep630.jpg","duration":164,"publication_date":"2009-03-19T16:09:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-silver-tongued-devil","changefreq":"weekly","video":[{"title":"2009:E47 - Silver-Tongued Devil","description":"Glitched 50 speech challenges","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-silver-tongued-devil","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/97c992ca-58ab-4e60-9b30-c744209c829e/sm/ep628.jpg","duration":86,"publication_date":"2009-03-19T15:51:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-bird-on-the-ground","changefreq":"weekly","video":[{"title":"2009:E46 - Bird on the Ground","description":"Kaisonic shows us the \"Bird on the Ground\" achievement in Call of Duty 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-bird-on-the-ground","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc257dfd-6621-4e38-ae94-951cf5d3fe60/sm/ep626.jpg","duration":42,"publication_date":"2009-03-19T15:44:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-banjo-kazooie-nandb-start-to-free-the-showdown-six-andvigilante","changefreq":"weekly","video":[{"title":"2009:E45 - Banjo Kazooie N&B: Start to Free the Showdown Six &Vigilante","description":"Roundin' up the hooligans.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-banjo-kazooie-nandb-start-to-free-the-showdown-six-andvigilante","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3753746b-20c9-4076-b7c8-4a6c8fc6cf92/sm/ep625.jpg","duration":117,"publication_date":"2009-03-19T15:43:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-banjo-kazooie-nandb-head-for-heights","changefreq":"weekly","video":[{"title":"2009:E44 - Banjo Kazooie N&B: Head for Heights","description":"A nice view and some extras...","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-banjo-kazooie-nandb-head-for-heights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5007a32-078c-4b4a-83e7-5e4784ebb3cd/sm/ep624.jpg","duration":176,"publication_date":"2009-03-19T15:41:32.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-my-horse-and-me-2-two-achievements","changefreq":"weekly","video":[{"title":"2009:E148 - My Horse and Me 2: Two Achievements","description":"\"Master of Race with Katelyn\" and \"Grooming Expert\" achievement guide.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-my-horse-and-me-2-two-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e91168c7-ebb7-4001-b2f1-36d9a7455452/sm/ep623.jpg","duration":156,"publication_date":"2009-03-19T15:41:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-skate-2-achievement-assortment","changefreq":"weekly","video":[{"title":"2009:E147 - Skate 2 achievement assortment","description":"skitchin' it up, stairmaster, juggling chainsaws, uninsurable, sandbag","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-skate-2-achievement-assortment","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/66f3cd3b-af9c-4c5d-ba58-4e66d292120a/sm/ep621.jpg","duration":386,"publication_date":"2009-03-19T15:39:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-videossf2thdr-combomania","changefreq":"weekly","video":[{"title":"2009:E41 - Community Video:SSF2THDR Combomania","description":"\"Xzeno\" will teach you the easiest way to get a 7-Hit Chain combo","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-videossf2thdr-combomania","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fd2acf13-7f1f-414f-b1d7-be9537a38964/sm/ep619.jpg","duration":84,"publication_date":"2009-03-19T15:34:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-banjo-and-kazooie-nandb-bbq-beef-and-caught-on-camera","changefreq":"weekly","video":[{"title":"2009:E40 - Banjo and Kazooie N&B: BBQ Beef and Caught on Camera","description":"See title. It's all you need.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-banjo-and-kazooie-nandb-bbq-beef-and-caught-on-camera","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a8707cf-4a23-47be-acc1-35d374031d2f/sm/ep618.jpg","duration":117,"publication_date":"2009-03-19T15:32:43.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-thinkin-about-my-doorbell-guide","changefreq":"weekly","video":[{"title":"2009:E146 - Thinkin About My Doorbell Guide","description":"Geoff shows how to get the \"Thinkin About My Doorbell\" Achievement, as well as the game's final skull and black box.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-thinkin-about-my-doorbell-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2085610f-a316-4706-991f-19b414199ca2/sm/ep617.jpg","duration":243,"publication_date":"2009-03-18T20:19:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-beaming-with-pride-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E144 - Beaming With Pride Achievement Guide","description":"Geoff shows us how to get the \"Beaming With Pride\" Achievement, in addition to the hidden skull and black box on level 13 of Halo Wars. Special foley work by Burnie Burns.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-beaming-with-pride-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9fcfadde-78c6-4672-bc78-f4929100e8b2/sm/ep615.jpg","duration":174,"publication_date":"2009-03-16T19:47:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tank-dropper-achievement-1","changefreq":"weekly","video":[{"title":"2009:E143 - Tank Dropper Achievement","description":"Knuckles shows us another way to get the Tank Dropper Achievement in Halo 3: Mythic.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tank-dropper-achievement-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bf1dfa1b-8610-4329-be37-a1794006e1f9/sm/ep614.jpg","duration":101,"publication_date":"2009-03-16T15:27:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-handy-with-tools-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E142 - Handy With Tools Achievement Guide","description":"Geoff shows us how to get the \"Handy With Tools\" Achievement, as well as the hidden skull and black box on level 12 of Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-handy-with-tools-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3db31697-b574-45c8-b3f7-9e58e68b0652/sm/ep612.jpg","duration":133,"publication_date":"2009-03-13T19:01:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-untouchable-achievement-guide-3","changefreq":"weekly","video":[{"title":"2009:E141 - Untouchable Achievement Guide","description":"Geoff and Gavin fail miserably while trying to get the Untouchable Achievement in Watchmen: The End is Nigh.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-untouchable-achievement-guide-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d59147c1-a999-4359-a060-a7c5f3798d82/sm/ep611.jpg","duration":338,"publication_date":"2009-03-12T21:21:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-battened-down-the-hatches-guide","changefreq":"weekly","video":[{"title":"2009:E140 - Battened Down the Hatches Guide","description":"Geoff (that's me) shows us how to get the \"Battened Down the Hatches\" Achievement, in addition to the Hidden Skull and Black Box on level 11 of Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-battened-down-the-hatches-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba927ae9-7be8-473c-9201-950792e5bd1f/sm/ep610.jpg","duration":167,"publication_date":"2009-03-12T19:37:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-procrastinator-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E139 - The Procrastinator Achievement Guide","description":"HooBoy, Geoff shows us how to get the Procrastinator Achievement, while also getting the 10th Hidden Skull and 10th Black Box in Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-procrastinator-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ec8c3908-9db7-40cd-af66-2c6f26ed4553/sm/ep608.jpg","duration":110,"publication_date":"2009-03-11T19:16:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-sweet-naptime-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E138 - Sweet Naptime Achievement Guide","description":"Geoff shows how to get the \"Sweet Naptime\" Achievement, as well as the hidden skull and black box on level nine of Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-sweet-naptime-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f887bcc9-c222-4067-abca-180b3e2fe322/sm/ep607.jpg","duration":178,"publication_date":"2009-03-10T23:38:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tank-dropper-achievement","changefreq":"weekly","video":[{"title":"2009:E137 - Tank Dropper Achievement","description":"Gav and Geoff hold hand, sing songs, and show the world the most creative ways to get the \"Tank Dropper\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tank-dropper-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ef261202-7378-41d3-a1ed-a4267b1657cc/sm/ep606.jpg","duration":331,"publication_date":"2009-03-10T21:08:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-ramblin-man-and-8th-hidden-skull","changefreq":"weekly","video":[{"title":"2009:E39 - Ramblin Man and 8th Hidden Skull","description":"Geoff shows is how to get both the Ramblin Man Achievement, and the eighth hidden skull in Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-ramblin-man-and-8th-hidden-skull","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/80e4054e-e165-4a94-ba11-3c911cdd3f6d/sm/ep604.jpg","duration":196,"publication_date":"2009-03-10T01:18:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-endangered-species-part-8","changefreq":"weekly","video":[{"title":"2009:E38 - Endangered Species Part 8","description":"Knuckles shows us where to kill another batch of the pigeons (29-56) in Alderney. (Part Eight of Eight)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-endangered-species-part-8","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/866db007-00dc-4d27-a39d-2adbe6410514/sm/ep603.jpg","duration":312,"publication_date":"2009-03-09T19:27:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-micro-manager-and-7th-hidden-skull","changefreq":"weekly","video":[{"title":"2009:E37 - Micro Manager & 7th Hidden Skull","description":"Geoff fights through his impending obesity to show us how to get the Micro Manager Achievement, as well as the seventh hidden skull in Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-micro-manager-and-7th-hidden-skull","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55deeae7-fdf4-430a-b049-5a1d94224006/sm/ep602.jpg","duration":168,"publication_date":"2009-03-06T17:17:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-jump-shot-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E136 - Jump Shot Achievement Guide","description":"In this VERY special Achievement Hunter video, Geoff and Gavin team up to do the Jump Shot Achievement in L4D. Do not miss this gripping tale.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-jump-shot-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b0ba25b1-1839-41e3-a714-e33a689c08d2/sm/ep601.jpg","duration":389,"publication_date":"2009-03-05T20:11:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-rhino-hugger-and-6th-hidden-skull","changefreq":"weekly","video":[{"title":"2009:E36 - Rhino Hugger & 6th Hidden Skull","description":"Geoff shows us how to get the Rhino Hugger Achievement, as well as the sixth hidden skull in Halo Wars.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-rhino-hugger-and-6th-hidden-skull","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/17bc773e-0a4d-49c5-8e87-ca658eeede7c/sm/ep600.jpg","duration":133,"publication_date":"2009-03-05T18:04:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-five-mythic-achievements","changefreq":"weekly","video":[{"title":"2009:E135 - Five Mythic Achievements","description":"Adam gives us tips to get the following Achievements in the Halo Mythic Maps: Hammer Time, Tank Dropper, Double Double, Get the Horns, and Killtacular.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-five-mythic-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/06980c80-0856-49f4-9596-1e65e41de988/sm/ep598.jpg","duration":188,"publication_date":"2009-03-04T22:16:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/pajamachievements-season-1-pajamachievements-soul-calibur-iv","changefreq":"weekly","video":[{"title":"S1:E9 - Soul Calibur IV","description":"The pajamachievers start the night off right with some death and destruction.","player_loc":"https://roosterteeth.com/embed/pajamachievements-season-1-pajamachievements-soul-calibur-iv","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62ec5c1d-ed42-4207-bedc-3a9549ff7982/sm/ep597.jpg","duration":261,"publication_date":"2009-03-04T17:35:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-endless-fun-and-hidden-skull","changefreq":"weekly","video":[{"title":"2009:E35 - Endless Fun & Hidden Skull","description":"Geoff shows us how to get the Endless Fun Achievement, as well as the hidden skull on Level 2. Also, Burnie is annoying.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-endless-fun-and-hidden-skull","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/08ae6abc-23e1-4477-87a9-9f4f2aefc62b/sm/ep591.jpg","duration":213,"publication_date":"2009-02-27T17:45:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-endangered-species-part-7","changefreq":"weekly","video":[{"title":"2009:E34 - Endangered Species Part 7","description":"Knuckles shows us where to kill another batch of the pigeons in Alderney. (Part Seven of Eight)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-endangered-species-part-7","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99c74805-456b-4720-b0f7-4f1be71b6a98/sm/ep590.jpg","duration":273,"publication_date":"2009-02-27T17:02:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cupcake","changefreq":"weekly","video":[{"title":"2009:E33 - Cupcake","description":"A guide to beating two Advanced levels in Portal so as to get the \"Cupcake\" acheivment.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cupcake","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89385600-a0b5-4932-849e-201198aa436b/sm/ep583.jpg","duration":209,"publication_date":"2009-02-20T23:06:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pajamachievement-preview-3","changefreq":"weekly","video":[{"title":"2009:E128 - Pajamachievement Preview #3","description":"This time the gals take on Soul Calibur IV, Monopoly and NFL Tour. It's a Super Bowl party, minus the Super Bowl!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pajamachievement-preview-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d27257a-23ce-4d9b-841a-bc135d42fc28/sm/ep582.jpg","duration":136,"publication_date":"2009-02-19T04:09:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-on-the-clock","changefreq":"weekly","video":[{"title":"2009:E32 - On The Clock","description":"Kibs shows us how to get the \"On the Clock\" Achievement in Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-on-the-clock","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d5387b28-2cac-4094-b522-91f6f61cc16c/sm/ep581.jpg","duration":93,"publication_date":"2009-02-17T19:32:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-worm-hunter","changefreq":"weekly","video":[{"title":"2009:E31 - Worm Hunter","description":"Jaller shows us how to get the \"Worm Hunter\" Achievement in Lost Planet.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-worm-hunter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d03d682-2a46-4dfb-8995-4e3ae0b0bb17/sm/ep580.jpg","duration":455,"publication_date":"2009-02-17T19:30:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-3-speedrun","changefreq":"weekly","video":[{"title":"2009:E30 - Chapter 3 Speedrun","description":"Frank_West got me back into Mirror's edge, what can I say","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-3-speedrun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49dd96d2-aae7-4e6c-8e61-857e9e39d59f/sm/ep578.jpg","duration":525,"publication_date":"2009-02-16T18:16:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-animal-handler-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E127 - Animal Handler Achievement Guide","description":"Site member \"Kibs\" shows us how to get the Animal Handler Achievement in Castle Crashers.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-animal-handler-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/87d24780-4c40-4dbc-a0a9-ab6ccad22aca/sm/ep575.jpg","duration":460,"publication_date":"2009-02-13T16:13:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-7-speedrun","changefreq":"weekly","video":[{"title":"2009:E29 - Chapter 7 Speedrun","description":"Frank_West shows us how to get the speedrun Achievement for \"The Boat\" in MIrror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-7-speedrun","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aa039b4f-2495-4468-95ad-8776648cec72/sm/ep574.jpg","duration":434,"publication_date":"2009-02-12T16:21:51.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-whoa-nelly-speedy-of-the-colossus-and-minimalist","changefreq":"weekly","video":[{"title":"2009:E28 - Whoa Nelly! Speedy of the Colossus & Minimalist","description":"Three achievements from Banjo Kazooie Nuts and Bolts","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-whoa-nelly-speedy-of-the-colossus-and-minimalist","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a358fd44-c3c1-4cff-953f-ffa8ea9c33fa/sm/ep573.jpg","duration":252,"publication_date":"2009-02-11T16:49:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-mercs-2-balls-to-the-wall","changefreq":"weekly","video":[{"title":"2009:E27 - Mercs 2- Balls to the Wall","description":"Community member \"Blazeofmerc\" shows us how to get Balls to the Wall, Eat the Heat, and Gone Shootin'.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-mercs-2-balls-to-the-wall","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/99ca5edd-f109-413c-a216-ba76a89db7c2/sm/ep572.jpg","duration":142,"publication_date":"2009-02-11T16:48:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-f-e-a-r-explorer-part-1","changefreq":"weekly","video":[{"title":"2009:E26 - F.E.A.R. - Explorer Part 1","description":"Explorer guide for intervals 1-3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-f-e-a-r-explorer-part-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e1ada48-9d56-40e9-b1c9-d64f35a02b9b/sm/ep571.jpg","duration":412,"publication_date":"2009-02-10T19:56:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-killer-in-pink-music-video","changefreq":"weekly","video":[{"title":"2009:E25 - Killer in Pink - Music Video","description":"Here's a music video for the awesome Pajamachievement theme song \"Killer in Pink\", which was created by the amazingly talented (and hot) Martha Marin and Nico. Thanks to Finchlynch for cutting this together.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-killer-in-pink-music-video","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3e0c7bb5-89e2-4698-9981-8093d6ba01a3/sm/ep568.jpg","duration":47,"publication_date":"2009-02-09T22:30:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lost-planet-stardust","changefreq":"weekly","video":[{"title":"2009:E24 - Lost Planet: STARDUST","description":"Milesprower's last in a series of 5 videos for Lost Planet. This one covers the target mark locations in Mission 11.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lost-planet-stardust","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/55df4c79-9cf7-4804-b7cc-c980e2e80248/sm/ep566.jpg","duration":130,"publication_date":"2009-02-09T20:47:05.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-eyes-and-ears-look-sharp-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E125 - Eyes and Ears, Look Sharp Achievement Guide","description":"Kaisonic shows us how to get the \"Look Sharp\" and \"Your Show Sucks\" Achievements in COD4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-eyes-and-ears-look-sharp-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/977feea5-312e-4ece-acae-46aa6936142b/sm/ep565.jpg","duration":609,"publication_date":"2009-02-06T20:12:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lost-planet-rainbow-and-blizzard-explorer-achievements","changefreq":"weekly","video":[{"title":"2009:E124 - Lost Planet: RAINBOW and BLIZZARD Explorer Achievements","description":"Community video, 4th in a series of 5, covering target mark locations in levels 9 ad 10.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lost-planet-rainbow-and-blizzard-explorer-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/935bd997-8625-4e5c-b85b-7ac4f15f3625/sm/ep564.jpg","duration":218,"publication_date":"2009-02-06T19:55:12.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gears-of-war-2-party-like-its-1999","changefreq":"weekly","video":[{"title":"2009:E23 - Gears of War 2: Party Like it's 1999","description":"Lopez_55 shows us how to get the \"Party Like it's 1999\" Achievement in Gears of War 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gears-of-war-2-party-like-its-1999","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/df5371db-cde6-4f15-9971-1d28d905fa55/sm/ep561.jpg","duration":149,"publication_date":"2009-02-04T17:16:55.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-banjo-kazooie-nuts-and-bolts-arcade-pwner","changefreq":"weekly","video":[{"title":"2009:E22 - Banjo Kazooie Nuts and Bolts: Arcade Pwner","description":"Awesome gaming action.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-banjo-kazooie-nuts-and-bolts-arcade-pwner","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7a5c6a09-22c3-490a-8239-2239cacb3ae1/sm/ep560.jpg","duration":229,"publication_date":"2009-02-04T17:02:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-call-of-duty-4-your-show-sucks-guide","changefreq":"weekly","video":[{"title":"2009:E123 - Call of Duty 4: Your Show Sucks Guide","description":"Kaisonic shows us how to get the \"Your show sucks\" Achievement in COD4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-call-of-duty-4-your-show-sucks-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/53004e93-3cde-44bc-8b66-c37a6bceb469/sm/ep558.jpg","duration":274,"publication_date":"2009-02-03T20:51:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-lotr-conquest-you-have-my-bowaxe","changefreq":"weekly","video":[{"title":"2009:E21 - LOTR: Conquest - You have my Bow/Axe","description":"BrownMan shows you how to get \"You Have My Bow\" and \"You Have My Axe\" in LOTR: Conquest.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-lotr-conquest-you-have-my-bowaxe","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5dfc0f0c-67ec-483c-9a74-249985787ebd/sm/ep557.jpg","duration":228,"publication_date":"2009-02-03T19:08:30.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lost-planet-tornado-and-volcano-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E122 - Lost Planet: Tornado and Volcano Achievement Guide","description":"Milesprower shows us how to get the TORNADO and VOLCANO Achievements in Lost Planet.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lost-planet-tornado-and-volcano-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3421c00f-5648-477b-90ca-20d684bf4876/sm/ep556.jpg","duration":222,"publication_date":"2009-02-03T18:58:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lost-planet-meteor-aurora-thunder-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E121 - Lost Planet: Meteor, Aurora, Thunder Achievement Guide","description":"Community member Milesprower shows us how to get the second three explorer Achievements in Lost Planet.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lost-planet-meteor-aurora-thunder-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f372bcb-150d-4e84-a014-af4d9043dba7/sm/ep555.jpg","duration":382,"publication_date":"2009-02-02T17:51:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-fallout-3-mercenary-protector-reaver-guide","changefreq":"weekly","video":[{"title":"2009:E120 - Fallout 3: Mercenary, Protector, Reaver Guide","description":"Adam shows us how to nab the good, neutral, and evil Achievements in Fallout 3, all in one playthrough.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-fallout-3-mercenary-protector-reaver-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1656b93-f505-49ef-b383-01b34703e995/sm/ep554.jpg","duration":238,"publication_date":"2009-01-30T21:35:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-prince-of-persia-improviser-sinking-to-new-depths","changefreq":"weekly","video":[{"title":"2009:E20 - Prince of Persia: Improviser, Sinking to new Depths!","description":"NewfieKeir gets 2 achievements in Prince of Persia","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-prince-of-persia-improviser-sinking-to-new-depths","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dfe9929d-3817-4db0-969d-24eced3b23db/sm/ep553.jpg","duration":170,"publication_date":"2009-01-29T20:58:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunt-prince-of-persia-death-of-a-warrior-king","changefreq":"weekly","video":[{"title":"2009:E119 - Achievement Hunt: Prince of Persia: Death of a Warrior King","description":"NewfieKeir shows us how to get \"Death of a Warrior King\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunt-prince-of-persia-death-of-a-warrior-king","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6b288f9b-0366-4d07-bce6-8e5527a8b8b8/sm/ep552.jpg","duration":290,"publication_date":"2009-01-29T20:50:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lost-planet-earth-storm-mirage-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E118 - Lost Planet: Earth, Storm, Mirage Achievement Guide","description":"Community member Milesprower shows us how to get the first three explorer Achievements in Lost Planet.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lost-planet-earth-storm-mirage-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eca6bba5-17ef-4343-b2c2-bd03c75de1b2/sm/ep550.jpg","duration":400,"publication_date":"2009-01-28T22:20:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-left-4-dead-untouchables","changefreq":"weekly","video":[{"title":"2009:E19 - Left 4 Dead - Untouchables","description":"...figure it out. Gameplay submitted by damnclem, troy0891, 13Church, and Mollypops. Techinque perfected and video edited by Mojopin.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-left-4-dead-untouchables","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b94874e3-9623-4d6e-b23d-822ad467ff71/sm/ep549.jpg","duration":293,"publication_date":"2009-01-28T15:48:31.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-crackdown-shot-putter-body-juggler-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E117 - Crackdown: Shot Putter, Body Juggler Achievement Guide","description":"Adam shows us how to get two Achievements in Crackdown: Shot Putter and Body Juggler.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-crackdown-shot-putter-body-juggler-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f20ad4c2-4fa1-4c9d-931f-5eb963a26fa1/sm/ep548.jpg","duration":115,"publication_date":"2009-01-27T18:35:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-body-armor-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E116 - Body Armor Achievement Guide","description":"Adam shows us how to get the Body Armor Achievement in Crackdown.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-body-armor-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c05a6f10-8e6a-427e-af07-c9c8a2780119/sm/ep547.jpg","duration":180,"publication_date":"2009-01-27T16:30:54.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-crackdown-chain-banger","changefreq":"weekly","video":[{"title":"2009:E18 - Crackdown: Chain Banger","description":"Adam shows us how to get the \"Chain Banger\" Achievement in Crackdown.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-crackdown-chain-banger","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/35bfb417-7474-4630-964b-5a2add634e4b/sm/ep546.jpg","duration":110,"publication_date":"2009-01-26T20:21:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-the-architect-and-dethroned","changefreq":"weekly","video":[{"title":"2009:E17 - Skate 2 - The Architect & Dethroned","description":"Jack picks up the two Create-a-Spot achievements \"The Architect\" and \"Dethroned\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-the-architect-and-dethroned","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/220382fc-9996-4805-ba1e-9fd3232bce0c/sm/ep544.jpg","duration":207,"publication_date":"2009-01-23T19:22:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-on-top-of-the-world","changefreq":"weekly","video":[{"title":"2009:E16 - Skate 2 - On Top of the World","description":"Jack gets the Skate 2 achievement \"On Top of the World.\" It is really high up there.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-on-top-of-the-world","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/738649ba-c3cf-4b68-b94e-6252c5a25930/sm/ep543.jpg","duration":55,"publication_date":"2009-01-23T19:22:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-six-achievements","changefreq":"weekly","video":[{"title":"2009:E115 - Six Achievements","description":"Geoff shows us how to get: Cherry Picker, Bombs Away, Flushed Away, Landlubber, Cartographer, and Boom Boom in Age of Booty.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-six-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ffde8701-ecfe-4ac1-968c-c6ea53592dc6/sm/ep542.jpg","duration":233,"publication_date":"2009-01-23T19:10:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-need-for-speed-and-juggling-chainsaws","changefreq":"weekly","video":[{"title":"2009:E15 - Skate 2 - Need for Speed & Juggling Chainsaws","description":"Jack gets two speed-based achievements in Skate 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-need-for-speed-and-juggling-chainsaws","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/873c9fff-04c2-4fbe-97e2-0a71e1583c01/sm/ep541.jpg","duration":95,"publication_date":"2009-01-22T21:11:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-playing-nice-together","changefreq":"weekly","video":[{"title":"2009:E14 - Skate 2 - Playing Nice Together","description":"Jack gets the online achievement \"Playing Nice Together\" in Skate 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-playing-nice-together","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9e3b30d0-0b6a-4219-bef4-c36074d1e21a/sm/ep540.jpg","duration":172,"publication_date":"2009-01-22T20:55:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-sandbag","changefreq":"weekly","video":[{"title":"2009:E13 - Skate 2 - Sandbag","description":"Jack throws his body off a dam to get the \"Sandbag\" achievement in Skate 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-sandbag","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b5e7f47f-0a5e-47b3-b410-fa901517d68b/sm/ep539.jpg","duration":113,"publication_date":"2009-01-22T20:46:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-graphically-extreme","changefreq":"weekly","video":[{"title":"2009:E12 - Skate 2 - Graphically Extreme","description":"Jack shows us how to get the \"Graphically Extreme\" achievement in Skate 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-graphically-extreme","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/09d122b7-eaa1-400d-a57e-be480e2fc79a/sm/ep538.jpg","duration":137,"publication_date":"2009-01-22T20:46:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-geoffs-avatar","changefreq":"weekly","video":[{"title":"2009:E11 - Geoff's avatar","description":"Gavin and Griffon help Geoff remake his avatar to look more like him.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-geoffs-avatar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bd338c56-6cc9-478b-bbfa-159bf8b94f07/sm/ep537.jpg","duration":190,"publication_date":"2009-01-22T16:27:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-gunslinger-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E114 - The Gunslinger Achievement Guide","description":"Jack gets the sniper-mission based achievement \"The Gunslinger.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-gunslinger-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2265f7c7-4b6c-4d23-841c-9dafa056ba69/sm/ep536.jpg","duration":155,"publication_date":"2009-01-22T15:43:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-iron-fist-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E113 - Iron Fist Achievement Guide","description":"Jack gets the tank-based achievement \"Iron Fist\" in Call of Duty: World at War","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-iron-fist-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/925e3217-a733-4557-b2b8-a2127f3c7dbc/sm/ep535.jpg","duration":267,"publication_date":"2009-01-21T15:56:46.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-first-four-achievements","changefreq":"weekly","video":[{"title":"2009:E112 - First Four Achievements","description":"Jack shows us how to get: Gender Bender, Skater Evolved, I Like to Move it, and Meet Slappy in the upcoming EA game Skate 2 (coming out Jan 21, 2009).","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-first-four-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/bc43e860-141d-4cdb-a913-51d0c742a01e/sm/ep534.jpg","duration":161,"publication_date":"2009-01-20T20:50:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-prince-of-persia-sword-master","changefreq":"weekly","video":[{"title":"2009:E10 - Prince of Persia: Sword Master","description":"Kibs shows us how to get the Sword Master Achievement in Prince of Persia.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-prince-of-persia-sword-master","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/98f213ee-ecc2-49dc-8ad7-e0608fb5f68a/sm/ep530.jpg","duration":51,"publication_date":"2009-01-15T15:44:04.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-melee-is-best-deer-trainer-the-traitor-guide","changefreq":"weekly","video":[{"title":"2009:E109 - Melee is Best, Deer Trainer, The Traitor Guide","description":"Community member \"milesprower\" shows us how to get the Melee is Best, Deer Trainer, and The Traitor Achievements in Castle Crashers.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-melee-is-best-deer-trainer-the-traitor-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fadbeed6-12c4-4eda-847f-c94a64fd6edc/sm/ep528.jpg","duration":172,"publication_date":"2009-01-13T22:07:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-professional-and-gunslinger-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E108 - The Professional and Gunslinger Achievement Guide","description":"Community member \"Frank_West\" shows us how to get the Professional, and Gunslinger Achievements in Call of Duty: World at War.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-professional-and-gunslinger-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ac87fd9-279e-47b0-979a-1579660bfdce/sm/ep527.jpg","duration":197,"publication_date":"2009-01-13T22:04:18.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-camera-shy-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E107 - Camera Shy Achievement Guide","description":"Community member \"Kibs\" shows us how to get the Camera Shy Achievement in the Portal version of The Orange Box.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-camera-shy-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/100eec94-624f-4ab1-957f-6f75a4762a1c/sm/ep526.jpg","duration":592,"publication_date":"2009-01-13T22:02:22.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-scholar","changefreq":"weekly","video":[{"title":"2009:E9 - Scholar","description":"A guide to the Scholar achiviment in mass effect.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-scholar","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0457376a-6b51-4f49-ad4e-f9ee7d72e9dd/sm/ep525.jpg","duration":354,"publication_date":"2009-01-13T21:57:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-head-for-heights-guide","changefreq":"weekly","video":[{"title":"2009:E105 - Community Video: Head for Heights Guide","description":"Gingerlink shows us how to get the \"Head for Heights\" Achievement in Banjo-Kazooie: Nuts and Bolts.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-head-for-heights-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5e312ca8-3d04-417b-93b1-01812fd3baca/sm/ep523.jpg","duration":225,"publication_date":"2009-01-13T16:51:10.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-the-sharpshooter","changefreq":"weekly","video":[{"title":"2009:E8 - Community Video: The SharpShooter","description":"Community member \"xdragonwolf\" shows us how to get the \"SharpShooter\" Achievement in Fable II.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-the-sharpshooter","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/895457f7-dcbb-4521-a045-fd05ff9f01b5/sm/ep522.jpg","duration":374,"publication_date":"2009-01-13T16:47:15.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunt-prince-of-persia-climbing-to-new-heights","changefreq":"weekly","video":[{"title":"2009:E104 - Achievement Hunt: Prince of Persia: Climbing to New Heights","description":"NewfieKeir gets Climbing to New Heights and Traitors End in Prince of Persia.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunt-prince-of-persia-climbing-to-new-heights","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63b509b1-10da-40e1-8872-9888bb221379/sm/ep521.jpg","duration":368,"publication_date":"2009-01-13T16:21:21.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-workhorse-achievement","changefreq":"weekly","video":[{"title":"2009:E103 - Workhorse Achievement","description":"Community member \"Thoric\" shows us how to get the Workhorse Achievement in Fable II","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-workhorse-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/88e74147-eb29-451a-8a9b-124599012009/sm/ep520.jpg","duration":207,"publication_date":"2009-01-12T18:42:37.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mercenaries-2-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E102 - Mercenaries 2 Achievement Guide","description":"Community member Blazeofmerc shows us how to get the first two achievements in Mercenaries 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mercenaries-2-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1285e913-8616-4d33-87e8-a9d793e76fe4/sm/ep518.jpg","duration":231,"publication_date":"2009-01-12T16:12:44.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gears-of-war-2-a-parting-gift","changefreq":"weekly","video":[{"title":"2009:E6 - Gears of War 2: A Parting Gift","description":"Community member \"Darksied93\" shows us how to get teh \"A Parting Gift\" Achievement in Gears of War 2","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gears-of-war-2-a-parting-gift","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2eee10fd-3167-48ea-80e1-86fa5b39908c/sm/ep517.jpg","duration":220,"publication_date":"2009-01-09T16:37:36.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hl2-keep-off-the-sand-osha-violation-targeted-advertising","changefreq":"weekly","video":[{"title":"2009:E5 - HL2 Keep off the Sand, OSHA Violation, Targeted Advertising","description":"Kite_Shugo shows us how to get these achievements in Half Life 2 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hl2-keep-off-the-sand-osha-violation-targeted-advertising","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8fa65465-f57e-4304-971c-db3a811fdd58/sm/ep516.jpg","duration":329,"publication_date":"2009-01-09T03:23:01.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-the-artiste-the-photojournalist-free-fall-costume-party-group-photo","changefreq":"weekly","video":[{"title":"2009:E4 - Community Video: The Artiste, The Photojournalist, Free Fall, Costume Party, Group Photo","description":"Community member \"Dizzavy\" shows us how to get five Achievements in Dead Rising: The Artiste, The Photojournalist, Free Fall, Costume Party, and Group Photo.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-the-artiste-the-photojournalist-free-fall-costume-party-group-photo","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a14165c-a478-4b24-b5ea-3f124a58b925/sm/ep510.jpg","duration":294,"publication_date":"2009-01-08T22:12:23.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-professional-achievement-guide-1","changefreq":"weekly","video":[{"title":"2009:E101 - The Professional Achievement Guide","description":"Jack shows us how to get \"The Professional\" in COD:WaW.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-professional-achievement-guide-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/233cc4d9-ca3c-4323-951d-2135e8df667c/sm/ep509.jpg","duration":101,"publication_date":"2009-01-08T19:07:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-grave-robber-achievement-guide","changefreq":"weekly","video":[{"title":"2009:E100 - Grave Robber Achievement Guide","description":"Jack shows us where to find the 13 hidden death cards in COD:WaW needed to unlock the Grave Robber Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-grave-robber-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b36f9c4-5b9c-4ee5-8554-32a90cd626c0/sm/ep508.jpg","duration":438,"publication_date":"2009-01-07T18:51:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-zombie-genocidest","changefreq":"weekly","video":[{"title":"2009:E3 - Zombie Genocidest","description":"Community member \"Mojopin\" shows us his unique way to get the Zombie Genocidest Achievement in L4D. Door boobs FTW.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-zombie-genocidest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/37564b03-fe58-4412-84d9-9bda0c7da03a/sm/ep507.jpg","duration":157,"publication_date":"2009-01-06T17:00:34.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-geoff-wins","changefreq":"weekly","video":[{"title":"2009:E2 - Geoff Wins","description":"Interview with Geoff as he wins his bet against Burnie by getting 10,000 achievement points in one week.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-geoff-wins","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7d67b775-1d32-4f36-abf4-17761cfa56cb/sm/ep505.jpg","duration":248,"publication_date":"2009-01-02T16:00:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-destructomatic-rex","changefreq":"weekly","video":[{"title":"2009:E1 - DestructoMatic Rex","description":"Community member \"Lopez_55\" shows us how to get the DestructoMatic Rex Achievement in Dash of Destruction.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-destructomatic-rex","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4071ba0e-7ccc-4611-b326-3047d014f0a2/sm/ep504.jpg","duration":47,"publication_date":"2009-01-01T17:25:45.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-akimbo-assassin-burn-the-witch-pharm-assist-grim-reaper","changefreq":"weekly","video":[{"title":"2008:E81 - Community Video: Akimbo Assassin, Burn the Witch, Pharm-assist, Grim Reaper","description":"NewfieKeir shows us how to get a bunch of Achievements in L4D.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-akimbo-assassin-burn-the-witch-pharm-assist-grim-reaper","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d20c42a0-8be8-414f-bed8-5d87674cb387/sm/ep502.jpg","duration":76,"publication_date":"2008-12-31T04:21:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-we-have-people-everywhere-guide","changefreq":"weekly","video":[{"title":"2008:E98 - Community Video: We have people everywhere Guide","description":"Community member \"NewfieKeir\" shows us how to get the \"We have people everywhere\" Achievement in Quantum of Solace.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-we-have-people-everywhere-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ecd35a5c-cbf2-4515-bfd0-6dfe0c3df6a0/sm/ep501.jpg","duration":208,"publication_date":"2008-12-30T06:08:19.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-duelist-guide","changefreq":"weekly","video":[{"title":"2008:E97 - Community Video: The Duelist Guide","description":"Site member \"NewfieKeir\" shows us how to get the \"Duelist\" Achievement in Fable II.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-duelist-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/89bf666f-bb25-4ecb-a4b1-5429c179a1c2/sm/ep500.jpg","duration":74,"publication_date":"2008-12-27T05:17:56.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-extinction-event-guide","changefreq":"weekly","video":[{"title":"2008:E96 - Extinction Event Guide","description":"Community member \"BrownMan\" shows us how to get the Extinction Event Achievement in Dash of Destruction.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-extinction-event-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9cc459ba-0800-4be4-968e-18fd258bc525/sm/ep499.jpg","duration":73,"publication_date":"2008-12-26T00:34:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-daredevil-guide-part-3-of-5","changefreq":"weekly","video":[{"title":"2008:E95 - Community Video: Daredevil Guide Part 3 (of 5)","description":"Community member \"BladeBlacken\" shows us how to get the Daredevil Achievement in GTA IV. (Part 3 of 5)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-daredevil-guide-part-3-of-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4807802c-e9cf-46fc-a162-be5c5d8baeb8/sm/ep498.jpg","duration":443,"publication_date":"2008-12-25T00:07:59.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dlc-holocron-guide","changefreq":"weekly","video":[{"title":"2008:E94 - DLC Holocron Guide","description":"Adam shows us where to find the 10 hidden holocrons in the DLC for SW: TFU.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dlc-holocron-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/2ffe40a1-d6b5-4cbb-9a97-99b9e2aadd40/sm/ep496.jpg","duration":268,"publication_date":"2008-12-23T19:54:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-vengeance-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E93 - Vengeance Achievement Guide","description":"Gav shows us how to get the Vengeance Achievement in SR2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-vengeance-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0212f074-4120-47b7-ac78-e79ffdeafbcb/sm/ep495.jpg","duration":283,"publication_date":"2008-12-22T17:04:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-skate-2-preview","changefreq":"weekly","video":[{"title":"2008:E80 - Skate 2 Preview","description":"Jack takes a trip up to EA Black Box in Canada to take an early look at Skate 2 (coming out Jan 21, 2009).","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-skate-2-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/173f7b7d-1c6e-4501-8755-613d564c2541/sm/ep494.jpg","duration":398,"publication_date":"2008-12-22T16:55:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-get-a-grip-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E92 - Get a Grip Achievement Guide","description":"Adam shows us how to get the \"Get a Grip\" Achievement in the DLC of SW:TFU.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-get-a-grip-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1a8c80b2-9dc0-4fce-ad5f-76ae28185994/sm/ep492.jpg","duration":184,"publication_date":"2008-12-19T18:01:55.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-big-drag-double-jump-guide","changefreq":"weekly","video":[{"title":"2008:E89 - Community Video: Big Drag, Double Jump Guide","description":"Community member \"NewfieKeir\" shows us how to get Big Drag and Double Jump in Left 4 Dead.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-big-drag-double-jump-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b84e1bc2-3edb-4fae-b09c-730ae8917fe7/sm/ep489.jpg","duration":305,"publication_date":"2008-12-18T18:49:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-bbq-beef-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E88 - Community Video: BBQ Beef Achievement Guide","description":"Community member \"Gingerlink\" shows us how to get the BBQ Beef Achievement in Banjo-Kazooie: Nuts & Bolts.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-bbq-beef-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4d4b606-9107-47cc-88e2-43200d6e25c0/sm/ep488.jpg","duration":250,"publication_date":"2008-12-18T16:59:47.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-robot-parts-guide","changefreq":"weekly","video":[{"title":"2008:E87 - Robot Parts Guide","description":"Adam shows us how to get the Robot Parts Achievement in SW:TFU's DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-robot-parts-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/cf466cb9-155d-4503-836d-a7b97d69829b/sm/ep487.jpg","duration":134,"publication_date":"2008-12-18T15:59:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-as-the-world-turns-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E86 - As the World Turns Achievement Guide","description":"Adam shows us how to get the \"As the World Turns\" Achievement in SW:TFU's DLC.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-as-the-world-turns-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b736ded9-8f3e-4f6d-8477-5cfc884ca06f/sm/ep486.jpg","duration":191,"publication_date":"2008-12-17T18:28:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-back-2-help-guide","changefreq":"weekly","video":[{"title":"2008:E85 - Community Video: Back 2 Help Guide","description":"Community member \"Kaisonic\" shows us how to get the \"Back 2 Help\" Achievement in L4D.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-back-2-help-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/49cf4e9e-0223-4d17-b184-96c867229764/sm/ep484.jpg","duration":36,"publication_date":"2008-12-16T20:09:09.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-romantic-guide","changefreq":"weekly","video":[{"title":"2008:E84 - Community Video: The Romantic Guide","description":"Community member \"Dirt410\" shows us how to get \"The Romantic\" in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-romantic-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d944d9b-cd0a-47b1-84b6-da580a9abf4d/sm/ep483.jpg","duration":95,"publication_date":"2008-12-16T18:13:02.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-jedi-master-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E83 - Jedi Master Achievement Guide","description":"Adam shows us how to get the Jedi Master Achievement in the DLC for SW:TFU.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-jedi-master-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e1982a5f-2edb-4843-8138-7916d8bbc42b/sm/ep482.jpg","duration":436,"publication_date":"2008-12-16T00:19:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hunter-special-and-alchemist-special-guide","changefreq":"weekly","video":[{"title":"2008:E82 - Hunter Special and Alchemist Special Guide","description":"Geoff shows us how to get the Hunter Special and Alchemist Special Achievements, and also, how to love again.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hunter-special-and-alchemist-special-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ec8640f-bf54-4e7b-979b-0a0f7104b3e8/sm/ep481.jpg","duration":205,"publication_date":"2008-12-15T22:34:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-vault-tec-c-e-o-guide-part-two","changefreq":"weekly","video":[{"title":"2008:E81 - Community Video: Vault-Tec C.E.O. Guide Part Two","description":"Community member \"Lopez_55\" shows us how to get the Yes, I Play With Dolls Achievement, while working towards the Vault-Tec C.E.O. Achievement. (Part Two of Two)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-vault-tec-c-e-o-guide-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f09d082d-0cee-4377-8fb3-527dfaad7121/sm/ep480.jpg","duration":581,"publication_date":"2008-12-15T21:48:41.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-get-jiggy-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E80 - Get Jiggy Achievement Guide","description":"Knuckles shows us how to get a pretty easy Achievement in the N6 classic (now on XBL Arcade) Banjo-Kazooie.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-get-jiggy-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1fd2ed7d-2306-4d44-88c6-b2f0b3132432/sm/ep479.jpg","duration":164,"publication_date":"2008-12-12T15:51:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-weapon-of-mass-destruction-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E79 - Community Video: Weapon of Mass Destruction Achievement Guide","description":"Community member \"WasteGuru\" shows us how to get the Achievement \"Weapon of Mass Destruction\" in Call of Duty: World at War.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-weapon-of-mass-destruction-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/73c04c38-22e9-4bc4-8da3-accae3457443/sm/ep478.jpg","duration":170,"publication_date":"2008-12-10T21:47:14.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-companions-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E78 - Community Video: The Companions Achievement Guide","description":"Community member \"NewfieKeir\" shows us how to get The Companions in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-companions-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7b92e66f-99ba-465e-bc4f-d08f1f43faf1/sm/ep477.jpg","duration":192,"publication_date":"2008-12-10T21:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-daredevil-guide-part-2-of-5","changefreq":"weekly","video":[{"title":"2008:E77 - Community Video: Daredevil Guide Part 2 (of 5)","description":"Community member \"BladeBlacken\" shows us how to get the Daredevil Achievement in GTA IV. (Part 2 of 5)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-daredevil-guide-part-2-of-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/379d5a98-8440-44e7-aef2-76e4e843da06/sm/ep476.jpg","duration":411,"publication_date":"2008-12-10T21:40:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-keep-off-the-sand-osha-violation-targeted-advertising-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E76 - Community Video: Keep off the Sand, OSHA Violation, Targeted Advertising Achievement Guide","description":"AH Community member \"Kite_Shugo\" shows us how to get the: Keep of the Sand!, OSHA Violation, and Targeted Advertising Achievements in Half Life 2 on the Xbox 360.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-keep-off-the-sand-osha-violation-targeted-advertising-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/57263d6d-0011-4eb9-bbb2-fa184a883e2a/sm/ep475.jpg","duration":329,"publication_date":"2008-12-10T21:37:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-pound-of-flesh-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E75 - Community Video: Pound of Flesh Achievement Guide","description":"Community member \"BrownMan\" Shows us an extremely quick way to get the Pound of Flesh Achievement in Gears 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-pound-of-flesh-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d2ef2dfa-5660-46b9-9aa2-286627891244/sm/ep474.jpg","duration":102,"publication_date":"2008-12-10T21:34:11.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-on-the-clock-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E74 - On the Clock Achievement Guide","description":"Knuckles shows us how to get the \"On the Clock\" Achievement in Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-on-the-clock-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8bc1b20b-220d-40f9-a0b0-e0d1880407e4/sm/ep473.jpg","duration":94,"publication_date":"2008-12-10T15:51:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-goth-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E73 - The Goth Achievement Guide","description":"Geoff shows you how to get the Goth Achievement in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-goth-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/314d56b7-0dfe-45de-a06e-43e4fb809296/sm/ep472.jpg","duration":140,"publication_date":"2008-12-09T15:48:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-achievement-hunter-haiku-contest","changefreq":"weekly","video":[{"title":"2008:E72 - Achievement Hunter: Haiku Contest","description":"Jack and Geoff intro the latest Achievement Hunter contest!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-achievement-hunter-haiku-contest","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ca3f578-5f3e-48cd-b1fc-09ac3c3ae96d/sm/ep471.jpg","duration":62,"publication_date":"2008-12-08T22:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-man-vs-tank-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E71 - Man Vs. Tank Achievement Guide","description":"Burnie and Geoff show an easy trick for getting the Man Vs. Tank Achievement in L4D.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-man-vs-tank-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/31e38bbf-8289-4d90-ac1a-6e5783e55e7f/sm/ep470.jpg","duration":191,"publication_date":"2008-12-08T15:46:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-blast-from-the-past-submissive-defiant-what-cat-two-points-trusty-hardware-zero-point-energy","changefreq":"weekly","video":[{"title":"2008:E79 - Community Video: Blast From The Past, Submissive, Defiant, What Cat?, Two Points, Trusty Hardware, Zero Point Energy","description":"Community member \"Kite_Shugo\" shows us how to get the following Achievements in Half Life 2: Blast From The Past, Submissive, Defiant, What Cat, Two Points, Trusty Hardware, and Zero Point Energy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-blast-from-the-past-submissive-defiant-what-cat-two-points-trusty-hardware-zero-point-energy","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dafef78a-d717-4aa1-a35a-a1669c9617fa/sm/ep469.jpg","duration":337,"publication_date":"2008-12-05T20:17:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-dodge-this-solar-nothing-but-net-impulse-9-drop-dead","changefreq":"weekly","video":[{"title":"2008:E78 - Community Video: Dodge This, Solar, Nothing But Net, Impulse 9, Drop Dead","description":"Community member Fragger shows us how to get: Dodge This, Solar, Nothing But Net, Impulse 9, ad Drop Dead in Jumper.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-dodge-this-solar-nothing-but-net-impulse-9-drop-dead","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9845c4d3-d04c-47fc-b844-ea3d8cc0c55a/sm/ep468.jpg","duration":456,"publication_date":"2008-12-05T20:11:35.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-little-rocket-man-long-version","changefreq":"weekly","video":[{"title":"2008:E76 - Community Video: Little Rocket Man (Long Version)","description":"Community member \"Kaisonic\" shows us how to get the Little Rocket Man Achievement in HL2:EP2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-little-rocket-man-long-version","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/aef054bd-bc64-4e0d-8674-ce4423e2799e/sm/ep466.jpg","duration":1192,"publication_date":"2008-12-05T19:48:16.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-little-rocket-man-short-version","changefreq":"weekly","video":[{"title":"2008:E75 - Community Video: Little Rocket Man (Short Version)","description":"Community member \"Kaisonic\" shows us how to get the Little Rocket Man Achievement in HL2:EP2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-little-rocket-man-short-version","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8baf170e-9c50-4679-8273-a21c4b79cea1/sm/ep465.jpg","duration":112,"publication_date":"2008-12-05T19:44:07.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-chapter-one-speed-run","changefreq":"weekly","video":[{"title":"2008:E74 - Chapter One Speed Run","description":"Knuckles shows us how to get the Speed Run Achievement in Chapter One of Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-chapter-one-speed-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/63edf972-06a2-40a5-85b6-349b7e25c47d/sm/ep464.jpg","duration":422,"publication_date":"2008-12-05T16:51:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-tankbusters-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E70 - Tankbusters Achievement Guide","description":"Burnie shows us how to get the tankbusters achievement in L4D.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-tankbusters-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d8d49942-f036-4593-8c38-6a23431af9ca/sm/ep463.jpg","duration":49,"publication_date":"2008-12-04T19:55:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-invincible-zombie-glitch","changefreq":"weekly","video":[{"title":"2008:E73 - Invincible Zombie Glitch","description":"Burnie shows us the rare \"invincible zombie\" glitch, and what to do if you end up with one.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-invincible-zombie-glitch","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/64b10ece-c60a-48d0-92a7-ecc9c4d848ac/sm/ep462.jpg","duration":36,"publication_date":"2008-12-04T19:52:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-cr0wnd-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E69 - Cr0wnd Achievement Guide","description":"Burnie shows us all how good he is at L4D, by killing a witch.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-cr0wnd-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0f7d5a41-f573-4a08-ae81-5a3f3cb45a8e/sm/ep461.jpg","duration":52,"publication_date":"2008-12-04T19:49:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-prologue-speed-run","changefreq":"weekly","video":[{"title":"2008:E72 - Prologue: Speed Run","description":"Knuckles shows us how to get the prologue speed run Achievement in Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-prologue-speed-run","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b93144df-597b-49b7-8d43-5bc6842e8ef0/sm/ep460.jpg","duration":187,"publication_date":"2008-12-04T16:39:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-cr0wnd-and-akimbo-assassin-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E68 - Community Video: Cr0wnd and Akimbo Assassin Achievement Guide","description":"Community member \"kite_shugo\" shows us how to get the Cr0wnd and Akimbo Assassin Achievements in L4D.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-cr0wnd-and-akimbo-assassin-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9aabdd89-c6a5-4939-8e76-4c0a01f89934/sm/ep459.jpg","duration":274,"publication_date":"2008-12-03T22:01:48.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-kick-a-fg-for-over-50-yards-guide","changefreq":"weekly","video":[{"title":"2008:E67 - Community Video: Kick a FG for over 50 yards Guide","description":"Community member \"insanej\" shows us how to get the \"Kick a FG for over 50 yards\" Achievement in Madden NFL 09.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-kick-a-fg-for-over-50-yards-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9673a370-c030-4836-991b-96c9b59f3c27/sm/ep458.jpg","duration":128,"publication_date":"2008-12-03T21:56:20.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-daredevil-guide-part-1-of-5","changefreq":"weekly","video":[{"title":"2008:E66 - Community Video: Daredevil Guide Part 1 (of 5)","description":"Community member \"bladeblacken\" shows us how to get the Daredevil Achievement in GTA IV.\r\n(Part 1 of 5)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-daredevil-guide-part-1-of-5","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3ce69e80-7bf0-497a-8428-cdcf31cd027d/sm/ep457.jpg","duration":347,"publication_date":"2008-12-03T21:09:24.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatality-walkthrough-deathstroke-lex-luthor-captain-marvel-green-lantern-and-wonder-woman","changefreq":"weekly","video":[{"title":"2008:E71 - Fatality Walkthrough: Deathstroke, Lex Luthor, Captain Marvel, Green Lantern, and Wonder Woman","description":"Jack shows us how to do the Fatalities/Heroic Brutalities for: Deathstroke, Lex Luthor, Captain Marvel, Green Lantern, and Wonder Woman. He also nabs the \"Finisher\" Achievement as well.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatality-walkthrough-deathstroke-lex-luthor-captain-marvel-green-lantern-and-wonder-woman","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e41502e9-8487-4721-bde1-ac25d13c2439/sm/ep455.jpg","duration":189,"publication_date":"2008-12-03T15:15:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-vault-tec-c-e-o-guide-part-one","changefreq":"weekly","video":[{"title":"2008:E64 - Community Video: Vault-Tec C.E.O. Guide Part One","description":"Community member \"Lopez_55\" shows us how to get the Yes, I Play With Dolls Achievement, while working towards the Vault-Tec C.E.O. Achievement. (Part One of Two)","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-vault-tec-c-e-o-guide-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/403dc1ee-28f0-4609-838f-edd4f4b92564/sm/ep454.jpg","duration":534,"publication_date":"2008-12-02T20:33:26.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-mile-high-club-and-three-of-a-kind","changefreq":"weekly","video":[{"title":"2008:E70 - Community Video: Mile High Club & Three of a Kind","description":"Community member \"jaller\" shows us how to get the Mile High Club and Three of a Kind Achievements in Call of Duty 4.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-mile-high-club-and-three-of-a-kind","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/65a31ac0-34c2-418c-a59f-b79efa1d3244/sm/ep453.jpg","duration":270,"publication_date":"2008-12-02T20:27:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-the-menace-to-society-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E62 - The Menace to Society Achievement Guide","description":"Adam shows us how to get the Achievement \"The Menace to Society\" in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-the-menace-to-society-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21812c4a-5045-4e6a-b3ae-bb125e88992b/sm/ep451.jpg","duration":187,"publication_date":"2008-12-02T15:45:57.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatality-walkthrough-jax-liu-kang-raiden-kano-baraka","changefreq":"weekly","video":[{"title":"2008:E69 - Fatality Walkthrough: Jax, Liu Kang, Raiden, Kano, Baraka","description":"Jack shows us how to do the fatalities for: Jax, Liu Kang, Raiden, Kano, and Baraka.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatality-walkthrough-jax-liu-kang-raiden-kano-baraka","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6d8bd95f-9b4b-44c0-ba41-3a4e56a7067a/sm/ep450.jpg","duration":181,"publication_date":"2008-12-01T19:10:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-kick-em-when-theyre-down","changefreq":"weekly","video":[{"title":"2008:E68 - Kick 'Em When They're Down","description":"Gav shows us how to get the Kick 'Em When They're Down Achievement in Gears of War 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-kick-em-when-theyre-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1167f5e5-43d0-4fb2-931d-9dedecfc5d88/sm/ep449.jpg","duration":154,"publication_date":"2008-12-01T16:24:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatality-walkthrough-batman-superman-catwoman-the-flash-the-joker","changefreq":"weekly","video":[{"title":"2008:E67 - Fatality Walkthrough: Batman, Superman, Catwoman, The Flash, The Joker","description":"Jack shows us how to do the fatalities for: Batman, Superman, Catwoman, the Flash, and the Joker.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatality-walkthrough-batman-superman-catwoman-the-flash-the-joker","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/380840d9-54d2-4254-97c9-f411c5747ef0/sm/ep447.jpg","duration":197,"publication_date":"2008-11-27T14:32:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-velvet-rope-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E61 - Velvet Rope Achievement Guide","description":"Knuckles shows us how to get the Velvet Rope Achievement in Saint's Row 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-velvet-rope-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0324e031-a7df-4bd8-9eec-6b0f5d124ab5/sm/ep446.jpg","duration":181,"publication_date":"2008-11-27T14:13:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatality-walkthrough-scoprion-sub-zero-kitana-shang-tsung-sonya-blade","changefreq":"weekly","video":[{"title":"2008:E66 - Fatality Walkthrough: Scoprion, Sub-Zero, Kitana, Shang Tsung, Sonya Blade","description":"Jack shows us how to do the fatalities for: Scorpion, Sub-Zero, Kitana, Shang Tsung, and Sonya Blade.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatality-walkthrough-scoprion-sub-zero-kitana-shang-tsung-sonya-blade","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a263cf-651c-4b31-a689-1e50e95cebb6/sm/ep445.jpg","duration":195,"publication_date":"2008-11-25T23:02:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-psychotic-prankster-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E60 - Psychotic Prankster Achievement Guide","description":"LBCountry shows us how to get the Psychotic Prankster, Vault 101 Citizenship Award, Escape!, and GOAT Whisperer Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-psychotic-prankster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e936dae2-5a5f-423c-b247-9b404cc9beb9/sm/ep444.jpg","duration":431,"publication_date":"2008-11-25T19:08:09.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-reality-star-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E59 - Reality Star Achievement Guide","description":"Knuckles shows us how to get the Reality Star Achievement in Saint's Row 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-reality-star-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7fe7ca5f-7200-4882-8ae5-04f25a51d133/sm/ep443.jpg","duration":292,"publication_date":"2008-11-25T15:29:58.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-packrat-walkthrough-part-4-of-4","changefreq":"weekly","video":[{"title":"2008:E65 - Packrat Walkthrough Part 4 of 4","description":"Geoff shows us how to get the final six bags in Mirror's Edge, and the Packrat Achievement to boot.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-packrat-walkthrough-part-4-of-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b32d54c5-e24b-447e-b999-b4c78911b2e8/sm/ep442.jpg","duration":131,"publication_date":"2008-11-25T00:35:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-party-animal-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E58 - Community Video: The Party Animal Achievement Guide","description":"Community member NewfieKeir shows us how to get the Party Animal Achievement in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-party-animal-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/25163382-6a7f-43ae-9293-39f3275661eb/sm/ep441.jpg","duration":148,"publication_date":"2008-11-24T22:35:52.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-1st-3-metal-pieces-and-bronze-detective-badge","changefreq":"weekly","video":[{"title":"2008:E64 - Community Video: 1st 3 Metal Pieces and Bronze Detective Badge","description":"Community member Tatsudoshi shows us how to get the first three metal pieces and the bronze detective badge in Condemned.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-1st-3-metal-pieces-and-bronze-detective-badge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/909e409e-c112-44de-b57e-fd74207f4271/sm/ep440.jpg","duration":122,"publication_date":"2008-11-24T21:54:13.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-and-heroic-brutalities-part-two","changefreq":"weekly","video":[{"title":"2008:E63 - Fatalities and Heroic Brutalities Part Two","description":"Jack shows us all of the DC Universe character Fatalities and Heroic Brutalities in MK vs DC Universe.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-and-heroic-brutalities-part-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ebbcfee8-90c1-41a7-bc72-ef7718348f85/sm/ep439.jpg","duration":350,"publication_date":"2008-11-24T17:32:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-fatalities-part-one","changefreq":"weekly","video":[{"title":"2008:E62 - Fatalities Part One","description":"Jack shows us the Mortal Kombat character fatalities in MK vs DC Universe.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-fatalities-part-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e057e0eb-851a-4365-936a-e4214fc741fa/sm/ep438.jpg","duration":339,"publication_date":"2008-11-24T17:24:25.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-chapter-1-silver-and-bronze-bird-award-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E57 - Community Video: Chapter 1 Silver and Bronze Bird Award Achievement Guide","description":"Community member Tatsudoshi shows us how to get the SIlver and Bronze Bird awards in Condemned.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-chapter-1-silver-and-bronze-bird-award-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/22f04a70-2529-4441-940b-0918a9fcd61d/sm/ep437.jpg","duration":118,"publication_date":"2008-11-22T02:40:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-bigger-they-are-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E56 - Community Video: The Bigger They Are Achievement Guide","description":"Community member Lopez_55 shows us how to kill all the Behemoths in Fallout 3, to nab the The Bigger They Are Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-bigger-they-are-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/248ee593-0328-416a-b561-fca64f458538/sm/ep436.jpg","duration":520,"publication_date":"2008-11-22T02:35:40.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-king-of-qub3d-achievement","changefreq":"weekly","video":[{"title":"2008:E55 - Community Video: King of QUB3D Achievement","description":"Community member bladeblacken shows us how to get the King of QUB3D Achievement in GTA IV.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-king-of-qub3d-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f8ac49f-c232-44b7-ac77-8e59ed1758b5/sm/ep435.jpg","duration":73,"publication_date":"2008-11-21T20:30:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-packrat-walkthrough-part-3-of-4","changefreq":"weekly","video":[{"title":"2008:E61 - Packrat Walkthrough Part 3 of 4","description":"Geoff shows us where to find the hidden bags on Chapters six and seven of Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-packrat-walkthrough-part-3-of-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d71b0e75-b1d0-4c52-82c0-20c4bcde92e6/sm/ep434.jpg","duration":152,"publication_date":"2008-11-21T16:28:49.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-demolition-man-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E54 - Demolition Man Achievement Guide","description":"Knuckles is all like \"Check it out. I got this Achievement!\", and we're all like \"Whoa\".","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-demolition-man-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/15ee5271-1acc-4f39-9db8-ee0d934d4bee/sm/ep433.jpg","duration":90,"publication_date":"2008-11-21T15:47:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-teaser-achievement","changefreq":"weekly","video":[{"title":"2008:E53 - Community Video: The Teaser Achievement","description":"NewfieKeir shows us how to get The Teaser Achievement in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-teaser-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f6cd5ccf-e4a2-46ee-befb-54b476bedb2c/sm/ep432.jpg","duration":146,"publication_date":"2008-11-20T21:22:39.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-bag-lady-achievement","changefreq":"weekly","video":[{"title":"2008:E52 - Community Video: Bag Lady Achievement","description":"Community member Tatsudoshi shows us how to get the Bag Lady Achievement in Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-bag-lady-achievement","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ba027c66-1f5d-4c84-8f8f-06fe638e892b/sm/ep431.jpg","duration":123,"publication_date":"2008-11-20T20:19:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-gnoming-pack-rat-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E51 - Community Video: Gnoming, Pack Rat Achievement Guide","description":"Fragger shows us how to get the Gonming and Pack Rat Achievements in Jumper.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-gnoming-pack-rat-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/053f9029-f52d-4496-be95-ea888ff8aa05/sm/ep430.jpg","duration":330,"publication_date":"2008-11-20T19:43:00.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-packrat-guide-part-2-of-4","changefreq":"weekly","video":[{"title":"2008:E50 - Packrat Guide Part 2 of 4","description":"Geoff shows us where to find the hidden bags in Chapters 3-5 of Mirror's Edge.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-packrat-guide-part-2-of-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f32f0197-8c11-47ac-92b1-1630166bdb4c/sm/ep429.jpg","duration":312,"publication_date":"2008-11-20T17:24:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-trickster-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E49 - Trickster Achievement Guide","description":"Knuckles and a special guest show how to get the Trickster Achievement in Saint's Row 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-trickster-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5d9ca302-da81-4d0f-8416-01ab4921bd19/sm/ep428.jpg","duration":213,"publication_date":"2008-11-20T16:45:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-packrat-guide-part-1-of-4","changefreq":"weekly","video":[{"title":"2008:E48 - Packrat Guide Part 1 of 4","description":"Geoff shows us how to get the 30 hidden bags in Mirror's Edge. Part 1 of 4.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-packrat-guide-part-1-of-4","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4b142d50-4623-42c9-a8a3-79e89cab80e7/sm/ep427.jpg","duration":202,"publication_date":"2008-11-19T20:23:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-do-not-talk-about-it-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E47 - Do Not Talk About It Achievement Guide","description":"Knuckles shows us how to nab the \"Do Not Talk About It\" Achievement in Saint's Row 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-do-not-talk-about-it-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d7b69871-3172-4e89-8805-37ecccb4d9ce/sm/ep426.jpg","duration":245,"publication_date":"2008-11-19T15:58:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wrecking-crew-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E46 - Wrecking Crew Achievement Guide","description":"Knuckles shows us how to get the Wrecking Crew Achievement in Saint's Row 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wrecking-crew-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/db5cad2e-d3a2-4792-a175-ba532eee2acd/sm/ep424.jpg","duration":364,"publication_date":"2008-11-18T16:00:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nxe-preview-part-3-of-3","changefreq":"weekly","video":[{"title":"2008:E60 - NXE Preview Part 3 of 3","description":"Knuckles shows us all about Avatar creation in the NXE.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nxe-preview-part-3-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/231d8424-d3eb-4341-8926-c988dea47ba8/sm/ep423.jpg","duration":630,"publication_date":"2008-11-17T16:21:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-collectibles-act-five","changefreq":"weekly","video":[{"title":"2008:E59 - Hidden Collectibles, Act Five","description":"Jack wraps up the hidden collectibles in Gears, and nets an Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-collectibles-act-five","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e33206ec-9971-4298-84b0-857979409491/sm/ep422.jpg","duration":165,"publication_date":"2008-11-14T16:48:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nxe-preview-part-2-of-3","changefreq":"weekly","video":[{"title":"2008:E58 - NXE Preview Part 2 of 3","description":"Knuckles shows us al the ins and outs of the upcoming New Xbox Experience. Part two of three.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nxe-preview-part-2-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f092812b-b1a6-4eff-bc01-6ce8e479b144/sm/ep421.jpg","duration":357,"publication_date":"2008-11-14T15:53:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-collectibles-act-four-gears","changefreq":"weekly","video":[{"title":"2008:E56 - Hidden Collectibles, Act Four","description":"Jack shows us where to find the hidden collectibles in Act Four of Gears of War 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-collectibles-act-four-gears","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/358eb707-58a6-42e0-90ca-a939a658f367/sm/ep419.jpg","duration":283,"publication_date":"2008-11-13T17:03:04.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-hard-target-plus-beating-the-last-level","changefreq":"weekly","video":[{"title":"2008:E55 - Community Video: Hard Target plus beating the last level","description":"Fragger shows us how to beat the last level of Jumper, and also pick up the Hard Target Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-hard-target-plus-beating-the-last-level","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/42452a37-629b-4b80-9da6-72ade687eca0/sm/ep417.jpg","duration":603,"publication_date":"2008-11-12T20:03:38.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-five-secret-achievements","changefreq":"weekly","video":[{"title":"2008:E45 - Community Video: Five Secret Achievements","description":"Leafshinobi7 shows us how to get: Inked, One of a Kind Axe, Custom Beats, Warrior of Rock, and Rock Maiden in Guitar Hero: World Tour.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-five-secret-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a6474a99-19c0-4c29-a04a-96fe3de2ef14/sm/ep416.jpg","duration":179,"publication_date":"2008-11-12T19:56:33.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-the-bigamist-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E44 - Community Video: The Bigamist Achievement Guide","description":"NewfieKeir shows us how to get the Bigamist Achievement in Fable 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-the-bigamist-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e701ed3e-db0d-439d-a65f-7cf9267da510/sm/ep415.jpg","duration":143,"publication_date":"2008-11-12T19:38:08.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-collectibles-act-three","changefreq":"weekly","video":[{"title":"2008:E54 - Hidden Collectibles, Act Three","description":"Jack shows us where to find the six hidden collectibles in Act Three of Gears of War 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-collectibles-act-three","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/754fd414-72b4-4c7e-ba6b-f676b936e624/sm/ep414.jpg","duration":166,"publication_date":"2008-11-12T17:34:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-collectibles-act-two","changefreq":"weekly","video":[{"title":"2008:E53 - Hidden Collectibles, Act Two","description":"Jack shows us where to find the hidden collectibles in Act Two of Gears of War 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-collectibles-act-two","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7e54cf76-3243-4323-8603-5b139edd819c/sm/ep413.jpg","duration":184,"publication_date":"2008-11-11T16:46:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-collectibles-act-one","changefreq":"weekly","video":[{"title":"2008:E52 - Hidden Collectibles, Act One","description":"Jack shows us how to get the collectibles hidden through Act One of Gears of War 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-collectibles-act-one","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/6a3c9727-9cdc-4720-9fca-a5324fc95e0e/sm/ep411.jpg","duration":356,"publication_date":"2008-11-10T19:57:22.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-green-as-grass-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E43 - Green as Grass Achievement Guide","description":"Jack shows us how to get the easiest Gears 2 Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-green-as-grass-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b606407b-9fa3-43e4-9a74-d502f69afd1d/sm/ep410.jpg","duration":138,"publication_date":"2008-11-07T16:03:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-nxe-preview-part-1-of-3","changefreq":"weekly","video":[{"title":"2008:E51 - NXE Preview Part 1 of 3","description":"Knuckles shows us al the ins and outs of the upcoming New Xbox Experience. Part one of three.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-nxe-preview-part-1-of-3","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/677c3d8b-67b1-4f0e-a041-7338b34e5c76/sm/ep409.jpg","duration":710,"publication_date":"2008-11-06T19:16:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-feat-of-a-hundred-slashes-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E42 - Community Video: Feat of a Hundred Slashes Achievement Guide","description":"Bl4ckL15sted has some issues. Luckily, there's games like Ninja Gaiden 2 for him to work them out in.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-feat-of-a-hundred-slashes-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4c6e7115-217f-4239-81f2-1ef2df289cd0/sm/ep408.jpg","duration":157,"publication_date":"2008-11-05T21:58:29.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-roadkill-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E41 - Community Video: Roadkill Achievement Guide","description":"Lopez_55 turns in this community video showing how to get one of the harder Achievements in The Darkness \"Roadkill\".","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-roadkill-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/16205254-731b-4525-9f28-5f6e734e8df5/sm/ep407.jpg","duration":200,"publication_date":"2008-11-05T21:50:27.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-community-video-eight-jumper-achievements","changefreq":"weekly","video":[{"title":"2008:E40 - Community Video: Eight Jumper Achievements","description":"Old school user Fragger turns in his first in a three part series in how to get 1,000 Gamerscore in Jumper. This video will net you eight Achievements for 400 GS.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-community-video-eight-jumper-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f1b373f5-ff25-40a5-98eb-6e436166afa3/sm/ep406.jpg","duration":282,"publication_date":"2008-11-05T21:46:57.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-four-awesome-fable-ii-achievements","changefreq":"weekly","video":[{"title":"2008:E39 - Four awesome Fable II Achievements","description":"Geoff shows us how to get: The Show-Off, The Archaeologist, The Dog Trainer, and The Pooch Pamperer.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-four-awesome-fable-ii-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/eb0cfa9e-537d-4200-af42-2d941f522c32/sm/ep405.jpg","duration":176,"publication_date":"2008-11-04T19:06:20.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-out-of-the-blue-tests-like-chicken-saw-that-one-coming-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E38 - Out of the Blue / Tests Like Chicken / Saw That One Coming Achievement Guide","description":"Knuckles shows us how to get three, count-em THREE Achievements in Portal: Still Alive.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-out-of-the-blue-tests-like-chicken-saw-that-one-coming-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e2b09933-e4c0-427b-8b01-755c92643d40/sm/ep404.jpg","duration":209,"publication_date":"2008-11-03T15:59:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-is-anyone-there-2-other-achievments","changefreq":"weekly","video":[{"title":"2008:E50 - Is Anyone There + 2 other Achievments","description":"Knuckles shows us how to get \"Is Anyone There\", \"The Camera Adds 10 Pounds\", and \"A Feeling Like Floating\".","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-is-anyone-there-2-other-achievments","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c03a3a93-fbc7-4877-b1bb-5a0fcea3ffb2/sm/ep403.jpg","duration":442,"publication_date":"2008-10-31T14:56:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-community-video-marathon-man","changefreq":"weekly","video":[{"title":"2008:E49 - Community Video: Marathon Man","description":"Community member chad2thewick shows us how to get the Marathon Man Achievement in Halo 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-community-video-marathon-man","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e41b894f-d5fa-4c75-a76d-d106891462fa/sm/ep400.jpg","duration":241,"publication_date":"2008-10-30T21:02:46.000Z","requires_subscription":true}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-cant-nobody-hold-you-down","changefreq":"weekly","video":[{"title":"2008:E48 - Can't Nobody Hold You Down","description":"Gus shows us how to beat the final boss in Penny Arcade Adventures: Episode 2, and net the \"Can't Nobody Hold You Down\" Achievement in the process.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-cant-nobody-hold-you-down","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/47cf6346-563a-4927-989e-5e35f5c0fd31/sm/ep399.jpg","duration":164,"publication_date":"2008-10-30T17:26:16.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-solved-world-2-traversed-world-2","changefreq":"weekly","video":[{"title":"2008:E47 - Solved World 2 / Traversed World 2","description":"Young Benjamin gets into the Achievement game and shows us how to get two Achievements in Braid.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-solved-world-2-traversed-world-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fba3a1d3-0c9e-4dfb-b867-0f11050b0169/sm/ep398.jpg","duration":341,"publication_date":"2008-10-30T17:16:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-reluctant-hero-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E37 - Reluctant Hero Achievement Guide","description":"Gus is kind of like a reluctant hero, if you replace the word \"hero\" with \"hetero.\"","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-reluctant-hero-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d4d34ded-95f3-4263-a627-3c6d232e8a66/sm/ep397.jpg","duration":89,"publication_date":"2008-10-29T17:42:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-lab-assistant-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E36 - Lab Assistant Achievement Guide","description":"Gus, who is actually a lab assistant in real life, shows us how to get the Achievement in Penny Arcade Adventures: Episode 2.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-lab-assistant-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c93a4d4c-92aa-4bc7-8bf7-9136a0bfad9e/sm/ep396.jpg","duration":330,"publication_date":"2008-10-29T17:39:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pack-rat-strikes-back","changefreq":"weekly","video":[{"title":"2008:E46 - Pack Rat Strikes Back","description":"Gus shows us how to get Pack Rat Strikes Back, in the new Penny Arcade Adventures Episode 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pack-rat-strikes-back","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f02f46bf-51a8-4a27-84b4-8d16a2466946/sm/ep394.jpg","duration":66,"publication_date":"2008-10-28T16:40:21.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-mindless-prey-plus-3-others-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E34 - Mindless Prey plus 3 others Achievement Guide","description":"Geoff shows how to get Mindless Prey, Exodus, Survivor and One Gun.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-mindless-prey-plus-3-others-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/568fcf42-35c1-42c2-befb-099076abe1a4/sm/ep393.jpg","duration":218,"publication_date":"2008-10-28T16:32:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-power-surrrge","changefreq":"weekly","video":[{"title":"2008:E45 - Power Surrrge!","description":"Gus shows us how to get the \"Power Surrrge!\" Achievement in the upcoming Penny Arcade Adventures Episode 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-power-surrrge","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/299dc17c-a44a-4fd2-91d1-a01c08116479/sm/ep392.jpg","duration":150,"publication_date":"2008-10-27T16:57:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-like-a-rat-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E33 - Like A Rat Achievement Guide","description":"Knuckles shows us how to get \"Like A Rat\" in Portal: Still Alive.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-like-a-rat-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ed753f99-419e-4ff9-899f-54691cdad12e/sm/ep391.jpg","duration":130,"publication_date":"2008-10-27T16:02:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-get-off-my-ship-slugger-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E32 - Get Off My Ship! / Slugger Achievement Guide","description":"Geoff shows us how to get these two Achievements, while reliving a painful high school memory in the process.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-get-off-my-ship-slugger-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/890ef705-1b7c-4821-ba67-00b0401fcb86/sm/ep390.jpg","duration":115,"publication_date":"2008-10-27T15:48:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-vidmaster-challenge-annual","changefreq":"weekly","video":[{"title":"2008:E44 - Vidmaster Challenge: Annual","description":"Jack and Gav show us how to beat Halo 3 on Legendary in 4-player Co-op, with the Iron Skull on, using Ghosts.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-vidmaster-challenge-annual","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f696a2a-5818-4d4b-92d3-379bece00f29/sm/ep388.jpg","duration":345,"publication_date":"2008-10-24T16:05:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-levels-9-12-of-12","changefreq":"weekly","video":[{"title":"2008:E43 - Log Walkthrough Levels 9 - 12 (of 12)","description":"Jacks wraps up the last four levels of Dead Space and nabs an Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-levels-9-12-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/7592ca48-708c-4ea2-b448-41ee98be5c97/sm/ep385.jpg","duration":235,"publication_date":"2008-10-22T15:54:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-levels-7-and-8-of-12","changefreq":"weekly","video":[{"title":"2008:E42 - Log Walkthrough Levels 7 & 8 (of 12)","description":"Jack shows up on the scene and is like \"Who wants to see some hidden logs\" and we're all like \"Oh snap!\"","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-levels-7-and-8-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ff44c860-2b4c-4be7-8f54-28f384e5ac3d/sm/ep384.jpg","duration":135,"publication_date":"2008-10-21T15:49:06.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-pure-unlocked-stage-3-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E28 - Pure: Unlocked Stage 3 Achievement Guide","description":"Knuckles shows us how to get the \"Unlocked Stage 3\" Achievement in Pure.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-pure-unlocked-stage-3-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/05a155cb-1dfa-41ed-ba00-0294128db50b/sm/ep383.jpg","duration":334,"publication_date":"2008-10-21T15:24:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-exterminator-playing-catch-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E27 - Exterminator / Playing Catch Achievement Guide","description":"Geoff shows us how to get two secret Achievements in Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-exterminator-playing-catch-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/afb762bb-3896-489b-a1bc-e65186683376/sm/ep381.jpg","duration":136,"publication_date":"2008-10-20T16:00:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-levels-5-and-6-of-12","changefreq":"weekly","video":[{"title":"2008:E41 - Log Walkthrough Levels 5 & 6 (of 12)","description":"Jack shows us how to get the hidden logs in levels five and six of Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-levels-5-and-6-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d792d67f-587f-4142-8772-1cbbb57c45ad/sm/ep380.jpg","duration":189,"publication_date":"2008-10-20T14:37:38.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-level-4-of-12","changefreq":"weekly","video":[{"title":"2008:E40 - Log Walkthrough Level 4 (of 12)","description":"Jack shows us how to get the hidden logs in level four of Dead Space, including a tricky one!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-level-4-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f76d67eb-4cf5-40bf-b41a-930b641d0104/sm/ep379.jpg","duration":213,"publication_date":"2008-10-17T14:16:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-level-3-of-12","changefreq":"weekly","video":[{"title":"2008:E39 - Log Walkthrough Level 3 (of 12)","description":"Moving along to Level 3, Jack find some hidden logs. I wonder if he'll find the log I hid for him","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-level-3-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fa2b67e8-c497-494c-8dfc-4b44fd1865a6/sm/ep377.jpg","duration":137,"publication_date":"2008-10-16T15:58:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-hidden-skull-locations","changefreq":"weekly","video":[{"title":"2008:E38 - Hidden Skull Locations","description":"Gav shows us where all nine hidden skulls are located in Halo 3.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-hidden-skull-locations","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1812e2de-cde5-4806-bee3-9e04358c67cf/sm/ep376.jpg","duration":477,"publication_date":"2008-10-16T14:31:47.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-brute-force-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E26 - Brute Force Achievement Guide","description":"Geoff shows you how to get the Brute Force Achievement in Dead Space. Booyah.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-brute-force-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1ac9530a-8d98-482b-ac2f-e19cffcaa858/sm/ep375.jpg","duration":173,"publication_date":"2008-10-15T18:41:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-level-2-of-12","changefreq":"weekly","video":[{"title":"2008:E37 - Log Walkthrough Level 2 (of 12)","description":"Jack shows us how to get the 11 hidden logs in level 2 of Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-level-2-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/273a8611-4b59-40ac-85b8-43fd60d3c001/sm/ep374.jpg","duration":198,"publication_date":"2008-10-15T14:04:36.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-log-walkthrough-level-1-of-12","changefreq":"weekly","video":[{"title":"2008:E36 - Log Walkthrough Level 1 (of 12)","description":"Jack shows us where to find the hidden logs in Level One of Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-log-walkthrough-level-1-of-12","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f743ec7-2260-4822-bbcf-f3b1083ec449/sm/ep373.jpg","duration":103,"publication_date":"2008-10-14T16:21:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-dinokeeper-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E25 - Dinokeeper Achievement Guide","description":"Geoff shows us how to get the elusive \"Dinokeeper\" achievement in Viva Pinata: Trouble in Paradise.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-dinokeeper-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5f8f78c8-bc61-4b3d-bc26-4fbb98984861/sm/ep370.jpg","duration":421,"publication_date":"2008-10-13T15:15:01.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-ragdoll-check-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E24 - Ragdoll Check Achievement Guide","description":"Geoff shows you how to get that tricky Ragdoll Check Achievement. Then he teaches you how to love again.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-ragdoll-check-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/52d85dab-1a88-4371-a2c0-1285deb02e1b/sm/ep369.jpg","duration":189,"publication_date":"2008-10-10T14:23:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-armstrong-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E23 - Armstrong Achievement Guide","description":"Geoff shows you how to get that elusive Armstrong Achievement in Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-armstrong-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f3e5ce18-3a4b-49d7-8c74-30dcd0a58a16/sm/ep368.jpg","duration":190,"publication_date":"2008-10-09T14:21:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-merchant-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E22 - Merchant Achievement Guide","description":"Jack shows us how to get the Merchant Achievement in Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-merchant-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d01f27d8-d929-41b6-b3cb-333660920b88/sm/ep367.jpg","duration":205,"publication_date":"2008-10-08T14:46:15.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-air-alert-walkthrough","changefreq":"weekly","video":[{"title":"2008:E34 - Air Alert Walkthrough","description":"Geoff and Jack show us how to hop our way to the Air Alert Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-air-alert-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/04080b9d-f747-4d36-af9c-8f4285128933/sm/ep366.jpg","duration":97,"publication_date":"2008-10-07T12:57:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-marksman-and-tool-time-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E21 - Marksman and Tool Time Achievement Guide","description":"Jack and Geoff show you how to get your first two Achievements in the soon-to-be-released Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-marksman-and-tool-time-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3deb644f-604a-4ece-b8a1-783ce1600200/sm/ep364.jpg","duration":273,"publication_date":"2008-10-06T13:45:51.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-bossk-impaled-sith-lord-frenzy-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E20 - Bossk, Impaled, Sith Lord Frenzy Achievement Guide","description":"Jack walks us through getting the Bossk, Impaled, and Sith Lord Frenzy Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-bossk-impaled-sith-lord-frenzy-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/8d8376b1-61d7-4189-a48c-2144b45607cc/sm/ep363.jpg","duration":143,"publication_date":"2008-10-03T15:13:45.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-secret-agent-legend-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E19 - Secret Agent Legend Achievement Guide","description":"Knuckles is a better gamer than us, and to prove it, he gets the Secret Agent Legend, Secret Agent, and Wheel'n Achievements all in this one video.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-secret-agent-legend-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/33bbfb86-0871-4f0f-8721-876c7c6e5efb/sm/ep362.jpg","duration":804,"publication_date":"2008-10-02T17:04:07.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-overkill-steppin-razor-2-for-1-mongoose-mowdown-guide","changefreq":"weekly","video":[{"title":"2008:E18 - Overkill, Steppin Razor, 2 for 1, Mongoose Mowdown Guide","description":"Gav shows us how to get the four hardest Achievements in the first 1,000 GS of Halo 3.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-overkill-steppin-razor-2-for-1-mongoose-mowdown-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f8a03d1a-b30c-4e10-b940-2ebe8bee3dc7/sm/ep361.jpg","duration":249,"publication_date":"2008-10-01T13:56:13.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-9-death-star","changefreq":"weekly","video":[{"title":"2008:E33 - Holocron Walkthrough Level 9 \"Death Star\"","description":"This is it. The last level \"Death Star\". That Achievement is so close I bet you can taste it!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-9-death-star","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/fb75bbfa-b776-403c-82bf-9044492f41e5/sm/ep360.jpg","duration":409,"publication_date":"2008-09-30T15:23:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-8-raxus-prime","changefreq":"weekly","video":[{"title":"2008:E32 - Holocron Walkthrough Level 8 \"Raxus Prime\"","description":"Jack finds stuff.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-8-raxus-prime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/443a8d94-a2dd-4158-9068-7b34a1fd33ad/sm/ep358.jpg","duration":368,"publication_date":"2008-09-29T02:49:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-7-imperial-felucia","changefreq":"weekly","video":[{"title":"2008:E31 - Holocron Walkthrough Level 7 \"Imperial Felucia\"","description":"Jack found some more Holocrons. Yippee.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-7-imperial-felucia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1cbd714e-24ac-42f4-bcbd-91d1d1a2f0c9/sm/ep357.jpg","duration":412,"publication_date":"2008-09-28T01:42:08.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-6-imperial-kashyyyk","changefreq":"weekly","video":[{"title":"2008:E30 - Holocron Walkthrough Level 6 \"Imperial Kashyyyk\"","description":"Jack shows us how to get the 15 Holocrons hidden away in Level 6 of Star Wars: The Force Unleashed.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-6-imperial-kashyyyk","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0707ce52-425d-4267-a3c8-a113f6fa995d/sm/ep356.jpg","duration":269,"publication_date":"2008-09-26T15:35:26.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-levels-4-and-5-empirical-and-cloud-city","changefreq":"weekly","video":[{"title":"2008:E28 - Holocron Walkthrough Levels 4 and 5 \"Empirical and Cloud City\"","description":"Jack walks us through getting the 10 Holocrons located in Levels 4 and 5 of Star Wars: The Force Unleashed.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-levels-4-and-5-empirical-and-cloud-city","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5741504b-aeff-439c-9387-fba346417e94/sm/ep354.jpg","duration":222,"publication_date":"2008-09-25T15:36:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-three-new-halo-3-achievements","changefreq":"weekly","video":[{"title":"2008:E17 - Three new Halo 3 Achievements","description":"Gavino shows us how to get the following new Halo 3 Achievements: Alas, Poor Yorick, Double Double, Came...From...Behind.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-three-new-halo-3-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0c50af2b-6c01-470e-8ea6-8efb2515d40e/sm/ep353.jpg","duration":238,"publication_date":"2008-09-24T17:36:00.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-3-felucia","changefreq":"weekly","video":[{"title":"2008:E27 - Holocron Walkthrough Level 3 \"Felucia\"","description":"Jack walks us through getting the 15 Holocrons in Level 3 \"Felucia\".","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-3-felucia","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bfe7dc8-558a-4e7b-9214-85d3504587a6/sm/ep352.jpg","duration":291,"publication_date":"2008-09-24T15:46:41.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-world-tour-stage-1-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E16 - World Tour: Stage 1 Achievement Guide","description":"Knuckles shows us how to get: One of a Kind, Finished an Event, Flawless Lap, Stage 2 Unlocked, and Stage 1 Completed.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-world-tour-stage-1-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/13a8127b-b212-4783-accd-5c9858c064e3/sm/ep351.jpg","duration":923,"publication_date":"2008-09-23T19:02:03.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-2-raxus-prime","changefreq":"weekly","video":[{"title":"2008:E26 - Holocron Walkthrough Level 2 \"Raxus Prime\"","description":"Jack shows us where those pesky holocrons are on level 2 \"Raxus Prime\" in Star Wars: The Force Unleashed.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-2-raxus-prime","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b2e4a6e6-2a26-46b4-bc48-e4043e9a1ba8/sm/ep350.jpg","duration":362,"publication_date":"2008-09-23T15:17:29.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-holocron-walkthrough-level-1-tie-fighter-factory","changefreq":"weekly","video":[{"title":"2008:E25 - Holocron Walkthrough Level 1 \"Tie Fighter Factory\"","description":"Jack shows us how to get the 15 Holocrons in level one.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-holocron-walkthrough-level-1-tie-fighter-factory","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9881c1f1-0670-4df1-b637-adb397de4244/sm/ep348.jpg","duration":371,"publication_date":"2008-09-22T15:13:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-flawless-event-three-other-achievements","changefreq":"weekly","video":[{"title":"2008:E15 - Flawless Event + Three other Achievements","description":"Knuckles shows us how to get Flawless Event, Show Off, Learner Driver, and Full Speed Ahead, all in one race!","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-flawless-event-three-other-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ff01b02-244f-4e37-baf4-b2e4634f2d31/sm/ep347.jpg","duration":205,"publication_date":"2008-09-22T14:53:28.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-frenzy-sith-frenzy-walkthrough","changefreq":"weekly","video":[{"title":"2008:E24 - Frenzy / Sith Frenzy Walkthrough","description":"Jack shows us how to get the Frenzy and Sith Frenzy Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-frenzy-sith-frenzy-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9d708d54-68d4-4ded-a3e6-bf241e3aae3f/sm/ep346.jpg","duration":79,"publication_date":"2008-09-19T13:57:02.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-worst-day-shift-manager-ever","changefreq":"weekly","video":[{"title":"2008:E23 - Worst Day-Shift Manager Ever","description":"Jack shows us how to get one of the best named Achievements to date.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-worst-day-shift-manager-ever","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3b3da164-908e-4b17-a907-9423c856ee93/sm/ep345.jpg","duration":134,"publication_date":"2008-09-18T15:11:31.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-wheelman-legend-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E14 - Wheelman Legend Achievement Guide","description":"Knuckles shows us how to get Wheelman and Wheelman Legend in Stuntman: Ignition.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-wheelman-legend-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9c0e4039-f512-4702-890b-d518b10df346/sm/ep344.jpg","duration":779,"publication_date":"2008-09-17T16:32:11.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-commando-legend-walkthrough","changefreq":"weekly","video":[{"title":"2008:E22 - Commando Legend Walkthrough","description":"Knuckles shows us how to get Commando, and Commando Legend.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-commando-legend-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/4fe88785-c3c2-4789-8795-036e887550ff/sm/ep343.jpg","duration":726,"publication_date":"2008-09-16T16:09:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-gone-clubbing-long-shot-guide","changefreq":"weekly","video":[{"title":"2008:E13 - Gone Clubbing / Long Shot Guide","description":"Geoff glug glugs his way through two achievements in Viva Piata: Trouble in Paradise.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-gone-clubbing-long-shot-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/21e076d8-91b1-4824-b39a-40b77be33bcb/sm/ep341.jpg","duration":141,"publication_date":"2008-09-15T15:18:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-hillbilly-legend-guide-plus-four-others","changefreq":"weekly","video":[{"title":"2008:E12 - Hillbilly Legend Guide (plus four others)","description":"Knuckles shows us how to get Hillbilly, Hillbilly Legend, Drifter, Turtle, and Crazy Horse.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-hillbilly-legend-guide-plus-four-others","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/d9c89d04-338f-42cd-b79d-6e4156fc6f28/sm/ep340.jpg","duration":898,"publication_date":"2008-09-12T15:45:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-phoenix-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E11 - Phoenix Achievement Guide","description":"Geoff shows us how to get the Phoenix Achievement in Soul Calibur IV.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-phoenix-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/ea2f4f87-8944-43b6-ad0f-dd605e0aec62/sm/ep339.jpg","duration":131,"publication_date":"2008-09-11T15:38:44.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-aftershocker-legend-6-other-achievements","changefreq":"weekly","video":[{"title":"2008:E10 - Aftershocker Legend + 6 other Achievements","description":"Knuckles shows us how to get Aftershocker Legend, Aftershocker, Millionaire, Flammable, Wings, String'n King, and Shaver.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-aftershocker-legend-6-other-achievements","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1b2660a6-9396-4433-8a87-a43d965e4c09/sm/ep337.jpg","duration":779,"publication_date":"2008-09-10T16:56:39.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-neophyte-hoarder-scout-clean-slate-guide","changefreq":"weekly","video":[{"title":"2008:E9 - Neophyte, Hoarder, Scout, Clean Slate Guide","description":"Jack and Geoff take us on a trip down memory lane for four Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-neophyte-hoarder-scout-clean-slate-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/073bb71a-0e3f-46e9-bee6-290534bb1be2/sm/ep336.jpg","duration":257,"publication_date":"2008-09-09T15:51:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-threader-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E8 - Threader Achievement Guide","description":"Knuckles shows us how to get the Threader Achievement in Stuntman Ignition.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-threader-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/90610514-5b5a-4417-b69a-0fdd78d1c191/sm/ep334.jpg","duration":205,"publication_date":"2008-09-09T03:00:10.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-smasher-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E7 - Smasher Achievement Guide","description":"Geoff is awesome at hitting people with sticks.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-smasher-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/b1cd1ecf-c2f8-41ea-a513-beaba6ac7209/sm/ep333.jpg","duration":104,"publication_date":"2008-09-05T14:55:52.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-millionaire-achievement-guide","changefreq":"weekly","video":[{"title":"2008:E6 - Millionaire Achievement Guide","description":"Knuckles wraps up our coverage of Geometry Wars: Retro Evolved 2, with the final Millionaire guide.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-millionaire-achievement-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0ad33e75-f488-460c-9176-ee61fad83699/sm/ep332.jpg","duration":307,"publication_date":"2008-09-04T15:31:42.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-true-identity-walkthrough","changefreq":"weekly","video":[{"title":"2008:E21 - True Identity Walkthrough","description":"Jack is ugly. But he gets Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-true-identity-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e8332eeb-fe8b-4688-900c-5e41d46de598/sm/ep331.jpg","duration":108,"publication_date":"2008-09-03T15:23:35.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-equal-skill-and-power-guide","changefreq":"weekly","video":[{"title":"2008:E5 - Equal Skill and Power Guide","description":"Geoff shows us how to nab the \"Equal Skill and Power\" Achievement.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-equal-skill-and-power-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9135ca50-25dd-4538-b30e-45bff66b2832/sm/ep329.jpg","duration":172,"publication_date":"2008-09-02T15:12:14.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-unlocked-season-1-waves-surf-phobia-unlocked-all-modes-millionaire-guide","changefreq":"weekly","video":[{"title":"2008:E4 - Waves: Surf / Phobia / Unlocked All Modes / Millionaire Guide","description":"Knuckles helps us knock out: Surf / Phobia / Unlocked All Modes / and Millionaire.","player_loc":"https://roosterteeth.com/embed/achievement-unlocked-season-1-waves-surf-phobia-unlocked-all-modes-millionaire-guide","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/efe145f0-1a35-46d6-8e3a-5b3aa6642f2a/sm/ep328.jpg","duration":141,"publication_date":"2008-09-02T00:38:48.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-pacifism-wax-on-wax-off-slalom-millionaire","changefreq":"weekly","video":[{"title":"2008:E20 - Pacifism: Wax On / Wax Off / Slalom / Millionaire","description":"Knuckles shows us how to get another three Achievements in Geometry Wars: Retro Evolved 2.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-pacifism-wax-on-wax-off-slalom-millionaire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/3bb36806-1af9-4a66-9f94-8c1ead9f21e3/sm/ep327.jpg","duration":136,"publication_date":"2008-08-29T12:25:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-king-treaty-millionaire","changefreq":"weekly","video":[{"title":"2008:E19 - King: Treaty / Millionaire","description":"Knuckles shows us how to get the Treaty, and Millionaire Achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-king-treaty-millionaire","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/5693805b-5f63-4197-ae29-8bccecbbd1a1/sm/ep326.jpg","duration":165,"publication_date":"2008-08-28T16:07:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-deadline-rebound-magpie-millionairewalkthrough","changefreq":"weekly","video":[{"title":"2008:E18 - Deadline: Rebound / Magpie / MillionaireWalkthrough","description":"Knuckles walks us through getting Rebound, Magpie, and Millionaire Achievements in Deadline. All in one handy video!","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-deadline-rebound-magpie-millionairewalkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/0165f81d-0161-450a-97da-ce84dc962ad3/sm/ep324.jpg","duration":191,"publication_date":"2008-08-26T16:02:34.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-madden-09-touchdowns","changefreq":"weekly","video":[{"title":"2008:E17 - Madden 09: Touchdowns","description":"Something about touchdowns in American football.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-madden-09-touchdowns","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c5a6d8b8-bdef-4365-b266-76b524229853/sm/ep321.jpg","duration":128,"publication_date":"2008-08-22T14:38:40.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-madden-09-now-heres-a-monster","changefreq":"weekly","video":[{"title":"2008:E16 - Madden 09: Now Here's a Monster","description":"In this vid we pick up the \"Now Here's a Guy...\" and \"Midway Monster\" achievements.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-madden-09-now-heres-a-monster","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/344f67e1-02e6-47ad-8023-7e39f0a4f991/sm/ep320.jpg","duration":126,"publication_date":"2008-08-21T18:50:32.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-exclusive-dead-space-preview","changefreq":"weekly","video":[{"title":"2008:E14 - Exclusive Dead Space Preview","description":"Jack takes a trip out to EA to get a look at the upcoming Dead Space.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-exclusive-dead-space-preview","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/9f1d7d65-b52e-4a29-8175-6eae368a4dba/sm/ep316.jpg","duration":345,"publication_date":"2008-08-18T16:06:12.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-scorpions-sting-walkthrough","changefreq":"weekly","video":[{"title":"2008:E13 - Scorpion's Sting Walkthrough","description":"Geoff shows us how to get the Scorpion's Sting Achievement in Soul Calibur IV. What a nice guy.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-scorpions-sting-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/a84799d4-9b09-4f56-99ad-edc2e01c3ef5/sm/ep315.jpg","duration":130,"publication_date":"2008-08-15T13:46:23.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-eragon-secret-egg-walkthrough-2","changefreq":"weekly","video":[{"title":"2008:E12 - Eragon Secret Egg Walkthrough","description":"Jack walks us through getting the 18 secret eggs hidden within the game Eragon. (Part Two of Two)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-eragon-secret-egg-walkthrough-2","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/dc5d7a3d-ad4e-45d3-81ae-b047e57ed5e2/sm/ep314.jpg","duration":209,"publication_date":"2008-08-14T13:17:56.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gtaiv-chain-reaction-walkthrough","changefreq":"weekly","video":[{"title":"2008:E10 - GTAIV \"Chain Reaction\" Walkthrough","description":"Geoff walks us through getting the \"Chain Reaction\" Achievement in GTAIV.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gtaiv-chain-reaction-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/f7429c2e-79b3-4d51-8136-53e4413449cd/sm/ep312.jpg","duration":168,"publication_date":"2008-08-12T17:44:59.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-petchievements-volume-1","changefreq":"weekly","video":[{"title":"2008:E9 - Petchievements Volume 1","description":"Geoff and Jack show you an Achievement so easy that a dog could do it...or could he","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-petchievements-volume-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c1aa2b84-3a4d-4a38-b7d1-dc0705c73391/sm/ep309.jpg","duration":108,"publication_date":"2008-08-08T14:41:24.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-eragon-secret-egg-walkthrough-1","changefreq":"weekly","video":[{"title":"2008:E8 - Eragon Secret Egg Walkthrough","description":"Jack walks us through getting the 18 secret eggs hidden within the game Eragon. (Part One of Two)","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-eragon-secret-egg-walkthrough-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/44de7572-dbf8-4ef5-a512-eec94edcd87a/sm/ep308.jpg","duration":307,"publication_date":"2008-08-07T14:51:33.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-silent-but-deadly-walkthrough","changefreq":"weekly","video":[{"title":"2008:E6 - \"Silent, But Deadly\" Walkthrough","description":"Knuckles walks us through getting the \"Silent, But Deadly\" achievement in this gripping guide.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-silent-but-deadly-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/62dd3c39-5936-4f95-8833-ab3a7f13dfc5/sm/ep302.jpg","duration":586,"publication_date":"2008-08-04T18:58:30.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-gta-iv-rolled-over-walkthrough","changefreq":"weekly","video":[{"title":"2008:E5 - GTA IV Rolled Over Walkthrough","description":"Jack walks us through getting the \"Rolled Over\" Achievement in GTA IV.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-gta-iv-rolled-over-walkthrough","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/c67ff253-9e65-40a5-bc79-808eae818f56/sm/ep301.jpg","duration":186,"publication_date":"2008-08-01T14:22:19.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-unreal-tournament-3-review","changefreq":"weekly","video":[{"title":"2008:E4 - Unreal Tournament 3 Review","description":"Jack reviews the newest UT.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-unreal-tournament-3-review","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/74cefa62-d48b-4cca-b586-c6e5b80e928a/sm/ep300.jpg","duration":162,"publication_date":"2008-07-31T15:49:37.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-endangered-species-walkthrough-1","changefreq":"weekly","video":[{"title":"2008:E3 - Endangered Species Walkthrough","description":"Part One of Eight. Knuckles walks us through how to collect all those annoying pigeons in GTAIV.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-endangered-species-walkthrough-1","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/1f700311-d09b-44dd-842f-a3551427833a/sm/ep299.jpg","duration":578,"publication_date":"2008-07-30T16:08:17.000Z","requires_subscription":false}]} +{"url":"https://roosterteeth.com/episode/achievement-hunter-achievement-hunter-burnout-paradise-millionaires-club","changefreq":"weekly","video":[{"title":"2008:E2 - Burnout Paradise: Millionaire's Club","description":"Jack gives us a walkthrough on getting the Millionaire's Club Achievement in Burnout Paradise.","player_loc":"https://roosterteeth.com/embed/achievement-hunter-achievement-hunter-burnout-paradise-millionaires-club","thumbnail_loc":"https://rtv3-img-roosterteeth.akamaized.net/uploads/images/e82e1925-89dd-4493-9bcf-cdef9665d726/sm/ep298.jpg","duration":174,"publication_date":"2008-07-29T14:58:04.000Z","requires_subscription":false}]} diff --git a/packages/kinesis-sitemap-writer/test/perf.js b/packages/kinesis-sitemap-writer/test/perf.js new file mode 100755 index 0000000..b5d889b --- /dev/null +++ b/packages/kinesis-sitemap-writer/test/perf.js @@ -0,0 +1,199 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-var-requires */ +/*! + * Sitemap performance test + * Copyright(c) 2011 Eugene Kalinin + * MIT Licensed + */ + +'use strict'; +const { resolve } = require('path'); +const { createReadStream, createWriteStream } = require('fs'); +const { clearLine, cursorTo } = require('readline'); +const { finished } = require('stream'); +const { promisify } = require('util'); +const { createGunzip } = require('zlib'); +const { + lineSeparatedURLsToSitemapOptions, + SitemapStream, + ErrorLevel, + streamToPromise, + XMLToSitemapItemStream, + parseSitemap, +} = require('sitemap'); +const { SitemapFileWrapper } = require('@shutterstock/kinesis-sitemap-writer'); +const finishedP = promisify(finished); + +const stats = require('stats-lite'); +const [runs = 10, batchSize = 10, testName = 'stream', measureMemory = false] = + process.argv.slice(2); +const unit = measureMemory ? 'mb' : 'ms'; +console.log( + 'npm run test:perf -- [number of runs = 10] [batch size = 10] [stream(default)|combined] [measure peak memory = false]', +); + +function resetLine() { + clearLine(process.stderr, 0); + cursorTo(process.stderr, 0); +} + +function printPerf(label, data) { + resetLine(); + console.log(`========= ${label} =============`); + console.log(`median: %s±%s${unit}`, stats.median(data).toFixed(1), stats.stdev(data).toFixed(1)); + + console.log(`99th percentile: %s${unit}\n`, stats.percentile(data, 0.99).toFixed(1)); +} +function spinner(i, runNum, duration) { + resetLine(); + process.stdout.write(`${['|', '/', '-', '\\'][i % 4]}, ${duration.toFixed()}${unit} ${runNum}`); +} + +function delay(time) { + return new Promise((resolve) => setTimeout(resolve, time)); +} + +async function batch(durations, runNum, fn) { + for (let i = 0; i < batchSize; i++) { + const start = process.resourceUsage().userCPUTime; + await fn(); + let duration; + if (measureMemory) { + duration = (process.resourceUsage().maxRSS / 1024 ** 2) | 0; + } else { + duration = ((process.resourceUsage().userCPUTime - start) / 1e3) | 0; + } + durations.push(duration); + spinner(i, runNum, duration); + } +} + +async function run(durations, runNum, fn) { + if (runNum < runs) { + await batch(durations, ++runNum, fn); + resetLine(); + const batchStart = (runNum - 1) * batchSize; + process.stdout.write( + `${stats + .median(durations.slice(batchStart, batchStart + batchSize)) + .toFixed(0)}${unit} | ${stats.median(durations).toFixed(0)}${unit} sleeping`, + ); + await delay(2000); + return run(durations, runNum, fn); + } else { + return durations; + } +} + +async function testPerf(runs, batches, testName) { + console.log(`runs: ${runs} batches: ${batches} total: ${runs * batches}`); + switch (testName) { + case 'promise': + console.log('testing promise'); + printPerf( + 'stream', + await run([], 0, async () => { + const rs = createReadStream(resolve(__dirname, 'mocks', 'perf-data.json.txt'), { + highWaterMark: 256 * 1024, + }); + const ws = new SitemapStream({ level: ErrorLevel.SILENT }); + lineSeparatedURLsToSitemapOptions(rs).pipe(ws); + return streamToPromise(ws); + }), + ); + break; + case 'stream-2': + console.log('testing lots of data'); + printPerf( + 'stream', + await run([], 0, async () => { + const ws = createWriteStream('/dev/null'); + const rs = createReadStream(resolve(__dirname, 'mocks', 'long-list.txt.gz')); + lineSeparatedURLsToSitemapOptions(rs.pipe(createGunzip())) + .pipe(new SitemapStream({ level: ErrorLevel.SILENT })) + .pipe(ws); + return finishedP(rs); + }), + ); + break; + case 'xmlstream': + console.log('testing XML ingest stream'); + printPerf( + 'xmlstream', + await run([], 0, async () => { + const sms = new SitemapStream({ level: ErrorLevel.SILENT }); + const ws = createWriteStream('/dev/null'); + const rs = createReadStream(resolve(__dirname, 'mocks', 'perf-data.xml')); + rs.pipe(new XMLToSitemapItemStream({ level: ErrorLevel.SILENT })) + .pipe(sms) + .pipe(ws); + return finishedP(ws); + }), + ); + break; + case 'parseSitemap': + console.log('testing XML ingest with parseSitemap'); + printPerf( + 'parseSitemap', + await run([], 0, async () => { + const sms = new SitemapStream({ level: ErrorLevel.SILENT }); + const ws = createWriteStream('/dev/null'); + const rs = createReadStream(resolve(__dirname, 'mocks', 'perf-data.xml')); + const items = await parseSitemap(rs); + + sms.pipe(ws); + for (let i = 0; i < items.length; i++) { + const item = items[i]; + await (async () => + new Promise((resolve, reject) => { + sms.write(item, (error) => { + if (error !== undefined && error !== null) { + reject(error); + } else { + resolve(); + } + }); + }))(); + } + + // End the input stream + sms.end(); + + // rs.pipe(new SitemapStream({ level: ErrorLevel.SILENT, })) + // .pipe(ws); + return finishedP(ws); + }), + ); + break; + case 'sitemapWrapper': + console.log('testing XML ingest with sitemapWrapper'); + printPerf( + 'sitemapWrapper', + await run([], 0, async () => { + const sitemap = await SitemapFileWrapper.fromFile({ + compress: false, + sourceFileAndPath: resolve(__dirname, 'mocks', 'perf-data.xml'), + }); + + // Wait for the file to be written + await sitemap.sitemap.end(); + }), + ); + break; + case 'stream': + default: + console.log('testing stream'); + printPerf( + 'stream', + await run([], 0, async () => { + const ws = createWriteStream('/dev/null'); + const rs = createReadStream(resolve(__dirname, 'mocks', 'perf-data.json.txt')); + lineSeparatedURLsToSitemapOptions(rs) + .pipe(new SitemapStream({ level: ErrorLevel.SILENT })) + .pipe(ws); + return finishedP(rs); + }), + ); + } +} +void testPerf(runs, batchSize, testName); diff --git a/packages/kinesis-sitemap-writer/tsconfig.json b/packages/kinesis-sitemap-writer/tsconfig.json new file mode 100644 index 0000000..0b279e3 --- /dev/null +++ b/packages/kinesis-sitemap-writer/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.packages.json", + "compilerOptions": { + "rootDir": "src", + "outDir": "dist" + }, + "exclude": ["dist"], + "include": ["src/**/*.ts", "src/**/*.json"] +} diff --git a/packages/sitemaps-cdk/.gitattributes b/packages/sitemaps-cdk/.gitattributes new file mode 100644 index 0000000..a1d9f96 --- /dev/null +++ b/packages/sitemaps-cdk/.gitattributes @@ -0,0 +1,20 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". + +/.gitattributes linguist-generated +/.github/pull_request_template.md linguist-generated +/.github/workflows/build.yml linguist-generated +/.github/workflows/pull-request-lint.yml linguist-generated +/.github/workflows/release.yml linguist-generated +/.github/workflows/upgrade-main.yml linguist-generated +/.gitignore linguist-generated +/.mergify.yml linguist-generated +/.npmignore linguist-generated +/.projen/** linguist-generated +/.projen/deps.json linguist-generated +/.projen/files.json linguist-generated +/.projen/tasks.json linguist-generated +/API.md linguist-generated +/LICENSE linguist-generated +/package-lock.json linguist-generated +/package.json linguist-generated +/tsconfig.dev.json linguist-generated \ No newline at end of file diff --git a/packages/sitemaps-cdk/.github/pull_request_template.md b/packages/sitemaps-cdk/.github/pull_request_template.md new file mode 100644 index 0000000..11d479b --- /dev/null +++ b/packages/sitemaps-cdk/.github/pull_request_template.md @@ -0,0 +1 @@ +Fixes # \ No newline at end of file diff --git a/packages/sitemaps-cdk/.github/workflows/build.yml b/packages/sitemaps-cdk/.github/workflows/build.yml new file mode 100644 index 0000000..21849f8 --- /dev/null +++ b/packages/sitemaps-cdk/.github/workflows/build.yml @@ -0,0 +1,113 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". + +name: build +on: + pull_request: {} + workflow_dispatch: {} +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + outputs: + self_mutation_happened: ${{ steps.self_mutation.outputs.self_mutation_happened }} + env: + CI: "true" + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 18.0.0 + - name: Install dependencies + run: npm install + - name: build + run: npx projen build + - name: Find mutations + id: self_mutation + run: |- + git add . + git diff --staged --patch --exit-code > .repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT + working-directory: ./ + - name: Upload patch + if: steps.self_mutation.outputs.self_mutation_happened + uses: actions/upload-artifact@v4 + with: + name: .repo.patch + path: .repo.patch + overwrite: true + - name: Fail build on mutation + if: steps.self_mutation.outputs.self_mutation_happened + run: |- + echo "::error::Files were changed during build (see build log). If this was triggered from a fork, you will need to update your branch." + cat .repo.patch + exit 1 + - name: Backup artifact permissions + run: cd dist && getfacl -R . > permissions-backup.acl + continue-on-error: true + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: build-artifact + path: dist + overwrite: true + self-mutation: + needs: build + runs-on: ubuntu-latest + permissions: + contents: write + if: always() && needs.build.outputs.self_mutation_happened && !(github.event.pull_request.head.repo.full_name != github.repository) + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ secrets.PROJEN_GITHUB_TOKEN }} + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + - name: Download patch + uses: actions/download-artifact@v4 + with: + name: .repo.patch + path: ${{ runner.temp }} + - name: Apply patch + run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' + - name: Set git identity + run: |- + git config user.name "github-actions" + git config user.email "github-actions@github.com" + - name: Push changes + env: + PULL_REQUEST_REF: ${{ github.event.pull_request.head.ref }} + run: |- + git add . + git commit -s -m "chore: self mutation" + git push origin HEAD:$PULL_REQUEST_REF + package-js: + needs: build + runs-on: ubuntu-latest + permissions: {} + if: "! needs.build.outputs.self_mutation_happened" + steps: + - uses: actions/setup-node@v4 + with: + node-version: 18.0.0 + - name: Download build artifacts + uses: actions/download-artifact@v4 + with: + name: build-artifact + path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true + - name: Prepare Repository + run: mv dist .repo + - name: Install Dependencies + run: cd .repo && npm ci + - name: Create js artifact + run: cd .repo && npx projen package:js + - name: Collect js Artifact + run: mv .repo/dist dist diff --git a/packages/sitemaps-cdk/.github/workflows/pull-request-lint.yml b/packages/sitemaps-cdk/.github/workflows/pull-request-lint.yml new file mode 100644 index 0000000..2c1c658 --- /dev/null +++ b/packages/sitemaps-cdk/.github/workflows/pull-request-lint.yml @@ -0,0 +1,28 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". + +name: pull-request-lint +on: + pull_request_target: + types: + - labeled + - opened + - synchronize + - reopened + - ready_for_review + - edited +jobs: + validate: + name: Validate PR title + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: amannn/action-semantic-pull-request@v5.4.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + types: |- + feat + fix + chore + requireScope: false diff --git a/packages/sitemaps-cdk/.github/workflows/release.yml b/packages/sitemaps-cdk/.github/workflows/release.yml new file mode 100644 index 0000000..9367a66 --- /dev/null +++ b/packages/sitemaps-cdk/.github/workflows/release.yml @@ -0,0 +1,121 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". + +name: release +on: + push: + branches: + - main + workflow_dispatch: {} +jobs: + release: + runs-on: ubuntu-latest + permissions: + contents: write + outputs: + latest_commit: ${{ steps.git_remote.outputs.latest_commit }} + tag_exists: ${{ steps.check_tag_exists.outputs.exists }} + env: + CI: "true" + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Set git identity + run: |- + git config user.name "github-actions" + git config user.email "github-actions@github.com" + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 18.0.0 + - name: Install dependencies + run: npm ci + - name: release + run: npx projen release + - name: Check if version has already been tagged + id: check_tag_exists + run: |- + TAG=$(cat dist/dist/releasetag.txt) + ([ ! -z "$TAG" ] && git ls-remote -q --exit-code --tags origin $TAG && (echo "exists=true" >> $GITHUB_OUTPUT)) || (echo "exists=false" >> $GITHUB_OUTPUT) + cat $GITHUB_OUTPUT + - name: Check for new commits + id: git_remote + run: |- + echo "latest_commit=$(git ls-remote origin -h ${{ github.ref }} | cut -f1)" >> $GITHUB_OUTPUT + cat $GITHUB_OUTPUT + - name: Backup artifact permissions + if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} + run: cd dist && getfacl -R . > permissions-backup.acl + continue-on-error: true + - name: Upload artifact + if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} + uses: actions/upload-artifact@v4 + with: + name: build-artifact + path: dist + overwrite: true + release_github: + name: Publish to GitHub Releases + needs: + - release + - release_npm + runs-on: ubuntu-latest + permissions: + contents: write + if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + steps: + - uses: actions/setup-node@v4 + with: + node-version: 18.0.0 + - name: Download build artifacts + uses: actions/download-artifact@v4 + with: + name: build-artifact + path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true + - name: Prepare Repository + run: mv dist .repo + - name: Collect GitHub Metadata + run: mv .repo/dist dist + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ github.repository }} + GITHUB_REF: ${{ github.ref }} + run: errout=$(mktemp); gh release create $(cat dist/releasetag.txt) -R $GITHUB_REPOSITORY -F dist/changelog.md -t $(cat dist/releasetag.txt) --target $GITHUB_REF 2> $errout && true; exitcode=$?; if [ $exitcode -ne 0 ] && ! grep -q "Release.tag_name already exists" $errout; then cat $errout; exit $exitcode; fi + release_npm: + name: Publish to npm + needs: release + runs-on: ubuntu-latest + permissions: + contents: read + if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + steps: + - uses: actions/setup-node@v4 + with: + node-version: 18.0.0 + - name: Download build artifacts + uses: actions/download-artifact@v4 + with: + name: build-artifact + path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true + - name: Prepare Repository + run: mv dist .repo + - name: Install Dependencies + run: cd .repo && npm ci + - name: Create js artifact + run: cd .repo && npx projen package:js + - name: Collect js Artifact + run: mv .repo/dist dist + - name: Release + env: + NPM_DIST_TAG: latest + NPM_REGISTRY: registry.npmjs.org + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx -p publib@latest publib-npm diff --git a/packages/sitemaps-cdk/.github/workflows/upgrade-main.yml b/packages/sitemaps-cdk/.github/workflows/upgrade-main.yml new file mode 100644 index 0000000..3902c24 --- /dev/null +++ b/packages/sitemaps-cdk/.github/workflows/upgrade-main.yml @@ -0,0 +1,92 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". + +name: upgrade-main +on: + workflow_dispatch: {} + schedule: + - cron: 0 0 * * * +jobs: + upgrade: + name: Upgrade + runs-on: ubuntu-latest + permissions: + contents: read + outputs: + patch_created: ${{ steps.create_patch.outputs.patch_created }} + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: main + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 18.0.0 + - name: Install dependencies + run: npm ci + - name: Upgrade dependencies + run: npx projen upgrade + - name: Find mutations + id: create_patch + run: |- + git add . + git diff --staged --patch --exit-code > .repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT + working-directory: ./ + - name: Upload patch + if: steps.create_patch.outputs.patch_created + uses: actions/upload-artifact@v4 + with: + name: .repo.patch + path: .repo.patch + overwrite: true + pr: + name: Create Pull Request + needs: upgrade + runs-on: ubuntu-latest + permissions: + contents: read + if: ${{ needs.upgrade.outputs.patch_created }} + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: main + - name: Download patch + uses: actions/download-artifact@v4 + with: + name: .repo.patch + path: ${{ runner.temp }} + - name: Apply patch + run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' + - name: Set git identity + run: |- + git config user.name "github-actions" + git config user.email "github-actions@github.com" + - name: Create Pull Request + id: create-pr + uses: peter-evans/create-pull-request@v6 + with: + token: ${{ secrets.PROJEN_GITHUB_TOKEN }} + commit-message: |- + chore(deps): upgrade dependencies + + Upgrades project dependencies. See details in [workflow run]. + + [Workflow Run]: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + + ------ + + *Automatically created by projen via the "upgrade-main" workflow* + branch: github-actions/upgrade-main + title: "chore(deps): upgrade dependencies" + body: |- + Upgrades project dependencies. See details in [workflow run]. + + [Workflow Run]: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + + ------ + + *Automatically created by projen via the "upgrade-main" workflow* + author: github-actions + committer: github-actions + signoff: true diff --git a/packages/sitemaps-cdk/.gitignore b/packages/sitemaps-cdk/.gitignore new file mode 100644 index 0000000..0130ead --- /dev/null +++ b/packages/sitemaps-cdk/.gitignore @@ -0,0 +1,48 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". +!/.gitattributes +!/.projen/tasks.json +!/.projen/deps.json +!/.projen/files.json +!/.github/workflows/pull-request-lint.yml +!/package.json +!/LICENSE +!/.npmignore +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json +pids +*.pid +*.seed +*.pid.lock +lib-cov +coverage +*.lcov +.nyc_output +build/Release +node_modules/ +jspm_packages/ +*.tsbuildinfo +.eslintcache +*.tgz +.yarn-integrity +.cache +!/.github/workflows/build.yml +/dist/changelog.md +/dist/version.txt +!/.github/workflows/release.yml +!/.mergify.yml +!/.github/workflows/upgrade-main.yml +!/.github/pull_request_template.md +!/test/ +!/tsconfig.dev.json +!/src/ +/lib +/dist/ +.jsii +tsconfig.json +!/API.md +!/.projenrc.ts diff --git a/packages/sitemaps-cdk/.mergify.yml b/packages/sitemaps-cdk/.mergify.yml new file mode 100644 index 0000000..154b39f --- /dev/null +++ b/packages/sitemaps-cdk/.mergify.yml @@ -0,0 +1,26 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". + +queue_rules: + - name: default + update_method: merge + conditions: + - "#approved-reviews-by>=1" + - -label~=(do-not-merge) + - status-success=build + - status-success=package-js +pull_request_rules: + - name: Automatic merge on approval and successful build + actions: + delete_head_branch: {} + queue: + method: squash + name: default + commit_message_template: |- + {{ title }} (#{{ number }}) + + {{ body }} + conditions: + - "#approved-reviews-by>=1" + - -label~=(do-not-merge) + - status-success=build + - status-success=package-js diff --git a/packages/sitemaps-cdk/.npmignore b/packages/sitemaps-cdk/.npmignore new file mode 100644 index 0000000..7af89ed --- /dev/null +++ b/packages/sitemaps-cdk/.npmignore @@ -0,0 +1,23 @@ +# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". +/.projen/ +permissions-backup.acl +/dist/changelog.md +/dist/version.txt +/.mergify.yml +/test/ +/tsconfig.dev.json +/src/ +!/lib/ +!/lib/**/*.js +!/lib/**/*.d.ts +dist +/tsconfig.json +/.github/ +/.vscode/ +/.idea/ +/.projenrc.js +tsconfig.tsbuildinfo +!.jsii +/.gitattributes +/.projenrc.ts +/projenrc diff --git a/packages/sitemaps-cdk/.projen/deps.json b/packages/sitemaps-cdk/.projen/deps.json new file mode 100644 index 0000000..915f285 --- /dev/null +++ b/packages/sitemaps-cdk/.projen/deps.json @@ -0,0 +1,63 @@ +{ + "dependencies": [ + { + "name": "@types/node", + "version": "^18", + "type": "build" + }, + { + "name": "esbuild", + "type": "build" + }, + { + "name": "jsii-diff", + "type": "build" + }, + { + "name": "jsii-docgen", + "type": "build" + }, + { + "name": "jsii-pacmak", + "type": "build" + }, + { + "name": "jsii-rosetta", + "version": "~5.4.0", + "type": "build" + }, + { + "name": "jsii", + "version": "~5.4.0", + "type": "build" + }, + { + "name": "projen", + "type": "build" + }, + { + "name": "standard-version", + "version": "^9", + "type": "build" + }, + { + "name": "ts-node", + "type": "build" + }, + { + "name": "typescript", + "type": "build" + }, + { + "name": "aws-cdk-lib", + "version": "^2.117.0", + "type": "peer" + }, + { + "name": "constructs", + "version": "^10.1.244", + "type": "peer" + } + ], + "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." +} diff --git a/packages/sitemaps-cdk/.projen/files.json b/packages/sitemaps-cdk/.projen/files.json new file mode 100644 index 0000000..9af1904 --- /dev/null +++ b/packages/sitemaps-cdk/.projen/files.json @@ -0,0 +1,18 @@ +{ + "files": [ + ".gitattributes", + ".github/pull_request_template.md", + ".github/workflows/build.yml", + ".github/workflows/pull-request-lint.yml", + ".github/workflows/release.yml", + ".github/workflows/upgrade-main.yml", + ".gitignore", + ".mergify.yml", + ".projen/deps.json", + ".projen/files.json", + ".projen/tasks.json", + "LICENSE", + "tsconfig.dev.json" + ], + "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." +} diff --git a/packages/sitemaps-cdk/.projen/tasks.json b/packages/sitemaps-cdk/.projen/tasks.json new file mode 100644 index 0000000..0033f61 --- /dev/null +++ b/packages/sitemaps-cdk/.projen/tasks.json @@ -0,0 +1,277 @@ +{ + "tasks": { + "build": { + "name": "build", + "description": "Full release build", + "steps": [ + { + "spawn": "default" + }, + { + "spawn": "pre-compile" + }, + { + "spawn": "compile" + }, + { + "spawn": "post-compile" + }, + { + "spawn": "test" + }, + { + "spawn": "package" + } + ] + }, + "bump": { + "name": "bump", + "description": "Bumps version based on latest git tag and generates a changelog entry", + "env": { + "OUTFILE": "package.json", + "CHANGELOG": "dist/changelog.md", + "BUMPFILE": "dist/version.txt", + "RELEASETAG": "dist/releasetag.txt", + "RELEASE_TAG_PREFIX": "" + }, + "steps": [ + { + "builtin": "release/bump-version" + } + ], + "condition": "! git log --oneline -1 | grep -q \"chore(release):\"" + }, + "clobber": { + "name": "clobber", + "description": "hard resets to HEAD of origin and cleans the local repo", + "env": { + "BRANCH": "$(git branch --show-current)" + }, + "steps": [ + { + "exec": "git checkout -b scratch", + "name": "save current HEAD in \"scratch\" branch" + }, + { + "exec": "git checkout $BRANCH" + }, + { + "exec": "git fetch origin", + "name": "fetch latest changes from origin" + }, + { + "exec": "git reset --hard origin/$BRANCH", + "name": "hard reset to origin commit" + }, + { + "exec": "git clean -fdx", + "name": "clean all untracked files" + }, + { + "say": "ready to rock! (unpushed commits are under the \"scratch\" branch)" + } + ], + "condition": "git diff --exit-code > /dev/null" + }, + "compat": { + "name": "compat", + "description": "Perform API compatibility check against latest version", + "steps": [ + { + "exec": "jsii-diff npm:$(node -p \"require('./package.json').name\") -k --ignore-file .compatignore || (echo \"\nUNEXPECTED BREAKING CHANGES: add keys such as 'removed:constructs.Node.of' to .compatignore to skip.\n\" && exit 1)" + } + ] + }, + "compile": { + "name": "compile", + "description": "Only compile", + "steps": [ + { + "exec": "jsii --silence-warnings=reserved-word" + }, + { + "exec": "esbuild ../kinesis-index-writer/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=lib/kinesis-index-writer/index.js" + }, + { + "exec": "esbuild ../kinesis-sitemap-freshener/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=lib/kinesis-sitemap-freshener/index.js" + }, + { + "exec": "esbuild ../kinesis-sitemap-writer/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=lib/kinesis-sitemap-writer/index.js" + } + ] + }, + "default": { + "name": "default", + "description": "Synthesize project files", + "steps": [ + { + "exec": "ts-node --project tsconfig.dev.json .projenrc.ts" + } + ] + }, + "docgen": { + "name": "docgen", + "description": "Generate API.md from .jsii manifest", + "steps": [ + { + "exec": "jsii-docgen -o API.md" + } + ] + }, + "eject": { + "name": "eject", + "description": "Remove projen from the project", + "env": { + "PROJEN_EJECTING": "true" + }, + "steps": [ + { + "spawn": "default" + } + ] + }, + "install": { + "name": "install", + "description": "Install project dependencies and update lockfile (non-frozen)", + "steps": [ + { + "exec": "npm install" + } + ] + }, + "install:ci": { + "name": "install:ci", + "description": "Install project dependencies using frozen lockfile", + "steps": [ + { + "exec": "npm ci" + } + ] + }, + "package": { + "name": "package", + "description": "Creates the distribution package", + "steps": [ + { + "exec": "if [ ! -z ${CI} ]; then rsync -a . .repo --exclude .git --exclude node_modules && rm -rf dist && mv .repo dist; else npx projen package-all; fi" + } + ] + }, + "package-all": { + "name": "package-all", + "description": "Packages artifacts for all target languages", + "steps": [ + { + "spawn": "package:js" + } + ] + }, + "package:js": { + "name": "package:js", + "description": "Create js language bindings", + "steps": [ + { + "exec": "jsii-pacmak -v --target js" + } + ] + }, + "post-compile": { + "name": "post-compile", + "description": "Runs after successful compilation", + "steps": [ + { + "spawn": "docgen" + } + ] + }, + "post-upgrade": { + "name": "post-upgrade", + "description": "Runs after upgrading dependencies" + }, + "pre-compile": { + "name": "pre-compile", + "description": "Prepare the project for compilation" + }, + "release": { + "name": "release", + "description": "Prepare a release from \"main\" branch", + "env": { + "RELEASE": "true" + }, + "steps": [ + { + "exec": "rm -fr dist" + }, + { + "spawn": "bump" + }, + { + "spawn": "build" + }, + { + "spawn": "unbump" + }, + { + "exec": "git diff --ignore-space-at-eol --exit-code" + } + ] + }, + "test": { + "name": "test", + "description": "Run tests" + }, + "unbump": { + "name": "unbump", + "description": "Restores version to 0.0.0", + "env": { + "OUTFILE": "package.json", + "CHANGELOG": "dist/changelog.md", + "BUMPFILE": "dist/version.txt", + "RELEASETAG": "dist/releasetag.txt", + "RELEASE_TAG_PREFIX": "" + }, + "steps": [ + { + "builtin": "release/reset-version" + } + ] + }, + "upgrade": { + "name": "upgrade", + "description": "upgrade dependencies", + "env": { + "CI": "0" + }, + "steps": [ + { + "exec": "npx npm-check-updates@16 --upgrade --target=minor --peer --dep=dev,peer,prod,optional --filter=esbuild,jsii-diff,jsii-docgen,jsii-pacmak,projen,ts-node,typescript" + }, + { + "exec": "npm install" + }, + { + "exec": "npm update @types/node esbuild jsii-diff jsii-docgen jsii-pacmak jsii-rosetta jsii projen standard-version ts-node typescript aws-cdk-lib constructs" + }, + { + "exec": "npx projen" + }, + { + "spawn": "post-upgrade" + } + ] + }, + "watch": { + "name": "watch", + "description": "Watch & compile in the background", + "steps": [ + { + "exec": "jsii -w --silence-warnings=reserved-word" + } + ] + } + }, + "env": { + "PATH": "$(npx -c \"node --print process.env.PATH\")" + }, + "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." +} diff --git a/packages/sitemaps-cdk/.projenrc.ts b/packages/sitemaps-cdk/.projenrc.ts new file mode 100644 index 0000000..f64955a --- /dev/null +++ b/packages/sitemaps-cdk/.projenrc.ts @@ -0,0 +1,50 @@ +import { awscdk } from 'projen'; +import { NodePackageManager } from 'projen/lib/javascript'; + +const project = new awscdk.AwsCdkConstructLibrary({ + author: 'Shutterstock, Inc.', + authorAddress: 'https://github.com/shutterstock', + authorOrganization: true, + description: + 'CDK construct for creating XML sitemaps and sitemap index files from Kinesis streams', + license: 'MIT', + copyrightPeriod: '2021-2024', + keywords: ['aws', 'cdk', 'sitemap', 'kinesis', 'xml'], + packageManager: NodePackageManager.NPM, + minNodeVersion: '18.0.0', + cdkVersion: '2.117.0', + constructsVersion: '10.1.244', + defaultReleaseBranch: 'main', + jsiiVersion: '~5.4.0', + name: '@shutterstock/sitemaps-cdk', + projenrcTs: true, + repositoryUrl: 'git@github.shuttercorp.net:sreng/streaming-sitemaps.git', + // We run eslint from the root of the monorepo + eslint: false, + + // Jest is installed in the monorepo root + jest: false, + + devDeps: ['esbuild'], + + // deps: [], /* Runtime dependencies of this module. */ + // description: undefined, /* The description is just a string that helps people understand the purpose of the package. */ + // devDeps: [], /* Build dependencies for this module. */ + // packageName: undefined, /* The "name" in package.json. */ +}); + +// +// Setup tasks +// + +project.compileTask.exec( + 'esbuild ../kinesis-index-writer/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=lib/kinesis-index-writer/index.js', +); +project.compileTask.exec( + 'esbuild ../kinesis-sitemap-freshener/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=lib/kinesis-sitemap-freshener/index.js', +); +project.compileTask.exec( + 'esbuild ../kinesis-sitemap-writer/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --external:aws-sdk --outfile=lib/kinesis-sitemap-writer/index.js', +); + +project.synth(); diff --git a/packages/sitemaps-cdk/API.md b/packages/sitemaps-cdk/API.md new file mode 100644 index 0000000..b91b846 --- /dev/null +++ b/packages/sitemaps-cdk/API.md @@ -0,0 +1,963 @@ +# API Reference + +## Constructs + +### SitemapFreshenerConstruct + +Sitemap Freshener Construct. + +This construct creates a Lambda function that reads from a Kinesis stream +and writes sitemap files to an S3 bucket from the contents in the DynamoDB Table. + +The Lambda function can be invoked with a `start` message or it can read the `start` +message from the Kinesis stream. + +The Lambda will write a `freshenFile` message back to the Kinesis stream for each +sitemap file that exists for the specified type. + +Changes `toremove` to `removed` and `towrite` to `written` in the DB for items in those states. + +When `repair` mode is off the XML files are only written, not read. + +#### Initializers + +```typescript +import { SitemapFreshenerConstruct } from '@shutterstock/sitemaps-cdk' + +new SitemapFreshenerConstruct(scope: Construct, id: string, props?: SitemapFreshnerConstructProps) +``` + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| scope | constructs.Construct | *No description.* | +| id | string | *No description.* | +| props | SitemapFreshnerConstructProps | *No description.* | + +--- + +##### `scope`Required + +- *Type:* constructs.Construct + +--- + +##### `id`Required + +- *Type:* string + +--- + +##### `props`Optional + +- *Type:* SitemapFreshnerConstructProps + +--- + +#### Methods + +| **Name** | **Description** | +| --- | --- | +| toString | Returns a string representation of this construct. | + +--- + +##### `toString` + +```typescript +public toString(): string +``` + +Returns a string representation of this construct. + +#### Static Functions + +| **Name** | **Description** | +| --- | --- | +| isConstruct | Checks if `x` is a construct. | + +--- + +##### `isConstruct` + +```typescript +import { SitemapFreshenerConstruct } from '@shutterstock/sitemaps-cdk' + +SitemapFreshenerConstruct.isConstruct(x: any) +``` + +Checks if `x` is a construct. + +Use this method instead of `instanceof` to properly detect `Construct` +instances, even when the construct library is symlinked. + +Explanation: in JavaScript, multiple copies of the `constructs` library on +disk are seen as independent, completely different libraries. As a +consequence, the class `Construct` in each copy of the `constructs` library +is seen as a different class, and an instance of one class will not test as +`instanceof` the other class. `npm install` will not create installations +like this, but users may manually symlink construct libraries together or +use a monorepo tool: in those cases, multiple copies of the `constructs` +library can be accidentally installed, and `instanceof` will behave +unpredictably. It is safest to avoid using `instanceof`, and using +this type-testing method instead. + +###### `x`Required + +- *Type:* any + +Any object. + +--- + +#### Properties + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| node | constructs.Node | The tree node. | +| sitemapFreshenerLambdaFunction | aws-cdk-lib.aws_lambda.Function | *No description.* | + +--- + +##### `node`Required + +```typescript +public readonly node: Node; +``` + +- *Type:* constructs.Node + +The tree node. + +--- + +##### `sitemapFreshenerLambdaFunction`Required + +```typescript +public readonly sitemapFreshenerLambdaFunction: Function; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Function + +--- + + +### SitemapsConstruct + +- *Implements:* ISitemapsConstruct + +#### Initializers + +```typescript +import { SitemapsConstruct } from '@shutterstock/sitemaps-cdk' + +new SitemapsConstruct(scope: Construct, id: string, props?: SitemapsConstructProps) +``` + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| scope | constructs.Construct | *No description.* | +| id | string | *No description.* | +| props | SitemapsConstructProps | *No description.* | + +--- + +##### `scope`Required + +- *Type:* constructs.Construct + +--- + +##### `id`Required + +- *Type:* string + +--- + +##### `props`Optional + +- *Type:* SitemapsConstructProps + +--- + +#### Methods + +| **Name** | **Description** | +| --- | --- | +| toString | Returns a string representation of this construct. | + +--- + +##### `toString` + +```typescript +public toString(): string +``` + +Returns a string representation of this construct. + +#### Static Functions + +| **Name** | **Description** | +| --- | --- | +| isConstruct | Checks if `x` is a construct. | + +--- + +##### `isConstruct` + +```typescript +import { SitemapsConstruct } from '@shutterstock/sitemaps-cdk' + +SitemapsConstruct.isConstruct(x: any) +``` + +Checks if `x` is a construct. + +Use this method instead of `instanceof` to properly detect `Construct` +instances, even when the construct library is symlinked. + +Explanation: in JavaScript, multiple copies of the `constructs` library on +disk are seen as independent, completely different libraries. As a +consequence, the class `Construct` in each copy of the `constructs` library +is seen as a different class, and an instance of one class will not test as +`instanceof` the other class. `npm install` will not create installations +like this, but users may manually symlink construct libraries together or +use a monorepo tool: in those cases, multiple copies of the `constructs` +library can be accidentally installed, and `instanceof` will behave +unpredictably. It is safest to avoid using `instanceof`, and using +this type-testing method instead. + +###### `x`Required + +- *Type:* any + +Any object. + +--- + +#### Properties + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| node | constructs.Node | The tree node. | +| indexWriterLambdaFunction | aws-cdk-lib.aws_lambda.Function | Index Writer Lambda Function. | +| kinesisInputStream | aws-cdk-lib.aws_kinesis.IStream | Kinesis Input Stream for Sitemap Items. | +| s3SitemapsBucket | aws-cdk-lib.aws_s3.IBucket | *No description.* | +| sitemapWriterLambdaFunction | aws-cdk-lib.aws_lambda.Function | Sitemap Writer Lambda Function. | +| dynamoDBTable | aws-cdk-lib.aws_dynamodb.Table | *No description.* | + +--- + +##### `node`Required + +```typescript +public readonly node: Node; +``` + +- *Type:* constructs.Node + +The tree node. + +--- + +##### `indexWriterLambdaFunction`Required + +```typescript +public readonly indexWriterLambdaFunction: Function; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Function + +Index Writer Lambda Function. + +--- + +##### `kinesisInputStream`Required + +```typescript +public readonly kinesisInputStream: IStream; +``` + +- *Type:* aws-cdk-lib.aws_kinesis.IStream + +Kinesis Input Stream for Sitemap Items. + +--- + +##### `s3SitemapsBucket`Required + +```typescript +public readonly s3SitemapsBucket: IBucket; +``` + +- *Type:* aws-cdk-lib.aws_s3.IBucket + +--- + +##### `sitemapWriterLambdaFunction`Required + +```typescript +public readonly sitemapWriterLambdaFunction: Function; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Function + +Sitemap Writer Lambda Function. + +--- + +##### `dynamoDBTable`Optional + +```typescript +public readonly dynamoDBTable: Table; +``` + +- *Type:* aws-cdk-lib.aws_dynamodb.Table + +--- + + +## Structs + +### SitemapFreshnerConstructProps + +#### Initializer + +```typescript +import { SitemapFreshnerConstructProps } from '@shutterstock/sitemaps-cdk' + +const sitemapFreshnerConstructProps: SitemapFreshnerConstructProps = { ... } +``` + +#### Properties + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| dynamodbTable | aws-cdk-lib.aws_dynamodb.ITable | Existing DynamoDB Table to be used for freshening sitemap files. | +| s3SitemapsBucket | aws-cdk-lib.aws_s3.IBucket | Existing S3 sitemap files bucket as the desintation for the freshner Lambda. | +| autoDeleteEverything | boolean | Automatically clean up durable resources (e.g. for PR builds). | +| env | string | Environment used to select config files from the config layer, if provided. | +| kinesisEventSourceExtraProps | aws-cdk-lib.aws_lambda_event_sources.KinesisEventSourceProps | Extra Kinesis event source properties (e.g. batch size). | +| kinesisInputStream | aws-cdk-lib.aws_kinesis.IStream | Kinesis input stream. | +| lambdaFuncFreshenerExtraProps | aws-cdk-lib.aws_lambda.FunctionOptions | Extra properties for the sitemap freshener Lambda function. | +| lambdaFuncFreshenerRuntime | aws-cdk-lib.aws_lambda.Runtime | Optional runtime for the sitemap freshener Lambda function. | +| metricsNamespace | string | Metrics namespace for Sitemap Freshener Lambda. | +| s3SitemapsPrefix | string | Path to write sitemap files to. | +| testBuild | boolean | Disable minification during test builds so that snaphots match. | + +--- + +##### `dynamodbTable`Required + +```typescript +public readonly dynamodbTable: ITable; +``` + +- *Type:* aws-cdk-lib.aws_dynamodb.ITable + +Existing DynamoDB Table to be used for freshening sitemap files. + +--- + +##### `s3SitemapsBucket`Required + +```typescript +public readonly s3SitemapsBucket: IBucket; +``` + +- *Type:* aws-cdk-lib.aws_s3.IBucket + +Existing S3 sitemap files bucket as the desintation for the freshner Lambda. + +--- + +##### `autoDeleteEverything`Optional + +```typescript +public readonly autoDeleteEverything: boolean; +``` + +- *Type:* boolean +- *Default:* false + +Automatically clean up durable resources (e.g. for PR builds). + +⚠️ CAUTION: This will delete the S3 bucket (and all contents) and DynamoDB table. + +--- + +##### `env`Optional + +```typescript +public readonly env: string; +``` + +- *Type:* string +- *Default:* none + +Environment used to select config files from the config layer, if provided. + +Passed to the Lamba as `NODE_CONFIG_ENV` + +--- + +*Example* + +```typescript +'prod' +``` + + +##### `kinesisEventSourceExtraProps`Optional + +```typescript +public readonly kinesisEventSourceExtraProps: KinesisEventSourceProps; +``` + +- *Type:* aws-cdk-lib.aws_lambda_event_sources.KinesisEventSourceProps + +Extra Kinesis event source properties (e.g. batch size). + +--- + +##### `kinesisInputStream`Optional + +```typescript +public readonly kinesisInputStream: IStream; +``` + +- *Type:* aws-cdk-lib.aws_kinesis.IStream + +Kinesis input stream. + +If not provided no event source will be created; the lambda can +be invoked manually with a `start` operation using the Kinesis message format. + +--- + +##### `lambdaFuncFreshenerExtraProps`Optional + +```typescript +public readonly lambdaFuncFreshenerExtraProps: FunctionOptions; +``` + +- *Type:* aws-cdk-lib.aws_lambda.FunctionOptions +- *Default:* { architecture: ARM_64, memorySize: 2000, timeout: Duration.minutes(15), logRetention: logs.RetentionDays.ONE_MONTH } + +Extra properties for the sitemap freshener Lambda function. + +Configuration can be passed either via Environment Variables or +via a config file layer that can have a default config.yml and +an NODE_CONFIG_ENV-specific config override file: +`config-${NODE_CONFIG_ENV}.yml`. + +--- + +*Example* + +```typescript +{ functionName: 'my-function-name', layers: lambda.Code.fromAsset('./configs/sitemap-freshner/') } +``` + + +##### `lambdaFuncFreshenerRuntime`Optional + +```typescript +public readonly lambdaFuncFreshenerRuntime: Runtime; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Runtime +- *Default:* lambda.Runtime.NODEJS_20_X + +Optional runtime for the sitemap freshener Lambda function. + +--- + +##### `metricsNamespace`Optional + +```typescript +public readonly metricsNamespace: string; +``` + +- *Type:* string + +Metrics namespace for Sitemap Freshener Lambda. + +--- + +##### `s3SitemapsPrefix`Optional + +```typescript +public readonly s3SitemapsPrefix: string; +``` + +- *Type:* string +- *Default:* defers to config file or `sitemaps/` if not in config file + +Path to write sitemap files to. + +This should be unique per durable deployment, such as: +- sitemaps/20210704/ +- sitemaps/20211031/ + +When a new durable deployment is created, by changing the stack name, +this prefix should be changed so that the new backfill writes to a +new path and the old stack, with the old Lambda code, continues to write +to the old path. When it is desired to migrate to the new sitemaps, +a 301 should be returned for the well-known sitemap index URL to point +to the deploy-specific sitemap index URL. + +--- + +##### `testBuild`Optional + +```typescript +public readonly testBuild: boolean; +``` + +- *Type:* boolean +- *Default:* false + +Disable minification during test builds so that snaphots match. + +--- + +### SitemapsConstructProps + +#### Initializer + +```typescript +import { SitemapsConstructProps } from '@shutterstock/sitemaps-cdk' + +const sitemapsConstructProps: SitemapsConstructProps = { ... } +``` + +#### Properties + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| autoDeleteEverything | boolean | Automatically clean up durable resources (e.g. for PR builds). | +| dynamodbTable | aws-cdk-lib.aws_dynamodb.ITable | Optional - Already-existing DynamoDB Table to be used for sitemap and index files. | +| dynamodbTableName | string | Optional - Name of the DynamoDB table. | +| dynamodbTableProps | aws-cdk-lib.aws_dynamodb.TableProps | Optional - Extra properties for the DynamoDB table. | +| env | string | Environment used to select config files from the config layer, if provided. | +| kinesisInputStreamName | string | Specific name of the kinesis input stream. | +| kinesisInputStreamShards | number | Number of shards in the kinesis input stream. | +| kinesisSitemapWriterRetentionDays | number | Number of days of data retention in the kinesis sitemap writer stream. | +| lambdaFuncIndexWriterExtraProps | aws-cdk-lib.aws_lambda.FunctionOptions | Extra properties for the sitemap writer Lambda function. | +| lambdaFuncIndexWriterRuntime | aws-cdk-lib.aws_lambda.Runtime | Optional runtime for the index writer Lambda function. | +| lambdaFuncSitemapWriterExtraProps | aws-cdk-lib.aws_lambda.FunctionOptions | Extra properties for the sitemap writer Lambda function. | +| lambdaFuncSitemapWriterRuntime | aws-cdk-lib.aws_lambda.Runtime | Optional runtime for the sitemap writer Lambda function. | +| metricsIndexWriterName | string | Metrics namespace and name for Index Writer Lambda. | +| metricsSitemapWriterName | string | Metrics namespace and name for Sitemap Writer Lambda. | +| s3SitemapsBucket | aws-cdk-lib.aws_s3.IBucket | Optional - Already-existing S3 sitemaps files bucket to be used for sitemap and index files. | +| s3SitemapsBucketName | string | Optional - Specific name of the S3 sitemaps files bucket to be created. | +| s3SitemapsPrefix | string | Path to write sitemap files to. | +| sitemapWriterBatchSize | number | Batch Size for Sitemap Writer. | +| sitemapWriterMaxBatchingWindow | aws-cdk-lib.Duration | Max Batching Window Duration for Sitemap Writer. | +| testBuild | boolean | Disable minification during test builds so that snaphots match. | + +--- + +##### `autoDeleteEverything`Optional + +```typescript +public readonly autoDeleteEverything: boolean; +``` + +- *Type:* boolean +- *Default:* false + +Automatically clean up durable resources (e.g. for PR builds). + +⚠️ CAUTION: This will delete the S3 bucket (and all contents) and DynamoDB table. + +--- + +##### `dynamodbTable`Optional + +```typescript +public readonly dynamodbTable: ITable; +``` + +- *Type:* aws-cdk-lib.aws_dynamodb.ITable +- *Default:* DynamoDB Table will be created + +Optional - Already-existing DynamoDB Table to be used for sitemap and index files. + +If not set, a table will be created. + +--- + +##### `dynamodbTableName`Optional + +```typescript +public readonly dynamodbTableName: string; +``` + +- *Type:* string +- *Default:* auto assigned by CDK + +Optional - Name of the DynamoDB table. + +--- + +##### `dynamodbTableProps`Optional + +```typescript +public readonly dynamodbTableProps: TableProps; +``` + +- *Type:* aws-cdk-lib.aws_dynamodb.TableProps + +Optional - Extra properties for the DynamoDB table. + +--- + +##### `env`Optional + +```typescript +public readonly env: string; +``` + +- *Type:* string +- *Default:* none + +Environment used to select config files from the config layer, if provided. + +Passed to the Lamba as `NODE_CONFIG_ENV` + +--- + +*Example* + +```typescript +'prod' +``` + + +##### `kinesisInputStreamName`Optional + +```typescript +public readonly kinesisInputStreamName: string; +``` + +- *Type:* string +- *Default:* auto assigned + +Specific name of the kinesis input stream. + +If not specified, the name will be availabe via the +`kinesisInputStreamName` export + +--- + +##### `kinesisInputStreamShards`Optional + +```typescript +public readonly kinesisInputStreamShards: number; +``` + +- *Type:* number +- *Default:* 4 + +Number of shards in the kinesis input stream. + +--- + +##### `kinesisSitemapWriterRetentionDays`Optional + +```typescript +public readonly kinesisSitemapWriterRetentionDays: number; +``` + +- *Type:* number +- *Default:* 1 day + +Number of days of data retention in the kinesis sitemap writer stream. + +--- + +##### `lambdaFuncIndexWriterExtraProps`Optional + +```typescript +public readonly lambdaFuncIndexWriterExtraProps: FunctionOptions; +``` + +- *Type:* aws-cdk-lib.aws_lambda.FunctionOptions +- *Default:* { architecture: ARM_64, memorySize: 2000, timeout: Duration.minutes(15), logRetention: logs.RetentionDays.ONE_MONTH } + +Extra properties for the sitemap writer Lambda function. + +Configuration can be passed either via Environment Variables or +via a config file layer that can have a default config.yml and +an NODE_CONFIG_ENV-specific config override file: +`config-${NODE_CONFIG_ENV}.yml`. + +--- + +*Example* + +```typescript +{ functionName: 'my-index-function-name', layers: lambda.Code.fromAsset('./configs/index-writer/') } +``` + + +##### `lambdaFuncIndexWriterRuntime`Optional + +```typescript +public readonly lambdaFuncIndexWriterRuntime: Runtime; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Runtime +- *Default:* lambda.Runtime.NODEJS_20_X + +Optional runtime for the index writer Lambda function. + +--- + +##### `lambdaFuncSitemapWriterExtraProps`Optional + +```typescript +public readonly lambdaFuncSitemapWriterExtraProps: FunctionOptions; +``` + +- *Type:* aws-cdk-lib.aws_lambda.FunctionOptions +- *Default:* { architecture: ARM_64, memorySize: 2000, timeout: Duration.minutes(15), logRetention: logs.RetentionDays.ONE_MONTH } + +Extra properties for the sitemap writer Lambda function. + +Configuration can be passed either via Environment Variables or +via a config file layer that can have a default config.yml and +an NODE_CONFIG_ENV-specific config override file: +`config-${NODE_CONFIG_ENV}.yml`. + +--- + +*Example* + +```typescript +{ functionName: 'my-sitemap-function-name', layers: lambda.Code.fromAsset('./configs/sitemap-writer/') } +``` + + +##### `lambdaFuncSitemapWriterRuntime`Optional + +```typescript +public readonly lambdaFuncSitemapWriterRuntime: Runtime; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Runtime +- *Default:* lambda.Runtime.NODEJS_20_X + +Optional runtime for the sitemap writer Lambda function. + +--- + +##### `metricsIndexWriterName`Optional + +```typescript +public readonly metricsIndexWriterName: string; +``` + +- *Type:* string +- *Default:* none, metrics disabled + +Metrics namespace and name for Index Writer Lambda. + +--- + +##### `metricsSitemapWriterName`Optional + +```typescript +public readonly metricsSitemapWriterName: string; +``` + +- *Type:* string +- *Default:* none, metrics disabled + +Metrics namespace and name for Sitemap Writer Lambda. + +--- + +##### `s3SitemapsBucket`Optional + +```typescript +public readonly s3SitemapsBucket: IBucket; +``` + +- *Type:* aws-cdk-lib.aws_s3.IBucket +- *Default:* S3 Bucket will be created + +Optional - Already-existing S3 sitemaps files bucket to be used for sitemap and index files. + +If not set, a bucket will be created. + +--- + +##### `s3SitemapsBucketName`Optional + +```typescript +public readonly s3SitemapsBucketName: string; +``` + +- *Type:* string +- *Default:* auto assigned + +Optional - Specific name of the S3 sitemaps files bucket to be created. + +If not set, a name will be assigned. + +--- + +##### `s3SitemapsPrefix`Optional + +```typescript +public readonly s3SitemapsPrefix: string; +``` + +- *Type:* string +- *Default:* defers to config file or `sitemaps/` if not in config file + +Path to write sitemap files to. + +This should be unique per durable deployment, such as: +- sitemaps/20210704/ +- sitemaps/20211031/ + +When a new durable deployment is created, by changing the stack name, +this prefix should be changed so that the new backfill writes to a +new path and the old stack, with the old Lambda code, continues to write +to the old path. When it is desired to migrate to the new sitemaps, +a 301 should be returned for the well-known sitemap index URL to point +to the deploy-specific sitemap index URL. + +--- + +##### `sitemapWriterBatchSize`Optional + +```typescript +public readonly sitemapWriterBatchSize: number; +``` + +- *Type:* number +- *Default:* 10,000 + +Batch Size for Sitemap Writer. + +This is the maximum number of records that will be processed in a single batch. + +Keep this number high (e.g. 10,000) to reduce the number of Lambda invocation +under high load and to reduce the number of times that the latest XML file +is read from S3, deserialized, updated, serialized, and written back to S3, +which is time consuming (10-30 seconds) and gets longer as the file approaches +being full. + +--- + +##### `sitemapWriterMaxBatchingWindow`Optional + +```typescript +public readonly sitemapWriterMaxBatchingWindow: Duration; +``` + +- *Type:* aws-cdk-lib.Duration +- *Default:* 30 seconds + +Max Batching Window Duration for Sitemap Writer. + +Allowed range is 0-300 seconds. It is not suggested to set this to +0 seconds as that will parse the XML file far too often and will likely +result in the Lambda function falling behind on reading the Kinesis Stream. + +--- + +##### `testBuild`Optional + +```typescript +public readonly testBuild: boolean; +``` + +- *Type:* boolean +- *Default:* false + +Disable minification during test builds so that snaphots match. + +--- + + +## Protocols + +### ISitemapsConstruct + +- *Implemented By:* SitemapsConstruct, ISitemapsConstruct + + +#### Properties + +| **Name** | **Type** | **Description** | +| --- | --- | --- | +| indexWriterLambdaFunction | aws-cdk-lib.aws_lambda.Function | Index Writer Lambda Function. | +| kinesisInputStream | aws-cdk-lib.aws_kinesis.IStream | Kinesis Input Stream for Sitemap Items. | +| s3SitemapsBucket | aws-cdk-lib.aws_s3.IBucket | *No description.* | +| sitemapWriterLambdaFunction | aws-cdk-lib.aws_lambda.Function | Sitemap Writer Lambda Function. | +| dynamoDBTable | aws-cdk-lib.aws_dynamodb.Table | *No description.* | + +--- + +##### `indexWriterLambdaFunction`Required + +```typescript +public readonly indexWriterLambdaFunction: Function; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Function + +Index Writer Lambda Function. + +--- + +##### `kinesisInputStream`Required + +```typescript +public readonly kinesisInputStream: IStream; +``` + +- *Type:* aws-cdk-lib.aws_kinesis.IStream + +Kinesis Input Stream for Sitemap Items. + +--- + +##### `s3SitemapsBucket`Required + +```typescript +public readonly s3SitemapsBucket: IBucket; +``` + +- *Type:* aws-cdk-lib.aws_s3.IBucket + +--- + +##### `sitemapWriterLambdaFunction`Required + +```typescript +public readonly sitemapWriterLambdaFunction: Function; +``` + +- *Type:* aws-cdk-lib.aws_lambda.Function + +Sitemap Writer Lambda Function. + +--- + +##### `dynamoDBTable`Optional + +```typescript +public readonly dynamoDBTable: Table; +``` + +- *Type:* aws-cdk-lib.aws_dynamodb.Table + +--- + diff --git a/packages/sitemaps-cdk/LICENSE b/packages/sitemaps-cdk/LICENSE new file mode 100644 index 0000000..a5520bc --- /dev/null +++ b/packages/sitemaps-cdk/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2021-2024 Shutterstock, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/sitemaps-cdk/README.md b/packages/sitemaps-cdk/README.md new file mode 100644 index 0000000..1696c32 --- /dev/null +++ b/packages/sitemaps-cdk/README.md @@ -0,0 +1,11 @@ +# Overview + +- AWS CDK construct to create set of AWS Lambda functions: + - Sitemap Writer - Generate XML sitemaps from a stream of sitemap JSON items delivered via an AWS Kinesis stream + - Index Writer - Maintain an XML sitemap index that is updated when new sitemap XML files are created + - Freshener - Rebuild the sitemap index and sitemap XML files on demand (this applies changes to older items that were saved to the DB but not written to the XML files immediately) +- Saves record of each item in a DynamoDB table, for deduplication, marking deletes, and to enable the Freshener to rebuild the sitemap index and sitemap XML files on demand + +# Usage + +[Construct API Documentation](API.md) \ No newline at end of file diff --git a/packages/sitemaps-cdk/package.json b/packages/sitemaps-cdk/package.json new file mode 100644 index 0000000..9d45101 --- /dev/null +++ b/packages/sitemaps-cdk/package.json @@ -0,0 +1,78 @@ +{ + "name": "@shutterstock/sitemaps-cdk", + "description": "CDK construct for creating XML sitemaps and sitemap index files from Kinesis streams", + "repository": { + "type": "git", + "url": "git@github.shuttercorp.net:sreng/streaming-sitemaps.git" + }, + "scripts": { + "build": "npx projen build", + "bump": "npx projen bump", + "clobber": "npx projen clobber", + "compat": "npx projen compat", + "compile": "npx projen compile", + "default": "npx projen default", + "docgen": "npx projen docgen", + "eject": "npx projen eject", + "package": "npx projen package", + "package-all": "npx projen package-all", + "package:js": "npx projen package:js", + "post-compile": "npx projen post-compile", + "post-upgrade": "npx projen post-upgrade", + "pre-compile": "npx projen pre-compile", + "release": "npx projen release", + "test": "npx projen test", + "unbump": "npx projen unbump", + "upgrade": "npx projen upgrade", + "watch": "npx projen watch", + "projen": "npx projen" + }, + "author": { + "name": "Shutterstock, Inc.", + "url": "https://github.com/shutterstock", + "organization": true + }, + "devDependencies": { + "@types/node": "^18", + "aws-cdk-lib": "2.117.0", + "constructs": "10.1.244", + "esbuild": "^0.21.0", + "jsii": "~5.4.0", + "jsii-diff": "^1.98.0", + "jsii-docgen": "^10.4.9", + "jsii-pacmak": "^1.98.0", + "jsii-rosetta": "~5.4.0", + "projen": "0.81.6", + "standard-version": "^9", + "ts-node": "^10.9.1", + "typescript": "^4.0.0" + }, + "peerDependencies": { + "aws-cdk-lib": "^2.117.0", + "constructs": "^10.1.244" + }, + "keywords": [ + "aws", + "cdk", + "kinesis", + "sitemap", + "xml" + ], + "engines": { + "node": ">= 18.0.0" + }, + "main": "lib/index.js", + "license": "MIT", + "version": "0.0.0", + "types": "lib/index.d.ts", + "stability": "stable", + "jsii": { + "outdir": "dist", + "targets": {}, + "tsc": { + "outDir": "lib", + "rootDir": "src" + } + }, + "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." +} diff --git a/packages/sitemaps-cdk/src/fake-handler/dummy.js b/packages/sitemaps-cdk/src/fake-handler/dummy.js new file mode 100644 index 0000000..9f1d0e7 --- /dev/null +++ b/packages/sitemaps-cdk/src/fake-handler/dummy.js @@ -0,0 +1,8 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable no-undef */ +// eslint-disable-next-line @typescript-eslint/require-await +exports.handler = async (_event, _context) => { + throw new Error( + 'This is a placeholder to ensure that local builds and tests run when the lambda has not yet been bundled by esbuild.', + ); +}; diff --git a/packages/sitemaps-cdk/src/freshener-code.ts b/packages/sitemaps-cdk/src/freshener-code.ts new file mode 100644 index 0000000..41bcdde --- /dev/null +++ b/packages/sitemaps-cdk/src/freshener-code.ts @@ -0,0 +1,24 @@ +import { existsSync } from 'fs'; +import * as path from 'path'; +import * as lambda from 'aws-cdk-lib/aws-lambda'; + +/** + * Code for the Sitemap Freshener Lambda used to refresh sitemap files from DynamoDB + * + * Using this directly requires specifying these environment variables: + * - S3_SITEMAPS_BUCKET_NAME - S3 bucket name for the sitemaps-writer + * - TABLE_NAME - DynamoDB table name used by sitemaps-writer + * + * Optional environment variables: + * - NODE_CONFIG_ENV - Suffix used to find env-specific config file overrides (default: none) + * - S3_DIRECTORY - S3 directory to write files into (default: 'sitemaps/') + * - SITE_BASE_SITEMAP_PATH - Base path of the sitemaps on the website (for sitemap index links) (default: 'sitemaps') + * - KINESIS_SELF_STREAM_NAME - Compaction: Kinesis stream name for the sitemaps-writer + */ +export function FreshenerCode() { + return existsSync(path.join(__dirname, 'kinesis-sitemap-freshener', 'index.js')) + ? // This is for built apps packaged with the CDK construct + lambda.Code.fromAsset(path.join(__dirname, 'kinesis-sitemap-freshener')) + : // This is for local builds and tests before the lambda has been bundled + lambda.Code.fromAsset(path.join(__dirname, 'fake-handler', 'dummy.js')); +} diff --git a/packages/sitemaps-cdk/src/freshener.ts b/packages/sitemaps-cdk/src/freshener.ts new file mode 100644 index 0000000..6a04096 --- /dev/null +++ b/packages/sitemaps-cdk/src/freshener.ts @@ -0,0 +1,274 @@ +import { existsSync } from 'fs'; +import * as path from 'path'; +import { Duration, RemovalPolicy } from 'aws-cdk-lib'; +import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; +import * as kinesis from 'aws-cdk-lib/aws-kinesis'; +import * as lambda from 'aws-cdk-lib/aws-lambda'; +import * as lambdaEventSources from 'aws-cdk-lib/aws-lambda-event-sources'; +import * as lambdaNodejs from 'aws-cdk-lib/aws-lambda-nodejs'; +import * as logs from 'aws-cdk-lib/aws-logs'; +import * as s3 from 'aws-cdk-lib/aws-s3'; +import { Construct } from 'constructs'; +import { FreshenerCode } from './freshener-code'; + +export interface SitemapFreshnerConstructProps { + /** + * Disable minification during test builds so that snaphots match + * + * @default false + */ + readonly testBuild?: boolean; + + /** + * Environment used to select config files from the config layer, if provided + * + * Passed to the Lamba as `NODE_CONFIG_ENV` + * + * @example 'dev' + * @example 'prod' + * + * @default none + */ + readonly env?: string; + + /** + * Automatically clean up durable resources (e.g. for PR builds). + * + * ⚠️ CAUTION: This will delete the S3 bucket (and all contents) and DynamoDB table. + * + * @default false + */ + readonly autoDeleteEverything?: boolean; + + /** + * Kinesis input stream + * + * If not provided no event source will be created; the lambda can + * be invoked manually with a `start` operation using the Kinesis message format. + */ + readonly kinesisInputStream?: kinesis.IStream; + + /** + * Extra properties for the sitemap freshener Lambda function. + * + * Configuration can be passed either via Environment Variables or + * via a config file layer that can have a default config.yml and + * an NODE_CONFIG_ENV-specific config override file: + * `config-${NODE_CONFIG_ENV}.yml`. + * + * @default - { architecture: ARM_64, memorySize: 2000, timeout: Duration.minutes(15), logRetention: logs.RetentionDays.ONE_MONTH } + * + * @example { functionName: 'my-function-name', layers: lambda.Code.fromAsset('./configs/sitemap-freshner/') } + */ + readonly lambdaFuncFreshenerExtraProps?: lambda.FunctionOptions; + + /** + * Optional runtime for the sitemap freshener Lambda function. + * + * @default - lambda.Runtime.NODEJS_20_X + */ + readonly lambdaFuncFreshenerRuntime?: lambda.Runtime; + + /** + * Existing S3 sitemap files bucket as the desintation for the freshner Lambda. + */ + readonly s3SitemapsBucket: s3.IBucket; + + /** + * Existing DynamoDB Table to be used for freshening sitemap files. + */ + readonly dynamodbTable: dynamodb.ITable; + + /** + * Path to write sitemap files to. + * + * This should be unique per durable deployment, such as: + * - sitemaps/20210704/ + * - sitemaps/20211031/ + * + * When a new durable deployment is created, by changing the stack name, + * this prefix should be changed so that the new backfill writes to a + * new path and the old stack, with the old Lambda code, continues to write + * to the old path. When it is desired to migrate to the new sitemaps, + * a 301 should be returned for the well-known sitemap index URL to point + * to the deploy-specific sitemap index URL. + * + * @default - defers to config file or `sitemaps/` if not in config file + */ + readonly s3SitemapsPrefix?: string; + + /** + * Metrics namespace for Sitemap Freshener Lambda + */ + readonly metricsNamespace?: string; + + /** + * Extra Kinesis event source properties (e.g. batch size) + */ + readonly kinesisEventSourceExtraProps?: lambdaEventSources.KinesisEventSourceProps; +} + +interface ISitemapFreshenerConstruct { + readonly sitemapFreshenerLambdaFunction: lambda.Function; +} + +/** + * Sitemap Freshener Construct + * + * This construct creates a Lambda function that reads from a Kinesis stream + * and writes sitemap files to an S3 bucket from the contents in the DynamoDB Table. + * + * The Lambda function can be invoked with a `start` message or it can read the `start` + * message from the Kinesis stream. + * + * The Lambda will write a `freshenFile` message back to the Kinesis stream for each + * sitemap file that exists for the specified type. + * + * Changes `toremove` to `removed` and `towrite` to `written` in the DB for items in those states. + * + * When `repair` mode is off the XML files are only written, not read. + */ +export class SitemapFreshenerConstruct extends Construct implements ISitemapFreshenerConstruct { + private _sitemapFreshenerLambdaFunction: lambda.Function; + public get sitemapFreshenerLambdaFunction(): lambda.Function { + return this._sitemapFreshenerLambdaFunction; + } + + /** + * Sitemap Freshener Construct + * + * This construct creates a Lambda function that reads from a Kinesis stream + * and writes sitemap files to an S3 bucket from the contents in the DynamoDB Table. + * + * The Lambda function can be invoked with a `start` message or it can read the `start` + * message from the Kinesis stream. + * + * The Lambda will write a `freshenFile` message back to the Kinesis stream for each + * sitemap file that exists for the specified type. + * + * When `repair` mode is off the XML files are only written, not read. + */ + constructor(scope: Construct, id: string, props?: SitemapFreshnerConstructProps) { + super(scope, id); + + if (props === undefined) { + throw new Error('props must be set'); + } + + const { + autoDeleteEverything = false, + testBuild = false, + env, + kinesisInputStream, + s3SitemapsBucket, + s3SitemapsPrefix, + dynamodbTable, + lambdaFuncFreshenerExtraProps: lambdaFuncSitemapFreshenerExtraProps = {}, + lambdaFuncFreshenerRuntime = lambda.Runtime.NODEJS_20_X, + kinesisEventSourceExtraProps = {}, + } = props; + + // + // BEGIN - Create the Sitemap Freshener Function + // + + const sitemapFreshenerOptEnvs: { [key: string]: string } = {}; + if (props.metricsNamespace !== undefined) { + sitemapFreshenerOptEnvs.METRICS_NAMESPACE = props.metricsNamespace; + } + if (s3SitemapsPrefix !== undefined) { + sitemapFreshenerOptEnvs.S3_DIRECTORY = s3SitemapsPrefix; + sitemapFreshenerOptEnvs.SITE_BASE_SITEMAP_PATH = s3SitemapsPrefix; + } + if (kinesisInputStream !== undefined) { + sitemapFreshenerOptEnvs.KINESIS_SELF_STREAM_NAME = kinesisInputStream?.streamName; + } + + const defaultLambdaProps: lambda.FunctionOptions = { + architecture: lambda.Architecture.ARM_64, + logRetention: logs.RetentionDays.ONE_MONTH, + // The parallel fetches of S3 files / DynamoDB items + // and parallel writes to S3 files / DynamoDB items, both with back pressure + // ensure that we operate the Node.js thread at 100% CPU 100% of the time. + // Additionally we use some libuv I/O CPU as well, so we allocate over 1 CPU core. + // Reducing this will just increase the runtime in a 1/1 ratio with + // the reduction in memory, leaving the resulting cost unchanged. + memorySize: 1769, // 1769 MB is 100% of 1 CPU core + timeout: Duration.minutes(15), + environment: { + ...sitemapFreshenerOptEnvs, + NODE_ENV: 'production', + ...(env ? { NODE_CONFIG_ENV: env } : {}), + S3_SITEMAPS_BUCKET_NAME: s3SitemapsBucket.bucketName, + TABLE_NAME: dynamodbTable.tableName, + }, + }; + + const kinesisSitemapFreshenerFuncProps: Omit = { + runtime: lambdaFuncFreshenerRuntime, + ...defaultLambdaProps, + ...lambdaFuncSitemapFreshenerExtraProps, + environment: { + ...defaultLambdaProps.environment, + ...(props.lambdaFuncFreshenerExtraProps?.environment !== undefined + ? props.lambdaFuncFreshenerExtraProps.environment + : {}), + }, + }; + + // Add the Freshener Lambda + if (existsSync(path.join(__dirname, 'kinesis-sitemap-freshener', 'index.js'))) { + // This is for built apps packaged with the CDK construct + this._sitemapFreshenerLambdaFunction = new lambda.Function( + this, + 'kinesis-sitemap-freshener-func', + { + code: FreshenerCode(), + handler: 'index.handler', + ...kinesisSitemapFreshenerFuncProps, + }, + ); + } else { + // This is for deployments and tests when developing the CDK construct + this._sitemapFreshenerLambdaFunction = new lambdaNodejs.NodejsFunction( + this, + 'kinesis-sitemap-freshener-func', + { + entry: path.join(__dirname, '..', '..', 'kinesis-sitemap-freshener', 'src', 'index.ts'), + handler: 'handler', + bundling: { + sourceMap: !testBuild, + keepNames: !testBuild, + }, + ...kinesisSitemapFreshenerFuncProps, + }, + ); + } + if (autoDeleteEverything) { + this._sitemapFreshenerLambdaFunction.applyRemovalPolicy(RemovalPolicy.DESTROY); + } + // Grant read on the Input Stream + // Grant write as we write back to the stream for `start` -> `freshenFile` operations + if (kinesisInputStream !== undefined) { + kinesisInputStream.grantReadWrite(this._sitemapFreshenerLambdaFunction); + } + + // Give the sitemap freshener function read/write on the S3 sitemaps bucket + s3SitemapsBucket.grantReadWrite(this._sitemapFreshenerLambdaFunction); + + // Add the Sitemap Writer stream event source to the Sitemap Writer function + if (kinesisInputStream !== undefined) { + this._sitemapFreshenerLambdaFunction.addEventSource( + new lambdaEventSources.KinesisEventSource(kinesisInputStream, { + startingPosition: lambda.StartingPosition.TRIM_HORIZON, + bisectBatchOnError: true, + ...kinesisEventSourceExtraProps, + }), + ); + } + + // Give the Sitemap Freshener access to DynamoDB table + dynamodbTable.grantReadWriteData(this._sitemapFreshenerLambdaFunction); + dynamodbTable.grant(this._sitemapFreshenerLambdaFunction, 'dynamodb:DescribeTable'); + } +} diff --git a/packages/sitemaps-cdk/src/index.ts b/packages/sitemaps-cdk/src/index.ts new file mode 100644 index 0000000..13682ed --- /dev/null +++ b/packages/sitemaps-cdk/src/index.ts @@ -0,0 +1,4 @@ +export * from './sitemaps'; +export * from './sitemaps-code'; +export * from './freshener'; +export * from './freshener-code'; diff --git a/packages/sitemaps-cdk/src/sitemaps-code.ts b/packages/sitemaps-cdk/src/sitemaps-code.ts new file mode 100644 index 0000000..410e355 --- /dev/null +++ b/packages/sitemaps-cdk/src/sitemaps-code.ts @@ -0,0 +1,46 @@ +import { existsSync } from 'fs'; +import * as path from 'path'; +import * as lambda from 'aws-cdk-lib/aws-lambda'; + +/** + * Code for the Sitemap Writer Lambda used to write items into sitemaps + * with a copy in DynamoDB for deduplication and updates via the Freshener Lambda + * + * Using this directly requires specifying these environment variables: + * - S3_SITEMAPS_BUCKET_NAME - S3 bucket name + * - TABLE_NAME - DynamoDB table name + * - KINESIS_INDEX_WRITER_NAME - Kinesis stream name for the index-writer + * + * Optional environment variables: + * - NODE_CONFIG_ENV - Suffix used to find env-specific config file overrides (default: none) + * - S3_DIRECTORY - S3 directory to write files into (default: 'sitemaps/') + * - SITE_BASE_SITEMAP_PATH - Base path of the sitemaps on the website (for sitemap index links) (default: 'sitemaps') + * - KINESIS_SELF_STREAM_NAME - Compaction: Kinesis stream name of the sitemaps-writer (used for compacting messages) + */ +export function SitemapWriterCode() { + return existsSync(path.join(__dirname, 'kinesis-sitemap-writer', 'index.js')) + ? // This is for built apps packaged with the CDK construct + lambda.Code.fromAsset(path.join(__dirname, 'kinesis-sitemap-writer')) + : // This is for local builds and tests before the lambda has been bundled + lambda.Code.fromAsset(path.join(__dirname, 'fake-handler', 'dummy.js')); +} + +/** + * Code for the Index Writer Lambda used to write items into the index + * + * Using this directly requires specifying these environment variables: + * - S3_SITEMAPS_BUCKET_NAME - S3 bucket name + * - TABLE_NAME - DynamoDB table name + * + * Optional environment variables: + * - NODE_CONFIG_ENV - Suffix used to find env-specific config file overrides (default: none) + * - S3_DIRECTORY - S3 directory to write files into (default: 'sitemaps/') + * - SITE_BASE_SITEMAP_PATH - Base path of the sitemaps on the website (for sitemap index links) (default: 'sitemaps') + */ +export function IndexWriterCode() { + return existsSync(path.join(__dirname, 'kinesis-index-writer', 'index.js')) + ? // This is for built apps packaged with the CDK construct + lambda.Code.fromAsset(path.join(__dirname, 'kinesis-index-writer')) + : // This is for local builds and tests before the lambda has been bundled + lambda.Code.fromAsset(path.join(__dirname, 'fake-handler', 'dummy.js')); +} diff --git a/packages/sitemaps-cdk/src/sitemaps.ts b/packages/sitemaps-cdk/src/sitemaps.ts new file mode 100644 index 0000000..6f06071 --- /dev/null +++ b/packages/sitemaps-cdk/src/sitemaps.ts @@ -0,0 +1,550 @@ +import { existsSync } from 'fs'; +import * as path from 'path'; +import { Duration, RemovalPolicy } from 'aws-cdk-lib'; +import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; +import * as kinesis from 'aws-cdk-lib/aws-kinesis'; +import * as lambda from 'aws-cdk-lib/aws-lambda'; +import * as lambdaEventSources from 'aws-cdk-lib/aws-lambda-event-sources'; +import * as lambdaNodejs from 'aws-cdk-lib/aws-lambda-nodejs'; +import * as logs from 'aws-cdk-lib/aws-logs'; +import * as s3 from 'aws-cdk-lib/aws-s3'; +import { Construct } from 'constructs'; +import { SitemapWriterCode, IndexWriterCode } from './sitemaps-code'; + +export interface SitemapsConstructProps { + /** + * Disable minification during test builds so that snaphots match + * + * @default false + */ + readonly testBuild?: boolean; + + /** + * Environment used to select config files from the config layer, if provided + * + * Passed to the Lamba as `NODE_CONFIG_ENV` + * + * @example 'dev' + * @example 'prod' + * + * @default none + */ + readonly env?: string; + + /** + * Automatically clean up durable resources (e.g. for PR builds). + * + * ⚠️ CAUTION: This will delete the S3 bucket (and all contents) and DynamoDB table. + * + * @default false + */ + readonly autoDeleteEverything?: boolean; + + /** + * Specific name of the kinesis input stream + * + * If not specified, the name will be availabe via the + * `kinesisInputStreamName` export + * + * @default - auto assigned + */ + readonly kinesisInputStreamName?: string; + + /** + * Number of shards in the kinesis input stream + * + * @default 4 + */ + readonly kinesisInputStreamShards?: number; + + /** + * Number of days of data retention in the kinesis sitemap writer stream + * + * @default 1 day + */ + readonly kinesisSitemapWriterRetentionDays?: number; + + /** + * Optional - Specific name of the S3 sitemaps files bucket to be created. + * If not set, a name will be assigned. + * + * @default - auto assigned + */ + readonly s3SitemapsBucketName?: string; + + /** + * Optional - Already-existing S3 sitemaps files bucket to be used for sitemap and index files. + * If not set, a bucket will be created. + * + * @default - S3 Bucket will be created + */ + readonly s3SitemapsBucket?: s3.IBucket; + + /** + * Optional - Already-existing DynamoDB Table to be used for sitemap and index files. + * If not set, a table will be created. + * + * @default - DynamoDB Table will be created + */ + readonly dynamodbTable?: dynamodb.ITable; + + /** + * Optional - Name of the DynamoDB table + * + * @default - auto assigned by CDK + */ + readonly dynamodbTableName?: string; + + /** + * Optional - Extra properties for the DynamoDB table + */ + readonly dynamodbTableProps?: dynamodb.TableProps; + + /** + * Path to write sitemap files to. + * + * This should be unique per durable deployment, such as: + * - sitemaps/20210704/ + * - sitemaps/20211031/ + * + * When a new durable deployment is created, by changing the stack name, + * this prefix should be changed so that the new backfill writes to a + * new path and the old stack, with the old Lambda code, continues to write + * to the old path. When it is desired to migrate to the new sitemaps, + * a 301 should be returned for the well-known sitemap index URL to point + * to the deploy-specific sitemap index URL. + * + * @default - defers to config file or `sitemaps/` if not in config file + */ + readonly s3SitemapsPrefix?: string; + + /** + * Metrics namespace and name for Sitemap Writer Lambda + * + * @default - none, metrics disabled + */ + readonly metricsSitemapWriterName?: string; + + /** + * Metrics namespace and name for Index Writer Lambda + * + * @default - none, metrics disabled + */ + readonly metricsIndexWriterName?: string; + + /** + * Extra properties for the sitemap writer Lambda function. + * + * Configuration can be passed either via Environment Variables or + * via a config file layer that can have a default config.yml and + * an NODE_CONFIG_ENV-specific config override file: + * `config-${NODE_CONFIG_ENV}.yml`. + * + * @default - { architecture: ARM_64, memorySize: 2000, timeout: Duration.minutes(15), logRetention: logs.RetentionDays.ONE_MONTH } + * + * @example { functionName: 'my-sitemap-function-name', layers: lambda.Code.fromAsset('./configs/sitemap-writer/') } + */ + readonly lambdaFuncSitemapWriterExtraProps?: lambda.FunctionOptions; + + /** + * Optional runtime for the sitemap writer Lambda function. + * + * @default - lambda.Runtime.NODEJS_20_X + */ + readonly lambdaFuncSitemapWriterRuntime?: lambda.Runtime; + + /** + * Extra properties for the sitemap writer Lambda function. + * + * Configuration can be passed either via Environment Variables or + * via a config file layer that can have a default config.yml and + * an NODE_CONFIG_ENV-specific config override file: + * `config-${NODE_CONFIG_ENV}.yml`. + * + * @default - { architecture: ARM_64, memorySize: 2000, timeout: Duration.minutes(15), logRetention: logs.RetentionDays.ONE_MONTH } + * + * @example { functionName: 'my-index-function-name', layers: lambda.Code.fromAsset('./configs/index-writer/') } + */ + readonly lambdaFuncIndexWriterExtraProps?: lambda.FunctionOptions; + + /** + * Optional runtime for the index writer Lambda function. + * + * @default - lambda.Runtime.NODEJS_20_X + */ + readonly lambdaFuncIndexWriterRuntime?: lambda.Runtime; + + /** + * Batch Size for Sitemap Writer + * + * This is the maximum number of records that will be processed in a single batch. + * + * Keep this number high (e.g. 10,000) to reduce the number of Lambda invocation + * under high load and to reduce the number of times that the latest XML file + * is read from S3, deserialized, updated, serialized, and written back to S3, + * which is time consuming (10-30 seconds) and gets longer as the file approaches + * being full. + * + * @default - 10,000 + */ + readonly sitemapWriterBatchSize?: number; + + /** + * Max Batching Window Duration for Sitemap Writer + * + * Allowed range is 0-300 seconds. It is not suggested to set this to + * 0 seconds as that will parse the XML file far too often and will likely + * result in the Lambda function falling behind on reading the Kinesis Stream. + * + * @default - 30 seconds + */ + readonly sitemapWriterMaxBatchingWindow?: Duration; +} + +export interface ISitemapsConstruct { + readonly s3SitemapsBucket: s3.IBucket; + readonly dynamoDBTable?: dynamodb.Table; + + /** + * Kinesis Input Stream for Sitemap Items + */ + readonly kinesisInputStream: kinesis.IStream; + + /** + * Sitemap Writer Lambda Function + */ + readonly sitemapWriterLambdaFunction: lambda.Function; + + /** + * Index Writer Lambda Function + */ + readonly indexWriterLambdaFunction: lambda.Function; +} + +export class SitemapsConstruct extends Construct implements ISitemapsConstruct { + private _kinesisInputStream: kinesis.Stream; + public get kinesisInputStream(): kinesis.IStream { + return this._kinesisInputStream; + } + + private _s3SitemapsBucket: s3.IBucket; + public get s3SitemapsBucket(): s3.IBucket { + return this._s3SitemapsBucket; + } + + private _dynamoDBTable: dynamodb.Table | undefined; + public get dynamoDBTable(): dynamodb.Table | undefined { + return this._dynamoDBTable; + } + + private _sitemapWriterLambdaFunction: lambda.Function; + public get sitemapWriterLambdaFunction(): lambda.Function { + return this._sitemapWriterLambdaFunction; + } + + private _indexWriterLambdaFunction: lambda.Function; + public get indexWriterLambdaFunction(): lambda.Function { + return this._indexWriterLambdaFunction; + } + + /** + * Sitemaps writer from Kinesis stream source + */ + constructor(scope: Construct, id: string, props?: SitemapsConstructProps) { + super(scope, id); + + if (props === undefined) { + throw new Error('props must be set'); + } + + const { + kinesisInputStreamShards = 4, + kinesisInputStreamName, + kinesisSitemapWriterRetentionDays = 1, + autoDeleteEverything = false, + testBuild = false, + env, + sitemapWriterMaxBatchingWindow = Duration.seconds(30), + s3SitemapsBucketName, + s3SitemapsBucket, + s3SitemapsPrefix, + lambdaFuncSitemapWriterExtraProps = {}, + lambdaFuncSitemapWriterRuntime = lambda.Runtime.NODEJS_20_X, + lambdaFuncIndexWriterExtraProps = {}, + lambdaFuncIndexWriterRuntime = lambda.Runtime.NODEJS_20_X, + sitemapWriterBatchSize = 10000, + dynamodbTableName, + dynamodbTableProps, + } = props; + let dynamodbTable = props.dynamodbTable; + + // + // Validate Args + // + if (kinesisSitemapWriterRetentionDays < 1) { + throw new TypeError('Kinesis stream retention cannot be less than 1 day'); + } + if (s3SitemapsBucket !== undefined && s3SitemapsBucketName !== undefined) { + throw new TypeError('Bucket name and bucket cannot both be specified'); + } + if (dynamodbTable !== undefined && dynamodbTableName !== undefined) { + throw new TypeError('Table name and table cannot both be specified'); + } + if (dynamodbTable !== undefined && dynamodbTableProps !== undefined) { + throw new TypeError('Table props and table cannot both be specified'); + } + if ( + dynamodbTableProps?.partitionKey !== undefined || + dynamodbTableProps?.sortKey !== undefined + ) { + throw new TypeError('Table partition and sort keys cannot be specified'); + } + if (sitemapWriterBatchSize < 1 || sitemapWriterBatchSize > 10000) { + throw new TypeError('Sitemap Writer batch size must be between 1 and 10,000 inclusive'); + } + + // + // Add or Use Existing DynamoDB Table + // + if (dynamodbTable === undefined) { + // No table was passed, create a table + this._dynamoDBTable = new dynamodb.Table(this, 'sitemaps-table', { + tableName: dynamodbTableName, + billingMode: dynamodb.BillingMode.PAY_PER_REQUEST, + partitionKey: { + name: 'PK', + type: dynamodb.AttributeType.STRING, + }, + sortKey: { + name: 'SK', + type: dynamodb.AttributeType.STRING, + }, + removalPolicy: RemovalPolicy.DESTROY, + ...dynamodbTableProps, + }); + dynamodbTable = this._dynamoDBTable; + } + + // + // Add or Use Existing S3 Bucket for sitemaps files + // + if (s3SitemapsBucket === undefined) { + // No bucket was passed, create a bucket + this._s3SitemapsBucket = new s3.Bucket(this, 'sitemaps-s3-bucket', { + bucketName: s3SitemapsBucketName, + autoDeleteObjects: autoDeleteEverything, + removalPolicy: RemovalPolicy.DESTROY, + }); + } else { + // An existing bucket was passed, save a reference to it + this._s3SitemapsBucket = s3SitemapsBucket; + } + + // + // Add Kinesis input stream + // + this._kinesisInputStream = new kinesis.Stream(this, 'sitemaps-input-stream', { + encryption: kinesis.StreamEncryption.UNENCRYPTED, + shardCount: kinesisInputStreamShards, + // Note: if not specified the stream name will be auto-assigned + streamName: kinesisInputStreamName, + retentionPeriod: Duration.days(kinesisSitemapWriterRetentionDays), + }); + if (autoDeleteEverything) { + this._kinesisInputStream.applyRemovalPolicy(RemovalPolicy.DESTROY); + } + + // + // Add Kinesis index writer stream + // + const kinesisIndexWriterStream = new kinesis.Stream(this, 'sitemap-index-writer-stream', { + encryption: kinesis.StreamEncryption.UNENCRYPTED, + // This can be more than 1 shards but the shard key must ensure + // that all messages for a particular index file (e.g. widget) + // go into the same shard so that updates to each index file + // are serialized. + shardCount: 1, + retentionPeriod: Duration.days(kinesisSitemapWriterRetentionDays), + }); + if (autoDeleteEverything) { + kinesisIndexWriterStream.applyRemovalPolicy(RemovalPolicy.DESTROY); + } + + // + // BEGIN - Create the Sitemap Writer Function and Stream + // + + const sitemapWriterOptEnvs: { [key: string]: string } = {}; + if (props.metricsSitemapWriterName !== undefined) { + sitemapWriterOptEnvs.METRICS_NAMESPACE = props.metricsSitemapWriterName; + } + if (s3SitemapsPrefix !== undefined) { + sitemapWriterOptEnvs.S3_DIRECTORY = s3SitemapsPrefix; + sitemapWriterOptEnvs.SITE_BASE_SITEMAP_PATH = s3SitemapsPrefix; + } + + // Add the Sitemap Writer Lambda + const defaultKinesisSitemapWriterFuncProps: lambda.FunctionOptions = { + architecture: lambda.Architecture.ARM_64, + logRetention: logs.RetentionDays.ONE_MONTH, + memorySize: 1769, // 1769 MB is 100% of 1 CPU core + timeout: Duration.minutes(15), + environment: { + NODE_ENV: 'production', + ...(env ? { NODE_CONFIG_ENV: env } : {}), + S3_SITEMAPS_BUCKET_NAME: this._s3SitemapsBucket.bucketName, + TABLE_NAME: dynamodbTable.tableName, + KINESIS_INDEX_WRITER_NAME: kinesisIndexWriterStream.streamName, + KINESIS_SELF_STREAM_NAME: this.kinesisInputStream.streamName, + ...sitemapWriterOptEnvs, + }, + }; + const kinesisSitemapWriterFuncProps: Omit = { + runtime: lambdaFuncSitemapWriterRuntime, + ...defaultKinesisSitemapWriterFuncProps, + ...lambdaFuncSitemapWriterExtraProps, + environment: { + ...defaultKinesisSitemapWriterFuncProps.environment, + ...(props.lambdaFuncSitemapWriterExtraProps?.environment !== undefined + ? props.lambdaFuncSitemapWriterExtraProps.environment + : {}), + }, + }; + if (existsSync(path.join(__dirname, 'kinesis-sitemap-writer', 'index.js'))) { + // This is for built apps packaged with the CDK construct + this._sitemapWriterLambdaFunction = new lambda.Function(this, 'kinesis-sitemap-writer-func', { + code: SitemapWriterCode(), + handler: 'index.handler', + ...kinesisSitemapWriterFuncProps, + }); + } else { + // This is for deployments and tests when developing the CDK construct + this._sitemapWriterLambdaFunction = new lambdaNodejs.NodejsFunction( + this, + 'kinesis-sitemap-writer-func', + { + entry: path.join(__dirname, '..', '..', 'kinesis-sitemap-writer', 'src', 'index.ts'), + handler: 'handler', + bundling: { + sourceMap: !testBuild, + keepNames: !testBuild, + }, + ...kinesisSitemapWriterFuncProps, + }, + ); + } + if (autoDeleteEverything) { + this._sitemapWriterLambdaFunction.applyRemovalPolicy(RemovalPolicy.DESTROY); + } + // Grant read on the Input Stream + // Grant write as we write back to the stream for compaction + // of duplicate records + this.kinesisInputStream.grantReadWrite(this._sitemapWriterLambdaFunction); + + // Give the sitemap writer function read/write on the S3 sitemaps bucket + // Note: this will work for both pre-existing and newly created buckets + this.s3SitemapsBucket.grantReadWrite(this._sitemapWriterLambdaFunction); + + // Add the Sitemap Writer stream event source to the Sitemap Writer function + this._sitemapWriterLambdaFunction.addEventSource( + new lambdaEventSources.KinesisEventSource(this.kinesisInputStream, { + startingPosition: lambda.StartingPosition.TRIM_HORIZON, + // TODO: Allow batchSize, maxBatchingWindow, and tumblingWindow to be configured? + batchSize: sitemapWriterBatchSize, + maxBatchingWindow: sitemapWriterMaxBatchingWindow, + bisectBatchOnError: true, + }), + ); + + // Grant the sitemap writer function to write to the index writer stream + kinesisIndexWriterStream.grantWrite(this._sitemapWriterLambdaFunction); + + // Give the Sitemap Writer access to DynamoDB table + dynamodbTable.grantReadWriteData(this._sitemapWriterLambdaFunction); + dynamodbTable.grant(this._sitemapWriterLambdaFunction, 'dynamodb:DescribeTable'); + + // + // BEGIN - Create the Index Writer Function and Stream + // + + const indexWriterOptEnvs: { [key: string]: string } = {}; + if (props.metricsIndexWriterName !== undefined) { + indexWriterOptEnvs.METRICS_NAMESPACE = props.metricsIndexWriterName; + } + if (s3SitemapsPrefix !== undefined) { + indexWriterOptEnvs.S3_DIRECTORY = s3SitemapsPrefix; + indexWriterOptEnvs.SITE_BASE_SITEMAP_PATH = s3SitemapsPrefix; + } + + // Add the Index Writer Lambda + const defaultKinesisIndexWriterFuncProps: lambda.FunctionOptions = { + architecture: lambda.Architecture.ARM_64, + logRetention: logs.RetentionDays.ONE_MONTH, + memorySize: 512, + timeout: Duration.minutes(5), + environment: { + NODE_ENV: 'production', + ...(env ? { NODE_CONFIG_ENV: env } : {}), + S3_SITEMAPS_BUCKET_NAME: this._s3SitemapsBucket.bucketName, + TABLE_NAME: dynamodbTable.tableName, + ...indexWriterOptEnvs, + }, + }; + const kinesisIndexWriterFuncProps: Omit = { + runtime: lambdaFuncIndexWriterRuntime, + ...defaultKinesisIndexWriterFuncProps, + ...lambdaFuncIndexWriterExtraProps, + environment: { + ...defaultKinesisIndexWriterFuncProps.environment, + ...(props.lambdaFuncIndexWriterExtraProps?.environment !== undefined + ? props.lambdaFuncIndexWriterExtraProps.environment + : {}), + }, + }; + if (existsSync(path.join(__dirname, 'kinesis-index-writer', 'index.js'))) { + // This is for built apps packaged with the CDK construct + this._indexWriterLambdaFunction = new lambda.Function(this, 'kinesis-index-writer-func', { + code: IndexWriterCode(), + handler: 'index.handler', + ...kinesisIndexWriterFuncProps, + }); + } else { + // This is for deployments and tests when developing the CDK construct + this._indexWriterLambdaFunction = new lambdaNodejs.NodejsFunction( + this, + 'kinesis-index-writer-func', + { + entry: path.join(__dirname, '..', '..', 'kinesis-index-writer', 'src', 'index.ts'), + handler: 'handler', + bundling: { + sourceMap: !testBuild, + keepNames: !testBuild, + }, + ...kinesisIndexWriterFuncProps, + }, + ); + } + if (autoDeleteEverything) { + this._indexWriterLambdaFunction.applyRemovalPolicy(RemovalPolicy.DESTROY); + } + // Give the Index Writer function read on the Index Writer stream + kinesisIndexWriterStream.grantRead(this._indexWriterLambdaFunction); + // Give the Index Writer function read/write on the S3 sitemaps bucket + // Note: this will work for both pre-existing and newly created buckets + this.s3SitemapsBucket.grantReadWrite(this._indexWriterLambdaFunction); + + // Add the Index Writer stream event source to the Index Writer function + this._indexWriterLambdaFunction.addEventSource( + new lambdaEventSources.KinesisEventSource(kinesisIndexWriterStream, { + startingPosition: lambda.StartingPosition.TRIM_HORIZON, + // TODO: Allow batchSize, maxBatchingWindow, and tumblingWindow to be configured? + batchSize: 1000, + maxBatchingWindow: Duration.seconds(30), + }), + ); + + // Give the Index Writer access to DynamoDB table + dynamodbTable.grantReadWriteData(this._indexWriterLambdaFunction); + dynamodbTable.grant(this._indexWriterLambdaFunction, 'dynamodb:DescribeTable'); + } +} diff --git a/packages/sitemaps-cdk/test/fixtures/configs/index-writer/config-prod.yml b/packages/sitemaps-cdk/test/fixtures/configs/index-writer/config-prod.yml new file mode 100644 index 0000000..e69de29 diff --git a/packages/sitemaps-cdk/test/fixtures/configs/index-writer/config.yml b/packages/sitemaps-cdk/test/fixtures/configs/index-writer/config.yml new file mode 100644 index 0000000..e69de29 diff --git a/packages/sitemaps-cdk/test/fixtures/configs/sitemap-freshener/config-prod.yml b/packages/sitemaps-cdk/test/fixtures/configs/sitemap-freshener/config-prod.yml new file mode 100644 index 0000000..e69de29 diff --git a/packages/sitemaps-cdk/test/fixtures/configs/sitemap-freshener/config.yml b/packages/sitemaps-cdk/test/fixtures/configs/sitemap-freshener/config.yml new file mode 100644 index 0000000..8647d2a --- /dev/null +++ b/packages/sitemaps-cdk/test/fixtures/configs/sitemap-freshener/config.yml @@ -0,0 +1 @@ +dynamoDBConcurrentWrites: 5 diff --git a/packages/sitemaps-cdk/test/fixtures/configs/sitemap-writer/config-prod.yml b/packages/sitemaps-cdk/test/fixtures/configs/sitemap-writer/config-prod.yml new file mode 100644 index 0000000..e69de29 diff --git a/packages/sitemaps-cdk/test/fixtures/configs/sitemap-writer/config.yml b/packages/sitemaps-cdk/test/fixtures/configs/sitemap-writer/config.yml new file mode 100644 index 0000000..e69de29 diff --git a/packages/sitemaps-cdk/test/freshener.test.ts b/packages/sitemaps-cdk/test/freshener.test.ts new file mode 100644 index 0000000..3778acb --- /dev/null +++ b/packages/sitemaps-cdk/test/freshener.test.ts @@ -0,0 +1,306 @@ +/* eslint-disable no-console */ +/// +import { + App, + Duration, + Stack, + aws_dynamodb as dynamodb, + aws_kinesis as kinesis, + aws_s3 as s3, + aws_lambda as lambda, +} from 'aws-cdk-lib'; +import { Template } from 'aws-cdk-lib/assertions'; + +import { SitemapFreshenerConstruct } from '../src'; +import path from 'path'; + +describe('SitemapFreshenerConstruct', () => { + it('accepts and merges extra lambda props', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const dynamodbTable = new dynamodb.Table(stack, 'dynamodb-table', { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }); + const s3SitemapsBucket = new s3.Bucket(stack, 'sitemaps-bucket', {}); + const kinesisStream = new kinesis.Stream(stack, 'kinesis-stream', { + streamName: 'some-stream', + }); + const construct = new SitemapFreshenerConstruct(stack, 'TestConstruct', { + kinesisInputStream: kinesisStream, + s3SitemapsBucket, + s3SitemapsPrefix: 's3Directory/', + dynamodbTable, + metricsNamespace: 'cats-namespace', + env: 'alpha', + lambdaFuncFreshenerExtraProps: { + functionName: 'my-custom-function-name', + memorySize: 512, + architecture: lambda.Architecture.X86_64, + timeout: Duration.minutes(3), + layers: [ + new lambda.LayerVersion(stack, 'freshener-config-layer', { + code: lambda.Code.fromAsset( + path.join(__dirname, 'fixtures', 'configs', 'sitemap-freshener', ''), + ), + layerVersionName: `freshener-config`, + }), + ], + environment: { + MY_CUSTOM_ENV_VAR: 'dogs', + }, + }, + lambdaFuncFreshenerRuntime: lambda.Runtime.NODEJS_18_X, + }); + + expect(construct).toBeDefined(); + + try { + // There are 2 lambda functions - One for our code, 1 for the log retention cleanup + Template.fromStack(stack).resourceCountIs('AWS::Lambda::Function', 2); + Template.fromStack(stack).resourceCountIs('AWS::DynamoDB::Table', 1); + Template.fromStack(stack).resourceCountIs('AWS::S3::Bucket', 1); + + // Confirm that logical IDs have not changed accidentally (causes delete/create) + Template.fromStack(stack).templateMatches({ + Resources: { + TestConstructkinesissitemapfreshenerfunc5FDA6B4C: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['x86_64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: '51103a8dd683be7e370966abb37a8ddc1c9dcee5a8b51694c05f08945f98e95c.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + NODE_CONFIG_ENV: 'alpha', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'sitemapsbucket101B82D2', + }, + TABLE_NAME: { + Ref: 'dynamodbtable650E77A7', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + MY_CUSTOM_ENV_VAR: 'dogs', + METRICS_NAMESPACE: 'cats-namespace', + KINESIS_SELF_STREAM_NAME: stack.resolve(kinesisStream.streamName), + S3_DIRECTORY: 's3Directory/', + SITE_BASE_SITEMAP_PATH: 's3Directory/', + }, + }, + FunctionName: 'my-custom-function-name', + Handler: 'index.handler', + Layers: [ + { + Ref: 'freshenerconfiglayer11CCF2B4', + }, + ], + MemorySize: 512, + Role: { + 'Fn::GetAtt': [ + 'TestConstructkinesissitemapfreshenerfuncServiceRole7653FDD8', + 'Arn', + ], + }, + Runtime: 'nodejs18.x', + Timeout: 180, + }, + }, + }, + }); + } catch (error) { + console.debug(JSON.stringify(Template.fromStack(stack).toJSON(), null, 2)); + throw error; + } + }); + + it('works with s3 bucket and dynamodb table params', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const dynamodbTable = new dynamodb.Table(stack, 'dynamodb-table', { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }); + const s3SitemapsBucket = new s3.Bucket(stack, 'sitemaps-bucket', {}); + const construct = new SitemapFreshenerConstruct(stack, 'TestConstruct', { + s3SitemapsBucket, + dynamodbTable, + }); + + expect(construct).toBeDefined(); + + try { + // There are 2 lambda functions - One for our code, 1 for the log retention cleanup + Template.fromStack(stack).resourceCountIs('AWS::Lambda::Function', 2); + Template.fromStack(stack).resourceCountIs('AWS::DynamoDB::Table', 1); + Template.fromStack(stack).resourceCountIs('AWS::S3::Bucket', 1); + + // Confirm that logical IDs have not changed accidentally (causes delete/create) + Template.fromStack(stack).templateMatches({ + Resources: { + TestConstructkinesissitemapfreshenerfuncServiceRole7653FDD8: { + Type: 'AWS::IAM::Role', + Properties: { + AssumeRolePolicyDocument: { + Statement: [ + { + Action: 'sts:AssumeRole', + Effect: 'Allow', + Principal: { + Service: 'lambda.amazonaws.com', + }, + }, + ], + Version: '2012-10-17', + }, + ManagedPolicyArns: [ + { + 'Fn::Join': [ + '', + [ + 'arn:', + { + Ref: 'AWS::Partition', + }, + ':iam::aws:policy/service-role/AWSLambdaBasicExecutionRole', + ], + ], + }, + ], + }, + }, + TestConstructkinesissitemapfreshenerfuncServiceRoleDefaultPolicyA0AD66B9: { + Type: 'AWS::IAM::Policy', + Properties: { + PolicyDocument: { + Statement: [ + { + Action: [ + 's3:GetObject*', + 's3:GetBucket*', + 's3:List*', + 's3:DeleteObject*', + 's3:PutObject', + 's3:PutObjectLegalHold', + 's3:PutObjectRetention', + 's3:PutObjectTagging', + 's3:PutObjectVersionTagging', + 's3:Abort*', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['sitemapsbucket101B82D2', 'Arn'], + }, + { + 'Fn::Join': [ + '', + [ + { + 'Fn::GetAtt': ['sitemapsbucket101B82D2', 'Arn'], + }, + '/*', + ], + ], + }, + ], + }, + { + Action: [ + 'dynamodb:BatchGetItem', + 'dynamodb:GetRecords', + 'dynamodb:GetShardIterator', + 'dynamodb:Query', + 'dynamodb:GetItem', + 'dynamodb:Scan', + 'dynamodb:ConditionCheckItem', + 'dynamodb:BatchWriteItem', + 'dynamodb:PutItem', + 'dynamodb:UpdateItem', + 'dynamodb:DeleteItem', + 'dynamodb:DescribeTable', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['dynamodbtable650E77A7', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + { + Action: 'dynamodb:DescribeTable', + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['dynamodbtable650E77A7', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + ], + Version: '2012-10-17', + }, + PolicyName: + 'TestConstructkinesissitemapfreshenerfuncServiceRoleDefaultPolicyA0AD66B9', + Roles: [ + { + Ref: 'TestConstructkinesissitemapfreshenerfuncServiceRole7653FDD8', + }, + ], + }, + }, + TestConstructkinesissitemapfreshenerfunc5FDA6B4C: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['arm64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: '51103a8dd683be7e370966abb37a8ddc1c9dcee5a8b51694c05f08945f98e95c.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'sitemapsbucket101B82D2', + }, + TABLE_NAME: { + Ref: 'dynamodbtable650E77A7', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + }, + }, + Handler: 'index.handler', + MemorySize: 1769, + Role: { + 'Fn::GetAtt': [ + 'TestConstructkinesissitemapfreshenerfuncServiceRole7653FDD8', + 'Arn', + ], + }, + Runtime: 'nodejs20.x', + Timeout: 900, + }, + }, + }, + }); + } catch (error) { + console.debug(JSON.stringify(Template.fromStack(stack).toJSON(), null, 2)); + throw error; + } + }); +}); diff --git a/packages/sitemaps-cdk/test/sitemaps.test.ts b/packages/sitemaps-cdk/test/sitemaps.test.ts new file mode 100644 index 0000000..83ecaf5 --- /dev/null +++ b/packages/sitemaps-cdk/test/sitemaps.test.ts @@ -0,0 +1,1099 @@ +/* eslint-disable no-console */ +/// +import { + App, + Duration, + Stack, + aws_dynamodb as dynamodb, + aws_lambda as lambda, + aws_s3 as s3, +} from 'aws-cdk-lib'; +import { Template } from 'aws-cdk-lib/assertions'; +import path from 'path'; + +import { SitemapsConstruct } from '../src'; + +describe('SitemapsConstruct', () => { + it('accepts and merges extra lambda props', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const dynamodbTable = new dynamodb.Table(stack, 'dynamodb-table', { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }); + const s3SitemapsBucket = new s3.Bucket(stack, 'sitemaps-bucket', {}); + const construct = new SitemapsConstruct(stack, 'TestConstruct', { + env: 'alpha', + s3SitemapsBucket, + dynamodbTable, + s3SitemapsPrefix: 's3Directory/', + lambdaFuncSitemapWriterExtraProps: { + functionName: 'my-sitemap-function-name', + architecture: lambda.Architecture.X86_64, + memorySize: 512, + timeout: Duration.minutes(3), + layers: [ + new lambda.LayerVersion(stack, 'sitemap-writer-config-layer', { + code: lambda.Code.fromAsset( + path.join(__dirname, 'fixtures', 'configs', 'sitemap-writer', ''), + ), + layerVersionName: `sitemap-writer-config`, + }), + ], + environment: { + MY_CUSTOM_ENV_VAR: 'sitemap', + }, + }, + lambdaFuncSitemapWriterRuntime: lambda.Runtime.NODEJS_18_X, + lambdaFuncIndexWriterExtraProps: { + functionName: 'my-index-function-name', + architecture: lambda.Architecture.X86_64, + memorySize: 768, + timeout: Duration.minutes(4), + layers: [ + new lambda.LayerVersion(stack, 'index-writer-config-layer', { + code: lambda.Code.fromAsset( + path.join(__dirname, 'fixtures', 'configs', 'index-writer', ''), + ), + layerVersionName: `index-writer-config`, + }), + ], + environment: { + MY_CUSTOM_ENV_VAR: 'index', + }, + }, + lambdaFuncIndexWriterRuntime: lambda.Runtime.NODEJS_18_X, + metricsSitemapWriterName: 'my-metrics-namespace-sitemaps', + metricsIndexWriterName: 'my-metrics-namespace-index', + }); + + expect(construct).toBeDefined(); + + try { + // There are 3 lambda functions - 2 for our code, 1 for the log retention cleanup + Template.fromStack(stack).resourceCountIs('AWS::Lambda::Function', 3); + Template.fromStack(stack).resourceCountIs('AWS::DynamoDB::Table', 1); + Template.fromStack(stack).resourceCountIs('AWS::S3::Bucket', 1); + + // Confirm that logical IDs have not changed accidentally (causes delete/create) + Template.fromStack(stack).templateMatches({ + Resources: { + TestConstructkinesissitemapwriterfuncC5440FEB: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['x86_64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: '51103a8dd683be7e370966abb37a8ddc1c9dcee5a8b51694c05f08945f98e95c.zip', + }, + Environment: { + Variables: { + NODE_CONFIG_ENV: 'alpha', + NODE_ENV: 'production', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'sitemapsbucket101B82D2', + }, + TABLE_NAME: { + Ref: 'dynamodbtable650E77A7', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + MY_CUSTOM_ENV_VAR: 'sitemap', + METRICS_NAMESPACE: 'my-metrics-namespace-sitemaps', + KINESIS_SELF_STREAM_NAME: stack.resolve(construct.kinesisInputStream.streamName), + }, + }, + FunctionName: 'my-sitemap-function-name', + Handler: 'index.handler', + Layers: [ + { + Ref: 'sitemapwriterconfiglayer344CC877', + }, + ], + MemorySize: 512, + Role: { + 'Fn::GetAtt': ['TestConstructkinesissitemapwriterfuncServiceRole277EF8DD', 'Arn'], + }, + Runtime: 'nodejs18.x', + Timeout: 180, + }, + }, + TestConstructkinesisindexwriterfunc180F5261: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['x86_64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: '51103a8dd683be7e370966abb37a8ddc1c9dcee5a8b51694c05f08945f98e95c.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + NODE_CONFIG_ENV: 'alpha', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'sitemapsbucket101B82D2', + }, + TABLE_NAME: { + Ref: 'dynamodbtable650E77A7', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + MY_CUSTOM_ENV_VAR: 'index', + METRICS_NAMESPACE: 'my-metrics-namespace-index', + }, + }, + FunctionName: 'my-index-function-name', + Handler: 'index.handler', + Layers: [ + { + Ref: 'indexwriterconfiglayerC283CCA0', + }, + ], + MemorySize: 768, + Role: { + 'Fn::GetAtt': ['TestConstructkinesisindexwriterfuncServiceRole31DC4F79', 'Arn'], + }, + Runtime: 'nodejs18.x', + Timeout: 240, + }, + }, + }, + }); + } catch (error) { + console.debug(JSON.stringify(Template.fromStack(stack).toJSON(), null, 2)); + throw error; + } + }); + + it('works with s3 bucket and dynamodb table params', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const dynamodbTable = new dynamodb.Table(stack, 'dynamodb-table', { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }); + const s3SitemapsBucket = new s3.Bucket(stack, 'sitemaps-bucket', {}); + const construct = new SitemapsConstruct(stack, 'TestConstruct', { + s3SitemapsBucket, + dynamodbTable, + autoDeleteEverything: true, + }); + + expect(construct).toBeDefined(); + + try { + // There are 4 lambda functions - 2 for our code, 1 for the log retention cleanup + Template.fromStack(stack).resourceCountIs('AWS::Lambda::Function', 3); + Template.fromStack(stack).resourceCountIs('AWS::DynamoDB::Table', 1); + Template.fromStack(stack).resourceCountIs('AWS::S3::Bucket', 1); + + // Confirm that logical IDs have not changed accidentally (causes delete/create) + Template.fromStack(stack).templateMatches({ + Resources: { + TestConstructkinesissitemapwriterfuncServiceRole277EF8DD: { + Type: 'AWS::IAM::Role', + Properties: { + AssumeRolePolicyDocument: { + Statement: [ + { + Action: 'sts:AssumeRole', + Effect: 'Allow', + Principal: { + Service: 'lambda.amazonaws.com', + }, + }, + ], + Version: '2012-10-17', + }, + ManagedPolicyArns: [ + { + 'Fn::Join': [ + '', + [ + 'arn:', + { + Ref: 'AWS::Partition', + }, + ':iam::aws:policy/service-role/AWSLambdaBasicExecutionRole', + ], + ], + }, + ], + }, + }, + TestConstructkinesissitemapwriterfuncServiceRoleDefaultPolicy59245308: { + Type: 'AWS::IAM::Policy', + Properties: { + PolicyDocument: { + Statement: [ + { + Action: [ + 'kinesis:DescribeStreamSummary', + 'kinesis:GetRecords', + 'kinesis:GetShardIterator', + 'kinesis:ListShards', + 'kinesis:SubscribeToShard', + 'kinesis:DescribeStream', + 'kinesis:ListStreams', + 'kinesis:DescribeStreamConsumer', + 'kinesis:PutRecord', + 'kinesis:PutRecords', + ], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + }, + { + Action: [ + 's3:GetObject*', + 's3:GetBucket*', + 's3:List*', + 's3:DeleteObject*', + 's3:PutObject', + 's3:PutObjectLegalHold', + 's3:PutObjectRetention', + 's3:PutObjectTagging', + 's3:PutObjectVersionTagging', + 's3:Abort*', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['sitemapsbucket101B82D2', 'Arn'], + }, + { + 'Fn::Join': [ + '', + [ + { + 'Fn::GetAtt': ['sitemapsbucket101B82D2', 'Arn'], + }, + '/*', + ], + ], + }, + ], + }, + { + Action: [ + 'kinesis:DescribeStreamSummary', + 'kinesis:GetRecords', + 'kinesis:GetShardIterator', + 'kinesis:ListShards', + 'kinesis:SubscribeToShard', + 'kinesis:DescribeStream', + 'kinesis:ListStreams', + 'kinesis:DescribeStreamConsumer', + ], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + }, + { + Action: 'kinesis:DescribeStream', + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + }, + { + Action: ['kinesis:ListShards', 'kinesis:PutRecord', 'kinesis:PutRecords'], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + }, + { + Action: [ + 'dynamodb:BatchGetItem', + 'dynamodb:GetRecords', + 'dynamodb:GetShardIterator', + 'dynamodb:Query', + 'dynamodb:GetItem', + 'dynamodb:Scan', + 'dynamodb:ConditionCheckItem', + 'dynamodb:BatchWriteItem', + 'dynamodb:PutItem', + 'dynamodb:UpdateItem', + 'dynamodb:DeleteItem', + 'dynamodb:DescribeTable', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['dynamodbtable650E77A7', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + { + Action: 'dynamodb:DescribeTable', + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['dynamodbtable650E77A7', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + ], + Version: '2012-10-17', + }, + }, + }, + TestConstructkinesissitemapwriterfuncKinesisEventSourceTestStackTestConstructsitemapsinputstreamE2DF157128FB71FB: + { + Type: 'AWS::Lambda::EventSourceMapping', + Properties: { + BatchSize: 10000, + BisectBatchOnFunctionError: true, + EventSourceArn: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + FunctionName: { + Ref: 'TestConstructkinesissitemapwriterfuncC5440FEB', + }, + MaximumBatchingWindowInSeconds: 30, + StartingPosition: 'TRIM_HORIZON', + }, + }, + TestConstructkinesissitemapwriterfuncC5440FEB: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['arm64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: '7b057df9bba959e8a4db5db578314a6c16b45ec1f19b3145207864a3f4f0656a.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'sitemapsbucket101B82D2', + }, + TABLE_NAME: { + Ref: 'dynamodbtable650E77A7', + }, + KINESIS_INDEX_WRITER_NAME: { + Ref: 'TestConstructsitemapindexwriterstream517F6DD8', + }, + KINESIS_SELF_STREAM_NAME: { + Ref: 'TestConstructsitemapsinputstreamD34990D2', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + }, + }, + Handler: 'index.handler', + MemorySize: 1769, + Role: { + 'Fn::GetAtt': ['TestConstructkinesissitemapwriterfuncServiceRole277EF8DD', 'Arn'], + }, + Runtime: 'nodejs20.x', + Timeout: 900, + }, + }, + TestConstructkinesisindexwriterfuncServiceRoleDefaultPolicy2E579A40: { + Type: 'AWS::IAM::Policy', + Properties: { + PolicyDocument: { + Statement: [ + { + Action: [ + 'kinesis:DescribeStreamSummary', + 'kinesis:GetRecords', + 'kinesis:GetShardIterator', + 'kinesis:ListShards', + 'kinesis:SubscribeToShard', + 'kinesis:DescribeStream', + 'kinesis:ListStreams', + 'kinesis:DescribeStreamConsumer', + ], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + }, + { + Action: [ + 's3:GetObject*', + 's3:GetBucket*', + 's3:List*', + 's3:DeleteObject*', + 's3:PutObject', + 's3:PutObjectLegalHold', + 's3:PutObjectRetention', + 's3:PutObjectTagging', + 's3:PutObjectVersionTagging', + 's3:Abort*', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['sitemapsbucket101B82D2', 'Arn'], + }, + { + 'Fn::Join': [ + '', + [ + { + 'Fn::GetAtt': ['sitemapsbucket101B82D2', 'Arn'], + }, + '/*', + ], + ], + }, + ], + }, + { + Action: 'kinesis:DescribeStream', + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + }, + { + Action: [ + 'dynamodb:BatchGetItem', + 'dynamodb:GetRecords', + 'dynamodb:GetShardIterator', + 'dynamodb:Query', + 'dynamodb:GetItem', + 'dynamodb:Scan', + 'dynamodb:ConditionCheckItem', + 'dynamodb:BatchWriteItem', + 'dynamodb:PutItem', + 'dynamodb:UpdateItem', + 'dynamodb:DeleteItem', + 'dynamodb:DescribeTable', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['dynamodbtable650E77A7', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + { + Action: 'dynamodb:DescribeTable', + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['dynamodbtable650E77A7', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + ], + Version: '2012-10-17', + }, + }, + }, + TestConstructkinesisindexwriterfunc180F5261: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['arm64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: 'a9413a2ded2896b6bb3cb6665ee3c36cd769ba70e1b8ea0072ca616527d2b62c.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'sitemapsbucket101B82D2', + }, + TABLE_NAME: { + Ref: 'dynamodbtable650E77A7', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + }, + }, + Handler: 'index.handler', + MemorySize: 512, + Role: { + 'Fn::GetAtt': ['TestConstructkinesisindexwriterfuncServiceRole31DC4F79', 'Arn'], + }, + Runtime: 'nodejs20.x', + Timeout: 300, + }, + }, + TestConstructkinesisindexwriterfuncKinesisEventSourceTestStackTestConstructsitemapindexwriterstreamE33E6FE149B7318C: + { + Type: 'AWS::Lambda::EventSourceMapping', + Properties: { + BatchSize: 1000, + EventSourceArn: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + FunctionName: { + Ref: 'TestConstructkinesisindexwriterfunc180F5261', + }, + MaximumBatchingWindowInSeconds: 30, + StartingPosition: 'TRIM_HORIZON', + }, + }, + }, + }); + } catch (error) { + console.debug(JSON.stringify(Template.fromStack(stack).toJSON(), null, 2)); + throw error; + } + }); + + it('"easy button" works - creates dynamodb table and kinesis stream"', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const construct = new SitemapsConstruct(stack, 'TestConstruct', {}); + + expect(construct).toBeDefined(); + + try { + // There are 4 lambda functions - 2 for our code, 1 for the log retention cleanup + Template.fromStack(stack).resourceCountIs('AWS::Lambda::Function', 3); + Template.fromStack(stack).resourceCountIs('AWS::DynamoDB::Table', 1); + Template.fromStack(stack).resourceCountIs('AWS::S3::Bucket', 1); + + // Confirm that logical IDs have not changed accidentally (causes delete/create) + Template.fromStack(stack).templateMatches({ + Resources: { + TestConstructkinesissitemapwriterfuncServiceRole277EF8DD: { + Type: 'AWS::IAM::Role', + Properties: { + AssumeRolePolicyDocument: { + Statement: [ + { + Action: 'sts:AssumeRole', + Effect: 'Allow', + Principal: { + Service: 'lambda.amazonaws.com', + }, + }, + ], + Version: '2012-10-17', + }, + ManagedPolicyArns: [ + { + 'Fn::Join': [ + '', + [ + 'arn:', + { + Ref: 'AWS::Partition', + }, + ':iam::aws:policy/service-role/AWSLambdaBasicExecutionRole', + ], + ], + }, + ], + }, + }, + TestConstructkinesissitemapwriterfuncServiceRoleDefaultPolicy59245308: { + Type: 'AWS::IAM::Policy', + Properties: { + PolicyDocument: { + Statement: [ + { + Action: [ + 'kinesis:DescribeStreamSummary', + 'kinesis:GetRecords', + 'kinesis:GetShardIterator', + 'kinesis:ListShards', + 'kinesis:SubscribeToShard', + 'kinesis:DescribeStream', + 'kinesis:ListStreams', + 'kinesis:DescribeStreamConsumer', + 'kinesis:PutRecord', + 'kinesis:PutRecords', + ], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + }, + { + Action: [ + 's3:GetObject*', + 's3:GetBucket*', + 's3:List*', + 's3:DeleteObject*', + 's3:PutObject', + 's3:PutObjectLegalHold', + 's3:PutObjectRetention', + 's3:PutObjectTagging', + 's3:PutObjectVersionTagging', + 's3:Abort*', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['TestConstructsitemapss3bucket2BDBADC2', 'Arn'], + }, + { + 'Fn::Join': [ + '', + [ + { + 'Fn::GetAtt': ['TestConstructsitemapss3bucket2BDBADC2', 'Arn'], + }, + '/*', + ], + ], + }, + ], + }, + { + Action: [ + 'kinesis:DescribeStreamSummary', + 'kinesis:GetRecords', + 'kinesis:GetShardIterator', + 'kinesis:ListShards', + 'kinesis:SubscribeToShard', + 'kinesis:DescribeStream', + 'kinesis:ListStreams', + 'kinesis:DescribeStreamConsumer', + ], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + }, + { + Action: 'kinesis:DescribeStream', + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + }, + { + Action: ['kinesis:ListShards', 'kinesis:PutRecord', 'kinesis:PutRecords'], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + }, + { + Action: [ + 'dynamodb:BatchGetItem', + 'dynamodb:GetRecords', + 'dynamodb:GetShardIterator', + 'dynamodb:Query', + 'dynamodb:GetItem', + 'dynamodb:Scan', + 'dynamodb:ConditionCheckItem', + 'dynamodb:BatchWriteItem', + 'dynamodb:PutItem', + 'dynamodb:UpdateItem', + 'dynamodb:DeleteItem', + 'dynamodb:DescribeTable', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['TestConstructsitemapstable767D06B8', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + { + Action: 'dynamodb:DescribeTable', + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['TestConstructsitemapstable767D06B8', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + ], + Version: '2012-10-17', + }, + }, + }, + TestConstructkinesissitemapwriterfuncKinesisEventSourceTestStackTestConstructsitemapsinputstreamE2DF157128FB71FB: + { + Type: 'AWS::Lambda::EventSourceMapping', + Properties: { + BatchSize: 10000, + BisectBatchOnFunctionError: true, + EventSourceArn: { + 'Fn::GetAtt': ['TestConstructsitemapsinputstreamD34990D2', 'Arn'], + }, + FunctionName: { + Ref: 'TestConstructkinesissitemapwriterfuncC5440FEB', + }, + MaximumBatchingWindowInSeconds: 30, + StartingPosition: 'TRIM_HORIZON', + }, + }, + TestConstructkinesissitemapwriterfuncC5440FEB: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['arm64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: '7b057df9bba959e8a4db5db578314a6c16b45ec1f19b3145207864a3f4f0656a.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'TestConstructsitemapss3bucket2BDBADC2', + }, + TABLE_NAME: { + Ref: 'TestConstructsitemapstable767D06B8', + }, + KINESIS_INDEX_WRITER_NAME: { + Ref: 'TestConstructsitemapindexwriterstream517F6DD8', + }, + KINESIS_SELF_STREAM_NAME: { + Ref: 'TestConstructsitemapsinputstreamD34990D2', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + }, + }, + Handler: 'index.handler', + MemorySize: 1769, + Role: { + 'Fn::GetAtt': ['TestConstructkinesissitemapwriterfuncServiceRole277EF8DD', 'Arn'], + }, + Runtime: 'nodejs20.x', + Timeout: 900, + }, + }, + TestConstructkinesisindexwriterfuncServiceRoleDefaultPolicy2E579A40: { + Type: 'AWS::IAM::Policy', + Properties: { + PolicyDocument: { + Statement: [ + { + Action: [ + 'kinesis:DescribeStreamSummary', + 'kinesis:GetRecords', + 'kinesis:GetShardIterator', + 'kinesis:ListShards', + 'kinesis:SubscribeToShard', + 'kinesis:DescribeStream', + 'kinesis:ListStreams', + 'kinesis:DescribeStreamConsumer', + ], + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + }, + { + Action: [ + 's3:GetObject*', + 's3:GetBucket*', + 's3:List*', + 's3:DeleteObject*', + 's3:PutObject', + 's3:PutObjectLegalHold', + 's3:PutObjectRetention', + 's3:PutObjectTagging', + 's3:PutObjectVersionTagging', + 's3:Abort*', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['TestConstructsitemapss3bucket2BDBADC2', 'Arn'], + }, + { + 'Fn::Join': [ + '', + [ + { + 'Fn::GetAtt': ['TestConstructsitemapss3bucket2BDBADC2', 'Arn'], + }, + '/*', + ], + ], + }, + ], + }, + { + Action: 'kinesis:DescribeStream', + Effect: 'Allow', + Resource: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + }, + { + Action: [ + 'dynamodb:BatchGetItem', + 'dynamodb:GetRecords', + 'dynamodb:GetShardIterator', + 'dynamodb:Query', + 'dynamodb:GetItem', + 'dynamodb:Scan', + 'dynamodb:ConditionCheckItem', + 'dynamodb:BatchWriteItem', + 'dynamodb:PutItem', + 'dynamodb:UpdateItem', + 'dynamodb:DeleteItem', + 'dynamodb:DescribeTable', + ], + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['TestConstructsitemapstable767D06B8', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + { + Action: 'dynamodb:DescribeTable', + Effect: 'Allow', + Resource: [ + { + 'Fn::GetAtt': ['TestConstructsitemapstable767D06B8', 'Arn'], + }, + { + Ref: 'AWS::NoValue', + }, + ], + }, + ], + Version: '2012-10-17', + }, + }, + }, + TestConstructkinesisindexwriterfunc180F5261: { + Type: 'AWS::Lambda::Function', + Properties: { + Architectures: ['arm64'], + Code: { + S3Bucket: 'cdk-hnb659fds-assets-123456789012-us-east-2', + // S3Key: 'a9413a2ded2896b6bb3cb6665ee3c36cd769ba70e1b8ea0072ca616527d2b62c.zip', + }, + Environment: { + Variables: { + NODE_ENV: 'production', + S3_SITEMAPS_BUCKET_NAME: { + Ref: 'TestConstructsitemapss3bucket2BDBADC2', + }, + TABLE_NAME: { + Ref: 'TestConstructsitemapstable767D06B8', + }, + AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1', + }, + }, + Handler: 'index.handler', + MemorySize: 512, + Role: { + 'Fn::GetAtt': ['TestConstructkinesisindexwriterfuncServiceRole31DC4F79', 'Arn'], + }, + Runtime: 'nodejs20.x', + Timeout: 300, + }, + }, + TestConstructkinesisindexwriterfuncKinesisEventSourceTestStackTestConstructsitemapindexwriterstreamE33E6FE149B7318C: + { + Type: 'AWS::Lambda::EventSourceMapping', + Properties: { + BatchSize: 1000, + EventSourceArn: { + 'Fn::GetAtt': ['TestConstructsitemapindexwriterstream517F6DD8', 'Arn'], + }, + FunctionName: { + Ref: 'TestConstructkinesisindexwriterfunc180F5261', + }, + MaximumBatchingWindowInSeconds: 30, + StartingPosition: 'TRIM_HORIZON', + }, + }, + }, + }); + } catch (error) { + console.debug(JSON.stringify(Template.fromStack(stack).toJSON(), null, 2)); + throw error; + } + + // Access the props + expect(construct.dynamoDBTable).toBeDefined(); + expect(construct.indexWriterLambdaFunction).toBeDefined(); + expect(construct.sitemapWriterLambdaFunction).toBeDefined(); + expect(construct.kinesisInputStream).toBeDefined(); + expect(construct.s3SitemapsBucket).toBeDefined(); + }); + + it('throws on undefined props', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', undefined); + }).toThrow('props must be set'); + }); + + it('throws on stream rentention < 1 days', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + kinesisSitemapWriterRetentionDays: 0.9, + }); + }).toThrow('Kinesis stream retention cannot be less than 1 day'); + }); + + it('throws on s3 bucket and s3 bucket name both set', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const s3SitemapsBucket = new s3.Bucket(stack, 'sitemaps-bucket', {}); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + s3SitemapsBucket, + s3SitemapsBucketName: 'test', + }); + }).toThrow('Bucket name and bucket cannot both be specified'); + }); + + it('throws on dynamodb table and dynamodb table name both set', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const dynamodbTable = new dynamodb.Table(stack, 'dynamodb-table', { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + dynamodbTable, + dynamodbTableName: 'test', + }); + }).toThrow('Table name and table cannot both be specified'); + }); + + it('throws on dynamodb table and dynamodb table props both set', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + const dynamodbTable = new dynamodb.Table(stack, 'dynamodb-table', { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + dynamodbTable, + // @ts-expect-error testing invalid props mix + dynamodbTableProps: { + billingMode: dynamodb.BillingMode.PAY_PER_REQUEST, + }, + }); + }).toThrow('Table props and table cannot both be specified'); + }); + + it('throws on extra table props specifying partition or sort key', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + dynamodbTableProps: { + partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }, + }); + }).toThrow('Table partition and sort keys cannot be specified'); + }); + + it('throws on extra table props specifying partition or sort key', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + // @ts-expect-error testing invalid props mix + dynamodbTableProps: { + sortKey: { name: 'id', type: dynamodb.AttributeType.STRING }, + }, + }); + }).toThrow('Table partition and sort keys cannot be specified'); + }); + + it('throws on batch size < 1 for kinesis stream', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + sitemapWriterBatchSize: 0, + }); + }).toThrow('Sitemap Writer batch size must be between 1 and 10,000 inclusive'); + }); + + it('throws on batch size > 10,000 for kinesis stream', () => { + const app = new App({}); + const stack = new Stack(app, 'TestStack', { + env: { + account: '123456789012', + region: 'us-east-2', + }, + }); + expect(() => { + new SitemapsConstruct(stack, 'TestConstruct', { + sitemapWriterBatchSize: 10001, + }); + }).toThrow('Sitemap Writer batch size must be between 1 and 10,000 inclusive'); + }); +}); diff --git a/packages/sitemaps-cdk/tsconfig.dev.json b/packages/sitemaps-cdk/tsconfig.dev.json new file mode 100644 index 0000000..da832d0 --- /dev/null +++ b/packages/sitemaps-cdk/tsconfig.dev.json @@ -0,0 +1,37 @@ +// ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". +{ + "compilerOptions": { + "alwaysStrict": true, + "declaration": true, + "esModuleInterop": true, + "experimentalDecorators": true, + "inlineSourceMap": true, + "inlineSources": true, + "lib": [ + "es2019" + ], + "module": "CommonJS", + "noEmitOnError": false, + "noFallthroughCasesInSwitch": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "resolveJsonModule": true, + "strict": true, + "strictNullChecks": true, + "strictPropertyInitialization": true, + "stripInternal": true, + "target": "ES2019" + }, + "include": [ + "src/**/*.ts", + "test/**/*.ts", + ".projenrc.ts", + "projenrc/**/*.ts" + ], + "exclude": [ + "node_modules" + ] +} diff --git a/packages/sitemaps-cli/LICENSE.md b/packages/sitemaps-cli/LICENSE.md new file mode 120000 index 0000000..f0608a6 --- /dev/null +++ b/packages/sitemaps-cli/LICENSE.md @@ -0,0 +1 @@ +../../LICENSE.md \ No newline at end of file diff --git a/packages/sitemaps-cli/README.md b/packages/sitemaps-cli/README.md new file mode 100644 index 0000000..260b184 --- /dev/null +++ b/packages/sitemaps-cli/README.md @@ -0,0 +1,353 @@ +# Table of contents + +* [Table of contents](#table-of-contents) +* [Usage](#usage) +* [Commands](#commands) + + +# Usage + +```sh-session +$ npm install -g @shutterstock/sitemaps-cli +$ sitemaps-cli COMMAND +running command... +$ sitemaps-cli (--version) +@shutterstock/sitemaps-cli/0.0.0 darwin-arm64 node-v20.13.1 +$ sitemaps-cli --help [COMMAND] +USAGE + $ sitemaps-cli COMMAND +... +``` + + +# Commands + +* [`sitemaps-cli convert URL-OR-FILE`](#sitemaps-cli-convert-url-or-file) +* [`sitemaps-cli create`](#sitemaps-cli-create) +* [`sitemaps-cli create from-csv DATA-FILE SITEMAP-DIR-URL BASE-URL [OUTPUT-DIRECTORY] [INDEX-FILE-NAME]`](#sitemaps-cli-create-from-csv-data-file-sitemap-dir-url-base-url-output-directory-index-file-name) +* [`sitemaps-cli create from-dynamodb TABLE-NAME SITEMAP-DIR-URL [OUTPUT-DIRECTORY] [INDEX-FILE-NAME]`](#sitemaps-cli-create-from-dynamodb-table-name-sitemap-dir-url-output-directory-index-file-name) +* [`sitemaps-cli download S3-OR-HTTP-URL`](#sitemaps-cli-download-s3-or-http-url) +* [`sitemaps-cli freshen`](#sitemaps-cli-freshen) +* [`sitemaps-cli help [COMMAND]`](#sitemaps-cli-help-command) +* [`sitemaps-cli mirror-to-s3 INDEX-URL S3-BUCKET-URL`](#sitemaps-cli-mirror-to-s3-index-url-s3-bucket-url) +* [`sitemaps-cli test`](#sitemaps-cli-test) +* [`sitemaps-cli test sitemap-writer-stream STREAM-NAME`](#sitemaps-cli-test-sitemap-writer-stream-stream-name) +* [`sitemaps-cli upload-to-s3 FILE S3-BUCKET`](#sitemaps-cli-upload-to-s3-file-s3-bucket) + +## `sitemaps-cli convert URL-OR-FILE` + +Convert a sitemap or sitemap index to JSON lines to make it easier to process with tools and editors + +``` +USAGE + $ sitemaps-cli convert URL-OR-FILE [--type sitemap|index] + +ARGUMENTS + URL-OR-FILE URL or file path of sitemap or sitemap index, gzipped or not (.xml or .xml.gz) + +FLAGS + --type=